diff --git a/.gotty b/.gotty index c97448f..3975963 100644 --- a/.gotty +++ b/.gotty @@ -201,6 +201,9 @@ // [bool] Respect the host's attempt to change the cursor blink status using DEC Private Mode 12. // enable_dec12 = false + // [bool] Enable webgl rendering in the browser client terminal(hterm) + // enable_webgl = false + // [map[string]string] The default environment variables, as an object. // environment = {"TERM" = "xterm-256color"} diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json deleted file mode 100644 index b17aa5c..0000000 --- a/Godeps/Godeps.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "ImportPath": "github.com/yudai/gotty", - "GoVersion": "go1.9", - "GodepVersion": "v79", - "Deps": [ - { - "ImportPath": "github.com/NYTimes/gziphandler", - "Rev": "967539e5e271a2bc9b3dcb1285078a1b1df105ae" - }, - { - "ImportPath": "github.com/codegangsta/cli", - "Comment": "v1.19.1", - "Rev": "0bdeddeeb0f650497d603c4ad7b20cfe685682f6" - }, - { - "ImportPath": "github.com/elazarl/go-bindata-assetfs", - "Rev": "d5cac425555ca5cf00694df246e04f05e6a55150" - }, - { - "ImportPath": "github.com/fatih/structs", - "Rev": "a9f7daa9c2729e97450c2da2feda19130a367d8f" - }, - { - "ImportPath": "github.com/gorilla/websocket", - "Rev": "b6ab76f1fe9803ee1d59e7e5b2a797c1fe897ce5" - }, - { - "ImportPath": "github.com/hashicorp/go-multierror", - "Rev": "56912fb08d85084aa318edcf2bba735b97cf35c5" - }, - { - "ImportPath": "github.com/kr/pty", - "Comment": "release.r56-28-g5cf931e", - "Rev": "5cf931ef8f76dccd0910001d74a58a7fca84a83d" - }, - { - "ImportPath": "github.com/pkg/errors", - "Comment": "v0.8.0-2-g248dadf", - "Rev": "248dadf4e9068a0b3e79f02ed0a610d935de5302" - }, - { - "ImportPath": "github.com/yudai/hcl", - "Rev": "5fa2393b3552119bf33a69adb1402a1160cba23d" - }, - { - "ImportPath": "github.com/yudai/hcl/hcl", - "Rev": "5fa2393b3552119bf33a69adb1402a1160cba23d" - }, - { - "ImportPath": "github.com/yudai/hcl/json", - "Rev": "5fa2393b3552119bf33a69adb1402a1160cba23d" - } - ] -} diff --git a/Godeps/Readme b/Godeps/Readme deleted file mode 100644 index 4cdaa53..0000000 --- a/Godeps/Readme +++ /dev/null @@ -1,5 +0,0 @@ -This directory tree is generated automatically by godep. - -Please do not edit. - -See https://github.com/tools/godep for more information. diff --git a/Makefile b/Makefile index 0326580..4f6dfe7 100644 --- a/Makefile +++ b/Makefile @@ -1,24 +1,23 @@ OUTPUT_DIR = ./builds -GIT_COMMIT = `git rev-parse HEAD | cut -c1-7` -VERSION = 2.0.0-alpha.3 +GIT_COMMIT = $$(git rev-parse HEAD | cut -c1-7) +VERSION = 3.0.0-alpha.1 BUILD_OPTIONS = -ldflags "-X main.Version=$(VERSION) -X main.CommitID=$(GIT_COMMIT)" gotty: main.go server/*.go webtty/*.go backend/*.go Makefile - godep go build ${BUILD_OPTIONS} + go build ${BUILD_OPTIONS} -.PHONY: asset -asset: bindata/static/js/gotty-bundle.js bindata/static/index.html bindata/static/favicon.png bindata/static/css/index.css bindata/static/css/xterm.css bindata/static/css/xterm_customize.css +server/asset.go: bindata/static/js/gotty-bundle.js bindata/static/js/gotty-bundle.js.map bindata/static/js/gotty-bundle.js.LICENSE.txt bindata/static/index.html bindata/static/favicon.png bindata/static/css/index.css bindata/static/css/xterm.css bindata/static/css/xterm_customize.css go-bindata -prefix bindata -pkg server -ignore=\\.gitkeep -o server/asset.go bindata/... gofmt -w server/asset.go .PHONY: all -all: asset gotty +all: server/asset.go gotty bindata: - mkdir bindata + mkdir -p bindata bindata/static: bindata - mkdir bindata/static + mkdir -p bindata/static bindata/static/index.html: bindata/static resources/index.html cp resources/index.html bindata/static/index.html @@ -33,6 +32,11 @@ bindata/static/js: bindata/static bindata/static/js/gotty-bundle.js: bindata/static/js js/dist/gotty-bundle.js cp js/dist/gotty-bundle.js bindata/static/js/gotty-bundle.js +bindata/static/js/gotty-bundle.js.LICENSE.txt: js/dist/gotty-bundle.js.LICENSE.txt + cp $< $@ +bindata/static/js/gotty-bundle.js.map: js/dist/gotty-bundle.js.map + cp $< $@ + bindata/static/css: bindata/static mkdir -p bindata/static/css @@ -42,29 +46,38 @@ bindata/static/css/index.css: bindata/static/css resources/index.css bindata/static/css/xterm_customize.css: bindata/static/css resources/xterm_customize.css cp resources/xterm_customize.css bindata/static/css/xterm_customize.css -bindata/static/css/xterm.css: bindata/static/css js/node_modules/xterm/dist/xterm.css - cp js/node_modules/xterm/dist/xterm.css bindata/static/css/xterm.css +bindata/static/css/xterm.css: bindata/static/css js/node_modules/@xterm/xterm/css/xterm.css + cp js/node_modules/@xterm/xterm/css/xterm.css bindata/static/css/xterm.css -js/node_modules/xterm/dist/xterm.css: +js/node_modules/@xterm/xterm/css/xterm.css: cd js && \ - npm install + npm ci js/dist/gotty-bundle.js: js/src/* js/node_modules/webpack cd js && \ - `npm bin`/webpack + npx webpack + +js/dist/gotty-bundle.js.LICENSE.txt: js/dist/gotty-bundle.js +js/dist/gotty-bundle.js.map: js/dist/gotty-bundle.js js/node_modules/webpack: cd js && \ - npm install + npm install tools: - go get github.com/tools/godep - go get github.com/mitchellh/gox - go get github.com/tcnksm/ghr - go get github.com/jteeuwen/go-bindata/... + go install github.com/go-bindata/go-bindata/v3/go-bindata@latest # for static asset management + # TODO convert to `go install` + go get github.com/mitchellh/gox # for crosscompiling + go get github.com/tcnksm/ghr # for making gihub releases +.PHONY: test test: - if [ `go fmt $(go list ./... | grep -v /vendor/) | wc -l` -gt 0 ]; then echo "go fmt error"; exit 1; fi + if [ $$(go fmt $$(go list ./...) | wc -l) -gt 0 ]; then echo "go fmt error"; exit 1; fi + cd js && npx tsfmt -r --verify + +.PHONY: tsfmt +tsfmt: + cd js && npx tsfmt -r cross_compile: GOARM=5 gox -os="darwin linux freebsd netbsd openbsd" -arch="386 amd64 arm" -osarch="!darwin/arm" -output "${OUTPUT_DIR}/pkg/{{.OS}}_{{.Arch}}/{{.Dir}}" @@ -78,3 +91,11 @@ shasums: release: ghr -c ${GIT_COMMIT} --delete --prerelease -u yudai -r gotty pre-release ${OUTPUT_DIR}/dist + +.PHONY: update_go_modules +update_go_modules: + go get -u + +.PHONY: clean +clean: + rm -rf bindata/ js/node_modules/* diff --git a/README.md b/README.md index 6a89233..4c9e7bc 100644 --- a/README.md +++ b/README.md @@ -1,37 +1,44 @@ -# ![](https://raw.githubusercontent.com/yudai/gotty/master/resources/favicon.png) GoTTY - Share your terminal as a web application +# ![](https://raw.githubusercontent.com/ghthor/gotty/master/resources/favicon.png) GoTTY - Share your terminal as a web application -[![GitHub release](http://img.shields.io/github/release/yudai/gotty.svg?style=flat-square)][release] +> TODO update the CI to github actions? travis? + +[![GitHub release](http://img.shields.io/github/release/ghthor/gotty.svg?style=flat-square)][release] [![Wercker](http://img.shields.io/wercker/ci/55d0eeff7331453f0801982c.svg?style=flat-square)][wercker] [![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)][license] -[release]: https://github.com/yudai/gotty/releases +[release]: https://github.com/ghthor/gotty/releases [wercker]: https://app.wercker.com/project/bykey/03b91f441bebeda34f80e09a9f14126f -[license]: https://github.com/yudai/gotty/blob/master/LICENSE +[license]: https://github.com/ghthor/gotty/blob/master/LICENSE GoTTY is a simple command line tool that turns your CLI tools into web applications. -![Screenshot](https://raw.githubusercontent.com/yudai/gotty/master/screenshot.gif) +> TODO: update this screenshot + +![Screenshot](https://raw.githubusercontent.com/ghthor/gotty/master/screenshot.gif) # Installation -Download the latest stable binary file from the [Releases](https://github.com/yudai/gotty/releases) page. Note that the release marked `Pre-release` is built for testing purpose, which can include unstable or breaking changes. Download a release marked [Latest release](https://github.com/yudai/gotty/releases/latest) for a stabale build. +> TODO make release using github actions + +Download the latest stable binary file from the [Releases](https://github.com/ghthor/gotty/releases) page. Note that the release marked `Pre-release` is built for testing purpose, which can include unstable or breaking changes. Download a release marked [Latest release](https://github.com/ghthor/gotty/releases/latest) for a stable build. (Files named with `darwin_amd64` are for Mac OS X users) -## Homebrew Installation +## `go install` Installation -You can install GoTTY with [Homebrew](http://brew.sh/) as well. +> TODO look into oldest compatible go compiler + +If you have a go language environment, you can install GoTTY with the `go +install` command. GoTTY requires go1.12 or later. ```sh -$ brew install yudai/gotty/gotty +$ go install github.com/ghthor/gotty/v2@latest ``` -## `go get` Installation (Development) - -If you have a Go language environment, you can install GoTTY with the `go get` command. However, this command builds a binary file from the latest master branch, which can include unstable or breaking changes. GoTTY requires go1.9 or later. +You can specify a specific version based on git tags. ```sh -$ go get github.com/yudai/gotty +$ go install github.com/ghthor/gotty/v2@v2.3.4 ``` # Usage @@ -94,15 +101,28 @@ preferences { } ``` -See the [`.gotty`](https://github.com/yudai/gotty/blob/master/.gotty) file in this repository for the list of configuration options. +See the [`.gotty`](https://github.com/ghthor/gotty/blob/master/.gotty) file in this repository for the list of configuration options. + +#### Enable WebGL + +The WebGL renderer is much better than the default canvas renderer for text; it +can handle italics without clipping the letters. I think this is because +upstream xtermjs is focusing on the WebGL renderer. To enable WebGL you need to +add the following to your `~/.gotty` config file. + +```hcl +preferences { + enable_webgl = true +} +``` ### Security Options By default, GoTTY doesn't allow clients to send any keystrokes or commands except terminal window resizing. When you want to permit clients to write input to the TTY, add the `-w` option. However, accepting input from remote clients is dangerous for most commands. When you need interaction with the TTY for some reasons, consider starting GoTTY with tmux or GNU Screen and run your command on it (see "Sharing with Multiple Clients" section for detail). -To restrict client access, you can use the `-c` option to enable the basic authentication. With this option, clients need to input the specified username and password to connect to the GoTTY server. Note that the credentical will be transmitted between the server and clients in plain text. For more strict authentication, consider the SSL/TLS client certificate authentication described below. +To restrict client access, you can use the `-c` option to enable the basic authentication. With this option, clients need to input the specified username and password to connect to the GoTTY server. Note that the credentials will be transmitted between the server and clients in plain text. For more strict authentication, consider the SSL/TLS client certificate authentication described below. -The `-r` option is a little bit casualer way to restrict access. With this option, GoTTY generates a random URL so that only people who know the URL can get access to the server. +The `-r` option provides a casual way to restrict access. With this option, GoTTY generates a random URL so that only people who know the URL can get access to the server. All traffic between the server and clients are NOT encrypted by default. When you send secret information through GoTTY, we strongly recommend you use the `-t` option which enables TLS/SSL on the session. By default, GoTTY loads the crt and key files placed at `~/.gotty.crt` and `~/.gotty.key`. You can overwrite these file paths with the `--tls-crt` and `--tls-key` options. When you need to generate a self-signed certification file, you can use the `openssl` command. @@ -110,7 +130,7 @@ All traffic between the server and clients are NOT encrypted by default. When yo openssl req -x509 -nodes -days 9999 -newkey rsa:2048 -keyout ~/.gotty.key -out ~/.gotty.crt ``` -(NOTE: For Safari uses, see [how to enable self-signed certificates for WebSockets](http://blog.marcon.me/post/24874118286/secure-websockets-safari) when use self-signed certificates) +(NOTE: For Safari uses, see [how to enable self-signed certificates for WebSockets](http://blog.marcon.me/post/24874118286/secure-websockets-safari) when using self-signed certificates) For additional security, you can use the SSL/TLS client certificate authentication by providing a CA certificate file to the `--tls-ca-crt` option (this option requires the `-t` or `--tls` to be set). This option requires all clients to send valid client certificates that are signed by the specified certification authority. @@ -151,12 +171,13 @@ $ gotty -w docker run -it --rm busybox ## Development -You can build a binary using the following commands. Windows is not supported now. go1.9 is required. +You can build a binary using the following commands. Windows is not supported now. go1.12 is required. + +> TODO: Migrate to the go std lib static asset library ```sh # Install tools -go get github.com/jteeuwen/go-bindata/... -go get github.com/tools/godep +go install github.com/go-bindata/go-bindata/v3/go-bindata@latest # for static asset management # Build make @@ -189,3 +210,6 @@ GoTTY uses [xterm.js](https://xtermjs.org/) and [hterm](https://groups.google.co # License The MIT License + +> ❤ Special thanks to [yudai](https://github.com/yudai/gotty) for +> creating this project! diff --git a/backend/localcommand/factory.go b/backend/localcommand/factory.go index 11810ed..782bdff 100644 --- a/backend/localcommand/factory.go +++ b/backend/localcommand/factory.go @@ -1,10 +1,12 @@ package localcommand import ( + "context" "syscall" "time" - "github.com/yudai/gotty/server" + "github.com/ghthor/gotty/v2/server" + "github.com/gorilla/websocket" ) type Options struct { @@ -37,12 +39,12 @@ func (factory *Factory) Name() string { return "local command" } -func (factory *Factory) New(params map[string][]string) (server.Slave, error) { +func (factory *Factory) New(ctx context.Context, params map[string][]string, conn *websocket.Conn) (server.Slave, error) { argv := make([]string, len(factory.argv)) copy(argv, factory.argv) - if params["arg"] != nil && len(params["arg"]) > 0 { + if len(params["arg"]) > 0 { argv = append(argv, params["arg"]...) } - return New(factory.command, argv, factory.opts...) + return New(ctx, factory.command, argv, factory.opts...) } diff --git a/backend/localcommand/local_command.go b/backend/localcommand/local_command.go index 4beca86..fa2e64d 100644 --- a/backend/localcommand/local_command.go +++ b/backend/localcommand/local_command.go @@ -1,6 +1,7 @@ package localcommand import ( + "context" "os" "os/exec" "syscall" @@ -28,8 +29,8 @@ type LocalCommand struct { ptyClosed chan struct{} } -func New(command string, argv []string, options ...Option) (*LocalCommand, error) { - cmd := exec.Command(command, argv...) +func New(ctx context.Context, command string, argv []string, options ...Option) (*LocalCommand, error) { + cmd := exec.CommandContext(ctx, command, argv...) pty, err := pty.Start(cmd) if err != nil { diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..03cd5c2 --- /dev/null +++ b/go.mod @@ -0,0 +1,27 @@ +module github.com/ghthor/gotty/v2 + +go 1.24.0 + +require ( + github.com/NYTimes/gziphandler v1.1.1 + github.com/elazarl/go-bindata-assetfs v1.0.1 + github.com/fatih/structs v1.1.0 + github.com/gorilla/websocket v1.5.1 + github.com/kr/pty v1.1.8 + github.com/pkg/errors v0.9.1 + github.com/urfave/cli v1.22.14 + github.com/yudai/hcl v0.0.0-20151013225006-5fa2393b3552 + golang.org/x/sync v0.17.0 +) + +require ( + github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect + github.com/creack/pty v1.1.23 // indirect + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect + github.com/hashicorp/errwrap v1.1.0 // indirect + github.com/hashicorp/go-multierror v1.1.1 // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect + github.com/russross/blackfriday/v2 v2.1.0 // indirect + github.com/stretchr/testify v1.10.0 // indirect + golang.org/x/net v0.40.0 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..50ae37f --- /dev/null +++ b/go.sum @@ -0,0 +1,55 @@ +github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= +github.com/NYTimes/gziphandler v1.1.1 h1:ZUDjpQae29j0ryrS0u/B8HZfJBtBQHjqw2rQ2cqUQ3I= +github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c= +github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/cpuguy83/go-md2man/v2 v2.0.4 h1:wfIWP927BUkWJb2NmU/kNDYIBTh/ziUX91+lVfRxZq4= +github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= +github.com/creack/pty v1.1.23 h1:4M6+isWdcStXEf15G/RbrMPOQj1dZ7HPZCGwE4kOeP0= +github.com/creack/pty v1.1.23/go.mod h1:08sCNb52WyoAwi2QDyzUCTgcvVFhUzewun7wtTfvcwE= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/elazarl/go-bindata-assetfs v1.0.1 h1:m0kkaHRKEu7tUIUFVwhGGGYClXvyl4RE03qmvRTNfbw= +github.com/elazarl/go-bindata-assetfs v1.0.1/go.mod h1:v+YaWX3bdea5J/mo8dSETolEo7R71Vk1u8bnjau5yw4= +github.com/fatih/structs v1.1.0 h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo= +github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= +github.com/gorilla/websocket v1.5.1 h1:gmztn0JnHVt9JZquRuzLw3g4wouNVzKL15iLr/zn/QY= +github.com/gorilla/websocket v1.5.1/go.mod h1:x3kM2JMyaluk02fnUJpQuwD2dCS5NDG2ZHL0uE0tcaY= +github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= +github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= +github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= +github.com/kr/pty v1.1.8 h1:AkaSdXYQOWeaO3neb8EM634ahkXXe3jYbVh/F9lq+GI= +github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/urfave/cli v1.22.14 h1:ebbhrRiGK2i4naQJr+1Xj92HXZCrK7MsyTS/ob3HnAk= +github.com/urfave/cli v1.22.14/go.mod h1:X0eDS6pD6Exaclxm99NJ3FiCDRED7vIHpx2mDOHLvkA= +github.com/yudai/hcl v0.0.0-20151013225006-5fa2393b3552 h1:tjsK9T2IA3d2FFNxzDP7AJf+EXhyuPd7PB4Z2HrtAoc= +github.com/yudai/hcl v0.0.0-20151013225006-5fa2393b3552/go.mod h1:hg0ZaCmQL3rze1cH8Fh2g0a9q8vQs0uN8ESpePEwSEw= +golang.org/x/net v0.40.0 h1:79Xs7wF06Gbdcg4kdCCIQArK11Z1hr5POQ6+fIYHNuY= +golang.org/x/net v0.40.0/go.mod h1:y0hY0exeL2Pku80/zKK7tpntoX23cqL3Oa6njdgRtds= +golang.org/x/sync v0.17.0 h1:l60nONMj9l5drqw6jlhIELNv9I0A4OFgRsG9k2oT9Ug= +golang.org/x/sync v0.17.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/js/dist/gotty-bundle.js b/js/dist/gotty-bundle.js index b95cbae..9a86c4a 100644 --- a/js/dist/gotty-bundle.js +++ b/js/dist/gotty-bundle.js @@ -1,88 +1,3 @@ -!function(e){function t(i){if(r[i])return r[i].exports;var o=r[i]={i:i,l:!1,exports:{}};return e[i].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};t.m=e,t.c=r,t.i=function(e){return e},t.d=function(e,r,i){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=28)}([function(e,t,r){"use strict";function i(e){var t=this;if(!(this instanceof i))return new i(arguments[0],arguments[1],arguments[2]);t.browser=S,t.cancel=i.cancel,u.EventEmitter.call(this),"number"==typeof e&&(e={cols:arguments[0],rows:arguments[1],handler:arguments[2]}),e=e||{},Object.keys(i.defaults).forEach(function(r){null==e[r]&&(e[r]=i.options[r],i[r]!==i.defaults[r]&&(e[r]=i[r])),t[r]=e[r]}),8===e.colors.length?e.colors=e.colors.concat(i._colors.slice(8)):16===e.colors.length?e.colors=e.colors.concat(i._colors.slice(16)):10===e.colors.length?e.colors=e.colors.slice(0,-2).concat(i._colors.slice(8,-2),e.colors.slice(-2)):18===e.colors.length&&(e.colors=e.colors.concat(i._colors.slice(16,-2),e.colors.slice(-2))),this.colors=e.colors,this.options=e,this.parent=e.body||e.parent||(A?A.getElementsByTagName("body")[0]:null),this.cols=e.cols||e.geometry[0],this.rows=e.rows||e.geometry[1],this.geometry=[this.cols,this.rows],e.handler&&this.on("data",e.handler),this.ybase=0,this.ydisp=0,this.x=0,this.y=0,this.cursorState=0,this.cursorHidden=!1,this.convertEol,this.queue="",this.scrollTop=0,this.scrollBottom=this.rows-1,this.customKeyEventHandler=null,this.cursorBlinkInterval=null,this.applicationKeypad=!1,this.applicationCursor=!1,this.originMode=!1,this.insertMode=!1,this.wraparoundMode=!0,this.normal=null,this.charset=null,this.gcharset=null,this.glevel=0,this.charsets=[null],this.decLocator,this.x10Mouse,this.vt200Mouse,this.vt300Mouse,this.normalMouse,this.mouseEvents,this.sendFocus,this.utfMouse,this.sgrMouse,this.urxvtMouse,this.element,this.children,this.refreshStart,this.refreshEnd,this.savedX,this.savedY,this.savedCols,this.readable=!0,this.writable=!0,this.defAttr=131840,this.curAttr=this.defAttr,this.params=[],this.currentParam=0,this.prefix="",this.postfix="",this.inputHandler=new m.InputHandler(this),this.parser=new y.Parser(this.inputHandler,this),this.renderer=this.renderer||null,this.selectionManager=this.selectionManager||null,this.linkifier=this.linkifier||new _.Linkifier,this.writeBuffer=[],this.writeInProgress=!1,this.xoffSentToCatchUp=!1,this.writeStopped=!1,this.surrogate_high="",this.lines=new f.CircularList(this.scrollback);for(var r=this.rows;r--;)this.lines.push(this.blankLine());this.selectionManager&&this.selectionManager.setBuffer(this.lines),this.tabs,this.setupStops(),this.userScrolling=!1}function o(e,t,r,i){Array.isArray(e)||(e=[e]),e.forEach(function(e){e.addEventListener(t,r,i||!1)})}function s(e,t,r,i){e.removeEventListener(t,r,i||!1)}function n(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}function a(e,t){var r=e.browser.isMac&&t.altKey&&!t.ctrlKey&&!t.metaKey||e.browser.isMSWindows&&t.altKey&&t.ctrlKey&&!t.metaKey;return"keypress"==t.type?r:r&&(!t.keyCode||t.keyCode>47)}function l(e,t,r){var o=e<<16|t<<8|r;if(null!=l._cache[o])return l._cache[o];for(var s,n,a,h,c,u=1/0,d=-1,p=0;p>16&255,e>>8&255,255&e]);return t}(),i.defaults={colors:i.colors,theme:"default",convertEol:!1,termName:"xterm",geometry:[80,24],cursorBlink:!1,cursorStyle:"block",visualBell:!1,popOnBell:!1,scrollback:1e3,screenKeys:!1,debug:!1,cancelEvents:!1,disableStdin:!1,useFlowControl:!1,tabStopWidth:8},i.options={},i.focus=null,function(e,t,r){if(e.forEach)return e.forEach(t,r);for(var i=0;it){var o=this.lines.length-t,s=this.ydisp-o<0;this.lines.trimStart(o),this.ybase=Math.max(this.ybase-o,0),this.ydisp=Math.max(this.ydisp-o,0),s&&this.refresh(0,this.rows-1)}this.lines.maxLength=t,this.viewport.syncScrollArea()}}switch(this[e]=t,this.options[e]=t,e){case"cursorBlink":this.setCursorBlinking(t);break;case"cursorStyle":this.element.classList.toggle("xterm-cursor-style-underline","underline"===t),this.element.classList.toggle("xterm-cursor-style-bar","bar"===t);break;case"tabStopWidth":this.setupStops()}},i.prototype.restartCursorBlinking=function(){this.setCursorBlinking(this.options.cursorBlink)},i.prototype.setCursorBlinking=function(e){if(this.element.classList.toggle("xterm-cursor-blink",e),this.clearCursorBlinkingInterval(),e){var t=this;this.cursorBlinkInterval=setInterval(function(){t.element.classList.toggle("xterm-cursor-blink-on")},600)}},i.prototype.clearCursorBlinkingInterval=function(){this.element.classList.remove("xterm-cursor-blink-on"),this.cursorBlinkInterval&&(clearInterval(this.cursorBlinkInterval),this.cursorBlinkInterval=null)},i.bindFocus=function(e){o(e.textarea,"focus",function(t){e.sendFocus&&e.send(g.C0.ESC+"[I"),e.element.classList.add("focus"),e.showCursor(),e.restartCursorBlinking.apply(e),i.focus=e,e.emit("focus",{terminal:e})})},i.prototype.blur=function(){return this.textarea.blur()},i.bindBlur=function(e){o(e.textarea,"blur",function(t){e.refresh(e.y,e.y),e.sendFocus&&e.send(g.C0.ESC+"[O"),e.element.classList.remove("focus"),e.clearCursorBlinkingInterval.apply(e),i.focus=null,e.emit("blur",{terminal:e})})},i.prototype.initGlobal=function(){var e=this,t=this;i.bindKeys(this),i.bindFocus(this),i.bindBlur(this),o(this.element,"copy",function(r){e.mouseEvents||p.copyHandler(r,t,e.selectionManager)});var r=function(e){return p.pasteHandler(e,t)};o(this.textarea,"paste",r),o(this.element,"paste",r),t.browser.isFirefox?o(this.element,"mousedown",function(t){2==t.button&&p.rightClickHandler(t,e.textarea,e.selectionManager)}):o(this.element,"contextmenu",function(t){p.rightClickHandler(t,e.textarea,e.selectionManager)}),t.browser.isLinux&&o(this.element,"auxclick",function(t){1===t.button&&p.moveTextAreaUnderMouseCursor(t,e.textarea,e.selectionManager)})},i.bindKeys=function(e){o(e.element,"keydown",function(t){A.activeElement==this&&e.keyDown(t)},!0),o(e.element,"keypress",function(t){A.activeElement==this&&e.keyPress(t)},!0),o(e.element,"keyup",function(t){h(t)||e.focus(e)},!0),o(e.textarea,"keydown",function(t){e.keyDown(t)},!0),o(e.textarea,"keypress",function(t){e.keyPress(t),this.value=""},!0),o(e.textarea,"compositionstart",e.compositionHelper.compositionstart.bind(e.compositionHelper)),o(e.textarea,"compositionupdate",e.compositionHelper.compositionupdate.bind(e.compositionHelper)),o(e.textarea,"compositionend",e.compositionHelper.compositionend.bind(e.compositionHelper)),e.on("refresh",e.compositionHelper.updateCompositionElements.bind(e.compositionHelper)),e.on("refresh",function(t){e.queueLinkification(t.start,t.end)})},i.prototype.insertRow=function(e){return"object"!=typeof e&&(e=A.createElement("div")),this.rowContainer.appendChild(e),this.children.push(e),e},i.prototype.open=function(e,t){var r=this,i=this,s=0;if(this.parent=e||this.parent,!this.parent)throw new Error("Terminal requires a parent element.");for(this.context=this.parent.ownerDocument.defaultView,this.document=this.parent.ownerDocument,this.body=this.document.getElementsByTagName("body")[0],this.element=this.document.createElement("div"),this.element.classList.add("terminal"),this.element.classList.add("xterm"),this.element.classList.add("xterm-theme-"+this.theme),this.setCursorBlinking(this.options.cursorBlink),this.element.setAttribute("tabindex",0),this.viewportElement=A.createElement("div"),this.viewportElement.classList.add("xterm-viewport"),this.element.appendChild(this.viewportElement),this.viewportScrollArea=A.createElement("div"),this.viewportScrollArea.classList.add("xterm-scroll-area"),this.viewportElement.appendChild(this.viewportScrollArea),this.selectionContainer=A.createElement("div"),this.selectionContainer.classList.add("xterm-selection"),this.element.appendChild(this.selectionContainer),this.rowContainer=A.createElement("div"),this.rowContainer.classList.add("xterm-rows"),this.element.appendChild(this.rowContainer),this.children=[],this.linkifier.attachToDom(A,this.children),this.helperContainer=A.createElement("div"),this.helperContainer.classList.add("xterm-helpers"),this.element.appendChild(this.helperContainer),this.textarea=A.createElement("textarea"),this.textarea.classList.add("xterm-helper-textarea"),this.textarea.setAttribute("autocorrect","off"),this.textarea.setAttribute("autocapitalize","off"),this.textarea.setAttribute("spellcheck","false"),this.textarea.tabIndex=0,this.textarea.addEventListener("focus",function(){i.emit("focus",{terminal:i})}),this.textarea.addEventListener("blur",function(){i.emit("blur",{terminal:i})}),this.helperContainer.appendChild(this.textarea),this.compositionView=A.createElement("div"),this.compositionView.classList.add("composition-view"),this.compositionHelper=new c.CompositionHelper(this.textarea,this.compositionView,this),this.helperContainer.appendChild(this.compositionView),this.charSizeStyleElement=A.createElement("style"),this.helperContainer.appendChild(this.charSizeStyleElement);s div{height:"+this.charMeasure.height+"px;}"},i.prototype.bindMouse=function(){function e(e){var t,r;if(t=n(e),r=v.getRawByteCoords(e,l.rowContainer,l.charMeasure,l.cols,l.rows))switch(i(t,r),e.overrideType||e.type){case"mousedown":h=t;break;case"mouseup":h=32}}function t(e){var t,r=h;(t=v.getRawByteCoords(e,l.rowContainer,l.charMeasure,l.cols,l.rows))&&i(r+=32,t)}function r(e,t){if(l.utfMouse){if(2047===t)return e.push(0);t<127?e.push(t):(t>2047&&(t=2047),e.push(192|t>>6),e.push(128|63&t))}else{if(255===t)return e.push(0);t>127&&(t=127),e.push(t)}}function i(e,t){if(l.vt300Mouse){e&=3,t.x-=32,t.y-=32;var i=g.C0.ESC+"[24";if(0===e)i+="1";else if(1===e)i+="3";else if(2===e)i+="5";else{if(3===e)return;i+="0"}return i+="~["+t.x+","+t.y+"]\r",void l.send(i)}return l.decLocator?(e&=3,t.x-=32,t.y-=32,0===e?e=2:1===e?e=4:2===e?e=6:3===e&&(e=3),void l.send(g.C0.ESC+"["+e+";"+(3===e?4:0)+";"+t.y+";"+t.x+";"+(t.page||0)+"&w")):l.urxvtMouse?(t.x-=32,t.y-=32,t.x++,t.y++,void l.send(g.C0.ESC+"["+e+";"+t.x+";"+t.y+"M")):l.sgrMouse?(t.x-=32,t.y-=32,void l.send(g.C0.ESC+"[<"+((3==(3&e)?-4&e:e)-32)+";"+t.x+";"+t.y+(3==(3&e)?"m":"M"))):(r(i=[],e),r(i,t.x),r(i,t.y),void l.send(g.C0.ESC+"[M"+String.fromCharCode.apply(String,i)))}function n(e){var t,r,i,o,s;switch(e.overrideType||e.type){case"mousedown":t=null!=e.button?+e.button:null!=e.which?e.which-1:null,l.browser.isMSIE&&(t=1===t?0:4===t?1:t);break;case"mouseup":t=3;break;case"DOMMouseScroll":t=e.detail<0?64:65;break;case"wheel":t=e.wheelDeltaY>0?64:65}return r=e.shiftKey?4:0,i=e.metaKey?8:0,o=e.ctrlKey?16:0,s=r|i|o,l.vt200Mouse?s&=o:l.normalMouse||(s=0),t=32+(s<<2)+t}var a=this.element,l=this,h=32;o(a,"mousedown",function(r){if(l.mouseEvents)return e(r),l.focus(),l.vt200Mouse?(r.overrideType="mouseup",e(r),l.cancel(r)):(l.normalMouse&&o(l.document,"mousemove",t),l.x10Mouse||o(l.document,"mouseup",function r(i){return e(i),l.normalMouse&&s(l.document,"mousemove",t),s(l.document,"mouseup",r),l.cancel(i)}),l.cancel(r))}),o(a,"wheel",function(t){if(l.mouseEvents&&!(l.x10Mouse||l.vt300Mouse||l.decLocator))return e(t),l.cancel(t)}),o(a,"wheel",function(e){if(!l.mouseEvents)return l.viewport.onWheel(e),l.cancel(e)}),o(a,"touchstart",function(e){if(!l.mouseEvents)return l.viewport.onTouchStart(e),l.cancel(e)}),o(a,"touchmove",function(e){if(!l.mouseEvents)return l.viewport.onTouchMove(e),l.cancel(e)})},i.prototype.destroy=function(){this.readable=!1,this.writable=!1,this._events={},this.handler=function(){},this.write=function(){},this.element&&this.element.parentNode&&this.element.parentNode.removeChild(this.element)},i.prototype.refresh=function(e,t){this.renderer&&this.renderer.queueRefresh(e,t)},i.prototype.queueLinkification=function(e,t){if(this.linkifier)for(var r=e;r<=t;r++)this.linkifier.linkifyRow(r)},i.prototype.showCursor=function(){this.cursorState||(this.cursorState=1,this.refresh(this.y,this.y))},i.prototype.scroll=function(e){var t;this.lines.length===this.lines.maxLength&&(this.lines.trimStart(1),this.ybase--,0!==this.ydisp&&this.ydisp--),this.ybase++,this.userScrolling||(this.ydisp=this.ybase),t=this.ybase+this.rows-1,(t-=this.rows-1-this.scrollBottom)===this.lines.length?this.lines.push(this.blankLine(void 0,e)):this.lines.splice(t,0,this.blankLine(void 0,e)),0!==this.scrollTop&&(0!==this.ybase&&(this.ybase--,this.userScrolling||(this.ydisp=this.ybase)),this.lines.splice(this.ybase+this.scrollTop,1)),this.updateRange(this.scrollTop),this.updateRange(this.scrollBottom),this.emit("scroll",this.ydisp)},i.prototype.scrollDisp=function(e,t){if(e<0){if(0===this.ydisp)return;this.userScrolling=!0}else e+this.ydisp>=this.ybase&&(this.userScrolling=!1);this.ydisp+=e,this.ydisp>this.ybase?this.ydisp=this.ybase:this.ydisp<0&&(this.ydisp=0),t||this.emit("scroll",this.ydisp),this.refresh(0,this.rows-1)},i.prototype.scrollPages=function(e){this.scrollDisp(e*(this.rows-1))},i.prototype.scrollToTop=function(){this.scrollDisp(-this.ydisp)},i.prototype.scrollToBottom=function(){this.scrollDisp(this.ybase-this.ydisp)},i.prototype.write=function(e){if(this.writeBuffer.push(e),this.options.useFlowControl&&!this.xoffSentToCatchUp&&this.writeBuffer.length>=5&&(this.send(g.C0.DC3),this.xoffSentToCatchUp=!0),!this.writeInProgress&&this.writeBuffer.length>0){this.writeInProgress=!0;var t=this;setTimeout(function(){t.innerWrite()})}},i.prototype.innerWrite=function(){for(var e=this.writeBuffer.splice(0,300);e.length>0;){var t=e.shift();t.length;this.xoffSentToCatchUp&&0===e.length&&0===this.writeBuffer.length&&(this.send(g.C0.DC1),this.xoffSentToCatchUp=!1),this.refreshStart=this.y,this.refreshEnd=this.y;var r=this.parser.parse(t);this.parser.setState(r),this.updateRange(this.y),this.refresh(this.refreshStart,this.refreshEnd)}if(this.writeBuffer.length>0){var i=this;setTimeout(function(){i.innerWrite()},0)}else this.writeInProgress=!1},i.prototype.writeln=function(e){this.write(e+"\r\n")},i.prototype.attachCustomKeydownHandler=function(e){console.warn("attachCustomKeydownHandler() is DEPRECATED and will be removed soon. Please use attachCustomKeyEventHandler() instead."),this.attachCustomKeyEventHandler(e)},i.prototype.attachCustomKeyEventHandler=function(e){this.customKeyEventHandler=e},i.prototype.setHypertextLinkHandler=function(e){if(!this.linkifier)throw new Error("Cannot attach a hypertext link handler before Terminal.open is called");this.linkifier.setHypertextLinkHandler(e),this.refresh(0,this.rows-1)},i.prototype.setHypertextValidationCallback=function(e){if(!this.linkifier)throw new Error("Cannot attach a hypertext validation callback before Terminal.open is called");this.linkifier.setHypertextValidationCallback(e),this.refresh(0,this.rows-1)},i.prototype.registerLinkMatcher=function(e,t,r){if(this.linkifier){var i=this.linkifier.registerLinkMatcher(e,t,r);return this.refresh(0,this.rows-1),i}},i.prototype.deregisterLinkMatcher=function(e){this.linkifier&&this.linkifier.deregisterLinkMatcher(e)&&this.refresh(0,this.rows-1)},i.prototype.hasSelection=function(){return this.selectionManager.hasSelection},i.prototype.getSelection=function(){return this.selectionManager.selectionText},i.prototype.clearSelection=function(){this.selectionManager.clearSelection()},i.prototype.selectAll=function(){this.selectionManager.selectAll()},i.prototype.keyDown=function(e){if(this.customKeyEventHandler&&!1===this.customKeyEventHandler(e))return!1;if(this.restartCursorBlinking(),!this.compositionHelper.keydown.bind(this.compositionHelper)(e))return this.ybase!==this.ydisp&&this.scrollToBottom(),!1;var t=this.evaluateKeyEscapeSequence(e);return t.key===g.C0.DC3?this.writeStopped=!0:t.key===g.C0.DC1&&(this.writeStopped=!1),t.scrollDisp?(this.scrollDisp(t.scrollDisp),this.cancel(e,!0)):!!a(this,e)||(t.cancel&&this.cancel(e,!0),!t.key||(this.emit("keydown",e),this.emit("key",t.key,e),this.showCursor(),this.handler(t.key),this.cancel(e,!0)))},i.prototype.evaluateKeyEscapeSequence=function(e){var t={cancel:!1,key:void 0,scrollDisp:void 0},r=e.shiftKey<<0|e.altKey<<1|e.ctrlKey<<2|e.metaKey<<3;switch(e.keyCode){case 8:if(e.shiftKey){t.key=g.C0.BS;break}t.key=g.C0.DEL;break;case 9:if(e.shiftKey){t.key=g.C0.ESC+"[Z";break}t.key=g.C0.HT,t.cancel=!0;break;case 13:t.key=g.C0.CR,t.cancel=!0;break;case 27:t.key=g.C0.ESC,t.cancel=!0;break;case 37:r?(t.key=g.C0.ESC+"[1;"+(r+1)+"D",t.key==g.C0.ESC+"[1;3D"&&(t.key=this.browser.isMac?g.C0.ESC+"b":g.C0.ESC+"[1;5D")):this.applicationCursor?t.key=g.C0.ESC+"OD":t.key=g.C0.ESC+"[D";break;case 39:r?(t.key=g.C0.ESC+"[1;"+(r+1)+"C",t.key==g.C0.ESC+"[1;3C"&&(t.key=this.browser.isMac?g.C0.ESC+"f":g.C0.ESC+"[1;5C")):this.applicationCursor?t.key=g.C0.ESC+"OC":t.key=g.C0.ESC+"[C";break;case 38:r?(t.key=g.C0.ESC+"[1;"+(r+1)+"A",t.key==g.C0.ESC+"[1;3A"&&(t.key=g.C0.ESC+"[1;5A")):this.applicationCursor?t.key=g.C0.ESC+"OA":t.key=g.C0.ESC+"[A";break;case 40:r?(t.key=g.C0.ESC+"[1;"+(r+1)+"B",t.key==g.C0.ESC+"[1;3B"&&(t.key=g.C0.ESC+"[1;5B")):this.applicationCursor?t.key=g.C0.ESC+"OB":t.key=g.C0.ESC+"[B";break;case 45:e.shiftKey||e.ctrlKey||(t.key=g.C0.ESC+"[2~");break;case 46:t.key=r?g.C0.ESC+"[3;"+(r+1)+"~":g.C0.ESC+"[3~";break;case 36:r?t.key=g.C0.ESC+"[1;"+(r+1)+"H":this.applicationCursor?t.key=g.C0.ESC+"OH":t.key=g.C0.ESC+"[H";break;case 35:r?t.key=g.C0.ESC+"[1;"+(r+1)+"F":this.applicationCursor?t.key=g.C0.ESC+"OF":t.key=g.C0.ESC+"[F";break;case 33:e.shiftKey?t.scrollDisp=-(this.rows-1):t.key=g.C0.ESC+"[5~";break;case 34:e.shiftKey?t.scrollDisp=this.rows-1:t.key=g.C0.ESC+"[6~";break;case 112:t.key=r?g.C0.ESC+"[1;"+(r+1)+"P":g.C0.ESC+"OP";break;case 113:t.key=r?g.C0.ESC+"[1;"+(r+1)+"Q":g.C0.ESC+"OQ";break;case 114:t.key=r?g.C0.ESC+"[1;"+(r+1)+"R":g.C0.ESC+"OR";break;case 115:t.key=r?g.C0.ESC+"[1;"+(r+1)+"S":g.C0.ESC+"OS";break;case 116:t.key=r?g.C0.ESC+"[15;"+(r+1)+"~":g.C0.ESC+"[15~";break;case 117:t.key=r?g.C0.ESC+"[17;"+(r+1)+"~":g.C0.ESC+"[17~";break;case 118:t.key=r?g.C0.ESC+"[18;"+(r+1)+"~":g.C0.ESC+"[18~";break;case 119:t.key=r?g.C0.ESC+"[19;"+(r+1)+"~":g.C0.ESC+"[19~";break;case 120:t.key=r?g.C0.ESC+"[20;"+(r+1)+"~":g.C0.ESC+"[20~";break;case 121:t.key=r?g.C0.ESC+"[21;"+(r+1)+"~":g.C0.ESC+"[21~";break;case 122:t.key=r?g.C0.ESC+"[23;"+(r+1)+"~":g.C0.ESC+"[23~";break;case 123:t.key=r?g.C0.ESC+"[24;"+(r+1)+"~":g.C0.ESC+"[24~";break;default:!e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?this.browser.isMac||!e.altKey||e.ctrlKey||e.metaKey?this.browser.isMac&&!e.altKey&&!e.ctrlKey&&e.metaKey&&65===e.keyCode&&this.selectAll():e.keyCode>=65&&e.keyCode<=90?t.key=g.C0.ESC+String.fromCharCode(e.keyCode+32):192===e.keyCode?t.key=g.C0.ESC+"`":e.keyCode>=48&&e.keyCode<=57&&(t.key=g.C0.ESC+(e.keyCode-48)):e.keyCode>=65&&e.keyCode<=90?t.key=String.fromCharCode(e.keyCode-64):32===e.keyCode?t.key=String.fromCharCode(0):e.keyCode>=51&&e.keyCode<=55?t.key=String.fromCharCode(e.keyCode-51+27):56===e.keyCode?t.key=String.fromCharCode(127):219===e.keyCode?t.key=String.fromCharCode(27):220===e.keyCode?t.key=String.fromCharCode(28):221===e.keyCode&&(t.key=String.fromCharCode(29))}return t},i.prototype.setgLevel=function(e){this.glevel=e,this.charset=this.charsets[e]},i.prototype.setgCharset=function(e,t){this.charsets[e]=t,this.glevel===e&&(this.charset=t)},i.prototype.keyPress=function(e){var t;if(this.customKeyEventHandler&&!1===this.customKeyEventHandler(e))return!1;if(this.cancel(e),e.charCode)t=e.charCode;else if(null==e.which)t=e.keyCode;else{if(0===e.which||0===e.charCode)return!1;t=e.which}return!(!t||(e.altKey||e.ctrlKey||e.metaKey)&&!a(this,e))&&(t=String.fromCharCode(t),this.emit("keypress",t,e),this.emit("key",t,e),this.showCursor(),this.handler(t),!0)},i.prototype.send=function(e){var t=this;this.queue||setTimeout(function(){t.handler(t.queue),t.queue=""},1),this.queue+=e},i.prototype.bell=function(){if(this.visualBell){var e=this;this.element.style.borderColor="white",setTimeout(function(){e.element.style.borderColor=""},10),this.popOnBell&&this.focus()}},i.prototype.log=function(){if(this.debug&&this.context.console&&this.context.console.log){var e=Array.prototype.slice.call(arguments);this.context.console.log.apply(this.context.console,e)}},i.prototype.error=function(){if(this.debug&&this.context.console&&this.context.console.error){var e=Array.prototype.slice.call(arguments);this.context.console.error.apply(this.context.console,e)}},i.prototype.resize=function(e,t){if(!isNaN(e)&&!isNaN(t)){t>this.getOption("scrollback")&&this.setOption("scrollback",t);var r,i,o,s,n;if(e!==this.cols||t!==this.rows){if(e<1&&(e=1),t<1&&(t=1),(o=this.cols)0&&this.lines.length<=this.ybase+this.y+n+1?(this.ybase--,n++,this.ydisp>0&&this.ydisp--):this.lines.push(this.blankLine())),this.children.lengtht;)if(this.lines.length>t+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++)),this.children.length>t){if(!(r=this.children.shift()))continue;r.parentNode.removeChild(r)}this.rows=t,this.y>=t&&(this.y=t-1),n&&(this.y+=n),this.x>=e&&(this.x=e-1),this.scrollTop=0,this.scrollBottom=t-1,this.charMeasure.measure(),this.refresh(0,this.rows-1),this.normal=null,this.geometry=[this.cols,this.rows],this.emit("resize",{terminal:this,cols:e,rows:t})}}},i.prototype.updateRange=function(e){ethis.refreshEnd&&(this.refreshEnd=e)},i.prototype.maxRange=function(){this.refreshStart=0,this.refreshEnd=this.rows-1},i.prototype.setupStops=function(e){for(null!=e?this.tabs[e]||(e=this.prevStop(e)):(this.tabs={},e=0);e0;);return e>=this.cols?this.cols-1:e<0?0:e},i.prototype.nextStop=function(e){for(null==e&&(e=this.x);!this.tabs[++e]&&e=this.cols?this.cols-1:e<0?0:e},i.prototype.eraseRight=function(e,t){var r=this.lines.get(this.ybase+t);if(r){for(var i=[this.eraseAttr()," ",1];ethis.scrollBottom&&(this.y--,this.scroll()),this.x>=this.cols&&this.x--},i.prototype.reverseIndex=function(){this.y===this.scrollTop?(this.lines.shiftElements(this.y+this.ybase,this.rows-1,1),this.lines.set(this.y+this.ybase,this.blankLine(!0)),this.updateRange(this.scrollTop),this.updateRange(this.scrollBottom)):this.y--},i.prototype.reset=function(){this.options.rows=this.rows,this.options.cols=this.cols;var e=this.customKeyEventHandler,t=this.cursorBlinkInterval;i.call(this,this.options),this.customKeyEventHandler=e,this.cursorBlinkInterval=t,this.refresh(0,this.rows-1),this.viewport.syncScrollArea()},i.prototype.tabSet=function(){this.tabs[this.x]=!0},i.prototype.matchColor=l,l._cache={},l.distance=function(e,t,r,i,o,s){return Math.pow(30*(e-i),2)+Math.pow(59*(t-o),2)+Math.pow(11*(r-s),2)},i.EventEmitter=u.EventEmitter,i.inherits=n,i.on=o,i.off=s,i.cancel=function(e,t){if(this.cancelEvents||t)return e.preventDefault(),e.stopPropagation(),!1},e.exports=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(){this._events=this._events||{}}return e.prototype.on=function(e,t){this._events[e]=this._events[e]||[],this._events[e].push(t)},e.prototype.off=function(e,t){if(this._events[e])for(var r=this._events[e],i=r.length;i--;)if(r[i]===t||r[i].listener===t)return void r.splice(i,1)},e.prototype.removeAllListeners=function(e){this._events[e]&&delete this._events[e]},e.prototype.once=function(e,t){function r(){var i=Array.prototype.slice.call(arguments);return this.off(e,r),t.apply(this,i)}return r.listener=t,this.on(e,r)},e.prototype.emit=function(e){for(var t=[],r=1;r=3?r[2].replace(/^\s*at\s+/,""):r[1].replace(/^\s*global code@/,"")}for(var o=0;ot.length&&(t=t.repeat(e/t.length+1)),t.slice(0,e)+String(this))}),String.prototype.padEnd||(String.prototype.padEnd=function(e,t){return(e-=this.length)<=0?String(this):(void 0===t&&(t=" "),e>t.length&&(t=t.repeat(e/t.length+1)),String(this)+t.slice(0,e))}),i.colors={},i.colors.re_={hex16:/#([a-f0-9])([a-f0-9])([a-f0-9])/i,hex24:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/i,rgb:new RegExp("^/s*rgb/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*/)/s*$".replace(/\//g,"\\"),"i"),rgba:new RegExp("^/s*rgba/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*(?:,/s*(/d+(?:/./d+)?)/s*)/)/s*$".replace(/\//g,"\\"),"i"),rgbx:new RegExp("^/s*rgba?/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*(?:,/s*(/d+(?:/./d+)?)/s*)?/)/s*$".replace(/\//g,"\\"),"i"),x11rgb:/^\s*rgb:([a-f0-9]{1,4})\/([a-f0-9]{1,4})\/([a-f0-9]{1,4})\s*$/i,name:/[a-z][a-z0-9\s]+/},i.colors.rgbToX11=function(e){function t(e){return e=(257*Math.min(e,255)).toString(16),i.f.zpad(e,4)}var r=e.match(i.colors.re_.rgbx);return r?"rgb:"+t(r[1])+"/"+t(r[2])+"/"+t(r[3]):null},i.colors.x11HexToCSS=function(e){if(!e.startsWith("#"))return null;if(e=e.substr(1),-1==[3,6,9,12].indexOf(e.length))return null;if(e.match(/[^a-f0-9]/i))return null;var t=e.length/3,r=e.substr(0,t),o=e.substr(t,t),s=e.substr(t+t,t);return i.colors.arrayToRGBA([r,o,s].map(function(e){return e=parseInt(e,16),2==t?e:1==t?e<<4:e>>4*(t-2)}))},i.colors.x11ToCSS=function(e){var t=e.match(i.colors.re_.x11rgb);return t?(t.splice(0,1),i.colors.arrayToRGBA(t.map(function(e){return 1==e.length?parseInt(e+e,16):2==e.length?parseInt(e,16):(3==e.length&&(e+=e.substr(2)),Math.round(parseInt(e,16)/257))}))):e.startsWith("#")?i.colors.x11HexToCSS(e):i.colors.nameToRGB(e)},i.colors.hexToRGB=function(e){function t(e){4==e.length&&(e=e.replace(r,function(e,t,r,i){return"#"+t+t+r+r+i+i}));var t=e.match(o);return t?"rgb("+parseInt(t[1],16)+", "+parseInt(t[2],16)+", "+parseInt(t[3],16)+")":null}var r=i.colors.re_.hex16,o=i.colors.re_.hex24;if(e instanceof Array)for(var s=0;s3?e[3]:1;return"rgba("+e[0]+", "+e[1]+", "+e[2]+", "+t+")"},i.colors.setAlpha=function(e,t){var r=i.colors.crackRGB(e);return r[3]=t,i.colors.arrayToRGBA(r)},i.colors.mix=function(e,t,r){for(var o=i.colors.crackRGB(e),s=i.colors.crackRGB(t),n=0;n<4;++n){var a=s[n]-o[n];o[n]=Math.round(parseInt(o[n])+a*r)}return i.colors.arrayToRGBA(o)},i.colors.crackRGB=function(e){if(e.startsWith("rgba")){if(t=e.match(i.colors.re_.rgba))return t.shift(),t}else{var t=e.match(i.colors.re_.rgb);if(t)return t.shift(),t.push(1),t}return console.error("Couldn't crack: "+e),null},i.colors.nameToRGB=function(e){return e in i.colors.colorNames?i.colors.colorNames[e]:(e=e.toLowerCase())in i.colors.colorNames?i.colors.colorNames[e]:(e=e.replace(/\s+/g,""))in i.colors.colorNames?i.colors.colorNames[e]:null},i.colors.stockColorPalette=i.colors.hexToRGB(["#000000","#CC0000","#4E9A06","#C4A000","#3465A4","#75507B","#06989A","#D3D7CF","#555753","#EF2929","#00BA13","#FCE94F","#729FCF","#F200CB","#00B5BD","#EEEEEC","#000000","#00005F","#000087","#0000AF","#0000D7","#0000FF","#005F00","#005F5F","#005F87","#005FAF","#005FD7","#005FFF","#008700","#00875F","#008787","#0087AF","#0087D7","#0087FF","#00AF00","#00AF5F","#00AF87","#00AFAF","#00AFD7","#00AFFF","#00D700","#00D75F","#00D787","#00D7AF","#00D7D7","#00D7FF","#00FF00","#00FF5F","#00FF87","#00FFAF","#00FFD7","#00FFFF","#5F0000","#5F005F","#5F0087","#5F00AF","#5F00D7","#5F00FF","#5F5F00","#5F5F5F","#5F5F87","#5F5FAF","#5F5FD7","#5F5FFF","#5F8700","#5F875F","#5F8787","#5F87AF","#5F87D7","#5F87FF","#5FAF00","#5FAF5F","#5FAF87","#5FAFAF","#5FAFD7","#5FAFFF","#5FD700","#5FD75F","#5FD787","#5FD7AF","#5FD7D7","#5FD7FF","#5FFF00","#5FFF5F","#5FFF87","#5FFFAF","#5FFFD7","#5FFFFF","#870000","#87005F","#870087","#8700AF","#8700D7","#8700FF","#875F00","#875F5F","#875F87","#875FAF","#875FD7","#875FFF","#878700","#87875F","#878787","#8787AF","#8787D7","#8787FF","#87AF00","#87AF5F","#87AF87","#87AFAF","#87AFD7","#87AFFF","#87D700","#87D75F","#87D787","#87D7AF","#87D7D7","#87D7FF","#87FF00","#87FF5F","#87FF87","#87FFAF","#87FFD7","#87FFFF","#AF0000","#AF005F","#AF0087","#AF00AF","#AF00D7","#AF00FF","#AF5F00","#AF5F5F","#AF5F87","#AF5FAF","#AF5FD7","#AF5FFF","#AF8700","#AF875F","#AF8787","#AF87AF","#AF87D7","#AF87FF","#AFAF00","#AFAF5F","#AFAF87","#AFAFAF","#AFAFD7","#AFAFFF","#AFD700","#AFD75F","#AFD787","#AFD7AF","#AFD7D7","#AFD7FF","#AFFF00","#AFFF5F","#AFFF87","#AFFFAF","#AFFFD7","#AFFFFF","#D70000","#D7005F","#D70087","#D700AF","#D700D7","#D700FF","#D75F00","#D75F5F","#D75F87","#D75FAF","#D75FD7","#D75FFF","#D78700","#D7875F","#D78787","#D787AF","#D787D7","#D787FF","#D7AF00","#D7AF5F","#D7AF87","#D7AFAF","#D7AFD7","#D7AFFF","#D7D700","#D7D75F","#D7D787","#D7D7AF","#D7D7D7","#D7D7FF","#D7FF00","#D7FF5F","#D7FF87","#D7FFAF","#D7FFD7","#D7FFFF","#FF0000","#FF005F","#FF0087","#FF00AF","#FF00D7","#FF00FF","#FF5F00","#FF5F5F","#FF5F87","#FF5FAF","#FF5FD7","#FF5FFF","#FF8700","#FF875F","#FF8787","#FF87AF","#FF87D7","#FF87FF","#FFAF00","#FFAF5F","#FFAF87","#FFAFAF","#FFAFD7","#FFAFFF","#FFD700","#FFD75F","#FFD787","#FFD7AF","#FFD7D7","#FFD7FF","#FFFF00","#FFFF5F","#FFFF87","#FFFFAF","#FFFFD7","#FFFFFF","#080808","#121212","#1C1C1C","#262626","#303030","#3A3A3A","#444444","#4E4E4E","#585858","#626262","#6C6C6C","#767676","#808080","#8A8A8A","#949494","#9E9E9E","#A8A8A8","#B2B2B2","#BCBCBC","#C6C6C6","#D0D0D0","#DADADA","#E4E4E4","#EEEEEE"]),i.colors.colorPalette=i.colors.stockColorPalette,i.colors.colorNames={aliceblue:"rgb(240, 248, 255)",antiquewhite:"rgb(250, 235, 215)",antiquewhite1:"rgb(255, 239, 219)",antiquewhite2:"rgb(238, 223, 204)",antiquewhite3:"rgb(205, 192, 176)",antiquewhite4:"rgb(139, 131, 120)",aquamarine:"rgb(127, 255, 212)",aquamarine1:"rgb(127, 255, 212)",aquamarine2:"rgb(118, 238, 198)",aquamarine3:"rgb(102, 205, 170)",aquamarine4:"rgb(69, 139, 116)",azure:"rgb(240, 255, 255)",azure1:"rgb(240, 255, 255)",azure2:"rgb(224, 238, 238)",azure3:"rgb(193, 205, 205)",azure4:"rgb(131, 139, 139)",beige:"rgb(245, 245, 220)",bisque:"rgb(255, 228, 196)",bisque1:"rgb(255, 228, 196)",bisque2:"rgb(238, 213, 183)",bisque3:"rgb(205, 183, 158)",bisque4:"rgb(139, 125, 107)",black:"rgb(0, 0, 0)",blanchedalmond:"rgb(255, 235, 205)",blue:"rgb(0, 0, 255)",blue1:"rgb(0, 0, 255)",blue2:"rgb(0, 0, 238)",blue3:"rgb(0, 0, 205)",blue4:"rgb(0, 0, 139)",blueviolet:"rgb(138, 43, 226)",brown:"rgb(165, 42, 42)",brown1:"rgb(255, 64, 64)",brown2:"rgb(238, 59, 59)",brown3:"rgb(205, 51, 51)",brown4:"rgb(139, 35, 35)",burlywood:"rgb(222, 184, 135)",burlywood1:"rgb(255, 211, 155)",burlywood2:"rgb(238, 197, 145)",burlywood3:"rgb(205, 170, 125)",burlywood4:"rgb(139, 115, 85)",cadetblue:"rgb(95, 158, 160)",cadetblue1:"rgb(152, 245, 255)",cadetblue2:"rgb(142, 229, 238)",cadetblue3:"rgb(122, 197, 205)",cadetblue4:"rgb(83, 134, 139)",chartreuse:"rgb(127, 255, 0)",chartreuse1:"rgb(127, 255, 0)",chartreuse2:"rgb(118, 238, 0)",chartreuse3:"rgb(102, 205, 0)",chartreuse4:"rgb(69, 139, 0)",chocolate:"rgb(210, 105, 30)",chocolate1:"rgb(255, 127, 36)",chocolate2:"rgb(238, 118, 33)",chocolate3:"rgb(205, 102, 29)",chocolate4:"rgb(139, 69, 19)",coral:"rgb(255, 127, 80)",coral1:"rgb(255, 114, 86)",coral2:"rgb(238, 106, 80)",coral3:"rgb(205, 91, 69)",coral4:"rgb(139, 62, 47)",cornflowerblue:"rgb(100, 149, 237)",cornsilk:"rgb(255, 248, 220)",cornsilk1:"rgb(255, 248, 220)",cornsilk2:"rgb(238, 232, 205)",cornsilk3:"rgb(205, 200, 177)",cornsilk4:"rgb(139, 136, 120)",cyan:"rgb(0, 255, 255)",cyan1:"rgb(0, 255, 255)",cyan2:"rgb(0, 238, 238)",cyan3:"rgb(0, 205, 205)",cyan4:"rgb(0, 139, 139)",darkblue:"rgb(0, 0, 139)",darkcyan:"rgb(0, 139, 139)",darkgoldenrod:"rgb(184, 134, 11)",darkgoldenrod1:"rgb(255, 185, 15)",darkgoldenrod2:"rgb(238, 173, 14)",darkgoldenrod3:"rgb(205, 149, 12)",darkgoldenrod4:"rgb(139, 101, 8)",darkgray:"rgb(169, 169, 169)",darkgreen:"rgb(0, 100, 0)",darkgrey:"rgb(169, 169, 169)",darkkhaki:"rgb(189, 183, 107)",darkmagenta:"rgb(139, 0, 139)",darkolivegreen:"rgb(85, 107, 47)",darkolivegreen1:"rgb(202, 255, 112)",darkolivegreen2:"rgb(188, 238, 104)",darkolivegreen3:"rgb(162, 205, 90)",darkolivegreen4:"rgb(110, 139, 61)",darkorange:"rgb(255, 140, 0)",darkorange1:"rgb(255, 127, 0)",darkorange2:"rgb(238, 118, 0)",darkorange3:"rgb(205, 102, 0)",darkorange4:"rgb(139, 69, 0)",darkorchid:"rgb(153, 50, 204)",darkorchid1:"rgb(191, 62, 255)",darkorchid2:"rgb(178, 58, 238)",darkorchid3:"rgb(154, 50, 205)",darkorchid4:"rgb(104, 34, 139)",darkred:"rgb(139, 0, 0)",darksalmon:"rgb(233, 150, 122)",darkseagreen:"rgb(143, 188, 143)",darkseagreen1:"rgb(193, 255, 193)",darkseagreen2:"rgb(180, 238, 180)",darkseagreen3:"rgb(155, 205, 155)",darkseagreen4:"rgb(105, 139, 105)",darkslateblue:"rgb(72, 61, 139)",darkslategray:"rgb(47, 79, 79)",darkslategray1:"rgb(151, 255, 255)",darkslategray2:"rgb(141, 238, 238)",darkslategray3:"rgb(121, 205, 205)",darkslategray4:"rgb(82, 139, 139)",darkslategrey:"rgb(47, 79, 79)",darkturquoise:"rgb(0, 206, 209)",darkviolet:"rgb(148, 0, 211)",debianred:"rgb(215, 7, 81)",deeppink:"rgb(255, 20, 147)",deeppink1:"rgb(255, 20, 147)",deeppink2:"rgb(238, 18, 137)",deeppink3:"rgb(205, 16, 118)",deeppink4:"rgb(139, 10, 80)",deepskyblue:"rgb(0, 191, 255)",deepskyblue1:"rgb(0, 191, 255)",deepskyblue2:"rgb(0, 178, 238)",deepskyblue3:"rgb(0, 154, 205)",deepskyblue4:"rgb(0, 104, 139)",dimgray:"rgb(105, 105, 105)",dimgrey:"rgb(105, 105, 105)",dodgerblue:"rgb(30, 144, 255)",dodgerblue1:"rgb(30, 144, 255)",dodgerblue2:"rgb(28, 134, 238)",dodgerblue3:"rgb(24, 116, 205)",dodgerblue4:"rgb(16, 78, 139)",firebrick:"rgb(178, 34, 34)",firebrick1:"rgb(255, 48, 48)",firebrick2:"rgb(238, 44, 44)",firebrick3:"rgb(205, 38, 38)",firebrick4:"rgb(139, 26, 26)",floralwhite:"rgb(255, 250, 240)",forestgreen:"rgb(34, 139, 34)",gainsboro:"rgb(220, 220, 220)",ghostwhite:"rgb(248, 248, 255)",gold:"rgb(255, 215, 0)",gold1:"rgb(255, 215, 0)",gold2:"rgb(238, 201, 0)",gold3:"rgb(205, 173, 0)",gold4:"rgb(139, 117, 0)",goldenrod:"rgb(218, 165, 32)",goldenrod1:"rgb(255, 193, 37)",goldenrod2:"rgb(238, 180, 34)",goldenrod3:"rgb(205, 155, 29)",goldenrod4:"rgb(139, 105, 20)",gray:"rgb(190, 190, 190)",gray0:"rgb(0, 0, 0)",gray1:"rgb(3, 3, 3)",gray10:"rgb(26, 26, 26)",gray100:"rgb(255, 255, 255)",gray11:"rgb(28, 28, 28)",gray12:"rgb(31, 31, 31)",gray13:"rgb(33, 33, 33)",gray14:"rgb(36, 36, 36)",gray15:"rgb(38, 38, 38)",gray16:"rgb(41, 41, 41)",gray17:"rgb(43, 43, 43)",gray18:"rgb(46, 46, 46)",gray19:"rgb(48, 48, 48)",gray2:"rgb(5, 5, 5)",gray20:"rgb(51, 51, 51)",gray21:"rgb(54, 54, 54)",gray22:"rgb(56, 56, 56)",gray23:"rgb(59, 59, 59)",gray24:"rgb(61, 61, 61)",gray25:"rgb(64, 64, 64)",gray26:"rgb(66, 66, 66)",gray27:"rgb(69, 69, 69)",gray28:"rgb(71, 71, 71)",gray29:"rgb(74, 74, 74)",gray3:"rgb(8, 8, 8)",gray30:"rgb(77, 77, 77)",gray31:"rgb(79, 79, 79)",gray32:"rgb(82, 82, 82)",gray33:"rgb(84, 84, 84)",gray34:"rgb(87, 87, 87)",gray35:"rgb(89, 89, 89)",gray36:"rgb(92, 92, 92)",gray37:"rgb(94, 94, 94)",gray38:"rgb(97, 97, 97)",gray39:"rgb(99, 99, 99)",gray4:"rgb(10, 10, 10)",gray40:"rgb(102, 102, 102)",gray41:"rgb(105, 105, 105)",gray42:"rgb(107, 107, 107)",gray43:"rgb(110, 110, 110)",gray44:"rgb(112, 112, 112)",gray45:"rgb(115, 115, 115)",gray46:"rgb(117, 117, 117)",gray47:"rgb(120, 120, 120)",gray48:"rgb(122, 122, 122)",gray49:"rgb(125, 125, 125)",gray5:"rgb(13, 13, 13)",gray50:"rgb(127, 127, 127)",gray51:"rgb(130, 130, 130)",gray52:"rgb(133, 133, 133)",gray53:"rgb(135, 135, 135)",gray54:"rgb(138, 138, 138)",gray55:"rgb(140, 140, 140)",gray56:"rgb(143, 143, 143)",gray57:"rgb(145, 145, 145)",gray58:"rgb(148, 148, 148)",gray59:"rgb(150, 150, 150)",gray6:"rgb(15, 15, 15)",gray60:"rgb(153, 153, 153)",gray61:"rgb(156, 156, 156)",gray62:"rgb(158, 158, 158)",gray63:"rgb(161, 161, 161)",gray64:"rgb(163, 163, 163)",gray65:"rgb(166, 166, 166)",gray66:"rgb(168, 168, 168)",gray67:"rgb(171, 171, 171)",gray68:"rgb(173, 173, 173)",gray69:"rgb(176, 176, 176)",gray7:"rgb(18, 18, 18)",gray70:"rgb(179, 179, 179)",gray71:"rgb(181, 181, 181)",gray72:"rgb(184, 184, 184)",gray73:"rgb(186, 186, 186)",gray74:"rgb(189, 189, 189)",gray75:"rgb(191, 191, 191)",gray76:"rgb(194, 194, 194)",gray77:"rgb(196, 196, 196)",gray78:"rgb(199, 199, 199)",gray79:"rgb(201, 201, 201)",gray8:"rgb(20, 20, 20)",gray80:"rgb(204, 204, 204)",gray81:"rgb(207, 207, 207)",gray82:"rgb(209, 209, 209)",gray83:"rgb(212, 212, 212)",gray84:"rgb(214, 214, 214)",gray85:"rgb(217, 217, 217)",gray86:"rgb(219, 219, 219)",gray87:"rgb(222, 222, 222)",gray88:"rgb(224, 224, 224)",gray89:"rgb(227, 227, 227)",gray9:"rgb(23, 23, 23)",gray90:"rgb(229, 229, 229)",gray91:"rgb(232, 232, 232)",gray92:"rgb(235, 235, 235)",gray93:"rgb(237, 237, 237)",gray94:"rgb(240, 240, 240)",gray95:"rgb(242, 242, 242)",gray96:"rgb(245, 245, 245)",gray97:"rgb(247, 247, 247)",gray98:"rgb(250, 250, 250)",gray99:"rgb(252, 252, 252)",green:"rgb(0, 255, 0)",green1:"rgb(0, 255, 0)",green2:"rgb(0, 238, 0)",green3:"rgb(0, 205, 0)",green4:"rgb(0, 139, 0)",greenyellow:"rgb(173, 255, 47)",grey:"rgb(190, 190, 190)",grey0:"rgb(0, 0, 0)",grey1:"rgb(3, 3, 3)",grey10:"rgb(26, 26, 26)",grey100:"rgb(255, 255, 255)",grey11:"rgb(28, 28, 28)",grey12:"rgb(31, 31, 31)",grey13:"rgb(33, 33, 33)",grey14:"rgb(36, 36, 36)",grey15:"rgb(38, 38, 38)",grey16:"rgb(41, 41, 41)",grey17:"rgb(43, 43, 43)",grey18:"rgb(46, 46, 46)",grey19:"rgb(48, 48, 48)",grey2:"rgb(5, 5, 5)",grey20:"rgb(51, 51, 51)",grey21:"rgb(54, 54, 54)",grey22:"rgb(56, 56, 56)",grey23:"rgb(59, 59, 59)",grey24:"rgb(61, 61, 61)",grey25:"rgb(64, 64, 64)",grey26:"rgb(66, 66, 66)",grey27:"rgb(69, 69, 69)",grey28:"rgb(71, 71, 71)",grey29:"rgb(74, 74, 74)",grey3:"rgb(8, 8, 8)",grey30:"rgb(77, 77, 77)",grey31:"rgb(79, 79, 79)",grey32:"rgb(82, 82, 82)",grey33:"rgb(84, 84, 84)",grey34:"rgb(87, 87, 87)",grey35:"rgb(89, 89, 89)",grey36:"rgb(92, 92, 92)",grey37:"rgb(94, 94, 94)",grey38:"rgb(97, 97, 97)",grey39:"rgb(99, 99, 99)",grey4:"rgb(10, 10, 10)",grey40:"rgb(102, 102, 102)",grey41:"rgb(105, 105, 105)",grey42:"rgb(107, 107, 107)",grey43:"rgb(110, 110, 110)",grey44:"rgb(112, 112, 112)",grey45:"rgb(115, 115, 115)",grey46:"rgb(117, 117, 117)",grey47:"rgb(120, 120, 120)",grey48:"rgb(122, 122, 122)",grey49:"rgb(125, 125, 125)",grey5:"rgb(13, 13, 13)",grey50:"rgb(127, 127, 127)",grey51:"rgb(130, 130, 130)",grey52:"rgb(133, 133, 133)",grey53:"rgb(135, 135, 135)",grey54:"rgb(138, 138, 138)",grey55:"rgb(140, 140, 140)",grey56:"rgb(143, 143, 143)",grey57:"rgb(145, 145, 145)",grey58:"rgb(148, 148, 148)",grey59:"rgb(150, 150, 150)",grey6:"rgb(15, 15, 15)",grey60:"rgb(153, 153, 153)",grey61:"rgb(156, 156, 156)",grey62:"rgb(158, 158, 158)",grey63:"rgb(161, 161, 161)",grey64:"rgb(163, 163, 163)",grey65:"rgb(166, 166, 166)",grey66:"rgb(168, 168, 168)",grey67:"rgb(171, 171, 171)",grey68:"rgb(173, 173, 173)",grey69:"rgb(176, 176, 176)",grey7:"rgb(18, 18, 18)",grey70:"rgb(179, 179, 179)",grey71:"rgb(181, 181, 181)",grey72:"rgb(184, 184, 184)",grey73:"rgb(186, 186, 186)",grey74:"rgb(189, 189, 189)",grey75:"rgb(191, 191, 191)",grey76:"rgb(194, 194, 194)",grey77:"rgb(196, 196, 196)",grey78:"rgb(199, 199, 199)",grey79:"rgb(201, 201, 201)",grey8:"rgb(20, 20, 20)",grey80:"rgb(204, 204, 204)",grey81:"rgb(207, 207, 207)",grey82:"rgb(209, 209, 209)",grey83:"rgb(212, 212, 212)",grey84:"rgb(214, 214, 214)",grey85:"rgb(217, 217, 217)",grey86:"rgb(219, 219, 219)",grey87:"rgb(222, 222, 222)",grey88:"rgb(224, 224, 224)",grey89:"rgb(227, 227, 227)",grey9:"rgb(23, 23, 23)",grey90:"rgb(229, 229, 229)",grey91:"rgb(232, 232, 232)",grey92:"rgb(235, 235, 235)",grey93:"rgb(237, 237, 237)",grey94:"rgb(240, 240, 240)",grey95:"rgb(242, 242, 242)",grey96:"rgb(245, 245, 245)",grey97:"rgb(247, 247, 247)",grey98:"rgb(250, 250, 250)",grey99:"rgb(252, 252, 252)",honeydew:"rgb(240, 255, 240)",honeydew1:"rgb(240, 255, 240)",honeydew2:"rgb(224, 238, 224)",honeydew3:"rgb(193, 205, 193)",honeydew4:"rgb(131, 139, 131)",hotpink:"rgb(255, 105, 180)",hotpink1:"rgb(255, 110, 180)",hotpink2:"rgb(238, 106, 167)",hotpink3:"rgb(205, 96, 144)",hotpink4:"rgb(139, 58, 98)",indianred:"rgb(205, 92, 92)",indianred1:"rgb(255, 106, 106)",indianred2:"rgb(238, 99, 99)",indianred3:"rgb(205, 85, 85)",indianred4:"rgb(139, 58, 58)",ivory:"rgb(255, 255, 240)",ivory1:"rgb(255, 255, 240)",ivory2:"rgb(238, 238, 224)",ivory3:"rgb(205, 205, 193)",ivory4:"rgb(139, 139, 131)",khaki:"rgb(240, 230, 140)",khaki1:"rgb(255, 246, 143)",khaki2:"rgb(238, 230, 133)",khaki3:"rgb(205, 198, 115)",khaki4:"rgb(139, 134, 78)",lavender:"rgb(230, 230, 250)",lavenderblush:"rgb(255, 240, 245)",lavenderblush1:"rgb(255, 240, 245)",lavenderblush2:"rgb(238, 224, 229)",lavenderblush3:"rgb(205, 193, 197)",lavenderblush4:"rgb(139, 131, 134)",lawngreen:"rgb(124, 252, 0)",lemonchiffon:"rgb(255, 250, 205)",lemonchiffon1:"rgb(255, 250, 205)",lemonchiffon2:"rgb(238, 233, 191)",lemonchiffon3:"rgb(205, 201, 165)",lemonchiffon4:"rgb(139, 137, 112)",lightblue:"rgb(173, 216, 230)",lightblue1:"rgb(191, 239, 255)",lightblue2:"rgb(178, 223, 238)",lightblue3:"rgb(154, 192, 205)",lightblue4:"rgb(104, 131, 139)",lightcoral:"rgb(240, 128, 128)",lightcyan:"rgb(224, 255, 255)",lightcyan1:"rgb(224, 255, 255)",lightcyan2:"rgb(209, 238, 238)",lightcyan3:"rgb(180, 205, 205)",lightcyan4:"rgb(122, 139, 139)",lightgoldenrod:"rgb(238, 221, 130)",lightgoldenrod1:"rgb(255, 236, 139)",lightgoldenrod2:"rgb(238, 220, 130)",lightgoldenrod3:"rgb(205, 190, 112)",lightgoldenrod4:"rgb(139, 129, 76)",lightgoldenrodyellow:"rgb(250, 250, 210)",lightgray:"rgb(211, 211, 211)",lightgreen:"rgb(144, 238, 144)",lightgrey:"rgb(211, 211, 211)",lightpink:"rgb(255, 182, 193)",lightpink1:"rgb(255, 174, 185)",lightpink2:"rgb(238, 162, 173)",lightpink3:"rgb(205, 140, 149)",lightpink4:"rgb(139, 95, 101)",lightsalmon:"rgb(255, 160, 122)",lightsalmon1:"rgb(255, 160, 122)",lightsalmon2:"rgb(238, 149, 114)",lightsalmon3:"rgb(205, 129, 98)",lightsalmon4:"rgb(139, 87, 66)",lightseagreen:"rgb(32, 178, 170)",lightskyblue:"rgb(135, 206, 250)",lightskyblue1:"rgb(176, 226, 255)",lightskyblue2:"rgb(164, 211, 238)",lightskyblue3:"rgb(141, 182, 205)",lightskyblue4:"rgb(96, 123, 139)",lightslateblue:"rgb(132, 112, 255)",lightslategray:"rgb(119, 136, 153)",lightslategrey:"rgb(119, 136, 153)",lightsteelblue:"rgb(176, 196, 222)",lightsteelblue1:"rgb(202, 225, 255)",lightsteelblue2:"rgb(188, 210, 238)",lightsteelblue3:"rgb(162, 181, 205)",lightsteelblue4:"rgb(110, 123, 139)",lightyellow:"rgb(255, 255, 224)",lightyellow1:"rgb(255, 255, 224)",lightyellow2:"rgb(238, 238, 209)",lightyellow3:"rgb(205, 205, 180)",lightyellow4:"rgb(139, 139, 122)",limegreen:"rgb(50, 205, 50)",linen:"rgb(250, 240, 230)",magenta:"rgb(255, 0, 255)",magenta1:"rgb(255, 0, 255)",magenta2:"rgb(238, 0, 238)",magenta3:"rgb(205, 0, 205)",magenta4:"rgb(139, 0, 139)",maroon:"rgb(176, 48, 96)",maroon1:"rgb(255, 52, 179)",maroon2:"rgb(238, 48, 167)",maroon3:"rgb(205, 41, 144)",maroon4:"rgb(139, 28, 98)",mediumaquamarine:"rgb(102, 205, 170)",mediumblue:"rgb(0, 0, 205)",mediumorchid:"rgb(186, 85, 211)",mediumorchid1:"rgb(224, 102, 255)",mediumorchid2:"rgb(209, 95, 238)",mediumorchid3:"rgb(180, 82, 205)",mediumorchid4:"rgb(122, 55, 139)",mediumpurple:"rgb(147, 112, 219)",mediumpurple1:"rgb(171, 130, 255)",mediumpurple2:"rgb(159, 121, 238)",mediumpurple3:"rgb(137, 104, 205)",mediumpurple4:"rgb(93, 71, 139)",mediumseagreen:"rgb(60, 179, 113)",mediumslateblue:"rgb(123, 104, 238)",mediumspringgreen:"rgb(0, 250, 154)",mediumturquoise:"rgb(72, 209, 204)",mediumvioletred:"rgb(199, 21, 133)",midnightblue:"rgb(25, 25, 112)",mintcream:"rgb(245, 255, 250)",mistyrose:"rgb(255, 228, 225)",mistyrose1:"rgb(255, 228, 225)",mistyrose2:"rgb(238, 213, 210)",mistyrose3:"rgb(205, 183, 181)",mistyrose4:"rgb(139, 125, 123)",moccasin:"rgb(255, 228, 181)",navajowhite:"rgb(255, 222, 173)",navajowhite1:"rgb(255, 222, 173)",navajowhite2:"rgb(238, 207, 161)",navajowhite3:"rgb(205, 179, 139)",navajowhite4:"rgb(139, 121, 94)",navy:"rgb(0, 0, 128)",navyblue:"rgb(0, 0, 128)",oldlace:"rgb(253, 245, 230)",olivedrab:"rgb(107, 142, 35)",olivedrab1:"rgb(192, 255, 62)",olivedrab2:"rgb(179, 238, 58)",olivedrab3:"rgb(154, 205, 50)",olivedrab4:"rgb(105, 139, 34)",orange:"rgb(255, 165, 0)",orange1:"rgb(255, 165, 0)",orange2:"rgb(238, 154, 0)",orange3:"rgb(205, 133, 0)",orange4:"rgb(139, 90, 0)",orangered:"rgb(255, 69, 0)",orangered1:"rgb(255, 69, 0)",orangered2:"rgb(238, 64, 0)",orangered3:"rgb(205, 55, 0)",orangered4:"rgb(139, 37, 0)",orchid:"rgb(218, 112, 214)",orchid1:"rgb(255, 131, 250)",orchid2:"rgb(238, 122, 233)",orchid3:"rgb(205, 105, 201)",orchid4:"rgb(139, 71, 137)",palegoldenrod:"rgb(238, 232, 170)",palegreen:"rgb(152, 251, 152)",palegreen1:"rgb(154, 255, 154)",palegreen2:"rgb(144, 238, 144)",palegreen3:"rgb(124, 205, 124)",palegreen4:"rgb(84, 139, 84)",paleturquoise:"rgb(175, 238, 238)",paleturquoise1:"rgb(187, 255, 255)",paleturquoise2:"rgb(174, 238, 238)",paleturquoise3:"rgb(150, 205, 205)",paleturquoise4:"rgb(102, 139, 139)",palevioletred:"rgb(219, 112, 147)",palevioletred1:"rgb(255, 130, 171)",palevioletred2:"rgb(238, 121, 159)",palevioletred3:"rgb(205, 104, 137)",palevioletred4:"rgb(139, 71, 93)",papayawhip:"rgb(255, 239, 213)",peachpuff:"rgb(255, 218, 185)",peachpuff1:"rgb(255, 218, 185)",peachpuff2:"rgb(238, 203, 173)",peachpuff3:"rgb(205, 175, 149)",peachpuff4:"rgb(139, 119, 101)",peru:"rgb(205, 133, 63)",pink:"rgb(255, 192, 203)",pink1:"rgb(255, 181, 197)",pink2:"rgb(238, 169, 184)",pink3:"rgb(205, 145, 158)",pink4:"rgb(139, 99, 108)",plum:"rgb(221, 160, 221)",plum1:"rgb(255, 187, 255)",plum2:"rgb(238, 174, 238)",plum3:"rgb(205, 150, 205)",plum4:"rgb(139, 102, 139)",powderblue:"rgb(176, 224, 230)",purple:"rgb(160, 32, 240)",purple1:"rgb(155, 48, 255)",purple2:"rgb(145, 44, 238)",purple3:"rgb(125, 38, 205)",purple4:"rgb(85, 26, 139)",red:"rgb(255, 0, 0)",red1:"rgb(255, 0, 0)",red2:"rgb(238, 0, 0)",red3:"rgb(205, 0, 0)",red4:"rgb(139, 0, 0)",rosybrown:"rgb(188, 143, 143)",rosybrown1:"rgb(255, 193, 193)",rosybrown2:"rgb(238, 180, 180)",rosybrown3:"rgb(205, 155, 155)",rosybrown4:"rgb(139, 105, 105)",royalblue:"rgb(65, 105, 225)",royalblue1:"rgb(72, 118, 255)",royalblue2:"rgb(67, 110, 238)",royalblue3:"rgb(58, 95, 205)",royalblue4:"rgb(39, 64, 139)",saddlebrown:"rgb(139, 69, 19)",salmon:"rgb(250, 128, 114)",salmon1:"rgb(255, 140, 105)",salmon2:"rgb(238, 130, 98)",salmon3:"rgb(205, 112, 84)",salmon4:"rgb(139, 76, 57)",sandybrown:"rgb(244, 164, 96)",seagreen:"rgb(46, 139, 87)",seagreen1:"rgb(84, 255, 159)",seagreen2:"rgb(78, 238, 148)",seagreen3:"rgb(67, 205, 128)",seagreen4:"rgb(46, 139, 87)",seashell:"rgb(255, 245, 238)",seashell1:"rgb(255, 245, 238)",seashell2:"rgb(238, 229, 222)",seashell3:"rgb(205, 197, 191)",seashell4:"rgb(139, 134, 130)",sienna:"rgb(160, 82, 45)",sienna1:"rgb(255, 130, 71)",sienna2:"rgb(238, 121, 66)",sienna3:"rgb(205, 104, 57)",sienna4:"rgb(139, 71, 38)",skyblue:"rgb(135, 206, 235)",skyblue1:"rgb(135, 206, 255)",skyblue2:"rgb(126, 192, 238)",skyblue3:"rgb(108, 166, 205)",skyblue4:"rgb(74, 112, 139)",slateblue:"rgb(106, 90, 205)",slateblue1:"rgb(131, 111, 255)",slateblue2:"rgb(122, 103, 238)",slateblue3:"rgb(105, 89, 205)",slateblue4:"rgb(71, 60, 139)",slategray:"rgb(112, 128, 144)",slategray1:"rgb(198, 226, 255)",slategray2:"rgb(185, 211, 238)",slategray3:"rgb(159, 182, 205)",slategray4:"rgb(108, 123, 139)",slategrey:"rgb(112, 128, 144)",snow:"rgb(255, 250, 250)",snow1:"rgb(255, 250, 250)",snow2:"rgb(238, 233, 233)",snow3:"rgb(205, 201, 201)",snow4:"rgb(139, 137, 137)",springgreen:"rgb(0, 255, 127)",springgreen1:"rgb(0, 255, 127)",springgreen2:"rgb(0, 238, 118)",springgreen3:"rgb(0, 205, 102)",springgreen4:"rgb(0, 139, 69)",steelblue:"rgb(70, 130, 180)",steelblue1:"rgb(99, 184, 255)",steelblue2:"rgb(92, 172, 238)",steelblue3:"rgb(79, 148, 205)",steelblue4:"rgb(54, 100, 139)",tan:"rgb(210, 180, 140)",tan1:"rgb(255, 165, 79)",tan2:"rgb(238, 154, 73)",tan3:"rgb(205, 133, 63)",tan4:"rgb(139, 90, 43)",thistle:"rgb(216, 191, 216)",thistle1:"rgb(255, 225, 255)",thistle2:"rgb(238, 210, 238)",thistle3:"rgb(205, 181, 205)",thistle4:"rgb(139, 123, 139)",tomato:"rgb(255, 99, 71)",tomato1:"rgb(255, 99, 71)",tomato2:"rgb(238, 92, 66)",tomato3:"rgb(205, 79, 57)",tomato4:"rgb(139, 54, 38)",turquoise:"rgb(64, 224, 208)",turquoise1:"rgb(0, 245, 255)",turquoise2:"rgb(0, 229, 238)",turquoise3:"rgb(0, 197, 205)",turquoise4:"rgb(0, 134, 139)",violet:"rgb(238, 130, 238)",violetred:"rgb(208, 32, 144)",violetred1:"rgb(255, 62, 150)",violetred2:"rgb(238, 58, 140)",violetred3:"rgb(205, 50, 120)",violetred4:"rgb(139, 34, 82)",wheat:"rgb(245, 222, 179)",wheat1:"rgb(255, 231, 186)",wheat2:"rgb(238, 216, 174)",wheat3:"rgb(205, 186, 150)",wheat4:"rgb(139, 126, 102)",white:"rgb(255, 255, 255)",whitesmoke:"rgb(245, 245, 245)",yellow:"rgb(255, 255, 0)",yellow1:"rgb(255, 255, 0)",yellow2:"rgb(238, 238, 0)",yellow3:"rgb(205, 205, 0)",yellow4:"rgb(139, 139, 0)",yellowgreen:"rgb(154, 205, 50)"},i.f={},i.f.createEnum=function(e){return new String(e)},i.f.replaceVars=function(e,t){return e.replace(/%([a-z]*)\(([^\)]+)\)/gi,function(e,r,o){if(void 0===t[o])throw"Unknown variable: "+o;var s=t[o];if(r in i.f.replaceVars.functions)s=i.f.replaceVars.functions[r](s);else if(r)throw"Unknown escape function: "+r;return s})},i.f.replaceVars.functions={encodeURI:encodeURI,encodeURIComponent:encodeURIComponent,escapeHTML:function(e){var t={"<":"<",">":">","&":"&",'"':""","'":"'"};return e.replace(/[<>&\"\']/g,function(e){return t[e]})}},i.f.getAcceptLanguages=function(e){i.f.getAcceptLanguages.chromeSupported()?chrome.i18n.getAcceptLanguages(e):setTimeout(function(){e([navigator.language.replace(/-/g,"_")])},0)},i.f.getAcceptLanguages.chromeSupported=function(){return window.chrome&&chrome.i18n},i.f.parseQuery=function(e){e.startsWith("?")&&(e=e.substr(1));for(var t={},r=e.split("&"),i=0;ir?r:e},i.f.zpad=function(e,t){return String(e).padStart(t,"0")},i.f.getWhitespace=function(e){if(e<=0)return"";var t=this.getWhitespace;for(t.whitespace||(t.whitespace=" ");e>t.whitespace.length;)t.whitespace+=t.whitespace;return t.whitespace.substr(0,e)},i.f.alarm=function(e,t){var r=t||5e3,o=i.f.getStack(1);return function(){var t=setTimeout(function(){var i="string"==typeof e?i:e.name;i=i?": "+i:"",console.warn("lib.f.alarm: timeout expired: "+r/1e3+"s"+i),console.log(o),t=null},r),i=function(e){return function(){return t&&(clearTimeout(t),t=null),e.apply(null,arguments)}};return"string"==typeof e?i:i(e)}()},i.f.getStack=function(e){var t,r=e?e+2:2;try{throw new Error}catch(e){t=e.stack.split("\n")}for(var i={},o=r;o=0&&this.observers.splice(t,1)},i.PreferenceManager.Record.prototype.get=function(){return this.currentValue===this.DEFAULT_VALUE?/^(string|number)$/.test(typeof this.defaultValue)?this.defaultValue:"object"==typeof this.defaultValue?JSON.parse(JSON.stringify(this.defaultValue)):this.defaultValue:this.currentValue},i.PreferenceManager.prototype.deactivate=function(){if(!this.isActive_)throw new Error("Not activated");this.isActive_=!1,this.storage.removeObserver(this.storageObserver_)},i.PreferenceManager.prototype.activate=function(){if(this.isActive_)throw new Error("Already activated");this.isActive_=!0,this.storage.addObserver(this.storageObserver_)},i.PreferenceManager.prototype.readStorage=function(e){function t(){0==--r&&e&&e()}var r=0,i=Object.keys(this.prefRecords_).map(function(e){return this.prefix+e}.bind(this));this.trace&&console.log("Preferences read: "+this.prefix),this.storage.getItems(i,function(i){var o=this.prefix.length;for(var s in i){var n=i[s],a=s.substr(o),l=a in this.childLists_&&JSON.stringify(n)!=JSON.stringify(this.prefRecords_[a].currentValue);this.prefRecords_[a].currentValue=n,l&&(r++,this.syncChildList(a,t))}0==r&&e&&setTimeout(e)}.bind(this))},i.PreferenceManager.prototype.definePreference=function(e,t,r){var o=this.prefRecords_[e];o?this.changeDefault(e,t):o=this.prefRecords_[e]=new i.PreferenceManager.Record(e,t),r&&o.addObserver(r)},i.PreferenceManager.prototype.definePreferences=function(e){for(var t=0;t=0&&s.splice(l,1),!this.childLists_[e][a]){var h=this.childFactories_[e](this,a);if(!h){console.warn("Unable to restore child: "+e+": "+a);continue}h.trace=this.trace,this.childLists_[e][a]=h,r++,h.readStorage(function(){0==--r&&t&&t()})}}for(n=0;n=0;i--){var o=e[i],s=this.storage_.getItem(o);if("string"==typeof s)try{r[o]=JSON.parse(s)}catch(e){r[o]=s}else e.splice(i,1)}setTimeout(t.bind(null,r),0)},i.Storage.Local.prototype.setItem=function(e,t,r){this.storage_.setItem(e,JSON.stringify(t)),r&&setTimeout(r,0)},i.Storage.Local.prototype.setItems=function(e,t){for(var r in e)this.storage_.setItem(r,JSON.stringify(e[r]));t&&setTimeout(t,0)},i.Storage.Local.prototype.removeItem=function(e,t){this.storage_.removeItem(e),t&&setTimeout(t,0)},i.Storage.Local.prototype.removeItems=function(e,t){for(var r=0;r=0;i--){var o=e[i],s=this.storage_[o];if("string"==typeof s)try{r[o]=JSON.parse(s)}catch(e){r[o]=s}else e.splice(i,1)}setTimeout(t.bind(null,r),0)},i.Storage.Memory.prototype.setItem=function(e,t,r){var i=this.storage_[e];this.storage_[e]=JSON.stringify(t);var o={};o[e]={oldValue:i,newValue:t},setTimeout(function(){for(var e=0;e{let t="";switch(e){case"debug":case"warn":case"error":t=e.toUpperCase()+": "}const r=this.console_[e];this[e]=this.console_[e]=((...e)=>{this.save&&(this.data+=this.prefix_+t+e.join(" ")+"\n"),r.apply(this.console_,e)})}),["group","groupCollapsed"].forEach(e=>{const t=this.console_[e];this[e]=this.console_[e]=((e="")=>{t(e),this.save&&(this.data+=this.prefix_+e+"\n"),this.prefix_=" ".repeat(++this.prefixStack_)})});const t=this.console_.groupEnd;this.groupEnd=this.console_.groupEnd=(()=>{t(),this.prefix_=" ".repeat(--this.prefixStack_)})},i.TestManager.Suite=function(e){function t(t,r){this.testManager_=t,this.suiteName=e,this.setup(r)}return t.suiteName=e,t.addTest=i.TestManager.Suite.addTest,t.disableTest=i.TestManager.Suite.disableTest,t.getTest=i.TestManager.Suite.getTest,t.getTestList=i.TestManager.Suite.getTestList,t.testList_=[],t.testMap_={},t.prototype=Object.create(i.TestManager.Suite.prototype),t.constructor=i.TestManager.Suite,i.TestManager.Suite.subclasses.push(t),t},i.TestManager.Suite.subclasses=[],i.TestManager.Suite.addTest=function(e,t){if(e in this.testMap_)throw"Duplicate test name: "+e;var r=new i.TestManager.Test(this,e,t);this.testMap_[e]=r,this.testList_.push(r)},i.TestManager.Suite.disableTest=function(e,t){if(e in this.testMap_)throw"Duplicate test name: "+e;var r=new i.TestManager.Test(this,e,t);console.log("Disabled test: "+r.fullName)},i.TestManager.Suite.getTest=function(e){return this.testMap_[e]},i.TestManager.Suite.getTestList=function(){return this.testList_},i.TestManager.Suite.prototype.setDefaults=function(e,t){for(var r in t)this[r]=r in e?e[r]:t[r]},i.TestManager.Suite.prototype.setup=function(e){},i.TestManager.Suite.prototype.preamble=function(e,t){},i.TestManager.Suite.prototype.postamble=function(e,t){},i.TestManager.Test=function(e,t,r){this.suiteClass=e,this.testName=t,this.fullName=e.suiteName+"["+t+"]",this.testFunction_=r},i.TestManager.Test.prototype.run=function(e){try{this.testFunction_.apply(e.suite,[e,e.testRun.cx])}catch(t){if(t instanceof i.TestManager.Result.TestComplete)return;e.println("Test raised an exception: "+t),t.stack&&(t.stack instanceof Array?e.println(t.stack.join("\n")):e.println(t.stack)),e.completeTest_(e.FAILED,!1)}},i.TestManager.TestRun=function(e,t){this.testManager=e,this.log=e.log,this.cx=t||{},this.failures=[],this.passes=[],this.startDate=null,this.duration=null,this.currentResult=null,this.maxFailures=0,this.panic=!1,this.testQueue_=[]},i.TestManager.TestRun.prototype.ALL_TESTS=i.f.createEnum(""),i.TestManager.TestRun.prototype.selectTest=function(e){this.testQueue_.push(e)},i.TestManager.TestRun.prototype.selectSuite=function(e,t){for(var r=t||this.ALL_TESTS,i=0,o=e.getTestList(),s=0;s500&&this.log.warn("Slow test took "+this.msToSeconds_(e.duration)),this.log.groupEnd(),e.status==e.FAILED)this.failures.push(e),this.currentSuite=null;else{if(e.status!=e.PASSED)return this.log.error("Unknown result status: "+e.test.fullName+": "+e.status),this.panic=!0;this.passes.push(e)}this.runNextTest_()},i.TestManager.TestRun.prototype.onResultReComplete=function(e,t){this.log.error("Late complete for test: "+e.test.fullName+": "+t);var r=this.passes.indexOf(e);r>=0&&(this.passes.splice(r,1),this.failures.push(e))},i.TestManager.TestRun.prototype.runNextTest_=function(){if(this.panic||!this.testQueue_.length)return this.onTestRunComplete_();if(this.maxFailures&&this.failures.length>=this.maxFailures)return this.log.error("Maximum failure count reached, aborting test run."),this.onTestRunComplete_();var e=this.testQueue_[0],t=this.currentResult?this.currentResult.suite:null;try{t&&t instanceof e.suiteClass||(t&&this.log.groupEnd(),this.log.group(e.suiteClass.suiteName),t=new e.suiteClass(this.testManager,this.cx))}catch(e){return this.log.error("Exception during setup: "+(e.stack?e.stack:e)),this.panic=!0,void this.onTestRunComplete_()}try{this.log.group(e.testName),this.currentResult=new i.TestManager.Result(this,t,e),this.testManager.testPreamble(this.currentResult,this.cx),t.preamble(this.currentResult,this.cx),this.testQueue_.shift()}catch(e){return this.log.error("Unexpected exception during test preamble: "+(e.stack?e.stack:e)),this.log.groupEnd(),this.panic=!0,void this.onTestRunComplete_()}try{this.currentResult.run()}catch(e){this.log.error("Unexpected exception during test run: "+(e.stack?e.stack:e)),this.panic=!0}},i.TestManager.TestRun.prototype.run=function(){this.log.info("Running "+this.testQueue_.length+" test(s)"),window.onerror=this.onUncaughtException_.bind(this),this.startDate=new Date,this.runNextTest_()},i.TestManager.TestRun.prototype.msToSeconds_=function(e){return(e/1e3).toFixed(2)+"s"},i.TestManager.TestRun.prototype.summarize=function(){if(this.failures.length)for(var e=0;e1?"\n"+t.join("\n"):t.join("\n")}if(e!==t&&!(t instanceof Array&&this.arrayEQ_(e,t))){var o=r?"["+r+"]":"";this.fail("assertEQ"+o+": "+this.getCallerLocation_(1)+": "+i(e)+" !== "+i(t))}},i.TestManager.Result.prototype.assert=function(e,t){if(!0!==e){var r=t?"["+t+"]":"";this.fail("assert"+r+": "+this.getCallerLocation_(1)+": "+String(e))}},i.TestManager.Result.prototype.getCallerLocation_=function(e){try{throw new Error}catch(r){var t=r.stack.split("\n")[e+2].match(/([^/]+:\d+):\d+\)?$/);return t?t[1]:"???"}},i.TestManager.Result.prototype.println=function(e){this.testRun.log.info(e)},i.TestManager.Result.prototype.fail=function(e){arguments.length&&this.println(e),this.completeTest_(this.FAILED,!0)},i.TestManager.Result.prototype.pass=function(){this.completeTest_(this.PASSED,!0)},i.UTF8Decoder=function(){this.bytesLeft=0,this.codePoint=0,this.lowerBound=0},i.UTF8Decoder.prototype.decode=function(e){for(var t="",r=0;r1114111?t+="�":o<65536?t+=String.fromCharCode(o):(o-=65536,t+=String.fromCharCode(55296+(o>>>10&1023),56320+(1023&o)))}}else t+="�",this.bytesLeft=0,r--}return t},i.decodeUTF8=function(e){return(new i.UTF8Decoder).decode(e)},i.encodeUTF8=function(e){for(var t="",r=0;r>>6),s=1):i<=65535?(t+=String.fromCharCode(224|i>>>12),s=2):(t+=String.fromCharCode(240|i>>>18),s=3);s>0;)s--,t+=String.fromCharCode(128|i>>>6*s&63)}return t},i.wc={},i.wc.nulWidth=0,i.wc.controlWidth=0,i.wc.regardCjkAmbiguous=!1,i.wc.cjkAmbiguousWidth=2,i.wc.combining=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531],[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]],i.wc.ambiguous=[[161,161],[164,164],[167,168],[170,170],[174,174],[176,180],[182,186],[188,191],[198,198],[208,208],[215,216],[222,225],[230,230],[232,234],[236,237],[240,240],[242,243],[247,250],[252,252],[254,254],[257,257],[273,273],[275,275],[283,283],[294,295],[299,299],[305,307],[312,312],[319,322],[324,324],[328,331],[333,333],[338,339],[358,359],[363,363],[462,462],[464,464],[466,466],[468,468],[470,470],[472,472],[474,474],[476,476],[593,593],[609,609],[708,708],[711,711],[713,715],[717,717],[720,720],[728,731],[733,733],[735,735],[913,929],[931,937],[945,961],[963,969],[1025,1025],[1040,1103],[1105,1105],[8208,8208],[8211,8214],[8216,8217],[8220,8221],[8224,8226],[8228,8231],[8240,8240],[8242,8243],[8245,8245],[8251,8251],[8254,8254],[8308,8308],[8319,8319],[8321,8324],[8364,8364],[8451,8451],[8453,8453],[8457,8457],[8467,8467],[8470,8470],[8481,8482],[8486,8486],[8491,8491],[8531,8532],[8539,8542],[8544,8555],[8560,8569],[8592,8601],[8632,8633],[8658,8658],[8660,8660],[8679,8679],[8704,8704],[8706,8707],[8711,8712],[8715,8715],[8719,8719],[8721,8721],[8725,8725],[8730,8730],[8733,8736],[8739,8739],[8741,8741],[8743,8748],[8750,8750],[8756,8759],[8764,8765],[8776,8776],[8780,8780],[8786,8786],[8800,8801],[8804,8807],[8810,8811],[8814,8815],[8834,8835],[8838,8839],[8853,8853],[8857,8857],[8869,8869],[8895,8895],[8978,8978],[9312,9449],[9451,9547],[9552,9587],[9600,9615],[9618,9621],[9632,9633],[9635,9641],[9650,9651],[9654,9655],[9660,9661],[9664,9665],[9670,9672],[9675,9675],[9678,9681],[9698,9701],[9711,9711],[9733,9734],[9737,9737],[9742,9743],[9748,9749],[9756,9756],[9758,9758],[9792,9792],[9794,9794],[9824,9825],[9827,9829],[9831,9834],[9836,9837],[9839,9839],[10045,10045],[10102,10111],[57344,63743],[65533,65533],[983040,1048573],[1048576,1114109]],i.wc.isSpace=function(e){var t,r=0,o=i.wc.combining.length-1;if(ei.wc.combining[o][1])return!1;for(;o>=r;)if(t=Math.floor((r+o)/2),e>i.wc.combining[t][1])r=t+1;else{if(!(ei.wc.ambiguous[o][1])return!1;for(;o>=r;)if(t=Math.floor((r+o)/2),e>i.wc.ambiguous[t][1])r=t+1;else{if(!(e=127&&e<160?i.wc.controlWidth:e<127?1:i.wc.isSpace(e)?0:1+(e>=4352&&(e<=4447||9001==e||9002==e||e>=11904&&e<=42191&&12351!=e||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65135||e>=65280&&e<=65376||e>=65504&&e<=65510||e>=131072&&e<=196605||e>=196608&&e<=262141))},i.wc.charWidthRegardAmbiguous=function(e){return i.wc.isCjkAmbiguous(e)?i.wc.cjkAmbiguousWidth:i.wc.charWidthDisregardAmbiguous(e)},i.wc.strWidth=function(e){for(var t,r=0,o=0;ot);o++);if(void 0!=r){for(s=o,n=0;sr&&s--,e.substring(o,s)}return e.substr(o)},i.wc.substring=function(e,t,r){return i.wc.substr(e,t,r-t)},i.resource.add("libdot/changelog/version","text/plain","1.16"),i.resource.add("libdot/changelog/date","text/plain","2017-08-16"),i.rtdep("lib.Storage");var o={};o.windowType=null,o.zoomWarningMessage="ZOOM != 100%",o.notifyCopyMessage="✂",o.desktopNotificationTitle="♪ %(title) ♪",o.testDeps=["hterm.ScrollPort.Tests","hterm.Screen.Tests","hterm.Terminal.Tests","hterm.VT.Tests","hterm.VT.CannedTests"],i.registerInit("hterm",function(e){function t(t){o.windowType=t.type,setTimeout(e,0)}o.defaultStorage||(window.chrome&&chrome.storage&&chrome.storage.sync?o.defaultStorage=new i.Storage.Chrome(chrome.storage.sync):o.defaultStorage=new i.Storage.Local);var r=!1;if(window.chrome&&chrome.runtime&&chrome.runtime.getManifest){var s=chrome.runtime.getManifest();r=s.app&&s.app.background}r?setTimeout(t.bind(null,{type:"popup"}),0):window.chrome&&chrome.tabs?chrome.tabs.getCurrent(function(r){r&&window.chrome?chrome.windows.get(r.windowId,null,t):(o.windowType="normal",setTimeout(e,0))}):setTimeout(t.bind(null,{type:"normal"}),0)}),o.getClientSize=function(e){return e.getBoundingClientRect()},o.getClientWidth=function(e){return e.getBoundingClientRect().width},o.getClientHeight=function(e){return e.getBoundingClientRect().height},o.copySelectionToClipboard=function(e){try{e.execCommand("copy")}catch(e){}},o.pasteFromClipboard=function(e){try{return e.execCommand("paste")}catch(e){return!1}},o.notify=function(e){var t=(e,t)=>void 0!==e?e:t;void 0!==e&&null!==e||(e={});var r={body:e.body,icon:t(e.icon,i.resource.getDataUrl("hterm/images/icon-96"))},s=t(e.title,window.document.title);s||(s="hterm"),s=i.f.replaceVars(o.desktopNotificationTitle,{title:s});var n=new Notification(s,r);return n.onclick=function(){window.focus(),this.close()},n},o.Size=function(e,t){this.width=e,this.height=t},o.Size.prototype.resize=function(e,t){this.width=e,this.height=t},o.Size.prototype.clone=function(){return new o.Size(this.width,this.height)},o.Size.prototype.setTo=function(e){this.width=e.width,this.height=e.height},o.Size.prototype.equals=function(e){return this.width==e.width&&this.height==e.height},o.Size.prototype.toString=function(){return"[hterm.Size: "+this.width+", "+this.height+"]"},o.RowCol=function(e,t,r){this.row=e,this.column=t,this.overflow=!!r},o.RowCol.prototype.move=function(e,t,r){this.row=e,this.column=t,this.overflow=!!r},o.RowCol.prototype.clone=function(){return new o.RowCol(this.row,this.column,this.overflow)},o.RowCol.prototype.setTo=function(e){this.row=e.row,this.column=e.column,this.overflow=e.overflow},o.RowCol.prototype.equals=function(e){return this.row==e.row&&this.column==e.column&&this.overflow==e.overflow},o.RowCol.prototype.toString=function(){return"[hterm.RowCol: "+this.row+", "+this.column+", "+this.overflow+"]"},i.rtdep("lib.f"),o.Frame=function(e,t,r){this.terminal_=e,this.div_=e.div_,this.url=t,this.options=r||{},this.iframe_=null,this.container_=null,this.messageChannel_=null},o.Frame.prototype.onMessage_=function(e){switch(e.data.name){case"ipc-init-ok":return void this.sendTerminalInfo_();case"terminal-info-ok":return this.container_.style.display="flex",this.messageChannel_.port1.onmessage=this.onMessage.bind(this),void this.onLoad();default:return void console.log("Unknown message from frame:",e.data)}},o.Frame.prototype.onMessage=function(){},o.Frame.prototype.onLoad_=function(){this.messageChannel_=new MessageChannel,this.messageChannel_.port1.onmessage=this.onMessage_.bind(this),this.messageChannel_.port1.start(),this.iframe_.contentWindow.postMessage({name:"ipc-init",argv:[{messagePort:this.messageChannel_.port2}]},this.url,[this.messageChannel_.port2])},o.Frame.prototype.onLoad=function(){},o.Frame.prototype.sendTerminalInfo_=function(){i.f.getAcceptLanguages(function(e){this.postMessage("terminal-info",[{acceptLanguages:e,foregroundColor:this.terminal_.getForegroundColor(),backgroundColor:this.terminal_.getBackgroundColor(),cursorColor:this.terminal_.getCursorColor(),fontSize:this.terminal_.getFontSize(),fontFamily:this.terminal_.getFontFamily(),baseURL:i.f.getURL("/")}])}.bind(this))},o.Frame.prototype.onCloseClicked_=function(){this.close()},o.Frame.prototype.close=function(){this.container_&&this.container_.parentNode&&(this.container_.parentNode.removeChild(this.container_),this.onClose())},o.Frame.prototype.onClose=function(){},o.Frame.prototype.postMessage=function(e,t){if(!this.messageChannel_)throw new Error("Message channel is not set up.");this.messageChannel_.port1.postMessage({name:e,argv:t})},o.Frame.prototype.show=function(){function e(e,r){return e in t.options?t.options[e]:r}var t=this,t=this;if(this.container_&&this.container_.parentNode)console.error("Frame already visible");else{var r=o.getClientSize(this.div_),i=e("width",640),s=e("height",480),n=(r.width,r.height,this.terminal_.document_),a=this.container_=n.createElement("div");a.style.cssText="position: absolute;display: none;flex-direction: column;top: 10%;left: 4%;width: 90%;height: 80%;min-height: 20%;max-height: 80%;box-shadow: 0 0 2px "+this.terminal_.getForegroundColor()+";border: 2px "+this.terminal_.getForegroundColor()+" solid;";var l=this.iframe_=n.createElement("iframe");l.onload=this.onLoad_.bind(this),l.style.cssText="display: flex;flex: 1;width: 100%",l.setAttribute("src",this.url),l.setAttribute("seamless",!0),a.appendChild(l),this.div_.appendChild(a)}},i.rtdep("hterm.Keyboard.KeyMap"),o.Keyboard=function(e){this.terminal=e,this.keyboardElement_=null,this.handlers_=[["focusout",this.onFocusOut_.bind(this)],["keydown",this.onKeyDown_.bind(this)],["keypress",this.onKeyPress_.bind(this)],["keyup",this.onKeyUp_.bind(this)],["textInput",this.onTextInput_.bind(this)]],this.keyMap=new o.Keyboard.KeyMap(this),this.bindings=new o.Keyboard.Bindings(this),this.altGrMode="none",this.shiftInsertPaste=!0,this.homeKeysScroll=!1,this.pageKeysScroll=!1,this.ctrlPlusMinusZeroZoom=!0,this.ctrlCCopy=!1,this.ctrlVPaste=!1,this.applicationKeypad=!1,this.applicationCursor=!1,this.backspaceSendsBackspace=!1,this.characterEncoding="utf-8",this.metaSendsEscape=!0,this.passMetaV=!0,this.altSendsWhat="escape",this.altIsMeta=!1,this.altBackspaceIsMetaBackspace=!1,this.altKeyPressed=0,this.mediaKeysAreFKeys=!1,this.previousAltSendsWhat_=null},o.Keyboard.KeyActions={CANCEL:i.f.createEnum("CANCEL"),DEFAULT:i.f.createEnum("DEFAULT"),PASS:i.f.createEnum("PASS"),STRIP:i.f.createEnum("STRIP")},o.Keyboard.prototype.encode=function(e){return"utf-8"==this.characterEncoding?this.terminal.vt.encodeUTF8(e):e},o.Keyboard.prototype.installKeyboard=function(e){if(e!=this.keyboardElement_){e&&this.keyboardElement_&&this.installKeyboard(null);for(var t=0;t=32&&(r=e.charCode);r&&this.terminal.onVTKeystroke(String.fromCharCode(r)),e.preventDefault(),e.stopPropagation()}},o.Keyboard.prototype.preventChromeAppNonCtrlShiftDefault_=function(e){window.chrome&&window.chrome.app&&window.chrome.app.window&&(e.ctrlKey&&e.shiftKey||e.preventDefault())},o.Keyboard.prototype.onFocusOut_=function(e){this.altKeyPressed=0},o.Keyboard.prototype.onKeyUp_=function(e){18==e.keyCode&&(this.altKeyPressed=this.altKeyPressed&~(1<=64&&_<=95&&(f=String.fromCharCode(_-64))),u&&"8-bit"==this.altSendsWhat&&1==f.length){var _=f.charCodeAt(0)+128;f=String.fromCharCode(_)}(u&&"escape"==this.altSendsWhat||d&&this.metaSendsEscape)&&(f=""+f)}this.terminal.onVTKeystroke(f)}else console.warn("Invalid action: "+JSON.stringify(f))}else console.warn("No definition for keyCode: "+e.keyCode)},o.Keyboard.Bindings=function(){this.bindings_={}},o.Keyboard.Bindings.prototype.clear=function(){this.bindings_={}},o.Keyboard.Bindings.prototype.addBinding_=function(e,t){var r=null,i=this.bindings_[e.keyCode];if(i)for(var s=0;s",d,s(f,p),d,d],[191,"/?",d,i(a("_"),a("?")),d,d],[17,"[CTRL]",p,p,p,p],[18,"[ALT]",p,p,p,p],[91,"[LAPL]",p,p,p,p],[32," ",d,a("@"),d,d],[92,"[RAPL]",p,p,p,p],[93,"[RMENU]",p,p,p,p],[42,"[PRTSCR]",p,p,p,p],[145,"[SCRLK]",p,p,p,p],[19,"[BREAK]",p,p,p,p],[45,"[INSERT]",l("onKeyInsert_"),d,d,d],[36,"[HOME]",l("onKeyHome_"),d,d,d],[33,"[PGUP]",l("onKeyPageUp_"),d,d,d],[46,"[DEL]",l("onKeyDel_"),d,d,d],[35,"[END]",l("onKeyEnd_"),d,d,d],[34,"[PGDOWN]",l("onKeyPageDown_"),d,d,d],[38,"[UP]",l("onKeyArrowUp_"),d,d,d],[40,"[DOWN]",l("onKeyArrowDown_"),d,d,d],[39,"[RIGHT]",t("","OC"),d,d,d],[37,"[LEFT]",t("","OD"),d,d,d],[144,"[NUMLOCK]",p,p,p,p],[96,"[KP0]",d,d,d,d],[97,"[KP1]",d,d,d,d],[98,"[KP2]",d,d,d,d],[99,"[KP3]",d,d,d,d],[100,"[KP4]",d,d,d,d],[101,"[KP5]",d,d,d,d],[102,"[KP6]",d,d,d,d],[103,"[KP7]",d,d,d,d],[104,"[KP8]",d,d,d,d],[105,"[KP9]",d,d,d,d],[107,"[KP+]",d,l("onPlusMinusZero_"),d,l("onPlusMinusZero_")],[109,"[KP-]",d,l("onPlusMinusZero_"),d,l("onPlusMinusZero_")],[106,"[KP*]",d,d,d,d],[111,"[KP/]",d,d,d,d],[110,"[KP.]",d,d,d,d],[166,"[BACK]",h(n("OP","")),d,"[23~",d],[167,"[FWD]",h(n("OQ","")),d,"[24~",d],[168,"[RELOAD]",h(n("OR","")),d,"[25~",d],[183,"[FSCR]",h(n("OS","")),d,"[26~",d],[182,"[WINS]",h("[15~"),d,"[28~",d],[216,"[BRIT-]",h("[17~"),d,"[29~",d],[217,"[BRIT+]",h("[18~"),d,"[31~",d])},o.Keyboard.KeyMap.prototype.onKeyInsert_=function(e){return this.keyboard.shiftInsertPaste&&e.shiftKey?o.Keyboard.KeyActions.PASS:"[2~"},o.Keyboard.KeyMap.prototype.onKeyHome_=function(e){return!this.keyboard.homeKeysScroll^e.shiftKey?e.altey||e.ctrlKey||e.shiftKey||!this.keyboard.applicationCursor?"":"OH":(this.keyboard.terminal.scrollHome(),o.Keyboard.KeyActions.CANCEL)},o.Keyboard.KeyMap.prototype.onKeyEnd_=function(e){return!this.keyboard.homeKeysScroll^e.shiftKey?e.altKey||e.ctrlKey||e.shiftKey||!this.keyboard.applicationCursor?"":"OF":(this.keyboard.terminal.scrollEnd(),o.Keyboard.KeyActions.CANCEL)},o.Keyboard.KeyMap.prototype.onKeyPageUp_=function(e){return!this.keyboard.pageKeysScroll^e.shiftKey?"[5~":(this.keyboard.terminal.scrollPageUp(),o.Keyboard.KeyActions.CANCEL)},o.Keyboard.KeyMap.prototype.onKeyDel_=function(e){return this.keyboard.altBackspaceIsMetaBackspace&&this.keyboard.altKeyPressed&&!e.altKey?"":"[3~"},o.Keyboard.KeyMap.prototype.onKeyPageDown_=function(e){return!this.keyboard.pageKeysScroll^e.shiftKey?"[6~":(this.keyboard.terminal.scrollPageDown(),o.Keyboard.KeyActions.CANCEL)},o.Keyboard.KeyMap.prototype.onKeyArrowUp_=function(e){return!this.keyboard.applicationCursor&&e.shiftKey?(this.keyboard.terminal.scrollLineUp(),o.Keyboard.KeyActions.CANCEL):e.shiftKey||e.ctrlKey||e.altKey||e.metaKey||!this.keyboard.applicationCursor?"":"OA"},o.Keyboard.KeyMap.prototype.onKeyArrowDown_=function(e){return!this.keyboard.applicationCursor&&e.shiftKey?(this.keyboard.terminal.scrollLineDown(),o.Keyboard.KeyActions.CANCEL):e.shiftKey||e.ctrlKey||e.altKey||e.metaKey||!this.keyboard.applicationCursor?"":"OB"},o.Keyboard.KeyMap.prototype.onClear_=function(e,t){return this.keyboard.terminal.wipeContents(),o.Keyboard.KeyActions.CANCEL},o.Keyboard.KeyMap.prototype.onCtrlNum_=function(e,t){function r(e){return String.fromCharCode(e.charCodeAt(0)-64)}if(this.keyboard.terminal.passCtrlNumber&&!e.shiftKey)return o.Keyboard.KeyActions.PASS;switch(t.keyCap.substr(0,1)){case"1":return"1";case"2":return r("@");case"3":return r("[");case"4":return r("\\");case"5":return r("]");case"6":return r("^");case"7":return r("_");case"8":return"";case"9":return"9"}},o.Keyboard.KeyMap.prototype.onAltNum_=function(e,t){return this.keyboard.terminal.passAltNumber&&!e.shiftKey?o.Keyboard.KeyActions.PASS:o.Keyboard.KeyActions.DEFAULT},o.Keyboard.KeyMap.prototype.onMetaNum_=function(e,t){return this.keyboard.terminal.passMetaNumber&&!e.shiftKey?o.Keyboard.KeyActions.PASS:o.Keyboard.KeyActions.DEFAULT},o.Keyboard.KeyMap.prototype.onCtrlC_=function(e,t){var r=this.keyboard.terminal.getDocument().getSelection();if(!r.isCollapsed){if(this.keyboard.ctrlCCopy&&!e.shiftKey)return this.keyboard.terminal.clearSelectionAfterCopy&&setTimeout(r.collapseToEnd.bind(r),50),o.Keyboard.KeyActions.PASS;if(!this.keyboard.ctrlCCopy&&e.shiftKey)return this.keyboard.terminal.clearSelectionAfterCopy&&setTimeout(r.collapseToEnd.bind(r),50),this.keyboard.terminal.copySelectionToClipboard(),o.Keyboard.KeyActions.CANCEL}return""},o.Keyboard.KeyMap.prototype.onCtrlN_=function(e,t){return e.shiftKey?(window.open(document.location.href,"","chrome=no,close=yes,resize=yes,scrollbars=yes,minimizable=yes,width="+window.innerWidth+",height="+window.innerHeight),o.Keyboard.KeyActions.CANCEL):""},o.Keyboard.KeyMap.prototype.onCtrlV_=function(e,t){return!e.shiftKey&&this.keyboard.ctrlVPaste||e.shiftKey&&!this.keyboard.ctrlVPaste?this.keyboard.terminal.paste()?o.Keyboard.KeyActions.CANCEL:o.Keyboard.KeyActions.PASS:""},o.Keyboard.KeyMap.prototype.onMetaN_=function(e,t){return e.shiftKey?(window.open(document.location.href,"","chrome=no,close=yes,resize=yes,scrollbars=yes,minimizable=yes,width="+window.outerWidth+",height="+window.outerHeight),o.Keyboard.KeyActions.CANCEL):o.Keyboard.KeyActions.DEFAULT},o.Keyboard.KeyMap.prototype.onMetaC_=function(e,t){var r=this.keyboard.terminal.getDocument();return e.shiftKey||r.getSelection().isCollapsed?t.keyCap.substr(e.shiftKey?1:0,1):(this.keyboard.terminal.clearSelectionAfterCopy&&setTimeout(function(){r.getSelection().collapseToEnd()},50),o.Keyboard.KeyActions.PASS)},o.Keyboard.KeyMap.prototype.onMetaV_=function(e,t){return e.shiftKey?o.Keyboard.KeyActions.PASS:this.keyboard.passMetaV?o.Keyboard.KeyActions.PASS:o.Keyboard.KeyActions.DEFAULT},o.Keyboard.KeyMap.prototype.onPlusMinusZero_=function(e,t){if(!(this.keyboard.ctrlPlusMinusZeroZoom^e.shiftKey))return"-_"==t.keyCap?"":o.Keyboard.KeyActions.CANCEL;if(1!=this.keyboard.terminal.getZoomFactor())return o.Keyboard.KeyActions.PASS;var r=t.keyCap.substr(0,1);if("0"==r)this.keyboard.terminal.setFontSize(0);else{var i=this.keyboard.terminal.getFontSize();"-"==r||"[KP-]"==t.keyCap?i-=1:i+=1,this.keyboard.terminal.setFontSize(i)}return o.Keyboard.KeyActions.CANCEL},o.Keyboard.KeyPattern=function(e){this.wildcardCount=0,this.keyCode=e.keyCode,o.Keyboard.KeyPattern.modifiers.forEach(function(t){this[t]=e[t]||!1,"*"==this[t]&&this.wildcardCount++}.bind(this))},o.Keyboard.KeyPattern.modifiers=["shift","ctrl","alt","meta"],o.Keyboard.KeyPattern.sortCompare=function(e,t){return e.wildcardCountt.wildcardCount?1:0},o.Keyboard.KeyPattern.prototype.match_=function(e,t){if(this.keyCode!=e.keyCode)return!1;var r=!0;return o.Keyboard.KeyPattern.modifiers.forEach(function(i){var o=i in e&&e[i];r&&(t||"*"!=this[i])&&this[i]!=o&&(r=!1)}.bind(this)),r},o.Keyboard.KeyPattern.prototype.matchKeyDown=function(e){return this.match_(e,!1)},o.Keyboard.KeyPattern.prototype.matchKeyPattern=function(e){return this.match_(e,!0)},o.Options=function(e){this.wraparound=!e||e.wraparound,this.reverseWraparound=!!e&&e.reverseWraparound,this.originMode=!!e&&e.originMode,this.autoCarriageReturn=!!e&&e.autoCarriageReturn,this.cursorVisible=!!e&&e.cursorVisible,this.cursorBlink=!!e&&e.cursorBlink,this.insertMode=!!e&&e.insertMode,this.reverseVideo=!!e&&e.reverseVideo,this.bracketedPaste=!!e&&e.bracketedPaste},i.rtdep("hterm.Keyboard.KeyActions"),o.Parser=function(){this.source="",this.pos=0,this.ch=null},o.Parser.prototype.error=function(e){return new Error("Parse error at "+this.pos+": "+e)},o.Parser.prototype.isComplete=function(){return this.pos==this.source.length},o.Parser.prototype.reset=function(e,t){this.source=e,this.pos=t||0,this.ch=e.substr(0,1)},o.Parser.prototype.parseKeySequence=function(){var e={keyCode:null};for(var t in o.Parser.identifiers.modifierKeys)e[o.Parser.identifiers.modifierKeys[t]]=!1;for(;this.pos 'none', else => 'right-alt'\n'none': Disable any AltGr related munging.\n'ctrl-alt': Assume Ctrl+Alt means AltGr.\n'left-alt': Assume left Alt means AltGr.\n'right-alt': Assume right Alt means AltGr.\n"],"alt-backspace-is-meta-backspace":[o.PreferenceManager.categories.Keyboard,!1,"bool","If set, undoes the Chrome OS Alt-Backspace->DEL remap, so that alt-backspace indeed is alt-backspace."],"alt-is-meta":[o.PreferenceManager.categories.Keyboard,!1,"bool","Set whether the alt key acts as a meta key or as a distinct alt key."],"alt-sends-what":[o.PreferenceManager.categories.Keyboard,"escape",["escape","8-bit","browser-key"],"Controls how the alt key is handled.\n\n escape....... Send an ESC prefix.\n 8-bit........ Add 128 to the unshifted character as in xterm.\n browser-key.. Wait for the keypress event and see what the browser \n says. (This won't work well on platforms where the \n browser performs a default action for some alt sequences.)"],"audible-bell-sound":[o.PreferenceManager.categories.Sounds,"lib-resource:hterm/audio/bell","url","URL of the terminal bell sound. Empty string for no audible bell."],"desktop-notification-bell":[o.PreferenceManager.categories.Sounds,!1,"bool",'If true, terminal bells in the background will create a Web Notification. https://www.w3.org/TR/notifications/\n\nDisplaying notifications requires permission from the user. When this option is set to true, hterm will attempt to ask the user for permission if necessary. Note browsers may not show this permission request if it did not originate from a user action.\n\nChrome extensions with the "notifications" permission have permission to display notifications.'],"background-color":[o.PreferenceManager.categories.Appearance,"rgb(16, 16, 16)","color","The background color for text with no other color attributes."],"background-image":[o.PreferenceManager.categories.Appearance,"","string","CSS value of the background image. Empty string for no image.\n\nFor example:\n url(https://goo.gl/anedTK)\n linear-gradient(top bottom, blue, red)"],"background-size":[o.PreferenceManager.categories.Appearance,"","string","CSS value of the background image size. Defaults to none."],"background-position":[o.PreferenceManager.categories.Appearance,"","string","CSS value of the background image position.\n\nFor example:\n 10% 10%\n center"],"backspace-sends-backspace":[o.PreferenceManager.categories.Keyboard,!1,"bool","If true, the backspace should send BS ('\\x08', aka ^H). Otherwise the backspace key should send '\\x7f'."],"character-map-overrides":[o.PreferenceManager.categories.Appearance,null,"value",'This is specified as an object. It is a sparse array, where each property is the character set code and the value is an object that is a sparse array itself. In that sparse array, each property is the received character and the value is the displayed character.\n\nFor example:\n {"0":{"+":"\\u2192",",":"\\u2190","-":"\\u2191",".":"\\u2193", "0":"\\u2588"}}'],"close-on-exit":[o.PreferenceManager.categories.Miscellaneous,!0,"bool","Whether or not to close the window when the command exits."],"cursor-blink":[o.PreferenceManager.categories.Appearance,!1,"bool","Whether or not to blink the cursor by default."],"cursor-blink-cycle":[o.PreferenceManager.categories.Appearance,[1e3,500],"value","The cursor blink rate in milliseconds.\n\nA two element array, the first of which is how long the cursor should be on, second is how long it should be off."],"cursor-color":[o.PreferenceManager.categories.Appearance,"rgba(255, 0, 0, 0.5)","color","The color of the visible cursor."],"color-palette-overrides":[o.PreferenceManager.categories.Appearance,null,"value","Override colors in the default palette.\n\nThis can be specified as an array or an object. If specified as an object it is assumed to be a sparse array, where each property is a numeric index into the color palette.\n\nValues can be specified as almost any css color value. This includes #RGB, #RRGGBB, rgb(...), rgba(...), and any color names that are also part of the stock X11 rgb.txt file.\n\nYou can use 'null' to specify that the default value should be not be changed. This is useful for skipping a small number of indices when the value is specified as an array."],"copy-on-select":[o.PreferenceManager.categories.CopyPaste,!0,"bool","Automatically copy mouse selection to the clipboard."],"use-default-window-copy":[o.PreferenceManager.categories.CopyPaste,!1,"bool","Whether to use the default window copy behavior"],"clear-selection-after-copy":[o.PreferenceManager.categories.CopyPaste,!0,"bool","Whether to clear the selection after copying."],"ctrl-plus-minus-zero-zoom":[o.PreferenceManager.categories.Keyboard,!0,"bool","If true, Ctrl-Plus/Minus/Zero controls zoom.\nIf false, Ctrl-Shift-Plus/Minus/Zero controls zoom, Ctrl-Minus sends ^_, Ctrl-Plus/Zero do nothing."],"ctrl-c-copy":[o.PreferenceManager.categories.Keyboard,!1,"bool","Ctrl+C copies if true, send ^C to host if false.\nCtrl+Shift+C sends ^C to host if true, copies if false."],"ctrl-v-paste":[o.PreferenceManager.categories.Keyboard,!1,"bool","Ctrl+V pastes if true, send ^V to host if false.\nCtrl+Shift+V sends ^V to host if true, pastes if false."],"east-asian-ambiguous-as-two-column":[o.PreferenceManager.categories.Keyboard,!1,"bool","Set whether East Asian Ambiguous characters have two column width."],"enable-8-bit-control":[o.PreferenceManager.categories.Keyboard,!1,"bool","True to enable 8-bit control characters, false to ignore them.\n\nWe'll respect the two-byte versions of these control characters regardless of this setting."],"enable-bold":[o.PreferenceManager.categories.Appearance,null,"tristate","True if we should use bold weight font for text with the bold/bright attribute. False to use the normal weight font. Null to autodetect."],"enable-bold-as-bright":[o.PreferenceManager.categories.Appearance,!0,"bool","True if we should use bright colors (8-15 on a 16 color palette) for any text with the bold attribute. False otherwise."],"enable-blink":[o.PreferenceManager.categories.Appearance,!0,"bool","True if we should respect the blink attribute. False to ignore it. "],"enable-clipboard-notice":[o.PreferenceManager.categories.CopyPaste,!0,"bool","Show a message in the terminal when the host writes to the clipboard."],"enable-clipboard-write":[o.PreferenceManager.categories.CopyPaste,!0,"bool","Allow the host to write directly to the system clipboard."],"enable-dec12":[o.PreferenceManager.categories.Miscellaneous,!1,"bool","Respect the host's attempt to change the cursor blink status using DEC Private Mode 12."],environment:[o.PreferenceManager.categories.Miscellaneous,{TERM:"xterm-256color"},"value","The default environment variables, as an object."],"font-family":[o.PreferenceManager.categories.Appearance,'"DejaVu Sans Mono", "Everson Mono", FreeMono, "Menlo", "Terminal", monospace',"string","Default font family for the terminal text."],"font-size":[o.PreferenceManager.categories.Appearance,15,"int","The default font size in pixels."],"font-smoothing":[o.PreferenceManager.categories.Appearance,"antialiased","string","CSS font-smoothing property."],"foreground-color":[o.PreferenceManager.categories.Appearance,"rgb(240, 240, 240)","color","The foreground color for text with no other color attributes."],"home-keys-scroll":[o.PreferenceManager.categories.Keyboard,!1,"bool","If true, home/end will control the terminal scrollbar and shift home/end will send the VT keycodes. If false then home/end sends VT codes and shift home/end scrolls."],keybindings:[o.PreferenceManager.categories.Keyboard,null,"value",'A map of key sequence to key actions. Key sequences include zero or more modifier keys followed by a key code. Key codes can be decimal or hexadecimal numbers, or a key identifier. Key actions can be specified a string to send to the host, or an action identifier. For a full explanation of the format, see https://goo.gl/LWRndr.\n\nSample keybindings:\n{\n "Ctrl-Alt-K": "clearScrollback",\n "Ctrl-Shift-L": "PASS",\n "Ctrl-H": "\'HELLO\\n\'"\n}'],"max-string-sequence":[o.PreferenceManager.categories.Encoding,1e5,"int","Max length of a DCS, OSC, PM, or APS sequence before we give up and ignore the code."],"media-keys-are-fkeys":[o.PreferenceManager.categories.Keyboard,!1,"bool","If true, convert media keys to their Fkey equivalent. If false, let the browser handle the keys."],"meta-sends-escape":[o.PreferenceManager.categories.Keyboard,!0,"bool","Set whether the meta key sends a leading escape or not."],"mouse-right-click-paste":[o.PreferenceManager.categories.CopyPaste,!0,"bool",'Paste on right mouse button clicks.\n\nThis option is activate independent of the "mouse-paste-button" setting.\n\nNote: This will handle left & right handed mice correctly.'],"mouse-paste-button":[o.PreferenceManager.categories.CopyPaste,null,[null,0,1,2,3,4,5,6],"Mouse paste button, or null to autodetect.\n\nFor autodetect, we'll use the middle mouse button for non-X11 platforms (including Chrome OS). On X11, we'll use the right mouse button (since the native window manager should paste via the middle mouse button).\n\n0 == left (primary) button.\n1 == middle (auxiliary) button.\n2 == right (secondary) button.\n\nThis option is activate independent of the \"mouse-right-click-paste\" setting.\n\nNote: This will handle left & right handed mice correctly."],"word-break-match-left":[o.PreferenceManager.categories.CopyPaste,"[^\\s\\[\\](){}<>\"'\\^!@#$%&*,;:`]","string",'Regular expression to halt matching to the left (start) of a selection.\n\nNormally this is a character class to reject specific characters.\nWe allow "~" and "." by default as paths frequently start with those.'],"word-break-match-right":[o.PreferenceManager.categories.CopyPaste,"[^\\s\\[\\](){}<>\"'\\^!@#$%&*,;:~.`]","string","Regular expression to halt matching to the right (end) of a selection.\n\nNormally this is a character class to reject specific characters."],"word-break-match-middle":[o.PreferenceManager.categories.CopyPaste,"[^\\s\\[\\](){}<>\"'\\^]*","string","Regular expression to match all the characters in the middle.\n\nNormally this is a character class to reject specific characters.\n\nUsed to expand the selection surrounding the starting point."],"page-keys-scroll":[o.PreferenceManager.categories.Keyboard,!1,"bool","If true, page up/down will control the terminal scrollbar and shift page up/down will send the VT keycodes. If false then page up/down sends VT codes and shift page up/down scrolls."],"pass-alt-number":[o.PreferenceManager.categories.Keyboard,null,"tristate","Set whether we should pass Alt-1..9 to the browser.\n\nThis is handy when running hterm in a browser tab, so that you don't lose Chrome's \"switch to tab\" keyboard accelerators. When not running in a tab it's better to send these keys to the host so they can be used in vim or emacs.\n\nIf true, Alt-1..9 will be handled by the browser. If false, Alt-1..9 will be sent to the host. If null, autodetect based on browser platform and window type."],"pass-ctrl-number":[o.PreferenceManager.categories.Keyboard,null,"tristate","Set whether we should pass Ctrl-1..9 to the browser.\n\nThis is handy when running hterm in a browser tab, so that you don't lose Chrome's \"switch to tab\" keyboard accelerators. When not running in a tab it's better to send these keys to the host so they can be used in vim or emacs.\n\nIf true, Ctrl-1..9 will be handled by the browser. If false, Ctrl-1..9 will be sent to the host. If null, autodetect based on browser platform and window type."],"pass-meta-number":[o.PreferenceManager.categories.Keyboard,null,"tristate","Set whether we should pass Meta-1..9 to the browser.\n\nThis is handy when running hterm in a browser tab, so that you don't lose Chrome's \"switch to tab\" keyboard accelerators. When not running in a tab it's better to send these keys to the host so they can be used in vim or emacs.\n\nIf true, Meta-1..9 will be handled by the browser. If false, Meta-1..9 will be sent to the host. If null, autodetect based on browser platform and window type."],"pass-meta-v":[o.PreferenceManager.categories.Keyboard,!0,"bool","Set whether meta-V gets passed to host."],"receive-encoding":[o.PreferenceManager.categories.Encoding,"utf-8",["utf-8","raw"],"Set the expected encoding for data received from the host.\n\nValid values are 'utf-8' and 'raw'."],"scroll-on-keystroke":[o.PreferenceManager.categories.Scrolling,!0,"bool","If true, scroll to the bottom on any keystroke."],"scroll-on-output":[o.PreferenceManager.categories.Scrolling,!1,"bool","If true, scroll to the bottom on terminal output."],"scrollbar-visible":[o.PreferenceManager.categories.Scrolling,!0,"bool","The vertical scrollbar mode."],"scroll-wheel-may-send-arrow-keys":[o.PreferenceManager.categories.Scrolling,!1,"bool","When using the alternative screen buffer, and DECCKM (Application Cursor Keys) is active, mouse wheel scroll events will emulate arrow keys.\n\nIt can be temporarily disabled by holding the shift key.\n\nThis frequently comes up when using pagers (less) or reading man pages or text editors (vi/nano) or using screen/tmux."],"scroll-wheel-move-multiplier":[o.PreferenceManager.categories.Scrolling,1,"int","The multiplier for the pixel delta in wheel events caused by the scroll wheel. Alters how fast the page scrolls."],"send-encoding":[o.PreferenceManager.categories.Encoding,"utf-8",["utf-8","raw"],"Set the encoding for data sent to host."],"terminal-encoding":[o.PreferenceManager.categories.Encoding,"iso-2022",["iso-2022","utf-8","utf-8-locked"],"The default terminal encoding (DOCS).\n\nISO-2022 enables character map translations (like graphics maps).\nUTF-8 disables support for those.\n\nThe locked variant means the encoding cannot be changed at runtime via terminal escape sequences.\n\nYou should stick with UTF-8 unless you notice broken rendering with legacy applications."],"shift-insert-paste":[o.PreferenceManager.categories.Keyboard,!0,"bool","Shift + Insert pastes if true, sent to host if false."],"user-css":[o.PreferenceManager.categories.Appearance,"","url","URL of user stylesheet to include in the terminal document."],"user-css-text":[o.PreferenceManager.categories.Appearance,"","multiline-string","Custom CSS text for styling the terminal."]},o.PreferenceManager.prototype=Object.create(i.PreferenceManager.prototype),o.PreferenceManager.constructor=o.PreferenceManager,o.PubSub=function(){this.observers_={}},o.PubSub.addBehavior=function(e){var t=new o.PubSub;for(var r in o.PubSub.prototype)e[r]=o.PubSub.prototype[r].bind(t)},o.PubSub.prototype.subscribe=function(e,t){e in this.observers_||(this.observers_[e]=[]),this.observers_[e].push(t)},o.PubSub.prototype.unsubscribe=function(e,t){var r=this.observers_[e];if(!r)throw"Invalid subject: "+e;var i=r.indexOf(t);if(i<0)throw"Not subscribed: "+e;r.splice(i,1)},o.PubSub.prototype.publish=function(e,t,r){function i(e){e=e&&this.setCursorPosition(this.cursorPosition.row,e-1)},o.Screen.prototype.shiftRow=function(){return this.shiftRows(1)[0]},o.Screen.prototype.shiftRows=function(e){return this.rowsArray.splice(0,e)},o.Screen.prototype.unshiftRow=function(e){this.rowsArray.splice(0,0,e)},o.Screen.prototype.unshiftRows=function(e){this.rowsArray.unshift.apply(this.rowsArray,e)},o.Screen.prototype.popRow=function(){return this.popRows(1)[0]},o.Screen.prototype.popRows=function(e){return this.rowsArray.splice(this.rowsArray.length-e,e)},o.Screen.prototype.pushRow=function(e){this.rowsArray.push(e)},o.Screen.prototype.pushRows=function(e){e.push.apply(this.rowsArray,e)},o.Screen.prototype.insertRow=function(e,t){this.rowsArray.splice(e,0,t)},o.Screen.prototype.insertRows=function(e,t){for(var r=0;r=this.rowsArray.length?(console.error("Row out of bounds: "+e),e=this.rowsArray.length-1):e<0&&(console.error("Row out of bounds: "+e),e=0),t>=this.columnCount_?(console.error("Column out of bounds: "+t),t=this.columnCount_-1):t<0&&(console.error("Column out of bounds: "+t),t=0),this.cursorPosition.overflow=!1;var r=this.rowsArray[e],i=r.firstChild;i||(i=r.ownerDocument.createTextNode(""),r.appendChild(i));var s=0;for(r==this.cursorRowNode_?t>=this.cursorPosition.column-this.cursorOffset_&&(i=this.cursorNode_,s=this.cursorPosition.column-this.cursorOffset_):this.cursorRowNode_=r,this.cursorPosition.move(e,t);i;){var n=t-s,a=o.TextAttributes.nodeWidth(i);if(!i.nextSibling||a>n)return this.cursorNode_=i,void(this.cursorOffset_=n);s+=a,i=i.nextSibling}}else console.warn("Attempt to set cursor position on empty screen.")},o.Screen.prototype.syncSelectionCaret=function(e){try{e.collapse(this.cursorNode_,this.cursorOffset_)}catch(e){}},o.Screen.prototype.splitNode_=function(e,t){var r=e.cloneNode(!1),s=e.textContent;e.textContent=o.TextAttributes.nodeSubstr(e,0,t),r.textContent=i.wc.substr(s,t),r.textContent&&e.parentNode.insertBefore(r,e.nextSibling),e.textContent||e.parentNode.removeChild(e)},o.Screen.prototype.maybeClipCurrentRow=function(){var e=o.TextAttributes.nodeWidth(this.cursorRowNode_);if(e<=this.columnCount_)this.cursorPosition.column>=this.columnCount_&&(this.setCursorPosition(this.cursorPosition.row,this.columnCount_-1),this.cursorPosition.overflow=!0);else{var t=this.cursorPosition.column;this.setCursorPosition(this.cursorPosition.row,this.columnCount_-1),e=o.TextAttributes.nodeWidth(this.cursorNode_),this.cursorOffset_o.TextAttributes.nodeWidth(e);){if(!e.hasAttribute("line-overflow")||!e.nextSibling)return-1;t-=o.TextAttributes.nodeWidth(e),e=e.nextSibling}return this.getNodeAndOffsetWithinRow_(e,t)},o.Screen.prototype.getNodeAndOffsetWithinRow_=function(e,t){for(var r=0;ro)){var p=i.wc.substring(h,o,i.wc.strWidth(h)),f=new RegExp("^"+l+a),g=p.match(f);if(g){var m=o+i.wc.strWidth(g[0]);-1==m||ms.rowIndex)t();else if(i.focusNode==i.anchorNode)i.anchorOffset=this.lastRowCount_},o.ScrollPort.prototype.drawTopFold_=function(e){if(!this.selection.startRow||this.selection.startRow.rowIndex>=e)this.rowNodes_.firstChild!=this.topFold_&&this.rowNodes_.insertBefore(this.topFold_,this.rowNodes_.firstChild);else{if(!this.selection.isMultiline||this.selection.endRow.rowIndex>=e)this.selection.startRow.nextSibling!=this.topFold_&&this.rowNodes_.insertBefore(this.topFold_,this.selection.startRow.nextSibling);else for(this.selection.endRow.nextSibling!=this.topFold_&&this.rowNodes_.insertBefore(this.topFold_,this.selection.endRow.nextSibling);this.selection.startRow.nextSibling!=this.selection.endRow;)this.rowNodes_.removeChild(this.selection.startRow.nextSibling);for(;this.rowNodes_.firstChild!=this.selection.startRow;)this.rowNodes_.removeChild(this.rowNodes_.firstChild)}},o.ScrollPort.prototype.drawBottomFold_=function(e){if(!this.selection.endRow||this.selection.endRow.rowIndex<=e)this.rowNodes_.lastChild!=this.bottomFold_&&this.rowNodes_.appendChild(this.bottomFold_);else{if(!this.selection.isMultiline||this.selection.startRow.rowIndex<=e)this.bottomFold_.nextSibling!=this.selection.endRow&&this.rowNodes_.insertBefore(this.bottomFold_,this.selection.endRow);else for(this.bottomFold_.nextSibling!=this.selection.startRow&&this.rowNodes_.insertBefore(this.bottomFold_,this.selection.startRow);this.selection.startRow.nextSibling!=this.selection.endRow;)this.rowNodes_.removeChild(this.selection.startRow.nextSibling);for(;this.rowNodes_.lastChild!=this.selection.endRow;)this.rowNodes_.removeChild(this.rowNodes_.lastChild)}},o.ScrollPort.prototype.drawVisibleRows_=function(e,t){function r(e,t){for(;e!=t;){if(!e)throw"Did not encounter target node";if(e==i.bottomFold_)throw"Encountered bottom fold before target node";var r=e;e=e.nextSibling,r.parentNode.removeChild(r)}}for(var i=this,o=this.selection.startRow,s=this.selection.endRow,n=this.bottomFold_,a=this.topFold_.nextSibling,l=Math.min(this.visibleRowCount,this.rowProvider_.getRowCount()),h=0;h=this.lastRowCount_;var t=e*this.characterSize.height+this.visibleRowTopMargin,r=this.getScrollMax_();t>r&&(t=r),this.screen_.scrollTop!=t&&(this.screen_.scrollTop=t,this.scheduleRedraw())},o.ScrollPort.prototype.scrollRowToBottom=function(e){this.syncScrollHeight(),this.isScrolledEnd=e+this.visibleRowCount>=this.lastRowCount_;var t=e*this.characterSize.height+this.visibleRowTopMargin+this.visibleRowBottomMargin;(t-=this.visibleRowCount*this.characterSize.height)<0&&(t=0),this.screen_.scrollTop!=t&&(this.screen_.scrollTop=t)},o.ScrollPort.prototype.getTopRowIndex=function(){return Math.round(this.screen_.scrollTop/this.characterSize.height)},o.ScrollPort.prototype.getBottomRowIndex=function(e){return e+this.visibleRowCount-1},o.ScrollPort.prototype.onScroll_=function(e){var t=this.getScreenSize();t.width==this.lastScreenWidth_&&t.height==this.lastScreenHeight_?(this.redraw_(),this.publish("scroll",{scrollPort:this})):this.resize()},o.ScrollPort.prototype.onScrollWheel=function(e){},o.ScrollPort.prototype.onScrollWheel_=function(e){if(this.onScrollWheel(e),!e.defaultPrevented){var t=this.scrollWheelDelta(e),r=this.screen_.scrollTop-t;r<0&&(r=0);var i=this.getScrollMax_();r>i&&(r=i),r!=this.screen_.scrollTop&&(this.screen_.scrollTop=r,e.preventDefault())}},o.ScrollPort.prototype.scrollWheelDelta=function(e){var t;switch(e.deltaMode){case WheelEvent.DOM_DELTA_PIXEL:t=e.deltaY*this.scrollWheelMultiplier_;break;case WheelEvent.DOM_DELTA_LINE:t=e.deltaY*this.characterSize.height;break;case WheelEvent.DOM_DELTA_PAGE:t=e.deltaY*this.characterSize.height*this.screen_.getHeight()}return-1*t},o.ScrollPort.prototype.onTouch=function(e){},o.ScrollPort.prototype.onTouch_=function(e){if(this.onTouch(e),!e.defaultPrevented){var t,r,i=function(e){return{id:e.identifier,y:e.clientY,x:e.clientX}};switch(e.type){case"touchstart":for(t=0;tn&&(s=n),s!=this.screen_.scrollTop&&(this.screen_.scrollTop=s)}e.preventDefault()}},o.ScrollPort.prototype.onResize_=function(e){this.syncCharacterSize(),this.resize()},o.ScrollPort.prototype.onCopy=function(e){},o.ScrollPort.prototype.onCopy_=function(e){if(this.onCopy(e),!e.defaultPrevented&&(this.resetSelectBags_(),this.selection.sync(),this.selection.startRow&&!(this.selection.endRow.rowIndex-this.selection.startRow.rowIndex<2))){var t=this.getTopRowIndex(),r=this.getBottomRowIndex(t);if(this.selection.startRow.rowIndexr){var o;o=this.selection.startRow.rowIndex>r?this.selection.startRow.rowIndex+1:this.bottomFold_.previousSibling.rowIndex+1,this.bottomSelectBag_.textContent=this.rowProvider_.getRowsText(o,this.selection.endRow.rowIndex),this.rowNodes_.insertBefore(this.bottomSelectBag_,this.selection.endRow)}}},o.ScrollPort.prototype.onBodyKeyDown_=function(e){if(this.ctrlVPaste){var t=String.fromCharCode(e.which).toLowerCase();(e.ctrlKey||e.metaKey)&&"v"==t&&this.pasteTarget_.focus()}},o.ScrollPort.prototype.onPaste_=function(e){this.pasteTarget_.focus();var t=this;setTimeout(function(){t.publish("paste",{text:t.pasteTarget_.value}),t.pasteTarget_.value="",t.screen_.focus()},0)},o.ScrollPort.prototype.handlePasteTargetTextInput_=function(e){e.stopPropagation()},o.ScrollPort.prototype.setScrollbarVisible=function(e){this.screen_.style.overflowY=e?"scroll":"hidden"},o.ScrollPort.prototype.setScrollWheelMoveMultipler=function(e){this.scrollWheelMultiplier_=e},i.rtdep("lib.colors","lib.PreferenceManager","lib.resource","lib.wc","lib.f","hterm.Keyboard","hterm.Options","hterm.PreferenceManager","hterm.Screen","hterm.ScrollPort","hterm.Size","hterm.TextAttributes","hterm.VT"),o.Terminal=function(e){this.profileId_=null,this.primaryScreen_=new o.Screen,this.alternateScreen_=new o.Screen,this.screen_=this.primaryScreen_,this.screenSize=new o.Size(0,0),this.scrollPort_=new o.ScrollPort(this),this.scrollPort_.subscribe("resize",this.onResize_.bind(this)),this.scrollPort_.subscribe("scroll",this.onScroll_.bind(this)),this.scrollPort_.subscribe("paste",this.onPaste_.bind(this)),this.scrollPort_.onCopy=this.onCopy_.bind(this),this.div_=null,this.document_=window.document,this.scrollbackRows_=[],this.tabStops_=[],this.defaultTabStops=!0,this.vtScrollTop_=null,this.vtScrollBottom_=null,this.cursorNode_=null,this.cursorShape_=o.Terminal.cursorShape.BLOCK,this.cursorColor_=null,this.cursorBlinkCycle_=[100,100],this.myOnCursorBlink_=this.onCursorBlink_.bind(this),this.backgroundColor_=null,this.foregroundColor_=null,this.scrollOnOutput_=null,this.scrollOnKeystroke_=null,this.scrollWheelArrowKeys_=null,this.defeatMouseReports_=!1,this.bellAudio_=this.document_.createElement("audio"),this.bellAudio_.id="hterm:bell-audio",this.bellAudio_.setAttribute("preload","auto"),this.bellNotificationList_=[],this.desktopNotificationBell_=!1,this.savedOptions_={},this.options_=new o.Options,this.timeouts_={},this.vt=new o.VT(this),this.keyboard=new o.Keyboard(this),this.io=new o.Terminal.IO(this),this.enableMouseDragScroll=!0,this.copyOnSelect=null,this.mouseRightClickPaste=null,this.mousePasteButton=null,this.useDefaultWindowCopy=!1,this.clearSelectionAfterCopy=!0,this.realizeSize_(80,24),this.setDefaultTabStops(),this.setProfile(e||"default",function(){this.onTerminalReady()}.bind(this))},o.Terminal.cursorShape={BLOCK:"BLOCK",BEAM:"BEAM",UNDERLINE:"UNDERLINE"},o.Terminal.prototype.onTerminalReady=function(){},o.Terminal.prototype.tabWidth=8,o.Terminal.prototype.setProfile=function(e,t){this.profileId_=e.replace(/\//g,"");var r=this;this.prefs_&&this.prefs_.deactivate(),this.prefs_=new o.PreferenceManager(this.profileId_),this.prefs_.addObservers(null,{"alt-gr-mode":function(e){e=null==e?"en-us"==navigator.language.toLowerCase()?"none":"right-alt":"string"==typeof e?e.toLowerCase():"none",/^(none|ctrl-alt|left-alt|right-alt)$/.test(e)||(e="none"),r.keyboard.altGrMode=e},"alt-backspace-is-meta-backspace":function(e){r.keyboard.altBackspaceIsMetaBackspace=e},"alt-is-meta":function(e){r.keyboard.altIsMeta=e},"alt-sends-what":function(e){/^(escape|8-bit|browser-key)$/.test(e)||(e="escape"),r.keyboard.altSendsWhat=e},"audible-bell-sound":function(e){var t=e.match(/^lib-resource:(\S+)/);t?r.bellAudio_.setAttribute("src",i.resource.getDataUrl(t[1])):r.bellAudio_.setAttribute("src",e)},"desktop-notification-bell":function(e){e&&Notification?(r.desktopNotificationBell_="granted"===Notification.permission,r.desktopNotificationBell_||console.warn("desktop-notification-bell is true but we do not have permission to display notifications.")):r.desktopNotificationBell_=!1},"background-color":function(e){r.setBackgroundColor(e)},"background-image":function(e){r.scrollPort_.setBackgroundImage(e)},"background-size":function(e){r.scrollPort_.setBackgroundSize(e)},"background-position":function(e){r.scrollPort_.setBackgroundPosition(e)},"backspace-sends-backspace":function(e){r.keyboard.backspaceSendsBackspace=e},"character-map-overrides":function(e){null==e||e instanceof Object?(r.vt.characterMaps.reset(),r.vt.characterMaps.setOverrides(e)):console.warn("Preference character-map-modifications is not an object: "+e)},"cursor-blink":function(e){r.setCursorBlink(!!e)},"cursor-blink-cycle":function(e){e instanceof Array&&"number"==typeof e[0]&&"number"==typeof e[1]?r.cursorBlinkCycle_=e:r.cursorBlinkCycle_="number"==typeof e?[e,e]:[100,100]},"cursor-color":function(e){r.setCursorColor(e)},"color-palette-overrides":function(e){if(null==e||e instanceof Object||e instanceof Array){if(i.colors.colorPalette=i.colors.stockColorPalette.concat(),e)for(var t in e){var o=parseInt(t);if(isNaN(o)||o<0||o>255)console.log("Invalid value in palette: "+t+": "+e[t]);else if(e[o]){var s=i.colors.normalizeCSS(e[o]);s&&(i.colors.colorPalette[o]=s)}}r.primaryScreen_.textAttributes.resetColorPalette(),r.alternateScreen_.textAttributes.resetColorPalette()}else console.warn("Preference color-palette-overrides is not an array or object: "+e)},"copy-on-select":function(e){r.copyOnSelect=!!e},"use-default-window-copy":function(e){r.useDefaultWindowCopy=!!e},"clear-selection-after-copy":function(e){r.clearSelectionAfterCopy=!!e},"ctrl-plus-minus-zero-zoom":function(e){r.keyboard.ctrlPlusMinusZeroZoom=e},"ctrl-c-copy":function(e){r.keyboard.ctrlCCopy=e},"ctrl-v-paste":function(e){r.keyboard.ctrlVPaste=e,r.scrollPort_.setCtrlVPaste(e)},"east-asian-ambiguous-as-two-column":function(e){i.wc.regardCjkAmbiguous=e},"enable-8-bit-control":function(e){r.vt.enable8BitControl=!!e},"enable-bold":function(e){r.syncBoldSafeState()},"enable-bold-as-bright":function(e){r.primaryScreen_.textAttributes.enableBoldAsBright=!!e,r.alternateScreen_.textAttributes.enableBoldAsBright=!!e},"enable-blink":function(e){r.syncBlinkState()},"enable-clipboard-write":function(e){r.vt.enableClipboardWrite=!!e},"enable-dec12":function(e){r.vt.enableDec12=!!e},"font-family":function(e){r.syncFontFamily()},"font-size":function(e){r.setFontSize(e)},"font-smoothing":function(e){r.syncFontFamily()},"foreground-color":function(e){r.setForegroundColor(e)},"home-keys-scroll":function(e){r.keyboard.homeKeysScroll=e},keybindings:function(e){if(r.keyboard.bindings.clear(),e)if(e instanceof Object)try{r.keyboard.bindings.addBindings(e)}catch(e){console.error("Error in keybindings preference: "+e)}else console.error("Error in keybindings preference: Expected object")},"max-string-sequence":function(e){r.vt.maxStringSequence=e},"media-keys-are-fkeys":function(e){r.keyboard.mediaKeysAreFKeys=e},"meta-sends-escape":function(e){r.keyboard.metaSendsEscape=e},"mouse-right-click-paste":function(e){r.mouseRightClickPaste=e},"mouse-paste-button":function(e){r.syncMousePasteButton()},"page-keys-scroll":function(e){r.keyboard.pageKeysScroll=e},"pass-alt-number":function(e){null==e&&(e=!window.navigator.userAgent.match(/Mac OS X/)&&"popup"!=o.windowType),r.passAltNumber=e},"pass-ctrl-number":function(e){null==e&&(e=!window.navigator.userAgent.match(/Mac OS X/)&&"popup"!=o.windowType),r.passCtrlNumber=e},"pass-meta-number":function(e){null==e&&(e=window.navigator.userAgent.match(/Mac OS X/)&&"popup"!=o.windowType),r.passMetaNumber=e},"pass-meta-v":function(e){r.keyboard.passMetaV=e},"receive-encoding":function(e){/^(utf-8|raw)$/.test(e)||(console.warn('Invalid value for "receive-encoding": '+e),e="utf-8"),r.vt.characterEncoding=e},"scroll-on-keystroke":function(e){r.scrollOnKeystroke_=e},"scroll-on-output":function(e){r.scrollOnOutput_=e},"scrollbar-visible":function(e){r.setScrollbarVisible(e)},"scroll-wheel-may-send-arrow-keys":function(e){r.scrollWheelArrowKeys_=e},"scroll-wheel-move-multiplier":function(e){r.setScrollWheelMoveMultipler(e)},"send-encoding":function(e){/^(utf-8|raw)$/.test(e)||(console.warn('Invalid value for "send-encoding": '+e),e="utf-8"),r.keyboard.characterEncoding=e},"shift-insert-paste":function(e){r.keyboard.shiftInsertPaste=e},"terminal-encoding":function(e){r.vt.setEncoding(e)},"user-css":function(e){r.scrollPort_.setUserCssUrl(e)},"user-css-text":function(e){r.scrollPort_.setUserCssText(e)},"word-break-match-left":function(e){r.primaryScreen_.wordBreakMatchLeft=e,r.alternateScreen_.wordBreakMatchLeft=e},"word-break-match-right":function(e){r.primaryScreen_.wordBreakMatchRight=e,r.alternateScreen_.wordBreakMatchRight=e},"word-break-match-middle":function(e){r.primaryScreen_.wordBreakMatchMiddle=e,r.alternateScreen_.wordBreakMatchMiddle=e}}),this.prefs_.readStorage(function(){this.prefs_.notifyAll(),t&&t()}.bind(this))},o.Terminal.prototype.getPrefs=function(){return this.prefs_},o.Terminal.prototype.setBracketedPaste=function(e){this.options_.bracketedPaste=e},o.Terminal.prototype.setCursorColor=function(e){this.cursorColor_=e,this.cursorNode_.style.backgroundColor=e,this.cursorNode_.style.borderColor=e},o.Terminal.prototype.getCursorColor=function(){return this.cursorColor_},o.Terminal.prototype.setSelectionEnabled=function(e){this.enableMouseDragScroll=e},o.Terminal.prototype.setBackgroundColor=function(e){this.backgroundColor_=i.colors.normalizeCSS(e),this.primaryScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.alternateScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.scrollPort_.setBackgroundColor(e)},o.Terminal.prototype.getBackgroundColor=function(){return this.backgroundColor_},o.Terminal.prototype.setForegroundColor=function(e){this.foregroundColor_=i.colors.normalizeCSS(e),this.primaryScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.alternateScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.scrollPort_.setForegroundColor(e)},o.Terminal.prototype.getForegroundColor=function(){return this.foregroundColor_},o.Terminal.prototype.runCommandClass=function(e,t){var r=this.prefs_.get("environment");"object"==typeof r&&null!=r||(r={});var i=this;this.command=new e({argString:t||"",io:this.io.push(),environment:r,onExit:function(e){i.io.pop(),i.uninstallKeyboard(),i.prefs_.get("close-on-exit")&&window.close()}}),this.installKeyboard(),this.command.run()},o.Terminal.prototype.isPrimaryScreen=function(){return this.screen_==this.primaryScreen_},o.Terminal.prototype.installKeyboard=function(){this.keyboard.installKeyboard(this.scrollPort_.getDocument().body)},o.Terminal.prototype.uninstallKeyboard=function(){this.keyboard.installKeyboard(null)},o.Terminal.prototype.setCssVar=function(e,t,r="--hterm-"){this.document_.documentElement.style.setProperty(`${r}${e}`,t)},o.Terminal.prototype.setFontSize=function(e){0===e&&(e=this.prefs_.get("font-size")),this.scrollPort_.setFontSize(e),this.setCssVar("charsize-width",this.scrollPort_.characterSize.width+"px"),this.setCssVar("charsize-height",this.scrollPort_.characterSize.height+"px")},o.Terminal.prototype.getFontSize=function(){return this.scrollPort_.getFontSize()},o.Terminal.prototype.getFontFamily=function(){return this.scrollPort_.getFontFamily()},o.Terminal.prototype.syncFontFamily=function(){this.scrollPort_.setFontFamily(this.prefs_.get("font-family"),this.prefs_.get("font-smoothing")),this.syncBoldSafeState()},o.Terminal.prototype.syncMousePasteButton=function(){var e=this.prefs_.get("mouse-paste-button");if("number"!=typeof e){var t=navigator.userAgent.match(/\(X11;\s+(\S+)/);t&&"CrOS"!=t[1]?this.mousePasteButton=2:this.mousePasteButton=1}else this.mousePasteButton=e},o.Terminal.prototype.syncBoldSafeState=function(){var e=this.prefs_.get("enable-bold");if(null!==e)return this.primaryScreen_.textAttributes.enableBold=e,void(this.alternateScreen_.textAttributes.enableBold=e);var t=this.scrollPort_.measureCharacterSize(),r=this.scrollPort_.measureCharacterSize("bold"),i=t.equals(r);i||console.warn("Bold characters disabled: Size of bold weight differs from normal. Font family is: "+this.scrollPort_.getFontFamily()),this.primaryScreen_.textAttributes.enableBold=i,this.alternateScreen_.textAttributes.enableBold=i},o.Terminal.prototype.syncBlinkState=function(){this.setCssVar("node-duration",this.prefs_.get("enable-blink")?"0.7s":"0")},o.Terminal.prototype.syncMouseStyle=function(){this.setCssVar("mouse-cursor-style",this.vt.mouseReport==this.vt.MOUSE_REPORT_DISABLED?"var(--hterm-mouse-cursor-text)":"var(--hterm-mouse-cursor-pointer)")},o.Terminal.prototype.saveCursor=function(){return this.screen_.cursorPosition.clone()},o.Terminal.prototype.getTextAttributes=function(){return this.screen_.textAttributes},o.Terminal.prototype.setTextAttributes=function(e){this.screen_.textAttributes=e},o.Terminal.prototype.getZoomFactor=function(){return this.scrollPort_.characterSize.zoomFactor},o.Terminal.prototype.setWindowTitle=function(e){window.document.title=e},o.Terminal.prototype.restoreCursor=function(e){var t=i.f.clamp(e.row,0,this.screenSize.height-1),r=i.f.clamp(e.column,0,this.screenSize.width-1);this.screen_.setCursorPosition(t,r),(e.column>r||e.column==r&&e.overflow)&&(this.screen_.cursorPosition.overflow=!0)},o.Terminal.prototype.clearCursorOverflow=function(){this.screen_.cursorPosition.overflow=!1},o.Terminal.prototype.setCursorShape=function(e){this.cursorShape_=e,this.restyleCursor_()},o.Terminal.prototype.getCursorShape=function(){return this.cursorShape_},o.Terminal.prototype.setWidth=function(e){null!=e?(this.div_.style.width=Math.ceil(this.scrollPort_.characterSize.width*e+this.scrollPort_.currentScrollbarWidthPx)+"px",this.realizeSize_(e,this.screenSize.height),this.scheduleSyncCursorPosition_()):this.div_.style.width="100%"},o.Terminal.prototype.setHeight=function(e){null!=e?(this.div_.style.height=this.scrollPort_.characterSize.height*e+"px",this.realizeSize_(this.screenSize.width,e),this.scheduleSyncCursorPosition_()):this.div_.style.height="100%"},o.Terminal.prototype.realizeSize_=function(e,t){e!=this.screenSize.width&&this.realizeWidth_(e),t!=this.screenSize.height&&this.realizeHeight_(t),this.io.onTerminalResize_(e,t)},o.Terminal.prototype.realizeWidth_=function(e){if(e<=0)throw new Error("Attempt to realize bad width: "+e);var t=e-this.screen_.getWidth();if(this.screenSize.width=e,this.screen_.setColumnCount(e),t>0)this.defaultTabStops&&this.setDefaultTabStops(this.screenSize.width-t);else for(var r=this.tabStops_.length-1;r>=0&&!(this.tabStops_[r]0){if(t<=this.scrollbackRows_.length){var s=Math.min(t,this.scrollbackRows_.length),n=this.scrollbackRows_.splice(this.scrollbackRows_.length-s,s);this.screen_.unshiftRows(n),t-=s,r.row+=s}t&&this.appendRows_(t)}this.setVTScrollRegion(null,null),this.restoreCursor(r)},o.Terminal.prototype.scrollHome=function(){this.scrollPort_.scrollRowToTop(0)},o.Terminal.prototype.scrollEnd=function(){this.scrollPort_.scrollRowToBottom(this.getRowCount())},o.Terminal.prototype.scrollPageUp=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e-this.screenSize.height+1)},o.Terminal.prototype.scrollPageDown=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e+this.screenSize.height-1)},o.Terminal.prototype.scrollLineUp=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e-1)},o.Terminal.prototype.scrollLineDown=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e+1)},o.Terminal.prototype.wipeContents=function(){this.scrollbackRows_.length=0,this.scrollPort_.resetCache(),[this.primaryScreen_,this.alternateScreen_].forEach(function(e){var t=e.getHeight();t>0&&(this.renumberRows_(0,t),this.clearHome(e))}.bind(this)),this.syncCursorPosition_(),this.scrollPort_.invalidate()},o.Terminal.prototype.reset=function(){this.clearAllTabStops(),this.setDefaultTabStops(),this.clearHome(this.primaryScreen_),this.primaryScreen_.textAttributes.reset(),this.clearHome(this.alternateScreen_),this.alternateScreen_.textAttributes.reset(),this.setCursorBlink(!!this.prefs_.get("cursor-blink")),this.vt.reset(),this.softReset()},o.Terminal.prototype.softReset=function(){this.options_=new o.Options,this.options_.cursorBlink=!!this.timeouts_.cursorBlink,this.primaryScreen_.textAttributes.resetColorPalette(),this.alternateScreen_.textAttributes.resetColorPalette(),this.setVTScrollRegion(null,null),this.setCursorVisible(!0)},o.Terminal.prototype.forwardTabStop=function(){for(var e=this.screen_.cursorPosition.column,t=0;te)return void this.setCursorColumn(this.tabStops_[t]);var r=this.screen_.cursorPosition.overflow;this.setCursorColumn(this.screenSize.width-1),this.screen_.cursorPosition.overflow=r},o.Terminal.prototype.backwardTabStop=function(){for(var e=this.screen_.cursorPosition.column,t=this.tabStops_.length-1;t>=0;t--)if(this.tabStops_[t]=0;t--){if(this.tabStops_[t]==e)return;if(this.tabStops_[t]0){var n=this.screen_.shiftRows(s);Array.prototype.push.apply(this.scrollbackRows_,n),this.scrollPort_.isScrolledEnd&&this.scheduleScrollDown_()}t>=this.screen_.rowsArray.length&&(t=this.screen_.rowsArray.length-1),this.setAbsoluteCursorPosition(t,0)},o.Terminal.prototype.moveRows_=function(e,t,r){var i=this.screen_.removeRows(e,t);this.screen_.insertRows(r,i);var o,s;e=this.screenSize.width&&(a=!0,n=this.screenSize.width-this.screen_.cursorPosition.column),a&&!this.options_.wraparound?(s=i.wc.substr(e,t,n-1)+i.wc.substr(e,r-1),n=r):s=i.wc.substr(e,t,n);for(var l=o.TextAttributes.splitWidecharString(s),h=0;h=0;o--)this.setAbsoluteCursorPosition(t+o,0),this.screen_.clearCursorRow()},o.Terminal.prototype.deleteLines=function(e){var t=this.saveCursor(),r=t.row,i=this.getVTScrollBottom(),o=i-r+1,s=i-(e=Math.min(e,o))+1;e!=o&&this.moveRows_(r,e,s);for(var n=0;nt)this.setCssVar("cursor-offset-row","-1");else{this.options_.cursorVisible&&"none"==this.cursorNode_.style.display&&(this.cursorNode_.style.display=""),this.setCssVar("cursor-offset-row",`${r-e} + `+`${this.scrollPort_.visibleRowTopMargin}px`),this.setCssVar("cursor-offset-col",this.screen_.cursorPosition.column),this.cursorNode_.setAttribute("title","("+this.screen_.cursorPosition.column+", "+this.screen_.cursorPosition.row+")");var i=this.document_.getSelection();i&&i.isCollapsed&&this.screen_.syncSelectionCaret(i)}},o.Terminal.prototype.restyleCursor_=function(){var e=this.cursorShape_;"false"==this.cursorNode_.getAttribute("focus")&&(e=o.Terminal.cursorShape.BLOCK);var t=this.cursorNode_.style;switch(e){case o.Terminal.cursorShape.BEAM:t.height="var(--hterm-charsize-height)",t.backgroundColor="transparent",t.borderBottomStyle=null,t.borderLeftStyle="solid";break;case o.Terminal.cursorShape.UNDERLINE:t.height=this.scrollPort_.characterSize.baseline+"px",t.backgroundColor="transparent",t.borderBottomStyle="solid",t.borderLeftStyle=null;break;default:t.height="var(--hterm-charsize-height)",t.backgroundColor=this.cursorColor_,t.borderBottomStyle=null,t.borderLeftStyle=null}},o.Terminal.prototype.scheduleSyncCursorPosition_=function(){if(!this.timeouts_.syncCursor){var e=this;this.timeouts_.syncCursor=setTimeout(function(){e.syncCursorPosition_(),delete e.timeouts_.syncCursor},0)}},o.Terminal.prototype.showZoomWarning_=function(e){if(!this.zoomWarningNode_){if(!e)return;this.zoomWarningNode_=this.document_.createElement("div"),this.zoomWarningNode_.id="hterm:zoom-warning",this.zoomWarningNode_.style.cssText="color: black;background-color: #ff2222;font-size: large;border-radius: 8px;opacity: 0.75;padding: 0.2em 0.5em 0.2em 0.5em;top: 0.5em;right: 1.2em;position: absolute;-webkit-text-size-adjust: none;-webkit-user-select: none;-moz-text-size-adjust: none;-moz-user-select: none;",this.zoomWarningNode_.addEventListener("click",function(e){this.parentNode.removeChild(this)})}this.zoomWarningNode_.textContent=i.MessageManager.replaceReferences(o.zoomWarningMessage,[parseInt(100*this.scrollPort_.characterSize.zoomFactor)]),this.zoomWarningNode_.style.fontFamily=this.prefs_.get("font-family"),e?this.zoomWarningNode_.parentNode||this.div_.parentNode.appendChild(this.zoomWarningNode_):this.zoomWarningNode_.parentNode&&this.zoomWarningNode_.parentNode.removeChild(this.zoomWarningNode_)},o.Terminal.prototype.showOverlay=function(e,t){if(!this.overlayNode_){if(!this.div_)return;this.overlayNode_=this.document_.createElement("div"),this.overlayNode_.style.cssText="border-radius: 15px;font-size: xx-large;opacity: 0.75;padding: 0.2em 0.5em 0.2em 0.5em;position: absolute;-webkit-user-select: none;-webkit-transition: opacity 180ms ease-in;-moz-user-select: none;-moz-transition: opacity 180ms ease-in;",this.overlayNode_.addEventListener("mousedown",function(e){e.preventDefault(),e.stopPropagation()},!0)}this.overlayNode_.style.color=this.prefs_.get("background-color"),this.overlayNode_.style.backgroundColor=this.prefs_.get("foreground-color"),this.overlayNode_.style.fontFamily=this.prefs_.get("font-family"),this.overlayNode_.textContent=e,this.overlayNode_.style.opacity="0.75",this.overlayNode_.parentNode||this.div_.appendChild(this.overlayNode_);var r=o.getClientSize(this.div_),i=o.getClientSize(this.overlayNode_);this.overlayNode_.style.top=(r.height-i.height)/2+"px",this.overlayNode_.style.left=(r.width-i.width-this.scrollPort_.currentScrollbarWidthPx)/2+"px";var s=this;this.overlayTimeout_&&clearTimeout(this.overlayTimeout_),null!==t&&(this.overlayTimeout_=setTimeout(function(){s.overlayNode_.style.opacity="0",s.overlayTimeout_=setTimeout(function(){s.overlayNode_.parentNode&&s.overlayNode_.parentNode.removeChild(s.overlayNode_),s.overlayTimeout_=null,s.overlayNode_.style.opacity="0.75"},200)},t||1500))},o.Terminal.prototype.paste=function(){return o.pasteFromClipboard(this.document_)},o.Terminal.prototype.copyStringToClipboard=function(e){this.prefs_.get("enable-clipboard-notice")&&setTimeout(this.showOverlay.bind(this,o.notifyCopyMessage,500),200);var t=this.document_.createElement("pre");t.id="hterm:copy-to-clipboard-source",t.textContent=e,t.style.cssText="-webkit-user-select: text;-moz-user-select: text;position: absolute;top: -99px",this.document_.body.appendChild(t);var r=this.document_.getSelection(),i=r.anchorNode,s=r.anchorOffset,n=r.focusNode,a=r.focusOffset;r.selectAllChildren(t),o.copySelectionToClipboard(this.document_),r.extend&&(r.collapse(i,s),r.extend(n,a)),t.parentNode.removeChild(t)},o.Terminal.prototype.getSelectionText=function(){var e=this.scrollPort_.selection;if(e.sync(),e.isCollapsed)return null;var t=e.startOffset,r=e.startNode;if("X-ROW"!=r.nodeName)for("#text"==r.nodeName&&"SPAN"==r.parentNode.nodeName&&(r=r.parentNode);r.previousSibling;)r=r.previousSibling,t+=o.TextAttributes.nodeWidth(r);var s=o.TextAttributes.nodeWidth(e.endNode)-e.endOffset;if("X-ROW"!=(r=e.endNode).nodeName)for("#text"==r.nodeName&&"SPAN"==r.parentNode.nodeName&&(r=r.parentNode);r.nextSibling;)r=r.nextSibling,s+=o.TextAttributes.nodeWidth(r);var n=this.getRowsText(e.startRow.rowIndex,e.endRow.rowIndex+1);return i.wc.substring(n,t,i.wc.strWidth(n)-s)},o.Terminal.prototype.copySelectionToClipboard=function(){var e=this.getSelectionText();null!=e&&this.copyStringToClipboard(e)},o.Terminal.prototype.overlaySize=function(){this.showOverlay(this.screenSize.width+"x"+this.screenSize.height)},o.Terminal.prototype.onVTKeystroke=function(e){this.scrollOnKeystroke_&&this.scrollPort_.scrollRowToBottom(this.getRowCount()),this.io.onVTKeystroke(this.keyboard.encode(e))},o.Terminal.prototype.openUrl=function(e){window.chrome&&window.chrome.browser?chrome.browser.openTab({url:e}):window.open(e,"_blank").focus()},o.Terminal.prototype.openSelectedUrl_=function(){var e=this.getSelectionText();if((null!=e||(this.screen_.expandSelection(this.document_.getSelection()),null!=(e=this.getSelectionText())))&&!(e.length>2048||e.search(/[\s\[\](){}<>"'\\^`]/)>=0)){if(e.search("^[a-zA-Z][a-zA-Z0-9+.-]*://")<0)switch(e.split(":",1)[0]){case"mailto":break;default:e="http://"+e}this.openUrl(e)}},o.Terminal.prototype.onMouse_=function(e){if(!e.processedByTerminalHandler_){var t=!this.defeatMouseReports_&&this.vt.mouseReport!=this.vt.MOUSE_REPORT_DISABLED;if(e.processedByTerminalHandler_=!0,e.terminalRow=parseInt((e.clientY-this.scrollPort_.visibleRowTopMargin)/this.scrollPort_.characterSize.height)+1,e.terminalColumn=parseInt(e.clientX/this.scrollPort_.characterSize.width)+1,!("mousedown"==e.type&&e.terminalColumn>this.screenSize.width)){if(this.options_.cursorVisible&&!t&&(e.terminalRow-1==this.screen_.cursorPosition.row&&e.terminalColumn-1==this.screen_.cursorPosition.column?this.cursorNode_.style.display="none":"none"==this.cursorNode_.style.display&&(this.cursorNode_.style.display="")),"mousedown"==e.type&&(e.altKey||!t?(this.defeatMouseReports_=!0,this.setSelectionEnabled(!0)):(this.defeatMouseReports_=!1,this.document_.getSelection().collapseToEnd(),this.setSelectionEnabled(!1),e.preventDefault())),t)this.scrollBlockerNode_.engaged||("mousedown"==e.type?(this.scrollBlockerNode_.engaged=!0,this.scrollBlockerNode_.style.top=e.clientY-5+"px",this.scrollBlockerNode_.style.left=e.clientX-5+"px"):"mousemove"==e.type&&(this.document_.getSelection().collapseToEnd(),e.preventDefault())),this.onMouse(e);else{if("dblclick"==e.type&&this.copyOnSelect&&(this.screen_.expandSelection(this.document_.getSelection()),this.copySelectionToClipboard(this.document_)),"click"==e.type&&!e.shiftKey&&(e.ctrlKey||e.metaKey))return clearTimeout(this.timeouts_.openUrl),void(this.timeouts_.openUrl=setTimeout(this.openSelectedUrl_.bind(this),500));if("mousedown"==e.type&&(this.mouseRightClickPaste&&2==e.button||e.button==this.mousePasteButton)&&(this.paste()||console.warning("Could not paste manually due to web restrictions")),"mouseup"==e.type&&0==e.button&&this.copyOnSelect&&!this.document_.getSelection().isCollapsed&&this.copySelectionToClipboard(this.document_),"mousemove"!=e.type&&"mouseup"!=e.type||!this.scrollBlockerNode_.engaged||(this.scrollBlockerNode_.engaged=!1,this.scrollBlockerNode_.style.top="-99px"),this.scrollWheelArrowKeys_&&!e.shiftKey&&this.keyboard.applicationCursor&&!this.isPrimaryScreen()&&"wheel"==e.type){var r=this.scrollPort_.scrollWheelDelta(e),o=i.f.smartFloorDivide(Math.abs(r),this.scrollPort_.characterSize.height),s="O"+(r<0?"B":"A");this.io.sendString(s.repeat(o)),e.preventDefault()}}"mouseup"==e.type&&this.document_.getSelection().isCollapsed&&(this.defeatMouseReports_=!1)}}},o.Terminal.prototype.onMouse=function(e){},o.Terminal.prototype.onFocusChange_=function(e){this.cursorNode_.setAttribute("focus",e),this.restyleCursor_(),!0===e&&this.closeBellNotifications_()},o.Terminal.prototype.onScroll_=function(){this.scheduleSyncCursorPosition_()},o.Terminal.prototype.onPaste_=function(e){var t=e.text.replace(/\n/gm,"\r");t=this.keyboard.encode(t),this.options_.bracketedPaste&&(t="[200~"+t+"[201~"),this.io.sendString(t)},o.Terminal.prototype.onCopy_=function(e){this.useDefaultWindowCopy||(e.preventDefault(),setTimeout(this.copySelectionToClipboard.bind(this),0))},o.Terminal.prototype.onResize_=function(){var e=Math.floor(this.scrollPort_.getScreenWidth()/this.scrollPort_.characterSize.width)||0,t=i.f.smartFloorDivide(this.scrollPort_.getScreenHeight(),this.scrollPort_.characterSize.height)||0;if(!(e<=0||t<=0)){var r=e!=this.screenSize.width||t!=this.screenSize.height;this.realizeSize_(e,t),this.showZoomWarning_(1!=this.scrollPort_.characterSize.zoomFactor),r&&this.overlaySize(),this.restyleCursor_(),this.scheduleSyncCursorPosition_()}},o.Terminal.prototype.onCursorBlink_=function(){this.options_.cursorBlink?"false"==this.cursorNode_.getAttribute("focus")||"0"==this.cursorNode_.style.opacity?(this.cursorNode_.style.opacity="1",this.timeouts_.cursorBlink=setTimeout(this.myOnCursorBlink_,this.cursorBlinkCycle_[0])):(this.cursorNode_.style.opacity="0",this.timeouts_.cursorBlink=setTimeout(this.myOnCursorBlink_,this.cursorBlinkCycle_[1])):delete this.timeouts_.cursorBlink},o.Terminal.prototype.setScrollbarVisible=function(e){this.scrollPort_.setScrollbarVisible(e)},o.Terminal.prototype.setScrollWheelMoveMultipler=function(e){this.scrollPort_.setScrollWheelMoveMultipler(e)},o.Terminal.prototype.closeBellNotifications_=function(){this.bellNotificationList_.forEach(function(e){e.close()}),this.bellNotificationList_.length=0},i.rtdep("lib.encodeUTF8"),o.Terminal.IO=function(e){this.terminal_=e,this.previousIO_=null},o.Terminal.IO.prototype.showOverlay=function(e,t){this.terminal_.showOverlay(e,t)},o.Terminal.IO.prototype.createFrame=function(e,t){return new o.Frame(this.terminal_,e,t)},o.Terminal.IO.prototype.setTerminalProfile=function(e){this.terminal_.setProfile(e)},o.Terminal.IO.prototype.push=function(){var e=new o.Terminal.IO(this.terminal_);return e.keyboardCaptured_=this.keyboardCaptured_,e.columnCount=this.columnCount,e.rowCount=this.rowCount,e.previousIO_=this.terminal_.io,this.terminal_.io=e,e},o.Terminal.IO.prototype.pop=function(){this.terminal_.io=this.previousIO_},o.Terminal.IO.prototype.sendString=function(e){console.log("Unhandled sendString: "+e)},o.Terminal.IO.prototype.onVTKeystroke=function(e){console.log("Unobserverd VT keystroke: "+JSON.stringify(e))},o.Terminal.IO.prototype.onTerminalResize_=function(e,t){for(var r=this;r;)r.columnCount=e,r.rowCount=t,r=r.previousIO_;this.onTerminalResize(e,t)},o.Terminal.IO.prototype.onTerminalResize=function(e,t){},o.Terminal.IO.prototype.writeUTF8=function(e){if(this.terminal_.io!=this)throw"Attempt to print from inactive IO object.";this.terminal_.interpret(e)},o.Terminal.IO.prototype.writelnUTF8=function(e){if(this.terminal_.io!=this)throw"Attempt to print from inactive IO object.";this.terminal_.interpret(e+"\r\n")},o.Terminal.IO.prototype.print=o.Terminal.IO.prototype.writeUTF16=function(e){this.writeUTF8(i.encodeUTF8(e))},o.Terminal.IO.prototype.println=o.Terminal.IO.prototype.writelnUTF16=function(e){this.writelnUTF8(i.encodeUTF8(e))},i.rtdep("lib.colors"),o.TextAttributes=function(e){this.document_=e,this.foregroundSource=this.SRC_DEFAULT,this.backgroundSource=this.SRC_DEFAULT,this.foreground=this.DEFAULT_COLOR,this.background=this.DEFAULT_COLOR,this.defaultForeground="rgb(255, 255, 255)",this.defaultBackground="rgb(0, 0, 0)",this.bold=!1,this.faint=!1,this.italic=!1,this.blink=!1,this.underline=!1,this.strikethrough=!1,this.inverse=!1,this.invisible=!1,this.wcNode=!1,this.asciiNode=!0,this.tileData=null,this.colorPalette=null,this.resetColorPalette()},o.TextAttributes.prototype.enableBold=!0,o.TextAttributes.prototype.enableBoldAsBright=!0,o.TextAttributes.prototype.DEFAULT_COLOR=i.f.createEnum(""),o.TextAttributes.prototype.SRC_DEFAULT="default",o.TextAttributes.prototype.SRC_RGB="rgb",o.TextAttributes.prototype.setDocument=function(e){this.document_=e},o.TextAttributes.prototype.clone=function(){var e=new o.TextAttributes(null);for(var t in this)e[t]=this[t];return e.colorPalette=this.colorPalette.concat(),e},o.TextAttributes.prototype.reset=function(){this.foregroundSource=this.SRC_DEFAULT,this.backgroundSource=this.SRC_DEFAULT,this.foreground=this.DEFAULT_COLOR,this.background=this.DEFAULT_COLOR,this.bold=!1,this.faint=!1,this.italic=!1,this.blink=!1,this.underline=!1,this.strikethrough=!1,this.inverse=!1,this.invisible=!1,this.wcNode=!1,this.asciiNode=!0},o.TextAttributes.prototype.resetColorPalette=function(){this.colorPalette=i.colors.colorPalette.concat(),this.syncColors()},o.TextAttributes.prototype.isDefault=function(){return this.foregroundSource==this.SRC_DEFAULT&&this.backgroundSource==this.SRC_DEFAULT&&!this.bold&&!this.faint&&!this.italic&&!this.blink&&!this.underline&&!this.strikethrough&&!this.inverse&&!this.invisible&&!this.wcNode&&this.asciiNode&&null==this.tileData},o.TextAttributes.prototype.createContainer=function(e){if(this.isDefault())return this.document_.createTextNode(e);var t=this.document_.createElement("span"),r=t.style,i=[];this.foreground!=this.DEFAULT_COLOR&&(r.color=this.foreground),this.background!=this.DEFAULT_COLOR&&(r.backgroundColor=this.background),this.enableBold&&this.bold&&(r.fontWeight="bold"),this.faint&&(t.faint=!0),this.italic&&(r.fontStyle="italic"),this.blink&&(i.push("blink-node"),t.blinkNode=!0);var o="";return this.underline&&(o+=" underline",t.underline=!0),this.strikethrough&&(o+=" line-through",t.strikethrough=!0),o&&(r.textDecoration=o),this.wcNode&&(i.push("wc-node"),t.wcNode=!0,t.asciiNode=!1),null!=this.tileData&&(i.push("tile"),i.push("tile_"+this.tileData),t.tileNode=!0),e&&(t.textContent=e),i.length&&(t.className=i.join(" ")),t},o.TextAttributes.prototype.matchesContainer=function(e){if("string"==typeof e||3==e.nodeType)return this.isDefault();var t=e.style;return!(this.wcNode||e.wcNode||this.asciiNode!=this.asciiNode||null!=this.tileData||e.tileNode||this.foreground!=t.color||this.background!=t.backgroundColor||(this.enableBold&&this.bold)!=!!t.fontWeight||this.blink!=e.blinkNode||this.italic!=!!t.fontStyle||!!this.underline!=!!e.underline||!!this.strikethrough!=!!e.strikethrough)},o.TextAttributes.prototype.setDefaults=function(e,t){this.defaultForeground=e,this.defaultBackground=t,this.syncColors()},o.TextAttributes.prototype.syncColors=function(){var e=this.foregroundSource,t=this.backgroundSource,r=this.DEFAULT_COLOR,o=this.DEFAULT_COLOR;if(this.inverse&&(e=this.backgroundSource,t=this.foregroundSource,r=this.defaultBackground,o=this.defaultForeground),this.enableBoldAsBright&&this.bold&&e!=this.SRC_DEFAULT&&e!=this.SRC_RGB&&(e=function(e){return e<8?e+8:e}(e)),this.invisible&&(e=t,r=this.defaultBackground),e!=this.SRC_RGB&&(this.foreground=e==this.SRC_DEFAULT?r:this.colorPalette[e]),this.faint&&!this.invisible){var s=this.foreground==this.DEFAULT_COLOR?this.defaultForeground:this.foreground;this.foreground=i.colors.mix(s,"rgb(0, 0, 0)",.3333)}t!=this.SRC_RGB&&(this.background=t==this.SRC_DEFAULT?o:this.colorPalette[t])},o.TextAttributes.containersMatch=function(e,t){if("string"==typeof e)return o.TextAttributes.containerIsDefault(t);if(e.nodeType!=t.nodeType)return!1;if(3==e.nodeType)return!0;var r=e.style,i=t.style;return r.color==i.color&&r.backgroundColor==i.backgroundColor&&r.fontWeight==i.fontWeight&&r.fontStyle==i.fontStyle&&r.textDecoration==i.textDecoration},o.TextAttributes.containerIsDefault=function(e){return"string"==typeof e||3==e.nodeType},o.TextAttributes.nodeWidth=function(e){return e.asciiNode?e.textContent.length:i.wc.strWidth(e.textContent)},o.TextAttributes.nodeSubstr=function(e,t,r){return e.asciiNode?e.textContent.substr(t,r):i.wc.substr(e.textContent,t,r)},o.TextAttributes.nodeSubstring=function(e,t,r){return e.asciiNode?e.textContent.substring(t,r):i.wc.substring(e.textContent,t,r)},o.TextAttributes.splitWidecharString=function(e){for(var t=[],r=0,o=0,s=!0,n=0;n0?0:1),n|=r,t=""+String.fromCharCode(n)+o+s,e.preventDefault();break;case"mousedown":var n=Math.min(e.button,2)+32;n|=r,t=""+String.fromCharCode(n)+o+s;break;case"mouseup":t="#"+o+s;break;case"mousemove":this.mouseReport==this.MOUSE_REPORT_DRAG&&e.buttons&&(n=32,1&e.buttons?n+=0:4&e.buttons?n+=1:2&e.buttons?n+=2:n+=3,n+=32,n|=r,t=""+String.fromCharCode(n)+o+s);break;case"click":case"dblclick":break;default:console.error("Unknown mouse event: "+e.type,e)}t&&this.terminal.io.sendString(t)}},o.VT.prototype.interpret=function(e){for(this.parseState_.resetBuf(this.decode(e));!this.parseState_.isComplete();){var t=this.parseState_.func,r=this.parseState_.pos,e=this.parseState_.buf;if(this.parseState_.func.call(this,this.parseState_),this.parseState_.func==t&&this.parseState_.pos==r&&this.parseState_.buf==e)throw"Parser did not alter the state!"}},o.VT.prototype.decode=function(e){return"utf-8"==this.characterEncoding?this.decodeUTF8(e):e},o.VT.prototype.encodeUTF8=function(e){return i.encodeUTF8(e)},o.VT.prototype.decodeUTF8=function(e){return this.utf8Decoder_.decode(e)},o.VT.prototype.setEncoding=function(e){switch(e){default:console.warn('Invalid value for "terminal-encoding": '+e);case"iso-2022":this.codingSystemUtf8_=!1,this.codingSystemLocked_=!1;break;case"utf-8-locked":this.codingSystemUtf8_=!0,this.codingSystemLocked_=!0;break;case"utf-8":this.codingSystemUtf8_=!0,this.codingSystemLocked_=!1}this.updateEncodingState_()},o.VT.prototype.updateEncodingState_=function(){var e=Object.keys(o.VT.CC1).filter(e=>!this.codingSystemUtf8_||e.charCodeAt()<128).map(e=>"\\x"+i.f.zpad(e.charCodeAt().toString(16),2)).join("");this.cc1Pattern_=new RegExp(`[${e}]`)},o.VT.prototype.parseUnknown_=function(e){function t(e){!r.codingSystemUtf8_&&r[r.GL].GL&&(e=r[r.GL].GL(e)),r.terminal.print(e)}var r=this,i=e.peekRemainingBuf(),o=i.search(this.cc1Pattern_);return 0==o?(this.dispatch("CC1",i.substr(0,1),e),void e.advance(1)):-1==o?(t(i),void e.reset()):(t(i.substr(0,o)),this.dispatch("CC1",i.substr(o,1),e),void e.advance(o+1))},o.VT.prototype.parseCSI_=function(e){var t=e.peekChar(),r=e.args;t>="@"&&t<="~"?(this.dispatch("CSI",this.leadingModifier_+this.trailingModifier_+t,e),e.resetParseFunction()):";"==t?this.trailingModifier_?e.resetParseFunction():(r.length||r.push(""),r.push("")):t>="0"&&t<="9"?this.trailingModifier_?e.resetParseFunction():r.length?r[r.length-1]+=t:r[0]=t:t>=" "&&t<="?"&&":"!=t?r.length?this.trailingModifier_+=t:this.leadingModifier_+=t:this.cc1Pattern_.test(t)?this.dispatch("CC1",t,e):e.resetParseFunction(),e.advance(1)},o.VT.prototype.parseUntilStringTerminator_=function(e){var t=e.peekRemainingBuf(),r=t.search(/(\x1b\\|\x07)/),i=e.args;if(i.length||(i[0]="",i[1]=new Date),-1==r){i[0]+=t;var o;return i[0].length>this.maxStringSequence&&(o="too long: "+i[0].length),-1!=i[0].indexOf("")&&(o="embedded escape: "+i[0].indexOf("")),new Date-i[1]>this.oscTimeLimit_&&(o="timeout expired: "+new Date-i[1]),o?(console.log("parseUntilStringTerminator_: aborting: "+o,i[0]),e.reset(i[0]),!1):(e.advance(t.length),!0)}return i[0].length+r>this.maxStringSequence?(e.reset(i[0]+t),!1):(i[0]+=t.substr(0,r),e.resetParseFunction(),e.advance(r+(""==t.substr(r,1)?2:1)),!0)},o.VT.prototype.dispatch=function(e,t,r){var i=o.VT[e][t];i?i!=o.VT.ignore?"CC1"==e&&t>""&&!this.enable8BitControl?console.warn("Ignoring 8-bit control code: 0x"+t.charCodeAt(0).toString(16)):i.apply(this,[r,t]):this.warnUnimplemented&&console.warn("Ignored "+e+" code: "+JSON.stringify(t)):this.warnUnimplemented&&console.warn("Unknown "+e+" code: "+JSON.stringify(t))},o.VT.prototype.setANSIMode=function(e,t){4==e?this.terminal.setInsertMode(t):20==e?this.terminal.setAutoCarriageReturn(t):this.warnUnimplemented&&console.warn("Unimplemented ANSI Mode: "+e)},o.VT.prototype.setDECMode=function(e,t){switch(parseInt(e,10)){case 1:this.terminal.keyboard.applicationCursor=t;break;case 3:this.allowColumnWidthChanges_&&(this.terminal.setWidth(t?132:80),this.terminal.clearHome(),this.terminal.setVTScrollRegion(null,null));break;case 5:this.terminal.setReverseVideo(t);break;case 6:this.terminal.setOriginMode(t);break;case 7:this.terminal.setWraparound(t);break;case 12:this.enableDec12&&this.terminal.setCursorBlink(t);break;case 25:this.terminal.setCursorVisible(t);break;case 30:this.terminal.setScrollbarVisible(t);break;case 40:this.terminal.allowColumnWidthChanges_=t;break;case 45:this.terminal.setReverseWraparound(t);break;case 67:this.terminal.keyboard.backspaceSendsBackspace=t;break;case 1e3:this.mouseReport=t?this.MOUSE_REPORT_CLICK:this.MOUSE_REPORT_DISABLED,this.terminal.syncMouseStyle();break;case 1002:this.mouseReport=t?this.MOUSE_REPORT_DRAG:this.MOUSE_REPORT_DISABLED,this.terminal.syncMouseStyle();break;case 1010:this.terminal.scrollOnOutput=t;break;case 1011:this.terminal.scrollOnKeystroke=t;break;case 1036:this.terminal.keyboard.metaSendsEscape=t;break;case 1039:t?this.terminal.keyboard.previousAltSendsWhat_||(this.terminal.keyboard.previousAltSendsWhat_=this.terminal.keyboard.altSendsWhat,this.terminal.keyboard.altSendsWhat="escape"):this.terminal.keyboard.previousAltSendsWhat_&&(this.terminal.keyboard.altSendsWhat=this.terminal.keyboard.previousAltSendsWhat_,this.terminal.keyboard.previousAltSendsWhat_=null);break;case 47:case 1047:this.terminal.setAlternateMode(t);break;case 1048:this.savedState_.save();case 1049:t?(this.savedState_.save(),this.terminal.setAlternateMode(t),this.terminal.clear()):(this.terminal.setAlternateMode(t),this.savedState_.restore());break;case 2004:this.terminal.setBracketedPaste(t);break;default:this.warnUnimplemented&&console.warn("Unimplemented DEC Private Mode: "+e)}},o.VT.ignore=function(){},o.VT.CC1={},o.VT.ESC={},o.VT.CSI={},o.VT.OSC={},o.VT.VT52={},o.VT.CC1["\0"]=o.VT.ignore,o.VT.CC1[""]=o.VT.ignore,o.VT.CC1[""]=function(){this.terminal.ringBell()},o.VT.CC1["\b"]=function(){this.terminal.cursorLeft(1)},o.VT.CC1["\t"]=function(){this.terminal.forwardTabStop()},o.VT.CC1["\n"]=function(){this.terminal.formFeed()},o.VT.CC1["\v"]=o.VT.CC1["\n"],o.VT.CC1["\f"]=o.VT.CC1["\n"],o.VT.CC1["\r"]=function(){this.terminal.setCursorColumn(0)},o.VT.CC1[""]=function(){this.GL="G1"},o.VT.CC1[""]=function(){this.GL="G0"},o.VT.CC1[""]=o.VT.ignore,o.VT.CC1[""]=o.VT.ignore,o.VT.CC1[""]=function(e){"G1"==this.GL&&(this.GL="G0"),e.resetParseFunction(),this.terminal.print("?")},o.VT.CC1[""]=o.VT.CC1[""],o.VT.CC1[""]=function(e){function t(e){var r=e.consumeChar();""!=r&&(this.dispatch("ESC",r,e),e.func==t&&e.resetParseFunction())}e.func=t},o.VT.CC1[""]=o.VT.ignore,o.VT.CC1["„"]=o.VT.ESC.D=function(){this.terminal.lineFeed()},o.VT.CC1["…"]=o.VT.ESC.E=function(){this.terminal.setCursorColumn(0),this.terminal.cursorDown(1)},o.VT.CC1["ˆ"]=o.VT.ESC.H=function(){this.terminal.setTabStop(this.terminal.getCursorColumn())},o.VT.CC1[""]=o.VT.ESC.M=function(){this.terminal.reverseLineFeed()},o.VT.CC1["Ž"]=o.VT.ESC.N=o.VT.ignore,o.VT.CC1[""]=o.VT.ESC.O=o.VT.ignore,o.VT.CC1[""]=o.VT.ESC.P=function(e){e.resetArguments(),e.func=this.parseUntilStringTerminator_},o.VT.CC1["–"]=o.VT.ESC.V=o.VT.ignore,o.VT.CC1["—"]=o.VT.ESC.W=o.VT.ignore,o.VT.CC1["˜"]=o.VT.ESC.X=o.VT.ignore,o.VT.CC1["š"]=o.VT.ESC.Z=function(){this.terminal.io.sendString("[?1;2c")},o.VT.CC1["›"]=o.VT.ESC["["]=function(e){e.resetArguments(),this.leadingModifier_="",this.trailingModifier_="",e.func=this.parseCSI_},o.VT.CC1["œ"]=o.VT.ESC["\\"]=o.VT.ignore,o.VT.CC1[""]=o.VT.ESC["]"]=function(e){function t(e){if(this.parseUntilStringTerminator_(e)&&e.func!=t){var r=e.args[0].match(/^(\d+);(.*)$/);r?(e.args[0]=r[2],this.dispatch("OSC",r[1],e)):console.warn("Invalid OSC: "+JSON.stringify(e.args[0]))}}e.resetArguments(),e.func=t},o.VT.CC1["ž"]=o.VT.ESC["^"]=function(e){e.resetArguments(),e.func=this.parseUntilStringTerminator_},o.VT.CC1["Ÿ"]=o.VT.ESC._=function(e){e.resetArguments(),e.func=this.parseUntilStringTerminator_},o.VT.ESC[" "]=function(e){e.func=function(e){var t=e.consumeChar();this.warnUnimplemented&&console.warn("Unimplemented sequence: ESC 0x20 "+t),e.resetParseFunction()}},o.VT.ESC["#"]=function(e){e.func=function(e){"8"==e.consumeChar()&&this.terminal.fill("E"),e.resetParseFunction()}},o.VT.ESC["%"]=function(e){e.func=function(e){var t=e.consumeChar();if(this.codingSystemLocked_)return"/"==t&&e.consumeChar(),void e.resetParseFunction();switch(t){case"@":this.setEncoding("iso-2022");break;case"G":this.setEncoding("utf-8");break;case"/":switch(t=e.consumeChar()){case"G":case"H":case"I":this.setEncoding("utf-8-locked");break;default:this.warnUnimplemented&&console.warn("Unknown ESC % / argument: "+JSON.stringify(t))}break;default:this.warnUnimplemented&&console.warn("Unknown ESC % argument: "+JSON.stringify(t))}e.resetParseFunction()}},o.VT.ESC["("]=o.VT.ESC[")"]=o.VT.ESC["*"]=o.VT.ESC["+"]=o.VT.ESC["-"]=o.VT.ESC["."]=o.VT.ESC["/"]=function(e,t){e.func=function(e){var r=e.consumeChar();if(""==r)return e.resetParseFunction(),void e.func();var i=this.characterMaps.getMap(r);void 0!==i?"("==t?this.G0=i:")"==t||"-"==t?this.G1=i:"*"==t||"."==t?this.G2=i:"+"!=t&&"/"!=t||(this.G3=i):this.warnUnimplemented&&console.log('Invalid character set for "'+t+'": '+r),e.resetParseFunction()}},o.VT.ESC[6]=o.VT.ignore,o.VT.ESC[7]=function(){this.savedState_.save()},o.VT.ESC[8]=function(){this.savedState_.restore()},o.VT.ESC[9]=o.VT.ignore,o.VT.ESC["="]=function(){this.terminal.keyboard.applicationKeypad=!0},o.VT.ESC[">"]=function(){this.terminal.keyboard.applicationKeypad=!1},o.VT.ESC.F=o.VT.ignore,o.VT.ESC.c=function(){this.reset(),this.terminal.reset()},o.VT.ESC.l=o.VT.ESC.m=o.VT.ignore,o.VT.ESC.n=function(){this.GL="G2"},o.VT.ESC.o=function(){this.GL="G3"},o.VT.ESC["|"]=function(){this.GR="G3"},o.VT.ESC["}"]=function(){this.GR="G2"},o.VT.ESC["~"]=function(){this.GR="G1"},o.VT.OSC[0]=function(e){this.terminal.setWindowTitle(e.args[0])},o.VT.OSC[2]=o.VT.OSC[0],o.VT.OSC[4]=function(e){for(var t=e.args[0].split(";"),r=parseInt(t.length/2),o=this.terminal.getTextAttributes().colorPalette,s=[],n=0;n=o.length||("?"!=l?(l=i.colors.x11ToCSS(l))&&(o[a]=l):(l=i.colors.rgbToX11(o[a]))&&s.push(a+";"+l))}s.length&&this.terminal.io.sendString("]4;"+s.join(";")+"")},o.VT.OSC[9]=function(e){o.notify({body:e.args[0]})},o.VT.OSC[10]=function(e){var t=e.args[0].split(";");if(t){var r=i.colors.x11ToCSS(t.shift());r&&this.terminal.setForegroundColor(r),t.length>0&&(e.args[0]=t.join(";"),o.VT.OSC[11].apply(this,[e]))}},o.VT.OSC[11]=function(e){var t=e.args[0].split(";");if(t){var r=i.colors.x11ToCSS(t.shift());r&&this.terminal.setBackgroundColor(r)}},o.VT.OSC[50]=function(e){var t=e.args[0].match(/CursorShape=(.)/i);if(t)switch(t[1]){case"1":this.terminal.setCursorShape(o.Terminal.cursorShape.BEAM);break;case"2":this.terminal.setCursorShape(o.Terminal.cursorShape.UNDERLINE);break;default:this.terminal.setCursorShape(o.Terminal.cursorShape.BLOCK)}else console.warn("Could not parse OSC 50 args: "+e.args[0])},o.VT.OSC[52]=function(e){var t=e.args[0].match(/^[cps01234567]*;(.*)/);if(t){var r=window.atob(t[1]);r&&this.terminal.copyStringToClipboard(this.decode(r))}},o.VT.OSC[777]=function(e){var t;switch(e.args[0].split(";",1)[0]){case"notify":var r,i;(t=e.args[0].match(/^[^;]+;([^;]*)(;([\s\S]*))?$/))&&(r=t[1],i=t[3]),o.notify({title:r,body:i});break;default:console.warn("Unknown urxvt module: "+e.args[0])}},o.VT.CSI["@"]=function(e){this.terminal.insertSpace(e.iarg(0,1))},o.VT.CSI.A=function(e){this.terminal.cursorUp(e.iarg(0,1))},o.VT.CSI.B=function(e){this.terminal.cursorDown(e.iarg(0,1))},o.VT.CSI.C=function(e){this.terminal.cursorRight(e.iarg(0,1))},o.VT.CSI.D=function(e){this.terminal.cursorLeft(e.iarg(0,1))},o.VT.CSI.E=function(e){this.terminal.cursorDown(e.iarg(0,1)),this.terminal.setCursorColumn(0)},o.VT.CSI.F=function(e){this.terminal.cursorUp(e.iarg(0,1)),this.terminal.setCursorColumn(0)},o.VT.CSI.G=function(e){this.terminal.setCursorColumn(e.iarg(0,1)-1)},o.VT.CSI.H=function(e){this.terminal.setCursorPosition(e.iarg(0,1)-1,e.iarg(1,1)-1)},o.VT.CSI.I=function(e){var t=e.iarg(0,1);t=i.f.clamp(t,1,this.terminal.screenSize.width);for(var r=0;rT"]=o.VT.ignore,o.VT.CSI.X=function(e){this.terminal.eraseToRight(e.iarg(0,1))},o.VT.CSI.Z=function(e){var t=e.iarg(0,1);t=i.f.clamp(t,1,this.terminal.screenSize.width);for(var r=0;rc"]=function(e){this.terminal.io.sendString("[>0;256;0c")},o.VT.CSI.d=function(e){this.terminal.setAbsoluteCursorRow(e.iarg(0,1)-1)},o.VT.CSI.f=o.VT.CSI.H,o.VT.CSI.g=function(e){e.args[0]&&0!=e.args[0]?3==e.args[0]&&this.terminal.clearAllTabStops():this.terminal.clearTabStopAtCursor(!1)},o.VT.CSI.h=function(e){for(var t=0;t=i.colorPalette.length)continue;i.foregroundSource=a}else if(39==s)i.foregroundSource=i.SRC_DEFAULT;else if(s<48)i.backgroundSource=s-40;else if(48==s){var n=r(o);if(null!=n)i.backgroundSource=i.SRC_RGB,i.background=n,o+=5;else{var a=t(o);if(null==a)break;if(o+=2,a>=i.colorPalette.length)continue;i.backgroundSource=a}}else i.backgroundSource=i.SRC_DEFAULT;else s>=90&&s<=97?i.foregroundSource=s-90+8:s>=100&&s<=107&&(i.backgroundSource=s-100+8)}i.setDefaults(this.terminal.getForegroundColor(),this.terminal.getBackgroundColor())}else i.reset()},o.VT.CSI[">m"]=o.VT.ignore,o.VT.CSI.n=function(e){if(5==e.args[0])this.terminal.io.sendString("0n");else if(6==e.args[0]){var t=this.terminal.getCursorRow()+1,r=this.terminal.getCursorColumn()+1;this.terminal.io.sendString("["+t+";"+r+"R")}},o.VT.CSI[">n"]=o.VT.ignore,o.VT.CSI["?n"]=function(e){if(6==e.args[0]){var t=this.terminal.getCursorRow()+1,r=this.terminal.getCursorColumn()+1;this.terminal.io.sendString("["+t+";"+r+"R")}else 15==e.args[0]?this.terminal.io.sendString("[?11n"):25==e.args[0]?this.terminal.io.sendString("[?21n"):26==e.args[0]?this.terminal.io.sendString("[?12;1;0;0n"):53==e.args[0]&&this.terminal.io.sendString("[?50n")},o.VT.CSI[">p"]=o.VT.ignore,o.VT.CSI["!p"]=function(){this.reset(),this.terminal.softReset()},o.VT.CSI.$p=o.VT.ignore,o.VT.CSI["?$p"]=o.VT.ignore,o.VT.CSI['"p']=o.VT.ignore,o.VT.CSI.q=o.VT.ignore,o.VT.CSI[" q"]=function(e){var t=e.args[0];0==t||1==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.BLOCK),this.terminal.setCursorBlink(!0)):2==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.BLOCK),this.terminal.setCursorBlink(!1)):3==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.UNDERLINE),this.terminal.setCursorBlink(!0)):4==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.UNDERLINE),this.terminal.setCursorBlink(!1)):5==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.BEAM),this.terminal.setCursorBlink(!0)):6==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.BEAM),this.terminal.setCursorBlink(!1)):console.warn("Unknown cursor style: "+t)},o.VT.CSI['"q']=o.VT.ignore,o.VT.CSI.r=function(e){var t=e.args,r=t[0]?parseInt(t[0],10)-1:null,i=t[1]?parseInt(t[1],10)-1:null;this.terminal.setVTScrollRegion(r,i),this.terminal.setCursorPosition(0,0)},o.VT.CSI["?r"]=o.VT.ignore,o.VT.CSI.$r=o.VT.ignore,o.VT.CSI.s=function(){this.savedState_.save()},o.VT.CSI["?s"]=o.VT.ignore,o.VT.CSI.t=o.VT.ignore,o.VT.CSI.$t=o.VT.ignore,o.VT.CSI[">t"]=o.VT.ignore,o.VT.CSI[" t"]=o.VT.ignore,o.VT.CSI.u=function(){this.savedState_.restore()},o.VT.CSI[" u"]=o.VT.ignore,o.VT.CSI.$v=o.VT.ignore,o.VT.CSI["'w"]=o.VT.ignore,o.VT.CSI.x=o.VT.ignore,o.VT.CSI["*x"]=o.VT.ignore,o.VT.CSI.$x=o.VT.ignore,o.VT.CSI.z=function(e){if(!(e.args.length<1)){var t=e.args[0];if(0==t){if(e.args.length<2)return;this.terminal.getTextAttributes().tileData=e.args[1]}else 1==t&&(this.terminal.getTextAttributes().tileData=null)}},o.VT.CSI["'z"]=o.VT.ignore,o.VT.CSI.$z=o.VT.ignore,o.VT.CSI["'{"]=o.VT.ignore,o.VT.CSI["'|"]=o.VT.ignore,o.VT.CSI["'}"]=o.VT.ignore,o.VT.CSI["'~"]=o.VT.ignore,i.rtdep("lib.f"),o.VT.CharacterMap=function(e,t){this.description=e,this.GL=null,this.glmapBase_=t,this.sync_()},o.VT.CharacterMap.prototype.sync_=function(e){if(!this.glmapBase_&&!e)return this.GL=null,delete this.glmap_,void delete this.glre_;this.glmap_=e?Object.assign({},this.glmapBase_,e):this.glmapBase_;var t=Object.keys(this.glmap_).map(e=>"\\x"+i.f.zpad(e.charCodeAt(0).toString(16)));this.glre_=new RegExp("["+t.join("")+"]","g"),this.GL=(e=>e.replace(this.glre_,e=>this.glmap_[e]))},o.VT.CharacterMap.prototype.reset=function(){this.glmap_!==this.glmapBase_&&this.sync_()},o.VT.CharacterMap.prototype.setOverrides=function(e){this.sync_(e)},o.VT.CharacterMap.prototype.clone=function(){var e=new o.VT.CharacterMap(this.description,this.glmapBase_);return this.glmap_!==this.glmapBase_&&e.setOverrides(this.glmap_),e},o.VT.CharacterMaps=function(){this.maps_=o.VT.CharacterMaps.DefaultMaps,this.mapsBase_=this.maps_},o.VT.CharacterMaps.prototype.getMap=function(e){return this.maps_.hasOwnProperty(e)?this.maps_[e]:void 0},o.VT.CharacterMaps.prototype.addMap=function(e,t){this.maps_===this.mapsBase_&&(this.maps_=Object.assign({},this.mapsBase_)),this.maps_[e]=t},o.VT.CharacterMaps.prototype.reset=function(){this.maps_!==o.VT.CharacterMaps.DefaultMaps&&(this.maps_=o.VT.CharacterMaps.DefaultMaps)},o.VT.CharacterMaps.prototype.setOverrides=function(e){this.maps_===this.mapsBase_&&(this.maps_=Object.assign({},this.mapsBase_));for(var t in e){var r=this.getMap(t);void 0!==r?(this.maps_[t]=r.clone(),this.maps_[t].setOverrides(e[t])):this.addMap(t,new o.VT.CharacterMap("user "+t,e[t]))}},o.VT.CharacterMaps.DefaultMaps={},o.VT.CharacterMaps.DefaultMaps[0]=new o.VT.CharacterMap("graphic",{"`":"◆",a:"▒",b:"␉",c:"␌",d:"␍",e:"␊",f:"°",g:"±",h:"␤",i:"␋",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"}),o.VT.CharacterMaps.DefaultMaps.A=new o.VT.CharacterMap("british",{"#":"£"}),o.VT.CharacterMaps.DefaultMaps.B=new o.VT.CharacterMap("us",null),o.VT.CharacterMaps.DefaultMaps[4]=new o.VT.CharacterMap("dutch",{"#":"£","@":"¾","[":"IJ","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"}),o.VT.CharacterMaps.DefaultMaps.C=o.VT.CharacterMaps.DefaultMaps[5]=new o.VT.CharacterMap("finnish",{"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"}),o.VT.CharacterMaps.DefaultMaps.R=new o.VT.CharacterMap("french",{"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"}),o.VT.CharacterMaps.DefaultMaps.Q=new o.VT.CharacterMap("french canadian",{"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"}),o.VT.CharacterMaps.DefaultMaps.K=new o.VT.CharacterMap("german",{"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"}),o.VT.CharacterMaps.DefaultMaps.Y=new o.VT.CharacterMap("italian",{"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"}),o.VT.CharacterMaps.DefaultMaps.E=o.VT.CharacterMaps.DefaultMaps[6]=new o.VT.CharacterMap("norwegian/danish",{"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"}),o.VT.CharacterMaps.DefaultMaps.Z=new o.VT.CharacterMap("spanish",{"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"}),o.VT.CharacterMaps.DefaultMaps[7]=o.VT.CharacterMaps.DefaultMaps.H=new o.VT.CharacterMap("swedish",{"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"}),o.VT.CharacterMaps.DefaultMaps["="]=new o.VT.CharacterMap("swiss",{"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}),i.resource.add("hterm/audio/bell","audio/ogg;base64","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"),i.resource.add("hterm/images/icon-96","image/png;base64","iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAuIwAALiMBeKU/dgAAFKhJREFUeNrtXXlsXMd5/30z8649uDzEmxRFibIsOXZ8VInTJFYSW3actE1ctWkctEF6I0VRFEWAoihQoAjQFmiBogWaIEADFCmQXklto04TO0ndWI4bxZalWHJinTYtkRJFkctzl9zd977+8c49+UjuipbCD1y+9+ae75vvmJlv3gO2YRu2YRu2YRu2YUuAtroBN3nfeKsaSXWurarvRvUrTnlccV/5a3lDReRKFdc4Za6nzvW2b7OIpwZh7N37iHYiPztyvy4iqA00Tng/WXH1f3GQsFki0Qbz+cAV12jeRkTwwUd2yfsVI89OjbLrwnoJILw8EoAOIAFgLwDTCxcAJBEJIiIAgoiICAIgIgIBJGpdPRCRq3sPCBAJAii8QgAk/PIFkSBBQvh3QRkQXtECBKpxH9br5hMikhcg4QV4dYkgARFBSkmlUmnp7LmLX8rl8q95OPKJ0DQCkPeTEcQrAD179+7+7LsP3vtJw9A1ZvbwFfQM/r1/AyD64KLBv5JHIaIwIpI5GIbevd82r0I3OMjvJfOo5ffCqw1EhIRlQQi3a37p0atfTVB22PhIuHt95tnnBr75zHN/AGASoYjyxVVTCOCPfOWN9sGfue+df/L4r3z8MSGUOv3aWYDIq43BEXXEQRPCQK5qFleFMdduOwMV3WKUBXFVyVXhtm3jrjtvw13vuL1uPXGAAUghkGlLPXJ9ZvZzL738oz8HsOhFF2u3aH0E8JEvAWhe+n2PHD70Z7/xmccfLBSK9M1nX0AqnYFSKiB7fIiOzg3k21BeYHW1gMkr1/DBB+6HkGLTxmRfbxf9+qc/8WszM9lzF99468twxZCAq5wbQiMCREWPBkDXde3eI489+he/+1u/et/c3AK+/uSzyLTvgK7rm+tBE4CZA1HRaFT7oqNQKCCdsqBp61GD9eHBD77XunJ16o/+6q+/cLJYLP2fhzfGGkRYiwBRK2fnL/3iRz7/uT/8nfuuz2Txla8+hXRbJ6QUKBaLuJmgVLJRKuShlIBpatiEFApACIFHH/lA//NHj33qe0ePvQJXEa/JnHEIoABYd925/zOPf+JjBxMJC//yxX+GYaZgGAZse00ue1uByyWMQrGEldVVKCWbQgAA6OnegQP7997zvaPH2gGsIpQidWuoRwA/o2/bDz70off+nFIa/fczz2Pq2hzSbRksLCxsNT43BI7jYCW/ihd/cBKWZTZhQcFV9qMjQ0gmEwm4hkqsOVEjDogq37bOjvaElBKLizmYVgKWZW01HjeOLGaAbUipoJTWHAKwa4KYpmHCJUB0lQCoU0scK0gCMJRSqqOjHel0EqZpIpFIbDUeNwwOM2y7gO4dnWhrSzVFBDEzMpkULNM04BIgFsS1ggxNUzKVSiCRsEBEUEoFiRq2v5HNXjMd18pSHVeZnuuniZaopIIQBAIhnUqgvb1tU3OBKFiWCdMydABWBH+bIoCvA3RNU9KyDOiahG2XAAAzszO4NHkZINcKALuddRHi3VWFReLcWy8dhxO5aFpvkhamD5HFwQQuStgwLPpsOza45GD/yD4MDw2jVCrCMHSkUwmws3kCMADD0GCZpialMG3bia4trVsJ+xkJAKSUStM0oWsSQrgTGdu2MXllEmezF/HRhz+C4b6hyEgrnyjVLLzhcho1iFsDiGomOzt+Ds/8z7PIzmfR39eP1dVVSOEijR0nRsFrg1ISpmkoQ9cTufxKrBbHmoUoJZWmlPDXRZgdMDNsx8HuXbtx3zvvhRQKTdFmLQACoT2dwY9efRWlvA1m1xJy2IEggkPrnUvXB9M0lGkaiVx+xR/ADQuPRQAppaY0JfzOBB0joFAs4Oyb59E0Y7pF4DDDdmw47LgygQHbbs7Ij4JpGMIwjGRFcF0xFJcDdE0pUb3YQ1hYWsDFSxff7vgHMyO3kkMGiaAPzScAwzB0YVlmAuHo3zQHkKaUppTHAUQBLQnAYm4J41feCldAGeHe2FaCq9fdXQMP8qt5sB6OlGbP4pkBwzBgGHoKMdcIG82Ew0RK6UqTxHAJEHSBCLmVHCavXwUcwGpXMJIS2YnVhrq01cAOQxkC7YMG5i6vwi65LV4trIK10GJyHLvpTTR0DZZlJtEEMxR+IVJJTSlFAFdZL47joFgswrEZ3X06Dv3eAH787Vm8/t0s8nMld9PjBhHCN1G7dlm490g3rIzCt/5yHIWiA5dxGQ5HOcBpatuYGZquwTSNTXMAogVoSukuAXwlzFUpSRCyl1cx+VoOBz/Zi93vyeDE16bx1iuLsIsOSLSWCuwwEh0a9h/uxDs+2gWnxDj+79dQKjhlg4bZl/vkiaDmtkvXNFimmURMJ4VYOkBpSldSug91TDYiIDdXwtEvTeDNlxZw3y/34PDnduLCi/M4+eQ0Zt5cCdI1G/FKFxg5mME9R7rRMWTi/AtzOPnENLKXV2tyrA+lFqzkKk3BNI0k3BWE5swDXA7wlm0bFEkEODbjzWPzmDqTw4HDnbjz57swdHcKp56+jte/k0VurtRUInSPJXD3Y90YfXcbZt7I49t/M45LJ5ZgF7lMAbsN9BfiXE5uthXEzFBK+TpAhrVunAAEeEp4DQ4oyyQI+fkSjn/tGsZfWcA9j3Xjvk/0Yte72vD8FyZw/Y2VauRsAA483ImDn+oF28DL/zqFn3wni/xcESSoTvkExxdBBNilFnCAlLBMM+Hhdk3HtThoIE1TulTuDlscAgAuNxCA6XN5HP+Pa8heWsHAgSQyA0ZzFr8IGHhHCukeHedfmMOpb8wgly021jXkTsjYm9C0YjNJSgFvHuAP7qbMA3TpcwAo1ooDOwwjKTH2QDvu/lg3lCnwg69cxcSpJc8dZJPgACeeuAYhgf0Pd6JjyMArX5/GlZ8sg23U5TCf+ESt0QFCCFiWYcF131kT4lhBpDSXAMy+Eq1PAXYAIYHBu9O490g3evclMf7yAk785zSuX8i7Y68ZOoCA6xdW8N2/u4TRd2dw75FuPPqnu3Dmu7N49RszWLiyGvgGRfM47HjNdzmg6U6kRLAs02wGAXwieBwgggoaMUD7oI67fmEHbjvUgfmrBTz395fw5ksLKK26pmgzO0wCsFcZ576XxeTpZdzxaCfu+HAXRg624eST0zh/dB6FXDjK3TUgVwQREUot0AFCEEx3U8ZoBgEAVwdoUnheFnWGLztA1y4Tj/zxCIyUwI+emsaPn5nF8qyvFFs0D/C805Zni3jpq1MY/+EC7jnSg/f+5gB69yXw/BcnYBfDIeMrYaLW6ACAYFmmjpi7YqpmCRWMq2maLgIOqFcUQ7MErp5ZxqmnZ0Jx0+IJWNBIr5qpszl852/fwp73ZNC3PwmhKCQAUWCGAu5MuNlriEQEy6zaFauLhHg6QClNejte9YQICcL1i3k8/4UJd/bZZHETGwGCYK8yzjw3h4vHFmAXym19dxfNE0EtcqkxTVPTdd0qFApRPNaEtcxQAiA0TelCeKvRDTSoXWTYJb5ho75Rq0kApbwDrphrOREd0Ip5AOBuyhiGHsttpB4BohiUmqZpgel4Mx1qournYCbcUg4wpLccUasVZVCLAJUZhKaUTp5hvTWCpXnAcEIOsG00fxuVYRq6MA3dX5JuCGt5xhEAqWkq4IC4M+GYbV0/bLJ6h92dmlaJIG9ThkyzbE9gQ0rYB6lpSgUc0CT8C0nQzPUvCDk2o7iysUU0gmsFcSCCnJZspeq6BtPUk3HSxrGChKZpmu/U2gwKsMPo2Z/E+397AELFL48EMHFqGd//x0k49gYwR+VWUGvmAQxD12GZZgox1tpiuSa6HOCJIJ8umxo5hELOxvSFPEiuIxcR5idXNzVqqwnQXBZghr8r5m/KbHgxzs+oNE1T/sBvhggiAcyOr+B//+FyUzsfD0ERM7RFIkjTgj2BNTmgnhUUXcd2N4SpBUp4C6DVHABmaEr5+8L+rtiGlTADUK4I8kJ8XeDDes/KAw37zPUSrYUn5tpJOJqE4ThOSACn+RzAAKSU/p7AmgI2phWkyeB4ZqQiAsFZtkFOZI+Ao7SgytVgeJoQVBkf+HRGrxVhVBFGqHj24imSP3psFUAylYCSEsWSDdu2y86WNQukuytmIdwVq3tSJo5zrtI0JUMjiAJzbrB/AA8YRnCWNnLON3JuFyEiIj8AZen9Vc0wL0JkRtMgGlfjDHBwDSLKzwp7dRZL+aYivZwAApZlWnAPt0TxuSYBKocCA1BKUxIgMBy0taUAOCiVikilUkin0/FbFnEz3xxQLGMg6rpemX9paQm37x2DlLLMU6IZIITwOUCraEAVERotR4ccoDQJAI7DGBrsx8MP3o+nv/V9dHf3BAc1IjguO00d+OpHffYrw5ir09WMi5wd4PC8QLDHXHGmIHr1G8dgsOOgoyOJB973LjR/KSLYFYtuymxYCZOUUtM8z2i/w48cPgTTMPDD46eQX1mG768Smqq+qAFEROwIQSASZVdBAiQIQggI8q7+c/AjSCEgZBgm/TgZ3stovKy4RsqzLBMjOweRSiXhNOFwRi0CmJbhE2BTm/KspNQ0pcrMVaUkDj/0fnzg0P0olkqhs+4a71xoeA0LKCurIrhmf2rJzca9cl0Um3U0qZoAqNwV25AS9pEdnA2IguM4kFLC95bYLPiiJYIjtEI83BggWKapCSEsx3E2txinlPJOx9z8k7AbBUTBSRkrl8tv+GUdDIClksphFsvL+ZacKLn1gL3V0DICrOuQXvSohUNE2rnz41QqcdPNtVsRGEBbOgnbdkjTVKUZWgWqRn4fHABOoVBcNE2ztHPnoL7NAfHANHS8dPzE0sxMdsILqvsGrXocEGRYXFx67fUz5y729e7Yw4ADjumb2AJoWq2xCtrwdh0TQRz74YmLpZI9HitHjTCCa0KZANKGoX88lUo+pCmlhBASYMmAjE76Ea4CoNyerDYuUZHRXwiq2Pan8r/yNkcMAiqvv+pwFFWmpQqbl6isaqoVVtajsJfB0piXwCEidhyHp6/PHpudnfs8gDm4b07xX+xXBnEW43jv2Ojo73/20x+ezc47Fy6MN/IOXZ+ZxBvIE6eeCovbn0FXzjXqt4urEsVlGsPQ8NFHP0RP/dez4sv/9G8ZuK8wq2uKxtkRs+44cNs7e3t61NEXXwVIVUye1o+f+nnXsT1ZlrwiH9dKjLp+TZVhoRNy/Jb5PrPjlyfAzDiwf28vgD4AV+AuS5dq5au3FuS/I0IB6B3bM7L7wsW3IJSBjvb2ls0gb3YgIiym0hi/NImB/p5Mpi09Or+weBqu+CliHYtx/ruCpGWZu3cOD/Sceu08ioUiFhcX12rHTy0QEXTdwKVLV7B/326tt3fHnvmFRQMu8v03aAERIjTyC5IAtJGdg/s7OjLmbHYBXV29TVt6uFVB13VMXZtFwrIwMNA3dvbcGxaAFYQb9LE5QAFI7Nk9cgdAyOeL2CFlS8XPrbDUoZTC4lIexVIJw0P9IwDScBVxzVOT9QggvbiuvWOjY9nsPBxmLC0tbc+G1wApJWyHMTObxcjwYB+ALgBTCN8+WTYpa0QAQUTDu0eH+ycmp5BOtyGVSm0r4Big6wYmJqYwNNTfIaXss237DEIRVMYFUQIEnnDwOGBwoG9ff19P+tXT52BZiVtCRLS6D8wM0zRx6fJV/Oz991jdOzp3Xp2a9iVKlTlayQFR89PYPTp8wLJMys4tItNuYH5+fqvx97YHIQQ0XcfUtRmkUgnq7+8duTo1raGOj1AlB0TnAOm9Y6O35XJ5MAskk8lt8bMOmMzOwHEYw0P9IydOnjYR6oC6BADK5wD9e8d2DV65Og3dMKGUuuUUcCvFkcPA/PwCRnYODAJoA3AdNRy1anGABCA7O9vHRnYOdrx84sdgBubm5rY5ICa4m/8Sk1enMTQ00A2gG8BbKOcCBmpzgASgj44M7+/oaJfXpmfR3t5xy07AWsUFhUIRlyemcOcde9OpVHJgaWn5FawhgqLfhkmOje26nZmRyxXQtePmfU3xVoFpmbg2PYtMW1rr6+3eeX5pOaqEgyWJShHkJ9px297RXddnsiiWbCwuLv5UiJ9aX/bYSBlE7nV5OYe2dAqDA727zl94s5IAZSIoKv9FImHt2rN7pDs7N4/l5WVIOesRwH8Tbs2qgwvXi6uKr9PB+u8ujomSeKlonZG0RmRl6AcPHcTAQC8GB/uGEb5RPToh46j3bhCxc3hg39Bgn9nbswPpVBK53ErZR2tqOV358eVx4X2wzRRx2K103q12yEXo5Bvcry99I4ewuI5kYdsj6SIOxV5omXOwphS6ujoghMDw0EAvXEvoSgTfAKrfaUMA9F0jQ7d3d3chk0njoQ+9b83NiK0VTnHendOqdnLdIIY7K3YJ0N8ppeixbecMYixFpHaNDI+mU0n3pdl8a9n+NxJ87ujv7030dO8YvHL1mr8zWsYBlZrZymTSKaUlQNLAVo/vmxsIxCV0tLeJzs72bo8AboSH71qroStLS8u567PzyK86G9ox32yjW1lU6/sTrYFhmQqWZSGdSmZqpVZlqV3IzcxkZ6evTWFpebWmT2+tj6MF76OtdbSL61gyzDXTlZ0hKE9Q9rEGrrK8uELec1Vc+bcJIvfRwyM1wpiry2sU5opvRqYtCcuUKBSKJYQf/QzcFX0CRN0Rc8dPnD5qJZ7okVKCHYd8V27/RRcM9gAAewc/2bsLH+GnCf+Xp/PmFsFtEBumLqss8oTIX9lzUFCQJ9rAijRV92VtjTxHyquqpKzLjn+Fu+xsKyULzLzyxhuXnkSNL66WnYRB+KnCDNydHP/dZzpCU7WWUuAGzxwjvlYZ9cLWm4cbxMUpD2vkqQzzkVwEUIC7Gb/iXQvez3fSYlWR0YZLuUUvkYHw453+JGK9EKdTrdT0Db2TW9CO6DeGSyhHetWXVqOfvXAq7m0vY9xvBW+28RvJ3ygP4ca3KcpJUU7wER/VAQBqK2H/DRZ+hspDe81EYKsQsZV1Vg7oKNKjyGegsXNuFOE302Ywr/G8Fe2pq4fqIfZmQvjbHbZ6AGzDNmzDNmzD2xT+H+5UT7Tyxc2HAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA2LTMwVDExOjUwOjAyLTA0OjAwOaSkCgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxMy0xMS0wMVQxMDozODoyNC0wNDowMNba8BsAAAAASUVORK5CYII="),i.resource.add("hterm/concat/date","text/plain","Tue, 22 Aug 2017 06:42:31 +0000"),i.resource.add("hterm/changelog/version","text/plain","1.70"),i.resource.add("hterm/changelog/date","text/plain","2017-08-16"),i.resource.add("hterm/git/HEAD","text/plain","git rev-parse HEAD"),e.exports={hterm:o,lib:i}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CHARSETS={},t.DEFAULT_CHARSET=t.CHARSETS.B,t.CHARSETS[0]={"`":"◆",a:"▒",b:"\t",c:"\f",d:"\r",e:"\n",f:"°",g:"±",h:"␤",i:"\v",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"},t.CHARSETS.A={"#":"£"},t.CHARSETS.B=null,t.CHARSETS[4]={"#":"£","@":"¾","[":"ij","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"},t.CHARSETS.C=t.CHARSETS[5]={"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},t.CHARSETS.R={"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"},t.CHARSETS.Q={"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"},t.CHARSETS.K={"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"},t.CHARSETS.Y={"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"},t.CHARSETS.E=t.CHARSETS[6]={"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"},t.CHARSETS.Z={"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"},t.CHARSETS.H=t.CHARSETS[7]={"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},t.CHARSETS["="]={"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}},function(e,t,r){/** - * Implements the attach method, that attaches the terminal to a WebSocket stream. - * @module xterm/addons/attach/attach - * @license MIT - */ -!function(t){e.exports=t(r(0))}(function(e){"use strict";var t={};return t.attach=function(e,t,r,i){r=void 0===r||r,e.socket=t,e._flushBuffer=function(){e.write(e._attachSocketBuffer),e._attachSocketBuffer=null,clearTimeout(e._attachSocketBufferTimer),e._attachSocketBufferTimer=null},e._pushToBuffer=function(t){e._attachSocketBuffer?e._attachSocketBuffer+=t:(e._attachSocketBuffer=t,setTimeout(e._flushBuffer,10))},e._getMessage=function(t){i?e._pushToBuffer(t.data):e.write(t.data)},e._sendData=function(e){t.send(e)},t.addEventListener("message",e._getMessage),r&&e.on("data",e._sendData),t.addEventListener("close",e.detach.bind(e,t)),t.addEventListener("error",e.detach.bind(e,t))},t.detach=function(e,t){e.off("data",e._sendData),(t=void 0===t?e.socket:t)&&t.removeEventListener("message",e._getMessage),delete e.socket},e.prototype.attach=function(e,r,i){return t.attach(this,e,r,i)},e.prototype.detach=function(e){return t.detach(this,e)},t})},function(e,t,r){/** - * Fit terminal columns and rows to the dimensions of its DOM element. - * - * ## Approach - * - Rows: Truncate the division of the terminal parent element height by the terminal row height. - * - * - Columns: Truncate the division of the terminal parent element width by the terminal character - * width (apply display: inline at the terminal row and truncate its width with the current - * number of columns). - * @module xterm/addons/fit/fit - * @license MIT - */ -!function(t){e.exports=t(r(0))}(function(e){var t={};return t.proposeGeometry=function(e){if(!e.element.parentElement)return null;var t,r,i,o,s=window.getComputedStyle(e.element.parentElement),n=parseInt(s.getPropertyValue("height")),a=Math.max(0,parseInt(s.getPropertyValue("width"))-17),l=window.getComputedStyle(e.element),h=n-(parseInt(l.getPropertyValue("padding-top"))+parseInt(l.getPropertyValue("padding-bottom"))),c=a-(parseInt(l.getPropertyValue("padding-right"))+parseInt(l.getPropertyValue("padding-left"))),u=(e.rowContainer,e.rowContainer.firstElementChild),d=u.innerHTML;return u.style.display="inline",u.innerHTML="W",i=u.getBoundingClientRect().width,u.style.display="",t=u.getBoundingClientRect().height,u.innerHTML=d,r=parseInt(h/t),o=parseInt(c/i),{cols:o,rows:r}},t.fit=function(e){var r=t.proposeGeometry(e);r&&e.resize(r.cols,r.rows)},e.prototype.proposeGeometry=function(){return t.proposeGeometry(this)},e.prototype.fit=function(){return t.fit(this)},t})},function(e,t,r){/** - * Fullscreen addon for xterm.js - * @module xterm/addons/fullscreen/fullscreen - * @license MIT - */ -!function(t){e.exports=t(r(0))}(function(e){var t={};return t.toggleFullScreen=function(e,t){var r;r=void 0===t?e.element.classList.contains("fullscreen")?"remove":"add":t?"add":"remove",e.element.classList[r]("fullscreen")},e.prototype.toggleFullscreen=function(e){t.toggleFullScreen(this,e)},t})},function(e,t,r){/** - * This module provides methods for attaching a terminal to a terminado WebSocket stream. - * - * @module xterm/addons/terminado/terminado - * @license MIT - */ -!function(t){e.exports=t(r(0))}(function(e){"use strict";var t={};return t.terminadoAttach=function(e,t,r,i){r=void 0===r||r,e.socket=t,e._flushBuffer=function(){e.write(e._attachSocketBuffer),e._attachSocketBuffer=null,clearTimeout(e._attachSocketBufferTimer),e._attachSocketBufferTimer=null},e._pushToBuffer=function(t){e._attachSocketBuffer?e._attachSocketBuffer+=t:(e._attachSocketBuffer=t,setTimeout(e._flushBuffer,10))},e._getMessage=function(t){var r=JSON.parse(t.data);"stdout"==r[0]&&(i?e._pushToBuffer(r[1]):e.write(r[1]))},e._sendData=function(e){t.send(JSON.stringify(["stdin",e]))},e._setSize=function(e){t.send(JSON.stringify(["set_size",e.rows,e.cols]))},t.addEventListener("message",e._getMessage),r&&e.on("data",e._sendData),e.on("resize",e._setSize),t.addEventListener("close",e.terminadoDetach.bind(e,t)),t.addEventListener("error",e.terminadoDetach.bind(e,t))},t.terminadoDetach=function(e,t){e.off("data",e._sendData),(t=void 0===t?e.socket:t)&&t.removeEventListener("message",e._getMessage),delete e.socket},e.prototype.terminadoAttach=function(e,r,i){return t.terminadoAttach(this,e,r,i)},e.prototype.terminadoDetach=function(e){return t.terminadoDetach(this,e)},t})},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(27),o="undefined"==typeof navigator,s=o?"node":navigator.userAgent,n=o?"node":navigator.platform;t.isFirefox=!!~s.indexOf("Firefox"),t.isMSIE=!!~s.indexOf("MSIE")||!!~s.indexOf("Trident"),t.isMac=i.contains(["Macintosh","MacIntel","MacPPC","Mac68K"],n),t.isIpad="iPad"===n,t.isIphone="iPhone"===n,t.isMSWindows=i.contains(["Windows","Win16","Win32","WinCE"],n),t.isLinux=n.indexOf("Linux")>=0},function(e,t,r){"use strict";function i(e,t){if(null==e.pageX)return null;for(var r=e.pageX,i=e.pageY;t&&t!==self.document.documentElement;)r-=t.offsetLeft,i-=t.offsetTop,t="offsetParent"in t?t.offsetParent:t.parentElement;return[r,i]}function o(e,t,r,o,s,n){var a=i(e,t);return a[0]=Math.ceil((a[0]+(n?r.width/2:0))/r.width),a[1]=Math.ceil(a[1]/r.height),a[0]=Math.min(Math.max(a[0],1),o+1),a[1]=Math.min(Math.max(a[1],1),s+1),a}Object.defineProperty(t,"__esModule",{value:!0}),t.getCoordsRelativeToElement=i,t.getCoords=o,t.getRawByteCoords=function(e,t,r,i,s){var n=o(e,t,r,i,s),a=n[0],l=n[1];return a+=32,l+=32,{x:a,y:l}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(3),o=function(){function e(e){this.elem=e,i.hterm.defaultStorage=new i.lib.Storage.Memory,this.term=new i.hterm.Terminal,this.term.getPrefs().set("send-encoding","raw"),this.term.decorate(this.elem),this.io=this.term.io.push(),this.term.installKeyboard()}return e.prototype.info=function(){return{columns:this.columns,rows:this.rows}},e.prototype.output=function(e){null!=this.term.io&&this.term.io.writeUTF8(e)},e.prototype.showMessage=function(e,t){this.message=e,t>0?this.term.io.showOverlay(e,t):this.term.io.showOverlay(e,null)},e.prototype.removeMessage=function(){this.term.io.showOverlay(this.message,0)},e.prototype.setWindowTitle=function(e){this.term.setWindowTitle(e)},e.prototype.setPreferences=function(e){var t=this;Object.keys(e).forEach(function(r){t.term.getPrefs().set(r,e[r])})},e.prototype.onInput=function(e){this.io.onVTKeystroke=function(t){e(t)},this.io.sendString=function(t){e(t)}},e.prototype.onResize=function(e){var t=this;this.io.onTerminalResize=function(r,i){t.columns=r,t.rows=i,e(r,i)}},e.prototype.deactivate=function(){this.io.onVTKeystroke=null,this.io.sendString=null,this.io.onTerminalResize=null,this.term.uninstallKeyboard()},e.prototype.reset=function(){this.removeMessage(),this.term.installKeyboard()},e.prototype.close=function(){this.term.uninstallKeyboard()},e}();t.Hterm=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){this.url=e,this.protocols=t}return e.prototype.create=function(){return new o(this.url,this.protocols)},e}();t.ConnectionFactory=i;var o=function(){function e(e,t){this.bare=new WebSocket(e,t)}return e.prototype.open=function(){},e.prototype.close=function(){this.bare.close()},e.prototype.send=function(e){this.bare.send(e)},e.prototype.isOpen=function(){return this.bare.readyState==WebSocket.CONNECTING||this.bare.readyState==WebSocket.OPEN},e.prototype.onOpen=function(e){this.bare.onopen=function(t){e()}},e.prototype.onReceive=function(e){this.bare.onmessage=function(t){e(t.data)}},e.prototype.onClose=function(e){this.bare.onclose=function(t){e()}},e}();t.Connection=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.protocols=["webtty"],t.msgInputUnknown="0",t.msgInput="1",t.msgPing="2",t.msgResizeTerminal="3",t.msgUnknownOutput="0",t.msgOutput="1",t.msgPong="2",t.msgSetWindowTitle="3",t.msgSetPreferences="4",t.msgSetReconnect="5";var i=function(){function e(e,t,r,i){this.term=e,this.connectionFactory=t,this.args=r,this.authToken=i,this.reconnect=-1}return e.prototype.open=function(){var e,r,i=this,o=this.connectionFactory.create(),s=function(){o.onOpen(function(){var r=i.term.info();o.send(JSON.stringify({Arguments:i.args,AuthToken:i.authToken}));var s=function(e,r){o.send(t.msgResizeTerminal+JSON.stringify({columns:e,rows:r}))};i.term.onResize(s),s(r.columns,r.rows),i.term.onInput(function(e){o.send(t.msgInput+e)}),e=setInterval(function(){o.send(t.msgPing)},3e4)}),o.onReceive(function(e){var r=e.slice(1);switch(e[0]){case t.msgOutput:i.term.output(atob(r));break;case t.msgPong:break;case t.msgSetWindowTitle:i.term.setWindowTitle(r);break;case t.msgSetPreferences:var o=JSON.parse(r);i.term.setPreferences(o);break;case t.msgSetReconnect:var s=JSON.parse(r);console.log("Enabling reconnect: "+s+" seconds"),i.reconnect=s}}),o.onClose(function(){clearInterval(e),i.term.deactivate(),i.term.showMessage("Connection Closed",0),i.reconnect>0&&(r=setTimeout(function(){o=i.connectionFactory.create(),i.term.reset(),s()},1e3*i.reconnect))}),o.open()};return s(),function(){clearTimeout(r),o.close()}},e}();t.WebTTY=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(0),o=r(3);i.loadAddon("fit");var s=function(){function e(e){var t=this;this.elem=e,this.term=new i,this.message=e.ownerDocument.createElement("div"),this.message.className="xterm-overlay",this.messageTimeout=2e3,this.resizeListener=function(){t.term.fit(),t.term.scrollToBottom(),t.showMessage(String(t.term.cols)+"x"+String(t.term.rows),t.messageTimeout)},this.term.on("open",function(){t.resizeListener(),window.addEventListener("resize",function(){t.resizeListener()})}),this.term.open(e,!0),this.decoder=new o.lib.UTF8Decoder}return e.prototype.info=function(){return{columns:this.term.cols,rows:this.term.rows}},e.prototype.output=function(e){this.term.write(this.decoder.decode(e))},e.prototype.showMessage=function(e,t){var r=this;this.message.textContent=e,this.elem.appendChild(this.message),this.messageTimer&&clearTimeout(this.messageTimer),t>0&&(this.messageTimer=setTimeout(function(){r.elem.removeChild(r.message)},t))},e.prototype.removeMessage=function(){this.message.parentNode==this.elem&&this.elem.removeChild(this.message)},e.prototype.setWindowTitle=function(e){document.title=e},e.prototype.setPreferences=function(e){},e.prototype.onInput=function(e){this.term.on("data",function(t){e(t)})},e.prototype.onResize=function(e){this.term.on("resize",function(t){e(t.cols,t.rows)})},e.prototype.deactivate=function(){this.term.off("data"),this.term.off("resize"),this.term.blur()},e.prototype.reset=function(){this.removeMessage(),this.term.clear()},e.prototype.close=function(){window.removeEventListener("resize",this.resizeListener),this.term.destroy()},e}();t.Xterm=s},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t,r){this.textarea=e,this.compositionView=t,this.terminal=r,this.isComposing=!1,this.isSendingComposition=!1,this.compositionPosition={start:null,end:null}}return e.prototype.compositionstart=function(){this.isComposing=!0,this.compositionPosition.start=this.textarea.value.length,this.compositionView.textContent="",this.compositionView.classList.add("active")},e.prototype.compositionupdate=function(e){var t=this;this.compositionView.textContent=e.data,this.updateCompositionElements(),setTimeout(function(){t.compositionPosition.end=t.textarea.value.length},0)},e.prototype.compositionend=function(){this.finalizeComposition(!0)},e.prototype.keydown=function(e){if(this.isComposing||this.isSendingComposition){if(229===e.keyCode)return!1;if(16===e.keyCode||17===e.keyCode||18===e.keyCode)return!1;this.finalizeComposition(!1)}return 229!==e.keyCode||(this.handleAnyTextareaChanges(),!1)},e.prototype.finalizeComposition=function(e){var t=this;if(this.compositionView.classList.remove("active"),this.isComposing=!1,this.clearTextareaPosition(),e){var r={start:this.compositionPosition.start,end:this.compositionPosition.end};this.isSendingComposition=!0,setTimeout(function(){if(t.isSendingComposition){t.isSendingComposition=!1;var e=void 0;e=t.isComposing?t.textarea.value.substring(r.start,r.end):t.textarea.value.substring(r.start),t.terminal.handler(e)}},0)}else{this.isSendingComposition=!1;var i=this.textarea.value.substring(this.compositionPosition.start,this.compositionPosition.end);this.terminal.handler(i)}},e.prototype.handleAnyTextareaChanges=function(){var e=this,t=this.textarea.value;setTimeout(function(){if(!e.isComposing){var r=e.textarea.value.replace(t,"");r.length>0&&e.terminal.handler(r)}},0)},e.prototype.updateCompositionElements=function(e){var t=this;if(this.isComposing){var r=this.terminal.element.querySelector(".terminal-cursor");if(r){var i=this.terminal.element.querySelector(".xterm-rows").offsetTop+r.offsetTop;this.compositionView.style.left=r.offsetLeft+"px",this.compositionView.style.top=i+"px",this.compositionView.style.height=r.offsetHeight+"px",this.compositionView.style.lineHeight=r.offsetHeight+"px";var o=this.compositionView.getBoundingClientRect();this.textarea.style.left=r.offsetLeft+"px",this.textarea.style.top=i+"px",this.textarea.style.width=o.width+"px",this.textarea.style.height=o.height+"px",this.textarea.style.lineHeight=o.height+"px"}e||setTimeout(function(){return t.updateCompositionElements(!0)},0)}},e.prototype.clearTextareaPosition=function(){this.textarea.style.left="",this.textarea.style.top=""},e}();t.CompositionHelper=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(2),o=r(4),s=function(){function e(e){this._terminal=e}return e.prototype.addChar=function(e,t){if(e>=" "){var r=n(t);this._terminal.charset&&this._terminal.charset[e]&&(e=this._terminal.charset[e]);var i=this._terminal.y+this._terminal.ybase;if(!r&&this._terminal.x)return void(this._terminal.lines.get(i)[this._terminal.x-1]&&(this._terminal.lines.get(i)[this._terminal.x-1][2]?this._terminal.lines.get(i)[this._terminal.x-1][1]+=e:this._terminal.lines.get(i)[this._terminal.x-2]&&(this._terminal.lines.get(i)[this._terminal.x-2][1]+=e),this._terminal.updateRange(this._terminal.y)));if(this._terminal.x+r-1>=this._terminal.cols)if(this._terminal.wraparoundMode)this._terminal.x=0,++this._terminal.y>this._terminal.scrollBottom?(this._terminal.y--,this._terminal.scroll(!0)):this._terminal.lines.get(this._terminal.y).isWrapped=!0;else if(2===r)return;if(i=this._terminal.y+this._terminal.ybase,this._terminal.insertMode)for(var o=0;othis._terminal.scrollBottom&&(this._terminal.y--,this._terminal.scroll()),this._terminal.x>=this._terminal.cols&&this._terminal.x--},e.prototype.carriageReturn=function(){this._terminal.x=0},e.prototype.backspace=function(){this._terminal.x>0&&this._terminal.x--},e.prototype.tab=function(){this._terminal.x=this._terminal.nextStop()},e.prototype.shiftOut=function(){this._terminal.setgLevel(1)},e.prototype.shiftIn=function(){this._terminal.setgLevel(0)},e.prototype.insertChars=function(e){var t,r,i,o;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=this._terminal.x,o=[this._terminal.eraseAttr()," ",1];t--&&i=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1),this._terminal.x>=this._terminal.cols&&this._terminal.x--},e.prototype.cursorForward=function(e){var t=e[0];t<1&&(t=1),this._terminal.x+=t,this._terminal.x>=this._terminal.cols&&(this._terminal.x=this._terminal.cols-1)},e.prototype.cursorBackward=function(e){var t=e[0];t<1&&(t=1),this._terminal.x>=this._terminal.cols&&this._terminal.x--,this._terminal.x-=t,this._terminal.x<0&&(this._terminal.x=0)},e.prototype.cursorNextLine=function(e){var t=e[0];t<1&&(t=1),this._terminal.y+=t,this._terminal.y>=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1),this._terminal.x=0},e.prototype.cursorPrecedingLine=function(e){var t=e[0];t<1&&(t=1),this._terminal.y-=t,this._terminal.y<0&&(this._terminal.y=0),this._terminal.x=0},e.prototype.cursorCharAbsolute=function(e){var t=e[0];t<1&&(t=1),this._terminal.x=t-1},e.prototype.cursorPosition=function(e){var t,r;t=e[0]-1,r=e.length>=2?e[1]-1:0,t<0?t=0:t>=this._terminal.rows&&(t=this._terminal.rows-1),r<0?r=0:r>=this._terminal.cols&&(r=this._terminal.cols-1),this._terminal.x=r,this._terminal.y=t},e.prototype.cursorForwardTab=function(e){for(var t=e[0]||1;t--;)this._terminal.x=this._terminal.nextStop()},e.prototype.eraseInDisplay=function(e){var t;switch(e[0]){case 0:for(this._terminal.eraseRight(this._terminal.x,this._terminal.y),t=this._terminal.y+1;t0&&(this._terminal.lines.trimStart(r),this._terminal.ybase=Math.max(this._terminal.ybase-r,0),this._terminal.ydisp=Math.max(this._terminal.ydisp-r,0))}},e.prototype.eraseInLine=function(e){switch(e[0]){case 0:this._terminal.eraseRight(this._terminal.x,this._terminal.y);break;case 1:this._terminal.eraseLeft(this._terminal.x,this._terminal.y);break;case 2:this._terminal.eraseLine(this._terminal.y)}},e.prototype.insertLines=function(e){var t,r,i;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=this._terminal.rows-1-this._terminal.scrollBottom,i=this._terminal.rows-1+this._terminal.ybase-i+1;t--;)this._terminal.lines.length===this._terminal.lines.maxLength&&(this._terminal.lines.trimStart(1),this._terminal.ybase--,this._terminal.ydisp--,r--,i--),this._terminal.lines.splice(r,0,this._terminal.blankLine(!0)),this._terminal.lines.splice(i,1);this._terminal.updateRange(this._terminal.y),this._terminal.updateRange(this._terminal.scrollBottom)},e.prototype.deleteLines=function(e){var t,r,i;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=this._terminal.rows-1-this._terminal.scrollBottom,i=this._terminal.rows-1+this._terminal.ybase-i;t--;)this._terminal.lines.length===this._terminal.lines.maxLength&&(this._terminal.lines.trimStart(1),this._terminal.ybase-=1,this._terminal.ydisp-=1),this._terminal.lines.splice(i+1,0,this._terminal.blankLine(!0)),this._terminal.lines.splice(r,1);this._terminal.updateRange(this._terminal.y),this._terminal.updateRange(this._terminal.scrollBottom)},e.prototype.deleteChars=function(e){var t,r,i;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=[this._terminal.eraseAttr()," ",1];t--;)this._terminal.lines.get(r).splice(this._terminal.x,1),this._terminal.lines.get(r).push(i)},e.prototype.scrollUp=function(e){for(var t=e[0]||1;t--;)this._terminal.lines.splice(this._terminal.ybase+this._terminal.scrollTop,1),this._terminal.lines.splice(this._terminal.ybase+this._terminal.scrollBottom,0,this._terminal.blankLine());this._terminal.updateRange(this._terminal.scrollTop),this._terminal.updateRange(this._terminal.scrollBottom)},e.prototype.scrollDown=function(e){for(var t=e[0]||1;t--;)this._terminal.lines.splice(this._terminal.ybase+this._terminal.scrollBottom,1),this._terminal.lines.splice(this._terminal.ybase+this._terminal.scrollTop,0,this._terminal.blankLine());this._terminal.updateRange(this._terminal.scrollTop),this._terminal.updateRange(this._terminal.scrollBottom)},e.prototype.eraseChars=function(e){var t,r,i,o;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=this._terminal.x,o=[this._terminal.eraseAttr()," ",1];t--&&i=this._terminal.cols&&(this._terminal.x=this._terminal.cols-1)},e.prototype.HPositionRelative=function(e){var t=e[0];t<1&&(t=1),this._terminal.x+=t,this._terminal.x>=this._terminal.cols&&(this._terminal.x=this._terminal.cols-1)},e.prototype.repeatPrecedingCharacter=function(e){for(var t=e[0]||1,r=this._terminal.lines.get(this._terminal.ybase+this._terminal.y),i=r[this._terminal.x-1]||[this._terminal.defAttr," ",1];t--;)r[this._terminal.x++]=i},e.prototype.sendDeviceAttributes=function(e){e[0]>0||(this._terminal.prefix?">"===this._terminal.prefix&&(this._terminal.is("xterm")?this._terminal.send(i.C0.ESC+"[>0;276;0c"):this._terminal.is("rxvt-unicode")?this._terminal.send(i.C0.ESC+"[>85;95;0c"):this._terminal.is("linux")?this._terminal.send(e[0]+"c"):this._terminal.is("screen")&&this._terminal.send(i.C0.ESC+"[>83;40003;0c")):this._terminal.is("xterm")||this._terminal.is("rxvt-unicode")||this._terminal.is("screen")?this._terminal.send(i.C0.ESC+"[?1;2c"):this._terminal.is("linux")&&this._terminal.send(i.C0.ESC+"[?6c"))},e.prototype.linePosAbsolute=function(e){var t=e[0];t<1&&(t=1),this._terminal.y=t-1,this._terminal.y>=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1)},e.prototype.VPositionRelative=function(e){var t=e[0];t<1&&(t=1),this._terminal.y+=t,this._terminal.y>=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1),this._terminal.x>=this._terminal.cols&&this._terminal.x--},e.prototype.HVPosition=function(e){e[0]<1&&(e[0]=1),e[1]<1&&(e[1]=1),this._terminal.y=e[0]-1,this._terminal.y>=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1),this._terminal.x=e[1]-1,this._terminal.x>=this._terminal.cols&&(this._terminal.x=this._terminal.cols-1)},e.prototype.tabClear=function(e){var t=e[0];t<=0?delete this._terminal.tabs[this._terminal.x]:3===t&&(this._terminal.tabs={})},e.prototype.setMode=function(e){if(e.length>1)for(var t=0;t1e3,this._terminal.mouseEvents=!0,this._terminal.element.classList.add("enable-mouse-events"),this._terminal.selectionManager.disable(),this._terminal.log("Binding to mouse events.");break;case 1004:this._terminal.sendFocus=!0;break;case 1005:this._terminal.utfMouse=!0;break;case 1006:this._terminal.sgrMouse=!0;break;case 1015:this._terminal.urxvtMouse=!0;break;case 25:this._terminal.cursorHidden=!1;break;case 1049:case 47:case 1047:if(!this._terminal.normal){var r={lines:this._terminal.lines,ybase:this._terminal.ybase,ydisp:this._terminal.ydisp,x:this._terminal.x,y:this._terminal.y,scrollTop:this._terminal.scrollTop,scrollBottom:this._terminal.scrollBottom,tabs:this._terminal.tabs};this._terminal.reset(),this._terminal.viewport.syncScrollArea(),this._terminal.normal=r,this._terminal.showCursor()}}}else switch(e[0]){case 4:this._terminal.insertMode=!0}},e.prototype.resetMode=function(e){if(e.length>1)for(var t=0;t>18,s=this._terminal.curAttr>>9&511,n=511&this._terminal.curAttr;i=30&&t<=37?s=t-30:t>=40&&t<=47?n=t-40:t>=90&&t<=97?s=(t+=8)-90:t>=100&&t<=107?n=(t+=8)-100:0===t?(o=this._terminal.defAttr>>18,s=this._terminal.defAttr>>9&511,n=511&this._terminal.defAttr):1===t?o|=1:4===t?o|=2:5===t?o|=4:7===t?o|=8:8===t?o|=16:22===t?o&=-2:24===t?o&=-3:25===t?o&=-5:27===t?o&=-9:28===t?o&=-17:39===t?s=this._terminal.defAttr>>9&511:49===t?n=511&this._terminal.defAttr:38===t?2===e[i+1]?(i+=2,-1===(s=this._terminal.matchColor(255&e[i],255&e[i+1],255&e[i+2]))&&(s=511),i+=2):5===e[i+1]&&(s=t=255&e[i+=2]):48===t?2===e[i+1]?(i+=2,-1===(n=this._terminal.matchColor(255&e[i],255&e[i+1],255&e[i+2]))&&(n=511),i+=2):5===e[i+1]&&(n=t=255&e[i+=2]):100===t?(s=this._terminal.defAttr>>9&511,n=511&this._terminal.defAttr):this._terminal.error("Unknown SGR attribute: %d.",t);this._terminal.curAttr=o<<18|s<<9|n}else this._terminal.curAttr=this._terminal.defAttr},e.prototype.deviceStatus=function(e){if(this._terminal.prefix){if("?"===this._terminal.prefix)switch(e[0]){case 6:this._terminal.send(i.C0.ESC+"[?"+(this._terminal.y+1)+";"+(this._terminal.x+1)+"R")}}else switch(e[0]){case 5:this._terminal.send(i.C0.ESC+"[0n");break;case 6:this._terminal.send(i.C0.ESC+"["+(this._terminal.y+1)+";"+(this._terminal.x+1)+"R")}},e.prototype.softReset=function(e){this._terminal.cursorHidden=!1,this._terminal.insertMode=!1,this._terminal.originMode=!1,this._terminal.wraparoundMode=!0,this._terminal.applicationKeypad=!1,this._terminal.viewport.syncScrollArea(),this._terminal.applicationCursor=!1,this._terminal.scrollTop=0,this._terminal.scrollBottom=this._terminal.rows-1,this._terminal.curAttr=this._terminal.defAttr,this._terminal.x=this._terminal.y=0,this._terminal.charset=null,this._terminal.glevel=0,this._terminal.charsets=[null]},e.prototype.setCursorStyle=function(e){var t=e[0]<1?1:e[0];switch(t){case 1:case 2:this._terminal.setOption("cursorStyle","block");break;case 3:case 4:this._terminal.setOption("cursorStyle","underline");break;case 5:case 6:this._terminal.setOption("cursorStyle","bar")}var r=t%2==1;this._terminal.setOption("cursorBlink",r)},e.prototype.setScrollRegion=function(e){this._terminal.prefix||(this._terminal.scrollTop=(e[0]||1)-1,this._terminal.scrollBottom=(e[1]&&e[1]<=this._terminal.rows?e[1]:this._terminal.rows)-1,this._terminal.x=0,this._terminal.y=0)},e.prototype.saveCursor=function(e){this._terminal.savedX=this._terminal.x,this._terminal.savedY=this._terminal.y},e.prototype.restoreCursor=function(e){this._terminal.x=this._terminal.savedX||0,this._terminal.y=this._terminal.savedY||0},e}();t.InputHandler=s;var n=function(e){function t(e){var t,r=0,o=i.length-1;if(ei[o][1])return!1;for(;o>=r;)if(t=Math.floor((r+o)/2),e>i[t][1])r=t+1;else{if(!(e=4352&&(e<=4447||9001===e||9002===e||e>=11904&&e<=42191&&12351!==e||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65135||e>=65280&&e<=65376||e>=65504&&e<=65510||e>=131072&&e<=196605||e>=196608&&e<=262141)}var i=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531],[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]];return function(i){return 0===i?e.nul:i<32||i>=127&&i<160?e.control:t(i)?0:r(i)?2:1}}({nul:0,control:0})},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=new RegExp("(?:^|[^\\da-z\\.-]+)((https?:\\/\\/)((([\\da-z\\.-]+)\\.([a-z\\.]{2,6}))|((\\d{1,3}\\.){3}\\d{1,3})|(localhost))(:\\d{1,5})?(\\/[\\/\\w\\.\\-%~]*)*(\\?[0-9\\w\\[\\]\\(\\)\\/\\?\\!#@$%&'*+,:;~\\=\\.\\-]*)?(#[0-9\\w\\[\\]\\(\\)\\/\\?\\!#@$%&'*+,:;~\\=\\.\\-]*)?)($|[^\\/\\w\\.\\-%]+)"),o=0,s=function(){function e(){this._nextLinkMatcherId=o,this._rowTimeoutIds=[],this._linkMatchers=[],this.registerLinkMatcher(i,null,{matchIndex:1})}return e.prototype.attachToDom=function(e,t){this._document=e,this._rows=t},e.prototype.linkifyRow=function(t){if(this._document){var r=this._rowTimeoutIds[t];r&&clearTimeout(r),this._rowTimeoutIds[t]=setTimeout(this._linkifyRow.bind(this,t),e.TIME_BEFORE_LINKIFY)}},e.prototype.setHypertextLinkHandler=function(e){this._linkMatchers[o].handler=e},e.prototype.setHypertextValidationCallback=function(e){this._linkMatchers[o].validationCallback=e},e.prototype.registerLinkMatcher=function(e,t,r){if(void 0===r&&(r={}),this._nextLinkMatcherId!==o&&!t)throw new Error("handler must be defined");var i={id:this._nextLinkMatcherId++,regex:e,handler:t,matchIndex:r.matchIndex,validationCallback:r.validationCallback,priority:r.priority||0};return this._addLinkMatcherToList(i),i.id},e.prototype._addLinkMatcherToList=function(e){if(0!==this._linkMatchers.length){for(var t=this._linkMatchers.length-1;t>=0;t--)if(e.priority<=this._linkMatchers[t].priority)return void this._linkMatchers.splice(t+1,0,e);this._linkMatchers.splice(0,0,e)}else this._linkMatchers.push(e)},e.prototype.deregisterLinkMatcher=function(e){for(var t=1;t0){if(i.validationCallback)for(var s=function(e){var t=o[e];i.validationCallback(t.textContent,t,function(e){e||t.classList.add("xterm-invalid-link")})},n=0;n=0){var d=this._createAnchorElement(a,t.handler,i);if(c.textContent.length===a.length)if(3===c.nodeType)this._replaceNode(c,d);else{var p=c;if("A"===p.nodeName)return r;p.innerHTML="",p.appendChild(d)}else if(c.childNodes.length>1)for(var f=0;f"]=function(e){return e.setPrefix(">")},a["!"]=function(e){return e.setPrefix("!")},a[0]=function(e){return e.setParam(10*e.getParam())},a[1]=function(e){return e.setParam(10*e.getParam()+1)},a[2]=function(e){return e.setParam(10*e.getParam()+2)},a[3]=function(e){return e.setParam(10*e.getParam()+3)},a[4]=function(e){return e.setParam(10*e.getParam()+4)},a[5]=function(e){return e.setParam(10*e.getParam()+5)},a[6]=function(e){return e.setParam(10*e.getParam()+6)},a[7]=function(e){return e.setParam(10*e.getParam()+7)},a[8]=function(e){return e.setParam(10*e.getParam()+8)},a[9]=function(e){return e.setParam(10*e.getParam()+9)},a.$=function(e){return e.setPostfix("$")},a['"']=function(e){return e.setPostfix('"')},a[" "]=function(e){return e.setPostfix(" ")},a["'"]=function(e){return e.setPostfix("'")},a[";"]=function(e){return e.finalizeParam()},a[i.C0.CAN]=function(e){return e.setState(h.NORMAL)};var l={};l["@"]=function(e,t,r){return e.insertChars(t)},l.A=function(e,t,r){return e.cursorUp(t)},l.B=function(e,t,r){return e.cursorDown(t)},l.C=function(e,t,r){return e.cursorForward(t)},l.D=function(e,t,r){return e.cursorBackward(t)},l.E=function(e,t,r){return e.cursorNextLine(t)},l.F=function(e,t,r){return e.cursorPrecedingLine(t)},l.G=function(e,t,r){return e.cursorCharAbsolute(t)},l.H=function(e,t,r){return e.cursorPosition(t)},l.I=function(e,t,r){return e.cursorForwardTab(t)},l.J=function(e,t,r){return e.eraseInDisplay(t)},l.K=function(e,t,r){return e.eraseInLine(t)},l.L=function(e,t,r){return e.insertLines(t)},l.M=function(e,t,r){return e.deleteLines(t)},l.P=function(e,t,r){return e.deleteChars(t)},l.S=function(e,t,r){return e.scrollUp(t)},l.T=function(e,t,r){t.length<2&&!r&&e.scrollDown(t)},l.X=function(e,t,r){return e.eraseChars(t)},l.Z=function(e,t,r){return e.cursorBackwardTab(t)},l["`"]=function(e,t,r){return e.charPosAbsolute(t)},l.a=function(e,t,r){return e.HPositionRelative(t)},l.b=function(e,t,r){return e.repeatPrecedingCharacter(t)},l.c=function(e,t,r){return e.sendDeviceAttributes(t)},l.d=function(e,t,r){return e.linePosAbsolute(t)},l.e=function(e,t,r){return e.VPositionRelative(t)},l.f=function(e,t,r){return e.HVPosition(t)},l.g=function(e,t,r){return e.tabClear(t)},l.h=function(e,t,r){return e.setMode(t)},l.l=function(e,t,r){return e.resetMode(t)},l.m=function(e,t,r){return e.charAttributes(t)},l.n=function(e,t,r){return e.deviceStatus(t)},l.p=function(e,t,r){switch(r){case"!":e.softReset(t)}},l.q=function(e,t,r,i){" "===i&&e.setCursorStyle(t)},l.r=function(e,t){return e.setScrollRegion(t)},l.s=function(e,t){return e.saveCursor(t)},l.u=function(e,t){return e.restoreCursor(t)},l[i.C0.CAN]=function(e,t,r,i,o){return o.setState(h.NORMAL)};var h;!function(e){e[e.NORMAL=0]="NORMAL",e[e.ESCAPED=1]="ESCAPED",e[e.CSI_PARAM=2]="CSI_PARAM",e[e.CSI=3]="CSI",e[e.OSC=4]="OSC",e[e.CHARSET=5]="CHARSET",e[e.DCS=6]="DCS",e[e.IGNORE=7]="IGNORE"}(h||(h={}));var c=function(){function e(e,t){this._inputHandler=e,this._terminal=t,this._state=h.NORMAL}return e.prototype.parse=function(e){var t,r,c,u,d=e.length;for(this._position=0,this._terminal.surrogate_high&&(e=this._terminal.surrogate_high+e,this._terminal.surrogate_high="");this._position":this._terminal.log("Switching back to normal keypad."),this._terminal.applicationKeypad=!1,this._terminal.viewport.syncScrollArea(),this._state=h.NORMAL;break;default:this._state=h.NORMAL,this._terminal.error("Unknown ESC control: %s.",r)}break;case h.CHARSET:r in o.CHARSETS?(t=o.CHARSETS[r],"/"===r&&this.skipNextChar()):t=o.DEFAULT_CHARSET,this._terminal.setgCharset(this._terminal.gcharset,t),this._terminal.gcharset=null,this._state=h.NORMAL;break;case h.OSC:if(r===i.C0.ESC||r===i.C0.BEL){switch(r===i.C0.ESC&&this._position++,this._terminal.params.push(this._terminal.currentParam),this._terminal.params[0]){case 0:case 1:case 2:this._terminal.params[1]&&(this._terminal.title=this._terminal.params[1],this._terminal.handleTitle(this._terminal.title))}this._terminal.params=[],this._terminal.currentParam=0,this._state=h.NORMAL}else this._terminal.params.length?this._terminal.currentParam+=r:r>="0"&&r<="9"?this._terminal.currentParam=10*this._terminal.currentParam+r.charCodeAt(0)-48:";"===r&&(this._terminal.params.push(this._terminal.currentParam),this._terminal.currentParam="");break;case h.CSI_PARAM:if(r in a){a[r](this);break}this.finalizeParam(),this._state=h.CSI;case h.CSI:r in l?l[r](this._inputHandler,this._terminal.params,this._terminal.prefix,this._terminal.postfix,this):this._terminal.error("Unknown CSI code: %s.",r),this._state=h.NORMAL,this._terminal.prefix="",this._terminal.postfix="";break;case h.DCS:if(r===i.C0.ESC||r===i.C0.BEL){r===i.C0.ESC&&this._position++;var p=void 0,f=void 0;switch(this._terminal.prefix){case"":break;case"$q":switch(p=this._terminal.currentParam,f=!1,p){case'"q':p='0"q';break;case'"p':p='61"p';break;case"r":p=this._terminal.scrollTop+1+";"+(this._terminal.scrollBottom+1)+"r";break;case"m":p="0m";break;default:this._terminal.error("Unknown DCS Pt: %s.",p),p=""}this._terminal.send(i.C0.ESC+"P"+ +f+"$r"+p+i.C0.ESC+"\\");break;case"+p":break;case"+q":p=this._terminal.currentParam,f=!1,this._terminal.send(i.C0.ESC+"P"+ +f+"+r"+p+i.C0.ESC+"\\");break;default:this._terminal.error("Unknown DCS prefix: %s.",this._terminal.prefix)}this._terminal.currentParam=0,this._terminal.prefix="",this._state=h.NORMAL}else this._terminal.currentParam?this._terminal.currentParam+=r:this._terminal.prefix||"$"===r||"+"===r?2===this._terminal.prefix.length?this._terminal.currentParam=r:this._terminal.prefix+=r:this._terminal.currentParam=r;break;case h.IGNORE:r!==i.C0.ESC&&r!==i.C0.BEL||(r===i.C0.ESC&&this._position++,this._state=h.NORMAL)}}return this._state},e.prototype.setState=function(e){this._state=e},e.prototype.setPrefix=function(e){this._terminal.prefix=e},e.prototype.setPostfix=function(e){this._terminal.postfix=e},e.prototype.setParam=function(e){this._terminal.currentParam=e},e.prototype.getParam=function(){return this._terminal.currentParam},e.prototype.finalizeParam=function(){this._terminal.params.push(this._terminal.currentParam),this._terminal.currentParam=0},e.prototype.skipNextChar=function(){this._position++},e}();t.Parser=c},function(e,t,r){"use strict";function i(e){var t=e.ownerDocument.createElement("span");t.innerHTML="hello world",e.appendChild(t);var r=t.offsetWidth,i=t.offsetHeight;t.style.fontWeight="bold";var o=t.offsetWidth,s=t.offsetHeight;return e.removeChild(t),r!==o||i!==s}Object.defineProperty(t,"__esModule",{value:!0});var o,s=r(26);!function(e){e[e.BOLD=1]="BOLD",e[e.UNDERLINE=2]="UNDERLINE",e[e.BLINK=4]="BLINK",e[e.INVERSE=8]="INVERSE",e[e.INVISIBLE=16]="INVISIBLE"}(o||(o={}));var n=null,a=function(){function e(e){this._terminal=e,this._refreshRowsQueue=[],this._refreshFramesSkipped=0,this._refreshAnimationFrame=null,this._spanElementObjectPool=new s.DomElementObjectPool("span"),null===n&&(n=i(this._terminal.element)),this._spanElementObjectPool=new s.DomElementObjectPool("span")}return e.prototype.queueRefresh=function(e,t){this._refreshRowsQueue.push({start:e,end:t}),this._refreshAnimationFrame||(this._refreshAnimationFrame=window.requestAnimationFrame(this._refreshLoop.bind(this)))},e.prototype._refreshLoop=function(){if(this._terminal.writeBuffer.length>0&&this._refreshFramesSkipped++<=5)this._refreshAnimationFrame=window.requestAnimationFrame(this._refreshLoop.bind(this));else{this._refreshFramesSkipped=0;var e,t;if(this._refreshRowsQueue.length>4)e=0,t=this._terminal.rows-1;else{e=this._refreshRowsQueue[0].start,t=this._refreshRowsQueue[0].end;for(var r=1;rt&&(t=this._refreshRowsQueue[r].end)}this._refreshRowsQueue=[],this._refreshAnimationFrame=null,this._refresh(e,t)}},e.prototype._refresh=function(e,t){var r;t-e>=this._terminal.rows/2&&(r=this._terminal.element.parentNode)&&this._terminal.element.removeChild(this._terminal.rowContainer);var i=this._terminal.cols,s=e;for(t>=this._terminal.rows&&(this._terminal.log("`end` is too large. Most likely a bad CSR."),t=this._terminal.rows-1);s<=t;s++){var a=s+this._terminal.ydisp,l=this._terminal.lines.get(a),h=void 0;h=this._terminal.y===s-(this._terminal.ybase-this._terminal.ydisp)&&this._terminal.cursorState&&!this._terminal.cursorHidden?this._terminal.x:-1;for(var c=this._terminal.defAttr,u=document.createDocumentFragment(),d="",p=void 0;this._terminal.children[s].children.length;){var f=this._terminal.children[s].children[0];this._terminal.children[s].removeChild(f),this._spanElementObjectPool.release(f)}for(var g=0;g>9&511,w=m>>18;if(w&o.BOLD&&(n||p.classList.add("xterm-bold"),C<8&&(C+=8)),w&o.UNDERLINE&&p.classList.add("xterm-underline"),w&o.BLINK&&p.classList.add("xterm-blink"),w&o.INVERSE){var S=_;_=C,C=S,1&w&&C<8&&(C+=8)}w&o.INVISIBLE&&p.classList.add("xterm-hidden"),w&o.INVERSE&&(257===_&&(_=15),256===C&&(C=0)),_<256&&p.classList.add("xterm-bg-color-"+_),C<256&&p.classList.add("xterm-color-"+C)}if(2===b)d+=''+y+"";else if(y.charCodeAt(0)>255)d+=''+y+"";else switch(y){case"&":d+="&";break;case"<":d+="<";break;case">":d+=">";break;default:d+=y<=" "?" ":y}c=m}}d&&!p&&(p=this._spanElementObjectPool.acquire()),p&&(d&&(p.innerHTML=d,d=""),u.appendChild(p),p=null),this._terminal.children[s].appendChild(u)}r&&this._terminal.element.appendChild(this._terminal.rowContainer),this._terminal.emit("refresh",{element:this._terminal.element,start:e,end:t})},e.prototype.refreshSelection=function(e,t){for(;this._terminal.selectionContainer.children.length;)this._terminal.selectionContainer.removeChild(this._terminal.selectionContainer.children[0]);if(e&&t){var r=e[1]-this._terminal.ydisp,i=t[1]-this._terminal.ydisp,o=Math.max(r,0),s=Math.min(i,this._terminal.rows-1);if(!(o>=this._terminal.rows||s<0)){var n=document.createDocumentFragment(),a=r===o?e[0]:0,l=o===s?t[0]:this._terminal.cols;n.appendChild(this._createSelectionElement(o,a,l));var h=s-o-1;if(n.appendChild(this._createSelectionElement(o+1,0,this._terminal.cols,h)),o!==s){var c=i===s?t[0]:this._terminal.cols;n.appendChild(this._createSelectionElement(s,0,c))}this._terminal.selectionContainer.appendChild(n)}}},e.prototype._createSelectionElement=function(e,t,r,i){void 0===i&&(i=1);var o=document.createElement("div");return o.style.height=i*this._terminal.charMeasure.height+"px",o.style.top=e*this._terminal.charMeasure.height+"px",o.style.left=t*this._terminal.charMeasure.width+"px",o.style.width=this._terminal.charMeasure.width*(r-t)+"px",o},e}();t.Renderer=a},function(e,t,r){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o,s=r(10),n=r(9),a=r(1),l=r(21),h=String.fromCharCode(160),c=new RegExp(h,"g");!function(e){e[e.NORMAL=0]="NORMAL",e[e.WORD=1]="WORD",e[e.LINE=2]="LINE"}(o||(o={}));var u=function(e){function t(t,r,i,s){var n=e.call(this)||this;return n._terminal=t,n._buffer=r,n._rowContainer=i,n._charMeasure=s,n._initListeners(),n.enable(),n._model=new l.SelectionModel(t),n._lastMouseDownTime=0,n._activeSelectionMode=o.NORMAL,n}return i(t,e),t.prototype._initListeners=function(){var e=this;this._bufferTrimListener=function(t){return e._onTrim(t)},this._mouseMoveListener=function(t){return e._onMouseMove(t)},this._mouseDownListener=function(t){return e._onMouseDown(t)},this._mouseUpListener=function(t){return e._onMouseUp(t)}},t.prototype.disable=function(){this.clearSelection(),this._buffer.off("trim",this._bufferTrimListener),this._rowContainer.removeEventListener("mousedown",this._mouseDownListener)},t.prototype.enable=function(){this._buffer.on("trim",this._bufferTrimListener),this._rowContainer.addEventListener("mousedown",this._mouseDownListener)},t.prototype.setBuffer=function(e){this._buffer=e,this.clearSelection()},Object.defineProperty(t.prototype,"hasSelection",{get:function(){var e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;return!(!e||!t)&&(e[0]!==t[0]||e[1]!==t[1])},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"selectionText",{get:function(){var e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;if(!e||!t)return"";var r=e[1]===t[1]?t[0]:null,i=[];i.push(this._translateBufferLineToString(this._buffer.get(e[1]),!0,e[0],r));for(var o=e[1]+1;o<=t[1]-1;o++){var s=this._buffer.get(o),a=this._translateBufferLineToString(s,!0);s.isWrapped?i[i.length-1]+=a:i.push(a)}if(e[1]!==t[1]){var s=this._buffer.get(t[1]),a=this._translateBufferLineToString(s,!0,0,t[0]);s.isWrapped?i[i.length-1]+=a:i.push(a)}return i.map(function(e){return e.replace(c," ")}).join(n.isMSWindows?"\r\n":"\n")},enumerable:!0,configurable:!0}),t.prototype.clearSelection=function(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh()},t.prototype._translateBufferLineToString=function(e,t,r,i){void 0===r&&(r=0),void 0===i&&(i=null);for(var o="",s=r,n=i,a=0;a=a&&s--,i>=a&&n--)}var h=n||e.length;if(t){var c=o.search(/\s+$/);if(-1!==c&&(h=Math.min(h,c)),h<=s)return""}return o.substring(s,h)},t.prototype.refresh=function(e){var t=this;this._refreshAnimationFrame||(this._refreshAnimationFrame=window.requestAnimationFrame(function(){return t._refresh()})),n.isLinux&&e&&this.selectionText.length&&this.emit("newselection",this.selectionText)},t.prototype._refresh=function(){this._refreshAnimationFrame=null,this.emit("refresh",{start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd})},t.prototype.selectAll=function(){this._model.isSelectAllActive=!0,this.refresh()},t.prototype._onTrim=function(e){this._model.onTrim(e)&&this.refresh()},t.prototype._getMouseBufferCoords=function(e){var t=s.getCoords(e,this._rowContainer,this._charMeasure,this._terminal.cols,this._terminal.rows,!0);return t[0]--,t[1]--,t[1]+=this._terminal.ydisp,t},t.prototype._getMouseEventScrollAmount=function(e){var t=s.getCoordsRelativeToElement(e,this._rowContainer)[1],r=this._terminal.rows*this._charMeasure.height;return t>=0&&t<=r?0:(t>r&&(t-=r),t=Math.min(Math.max(t,-50),50),(t/=50)/Math.abs(t)+Math.round(14*t))},t.prototype._onMouseDown=function(e){0===e.button&&(e.preventDefault(),this._dragScrollAmount=0,this._setMouseClickCount(e),e.shiftKey?this._onShiftClick(e):1===this._clickCount?this._onSingleClick(e):2===this._clickCount?this._onDoubleClick(e):3===this._clickCount&&this._onTripleClick(e),this._addMouseDownListeners(),this.refresh(!0))},t.prototype._addMouseDownListeners=function(){var e=this;this._rowContainer.ownerDocument.addEventListener("mousemove",this._mouseMoveListener),this._rowContainer.ownerDocument.addEventListener("mouseup",this._mouseUpListener),this._dragScrollIntervalTimer=setInterval(function(){return e._dragScroll()},50)},t.prototype._removeMouseDownListeners=function(){this._rowContainer.ownerDocument.removeEventListener("mousemove",this._mouseMoveListener),this._rowContainer.ownerDocument.removeEventListener("mouseup",this._mouseUpListener),clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=null},t.prototype._onShiftClick=function(e){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(e))},t.prototype._onSingleClick=function(e){this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=o.NORMAL,this._model.selectionStart=this._getMouseBufferCoords(e),this._model.selectionStart&&(this._model.selectionEnd=null,0===this._buffer.get(this._model.selectionStart[1])[this._model.selectionStart[0]][2]&&this._model.selectionStart[0]++)},t.prototype._onDoubleClick=function(e){var t=this._getMouseBufferCoords(e);t&&(this._activeSelectionMode=o.WORD,this._selectWordAt(t))},t.prototype._onTripleClick=function(e){var t=this._getMouseBufferCoords(e);t&&(this._activeSelectionMode=o.LINE,this._selectLineAt(t[1]))},t.prototype._setMouseClickCount=function(e){var t=(new Date).getTime();(t-this._lastMouseDownTime>400||this._distanceFromLastMousePosition(e)>10)&&(this._clickCount=0),this._lastMouseDownTime=t,this._lastMousePosition=[e.pageX,e.pageY],this._clickCount++},t.prototype._distanceFromLastMousePosition=function(e){return Math.max(Math.abs(this._lastMousePosition[0]-e.pageX),Math.abs(this._lastMousePosition[1]-e.pageY))},t.prototype._onMouseMove=function(e){var t=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(e),this._activeSelectionMode===o.LINE?this._model.selectionEnd[1]0?this._model.selectionEnd[0]=this._terminal.cols-1:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]0?this._model.selectionEnd=[this._terminal.cols-1,this._terminal.ydisp+this._terminal.rows]:this._model.selectionEnd=[0,this._terminal.ydisp],this.refresh())},t.prototype._onMouseUp=function(e){this._removeMouseDownListeners()},t.prototype._convertViewportColToCharacterIndex=function(e,t){for(var r=t[0],i=0;t[0]>=i;i++)0===e[i][2]&&r--;return r},t.prototype._getWordAt=function(e){var t=this._buffer.get(e[1]),r=this._translateBufferLineToString(t,!1),i=this._convertViewportColToCharacterIndex(t,e),o=i,s=e[0]-o,n=0,a=0;if(" "===r.charAt(o)){for(;o>0&&" "===r.charAt(o-1);)o--;for(;i0&&!this._isCharWordSeparator(r.charAt(o-1));)0===t[l-1][2]&&(n++,l--),o--,l--;for(;i+1=0},t.prototype._selectLineAt=function(e){this._model.selectionStart=[0,e],this._model.selectionStartLength=this._terminal.cols},t}(a.EventEmitter);t.SelectionManager=u},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e){this._terminal=e,this.clearSelection()}return e.prototype.clearSelection=function(){this.selectionStart=null,this.selectionEnd=null,this.isSelectAllActive=!1,this.selectionStartLength=0},Object.defineProperty(e.prototype,"finalSelectionStart",{get:function(){return this.isSelectAllActive?[0,0]:this.selectionEnd&&this.selectionStart&&this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"finalSelectionEnd",{get:function(){return this.isSelectAllActive?[this._terminal.cols,this._terminal.ybase+this._terminal.rows-1]:this.selectionStart?!this.selectionEnd||this.areSelectionValuesReversed()?[this.selectionStart[0]+this.selectionStartLength,this.selectionStart[1]]:this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]?[Math.max(this.selectionStart[0]+this.selectionStartLength,this.selectionEnd[0]),this.selectionEnd[1]]:this.selectionEnd:null},enumerable:!0,configurable:!0}),e.prototype.areSelectionValuesReversed=function(){var e=this.selectionStart,t=this.selectionEnd;return e[1]>t[1]||e[1]===t[1]&&e[0]>t[0]},e.prototype.onTrim=function(e){return this.selectionStart&&(this.selectionStart[1]-=e),this.selectionEnd&&(this.selectionEnd[1]-=e),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)},e}();t.SelectionModel=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t,r,i){var o=this;this.terminal=e,this.viewportElement=t,this.scrollArea=r,this.charMeasure=i,this.currentRowHeight=0,this.lastRecordedBufferLength=0,this.lastRecordedViewportHeight=0,this.terminal.on("scroll",this.syncScrollArea.bind(this)),this.terminal.on("resize",this.syncScrollArea.bind(this)),this.viewportElement.addEventListener("scroll",this.onScroll.bind(this)),setTimeout(function(){return o.syncScrollArea()},0)}return e.prototype.refresh=function(){if(this.charMeasure.height>0){var e=this.charMeasure.height!==this.currentRowHeight;e&&(this.currentRowHeight=this.charMeasure.height,this.viewportElement.style.lineHeight=this.charMeasure.height+"px",this.terminal.rowContainer.style.lineHeight=this.charMeasure.height+"px");var t=this.lastRecordedViewportHeight!==this.terminal.rows;(e||t)&&(this.lastRecordedViewportHeight=this.terminal.rows,this.viewportElement.style.height=this.charMeasure.height*this.terminal.rows+"px",this.terminal.selectionContainer.style.height=this.viewportElement.style.height),this.scrollArea.style.height=this.charMeasure.height*this.lastRecordedBufferLength+"px"}},e.prototype.syncScrollArea=function(){this.lastRecordedBufferLength!==this.terminal.lines.length?(this.lastRecordedBufferLength=this.terminal.lines.length,this.refresh()):this.lastRecordedViewportHeight!==this.terminal.rows?this.refresh():this.charMeasure.height!==this.currentRowHeight&&this.refresh();var e=this.terminal.ydisp*this.currentRowHeight;this.viewportElement.scrollTop!==e&&(this.viewportElement.scrollTop=e)},e.prototype.onScroll=function(e){var t=Math.round(this.viewportElement.scrollTop/this.currentRowHeight)-this.terminal.ydisp;this.terminal.scrollDisp(t,!0)},e.prototype.onWheel=function(e){if(0!==e.deltaY){var t=1;e.deltaMode===WheelEvent.DOM_DELTA_LINE?t=this.currentRowHeight:e.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(t=this.currentRowHeight*this.terminal.rows),this.viewportElement.scrollTop+=e.deltaY*t,e.preventDefault()}},e.prototype.onTouchStart=function(e){this.lastTouchY=e.touches[0].pageY},e.prototype.onTouchMove=function(e){var t=this.lastTouchY-e.touches[0].pageY;this.lastTouchY=e.touches[0].pageY,0!==t&&(this.viewportElement.scrollTop+=t,e.preventDefault())},e}();t.Viewport=i},function(e,t,r){"use strict";function i(e,t){return t?e.replace(/\r?\n/g,"\r"):e}function o(e,t){t.style.position="fixed",t.style.width="20px",t.style.height="20px",t.style.left=e.clientX-10+"px",t.style.top=e.clientY-10+"px",t.style.zIndex="1000",t.focus(),setTimeout(function(){t.style.position=null,t.style.width=null,t.style.height=null,t.style.left=null,t.style.top=null,t.style.zIndex=null},4)}Object.defineProperty(t,"__esModule",{value:!0}),t.prepareTextForTerminal=i,t.copyHandler=function(e,t,r){t.browser.isMSIE?window.clipboardData.setData("Text",r.selectionText):e.clipboardData.setData("text/plain",r.selectionText),e.preventDefault()},t.pasteHandler=function(e,t){e.stopPropagation();var r=function(r){return r=i(r,t.browser.isMSWindows),t.handler(r),t.textarea.value="",t.emit("paste",r),t.cancel(e)};t.browser.isMSIE?window.clipboardData&&r(window.clipboardData.getData("Text")):e.clipboardData&&r(e.clipboardData.getData("text/plain"))},t.moveTextAreaUnderMouseCursor=o,t.rightClickHandler=function(e,t,r){o(e,t),t.value=r.selectionText,t.select()}},function(e,t,r){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=function(e){function t(t,r){var i=e.call(this)||this;return i._document=t,i._parentElement=r,i}return i(t,e),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this._height},enumerable:!0,configurable:!0}),t.prototype.measure=function(){var e=this;this._measureElement?this._doMeasure():(this._measureElement=this._document.createElement("span"),this._measureElement.style.position="absolute",this._measureElement.style.top="0",this._measureElement.style.left="-9999em",this._measureElement.textContent="W",this._measureElement.setAttribute("aria-hidden","true"),this._parentElement.appendChild(this._measureElement),setTimeout(function(){return e._doMeasure()},0))},t.prototype._doMeasure=function(){var e=this._measureElement.getBoundingClientRect();0!==e.width&&0!==e.height&&(this._width===e.width&&this._height===e.height||(this._width=e.width,this._height=e.height,this.emit("charsizechanged")))},t}(r(1).EventEmitter);t.CharMeasure=o},function(e,t,r){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=function(e){function t(t){var r=e.call(this)||this;return r._array=new Array(t),r._startIndex=0,r._length=0,r}return i(t,e),Object.defineProperty(t.prototype,"maxLength",{get:function(){return this._array.length},set:function(e){for(var t=new Array(e),r=0;rthis._length)for(var t=this._length;t=e;o--)this._array[this._getCyclicIndex(o+r.length)]=this._array[this._getCyclicIndex(o)];for(var o=0;othis.maxLength){var s=this._length+r.length-this.maxLength;this._startIndex+=s,this._length=this.maxLength,this.emit("trim",s)}else this._length+=r.length}},t.prototype.trimStart=function(e){e>this._length&&(e=this._length),this._startIndex+=e,this._length-=e,this.emit("trim",e)},t.prototype.shiftElements=function(e,t,r){if(!(t<=0)){if(e<0||e>=this._length)throw new Error("start argument out of range");if(e+r<0)throw new Error("Cannot shift elements in list beyond index 0");if(r>0){for(o=t-1;o>=0;o--)this.set(e+o+r,this.get(e+o));var i=e+t+r-this._length;if(i>0)for(this._length+=i;this._length>this.maxLength;)this._length--,this._startIndex++,this.emit("trim",1)}else for(var o=0;o=0}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(11),o=r(14),s=r(13),n=r(12),a=document.getElementById("terminal");if(null!==a){var l;l="hterm"==gotty_term?new i.Hterm(a):new o.Xterm(a);var h=("https:"==window.location.protocol?"wss://":"ws://")+window.location.host+window.location.pathname+"ws",c=window.location.search,u=new n.ConnectionFactory(h,s.protocols),d=new s.WebTTY(l,u,c,gotty_auth_token).open();window.addEventListener("unload",function(){d(),l.close()})}},function(e,t,r){function i(e){return r(o(e))}function o(e){var t=s[e];if(!(t+1))throw new Error("Cannot find module '"+e+"'.");return t}var s={"./attach/attach":5,"./attach/attach.js":5,"./attach/package.json":30,"./fit/fit":6,"./fit/fit.js":6,"./fit/package.json":31,"./fullscreen/fullscreen":7,"./fullscreen/fullscreen.css":32,"./fullscreen/fullscreen.js":7,"./fullscreen/package.json":33,"./terminado/package.json":34,"./terminado/terminado":8,"./terminado/terminado.js":8};i.keys=function(){return Object.keys(s)},i.resolve=o,e.exports=i,i.id=29},function(e,t){e.exports={name:"xterm.attach",main:"attach.js",private:!0}},function(e,t){e.exports={name:"xterm.fit",main:"fit.js",private:!0}},function(e,t){throw new Error("Module parse failed: /home/yudai/archive/products/2015/gotty/src/github.com/yudai/gotty/js/node_modules/xterm/lib/addons/fullscreen/fullscreen.css Unexpected token (1:0)\nYou may need an appropriate loader to handle this file type.\n| .xterm.fullscreen {\n| position: fixed;\n| top: 0;")},function(e,t){e.exports={name:"xterm.fullscreen",main:"fullscreen.js",private:!0}},function(e,t){e.exports={name:"xterm.terminado",main:"terminado.js",private:!0}}]); \ No newline at end of file +/*! For license information please see gotty-bundle.js.LICENSE.txt */ +(()=>{var e={50:e=>{var t;self,t=()=>(()=>{"use strict";var e={6:(e,t)=>{function i(e){try{const t=new URL(e),i=t.password&&t.username?`${t.protocol}//${t.username}:${t.password}@${t.host}`:t.username?`${t.protocol}//${t.username}@${t.host}`:`${t.protocol}//${t.host}`;return e.toLocaleLowerCase().startsWith(i.toLocaleLowerCase())}catch(e){return!1}}Object.defineProperty(t,"__esModule",{value:!0}),t.LinkComputer=t.WebLinkProvider=void 0,t.WebLinkProvider=class{constructor(e,t,i,r={}){this._terminal=e,this._regex=t,this._handler=i,this._options=r}provideLinks(e,t){const i=r.computeLink(e,this._regex,this._terminal,this._handler);t(this._addCallbacks(i))}_addCallbacks(e){return e.map(e=>(e.leave=this._options.leave,e.hover=(t,i)=>{if(this._options.hover){const{range:r}=e;this._options.hover(t,i,r)}},e))}};class r{static computeLink(e,t,s,o){const n=new RegExp(t.source,(t.flags||"")+"g"),[a,h]=r._getWindowedLineStrings(e-1,s),l=a.join("");let c;const u=[];for(;c=n.exec(l);){const e=c[0];if(!i(e))continue;const[t,n]=r._mapStrIdx(s,h,0,c.index),[a,l]=r._mapStrIdx(s,t,n,e.length);if(-1===t||-1===n||-1===a||-1===l)continue;const d={start:{x:n+1,y:t+1},end:{x:l,y:a+1}};u.push({range:d,text:e,activate:o})}return u}static _getWindowedLineStrings(e,t){let i,r=e,s=e,o=0,n="";const a=[];if(i=t.buffer.active.getLine(e)){const e=i.translateToString(!0);if(i.isWrapped&&" "!==e[0]){for(o=0;(i=t.buffer.active.getLine(--r))&&o<2048&&(n=i.translateToString(!0),o+=n.length,a.push(n),i.isWrapped&&-1===n.indexOf(" ")););a.reverse()}for(a.push(e),o=0;(i=t.buffer.active.getLine(++s))&&i.isWrapped&&o<2048&&(n=i.translateToString(!0),o+=n.length,a.push(n),-1===n.indexOf(" ")););}return[a,r]}static _mapStrIdx(e,t,i,r){const s=e.buffer.active,o=s.getNullCell();let n=i;for(;r;){const e=s.getLine(t);if(!e)return[-1,-1];for(let i=n;i{var e=r;Object.defineProperty(e,"__esModule",{value:!0}),e.WebLinksAddon=void 0;const t=i(6),s=/(https?|HTTPS?):[/]{2}[^\s"'!*(){}|\\\^<>`]*[^\s"':,.!?{}|\\\^~\[\]`()<>]/;function o(e,t){const i=window.open();if(i){try{i.opener=null}catch{}i.location.href=t}else console.warn("Opening link blocked as opener could not be cleared")}e.WebLinksAddon=class{constructor(e=o,t={}){this._handler=e,this._options=t}activate(e){this._terminal=e;const i=this._options,r=i.urlRegex||s;this._linkProvider=this._terminal.registerLinkProvider(new t.WebLinkProvider(this._terminal,r,this._handler,i))}dispose(){this._linkProvider?.dispose()}}})(),r})(),e.exports=t()},59:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.WebTTY=t.msgSetReconnect=t.msgSetPreferences=t.msgSetWindowTitle=t.msgPong=t.msgOutput=t.msgUnknownOutput=t.msgResizeTerminal=t.msgPing=t.msgInput=t.msgInputUnknown=t.protocols=void 0,t.protocols=["webtty"],t.msgInputUnknown="0",t.msgInput="1",t.msgPing="2",t.msgResizeTerminal="3",t.msgUnknownOutput="0",t.msgOutput="1",t.msgPong="2",t.msgSetWindowTitle="3",t.msgSetPreferences="4",t.msgSetReconnect="5";var i=function(){function e(e,t,i,r){this.term=e,this.connectionFactory=t,this.args=i,this.authToken=r,this.reconnect=-1}return e.prototype.open=function(){var e,i,r=this,s=this.connectionFactory.create(),o=function(){s.onOpen(function(){var i=r.term.info();s.send(JSON.stringify({Arguments:r.args,AuthToken:r.authToken}));var o=function(e,i){s.send(t.msgResizeTerminal+JSON.stringify({columns:e,rows:i}))};r.term.onResize(o),o(i.columns,i.rows),r.term.onInput(function(e){s.send(t.msgInput+e)}),e=setInterval(function(){s.send(t.msgPing)},3e4)}),s.onReceive(function(e){var i=e.slice(1);switch(e[0]){case t.msgOutput:r.term.output(atob(i));break;case t.msgPong:break;case t.msgSetWindowTitle:r.term.setWindowTitle(i);break;case t.msgSetPreferences:var s=JSON.parse(i);r.term.setPreferences(s);break;case t.msgSetReconnect:var o=JSON.parse(i);console.log("Enabling reconnect: "+o+" seconds"),r.reconnect=o}}),s.onClose(function(){clearInterval(e),r.term.deactivate(),r.term.showMessage("Connection Closed",0),r.reconnect>0&&(i=setTimeout(function(){s=r.connectionFactory.create(),r.term.reset(),o()},1e3*r.reconnect))}),s.open()};return o(),function(){clearTimeout(i),s.close()}},e}();t.WebTTY=i},134:(e,t,i)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Xterm=void 0;var r=i(279),s=i(202),o=i(458),n=i(766),a=i(50),h=i(148),l=function(){function e(e){var t=this;this.disposables=[],this.elem=e;var i=["Windows","Win16","Win32","WinCE"].indexOf(navigator.platform)>=0;this.term=new s.Terminal({cursorStyle:"block",cursorBlink:!0,windowsMode:i,fontFamily:"DejaVu Sans Mono, Everson Mono, FreeMono, Menlo, Terminal, monospace, Apple Symbols",fontSize:12}),this.fitAddon=new o.FitAddon,this.term.loadAddon(this.fitAddon),this.term.loadAddon(new a.WebLinksAddon),this.message=e.ownerDocument.createElement("div"),this.message.className="xterm-overlay",this.messageTimeout=2e3,this.resizeListener=function(){t.fitAddon.fit(),t.term.scrollToBottom(),t.showMessage(String(t.term.cols)+"x"+String(t.term.rows),t.messageTimeout)},this.term.open(e),this.term.focus(),window.addEventListener("resize",function(){t.resizeListener()}),(0,h.waitForElement)(".xterm-screen > canvas",5e3).then(function(){window.requestAnimationFrame(function(){window.requestAnimationFrame(function(){t.resizeListener()})})}).catch(function(e){console.error(e)}),this.decoder=new r.lib.UTF8Decoder}return e.prototype.info=function(){return{columns:this.term.cols,rows:this.term.rows}},e.prototype.output=function(e){this.term.write(this.decoder.decode(e))},e.prototype.showMessage=function(e,t){var i=this;this.message.textContent=e,this.elem.appendChild(this.message),this.messageTimer&&clearTimeout(this.messageTimer),t>0&&(this.messageTimer=setTimeout(function(){i.elem.removeChild(i.message)},t))},e.prototype.removeMessage=function(){this.message.parentNode==this.elem&&this.elem.removeChild(this.message)},e.prototype.setWindowTitle=function(e){document.title=e},e.prototype.setPreferences=function(e){var t=this;Object.keys(e).forEach(function(e){e&&"enable-webgl"==e&&t.term.loadAddon(new n.WebglAddon)})},e.prototype.onInput=function(e){this.disposables.push(this.term.onData(function(t){e(t)}))},e.prototype.onResize=function(e){this.disposables.push(this.term.onResize(function(t){e(t.cols,t.rows)}))},e.prototype.deactivate=function(){this.disposables.forEach(function(e){return e.dispose()}),this.term.blur()},e.prototype.reset=function(){this.removeMessage(),this.term.clear()},e.prototype.close=function(){window.removeEventListener("resize",this.resizeListener),this.term.dispose()},e}();t.Xterm=l},148:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.waitForElement=void 0,t.waitForElement=function(e,t){return new Promise(function(i,r){var s=document.querySelector(e);if(s)i(s);else{var o=new MutationObserver(function(){var t=document.querySelector(e);t&&(o.disconnect(),i(t))});o.observe(document.body,{childList:!0,subtree:!0}),t&&setTimeout(function(){o.disconnect(),r(new Error("Timeout waiting for element: ".concat(e)))},t)}})}},202:e=>{var t;globalThis,t=()=>(()=>{"use strict";var e={4567:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.AccessibilityManager=void 0;const o=i(9042),n=i(9924),a=i(844),h=i(4725),l=i(2585),c=i(3656);let u=t.AccessibilityManager=class extends a.Disposable{constructor(e,t,i,r){super(),this._terminal=e,this._coreBrowserService=i,this._renderService=r,this._rowColumns=new WeakMap,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce="",this._accessibilityContainer=this._coreBrowserService.mainDocument.createElement("div"),this._accessibilityContainer.classList.add("xterm-accessibility"),this._rowContainer=this._coreBrowserService.mainDocument.createElement("div"),this._rowContainer.setAttribute("role","list"),this._rowContainer.classList.add("xterm-accessibility-tree"),this._rowElements=[];for(let e=0;ethis._handleBoundaryFocus(e,0),this._bottomBoundaryFocusListener=e=>this._handleBoundaryFocus(e,1),this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions(),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=this._coreBrowserService.mainDocument.createElement("div"),this._liveRegion.classList.add("live-region"),this._liveRegion.setAttribute("aria-live","assertive"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this.register(new n.TimeBasedDebouncer(this._renderRows.bind(this))),!this._terminal.element)throw new Error("Cannot enable accessibility before Terminal.open");this._terminal.element.insertAdjacentElement("afterbegin",this._accessibilityContainer),this.register(this._terminal.onResize(e=>this._handleResize(e.rows))),this.register(this._terminal.onRender(e=>this._refreshRows(e.start,e.end))),this.register(this._terminal.onScroll(()=>this._refreshRows())),this.register(this._terminal.onA11yChar(e=>this._handleChar(e))),this.register(this._terminal.onLineFeed(()=>this._handleChar("\n"))),this.register(this._terminal.onA11yTab(e=>this._handleTab(e))),this.register(this._terminal.onKey(e=>this._handleKey(e.key))),this.register(this._terminal.onBlur(()=>this._clearLiveRegion())),this.register(this._renderService.onDimensionsChange(()=>this._refreshRowsDimensions())),this.register((0,c.addDisposableDomListener)(document,"selectionchange",()=>this._handleSelectionChange())),this.register(this._coreBrowserService.onDprChange(()=>this._refreshRowsDimensions())),this._refreshRows(),this.register((0,a.toDisposable)(()=>{this._accessibilityContainer.remove(),this._rowElements.length=0}))}_handleTab(e){for(let t=0;t0?this._charsToConsume.shift()!==e&&(this._charsToAnnounce+=e):this._charsToAnnounce+=e,"\n"===e&&(this._liveRegionLineCount++,21===this._liveRegionLineCount&&(this._liveRegion.textContent+=o.tooMuchOutput)))}_clearLiveRegion(){this._liveRegion.textContent="",this._liveRegionLineCount=0}_handleKey(e){this._clearLiveRegion(),/\p{Control}/u.test(e)||this._charsToConsume.push(e)}_refreshRows(e,t){this._liveRegionDebouncer.refresh(e,t,this._terminal.rows)}_renderRows(e,t){const i=this._terminal.buffer,r=i.lines.length.toString();for(let s=e;s<=t;s++){const e=i.lines.get(i.ydisp+s),t=[],o=e?.translateToString(!0,void 0,void 0,t)||"",n=(i.ydisp+s+1).toString(),a=this._rowElements[s];a&&(0===o.length?(a.innerText=" ",this._rowColumns.set(a,[0,1])):(a.textContent=o,this._rowColumns.set(a,t)),a.setAttribute("aria-posinset",n),a.setAttribute("aria-setsize",r))}this._announceCharacters()}_announceCharacters(){0!==this._charsToAnnounce.length&&(this._liveRegion.textContent+=this._charsToAnnounce,this._charsToAnnounce="")}_handleBoundaryFocus(e,t){const i=e.target,r=this._rowElements[0===t?1:this._rowElements.length-2];if(i.getAttribute("aria-posinset")===(0===t?"1":`${this._terminal.buffer.lines.length}`))return;if(e.relatedTarget!==r)return;let s,o;if(0===t?(s=i,o=this._rowElements.pop(),this._rowContainer.removeChild(o)):(s=this._rowElements.shift(),o=i,this._rowContainer.removeChild(s)),s.removeEventListener("focus",this._topBoundaryFocusListener),o.removeEventListener("focus",this._bottomBoundaryFocusListener),0===t){const e=this._createAccessibilityTreeNode();this._rowElements.unshift(e),this._rowContainer.insertAdjacentElement("afterbegin",e)}else{const e=this._createAccessibilityTreeNode();this._rowElements.push(e),this._rowContainer.appendChild(e)}this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._terminal.scrollLines(0===t?-1:1),this._rowElements[0===t?1:this._rowElements.length-2].focus(),e.preventDefault(),e.stopImmediatePropagation()}_handleSelectionChange(){if(0===this._rowElements.length)return;const e=document.getSelection();if(!e)return;if(e.isCollapsed)return void(this._rowContainer.contains(e.anchorNode)&&this._terminal.clearSelection());if(!e.anchorNode||!e.focusNode)return void console.error("anchorNode and/or focusNode are null");let t={node:e.anchorNode,offset:e.anchorOffset},i={node:e.focusNode,offset:e.focusOffset};if((t.node.compareDocumentPosition(i.node)&Node.DOCUMENT_POSITION_PRECEDING||t.node===i.node&&t.offset>i.offset)&&([t,i]=[i,t]),t.node.compareDocumentPosition(this._rowElements[0])&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_FOLLOWING)&&(t={node:this._rowElements[0].childNodes[0],offset:0}),!this._rowContainer.contains(t.node))return;const r=this._rowElements.slice(-1)[0];if(i.node.compareDocumentPosition(r)&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_PRECEDING)&&(i={node:r,offset:r.textContent?.length??0}),!this._rowContainer.contains(i.node))return;const s=({node:e,offset:t})=>{const i=e instanceof Text?e.parentNode:e;let r=parseInt(i?.getAttribute("aria-posinset"),10)-1;if(isNaN(r))return console.warn("row is invalid. Race condition?"),null;const s=this._rowColumns.get(i);if(!s)return console.warn("columns is null. Race condition?"),null;let o=t=this._terminal.cols&&(++r,o=0),{row:r,column:o}},o=s(t),n=s(i);if(o&&n){if(o.row>n.row||o.row===n.row&&o.column>=n.column)throw new Error("invalid range");this._terminal.select(o.column,o.row,(n.row-o.row)*this._terminal.cols-o.column+n.column)}}_handleResize(e){this._rowElements[this._rowElements.length-1].removeEventListener("focus",this._bottomBoundaryFocusListener);for(let e=this._rowContainer.children.length;ee;)this._rowContainer.removeChild(this._rowElements.pop());this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions()}_createAccessibilityTreeNode(){const e=this._coreBrowserService.mainDocument.createElement("div");return e.setAttribute("role","listitem"),e.tabIndex=-1,this._refreshRowDimensions(e),e}_refreshRowsDimensions(){if(this._renderService.dimensions.css.cell.height){this._accessibilityContainer.style.width=`${this._renderService.dimensions.css.canvas.width}px`,this._rowElements.length!==this._terminal.rows&&this._handleResize(this._terminal.rows);for(let e=0;e{function i(e){return e.replace(/\r?\n/g,"\r")}function r(e,t){return t?"[200~"+e+"[201~":e}function s(e,t,s,o){e=r(e=i(e),s.decPrivateModes.bracketedPasteMode&&!0!==o.rawOptions.ignoreBracketedPasteMode),s.triggerDataEvent(e,!0),t.value=""}function o(e,t,i){const r=i.getBoundingClientRect(),s=e.clientX-r.left-10,o=e.clientY-r.top-10;t.style.width="20px",t.style.height="20px",t.style.left=`${s}px`,t.style.top=`${o}px`,t.style.zIndex="1000",t.focus()}Object.defineProperty(t,"__esModule",{value:!0}),t.rightClickHandler=t.moveTextAreaUnderMouseCursor=t.paste=t.handlePasteEvent=t.copyHandler=t.bracketTextForPaste=t.prepareTextForTerminal=void 0,t.prepareTextForTerminal=i,t.bracketTextForPaste=r,t.copyHandler=function(e,t){e.clipboardData&&e.clipboardData.setData("text/plain",t.selectionText),e.preventDefault()},t.handlePasteEvent=function(e,t,i,r){e.stopPropagation(),e.clipboardData&&s(e.clipboardData.getData("text/plain"),t,i,r)},t.paste=s,t.moveTextAreaUnderMouseCursor=o,t.rightClickHandler=function(e,t,i,r,s){o(e,t,i),s&&r.rightClickSelect(e),t.value=r.selectionText,t.select()}},7239:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ColorContrastCache=void 0;const r=i(1505);t.ColorContrastCache=class{constructor(){this._color=new r.TwoKeyMap,this._css=new r.TwoKeyMap}setCss(e,t,i){this._css.set(e,t,i)}getCss(e,t){return this._css.get(e,t)}setColor(e,t,i){this._color.set(e,t,i)}getColor(e,t){return this._color.get(e,t)}clear(){this._color.clear(),this._css.clear()}}},3656:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.addDisposableDomListener=void 0,t.addDisposableDomListener=function(e,t,i,r){e.addEventListener(t,i,r);let s=!1;return{dispose:()=>{s||(s=!0,e.removeEventListener(t,i,r))}}}},3551:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.Linkifier=void 0;const o=i(3656),n=i(8460),a=i(844),h=i(2585),l=i(4725);let c=t.Linkifier=class extends a.Disposable{get currentLink(){return this._currentLink}constructor(e,t,i,r,s){super(),this._element=e,this._mouseService=t,this._renderService=i,this._bufferService=r,this._linkProviderService=s,this._linkCacheDisposables=[],this._isMouseOut=!0,this._wasResized=!1,this._activeLine=-1,this._onShowLinkUnderline=this.register(new n.EventEmitter),this.onShowLinkUnderline=this._onShowLinkUnderline.event,this._onHideLinkUnderline=this.register(new n.EventEmitter),this.onHideLinkUnderline=this._onHideLinkUnderline.event,this.register((0,a.getDisposeArrayDisposable)(this._linkCacheDisposables)),this.register((0,a.toDisposable)(()=>{this._lastMouseEvent=void 0,this._activeProviderReplies?.clear()})),this.register(this._bufferService.onResize(()=>{this._clearCurrentLink(),this._wasResized=!0})),this.register((0,o.addDisposableDomListener)(this._element,"mouseleave",()=>{this._isMouseOut=!0,this._clearCurrentLink()})),this.register((0,o.addDisposableDomListener)(this._element,"mousemove",this._handleMouseMove.bind(this))),this.register((0,o.addDisposableDomListener)(this._element,"mousedown",this._handleMouseDown.bind(this))),this.register((0,o.addDisposableDomListener)(this._element,"mouseup",this._handleMouseUp.bind(this)))}_handleMouseMove(e){this._lastMouseEvent=e;const t=this._positionFromMouseEvent(e,this._element,this._mouseService);if(!t)return;this._isMouseOut=!1;const i=e.composedPath();for(let e=0;e{e?.forEach(e=>{e.link.dispose&&e.link.dispose()})}),this._activeProviderReplies=new Map,this._activeLine=e.y);let i=!1;for(const[r,s]of this._linkProviderService.linkProviders.entries())if(t){const t=this._activeProviderReplies?.get(r);t&&(i=this._checkLinkProviderResult(r,e,i))}else s.provideLinks(e.y,t=>{if(this._isMouseOut)return;const s=t?.map(e=>({link:e}));this._activeProviderReplies?.set(r,s),i=this._checkLinkProviderResult(r,e,i),this._activeProviderReplies?.size===this._linkProviderService.linkProviders.length&&this._removeIntersectingLinks(e.y,this._activeProviderReplies)})}_removeIntersectingLinks(e,t){const i=new Set;for(let r=0;re?this._bufferService.cols:r.link.range.end.x;for(let e=o;e<=n;e++){if(i.has(e)){s.splice(t--,1);break}i.add(e)}}}}_checkLinkProviderResult(e,t,i){if(!this._activeProviderReplies)return i;const r=this._activeProviderReplies.get(e);let s=!1;for(let t=0;tthis._linkAtPosition(e.link,t));e&&(i=!0,this._handleNewLink(e))}if(this._activeProviderReplies.size===this._linkProviderService.linkProviders.length&&!i)for(let e=0;ethis._linkAtPosition(e.link,t));if(r){i=!0,this._handleNewLink(r);break}}return i}_handleMouseDown(){this._mouseDownLink=this._currentLink}_handleMouseUp(e){if(!this._currentLink)return;const t=this._positionFromMouseEvent(e,this._element,this._mouseService);t&&this._mouseDownLink===this._currentLink&&this._linkAtPosition(this._currentLink.link,t)&&this._currentLink.link.activate(e,this._currentLink.link.text)}_clearCurrentLink(e,t){this._currentLink&&this._lastMouseEvent&&(!e||!t||this._currentLink.link.range.start.y>=e&&this._currentLink.link.range.end.y<=t)&&(this._linkLeave(this._element,this._currentLink.link,this._lastMouseEvent),this._currentLink=void 0,(0,a.disposeArray)(this._linkCacheDisposables))}_handleNewLink(e){if(!this._lastMouseEvent)return;const t=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);t&&this._linkAtPosition(e.link,t)&&(this._currentLink=e,this._currentLink.state={decorations:{underline:void 0===e.link.decorations||e.link.decorations.underline,pointerCursor:void 0===e.link.decorations||e.link.decorations.pointerCursor},isHovered:!0},this._linkHover(this._element,e.link,this._lastMouseEvent),e.link.decorations={},Object.defineProperties(e.link.decorations,{pointerCursor:{get:()=>this._currentLink?.state?.decorations.pointerCursor,set:e=>{this._currentLink?.state&&this._currentLink.state.decorations.pointerCursor!==e&&(this._currentLink.state.decorations.pointerCursor=e,this._currentLink.state.isHovered&&this._element.classList.toggle("xterm-cursor-pointer",e))}},underline:{get:()=>this._currentLink?.state?.decorations.underline,set:t=>{this._currentLink?.state&&this._currentLink?.state?.decorations.underline!==t&&(this._currentLink.state.decorations.underline=t,this._currentLink.state.isHovered&&this._fireUnderlineEvent(e.link,t))}}}),this._linkCacheDisposables.push(this._renderService.onRenderedViewportChange(e=>{if(!this._currentLink)return;const t=0===e.start?0:e.start+1+this._bufferService.buffer.ydisp,i=this._bufferService.buffer.ydisp+1+e.end;if(this._currentLink.link.range.start.y>=t&&this._currentLink.link.range.end.y<=i&&(this._clearCurrentLink(t,i),this._lastMouseEvent)){const e=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);e&&this._askForLink(e,!1)}})))}_linkHover(e,t,i){this._currentLink?.state&&(this._currentLink.state.isHovered=!0,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!0),this._currentLink.state.decorations.pointerCursor&&e.classList.add("xterm-cursor-pointer")),t.hover&&t.hover(i,t.text)}_fireUnderlineEvent(e,t){const i=e.range,r=this._bufferService.buffer.ydisp,s=this._createLinkUnderlineEvent(i.start.x-1,i.start.y-r-1,i.end.x,i.end.y-r-1,void 0);(t?this._onShowLinkUnderline:this._onHideLinkUnderline).fire(s)}_linkLeave(e,t,i){this._currentLink?.state&&(this._currentLink.state.isHovered=!1,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!1),this._currentLink.state.decorations.pointerCursor&&e.classList.remove("xterm-cursor-pointer")),t.leave&&t.leave(i,t.text)}_linkAtPosition(e,t){const i=e.range.start.y*this._bufferService.cols+e.range.start.x,r=e.range.end.y*this._bufferService.cols+e.range.end.x,s=t.y*this._bufferService.cols+t.x;return i<=s&&s<=r}_positionFromMouseEvent(e,t,i){const r=i.getCoords(e,t,this._bufferService.cols,this._bufferService.rows);if(r)return{x:r[0],y:r[1]+this._bufferService.buffer.ydisp}}_createLinkUnderlineEvent(e,t,i,r,s){return{x1:e,y1:t,x2:i,y2:r,cols:this._bufferService.cols,fg:s}}};t.Linkifier=c=r([s(1,l.IMouseService),s(2,l.IRenderService),s(3,h.IBufferService),s(4,l.ILinkProviderService)],c)},9042:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.tooMuchOutput=t.promptLabel=void 0,t.promptLabel="Terminal input",t.tooMuchOutput="Too much output to announce, navigate to rows manually to read"},3730:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.OscLinkProvider=void 0;const o=i(511),n=i(2585);let a=t.OscLinkProvider=class{constructor(e,t,i){this._bufferService=e,this._optionsService=t,this._oscLinkService=i}provideLinks(e,t){const i=this._bufferService.buffer.lines.get(e-1);if(!i)return void t(void 0);const r=[],s=this._optionsService.rawOptions.linkHandler,n=new o.CellData,a=i.getTrimmedLength();let l=-1,c=-1,u=!1;for(let t=0;ts?s.activate(e,t,o):h(0,t),hover:(e,t)=>s?.hover?.(e,t,o),leave:(e,t)=>s?.leave?.(e,t,o)})}u=!1,n.hasExtendedAttrs()&&n.extended.urlId?(c=t,l=n.extended.urlId):(c=-1,l=-1)}}t(r)}};function h(e,t){if(confirm(`Do you want to navigate to ${t}?\n\nWARNING: This link could potentially be dangerous`)){const e=window.open();if(e){try{e.opener=null}catch{}e.location.href=t}else console.warn("Opening link blocked as opener could not be cleared")}}t.OscLinkProvider=a=r([s(0,n.IBufferService),s(1,n.IOptionsService),s(2,n.IOscLinkService)],a)},6193:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RenderDebouncer=void 0,t.RenderDebouncer=class{constructor(e,t){this._renderCallback=e,this._coreBrowserService=t,this._refreshCallbacks=[]}dispose(){this._animationFrame&&(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}addRefreshCallback(e){return this._refreshCallbacks.push(e),this._animationFrame||(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh())),this._animationFrame}refresh(e,t,i){this._rowCount=i,e=void 0!==e?e:0,t=void 0!==t?t:this._rowCount-1,this._rowStart=void 0!==this._rowStart?Math.min(this._rowStart,e):e,this._rowEnd=void 0!==this._rowEnd?Math.max(this._rowEnd,t):t,this._animationFrame||(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._animationFrame=void 0,void 0===this._rowStart||void 0===this._rowEnd||void 0===this._rowCount)return void this._runRefreshCallbacks();const e=Math.max(this._rowStart,0),t=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(e,t),this._runRefreshCallbacks()}_runRefreshCallbacks(){for(const e of this._refreshCallbacks)e(0);this._refreshCallbacks=[]}}},3236:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Terminal=void 0;const r=i(3614),s=i(3656),o=i(3551),n=i(9042),a=i(3730),h=i(1680),l=i(3107),c=i(5744),u=i(2950),d=i(1296),_=i(428),f=i(4269),g=i(5114),p=i(8934),m=i(3230),v=i(9312),b=i(4725),C=i(6731),S=i(8055),y=i(8969),w=i(8460),A=i(844),T=i(6114),E=i(8437),x=i(2584),R=i(7399),k=i(5941),L=i(9074),M=i(2585),D=i(5435),P=i(4567),B=i(779);class F extends y.CoreTerminal{get onFocus(){return this._onFocus.event}get onBlur(){return this._onBlur.event}get onA11yChar(){return this._onA11yCharEmitter.event}get onA11yTab(){return this._onA11yTabEmitter.event}get onWillOpen(){return this._onWillOpen.event}constructor(e={}){super(e),this.browser=T,this._keyDownHandled=!1,this._keyDownSeen=!1,this._keyPressHandled=!1,this._unprocessedDeadKey=!1,this._accessibilityManager=this.register(new A.MutableDisposable),this._onCursorMove=this.register(new w.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onKey=this.register(new w.EventEmitter),this.onKey=this._onKey.event,this._onRender=this.register(new w.EventEmitter),this.onRender=this._onRender.event,this._onSelectionChange=this.register(new w.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onTitleChange=this.register(new w.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onBell=this.register(new w.EventEmitter),this.onBell=this._onBell.event,this._onFocus=this.register(new w.EventEmitter),this._onBlur=this.register(new w.EventEmitter),this._onA11yCharEmitter=this.register(new w.EventEmitter),this._onA11yTabEmitter=this.register(new w.EventEmitter),this._onWillOpen=this.register(new w.EventEmitter),this._setup(),this._decorationService=this._instantiationService.createInstance(L.DecorationService),this._instantiationService.setService(M.IDecorationService,this._decorationService),this._linkProviderService=this._instantiationService.createInstance(B.LinkProviderService),this._instantiationService.setService(b.ILinkProviderService,this._linkProviderService),this._linkProviderService.registerLinkProvider(this._instantiationService.createInstance(a.OscLinkProvider)),this.register(this._inputHandler.onRequestBell(()=>this._onBell.fire())),this.register(this._inputHandler.onRequestRefreshRows((e,t)=>this.refresh(e,t))),this.register(this._inputHandler.onRequestSendFocus(()=>this._reportFocus())),this.register(this._inputHandler.onRequestReset(()=>this.reset())),this.register(this._inputHandler.onRequestWindowsOptionsReport(e=>this._reportWindowsOptions(e))),this.register(this._inputHandler.onColor(e=>this._handleColorEvent(e))),this.register((0,w.forwardEvent)(this._inputHandler.onCursorMove,this._onCursorMove)),this.register((0,w.forwardEvent)(this._inputHandler.onTitleChange,this._onTitleChange)),this.register((0,w.forwardEvent)(this._inputHandler.onA11yChar,this._onA11yCharEmitter)),this.register((0,w.forwardEvent)(this._inputHandler.onA11yTab,this._onA11yTabEmitter)),this.register(this._bufferService.onResize(e=>this._afterResize(e.cols,e.rows))),this.register((0,A.toDisposable)(()=>{this._customKeyEventHandler=void 0,this.element?.parentNode?.removeChild(this.element)}))}_handleColorEvent(e){if(this._themeService)for(const t of e){let e,i="";switch(t.index){case 256:e="foreground",i="10";break;case 257:e="background",i="11";break;case 258:e="cursor",i="12";break;default:e="ansi",i="4;"+t.index}switch(t.type){case 0:const r=S.color.toColorRGB("ansi"===e?this._themeService.colors.ansi[t.index]:this._themeService.colors[e]);this.coreService.triggerDataEvent(`${x.C0.ESC}]${i};${(0,k.toRgbString)(r)}${x.C1_ESCAPED.ST}`);break;case 1:if("ansi"===e)this._themeService.modifyColors(e=>e.ansi[t.index]=S.channels.toColor(...t.color));else{const i=e;this._themeService.modifyColors(e=>e[i]=S.channels.toColor(...t.color))}break;case 2:this._themeService.restoreColor(t.index)}}}_setup(){super._setup(),this._customKeyEventHandler=void 0}get buffer(){return this.buffers.active}focus(){this.textarea&&this.textarea.focus({preventScroll:!0})}_handleScreenReaderModeOptionChange(e){e?!this._accessibilityManager.value&&this._renderService&&(this._accessibilityManager.value=this._instantiationService.createInstance(P.AccessibilityManager,this)):this._accessibilityManager.clear()}_handleTextAreaFocus(e){this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(x.C0.ESC+"[I"),this.element.classList.add("focus"),this._showCursor(),this._onFocus.fire()}blur(){return this.textarea?.blur()}_handleTextAreaBlur(){this.textarea.value="",this.refresh(this.buffer.y,this.buffer.y),this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(x.C0.ESC+"[O"),this.element.classList.remove("focus"),this._onBlur.fire()}_syncTextArea(){if(!this.textarea||!this.buffer.isCursorInViewport||this._compositionHelper.isComposing||!this._renderService)return;const e=this.buffer.ybase+this.buffer.y,t=this.buffer.lines.get(e);if(!t)return;const i=Math.min(this.buffer.x,this.cols-1),r=this._renderService.dimensions.css.cell.height,s=t.getWidth(i),o=this._renderService.dimensions.css.cell.width*s,n=this.buffer.y*this._renderService.dimensions.css.cell.height,a=i*this._renderService.dimensions.css.cell.width;this.textarea.style.left=a+"px",this.textarea.style.top=n+"px",this.textarea.style.width=o+"px",this.textarea.style.height=r+"px",this.textarea.style.lineHeight=r+"px",this.textarea.style.zIndex="-5"}_initGlobal(){this._bindKeys(),this.register((0,s.addDisposableDomListener)(this.element,"copy",e=>{this.hasSelection()&&(0,r.copyHandler)(e,this._selectionService)}));const e=e=>(0,r.handlePasteEvent)(e,this.textarea,this.coreService,this.optionsService);this.register((0,s.addDisposableDomListener)(this.textarea,"paste",e)),this.register((0,s.addDisposableDomListener)(this.element,"paste",e)),T.isFirefox?this.register((0,s.addDisposableDomListener)(this.element,"mousedown",e=>{2===e.button&&(0,r.rightClickHandler)(e,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})):this.register((0,s.addDisposableDomListener)(this.element,"contextmenu",e=>{(0,r.rightClickHandler)(e,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})),T.isLinux&&this.register((0,s.addDisposableDomListener)(this.element,"auxclick",e=>{1===e.button&&(0,r.moveTextAreaUnderMouseCursor)(e,this.textarea,this.screenElement)}))}_bindKeys(){this.register((0,s.addDisposableDomListener)(this.textarea,"keyup",e=>this._keyUp(e),!0)),this.register((0,s.addDisposableDomListener)(this.textarea,"keydown",e=>this._keyDown(e),!0)),this.register((0,s.addDisposableDomListener)(this.textarea,"keypress",e=>this._keyPress(e),!0)),this.register((0,s.addDisposableDomListener)(this.textarea,"compositionstart",()=>this._compositionHelper.compositionstart())),this.register((0,s.addDisposableDomListener)(this.textarea,"compositionupdate",e=>this._compositionHelper.compositionupdate(e))),this.register((0,s.addDisposableDomListener)(this.textarea,"compositionend",()=>this._compositionHelper.compositionend())),this.register((0,s.addDisposableDomListener)(this.textarea,"input",e=>this._inputEvent(e),!0)),this.register(this.onRender(()=>this._compositionHelper.updateCompositionElements()))}open(e){if(!e)throw new Error("Terminal requires a parent element.");if(e.isConnected||this._logService.debug("Terminal.open was called on an element that was not attached to the DOM"),this.element?.ownerDocument.defaultView&&this._coreBrowserService)return void(this.element.ownerDocument.defaultView!==this._coreBrowserService.window&&(this._coreBrowserService.window=this.element.ownerDocument.defaultView));this._document=e.ownerDocument,this.options.documentOverride&&this.options.documentOverride instanceof Document&&(this._document=this.optionsService.rawOptions.documentOverride),this.element=this._document.createElement("div"),this.element.dir="ltr",this.element.classList.add("terminal"),this.element.classList.add("xterm"),e.appendChild(this.element);const t=this._document.createDocumentFragment();this._viewportElement=this._document.createElement("div"),this._viewportElement.classList.add("xterm-viewport"),t.appendChild(this._viewportElement),this._viewportScrollArea=this._document.createElement("div"),this._viewportScrollArea.classList.add("xterm-scroll-area"),this._viewportElement.appendChild(this._viewportScrollArea),this.screenElement=this._document.createElement("div"),this.screenElement.classList.add("xterm-screen"),this.register((0,s.addDisposableDomListener)(this.screenElement,"mousemove",e=>this.updateCursorStyle(e))),this._helperContainer=this._document.createElement("div"),this._helperContainer.classList.add("xterm-helpers"),this.screenElement.appendChild(this._helperContainer),t.appendChild(this.screenElement),this.textarea=this._document.createElement("textarea"),this.textarea.classList.add("xterm-helper-textarea"),this.textarea.setAttribute("aria-label",n.promptLabel),T.isChromeOS||this.textarea.setAttribute("aria-multiline","false"),this.textarea.setAttribute("autocorrect","off"),this.textarea.setAttribute("autocapitalize","off"),this.textarea.setAttribute("spellcheck","false"),this.textarea.tabIndex=0,this._coreBrowserService=this.register(this._instantiationService.createInstance(g.CoreBrowserService,this.textarea,e.ownerDocument.defaultView??window,this._document??"undefined"!=typeof window?window.document:null)),this._instantiationService.setService(b.ICoreBrowserService,this._coreBrowserService),this.register((0,s.addDisposableDomListener)(this.textarea,"focus",e=>this._handleTextAreaFocus(e))),this.register((0,s.addDisposableDomListener)(this.textarea,"blur",()=>this._handleTextAreaBlur())),this._helperContainer.appendChild(this.textarea),this._charSizeService=this._instantiationService.createInstance(_.CharSizeService,this._document,this._helperContainer),this._instantiationService.setService(b.ICharSizeService,this._charSizeService),this._themeService=this._instantiationService.createInstance(C.ThemeService),this._instantiationService.setService(b.IThemeService,this._themeService),this._characterJoinerService=this._instantiationService.createInstance(f.CharacterJoinerService),this._instantiationService.setService(b.ICharacterJoinerService,this._characterJoinerService),this._renderService=this.register(this._instantiationService.createInstance(m.RenderService,this.rows,this.screenElement)),this._instantiationService.setService(b.IRenderService,this._renderService),this.register(this._renderService.onRenderedViewportChange(e=>this._onRender.fire(e))),this.onResize(e=>this._renderService.resize(e.cols,e.rows)),this._compositionView=this._document.createElement("div"),this._compositionView.classList.add("composition-view"),this._compositionHelper=this._instantiationService.createInstance(u.CompositionHelper,this.textarea,this._compositionView),this._helperContainer.appendChild(this._compositionView),this._mouseService=this._instantiationService.createInstance(p.MouseService),this._instantiationService.setService(b.IMouseService,this._mouseService),this.linkifier=this.register(this._instantiationService.createInstance(o.Linkifier,this.screenElement)),this.element.appendChild(t);try{this._onWillOpen.fire(this.element)}catch{}this._renderService.hasRenderer()||this._renderService.setRenderer(this._createRenderer()),this.viewport=this._instantiationService.createInstance(h.Viewport,this._viewportElement,this._viewportScrollArea),this.viewport.onRequestScrollLines(e=>this.scrollLines(e.amount,e.suppressScrollEvent,1)),this.register(this._inputHandler.onRequestSyncScrollBar(()=>this.viewport.syncScrollArea())),this.register(this.viewport),this.register(this.onCursorMove(()=>{this._renderService.handleCursorMove(),this._syncTextArea()})),this.register(this.onResize(()=>this._renderService.handleResize(this.cols,this.rows))),this.register(this.onBlur(()=>this._renderService.handleBlur())),this.register(this.onFocus(()=>this._renderService.handleFocus())),this.register(this._renderService.onDimensionsChange(()=>this.viewport.syncScrollArea())),this._selectionService=this.register(this._instantiationService.createInstance(v.SelectionService,this.element,this.screenElement,this.linkifier)),this._instantiationService.setService(b.ISelectionService,this._selectionService),this.register(this._selectionService.onRequestScrollLines(e=>this.scrollLines(e.amount,e.suppressScrollEvent))),this.register(this._selectionService.onSelectionChange(()=>this._onSelectionChange.fire())),this.register(this._selectionService.onRequestRedraw(e=>this._renderService.handleSelectionChanged(e.start,e.end,e.columnSelectMode))),this.register(this._selectionService.onLinuxMouseSelection(e=>{this.textarea.value=e,this.textarea.focus(),this.textarea.select()})),this.register(this._onScroll.event(e=>{this.viewport.syncScrollArea(),this._selectionService.refresh()})),this.register((0,s.addDisposableDomListener)(this._viewportElement,"scroll",()=>this._selectionService.refresh())),this.register(this._instantiationService.createInstance(l.BufferDecorationRenderer,this.screenElement)),this.register((0,s.addDisposableDomListener)(this.element,"mousedown",e=>this._selectionService.handleMouseDown(e))),this.coreMouseService.areMouseEventsActive?(this._selectionService.disable(),this.element.classList.add("enable-mouse-events")):this._selectionService.enable(),this.options.screenReaderMode&&(this._accessibilityManager.value=this._instantiationService.createInstance(P.AccessibilityManager,this)),this.register(this.optionsService.onSpecificOptionChange("screenReaderMode",e=>this._handleScreenReaderModeOptionChange(e))),this.options.overviewRulerWidth&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(c.OverviewRulerRenderer,this._viewportElement,this.screenElement))),this.optionsService.onSpecificOptionChange("overviewRulerWidth",e=>{!this._overviewRulerRenderer&&e&&this._viewportElement&&this.screenElement&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(c.OverviewRulerRenderer,this._viewportElement,this.screenElement)))}),this._charSizeService.measure(),this.refresh(0,this.rows-1),this._initGlobal(),this.bindMouse()}_createRenderer(){return this._instantiationService.createInstance(d.DomRenderer,this,this._document,this.element,this.screenElement,this._viewportElement,this._helperContainer,this.linkifier)}bindMouse(){const e=this,t=this.element;function i(t){const i=e._mouseService.getMouseReportCoords(t,e.screenElement);if(!i)return!1;let r,s;switch(t.overrideType||t.type){case"mousemove":s=32,void 0===t.buttons?(r=3,void 0!==t.button&&(r=t.button<3?t.button:3)):r=1&t.buttons?0:4&t.buttons?1:2&t.buttons?2:3;break;case"mouseup":s=0,r=t.button<3?t.button:3;break;case"mousedown":s=1,r=t.button<3?t.button:3;break;case"wheel":if(e._customWheelEventHandler&&!1===e._customWheelEventHandler(t))return!1;if(0===e.viewport.getLinesScrolled(t))return!1;s=t.deltaY<0?0:1,r=4;break;default:return!1}return!(void 0===s||void 0===r||r>4)&&e.coreMouseService.triggerMouseEvent({col:i.col,row:i.row,x:i.x,y:i.y,button:r,action:s,ctrl:t.ctrlKey,alt:t.altKey,shift:t.shiftKey})}const r={mouseup:null,wheel:null,mousedrag:null,mousemove:null},o={mouseup:e=>(i(e),e.buttons||(this._document.removeEventListener("mouseup",r.mouseup),r.mousedrag&&this._document.removeEventListener("mousemove",r.mousedrag)),this.cancel(e)),wheel:e=>(i(e),this.cancel(e,!0)),mousedrag:e=>{e.buttons&&i(e)},mousemove:e=>{e.buttons||i(e)}};this.register(this.coreMouseService.onProtocolChange(e=>{e?("debug"===this.optionsService.rawOptions.logLevel&&this._logService.debug("Binding to mouse events:",this.coreMouseService.explainEvents(e)),this.element.classList.add("enable-mouse-events"),this._selectionService.disable()):(this._logService.debug("Unbinding from mouse events."),this.element.classList.remove("enable-mouse-events"),this._selectionService.enable()),8&e?r.mousemove||(t.addEventListener("mousemove",o.mousemove),r.mousemove=o.mousemove):(t.removeEventListener("mousemove",r.mousemove),r.mousemove=null),16&e?r.wheel||(t.addEventListener("wheel",o.wheel,{passive:!1}),r.wheel=o.wheel):(t.removeEventListener("wheel",r.wheel),r.wheel=null),2&e?r.mouseup||(r.mouseup=o.mouseup):(this._document.removeEventListener("mouseup",r.mouseup),r.mouseup=null),4&e?r.mousedrag||(r.mousedrag=o.mousedrag):(this._document.removeEventListener("mousemove",r.mousedrag),r.mousedrag=null)})),this.coreMouseService.activeProtocol=this.coreMouseService.activeProtocol,this.register((0,s.addDisposableDomListener)(t,"mousedown",e=>{if(e.preventDefault(),this.focus(),this.coreMouseService.areMouseEventsActive&&!this._selectionService.shouldForceSelection(e))return i(e),r.mouseup&&this._document.addEventListener("mouseup",r.mouseup),r.mousedrag&&this._document.addEventListener("mousemove",r.mousedrag),this.cancel(e)})),this.register((0,s.addDisposableDomListener)(t,"wheel",e=>{if(!r.wheel){if(this._customWheelEventHandler&&!1===this._customWheelEventHandler(e))return!1;if(!this.buffer.hasScrollback){const t=this.viewport.getLinesScrolled(e);if(0===t)return;const i=x.C0.ESC+(this.coreService.decPrivateModes.applicationCursorKeys?"O":"[")+(e.deltaY<0?"A":"B");let r="";for(let e=0;e{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchStart(e),this.cancel(e)},{passive:!0})),this.register((0,s.addDisposableDomListener)(t,"touchmove",e=>{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchMove(e)?void 0:this.cancel(e)},{passive:!1}))}refresh(e,t){this._renderService?.refreshRows(e,t)}updateCursorStyle(e){this._selectionService?.shouldColumnSelect(e)?this.element.classList.add("column-select"):this.element.classList.remove("column-select")}_showCursor(){this.coreService.isCursorInitialized||(this.coreService.isCursorInitialized=!0,this.refresh(this.buffer.y,this.buffer.y))}scrollLines(e,t,i=0){1===i?(super.scrollLines(e,t,i),this.refresh(0,this.rows-1)):this.viewport?.scrollLines(e)}paste(e){(0,r.paste)(e,this.textarea,this.coreService,this.optionsService)}attachCustomKeyEventHandler(e){this._customKeyEventHandler=e}attachCustomWheelEventHandler(e){this._customWheelEventHandler=e}registerLinkProvider(e){return this._linkProviderService.registerLinkProvider(e)}registerCharacterJoiner(e){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");const t=this._characterJoinerService.register(e);return this.refresh(0,this.rows-1),t}deregisterCharacterJoiner(e){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");this._characterJoinerService.deregister(e)&&this.refresh(0,this.rows-1)}get markers(){return this.buffer.markers}registerMarker(e){return this.buffer.addMarker(this.buffer.ybase+this.buffer.y+e)}registerDecoration(e){return this._decorationService.registerDecoration(e)}hasSelection(){return!!this._selectionService&&this._selectionService.hasSelection}select(e,t,i){this._selectionService.setSelection(e,t,i)}getSelection(){return this._selectionService?this._selectionService.selectionText:""}getSelectionPosition(){if(this._selectionService&&this._selectionService.hasSelection)return{start:{x:this._selectionService.selectionStart[0],y:this._selectionService.selectionStart[1]},end:{x:this._selectionService.selectionEnd[0],y:this._selectionService.selectionEnd[1]}}}clearSelection(){this._selectionService?.clearSelection()}selectAll(){this._selectionService?.selectAll()}selectLines(e,t){this._selectionService?.selectLines(e,t)}_keyDown(e){if(this._keyDownHandled=!1,this._keyDownSeen=!0,this._customKeyEventHandler&&!1===this._customKeyEventHandler(e))return!1;const t=this.browser.isMac&&this.options.macOptionIsMeta&&e.altKey;if(!t&&!this._compositionHelper.keydown(e))return this.options.scrollOnUserInput&&this.buffer.ybase!==this.buffer.ydisp&&this.scrollToBottom(),!1;t||"Dead"!==e.key&&"AltGraph"!==e.key||(this._unprocessedDeadKey=!0);const i=(0,R.evaluateKeyboardEvent)(e,this.coreService.decPrivateModes.applicationCursorKeys,this.browser.isMac,this.options.macOptionIsMeta);if(this.updateCursorStyle(e),3===i.type||2===i.type){const t=this.rows-1;return this.scrollLines(2===i.type?-t:t),this.cancel(e,!0)}return 1===i.type&&this.selectAll(),!!this._isThirdLevelShift(this.browser,e)||(i.cancel&&this.cancel(e,!0),!i.key||!!(e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&1===e.key.length&&e.key.charCodeAt(0)>=65&&e.key.charCodeAt(0)<=90)||(this._unprocessedDeadKey?(this._unprocessedDeadKey=!1,!0):(i.key!==x.C0.ETX&&i.key!==x.C0.CR||(this.textarea.value=""),this._onKey.fire({key:i.key,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(i.key,!0),!this.optionsService.rawOptions.screenReaderMode||e.altKey||e.ctrlKey?this.cancel(e,!0):void(this._keyDownHandled=!0))))}_isThirdLevelShift(e,t){const i=e.isMac&&!this.options.macOptionIsMeta&&t.altKey&&!t.ctrlKey&&!t.metaKey||e.isWindows&&t.altKey&&t.ctrlKey&&!t.metaKey||e.isWindows&&t.getModifierState("AltGraph");return"keypress"===t.type?i:i&&(!t.keyCode||t.keyCode>47)}_keyUp(e){this._keyDownSeen=!1,this._customKeyEventHandler&&!1===this._customKeyEventHandler(e)||(function(e){return 16===e.keyCode||17===e.keyCode||18===e.keyCode}(e)||this.focus(),this.updateCursorStyle(e),this._keyPressHandled=!1)}_keyPress(e){let t;if(this._keyPressHandled=!1,this._keyDownHandled)return!1;if(this._customKeyEventHandler&&!1===this._customKeyEventHandler(e))return!1;if(this.cancel(e),e.charCode)t=e.charCode;else if(null===e.which||void 0===e.which)t=e.keyCode;else{if(0===e.which||0===e.charCode)return!1;t=e.which}return!(!t||(e.altKey||e.ctrlKey||e.metaKey)&&!this._isThirdLevelShift(this.browser,e)||(t=String.fromCharCode(t),this._onKey.fire({key:t,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(t,!0),this._keyPressHandled=!0,this._unprocessedDeadKey=!1,0))}_inputEvent(e){if(e.data&&"insertText"===e.inputType&&(!e.composed||!this._keyDownSeen)&&!this.optionsService.rawOptions.screenReaderMode){if(this._keyPressHandled)return!1;this._unprocessedDeadKey=!1;const t=e.data;return this.coreService.triggerDataEvent(t,!0),this.cancel(e),!0}return!1}resize(e,t){e!==this.cols||t!==this.rows?super.resize(e,t):this._charSizeService&&!this._charSizeService.hasValidSize&&this._charSizeService.measure()}_afterResize(e,t){this._charSizeService?.measure(),this.viewport?.syncScrollArea(!0)}clear(){if(0!==this.buffer.ybase||0!==this.buffer.y){this.buffer.clearAllMarkers(),this.buffer.lines.set(0,this.buffer.lines.get(this.buffer.ybase+this.buffer.y)),this.buffer.lines.length=1,this.buffer.ydisp=0,this.buffer.ybase=0,this.buffer.y=0;for(let e=1;e{Object.defineProperty(t,"__esModule",{value:!0}),t.TimeBasedDebouncer=void 0,t.TimeBasedDebouncer=class{constructor(e,t=1e3){this._renderCallback=e,this._debounceThresholdMS=t,this._lastRefreshMs=0,this._additionalRefreshRequested=!1}dispose(){this._refreshTimeoutID&&clearTimeout(this._refreshTimeoutID)}refresh(e,t,i){this._rowCount=i,e=void 0!==e?e:0,t=void 0!==t?t:this._rowCount-1,this._rowStart=void 0!==this._rowStart?Math.min(this._rowStart,e):e,this._rowEnd=void 0!==this._rowEnd?Math.max(this._rowEnd,t):t;const r=Date.now();if(r-this._lastRefreshMs>=this._debounceThresholdMS)this._lastRefreshMs=r,this._innerRefresh();else if(!this._additionalRefreshRequested){const e=r-this._lastRefreshMs,t=this._debounceThresholdMS-e;this._additionalRefreshRequested=!0,this._refreshTimeoutID=window.setTimeout(()=>{this._lastRefreshMs=Date.now(),this._innerRefresh(),this._additionalRefreshRequested=!1,this._refreshTimeoutID=void 0},t)}}_innerRefresh(){if(void 0===this._rowStart||void 0===this._rowEnd||void 0===this._rowCount)return;const e=Math.max(this._rowStart,0),t=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(e,t)}}},1680:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.Viewport=void 0;const o=i(3656),n=i(4725),a=i(8460),h=i(844),l=i(2585);let c=t.Viewport=class extends h.Disposable{constructor(e,t,i,r,s,n,h,l){super(),this._viewportElement=e,this._scrollArea=t,this._bufferService=i,this._optionsService=r,this._charSizeService=s,this._renderService=n,this._coreBrowserService=h,this.scrollBarWidth=0,this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._wheelPartialScroll=0,this._refreshAnimationFrame=null,this._ignoreNextScrollEvent=!1,this._smoothScrollState={startTime:0,origin:-1,target:-1},this._onRequestScrollLines=this.register(new a.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this.scrollBarWidth=this._viewportElement.offsetWidth-this._scrollArea.offsetWidth||15,this.register((0,o.addDisposableDomListener)(this._viewportElement,"scroll",this._handleScroll.bind(this))),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate(e=>this._activeBuffer=e.activeBuffer)),this._renderDimensions=this._renderService.dimensions,this.register(this._renderService.onDimensionsChange(e=>this._renderDimensions=e)),this._handleThemeChange(l.colors),this.register(l.onChangeColors(e=>this._handleThemeChange(e))),this.register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.syncScrollArea())),setTimeout(()=>this.syncScrollArea())}_handleThemeChange(e){this._viewportElement.style.backgroundColor=e.background.css}reset(){this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._coreBrowserService.window.requestAnimationFrame(()=>this.syncScrollArea())}_refresh(e){if(e)return this._innerRefresh(),void(null!==this._refreshAnimationFrame&&this._coreBrowserService.window.cancelAnimationFrame(this._refreshAnimationFrame));null===this._refreshAnimationFrame&&(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._charSizeService.height>0){this._currentRowHeight=this._renderDimensions.device.cell.height/this._coreBrowserService.dpr,this._currentDeviceCellHeight=this._renderDimensions.device.cell.height,this._lastRecordedViewportHeight=this._viewportElement.offsetHeight;const e=Math.round(this._currentRowHeight*this._lastRecordedBufferLength)+(this._lastRecordedViewportHeight-this._renderDimensions.css.canvas.height);this._lastRecordedBufferHeight!==e&&(this._lastRecordedBufferHeight=e,this._scrollArea.style.height=this._lastRecordedBufferHeight+"px")}const e=this._bufferService.buffer.ydisp*this._currentRowHeight;this._viewportElement.scrollTop!==e&&(this._ignoreNextScrollEvent=!0,this._viewportElement.scrollTop=e),this._refreshAnimationFrame=null}syncScrollArea(e=!1){if(this._lastRecordedBufferLength!==this._bufferService.buffer.lines.length)return this._lastRecordedBufferLength=this._bufferService.buffer.lines.length,void this._refresh(e);this._lastRecordedViewportHeight===this._renderService.dimensions.css.canvas.height&&this._lastScrollTop===this._activeBuffer.ydisp*this._currentRowHeight&&this._renderDimensions.device.cell.height===this._currentDeviceCellHeight||this._refresh(e)}_handleScroll(e){if(this._lastScrollTop=this._viewportElement.scrollTop,!this._viewportElement.offsetParent)return;if(this._ignoreNextScrollEvent)return this._ignoreNextScrollEvent=!1,void this._onRequestScrollLines.fire({amount:0,suppressScrollEvent:!0});const t=Math.round(this._lastScrollTop/this._currentRowHeight)-this._bufferService.buffer.ydisp;this._onRequestScrollLines.fire({amount:t,suppressScrollEvent:!0})}_smoothScroll(){if(this._isDisposed||-1===this._smoothScrollState.origin||-1===this._smoothScrollState.target)return;const e=this._smoothScrollPercent();this._viewportElement.scrollTop=this._smoothScrollState.origin+Math.round(e*(this._smoothScrollState.target-this._smoothScrollState.origin)),e<1?this._coreBrowserService.window.requestAnimationFrame(()=>this._smoothScroll()):this._clearSmoothScrollState()}_smoothScrollPercent(){return this._optionsService.rawOptions.smoothScrollDuration&&this._smoothScrollState.startTime?Math.max(Math.min((Date.now()-this._smoothScrollState.startTime)/this._optionsService.rawOptions.smoothScrollDuration,1),0):1}_clearSmoothScrollState(){this._smoothScrollState.startTime=0,this._smoothScrollState.origin=-1,this._smoothScrollState.target=-1}_bubbleScroll(e,t){const i=this._viewportElement.scrollTop+this._lastRecordedViewportHeight;return!(t<0&&0!==this._viewportElement.scrollTop||t>0&&i0&&(i=e),r=""}}return{bufferElements:s,cursorElement:i}}getLinesScrolled(e){if(0===e.deltaY||e.shiftKey)return 0;let t=this._applyScrollModifier(e.deltaY,e);return e.deltaMode===WheelEvent.DOM_DELTA_PIXEL?(t/=this._currentRowHeight+0,this._wheelPartialScroll+=t,t=Math.floor(Math.abs(this._wheelPartialScroll))*(this._wheelPartialScroll>0?1:-1),this._wheelPartialScroll%=1):e.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(t*=this._bufferService.rows),t}_applyScrollModifier(e,t){const i=this._optionsService.rawOptions.fastScrollModifier;return"alt"===i&&t.altKey||"ctrl"===i&&t.ctrlKey||"shift"===i&&t.shiftKey?e*this._optionsService.rawOptions.fastScrollSensitivity*this._optionsService.rawOptions.scrollSensitivity:e*this._optionsService.rawOptions.scrollSensitivity}handleTouchStart(e){this._lastTouchY=e.touches[0].pageY}handleTouchMove(e){const t=this._lastTouchY-e.touches[0].pageY;return this._lastTouchY=e.touches[0].pageY,0!==t&&(this._viewportElement.scrollTop+=t,this._bubbleScroll(e,t))}};t.Viewport=c=r([s(2,l.IBufferService),s(3,l.IOptionsService),s(4,n.ICharSizeService),s(5,n.IRenderService),s(6,n.ICoreBrowserService),s(7,n.IThemeService)],c)},3107:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.BufferDecorationRenderer=void 0;const o=i(4725),n=i(844),a=i(2585);let h=t.BufferDecorationRenderer=class extends n.Disposable{constructor(e,t,i,r,s){super(),this._screenElement=e,this._bufferService=t,this._coreBrowserService=i,this._decorationService=r,this._renderService=s,this._decorationElements=new Map,this._altBufferIsActive=!1,this._dimensionsChanged=!1,this._container=document.createElement("div"),this._container.classList.add("xterm-decoration-container"),this._screenElement.appendChild(this._container),this.register(this._renderService.onRenderedViewportChange(()=>this._doRefreshDecorations())),this.register(this._renderService.onDimensionsChange(()=>{this._dimensionsChanged=!0,this._queueRefresh()})),this.register(this._coreBrowserService.onDprChange(()=>this._queueRefresh())),this.register(this._bufferService.buffers.onBufferActivate(()=>{this._altBufferIsActive=this._bufferService.buffer===this._bufferService.buffers.alt})),this.register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh())),this.register(this._decorationService.onDecorationRemoved(e=>this._removeDecoration(e))),this.register((0,n.toDisposable)(()=>{this._container.remove(),this._decorationElements.clear()}))}_queueRefresh(){void 0===this._animationFrame&&(this._animationFrame=this._renderService.addRefreshCallback(()=>{this._doRefreshDecorations(),this._animationFrame=void 0}))}_doRefreshDecorations(){for(const e of this._decorationService.decorations)this._renderDecoration(e);this._dimensionsChanged=!1}_renderDecoration(e){this._refreshStyle(e),this._dimensionsChanged&&this._refreshXPosition(e)}_createElement(e){const t=this._coreBrowserService.mainDocument.createElement("div");t.classList.add("xterm-decoration"),t.classList.toggle("xterm-decoration-top-layer","top"===e?.options?.layer),t.style.width=`${Math.round((e.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,t.style.height=(e.options.height||1)*this._renderService.dimensions.css.cell.height+"px",t.style.top=(e.marker.line-this._bufferService.buffers.active.ydisp)*this._renderService.dimensions.css.cell.height+"px",t.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`;const i=e.options.x??0;return i&&i>this._bufferService.cols&&(t.style.display="none"),this._refreshXPosition(e,t),t}_refreshStyle(e){const t=e.marker.line-this._bufferService.buffers.active.ydisp;if(t<0||t>=this._bufferService.rows)e.element&&(e.element.style.display="none",e.onRenderEmitter.fire(e.element));else{let i=this._decorationElements.get(e);i||(i=this._createElement(e),e.element=i,this._decorationElements.set(e,i),this._container.appendChild(i),e.onDispose(()=>{this._decorationElements.delete(e),i.remove()})),i.style.top=t*this._renderService.dimensions.css.cell.height+"px",i.style.display=this._altBufferIsActive?"none":"block",e.onRenderEmitter.fire(i)}}_refreshXPosition(e,t=e.element){if(!t)return;const i=e.options.x??0;"right"===(e.options.anchor||"left")?t.style.right=i?i*this._renderService.dimensions.css.cell.width+"px":"":t.style.left=i?i*this._renderService.dimensions.css.cell.width+"px":""}_removeDecoration(e){this._decorationElements.get(e)?.remove(),this._decorationElements.delete(e),e.dispose()}};t.BufferDecorationRenderer=h=r([s(1,a.IBufferService),s(2,o.ICoreBrowserService),s(3,a.IDecorationService),s(4,o.IRenderService)],h)},5871:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ColorZoneStore=void 0,t.ColorZoneStore=class{constructor(){this._zones=[],this._zonePool=[],this._zonePoolIndex=0,this._linePadding={full:0,left:0,center:0,right:0}}get zones(){return this._zonePool.length=Math.min(this._zonePool.length,this._zones.length),this._zones}clear(){this._zones.length=0,this._zonePoolIndex=0}addDecoration(e){if(e.options.overviewRulerOptions){for(const t of this._zones)if(t.color===e.options.overviewRulerOptions.color&&t.position===e.options.overviewRulerOptions.position){if(this._lineIntersectsZone(t,e.marker.line))return;if(this._lineAdjacentToZone(t,e.marker.line,e.options.overviewRulerOptions.position))return void this._addLineToZone(t,e.marker.line)}if(this._zonePoolIndex=e.startBufferLine&&t<=e.endBufferLine}_lineAdjacentToZone(e,t,i){return t>=e.startBufferLine-this._linePadding[i||"full"]&&t<=e.endBufferLine+this._linePadding[i||"full"]}_addLineToZone(e,t){e.startBufferLine=Math.min(e.startBufferLine,t),e.endBufferLine=Math.max(e.endBufferLine,t)}}},5744:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.OverviewRulerRenderer=void 0;const o=i(5871),n=i(4725),a=i(844),h=i(2585),l={full:0,left:0,center:0,right:0},c={full:0,left:0,center:0,right:0},u={full:0,left:0,center:0,right:0};let d=t.OverviewRulerRenderer=class extends a.Disposable{get _width(){return this._optionsService.options.overviewRulerWidth||0}constructor(e,t,i,r,s,n,h){super(),this._viewportElement=e,this._screenElement=t,this._bufferService=i,this._decorationService=r,this._renderService=s,this._optionsService=n,this._coreBrowserService=h,this._colorZoneStore=new o.ColorZoneStore,this._shouldUpdateDimensions=!0,this._shouldUpdateAnchor=!0,this._lastKnownBufferLength=0,this._canvas=this._coreBrowserService.mainDocument.createElement("canvas"),this._canvas.classList.add("xterm-decoration-overview-ruler"),this._refreshCanvasDimensions(),this._viewportElement.parentElement?.insertBefore(this._canvas,this._viewportElement);const l=this._canvas.getContext("2d");if(!l)throw new Error("Ctx cannot be null");this._ctx=l,this._registerDecorationListeners(),this._registerBufferChangeListeners(),this._registerDimensionChangeListeners(),this.register((0,a.toDisposable)(()=>{this._canvas?.remove()}))}_registerDecorationListeners(){this.register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh(void 0,!0))),this.register(this._decorationService.onDecorationRemoved(()=>this._queueRefresh(void 0,!0)))}_registerBufferChangeListeners(){this.register(this._renderService.onRenderedViewportChange(()=>this._queueRefresh())),this.register(this._bufferService.buffers.onBufferActivate(()=>{this._canvas.style.display=this._bufferService.buffer===this._bufferService.buffers.alt?"none":"block"})),this.register(this._bufferService.onScroll(()=>{this._lastKnownBufferLength!==this._bufferService.buffers.normal.lines.length&&(this._refreshDrawHeightConstants(),this._refreshColorZonePadding())}))}_registerDimensionChangeListeners(){this.register(this._renderService.onRender(()=>{this._containerHeight&&this._containerHeight===this._screenElement.clientHeight||(this._queueRefresh(!0),this._containerHeight=this._screenElement.clientHeight)})),this.register(this._optionsService.onSpecificOptionChange("overviewRulerWidth",()=>this._queueRefresh(!0))),this.register(this._coreBrowserService.onDprChange(()=>this._queueRefresh(!0))),this._queueRefresh(!0)}_refreshDrawConstants(){const e=Math.floor(this._canvas.width/3),t=Math.ceil(this._canvas.width/3);c.full=this._canvas.width,c.left=e,c.center=t,c.right=e,this._refreshDrawHeightConstants(),u.full=0,u.left=0,u.center=c.left,u.right=c.left+c.center}_refreshDrawHeightConstants(){l.full=Math.round(2*this._coreBrowserService.dpr);const e=this._canvas.height/this._bufferService.buffer.lines.length,t=Math.round(Math.max(Math.min(e,12),6)*this._coreBrowserService.dpr);l.left=t,l.center=t,l.right=t}_refreshColorZonePadding(){this._colorZoneStore.setPadding({full:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*l.full),left:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*l.left),center:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*l.center),right:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*l.right)}),this._lastKnownBufferLength=this._bufferService.buffers.normal.lines.length}_refreshCanvasDimensions(){this._canvas.style.width=`${this._width}px`,this._canvas.width=Math.round(this._width*this._coreBrowserService.dpr),this._canvas.style.height=`${this._screenElement.clientHeight}px`,this._canvas.height=Math.round(this._screenElement.clientHeight*this._coreBrowserService.dpr),this._refreshDrawConstants(),this._refreshColorZonePadding()}_refreshDecorations(){this._shouldUpdateDimensions&&this._refreshCanvasDimensions(),this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height),this._colorZoneStore.clear();for(const e of this._decorationService.decorations)this._colorZoneStore.addDecoration(e);this._ctx.lineWidth=1;const e=this._colorZoneStore.zones;for(const t of e)"full"!==t.position&&this._renderColorZone(t);for(const t of e)"full"===t.position&&this._renderColorZone(t);this._shouldUpdateDimensions=!1,this._shouldUpdateAnchor=!1}_renderColorZone(e){this._ctx.fillStyle=e.color,this._ctx.fillRect(u[e.position||"full"],Math.round((this._canvas.height-1)*(e.startBufferLine/this._bufferService.buffers.active.lines.length)-l[e.position||"full"]/2),c[e.position||"full"],Math.round((this._canvas.height-1)*((e.endBufferLine-e.startBufferLine)/this._bufferService.buffers.active.lines.length)+l[e.position||"full"]))}_queueRefresh(e,t){this._shouldUpdateDimensions=e||this._shouldUpdateDimensions,this._shouldUpdateAnchor=t||this._shouldUpdateAnchor,void 0===this._animationFrame&&(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>{this._refreshDecorations(),this._animationFrame=void 0}))}};t.OverviewRulerRenderer=d=r([s(2,h.IBufferService),s(3,h.IDecorationService),s(4,n.IRenderService),s(5,h.IOptionsService),s(6,n.ICoreBrowserService)],d)},2950:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.CompositionHelper=void 0;const o=i(4725),n=i(2585),a=i(2584);let h=t.CompositionHelper=class{get isComposing(){return this._isComposing}constructor(e,t,i,r,s,o){this._textarea=e,this._compositionView=t,this._bufferService=i,this._optionsService=r,this._coreService=s,this._renderService=o,this._isComposing=!1,this._isSendingComposition=!1,this._compositionPosition={start:0,end:0},this._dataAlreadySent=""}compositionstart(){this._isComposing=!0,this._compositionPosition.start=this._textarea.value.length,this._compositionView.textContent="",this._dataAlreadySent="",this._compositionView.classList.add("active")}compositionupdate(e){this._compositionView.textContent=e.data,this.updateCompositionElements(),setTimeout(()=>{this._compositionPosition.end=this._textarea.value.length},0)}compositionend(){this._finalizeComposition(!0)}keydown(e){if(this._isComposing||this._isSendingComposition){if(229===e.keyCode)return!1;if(16===e.keyCode||17===e.keyCode||18===e.keyCode)return!1;this._finalizeComposition(!1)}return 229!==e.keyCode||(this._handleAnyTextareaChanges(),!1)}_finalizeComposition(e){if(this._compositionView.classList.remove("active"),this._isComposing=!1,e){const e={start:this._compositionPosition.start,end:this._compositionPosition.end};this._isSendingComposition=!0,setTimeout(()=>{if(this._isSendingComposition){let t;this._isSendingComposition=!1,e.start+=this._dataAlreadySent.length,t=this._isComposing?this._textarea.value.substring(e.start,e.end):this._textarea.value.substring(e.start),t.length>0&&this._coreService.triggerDataEvent(t,!0)}},0)}else{this._isSendingComposition=!1;const e=this._textarea.value.substring(this._compositionPosition.start,this._compositionPosition.end);this._coreService.triggerDataEvent(e,!0)}}_handleAnyTextareaChanges(){const e=this._textarea.value;setTimeout(()=>{if(!this._isComposing){const t=this._textarea.value,i=t.replace(e,"");this._dataAlreadySent=i,t.length>e.length?this._coreService.triggerDataEvent(i,!0):t.lengththis.updateCompositionElements(!0),0)}}};t.CompositionHelper=h=r([s(2,n.IBufferService),s(3,n.IOptionsService),s(4,n.ICoreService),s(5,o.IRenderService)],h)},9806:(e,t)=>{function i(e,t,i){const r=i.getBoundingClientRect(),s=e.getComputedStyle(i),o=parseInt(s.getPropertyValue("padding-left")),n=parseInt(s.getPropertyValue("padding-top"));return[t.clientX-r.left-o,t.clientY-r.top-n]}Object.defineProperty(t,"__esModule",{value:!0}),t.getCoords=t.getCoordsRelativeToElement=void 0,t.getCoordsRelativeToElement=i,t.getCoords=function(e,t,r,s,o,n,a,h,l){if(!n)return;const c=i(e,t,r);return c?(c[0]=Math.ceil((c[0]+(l?a/2:0))/a),c[1]=Math.ceil(c[1]/h),c[0]=Math.min(Math.max(c[0],1),s+(l?1:0)),c[1]=Math.min(Math.max(c[1],1),o),c):void 0}},9504:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.moveToCellSequence=void 0;const r=i(2584);function s(e,t,i,r){const s=e-o(e,i),a=t-o(t,i),c=Math.abs(s-a)-function(e,t,i){let r=0;const s=e-o(e,i),a=t-o(t,i);for(let o=0;o=0&&et?"A":"B"}function a(e,t,i,r,s,o){let n=e,a=t,h="";for(;n!==i||a!==r;)n+=s?1:-1,s&&n>o.cols-1?(h+=o.buffer.translateBufferLineToString(a,!1,e,n),n=0,e=0,a++):!s&&n<0&&(h+=o.buffer.translateBufferLineToString(a,!1,0,e+1),n=o.cols-1,e=n,a--);return h+o.buffer.translateBufferLineToString(a,!1,e,n)}function h(e,t){const i=t?"O":"[";return r.C0.ESC+i+e}function l(e,t){e=Math.floor(e);let i="";for(let r=0;r0?r-o(r,n):t;const d=r,_=function(e,t,i,r,n,a){let h;return h=s(i,r,n,a).length>0?r-o(r,n):t,e=i&&he?"D":"C",l(Math.abs(n-e),h(u,r));u=c>t?"D":"C";const d=Math.abs(c-t);return l(function(e,t){return t.cols-e}(c>t?e:n,i)+(d-1)*i.cols+1+((c>t?n:e)-1),h(u,r))}},1296:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.DomRenderer=void 0;const o=i(3787),n=i(2550),a=i(2223),h=i(6171),l=i(6052),c=i(4725),u=i(8055),d=i(8460),_=i(844),f=i(2585),g="xterm-dom-renderer-owner-",p="xterm-rows",m="xterm-fg-",v="xterm-bg-",b="xterm-focus",C="xterm-selection";let S=1,y=t.DomRenderer=class extends _.Disposable{constructor(e,t,i,r,s,a,c,u,f,m,v,b,y){super(),this._terminal=e,this._document=t,this._element=i,this._screenElement=r,this._viewportElement=s,this._helperContainer=a,this._linkifier2=c,this._charSizeService=f,this._optionsService=m,this._bufferService=v,this._coreBrowserService=b,this._themeService=y,this._terminalClass=S++,this._rowElements=[],this._selectionRenderModel=(0,l.createSelectionRenderModel)(),this.onRequestRedraw=this.register(new d.EventEmitter).event,this._rowContainer=this._document.createElement("div"),this._rowContainer.classList.add(p),this._rowContainer.style.lineHeight="normal",this._rowContainer.setAttribute("aria-hidden","true"),this._refreshRowElements(this._bufferService.cols,this._bufferService.rows),this._selectionContainer=this._document.createElement("div"),this._selectionContainer.classList.add(C),this._selectionContainer.setAttribute("aria-hidden","true"),this.dimensions=(0,h.createRenderDimensions)(),this._updateDimensions(),this.register(this._optionsService.onOptionChange(()=>this._handleOptionsChanged())),this.register(this._themeService.onChangeColors(e=>this._injectCss(e))),this._injectCss(this._themeService.colors),this._rowFactory=u.createInstance(o.DomRendererRowFactory,document),this._element.classList.add(g+this._terminalClass),this._screenElement.appendChild(this._rowContainer),this._screenElement.appendChild(this._selectionContainer),this.register(this._linkifier2.onShowLinkUnderline(e=>this._handleLinkHover(e))),this.register(this._linkifier2.onHideLinkUnderline(e=>this._handleLinkLeave(e))),this.register((0,_.toDisposable)(()=>{this._element.classList.remove(g+this._terminalClass),this._rowContainer.remove(),this._selectionContainer.remove(),this._widthCache.dispose(),this._themeStyleElement.remove(),this._dimensionsStyleElement.remove()})),this._widthCache=new n.WidthCache(this._document,this._helperContainer),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}_updateDimensions(){const e=this._coreBrowserService.dpr;this.dimensions.device.char.width=this._charSizeService.width*e,this.dimensions.device.char.height=Math.ceil(this._charSizeService.height*e),this.dimensions.device.cell.width=this.dimensions.device.char.width+Math.round(this._optionsService.rawOptions.letterSpacing),this.dimensions.device.cell.height=Math.floor(this.dimensions.device.char.height*this._optionsService.rawOptions.lineHeight),this.dimensions.device.char.left=0,this.dimensions.device.char.top=0,this.dimensions.device.canvas.width=this.dimensions.device.cell.width*this._bufferService.cols,this.dimensions.device.canvas.height=this.dimensions.device.cell.height*this._bufferService.rows,this.dimensions.css.canvas.width=Math.round(this.dimensions.device.canvas.width/e),this.dimensions.css.canvas.height=Math.round(this.dimensions.device.canvas.height/e),this.dimensions.css.cell.width=this.dimensions.css.canvas.width/this._bufferService.cols,this.dimensions.css.cell.height=this.dimensions.css.canvas.height/this._bufferService.rows;for(const e of this._rowElements)e.style.width=`${this.dimensions.css.canvas.width}px`,e.style.height=`${this.dimensions.css.cell.height}px`,e.style.lineHeight=`${this.dimensions.css.cell.height}px`,e.style.overflow="hidden";this._dimensionsStyleElement||(this._dimensionsStyleElement=this._document.createElement("style"),this._screenElement.appendChild(this._dimensionsStyleElement));const t=`${this._terminalSelector} .${p} span { display: inline-block; height: 100%; vertical-align: top;}`;this._dimensionsStyleElement.textContent=t,this._selectionContainer.style.height=this._viewportElement.style.height,this._screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._screenElement.style.height=`${this.dimensions.css.canvas.height}px`}_injectCss(e){this._themeStyleElement||(this._themeStyleElement=this._document.createElement("style"),this._screenElement.appendChild(this._themeStyleElement));let t=`${this._terminalSelector} .${p} { color: ${e.foreground.css}; font-family: ${this._optionsService.rawOptions.fontFamily}; font-size: ${this._optionsService.rawOptions.fontSize}px; font-kerning: none; white-space: pre}`;t+=`${this._terminalSelector} .${p} .xterm-dim { color: ${u.color.multiplyOpacity(e.foreground,.5).css};}`,t+=`${this._terminalSelector} span:not(.xterm-bold) { font-weight: ${this._optionsService.rawOptions.fontWeight};}${this._terminalSelector} span.xterm-bold { font-weight: ${this._optionsService.rawOptions.fontWeightBold};}${this._terminalSelector} span.xterm-italic { font-style: italic;}`;const i=`blink_underline_${this._terminalClass}`,r=`blink_bar_${this._terminalClass}`,s=`blink_block_${this._terminalClass}`;t+=`@keyframes ${i} { 50% { border-bottom-style: hidden; }}`,t+=`@keyframes ${r} { 50% { box-shadow: none; }}`,t+=`@keyframes ${s} { 0% { background-color: ${e.cursor.css}; color: ${e.cursorAccent.css}; } 50% { background-color: inherit; color: ${e.cursor.css}; }}`,t+=`${this._terminalSelector} .${p}.${b} .xterm-cursor.xterm-cursor-blink.xterm-cursor-underline { animation: ${i} 1s step-end infinite;}${this._terminalSelector} .${p}.${b} .xterm-cursor.xterm-cursor-blink.xterm-cursor-bar { animation: ${r} 1s step-end infinite;}${this._terminalSelector} .${p}.${b} .xterm-cursor.xterm-cursor-blink.xterm-cursor-block { animation: ${s} 1s step-end infinite;}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-block { background-color: ${e.cursor.css}; color: ${e.cursorAccent.css};}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-block:not(.xterm-cursor-blink) { background-color: ${e.cursor.css} !important; color: ${e.cursorAccent.css} !important;}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-outline { outline: 1px solid ${e.cursor.css}; outline-offset: -1px;}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-bar { box-shadow: ${this._optionsService.rawOptions.cursorWidth}px 0 0 ${e.cursor.css} inset;}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-underline { border-bottom: 1px ${e.cursor.css}; border-bottom-style: solid; height: calc(100% - 1px);}`,t+=`${this._terminalSelector} .${C} { position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none;}${this._terminalSelector}.focus .${C} div { position: absolute; background-color: ${e.selectionBackgroundOpaque.css};}${this._terminalSelector} .${C} div { position: absolute; background-color: ${e.selectionInactiveBackgroundOpaque.css};}`;for(const[i,r]of e.ansi.entries())t+=`${this._terminalSelector} .${m}${i} { color: ${r.css}; }${this._terminalSelector} .${m}${i}.xterm-dim { color: ${u.color.multiplyOpacity(r,.5).css}; }${this._terminalSelector} .${v}${i} { background-color: ${r.css}; }`;t+=`${this._terminalSelector} .${m}${a.INVERTED_DEFAULT_COLOR} { color: ${u.color.opaque(e.background).css}; }${this._terminalSelector} .${m}${a.INVERTED_DEFAULT_COLOR}.xterm-dim { color: ${u.color.multiplyOpacity(u.color.opaque(e.background),.5).css}; }${this._terminalSelector} .${v}${a.INVERTED_DEFAULT_COLOR} { background-color: ${e.foreground.css}; }`,this._themeStyleElement.textContent=t}_setDefaultSpacing(){const e=this.dimensions.css.cell.width-this._widthCache.get("W",!1,!1);this._rowContainer.style.letterSpacing=`${e}px`,this._rowFactory.defaultSpacing=e}handleDevicePixelRatioChange(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}_refreshRowElements(e,t){for(let e=this._rowElements.length;e<=t;e++){const e=this._document.createElement("div");this._rowContainer.appendChild(e),this._rowElements.push(e)}for(;this._rowElements.length>t;)this._rowContainer.removeChild(this._rowElements.pop())}handleResize(e,t){this._refreshRowElements(e,t),this._updateDimensions(),this.handleSelectionChanged(this._selectionRenderModel.selectionStart,this._selectionRenderModel.selectionEnd,this._selectionRenderModel.columnSelectMode)}handleCharSizeChanged(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}handleBlur(){this._rowContainer.classList.remove(b),this.renderRows(0,this._bufferService.rows-1)}handleFocus(){this._rowContainer.classList.add(b),this.renderRows(this._bufferService.buffer.y,this._bufferService.buffer.y)}handleSelectionChanged(e,t,i){if(this._selectionContainer.replaceChildren(),this._rowFactory.handleSelectionChanged(e,t,i),this.renderRows(0,this._bufferService.rows-1),!e||!t)return;this._selectionRenderModel.update(this._terminal,e,t,i);const r=this._selectionRenderModel.viewportStartRow,s=this._selectionRenderModel.viewportEndRow,o=this._selectionRenderModel.viewportCappedStartRow,n=this._selectionRenderModel.viewportCappedEndRow;if(o>=this._bufferService.rows||n<0)return;const a=this._document.createDocumentFragment();if(i){const i=e[0]>t[0];a.appendChild(this._createSelectionElement(o,i?t[0]:e[0],i?e[0]:t[0],n-o+1))}else{const i=r===o?e[0]:0,h=o===s?t[0]:this._bufferService.cols;a.appendChild(this._createSelectionElement(o,i,h));const l=n-o-1;if(a.appendChild(this._createSelectionElement(o+1,0,this._bufferService.cols,l)),o!==n){const e=s===n?t[0]:this._bufferService.cols;a.appendChild(this._createSelectionElement(n,0,e))}}this._selectionContainer.appendChild(a)}_createSelectionElement(e,t,i,r=1){const s=this._document.createElement("div"),o=t*this.dimensions.css.cell.width;let n=this.dimensions.css.cell.width*(i-t);return o+n>this.dimensions.css.canvas.width&&(n=this.dimensions.css.canvas.width-o),s.style.height=r*this.dimensions.css.cell.height+"px",s.style.top=e*this.dimensions.css.cell.height+"px",s.style.left=`${o}px`,s.style.width=`${n}px`,s}handleCursorMove(){}_handleOptionsChanged(){this._updateDimensions(),this._injectCss(this._themeService.colors),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}clear(){for(const e of this._rowElements)e.replaceChildren()}renderRows(e,t){const i=this._bufferService.buffer,r=i.ybase+i.y,s=Math.min(i.x,this._bufferService.cols-1),o=this._optionsService.rawOptions.cursorBlink,n=this._optionsService.rawOptions.cursorStyle,a=this._optionsService.rawOptions.cursorInactiveStyle;for(let h=e;h<=t;h++){const e=h+i.ydisp,t=this._rowElements[h],l=i.lines.get(e);if(!t||!l)break;t.replaceChildren(...this._rowFactory.createRow(l,e,e===r,n,a,s,o,this.dimensions.css.cell.width,this._widthCache,-1,-1))}}get _terminalSelector(){return`.${g}${this._terminalClass}`}_handleLinkHover(e){this._setCellUnderline(e.x1,e.x2,e.y1,e.y2,e.cols,!0)}_handleLinkLeave(e){this._setCellUnderline(e.x1,e.x2,e.y1,e.y2,e.cols,!1)}_setCellUnderline(e,t,i,r,s,o){i<0&&(e=0),r<0&&(t=0);const n=this._bufferService.rows-1;i=Math.max(Math.min(i,n),0),r=Math.max(Math.min(r,n),0),s=Math.min(s,this._bufferService.cols);const a=this._bufferService.buffer,h=a.ybase+a.y,l=Math.min(a.x,s-1),c=this._optionsService.rawOptions.cursorBlink,u=this._optionsService.rawOptions.cursorStyle,d=this._optionsService.rawOptions.cursorInactiveStyle;for(let n=i;n<=r;++n){const _=n+a.ydisp,f=this._rowElements[n],g=a.lines.get(_);if(!f||!g)break;f.replaceChildren(...this._rowFactory.createRow(g,_,_===h,u,d,l,c,this.dimensions.css.cell.width,this._widthCache,o?n===i?e:0:-1,o?(n===r?t:s)-1:-1))}}};t.DomRenderer=y=r([s(7,f.IInstantiationService),s(8,c.ICharSizeService),s(9,f.IOptionsService),s(10,f.IBufferService),s(11,c.ICoreBrowserService),s(12,c.IThemeService)],y)},3787:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.DomRendererRowFactory=void 0;const o=i(2223),n=i(643),a=i(511),h=i(2585),l=i(8055),c=i(4725),u=i(4269),d=i(6171),_=i(3734);let f=t.DomRendererRowFactory=class{constructor(e,t,i,r,s,o,n){this._document=e,this._characterJoinerService=t,this._optionsService=i,this._coreBrowserService=r,this._coreService=s,this._decorationService=o,this._themeService=n,this._workCell=new a.CellData,this._columnSelectMode=!1,this.defaultSpacing=0}handleSelectionChanged(e,t,i){this._selectionStart=e,this._selectionEnd=t,this._columnSelectMode=i}createRow(e,t,i,r,s,a,h,c,d,f,p){const m=[],v=this._characterJoinerService.getJoinedCharacters(t),b=this._themeService.colors;let C,S=e.getNoBgTrimmedLength();i&&S0&&P===v[0][0]){B=!0;const t=v.shift();I=new u.JoinedCellData(this._workCell,e.translateToString(!0,t[0],t[1]),t[1]-t[0]),F=t[1]-1,S=I.getWidth()}const O=this._isCellInSelection(P,t),N=i&&P===a,V=D&&P>=f&&P<=p;let U=!1;this._decorationService.forEachDecorationAtCell(P,t,void 0,e=>{U=!0});let H=I.getChars()||n.WHITESPACE_CELL_CHAR;if(" "===H&&(I.isUnderline()||I.isOverline())&&(H=" "),L=S*c-d.get(H,I.isBold(),I.isItalic()),C){if(y&&(O&&k||!O&&!k&&I.bg===A)&&(O&&k&&b.selectionForeground||I.fg===T)&&I.extended.ext===E&&V===x&&L===R&&!N&&!B&&!U){I.isInvisible()?w+=n.WHITESPACE_CELL_CHAR:w+=H,y++;continue}y&&(C.textContent=w),C=this._document.createElement("span"),y=0,w=""}else C=this._document.createElement("span");if(A=I.bg,T=I.fg,E=I.extended.ext,x=V,R=L,k=O,B&&a>=P&&a<=F&&(a=P),!this._coreService.isCursorHidden&&N&&this._coreService.isCursorInitialized)if(M.push("xterm-cursor"),this._coreBrowserService.isFocused)h&&M.push("xterm-cursor-blink"),M.push("bar"===r?"xterm-cursor-bar":"underline"===r?"xterm-cursor-underline":"xterm-cursor-block");else if(s)switch(s){case"outline":M.push("xterm-cursor-outline");break;case"block":M.push("xterm-cursor-block");break;case"bar":M.push("xterm-cursor-bar");break;case"underline":M.push("xterm-cursor-underline")}if(I.isBold()&&M.push("xterm-bold"),I.isItalic()&&M.push("xterm-italic"),I.isDim()&&M.push("xterm-dim"),w=I.isInvisible()?n.WHITESPACE_CELL_CHAR:I.getChars()||n.WHITESPACE_CELL_CHAR,I.isUnderline()&&(M.push(`xterm-underline-${I.extended.underlineStyle}`)," "===w&&(w=" "),!I.isUnderlineColorDefault()))if(I.isUnderlineColorRGB())C.style.textDecorationColor=`rgb(${_.AttributeData.toColorRGB(I.getUnderlineColor()).join(",")})`;else{let e=I.getUnderlineColor();this._optionsService.rawOptions.drawBoldTextInBrightColors&&I.isBold()&&e<8&&(e+=8),C.style.textDecorationColor=b.ansi[e].css}I.isOverline()&&(M.push("xterm-overline")," "===w&&(w=" ")),I.isStrikethrough()&&M.push("xterm-strikethrough"),V&&(C.style.textDecoration="underline");let W=I.getFgColor(),K=I.getFgColorMode(),z=I.getBgColor(),G=I.getBgColorMode();const j=!!I.isInverse();if(j){const e=W;W=z,z=e;const t=K;K=G,G=t}let q,$,Z,Y=!1;switch(this._decorationService.forEachDecorationAtCell(P,t,void 0,e=>{"top"!==e.options.layer&&Y||(e.backgroundColorRGB&&(G=50331648,z=e.backgroundColorRGB.rgba>>8&16777215,q=e.backgroundColorRGB),e.foregroundColorRGB&&(K=50331648,W=e.foregroundColorRGB.rgba>>8&16777215,$=e.foregroundColorRGB),Y="top"===e.options.layer)}),!Y&&O&&(q=this._coreBrowserService.isFocused?b.selectionBackgroundOpaque:b.selectionInactiveBackgroundOpaque,z=q.rgba>>8&16777215,G=50331648,Y=!0,b.selectionForeground&&(K=50331648,W=b.selectionForeground.rgba>>8&16777215,$=b.selectionForeground)),Y&&M.push("xterm-decoration-top"),G){case 16777216:case 33554432:Z=b.ansi[z],M.push(`xterm-bg-${z}`);break;case 50331648:Z=l.channels.toColor(z>>16,z>>8&255,255&z),this._addStyle(C,`background-color:#${g((z>>>0).toString(16),"0",6)}`);break;default:j?(Z=b.foreground,M.push(`xterm-bg-${o.INVERTED_DEFAULT_COLOR}`)):Z=b.background}switch(q||I.isDim()&&(q=l.color.multiplyOpacity(Z,.5)),K){case 16777216:case 33554432:I.isBold()&&W<8&&this._optionsService.rawOptions.drawBoldTextInBrightColors&&(W+=8),this._applyMinimumContrast(C,Z,b.ansi[W],I,q,void 0)||M.push(`xterm-fg-${W}`);break;case 50331648:const e=l.channels.toColor(W>>16&255,W>>8&255,255&W);this._applyMinimumContrast(C,Z,e,I,q,$)||this._addStyle(C,`color:#${g(W.toString(16),"0",6)}`);break;default:this._applyMinimumContrast(C,Z,b.foreground,I,q,$)||j&&M.push(`xterm-fg-${o.INVERTED_DEFAULT_COLOR}`)}M.length&&(C.className=M.join(" "),M.length=0),N||B||U?C.textContent=w:y++,L!==this.defaultSpacing&&(C.style.letterSpacing=`${L}px`),m.push(C),P=F}return C&&y&&(C.textContent=w),m}_applyMinimumContrast(e,t,i,r,s,o){if(1===this._optionsService.rawOptions.minimumContrastRatio||(0,d.treatGlyphAsBackgroundColor)(r.getCode()))return!1;const n=this._getContrastCache(r);let a;if(s||o||(a=n.getColor(t.rgba,i.rgba)),void 0===a){const e=this._optionsService.rawOptions.minimumContrastRatio/(r.isDim()?2:1);a=l.color.ensureContrastRatio(s||t,o||i,e),n.setColor((s||t).rgba,(o||i).rgba,a??null)}return!!a&&(this._addStyle(e,`color:${a.css}`),!0)}_getContrastCache(e){return e.isDim()?this._themeService.colors.halfContrastCache:this._themeService.colors.contrastCache}_addStyle(e,t){e.setAttribute("style",`${e.getAttribute("style")||""}${t};`)}_isCellInSelection(e,t){const i=this._selectionStart,r=this._selectionEnd;return!(!i||!r)&&(this._columnSelectMode?i[0]<=r[0]?e>=i[0]&&t>=i[1]&&e=i[1]&&e>=r[0]&&t<=r[1]:t>i[1]&&t=i[0]&&e=i[0])}};function g(e,t,i){for(;e.length{Object.defineProperty(t,"__esModule",{value:!0}),t.WidthCache=void 0,t.WidthCache=class{constructor(e,t){this._flat=new Float32Array(256),this._font="",this._fontSize=0,this._weight="normal",this._weightBold="bold",this._measureElements=[],this._container=e.createElement("div"),this._container.classList.add("xterm-width-cache-measure-container"),this._container.setAttribute("aria-hidden","true"),this._container.style.whiteSpace="pre",this._container.style.fontKerning="none";const i=e.createElement("span");i.classList.add("xterm-char-measure-element");const r=e.createElement("span");r.classList.add("xterm-char-measure-element"),r.style.fontWeight="bold";const s=e.createElement("span");s.classList.add("xterm-char-measure-element"),s.style.fontStyle="italic";const o=e.createElement("span");o.classList.add("xterm-char-measure-element"),o.style.fontWeight="bold",o.style.fontStyle="italic",this._measureElements=[i,r,s,o],this._container.appendChild(i),this._container.appendChild(r),this._container.appendChild(s),this._container.appendChild(o),t.appendChild(this._container),this.clear()}dispose(){this._container.remove(),this._measureElements.length=0,this._holey=void 0}clear(){this._flat.fill(-9999),this._holey=new Map}setFont(e,t,i,r){e===this._font&&t===this._fontSize&&i===this._weight&&r===this._weightBold||(this._font=e,this._fontSize=t,this._weight=i,this._weightBold=r,this._container.style.fontFamily=this._font,this._container.style.fontSize=`${this._fontSize}px`,this._measureElements[0].style.fontWeight=`${i}`,this._measureElements[1].style.fontWeight=`${r}`,this._measureElements[2].style.fontWeight=`${i}`,this._measureElements[3].style.fontWeight=`${r}`,this.clear())}get(e,t,i){let r=0;if(!t&&!i&&1===e.length&&(r=e.charCodeAt(0))<256){if(-9999!==this._flat[r])return this._flat[r];const t=this._measure(e,0);return t>0&&(this._flat[r]=t),t}let s=e;t&&(s+="B"),i&&(s+="I");let o=this._holey.get(s);if(void 0===o){let r=0;t&&(r|=1),i&&(r|=2),o=this._measure(e,r),o>0&&this._holey.set(s,o)}return o}_measure(e,t){const i=this._measureElements[t];return i.textContent=e.repeat(32),i.offsetWidth/32}}},2223:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.TEXT_BASELINE=t.DIM_OPACITY=t.INVERTED_DEFAULT_COLOR=void 0;const r=i(6114);t.INVERTED_DEFAULT_COLOR=257,t.DIM_OPACITY=.5,t.TEXT_BASELINE=r.isFirefox||r.isLegacyEdge?"bottom":"ideographic"},6171:(e,t)=>{function i(e){return 57508<=e&&e<=57558}function r(e){return e>=128512&&e<=128591||e>=127744&&e<=128511||e>=128640&&e<=128767||e>=9728&&e<=9983||e>=9984&&e<=10175||e>=65024&&e<=65039||e>=129280&&e<=129535||e>=127462&&e<=127487}Object.defineProperty(t,"__esModule",{value:!0}),t.computeNextVariantOffset=t.createRenderDimensions=t.treatGlyphAsBackgroundColor=t.allowRescaling=t.isEmoji=t.isRestrictedPowerlineGlyph=t.isPowerlineGlyph=t.throwIfFalsy=void 0,t.throwIfFalsy=function(e){if(!e)throw new Error("value must not be falsy");return e},t.isPowerlineGlyph=i,t.isRestrictedPowerlineGlyph=function(e){return 57520<=e&&e<=57527},t.isEmoji=r,t.allowRescaling=function(e,t,s,o){return 1===t&&s>Math.ceil(1.5*o)&&void 0!==e&&e>255&&!r(e)&&!i(e)&&!function(e){return 57344<=e&&e<=63743}(e)},t.treatGlyphAsBackgroundColor=function(e){return i(e)||function(e){return 9472<=e&&e<=9631}(e)},t.createRenderDimensions=function(){return{css:{canvas:{width:0,height:0},cell:{width:0,height:0}},device:{canvas:{width:0,height:0},cell:{width:0,height:0},char:{width:0,height:0,left:0,top:0}}}},t.computeNextVariantOffset=function(e,t,i=0){return(e-(2*Math.round(t)-i))%(2*Math.round(t))}},6052:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.createSelectionRenderModel=void 0;class i{constructor(){this.clear()}clear(){this.hasSelection=!1,this.columnSelectMode=!1,this.viewportStartRow=0,this.viewportEndRow=0,this.viewportCappedStartRow=0,this.viewportCappedEndRow=0,this.startCol=0,this.endCol=0,this.selectionStart=void 0,this.selectionEnd=void 0}update(e,t,i,r=!1){if(this.selectionStart=t,this.selectionEnd=i,!t||!i||t[0]===i[0]&&t[1]===i[1])return void this.clear();const s=e.buffers.active.ydisp,o=t[1]-s,n=i[1]-s,a=Math.max(o,0),h=Math.min(n,e.rows-1);a>=e.rows||h<0?this.clear():(this.hasSelection=!0,this.columnSelectMode=r,this.viewportStartRow=o,this.viewportEndRow=n,this.viewportCappedStartRow=a,this.viewportCappedEndRow=h,this.startCol=t[0],this.endCol=i[0])}isCellSelected(e,t,i){return!!this.hasSelection&&(i-=e.buffer.active.viewportY,this.columnSelectMode?this.startCol<=this.endCol?t>=this.startCol&&i>=this.viewportCappedStartRow&&t=this.viewportCappedStartRow&&t>=this.endCol&&i<=this.viewportCappedEndRow:i>this.viewportStartRow&&i=this.startCol&&t=this.startCol)}}t.createSelectionRenderModel=function(){return new i}},456:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.SelectionModel=void 0,t.SelectionModel=class{constructor(e){this._bufferService=e,this.isSelectAllActive=!1,this.selectionStartLength=0}clearSelection(){this.selectionStart=void 0,this.selectionEnd=void 0,this.isSelectAllActive=!1,this.selectionStartLength=0}get finalSelectionStart(){return this.isSelectAllActive?[0,0]:this.selectionEnd&&this.selectionStart&&this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart}get finalSelectionEnd(){if(this.isSelectAllActive)return[this._bufferService.cols,this._bufferService.buffer.ybase+this._bufferService.rows-1];if(this.selectionStart){if(!this.selectionEnd||this.areSelectionValuesReversed()){const e=this.selectionStart[0]+this.selectionStartLength;return e>this._bufferService.cols?e%this._bufferService.cols==0?[this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)-1]:[e%this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)]:[e,this.selectionStart[1]]}if(this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]){const e=this.selectionStart[0]+this.selectionStartLength;return e>this._bufferService.cols?[e%this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)]:[Math.max(e,this.selectionEnd[0]),this.selectionEnd[1]]}return this.selectionEnd}}areSelectionValuesReversed(){const e=this.selectionStart,t=this.selectionEnd;return!(!e||!t)&&(e[1]>t[1]||e[1]===t[1]&&e[0]>t[0])}handleTrim(e){return this.selectionStart&&(this.selectionStart[1]-=e),this.selectionEnd&&(this.selectionEnd[1]-=e),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)}}},428:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.CharSizeService=void 0;const o=i(2585),n=i(8460),a=i(844);let h=t.CharSizeService=class extends a.Disposable{get hasValidSize(){return this.width>0&&this.height>0}constructor(e,t,i){super(),this._optionsService=i,this.width=0,this.height=0,this._onCharSizeChange=this.register(new n.EventEmitter),this.onCharSizeChange=this._onCharSizeChange.event;try{this._measureStrategy=this.register(new u(this._optionsService))}catch{this._measureStrategy=this.register(new c(e,t,this._optionsService))}this.register(this._optionsService.onMultipleOptionChange(["fontFamily","fontSize"],()=>this.measure()))}measure(){const e=this._measureStrategy.measure();e.width===this.width&&e.height===this.height||(this.width=e.width,this.height=e.height,this._onCharSizeChange.fire())}};t.CharSizeService=h=r([s(2,o.IOptionsService)],h);class l extends a.Disposable{constructor(){super(...arguments),this._result={width:0,height:0}}_validateAndSet(e,t){void 0!==e&&e>0&&void 0!==t&&t>0&&(this._result.width=e,this._result.height=t)}}class c extends l{constructor(e,t,i){super(),this._document=e,this._parentElement=t,this._optionsService=i,this._measureElement=this._document.createElement("span"),this._measureElement.classList.add("xterm-char-measure-element"),this._measureElement.textContent="W".repeat(32),this._measureElement.setAttribute("aria-hidden","true"),this._measureElement.style.whiteSpace="pre",this._measureElement.style.fontKerning="none",this._parentElement.appendChild(this._measureElement)}measure(){return this._measureElement.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._measureElement.style.fontSize=`${this._optionsService.rawOptions.fontSize}px`,this._validateAndSet(Number(this._measureElement.offsetWidth)/32,Number(this._measureElement.offsetHeight)),this._result}}class u extends l{constructor(e){super(),this._optionsService=e,this._canvas=new OffscreenCanvas(100,100),this._ctx=this._canvas.getContext("2d");const t=this._ctx.measureText("W");if(!("width"in t&&"fontBoundingBoxAscent"in t&&"fontBoundingBoxDescent"in t))throw new Error("Required font metrics not supported")}measure(){this._ctx.font=`${this._optionsService.rawOptions.fontSize}px ${this._optionsService.rawOptions.fontFamily}`;const e=this._ctx.measureText("W");return this._validateAndSet(e.width,e.fontBoundingBoxAscent+e.fontBoundingBoxDescent),this._result}}},4269:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.CharacterJoinerService=t.JoinedCellData=void 0;const o=i(3734),n=i(643),a=i(511),h=i(2585);class l extends o.AttributeData{constructor(e,t,i){super(),this.content=0,this.combinedData="",this.fg=e.fg,this.bg=e.bg,this.combinedData=t,this._width=i}isCombined(){return 2097152}getWidth(){return this._width}getChars(){return this.combinedData}getCode(){return 2097151}setFromCharData(e){throw new Error("not implemented")}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}t.JoinedCellData=l;let c=t.CharacterJoinerService=class e{constructor(e){this._bufferService=e,this._characterJoiners=[],this._nextCharacterJoinerId=0,this._workCell=new a.CellData}register(e){const t={id:this._nextCharacterJoinerId++,handler:e};return this._characterJoiners.push(t),t.id}deregister(e){for(let t=0;t1){const e=this._getJoinedRanges(r,a,o,t,s);for(let t=0;t1){const e=this._getJoinedRanges(r,a,o,t,s);for(let t=0;t{Object.defineProperty(t,"__esModule",{value:!0}),t.CoreBrowserService=void 0;const r=i(844),s=i(8460),o=i(3656);class n extends r.Disposable{constructor(e,t,i){super(),this._textarea=e,this._window=t,this.mainDocument=i,this._isFocused=!1,this._cachedIsFocused=void 0,this._screenDprMonitor=new a(this._window),this._onDprChange=this.register(new s.EventEmitter),this.onDprChange=this._onDprChange.event,this._onWindowChange=this.register(new s.EventEmitter),this.onWindowChange=this._onWindowChange.event,this.register(this.onWindowChange(e=>this._screenDprMonitor.setWindow(e))),this.register((0,s.forwardEvent)(this._screenDprMonitor.onDprChange,this._onDprChange)),this._textarea.addEventListener("focus",()=>this._isFocused=!0),this._textarea.addEventListener("blur",()=>this._isFocused=!1)}get window(){return this._window}set window(e){this._window!==e&&(this._window=e,this._onWindowChange.fire(this._window))}get dpr(){return this.window.devicePixelRatio}get isFocused(){return void 0===this._cachedIsFocused&&(this._cachedIsFocused=this._isFocused&&this._textarea.ownerDocument.hasFocus(),queueMicrotask(()=>this._cachedIsFocused=void 0)),this._cachedIsFocused}}t.CoreBrowserService=n;class a extends r.Disposable{constructor(e){super(),this._parentWindow=e,this._windowResizeListener=this.register(new r.MutableDisposable),this._onDprChange=this.register(new s.EventEmitter),this.onDprChange=this._onDprChange.event,this._outerListener=()=>this._setDprAndFireIfDiffers(),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._updateDpr(),this._setWindowResizeListener(),this.register((0,r.toDisposable)(()=>this.clearListener()))}setWindow(e){this._parentWindow=e,this._setWindowResizeListener(),this._setDprAndFireIfDiffers()}_setWindowResizeListener(){this._windowResizeListener.value=(0,o.addDisposableDomListener)(this._parentWindow,"resize",()=>this._setDprAndFireIfDiffers())}_setDprAndFireIfDiffers(){this._parentWindow.devicePixelRatio!==this._currentDevicePixelRatio&&this._onDprChange.fire(this._parentWindow.devicePixelRatio),this._updateDpr()}_updateDpr(){this._outerListener&&(this._resolutionMediaMatchList?.removeListener(this._outerListener),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._resolutionMediaMatchList=this._parentWindow.matchMedia(`screen and (resolution: ${this._parentWindow.devicePixelRatio}dppx)`),this._resolutionMediaMatchList.addListener(this._outerListener))}clearListener(){this._resolutionMediaMatchList&&this._outerListener&&(this._resolutionMediaMatchList.removeListener(this._outerListener),this._resolutionMediaMatchList=void 0,this._outerListener=void 0)}}},779:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.LinkProviderService=void 0;const r=i(844);class s extends r.Disposable{constructor(){super(),this.linkProviders=[],this.register((0,r.toDisposable)(()=>this.linkProviders.length=0))}registerLinkProvider(e){return this.linkProviders.push(e),{dispose:()=>{const t=this.linkProviders.indexOf(e);-1!==t&&this.linkProviders.splice(t,1)}}}}t.LinkProviderService=s},8934:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.MouseService=void 0;const o=i(4725),n=i(9806);let a=t.MouseService=class{constructor(e,t){this._renderService=e,this._charSizeService=t}getCoords(e,t,i,r,s){return(0,n.getCoords)(window,e,t,i,r,this._charSizeService.hasValidSize,this._renderService.dimensions.css.cell.width,this._renderService.dimensions.css.cell.height,s)}getMouseReportCoords(e,t){const i=(0,n.getCoordsRelativeToElement)(window,e,t);if(this._charSizeService.hasValidSize)return i[0]=Math.min(Math.max(i[0],0),this._renderService.dimensions.css.canvas.width-1),i[1]=Math.min(Math.max(i[1],0),this._renderService.dimensions.css.canvas.height-1),{col:Math.floor(i[0]/this._renderService.dimensions.css.cell.width),row:Math.floor(i[1]/this._renderService.dimensions.css.cell.height),x:Math.floor(i[0]),y:Math.floor(i[1])}}};t.MouseService=a=r([s(0,o.IRenderService),s(1,o.ICharSizeService)],a)},3230:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.RenderService=void 0;const o=i(6193),n=i(4725),a=i(8460),h=i(844),l=i(7226),c=i(2585);let u=t.RenderService=class extends h.Disposable{get dimensions(){return this._renderer.value.dimensions}constructor(e,t,i,r,s,n,c,u){super(),this._rowCount=e,this._charSizeService=r,this._renderer=this.register(new h.MutableDisposable),this._pausedResizeTask=new l.DebouncedIdleTask,this._observerDisposable=this.register(new h.MutableDisposable),this._isPaused=!1,this._needsFullRefresh=!1,this._isNextRenderRedrawOnly=!0,this._needsSelectionRefresh=!1,this._canvasWidth=0,this._canvasHeight=0,this._selectionState={start:void 0,end:void 0,columnSelectMode:!1},this._onDimensionsChange=this.register(new a.EventEmitter),this.onDimensionsChange=this._onDimensionsChange.event,this._onRenderedViewportChange=this.register(new a.EventEmitter),this.onRenderedViewportChange=this._onRenderedViewportChange.event,this._onRender=this.register(new a.EventEmitter),this.onRender=this._onRender.event,this._onRefreshRequest=this.register(new a.EventEmitter),this.onRefreshRequest=this._onRefreshRequest.event,this._renderDebouncer=new o.RenderDebouncer((e,t)=>this._renderRows(e,t),c),this.register(this._renderDebouncer),this.register(c.onDprChange(()=>this.handleDevicePixelRatioChange())),this.register(n.onResize(()=>this._fullRefresh())),this.register(n.buffers.onBufferActivate(()=>this._renderer.value?.clear())),this.register(i.onOptionChange(()=>this._handleOptionsChanged())),this.register(this._charSizeService.onCharSizeChange(()=>this.handleCharSizeChanged())),this.register(s.onDecorationRegistered(()=>this._fullRefresh())),this.register(s.onDecorationRemoved(()=>this._fullRefresh())),this.register(i.onMultipleOptionChange(["customGlyphs","drawBoldTextInBrightColors","letterSpacing","lineHeight","fontFamily","fontSize","fontWeight","fontWeightBold","minimumContrastRatio","rescaleOverlappingGlyphs"],()=>{this.clear(),this.handleResize(n.cols,n.rows),this._fullRefresh()})),this.register(i.onMultipleOptionChange(["cursorBlink","cursorStyle"],()=>this.refreshRows(n.buffer.y,n.buffer.y,!0))),this.register(u.onChangeColors(()=>this._fullRefresh())),this._registerIntersectionObserver(c.window,t),this.register(c.onWindowChange(e=>this._registerIntersectionObserver(e,t)))}_registerIntersectionObserver(e,t){if("IntersectionObserver"in e){const i=new e.IntersectionObserver(e=>this._handleIntersectionChange(e[e.length-1]),{threshold:0});i.observe(t),this._observerDisposable.value=(0,h.toDisposable)(()=>i.disconnect())}}_handleIntersectionChange(e){this._isPaused=void 0===e.isIntersecting?0===e.intersectionRatio:!e.isIntersecting,this._isPaused||this._charSizeService.hasValidSize||this._charSizeService.measure(),!this._isPaused&&this._needsFullRefresh&&(this._pausedResizeTask.flush(),this.refreshRows(0,this._rowCount-1),this._needsFullRefresh=!1)}refreshRows(e,t,i=!1){this._isPaused?this._needsFullRefresh=!0:(i||(this._isNextRenderRedrawOnly=!1),this._renderDebouncer.refresh(e,t,this._rowCount))}_renderRows(e,t){this._renderer.value&&(e=Math.min(e,this._rowCount-1),t=Math.min(t,this._rowCount-1),this._renderer.value.renderRows(e,t),this._needsSelectionRefresh&&(this._renderer.value.handleSelectionChanged(this._selectionState.start,this._selectionState.end,this._selectionState.columnSelectMode),this._needsSelectionRefresh=!1),this._isNextRenderRedrawOnly||this._onRenderedViewportChange.fire({start:e,end:t}),this._onRender.fire({start:e,end:t}),this._isNextRenderRedrawOnly=!0)}resize(e,t){this._rowCount=t,this._fireOnCanvasResize()}_handleOptionsChanged(){this._renderer.value&&(this.refreshRows(0,this._rowCount-1),this._fireOnCanvasResize())}_fireOnCanvasResize(){this._renderer.value&&(this._renderer.value.dimensions.css.canvas.width===this._canvasWidth&&this._renderer.value.dimensions.css.canvas.height===this._canvasHeight||this._onDimensionsChange.fire(this._renderer.value.dimensions))}hasRenderer(){return!!this._renderer.value}setRenderer(e){this._renderer.value=e,this._renderer.value&&(this._renderer.value.onRequestRedraw(e=>this.refreshRows(e.start,e.end,!0)),this._needsSelectionRefresh=!0,this._fullRefresh())}addRefreshCallback(e){return this._renderDebouncer.addRefreshCallback(e)}_fullRefresh(){this._isPaused?this._needsFullRefresh=!0:this.refreshRows(0,this._rowCount-1)}clearTextureAtlas(){this._renderer.value&&(this._renderer.value.clearTextureAtlas?.(),this._fullRefresh())}handleDevicePixelRatioChange(){this._charSizeService.measure(),this._renderer.value&&(this._renderer.value.handleDevicePixelRatioChange(),this.refreshRows(0,this._rowCount-1))}handleResize(e,t){this._renderer.value&&(this._isPaused?this._pausedResizeTask.set(()=>this._renderer.value?.handleResize(e,t)):this._renderer.value.handleResize(e,t),this._fullRefresh())}handleCharSizeChanged(){this._renderer.value?.handleCharSizeChanged()}handleBlur(){this._renderer.value?.handleBlur()}handleFocus(){this._renderer.value?.handleFocus()}handleSelectionChanged(e,t,i){this._selectionState.start=e,this._selectionState.end=t,this._selectionState.columnSelectMode=i,this._renderer.value?.handleSelectionChanged(e,t,i)}handleCursorMove(){this._renderer.value?.handleCursorMove()}clear(){this._renderer.value?.clear()}};t.RenderService=u=r([s(2,c.IOptionsService),s(3,n.ICharSizeService),s(4,c.IDecorationService),s(5,c.IBufferService),s(6,n.ICoreBrowserService),s(7,n.IThemeService)],u)},9312:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.SelectionService=void 0;const o=i(9806),n=i(9504),a=i(456),h=i(4725),l=i(8460),c=i(844),u=i(6114),d=i(4841),_=i(511),f=i(2585),g=String.fromCharCode(160),p=new RegExp(g,"g");let m=t.SelectionService=class extends c.Disposable{constructor(e,t,i,r,s,o,n,h,u){super(),this._element=e,this._screenElement=t,this._linkifier=i,this._bufferService=r,this._coreService=s,this._mouseService=o,this._optionsService=n,this._renderService=h,this._coreBrowserService=u,this._dragScrollAmount=0,this._enabled=!0,this._workCell=new _.CellData,this._mouseDownTimeStamp=0,this._oldHasSelection=!1,this._oldSelectionStart=void 0,this._oldSelectionEnd=void 0,this._onLinuxMouseSelection=this.register(new l.EventEmitter),this.onLinuxMouseSelection=this._onLinuxMouseSelection.event,this._onRedrawRequest=this.register(new l.EventEmitter),this.onRequestRedraw=this._onRedrawRequest.event,this._onSelectionChange=this.register(new l.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onRequestScrollLines=this.register(new l.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this._mouseMoveListener=e=>this._handleMouseMove(e),this._mouseUpListener=e=>this._handleMouseUp(e),this._coreService.onUserInput(()=>{this.hasSelection&&this.clearSelection()}),this._trimListener=this._bufferService.buffer.lines.onTrim(e=>this._handleTrim(e)),this.register(this._bufferService.buffers.onBufferActivate(e=>this._handleBufferActivate(e))),this.enable(),this._model=new a.SelectionModel(this._bufferService),this._activeSelectionMode=0,this.register((0,c.toDisposable)(()=>{this._removeMouseDownListeners()}))}reset(){this.clearSelection()}disable(){this.clearSelection(),this._enabled=!1}enable(){this._enabled=!0}get selectionStart(){return this._model.finalSelectionStart}get selectionEnd(){return this._model.finalSelectionEnd}get hasSelection(){const e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;return!(!e||!t||e[0]===t[0]&&e[1]===t[1])}get selectionText(){const e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;if(!e||!t)return"";const i=this._bufferService.buffer,r=[];if(3===this._activeSelectionMode){if(e[0]===t[0])return"";const s=e[0]e.replace(p," ")).join(u.isWindows?"\r\n":"\n")}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(e){this._refreshAnimationFrame||(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._refresh())),u.isLinux&&e&&this.selectionText.length&&this._onLinuxMouseSelection.fire(this.selectionText)}_refresh(){this._refreshAnimationFrame=void 0,this._onRedrawRequest.fire({start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd,columnSelectMode:3===this._activeSelectionMode})}_isClickInSelection(e){const t=this._getMouseBufferCoords(e),i=this._model.finalSelectionStart,r=this._model.finalSelectionEnd;return!!(i&&r&&t)&&this._areCoordsInSelection(t,i,r)}isCellInSelection(e,t){const i=this._model.finalSelectionStart,r=this._model.finalSelectionEnd;return!(!i||!r)&&this._areCoordsInSelection([e,t],i,r)}_areCoordsInSelection(e,t,i){return e[1]>t[1]&&e[1]=t[0]&&e[0]=t[0]}_selectWordAtCursor(e,t){const i=this._linkifier.currentLink?.link?.range;if(i)return this._model.selectionStart=[i.start.x-1,i.start.y-1],this._model.selectionStartLength=(0,d.getRangeLength)(i,this._bufferService.cols),this._model.selectionEnd=void 0,!0;const r=this._getMouseBufferCoords(e);return!!r&&(this._selectWordAt(r,t),this._model.selectionEnd=void 0,!0)}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(e,t){this._model.clearSelection(),e=Math.max(e,0),t=Math.min(t,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,e],this._model.selectionEnd=[this._bufferService.cols,t],this.refresh(),this._onSelectionChange.fire()}_handleTrim(e){this._model.handleTrim(e)&&this.refresh()}_getMouseBufferCoords(e){const t=this._mouseService.getCoords(e,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(t)return t[0]--,t[1]--,t[1]+=this._bufferService.buffer.ydisp,t}_getMouseEventScrollAmount(e){let t=(0,o.getCoordsRelativeToElement)(this._coreBrowserService.window,e,this._screenElement)[1];const i=this._renderService.dimensions.css.canvas.height;return t>=0&&t<=i?0:(t>i&&(t-=i),t=Math.min(Math.max(t,-50),50),t/=50,t/Math.abs(t)+Math.round(14*t))}shouldForceSelection(e){return u.isMac?e.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:e.shiftKey}handleMouseDown(e){if(this._mouseDownTimeStamp=e.timeStamp,(2!==e.button||!this.hasSelection)&&0===e.button){if(!this._enabled){if(!this.shouldForceSelection(e))return;e.stopPropagation()}e.preventDefault(),this._dragScrollAmount=0,this._enabled&&e.shiftKey?this._handleIncrementalClick(e):1===e.detail?this._handleSingleClick(e):2===e.detail?this._handleDoubleClick(e):3===e.detail&&this._handleTripleClick(e),this._addMouseDownListeners(),this.refresh(!0)}}_addMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.addEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.addEventListener("mouseup",this._mouseUpListener)),this._dragScrollIntervalTimer=this._coreBrowserService.window.setInterval(()=>this._dragScroll(),50)}_removeMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.removeEventListener("mousemove",this._mouseMoveListener),this._screenElement.ownerDocument.removeEventListener("mouseup",this._mouseUpListener)),this._coreBrowserService.window.clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=void 0}_handleIncrementalClick(e){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(e))}_handleSingleClick(e){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(e)?3:0,this._model.selectionStart=this._getMouseBufferCoords(e),!this._model.selectionStart)return;this._model.selectionEnd=void 0;const t=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);t&&t.length!==this._model.selectionStart[0]&&0===t.hasWidth(this._model.selectionStart[0])&&this._model.selectionStart[0]++}_handleDoubleClick(e){this._selectWordAtCursor(e,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(e){const t=this._getMouseBufferCoords(e);t&&(this._activeSelectionMode=2,this._selectLineAt(t[1]))}shouldColumnSelect(e){return e.altKey&&!(u.isMac&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(e){if(e.stopImmediatePropagation(),!this._model.selectionStart)return;const t=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(e),!this._model.selectionEnd)return void this.refresh(!0);2===this._activeSelectionMode?this._model.selectionEnd[1]0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));const i=this._bufferService.buffer;if(this._model.selectionEnd[1]0?(3!==this._activeSelectionMode&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(e.ydisp+this._bufferService.rows,e.lines.length-1)):(3!==this._activeSelectionMode&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=e.ydisp),this.refresh()}}_handleMouseUp(e){const t=e.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&t<500&&e.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){const t=this._mouseService.getCoords(e,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(t&&void 0!==t[0]&&void 0!==t[1]){const e=(0,n.moveToCellSequence)(t[0]-1,t[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(e,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){const e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd,i=!(!e||!t||e[0]===t[0]&&e[1]===t[1]);i?e&&t&&(this._oldSelectionStart&&this._oldSelectionEnd&&e[0]===this._oldSelectionStart[0]&&e[1]===this._oldSelectionStart[1]&&t[0]===this._oldSelectionEnd[0]&&t[1]===this._oldSelectionEnd[1]||this._fireOnSelectionChange(e,t,i)):this._oldHasSelection&&this._fireOnSelectionChange(e,t,i)}_fireOnSelectionChange(e,t,i){this._oldSelectionStart=e,this._oldSelectionEnd=t,this._oldHasSelection=i,this._onSelectionChange.fire()}_handleBufferActivate(e){this.clearSelection(),this._trimListener.dispose(),this._trimListener=e.activeBuffer.lines.onTrim(e=>this._handleTrim(e))}_convertViewportColToCharacterIndex(e,t){let i=t;for(let r=0;t>=r;r++){const s=e.loadCell(r,this._workCell).getChars().length;0===this._workCell.getWidth()?i--:s>1&&t!==r&&(i+=s-1)}return i}setSelection(e,t,i){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[e,t],this._model.selectionStartLength=i,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(e){this._isClickInSelection(e)||(this._selectWordAtCursor(e,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(e,t,i=!0,r=!0){if(e[0]>=this._bufferService.cols)return;const s=this._bufferService.buffer,o=s.lines.get(e[1]);if(!o)return;const n=s.translateBufferLineToString(e[1],!1);let a=this._convertViewportColToCharacterIndex(o,e[0]),h=a;const l=e[0]-a;let c=0,u=0,d=0,_=0;if(" "===n.charAt(a)){for(;a>0&&" "===n.charAt(a-1);)a--;for(;h1&&(_+=r-1,h+=r-1);t>0&&a>0&&!this._isCharWordSeparator(o.loadCell(t-1,this._workCell));){o.loadCell(t-1,this._workCell);const e=this._workCell.getChars().length;0===this._workCell.getWidth()?(c++,t--):e>1&&(d+=e-1,a-=e-1),a--,t--}for(;i1&&(_+=e-1,h+=e-1),h++,i++}}h++;let f=a+l-c+d,g=Math.min(this._bufferService.cols,h-a+c+u-d-_);if(t||""!==n.slice(a,h).trim()){if(i&&0===f&&32!==o.getCodePoint(0)){const t=s.lines.get(e[1]-1);if(t&&o.isWrapped&&32!==t.getCodePoint(this._bufferService.cols-1)){const t=this._getWordAt([this._bufferService.cols-1,e[1]-1],!1,!0,!1);if(t){const e=this._bufferService.cols-t.start;f-=e,g+=e}}}if(r&&f+g===this._bufferService.cols&&32!==o.getCodePoint(this._bufferService.cols-1)){const t=s.lines.get(e[1]+1);if(t?.isWrapped&&32!==t.getCodePoint(0)){const t=this._getWordAt([0,e[1]+1],!1,!1,!0);t&&(g+=t.length)}}return{start:f,length:g}}}_selectWordAt(e,t){const i=this._getWordAt(e,t);if(i){for(;i.start<0;)i.start+=this._bufferService.cols,e[1]--;this._model.selectionStart=[i.start,e[1]],this._model.selectionStartLength=i.length}}_selectToWordAt(e){const t=this._getWordAt(e,!0);if(t){let i=e[1];for(;t.start<0;)t.start+=this._bufferService.cols,i--;if(!this._model.areSelectionValuesReversed())for(;t.start+t.length>this._bufferService.cols;)t.length-=this._bufferService.cols,i++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?t.start:t.start+t.length,i]}}_isCharWordSeparator(e){return 0!==e.getWidth()&&this._optionsService.rawOptions.wordSeparator.indexOf(e.getChars())>=0}_selectLineAt(e){const t=this._bufferService.buffer.getWrappedRangeForLine(e),i={start:{x:0,y:t.first},end:{x:this._bufferService.cols-1,y:t.last}};this._model.selectionStart=[0,t.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=(0,d.getRangeLength)(i,this._bufferService.cols)}};t.SelectionService=m=r([s(3,f.IBufferService),s(4,f.ICoreService),s(5,h.IMouseService),s(6,f.IOptionsService),s(7,h.IRenderService),s(8,h.ICoreBrowserService)],m)},4725:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ILinkProviderService=t.IThemeService=t.ICharacterJoinerService=t.ISelectionService=t.IRenderService=t.IMouseService=t.ICoreBrowserService=t.ICharSizeService=void 0;const r=i(8343);t.ICharSizeService=(0,r.createDecorator)("CharSizeService"),t.ICoreBrowserService=(0,r.createDecorator)("CoreBrowserService"),t.IMouseService=(0,r.createDecorator)("MouseService"),t.IRenderService=(0,r.createDecorator)("RenderService"),t.ISelectionService=(0,r.createDecorator)("SelectionService"),t.ICharacterJoinerService=(0,r.createDecorator)("CharacterJoinerService"),t.IThemeService=(0,r.createDecorator)("ThemeService"),t.ILinkProviderService=(0,r.createDecorator)("LinkProviderService")},6731:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.ThemeService=t.DEFAULT_ANSI_COLORS=void 0;const o=i(7239),n=i(8055),a=i(8460),h=i(844),l=i(2585),c=n.css.toColor("#ffffff"),u=n.css.toColor("#000000"),d=n.css.toColor("#ffffff"),_=n.css.toColor("#000000"),f={css:"rgba(255, 255, 255, 0.3)",rgba:4294967117};t.DEFAULT_ANSI_COLORS=Object.freeze((()=>{const e=[n.css.toColor("#2e3436"),n.css.toColor("#cc0000"),n.css.toColor("#4e9a06"),n.css.toColor("#c4a000"),n.css.toColor("#3465a4"),n.css.toColor("#75507b"),n.css.toColor("#06989a"),n.css.toColor("#d3d7cf"),n.css.toColor("#555753"),n.css.toColor("#ef2929"),n.css.toColor("#8ae234"),n.css.toColor("#fce94f"),n.css.toColor("#729fcf"),n.css.toColor("#ad7fa8"),n.css.toColor("#34e2e2"),n.css.toColor("#eeeeec")],t=[0,95,135,175,215,255];for(let i=0;i<216;i++){const r=t[i/36%6|0],s=t[i/6%6|0],o=t[i%6];e.push({css:n.channels.toCss(r,s,o),rgba:n.channels.toRgba(r,s,o)})}for(let t=0;t<24;t++){const i=8+10*t;e.push({css:n.channels.toCss(i,i,i),rgba:n.channels.toRgba(i,i,i)})}return e})());let g=t.ThemeService=class extends h.Disposable{get colors(){return this._colors}constructor(e){super(),this._optionsService=e,this._contrastCache=new o.ColorContrastCache,this._halfContrastCache=new o.ColorContrastCache,this._onChangeColors=this.register(new a.EventEmitter),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:c,background:u,cursor:d,cursorAccent:_,selectionForeground:void 0,selectionBackgroundTransparent:f,selectionBackgroundOpaque:n.color.blend(u,f),selectionInactiveBackgroundTransparent:f,selectionInactiveBackgroundOpaque:n.color.blend(u,f),ansi:t.DEFAULT_ANSI_COLORS.slice(),contrastCache:this._contrastCache,halfContrastCache:this._halfContrastCache},this._updateRestoreColors(),this._setTheme(this._optionsService.rawOptions.theme),this.register(this._optionsService.onSpecificOptionChange("minimumContrastRatio",()=>this._contrastCache.clear())),this.register(this._optionsService.onSpecificOptionChange("theme",()=>this._setTheme(this._optionsService.rawOptions.theme)))}_setTheme(e={}){const i=this._colors;if(i.foreground=p(e.foreground,c),i.background=p(e.background,u),i.cursor=p(e.cursor,d),i.cursorAccent=p(e.cursorAccent,_),i.selectionBackgroundTransparent=p(e.selectionBackground,f),i.selectionBackgroundOpaque=n.color.blend(i.background,i.selectionBackgroundTransparent),i.selectionInactiveBackgroundTransparent=p(e.selectionInactiveBackground,i.selectionBackgroundTransparent),i.selectionInactiveBackgroundOpaque=n.color.blend(i.background,i.selectionInactiveBackgroundTransparent),i.selectionForeground=e.selectionForeground?p(e.selectionForeground,n.NULL_COLOR):void 0,i.selectionForeground===n.NULL_COLOR&&(i.selectionForeground=void 0),n.color.isOpaque(i.selectionBackgroundTransparent)){const e=.3;i.selectionBackgroundTransparent=n.color.opacity(i.selectionBackgroundTransparent,e)}if(n.color.isOpaque(i.selectionInactiveBackgroundTransparent)){const e=.3;i.selectionInactiveBackgroundTransparent=n.color.opacity(i.selectionInactiveBackgroundTransparent,e)}if(i.ansi=t.DEFAULT_ANSI_COLORS.slice(),i.ansi[0]=p(e.black,t.DEFAULT_ANSI_COLORS[0]),i.ansi[1]=p(e.red,t.DEFAULT_ANSI_COLORS[1]),i.ansi[2]=p(e.green,t.DEFAULT_ANSI_COLORS[2]),i.ansi[3]=p(e.yellow,t.DEFAULT_ANSI_COLORS[3]),i.ansi[4]=p(e.blue,t.DEFAULT_ANSI_COLORS[4]),i.ansi[5]=p(e.magenta,t.DEFAULT_ANSI_COLORS[5]),i.ansi[6]=p(e.cyan,t.DEFAULT_ANSI_COLORS[6]),i.ansi[7]=p(e.white,t.DEFAULT_ANSI_COLORS[7]),i.ansi[8]=p(e.brightBlack,t.DEFAULT_ANSI_COLORS[8]),i.ansi[9]=p(e.brightRed,t.DEFAULT_ANSI_COLORS[9]),i.ansi[10]=p(e.brightGreen,t.DEFAULT_ANSI_COLORS[10]),i.ansi[11]=p(e.brightYellow,t.DEFAULT_ANSI_COLORS[11]),i.ansi[12]=p(e.brightBlue,t.DEFAULT_ANSI_COLORS[12]),i.ansi[13]=p(e.brightMagenta,t.DEFAULT_ANSI_COLORS[13]),i.ansi[14]=p(e.brightCyan,t.DEFAULT_ANSI_COLORS[14]),i.ansi[15]=p(e.brightWhite,t.DEFAULT_ANSI_COLORS[15]),e.extendedAnsi){const r=Math.min(i.ansi.length-16,e.extendedAnsi.length);for(let s=0;s{Object.defineProperty(t,"__esModule",{value:!0}),t.CircularList=void 0;const r=i(8460),s=i(844);class o extends s.Disposable{constructor(e){super(),this._maxLength=e,this.onDeleteEmitter=this.register(new r.EventEmitter),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this.register(new r.EventEmitter),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this.register(new r.EventEmitter),this.onTrim=this.onTrimEmitter.event,this._array=new Array(this._maxLength),this._startIndex=0,this._length=0}get maxLength(){return this._maxLength}set maxLength(e){if(this._maxLength===e)return;const t=new Array(e);for(let i=0;ithis._length)for(let t=this._length;t=e;t--)this._array[this._getCyclicIndex(t+i.length)]=this._array[this._getCyclicIndex(t)];for(let t=0;tthis._maxLength){const e=this._length+i.length-this._maxLength;this._startIndex+=e,this._length=this._maxLength,this.onTrimEmitter.fire(e)}else this._length+=i.length}trimStart(e){e>this._length&&(e=this._length),this._startIndex+=e,this._length-=e,this.onTrimEmitter.fire(e)}shiftElements(e,t,i){if(!(t<=0)){if(e<0||e>=this._length)throw new Error("start argument out of range");if(e+i<0)throw new Error("Cannot shift elements in list beyond index 0");if(i>0){for(let r=t-1;r>=0;r--)this.set(e+r+i,this.get(e+r));const r=e+t+i-this._length;if(r>0)for(this._length+=r;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let r=0;r{Object.defineProperty(t,"__esModule",{value:!0}),t.clone=void 0,t.clone=function e(t,i=5){if("object"!=typeof t)return t;const r=Array.isArray(t)?[]:{};for(const s in t)r[s]=i<=1?t[s]:t[s]&&e(t[s],i-1);return r}},8055:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.contrastRatio=t.toPaddedHex=t.rgba=t.rgb=t.css=t.color=t.channels=t.NULL_COLOR=void 0;let i=0,r=0,s=0,o=0;var n,a,h,l,c;function u(e){const t=e.toString(16);return t.length<2?"0"+t:t}function d(e,t){return e>>0},e.toColor=function(t,i,r,s){return{css:e.toCss(t,i,r,s),rgba:e.toRgba(t,i,r,s)}}}(n||(t.channels=n={})),function(e){function t(e,t){return o=Math.round(255*t),[i,r,s]=c.toChannels(e.rgba),{css:n.toCss(i,r,s,o),rgba:n.toRgba(i,r,s,o)}}e.blend=function(e,t){if(o=(255&t.rgba)/255,1===o)return{css:t.css,rgba:t.rgba};const a=t.rgba>>24&255,h=t.rgba>>16&255,l=t.rgba>>8&255,c=e.rgba>>24&255,u=e.rgba>>16&255,d=e.rgba>>8&255;return i=c+Math.round((a-c)*o),r=u+Math.round((h-u)*o),s=d+Math.round((l-d)*o),{css:n.toCss(i,r,s),rgba:n.toRgba(i,r,s)}},e.isOpaque=function(e){return!(255&~e.rgba)},e.ensureContrastRatio=function(e,t,i){const r=c.ensureContrastRatio(e.rgba,t.rgba,i);if(r)return n.toColor(r>>24&255,r>>16&255,r>>8&255)},e.opaque=function(e){const t=(255|e.rgba)>>>0;return[i,r,s]=c.toChannels(t),{css:n.toCss(i,r,s),rgba:t}},e.opacity=t,e.multiplyOpacity=function(e,i){return o=255&e.rgba,t(e,o*i/255)},e.toColorRGB=function(e){return[e.rgba>>24&255,e.rgba>>16&255,e.rgba>>8&255]}}(a||(t.color=a={})),function(e){let t,a;try{const e=document.createElement("canvas");e.width=1,e.height=1;const i=e.getContext("2d",{willReadFrequently:!0});i&&(t=i,t.globalCompositeOperation="copy",a=t.createLinearGradient(0,0,1,1))}catch{}e.toColor=function(e){if(e.match(/#[\da-f]{3,8}/i))switch(e.length){case 4:return i=parseInt(e.slice(1,2).repeat(2),16),r=parseInt(e.slice(2,3).repeat(2),16),s=parseInt(e.slice(3,4).repeat(2),16),n.toColor(i,r,s);case 5:return i=parseInt(e.slice(1,2).repeat(2),16),r=parseInt(e.slice(2,3).repeat(2),16),s=parseInt(e.slice(3,4).repeat(2),16),o=parseInt(e.slice(4,5).repeat(2),16),n.toColor(i,r,s,o);case 7:return{css:e,rgba:(parseInt(e.slice(1),16)<<8|255)>>>0};case 9:return{css:e,rgba:parseInt(e.slice(1),16)>>>0}}const h=e.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(h)return i=parseInt(h[1]),r=parseInt(h[2]),s=parseInt(h[3]),o=Math.round(255*(void 0===h[5]?1:parseFloat(h[5]))),n.toColor(i,r,s,o);if(!t||!a)throw new Error("css.toColor: Unsupported css format");if(t.fillStyle=a,t.fillStyle=e,"string"!=typeof t.fillStyle)throw new Error("css.toColor: Unsupported css format");if(t.fillRect(0,0,1,1),[i,r,s,o]=t.getImageData(0,0,1,1).data,255!==o)throw new Error("css.toColor: Unsupported css format");return{rgba:n.toRgba(i,r,s,o),css:e}}}(h||(t.css=h={})),function(e){function t(e,t,i){const r=e/255,s=t/255,o=i/255;return.2126*(r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))+.7152*(s<=.03928?s/12.92:Math.pow((s+.055)/1.055,2.4))+.0722*(o<=.03928?o/12.92:Math.pow((o+.055)/1.055,2.4))}e.relativeLuminance=function(e){return t(e>>16&255,e>>8&255,255&e)},e.relativeLuminance2=t}(l||(t.rgb=l={})),function(e){function t(e,t,i){const r=e>>24&255,s=e>>16&255,o=e>>8&255;let n=t>>24&255,a=t>>16&255,h=t>>8&255,c=d(l.relativeLuminance2(n,a,h),l.relativeLuminance2(r,s,o));for(;c0||a>0||h>0);)n-=Math.max(0,Math.ceil(.1*n)),a-=Math.max(0,Math.ceil(.1*a)),h-=Math.max(0,Math.ceil(.1*h)),c=d(l.relativeLuminance2(n,a,h),l.relativeLuminance2(r,s,o));return(n<<24|a<<16|h<<8|255)>>>0}function a(e,t,i){const r=e>>24&255,s=e>>16&255,o=e>>8&255;let n=t>>24&255,a=t>>16&255,h=t>>8&255,c=d(l.relativeLuminance2(n,a,h),l.relativeLuminance2(r,s,o));for(;c>>0}e.blend=function(e,t){if(o=(255&t)/255,1===o)return t;const a=t>>24&255,h=t>>16&255,l=t>>8&255,c=e>>24&255,u=e>>16&255,d=e>>8&255;return i=c+Math.round((a-c)*o),r=u+Math.round((h-u)*o),s=d+Math.round((l-d)*o),n.toRgba(i,r,s)},e.ensureContrastRatio=function(e,i,r){const s=l.relativeLuminance(e>>8),o=l.relativeLuminance(i>>8);if(d(s,o)>8));if(nd(s,l.relativeLuminance(t>>8))?o:t}return o}const n=a(e,i,r),h=d(s,l.relativeLuminance(n>>8));if(hd(s,l.relativeLuminance(o>>8))?n:o}return n}},e.reduceLuminance=t,e.increaseLuminance=a,e.toChannels=function(e){return[e>>24&255,e>>16&255,e>>8&255,255&e]}}(c||(t.rgba=c={})),t.toPaddedHex=u,t.contrastRatio=d},8969:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CoreTerminal=void 0;const r=i(844),s=i(2585),o=i(4348),n=i(7866),a=i(744),h=i(7302),l=i(6975),c=i(8460),u=i(1753),d=i(1480),_=i(7994),f=i(9282),g=i(5435),p=i(5981),m=i(2660);let v=!1;class b extends r.Disposable{get onScroll(){return this._onScrollApi||(this._onScrollApi=this.register(new c.EventEmitter),this._onScroll.event(e=>{this._onScrollApi?.fire(e.position)})),this._onScrollApi.event}get cols(){return this._bufferService.cols}get rows(){return this._bufferService.rows}get buffers(){return this._bufferService.buffers}get options(){return this.optionsService.options}set options(e){for(const t in e)this.optionsService.options[t]=e[t]}constructor(e){super(),this._windowsWrappingHeuristics=this.register(new r.MutableDisposable),this._onBinary=this.register(new c.EventEmitter),this.onBinary=this._onBinary.event,this._onData=this.register(new c.EventEmitter),this.onData=this._onData.event,this._onLineFeed=this.register(new c.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onResize=this.register(new c.EventEmitter),this.onResize=this._onResize.event,this._onWriteParsed=this.register(new c.EventEmitter),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this.register(new c.EventEmitter),this._instantiationService=new o.InstantiationService,this.optionsService=this.register(new h.OptionsService(e)),this._instantiationService.setService(s.IOptionsService,this.optionsService),this._bufferService=this.register(this._instantiationService.createInstance(a.BufferService)),this._instantiationService.setService(s.IBufferService,this._bufferService),this._logService=this.register(this._instantiationService.createInstance(n.LogService)),this._instantiationService.setService(s.ILogService,this._logService),this.coreService=this.register(this._instantiationService.createInstance(l.CoreService)),this._instantiationService.setService(s.ICoreService,this.coreService),this.coreMouseService=this.register(this._instantiationService.createInstance(u.CoreMouseService)),this._instantiationService.setService(s.ICoreMouseService,this.coreMouseService),this.unicodeService=this.register(this._instantiationService.createInstance(d.UnicodeService)),this._instantiationService.setService(s.IUnicodeService,this.unicodeService),this._charsetService=this._instantiationService.createInstance(_.CharsetService),this._instantiationService.setService(s.ICharsetService,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(m.OscLinkService),this._instantiationService.setService(s.IOscLinkService,this._oscLinkService),this._inputHandler=this.register(new g.InputHandler(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this.register((0,c.forwardEvent)(this._inputHandler.onLineFeed,this._onLineFeed)),this.register(this._inputHandler),this.register((0,c.forwardEvent)(this._bufferService.onResize,this._onResize)),this.register((0,c.forwardEvent)(this.coreService.onData,this._onData)),this.register((0,c.forwardEvent)(this.coreService.onBinary,this._onBinary)),this.register(this.coreService.onRequestScrollToBottom(()=>this.scrollToBottom())),this.register(this.coreService.onUserInput(()=>this._writeBuffer.handleUserInput())),this.register(this.optionsService.onMultipleOptionChange(["windowsMode","windowsPty"],()=>this._handleWindowsPtyOptionChange())),this.register(this._bufferService.onScroll(e=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this.register(this._inputHandler.onScroll(e=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this._writeBuffer=this.register(new p.WriteBuffer((e,t)=>this._inputHandler.parse(e,t))),this.register((0,c.forwardEvent)(this._writeBuffer.onWriteParsed,this._onWriteParsed))}write(e,t){this._writeBuffer.write(e,t)}writeSync(e,t){this._logService.logLevel<=s.LogLevelEnum.WARN&&!v&&(this._logService.warn("writeSync is unreliable and will be removed soon."),v=!0),this._writeBuffer.writeSync(e,t)}input(e,t=!0){this.coreService.triggerDataEvent(e,t)}resize(e,t){isNaN(e)||isNaN(t)||(e=Math.max(e,a.MINIMUM_COLS),t=Math.max(t,a.MINIMUM_ROWS),this._bufferService.resize(e,t))}scroll(e,t=!1){this._bufferService.scroll(e,t)}scrollLines(e,t,i){this._bufferService.scrollLines(e,t,i)}scrollPages(e){this.scrollLines(e*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(e){const t=e-this._bufferService.buffer.ydisp;0!==t&&this.scrollLines(t)}registerEscHandler(e,t){return this._inputHandler.registerEscHandler(e,t)}registerDcsHandler(e,t){return this._inputHandler.registerDcsHandler(e,t)}registerCsiHandler(e,t){return this._inputHandler.registerCsiHandler(e,t)}registerOscHandler(e,t){return this._inputHandler.registerOscHandler(e,t)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let e=!1;const t=this.optionsService.rawOptions.windowsPty;t&&void 0!==t.buildNumber&&void 0!==t.buildNumber?e=!!("conpty"===t.backend&&t.buildNumber<21376):this.optionsService.rawOptions.windowsMode&&(e=!0),e?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){const e=[];e.push(this.onLineFeed(f.updateWindowsModeWrappedState.bind(null,this._bufferService))),e.push(this.registerCsiHandler({final:"H"},()=>((0,f.updateWindowsModeWrappedState)(this._bufferService),!1))),this._windowsWrappingHeuristics.value=(0,r.toDisposable)(()=>{for(const t of e)t.dispose()})}}}t.CoreTerminal=b},8460:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.runAndSubscribe=t.forwardEvent=t.EventEmitter=void 0,t.EventEmitter=class{constructor(){this._listeners=[],this._disposed=!1}get event(){return this._event||(this._event=e=>(this._listeners.push(e),{dispose:()=>{if(!this._disposed)for(let t=0;tt.fire(e))},t.runAndSubscribe=function(e,t){return t(void 0),e(e=>t(e))}},5435:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.InputHandler=t.WindowsOptionsReportType=void 0;const o=i(2584),n=i(7116),a=i(2015),h=i(844),l=i(482),c=i(8437),u=i(8460),d=i(643),_=i(511),f=i(3734),g=i(2585),p=i(1480),m=i(6242),v=i(6351),b=i(5941),C={"(":0,")":1,"*":2,"+":3,"-":1,".":2},S=131072;function y(e,t){if(e>24)return t.setWinLines||!1;switch(e){case 1:return!!t.restoreWin;case 2:return!!t.minimizeWin;case 3:return!!t.setWinPosition;case 4:return!!t.setWinSizePixels;case 5:return!!t.raiseWin;case 6:return!!t.lowerWin;case 7:return!!t.refreshWin;case 8:return!!t.setWinSizeChars;case 9:return!!t.maximizeWin;case 10:return!!t.fullscreenWin;case 11:return!!t.getWinState;case 13:return!!t.getWinPosition;case 14:return!!t.getWinSizePixels;case 15:return!!t.getScreenSizePixels;case 16:return!!t.getCellSizePixels;case 18:return!!t.getWinSizeChars;case 19:return!!t.getScreenSizeChars;case 20:return!!t.getIconTitle;case 21:return!!t.getWinTitle;case 22:return!!t.pushTitle;case 23:return!!t.popTitle;case 24:return!!t.setWinLines}return!1}var w;!function(e){e[e.GET_WIN_SIZE_PIXELS=0]="GET_WIN_SIZE_PIXELS",e[e.GET_CELL_SIZE_PIXELS=1]="GET_CELL_SIZE_PIXELS"}(w||(t.WindowsOptionsReportType=w={}));let A=0;class T extends h.Disposable{getAttrData(){return this._curAttrData}constructor(e,t,i,r,s,h,d,f,g=new a.EscapeSequenceParser){super(),this._bufferService=e,this._charsetService=t,this._coreService=i,this._logService=r,this._optionsService=s,this._oscLinkService=h,this._coreMouseService=d,this._unicodeService=f,this._parser=g,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new l.StringToUtf32,this._utf8Decoder=new l.Utf8ToUtf32,this._workCell=new _.CellData,this._windowTitle="",this._iconName="",this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=c.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=c.DEFAULT_ATTR_DATA.clone(),this._onRequestBell=this.register(new u.EventEmitter),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this.register(new u.EventEmitter),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this.register(new u.EventEmitter),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this.register(new u.EventEmitter),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this.register(new u.EventEmitter),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this.register(new u.EventEmitter),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this.register(new u.EventEmitter),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this.register(new u.EventEmitter),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this.register(new u.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this.register(new u.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onScroll=this.register(new u.EventEmitter),this.onScroll=this._onScroll.event,this._onTitleChange=this.register(new u.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onColor=this.register(new u.EventEmitter),this.onColor=this._onColor.event,this._parseStack={paused:!1,cursorStartX:0,cursorStartY:0,decodedLength:0,position:0},this._specialColors=[256,257,258],this.register(this._parser),this._dirtyRowTracker=new E(this._bufferService),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate(e=>this._activeBuffer=e.activeBuffer)),this._parser.setCsiHandlerFallback((e,t)=>{this._logService.debug("Unknown CSI code: ",{identifier:this._parser.identToString(e),params:t.toArray()})}),this._parser.setEscHandlerFallback(e=>{this._logService.debug("Unknown ESC code: ",{identifier:this._parser.identToString(e)})}),this._parser.setExecuteHandlerFallback(e=>{this._logService.debug("Unknown EXECUTE code: ",{code:e})}),this._parser.setOscHandlerFallback((e,t,i)=>{this._logService.debug("Unknown OSC code: ",{identifier:e,action:t,data:i})}),this._parser.setDcsHandlerFallback((e,t,i)=>{"HOOK"===t&&(i=i.toArray()),this._logService.debug("Unknown DCS code: ",{identifier:this._parser.identToString(e),action:t,payload:i})}),this._parser.setPrintHandler((e,t,i)=>this.print(e,t,i)),this._parser.registerCsiHandler({final:"@"},e=>this.insertChars(e)),this._parser.registerCsiHandler({intermediates:" ",final:"@"},e=>this.scrollLeft(e)),this._parser.registerCsiHandler({final:"A"},e=>this.cursorUp(e)),this._parser.registerCsiHandler({intermediates:" ",final:"A"},e=>this.scrollRight(e)),this._parser.registerCsiHandler({final:"B"},e=>this.cursorDown(e)),this._parser.registerCsiHandler({final:"C"},e=>this.cursorForward(e)),this._parser.registerCsiHandler({final:"D"},e=>this.cursorBackward(e)),this._parser.registerCsiHandler({final:"E"},e=>this.cursorNextLine(e)),this._parser.registerCsiHandler({final:"F"},e=>this.cursorPrecedingLine(e)),this._parser.registerCsiHandler({final:"G"},e=>this.cursorCharAbsolute(e)),this._parser.registerCsiHandler({final:"H"},e=>this.cursorPosition(e)),this._parser.registerCsiHandler({final:"I"},e=>this.cursorForwardTab(e)),this._parser.registerCsiHandler({final:"J"},e=>this.eraseInDisplay(e,!1)),this._parser.registerCsiHandler({prefix:"?",final:"J"},e=>this.eraseInDisplay(e,!0)),this._parser.registerCsiHandler({final:"K"},e=>this.eraseInLine(e,!1)),this._parser.registerCsiHandler({prefix:"?",final:"K"},e=>this.eraseInLine(e,!0)),this._parser.registerCsiHandler({final:"L"},e=>this.insertLines(e)),this._parser.registerCsiHandler({final:"M"},e=>this.deleteLines(e)),this._parser.registerCsiHandler({final:"P"},e=>this.deleteChars(e)),this._parser.registerCsiHandler({final:"S"},e=>this.scrollUp(e)),this._parser.registerCsiHandler({final:"T"},e=>this.scrollDown(e)),this._parser.registerCsiHandler({final:"X"},e=>this.eraseChars(e)),this._parser.registerCsiHandler({final:"Z"},e=>this.cursorBackwardTab(e)),this._parser.registerCsiHandler({final:"`"},e=>this.charPosAbsolute(e)),this._parser.registerCsiHandler({final:"a"},e=>this.hPositionRelative(e)),this._parser.registerCsiHandler({final:"b"},e=>this.repeatPrecedingCharacter(e)),this._parser.registerCsiHandler({final:"c"},e=>this.sendDeviceAttributesPrimary(e)),this._parser.registerCsiHandler({prefix:">",final:"c"},e=>this.sendDeviceAttributesSecondary(e)),this._parser.registerCsiHandler({final:"d"},e=>this.linePosAbsolute(e)),this._parser.registerCsiHandler({final:"e"},e=>this.vPositionRelative(e)),this._parser.registerCsiHandler({final:"f"},e=>this.hVPosition(e)),this._parser.registerCsiHandler({final:"g"},e=>this.tabClear(e)),this._parser.registerCsiHandler({final:"h"},e=>this.setMode(e)),this._parser.registerCsiHandler({prefix:"?",final:"h"},e=>this.setModePrivate(e)),this._parser.registerCsiHandler({final:"l"},e=>this.resetMode(e)),this._parser.registerCsiHandler({prefix:"?",final:"l"},e=>this.resetModePrivate(e)),this._parser.registerCsiHandler({final:"m"},e=>this.charAttributes(e)),this._parser.registerCsiHandler({final:"n"},e=>this.deviceStatus(e)),this._parser.registerCsiHandler({prefix:"?",final:"n"},e=>this.deviceStatusPrivate(e)),this._parser.registerCsiHandler({intermediates:"!",final:"p"},e=>this.softReset(e)),this._parser.registerCsiHandler({intermediates:" ",final:"q"},e=>this.setCursorStyle(e)),this._parser.registerCsiHandler({final:"r"},e=>this.setScrollRegion(e)),this._parser.registerCsiHandler({final:"s"},e=>this.saveCursor(e)),this._parser.registerCsiHandler({final:"t"},e=>this.windowOptions(e)),this._parser.registerCsiHandler({final:"u"},e=>this.restoreCursor(e)),this._parser.registerCsiHandler({intermediates:"'",final:"}"},e=>this.insertColumns(e)),this._parser.registerCsiHandler({intermediates:"'",final:"~"},e=>this.deleteColumns(e)),this._parser.registerCsiHandler({intermediates:'"',final:"q"},e=>this.selectProtected(e)),this._parser.registerCsiHandler({intermediates:"$",final:"p"},e=>this.requestMode(e,!0)),this._parser.registerCsiHandler({prefix:"?",intermediates:"$",final:"p"},e=>this.requestMode(e,!1)),this._parser.setExecuteHandler(o.C0.BEL,()=>this.bell()),this._parser.setExecuteHandler(o.C0.LF,()=>this.lineFeed()),this._parser.setExecuteHandler(o.C0.VT,()=>this.lineFeed()),this._parser.setExecuteHandler(o.C0.FF,()=>this.lineFeed()),this._parser.setExecuteHandler(o.C0.CR,()=>this.carriageReturn()),this._parser.setExecuteHandler(o.C0.BS,()=>this.backspace()),this._parser.setExecuteHandler(o.C0.HT,()=>this.tab()),this._parser.setExecuteHandler(o.C0.SO,()=>this.shiftOut()),this._parser.setExecuteHandler(o.C0.SI,()=>this.shiftIn()),this._parser.setExecuteHandler(o.C1.IND,()=>this.index()),this._parser.setExecuteHandler(o.C1.NEL,()=>this.nextLine()),this._parser.setExecuteHandler(o.C1.HTS,()=>this.tabSet()),this._parser.registerOscHandler(0,new m.OscHandler(e=>(this.setTitle(e),this.setIconName(e),!0))),this._parser.registerOscHandler(1,new m.OscHandler(e=>this.setIconName(e))),this._parser.registerOscHandler(2,new m.OscHandler(e=>this.setTitle(e))),this._parser.registerOscHandler(4,new m.OscHandler(e=>this.setOrReportIndexedColor(e))),this._parser.registerOscHandler(8,new m.OscHandler(e=>this.setHyperlink(e))),this._parser.registerOscHandler(10,new m.OscHandler(e=>this.setOrReportFgColor(e))),this._parser.registerOscHandler(11,new m.OscHandler(e=>this.setOrReportBgColor(e))),this._parser.registerOscHandler(12,new m.OscHandler(e=>this.setOrReportCursorColor(e))),this._parser.registerOscHandler(104,new m.OscHandler(e=>this.restoreIndexedColor(e))),this._parser.registerOscHandler(110,new m.OscHandler(e=>this.restoreFgColor(e))),this._parser.registerOscHandler(111,new m.OscHandler(e=>this.restoreBgColor(e))),this._parser.registerOscHandler(112,new m.OscHandler(e=>this.restoreCursorColor(e))),this._parser.registerEscHandler({final:"7"},()=>this.saveCursor()),this._parser.registerEscHandler({final:"8"},()=>this.restoreCursor()),this._parser.registerEscHandler({final:"D"},()=>this.index()),this._parser.registerEscHandler({final:"E"},()=>this.nextLine()),this._parser.registerEscHandler({final:"H"},()=>this.tabSet()),this._parser.registerEscHandler({final:"M"},()=>this.reverseIndex()),this._parser.registerEscHandler({final:"="},()=>this.keypadApplicationMode()),this._parser.registerEscHandler({final:">"},()=>this.keypadNumericMode()),this._parser.registerEscHandler({final:"c"},()=>this.fullReset()),this._parser.registerEscHandler({final:"n"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"o"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"|"},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:"}"},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:"~"},()=>this.setgLevel(1)),this._parser.registerEscHandler({intermediates:"%",final:"@"},()=>this.selectDefaultCharset()),this._parser.registerEscHandler({intermediates:"%",final:"G"},()=>this.selectDefaultCharset());for(const e in n.CHARSETS)this._parser.registerEscHandler({intermediates:"(",final:e},()=>this.selectCharset("("+e)),this._parser.registerEscHandler({intermediates:")",final:e},()=>this.selectCharset(")"+e)),this._parser.registerEscHandler({intermediates:"*",final:e},()=>this.selectCharset("*"+e)),this._parser.registerEscHandler({intermediates:"+",final:e},()=>this.selectCharset("+"+e)),this._parser.registerEscHandler({intermediates:"-",final:e},()=>this.selectCharset("-"+e)),this._parser.registerEscHandler({intermediates:".",final:e},()=>this.selectCharset("."+e)),this._parser.registerEscHandler({intermediates:"/",final:e},()=>this.selectCharset("/"+e));this._parser.registerEscHandler({intermediates:"#",final:"8"},()=>this.screenAlignmentPattern()),this._parser.setErrorHandler(e=>(this._logService.error("Parsing error: ",e),e)),this._parser.registerDcsHandler({intermediates:"$",final:"q"},new v.DcsHandler((e,t)=>this.requestStatusString(e,t)))}_preserveStack(e,t,i,r){this._parseStack.paused=!0,this._parseStack.cursorStartX=e,this._parseStack.cursorStartY=t,this._parseStack.decodedLength=i,this._parseStack.position=r}_logSlowResolvingAsync(e){this._logService.logLevel<=g.LogLevelEnum.WARN&&Promise.race([e,new Promise((e,t)=>setTimeout(()=>t("#SLOW_TIMEOUT"),5e3))]).catch(e=>{if("#SLOW_TIMEOUT"!==e)throw e;console.warn("async parser handler taking longer than 5000 ms")})}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(e,t){let i,r=this._activeBuffer.x,s=this._activeBuffer.y,o=0;const n=this._parseStack.paused;if(n){if(i=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,t))return this._logSlowResolvingAsync(i),i;r=this._parseStack.cursorStartX,s=this._parseStack.cursorStartY,this._parseStack.paused=!1,e.length>S&&(o=this._parseStack.position+S)}if(this._logService.logLevel<=g.LogLevelEnum.DEBUG&&this._logService.debug("parsing data"+("string"==typeof e?` "${e}"`:` "${Array.prototype.map.call(e,e=>String.fromCharCode(e)).join("")}"`),"string"==typeof e?e.split("").map(e=>e.charCodeAt(0)):e),this._parseBuffer.lengthS)for(let t=o;t0&&2===f.getWidth(this._activeBuffer.x-1)&&f.setCellFromCodepoint(this._activeBuffer.x-1,0,1,_);let g=this._parser.precedingJoinState;for(let m=t;ma)if(h){const e=f;let t=this._activeBuffer.x-v;for(this._activeBuffer.x=v,this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData(),!0)):(this._activeBuffer.y>=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!0),f=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y),v>0&&f instanceof c.BufferLine&&f.copyCellsFrom(e,t,0,v,!1);t=0;)f.setCellFromCodepoint(this._activeBuffer.x++,0,0,_)}else if(u&&(f.insertCells(this._activeBuffer.x,s-v,this._activeBuffer.getNullCell(_)),2===f.getWidth(a-1)&&f.setCellFromCodepoint(a-1,d.NULL_CELL_CODE,d.NULL_CELL_WIDTH,_)),f.setCellFromCodepoint(this._activeBuffer.x++,r,s,_),s>0)for(;--s;)f.setCellFromCodepoint(this._activeBuffer.x++,0,0,_)}this._parser.precedingJoinState=g,this._activeBuffer.x0&&0===f.getWidth(this._activeBuffer.x)&&!f.hasContent(this._activeBuffer.x)&&f.setCellFromCodepoint(this._activeBuffer.x,0,1,_),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(e,t){return"t"!==e.final||e.prefix||e.intermediates?this._parser.registerCsiHandler(e,t):this._parser.registerCsiHandler(e,e=>!y(e.params[0],this._optionsService.rawOptions.windowOptions)||t(e))}registerDcsHandler(e,t){return this._parser.registerDcsHandler(e,new v.DcsHandler(t))}registerEscHandler(e,t){return this._parser.registerEscHandler(e,t)}registerOscHandler(e,t){return this._parser.registerOscHandler(e,new m.OscHandler(t))}bell(){return this._onRequestBell.fire(),!0}lineFeed(){return this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._optionsService.rawOptions.convertEol&&(this._activeBuffer.x=0),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows?this._activeBuffer.y=this._bufferService.rows-1:this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.x>=this._bufferService.cols&&this._activeBuffer.x--,this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._onLineFeed.fire(),!0}carriageReturn(){return this._activeBuffer.x=0,!0}backspace(){if(!this._coreService.decPrivateModes.reverseWraparound)return this._restrictCursor(),this._activeBuffer.x>0&&this._activeBuffer.x--,!0;if(this._restrictCursor(this._bufferService.cols),this._activeBuffer.x>0)this._activeBuffer.x--;else if(0===this._activeBuffer.x&&this._activeBuffer.y>this._activeBuffer.scrollTop&&this._activeBuffer.y<=this._activeBuffer.scrollBottom&&this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y)?.isWrapped){this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.y--,this._activeBuffer.x=this._bufferService.cols-1;const e=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);e.hasWidth(this._activeBuffer.x)&&!e.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;const e=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-e),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(e=this._bufferService.cols-1){this._activeBuffer.x=Math.min(e,Math.max(0,this._activeBuffer.x)),this._activeBuffer.y=this._coreService.decPrivateModes.origin?Math.min(this._activeBuffer.scrollBottom,Math.max(this._activeBuffer.scrollTop,this._activeBuffer.y)):Math.min(this._bufferService.rows-1,Math.max(0,this._activeBuffer.y)),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_setCursor(e,t){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=e,this._activeBuffer.y=this._activeBuffer.scrollTop+t):(this._activeBuffer.x=e,this._activeBuffer.y=t),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(e,t){this._restrictCursor(),this._setCursor(this._activeBuffer.x+e,this._activeBuffer.y+t)}cursorUp(e){const t=this._activeBuffer.y-this._activeBuffer.scrollTop;return t>=0?this._moveCursor(0,-Math.min(t,e.params[0]||1)):this._moveCursor(0,-(e.params[0]||1)),!0}cursorDown(e){const t=this._activeBuffer.scrollBottom-this._activeBuffer.y;return t>=0?this._moveCursor(0,Math.min(t,e.params[0]||1)):this._moveCursor(0,e.params[0]||1),!0}cursorForward(e){return this._moveCursor(e.params[0]||1,0),!0}cursorBackward(e){return this._moveCursor(-(e.params[0]||1),0),!0}cursorNextLine(e){return this.cursorDown(e),this._activeBuffer.x=0,!0}cursorPrecedingLine(e){return this.cursorUp(e),this._activeBuffer.x=0,!0}cursorCharAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(e){return this._setCursor(e.length>=2?(e.params[1]||1)-1:0,(e.params[0]||1)-1),!0}charPosAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(e){return this._moveCursor(e.params[0]||1,0),!0}linePosAbsolute(e){return this._setCursor(this._activeBuffer.x,(e.params[0]||1)-1),!0}vPositionRelative(e){return this._moveCursor(0,e.params[0]||1),!0}hVPosition(e){return this.cursorPosition(e),!0}tabClear(e){const t=e.params[0];return 0===t?delete this._activeBuffer.tabs[this._activeBuffer.x]:3===t&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(e){const t=e.params[0];return 1===t&&(this._curAttrData.bg|=536870912),2!==t&&0!==t||(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(e,t,i,r=!1,s=!1){const o=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);o.replaceCells(t,i,this._activeBuffer.getNullCell(this._eraseAttrData()),s),r&&(o.isWrapped=!1)}_resetBufferLine(e,t=!1){const i=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);i&&(i.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),t),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+e),i.isWrapped=!1)}eraseInDisplay(e,t=!1){let i;switch(this._restrictCursor(this._bufferService.cols),e.params[0]){case 0:for(i=this._activeBuffer.y,this._dirtyRowTracker.markDirty(i),this._eraseInBufferLine(i++,this._activeBuffer.x,this._bufferService.cols,0===this._activeBuffer.x,t);i=this._bufferService.cols&&(this._activeBuffer.lines.get(i+1).isWrapped=!1);i--;)this._resetBufferLine(i,t);this._dirtyRowTracker.markDirty(0);break;case 2:for(i=this._bufferService.rows,this._dirtyRowTracker.markDirty(i-1);i--;)this._resetBufferLine(i,t);this._dirtyRowTracker.markDirty(0);break;case 3:const e=this._activeBuffer.lines.length-this._bufferService.rows;e>0&&(this._activeBuffer.lines.trimStart(e),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-e,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-e,0),this._onScroll.fire(0))}return!0}eraseInLine(e,t=!1){switch(this._restrictCursor(this._bufferService.cols),e.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,0===this._activeBuffer.x,t);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,t);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,t)}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(e){this._restrictCursor();let t=e.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.y65535?2:1}let h=a;for(let e=1;e0||(this._is("xterm")||this._is("rxvt-unicode")||this._is("screen")?this._coreService.triggerDataEvent(o.C0.ESC+"[?1;2c"):this._is("linux")&&this._coreService.triggerDataEvent(o.C0.ESC+"[?6c")),!0}sendDeviceAttributesSecondary(e){return e.params[0]>0||(this._is("xterm")?this._coreService.triggerDataEvent(o.C0.ESC+"[>0;276;0c"):this._is("rxvt-unicode")?this._coreService.triggerDataEvent(o.C0.ESC+"[>85;95;0c"):this._is("linux")?this._coreService.triggerDataEvent(e.params[0]+"c"):this._is("screen")&&this._coreService.triggerDataEvent(o.C0.ESC+"[>83;40003;0c")),!0}_is(e){return 0===(this._optionsService.rawOptions.termName+"").indexOf(e)}setMode(e){for(let t=0;te?1:2,_=e.params[0];return f=_,g=t?2===_?4:4===_?d(n.modes.insertMode):12===_?3:20===_?d(u.convertEol):0:1===_?d(i.applicationCursorKeys):3===_?u.windowOptions.setWinLines?80===h?2:132===h?1:0:0:6===_?d(i.origin):7===_?d(i.wraparound):8===_?3:9===_?d("X10"===r):12===_?d(u.cursorBlink):25===_?d(!n.isCursorHidden):45===_?d(i.reverseWraparound):66===_?d(i.applicationKeypad):67===_?4:1e3===_?d("VT200"===r):1002===_?d("DRAG"===r):1003===_?d("ANY"===r):1004===_?d(i.sendFocus):1005===_?4:1006===_?d("SGR"===s):1015===_?4:1016===_?d("SGR_PIXELS"===s):1048===_?1:47===_||1047===_||1049===_?d(l===c):2004===_?d(i.bracketedPasteMode):0,n.triggerDataEvent(`${o.C0.ESC}[${t?"":"?"}${f};${g}$y`),!0;var f,g}_updateAttrColor(e,t,i,r,s){return 2===t?(e|=50331648,e&=-16777216,e|=f.AttributeData.fromColorRGB([i,r,s])):5===t&&(e&=-50331904,e|=33554432|255&i),e}_extractColor(e,t,i){const r=[0,0,-1,0,0,0];let s=0,o=0;do{if(r[o+s]=e.params[t+o],e.hasSubParams(t+o)){const i=e.getSubParams(t+o);let n=0;do{5===r[1]&&(s=1),r[o+n+1+s]=i[n]}while(++n=2||2===r[1]&&o+s>=5)break;r[1]&&(s=1)}while(++o+t5)&&(e=1),t.extended.underlineStyle=e,t.fg|=268435456,0===e&&(t.fg&=-268435457),t.updateExtended()}_processSGR0(e){e.fg=c.DEFAULT_ATTR_DATA.fg,e.bg=c.DEFAULT_ATTR_DATA.bg,e.extended=e.extended.clone(),e.extended.underlineStyle=0,e.extended.underlineColor&=-67108864,e.updateExtended()}charAttributes(e){if(1===e.length&&0===e.params[0])return this._processSGR0(this._curAttrData),!0;const t=e.length;let i;const r=this._curAttrData;for(let s=0;s=30&&i<=37?(r.fg&=-50331904,r.fg|=16777216|i-30):i>=40&&i<=47?(r.bg&=-50331904,r.bg|=16777216|i-40):i>=90&&i<=97?(r.fg&=-50331904,r.fg|=16777224|i-90):i>=100&&i<=107?(r.bg&=-50331904,r.bg|=16777224|i-100):0===i?this._processSGR0(r):1===i?r.fg|=134217728:3===i?r.bg|=67108864:4===i?(r.fg|=268435456,this._processUnderline(e.hasSubParams(s)?e.getSubParams(s)[0]:1,r)):5===i?r.fg|=536870912:7===i?r.fg|=67108864:8===i?r.fg|=1073741824:9===i?r.fg|=2147483648:2===i?r.bg|=134217728:21===i?this._processUnderline(2,r):22===i?(r.fg&=-134217729,r.bg&=-134217729):23===i?r.bg&=-67108865:24===i?(r.fg&=-268435457,this._processUnderline(0,r)):25===i?r.fg&=-536870913:27===i?r.fg&=-67108865:28===i?r.fg&=-1073741825:29===i?r.fg&=2147483647:39===i?(r.fg&=-67108864,r.fg|=16777215&c.DEFAULT_ATTR_DATA.fg):49===i?(r.bg&=-67108864,r.bg|=16777215&c.DEFAULT_ATTR_DATA.bg):38===i||48===i||58===i?s+=this._extractColor(e,s,r):53===i?r.bg|=1073741824:55===i?r.bg&=-1073741825:59===i?(r.extended=r.extended.clone(),r.extended.underlineColor=-1,r.updateExtended()):100===i?(r.fg&=-67108864,r.fg|=16777215&c.DEFAULT_ATTR_DATA.fg,r.bg&=-67108864,r.bg|=16777215&c.DEFAULT_ATTR_DATA.bg):this._logService.debug("Unknown SGR attribute: %d.",i);return!0}deviceStatus(e){switch(e.params[0]){case 5:this._coreService.triggerDataEvent(`${o.C0.ESC}[0n`);break;case 6:const e=this._activeBuffer.y+1,t=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${o.C0.ESC}[${e};${t}R`)}return!0}deviceStatusPrivate(e){if(6===e.params[0]){const e=this._activeBuffer.y+1,t=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${o.C0.ESC}[?${e};${t}R`)}return!0}softReset(e){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=c.DEFAULT_ATTR_DATA.clone(),this._coreService.reset(),this._charsetService.reset(),this._activeBuffer.savedX=0,this._activeBuffer.savedY=this._activeBuffer.ybase,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,this._coreService.decPrivateModes.origin=!1,!0}setCursorStyle(e){const t=e.params[0]||1;switch(t){case 1:case 2:this._optionsService.options.cursorStyle="block";break;case 3:case 4:this._optionsService.options.cursorStyle="underline";break;case 5:case 6:this._optionsService.options.cursorStyle="bar"}const i=t%2==1;return this._optionsService.options.cursorBlink=i,!0}setScrollRegion(e){const t=e.params[0]||1;let i;return(e.length<2||(i=e.params[1])>this._bufferService.rows||0===i)&&(i=this._bufferService.rows),i>t&&(this._activeBuffer.scrollTop=t-1,this._activeBuffer.scrollBottom=i-1,this._setCursor(0,0)),!0}windowOptions(e){if(!y(e.params[0],this._optionsService.rawOptions.windowOptions))return!0;const t=e.length>1?e.params[1]:0;switch(e.params[0]){case 14:2!==t&&this._onRequestWindowsOptionsReport.fire(w.GET_WIN_SIZE_PIXELS);break;case 16:this._onRequestWindowsOptionsReport.fire(w.GET_CELL_SIZE_PIXELS);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${o.C0.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:0!==t&&2!==t||(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>10&&this._windowTitleStack.shift()),0!==t&&1!==t||(this._iconNameStack.push(this._iconName),this._iconNameStack.length>10&&this._iconNameStack.shift());break;case 23:0!==t&&2!==t||this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),0!==t&&1!==t||this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop())}return!0}saveCursor(e){return this._activeBuffer.savedX=this._activeBuffer.x,this._activeBuffer.savedY=this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,!0}restoreCursor(e){return this._activeBuffer.x=this._activeBuffer.savedX||0,this._activeBuffer.y=Math.max(this._activeBuffer.savedY-this._activeBuffer.ybase,0),this._curAttrData.fg=this._activeBuffer.savedCurAttrData.fg,this._curAttrData.bg=this._activeBuffer.savedCurAttrData.bg,this._charsetService.charset=this._savedCharset,this._activeBuffer.savedCharset&&(this._charsetService.charset=this._activeBuffer.savedCharset),this._restrictCursor(),!0}setTitle(e){return this._windowTitle=e,this._onTitleChange.fire(e),!0}setIconName(e){return this._iconName=e,!0}setOrReportIndexedColor(e){const t=[],i=e.split(";");for(;i.length>1;){const e=i.shift(),r=i.shift();if(/^\d+$/.exec(e)){const i=parseInt(e);if(x(i))if("?"===r)t.push({type:0,index:i});else{const e=(0,b.parseColor)(r);e&&t.push({type:1,index:i,color:e})}}}return t.length&&this._onColor.fire(t),!0}setHyperlink(e){const t=e.split(";");return!(t.length<2)&&(t[1]?this._createHyperlink(t[0],t[1]):!t[0]&&this._finishHyperlink())}_createHyperlink(e,t){this._getCurrentLinkId()&&this._finishHyperlink();const i=e.split(":");let r;const s=i.findIndex(e=>e.startsWith("id="));return-1!==s&&(r=i[s].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:r,uri:t}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(e,t){const i=e.split(";");for(let e=0;e=this._specialColors.length);++e,++t)if("?"===i[e])this._onColor.fire([{type:0,index:this._specialColors[t]}]);else{const r=(0,b.parseColor)(i[e]);r&&this._onColor.fire([{type:1,index:this._specialColors[t],color:r}])}return!0}setOrReportFgColor(e){return this._setOrReportSpecialColor(e,0)}setOrReportBgColor(e){return this._setOrReportSpecialColor(e,1)}setOrReportCursorColor(e){return this._setOrReportSpecialColor(e,2)}restoreIndexedColor(e){if(!e)return this._onColor.fire([{type:2}]),!0;const t=[],i=e.split(";");for(let e=0;e=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._restrictCursor(),!0}tabSet(){return this._activeBuffer.tabs[this._activeBuffer.x]=!0,!0}reverseIndex(){if(this._restrictCursor(),this._activeBuffer.y===this._activeBuffer.scrollTop){const e=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,e,1),this._activeBuffer.lines.set(this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.getBlankLine(this._eraseAttrData())),this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom)}else this._activeBuffer.y--,this._restrictCursor();return!0}fullReset(){return this._parser.reset(),this._onRequestReset.fire(),!0}reset(){this._curAttrData=c.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=c.DEFAULT_ATTR_DATA.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=67108863&this._curAttrData.bg,this._eraseAttrDataInternal}setgLevel(e){return this._charsetService.setgLevel(e),!0}screenAlignmentPattern(){const e=new _.CellData;e.content=1<<22|"E".charCodeAt(0),e.fg=this._curAttrData.fg,e.bg=this._curAttrData.bg,this._setCursor(0,0);for(let t=0;t(this._coreService.triggerDataEvent(`${o.C0.ESC}${e}${o.C0.ESC}\\`),!0))('"q'===e?`P1$r${this._curAttrData.isProtected()?1:0}"q`:'"p'===e?'P1$r61;1"p':"r"===e?`P1$r${i.scrollTop+1};${i.scrollBottom+1}r`:"m"===e?"P1$r0m":" q"===e?`P1$r${{block:2,underline:4,bar:6}[r.cursorStyle]-(r.cursorBlink?1:0)} q`:"P0$r")}markRangeDirty(e,t){this._dirtyRowTracker.markRangeDirty(e,t)}}t.InputHandler=T;let E=class{constructor(e){this._bufferService=e,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(e){ethis.end&&(this.end=e)}markRangeDirty(e,t){e>t&&(A=e,e=t,t=A),ethis.end&&(this.end=t)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};function x(e){return 0<=e&&e<256}E=r([s(0,g.IBufferService)],E)},844:(e,t)=>{function i(e){for(const t of e)t.dispose();e.length=0}Object.defineProperty(t,"__esModule",{value:!0}),t.getDisposeArrayDisposable=t.disposeArray=t.toDisposable=t.MutableDisposable=t.Disposable=void 0,t.Disposable=class{constructor(){this._disposables=[],this._isDisposed=!1}dispose(){this._isDisposed=!0;for(const e of this._disposables)e.dispose();this._disposables.length=0}register(e){return this._disposables.push(e),e}unregister(e){const t=this._disposables.indexOf(e);-1!==t&&this._disposables.splice(t,1)}},t.MutableDisposable=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(e){this._isDisposed||e===this._value||(this._value?.dispose(),this._value=e)}clear(){this.value=void 0}dispose(){this._isDisposed=!0,this._value?.dispose(),this._value=void 0}},t.toDisposable=function(e){return{dispose:e}},t.disposeArray=i,t.getDisposeArrayDisposable=function(e){return{dispose:()=>i(e)}}},1505:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FourKeyMap=t.TwoKeyMap=void 0;class i{constructor(){this._data={}}set(e,t,i){this._data[e]||(this._data[e]={}),this._data[e][t]=i}get(e,t){return this._data[e]?this._data[e][t]:void 0}clear(){this._data={}}}t.TwoKeyMap=i,t.FourKeyMap=class{constructor(){this._data=new i}set(e,t,r,s,o){this._data.get(e,t)||this._data.set(e,t,new i),this._data.get(e,t).set(r,s,o)}get(e,t,i,r){return this._data.get(e,t)?.get(i,r)}clear(){this._data.clear()}}},6114:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.isChromeOS=t.isLinux=t.isWindows=t.isIphone=t.isIpad=t.isMac=t.getSafariVersion=t.isSafari=t.isLegacyEdge=t.isFirefox=t.isNode=void 0,t.isNode="undefined"!=typeof process&&"title"in process;const i=t.isNode?"node":navigator.userAgent,r=t.isNode?"node":navigator.platform;t.isFirefox=i.includes("Firefox"),t.isLegacyEdge=i.includes("Edge"),t.isSafari=/^((?!chrome|android).)*safari/i.test(i),t.getSafariVersion=function(){if(!t.isSafari)return 0;const e=i.match(/Version\/(\d+)/);return null===e||e.length<2?0:parseInt(e[1])},t.isMac=["Macintosh","MacIntel","MacPPC","Mac68K"].includes(r),t.isIpad="iPad"===r,t.isIphone="iPhone"===r,t.isWindows=["Windows","Win16","Win32","WinCE"].includes(r),t.isLinux=r.indexOf("Linux")>=0,t.isChromeOS=/\bCrOS\b/.test(i)},6106:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.SortedList=void 0;let i=0;t.SortedList=class{constructor(e){this._getKey=e,this._array=[]}clear(){this._array.length=0}insert(e){0!==this._array.length?(i=this._search(this._getKey(e)),this._array.splice(i,0,e)):this._array.push(e)}delete(e){if(0===this._array.length)return!1;const t=this._getKey(e);if(void 0===t)return!1;if(i=this._search(t),-1===i)return!1;if(this._getKey(this._array[i])!==t)return!1;do{if(this._array[i]===e)return this._array.splice(i,1),!0}while(++i=this._array.length)&&this._getKey(this._array[i])===e))do{yield this._array[i]}while(++i=this._array.length)&&this._getKey(this._array[i])===e))do{t(this._array[i])}while(++i=t;){let r=t+i>>1;const s=this._getKey(this._array[r]);if(s>e)i=r-1;else{if(!(s0&&this._getKey(this._array[r-1])===e;)r--;return r}t=r+1}}return t}}},7226:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DebouncedIdleTask=t.IdleTaskQueue=t.PriorityTaskQueue=void 0;const r=i(6114);class s{constructor(){this._tasks=[],this._i=0}enqueue(e){this._tasks.push(e),this._start()}flush(){for(;this._is)return r-t<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(r-t))}ms`),void this._start();r=s}this.clear()}}class o extends s{_requestCallback(e){return setTimeout(()=>e(this._createDeadline(16)))}_cancelCallback(e){clearTimeout(e)}_createDeadline(e){const t=Date.now()+e;return{timeRemaining:()=>Math.max(0,t-Date.now())}}}t.PriorityTaskQueue=o,t.IdleTaskQueue=!r.isNode&&"requestIdleCallback"in window?class extends s{_requestCallback(e){return requestIdleCallback(e)}_cancelCallback(e){cancelIdleCallback(e)}}:o,t.DebouncedIdleTask=class{constructor(){this._queue=new t.IdleTaskQueue}set(e){this._queue.clear(),this._queue.enqueue(e)}flush(){this._queue.flush()}}},9282:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.updateWindowsModeWrappedState=void 0;const r=i(643);t.updateWindowsModeWrappedState=function(e){const t=e.buffer.lines.get(e.buffer.ybase+e.buffer.y-1),i=t?.get(e.cols-1),s=e.buffer.lines.get(e.buffer.ybase+e.buffer.y);s&&i&&(s.isWrapped=i[r.CHAR_DATA_CODE_INDEX]!==r.NULL_CELL_CODE&&i[r.CHAR_DATA_CODE_INDEX]!==r.WHITESPACE_CELL_CODE)}},3734:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ExtendedAttrs=t.AttributeData=void 0;class i{constructor(){this.fg=0,this.bg=0,this.extended=new r}static toColorRGB(e){return[e>>>16&255,e>>>8&255,255&e]}static fromColorRGB(e){return(255&e[0])<<16|(255&e[1])<<8|255&e[2]}clone(){const e=new i;return e.fg=this.fg,e.bg=this.bg,e.extended=this.extended.clone(),e}isInverse(){return 67108864&this.fg}isBold(){return 134217728&this.fg}isUnderline(){return this.hasExtendedAttrs()&&0!==this.extended.underlineStyle?1:268435456&this.fg}isBlink(){return 536870912&this.fg}isInvisible(){return 1073741824&this.fg}isItalic(){return 67108864&this.bg}isDim(){return 134217728&this.bg}isStrikethrough(){return 2147483648&this.fg}isProtected(){return 536870912&this.bg}isOverline(){return 1073741824&this.bg}getFgColorMode(){return 50331648&this.fg}getBgColorMode(){return 50331648&this.bg}isFgRGB(){return!(50331648&~this.fg)}isBgRGB(){return!(50331648&~this.bg)}isFgPalette(){return 16777216==(50331648&this.fg)||33554432==(50331648&this.fg)}isBgPalette(){return 16777216==(50331648&this.bg)||33554432==(50331648&this.bg)}isFgDefault(){return!(50331648&this.fg)}isBgDefault(){return!(50331648&this.bg)}isAttributeDefault(){return 0===this.fg&&0===this.bg}getFgColor(){switch(50331648&this.fg){case 16777216:case 33554432:return 255&this.fg;case 50331648:return 16777215&this.fg;default:return-1}}getBgColor(){switch(50331648&this.bg){case 16777216:case 33554432:return 255&this.bg;case 50331648:return 16777215&this.bg;default:return-1}}hasExtendedAttrs(){return 268435456&this.bg}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(268435456&this.bg&&~this.extended.underlineColor)switch(50331648&this.extended.underlineColor){case 16777216:case 33554432:return 255&this.extended.underlineColor;case 50331648:return 16777215&this.extended.underlineColor;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return 268435456&this.bg&&~this.extended.underlineColor?50331648&this.extended.underlineColor:this.getFgColorMode()}isUnderlineColorRGB(){return 268435456&this.bg&&~this.extended.underlineColor?!(50331648&~this.extended.underlineColor):this.isFgRGB()}isUnderlineColorPalette(){return 268435456&this.bg&&~this.extended.underlineColor?16777216==(50331648&this.extended.underlineColor)||33554432==(50331648&this.extended.underlineColor):this.isFgPalette()}isUnderlineColorDefault(){return 268435456&this.bg&&~this.extended.underlineColor?!(50331648&this.extended.underlineColor):this.isFgDefault()}getUnderlineStyle(){return 268435456&this.fg?268435456&this.bg?this.extended.underlineStyle:1:0}getUnderlineVariantOffset(){return this.extended.underlineVariantOffset}}t.AttributeData=i;class r{get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(e){this._ext=e}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(e){this._ext&=-469762049,this._ext|=e<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(e){this._ext&=-67108864,this._ext|=67108863&e}get urlId(){return this._urlId}set urlId(e){this._urlId=e}get underlineVariantOffset(){const e=(3758096384&this._ext)>>29;return e<0?4294967288^e:e}set underlineVariantOffset(e){this._ext&=536870911,this._ext|=e<<29&3758096384}constructor(e=0,t=0){this._ext=0,this._urlId=0,this._ext=e,this._urlId=t}clone(){return new r(this._ext,this._urlId)}isEmpty(){return 0===this.underlineStyle&&0===this._urlId}}t.ExtendedAttrs=r},9092:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Buffer=t.MAX_BUFFER_SIZE=void 0;const r=i(6349),s=i(7226),o=i(3734),n=i(8437),a=i(4634),h=i(511),l=i(643),c=i(4863),u=i(7116);t.MAX_BUFFER_SIZE=4294967295,t.Buffer=class{constructor(e,t,i){this._hasScrollback=e,this._optionsService=t,this._bufferService=i,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=n.DEFAULT_ATTR_DATA.clone(),this.savedCharset=u.DEFAULT_CHARSET,this.markers=[],this._nullCell=h.CellData.fromCharData([0,l.NULL_CELL_CHAR,l.NULL_CELL_WIDTH,l.NULL_CELL_CODE]),this._whitespaceCell=h.CellData.fromCharData([0,l.WHITESPACE_CELL_CHAR,l.WHITESPACE_CELL_WIDTH,l.WHITESPACE_CELL_CODE]),this._isClearing=!1,this._memoryCleanupQueue=new s.IdleTaskQueue,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new r.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(e){return e?(this._nullCell.fg=e.fg,this._nullCell.bg=e.bg,this._nullCell.extended=e.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new o.ExtendedAttrs),this._nullCell}getWhitespaceCell(e){return e?(this._whitespaceCell.fg=e.fg,this._whitespaceCell.bg=e.bg,this._whitespaceCell.extended=e.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new o.ExtendedAttrs),this._whitespaceCell}getBlankLine(e,t){return new n.BufferLine(this._bufferService.cols,this.getNullCell(e),t)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){const e=this.ybase+this.y-this.ydisp;return e>=0&&et.MAX_BUFFER_SIZE?t.MAX_BUFFER_SIZE:i}fillViewportRows(e){if(0===this.lines.length){void 0===e&&(e=n.DEFAULT_ATTR_DATA);let t=this._rows;for(;t--;)this.lines.push(this.getBlankLine(e))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new r.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(e,t){const i=this.getNullCell(n.DEFAULT_ATTR_DATA);let r=0;const s=this._getCorrectBufferLength(t);if(s>this.lines.maxLength&&(this.lines.maxLength=s),this.lines.length>0){if(this._cols0&&this.lines.length<=this.ybase+this.y+o+1?(this.ybase--,o++,this.ydisp>0&&this.ydisp--):this.lines.push(new n.BufferLine(e,i)));else for(let e=this._rows;e>t;e--)this.lines.length>t+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(s0&&(this.lines.trimStart(e),this.ybase=Math.max(this.ybase-e,0),this.ydisp=Math.max(this.ydisp-e,0),this.savedY=Math.max(this.savedY-e,0)),this.lines.maxLength=s}this.x=Math.min(this.x,e-1),this.y=Math.min(this.y,t-1),o&&(this.y+=o),this.savedX=Math.min(this.savedX,e-1),this.scrollTop=0}if(this.scrollBottom=t-1,this._isReflowEnabled&&(this._reflow(e,t),this._cols>e))for(let t=0;t.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue(()=>this._batchedMemoryCleanup()))}_batchedMemoryCleanup(){let e=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,e=!1);let t=0;for(;this._memoryCleanupPosition100)return!0;return e}get _isReflowEnabled(){const e=this._optionsService.rawOptions.windowsPty;return e&&e.buildNumber?this._hasScrollback&&"conpty"===e.backend&&e.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(e,t){this._cols!==e&&(e>this._cols?this._reflowLarger(e,t):this._reflowSmaller(e,t))}_reflowLarger(e,t){const i=(0,a.reflowLargerGetLinesToRemove)(this.lines,this._cols,e,this.ybase+this.y,this.getNullCell(n.DEFAULT_ATTR_DATA));if(i.length>0){const r=(0,a.reflowLargerCreateNewLayout)(this.lines,i);(0,a.reflowLargerApplyNewLayout)(this.lines,r.layout),this._reflowLargerAdjustViewport(e,t,r.countRemoved)}}_reflowLargerAdjustViewport(e,t,i){const r=this.getNullCell(n.DEFAULT_ATTR_DATA);let s=i;for(;s-- >0;)0===this.ybase?(this.y>0&&this.y--,this.lines.length=0;o--){let h=this.lines.get(o);if(!h||!h.isWrapped&&h.getTrimmedLength()<=e)continue;const l=[h];for(;h.isWrapped&&o>0;)h=this.lines.get(--o),l.unshift(h);const c=this.ybase+this.y;if(c>=o&&c0&&(r.push({start:o+l.length+s,newLines:g}),s+=g.length),l.push(...g);let p=d.length-1,m=d[p];0===m&&(p--,m=d[p]);let v=l.length-_-1,b=u;for(;v>=0;){const e=Math.min(b,m);if(void 0===l[p])break;if(l[p].copyCellsFrom(l[v],b-e,m-e,e,!0),m-=e,0===m&&(p--,m=d[p]),b-=e,0===b){v--;const e=Math.max(v,0);b=(0,a.getWrappedLineTrimmedLength)(l,e,this._cols)}}for(let t=0;t0;)0===this.ybase?this.y0){const e=[],t=[];for(let e=0;e=0;l--)if(a&&a.start>o+h){for(let e=a.newLines.length-1;e>=0;e--)this.lines.set(l--,a.newLines[e]);l++,e.push({index:o+1,amount:a.newLines.length}),h+=a.newLines.length,a=r[++n]}else this.lines.set(l,t[o--]);let l=0;for(let t=e.length-1;t>=0;t--)e[t].index+=l,this.lines.onInsertEmitter.fire(e[t]),l+=e[t].amount;const c=Math.max(0,i+s-this.lines.maxLength);c>0&&this.lines.onTrimEmitter.fire(c)}}translateBufferLineToString(e,t,i=0,r){const s=this.lines.get(e);return s?s.translateToString(t,i,r):""}getWrappedRangeForLine(e){let t=e,i=e;for(;t>0&&this.lines.get(t).isWrapped;)t--;for(;i+10;);return e>=this._cols?this._cols-1:e<0?0:e}nextStop(e){for(null==e&&(e=this.x);!this.tabs[++e]&&e=this._cols?this._cols-1:e<0?0:e}clearMarkers(e){this._isClearing=!0;for(let t=0;t{t.line-=e,t.line<0&&t.dispose()})),t.register(this.lines.onInsert(e=>{t.line>=e.index&&(t.line+=e.amount)})),t.register(this.lines.onDelete(e=>{t.line>=e.index&&t.linee.index&&(t.line-=e.amount)})),t.register(t.onDispose(()=>this._removeMarker(t))),t}_removeMarker(e){this._isClearing||this.markers.splice(this.markers.indexOf(e),1)}}},8437:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.BufferLine=t.DEFAULT_ATTR_DATA=void 0;const r=i(3734),s=i(511),o=i(643),n=i(482);t.DEFAULT_ATTR_DATA=Object.freeze(new r.AttributeData);let a=0;class h{constructor(e,t,i=!1){this.isWrapped=i,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(3*e);const r=t||s.CellData.fromCharData([0,o.NULL_CELL_CHAR,o.NULL_CELL_WIDTH,o.NULL_CELL_CODE]);for(let t=0;t>22,2097152&t?this._combined[e].charCodeAt(this._combined[e].length-1):i]}set(e,t){this._data[3*e+1]=t[o.CHAR_DATA_ATTR_INDEX],t[o.CHAR_DATA_CHAR_INDEX].length>1?(this._combined[e]=t[1],this._data[3*e+0]=2097152|e|t[o.CHAR_DATA_WIDTH_INDEX]<<22):this._data[3*e+0]=t[o.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|t[o.CHAR_DATA_WIDTH_INDEX]<<22}getWidth(e){return this._data[3*e+0]>>22}hasWidth(e){return 12582912&this._data[3*e+0]}getFg(e){return this._data[3*e+1]}getBg(e){return this._data[3*e+2]}hasContent(e){return 4194303&this._data[3*e+0]}getCodePoint(e){const t=this._data[3*e+0];return 2097152&t?this._combined[e].charCodeAt(this._combined[e].length-1):2097151&t}isCombined(e){return 2097152&this._data[3*e+0]}getString(e){const t=this._data[3*e+0];return 2097152&t?this._combined[e]:2097151&t?(0,n.stringFromCodePoint)(2097151&t):""}isProtected(e){return 536870912&this._data[3*e+2]}loadCell(e,t){return a=3*e,t.content=this._data[a+0],t.fg=this._data[a+1],t.bg=this._data[a+2],2097152&t.content&&(t.combinedData=this._combined[e]),268435456&t.bg&&(t.extended=this._extendedAttrs[e]),t}setCell(e,t){2097152&t.content&&(this._combined[e]=t.combinedData),268435456&t.bg&&(this._extendedAttrs[e]=t.extended),this._data[3*e+0]=t.content,this._data[3*e+1]=t.fg,this._data[3*e+2]=t.bg}setCellFromCodepoint(e,t,i,r){268435456&r.bg&&(this._extendedAttrs[e]=r.extended),this._data[3*e+0]=t|i<<22,this._data[3*e+1]=r.fg,this._data[3*e+2]=r.bg}addCodepointToCell(e,t,i){let r=this._data[3*e+0];2097152&r?this._combined[e]+=(0,n.stringFromCodePoint)(t):2097151&r?(this._combined[e]=(0,n.stringFromCodePoint)(2097151&r)+(0,n.stringFromCodePoint)(t),r&=-2097152,r|=2097152):r=t|1<<22,i&&(r&=-12582913,r|=i<<22),this._data[3*e+0]=r}insertCells(e,t,i){if((e%=this.length)&&2===this.getWidth(e-1)&&this.setCellFromCodepoint(e-1,0,1,i),t=0;--i)this.setCell(e+t+i,this.loadCell(e+i,r));for(let r=0;rthis.length){if(this._data.buffer.byteLength>=4*i)this._data=new Uint32Array(this._data.buffer,0,i);else{const e=new Uint32Array(i);e.set(this._data),this._data=e}for(let i=this.length;i=e&&delete this._combined[r]}const r=Object.keys(this._extendedAttrs);for(let t=0;t=e&&delete this._extendedAttrs[i]}}return this.length=e,4*i*2=0;--e)if(4194303&this._data[3*e+0])return e+(this._data[3*e+0]>>22);return 0}getNoBgTrimmedLength(){for(let e=this.length-1;e>=0;--e)if(4194303&this._data[3*e+0]||50331648&this._data[3*e+2])return e+(this._data[3*e+0]>>22);return 0}copyCellsFrom(e,t,i,r,s){const o=e._data;if(s)for(let s=r-1;s>=0;s--){for(let e=0;e<3;e++)this._data[3*(i+s)+e]=o[3*(t+s)+e];268435456&o[3*(t+s)+2]&&(this._extendedAttrs[i+s]=e._extendedAttrs[t+s])}else for(let s=0;s=t&&(this._combined[s-t+i]=e._combined[s])}}translateToString(e,t,i,r){t=t??0,i=i??this.length,e&&(i=Math.min(i,this.getTrimmedLength())),r&&(r.length=0);let s="";for(;t>22||1}return r&&r.push(t),s}}t.BufferLine=h},4841:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getRangeLength=void 0,t.getRangeLength=function(e,t){if(e.start.y>e.end.y)throw new Error(`Buffer range end (${e.end.x}, ${e.end.y}) cannot be before start (${e.start.x}, ${e.start.y})`);return t*(e.end.y-e.start.y)+(e.end.x-e.start.x+1)}},4634:(e,t)=>{function i(e,t,i){if(t===e.length-1)return e[t].getTrimmedLength();const r=!e[t].hasContent(i-1)&&1===e[t].getWidth(i-1),s=2===e[t+1].getWidth(0);return r&&s?i-1:i}Object.defineProperty(t,"__esModule",{value:!0}),t.getWrappedLineTrimmedLength=t.reflowSmallerGetNewLineLengths=t.reflowLargerApplyNewLayout=t.reflowLargerCreateNewLayout=t.reflowLargerGetLinesToRemove=void 0,t.reflowLargerGetLinesToRemove=function(e,t,r,s,o){const n=[];for(let a=0;a=a&&s0&&(e>u||0===c[e].getTrimmedLength());e--)g++;g>0&&(n.push(a+c.length-g),n.push(g)),a+=c.length-1}return n},t.reflowLargerCreateNewLayout=function(e,t){const i=[];let r=0,s=t[r],o=0;for(let n=0;ni(e,s,t)).reduce((e,t)=>e+t);let n=0,a=0,h=0;for(;hl&&(n-=l,a++);const c=2===e[a].getWidth(n-1);c&&n--;const u=c?r-1:r;s.push(u),h+=u}return s},t.getWrappedLineTrimmedLength=i},5295:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.BufferSet=void 0;const r=i(8460),s=i(844),o=i(9092);class n extends s.Disposable{constructor(e,t){super(),this._optionsService=e,this._bufferService=t,this._onBufferActivate=this.register(new r.EventEmitter),this.onBufferActivate=this._onBufferActivate.event,this.reset(),this.register(this._optionsService.onSpecificOptionChange("scrollback",()=>this.resize(this._bufferService.cols,this._bufferService.rows))),this.register(this._optionsService.onSpecificOptionChange("tabStopWidth",()=>this.setupTabStops()))}reset(){this._normal=new o.Buffer(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new o.Buffer(!1,this._optionsService,this._bufferService),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}),this.setupTabStops()}get alt(){return this._alt}get active(){return this._activeBuffer}get normal(){return this._normal}activateNormalBuffer(){this._activeBuffer!==this._normal&&(this._normal.x=this._alt.x,this._normal.y=this._alt.y,this._alt.clearAllMarkers(),this._alt.clear(),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}))}activateAltBuffer(e){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(e),this._alt.x=this._normal.x,this._alt.y=this._normal.y,this._activeBuffer=this._alt,this._onBufferActivate.fire({activeBuffer:this._alt,inactiveBuffer:this._normal}))}resize(e,t){this._normal.resize(e,t),this._alt.resize(e,t),this.setupTabStops(e)}setupTabStops(e){this._normal.setupTabStops(e),this._alt.setupTabStops(e)}}t.BufferSet=n},511:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CellData=void 0;const r=i(482),s=i(643),o=i(3734);class n extends o.AttributeData{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new o.ExtendedAttrs,this.combinedData=""}static fromCharData(e){const t=new n;return t.setFromCharData(e),t}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?(0,r.stringFromCodePoint)(2097151&this.content):""}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(e){this.fg=e[s.CHAR_DATA_ATTR_INDEX],this.bg=0;let t=!1;if(e[s.CHAR_DATA_CHAR_INDEX].length>2)t=!0;else if(2===e[s.CHAR_DATA_CHAR_INDEX].length){const i=e[s.CHAR_DATA_CHAR_INDEX].charCodeAt(0);if(55296<=i&&i<=56319){const r=e[s.CHAR_DATA_CHAR_INDEX].charCodeAt(1);56320<=r&&r<=57343?this.content=1024*(i-55296)+r-56320+65536|e[s.CHAR_DATA_WIDTH_INDEX]<<22:t=!0}else t=!0}else this.content=e[s.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|e[s.CHAR_DATA_WIDTH_INDEX]<<22;t&&(this.combinedData=e[s.CHAR_DATA_CHAR_INDEX],this.content=2097152|e[s.CHAR_DATA_WIDTH_INDEX]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}t.CellData=n},643:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.WHITESPACE_CELL_CODE=t.WHITESPACE_CELL_WIDTH=t.WHITESPACE_CELL_CHAR=t.NULL_CELL_CODE=t.NULL_CELL_WIDTH=t.NULL_CELL_CHAR=t.CHAR_DATA_CODE_INDEX=t.CHAR_DATA_WIDTH_INDEX=t.CHAR_DATA_CHAR_INDEX=t.CHAR_DATA_ATTR_INDEX=t.DEFAULT_EXT=t.DEFAULT_ATTR=t.DEFAULT_COLOR=void 0,t.DEFAULT_COLOR=0,t.DEFAULT_ATTR=256|t.DEFAULT_COLOR<<9,t.DEFAULT_EXT=0,t.CHAR_DATA_ATTR_INDEX=0,t.CHAR_DATA_CHAR_INDEX=1,t.CHAR_DATA_WIDTH_INDEX=2,t.CHAR_DATA_CODE_INDEX=3,t.NULL_CELL_CHAR="",t.NULL_CELL_WIDTH=1,t.NULL_CELL_CODE=0,t.WHITESPACE_CELL_CHAR=" ",t.WHITESPACE_CELL_WIDTH=1,t.WHITESPACE_CELL_CODE=32},4863:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Marker=void 0;const r=i(8460),s=i(844);class o{get id(){return this._id}constructor(e){this.line=e,this.isDisposed=!1,this._disposables=[],this._id=o._nextId++,this._onDispose=this.register(new r.EventEmitter),this.onDispose=this._onDispose.event}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),(0,s.disposeArray)(this._disposables),this._disposables.length=0)}register(e){return this._disposables.push(e),e}}t.Marker=o,o._nextId=1},7116:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DEFAULT_CHARSET=t.CHARSETS=void 0,t.CHARSETS={},t.DEFAULT_CHARSET=t.CHARSETS.B,t.CHARSETS[0]={"`":"◆",a:"▒",b:"␉",c:"␌",d:"␍",e:"␊",f:"°",g:"±",h:"␤",i:"␋",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"},t.CHARSETS.A={"#":"£"},t.CHARSETS.B=void 0,t.CHARSETS[4]={"#":"£","@":"¾","[":"ij","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"},t.CHARSETS.C=t.CHARSETS[5]={"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},t.CHARSETS.R={"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"},t.CHARSETS.Q={"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"},t.CHARSETS.K={"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"},t.CHARSETS.Y={"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"},t.CHARSETS.E=t.CHARSETS[6]={"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"},t.CHARSETS.Z={"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"},t.CHARSETS.H=t.CHARSETS[7]={"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},t.CHARSETS["="]={"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}},2584:(e,t)=>{var i,r,s;Object.defineProperty(t,"__esModule",{value:!0}),t.C1_ESCAPED=t.C1=t.C0=void 0,function(e){e.NUL="\0",e.SOH="",e.STX="",e.ETX="",e.EOT="",e.ENQ="",e.ACK="",e.BEL="",e.BS="\b",e.HT="\t",e.LF="\n",e.VT="\v",e.FF="\f",e.CR="\r",e.SO="",e.SI="",e.DLE="",e.DC1="",e.DC2="",e.DC3="",e.DC4="",e.NAK="",e.SYN="",e.ETB="",e.CAN="",e.EM="",e.SUB="",e.ESC="",e.FS="",e.GS="",e.RS="",e.US="",e.SP=" ",e.DEL=""}(i||(t.C0=i={})),function(e){e.PAD="€",e.HOP="",e.BPH="‚",e.NBH="ƒ",e.IND="„",e.NEL="…",e.SSA="†",e.ESA="‡",e.HTS="ˆ",e.HTJ="‰",e.VTS="Š",e.PLD="‹",e.PLU="Œ",e.RI="",e.SS2="Ž",e.SS3="",e.DCS="",e.PU1="‘",e.PU2="’",e.STS="“",e.CCH="”",e.MW="•",e.SPA="–",e.EPA="—",e.SOS="˜",e.SGCI="™",e.SCI="š",e.CSI="›",e.ST="œ",e.OSC="",e.PM="ž",e.APC="Ÿ"}(r||(t.C1=r={})),function(e){e.ST=`${i.ESC}\\`}(s||(t.C1_ESCAPED=s={}))},7399:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.evaluateKeyboardEvent=void 0;const r=i(2584),s={48:["0",")"],49:["1","!"],50:["2","@"],51:["3","#"],52:["4","$"],53:["5","%"],54:["6","^"],55:["7","&"],56:["8","*"],57:["9","("],186:[";",":"],187:["=","+"],188:[",","<"],189:["-","_"],190:[".",">"],191:["/","?"],192:["`","~"],219:["[","{"],220:["\\","|"],221:["]","}"],222:["'",'"']};t.evaluateKeyboardEvent=function(e,t,i,o){const n={type:0,cancel:!1,key:void 0},a=(e.shiftKey?1:0)|(e.altKey?2:0)|(e.ctrlKey?4:0)|(e.metaKey?8:0);switch(e.keyCode){case 0:"UIKeyInputUpArrow"===e.key?n.key=t?r.C0.ESC+"OA":r.C0.ESC+"[A":"UIKeyInputLeftArrow"===e.key?n.key=t?r.C0.ESC+"OD":r.C0.ESC+"[D":"UIKeyInputRightArrow"===e.key?n.key=t?r.C0.ESC+"OC":r.C0.ESC+"[C":"UIKeyInputDownArrow"===e.key&&(n.key=t?r.C0.ESC+"OB":r.C0.ESC+"[B");break;case 8:n.key=e.ctrlKey?"\b":r.C0.DEL,e.altKey&&(n.key=r.C0.ESC+n.key);break;case 9:if(e.shiftKey){n.key=r.C0.ESC+"[Z";break}n.key=r.C0.HT,n.cancel=!0;break;case 13:n.key=e.altKey?r.C0.ESC+r.C0.CR:r.C0.CR,n.cancel=!0;break;case 27:n.key=r.C0.ESC,e.altKey&&(n.key=r.C0.ESC+r.C0.ESC),n.cancel=!0;break;case 37:if(e.metaKey)break;a?(n.key=r.C0.ESC+"[1;"+(a+1)+"D",n.key===r.C0.ESC+"[1;3D"&&(n.key=r.C0.ESC+(i?"b":"[1;5D"))):n.key=t?r.C0.ESC+"OD":r.C0.ESC+"[D";break;case 39:if(e.metaKey)break;a?(n.key=r.C0.ESC+"[1;"+(a+1)+"C",n.key===r.C0.ESC+"[1;3C"&&(n.key=r.C0.ESC+(i?"f":"[1;5C"))):n.key=t?r.C0.ESC+"OC":r.C0.ESC+"[C";break;case 38:if(e.metaKey)break;a?(n.key=r.C0.ESC+"[1;"+(a+1)+"A",i||n.key!==r.C0.ESC+"[1;3A"||(n.key=r.C0.ESC+"[1;5A")):n.key=t?r.C0.ESC+"OA":r.C0.ESC+"[A";break;case 40:if(e.metaKey)break;a?(n.key=r.C0.ESC+"[1;"+(a+1)+"B",i||n.key!==r.C0.ESC+"[1;3B"||(n.key=r.C0.ESC+"[1;5B")):n.key=t?r.C0.ESC+"OB":r.C0.ESC+"[B";break;case 45:e.shiftKey||e.ctrlKey||(n.key=r.C0.ESC+"[2~");break;case 46:n.key=a?r.C0.ESC+"[3;"+(a+1)+"~":r.C0.ESC+"[3~";break;case 36:n.key=a?r.C0.ESC+"[1;"+(a+1)+"H":t?r.C0.ESC+"OH":r.C0.ESC+"[H";break;case 35:n.key=a?r.C0.ESC+"[1;"+(a+1)+"F":t?r.C0.ESC+"OF":r.C0.ESC+"[F";break;case 33:e.shiftKey?n.type=2:e.ctrlKey?n.key=r.C0.ESC+"[5;"+(a+1)+"~":n.key=r.C0.ESC+"[5~";break;case 34:e.shiftKey?n.type=3:e.ctrlKey?n.key=r.C0.ESC+"[6;"+(a+1)+"~":n.key=r.C0.ESC+"[6~";break;case 112:n.key=a?r.C0.ESC+"[1;"+(a+1)+"P":r.C0.ESC+"OP";break;case 113:n.key=a?r.C0.ESC+"[1;"+(a+1)+"Q":r.C0.ESC+"OQ";break;case 114:n.key=a?r.C0.ESC+"[1;"+(a+1)+"R":r.C0.ESC+"OR";break;case 115:n.key=a?r.C0.ESC+"[1;"+(a+1)+"S":r.C0.ESC+"OS";break;case 116:n.key=a?r.C0.ESC+"[15;"+(a+1)+"~":r.C0.ESC+"[15~";break;case 117:n.key=a?r.C0.ESC+"[17;"+(a+1)+"~":r.C0.ESC+"[17~";break;case 118:n.key=a?r.C0.ESC+"[18;"+(a+1)+"~":r.C0.ESC+"[18~";break;case 119:n.key=a?r.C0.ESC+"[19;"+(a+1)+"~":r.C0.ESC+"[19~";break;case 120:n.key=a?r.C0.ESC+"[20;"+(a+1)+"~":r.C0.ESC+"[20~";break;case 121:n.key=a?r.C0.ESC+"[21;"+(a+1)+"~":r.C0.ESC+"[21~";break;case 122:n.key=a?r.C0.ESC+"[23;"+(a+1)+"~":r.C0.ESC+"[23~";break;case 123:n.key=a?r.C0.ESC+"[24;"+(a+1)+"~":r.C0.ESC+"[24~";break;default:if(!e.ctrlKey||e.shiftKey||e.altKey||e.metaKey)if(i&&!o||!e.altKey||e.metaKey)!i||e.altKey||e.ctrlKey||e.shiftKey||!e.metaKey?e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&e.keyCode>=48&&1===e.key.length?n.key=e.key:e.key&&e.ctrlKey&&("_"===e.key&&(n.key=r.C0.US),"@"===e.key&&(n.key=r.C0.NUL)):65===e.keyCode&&(n.type=1);else{const t=s[e.keyCode],i=t?.[e.shiftKey?1:0];if(i)n.key=r.C0.ESC+i;else if(e.keyCode>=65&&e.keyCode<=90){const t=e.ctrlKey?e.keyCode-64:e.keyCode+32;let i=String.fromCharCode(t);e.shiftKey&&(i=i.toUpperCase()),n.key=r.C0.ESC+i}else if(32===e.keyCode)n.key=r.C0.ESC+(e.ctrlKey?r.C0.NUL:" ");else if("Dead"===e.key&&e.code.startsWith("Key")){let t=e.code.slice(3,4);e.shiftKey||(t=t.toLowerCase()),n.key=r.C0.ESC+t,n.cancel=!0}}else e.keyCode>=65&&e.keyCode<=90?n.key=String.fromCharCode(e.keyCode-64):32===e.keyCode?n.key=r.C0.NUL:e.keyCode>=51&&e.keyCode<=55?n.key=String.fromCharCode(e.keyCode-51+27):56===e.keyCode?n.key=r.C0.DEL:219===e.keyCode?n.key=r.C0.ESC:220===e.keyCode?n.key=r.C0.FS:221===e.keyCode&&(n.key=r.C0.GS)}return n}},482:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Utf8ToUtf32=t.StringToUtf32=t.utf32ToString=t.stringFromCodePoint=void 0,t.stringFromCodePoint=function(e){return e>65535?(e-=65536,String.fromCharCode(55296+(e>>10))+String.fromCharCode(e%1024+56320)):String.fromCharCode(e)},t.utf32ToString=function(e,t=0,i=e.length){let r="";for(let s=t;s65535?(t-=65536,r+=String.fromCharCode(55296+(t>>10))+String.fromCharCode(t%1024+56320)):r+=String.fromCharCode(t)}return r},t.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(e,t){const i=e.length;if(!i)return 0;let r=0,s=0;if(this._interim){const i=e.charCodeAt(s++);56320<=i&&i<=57343?t[r++]=1024*(this._interim-55296)+i-56320+65536:(t[r++]=this._interim,t[r++]=i),this._interim=0}for(let o=s;o=i)return this._interim=s,r;const n=e.charCodeAt(o);56320<=n&&n<=57343?t[r++]=1024*(s-55296)+n-56320+65536:(t[r++]=s,t[r++]=n)}else 65279!==s&&(t[r++]=s)}return r}},t.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(e,t){const i=e.length;if(!i)return 0;let r,s,o,n,a=0,h=0,l=0;if(this.interim[0]){let r=!1,s=this.interim[0];s&=192==(224&s)?31:224==(240&s)?15:7;let o,n=0;for(;(o=63&this.interim[++n])&&n<4;)s<<=6,s|=o;const h=192==(224&this.interim[0])?2:224==(240&this.interim[0])?3:4,c=h-n;for(;l=i)return 0;if(o=e[l++],128!=(192&o)){l--,r=!0;break}this.interim[n++]=o,s<<=6,s|=63&o}r||(2===h?s<128?l--:t[a++]=s:3===h?s<2048||s>=55296&&s<=57343||65279===s||(t[a++]=s):s<65536||s>1114111||(t[a++]=s)),this.interim.fill(0)}const c=i-4;let u=l;for(;u=i)return this.interim[0]=r,a;if(s=e[u++],128!=(192&s)){u--;continue}if(h=(31&r)<<6|63&s,h<128){u--;continue}t[a++]=h}else if(224==(240&r)){if(u>=i)return this.interim[0]=r,a;if(s=e[u++],128!=(192&s)){u--;continue}if(u>=i)return this.interim[0]=r,this.interim[1]=s,a;if(o=e[u++],128!=(192&o)){u--;continue}if(h=(15&r)<<12|(63&s)<<6|63&o,h<2048||h>=55296&&h<=57343||65279===h)continue;t[a++]=h}else if(240==(248&r)){if(u>=i)return this.interim[0]=r,a;if(s=e[u++],128!=(192&s)){u--;continue}if(u>=i)return this.interim[0]=r,this.interim[1]=s,a;if(o=e[u++],128!=(192&o)){u--;continue}if(u>=i)return this.interim[0]=r,this.interim[1]=s,this.interim[2]=o,a;if(n=e[u++],128!=(192&n)){u--;continue}if(h=(7&r)<<18|(63&s)<<12|(63&o)<<6|63&n,h<65536||h>1114111)continue;t[a++]=h}}return a}}},225:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.UnicodeV6=void 0;const r=i(1480),s=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531]],o=[[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]];let n;t.UnicodeV6=class{constructor(){if(this.version="6",!n){n=new Uint8Array(65536),n.fill(1),n[0]=0,n.fill(0,1,32),n.fill(0,127,160),n.fill(2,4352,4448),n[9001]=2,n[9002]=2,n.fill(2,11904,42192),n[12351]=1,n.fill(2,44032,55204),n.fill(2,63744,64256),n.fill(2,65040,65050),n.fill(2,65072,65136),n.fill(2,65280,65377),n.fill(2,65504,65511);for(let e=0;et[s][1])return!1;for(;s>=r;)if(i=r+s>>1,e>t[i][1])r=i+1;else{if(!(e=131072&&e<=196605||e>=196608&&e<=262141?2:1}charProperties(e,t){let i=this.wcwidth(e),s=0===i&&0!==t;if(s){const e=r.UnicodeService.extractWidth(t);0===e?s=!1:e>i&&(i=e)}return r.UnicodeService.createPropertyValue(0,i,s)}}},5981:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.WriteBuffer=void 0;const r=i(8460),s=i(844);class o extends s.Disposable{constructor(e){super(),this._action=e,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this.register(new r.EventEmitter),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(e,t){if(void 0!==t&&this._syncCalls>t)return void(this._syncCalls=0);if(this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;let i;for(this._isSyncWriting=!0;i=this._writeBuffer.shift();){this._action(i);const e=this._callbacks.shift();e&&e()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(e,t){if(this._pendingData>5e7)throw new Error("write data discarded, use flow control to avoid losing data");if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput)return this._didUserInput=!1,this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t),void this._innerWrite();setTimeout(()=>this._innerWrite())}this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t)}_innerWrite(e=0,t=!0){const i=e||Date.now();for(;this._writeBuffer.length>this._bufferOffset;){const e=this._writeBuffer[this._bufferOffset],r=this._action(e,t);if(r){const e=e=>Date.now()-i>=12?setTimeout(()=>this._innerWrite(0,e)):this._innerWrite(i,e);return void r.catch(e=>(queueMicrotask(()=>{throw e}),Promise.resolve(!1))).then(e)}const s=this._callbacks[this._bufferOffset];if(s&&s(),this._bufferOffset++,this._pendingData-=e.length,Date.now()-i>=12)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>50&&(this._writeBuffer=this._writeBuffer.slice(this._bufferOffset),this._callbacks=this._callbacks.slice(this._bufferOffset),this._bufferOffset=0),setTimeout(()=>this._innerWrite())):(this._writeBuffer.length=0,this._callbacks.length=0,this._pendingData=0,this._bufferOffset=0),this._onWriteParsed.fire()}}t.WriteBuffer=o},5941:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.toRgbString=t.parseColor=void 0;const i=/^([\da-f])\/([\da-f])\/([\da-f])$|^([\da-f]{2})\/([\da-f]{2})\/([\da-f]{2})$|^([\da-f]{3})\/([\da-f]{3})\/([\da-f]{3})$|^([\da-f]{4})\/([\da-f]{4})\/([\da-f]{4})$/,r=/^[\da-f]+$/;function s(e,t){const i=e.toString(16),r=i.length<2?"0"+i:i;switch(t){case 4:return i[0];case 8:return r;case 12:return(r+r).slice(0,3);default:return r+r}}t.parseColor=function(e){if(!e)return;let t=e.toLowerCase();if(0===t.indexOf("rgb:")){t=t.slice(4);const e=i.exec(t);if(e){const t=e[1]?15:e[4]?255:e[7]?4095:65535;return[Math.round(parseInt(e[1]||e[4]||e[7]||e[10],16)/t*255),Math.round(parseInt(e[2]||e[5]||e[8]||e[11],16)/t*255),Math.round(parseInt(e[3]||e[6]||e[9]||e[12],16)/t*255)]}}else if(0===t.indexOf("#")&&(t=t.slice(1),r.exec(t)&&[3,6,9,12].includes(t.length))){const e=t.length/3,i=[0,0,0];for(let r=0;r<3;++r){const s=parseInt(t.slice(e*r,e*r+e),16);i[r]=1===e?s<<4:2===e?s:3===e?s>>4:s>>8}return i}},t.toRgbString=function(e,t=16){const[i,r,o]=e;return`rgb:${s(i,t)}/${s(r,t)}/${s(o,t)}`}},5770:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.PAYLOAD_LIMIT=void 0,t.PAYLOAD_LIMIT=1e7},6351:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DcsHandler=t.DcsParser=void 0;const r=i(482),s=i(8742),o=i(5770),n=[];t.DcsParser=class{constructor(){this._handlers=Object.create(null),this._active=n,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=n}registerHandler(e,t){void 0===this._handlers[e]&&(this._handlers[e]=[]);const i=this._handlers[e];return i.push(t),{dispose:()=>{const e=i.indexOf(t);-1!==e&&i.splice(e,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}reset(){if(this._active.length)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].unhook(!1);this._stack.paused=!1,this._active=n,this._ident=0}hook(e,t){if(this.reset(),this._ident=e,this._active=this._handlers[e]||n,this._active.length)for(let e=this._active.length-1;e>=0;e--)this._active[e].hook(t);else this._handlerFb(this._ident,"HOOK",t)}put(e,t,i){if(this._active.length)for(let r=this._active.length-1;r>=0;r--)this._active[r].put(e,t,i);else this._handlerFb(this._ident,"PUT",(0,r.utf32ToString)(e,t,i))}unhook(e,t=!0){if(this._active.length){let i=!1,r=this._active.length-1,s=!1;if(this._stack.paused&&(r=this._stack.loopPosition-1,i=t,s=this._stack.fallThrough,this._stack.paused=!1),!s&&!1===i){for(;r>=0&&(i=this._active[r].unhook(e),!0!==i);r--)if(i instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!1,i;r--}for(;r>=0;r--)if(i=this._active[r].unhook(!1),i instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!0,i}else this._handlerFb(this._ident,"UNHOOK",e);this._active=n,this._ident=0}};const a=new s.Params;a.addParam(0),t.DcsHandler=class{constructor(e){this._handler=e,this._data="",this._params=a,this._hitLimit=!1}hook(e){this._params=e.length>1||e.params[0]?e.clone():a,this._data="",this._hitLimit=!1}put(e,t,i){this._hitLimit||(this._data+=(0,r.utf32ToString)(e,t,i),this._data.length>o.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}unhook(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data,this._params),t instanceof Promise))return t.then(e=>(this._params=a,this._data="",this._hitLimit=!1,e));return this._params=a,this._data="",this._hitLimit=!1,t}}},2015:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.EscapeSequenceParser=t.VT500_TRANSITION_TABLE=t.TransitionTable=void 0;const r=i(844),s=i(8742),o=i(6242),n=i(6351);class a{constructor(e){this.table=new Uint8Array(e)}setDefault(e,t){this.table.fill(e<<4|t)}add(e,t,i,r){this.table[t<<8|e]=i<<4|r}addMany(e,t,i,r){for(let s=0;st),i=(e,i)=>t.slice(e,i),r=i(32,127),s=i(0,24);s.push(25),s.push.apply(s,i(28,32));const o=i(0,14);let n;for(n in e.setDefault(1,0),e.addMany(r,0,2,0),o)e.addMany([24,26,153,154],n,3,0),e.addMany(i(128,144),n,3,0),e.addMany(i(144,152),n,3,0),e.add(156,n,0,0),e.add(27,n,11,1),e.add(157,n,4,8),e.addMany([152,158,159],n,0,7),e.add(155,n,11,3),e.add(144,n,11,9);return e.addMany(s,0,3,0),e.addMany(s,1,3,1),e.add(127,1,0,1),e.addMany(s,8,0,8),e.addMany(s,3,3,3),e.add(127,3,0,3),e.addMany(s,4,3,4),e.add(127,4,0,4),e.addMany(s,6,3,6),e.addMany(s,5,3,5),e.add(127,5,0,5),e.addMany(s,2,3,2),e.add(127,2,0,2),e.add(93,1,4,8),e.addMany(r,8,5,8),e.add(127,8,5,8),e.addMany([156,27,24,26,7],8,6,0),e.addMany(i(28,32),8,0,8),e.addMany([88,94,95],1,0,7),e.addMany(r,7,0,7),e.addMany(s,7,0,7),e.add(156,7,0,0),e.add(127,7,0,7),e.add(91,1,11,3),e.addMany(i(64,127),3,7,0),e.addMany(i(48,60),3,8,4),e.addMany([60,61,62,63],3,9,4),e.addMany(i(48,60),4,8,4),e.addMany(i(64,127),4,7,0),e.addMany([60,61,62,63],4,0,6),e.addMany(i(32,64),6,0,6),e.add(127,6,0,6),e.addMany(i(64,127),6,0,0),e.addMany(i(32,48),3,9,5),e.addMany(i(32,48),5,9,5),e.addMany(i(48,64),5,0,6),e.addMany(i(64,127),5,7,0),e.addMany(i(32,48),4,9,5),e.addMany(i(32,48),1,9,2),e.addMany(i(32,48),2,9,2),e.addMany(i(48,127),2,10,0),e.addMany(i(48,80),1,10,0),e.addMany(i(81,88),1,10,0),e.addMany([89,90,92],1,10,0),e.addMany(i(96,127),1,10,0),e.add(80,1,11,9),e.addMany(s,9,0,9),e.add(127,9,0,9),e.addMany(i(28,32),9,0,9),e.addMany(i(32,48),9,9,12),e.addMany(i(48,60),9,8,10),e.addMany([60,61,62,63],9,9,10),e.addMany(s,11,0,11),e.addMany(i(32,128),11,0,11),e.addMany(i(28,32),11,0,11),e.addMany(s,10,0,10),e.add(127,10,0,10),e.addMany(i(28,32),10,0,10),e.addMany(i(48,60),10,8,10),e.addMany([60,61,62,63],10,0,11),e.addMany(i(32,48),10,9,12),e.addMany(s,12,0,12),e.add(127,12,0,12),e.addMany(i(28,32),12,0,12),e.addMany(i(32,48),12,9,12),e.addMany(i(48,64),12,0,11),e.addMany(i(64,127),12,12,13),e.addMany(i(64,127),10,12,13),e.addMany(i(64,127),9,12,13),e.addMany(s,13,13,13),e.addMany(r,13,13,13),e.add(127,13,0,13),e.addMany([27,156,24,26],13,14,0),e.add(h,0,2,0),e.add(h,8,5,8),e.add(h,6,0,6),e.add(h,11,0,11),e.add(h,13,13,13),e}();class l extends r.Disposable{constructor(e=t.VT500_TRANSITION_TABLE){super(),this._transitions=e,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new s.Params,this._params.addParam(0),this._collect=0,this.precedingJoinState=0,this._printHandlerFb=(e,t,i)=>{},this._executeHandlerFb=e=>{},this._csiHandlerFb=(e,t)=>{},this._escHandlerFb=e=>{},this._errorHandlerFb=e=>e,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this.register((0,r.toDisposable)(()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)})),this._oscParser=this.register(new o.OscParser),this._dcsParser=this.register(new n.DcsParser),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:"\\"},()=>!0)}_identifier(e,t=[64,126]){let i=0;if(e.prefix){if(e.prefix.length>1)throw new Error("only one byte as prefix supported");if(i=e.prefix.charCodeAt(0),i&&60>i||i>63)throw new Error("prefix must be in range 0x3c .. 0x3f")}if(e.intermediates){if(e.intermediates.length>2)throw new Error("only two bytes as intermediates are supported");for(let t=0;tr||r>47)throw new Error("intermediate must be in range 0x20 .. 0x2f");i<<=8,i|=r}}if(1!==e.final.length)throw new Error("final must be a single byte");const r=e.final.charCodeAt(0);if(t[0]>r||r>t[1])throw new Error(`final must be in range ${t[0]} .. ${t[1]}`);return i<<=8,i|=r,i}identToString(e){const t=[];for(;e;)t.push(String.fromCharCode(255&e)),e>>=8;return t.reverse().join("")}setPrintHandler(e){this._printHandler=e}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(e,t){const i=this._identifier(e,[48,126]);void 0===this._escHandlers[i]&&(this._escHandlers[i]=[]);const r=this._escHandlers[i];return r.push(t),{dispose:()=>{const e=r.indexOf(t);-1!==e&&r.splice(e,1)}}}clearEscHandler(e){this._escHandlers[this._identifier(e,[48,126])]&&delete this._escHandlers[this._identifier(e,[48,126])]}setEscHandlerFallback(e){this._escHandlerFb=e}setExecuteHandler(e,t){this._executeHandlers[e.charCodeAt(0)]=t}clearExecuteHandler(e){this._executeHandlers[e.charCodeAt(0)]&&delete this._executeHandlers[e.charCodeAt(0)]}setExecuteHandlerFallback(e){this._executeHandlerFb=e}registerCsiHandler(e,t){const i=this._identifier(e);void 0===this._csiHandlers[i]&&(this._csiHandlers[i]=[]);const r=this._csiHandlers[i];return r.push(t),{dispose:()=>{const e=r.indexOf(t);-1!==e&&r.splice(e,1)}}}clearCsiHandler(e){this._csiHandlers[this._identifier(e)]&&delete this._csiHandlers[this._identifier(e)]}setCsiHandlerFallback(e){this._csiHandlerFb=e}registerDcsHandler(e,t){return this._dcsParser.registerHandler(this._identifier(e),t)}clearDcsHandler(e){this._dcsParser.clearHandler(this._identifier(e))}setDcsHandlerFallback(e){this._dcsParser.setHandlerFallback(e)}registerOscHandler(e,t){return this._oscParser.registerHandler(e,t)}clearOscHandler(e){this._oscParser.clearHandler(e)}setOscHandlerFallback(e){this._oscParser.setHandlerFallback(e)}setErrorHandler(e){this._errorHandler=e}clearErrorHandler(){this._errorHandler=this._errorHandlerFb}reset(){this.currentState=this.initialState,this._oscParser.reset(),this._dcsParser.reset(),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0,0!==this._parseStack.state&&(this._parseStack.state=2,this._parseStack.handlers=[])}_preserveStack(e,t,i,r,s){this._parseStack.state=e,this._parseStack.handlers=t,this._parseStack.handlerPos=i,this._parseStack.transition=r,this._parseStack.chunkPos=s}parse(e,t,i){let r,s=0,o=0,n=0;if(this._parseStack.state)if(2===this._parseStack.state)this._parseStack.state=0,n=this._parseStack.chunkPos+1;else{if(void 0===i||1===this._parseStack.state)throw this._parseStack.state=1,new Error("improper continuation due to previous async handler, giving up parsing");const t=this._parseStack.handlers;let o=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(!1===i&&o>-1)for(;o>=0&&(r=t[o](this._params),!0!==r);o--)if(r instanceof Promise)return this._parseStack.handlerPos=o,r;this._parseStack.handlers=[];break;case 4:if(!1===i&&o>-1)for(;o>=0&&(r=t[o](),!0!==r);o--)if(r instanceof Promise)return this._parseStack.handlerPos=o,r;this._parseStack.handlers=[];break;case 6:if(s=e[this._parseStack.chunkPos],r=this._dcsParser.unhook(24!==s&&26!==s,i),r)return r;27===s&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(s=e[this._parseStack.chunkPos],r=this._oscParser.end(24!==s&&26!==s,i),r)return r;27===s&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0}this._parseStack.state=0,n=this._parseStack.chunkPos+1,this.precedingJoinState=0,this.currentState=15&this._parseStack.transition}for(let i=n;i>4){case 2:for(let r=i+1;;++r){if(r>=t||(s=e[r])<32||s>126&&s=t||(s=e[r])<32||s>126&&s=t||(s=e[r])<32||s>126&&s=t||(s=e[r])<32||s>126&&s=0&&(r=n[a](this._params),!0!==r);a--)if(r instanceof Promise)return this._preserveStack(3,n,a,o,i),r;a<0&&this._csiHandlerFb(this._collect<<8|s,this._params),this.precedingJoinState=0;break;case 8:do{switch(s){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(s-48)}}while(++i47&&s<60);i--;break;case 9:this._collect<<=8,this._collect|=s;break;case 10:const l=this._escHandlers[this._collect<<8|s];let c=l?l.length-1:-1;for(;c>=0&&(r=l[c](),!0!==r);c--)if(r instanceof Promise)return this._preserveStack(4,l,c,o,i),r;c<0&&this._escHandlerFb(this._collect<<8|s),this.precedingJoinState=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|s,this._params);break;case 13:for(let r=i+1;;++r)if(r>=t||24===(s=e[r])||26===s||27===s||s>127&&s=t||(s=e[r])<32||s>127&&s{Object.defineProperty(t,"__esModule",{value:!0}),t.OscHandler=t.OscParser=void 0;const r=i(5770),s=i(482),o=[];t.OscParser=class{constructor(){this._state=0,this._active=o,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(e,t){void 0===this._handlers[e]&&(this._handlers[e]=[]);const i=this._handlers[e];return i.push(t),{dispose:()=>{const e=i.indexOf(t);-1!==e&&i.splice(e,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=o}reset(){if(2===this._state)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].end(!1);this._stack.paused=!1,this._active=o,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||o,this._active.length)for(let e=this._active.length-1;e>=0;e--)this._active[e].start();else this._handlerFb(this._id,"START")}_put(e,t,i){if(this._active.length)for(let r=this._active.length-1;r>=0;r--)this._active[r].put(e,t,i);else this._handlerFb(this._id,"PUT",(0,s.utf32ToString)(e,t,i))}start(){this.reset(),this._state=1}put(e,t,i){if(3!==this._state){if(1===this._state)for(;t0&&this._put(e,t,i)}}end(e,t=!0){if(0!==this._state){if(3!==this._state)if(1===this._state&&this._start(),this._active.length){let i=!1,r=this._active.length-1,s=!1;if(this._stack.paused&&(r=this._stack.loopPosition-1,i=t,s=this._stack.fallThrough,this._stack.paused=!1),!s&&!1===i){for(;r>=0&&(i=this._active[r].end(e),!0!==i);r--)if(i instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!1,i;r--}for(;r>=0;r--)if(i=this._active[r].end(!1),i instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!0,i}else this._handlerFb(this._id,"END",e);this._active=o,this._id=-1,this._state=0}}},t.OscHandler=class{constructor(e){this._handler=e,this._data="",this._hitLimit=!1}start(){this._data="",this._hitLimit=!1}put(e,t,i){this._hitLimit||(this._data+=(0,s.utf32ToString)(e,t,i),this._data.length>r.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}end(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data),t instanceof Promise))return t.then(e=>(this._data="",this._hitLimit=!1,e));return this._data="",this._hitLimit=!1,t}}},8742:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Params=void 0;const i=2147483647;class r{static fromArray(e){const t=new r;if(!e.length)return t;for(let i=Array.isArray(e[0])?1:0;i256)throw new Error("maxSubParamsLength must not be greater than 256");this.params=new Int32Array(e),this.length=0,this._subParams=new Int32Array(t),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(e),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}clone(){const e=new r(this.maxLength,this.maxSubParamsLength);return e.params.set(this.params),e.length=this.length,e._subParams.set(this._subParams),e._subParamsLength=this._subParamsLength,e._subParamsIdx.set(this._subParamsIdx),e._rejectDigits=this._rejectDigits,e._rejectSubDigits=this._rejectSubDigits,e._digitIsSub=this._digitIsSub,e}toArray(){const e=[];for(let t=0;t>8,r=255&this._subParamsIdx[t];r-i>0&&e.push(Array.prototype.slice.call(this._subParams,i,r))}return e}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(e){if(this._digitIsSub=!1,this.length>=this.maxLength)this._rejectDigits=!0;else{if(e<-1)throw new Error("values lesser than -1 are not allowed");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=e>i?i:e}}addSubParam(e){if(this._digitIsSub=!0,this.length)if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength)this._rejectSubDigits=!0;else{if(e<-1)throw new Error("values lesser than -1 are not allowed");this._subParams[this._subParamsLength++]=e>i?i:e,this._subParamsIdx[this.length-1]++}}hasSubParams(e){return(255&this._subParamsIdx[e])-(this._subParamsIdx[e]>>8)>0}getSubParams(e){const t=this._subParamsIdx[e]>>8,i=255&this._subParamsIdx[e];return i-t>0?this._subParams.subarray(t,i):null}getSubParamsAll(){const e={};for(let t=0;t>8,r=255&this._subParamsIdx[t];r-i>0&&(e[t]=this._subParams.slice(i,r))}return e}addDigit(e){let t;if(this._rejectDigits||!(t=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;const r=this._digitIsSub?this._subParams:this.params,s=r[t-1];r[t-1]=~s?Math.min(10*s+e,i):e}}t.Params=r},5741:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AddonManager=void 0,t.AddonManager=class{constructor(){this._addons=[]}dispose(){for(let e=this._addons.length-1;e>=0;e--)this._addons[e].instance.dispose()}loadAddon(e,t){const i={instance:t,dispose:t.dispose,isDisposed:!1};this._addons.push(i),t.dispose=()=>this._wrappedAddonDispose(i),t.activate(e)}_wrappedAddonDispose(e){if(e.isDisposed)return;let t=-1;for(let i=0;i{Object.defineProperty(t,"__esModule",{value:!0}),t.BufferApiView=void 0;const r=i(3785),s=i(511);t.BufferApiView=class{constructor(e,t){this._buffer=e,this.type=t}init(e){return this._buffer=e,this}get cursorY(){return this._buffer.y}get cursorX(){return this._buffer.x}get viewportY(){return this._buffer.ydisp}get baseY(){return this._buffer.ybase}get length(){return this._buffer.lines.length}getLine(e){const t=this._buffer.lines.get(e);if(t)return new r.BufferLineApiView(t)}getNullCell(){return new s.CellData}}},3785:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.BufferLineApiView=void 0;const r=i(511);t.BufferLineApiView=class{constructor(e){this._line=e}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(e,t){if(!(e<0||e>=this._line.length))return t?(this._line.loadCell(e,t),t):this._line.loadCell(e,new r.CellData)}translateToString(e,t,i){return this._line.translateToString(e,t,i)}}},8285:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.BufferNamespaceApi=void 0;const r=i(8771),s=i(8460),o=i(844);class n extends o.Disposable{constructor(e){super(),this._core=e,this._onBufferChange=this.register(new s.EventEmitter),this.onBufferChange=this._onBufferChange.event,this._normal=new r.BufferApiView(this._core.buffers.normal,"normal"),this._alternate=new r.BufferApiView(this._core.buffers.alt,"alternate"),this._core.buffers.onBufferActivate(()=>this._onBufferChange.fire(this.active))}get active(){if(this._core.buffers.active===this._core.buffers.normal)return this.normal;if(this._core.buffers.active===this._core.buffers.alt)return this.alternate;throw new Error("Active buffer is neither normal nor alternate")}get normal(){return this._normal.init(this._core.buffers.normal)}get alternate(){return this._alternate.init(this._core.buffers.alt)}}t.BufferNamespaceApi=n},7975:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ParserApi=void 0,t.ParserApi=class{constructor(e){this._core=e}registerCsiHandler(e,t){return this._core.registerCsiHandler(e,e=>t(e.toArray()))}addCsiHandler(e,t){return this.registerCsiHandler(e,t)}registerDcsHandler(e,t){return this._core.registerDcsHandler(e,(e,i)=>t(e,i.toArray()))}addDcsHandler(e,t){return this.registerDcsHandler(e,t)}registerEscHandler(e,t){return this._core.registerEscHandler(e,t)}addEscHandler(e,t){return this.registerEscHandler(e,t)}registerOscHandler(e,t){return this._core.registerOscHandler(e,t)}addOscHandler(e,t){return this.registerOscHandler(e,t)}}},7090:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.UnicodeApi=void 0,t.UnicodeApi=class{constructor(e){this._core=e}register(e){this._core.unicodeService.register(e)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(e){this._core.unicodeService.activeVersion=e}}},744:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.BufferService=t.MINIMUM_ROWS=t.MINIMUM_COLS=void 0;const o=i(8460),n=i(844),a=i(5295),h=i(2585);t.MINIMUM_COLS=2,t.MINIMUM_ROWS=1;let l=t.BufferService=class extends n.Disposable{get buffer(){return this.buffers.active}constructor(e){super(),this.isUserScrolling=!1,this._onResize=this.register(new o.EventEmitter),this.onResize=this._onResize.event,this._onScroll=this.register(new o.EventEmitter),this.onScroll=this._onScroll.event,this.cols=Math.max(e.rawOptions.cols||0,t.MINIMUM_COLS),this.rows=Math.max(e.rawOptions.rows||0,t.MINIMUM_ROWS),this.buffers=this.register(new a.BufferSet(e,this))}resize(e,t){this.cols=e,this.rows=t,this.buffers.resize(e,t),this._onResize.fire({cols:e,rows:t})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(e,t=!1){const i=this.buffer;let r;r=this._cachedBlankLine,r&&r.length===this.cols&&r.getFg(0)===e.fg&&r.getBg(0)===e.bg||(r=i.getBlankLine(e,t),this._cachedBlankLine=r),r.isWrapped=t;const s=i.ybase+i.scrollTop,o=i.ybase+i.scrollBottom;if(0===i.scrollTop){const e=i.lines.isFull;o===i.lines.length-1?e?i.lines.recycle().copyFrom(r):i.lines.push(r.clone()):i.lines.splice(o+1,0,r.clone()),e?this.isUserScrolling&&(i.ydisp=Math.max(i.ydisp-1,0)):(i.ybase++,this.isUserScrolling||i.ydisp++)}else{const e=o-s+1;i.lines.shiftElements(s+1,e-1,-1),i.lines.set(o,r.clone())}this.isUserScrolling||(i.ydisp=i.ybase),this._onScroll.fire(i.ydisp)}scrollLines(e,t,i){const r=this.buffer;if(e<0){if(0===r.ydisp)return;this.isUserScrolling=!0}else e+r.ydisp>=r.ybase&&(this.isUserScrolling=!1);const s=r.ydisp;r.ydisp=Math.max(Math.min(r.ydisp+e,r.ybase),0),s!==r.ydisp&&(t||this._onScroll.fire(r.ydisp))}};t.BufferService=l=r([s(0,h.IOptionsService)],l)},7994:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CharsetService=void 0,t.CharsetService=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(e){this.glevel=e,this.charset=this._charsets[e]}setgCharset(e,t){this._charsets[e]=t,this.glevel===e&&(this.charset=t)}}},1753:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.CoreMouseService=void 0;const o=i(2585),n=i(8460),a=i(844),h={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:e=>4!==e.button&&1===e.action&&(e.ctrl=!1,e.alt=!1,e.shift=!1,!0)},VT200:{events:19,restrict:e=>32!==e.action},DRAG:{events:23,restrict:e=>32!==e.action||3!==e.button},ANY:{events:31,restrict:e=>!0}};function l(e,t){let i=(e.ctrl?16:0)|(e.shift?4:0)|(e.alt?8:0);return 4===e.button?(i|=64,i|=e.action):(i|=3&e.button,4&e.button&&(i|=64),8&e.button&&(i|=128),32===e.action?i|=32:0!==e.action||t||(i|=3)),i}const c=String.fromCharCode,u={DEFAULT:e=>{const t=[l(e,!1)+32,e.col+32,e.row+32];return t[0]>255||t[1]>255||t[2]>255?"":`${c(t[0])}${c(t[1])}${c(t[2])}`},SGR:e=>{const t=0===e.action&&4!==e.button?"m":"M";return`[<${l(e,!0)};${e.col};${e.row}${t}`},SGR_PIXELS:e=>{const t=0===e.action&&4!==e.button?"m":"M";return`[<${l(e,!0)};${e.x};${e.y}${t}`}};let d=t.CoreMouseService=class extends a.Disposable{constructor(e,t){super(),this._bufferService=e,this._coreService=t,this._protocols={},this._encodings={},this._activeProtocol="",this._activeEncoding="",this._lastEvent=null,this._onProtocolChange=this.register(new n.EventEmitter),this.onProtocolChange=this._onProtocolChange.event;for(const e of Object.keys(h))this.addProtocol(e,h[e]);for(const e of Object.keys(u))this.addEncoding(e,u[e]);this.reset()}addProtocol(e,t){this._protocols[e]=t}addEncoding(e,t){this._encodings[e]=t}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return 0!==this._protocols[this._activeProtocol].events}set activeProtocol(e){if(!this._protocols[e])throw new Error(`unknown protocol "${e}"`);this._activeProtocol=e,this._onProtocolChange.fire(this._protocols[e].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(e){if(!this._encodings[e])throw new Error(`unknown encoding "${e}"`);this._activeEncoding=e}reset(){this.activeProtocol="NONE",this.activeEncoding="DEFAULT",this._lastEvent=null}triggerMouseEvent(e){if(e.col<0||e.col>=this._bufferService.cols||e.row<0||e.row>=this._bufferService.rows)return!1;if(4===e.button&&32===e.action)return!1;if(3===e.button&&32!==e.action)return!1;if(4!==e.button&&(2===e.action||3===e.action))return!1;if(e.col++,e.row++,32===e.action&&this._lastEvent&&this._equalEvents(this._lastEvent,e,"SGR_PIXELS"===this._activeEncoding))return!1;if(!this._protocols[this._activeProtocol].restrict(e))return!1;const t=this._encodings[this._activeEncoding](e);return t&&("DEFAULT"===this._activeEncoding?this._coreService.triggerBinaryEvent(t):this._coreService.triggerDataEvent(t,!0)),this._lastEvent=e,!0}explainEvents(e){return{down:!!(1&e),up:!!(2&e),drag:!!(4&e),move:!!(8&e),wheel:!!(16&e)}}_equalEvents(e,t,i){if(i){if(e.x!==t.x)return!1;if(e.y!==t.y)return!1}else{if(e.col!==t.col)return!1;if(e.row!==t.row)return!1}return e.button===t.button&&e.action===t.action&&e.ctrl===t.ctrl&&e.alt===t.alt&&e.shift===t.shift}};t.CoreMouseService=d=r([s(0,o.IBufferService),s(1,o.ICoreService)],d)},6975:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.CoreService=void 0;const o=i(1439),n=i(8460),a=i(844),h=i(2585),l=Object.freeze({insertMode:!1}),c=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,origin:!1,reverseWraparound:!1,sendFocus:!1,wraparound:!0});let u=t.CoreService=class extends a.Disposable{constructor(e,t,i){super(),this._bufferService=e,this._logService=t,this._optionsService=i,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this.register(new n.EventEmitter),this.onData=this._onData.event,this._onUserInput=this.register(new n.EventEmitter),this.onUserInput=this._onUserInput.event,this._onBinary=this.register(new n.EventEmitter),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this.register(new n.EventEmitter),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=(0,o.clone)(l),this.decPrivateModes=(0,o.clone)(c)}reset(){this.modes=(0,o.clone)(l),this.decPrivateModes=(0,o.clone)(c)}triggerDataEvent(e,t=!1){if(this._optionsService.rawOptions.disableStdin)return;const i=this._bufferService.buffer;t&&this._optionsService.rawOptions.scrollOnUserInput&&i.ybase!==i.ydisp&&this._onRequestScrollToBottom.fire(),t&&this._onUserInput.fire(),this._logService.debug(`sending data "${e}"`,()=>e.split("").map(e=>e.charCodeAt(0))),this._onData.fire(e)}triggerBinaryEvent(e){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${e}"`,()=>e.split("").map(e=>e.charCodeAt(0))),this._onBinary.fire(e))}};t.CoreService=u=r([s(0,h.IBufferService),s(1,h.ILogService),s(2,h.IOptionsService)],u)},9074:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DecorationService=void 0;const r=i(8055),s=i(8460),o=i(844),n=i(6106);let a=0,h=0;class l extends o.Disposable{get decorations(){return this._decorations.values()}constructor(){super(),this._decorations=new n.SortedList(e=>e?.marker.line),this._onDecorationRegistered=this.register(new s.EventEmitter),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this.register(new s.EventEmitter),this.onDecorationRemoved=this._onDecorationRemoved.event,this.register((0,o.toDisposable)(()=>this.reset()))}registerDecoration(e){if(e.marker.isDisposed)return;const t=new c(e);if(t){const e=t.marker.onDispose(()=>t.dispose());t.onDispose(()=>{t&&(this._decorations.delete(t)&&this._onDecorationRemoved.fire(t),e.dispose())}),this._decorations.insert(t),this._onDecorationRegistered.fire(t)}return t}reset(){for(const e of this._decorations.values())e.dispose();this._decorations.clear()}*getDecorationsAtCell(e,t,i){let r=0,s=0;for(const o of this._decorations.getKeyIterator(t))r=o.options.x??0,s=r+(o.options.width??1),e>=r&&e{a=t.options.x??0,h=a+(t.options.width??1),e>=a&&e{Object.defineProperty(t,"__esModule",{value:!0}),t.InstantiationService=t.ServiceCollection=void 0;const r=i(2585),s=i(8343);class o{constructor(...e){this._entries=new Map;for(const[t,i]of e)this.set(t,i)}set(e,t){const i=this._entries.get(e);return this._entries.set(e,t),i}forEach(e){for(const[t,i]of this._entries.entries())e(t,i)}has(e){return this._entries.has(e)}get(e){return this._entries.get(e)}}t.ServiceCollection=o,t.InstantiationService=class{constructor(){this._services=new o,this._services.set(r.IInstantiationService,this)}setService(e,t){this._services.set(e,t)}getService(e){return this._services.get(e)}createInstance(e,...t){const i=(0,s.getServiceDependencies)(e).sort((e,t)=>e.index-t.index),r=[];for(const t of i){const i=this._services.get(t.id);if(!i)throw new Error(`[createInstance] ${e.name} depends on UNKNOWN service ${t.id}.`);r.push(i)}const o=i.length>0?i[0].index:t.length;if(t.length!==o)throw new Error(`[createInstance] First service dependency of ${e.name} at position ${o+1} conflicts with ${t.length} static arguments`);return new e(...[...t,...r])}}},7866:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.traceCall=t.setTraceLogger=t.LogService=void 0;const o=i(844),n=i(2585),a={trace:n.LogLevelEnum.TRACE,debug:n.LogLevelEnum.DEBUG,info:n.LogLevelEnum.INFO,warn:n.LogLevelEnum.WARN,error:n.LogLevelEnum.ERROR,off:n.LogLevelEnum.OFF};let h,l=t.LogService=class extends o.Disposable{get logLevel(){return this._logLevel}constructor(e){super(),this._optionsService=e,this._logLevel=n.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange("logLevel",()=>this._updateLogLevel())),h=this}_updateLogLevel(){this._logLevel=a[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let t=0;tJSON.stringify(e)).join(", ")})`);const t=r.apply(this,e);return h.trace(`GlyphRenderer#${r.name} return`,t),t}}},7302:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.OptionsService=t.DEFAULT_OPTIONS=void 0;const r=i(8460),s=i(844),o=i(6114);t.DEFAULT_OPTIONS={cols:80,rows:24,cursorBlink:!1,cursorStyle:"block",cursorWidth:1,cursorInactiveStyle:"outline",customGlyphs:!0,drawBoldTextInBrightColors:!0,documentOverride:null,fastScrollModifier:"alt",fastScrollSensitivity:5,fontFamily:"courier-new, courier, monospace",fontSize:15,fontWeight:"normal",fontWeightBold:"bold",ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:"info",logger:null,scrollback:1e3,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},rescaleOverlappingGlyphs:!1,rightClickSelectsWord:o.isMac,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:" ()[]{}',\"`",altClickMovesCursor:!0,convertEol:!1,termName:"xterm",cancelEvents:!1,overviewRulerWidth:0};const n=["normal","bold","100","200","300","400","500","600","700","800","900"];class a extends s.Disposable{constructor(e){super(),this._onOptionChange=this.register(new r.EventEmitter),this.onOptionChange=this._onOptionChange.event;const i={...t.DEFAULT_OPTIONS};for(const t in e)if(t in i)try{const r=e[t];i[t]=this._sanitizeAndValidateOption(t,r)}catch(e){console.error(e)}this.rawOptions=i,this.options={...i},this._setupOptions(),this.register((0,s.toDisposable)(()=>{this.rawOptions.linkHandler=null,this.rawOptions.documentOverride=null}))}onSpecificOptionChange(e,t){return this.onOptionChange(i=>{i===e&&t(this.rawOptions[e])})}onMultipleOptionChange(e,t){return this.onOptionChange(i=>{-1!==e.indexOf(i)&&t()})}_setupOptions(){const e=e=>{if(!(e in t.DEFAULT_OPTIONS))throw new Error(`No option with key "${e}"`);return this.rawOptions[e]},i=(e,i)=>{if(!(e in t.DEFAULT_OPTIONS))throw new Error(`No option with key "${e}"`);i=this._sanitizeAndValidateOption(e,i),this.rawOptions[e]!==i&&(this.rawOptions[e]=i,this._onOptionChange.fire(e))};for(const t in this.rawOptions){const r={get:e.bind(this,t),set:i.bind(this,t)};Object.defineProperty(this.options,t,r)}}_sanitizeAndValidateOption(e,i){switch(e){case"cursorStyle":if(i||(i=t.DEFAULT_OPTIONS[e]),!function(e){return"block"===e||"underline"===e||"bar"===e}(i))throw new Error(`"${i}" is not a valid value for ${e}`);break;case"wordSeparator":i||(i=t.DEFAULT_OPTIONS[e]);break;case"fontWeight":case"fontWeightBold":if("number"==typeof i&&1<=i&&i<=1e3)break;i=n.includes(i)?i:t.DEFAULT_OPTIONS[e];break;case"cursorWidth":i=Math.floor(i);case"lineHeight":case"tabStopWidth":if(i<1)throw new Error(`${e} cannot be less than 1, value: ${i}`);break;case"minimumContrastRatio":i=Math.max(1,Math.min(21,Math.round(10*i)/10));break;case"scrollback":if((i=Math.min(i,4294967295))<0)throw new Error(`${e} cannot be less than 0, value: ${i}`);break;case"fastScrollSensitivity":case"scrollSensitivity":if(i<=0)throw new Error(`${e} cannot be less than or equal to 0, value: ${i}`);break;case"rows":case"cols":if(!i&&0!==i)throw new Error(`${e} must be numeric, value: ${i}`);break;case"windowsPty":i=i??{}}return i}}t.OptionsService=a},2660:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.OscLinkService=void 0;const o=i(2585);let n=t.OscLinkService=class{constructor(e){this._bufferService=e,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(e){const t=this._bufferService.buffer;if(void 0===e.id){const i=t.addMarker(t.ybase+t.y),r={data:e,id:this._nextId++,lines:[i]};return i.onDispose(()=>this._removeMarkerFromLink(r,i)),this._dataByLinkId.set(r.id,r),r.id}const i=e,r=this._getEntryIdKey(i),s=this._entriesWithId.get(r);if(s)return this.addLineToLink(s.id,t.ybase+t.y),s.id;const o=t.addMarker(t.ybase+t.y),n={id:this._nextId++,key:this._getEntryIdKey(i),data:i,lines:[o]};return o.onDispose(()=>this._removeMarkerFromLink(n,o)),this._entriesWithId.set(n.key,n),this._dataByLinkId.set(n.id,n),n.id}addLineToLink(e,t){const i=this._dataByLinkId.get(e);if(i&&i.lines.every(e=>e.line!==t)){const e=this._bufferService.buffer.addMarker(t);i.lines.push(e),e.onDispose(()=>this._removeMarkerFromLink(i,e))}}getLinkData(e){return this._dataByLinkId.get(e)?.data}_getEntryIdKey(e){return`${e.id};;${e.uri}`}_removeMarkerFromLink(e,t){const i=e.lines.indexOf(t);-1!==i&&(e.lines.splice(i,1),0===e.lines.length&&(void 0!==e.data.id&&this._entriesWithId.delete(e.key),this._dataByLinkId.delete(e.id)))}};t.OscLinkService=n=r([s(0,o.IBufferService)],n)},8343:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.createDecorator=t.getServiceDependencies=t.serviceRegistry=void 0;const i="di$target",r="di$dependencies";t.serviceRegistry=new Map,t.getServiceDependencies=function(e){return e[r]||[]},t.createDecorator=function(e){if(t.serviceRegistry.has(e))return t.serviceRegistry.get(e);const s=function(e,t,o){if(3!==arguments.length)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");!function(e,t,s){t[i]===t?t[r].push({id:e,index:s}):(t[r]=[{id:e,index:s}],t[i]=t)}(s,e,o)};return s.toString=()=>e,t.serviceRegistry.set(e,s),s}},2585:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.IDecorationService=t.IUnicodeService=t.IOscLinkService=t.IOptionsService=t.ILogService=t.LogLevelEnum=t.IInstantiationService=t.ICharsetService=t.ICoreService=t.ICoreMouseService=t.IBufferService=void 0;const r=i(8343);var s;t.IBufferService=(0,r.createDecorator)("BufferService"),t.ICoreMouseService=(0,r.createDecorator)("CoreMouseService"),t.ICoreService=(0,r.createDecorator)("CoreService"),t.ICharsetService=(0,r.createDecorator)("CharsetService"),t.IInstantiationService=(0,r.createDecorator)("InstantiationService"),function(e){e[e.TRACE=0]="TRACE",e[e.DEBUG=1]="DEBUG",e[e.INFO=2]="INFO",e[e.WARN=3]="WARN",e[e.ERROR=4]="ERROR",e[e.OFF=5]="OFF"}(s||(t.LogLevelEnum=s={})),t.ILogService=(0,r.createDecorator)("LogService"),t.IOptionsService=(0,r.createDecorator)("OptionsService"),t.IOscLinkService=(0,r.createDecorator)("OscLinkService"),t.IUnicodeService=(0,r.createDecorator)("UnicodeService"),t.IDecorationService=(0,r.createDecorator)("DecorationService")},1480:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.UnicodeService=void 0;const r=i(8460),s=i(225);class o{static extractShouldJoin(e){return!!(1&e)}static extractWidth(e){return e>>1&3}static extractCharKind(e){return e>>3}static createPropertyValue(e,t,i=!1){return(16777215&e)<<3|(3&t)<<1|(i?1:0)}constructor(){this._providers=Object.create(null),this._active="",this._onChange=new r.EventEmitter,this.onChange=this._onChange.event;const e=new s.UnicodeV6;this.register(e),this._active=e.version,this._activeProvider=e}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(e){if(!this._providers[e])throw new Error(`unknown Unicode version "${e}"`);this._active=e,this._activeProvider=this._providers[e],this._onChange.fire(e)}register(e){this._providers[e.version]=e}wcwidth(e){return this._activeProvider.wcwidth(e)}getStringCellWidth(e){let t=0,i=0;const r=e.length;for(let s=0;s=r)return t+this.wcwidth(n);const i=e.charCodeAt(s);56320<=i&&i<=57343?n=1024*(n-55296)+i-56320+65536:t+=this.wcwidth(i)}const a=this.charProperties(n,i);let h=o.extractWidth(a);o.extractShouldJoin(a)&&(h-=o.extractWidth(i)),t+=h,i=a}return t}charProperties(e,t){return this._activeProvider.charProperties(e,t)}}t.UnicodeService=o}},t={};function i(r){var s=t[r];if(void 0!==s)return s.exports;var o=t[r]={exports:{}};return e[r].call(o.exports,o,o.exports,i),o.exports}var r={};return(()=>{var e=r;Object.defineProperty(e,"__esModule",{value:!0}),e.Terminal=void 0;const t=i(9042),s=i(3236),o=i(844),n=i(5741),a=i(8285),h=i(7975),l=i(7090),c=["cols","rows"];class u extends o.Disposable{constructor(e){super(),this._core=this.register(new s.Terminal(e)),this._addonManager=this.register(new n.AddonManager),this._publicOptions={...this._core.options};const t=e=>this._core.options[e],i=(e,t)=>{this._checkReadonlyOptions(e),this._core.options[e]=t};for(const e in this._core.options){const r={get:t.bind(this,e),set:i.bind(this,e)};Object.defineProperty(this._publicOptions,e,r)}}_checkReadonlyOptions(e){if(c.includes(e))throw new Error(`Option "${e}" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw new Error("You must set the allowProposedApi option to true to use proposed API")}get onBell(){return this._core.onBell}get onBinary(){return this._core.onBinary}get onCursorMove(){return this._core.onCursorMove}get onData(){return this._core.onData}get onKey(){return this._core.onKey}get onLineFeed(){return this._core.onLineFeed}get onRender(){return this._core.onRender}get onResize(){return this._core.onResize}get onScroll(){return this._core.onScroll}get onSelectionChange(){return this._core.onSelectionChange}get onTitleChange(){return this._core.onTitleChange}get onWriteParsed(){return this._core.onWriteParsed}get element(){return this._core.element}get parser(){return this._parser||(this._parser=new h.ParserApi(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new l.UnicodeApi(this._core)}get textarea(){return this._core.textarea}get rows(){return this._core.rows}get cols(){return this._core.cols}get buffer(){return this._buffer||(this._buffer=this.register(new a.BufferNamespaceApi(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){const e=this._core.coreService.decPrivateModes;let t="none";switch(this._core.coreMouseService.activeProtocol){case"X10":t="x10";break;case"VT200":t="vt200";break;case"DRAG":t="drag";break;case"ANY":t="any"}return{applicationCursorKeysMode:e.applicationCursorKeys,applicationKeypadMode:e.applicationKeypad,bracketedPasteMode:e.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:t,originMode:e.origin,reverseWraparoundMode:e.reverseWraparound,sendFocusMode:e.sendFocus,wraparoundMode:e.wraparound}}get options(){return this._publicOptions}set options(e){for(const t in e)this._publicOptions[t]=e[t]}blur(){this._core.blur()}focus(){this._core.focus()}input(e,t=!0){this._core.input(e,t)}resize(e,t){this._verifyIntegers(e,t),this._core.resize(e,t)}open(e){this._core.open(e)}attachCustomKeyEventHandler(e){this._core.attachCustomKeyEventHandler(e)}attachCustomWheelEventHandler(e){this._core.attachCustomWheelEventHandler(e)}registerLinkProvider(e){return this._core.registerLinkProvider(e)}registerCharacterJoiner(e){return this._checkProposedApi(),this._core.registerCharacterJoiner(e)}deregisterCharacterJoiner(e){this._checkProposedApi(),this._core.deregisterCharacterJoiner(e)}registerMarker(e=0){return this._verifyIntegers(e),this._core.registerMarker(e)}registerDecoration(e){return this._checkProposedApi(),this._verifyPositiveIntegers(e.x??0,e.width??0,e.height??0),this._core.registerDecoration(e)}hasSelection(){return this._core.hasSelection()}select(e,t,i){this._verifyIntegers(e,t,i),this._core.select(e,t,i)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(e,t){this._verifyIntegers(e,t),this._core.selectLines(e,t)}dispose(){super.dispose()}scrollLines(e){this._verifyIntegers(e),this._core.scrollLines(e)}scrollPages(e){this._verifyIntegers(e),this._core.scrollPages(e)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(e){this._verifyIntegers(e),this._core.scrollToLine(e)}clear(){this._core.clear()}write(e,t){this._core.write(e,t)}writeln(e,t){this._core.write(e),this._core.write("\r\n",t)}paste(e){this._core.paste(e)}refresh(e,t){this._verifyIntegers(e,t),this._core.refresh(e,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(e){this._addonManager.loadAddon(this,e)}static get strings(){return t}_verifyIntegers(...e){for(const t of e)if(t===1/0||isNaN(t)||t%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...e){for(const t of e)if(t&&(t===1/0||isNaN(t)||t%1!=0||t<0))throw new Error("This API only accepts positive integers")}}e.Terminal=u})(),r})(),e.exports=t()},279:e=>{"use strict";if(void 0!==t)throw new Error('Global "lib" object already exists.');var t={runtimeDependencies_:{},initCallbacks_:[],rtdep:function(e){var i;try{throw new Error}catch(e){var r=e.stack.split("\n");i=r.length>=3?r[2].replace(/^\s*at\s+/,""):r[1].replace(/^\s*global code@/,"")}for(var s=0;st.length&&(t=t.repeat(e/t.length+1)),t.slice(0,e)+String(this))}),String.prototype.padEnd||(String.prototype.padEnd=function(e,t){return(e-=this.length)<=0?String(this):(void 0===t&&(t=" "),e>t.length&&(t=t.repeat(e/t.length+1)),String(this)+t.slice(0,e))}),t.colors={},t.colors.re_={hex16:/#([a-f0-9])([a-f0-9])([a-f0-9])/i,hex24:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/i,rgb:new RegExp("^/s*rgb/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*/)/s*$".replace(/\//g,"\\"),"i"),rgba:new RegExp("^/s*rgba/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*(?:,/s*(/d+(?:/./d+)?)/s*)/)/s*$".replace(/\//g,"\\"),"i"),rgbx:new RegExp("^/s*rgba?/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*(?:,/s*(/d+(?:/./d+)?)/s*)?/)/s*$".replace(/\//g,"\\"),"i"),x11rgb:/^\s*rgb:([a-f0-9]{1,4})\/([a-f0-9]{1,4})\/([a-f0-9]{1,4})\s*$/i,name:/[a-z][a-z0-9\s]+/},t.colors.rgbToX11=function(e){function i(e){return e=(257*Math.min(e,255)).toString(16),t.f.zpad(e,4)}var r=e.match(t.colors.re_.rgbx);return r?"rgb:"+i(r[1])+"/"+i(r[2])+"/"+i(r[3]):null},t.colors.x11HexToCSS=function(e){if(!e.startsWith("#"))return null;if(e=e.substr(1),-1==[3,6,9,12].indexOf(e.length))return null;if(e.match(/[^a-f0-9]/i))return null;var i=e.length/3,r=e.substr(0,i),s=e.substr(i,i),o=e.substr(i+i,i);return t.colors.arrayToRGBA([r,s,o].map(function(e){return e=parseInt(e,16),2==i?e:1==i?e<<4:e>>4*(i-2)}))},t.colors.x11ToCSS=function(e){var i=e.match(t.colors.re_.x11rgb);return i?(i.splice(0,1),t.colors.arrayToRGBA(i.map(function(e){return 1==e.length?parseInt(e+e,16):2==e.length?parseInt(e,16):(3==e.length&&(e+=e.substr(2)),Math.round(parseInt(e,16)/257))}))):e.startsWith("#")?t.colors.x11HexToCSS(e):t.colors.nameToRGB(e)},t.colors.hexToRGB=function(e){var i=t.colors.re_.hex16,r=t.colors.re_.hex24;function s(e){4==e.length&&(e=e.replace(i,function(e,t,i,r){return"#"+t+t+i+i+r+r}));var t=e.match(r);return t?"rgb("+parseInt(t[1],16)+", "+parseInt(t[2],16)+", "+parseInt(t[3],16)+")":null}if(e instanceof Array)for(var o=0;o3?e[3]:1;return"rgba("+e[0]+", "+e[1]+", "+e[2]+", "+t+")"},t.colors.setAlpha=function(e,i){var r=t.colors.crackRGB(e);return r[3]=i,t.colors.arrayToRGBA(r)},t.colors.mix=function(e,i,r){for(var s=t.colors.crackRGB(e),o=t.colors.crackRGB(i),n=0;n<4;++n){var a=o[n]-s[n];s[n]=Math.round(parseInt(s[n])+a*r)}return t.colors.arrayToRGBA(s)},t.colors.crackRGB=function(e){var i;if(e.startsWith("rgba")){if(i=e.match(t.colors.re_.rgba))return i.shift(),i}else if(i=e.match(t.colors.re_.rgb))return i.shift(),i.push(1),i;return console.error("Couldn't crack: "+e),null},t.colors.nameToRGB=function(e){return e in t.colors.colorNames||(e=e.toLowerCase())in t.colors.colorNames||(e=e.replace(/\s+/g,""))in t.colors.colorNames?t.colors.colorNames[e]:null},t.colors.stockColorPalette=t.colors.hexToRGB(["#000000","#CC0000","#4E9A06","#C4A000","#3465A4","#75507B","#06989A","#D3D7CF","#555753","#EF2929","#00BA13","#FCE94F","#729FCF","#F200CB","#00B5BD","#EEEEEC","#000000","#00005F","#000087","#0000AF","#0000D7","#0000FF","#005F00","#005F5F","#005F87","#005FAF","#005FD7","#005FFF","#008700","#00875F","#008787","#0087AF","#0087D7","#0087FF","#00AF00","#00AF5F","#00AF87","#00AFAF","#00AFD7","#00AFFF","#00D700","#00D75F","#00D787","#00D7AF","#00D7D7","#00D7FF","#00FF00","#00FF5F","#00FF87","#00FFAF","#00FFD7","#00FFFF","#5F0000","#5F005F","#5F0087","#5F00AF","#5F00D7","#5F00FF","#5F5F00","#5F5F5F","#5F5F87","#5F5FAF","#5F5FD7","#5F5FFF","#5F8700","#5F875F","#5F8787","#5F87AF","#5F87D7","#5F87FF","#5FAF00","#5FAF5F","#5FAF87","#5FAFAF","#5FAFD7","#5FAFFF","#5FD700","#5FD75F","#5FD787","#5FD7AF","#5FD7D7","#5FD7FF","#5FFF00","#5FFF5F","#5FFF87","#5FFFAF","#5FFFD7","#5FFFFF","#870000","#87005F","#870087","#8700AF","#8700D7","#8700FF","#875F00","#875F5F","#875F87","#875FAF","#875FD7","#875FFF","#878700","#87875F","#878787","#8787AF","#8787D7","#8787FF","#87AF00","#87AF5F","#87AF87","#87AFAF","#87AFD7","#87AFFF","#87D700","#87D75F","#87D787","#87D7AF","#87D7D7","#87D7FF","#87FF00","#87FF5F","#87FF87","#87FFAF","#87FFD7","#87FFFF","#AF0000","#AF005F","#AF0087","#AF00AF","#AF00D7","#AF00FF","#AF5F00","#AF5F5F","#AF5F87","#AF5FAF","#AF5FD7","#AF5FFF","#AF8700","#AF875F","#AF8787","#AF87AF","#AF87D7","#AF87FF","#AFAF00","#AFAF5F","#AFAF87","#AFAFAF","#AFAFD7","#AFAFFF","#AFD700","#AFD75F","#AFD787","#AFD7AF","#AFD7D7","#AFD7FF","#AFFF00","#AFFF5F","#AFFF87","#AFFFAF","#AFFFD7","#AFFFFF","#D70000","#D7005F","#D70087","#D700AF","#D700D7","#D700FF","#D75F00","#D75F5F","#D75F87","#D75FAF","#D75FD7","#D75FFF","#D78700","#D7875F","#D78787","#D787AF","#D787D7","#D787FF","#D7AF00","#D7AF5F","#D7AF87","#D7AFAF","#D7AFD7","#D7AFFF","#D7D700","#D7D75F","#D7D787","#D7D7AF","#D7D7D7","#D7D7FF","#D7FF00","#D7FF5F","#D7FF87","#D7FFAF","#D7FFD7","#D7FFFF","#FF0000","#FF005F","#FF0087","#FF00AF","#FF00D7","#FF00FF","#FF5F00","#FF5F5F","#FF5F87","#FF5FAF","#FF5FD7","#FF5FFF","#FF8700","#FF875F","#FF8787","#FF87AF","#FF87D7","#FF87FF","#FFAF00","#FFAF5F","#FFAF87","#FFAFAF","#FFAFD7","#FFAFFF","#FFD700","#FFD75F","#FFD787","#FFD7AF","#FFD7D7","#FFD7FF","#FFFF00","#FFFF5F","#FFFF87","#FFFFAF","#FFFFD7","#FFFFFF","#080808","#121212","#1C1C1C","#262626","#303030","#3A3A3A","#444444","#4E4E4E","#585858","#626262","#6C6C6C","#767676","#808080","#8A8A8A","#949494","#9E9E9E","#A8A8A8","#B2B2B2","#BCBCBC","#C6C6C6","#D0D0D0","#DADADA","#E4E4E4","#EEEEEE"]),t.colors.colorPalette=t.colors.stockColorPalette,t.colors.colorNames={aliceblue:"rgb(240, 248, 255)",antiquewhite:"rgb(250, 235, 215)",antiquewhite1:"rgb(255, 239, 219)",antiquewhite2:"rgb(238, 223, 204)",antiquewhite3:"rgb(205, 192, 176)",antiquewhite4:"rgb(139, 131, 120)",aquamarine:"rgb(127, 255, 212)",aquamarine1:"rgb(127, 255, 212)",aquamarine2:"rgb(118, 238, 198)",aquamarine3:"rgb(102, 205, 170)",aquamarine4:"rgb(69, 139, 116)",azure:"rgb(240, 255, 255)",azure1:"rgb(240, 255, 255)",azure2:"rgb(224, 238, 238)",azure3:"rgb(193, 205, 205)",azure4:"rgb(131, 139, 139)",beige:"rgb(245, 245, 220)",bisque:"rgb(255, 228, 196)",bisque1:"rgb(255, 228, 196)",bisque2:"rgb(238, 213, 183)",bisque3:"rgb(205, 183, 158)",bisque4:"rgb(139, 125, 107)",black:"rgb(0, 0, 0)",blanchedalmond:"rgb(255, 235, 205)",blue:"rgb(0, 0, 255)",blue1:"rgb(0, 0, 255)",blue2:"rgb(0, 0, 238)",blue3:"rgb(0, 0, 205)",blue4:"rgb(0, 0, 139)",blueviolet:"rgb(138, 43, 226)",brown:"rgb(165, 42, 42)",brown1:"rgb(255, 64, 64)",brown2:"rgb(238, 59, 59)",brown3:"rgb(205, 51, 51)",brown4:"rgb(139, 35, 35)",burlywood:"rgb(222, 184, 135)",burlywood1:"rgb(255, 211, 155)",burlywood2:"rgb(238, 197, 145)",burlywood3:"rgb(205, 170, 125)",burlywood4:"rgb(139, 115, 85)",cadetblue:"rgb(95, 158, 160)",cadetblue1:"rgb(152, 245, 255)",cadetblue2:"rgb(142, 229, 238)",cadetblue3:"rgb(122, 197, 205)",cadetblue4:"rgb(83, 134, 139)",chartreuse:"rgb(127, 255, 0)",chartreuse1:"rgb(127, 255, 0)",chartreuse2:"rgb(118, 238, 0)",chartreuse3:"rgb(102, 205, 0)",chartreuse4:"rgb(69, 139, 0)",chocolate:"rgb(210, 105, 30)",chocolate1:"rgb(255, 127, 36)",chocolate2:"rgb(238, 118, 33)",chocolate3:"rgb(205, 102, 29)",chocolate4:"rgb(139, 69, 19)",coral:"rgb(255, 127, 80)",coral1:"rgb(255, 114, 86)",coral2:"rgb(238, 106, 80)",coral3:"rgb(205, 91, 69)",coral4:"rgb(139, 62, 47)",cornflowerblue:"rgb(100, 149, 237)",cornsilk:"rgb(255, 248, 220)",cornsilk1:"rgb(255, 248, 220)",cornsilk2:"rgb(238, 232, 205)",cornsilk3:"rgb(205, 200, 177)",cornsilk4:"rgb(139, 136, 120)",cyan:"rgb(0, 255, 255)",cyan1:"rgb(0, 255, 255)",cyan2:"rgb(0, 238, 238)",cyan3:"rgb(0, 205, 205)",cyan4:"rgb(0, 139, 139)",darkblue:"rgb(0, 0, 139)",darkcyan:"rgb(0, 139, 139)",darkgoldenrod:"rgb(184, 134, 11)",darkgoldenrod1:"rgb(255, 185, 15)",darkgoldenrod2:"rgb(238, 173, 14)",darkgoldenrod3:"rgb(205, 149, 12)",darkgoldenrod4:"rgb(139, 101, 8)",darkgray:"rgb(169, 169, 169)",darkgreen:"rgb(0, 100, 0)",darkgrey:"rgb(169, 169, 169)",darkkhaki:"rgb(189, 183, 107)",darkmagenta:"rgb(139, 0, 139)",darkolivegreen:"rgb(85, 107, 47)",darkolivegreen1:"rgb(202, 255, 112)",darkolivegreen2:"rgb(188, 238, 104)",darkolivegreen3:"rgb(162, 205, 90)",darkolivegreen4:"rgb(110, 139, 61)",darkorange:"rgb(255, 140, 0)",darkorange1:"rgb(255, 127, 0)",darkorange2:"rgb(238, 118, 0)",darkorange3:"rgb(205, 102, 0)",darkorange4:"rgb(139, 69, 0)",darkorchid:"rgb(153, 50, 204)",darkorchid1:"rgb(191, 62, 255)",darkorchid2:"rgb(178, 58, 238)",darkorchid3:"rgb(154, 50, 205)",darkorchid4:"rgb(104, 34, 139)",darkred:"rgb(139, 0, 0)",darksalmon:"rgb(233, 150, 122)",darkseagreen:"rgb(143, 188, 143)",darkseagreen1:"rgb(193, 255, 193)",darkseagreen2:"rgb(180, 238, 180)",darkseagreen3:"rgb(155, 205, 155)",darkseagreen4:"rgb(105, 139, 105)",darkslateblue:"rgb(72, 61, 139)",darkslategray:"rgb(47, 79, 79)",darkslategray1:"rgb(151, 255, 255)",darkslategray2:"rgb(141, 238, 238)",darkslategray3:"rgb(121, 205, 205)",darkslategray4:"rgb(82, 139, 139)",darkslategrey:"rgb(47, 79, 79)",darkturquoise:"rgb(0, 206, 209)",darkviolet:"rgb(148, 0, 211)",debianred:"rgb(215, 7, 81)",deeppink:"rgb(255, 20, 147)",deeppink1:"rgb(255, 20, 147)",deeppink2:"rgb(238, 18, 137)",deeppink3:"rgb(205, 16, 118)",deeppink4:"rgb(139, 10, 80)",deepskyblue:"rgb(0, 191, 255)",deepskyblue1:"rgb(0, 191, 255)",deepskyblue2:"rgb(0, 178, 238)",deepskyblue3:"rgb(0, 154, 205)",deepskyblue4:"rgb(0, 104, 139)",dimgray:"rgb(105, 105, 105)",dimgrey:"rgb(105, 105, 105)",dodgerblue:"rgb(30, 144, 255)",dodgerblue1:"rgb(30, 144, 255)",dodgerblue2:"rgb(28, 134, 238)",dodgerblue3:"rgb(24, 116, 205)",dodgerblue4:"rgb(16, 78, 139)",firebrick:"rgb(178, 34, 34)",firebrick1:"rgb(255, 48, 48)",firebrick2:"rgb(238, 44, 44)",firebrick3:"rgb(205, 38, 38)",firebrick4:"rgb(139, 26, 26)",floralwhite:"rgb(255, 250, 240)",forestgreen:"rgb(34, 139, 34)",gainsboro:"rgb(220, 220, 220)",ghostwhite:"rgb(248, 248, 255)",gold:"rgb(255, 215, 0)",gold1:"rgb(255, 215, 0)",gold2:"rgb(238, 201, 0)",gold3:"rgb(205, 173, 0)",gold4:"rgb(139, 117, 0)",goldenrod:"rgb(218, 165, 32)",goldenrod1:"rgb(255, 193, 37)",goldenrod2:"rgb(238, 180, 34)",goldenrod3:"rgb(205, 155, 29)",goldenrod4:"rgb(139, 105, 20)",gray:"rgb(190, 190, 190)",gray0:"rgb(0, 0, 0)",gray1:"rgb(3, 3, 3)",gray10:"rgb(26, 26, 26)",gray100:"rgb(255, 255, 255)",gray11:"rgb(28, 28, 28)",gray12:"rgb(31, 31, 31)",gray13:"rgb(33, 33, 33)",gray14:"rgb(36, 36, 36)",gray15:"rgb(38, 38, 38)",gray16:"rgb(41, 41, 41)",gray17:"rgb(43, 43, 43)",gray18:"rgb(46, 46, 46)",gray19:"rgb(48, 48, 48)",gray2:"rgb(5, 5, 5)",gray20:"rgb(51, 51, 51)",gray21:"rgb(54, 54, 54)",gray22:"rgb(56, 56, 56)",gray23:"rgb(59, 59, 59)",gray24:"rgb(61, 61, 61)",gray25:"rgb(64, 64, 64)",gray26:"rgb(66, 66, 66)",gray27:"rgb(69, 69, 69)",gray28:"rgb(71, 71, 71)",gray29:"rgb(74, 74, 74)",gray3:"rgb(8, 8, 8)",gray30:"rgb(77, 77, 77)",gray31:"rgb(79, 79, 79)",gray32:"rgb(82, 82, 82)",gray33:"rgb(84, 84, 84)",gray34:"rgb(87, 87, 87)",gray35:"rgb(89, 89, 89)",gray36:"rgb(92, 92, 92)",gray37:"rgb(94, 94, 94)",gray38:"rgb(97, 97, 97)",gray39:"rgb(99, 99, 99)",gray4:"rgb(10, 10, 10)",gray40:"rgb(102, 102, 102)",gray41:"rgb(105, 105, 105)",gray42:"rgb(107, 107, 107)",gray43:"rgb(110, 110, 110)",gray44:"rgb(112, 112, 112)",gray45:"rgb(115, 115, 115)",gray46:"rgb(117, 117, 117)",gray47:"rgb(120, 120, 120)",gray48:"rgb(122, 122, 122)",gray49:"rgb(125, 125, 125)",gray5:"rgb(13, 13, 13)",gray50:"rgb(127, 127, 127)",gray51:"rgb(130, 130, 130)",gray52:"rgb(133, 133, 133)",gray53:"rgb(135, 135, 135)",gray54:"rgb(138, 138, 138)",gray55:"rgb(140, 140, 140)",gray56:"rgb(143, 143, 143)",gray57:"rgb(145, 145, 145)",gray58:"rgb(148, 148, 148)",gray59:"rgb(150, 150, 150)",gray6:"rgb(15, 15, 15)",gray60:"rgb(153, 153, 153)",gray61:"rgb(156, 156, 156)",gray62:"rgb(158, 158, 158)",gray63:"rgb(161, 161, 161)",gray64:"rgb(163, 163, 163)",gray65:"rgb(166, 166, 166)",gray66:"rgb(168, 168, 168)",gray67:"rgb(171, 171, 171)",gray68:"rgb(173, 173, 173)",gray69:"rgb(176, 176, 176)",gray7:"rgb(18, 18, 18)",gray70:"rgb(179, 179, 179)",gray71:"rgb(181, 181, 181)",gray72:"rgb(184, 184, 184)",gray73:"rgb(186, 186, 186)",gray74:"rgb(189, 189, 189)",gray75:"rgb(191, 191, 191)",gray76:"rgb(194, 194, 194)",gray77:"rgb(196, 196, 196)",gray78:"rgb(199, 199, 199)",gray79:"rgb(201, 201, 201)",gray8:"rgb(20, 20, 20)",gray80:"rgb(204, 204, 204)",gray81:"rgb(207, 207, 207)",gray82:"rgb(209, 209, 209)",gray83:"rgb(212, 212, 212)",gray84:"rgb(214, 214, 214)",gray85:"rgb(217, 217, 217)",gray86:"rgb(219, 219, 219)",gray87:"rgb(222, 222, 222)",gray88:"rgb(224, 224, 224)",gray89:"rgb(227, 227, 227)",gray9:"rgb(23, 23, 23)",gray90:"rgb(229, 229, 229)",gray91:"rgb(232, 232, 232)",gray92:"rgb(235, 235, 235)",gray93:"rgb(237, 237, 237)",gray94:"rgb(240, 240, 240)",gray95:"rgb(242, 242, 242)",gray96:"rgb(245, 245, 245)",gray97:"rgb(247, 247, 247)",gray98:"rgb(250, 250, 250)",gray99:"rgb(252, 252, 252)",green:"rgb(0, 255, 0)",green1:"rgb(0, 255, 0)",green2:"rgb(0, 238, 0)",green3:"rgb(0, 205, 0)",green4:"rgb(0, 139, 0)",greenyellow:"rgb(173, 255, 47)",grey:"rgb(190, 190, 190)",grey0:"rgb(0, 0, 0)",grey1:"rgb(3, 3, 3)",grey10:"rgb(26, 26, 26)",grey100:"rgb(255, 255, 255)",grey11:"rgb(28, 28, 28)",grey12:"rgb(31, 31, 31)",grey13:"rgb(33, 33, 33)",grey14:"rgb(36, 36, 36)",grey15:"rgb(38, 38, 38)",grey16:"rgb(41, 41, 41)",grey17:"rgb(43, 43, 43)",grey18:"rgb(46, 46, 46)",grey19:"rgb(48, 48, 48)",grey2:"rgb(5, 5, 5)",grey20:"rgb(51, 51, 51)",grey21:"rgb(54, 54, 54)",grey22:"rgb(56, 56, 56)",grey23:"rgb(59, 59, 59)",grey24:"rgb(61, 61, 61)",grey25:"rgb(64, 64, 64)",grey26:"rgb(66, 66, 66)",grey27:"rgb(69, 69, 69)",grey28:"rgb(71, 71, 71)",grey29:"rgb(74, 74, 74)",grey3:"rgb(8, 8, 8)",grey30:"rgb(77, 77, 77)",grey31:"rgb(79, 79, 79)",grey32:"rgb(82, 82, 82)",grey33:"rgb(84, 84, 84)",grey34:"rgb(87, 87, 87)",grey35:"rgb(89, 89, 89)",grey36:"rgb(92, 92, 92)",grey37:"rgb(94, 94, 94)",grey38:"rgb(97, 97, 97)",grey39:"rgb(99, 99, 99)",grey4:"rgb(10, 10, 10)",grey40:"rgb(102, 102, 102)",grey41:"rgb(105, 105, 105)",grey42:"rgb(107, 107, 107)",grey43:"rgb(110, 110, 110)",grey44:"rgb(112, 112, 112)",grey45:"rgb(115, 115, 115)",grey46:"rgb(117, 117, 117)",grey47:"rgb(120, 120, 120)",grey48:"rgb(122, 122, 122)",grey49:"rgb(125, 125, 125)",grey5:"rgb(13, 13, 13)",grey50:"rgb(127, 127, 127)",grey51:"rgb(130, 130, 130)",grey52:"rgb(133, 133, 133)",grey53:"rgb(135, 135, 135)",grey54:"rgb(138, 138, 138)",grey55:"rgb(140, 140, 140)",grey56:"rgb(143, 143, 143)",grey57:"rgb(145, 145, 145)",grey58:"rgb(148, 148, 148)",grey59:"rgb(150, 150, 150)",grey6:"rgb(15, 15, 15)",grey60:"rgb(153, 153, 153)",grey61:"rgb(156, 156, 156)",grey62:"rgb(158, 158, 158)",grey63:"rgb(161, 161, 161)",grey64:"rgb(163, 163, 163)",grey65:"rgb(166, 166, 166)",grey66:"rgb(168, 168, 168)",grey67:"rgb(171, 171, 171)",grey68:"rgb(173, 173, 173)",grey69:"rgb(176, 176, 176)",grey7:"rgb(18, 18, 18)",grey70:"rgb(179, 179, 179)",grey71:"rgb(181, 181, 181)",grey72:"rgb(184, 184, 184)",grey73:"rgb(186, 186, 186)",grey74:"rgb(189, 189, 189)",grey75:"rgb(191, 191, 191)",grey76:"rgb(194, 194, 194)",grey77:"rgb(196, 196, 196)",grey78:"rgb(199, 199, 199)",grey79:"rgb(201, 201, 201)",grey8:"rgb(20, 20, 20)",grey80:"rgb(204, 204, 204)",grey81:"rgb(207, 207, 207)",grey82:"rgb(209, 209, 209)",grey83:"rgb(212, 212, 212)",grey84:"rgb(214, 214, 214)",grey85:"rgb(217, 217, 217)",grey86:"rgb(219, 219, 219)",grey87:"rgb(222, 222, 222)",grey88:"rgb(224, 224, 224)",grey89:"rgb(227, 227, 227)",grey9:"rgb(23, 23, 23)",grey90:"rgb(229, 229, 229)",grey91:"rgb(232, 232, 232)",grey92:"rgb(235, 235, 235)",grey93:"rgb(237, 237, 237)",grey94:"rgb(240, 240, 240)",grey95:"rgb(242, 242, 242)",grey96:"rgb(245, 245, 245)",grey97:"rgb(247, 247, 247)",grey98:"rgb(250, 250, 250)",grey99:"rgb(252, 252, 252)",honeydew:"rgb(240, 255, 240)",honeydew1:"rgb(240, 255, 240)",honeydew2:"rgb(224, 238, 224)",honeydew3:"rgb(193, 205, 193)",honeydew4:"rgb(131, 139, 131)",hotpink:"rgb(255, 105, 180)",hotpink1:"rgb(255, 110, 180)",hotpink2:"rgb(238, 106, 167)",hotpink3:"rgb(205, 96, 144)",hotpink4:"rgb(139, 58, 98)",indianred:"rgb(205, 92, 92)",indianred1:"rgb(255, 106, 106)",indianred2:"rgb(238, 99, 99)",indianred3:"rgb(205, 85, 85)",indianred4:"rgb(139, 58, 58)",ivory:"rgb(255, 255, 240)",ivory1:"rgb(255, 255, 240)",ivory2:"rgb(238, 238, 224)",ivory3:"rgb(205, 205, 193)",ivory4:"rgb(139, 139, 131)",khaki:"rgb(240, 230, 140)",khaki1:"rgb(255, 246, 143)",khaki2:"rgb(238, 230, 133)",khaki3:"rgb(205, 198, 115)",khaki4:"rgb(139, 134, 78)",lavender:"rgb(230, 230, 250)",lavenderblush:"rgb(255, 240, 245)",lavenderblush1:"rgb(255, 240, 245)",lavenderblush2:"rgb(238, 224, 229)",lavenderblush3:"rgb(205, 193, 197)",lavenderblush4:"rgb(139, 131, 134)",lawngreen:"rgb(124, 252, 0)",lemonchiffon:"rgb(255, 250, 205)",lemonchiffon1:"rgb(255, 250, 205)",lemonchiffon2:"rgb(238, 233, 191)",lemonchiffon3:"rgb(205, 201, 165)",lemonchiffon4:"rgb(139, 137, 112)",lightblue:"rgb(173, 216, 230)",lightblue1:"rgb(191, 239, 255)",lightblue2:"rgb(178, 223, 238)",lightblue3:"rgb(154, 192, 205)",lightblue4:"rgb(104, 131, 139)",lightcoral:"rgb(240, 128, 128)",lightcyan:"rgb(224, 255, 255)",lightcyan1:"rgb(224, 255, 255)",lightcyan2:"rgb(209, 238, 238)",lightcyan3:"rgb(180, 205, 205)",lightcyan4:"rgb(122, 139, 139)",lightgoldenrod:"rgb(238, 221, 130)",lightgoldenrod1:"rgb(255, 236, 139)",lightgoldenrod2:"rgb(238, 220, 130)",lightgoldenrod3:"rgb(205, 190, 112)",lightgoldenrod4:"rgb(139, 129, 76)",lightgoldenrodyellow:"rgb(250, 250, 210)",lightgray:"rgb(211, 211, 211)",lightgreen:"rgb(144, 238, 144)",lightgrey:"rgb(211, 211, 211)",lightpink:"rgb(255, 182, 193)",lightpink1:"rgb(255, 174, 185)",lightpink2:"rgb(238, 162, 173)",lightpink3:"rgb(205, 140, 149)",lightpink4:"rgb(139, 95, 101)",lightsalmon:"rgb(255, 160, 122)",lightsalmon1:"rgb(255, 160, 122)",lightsalmon2:"rgb(238, 149, 114)",lightsalmon3:"rgb(205, 129, 98)",lightsalmon4:"rgb(139, 87, 66)",lightseagreen:"rgb(32, 178, 170)",lightskyblue:"rgb(135, 206, 250)",lightskyblue1:"rgb(176, 226, 255)",lightskyblue2:"rgb(164, 211, 238)",lightskyblue3:"rgb(141, 182, 205)",lightskyblue4:"rgb(96, 123, 139)",lightslateblue:"rgb(132, 112, 255)",lightslategray:"rgb(119, 136, 153)",lightslategrey:"rgb(119, 136, 153)",lightsteelblue:"rgb(176, 196, 222)",lightsteelblue1:"rgb(202, 225, 255)",lightsteelblue2:"rgb(188, 210, 238)",lightsteelblue3:"rgb(162, 181, 205)",lightsteelblue4:"rgb(110, 123, 139)",lightyellow:"rgb(255, 255, 224)",lightyellow1:"rgb(255, 255, 224)",lightyellow2:"rgb(238, 238, 209)",lightyellow3:"rgb(205, 205, 180)",lightyellow4:"rgb(139, 139, 122)",limegreen:"rgb(50, 205, 50)",linen:"rgb(250, 240, 230)",magenta:"rgb(255, 0, 255)",magenta1:"rgb(255, 0, 255)",magenta2:"rgb(238, 0, 238)",magenta3:"rgb(205, 0, 205)",magenta4:"rgb(139, 0, 139)",maroon:"rgb(176, 48, 96)",maroon1:"rgb(255, 52, 179)",maroon2:"rgb(238, 48, 167)",maroon3:"rgb(205, 41, 144)",maroon4:"rgb(139, 28, 98)",mediumaquamarine:"rgb(102, 205, 170)",mediumblue:"rgb(0, 0, 205)",mediumorchid:"rgb(186, 85, 211)",mediumorchid1:"rgb(224, 102, 255)",mediumorchid2:"rgb(209, 95, 238)",mediumorchid3:"rgb(180, 82, 205)",mediumorchid4:"rgb(122, 55, 139)",mediumpurple:"rgb(147, 112, 219)",mediumpurple1:"rgb(171, 130, 255)",mediumpurple2:"rgb(159, 121, 238)",mediumpurple3:"rgb(137, 104, 205)",mediumpurple4:"rgb(93, 71, 139)",mediumseagreen:"rgb(60, 179, 113)",mediumslateblue:"rgb(123, 104, 238)",mediumspringgreen:"rgb(0, 250, 154)",mediumturquoise:"rgb(72, 209, 204)",mediumvioletred:"rgb(199, 21, 133)",midnightblue:"rgb(25, 25, 112)",mintcream:"rgb(245, 255, 250)",mistyrose:"rgb(255, 228, 225)",mistyrose1:"rgb(255, 228, 225)",mistyrose2:"rgb(238, 213, 210)",mistyrose3:"rgb(205, 183, 181)",mistyrose4:"rgb(139, 125, 123)",moccasin:"rgb(255, 228, 181)",navajowhite:"rgb(255, 222, 173)",navajowhite1:"rgb(255, 222, 173)",navajowhite2:"rgb(238, 207, 161)",navajowhite3:"rgb(205, 179, 139)",navajowhite4:"rgb(139, 121, 94)",navy:"rgb(0, 0, 128)",navyblue:"rgb(0, 0, 128)",oldlace:"rgb(253, 245, 230)",olivedrab:"rgb(107, 142, 35)",olivedrab1:"rgb(192, 255, 62)",olivedrab2:"rgb(179, 238, 58)",olivedrab3:"rgb(154, 205, 50)",olivedrab4:"rgb(105, 139, 34)",orange:"rgb(255, 165, 0)",orange1:"rgb(255, 165, 0)",orange2:"rgb(238, 154, 0)",orange3:"rgb(205, 133, 0)",orange4:"rgb(139, 90, 0)",orangered:"rgb(255, 69, 0)",orangered1:"rgb(255, 69, 0)",orangered2:"rgb(238, 64, 0)",orangered3:"rgb(205, 55, 0)",orangered4:"rgb(139, 37, 0)",orchid:"rgb(218, 112, 214)",orchid1:"rgb(255, 131, 250)",orchid2:"rgb(238, 122, 233)",orchid3:"rgb(205, 105, 201)",orchid4:"rgb(139, 71, 137)",palegoldenrod:"rgb(238, 232, 170)",palegreen:"rgb(152, 251, 152)",palegreen1:"rgb(154, 255, 154)",palegreen2:"rgb(144, 238, 144)",palegreen3:"rgb(124, 205, 124)",palegreen4:"rgb(84, 139, 84)",paleturquoise:"rgb(175, 238, 238)",paleturquoise1:"rgb(187, 255, 255)",paleturquoise2:"rgb(174, 238, 238)",paleturquoise3:"rgb(150, 205, 205)",paleturquoise4:"rgb(102, 139, 139)",palevioletred:"rgb(219, 112, 147)",palevioletred1:"rgb(255, 130, 171)",palevioletred2:"rgb(238, 121, 159)",palevioletred3:"rgb(205, 104, 137)",palevioletred4:"rgb(139, 71, 93)",papayawhip:"rgb(255, 239, 213)",peachpuff:"rgb(255, 218, 185)",peachpuff1:"rgb(255, 218, 185)",peachpuff2:"rgb(238, 203, 173)",peachpuff3:"rgb(205, 175, 149)",peachpuff4:"rgb(139, 119, 101)",peru:"rgb(205, 133, 63)",pink:"rgb(255, 192, 203)",pink1:"rgb(255, 181, 197)",pink2:"rgb(238, 169, 184)",pink3:"rgb(205, 145, 158)",pink4:"rgb(139, 99, 108)",plum:"rgb(221, 160, 221)",plum1:"rgb(255, 187, 255)",plum2:"rgb(238, 174, 238)",plum3:"rgb(205, 150, 205)",plum4:"rgb(139, 102, 139)",powderblue:"rgb(176, 224, 230)",purple:"rgb(160, 32, 240)",purple1:"rgb(155, 48, 255)",purple2:"rgb(145, 44, 238)",purple3:"rgb(125, 38, 205)",purple4:"rgb(85, 26, 139)",red:"rgb(255, 0, 0)",red1:"rgb(255, 0, 0)",red2:"rgb(238, 0, 0)",red3:"rgb(205, 0, 0)",red4:"rgb(139, 0, 0)",rosybrown:"rgb(188, 143, 143)",rosybrown1:"rgb(255, 193, 193)",rosybrown2:"rgb(238, 180, 180)",rosybrown3:"rgb(205, 155, 155)",rosybrown4:"rgb(139, 105, 105)",royalblue:"rgb(65, 105, 225)",royalblue1:"rgb(72, 118, 255)",royalblue2:"rgb(67, 110, 238)",royalblue3:"rgb(58, 95, 205)",royalblue4:"rgb(39, 64, 139)",saddlebrown:"rgb(139, 69, 19)",salmon:"rgb(250, 128, 114)",salmon1:"rgb(255, 140, 105)",salmon2:"rgb(238, 130, 98)",salmon3:"rgb(205, 112, 84)",salmon4:"rgb(139, 76, 57)",sandybrown:"rgb(244, 164, 96)",seagreen:"rgb(46, 139, 87)",seagreen1:"rgb(84, 255, 159)",seagreen2:"rgb(78, 238, 148)",seagreen3:"rgb(67, 205, 128)",seagreen4:"rgb(46, 139, 87)",seashell:"rgb(255, 245, 238)",seashell1:"rgb(255, 245, 238)",seashell2:"rgb(238, 229, 222)",seashell3:"rgb(205, 197, 191)",seashell4:"rgb(139, 134, 130)",sienna:"rgb(160, 82, 45)",sienna1:"rgb(255, 130, 71)",sienna2:"rgb(238, 121, 66)",sienna3:"rgb(205, 104, 57)",sienna4:"rgb(139, 71, 38)",skyblue:"rgb(135, 206, 235)",skyblue1:"rgb(135, 206, 255)",skyblue2:"rgb(126, 192, 238)",skyblue3:"rgb(108, 166, 205)",skyblue4:"rgb(74, 112, 139)",slateblue:"rgb(106, 90, 205)",slateblue1:"rgb(131, 111, 255)",slateblue2:"rgb(122, 103, 238)",slateblue3:"rgb(105, 89, 205)",slateblue4:"rgb(71, 60, 139)",slategray:"rgb(112, 128, 144)",slategray1:"rgb(198, 226, 255)",slategray2:"rgb(185, 211, 238)",slategray3:"rgb(159, 182, 205)",slategray4:"rgb(108, 123, 139)",slategrey:"rgb(112, 128, 144)",snow:"rgb(255, 250, 250)",snow1:"rgb(255, 250, 250)",snow2:"rgb(238, 233, 233)",snow3:"rgb(205, 201, 201)",snow4:"rgb(139, 137, 137)",springgreen:"rgb(0, 255, 127)",springgreen1:"rgb(0, 255, 127)",springgreen2:"rgb(0, 238, 118)",springgreen3:"rgb(0, 205, 102)",springgreen4:"rgb(0, 139, 69)",steelblue:"rgb(70, 130, 180)",steelblue1:"rgb(99, 184, 255)",steelblue2:"rgb(92, 172, 238)",steelblue3:"rgb(79, 148, 205)",steelblue4:"rgb(54, 100, 139)",tan:"rgb(210, 180, 140)",tan1:"rgb(255, 165, 79)",tan2:"rgb(238, 154, 73)",tan3:"rgb(205, 133, 63)",tan4:"rgb(139, 90, 43)",thistle:"rgb(216, 191, 216)",thistle1:"rgb(255, 225, 255)",thistle2:"rgb(238, 210, 238)",thistle3:"rgb(205, 181, 205)",thistle4:"rgb(139, 123, 139)",tomato:"rgb(255, 99, 71)",tomato1:"rgb(255, 99, 71)",tomato2:"rgb(238, 92, 66)",tomato3:"rgb(205, 79, 57)",tomato4:"rgb(139, 54, 38)",turquoise:"rgb(64, 224, 208)",turquoise1:"rgb(0, 245, 255)",turquoise2:"rgb(0, 229, 238)",turquoise3:"rgb(0, 197, 205)",turquoise4:"rgb(0, 134, 139)",violet:"rgb(238, 130, 238)",violetred:"rgb(208, 32, 144)",violetred1:"rgb(255, 62, 150)",violetred2:"rgb(238, 58, 140)",violetred3:"rgb(205, 50, 120)",violetred4:"rgb(139, 34, 82)",wheat:"rgb(245, 222, 179)",wheat1:"rgb(255, 231, 186)",wheat2:"rgb(238, 216, 174)",wheat3:"rgb(205, 186, 150)",wheat4:"rgb(139, 126, 102)",white:"rgb(255, 255, 255)",whitesmoke:"rgb(245, 245, 245)",yellow:"rgb(255, 255, 0)",yellow1:"rgb(255, 255, 0)",yellow2:"rgb(238, 238, 0)",yellow3:"rgb(205, 205, 0)",yellow4:"rgb(139, 139, 0)",yellowgreen:"rgb(154, 205, 50)"},t.f={},t.f.createEnum=function(e){return new String(e)},t.f.replaceVars=function(e,i){return e.replace(/%([a-z]*)\(([^\)]+)\)/gi,function(e,r,s){if(void 0===i[s])throw"Unknown variable: "+s;var o=i[s];if(r in t.f.replaceVars.functions)o=t.f.replaceVars.functions[r](o);else if(r)throw"Unknown escape function: "+r;return o})},t.f.replaceVars.functions={encodeURI,encodeURIComponent,escapeHTML:function(e){var t={"<":"<",">":">","&":"&",'"':""","'":"'"};return e.replace(/[<>&\"\']/g,function(e){return t[e]})}},t.f.getAcceptLanguages=function(e){t.f.getAcceptLanguages.chromeSupported()?chrome.i18n.getAcceptLanguages(e):setTimeout(function(){e([navigator.language.replace(/-/g,"_")])},0)},t.f.getAcceptLanguages.chromeSupported=function(){return window.chrome&&chrome.i18n},t.f.parseQuery=function(e){e.startsWith("?")&&(e=e.substr(1));for(var t={},i=e.split("&"),r=0;ri?i:e},t.f.zpad=function(e,t){return String(e).padStart(t,"0")},t.f.getWhitespace=function(e){if(e<=0)return"";var t=this.getWhitespace;for(t.whitespace||(t.whitespace=" ");e>t.whitespace.length;)t.whitespace+=t.whitespace;return t.whitespace.substr(0,e)},t.f.alarm=function(e,i){var r,s,o=i||5e3,n=t.f.getStack(1);return r=setTimeout(function(){var t="string"==typeof e?t:e.name;t=t?": "+t:"",console.warn("lib.f.alarm: timeout expired: "+o/1e3+"s"+t),console.log(n),r=null},o),s=function(e){return function(){return r&&(clearTimeout(r),r=null),e.apply(null,arguments)}},"string"==typeof e?s:s(e)},t.f.getStack=function(e){var t,i=e?e+2:2;try{throw new Error}catch(e){t=e.stack.split("\n")}for(var r={},s=i;s=0&&this.observers.splice(t,1)},t.PreferenceManager.Record.prototype.get=function(){return this.currentValue===this.DEFAULT_VALUE?/^(string|number)$/.test(typeof this.defaultValue)?this.defaultValue:"object"==typeof this.defaultValue?JSON.parse(JSON.stringify(this.defaultValue)):this.defaultValue:this.currentValue},t.PreferenceManager.prototype.deactivate=function(){if(!this.isActive_)throw new Error("Not activated");this.isActive_=!1,this.storage.removeObserver(this.storageObserver_)},t.PreferenceManager.prototype.activate=function(){if(this.isActive_)throw new Error("Already activated");this.isActive_=!0,this.storage.addObserver(this.storageObserver_)},t.PreferenceManager.prototype.readStorage=function(e){var t=0;function i(){0==--t&&e&&e()}var r=Object.keys(this.prefRecords_).map(function(e){return this.prefix+e}.bind(this));this.trace&&console.log("Preferences read: "+this.prefix),this.storage.getItems(r,function(r){var s=this.prefix.length;for(var o in r){var n=r[o],a=o.substr(s),h=a in this.childLists_&&JSON.stringify(n)!=JSON.stringify(this.prefRecords_[a].currentValue);this.prefRecords_[a].currentValue=n,h&&(t++,this.syncChildList(a,i))}0==t&&e&&setTimeout(e)}.bind(this))},t.PreferenceManager.prototype.definePreference=function(e,i,r){var s=this.prefRecords_[e];s?this.changeDefault(e,i):s=this.prefRecords_[e]=new t.PreferenceManager.Record(e,i),r&&s.addObserver(r)},t.PreferenceManager.prototype.definePreferences=function(e){for(var t=0;t=0&&n.splice(l,1),!this.childLists_[e][h]){var c=this.childFactories_[e](this,h);if(!c){console.warn("Unable to restore child: "+e+": "+h);continue}c.trace=this.trace,this.childLists_[e][h]=c,r++,c.readStorage(s)}}for(a=0;a=0;r--){var s=e[r],o=this.storage_.getItem(s);if("string"==typeof o)try{i[s]=JSON.parse(o)}catch(e){i[s]=o}else e.splice(r,1)}setTimeout(t.bind(null,i),0)},t.Storage.Local.prototype.setItem=function(e,t,i){this.storage_.setItem(e,JSON.stringify(t)),i&&setTimeout(i,0)},t.Storage.Local.prototype.setItems=function(e,t){for(var i in e)this.storage_.setItem(i,JSON.stringify(e[i]));t&&setTimeout(t,0)},t.Storage.Local.prototype.removeItem=function(e,t){this.storage_.removeItem(e),t&&setTimeout(t,0)},t.Storage.Local.prototype.removeItems=function(e,t){for(var i=0;i=0;r--){var s=e[r],o=this.storage_[s];if("string"==typeof o)try{i[s]=JSON.parse(o)}catch(e){i[s]=o}else e.splice(r,1)}setTimeout(t.bind(null,i),0)},t.Storage.Memory.prototype.setItem=function(e,t,i){var r=this.storage_[e];this.storage_[e]=JSON.stringify(t);var s={};s[e]={oldValue:r,newValue:t},setTimeout(function(){for(var e=0;e{let t="";switch(e){case"debug":case"warn":case"error":t=e.toUpperCase()+": "}const i=this.console_[e];this[e]=this.console_[e]=(...e)=>{this.save&&(this.data+=this.prefix_+t+e.join(" ")+"\n"),i.apply(this.console_,e)}}),["group","groupCollapsed"].forEach(e=>{const t=this.console_[e];this[e]=this.console_[e]=(e="")=>{t(e),this.save&&(this.data+=this.prefix_+e+"\n"),this.prefix_=" ".repeat(++this.prefixStack_)}});const t=this.console_.groupEnd;this.groupEnd=this.console_.groupEnd=()=>{t(),this.prefix_=" ".repeat(--this.prefixStack_)}},t.TestManager.Suite=function(e){function i(t,i){this.testManager_=t,this.suiteName=e,this.setup(i)}return i.suiteName=e,i.addTest=t.TestManager.Suite.addTest,i.disableTest=t.TestManager.Suite.disableTest,i.getTest=t.TestManager.Suite.getTest,i.getTestList=t.TestManager.Suite.getTestList,i.testList_=[],i.testMap_={},i.prototype=Object.create(t.TestManager.Suite.prototype),i.constructor=t.TestManager.Suite,t.TestManager.Suite.subclasses.push(i),i},t.TestManager.Suite.subclasses=[],t.TestManager.Suite.addTest=function(e,i){if(e in this.testMap_)throw"Duplicate test name: "+e;var r=new t.TestManager.Test(this,e,i);this.testMap_[e]=r,this.testList_.push(r)},t.TestManager.Suite.disableTest=function(e,i){if(e in this.testMap_)throw"Duplicate test name: "+e;var r=new t.TestManager.Test(this,e,i);console.log("Disabled test: "+r.fullName)},t.TestManager.Suite.getTest=function(e){return this.testMap_[e]},t.TestManager.Suite.getTestList=function(){return this.testList_},t.TestManager.Suite.prototype.setDefaults=function(e,t){for(var i in t)this[i]=i in e?e[i]:t[i]},t.TestManager.Suite.prototype.setup=function(e){},t.TestManager.Suite.prototype.preamble=function(e,t){},t.TestManager.Suite.prototype.postamble=function(e,t){},t.TestManager.Test=function(e,t,i){this.suiteClass=e,this.testName=t,this.fullName=e.suiteName+"["+t+"]",this.testFunction_=i},t.TestManager.Test.prototype.run=function(e){try{this.testFunction_.apply(e.suite,[e,e.testRun.cx])}catch(i){if(i instanceof t.TestManager.Result.TestComplete)return;e.println("Test raised an exception: "+i),i.stack&&(i.stack instanceof Array?e.println(i.stack.join("\n")):e.println(i.stack)),e.completeTest_(e.FAILED,!1)}},t.TestManager.TestRun=function(e,t){this.testManager=e,this.log=e.log,this.cx=t||{},this.failures=[],this.passes=[],this.startDate=null,this.duration=null,this.currentResult=null,this.maxFailures=0,this.panic=!1,this.testQueue_=[]},t.TestManager.TestRun.prototype.ALL_TESTS=t.f.createEnum(""),t.TestManager.TestRun.prototype.selectTest=function(e){this.testQueue_.push(e)},t.TestManager.TestRun.prototype.selectSuite=function(e,t){for(var i=t||this.ALL_TESTS,r=0,s=e.getTestList(),o=0;o500&&this.log.warn("Slow test took "+this.msToSeconds_(e.duration)),this.log.groupEnd(),e.status==e.FAILED)this.failures.push(e),this.currentSuite=null;else{if(e.status!=e.PASSED)return this.log.error("Unknown result status: "+e.test.fullName+": "+e.status),this.panic=!0;this.passes.push(e)}this.runNextTest_()},t.TestManager.TestRun.prototype.onResultReComplete=function(e,t){this.log.error("Late complete for test: "+e.test.fullName+": "+t);var i=this.passes.indexOf(e);i>=0&&(this.passes.splice(i,1),this.failures.push(e))},t.TestManager.TestRun.prototype.runNextTest_=function(){if(this.panic||!this.testQueue_.length)return this.onTestRunComplete_();if(this.maxFailures&&this.failures.length>=this.maxFailures)return this.log.error("Maximum failure count reached, aborting test run."),this.onTestRunComplete_();var e=this.testQueue_[0],i=this.currentResult?this.currentResult.suite:null;try{i&&i instanceof e.suiteClass||(i&&this.log.groupEnd(),this.log.group(e.suiteClass.suiteName),i=new e.suiteClass(this.testManager,this.cx))}catch(e){return this.log.error("Exception during setup: "+(e.stack?e.stack:e)),this.panic=!0,void this.onTestRunComplete_()}try{this.log.group(e.testName),this.currentResult=new t.TestManager.Result(this,i,e),this.testManager.testPreamble(this.currentResult,this.cx),i.preamble(this.currentResult,this.cx),this.testQueue_.shift()}catch(e){return this.log.error("Unexpected exception during test preamble: "+(e.stack?e.stack:e)),this.log.groupEnd(),this.panic=!0,void this.onTestRunComplete_()}try{this.currentResult.run()}catch(e){this.log.error("Unexpected exception during test run: "+(e.stack?e.stack:e)),this.panic=!0}},t.TestManager.TestRun.prototype.run=function(){this.log.info("Running "+this.testQueue_.length+" test(s)"),window.onerror=this.onUncaughtException_.bind(this),this.startDate=new Date,this.runNextTest_()},t.TestManager.TestRun.prototype.msToSeconds_=function(e){return(e/1e3).toFixed(2)+"s"},t.TestManager.TestRun.prototype.summarize=function(){if(this.failures.length)for(var e=0;e1?"\n"+t.join("\n"):t.join("\n")}if(e!==t&&!(t instanceof Array&&this.arrayEQ_(e,t))){var s=i?"["+i+"]":"";this.fail("assertEQ"+s+": "+this.getCallerLocation_(1)+": "+r(e)+" !== "+r(t))}},t.TestManager.Result.prototype.assert=function(e,t){if(!0!==e){var i=t?"["+t+"]":"";this.fail("assert"+i+": "+this.getCallerLocation_(1)+": "+String(e))}},t.TestManager.Result.prototype.getCallerLocation_=function(e){try{throw new Error}catch(i){var t=i.stack.split("\n")[e+2].match(/([^/]+:\d+):\d+\)?$/);return t?t[1]:"???"}},t.TestManager.Result.prototype.println=function(e){this.testRun.log.info(e)},t.TestManager.Result.prototype.fail=function(e){arguments.length&&this.println(e),this.completeTest_(this.FAILED,!0)},t.TestManager.Result.prototype.pass=function(){this.completeTest_(this.PASSED,!0)},t.UTF8Decoder=function(){this.bytesLeft=0,this.codePoint=0,this.lowerBound=0},t.UTF8Decoder.prototype.decode=function(e){for(var t="",i=0;i1114111?t+="�":s<65536?t+=String.fromCharCode(s):(s-=65536,t+=String.fromCharCode(55296+(s>>>10&1023),56320+(1023&s)))}}else t+="�",this.bytesLeft=0,i--}return t},t.decodeUTF8=function(e){return(new t.UTF8Decoder).decode(e)},t.encodeUTF8=function(e){for(var t="",i=0;i>>6),r=1):s<=65535?(t+=String.fromCharCode(224|s>>>12),r=2):(t+=String.fromCharCode(240|s>>>18),r=3);r>0;)r--,t+=String.fromCharCode(128|s>>>6*r&63)}return t},t.wc={},t.wc.nulWidth=0,t.wc.controlWidth=0,t.wc.regardCjkAmbiguous=!1,t.wc.cjkAmbiguousWidth=2,t.wc.combining=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531],[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]],t.wc.ambiguous=[[161,161],[164,164],[167,168],[170,170],[174,174],[176,180],[182,186],[188,191],[198,198],[208,208],[215,216],[222,225],[230,230],[232,234],[236,237],[240,240],[242,243],[247,250],[252,252],[254,254],[257,257],[273,273],[275,275],[283,283],[294,295],[299,299],[305,307],[312,312],[319,322],[324,324],[328,331],[333,333],[338,339],[358,359],[363,363],[462,462],[464,464],[466,466],[468,468],[470,470],[472,472],[474,474],[476,476],[593,593],[609,609],[708,708],[711,711],[713,715],[717,717],[720,720],[728,731],[733,733],[735,735],[913,929],[931,937],[945,961],[963,969],[1025,1025],[1040,1103],[1105,1105],[8208,8208],[8211,8214],[8216,8217],[8220,8221],[8224,8226],[8228,8231],[8240,8240],[8242,8243],[8245,8245],[8251,8251],[8254,8254],[8308,8308],[8319,8319],[8321,8324],[8364,8364],[8451,8451],[8453,8453],[8457,8457],[8467,8467],[8470,8470],[8481,8482],[8486,8486],[8491,8491],[8531,8532],[8539,8542],[8544,8555],[8560,8569],[8592,8601],[8632,8633],[8658,8658],[8660,8660],[8679,8679],[8704,8704],[8706,8707],[8711,8712],[8715,8715],[8719,8719],[8721,8721],[8725,8725],[8730,8730],[8733,8736],[8739,8739],[8741,8741],[8743,8748],[8750,8750],[8756,8759],[8764,8765],[8776,8776],[8780,8780],[8786,8786],[8800,8801],[8804,8807],[8810,8811],[8814,8815],[8834,8835],[8838,8839],[8853,8853],[8857,8857],[8869,8869],[8895,8895],[8978,8978],[9312,9449],[9451,9547],[9552,9587],[9600,9615],[9618,9621],[9632,9633],[9635,9641],[9650,9651],[9654,9655],[9660,9661],[9664,9665],[9670,9672],[9675,9675],[9678,9681],[9698,9701],[9711,9711],[9733,9734],[9737,9737],[9742,9743],[9748,9749],[9756,9756],[9758,9758],[9792,9792],[9794,9794],[9824,9825],[9827,9829],[9831,9834],[9836,9837],[9839,9839],[10045,10045],[10102,10111],[57344,63743],[65533,65533],[983040,1048573],[1048576,1114109]],t.wc.isSpace=function(e){var i,r=0,s=t.wc.combining.length-1;if(et.wc.combining[s][1])return!1;for(;s>=r;)if(i=Math.floor((r+s)/2),e>t.wc.combining[i][1])r=i+1;else{if(!(et.wc.ambiguous[s][1])return!1;for(;s>=r;)if(i=Math.floor((r+s)/2),e>t.wc.ambiguous[i][1])r=i+1;else{if(!(e=127&&e<160?t.wc.controlWidth:e<127?1:t.wc.isSpace(e)?0:1+(e>=4352&&(e<=4447||9001==e||9002==e||e>=11904&&e<=42191&&12351!=e||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65135||e>=65280&&e<=65376||e>=65504&&e<=65510||e>=131072&&e<=196605||e>=196608&&e<=262141))},t.wc.charWidthRegardAmbiguous=function(e){return t.wc.isCjkAmbiguous(e)?t.wc.cjkAmbiguousWidth:t.wc.charWidthDisregardAmbiguous(e)},t.wc.strWidth=function(e){for(var i,r=0,s=0;si);s++);if(null!=r){for(o=s,n=0;or&&o--,e.substring(s,o)}return e.substr(s)},t.wc.substring=function(e,i,r){return t.wc.substr(e,i,r-i)},t.resource.add("libdot/changelog/version","text/plain","1.16"),t.resource.add("libdot/changelog/date","text/plain","2017-08-16"),t.rtdep("lib.Storage");var i={windowType:null,zoomWarningMessage:"ZOOM != 100%",notifyCopyMessage:"✂",desktopNotificationTitle:"♪ %(title) ♪",testDeps:["hterm.ScrollPort.Tests","hterm.Screen.Tests","hterm.Terminal.Tests","hterm.VT.Tests","hterm.VT.CannedTests"]};t.registerInit("hterm",function(e){function r(t){i.windowType=t.type,setTimeout(e,0)}i.defaultStorage||(window.chrome&&chrome.storage&&chrome.storage.sync?i.defaultStorage=new t.Storage.Chrome(chrome.storage.sync):i.defaultStorage=new t.Storage.Local);var s=!1;if(window.chrome&&chrome.runtime&&chrome.runtime.getManifest){var o=chrome.runtime.getManifest();s=o.app&&o.app.background}s?setTimeout(r.bind(null,{type:"popup"}),0):window.chrome&&chrome.tabs?chrome.tabs.getCurrent(function(t){t&&window.chrome?chrome.windows.get(t.windowId,null,r):(i.windowType="normal",setTimeout(e,0))}):setTimeout(r.bind(null,{type:"normal"}),0)}),i.getClientSize=function(e){return e.getBoundingClientRect()},i.getClientWidth=function(e){return e.getBoundingClientRect().width},i.getClientHeight=function(e){return e.getBoundingClientRect().height},i.copySelectionToClipboard=function(e){try{e.execCommand("copy")}catch(e){}},i.pasteFromClipboard=function(e){try{return e.execCommand("paste")}catch(e){return!1}},i.notify=function(e){var r=(e,t)=>void 0!==e?e:t;null==e&&(e={});var s={body:e.body,icon:r(e.icon,t.resource.getDataUrl("hterm/images/icon-96"))},o=r(e.title,window.document.title);o||(o="hterm"),o=t.f.replaceVars(i.desktopNotificationTitle,{title:o});var n=new Notification(o,s);return n.onclick=function(){window.focus(),this.close()},n},i.Size=function(e,t){this.width=e,this.height=t},i.Size.prototype.resize=function(e,t){this.width=e,this.height=t},i.Size.prototype.clone=function(){return new i.Size(this.width,this.height)},i.Size.prototype.setTo=function(e){this.width=e.width,this.height=e.height},i.Size.prototype.equals=function(e){return this.width==e.width&&this.height==e.height},i.Size.prototype.toString=function(){return"[hterm.Size: "+this.width+", "+this.height+"]"},i.RowCol=function(e,t,i){this.row=e,this.column=t,this.overflow=!!i},i.RowCol.prototype.move=function(e,t,i){this.row=e,this.column=t,this.overflow=!!i},i.RowCol.prototype.clone=function(){return new i.RowCol(this.row,this.column,this.overflow)},i.RowCol.prototype.setTo=function(e){this.row=e.row,this.column=e.column,this.overflow=e.overflow},i.RowCol.prototype.equals=function(e){return this.row==e.row&&this.column==e.column&&this.overflow==e.overflow},i.RowCol.prototype.toString=function(){return"[hterm.RowCol: "+this.row+", "+this.column+", "+this.overflow+"]"},t.rtdep("lib.f"),i.Frame=function(e,t,i){this.terminal_=e,this.div_=e.div_,this.url=t,this.options=i||{},this.iframe_=null,this.container_=null,this.messageChannel_=null},i.Frame.prototype.onMessage_=function(e){switch(e.data.name){case"ipc-init-ok":return void this.sendTerminalInfo_();case"terminal-info-ok":return this.container_.style.display="flex",this.messageChannel_.port1.onmessage=this.onMessage.bind(this),void this.onLoad();default:return void console.log("Unknown message from frame:",e.data)}},i.Frame.prototype.onMessage=function(){},i.Frame.prototype.onLoad_=function(){this.messageChannel_=new MessageChannel,this.messageChannel_.port1.onmessage=this.onMessage_.bind(this),this.messageChannel_.port1.start(),this.iframe_.contentWindow.postMessage({name:"ipc-init",argv:[{messagePort:this.messageChannel_.port2}]},this.url,[this.messageChannel_.port2])},i.Frame.prototype.onLoad=function(){},i.Frame.prototype.sendTerminalInfo_=function(){t.f.getAcceptLanguages(function(e){this.postMessage("terminal-info",[{acceptLanguages:e,foregroundColor:this.terminal_.getForegroundColor(),backgroundColor:this.terminal_.getBackgroundColor(),cursorColor:this.terminal_.getCursorColor(),fontSize:this.terminal_.getFontSize(),fontFamily:this.terminal_.getFontFamily(),baseURL:t.f.getURL("/")}])}.bind(this))},i.Frame.prototype.onCloseClicked_=function(){this.close()},i.Frame.prototype.close=function(){this.container_&&this.container_.parentNode&&(this.container_.parentNode.removeChild(this.container_),this.onClose())},i.Frame.prototype.onClose=function(){},i.Frame.prototype.postMessage=function(e,t){if(!this.messageChannel_)throw new Error("Message channel is not set up.");this.messageChannel_.port1.postMessage({name:e,argv:t})},i.Frame.prototype.show=function(){var e=this;function t(t,i){return t in e.options?e.options[t]:i}e=this;if(this.container_&&this.container_.parentNode)console.error("Frame already visible");else{var r=i.getClientSize(this.div_),s=t("width",640),o=t("height",480),n=(r.width,r.height,this.terminal_.document_),a=this.container_=n.createElement("div");a.style.cssText="position: absolute;display: none;flex-direction: column;top: 10%;left: 4%;width: 90%;height: 80%;min-height: 20%;max-height: 80%;box-shadow: 0 0 2px "+this.terminal_.getForegroundColor()+";border: 2px "+this.terminal_.getForegroundColor()+" solid;";var h=this.iframe_=n.createElement("iframe");h.onload=this.onLoad_.bind(this),h.style.cssText="display: flex;flex: 1;width: 100%",h.setAttribute("src",this.url),h.setAttribute("seamless",!0),a.appendChild(h),this.div_.appendChild(a)}},t.rtdep("hterm.Keyboard.KeyMap"),i.Keyboard=function(e){this.terminal=e,this.keyboardElement_=null,this.handlers_=[["focusout",this.onFocusOut_.bind(this)],["keydown",this.onKeyDown_.bind(this)],["keypress",this.onKeyPress_.bind(this)],["keyup",this.onKeyUp_.bind(this)],["textInput",this.onTextInput_.bind(this)]],this.keyMap=new i.Keyboard.KeyMap(this),this.bindings=new i.Keyboard.Bindings(this),this.altGrMode="none",this.shiftInsertPaste=!0,this.homeKeysScroll=!1,this.pageKeysScroll=!1,this.ctrlPlusMinusZeroZoom=!0,this.ctrlCCopy=!1,this.ctrlVPaste=!1,this.applicationKeypad=!1,this.applicationCursor=!1,this.backspaceSendsBackspace=!1,this.characterEncoding="utf-8",this.metaSendsEscape=!0,this.passMetaV=!0,this.altSendsWhat="escape",this.altIsMeta=!1,this.altBackspaceIsMetaBackspace=!1,this.altKeyPressed=0,this.mediaKeysAreFKeys=!1,this.previousAltSendsWhat_=null},i.Keyboard.KeyActions={CANCEL:t.f.createEnum("CANCEL"),DEFAULT:t.f.createEnum("DEFAULT"),PASS:t.f.createEnum("PASS"),STRIP:t.f.createEnum("STRIP")},i.Keyboard.prototype.encode=function(e){return"utf-8"==this.characterEncoding?this.terminal.vt.encodeUTF8(e):e},i.Keyboard.prototype.installKeyboard=function(e){if(e!=this.keyboardElement_){e&&this.keyboardElement_&&this.installKeyboard(null);for(var t=0;t=32&&(i=e.charCode);i&&this.terminal.onVTKeystroke(String.fromCharCode(i)),e.preventDefault(),e.stopPropagation()}},i.Keyboard.prototype.preventChromeAppNonCtrlShiftDefault_=function(e){window.chrome&&window.chrome.app&&window.chrome.app.window&&(e.ctrlKey&&e.shiftKey||e.preventDefault())},i.Keyboard.prototype.onFocusOut_=function(e){this.altKeyPressed=0},i.Keyboard.prototype.onKeyUp_=function(e){18==e.keyCode&&(this.altKeyPressed=this.altKeyPressed&~(1<=64&&v<=95&&(r=String.fromCharCode(v-64));if(u&&"8-bit"==this.altSendsWhat&&1==r.length){var v=r.charCodeAt(0)+128;r=String.fromCharCode(v)}(u&&"escape"==this.altSendsWhat||d&&this.metaSendsEscape)&&(r=""+r)}this.terminal.onVTKeystroke(r)}else console.warn("Invalid action: "+JSON.stringify(r))}else console.warn("No definition for keyCode: "+e.keyCode);function b(i){s=i;var r=t[i];return"function"==typeof r&&(r=r.apply(o.keyMap,[e,t])),r===a&&"normal"!=i&&(r=b("normal")),r}},i.Keyboard.Bindings=function(){this.bindings_={}},i.Keyboard.Bindings.prototype.clear=function(){this.bindings_={}},i.Keyboard.Bindings.prototype.addBinding_=function(e,t){var r=null,s=this.bindings_[e.keyCode];if(s)for(var o=0;o",d,n(f,_),d,d],[191,"/?",d,o(h("_"),h("?")),d,d],[17,"[CTRL]",_,_,_,_],[18,"[ALT]",_,_,_,_],[91,"[LAPL]",_,_,_,_],[32," ",d,h("@"),d,d],[92,"[RAPL]",_,_,_,_],[93,"[RMENU]",_,_,_,_],[42,"[PRTSCR]",_,_,_,_],[145,"[SCRLK]",_,_,_,_],[19,"[BREAK]",_,_,_,_],[45,"[INSERT]",l("onKeyInsert_"),d,d,d],[36,"[HOME]",l("onKeyHome_"),d,d,d],[33,"[PGUP]",l("onKeyPageUp_"),d,d,d],[46,"[DEL]",l("onKeyDel_"),d,d,d],[35,"[END]",l("onKeyEnd_"),d,d,d],[34,"[PGDOWN]",l("onKeyPageDown_"),d,d,d],[38,"[UP]",l("onKeyArrowUp_"),d,d,d],[40,"[DOWN]",l("onKeyArrowDown_"),d,d,d],[39,"[RIGHT]",r("","OC"),d,d,d],[37,"[LEFT]",r("","OD"),d,d,d],[144,"[NUMLOCK]",_,_,_,_],[96,"[KP0]",d,d,d,d],[97,"[KP1]",d,d,d,d],[98,"[KP2]",d,d,d,d],[99,"[KP3]",d,d,d,d],[100,"[KP4]",d,d,d,d],[101,"[KP5]",d,d,d,d],[102,"[KP6]",d,d,d,d],[103,"[KP7]",d,d,d,d],[104,"[KP8]",d,d,d,d],[105,"[KP9]",d,d,d,d],[107,"[KP+]",d,l("onPlusMinusZero_"),d,l("onPlusMinusZero_")],[109,"[KP-]",d,l("onPlusMinusZero_"),d,l("onPlusMinusZero_")],[106,"[KP*]",d,d,d,d],[111,"[KP/]",d,d,d,d],[110,"[KP.]",d,d,d,d],[166,"[BACK]",c(a("OP","")),d,"[23~",d],[167,"[FWD]",c(a("OQ","")),d,"[24~",d],[168,"[RELOAD]",c(a("OR","")),d,"[25~",d],[183,"[FSCR]",c(a("OS","")),d,"[26~",d],[182,"[WINS]",c("[15~"),d,"[28~",d],[216,"[BRIT-]",c("[17~"),d,"[29~",d],[217,"[BRIT+]",c("[18~"),d,"[31~",d])},i.Keyboard.KeyMap.prototype.onKeyInsert_=function(e){return this.keyboard.shiftInsertPaste&&e.shiftKey?i.Keyboard.KeyActions.PASS:"[2~"},i.Keyboard.KeyMap.prototype.onKeyHome_=function(e){return!this.keyboard.homeKeysScroll^e.shiftKey?e.altey||e.ctrlKey||e.shiftKey||!this.keyboard.applicationCursor?"":"OH":(this.keyboard.terminal.scrollHome(),i.Keyboard.KeyActions.CANCEL)},i.Keyboard.KeyMap.prototype.onKeyEnd_=function(e){return!this.keyboard.homeKeysScroll^e.shiftKey?e.altKey||e.ctrlKey||e.shiftKey||!this.keyboard.applicationCursor?"":"OF":(this.keyboard.terminal.scrollEnd(),i.Keyboard.KeyActions.CANCEL)},i.Keyboard.KeyMap.prototype.onKeyPageUp_=function(e){return!this.keyboard.pageKeysScroll^e.shiftKey?"[5~":(this.keyboard.terminal.scrollPageUp(),i.Keyboard.KeyActions.CANCEL)},i.Keyboard.KeyMap.prototype.onKeyDel_=function(e){return this.keyboard.altBackspaceIsMetaBackspace&&this.keyboard.altKeyPressed&&!e.altKey?"":"[3~"},i.Keyboard.KeyMap.prototype.onKeyPageDown_=function(e){return!this.keyboard.pageKeysScroll^e.shiftKey?"[6~":(this.keyboard.terminal.scrollPageDown(),i.Keyboard.KeyActions.CANCEL)},i.Keyboard.KeyMap.prototype.onKeyArrowUp_=function(e){return!this.keyboard.applicationCursor&&e.shiftKey?(this.keyboard.terminal.scrollLineUp(),i.Keyboard.KeyActions.CANCEL):e.shiftKey||e.ctrlKey||e.altKey||e.metaKey||!this.keyboard.applicationCursor?"":"OA"},i.Keyboard.KeyMap.prototype.onKeyArrowDown_=function(e){return!this.keyboard.applicationCursor&&e.shiftKey?(this.keyboard.terminal.scrollLineDown(),i.Keyboard.KeyActions.CANCEL):e.shiftKey||e.ctrlKey||e.altKey||e.metaKey||!this.keyboard.applicationCursor?"":"OB"},i.Keyboard.KeyMap.prototype.onClear_=function(e,t){return this.keyboard.terminal.wipeContents(),i.Keyboard.KeyActions.CANCEL},i.Keyboard.KeyMap.prototype.onCtrlNum_=function(e,t){function r(e){return String.fromCharCode(e.charCodeAt(0)-64)}if(this.keyboard.terminal.passCtrlNumber&&!e.shiftKey)return i.Keyboard.KeyActions.PASS;switch(t.keyCap.substr(0,1)){case"1":return"1";case"2":return r("@");case"3":return r("[");case"4":return r("\\");case"5":return r("]");case"6":return r("^");case"7":return r("_");case"8":return"";case"9":return"9"}},i.Keyboard.KeyMap.prototype.onAltNum_=function(e,t){return this.keyboard.terminal.passAltNumber&&!e.shiftKey?i.Keyboard.KeyActions.PASS:i.Keyboard.KeyActions.DEFAULT},i.Keyboard.KeyMap.prototype.onMetaNum_=function(e,t){return this.keyboard.terminal.passMetaNumber&&!e.shiftKey?i.Keyboard.KeyActions.PASS:i.Keyboard.KeyActions.DEFAULT},i.Keyboard.KeyMap.prototype.onCtrlC_=function(e,t){var r=this.keyboard.terminal.getDocument().getSelection();if(!r.isCollapsed){if(this.keyboard.ctrlCCopy&&!e.shiftKey)return this.keyboard.terminal.clearSelectionAfterCopy&&setTimeout(r.collapseToEnd.bind(r),50),i.Keyboard.KeyActions.PASS;if(!this.keyboard.ctrlCCopy&&e.shiftKey)return this.keyboard.terminal.clearSelectionAfterCopy&&setTimeout(r.collapseToEnd.bind(r),50),this.keyboard.terminal.copySelectionToClipboard(),i.Keyboard.KeyActions.CANCEL}return""},i.Keyboard.KeyMap.prototype.onCtrlN_=function(e,t){return e.shiftKey?(window.open(document.location.href,"","chrome=no,close=yes,resize=yes,scrollbars=yes,minimizable=yes,width="+window.innerWidth+",height="+window.innerHeight),i.Keyboard.KeyActions.CANCEL):""},i.Keyboard.KeyMap.prototype.onCtrlV_=function(e,t){return!e.shiftKey&&this.keyboard.ctrlVPaste||e.shiftKey&&!this.keyboard.ctrlVPaste?this.keyboard.terminal.paste()?i.Keyboard.KeyActions.CANCEL:i.Keyboard.KeyActions.PASS:""},i.Keyboard.KeyMap.prototype.onMetaN_=function(e,t){return e.shiftKey?(window.open(document.location.href,"","chrome=no,close=yes,resize=yes,scrollbars=yes,minimizable=yes,width="+window.outerWidth+",height="+window.outerHeight),i.Keyboard.KeyActions.CANCEL):i.Keyboard.KeyActions.DEFAULT},i.Keyboard.KeyMap.prototype.onMetaC_=function(e,t){var r=this.keyboard.terminal.getDocument();return e.shiftKey||r.getSelection().isCollapsed?t.keyCap.substr(e.shiftKey?1:0,1):(this.keyboard.terminal.clearSelectionAfterCopy&&setTimeout(function(){r.getSelection().collapseToEnd()},50),i.Keyboard.KeyActions.PASS)},i.Keyboard.KeyMap.prototype.onMetaV_=function(e,t){return e.shiftKey||this.keyboard.passMetaV?i.Keyboard.KeyActions.PASS:i.Keyboard.KeyActions.DEFAULT},i.Keyboard.KeyMap.prototype.onPlusMinusZero_=function(e,t){if(!(this.keyboard.ctrlPlusMinusZeroZoom^e.shiftKey))return"-_"==t.keyCap?"":i.Keyboard.KeyActions.CANCEL;if(1!=this.keyboard.terminal.getZoomFactor())return i.Keyboard.KeyActions.PASS;var r=t.keyCap.substr(0,1);if("0"==r)this.keyboard.terminal.setFontSize(0);else{var s=this.keyboard.terminal.getFontSize();"-"==r||"[KP-]"==t.keyCap?s-=1:s+=1,this.keyboard.terminal.setFontSize(s)}return i.Keyboard.KeyActions.CANCEL},i.Keyboard.KeyPattern=function(e){this.wildcardCount=0,this.keyCode=e.keyCode,i.Keyboard.KeyPattern.modifiers.forEach(function(t){this[t]=e[t]||!1,"*"==this[t]&&this.wildcardCount++}.bind(this))},i.Keyboard.KeyPattern.modifiers=["shift","ctrl","alt","meta"],i.Keyboard.KeyPattern.sortCompare=function(e,t){return e.wildcardCountt.wildcardCount?1:0},i.Keyboard.KeyPattern.prototype.match_=function(e,t){if(this.keyCode!=e.keyCode)return!1;var r=!0;return i.Keyboard.KeyPattern.modifiers.forEach(function(i){var s=i in e&&e[i];r&&(t||"*"!=this[i])&&this[i]!=s&&(r=!1)}.bind(this)),r},i.Keyboard.KeyPattern.prototype.matchKeyDown=function(e){return this.match_(e,!1)},i.Keyboard.KeyPattern.prototype.matchKeyPattern=function(e){return this.match_(e,!0)},i.Options=function(e){this.wraparound=!e||e.wraparound,this.reverseWraparound=!!e&&e.reverseWraparound,this.originMode=!!e&&e.originMode,this.autoCarriageReturn=!!e&&e.autoCarriageReturn,this.cursorVisible=!!e&&e.cursorVisible,this.cursorBlink=!!e&&e.cursorBlink,this.insertMode=!!e&&e.insertMode,this.reverseVideo=!!e&&e.reverseVideo,this.bracketedPaste=!!e&&e.bracketedPaste},t.rtdep("hterm.Keyboard.KeyActions"),i.Parser=function(){this.source="",this.pos=0,this.ch=null},i.Parser.prototype.error=function(e){return new Error("Parse error at "+this.pos+": "+e)},i.Parser.prototype.isComplete=function(){return this.pos==this.source.length},i.Parser.prototype.reset=function(e,t){this.source=e,this.pos=t||0,this.ch=e.substr(0,1)},i.Parser.prototype.parseKeySequence=function(){var e={keyCode:null};for(var t in i.Parser.identifiers.modifierKeys)e[i.Parser.identifiers.modifierKeys[t]]=!1;for(;this.pos 'none', else => 'right-alt'\n'none': Disable any AltGr related munging.\n'ctrl-alt': Assume Ctrl+Alt means AltGr.\n'left-alt': Assume left Alt means AltGr.\n'right-alt': Assume right Alt means AltGr.\n"],"alt-backspace-is-meta-backspace":[i.PreferenceManager.categories.Keyboard,!1,"bool","If set, undoes the Chrome OS Alt-Backspace->DEL remap, so that alt-backspace indeed is alt-backspace."],"alt-is-meta":[i.PreferenceManager.categories.Keyboard,!1,"bool","Set whether the alt key acts as a meta key or as a distinct alt key."],"alt-sends-what":[i.PreferenceManager.categories.Keyboard,"escape",["escape","8-bit","browser-key"],"Controls how the alt key is handled.\n\n escape....... Send an ESC prefix.\n 8-bit........ Add 128 to the unshifted character as in xterm.\n browser-key.. Wait for the keypress event and see what the browser \n says. (This won't work well on platforms where the \n browser performs a default action for some alt sequences.)"],"audible-bell-sound":[i.PreferenceManager.categories.Sounds,"lib-resource:hterm/audio/bell","url","URL of the terminal bell sound. Empty string for no audible bell."],"desktop-notification-bell":[i.PreferenceManager.categories.Sounds,!1,"bool",'If true, terminal bells in the background will create a Web Notification. https://www.w3.org/TR/notifications/\n\nDisplaying notifications requires permission from the user. When this option is set to true, hterm will attempt to ask the user for permission if necessary. Note browsers may not show this permission request if it did not originate from a user action.\n\nChrome extensions with the "notifications" permission have permission to display notifications.'],"background-color":[i.PreferenceManager.categories.Appearance,"rgb(16, 16, 16)","color","The background color for text with no other color attributes."],"background-image":[i.PreferenceManager.categories.Appearance,"","string","CSS value of the background image. Empty string for no image.\n\nFor example:\n url(https://goo.gl/anedTK)\n linear-gradient(top bottom, blue, red)"],"background-size":[i.PreferenceManager.categories.Appearance,"","string","CSS value of the background image size. Defaults to none."],"background-position":[i.PreferenceManager.categories.Appearance,"","string","CSS value of the background image position.\n\nFor example:\n 10% 10%\n center"],"backspace-sends-backspace":[i.PreferenceManager.categories.Keyboard,!1,"bool","If true, the backspace should send BS ('\\x08', aka ^H). Otherwise the backspace key should send '\\x7f'."],"character-map-overrides":[i.PreferenceManager.categories.Appearance,null,"value",'This is specified as an object. It is a sparse array, where each property is the character set code and the value is an object that is a sparse array itself. In that sparse array, each property is the received character and the value is the displayed character.\n\nFor example:\n {"0":{"+":"\\u2192",",":"\\u2190","-":"\\u2191",".":"\\u2193", "0":"\\u2588"}}'],"close-on-exit":[i.PreferenceManager.categories.Miscellaneous,!0,"bool","Whether or not to close the window when the command exits."],"cursor-blink":[i.PreferenceManager.categories.Appearance,!1,"bool","Whether or not to blink the cursor by default."],"cursor-blink-cycle":[i.PreferenceManager.categories.Appearance,[1e3,500],"value","The cursor blink rate in milliseconds.\n\nA two element array, the first of which is how long the cursor should be on, second is how long it should be off."],"cursor-color":[i.PreferenceManager.categories.Appearance,"rgba(255, 0, 0, 0.5)","color","The color of the visible cursor."],"color-palette-overrides":[i.PreferenceManager.categories.Appearance,null,"value","Override colors in the default palette.\n\nThis can be specified as an array or an object. If specified as an object it is assumed to be a sparse array, where each property is a numeric index into the color palette.\n\nValues can be specified as almost any css color value. This includes #RGB, #RRGGBB, rgb(...), rgba(...), and any color names that are also part of the stock X11 rgb.txt file.\n\nYou can use 'null' to specify that the default value should be not be changed. This is useful for skipping a small number of indices when the value is specified as an array."],"copy-on-select":[i.PreferenceManager.categories.CopyPaste,!0,"bool","Automatically copy mouse selection to the clipboard."],"use-default-window-copy":[i.PreferenceManager.categories.CopyPaste,!1,"bool","Whether to use the default window copy behavior"],"clear-selection-after-copy":[i.PreferenceManager.categories.CopyPaste,!0,"bool","Whether to clear the selection after copying."],"ctrl-plus-minus-zero-zoom":[i.PreferenceManager.categories.Keyboard,!0,"bool","If true, Ctrl-Plus/Minus/Zero controls zoom.\nIf false, Ctrl-Shift-Plus/Minus/Zero controls zoom, Ctrl-Minus sends ^_, Ctrl-Plus/Zero do nothing."],"ctrl-c-copy":[i.PreferenceManager.categories.Keyboard,!1,"bool","Ctrl+C copies if true, send ^C to host if false.\nCtrl+Shift+C sends ^C to host if true, copies if false."],"ctrl-v-paste":[i.PreferenceManager.categories.Keyboard,!1,"bool","Ctrl+V pastes if true, send ^V to host if false.\nCtrl+Shift+V sends ^V to host if true, pastes if false."],"east-asian-ambiguous-as-two-column":[i.PreferenceManager.categories.Keyboard,!1,"bool","Set whether East Asian Ambiguous characters have two column width."],"enable-8-bit-control":[i.PreferenceManager.categories.Keyboard,!1,"bool","True to enable 8-bit control characters, false to ignore them.\n\nWe'll respect the two-byte versions of these control characters regardless of this setting."],"enable-bold":[i.PreferenceManager.categories.Appearance,null,"tristate","True if we should use bold weight font for text with the bold/bright attribute. False to use the normal weight font. Null to autodetect."],"enable-bold-as-bright":[i.PreferenceManager.categories.Appearance,!0,"bool","True if we should use bright colors (8-15 on a 16 color palette) for any text with the bold attribute. False otherwise."],"enable-blink":[i.PreferenceManager.categories.Appearance,!0,"bool","True if we should respect the blink attribute. False to ignore it. "],"enable-clipboard-notice":[i.PreferenceManager.categories.CopyPaste,!0,"bool","Show a message in the terminal when the host writes to the clipboard."],"enable-clipboard-write":[i.PreferenceManager.categories.CopyPaste,!0,"bool","Allow the host to write directly to the system clipboard."],"enable-dec12":[i.PreferenceManager.categories.Miscellaneous,!1,"bool","Respect the host's attempt to change the cursor blink status using DEC Private Mode 12."],environment:[i.PreferenceManager.categories.Miscellaneous,{TERM:"xterm-256color"},"value","The default environment variables, as an object."],"font-family":[i.PreferenceManager.categories.Appearance,'"DejaVu Sans Mono", "Everson Mono", FreeMono, "Menlo", "Terminal", monospace',"string","Default font family for the terminal text."],"font-size":[i.PreferenceManager.categories.Appearance,15,"int","The default font size in pixels."],"font-smoothing":[i.PreferenceManager.categories.Appearance,"antialiased","string","CSS font-smoothing property."],"foreground-color":[i.PreferenceManager.categories.Appearance,"rgb(240, 240, 240)","color","The foreground color for text with no other color attributes."],"home-keys-scroll":[i.PreferenceManager.categories.Keyboard,!1,"bool","If true, home/end will control the terminal scrollbar and shift home/end will send the VT keycodes. If false then home/end sends VT codes and shift home/end scrolls."],keybindings:[i.PreferenceManager.categories.Keyboard,null,"value",'A map of key sequence to key actions. Key sequences include zero or more modifier keys followed by a key code. Key codes can be decimal or hexadecimal numbers, or a key identifier. Key actions can be specified a string to send to the host, or an action identifier. For a full explanation of the format, see https://goo.gl/LWRndr.\n\nSample keybindings:\n{\n "Ctrl-Alt-K": "clearScrollback",\n "Ctrl-Shift-L": "PASS",\n "Ctrl-H": "\'HELLO\\n\'"\n}'],"max-string-sequence":[i.PreferenceManager.categories.Encoding,1e5,"int","Max length of a DCS, OSC, PM, or APS sequence before we give up and ignore the code."],"media-keys-are-fkeys":[i.PreferenceManager.categories.Keyboard,!1,"bool","If true, convert media keys to their Fkey equivalent. If false, let the browser handle the keys."],"meta-sends-escape":[i.PreferenceManager.categories.Keyboard,!0,"bool","Set whether the meta key sends a leading escape or not."],"mouse-right-click-paste":[i.PreferenceManager.categories.CopyPaste,!0,"bool",'Paste on right mouse button clicks.\n\nThis option is activate independent of the "mouse-paste-button" setting.\n\nNote: This will handle left & right handed mice correctly.'],"mouse-paste-button":[i.PreferenceManager.categories.CopyPaste,null,[null,0,1,2,3,4,5,6],"Mouse paste button, or null to autodetect.\n\nFor autodetect, we'll use the middle mouse button for non-X11 platforms (including Chrome OS). On X11, we'll use the right mouse button (since the native window manager should paste via the middle mouse button).\n\n0 == left (primary) button.\n1 == middle (auxiliary) button.\n2 == right (secondary) button.\n\nThis option is activate independent of the \"mouse-right-click-paste\" setting.\n\nNote: This will handle left & right handed mice correctly."],"word-break-match-left":[i.PreferenceManager.categories.CopyPaste,"[^\\s\\[\\](){}<>\"'\\^!@#$%&*,;:`]","string",'Regular expression to halt matching to the left (start) of a selection.\n\nNormally this is a character class to reject specific characters.\nWe allow "~" and "." by default as paths frequently start with those.'],"word-break-match-right":[i.PreferenceManager.categories.CopyPaste,"[^\\s\\[\\](){}<>\"'\\^!@#$%&*,;:~.`]","string","Regular expression to halt matching to the right (end) of a selection.\n\nNormally this is a character class to reject specific characters."],"word-break-match-middle":[i.PreferenceManager.categories.CopyPaste,"[^\\s\\[\\](){}<>\"'\\^]*","string","Regular expression to match all the characters in the middle.\n\nNormally this is a character class to reject specific characters.\n\nUsed to expand the selection surrounding the starting point."],"page-keys-scroll":[i.PreferenceManager.categories.Keyboard,!1,"bool","If true, page up/down will control the terminal scrollbar and shift page up/down will send the VT keycodes. If false then page up/down sends VT codes and shift page up/down scrolls."],"pass-alt-number":[i.PreferenceManager.categories.Keyboard,null,"tristate","Set whether we should pass Alt-1..9 to the browser.\n\nThis is handy when running hterm in a browser tab, so that you don't lose Chrome's \"switch to tab\" keyboard accelerators. When not running in a tab it's better to send these keys to the host so they can be used in vim or emacs.\n\nIf true, Alt-1..9 will be handled by the browser. If false, Alt-1..9 will be sent to the host. If null, autodetect based on browser platform and window type."],"pass-ctrl-number":[i.PreferenceManager.categories.Keyboard,null,"tristate","Set whether we should pass Ctrl-1..9 to the browser.\n\nThis is handy when running hterm in a browser tab, so that you don't lose Chrome's \"switch to tab\" keyboard accelerators. When not running in a tab it's better to send these keys to the host so they can be used in vim or emacs.\n\nIf true, Ctrl-1..9 will be handled by the browser. If false, Ctrl-1..9 will be sent to the host. If null, autodetect based on browser platform and window type."],"pass-meta-number":[i.PreferenceManager.categories.Keyboard,null,"tristate","Set whether we should pass Meta-1..9 to the browser.\n\nThis is handy when running hterm in a browser tab, so that you don't lose Chrome's \"switch to tab\" keyboard accelerators. When not running in a tab it's better to send these keys to the host so they can be used in vim or emacs.\n\nIf true, Meta-1..9 will be handled by the browser. If false, Meta-1..9 will be sent to the host. If null, autodetect based on browser platform and window type."],"pass-meta-v":[i.PreferenceManager.categories.Keyboard,!0,"bool","Set whether meta-V gets passed to host."],"receive-encoding":[i.PreferenceManager.categories.Encoding,"utf-8",["utf-8","raw"],"Set the expected encoding for data received from the host.\n\nValid values are 'utf-8' and 'raw'."],"scroll-on-keystroke":[i.PreferenceManager.categories.Scrolling,!0,"bool","If true, scroll to the bottom on any keystroke."],"scroll-on-output":[i.PreferenceManager.categories.Scrolling,!1,"bool","If true, scroll to the bottom on terminal output."],"scrollbar-visible":[i.PreferenceManager.categories.Scrolling,!0,"bool","The vertical scrollbar mode."],"scroll-wheel-may-send-arrow-keys":[i.PreferenceManager.categories.Scrolling,!1,"bool","When using the alternative screen buffer, and DECCKM (Application Cursor Keys) is active, mouse wheel scroll events will emulate arrow keys.\n\nIt can be temporarily disabled by holding the shift key.\n\nThis frequently comes up when using pagers (less) or reading man pages or text editors (vi/nano) or using screen/tmux."],"scroll-wheel-move-multiplier":[i.PreferenceManager.categories.Scrolling,1,"int","The multiplier for the pixel delta in wheel events caused by the scroll wheel. Alters how fast the page scrolls."],"send-encoding":[i.PreferenceManager.categories.Encoding,"utf-8",["utf-8","raw"],"Set the encoding for data sent to host."],"terminal-encoding":[i.PreferenceManager.categories.Encoding,"iso-2022",["iso-2022","utf-8","utf-8-locked"],"The default terminal encoding (DOCS).\n\nISO-2022 enables character map translations (like graphics maps).\nUTF-8 disables support for those.\n\nThe locked variant means the encoding cannot be changed at runtime via terminal escape sequences.\n\nYou should stick with UTF-8 unless you notice broken rendering with legacy applications."],"shift-insert-paste":[i.PreferenceManager.categories.Keyboard,!0,"bool","Shift + Insert pastes if true, sent to host if false."],"user-css":[i.PreferenceManager.categories.Appearance,"","url","URL of user stylesheet to include in the terminal document."],"user-css-text":[i.PreferenceManager.categories.Appearance,"","multiline-string","Custom CSS text for styling the terminal."]},i.PreferenceManager.prototype=Object.create(t.PreferenceManager.prototype),i.PreferenceManager.constructor=i.PreferenceManager,i.PubSub=function(){this.observers_={}},i.PubSub.addBehavior=function(e){var t=new i.PubSub;for(var r in i.PubSub.prototype)e[r]=i.PubSub.prototype[r].bind(t)},i.PubSub.prototype.subscribe=function(e,t){e in this.observers_||(this.observers_[e]=[]),this.observers_[e].push(t)},i.PubSub.prototype.unsubscribe=function(e,t){var i=this.observers_[e];if(!i)throw"Invalid subject: "+e;var r=i.indexOf(t);if(r<0)throw"Not subscribed: "+e;i.splice(r,1)},i.PubSub.prototype.publish=function(e,t,i){var r=this.observers_[e];r&&(r=[].concat(r)),i&&(r?r.push(i):r=[i]),r&&setTimeout(function e(i){i=e&&this.setCursorPosition(this.cursorPosition.row,e-1)},i.Screen.prototype.shiftRow=function(){return this.shiftRows(1)[0]},i.Screen.prototype.shiftRows=function(e){return this.rowsArray.splice(0,e)},i.Screen.prototype.unshiftRow=function(e){this.rowsArray.splice(0,0,e)},i.Screen.prototype.unshiftRows=function(e){this.rowsArray.unshift.apply(this.rowsArray,e)},i.Screen.prototype.popRow=function(){return this.popRows(1)[0]},i.Screen.prototype.popRows=function(e){return this.rowsArray.splice(this.rowsArray.length-e,e)},i.Screen.prototype.pushRow=function(e){this.rowsArray.push(e)},i.Screen.prototype.pushRows=function(e){e.push.apply(this.rowsArray,e)},i.Screen.prototype.insertRow=function(e,t){this.rowsArray.splice(e,0,t)},i.Screen.prototype.insertRows=function(e,t){for(var i=0;i=this.rowsArray.length?(console.error("Row out of bounds: "+e),e=this.rowsArray.length-1):e<0&&(console.error("Row out of bounds: "+e),e=0),t>=this.columnCount_?(console.error("Column out of bounds: "+t),t=this.columnCount_-1):t<0&&(console.error("Column out of bounds: "+t),t=0),this.cursorPosition.overflow=!1;var r=this.rowsArray[e],s=r.firstChild;s||(s=r.ownerDocument.createTextNode(""),r.appendChild(s));var o=0;for(r==this.cursorRowNode_?t>=this.cursorPosition.column-this.cursorOffset_&&(s=this.cursorNode_,o=this.cursorPosition.column-this.cursorOffset_):this.cursorRowNode_=r,this.cursorPosition.move(e,t);s;){var n=t-o,a=i.TextAttributes.nodeWidth(s);if(!s.nextSibling||a>n)return this.cursorNode_=s,void(this.cursorOffset_=n);o+=a,s=s.nextSibling}}else console.warn("Attempt to set cursor position on empty screen.")},i.Screen.prototype.syncSelectionCaret=function(e){try{e.collapse(this.cursorNode_,this.cursorOffset_)}catch(e){}},i.Screen.prototype.splitNode_=function(e,r){var s=e.cloneNode(!1),o=e.textContent;e.textContent=i.TextAttributes.nodeSubstr(e,0,r),s.textContent=t.wc.substr(o,r),s.textContent&&e.parentNode.insertBefore(s,e.nextSibling),e.textContent||e.parentNode.removeChild(e)},i.Screen.prototype.maybeClipCurrentRow=function(){var e=i.TextAttributes.nodeWidth(this.cursorRowNode_);if(e<=this.columnCount_)this.cursorPosition.column>=this.columnCount_&&(this.setCursorPosition(this.cursorPosition.row,this.columnCount_-1),this.cursorPosition.overflow=!0);else{var t=this.cursorPosition.column;this.setCursorPosition(this.cursorPosition.row,this.columnCount_-1),e=i.TextAttributes.nodeWidth(this.cursorNode_),this.cursorOffset_i.TextAttributes.nodeWidth(e);){if(!e.hasAttribute("line-overflow")||!e.nextSibling)return-1;t-=i.TextAttributes.nodeWidth(e),e=e.nextSibling}return this.getNodeAndOffsetWithinRow_(e,t)},i.Screen.prototype.getNodeAndOffsetWithinRow_=function(e,t){for(var r=0;rs)){var _=t.wc.substring(l,s,t.wc.strWidth(l)),f=new RegExp("^"+h+a),g=_.match(f);if(g){var p=s+t.wc.strWidth(g[0]);-1==p||po.rowIndex)i();else if(r.focusNode==r.anchorNode)r.anchorOffset=this.lastRowCount_},i.ScrollPort.prototype.drawTopFold_=function(e){if(!this.selection.startRow||this.selection.startRow.rowIndex>=e)this.rowNodes_.firstChild!=this.topFold_&&this.rowNodes_.insertBefore(this.topFold_,this.rowNodes_.firstChild);else{if(!this.selection.isMultiline||this.selection.endRow.rowIndex>=e)this.selection.startRow.nextSibling!=this.topFold_&&this.rowNodes_.insertBefore(this.topFold_,this.selection.startRow.nextSibling);else for(this.selection.endRow.nextSibling!=this.topFold_&&this.rowNodes_.insertBefore(this.topFold_,this.selection.endRow.nextSibling);this.selection.startRow.nextSibling!=this.selection.endRow;)this.rowNodes_.removeChild(this.selection.startRow.nextSibling);for(;this.rowNodes_.firstChild!=this.selection.startRow;)this.rowNodes_.removeChild(this.rowNodes_.firstChild)}},i.ScrollPort.prototype.drawBottomFold_=function(e){if(!this.selection.endRow||this.selection.endRow.rowIndex<=e)this.rowNodes_.lastChild!=this.bottomFold_&&this.rowNodes_.appendChild(this.bottomFold_);else{if(!this.selection.isMultiline||this.selection.startRow.rowIndex<=e)this.bottomFold_.nextSibling!=this.selection.endRow&&this.rowNodes_.insertBefore(this.bottomFold_,this.selection.endRow);else for(this.bottomFold_.nextSibling!=this.selection.startRow&&this.rowNodes_.insertBefore(this.bottomFold_,this.selection.startRow);this.selection.startRow.nextSibling!=this.selection.endRow;)this.rowNodes_.removeChild(this.selection.startRow.nextSibling);for(;this.rowNodes_.lastChild!=this.selection.endRow;)this.rowNodes_.removeChild(this.rowNodes_.lastChild)}},i.ScrollPort.prototype.drawVisibleRows_=function(e,t){var i=this;function r(e,t){for(;e!=t;){if(!e)throw"Did not encounter target node";if(e==i.bottomFold_)throw"Encountered bottom fold before target node";var r=e;e=e.nextSibling,r.parentNode.removeChild(r)}}for(var s=this.selection.startRow,o=this.selection.endRow,n=this.bottomFold_,a=this.topFold_.nextSibling,h=Math.min(this.visibleRowCount,this.rowProvider_.getRowCount()),l=0;l=this.lastRowCount_;var t=e*this.characterSize.height+this.visibleRowTopMargin,i=this.getScrollMax_();t>i&&(t=i),this.screen_.scrollTop!=t&&(this.screen_.scrollTop=t,this.scheduleRedraw())},i.ScrollPort.prototype.scrollRowToBottom=function(e){this.syncScrollHeight(),this.isScrolledEnd=e+this.visibleRowCount>=this.lastRowCount_;var t=e*this.characterSize.height+this.visibleRowTopMargin+this.visibleRowBottomMargin;(t-=this.visibleRowCount*this.characterSize.height)<0&&(t=0),this.screen_.scrollTop!=t&&(this.screen_.scrollTop=t)},i.ScrollPort.prototype.getTopRowIndex=function(){return Math.round(this.screen_.scrollTop/this.characterSize.height)},i.ScrollPort.prototype.getBottomRowIndex=function(e){return e+this.visibleRowCount-1},i.ScrollPort.prototype.onScroll_=function(e){var t=this.getScreenSize();t.width==this.lastScreenWidth_&&t.height==this.lastScreenHeight_?(this.redraw_(),this.publish("scroll",{scrollPort:this})):this.resize()},i.ScrollPort.prototype.onScrollWheel=function(e){},i.ScrollPort.prototype.onScrollWheel_=function(e){if(this.onScrollWheel(e),!e.defaultPrevented){var t=this.scrollWheelDelta(e),i=this.screen_.scrollTop-t;i<0&&(i=0);var r=this.getScrollMax_();i>r&&(i=r),i!=this.screen_.scrollTop&&(this.screen_.scrollTop=i,e.preventDefault())}},i.ScrollPort.prototype.scrollWheelDelta=function(e){var t;switch(e.deltaMode){case WheelEvent.DOM_DELTA_PIXEL:t=e.deltaY*this.scrollWheelMultiplier_;break;case WheelEvent.DOM_DELTA_LINE:t=e.deltaY*this.characterSize.height;break;case WheelEvent.DOM_DELTA_PAGE:t=e.deltaY*this.characterSize.height*this.screen_.getHeight()}return-1*t},i.ScrollPort.prototype.onTouch=function(e){},i.ScrollPort.prototype.onTouch_=function(e){if(this.onTouch(e),!e.defaultPrevented){var t,i,r=function(e){return{id:e.identifier,y:e.clientY,x:e.clientX}};switch(e.type){case"touchstart":for(t=0;tn&&(o=n),o!=this.screen_.scrollTop&&(this.screen_.scrollTop=o)}e.preventDefault()}},i.ScrollPort.prototype.onResize_=function(e){this.syncCharacterSize(),this.resize()},i.ScrollPort.prototype.onCopy=function(e){},i.ScrollPort.prototype.onCopy_=function(e){if(this.onCopy(e),!e.defaultPrevented&&(this.resetSelectBags_(),this.selection.sync(),this.selection.startRow&&!(this.selection.endRow.rowIndex-this.selection.startRow.rowIndex<2))){var t,i,r=this.getTopRowIndex(),s=this.getBottomRowIndex(r);if(this.selection.startRow.rowIndexs)i=this.selection.startRow.rowIndex>s?this.selection.startRow.rowIndex+1:this.bottomFold_.previousSibling.rowIndex+1,this.bottomSelectBag_.textContent=this.rowProvider_.getRowsText(i,this.selection.endRow.rowIndex),this.rowNodes_.insertBefore(this.bottomSelectBag_,this.selection.endRow)}},i.ScrollPort.prototype.onBodyKeyDown_=function(e){if(this.ctrlVPaste){var t=String.fromCharCode(e.which).toLowerCase();(e.ctrlKey||e.metaKey)&&"v"==t&&this.pasteTarget_.focus()}},i.ScrollPort.prototype.onPaste_=function(e){this.pasteTarget_.focus();var t=this;setTimeout(function(){t.publish("paste",{text:t.pasteTarget_.value}),t.pasteTarget_.value="",t.screen_.focus()},0)},i.ScrollPort.prototype.handlePasteTargetTextInput_=function(e){e.stopPropagation()},i.ScrollPort.prototype.setScrollbarVisible=function(e){this.screen_.style.overflowY=e?"scroll":"hidden"},i.ScrollPort.prototype.setScrollWheelMoveMultipler=function(e){this.scrollWheelMultiplier_=e},t.rtdep("lib.colors","lib.PreferenceManager","lib.resource","lib.wc","lib.f","hterm.Keyboard","hterm.Options","hterm.PreferenceManager","hterm.Screen","hterm.ScrollPort","hterm.Size","hterm.TextAttributes","hterm.VT"),i.Terminal=function(e){this.profileId_=null,this.primaryScreen_=new i.Screen,this.alternateScreen_=new i.Screen,this.screen_=this.primaryScreen_,this.screenSize=new i.Size(0,0),this.scrollPort_=new i.ScrollPort(this),this.scrollPort_.subscribe("resize",this.onResize_.bind(this)),this.scrollPort_.subscribe("scroll",this.onScroll_.bind(this)),this.scrollPort_.subscribe("paste",this.onPaste_.bind(this)),this.scrollPort_.onCopy=this.onCopy_.bind(this),this.div_=null,this.document_=window.document,this.scrollbackRows_=[],this.tabStops_=[],this.defaultTabStops=!0,this.vtScrollTop_=null,this.vtScrollBottom_=null,this.cursorNode_=null,this.cursorShape_=i.Terminal.cursorShape.BLOCK,this.cursorColor_=null,this.cursorBlinkCycle_=[100,100],this.myOnCursorBlink_=this.onCursorBlink_.bind(this),this.backgroundColor_=null,this.foregroundColor_=null,this.scrollOnOutput_=null,this.scrollOnKeystroke_=null,this.scrollWheelArrowKeys_=null,this.defeatMouseReports_=!1,this.bellAudio_=this.document_.createElement("audio"),this.bellAudio_.id="hterm:bell-audio",this.bellAudio_.setAttribute("preload","auto"),this.bellNotificationList_=[],this.desktopNotificationBell_=!1,this.savedOptions_={},this.options_=new i.Options,this.timeouts_={},this.vt=new i.VT(this),this.keyboard=new i.Keyboard(this),this.io=new i.Terminal.IO(this),this.enableMouseDragScroll=!0,this.copyOnSelect=null,this.mouseRightClickPaste=null,this.mousePasteButton=null,this.useDefaultWindowCopy=!1,this.clearSelectionAfterCopy=!0,this.realizeSize_(80,24),this.setDefaultTabStops(),this.setProfile(e||"default",function(){this.onTerminalReady()}.bind(this))},i.Terminal.cursorShape={BLOCK:"BLOCK",BEAM:"BEAM",UNDERLINE:"UNDERLINE"},i.Terminal.prototype.onTerminalReady=function(){},i.Terminal.prototype.tabWidth=8,i.Terminal.prototype.setProfile=function(e,r){this.profileId_=e.replace(/\//g,"");var s=this;this.prefs_&&this.prefs_.deactivate(),this.prefs_=new i.PreferenceManager(this.profileId_),this.prefs_.addObservers(null,{"alt-gr-mode":function(e){e=null==e?"en-us"==navigator.language.toLowerCase()?"none":"right-alt":"string"==typeof e?e.toLowerCase():"none",/^(none|ctrl-alt|left-alt|right-alt)$/.test(e)||(e="none"),s.keyboard.altGrMode=e},"alt-backspace-is-meta-backspace":function(e){s.keyboard.altBackspaceIsMetaBackspace=e},"alt-is-meta":function(e){s.keyboard.altIsMeta=e},"alt-sends-what":function(e){/^(escape|8-bit|browser-key)$/.test(e)||(e="escape"),s.keyboard.altSendsWhat=e},"audible-bell-sound":function(e){var i=e.match(/^lib-resource:(\S+)/);i?s.bellAudio_.setAttribute("src",t.resource.getDataUrl(i[1])):s.bellAudio_.setAttribute("src",e)},"desktop-notification-bell":function(e){e&&Notification?(s.desktopNotificationBell_="granted"===Notification.permission,s.desktopNotificationBell_||console.warn("desktop-notification-bell is true but we do not have permission to display notifications.")):s.desktopNotificationBell_=!1},"background-color":function(e){s.setBackgroundColor(e)},"background-image":function(e){s.scrollPort_.setBackgroundImage(e)},"background-size":function(e){s.scrollPort_.setBackgroundSize(e)},"background-position":function(e){s.scrollPort_.setBackgroundPosition(e)},"backspace-sends-backspace":function(e){s.keyboard.backspaceSendsBackspace=e},"character-map-overrides":function(e){null==e||e instanceof Object?(s.vt.characterMaps.reset(),s.vt.characterMaps.setOverrides(e)):console.warn("Preference character-map-modifications is not an object: "+e)},"cursor-blink":function(e){s.setCursorBlink(!!e)},"cursor-blink-cycle":function(e){e instanceof Array&&"number"==typeof e[0]&&"number"==typeof e[1]?s.cursorBlinkCycle_=e:s.cursorBlinkCycle_="number"==typeof e?[e,e]:[100,100]},"cursor-color":function(e){s.setCursorColor(e)},"color-palette-overrides":function(e){if(null==e||e instanceof Object||e instanceof Array){if(t.colors.colorPalette=t.colors.stockColorPalette.concat(),e)for(var i in e){var r=parseInt(i);if(isNaN(r)||r<0||r>255)console.log("Invalid value in palette: "+i+": "+e[i]);else if(e[r]){var o=t.colors.normalizeCSS(e[r]);o&&(t.colors.colorPalette[r]=o)}}s.primaryScreen_.textAttributes.resetColorPalette(),s.alternateScreen_.textAttributes.resetColorPalette()}else console.warn("Preference color-palette-overrides is not an array or object: "+e)},"copy-on-select":function(e){s.copyOnSelect=!!e},"use-default-window-copy":function(e){s.useDefaultWindowCopy=!!e},"clear-selection-after-copy":function(e){s.clearSelectionAfterCopy=!!e},"ctrl-plus-minus-zero-zoom":function(e){s.keyboard.ctrlPlusMinusZeroZoom=e},"ctrl-c-copy":function(e){s.keyboard.ctrlCCopy=e},"ctrl-v-paste":function(e){s.keyboard.ctrlVPaste=e,s.scrollPort_.setCtrlVPaste(e)},"east-asian-ambiguous-as-two-column":function(e){t.wc.regardCjkAmbiguous=e},"enable-8-bit-control":function(e){s.vt.enable8BitControl=!!e},"enable-bold":function(e){s.syncBoldSafeState()},"enable-bold-as-bright":function(e){s.primaryScreen_.textAttributes.enableBoldAsBright=!!e,s.alternateScreen_.textAttributes.enableBoldAsBright=!!e},"enable-blink":function(e){s.syncBlinkState()},"enable-clipboard-write":function(e){s.vt.enableClipboardWrite=!!e},"enable-dec12":function(e){s.vt.enableDec12=!!e},"font-family":function(e){s.syncFontFamily()},"font-size":function(e){s.setFontSize(e)},"font-smoothing":function(e){s.syncFontFamily()},"foreground-color":function(e){s.setForegroundColor(e)},"home-keys-scroll":function(e){s.keyboard.homeKeysScroll=e},keybindings:function(e){if(s.keyboard.bindings.clear(),e)if(e instanceof Object)try{s.keyboard.bindings.addBindings(e)}catch(e){console.error("Error in keybindings preference: "+e)}else console.error("Error in keybindings preference: Expected object")},"max-string-sequence":function(e){s.vt.maxStringSequence=e},"media-keys-are-fkeys":function(e){s.keyboard.mediaKeysAreFKeys=e},"meta-sends-escape":function(e){s.keyboard.metaSendsEscape=e},"mouse-right-click-paste":function(e){s.mouseRightClickPaste=e},"mouse-paste-button":function(e){s.syncMousePasteButton()},"page-keys-scroll":function(e){s.keyboard.pageKeysScroll=e},"pass-alt-number":function(e){null==e&&(e=!window.navigator.userAgent.match(/Mac OS X/)&&"popup"!=i.windowType);s.passAltNumber=e},"pass-ctrl-number":function(e){null==e&&(e=!window.navigator.userAgent.match(/Mac OS X/)&&"popup"!=i.windowType);s.passCtrlNumber=e},"pass-meta-number":function(e){null==e&&(e=window.navigator.userAgent.match(/Mac OS X/)&&"popup"!=i.windowType);s.passMetaNumber=e},"pass-meta-v":function(e){s.keyboard.passMetaV=e},"receive-encoding":function(e){/^(utf-8|raw)$/.test(e)||(console.warn('Invalid value for "receive-encoding": '+e),e="utf-8"),s.vt.characterEncoding=e},"scroll-on-keystroke":function(e){s.scrollOnKeystroke_=e},"scroll-on-output":function(e){s.scrollOnOutput_=e},"scrollbar-visible":function(e){s.setScrollbarVisible(e)},"scroll-wheel-may-send-arrow-keys":function(e){s.scrollWheelArrowKeys_=e},"scroll-wheel-move-multiplier":function(e){s.setScrollWheelMoveMultipler(e)},"send-encoding":function(e){/^(utf-8|raw)$/.test(e)||(console.warn('Invalid value for "send-encoding": '+e),e="utf-8"),s.keyboard.characterEncoding=e},"shift-insert-paste":function(e){s.keyboard.shiftInsertPaste=e},"terminal-encoding":function(e){s.vt.setEncoding(e)},"user-css":function(e){s.scrollPort_.setUserCssUrl(e)},"user-css-text":function(e){s.scrollPort_.setUserCssText(e)},"word-break-match-left":function(e){s.primaryScreen_.wordBreakMatchLeft=e,s.alternateScreen_.wordBreakMatchLeft=e},"word-break-match-right":function(e){s.primaryScreen_.wordBreakMatchRight=e,s.alternateScreen_.wordBreakMatchRight=e},"word-break-match-middle":function(e){s.primaryScreen_.wordBreakMatchMiddle=e,s.alternateScreen_.wordBreakMatchMiddle=e}}),this.prefs_.readStorage(function(){this.prefs_.notifyAll(),r&&r()}.bind(this))},i.Terminal.prototype.getPrefs=function(){return this.prefs_},i.Terminal.prototype.setBracketedPaste=function(e){this.options_.bracketedPaste=e},i.Terminal.prototype.setCursorColor=function(e){this.cursorColor_=e,this.cursorNode_.style.backgroundColor=e,this.cursorNode_.style.borderColor=e},i.Terminal.prototype.getCursorColor=function(){return this.cursorColor_},i.Terminal.prototype.setSelectionEnabled=function(e){this.enableMouseDragScroll=e},i.Terminal.prototype.setBackgroundColor=function(e){this.backgroundColor_=t.colors.normalizeCSS(e),this.primaryScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.alternateScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.scrollPort_.setBackgroundColor(e)},i.Terminal.prototype.getBackgroundColor=function(){return this.backgroundColor_},i.Terminal.prototype.setForegroundColor=function(e){this.foregroundColor_=t.colors.normalizeCSS(e),this.primaryScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.alternateScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.scrollPort_.setForegroundColor(e)},i.Terminal.prototype.getForegroundColor=function(){return this.foregroundColor_},i.Terminal.prototype.runCommandClass=function(e,t){var i=this.prefs_.get("environment");"object"==typeof i&&null!=i||(i={});var r=this;this.command=new e({argString:t||"",io:this.io.push(),environment:i,onExit:function(e){r.io.pop(),r.uninstallKeyboard(),r.prefs_.get("close-on-exit")&&window.close()}}),this.installKeyboard(),this.command.run()},i.Terminal.prototype.isPrimaryScreen=function(){return this.screen_==this.primaryScreen_},i.Terminal.prototype.installKeyboard=function(){this.keyboard.installKeyboard(this.scrollPort_.getDocument().body)},i.Terminal.prototype.uninstallKeyboard=function(){this.keyboard.installKeyboard(null)},i.Terminal.prototype.setCssVar=function(e,t,i="--hterm-"){this.document_.documentElement.style.setProperty(`${i}${e}`,t)},i.Terminal.prototype.setFontSize=function(e){0===e&&(e=this.prefs_.get("font-size")),this.scrollPort_.setFontSize(e),this.setCssVar("charsize-width",this.scrollPort_.characterSize.width+"px"),this.setCssVar("charsize-height",this.scrollPort_.characterSize.height+"px")},i.Terminal.prototype.getFontSize=function(){return this.scrollPort_.getFontSize()},i.Terminal.prototype.getFontFamily=function(){return this.scrollPort_.getFontFamily()},i.Terminal.prototype.syncFontFamily=function(){this.scrollPort_.setFontFamily(this.prefs_.get("font-family"),this.prefs_.get("font-smoothing")),this.syncBoldSafeState()},i.Terminal.prototype.syncMousePasteButton=function(){var e=this.prefs_.get("mouse-paste-button");if("number"!=typeof e){var t=navigator.userAgent.match(/\(X11;\s+(\S+)/);t&&"CrOS"!=t[1]?this.mousePasteButton=2:this.mousePasteButton=1}else this.mousePasteButton=e},i.Terminal.prototype.syncBoldSafeState=function(){var e=this.prefs_.get("enable-bold");if(null!==e)return this.primaryScreen_.textAttributes.enableBold=e,void(this.alternateScreen_.textAttributes.enableBold=e);var t=this.scrollPort_.measureCharacterSize(),i=this.scrollPort_.measureCharacterSize("bold"),r=t.equals(i);r||console.warn("Bold characters disabled: Size of bold weight differs from normal. Font family is: "+this.scrollPort_.getFontFamily()),this.primaryScreen_.textAttributes.enableBold=r,this.alternateScreen_.textAttributes.enableBold=r},i.Terminal.prototype.syncBlinkState=function(){this.setCssVar("node-duration",this.prefs_.get("enable-blink")?"0.7s":"0")},i.Terminal.prototype.syncMouseStyle=function(){this.setCssVar("mouse-cursor-style",this.vt.mouseReport==this.vt.MOUSE_REPORT_DISABLED?"var(--hterm-mouse-cursor-text)":"var(--hterm-mouse-cursor-pointer)")},i.Terminal.prototype.saveCursor=function(){return this.screen_.cursorPosition.clone()},i.Terminal.prototype.getTextAttributes=function(){return this.screen_.textAttributes},i.Terminal.prototype.setTextAttributes=function(e){this.screen_.textAttributes=e},i.Terminal.prototype.getZoomFactor=function(){return this.scrollPort_.characterSize.zoomFactor},i.Terminal.prototype.setWindowTitle=function(e){window.document.title=e},i.Terminal.prototype.restoreCursor=function(e){var i=t.f.clamp(e.row,0,this.screenSize.height-1),r=t.f.clamp(e.column,0,this.screenSize.width-1);this.screen_.setCursorPosition(i,r),(e.column>r||e.column==r&&e.overflow)&&(this.screen_.cursorPosition.overflow=!0)},i.Terminal.prototype.clearCursorOverflow=function(){this.screen_.cursorPosition.overflow=!1},i.Terminal.prototype.setCursorShape=function(e){this.cursorShape_=e,this.restyleCursor_()},i.Terminal.prototype.getCursorShape=function(){return this.cursorShape_},i.Terminal.prototype.setWidth=function(e){null!=e?(this.div_.style.width=Math.ceil(this.scrollPort_.characterSize.width*e+this.scrollPort_.currentScrollbarWidthPx)+"px",this.realizeSize_(e,this.screenSize.height),this.scheduleSyncCursorPosition_()):this.div_.style.width="100%"},i.Terminal.prototype.setHeight=function(e){null!=e?(this.div_.style.height=this.scrollPort_.characterSize.height*e+"px",this.realizeSize_(this.screenSize.width,e),this.scheduleSyncCursorPosition_()):this.div_.style.height="100%"},i.Terminal.prototype.realizeSize_=function(e,t){e!=this.screenSize.width&&this.realizeWidth_(e),t!=this.screenSize.height&&this.realizeHeight_(t),this.io.onTerminalResize_(e,t)},i.Terminal.prototype.realizeWidth_=function(e){if(e<=0)throw new Error("Attempt to realize bad width: "+e);var t=e-this.screen_.getWidth();if(this.screenSize.width=e,this.screen_.setColumnCount(e),t>0)this.defaultTabStops&&this.setDefaultTabStops(this.screenSize.width-t);else for(var i=this.tabStops_.length-1;i>=0&&!(this.tabStops_[i]0){if(t<=this.scrollbackRows_.length){var o=Math.min(t,this.scrollbackRows_.length),n=this.scrollbackRows_.splice(this.scrollbackRows_.length-o,o);this.screen_.unshiftRows(n),t-=o,i.row+=o}t&&this.appendRows_(t)}this.setVTScrollRegion(null,null),this.restoreCursor(i)},i.Terminal.prototype.scrollHome=function(){this.scrollPort_.scrollRowToTop(0)},i.Terminal.prototype.scrollEnd=function(){this.scrollPort_.scrollRowToBottom(this.getRowCount())},i.Terminal.prototype.scrollPageUp=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e-this.screenSize.height+1)},i.Terminal.prototype.scrollPageDown=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e+this.screenSize.height-1)},i.Terminal.prototype.scrollLineUp=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e-1)},i.Terminal.prototype.scrollLineDown=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e+1)},i.Terminal.prototype.wipeContents=function(){this.scrollbackRows_.length=0,this.scrollPort_.resetCache(),[this.primaryScreen_,this.alternateScreen_].forEach(function(e){var t=e.getHeight();t>0&&(this.renumberRows_(0,t),this.clearHome(e))}.bind(this)),this.syncCursorPosition_(),this.scrollPort_.invalidate()},i.Terminal.prototype.reset=function(){this.clearAllTabStops(),this.setDefaultTabStops(),this.clearHome(this.primaryScreen_),this.primaryScreen_.textAttributes.reset(),this.clearHome(this.alternateScreen_),this.alternateScreen_.textAttributes.reset(),this.setCursorBlink(!!this.prefs_.get("cursor-blink")),this.vt.reset(),this.softReset()},i.Terminal.prototype.softReset=function(){this.options_=new i.Options,this.options_.cursorBlink=!!this.timeouts_.cursorBlink,this.primaryScreen_.textAttributes.resetColorPalette(),this.alternateScreen_.textAttributes.resetColorPalette(),this.setVTScrollRegion(null,null),this.setCursorVisible(!0)},i.Terminal.prototype.forwardTabStop=function(){for(var e=this.screen_.cursorPosition.column,t=0;te)return void this.setCursorColumn(this.tabStops_[t]);var i=this.screen_.cursorPosition.overflow;this.setCursorColumn(this.screenSize.width-1),this.screen_.cursorPosition.overflow=i},i.Terminal.prototype.backwardTabStop=function(){for(var e=this.screen_.cursorPosition.column,t=this.tabStops_.length-1;t>=0;t--)if(this.tabStops_[t]=0;t--){if(this.tabStops_[t]==e)return;if(this.tabStops_[t]0){var n=this.screen_.shiftRows(o);Array.prototype.push.apply(this.scrollbackRows_,n),this.scrollPort_.isScrolledEnd&&this.scheduleScrollDown_()}t>=this.screen_.rowsArray.length&&(t=this.screen_.rowsArray.length-1),this.setAbsoluteCursorPosition(t,0)},i.Terminal.prototype.moveRows_=function(e,t,i){var r,s,o=this.screen_.removeRows(e,t);this.screen_.insertRows(i,o),e=this.screenSize.width&&(a=!0,n=this.screenSize.width-this.screen_.cursorPosition.column),a&&!this.options_.wraparound?(o=t.wc.substr(e,r,n-1)+t.wc.substr(e,s-1),n=s):o=t.wc.substr(e,r,n);for(var h=i.TextAttributes.splitWidecharString(o),l=0;l=0;s--)this.setAbsoluteCursorPosition(t+s,0),this.screen_.clearCursorRow()},i.Terminal.prototype.deleteLines=function(e){var t=this.saveCursor(),i=t.row,r=this.getVTScrollBottom(),s=r-i+1,o=r-(e=Math.min(e,s))+1;e!=s&&this.moveRows_(i,e,o);for(var n=0;nt)this.setCssVar("cursor-offset-row","-1");else{this.options_.cursorVisible&&"none"==this.cursorNode_.style.display&&(this.cursorNode_.style.display=""),this.setCssVar("cursor-offset-row",i-e+" + "+`${this.scrollPort_.visibleRowTopMargin}px`),this.setCssVar("cursor-offset-col",this.screen_.cursorPosition.column),this.cursorNode_.setAttribute("title","("+this.screen_.cursorPosition.column+", "+this.screen_.cursorPosition.row+")");var r=this.document_.getSelection();r&&r.isCollapsed&&this.screen_.syncSelectionCaret(r)}},i.Terminal.prototype.restyleCursor_=function(){var e=this.cursorShape_;"false"==this.cursorNode_.getAttribute("focus")&&(e=i.Terminal.cursorShape.BLOCK);var t=this.cursorNode_.style;switch(e){case i.Terminal.cursorShape.BEAM:t.height="var(--hterm-charsize-height)",t.backgroundColor="transparent",t.borderBottomStyle=null,t.borderLeftStyle="solid";break;case i.Terminal.cursorShape.UNDERLINE:t.height=this.scrollPort_.characterSize.baseline+"px",t.backgroundColor="transparent",t.borderBottomStyle="solid",t.borderLeftStyle=null;break;default:t.height="var(--hterm-charsize-height)",t.backgroundColor=this.cursorColor_,t.borderBottomStyle=null,t.borderLeftStyle=null}},i.Terminal.prototype.scheduleSyncCursorPosition_=function(){if(!this.timeouts_.syncCursor){var e=this;this.timeouts_.syncCursor=setTimeout(function(){e.syncCursorPosition_(),delete e.timeouts_.syncCursor},0)}},i.Terminal.prototype.showZoomWarning_=function(e){if(!this.zoomWarningNode_){if(!e)return;this.zoomWarningNode_=this.document_.createElement("div"),this.zoomWarningNode_.id="hterm:zoom-warning",this.zoomWarningNode_.style.cssText="color: black;background-color: #ff2222;font-size: large;border-radius: 8px;opacity: 0.75;padding: 0.2em 0.5em 0.2em 0.5em;top: 0.5em;right: 1.2em;position: absolute;-webkit-text-size-adjust: none;-webkit-user-select: none;-moz-text-size-adjust: none;-moz-user-select: none;",this.zoomWarningNode_.addEventListener("click",function(e){this.parentNode.removeChild(this)})}this.zoomWarningNode_.textContent=t.MessageManager.replaceReferences(i.zoomWarningMessage,[parseInt(100*this.scrollPort_.characterSize.zoomFactor)]),this.zoomWarningNode_.style.fontFamily=this.prefs_.get("font-family"),e?this.zoomWarningNode_.parentNode||this.div_.parentNode.appendChild(this.zoomWarningNode_):this.zoomWarningNode_.parentNode&&this.zoomWarningNode_.parentNode.removeChild(this.zoomWarningNode_)},i.Terminal.prototype.showOverlay=function(e,t){if(!this.overlayNode_){if(!this.div_)return;this.overlayNode_=this.document_.createElement("div"),this.overlayNode_.style.cssText="border-radius: 15px;font-size: xx-large;opacity: 0.75;padding: 0.2em 0.5em 0.2em 0.5em;position: absolute;-webkit-user-select: none;-webkit-transition: opacity 180ms ease-in;-moz-user-select: none;-moz-transition: opacity 180ms ease-in;",this.overlayNode_.addEventListener("mousedown",function(e){e.preventDefault(),e.stopPropagation()},!0)}this.overlayNode_.style.color=this.prefs_.get("background-color"),this.overlayNode_.style.backgroundColor=this.prefs_.get("foreground-color"),this.overlayNode_.style.fontFamily=this.prefs_.get("font-family"),this.overlayNode_.textContent=e,this.overlayNode_.style.opacity="0.75",this.overlayNode_.parentNode||this.div_.appendChild(this.overlayNode_);var r=i.getClientSize(this.div_),s=i.getClientSize(this.overlayNode_);this.overlayNode_.style.top=(r.height-s.height)/2+"px",this.overlayNode_.style.left=(r.width-s.width-this.scrollPort_.currentScrollbarWidthPx)/2+"px";var o=this;this.overlayTimeout_&&clearTimeout(this.overlayTimeout_),null!==t&&(this.overlayTimeout_=setTimeout(function(){o.overlayNode_.style.opacity="0",o.overlayTimeout_=setTimeout(function(){o.overlayNode_.parentNode&&o.overlayNode_.parentNode.removeChild(o.overlayNode_),o.overlayTimeout_=null,o.overlayNode_.style.opacity="0.75"},200)},t||1500))},i.Terminal.prototype.paste=function(){return i.pasteFromClipboard(this.document_)},i.Terminal.prototype.copyStringToClipboard=function(e){this.prefs_.get("enable-clipboard-notice")&&setTimeout(this.showOverlay.bind(this,i.notifyCopyMessage,500),200);var t=this.document_.createElement("pre");t.id="hterm:copy-to-clipboard-source",t.textContent=e,t.style.cssText="-webkit-user-select: text;-moz-user-select: text;position: absolute;top: -99px",this.document_.body.appendChild(t);var r=this.document_.getSelection(),s=r.anchorNode,o=r.anchorOffset,n=r.focusNode,a=r.focusOffset;r.selectAllChildren(t),i.copySelectionToClipboard(this.document_),r.extend&&(r.collapse(s,o),r.extend(n,a)),t.parentNode.removeChild(t)},i.Terminal.prototype.getSelectionText=function(){var e=this.scrollPort_.selection;if(e.sync(),e.isCollapsed)return null;var r=e.startOffset,s=e.startNode;if("X-ROW"!=s.nodeName)for("#text"==s.nodeName&&"SPAN"==s.parentNode.nodeName&&(s=s.parentNode);s.previousSibling;)s=s.previousSibling,r+=i.TextAttributes.nodeWidth(s);var o=i.TextAttributes.nodeWidth(e.endNode)-e.endOffset;if("X-ROW"!=(s=e.endNode).nodeName)for("#text"==s.nodeName&&"SPAN"==s.parentNode.nodeName&&(s=s.parentNode);s.nextSibling;)s=s.nextSibling,o+=i.TextAttributes.nodeWidth(s);var n=this.getRowsText(e.startRow.rowIndex,e.endRow.rowIndex+1);return t.wc.substring(n,r,t.wc.strWidth(n)-o)},i.Terminal.prototype.copySelectionToClipboard=function(){var e=this.getSelectionText();null!=e&&this.copyStringToClipboard(e)},i.Terminal.prototype.overlaySize=function(){this.showOverlay(this.screenSize.width+"x"+this.screenSize.height)},i.Terminal.prototype.onVTKeystroke=function(e){this.scrollOnKeystroke_&&this.scrollPort_.scrollRowToBottom(this.getRowCount()),this.io.onVTKeystroke(this.keyboard.encode(e))},i.Terminal.prototype.openUrl=function(e){window.chrome&&window.chrome.browser?chrome.browser.openTab({url:e}):window.open(e,"_blank").focus()},i.Terminal.prototype.openSelectedUrl_=function(){var e=this.getSelectionText();if((null!=e||(this.screen_.expandSelection(this.document_.getSelection()),null!=(e=this.getSelectionText())))&&!(e.length>2048||e.search(/[\s\[\](){}<>"'\\^`]/)>=0)){if(e.search("^[a-zA-Z][a-zA-Z0-9+.-]*://")<0)if("mailto"===e.split(":",1)[0]);else e="http://"+e;this.openUrl(e)}},i.Terminal.prototype.onMouse_=function(e){if(!e.processedByTerminalHandler_){var i=!this.defeatMouseReports_&&this.vt.mouseReport!=this.vt.MOUSE_REPORT_DISABLED;if(e.processedByTerminalHandler_=!0,e.terminalRow=parseInt((e.clientY-this.scrollPort_.visibleRowTopMargin)/this.scrollPort_.characterSize.height)+1,e.terminalColumn=parseInt(e.clientX/this.scrollPort_.characterSize.width)+1,!("mousedown"==e.type&&e.terminalColumn>this.screenSize.width)){if(this.options_.cursorVisible&&!i&&(e.terminalRow-1==this.screen_.cursorPosition.row&&e.terminalColumn-1==this.screen_.cursorPosition.column?this.cursorNode_.style.display="none":"none"==this.cursorNode_.style.display&&(this.cursorNode_.style.display="")),"mousedown"==e.type&&(e.altKey||!i?(this.defeatMouseReports_=!0,this.setSelectionEnabled(!0)):(this.defeatMouseReports_=!1,this.document_.getSelection().collapseToEnd(),this.setSelectionEnabled(!1),e.preventDefault())),i)this.scrollBlockerNode_.engaged||("mousedown"==e.type?(this.scrollBlockerNode_.engaged=!0,this.scrollBlockerNode_.style.top=e.clientY-5+"px",this.scrollBlockerNode_.style.left=e.clientX-5+"px"):"mousemove"==e.type&&(this.document_.getSelection().collapseToEnd(),e.preventDefault())),this.onMouse(e);else{if("dblclick"==e.type&&this.copyOnSelect&&(this.screen_.expandSelection(this.document_.getSelection()),this.copySelectionToClipboard(this.document_)),"click"==e.type&&!e.shiftKey&&(e.ctrlKey||e.metaKey))return clearTimeout(this.timeouts_.openUrl),void(this.timeouts_.openUrl=setTimeout(this.openSelectedUrl_.bind(this),500));if("mousedown"==e.type&&(this.mouseRightClickPaste&&2==e.button||e.button==this.mousePasteButton)&&(this.paste()||console.warning("Could not paste manually due to web restrictions")),"mouseup"==e.type&&0==e.button&&this.copyOnSelect&&!this.document_.getSelection().isCollapsed&&this.copySelectionToClipboard(this.document_),"mousemove"!=e.type&&"mouseup"!=e.type||!this.scrollBlockerNode_.engaged||(this.scrollBlockerNode_.engaged=!1,this.scrollBlockerNode_.style.top="-99px"),this.scrollWheelArrowKeys_&&!e.shiftKey&&this.keyboard.applicationCursor&&!this.isPrimaryScreen()&&"wheel"==e.type){var r=this.scrollPort_.scrollWheelDelta(e),s=t.f.smartFloorDivide(Math.abs(r),this.scrollPort_.characterSize.height),o="O"+(r<0?"B":"A");this.io.sendString(o.repeat(s)),e.preventDefault()}}"mouseup"==e.type&&this.document_.getSelection().isCollapsed&&(this.defeatMouseReports_=!1)}}},i.Terminal.prototype.onMouse=function(e){},i.Terminal.prototype.onFocusChange_=function(e){this.cursorNode_.setAttribute("focus",e),this.restyleCursor_(),!0===e&&this.closeBellNotifications_()},i.Terminal.prototype.onScroll_=function(){this.scheduleSyncCursorPosition_()},i.Terminal.prototype.onPaste_=function(e){var t=e.text.replace(/\n/gm,"\r");t=this.keyboard.encode(t),this.options_.bracketedPaste&&(t="[200~"+t+"[201~"),this.io.sendString(t)},i.Terminal.prototype.onCopy_=function(e){this.useDefaultWindowCopy||(e.preventDefault(),setTimeout(this.copySelectionToClipboard.bind(this),0))},i.Terminal.prototype.onResize_=function(){var e=Math.floor(this.scrollPort_.getScreenWidth()/this.scrollPort_.characterSize.width)||0,i=t.f.smartFloorDivide(this.scrollPort_.getScreenHeight(),this.scrollPort_.characterSize.height)||0;if(!(e<=0||i<=0)){var r=e!=this.screenSize.width||i!=this.screenSize.height;this.realizeSize_(e,i),this.showZoomWarning_(1!=this.scrollPort_.characterSize.zoomFactor),r&&this.overlaySize(),this.restyleCursor_(),this.scheduleSyncCursorPosition_()}},i.Terminal.prototype.onCursorBlink_=function(){this.options_.cursorBlink?"false"==this.cursorNode_.getAttribute("focus")||"0"==this.cursorNode_.style.opacity?(this.cursorNode_.style.opacity="1",this.timeouts_.cursorBlink=setTimeout(this.myOnCursorBlink_,this.cursorBlinkCycle_[0])):(this.cursorNode_.style.opacity="0",this.timeouts_.cursorBlink=setTimeout(this.myOnCursorBlink_,this.cursorBlinkCycle_[1])):delete this.timeouts_.cursorBlink},i.Terminal.prototype.setScrollbarVisible=function(e){this.scrollPort_.setScrollbarVisible(e)},i.Terminal.prototype.setScrollWheelMoveMultipler=function(e){this.scrollPort_.setScrollWheelMoveMultipler(e)},i.Terminal.prototype.closeBellNotifications_=function(){this.bellNotificationList_.forEach(function(e){e.close()}),this.bellNotificationList_.length=0},t.rtdep("lib.encodeUTF8"),i.Terminal.IO=function(e){this.terminal_=e,this.previousIO_=null},i.Terminal.IO.prototype.showOverlay=function(e,t){this.terminal_.showOverlay(e,t)},i.Terminal.IO.prototype.createFrame=function(e,t){return new i.Frame(this.terminal_,e,t)},i.Terminal.IO.prototype.setTerminalProfile=function(e){this.terminal_.setProfile(e)},i.Terminal.IO.prototype.push=function(){var e=new i.Terminal.IO(this.terminal_);return e.keyboardCaptured_=this.keyboardCaptured_,e.columnCount=this.columnCount,e.rowCount=this.rowCount,e.previousIO_=this.terminal_.io,this.terminal_.io=e,e},i.Terminal.IO.prototype.pop=function(){this.terminal_.io=this.previousIO_},i.Terminal.IO.prototype.sendString=function(e){console.log("Unhandled sendString: "+e)},i.Terminal.IO.prototype.onVTKeystroke=function(e){console.log("Unobserverd VT keystroke: "+JSON.stringify(e))},i.Terminal.IO.prototype.onTerminalResize_=function(e,t){for(var i=this;i;)i.columnCount=e,i.rowCount=t,i=i.previousIO_;this.onTerminalResize(e,t)},i.Terminal.IO.prototype.onTerminalResize=function(e,t){},i.Terminal.IO.prototype.writeUTF8=function(e){if(this.terminal_.io!=this)throw"Attempt to print from inactive IO object.";this.terminal_.interpret(e)},i.Terminal.IO.prototype.writelnUTF8=function(e){if(this.terminal_.io!=this)throw"Attempt to print from inactive IO object.";this.terminal_.interpret(e+"\r\n")},i.Terminal.IO.prototype.print=i.Terminal.IO.prototype.writeUTF16=function(e){this.writeUTF8(t.encodeUTF8(e))},i.Terminal.IO.prototype.println=i.Terminal.IO.prototype.writelnUTF16=function(e){this.writelnUTF8(t.encodeUTF8(e))},t.rtdep("lib.colors"),i.TextAttributes=function(e){this.document_=e,this.foregroundSource=this.SRC_DEFAULT,this.backgroundSource=this.SRC_DEFAULT,this.foreground=this.DEFAULT_COLOR,this.background=this.DEFAULT_COLOR,this.defaultForeground="rgb(255, 255, 255)",this.defaultBackground="rgb(0, 0, 0)",this.bold=!1,this.faint=!1,this.italic=!1,this.blink=!1,this.underline=!1,this.strikethrough=!1,this.inverse=!1,this.invisible=!1,this.wcNode=!1,this.asciiNode=!0,this.tileData=null,this.colorPalette=null,this.resetColorPalette()},i.TextAttributes.prototype.enableBold=!0,i.TextAttributes.prototype.enableBoldAsBright=!0,i.TextAttributes.prototype.DEFAULT_COLOR=t.f.createEnum(""),i.TextAttributes.prototype.SRC_DEFAULT="default",i.TextAttributes.prototype.SRC_RGB="rgb",i.TextAttributes.prototype.setDocument=function(e){this.document_=e},i.TextAttributes.prototype.clone=function(){var e=new i.TextAttributes(null);for(var t in this)e[t]=this[t];return e.colorPalette=this.colorPalette.concat(),e},i.TextAttributes.prototype.reset=function(){this.foregroundSource=this.SRC_DEFAULT,this.backgroundSource=this.SRC_DEFAULT,this.foreground=this.DEFAULT_COLOR,this.background=this.DEFAULT_COLOR,this.bold=!1,this.faint=!1,this.italic=!1,this.blink=!1,this.underline=!1,this.strikethrough=!1,this.inverse=!1,this.invisible=!1,this.wcNode=!1,this.asciiNode=!0},i.TextAttributes.prototype.resetColorPalette=function(){this.colorPalette=t.colors.colorPalette.concat(),this.syncColors()},i.TextAttributes.prototype.isDefault=function(){return this.foregroundSource==this.SRC_DEFAULT&&this.backgroundSource==this.SRC_DEFAULT&&!this.bold&&!this.faint&&!this.italic&&!this.blink&&!this.underline&&!this.strikethrough&&!this.inverse&&!this.invisible&&!this.wcNode&&this.asciiNode&&null==this.tileData},i.TextAttributes.prototype.createContainer=function(e){if(this.isDefault())return this.document_.createTextNode(e);var t=this.document_.createElement("span"),i=t.style,r=[];this.foreground!=this.DEFAULT_COLOR&&(i.color=this.foreground),this.background!=this.DEFAULT_COLOR&&(i.backgroundColor=this.background),this.enableBold&&this.bold&&(i.fontWeight="bold"),this.faint&&(t.faint=!0),this.italic&&(i.fontStyle="italic"),this.blink&&(r.push("blink-node"),t.blinkNode=!0);var s="";return this.underline&&(s+=" underline",t.underline=!0),this.strikethrough&&(s+=" line-through",t.strikethrough=!0),s&&(i.textDecoration=s),this.wcNode&&(r.push("wc-node"),t.wcNode=!0,t.asciiNode=!1),null!=this.tileData&&(r.push("tile"),r.push("tile_"+this.tileData),t.tileNode=!0),e&&(t.textContent=e),r.length&&(t.className=r.join(" ")),t},i.TextAttributes.prototype.matchesContainer=function(e){if("string"==typeof e||3==e.nodeType)return this.isDefault();var t=e.style;return!(this.wcNode||e.wcNode||this.asciiNode!=this.asciiNode||null!=this.tileData||e.tileNode||this.foreground!=t.color||this.background!=t.backgroundColor||(this.enableBold&&this.bold)!=!!t.fontWeight||this.blink!=e.blinkNode||this.italic!=!!t.fontStyle||!!this.underline!=!!e.underline||!!this.strikethrough!=!!e.strikethrough)},i.TextAttributes.prototype.setDefaults=function(e,t){this.defaultForeground=e,this.defaultBackground=t,this.syncColors()},i.TextAttributes.prototype.syncColors=function(){var e,i=this.foregroundSource,r=this.backgroundSource,s=this.DEFAULT_COLOR,o=this.DEFAULT_COLOR;if(this.inverse&&(i=this.backgroundSource,r=this.foregroundSource,s=this.defaultBackground,o=this.defaultForeground),this.enableBoldAsBright&&this.bold&&i!=this.SRC_DEFAULT&&i!=this.SRC_RGB&&(i=(e=i)<8?e+8:e),this.invisible&&(i=r,s=this.defaultBackground),i!=this.SRC_RGB&&(this.foreground=i==this.SRC_DEFAULT?s:this.colorPalette[i]),this.faint&&!this.invisible){var n=this.foreground==this.DEFAULT_COLOR?this.defaultForeground:this.foreground;this.foreground=t.colors.mix(n,"rgb(0, 0, 0)",.3333)}r!=this.SRC_RGB&&(this.background=r==this.SRC_DEFAULT?o:this.colorPalette[r])},i.TextAttributes.containersMatch=function(e,t){if("string"==typeof e)return i.TextAttributes.containerIsDefault(t);if(e.nodeType!=t.nodeType)return!1;if(3==e.nodeType)return!0;var r=e.style,s=t.style;return r.color==s.color&&r.backgroundColor==s.backgroundColor&&r.fontWeight==s.fontWeight&&r.fontStyle==s.fontStyle&&r.textDecoration==s.textDecoration},i.TextAttributes.containerIsDefault=function(e){return"string"==typeof e||3==e.nodeType},i.TextAttributes.nodeWidth=function(e){return e.asciiNode?e.textContent.length:t.wc.strWidth(e.textContent)},i.TextAttributes.nodeSubstr=function(e,i,r){return e.asciiNode?e.textContent.substr(i,r):t.wc.substr(e.textContent,i,r)},i.TextAttributes.nodeSubstring=function(e,i,r){return e.asciiNode?e.textContent.substring(i,r):t.wc.substring(e.textContent,i,r)},i.TextAttributes.splitWidecharString=function(e){for(var i=[],r=0,s=0,o=!0,n=0;n0?0:1),n|=r,i=""+String.fromCharCode(n)+s+o,e.preventDefault();break;case"mousedown":var n=Math.min(e.button,2)+32;n|=r,i=""+String.fromCharCode(n)+s+o;break;case"mouseup":i="#"+s+o;break;case"mousemove":this.mouseReport==this.MOUSE_REPORT_DRAG&&e.buttons&&(n=32,1&e.buttons?n+=0:4&e.buttons?n+=1:2&e.buttons?n+=2:n+=3,n+=32,n|=r,i=""+String.fromCharCode(n)+s+o);break;case"click":case"dblclick":break;default:console.error("Unknown mouse event: "+e.type,e)}i&&this.terminal.io.sendString(i)}},i.VT.prototype.interpret=function(e){for(this.parseState_.resetBuf(this.decode(e));!this.parseState_.isComplete();){var t=this.parseState_.func,i=this.parseState_.pos;e=this.parseState_.buf;if(this.parseState_.func.call(this,this.parseState_),this.parseState_.func==t&&this.parseState_.pos==i&&this.parseState_.buf==e)throw"Parser did not alter the state!"}},i.VT.prototype.decode=function(e){return"utf-8"==this.characterEncoding?this.decodeUTF8(e):e},i.VT.prototype.encodeUTF8=function(e){return t.encodeUTF8(e)},i.VT.prototype.decodeUTF8=function(e){return this.utf8Decoder_.decode(e)},i.VT.prototype.setEncoding=function(e){switch(e){default:console.warn('Invalid value for "terminal-encoding": '+e);case"iso-2022":this.codingSystemUtf8_=!1,this.codingSystemLocked_=!1;break;case"utf-8-locked":this.codingSystemUtf8_=!0,this.codingSystemLocked_=!0;break;case"utf-8":this.codingSystemUtf8_=!0,this.codingSystemLocked_=!1}this.updateEncodingState_()},i.VT.prototype.updateEncodingState_=function(){var e=Object.keys(i.VT.CC1).filter(e=>!this.codingSystemUtf8_||e.charCodeAt()<128).map(e=>"\\x"+t.f.zpad(e.charCodeAt().toString(16),2)).join("");this.cc1Pattern_=new RegExp(`[${e}]`)},i.VT.prototype.parseUnknown_=function(e){var t=this;function i(e){!t.codingSystemUtf8_&&t[t.GL].GL&&(e=t[t.GL].GL(e)),t.terminal.print(e)}var r=e.peekRemainingBuf(),s=r.search(this.cc1Pattern_);return 0==s?(this.dispatch("CC1",r.substr(0,1),e),void e.advance(1)):-1==s?(i(r),void e.reset()):(i(r.substr(0,s)),this.dispatch("CC1",r.substr(s,1),e),void e.advance(s+1))},i.VT.prototype.parseCSI_=function(e){var t=e.peekChar(),i=e.args;t>="@"&&t<="~"?(this.dispatch("CSI",this.leadingModifier_+this.trailingModifier_+t,e),e.resetParseFunction()):";"==t?this.trailingModifier_?e.resetParseFunction():(i.length||i.push(""),i.push("")):t>="0"&&t<="9"?this.trailingModifier_?e.resetParseFunction():i.length?i[i.length-1]+=t:i[0]=t:t>=" "&&t<="?"&&":"!=t?i.length?this.trailingModifier_+=t:this.leadingModifier_+=t:this.cc1Pattern_.test(t)?this.dispatch("CC1",t,e):e.resetParseFunction(),e.advance(1)},i.VT.prototype.parseUntilStringTerminator_=function(e){var t,i=e.peekRemainingBuf(),r=i.search(/(\x1b\\|\x07)/),s=e.args;return s.length||(s[0]="",s[1]=new Date),-1==r?(s[0]+=i,s[0].length>this.maxStringSequence&&(t="too long: "+s[0].length),-1!=s[0].indexOf("")&&(t="embedded escape: "+s[0].indexOf("")),new Date-s[1]>this.oscTimeLimit_&&(t="timeout expired: "+new Date-s[1]),t?(console.log("parseUntilStringTerminator_: aborting: "+t,s[0]),e.reset(s[0]),!1):(e.advance(i.length),!0)):s[0].length+r>this.maxStringSequence?(e.reset(s[0]+i),!1):(s[0]+=i.substr(0,r),e.resetParseFunction(),e.advance(r+(""==i.substr(r,1)?2:1)),!0)},i.VT.prototype.dispatch=function(e,t,r){var s=i.VT[e][t];s?s!=i.VT.ignore?"CC1"==e&&t>""&&!this.enable8BitControl?console.warn("Ignoring 8-bit control code: 0x"+t.charCodeAt(0).toString(16)):s.apply(this,[r,t]):this.warnUnimplemented&&console.warn("Ignored "+e+" code: "+JSON.stringify(t)):this.warnUnimplemented&&console.warn("Unknown "+e+" code: "+JSON.stringify(t))},i.VT.prototype.setANSIMode=function(e,t){4==e?this.terminal.setInsertMode(t):20==e?this.terminal.setAutoCarriageReturn(t):this.warnUnimplemented&&console.warn("Unimplemented ANSI Mode: "+e)},i.VT.prototype.setDECMode=function(e,t){switch(parseInt(e,10)){case 1:this.terminal.keyboard.applicationCursor=t;break;case 3:this.allowColumnWidthChanges_&&(this.terminal.setWidth(t?132:80),this.terminal.clearHome(),this.terminal.setVTScrollRegion(null,null));break;case 5:this.terminal.setReverseVideo(t);break;case 6:this.terminal.setOriginMode(t);break;case 7:this.terminal.setWraparound(t);break;case 12:this.enableDec12&&this.terminal.setCursorBlink(t);break;case 25:this.terminal.setCursorVisible(t);break;case 30:this.terminal.setScrollbarVisible(t);break;case 40:this.terminal.allowColumnWidthChanges_=t;break;case 45:this.terminal.setReverseWraparound(t);break;case 67:this.terminal.keyboard.backspaceSendsBackspace=t;break;case 1e3:this.mouseReport=t?this.MOUSE_REPORT_CLICK:this.MOUSE_REPORT_DISABLED,this.terminal.syncMouseStyle();break;case 1002:this.mouseReport=t?this.MOUSE_REPORT_DRAG:this.MOUSE_REPORT_DISABLED,this.terminal.syncMouseStyle();break;case 1010:this.terminal.scrollOnOutput=t;break;case 1011:this.terminal.scrollOnKeystroke=t;break;case 1036:this.terminal.keyboard.metaSendsEscape=t;break;case 1039:t?this.terminal.keyboard.previousAltSendsWhat_||(this.terminal.keyboard.previousAltSendsWhat_=this.terminal.keyboard.altSendsWhat,this.terminal.keyboard.altSendsWhat="escape"):this.terminal.keyboard.previousAltSendsWhat_&&(this.terminal.keyboard.altSendsWhat=this.terminal.keyboard.previousAltSendsWhat_,this.terminal.keyboard.previousAltSendsWhat_=null);break;case 47:case 1047:this.terminal.setAlternateMode(t);break;case 1048:this.savedState_.save();case 1049:t?(this.savedState_.save(),this.terminal.setAlternateMode(t),this.terminal.clear()):(this.terminal.setAlternateMode(t),this.savedState_.restore());break;case 2004:this.terminal.setBracketedPaste(t);break;default:this.warnUnimplemented&&console.warn("Unimplemented DEC Private Mode: "+e)}},i.VT.ignore=function(){},i.VT.CC1={},i.VT.ESC={},i.VT.CSI={},i.VT.OSC={},i.VT.VT52={},i.VT.CC1["\0"]=i.VT.ignore,i.VT.CC1[""]=i.VT.ignore,i.VT.CC1[""]=function(){this.terminal.ringBell()},i.VT.CC1["\b"]=function(){this.terminal.cursorLeft(1)},i.VT.CC1["\t"]=function(){this.terminal.forwardTabStop()},i.VT.CC1["\n"]=function(){this.terminal.formFeed()},i.VT.CC1["\v"]=i.VT.CC1["\n"],i.VT.CC1["\f"]=i.VT.CC1["\n"],i.VT.CC1["\r"]=function(){this.terminal.setCursorColumn(0)},i.VT.CC1[""]=function(){this.GL="G1"},i.VT.CC1[""]=function(){this.GL="G0"},i.VT.CC1[""]=i.VT.ignore,i.VT.CC1[""]=i.VT.ignore,i.VT.CC1[""]=function(e){"G1"==this.GL&&(this.GL="G0"),e.resetParseFunction(),this.terminal.print("?")},i.VT.CC1[""]=i.VT.CC1[""],i.VT.CC1[""]=function(e){e.func=function e(t){var i=t.consumeChar();""!=i&&(this.dispatch("ESC",i,t),t.func==e&&t.resetParseFunction())}},i.VT.CC1[""]=i.VT.ignore,i.VT.CC1["„"]=i.VT.ESC.D=function(){this.terminal.lineFeed()},i.VT.CC1["…"]=i.VT.ESC.E=function(){this.terminal.setCursorColumn(0),this.terminal.cursorDown(1)},i.VT.CC1["ˆ"]=i.VT.ESC.H=function(){this.terminal.setTabStop(this.terminal.getCursorColumn())},i.VT.CC1[""]=i.VT.ESC.M=function(){this.terminal.reverseLineFeed()},i.VT.CC1["Ž"]=i.VT.ESC.N=i.VT.ignore,i.VT.CC1[""]=i.VT.ESC.O=i.VT.ignore,i.VT.CC1[""]=i.VT.ESC.P=function(e){e.resetArguments(),e.func=this.parseUntilStringTerminator_},i.VT.CC1["–"]=i.VT.ESC.V=i.VT.ignore,i.VT.CC1["—"]=i.VT.ESC.W=i.VT.ignore,i.VT.CC1["˜"]=i.VT.ESC.X=i.VT.ignore,i.VT.CC1["š"]=i.VT.ESC.Z=function(){this.terminal.io.sendString("[?1;2c")},i.VT.CC1["›"]=i.VT.ESC["["]=function(e){e.resetArguments(),this.leadingModifier_="",this.trailingModifier_="",e.func=this.parseCSI_},i.VT.CC1["œ"]=i.VT.ESC["\\"]=i.VT.ignore,i.VT.CC1[""]=i.VT.ESC["]"]=function(e){e.resetArguments(),e.func=function e(t){if(this.parseUntilStringTerminator_(t)&&t.func!=e){var i=t.args[0].match(/^(\d+);(.*)$/);i?(t.args[0]=i[2],this.dispatch("OSC",i[1],t)):console.warn("Invalid OSC: "+JSON.stringify(t.args[0]))}}},i.VT.CC1["ž"]=i.VT.ESC["^"]=function(e){e.resetArguments(),e.func=this.parseUntilStringTerminator_},i.VT.CC1["Ÿ"]=i.VT.ESC._=function(e){e.resetArguments(),e.func=this.parseUntilStringTerminator_},i.VT.ESC[" "]=function(e){e.func=function(e){var t=e.consumeChar();this.warnUnimplemented&&console.warn("Unimplemented sequence: ESC 0x20 "+t),e.resetParseFunction()}},i.VT.ESC["#"]=function(e){e.func=function(e){"8"==e.consumeChar()&&this.terminal.fill("E"),e.resetParseFunction()}},i.VT.ESC["%"]=function(e){e.func=function(e){var t=e.consumeChar();if(this.codingSystemLocked_)return"/"==t&&e.consumeChar(),void e.resetParseFunction();switch(t){case"@":this.setEncoding("iso-2022");break;case"G":this.setEncoding("utf-8");break;case"/":switch(t=e.consumeChar()){case"G":case"H":case"I":this.setEncoding("utf-8-locked");break;default:this.warnUnimplemented&&console.warn("Unknown ESC % / argument: "+JSON.stringify(t))}break;default:this.warnUnimplemented&&console.warn("Unknown ESC % argument: "+JSON.stringify(t))}e.resetParseFunction()}},i.VT.ESC["("]=i.VT.ESC[")"]=i.VT.ESC["*"]=i.VT.ESC["+"]=i.VT.ESC["-"]=i.VT.ESC["."]=i.VT.ESC["/"]=function(e,t){e.func=function(e){var i=e.consumeChar();if(""==i)return e.resetParseFunction(),void e.func();var r=this.characterMaps.getMap(i);void 0!==r?"("==t?this.G0=r:")"==t||"-"==t?this.G1=r:"*"==t||"."==t?this.G2=r:"+"!=t&&"/"!=t||(this.G3=r):this.warnUnimplemented&&console.log('Invalid character set for "'+t+'": '+i),e.resetParseFunction()}},i.VT.ESC[6]=i.VT.ignore,i.VT.ESC[7]=function(){this.savedState_.save()},i.VT.ESC[8]=function(){this.savedState_.restore()},i.VT.ESC[9]=i.VT.ignore,i.VT.ESC["="]=function(){this.terminal.keyboard.applicationKeypad=!0},i.VT.ESC[">"]=function(){this.terminal.keyboard.applicationKeypad=!1},i.VT.ESC.F=i.VT.ignore,i.VT.ESC.c=function(){this.reset(),this.terminal.reset()},i.VT.ESC.l=i.VT.ESC.m=i.VT.ignore,i.VT.ESC.n=function(){this.GL="G2"},i.VT.ESC.o=function(){this.GL="G3"},i.VT.ESC["|"]=function(){this.GR="G3"},i.VT.ESC["}"]=function(){this.GR="G2"},i.VT.ESC["~"]=function(){this.GR="G1"},i.VT.OSC[0]=function(e){this.terminal.setWindowTitle(e.args[0])},i.VT.OSC[2]=i.VT.OSC[0],i.VT.OSC[4]=function(e){for(var i=e.args[0].split(";"),r=parseInt(i.length/2),s=this.terminal.getTextAttributes().colorPalette,o=[],n=0;n=s.length||("?"!=h?(h=t.colors.x11ToCSS(h))&&(s[a]=h):(h=t.colors.rgbToX11(s[a]))&&o.push(a+";"+h))}o.length&&this.terminal.io.sendString("]4;"+o.join(";")+"")},i.VT.OSC[9]=function(e){i.notify({body:e.args[0]})},i.VT.OSC[10]=function(e){var r=e.args[0].split(";");if(r){var s=t.colors.x11ToCSS(r.shift());s&&this.terminal.setForegroundColor(s),r.length>0&&(e.args[0]=r.join(";"),i.VT.OSC[11].apply(this,[e]))}},i.VT.OSC[11]=function(e){var i=e.args[0].split(";");if(i){var r=t.colors.x11ToCSS(i.shift());r&&this.terminal.setBackgroundColor(r)}},i.VT.OSC[50]=function(e){var t=e.args[0].match(/CursorShape=(.)/i);if(t)switch(t[1]){case"1":this.terminal.setCursorShape(i.Terminal.cursorShape.BEAM);break;case"2":this.terminal.setCursorShape(i.Terminal.cursorShape.UNDERLINE);break;default:this.terminal.setCursorShape(i.Terminal.cursorShape.BLOCK)}else console.warn("Could not parse OSC 50 args: "+e.args[0])},i.VT.OSC[52]=function(e){var t=e.args[0].match(/^[cps01234567]*;(.*)/);if(t){var i=window.atob(t[1]);i&&this.terminal.copyStringToClipboard(this.decode(i))}},i.VT.OSC[777]=function(e){var t,r,s;"notify"===e.args[0].split(";",1)[0]?((t=e.args[0].match(/^[^;]+;([^;]*)(;([\s\S]*))?$/))&&(r=t[1],s=t[3]),i.notify({title:r,body:s})):console.warn("Unknown urxvt module: "+e.args[0])},i.VT.CSI["@"]=function(e){this.terminal.insertSpace(e.iarg(0,1))},i.VT.CSI.A=function(e){this.terminal.cursorUp(e.iarg(0,1))},i.VT.CSI.B=function(e){this.terminal.cursorDown(e.iarg(0,1))},i.VT.CSI.C=function(e){this.terminal.cursorRight(e.iarg(0,1))},i.VT.CSI.D=function(e){this.terminal.cursorLeft(e.iarg(0,1))},i.VT.CSI.E=function(e){this.terminal.cursorDown(e.iarg(0,1)),this.terminal.setCursorColumn(0)},i.VT.CSI.F=function(e){this.terminal.cursorUp(e.iarg(0,1)),this.terminal.setCursorColumn(0)},i.VT.CSI.G=function(e){this.terminal.setCursorColumn(e.iarg(0,1)-1)},i.VT.CSI.H=function(e){this.terminal.setCursorPosition(e.iarg(0,1)-1,e.iarg(1,1)-1)},i.VT.CSI.I=function(e){var i=e.iarg(0,1);i=t.f.clamp(i,1,this.terminal.screenSize.width);for(var r=0;rT"]=i.VT.ignore,i.VT.CSI.X=function(e){this.terminal.eraseToRight(e.iarg(0,1))},i.VT.CSI.Z=function(e){var i=e.iarg(0,1);i=t.f.clamp(i,1,this.terminal.screenSize.width);for(var r=0;rc"]=function(e){this.terminal.io.sendString("[>0;256;0c")},i.VT.CSI.d=function(e){this.terminal.setAbsoluteCursorRow(e.iarg(0,1)-1)},i.VT.CSI.f=i.VT.CSI.H,i.VT.CSI.g=function(e){e.args[0]&&0!=e.args[0]?3==e.args[0]&&this.terminal.clearAllTabStops():this.terminal.clearTabStopAtCursor(!1)},i.VT.CSI.h=function(e){for(var t=0;t=r.colorPalette.length)continue;r.foregroundSource=a}}else if(39==o)r.foregroundSource=r.SRC_DEFAULT;else if(o<48)r.backgroundSource=o-40;else if(48==o){var n;if(null!=(n=i(s)))r.backgroundSource=r.SRC_RGB,r.background=n,s+=5;else{var a;if(null==(a=t(s)))break;if(s+=2,a>=r.colorPalette.length)continue;r.backgroundSource=a}}else r.backgroundSource=r.SRC_DEFAULT;else o>=90&&o<=97?r.foregroundSource=o-90+8:o>=100&&o<=107&&(r.backgroundSource=o-100+8)}r.setDefaults(this.terminal.getForegroundColor(),this.terminal.getBackgroundColor())}else r.reset()},i.VT.CSI[">m"]=i.VT.ignore,i.VT.CSI.n=function(e){if(5==e.args[0])this.terminal.io.sendString("0n");else if(6==e.args[0]){var t=this.terminal.getCursorRow()+1,i=this.terminal.getCursorColumn()+1;this.terminal.io.sendString("["+t+";"+i+"R")}},i.VT.CSI[">n"]=i.VT.ignore,i.VT.CSI["?n"]=function(e){if(6==e.args[0]){var t=this.terminal.getCursorRow()+1,i=this.terminal.getCursorColumn()+1;this.terminal.io.sendString("["+t+";"+i+"R")}else 15==e.args[0]?this.terminal.io.sendString("[?11n"):25==e.args[0]?this.terminal.io.sendString("[?21n"):26==e.args[0]?this.terminal.io.sendString("[?12;1;0;0n"):53==e.args[0]&&this.terminal.io.sendString("[?50n")},i.VT.CSI[">p"]=i.VT.ignore,i.VT.CSI["!p"]=function(){this.reset(),this.terminal.softReset()},i.VT.CSI.$p=i.VT.ignore,i.VT.CSI["?$p"]=i.VT.ignore,i.VT.CSI['"p']=i.VT.ignore,i.VT.CSI.q=i.VT.ignore,i.VT.CSI[" q"]=function(e){var t=e.args[0];0==t||1==t?(this.terminal.setCursorShape(i.Terminal.cursorShape.BLOCK),this.terminal.setCursorBlink(!0)):2==t?(this.terminal.setCursorShape(i.Terminal.cursorShape.BLOCK),this.terminal.setCursorBlink(!1)):3==t?(this.terminal.setCursorShape(i.Terminal.cursorShape.UNDERLINE),this.terminal.setCursorBlink(!0)):4==t?(this.terminal.setCursorShape(i.Terminal.cursorShape.UNDERLINE),this.terminal.setCursorBlink(!1)):5==t?(this.terminal.setCursorShape(i.Terminal.cursorShape.BEAM),this.terminal.setCursorBlink(!0)):6==t?(this.terminal.setCursorShape(i.Terminal.cursorShape.BEAM),this.terminal.setCursorBlink(!1)):console.warn("Unknown cursor style: "+t)},i.VT.CSI['"q']=i.VT.ignore,i.VT.CSI.r=function(e){var t=e.args,i=t[0]?parseInt(t[0],10)-1:null,r=t[1]?parseInt(t[1],10)-1:null;this.terminal.setVTScrollRegion(i,r),this.terminal.setCursorPosition(0,0)},i.VT.CSI["?r"]=i.VT.ignore,i.VT.CSI.$r=i.VT.ignore,i.VT.CSI.s=function(){this.savedState_.save()},i.VT.CSI["?s"]=i.VT.ignore,i.VT.CSI.t=i.VT.ignore,i.VT.CSI.$t=i.VT.ignore,i.VT.CSI[">t"]=i.VT.ignore,i.VT.CSI[" t"]=i.VT.ignore,i.VT.CSI.u=function(){this.savedState_.restore()},i.VT.CSI[" u"]=i.VT.ignore,i.VT.CSI.$v=i.VT.ignore,i.VT.CSI["'w"]=i.VT.ignore,i.VT.CSI.x=i.VT.ignore,i.VT.CSI["*x"]=i.VT.ignore,i.VT.CSI.$x=i.VT.ignore,i.VT.CSI.z=function(e){if(!(e.args.length<1)){var t=e.args[0];if(0==t){if(e.args.length<2)return;this.terminal.getTextAttributes().tileData=e.args[1]}else 1==t&&(this.terminal.getTextAttributes().tileData=null)}},i.VT.CSI["'z"]=i.VT.ignore,i.VT.CSI.$z=i.VT.ignore,i.VT.CSI["'{"]=i.VT.ignore,i.VT.CSI["'|"]=i.VT.ignore,i.VT.CSI["'}"]=i.VT.ignore,i.VT.CSI["'~"]=i.VT.ignore,t.rtdep("lib.f"),i.VT.CharacterMap=function(e,t){this.description=e,this.GL=null,this.glmapBase_=t,this.sync_()},i.VT.CharacterMap.prototype.sync_=function(e){if(!this.glmapBase_&&!e)return this.GL=null,delete this.glmap_,void delete this.glre_;this.glmap_=e?Object.assign({},this.glmapBase_,e):this.glmapBase_;var i=Object.keys(this.glmap_).map(e=>"\\x"+t.f.zpad(e.charCodeAt(0).toString(16)));this.glre_=new RegExp("["+i.join("")+"]","g"),this.GL=e=>e.replace(this.glre_,e=>this.glmap_[e])},i.VT.CharacterMap.prototype.reset=function(){this.glmap_!==this.glmapBase_&&this.sync_()},i.VT.CharacterMap.prototype.setOverrides=function(e){this.sync_(e)},i.VT.CharacterMap.prototype.clone=function(){var e=new i.VT.CharacterMap(this.description,this.glmapBase_);return this.glmap_!==this.glmapBase_&&e.setOverrides(this.glmap_),e},i.VT.CharacterMaps=function(){this.maps_=i.VT.CharacterMaps.DefaultMaps,this.mapsBase_=this.maps_},i.VT.CharacterMaps.prototype.getMap=function(e){return this.maps_.hasOwnProperty(e)?this.maps_[e]:void 0},i.VT.CharacterMaps.prototype.addMap=function(e,t){this.maps_===this.mapsBase_&&(this.maps_=Object.assign({},this.mapsBase_)),this.maps_[e]=t},i.VT.CharacterMaps.prototype.reset=function(){this.maps_!==i.VT.CharacterMaps.DefaultMaps&&(this.maps_=i.VT.CharacterMaps.DefaultMaps)},i.VT.CharacterMaps.prototype.setOverrides=function(e){for(var t in this.maps_===this.mapsBase_&&(this.maps_=Object.assign({},this.mapsBase_)),e){var r=this.getMap(t);void 0!==r?(this.maps_[t]=r.clone(),this.maps_[t].setOverrides(e[t])):this.addMap(t,new i.VT.CharacterMap("user "+t,e[t]))}},i.VT.CharacterMaps.DefaultMaps={},i.VT.CharacterMaps.DefaultMaps[0]=new i.VT.CharacterMap("graphic",{"`":"◆",a:"▒",b:"␉",c:"␌",d:"␍",e:"␊",f:"°",g:"±",h:"␤",i:"␋",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"}),i.VT.CharacterMaps.DefaultMaps.A=new i.VT.CharacterMap("british",{"#":"£"}),i.VT.CharacterMaps.DefaultMaps.B=new i.VT.CharacterMap("us",null),i.VT.CharacterMaps.DefaultMaps[4]=new i.VT.CharacterMap("dutch",{"#":"£","@":"¾","[":"IJ","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"}),i.VT.CharacterMaps.DefaultMaps.C=i.VT.CharacterMaps.DefaultMaps[5]=new i.VT.CharacterMap("finnish",{"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"}),i.VT.CharacterMaps.DefaultMaps.R=new i.VT.CharacterMap("french",{"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"}),i.VT.CharacterMaps.DefaultMaps.Q=new i.VT.CharacterMap("french canadian",{"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"}),i.VT.CharacterMaps.DefaultMaps.K=new i.VT.CharacterMap("german",{"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"}),i.VT.CharacterMaps.DefaultMaps.Y=new i.VT.CharacterMap("italian",{"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"}),i.VT.CharacterMaps.DefaultMaps.E=i.VT.CharacterMaps.DefaultMaps[6]=new i.VT.CharacterMap("norwegian/danish",{"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"}),i.VT.CharacterMaps.DefaultMaps.Z=new i.VT.CharacterMap("spanish",{"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"}),i.VT.CharacterMaps.DefaultMaps[7]=i.VT.CharacterMaps.DefaultMaps.H=new i.VT.CharacterMap("swedish",{"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"}),i.VT.CharacterMaps.DefaultMaps["="]=new i.VT.CharacterMap("swiss",{"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}),t.resource.add("hterm/audio/bell","audio/ogg;base64","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"),t.resource.add("hterm/images/icon-96","image/png;base64","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"),t.resource.add("hterm/concat/date","text/plain","Tue, 22 Aug 2017 06:42:31 +0000"),t.resource.add("hterm/changelog/version","text/plain","1.70"),t.resource.add("hterm/changelog/date","text/plain","2017-08-16"),t.resource.add("hterm/git/HEAD","text/plain","git rev-parse HEAD"),e.exports={hterm:i,lib:t}},458:e=>{var t;self,t=()=>(()=>{"use strict";var e,t={};return e=t,Object.defineProperty(e,"__esModule",{value:!0}),e.FitAddon=void 0,e.FitAddon=class{activate(e){this._terminal=e}dispose(){}fit(){const e=this.proposeDimensions();if(!e||!this._terminal||isNaN(e.cols)||isNaN(e.rows))return;const t=this._terminal._core;this._terminal.rows===e.rows&&this._terminal.cols===e.cols||(t._renderService.clear(),this._terminal.resize(e.cols,e.rows))}proposeDimensions(){if(!this._terminal)return;if(!this._terminal.element||!this._terminal.element.parentElement)return;const e=this._terminal._core,t=e._renderService.dimensions;if(0===t.css.cell.width||0===t.css.cell.height)return;const i=0===this._terminal.options.scrollback?0:e.viewport.scrollBarWidth,r=window.getComputedStyle(this._terminal.element.parentElement),s=parseInt(r.getPropertyValue("height")),o=Math.max(0,parseInt(r.getPropertyValue("width"))),n=window.getComputedStyle(this._terminal.element),a=s-(parseInt(n.getPropertyValue("padding-top"))+parseInt(n.getPropertyValue("padding-bottom"))),h=o-(parseInt(n.getPropertyValue("padding-right"))+parseInt(n.getPropertyValue("padding-left")))-i;return{cols:Math.max(2,Math.floor(h/t.css.cell.width)),rows:Math.max(1,Math.floor(a/t.css.cell.height))}}},t})(),e.exports=t()},766:e=>{var t;self,t=()=>(()=>{"use strict";var e={965:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.GlyphRenderer=void 0;const r=i(374),s=i(509),o=i(855),n=i(859),a=i(381),h=11,l=h*Float32Array.BYTES_PER_ELEMENT;let c,u=0,d=0,_=0;class f extends n.Disposable{constructor(e,t,i,o){super(),this._terminal=e,this._gl=t,this._dimensions=i,this._optionsService=o,this._activeBuffer=0,this._vertices={count:0,attributes:new Float32Array(0),attributesBuffers:[new Float32Array(0),new Float32Array(0)]};const h=this._gl;void 0===s.TextureAtlas.maxAtlasPages&&(s.TextureAtlas.maxAtlasPages=Math.min(32,(0,r.throwIfFalsy)(h.getParameter(h.MAX_TEXTURE_IMAGE_UNITS))),s.TextureAtlas.maxTextureSize=(0,r.throwIfFalsy)(h.getParameter(h.MAX_TEXTURE_SIZE))),this._program=(0,r.throwIfFalsy)((0,a.createProgram)(h,"#version 300 es\nlayout (location = 0) in vec2 a_unitquad;\nlayout (location = 1) in vec2 a_cellpos;\nlayout (location = 2) in vec2 a_offset;\nlayout (location = 3) in vec2 a_size;\nlayout (location = 4) in float a_texpage;\nlayout (location = 5) in vec2 a_texcoord;\nlayout (location = 6) in vec2 a_texsize;\n\nuniform mat4 u_projection;\nuniform vec2 u_resolution;\n\nout vec2 v_texcoord;\nflat out int v_texpage;\n\nvoid main() {\n vec2 zeroToOne = (a_offset / u_resolution) + a_cellpos + (a_unitquad * a_size);\n gl_Position = u_projection * vec4(zeroToOne, 0.0, 1.0);\n v_texpage = int(a_texpage);\n v_texcoord = a_texcoord + a_unitquad * a_texsize;\n}",function(e){let t="";for(let i=1;ih.deleteProgram(this._program))),this._projectionLocation=(0,r.throwIfFalsy)(h.getUniformLocation(this._program,"u_projection")),this._resolutionLocation=(0,r.throwIfFalsy)(h.getUniformLocation(this._program,"u_resolution")),this._textureLocation=(0,r.throwIfFalsy)(h.getUniformLocation(this._program,"u_texture")),this._vertexArrayObject=h.createVertexArray(),h.bindVertexArray(this._vertexArrayObject);const c=new Float32Array([0,0,1,0,0,1,1,1]),u=h.createBuffer();this.register((0,n.toDisposable)(()=>h.deleteBuffer(u))),h.bindBuffer(h.ARRAY_BUFFER,u),h.bufferData(h.ARRAY_BUFFER,c,h.STATIC_DRAW),h.enableVertexAttribArray(0),h.vertexAttribPointer(0,2,this._gl.FLOAT,!1,0,0);const d=new Uint8Array([0,1,2,3]),_=h.createBuffer();this.register((0,n.toDisposable)(()=>h.deleteBuffer(_))),h.bindBuffer(h.ELEMENT_ARRAY_BUFFER,_),h.bufferData(h.ELEMENT_ARRAY_BUFFER,d,h.STATIC_DRAW),this._attributesBuffer=(0,r.throwIfFalsy)(h.createBuffer()),this.register((0,n.toDisposable)(()=>h.deleteBuffer(this._attributesBuffer))),h.bindBuffer(h.ARRAY_BUFFER,this._attributesBuffer),h.enableVertexAttribArray(2),h.vertexAttribPointer(2,2,h.FLOAT,!1,l,0),h.vertexAttribDivisor(2,1),h.enableVertexAttribArray(3),h.vertexAttribPointer(3,2,h.FLOAT,!1,l,2*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(3,1),h.enableVertexAttribArray(4),h.vertexAttribPointer(4,1,h.FLOAT,!1,l,4*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(4,1),h.enableVertexAttribArray(5),h.vertexAttribPointer(5,2,h.FLOAT,!1,l,5*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(5,1),h.enableVertexAttribArray(6),h.vertexAttribPointer(6,2,h.FLOAT,!1,l,7*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(6,1),h.enableVertexAttribArray(1),h.vertexAttribPointer(1,2,h.FLOAT,!1,l,9*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(1,1),h.useProgram(this._program);const f=new Int32Array(s.TextureAtlas.maxAtlasPages);for(let e=0;eh.deleteTexture(t.texture))),h.activeTexture(h.TEXTURE0+e),h.bindTexture(h.TEXTURE_2D,t.texture),h.texParameteri(h.TEXTURE_2D,h.TEXTURE_WRAP_S,h.CLAMP_TO_EDGE),h.texParameteri(h.TEXTURE_2D,h.TEXTURE_WRAP_T,h.CLAMP_TO_EDGE),h.texImage2D(h.TEXTURE_2D,0,h.RGBA,1,1,0,h.RGBA,h.UNSIGNED_BYTE,new Uint8Array([255,0,0,255])),this._atlasTextures[e]=t}h.enable(h.BLEND),h.blendFunc(h.SRC_ALPHA,h.ONE_MINUS_SRC_ALPHA),this.handleResize()}beginFrame(){return!this._atlas||this._atlas.beginFrame()}updateCell(e,t,i,r,s,o,n,a,h){this._updateCell(this._vertices.attributes,e,t,i,r,s,o,n,a,h)}_updateCell(e,t,i,s,n,a,l,f,g,p){u=(i*this._terminal.cols+t)*h,s!==o.NULL_CELL_CODE&&void 0!==s?this._atlas&&(c=f&&f.length>1?this._atlas.getRasterizedGlyphCombinedChar(f,n,a,l,!1):this._atlas.getRasterizedGlyph(s,n,a,l,!1),d=Math.floor((this._dimensions.device.cell.width-this._dimensions.device.char.width)/2),n!==p&&c.offset.x>d?(_=c.offset.x-d,e[u]=-(c.offset.x-_)+this._dimensions.device.char.left,e[u+1]=-c.offset.y+this._dimensions.device.char.top,e[u+2]=(c.size.x-_)/this._dimensions.device.canvas.width,e[u+3]=c.size.y/this._dimensions.device.canvas.height,e[u+4]=c.texturePage,e[u+5]=c.texturePositionClipSpace.x+_/this._atlas.pages[c.texturePage].canvas.width,e[u+6]=c.texturePositionClipSpace.y,e[u+7]=c.sizeClipSpace.x-_/this._atlas.pages[c.texturePage].canvas.width,e[u+8]=c.sizeClipSpace.y):(e[u]=-c.offset.x+this._dimensions.device.char.left,e[u+1]=-c.offset.y+this._dimensions.device.char.top,e[u+2]=c.size.x/this._dimensions.device.canvas.width,e[u+3]=c.size.y/this._dimensions.device.canvas.height,e[u+4]=c.texturePage,e[u+5]=c.texturePositionClipSpace.x,e[u+6]=c.texturePositionClipSpace.y,e[u+7]=c.sizeClipSpace.x,e[u+8]=c.sizeClipSpace.y),this._optionsService.rawOptions.rescaleOverlappingGlyphs&&(0,r.allowRescaling)(s,g,c.size.x,this._dimensions.device.cell.width)&&(e[u+2]=(this._dimensions.device.cell.width-1)/this._dimensions.device.canvas.width)):e.fill(0,u,u+h-1-2)}clear(){const e=this._terminal,t=e.cols*e.rows*h;this._vertices.count!==t?this._vertices.attributes=new Float32Array(t):this._vertices.attributes.fill(0);let i=0;for(;i{Object.defineProperty(t,"__esModule",{value:!0}),t.RectangleRenderer=void 0;const r=i(374),s=i(859),o=i(310),n=i(381),a=8*Float32Array.BYTES_PER_ELEMENT;class h{constructor(){this.attributes=new Float32Array(160),this.count=0}}let l=0,c=0,u=0,d=0,_=0,f=0,g=0;class p extends s.Disposable{constructor(e,t,i,o){super(),this._terminal=e,this._gl=t,this._dimensions=i,this._themeService=o,this._vertices=new h,this._verticesCursor=new h;const l=this._gl;this._program=(0,r.throwIfFalsy)((0,n.createProgram)(l,"#version 300 es\nlayout (location = 0) in vec2 a_position;\nlayout (location = 1) in vec2 a_size;\nlayout (location = 2) in vec4 a_color;\nlayout (location = 3) in vec2 a_unitquad;\n\nuniform mat4 u_projection;\n\nout vec4 v_color;\n\nvoid main() {\n vec2 zeroToOne = a_position + (a_unitquad * a_size);\n gl_Position = u_projection * vec4(zeroToOne, 0.0, 1.0);\n v_color = a_color;\n}","#version 300 es\nprecision lowp float;\n\nin vec4 v_color;\n\nout vec4 outColor;\n\nvoid main() {\n outColor = v_color;\n}")),this.register((0,s.toDisposable)(()=>l.deleteProgram(this._program))),this._projectionLocation=(0,r.throwIfFalsy)(l.getUniformLocation(this._program,"u_projection")),this._vertexArrayObject=l.createVertexArray(),l.bindVertexArray(this._vertexArrayObject);const c=new Float32Array([0,0,1,0,0,1,1,1]),u=l.createBuffer();this.register((0,s.toDisposable)(()=>l.deleteBuffer(u))),l.bindBuffer(l.ARRAY_BUFFER,u),l.bufferData(l.ARRAY_BUFFER,c,l.STATIC_DRAW),l.enableVertexAttribArray(3),l.vertexAttribPointer(3,2,this._gl.FLOAT,!1,0,0);const d=new Uint8Array([0,1,2,3]),_=l.createBuffer();this.register((0,s.toDisposable)(()=>l.deleteBuffer(_))),l.bindBuffer(l.ELEMENT_ARRAY_BUFFER,_),l.bufferData(l.ELEMENT_ARRAY_BUFFER,d,l.STATIC_DRAW),this._attributesBuffer=(0,r.throwIfFalsy)(l.createBuffer()),this.register((0,s.toDisposable)(()=>l.deleteBuffer(this._attributesBuffer))),l.bindBuffer(l.ARRAY_BUFFER,this._attributesBuffer),l.enableVertexAttribArray(0),l.vertexAttribPointer(0,2,l.FLOAT,!1,a,0),l.vertexAttribDivisor(0,1),l.enableVertexAttribArray(1),l.vertexAttribPointer(1,2,l.FLOAT,!1,a,2*Float32Array.BYTES_PER_ELEMENT),l.vertexAttribDivisor(1,1),l.enableVertexAttribArray(2),l.vertexAttribPointer(2,4,l.FLOAT,!1,a,4*Float32Array.BYTES_PER_ELEMENT),l.vertexAttribDivisor(2,1),this._updateCachedColors(o.colors),this.register(this._themeService.onChangeColors(e=>{this._updateCachedColors(e),this._updateViewportRectangle()}))}renderBackgrounds(){this._renderVertices(this._vertices)}renderCursor(){this._renderVertices(this._verticesCursor)}_renderVertices(e){const t=this._gl;t.useProgram(this._program),t.bindVertexArray(this._vertexArrayObject),t.uniformMatrix4fv(this._projectionLocation,!1,n.PROJECTION_MATRIX),t.bindBuffer(t.ARRAY_BUFFER,this._attributesBuffer),t.bufferData(t.ARRAY_BUFFER,e.attributes,t.DYNAMIC_DRAW),t.drawElementsInstanced(this._gl.TRIANGLE_STRIP,4,t.UNSIGNED_BYTE,0,e.count)}handleResize(){this._updateViewportRectangle()}setDimensions(e){this._dimensions=e}_updateCachedColors(e){this._bgFloat=this._colorToFloat32Array(e.background),this._cursorFloat=this._colorToFloat32Array(e.cursor)}_updateViewportRectangle(){this._addRectangleFloat(this._vertices.attributes,0,0,0,this._terminal.cols*this._dimensions.device.cell.width,this._terminal.rows*this._dimensions.device.cell.height,this._bgFloat)}updateBackgrounds(e){const t=this._terminal,i=this._vertices;let r,s,n,a,h,l,c,u,d,_,f,g=1;for(r=0;r>24&255)/255,_=(l>>16&255)/255,f=(l>>8&255)/255,g=1,this._addRectangle(e.attributes,t,c,u,(o-s)*this._dimensions.device.cell.width,this._dimensions.device.cell.height,d,_,f,g)}_addRectangle(e,t,i,r,s,o,n,a,h,l){e[t]=i/this._dimensions.device.canvas.width,e[t+1]=r/this._dimensions.device.canvas.height,e[t+2]=s/this._dimensions.device.canvas.width,e[t+3]=o/this._dimensions.device.canvas.height,e[t+4]=n,e[t+5]=a,e[t+6]=h,e[t+7]=l}_addRectangleFloat(e,t,i,r,s,o,n){e[t]=i/this._dimensions.device.canvas.width,e[t+1]=r/this._dimensions.device.canvas.height,e[t+2]=s/this._dimensions.device.canvas.width,e[t+3]=o/this._dimensions.device.canvas.height,e[t+4]=n[0],e[t+5]=n[1],e[t+6]=n[2],e[t+7]=n[3]}_colorToFloat32Array(e){return new Float32Array([(e.rgba>>24&255)/255,(e.rgba>>16&255)/255,(e.rgba>>8&255)/255,(255&e.rgba)/255])}}t.RectangleRenderer=p},310:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RenderModel=t.COMBINED_CHAR_BIT_MASK=t.RENDER_MODEL_EXT_OFFSET=t.RENDER_MODEL_FG_OFFSET=t.RENDER_MODEL_BG_OFFSET=t.RENDER_MODEL_INDICIES_PER_CELL=void 0;const r=i(296);t.RENDER_MODEL_INDICIES_PER_CELL=4,t.RENDER_MODEL_BG_OFFSET=1,t.RENDER_MODEL_FG_OFFSET=2,t.RENDER_MODEL_EXT_OFFSET=3,t.COMBINED_CHAR_BIT_MASK=2147483648,t.RenderModel=class{constructor(){this.cells=new Uint32Array(0),this.lineLengths=new Uint32Array(0),this.selection=(0,r.createSelectionRenderModel)()}resize(e,i){const r=e*i*t.RENDER_MODEL_INDICIES_PER_CELL;r!==this.cells.length&&(this.cells=new Uint32Array(r),this.lineLengths=new Uint32Array(i))}clear(){this.cells.fill(0,0),this.lineLengths.fill(0,0)}}},666:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.JoinedCellData=t.WebglRenderer=void 0;const r=i(820),s=i(274),o=i(627),n=i(457),a=i(56),h=i(374),l=i(345),c=i(859),u=i(147),d=i(782),_=i(855),f=i(965),g=i(742),p=i(310),m=i(733);class v extends c.Disposable{constructor(e,t,i,n,u,_,f,g,v){super(),this._terminal=e,this._characterJoinerService=t,this._charSizeService=i,this._coreBrowserService=n,this._coreService=u,this._decorationService=_,this._optionsService=f,this._themeService=g,this._cursorBlinkStateManager=new c.MutableDisposable,this._charAtlasDisposable=this.register(new c.MutableDisposable),this._observerDisposable=this.register(new c.MutableDisposable),this._model=new p.RenderModel,this._workCell=new d.CellData,this._workCell2=new d.CellData,this._rectangleRenderer=this.register(new c.MutableDisposable),this._glyphRenderer=this.register(new c.MutableDisposable),this._onChangeTextureAtlas=this.register(new l.EventEmitter),this.onChangeTextureAtlas=this._onChangeTextureAtlas.event,this._onAddTextureAtlasCanvas=this.register(new l.EventEmitter),this.onAddTextureAtlasCanvas=this._onAddTextureAtlasCanvas.event,this._onRemoveTextureAtlasCanvas=this.register(new l.EventEmitter),this.onRemoveTextureAtlasCanvas=this._onRemoveTextureAtlasCanvas.event,this._onRequestRedraw=this.register(new l.EventEmitter),this.onRequestRedraw=this._onRequestRedraw.event,this._onContextLoss=this.register(new l.EventEmitter),this.onContextLoss=this._onContextLoss.event,this.register(this._themeService.onChangeColors(()=>this._handleColorChange())),this._cellColorResolver=new s.CellColorResolver(this._terminal,this._optionsService,this._model.selection,this._decorationService,this._coreBrowserService,this._themeService),this._core=this._terminal._core,this._renderLayers=[new m.LinkRenderLayer(this._core.screenElement,2,this._terminal,this._core.linkifier,this._coreBrowserService,f,this._themeService)],this.dimensions=(0,h.createRenderDimensions)(),this._devicePixelRatio=this._coreBrowserService.dpr,this._updateDimensions(),this._updateCursorBlink(),this.register(f.onOptionChange(()=>this._handleOptionsChanged())),this._canvas=this._coreBrowserService.mainDocument.createElement("canvas");const b={antialias:!1,depth:!1,preserveDrawingBuffer:v};if(this._gl=this._canvas.getContext("webgl2",b),!this._gl)throw new Error("WebGL2 not supported "+this._gl);this.register((0,r.addDisposableDomListener)(this._canvas,"webglcontextlost",e=>{console.log("webglcontextlost event received"),e.preventDefault(),this._contextRestorationTimeout=setTimeout(()=>{this._contextRestorationTimeout=void 0,console.warn("webgl context not restored; firing onContextLoss"),this._onContextLoss.fire(e)},3e3)})),this.register((0,r.addDisposableDomListener)(this._canvas,"webglcontextrestored",e=>{console.warn("webglcontextrestored event received"),clearTimeout(this._contextRestorationTimeout),this._contextRestorationTimeout=void 0,(0,o.removeTerminalFromCache)(this._terminal),this._initializeWebGLState(),this._requestRedrawViewport()})),this._observerDisposable.value=(0,a.observeDevicePixelDimensions)(this._canvas,this._coreBrowserService.window,(e,t)=>this._setCanvasDevicePixelDimensions(e,t)),this.register(this._coreBrowserService.onWindowChange(e=>{this._observerDisposable.value=(0,a.observeDevicePixelDimensions)(this._canvas,e,(e,t)=>this._setCanvasDevicePixelDimensions(e,t))})),this._core.screenElement.appendChild(this._canvas),[this._rectangleRenderer.value,this._glyphRenderer.value]=this._initializeWebGLState(),this._isAttached=this._coreBrowserService.window.document.body.contains(this._core.screenElement),this.register((0,c.toDisposable)(()=>{for(const e of this._renderLayers)e.dispose();this._canvas.parentElement?.removeChild(this._canvas),(0,o.removeTerminalFromCache)(this._terminal)}))}get textureAtlas(){return this._charAtlas?.pages[0].canvas}_handleColorChange(){this._refreshCharAtlas(),this._clearModel(!0)}handleDevicePixelRatioChange(){this._devicePixelRatio!==this._coreBrowserService.dpr&&(this._devicePixelRatio=this._coreBrowserService.dpr,this.handleResize(this._terminal.cols,this._terminal.rows))}handleResize(e,t){this._updateDimensions(),this._model.resize(this._terminal.cols,this._terminal.rows);for(const e of this._renderLayers)e.resize(this._terminal,this.dimensions);this._canvas.width=this.dimensions.device.canvas.width,this._canvas.height=this.dimensions.device.canvas.height,this._canvas.style.width=`${this.dimensions.css.canvas.width}px`,this._canvas.style.height=`${this.dimensions.css.canvas.height}px`,this._core.screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._core.screenElement.style.height=`${this.dimensions.css.canvas.height}px`,this._rectangleRenderer.value?.setDimensions(this.dimensions),this._rectangleRenderer.value?.handleResize(),this._glyphRenderer.value?.setDimensions(this.dimensions),this._glyphRenderer.value?.handleResize(),this._refreshCharAtlas(),this._clearModel(!1)}handleCharSizeChanged(){this.handleResize(this._terminal.cols,this._terminal.rows)}handleBlur(){for(const e of this._renderLayers)e.handleBlur(this._terminal);this._cursorBlinkStateManager.value?.pause(),this._requestRedrawViewport()}handleFocus(){for(const e of this._renderLayers)e.handleFocus(this._terminal);this._cursorBlinkStateManager.value?.resume(),this._requestRedrawViewport()}handleSelectionChanged(e,t,i){for(const r of this._renderLayers)r.handleSelectionChanged(this._terminal,e,t,i);this._model.selection.update(this._core,e,t,i),this._requestRedrawViewport()}handleCursorMove(){for(const e of this._renderLayers)e.handleCursorMove(this._terminal);this._cursorBlinkStateManager.value?.restartBlinkAnimation()}_handleOptionsChanged(){this._updateDimensions(),this._refreshCharAtlas(),this._updateCursorBlink()}_initializeWebGLState(){return this._rectangleRenderer.value=new g.RectangleRenderer(this._terminal,this._gl,this.dimensions,this._themeService),this._glyphRenderer.value=new f.GlyphRenderer(this._terminal,this._gl,this.dimensions,this._optionsService),this.handleCharSizeChanged(),[this._rectangleRenderer.value,this._glyphRenderer.value]}_refreshCharAtlas(){if(this.dimensions.device.char.width<=0&&this.dimensions.device.char.height<=0)return void(this._isAttached=!1);const e=(0,o.acquireTextureAtlas)(this._terminal,this._optionsService.rawOptions,this._themeService.colors,this.dimensions.device.cell.width,this.dimensions.device.cell.height,this.dimensions.device.char.width,this.dimensions.device.char.height,this._coreBrowserService.dpr);this._charAtlas!==e&&(this._onChangeTextureAtlas.fire(e.pages[0].canvas),this._charAtlasDisposable.value=(0,c.getDisposeArrayDisposable)([(0,l.forwardEvent)(e.onAddTextureAtlasCanvas,this._onAddTextureAtlasCanvas),(0,l.forwardEvent)(e.onRemoveTextureAtlasCanvas,this._onRemoveTextureAtlasCanvas)])),this._charAtlas=e,this._charAtlas.warmUp(),this._glyphRenderer.value?.setAtlas(this._charAtlas)}_clearModel(e){this._model.clear(),e&&this._glyphRenderer.value?.clear()}clearTextureAtlas(){this._charAtlas?.clearTexture(),this._clearModel(!0),this._requestRedrawViewport()}clear(){this._clearModel(!0);for(const e of this._renderLayers)e.reset(this._terminal);this._cursorBlinkStateManager.value?.restartBlinkAnimation(),this._updateCursorBlink()}registerCharacterJoiner(e){return-1}deregisterCharacterJoiner(e){return!1}renderRows(e,t){if(!this._isAttached){if(!(this._coreBrowserService.window.document.body.contains(this._core.screenElement)&&this._charSizeService.width&&this._charSizeService.height))return;this._updateDimensions(),this._refreshCharAtlas(),this._isAttached=!0}for(const i of this._renderLayers)i.handleGridChanged(this._terminal,e,t);this._glyphRenderer.value&&this._rectangleRenderer.value&&(this._glyphRenderer.value.beginFrame()?(this._clearModel(!0),this._updateModel(0,this._terminal.rows-1)):this._updateModel(e,t),this._rectangleRenderer.value.renderBackgrounds(),this._glyphRenderer.value.render(this._model),this._cursorBlinkStateManager.value&&!this._cursorBlinkStateManager.value.isCursorVisible||this._rectangleRenderer.value.renderCursor())}_updateCursorBlink(){this._terminal.options.cursorBlink?this._cursorBlinkStateManager.value=new n.CursorBlinkStateManager(()=>{this._requestRedrawCursor()},this._coreBrowserService):this._cursorBlinkStateManager.clear(),this._requestRedrawCursor()}_updateModel(e,t){const i=this._core;let r,s,o,n,a,h,l,c,u,d,f,g,m,v,S=this._workCell;e=C(e,i.rows-1,0),t=C(t,i.rows-1,0);const y=this._terminal.buffer.active.baseY+this._terminal.buffer.active.cursorY,w=y-i.buffer.ydisp,A=Math.min(this._terminal.buffer.active.cursorX,i.cols-1);let T=-1;const E=this._coreService.isCursorInitialized&&!this._coreService.isCursorHidden&&(!this._cursorBlinkStateManager.value||this._cursorBlinkStateManager.value.isCursorVisible);this._model.cursor=void 0;let x=!1;for(s=e;s<=t;s++)for(o=s+i.buffer.ydisp,n=i.buffer.lines.get(o),this._model.lineLengths[s]=0,a=this._characterJoinerService.getJoinedCharacters(o),m=0;m0&&m===a[0][0]&&(h=!0,c=a.shift(),S=new b(S,n.translateToString(!0,c[0],c[1]),c[1]-c[0]),l=c[1]-1),u=S.getChars(),d=S.getCode(),g=(s*i.cols+m)*p.RENDER_MODEL_INDICIES_PER_CELL,this._cellColorResolver.resolve(S,m,o,this.dimensions.device.cell.width),E&&o===y&&(m===A&&(this._model.cursor={x:A,y:w,width:S.getWidth(),style:this._coreBrowserService.isFocused?i.options.cursorStyle||"block":i.options.cursorInactiveStyle,cursorWidth:i.options.cursorWidth,dpr:this._devicePixelRatio},T=A+S.getWidth()-1),m>=A&&m<=T&&(this._coreBrowserService.isFocused&&"block"===(i.options.cursorStyle||"block")||!1===this._coreBrowserService.isFocused&&"block"===i.options.cursorInactiveStyle)&&(this._cellColorResolver.result.fg=50331648|this._themeService.colors.cursorAccent.rgba>>8&16777215,this._cellColorResolver.result.bg=50331648|this._themeService.colors.cursor.rgba>>8&16777215)),d!==_.NULL_CELL_CODE&&(this._model.lineLengths[s]=m+1),(this._model.cells[g]!==d||this._model.cells[g+p.RENDER_MODEL_BG_OFFSET]!==this._cellColorResolver.result.bg||this._model.cells[g+p.RENDER_MODEL_FG_OFFSET]!==this._cellColorResolver.result.fg||this._model.cells[g+p.RENDER_MODEL_EXT_OFFSET]!==this._cellColorResolver.result.ext)&&(x=!0,u.length>1&&(d|=p.COMBINED_CHAR_BIT_MASK),this._model.cells[g]=d,this._model.cells[g+p.RENDER_MODEL_BG_OFFSET]=this._cellColorResolver.result.bg,this._model.cells[g+p.RENDER_MODEL_FG_OFFSET]=this._cellColorResolver.result.fg,this._model.cells[g+p.RENDER_MODEL_EXT_OFFSET]=this._cellColorResolver.result.ext,f=S.getWidth(),this._glyphRenderer.value.updateCell(m,s,d,this._cellColorResolver.result.bg,this._cellColorResolver.result.fg,this._cellColorResolver.result.ext,u,f,r),h))for(S=this._workCell,m++;m{Object.defineProperty(t,"__esModule",{value:!0}),t.GLTexture=t.expandFloat32Array=t.createShader=t.createProgram=t.PROJECTION_MATRIX=void 0;const r=i(374);function s(e,t,i){const s=(0,r.throwIfFalsy)(e.createShader(t));if(e.shaderSource(s,i),e.compileShader(s),e.getShaderParameter(s,e.COMPILE_STATUS))return s;console.error(e.getShaderInfoLog(s)),e.deleteShader(s)}t.PROJECTION_MATRIX=new Float32Array([2,0,0,0,0,-2,0,0,0,0,1,0,-1,1,0,1]),t.createProgram=function(e,t,i){const o=(0,r.throwIfFalsy)(e.createProgram());if(e.attachShader(o,(0,r.throwIfFalsy)(s(e,e.VERTEX_SHADER,t))),e.attachShader(o,(0,r.throwIfFalsy)(s(e,e.FRAGMENT_SHADER,i))),e.linkProgram(o),e.getProgramParameter(o,e.LINK_STATUS))return o;console.error(e.getProgramInfoLog(o)),e.deleteProgram(o)},t.createShader=s,t.expandFloat32Array=function(e,t){const i=Math.min(2*e.length,t),r=new Float32Array(i);for(let t=0;t{Object.defineProperty(t,"__esModule",{value:!0}),t.BaseRenderLayer=void 0;const r=i(627),s=i(237),o=i(374),n=i(859);class a extends n.Disposable{constructor(e,t,i,r,s,o,a,h){super(),this._container=t,this._alpha=s,this._coreBrowserService=o,this._optionsService=a,this._themeService=h,this._deviceCharWidth=0,this._deviceCharHeight=0,this._deviceCellWidth=0,this._deviceCellHeight=0,this._deviceCharLeft=0,this._deviceCharTop=0,this._canvas=this._coreBrowserService.mainDocument.createElement("canvas"),this._canvas.classList.add(`xterm-${i}-layer`),this._canvas.style.zIndex=r.toString(),this._initCanvas(),this._container.appendChild(this._canvas),this.register(this._themeService.onChangeColors(t=>{this._refreshCharAtlas(e,t),this.reset(e)})),this.register((0,n.toDisposable)(()=>{this._canvas.remove()}))}_initCanvas(){this._ctx=(0,o.throwIfFalsy)(this._canvas.getContext("2d",{alpha:this._alpha})),this._alpha||this._clearAll()}handleBlur(e){}handleFocus(e){}handleCursorMove(e){}handleGridChanged(e,t,i){}handleSelectionChanged(e,t,i,r=!1){}_setTransparency(e,t){if(t===this._alpha)return;const i=this._canvas;this._alpha=t,this._canvas=this._canvas.cloneNode(),this._initCanvas(),this._container.replaceChild(this._canvas,i),this._refreshCharAtlas(e,this._themeService.colors),this.handleGridChanged(e,0,e.rows-1)}_refreshCharAtlas(e,t){this._deviceCharWidth<=0&&this._deviceCharHeight<=0||(this._charAtlas=(0,r.acquireTextureAtlas)(e,this._optionsService.rawOptions,t,this._deviceCellWidth,this._deviceCellHeight,this._deviceCharWidth,this._deviceCharHeight,this._coreBrowserService.dpr),this._charAtlas.warmUp())}resize(e,t){this._deviceCellWidth=t.device.cell.width,this._deviceCellHeight=t.device.cell.height,this._deviceCharWidth=t.device.char.width,this._deviceCharHeight=t.device.char.height,this._deviceCharLeft=t.device.char.left,this._deviceCharTop=t.device.char.top,this._canvas.width=t.device.canvas.width,this._canvas.height=t.device.canvas.height,this._canvas.style.width=`${t.css.canvas.width}px`,this._canvas.style.height=`${t.css.canvas.height}px`,this._alpha||this._clearAll(),this._refreshCharAtlas(e,this._themeService.colors)}_fillBottomLineAtCells(e,t,i=1){this._ctx.fillRect(e*this._deviceCellWidth,(t+1)*this._deviceCellHeight-this._coreBrowserService.dpr-1,i*this._deviceCellWidth,this._coreBrowserService.dpr)}_clearAll(){this._alpha?this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height):(this._ctx.fillStyle=this._themeService.colors.background.css,this._ctx.fillRect(0,0,this._canvas.width,this._canvas.height))}_clearCells(e,t,i,r){this._alpha?this._ctx.clearRect(e*this._deviceCellWidth,t*this._deviceCellHeight,i*this._deviceCellWidth,r*this._deviceCellHeight):(this._ctx.fillStyle=this._themeService.colors.background.css,this._ctx.fillRect(e*this._deviceCellWidth,t*this._deviceCellHeight,i*this._deviceCellWidth,r*this._deviceCellHeight))}_fillCharTrueColor(e,t,i,r){this._ctx.font=this._getFont(e,!1,!1),this._ctx.textBaseline=s.TEXT_BASELINE,this._clipCell(i,r,t.getWidth()),this._ctx.fillText(t.getChars(),i*this._deviceCellWidth+this._deviceCharLeft,r*this._deviceCellHeight+this._deviceCharTop+this._deviceCharHeight)}_clipCell(e,t,i){this._ctx.beginPath(),this._ctx.rect(e*this._deviceCellWidth,t*this._deviceCellHeight,i*this._deviceCellWidth,this._deviceCellHeight),this._ctx.clip()}_getFont(e,t,i){return`${i?"italic":""} ${t?e.options.fontWeightBold:e.options.fontWeight} ${e.options.fontSize*this._coreBrowserService.dpr}px ${e.options.fontFamily}`}}t.BaseRenderLayer=a},733:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.LinkRenderLayer=void 0;const r=i(197),s=i(237),o=i(592);class n extends o.BaseRenderLayer{constructor(e,t,i,r,s,o,n){super(i,e,"link",t,!0,s,o,n),this.register(r.onShowLinkUnderline(e=>this._handleShowLinkUnderline(e))),this.register(r.onHideLinkUnderline(e=>this._handleHideLinkUnderline(e)))}resize(e,t){super.resize(e,t),this._state=void 0}reset(e){this._clearCurrentLink()}_clearCurrentLink(){if(this._state){this._clearCells(this._state.x1,this._state.y1,this._state.cols-this._state.x1,1);const e=this._state.y2-this._state.y1-1;e>0&&this._clearCells(0,this._state.y1+1,this._state.cols,e),this._clearCells(0,this._state.y2,this._state.x2,1),this._state=void 0}}_handleShowLinkUnderline(e){if(e.fg===s.INVERTED_DEFAULT_COLOR?this._ctx.fillStyle=this._themeService.colors.background.css:void 0!==e.fg&&(0,r.is256Color)(e.fg)?this._ctx.fillStyle=this._themeService.colors.ansi[e.fg].css:this._ctx.fillStyle=this._themeService.colors.foreground.css,e.y1===e.y2)this._fillBottomLineAtCells(e.x1,e.y1,e.x2-e.x1);else{this._fillBottomLineAtCells(e.x1,e.y1,e.cols-e.x1);for(let t=e.y1+1;t{Object.defineProperty(t,"__esModule",{value:!0}),t.addDisposableDomListener=void 0,t.addDisposableDomListener=function(e,t,i,r){e.addEventListener(t,i,r);let s=!1;return{dispose:()=>{s||(s=!0,e.removeEventListener(t,i,r))}}}},274:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CellColorResolver=void 0;const r=i(855),s=i(160),o=i(374);let n,a=0,h=0,l=!1,c=!1,u=!1,d=0;t.CellColorResolver=class{constructor(e,t,i,r,s,o){this._terminal=e,this._optionService=t,this._selectionRenderModel=i,this._decorationService=r,this._coreBrowserService=s,this._themeService=o,this.result={fg:0,bg:0,ext:0}}resolve(e,t,i,_){if(this.result.bg=e.bg,this.result.fg=e.fg,this.result.ext=268435456&e.bg?e.extended.ext:0,h=0,a=0,c=!1,l=!1,u=!1,n=this._themeService.colors,d=0,e.getCode()!==r.NULL_CELL_CODE&&4===e.extended.underlineStyle){const e=Math.max(1,Math.floor(this._optionService.rawOptions.fontSize*this._coreBrowserService.dpr/15));d=t*_%(2*Math.round(e))}if(this._decorationService.forEachDecorationAtCell(t,i,"bottom",e=>{e.backgroundColorRGB&&(h=e.backgroundColorRGB.rgba>>8&16777215,c=!0),e.foregroundColorRGB&&(a=e.foregroundColorRGB.rgba>>8&16777215,l=!0)}),u=this._selectionRenderModel.isCellSelected(this._terminal,t,i),u){if(67108864&this.result.fg||50331648&this.result.bg){if(67108864&this.result.fg)switch(50331648&this.result.fg){case 16777216:case 33554432:h=this._themeService.colors.ansi[255&this.result.fg].rgba;break;case 50331648:h=(16777215&this.result.fg)<<8|255;break;default:h=this._themeService.colors.foreground.rgba}else switch(50331648&this.result.bg){case 16777216:case 33554432:h=this._themeService.colors.ansi[255&this.result.bg].rgba;break;case 50331648:h=(16777215&this.result.bg)<<8|255}h=s.rgba.blend(h,4294967040&(this._coreBrowserService.isFocused?n.selectionBackgroundOpaque:n.selectionInactiveBackgroundOpaque).rgba|128)>>8&16777215}else h=(this._coreBrowserService.isFocused?n.selectionBackgroundOpaque:n.selectionInactiveBackgroundOpaque).rgba>>8&16777215;if(c=!0,n.selectionForeground&&(a=n.selectionForeground.rgba>>8&16777215,l=!0),(0,o.treatGlyphAsBackgroundColor)(e.getCode())){if(67108864&this.result.fg&&!(50331648&this.result.bg))a=(this._coreBrowserService.isFocused?n.selectionBackgroundOpaque:n.selectionInactiveBackgroundOpaque).rgba>>8&16777215;else{if(67108864&this.result.fg)switch(50331648&this.result.bg){case 16777216:case 33554432:a=this._themeService.colors.ansi[255&this.result.bg].rgba;break;case 50331648:a=(16777215&this.result.bg)<<8|255}else switch(50331648&this.result.fg){case 16777216:case 33554432:a=this._themeService.colors.ansi[255&this.result.fg].rgba;break;case 50331648:a=(16777215&this.result.fg)<<8|255;break;default:a=this._themeService.colors.foreground.rgba}a=s.rgba.blend(a,4294967040&(this._coreBrowserService.isFocused?n.selectionBackgroundOpaque:n.selectionInactiveBackgroundOpaque).rgba|128)>>8&16777215}l=!0}}this._decorationService.forEachDecorationAtCell(t,i,"top",e=>{e.backgroundColorRGB&&(h=e.backgroundColorRGB.rgba>>8&16777215,c=!0),e.foregroundColorRGB&&(a=e.foregroundColorRGB.rgba>>8&16777215,l=!0)}),c&&(h=u?-16777216&e.bg&-134217729|h|50331648:-16777216&e.bg|h|50331648),l&&(a=-16777216&e.fg&-67108865|a|50331648),67108864&this.result.fg&&(c&&!l&&(a=50331648&this.result.bg?-134217728&this.result.fg|67108863&this.result.bg:-134217728&this.result.fg|16777215&n.background.rgba>>8|50331648,l=!0),!c&&l&&(h=50331648&this.result.fg?-67108864&this.result.bg|67108863&this.result.fg:-67108864&this.result.bg|16777215&n.foreground.rgba>>8|50331648,c=!0)),n=void 0,this.result.bg=c?h:this.result.bg,this.result.fg=l?a:this.result.fg,this.result.ext&=536870911,this.result.ext|=d<<29&3758096384}}},627:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.removeTerminalFromCache=t.acquireTextureAtlas=void 0;const r=i(509),s=i(197),o=[];t.acquireTextureAtlas=function(e,t,i,n,a,h,l,c){const u=(0,s.generateConfig)(n,a,h,l,t,i,c);for(let t=0;t=0){if((0,s.configEquals)(i.config,u))return i.atlas;1===i.ownedBy.length?(i.atlas.dispose(),o.splice(t,1)):i.ownedBy.splice(r,1);break}}for(let t=0;t{Object.defineProperty(t,"__esModule",{value:!0}),t.is256Color=t.configEquals=t.generateConfig=void 0;const r=i(160);t.generateConfig=function(e,t,i,s,o,n,a){const h={foreground:n.foreground,background:n.background,cursor:r.NULL_COLOR,cursorAccent:r.NULL_COLOR,selectionForeground:r.NULL_COLOR,selectionBackgroundTransparent:r.NULL_COLOR,selectionBackgroundOpaque:r.NULL_COLOR,selectionInactiveBackgroundTransparent:r.NULL_COLOR,selectionInactiveBackgroundOpaque:r.NULL_COLOR,ansi:n.ansi.slice(),contrastCache:n.contrastCache,halfContrastCache:n.halfContrastCache};return{customGlyphs:o.customGlyphs,devicePixelRatio:a,letterSpacing:o.letterSpacing,lineHeight:o.lineHeight,deviceCellWidth:e,deviceCellHeight:t,deviceCharWidth:i,deviceCharHeight:s,fontFamily:o.fontFamily,fontSize:o.fontSize,fontWeight:o.fontWeight,fontWeightBold:o.fontWeightBold,allowTransparency:o.allowTransparency,drawBoldTextInBrightColors:o.drawBoldTextInBrightColors,minimumContrastRatio:o.minimumContrastRatio,colors:h}},t.configEquals=function(e,t){for(let i=0;i{Object.defineProperty(t,"__esModule",{value:!0}),t.TEXT_BASELINE=t.DIM_OPACITY=t.INVERTED_DEFAULT_COLOR=void 0;const r=i(399);t.INVERTED_DEFAULT_COLOR=257,t.DIM_OPACITY=.5,t.TEXT_BASELINE=r.isFirefox||r.isLegacyEdge?"bottom":"ideographic"},457:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CursorBlinkStateManager=void 0,t.CursorBlinkStateManager=class{constructor(e,t){this._renderCallback=e,this._coreBrowserService=t,this.isCursorVisible=!0,this._coreBrowserService.isFocused&&this._restartInterval()}get isPaused(){return!(this._blinkStartTimeout||this._blinkInterval)}dispose(){this._blinkInterval&&(this._coreBrowserService.window.clearInterval(this._blinkInterval),this._blinkInterval=void 0),this._blinkStartTimeout&&(this._coreBrowserService.window.clearTimeout(this._blinkStartTimeout),this._blinkStartTimeout=void 0),this._animationFrame&&(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}restartBlinkAnimation(){this.isPaused||(this._animationTimeRestarted=Date.now(),this.isCursorVisible=!0,this._animationFrame||(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>{this._renderCallback(),this._animationFrame=void 0})))}_restartInterval(e=600){this._blinkInterval&&(this._coreBrowserService.window.clearInterval(this._blinkInterval),this._blinkInterval=void 0),this._blinkStartTimeout=this._coreBrowserService.window.setTimeout(()=>{if(this._animationTimeRestarted){const e=600-(Date.now()-this._animationTimeRestarted);if(this._animationTimeRestarted=void 0,e>0)return void this._restartInterval(e)}this.isCursorVisible=!1,this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>{this._renderCallback(),this._animationFrame=void 0}),this._blinkInterval=this._coreBrowserService.window.setInterval(()=>{if(this._animationTimeRestarted){const e=600-(Date.now()-this._animationTimeRestarted);return this._animationTimeRestarted=void 0,void this._restartInterval(e)}this.isCursorVisible=!this.isCursorVisible,this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>{this._renderCallback(),this._animationFrame=void 0})},600)},e)}pause(){this.isCursorVisible=!0,this._blinkInterval&&(this._coreBrowserService.window.clearInterval(this._blinkInterval),this._blinkInterval=void 0),this._blinkStartTimeout&&(this._coreBrowserService.window.clearTimeout(this._blinkStartTimeout),this._blinkStartTimeout=void 0),this._animationFrame&&(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}resume(){this.pause(),this._animationTimeRestarted=void 0,this._restartInterval(),this.restartBlinkAnimation()}}},860:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.tryDrawCustomChar=t.powerlineDefinitions=t.boxDrawingDefinitions=t.blockElementDefinitions=void 0;const r=i(374);t.blockElementDefinitions={"▀":[{x:0,y:0,w:8,h:4}],"▁":[{x:0,y:7,w:8,h:1}],"▂":[{x:0,y:6,w:8,h:2}],"▃":[{x:0,y:5,w:8,h:3}],"▄":[{x:0,y:4,w:8,h:4}],"▅":[{x:0,y:3,w:8,h:5}],"▆":[{x:0,y:2,w:8,h:6}],"▇":[{x:0,y:1,w:8,h:7}],"█":[{x:0,y:0,w:8,h:8}],"▉":[{x:0,y:0,w:7,h:8}],"▊":[{x:0,y:0,w:6,h:8}],"▋":[{x:0,y:0,w:5,h:8}],"▌":[{x:0,y:0,w:4,h:8}],"▍":[{x:0,y:0,w:3,h:8}],"▎":[{x:0,y:0,w:2,h:8}],"▏":[{x:0,y:0,w:1,h:8}],"▐":[{x:4,y:0,w:4,h:8}],"▔":[{x:0,y:0,w:8,h:1}],"▕":[{x:7,y:0,w:1,h:8}],"▖":[{x:0,y:4,w:4,h:4}],"▗":[{x:4,y:4,w:4,h:4}],"▘":[{x:0,y:0,w:4,h:4}],"▙":[{x:0,y:0,w:4,h:8},{x:0,y:4,w:8,h:4}],"▚":[{x:0,y:0,w:4,h:4},{x:4,y:4,w:4,h:4}],"▛":[{x:0,y:0,w:4,h:8},{x:4,y:0,w:4,h:4}],"▜":[{x:0,y:0,w:8,h:4},{x:4,y:0,w:4,h:8}],"▝":[{x:4,y:0,w:4,h:4}],"▞":[{x:4,y:0,w:4,h:4},{x:0,y:4,w:4,h:4}],"▟":[{x:4,y:0,w:4,h:8},{x:0,y:4,w:8,h:4}],"🭰":[{x:1,y:0,w:1,h:8}],"🭱":[{x:2,y:0,w:1,h:8}],"🭲":[{x:3,y:0,w:1,h:8}],"🭳":[{x:4,y:0,w:1,h:8}],"🭴":[{x:5,y:0,w:1,h:8}],"🭵":[{x:6,y:0,w:1,h:8}],"🭶":[{x:0,y:1,w:8,h:1}],"🭷":[{x:0,y:2,w:8,h:1}],"🭸":[{x:0,y:3,w:8,h:1}],"🭹":[{x:0,y:4,w:8,h:1}],"🭺":[{x:0,y:5,w:8,h:1}],"🭻":[{x:0,y:6,w:8,h:1}],"🭼":[{x:0,y:0,w:1,h:8},{x:0,y:7,w:8,h:1}],"🭽":[{x:0,y:0,w:1,h:8},{x:0,y:0,w:8,h:1}],"🭾":[{x:7,y:0,w:1,h:8},{x:0,y:0,w:8,h:1}],"🭿":[{x:7,y:0,w:1,h:8},{x:0,y:7,w:8,h:1}],"🮀":[{x:0,y:0,w:8,h:1},{x:0,y:7,w:8,h:1}],"🮁":[{x:0,y:0,w:8,h:1},{x:0,y:2,w:8,h:1},{x:0,y:4,w:8,h:1},{x:0,y:7,w:8,h:1}],"🮂":[{x:0,y:0,w:8,h:2}],"🮃":[{x:0,y:0,w:8,h:3}],"🮄":[{x:0,y:0,w:8,h:5}],"🮅":[{x:0,y:0,w:8,h:6}],"🮆":[{x:0,y:0,w:8,h:7}],"🮇":[{x:6,y:0,w:2,h:8}],"🮈":[{x:5,y:0,w:3,h:8}],"🮉":[{x:3,y:0,w:5,h:8}],"🮊":[{x:2,y:0,w:6,h:8}],"🮋":[{x:1,y:0,w:7,h:8}],"🮕":[{x:0,y:0,w:2,h:2},{x:4,y:0,w:2,h:2},{x:2,y:2,w:2,h:2},{x:6,y:2,w:2,h:2},{x:0,y:4,w:2,h:2},{x:4,y:4,w:2,h:2},{x:2,y:6,w:2,h:2},{x:6,y:6,w:2,h:2}],"🮖":[{x:2,y:0,w:2,h:2},{x:6,y:0,w:2,h:2},{x:0,y:2,w:2,h:2},{x:4,y:2,w:2,h:2},{x:2,y:4,w:2,h:2},{x:6,y:4,w:2,h:2},{x:0,y:6,w:2,h:2},{x:4,y:6,w:2,h:2}],"🮗":[{x:0,y:2,w:8,h:2},{x:0,y:6,w:8,h:2}]};const s={"░":[[1,0,0,0],[0,0,0,0],[0,0,1,0],[0,0,0,0]],"▒":[[1,0],[0,0],[0,1],[0,0]],"▓":[[0,1],[1,1],[1,0],[1,1]]};t.boxDrawingDefinitions={"─":{1:"M0,.5 L1,.5"},"━":{3:"M0,.5 L1,.5"},"│":{1:"M.5,0 L.5,1"},"┃":{3:"M.5,0 L.5,1"},"┌":{1:"M0.5,1 L.5,.5 L1,.5"},"┏":{3:"M0.5,1 L.5,.5 L1,.5"},"┐":{1:"M0,.5 L.5,.5 L.5,1"},"┓":{3:"M0,.5 L.5,.5 L.5,1"},"└":{1:"M.5,0 L.5,.5 L1,.5"},"┗":{3:"M.5,0 L.5,.5 L1,.5"},"┘":{1:"M.5,0 L.5,.5 L0,.5"},"┛":{3:"M.5,0 L.5,.5 L0,.5"},"├":{1:"M.5,0 L.5,1 M.5,.5 L1,.5"},"┣":{3:"M.5,0 L.5,1 M.5,.5 L1,.5"},"┤":{1:"M.5,0 L.5,1 M.5,.5 L0,.5"},"┫":{3:"M.5,0 L.5,1 M.5,.5 L0,.5"},"┬":{1:"M0,.5 L1,.5 M.5,.5 L.5,1"},"┳":{3:"M0,.5 L1,.5 M.5,.5 L.5,1"},"┴":{1:"M0,.5 L1,.5 M.5,.5 L.5,0"},"┻":{3:"M0,.5 L1,.5 M.5,.5 L.5,0"},"┼":{1:"M0,.5 L1,.5 M.5,0 L.5,1"},"╋":{3:"M0,.5 L1,.5 M.5,0 L.5,1"},"╴":{1:"M.5,.5 L0,.5"},"╸":{3:"M.5,.5 L0,.5"},"╵":{1:"M.5,.5 L.5,0"},"╹":{3:"M.5,.5 L.5,0"},"╶":{1:"M.5,.5 L1,.5"},"╺":{3:"M.5,.5 L1,.5"},"╷":{1:"M.5,.5 L.5,1"},"╻":{3:"M.5,.5 L.5,1"},"═":{1:(e,t)=>`M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t}`},"║":{1:(e,t)=>`M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1`},"╒":{1:(e,t)=>`M.5,1 L.5,${.5-t} L1,${.5-t} M.5,${.5+t} L1,${.5+t}`},"╓":{1:(e,t)=>`M${.5-e},1 L${.5-e},.5 L1,.5 M${.5+e},.5 L${.5+e},1`},"╔":{1:(e,t)=>`M1,${.5-t} L${.5-e},${.5-t} L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1`},"╕":{1:(e,t)=>`M0,${.5-t} L.5,${.5-t} L.5,1 M0,${.5+t} L.5,${.5+t}`},"╖":{1:(e,t)=>`M${.5+e},1 L${.5+e},.5 L0,.5 M${.5-e},.5 L${.5-e},1`},"╗":{1:(e,t)=>`M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M0,${.5-t} L${.5+e},${.5-t} L${.5+e},1`},"╘":{1:(e,t)=>`M.5,0 L.5,${.5+t} L1,${.5+t} M.5,${.5-t} L1,${.5-t}`},"╙":{1:(e,t)=>`M1,.5 L${.5-e},.5 L${.5-e},0 M${.5+e},.5 L${.5+e},0`},"╚":{1:(e,t)=>`M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0 M1,${.5+t} L${.5-e},${.5+t} L${.5-e},0`},"╛":{1:(e,t)=>`M0,${.5+t} L.5,${.5+t} L.5,0 M0,${.5-t} L.5,${.5-t}`},"╜":{1:(e,t)=>`M0,.5 L${.5+e},.5 L${.5+e},0 M${.5-e},.5 L${.5-e},0`},"╝":{1:(e,t)=>`M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0 M0,${.5+t} L${.5+e},${.5+t} L${.5+e},0`},"╞":{1:(e,t)=>`M.5,0 L.5,1 M.5,${.5-t} L1,${.5-t} M.5,${.5+t} L1,${.5+t}`},"╟":{1:(e,t)=>`M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1 M${.5+e},.5 L1,.5`},"╠":{1:(e,t)=>`M${.5-e},0 L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1 M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0`},"╡":{1:(e,t)=>`M.5,0 L.5,1 M0,${.5-t} L.5,${.5-t} M0,${.5+t} L.5,${.5+t}`},"╢":{1:(e,t)=>`M0,.5 L${.5-e},.5 M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1`},"╣":{1:(e,t)=>`M${.5+e},0 L${.5+e},1 M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0`},"╤":{1:(e,t)=>`M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t} M.5,${.5+t} L.5,1`},"╥":{1:(e,t)=>`M0,.5 L1,.5 M${.5-e},.5 L${.5-e},1 M${.5+e},.5 L${.5+e},1`},"╦":{1:(e,t)=>`M0,${.5-t} L1,${.5-t} M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1`},"╧":{1:(e,t)=>`M.5,0 L.5,${.5-t} M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t}`},"╨":{1:(e,t)=>`M0,.5 L1,.5 M${.5-e},.5 L${.5-e},0 M${.5+e},.5 L${.5+e},0`},"╩":{1:(e,t)=>`M0,${.5+t} L1,${.5+t} M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0 M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0`},"╪":{1:(e,t)=>`M.5,0 L.5,1 M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t}`},"╫":{1:(e,t)=>`M0,.5 L1,.5 M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1`},"╬":{1:(e,t)=>`M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1 M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0 M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0`},"╱":{1:"M1,0 L0,1"},"╲":{1:"M0,0 L1,1"},"╳":{1:"M1,0 L0,1 M0,0 L1,1"},"╼":{1:"M.5,.5 L0,.5",3:"M.5,.5 L1,.5"},"╽":{1:"M.5,.5 L.5,0",3:"M.5,.5 L.5,1"},"╾":{1:"M.5,.5 L1,.5",3:"M.5,.5 L0,.5"},"╿":{1:"M.5,.5 L.5,1",3:"M.5,.5 L.5,0"},"┍":{1:"M.5,.5 L.5,1",3:"M.5,.5 L1,.5"},"┎":{1:"M.5,.5 L1,.5",3:"M.5,.5 L.5,1"},"┑":{1:"M.5,.5 L.5,1",3:"M.5,.5 L0,.5"},"┒":{1:"M.5,.5 L0,.5",3:"M.5,.5 L.5,1"},"┕":{1:"M.5,.5 L.5,0",3:"M.5,.5 L1,.5"},"┖":{1:"M.5,.5 L1,.5",3:"M.5,.5 L.5,0"},"┙":{1:"M.5,.5 L.5,0",3:"M.5,.5 L0,.5"},"┚":{1:"M.5,.5 L0,.5",3:"M.5,.5 L.5,0"},"┝":{1:"M.5,0 L.5,1",3:"M.5,.5 L1,.5"},"┞":{1:"M0.5,1 L.5,.5 L1,.5",3:"M.5,.5 L.5,0"},"┟":{1:"M.5,0 L.5,.5 L1,.5",3:"M.5,.5 L.5,1"},"┠":{1:"M.5,.5 L1,.5",3:"M.5,0 L.5,1"},"┡":{1:"M.5,.5 L.5,1",3:"M.5,0 L.5,.5 L1,.5"},"┢":{1:"M.5,.5 L.5,0",3:"M0.5,1 L.5,.5 L1,.5"},"┥":{1:"M.5,0 L.5,1",3:"M.5,.5 L0,.5"},"┦":{1:"M0,.5 L.5,.5 L.5,1",3:"M.5,.5 L.5,0"},"┧":{1:"M.5,0 L.5,.5 L0,.5",3:"M.5,.5 L.5,1"},"┨":{1:"M.5,.5 L0,.5",3:"M.5,0 L.5,1"},"┩":{1:"M.5,.5 L.5,1",3:"M.5,0 L.5,.5 L0,.5"},"┪":{1:"M.5,.5 L.5,0",3:"M0,.5 L.5,.5 L.5,1"},"┭":{1:"M0.5,1 L.5,.5 L1,.5",3:"M.5,.5 L0,.5"},"┮":{1:"M0,.5 L.5,.5 L.5,1",3:"M.5,.5 L1,.5"},"┯":{1:"M.5,.5 L.5,1",3:"M0,.5 L1,.5"},"┰":{1:"M0,.5 L1,.5",3:"M.5,.5 L.5,1"},"┱":{1:"M.5,.5 L1,.5",3:"M0,.5 L.5,.5 L.5,1"},"┲":{1:"M.5,.5 L0,.5",3:"M0.5,1 L.5,.5 L1,.5"},"┵":{1:"M.5,0 L.5,.5 L1,.5",3:"M.5,.5 L0,.5"},"┶":{1:"M.5,0 L.5,.5 L0,.5",3:"M.5,.5 L1,.5"},"┷":{1:"M.5,.5 L.5,0",3:"M0,.5 L1,.5"},"┸":{1:"M0,.5 L1,.5",3:"M.5,.5 L.5,0"},"┹":{1:"M.5,.5 L1,.5",3:"M.5,0 L.5,.5 L0,.5"},"┺":{1:"M.5,.5 L0,.5",3:"M.5,0 L.5,.5 L1,.5"},"┽":{1:"M.5,0 L.5,1 M.5,.5 L1,.5",3:"M.5,.5 L0,.5"},"┾":{1:"M.5,0 L.5,1 M.5,.5 L0,.5",3:"M.5,.5 L1,.5"},"┿":{1:"M.5,0 L.5,1",3:"M0,.5 L1,.5"},"╀":{1:"M0,.5 L1,.5 M.5,.5 L.5,1",3:"M.5,.5 L.5,0"},"╁":{1:"M.5,.5 L.5,0 M0,.5 L1,.5",3:"M.5,.5 L.5,1"},"╂":{1:"M0,.5 L1,.5",3:"M.5,0 L.5,1"},"╃":{1:"M0.5,1 L.5,.5 L1,.5",3:"M.5,0 L.5,.5 L0,.5"},"╄":{1:"M0,.5 L.5,.5 L.5,1",3:"M.5,0 L.5,.5 L1,.5"},"╅":{1:"M.5,0 L.5,.5 L1,.5",3:"M0,.5 L.5,.5 L.5,1"},"╆":{1:"M.5,0 L.5,.5 L0,.5",3:"M0.5,1 L.5,.5 L1,.5"},"╇":{1:"M.5,.5 L.5,1",3:"M.5,.5 L.5,0 M0,.5 L1,.5"},"╈":{1:"M.5,.5 L.5,0",3:"M0,.5 L1,.5 M.5,.5 L.5,1"},"╉":{1:"M.5,.5 L1,.5",3:"M.5,0 L.5,1 M.5,.5 L0,.5"},"╊":{1:"M.5,.5 L0,.5",3:"M.5,0 L.5,1 M.5,.5 L1,.5"},"╌":{1:"M.1,.5 L.4,.5 M.6,.5 L.9,.5"},"╍":{3:"M.1,.5 L.4,.5 M.6,.5 L.9,.5"},"┄":{1:"M.0667,.5 L.2667,.5 M.4,.5 L.6,.5 M.7333,.5 L.9333,.5"},"┅":{3:"M.0667,.5 L.2667,.5 M.4,.5 L.6,.5 M.7333,.5 L.9333,.5"},"┈":{1:"M.05,.5 L.2,.5 M.3,.5 L.45,.5 M.55,.5 L.7,.5 M.8,.5 L.95,.5"},"┉":{3:"M.05,.5 L.2,.5 M.3,.5 L.45,.5 M.55,.5 L.7,.5 M.8,.5 L.95,.5"},"╎":{1:"M.5,.1 L.5,.4 M.5,.6 L.5,.9"},"╏":{3:"M.5,.1 L.5,.4 M.5,.6 L.5,.9"},"┆":{1:"M.5,.0667 L.5,.2667 M.5,.4 L.5,.6 M.5,.7333 L.5,.9333"},"┇":{3:"M.5,.0667 L.5,.2667 M.5,.4 L.5,.6 M.5,.7333 L.5,.9333"},"┊":{1:"M.5,.05 L.5,.2 M.5,.3 L.5,.45 L.5,.55 M.5,.7 L.5,.95"},"┋":{3:"M.5,.05 L.5,.2 M.5,.3 L.5,.45 L.5,.55 M.5,.7 L.5,.95"},"╭":{1:(e,t)=>`M.5,1 L.5,${.5+t/.15*.5} C.5,${.5+t/.15*.5},.5,.5,1,.5`},"╮":{1:(e,t)=>`M.5,1 L.5,${.5+t/.15*.5} C.5,${.5+t/.15*.5},.5,.5,0,.5`},"╯":{1:(e,t)=>`M.5,0 L.5,${.5-t/.15*.5} C.5,${.5-t/.15*.5},.5,.5,0,.5`},"╰":{1:(e,t)=>`M.5,0 L.5,${.5-t/.15*.5} C.5,${.5-t/.15*.5},.5,.5,1,.5`}},t.powerlineDefinitions={"":{d:"M0,0 L1,.5 L0,1",type:0,rightPadding:2},"":{d:"M-1,-.5 L1,.5 L-1,1.5",type:1,leftPadding:1,rightPadding:1},"":{d:"M1,0 L0,.5 L1,1",type:0,leftPadding:2},"":{d:"M2,-.5 L0,.5 L2,1.5",type:1,leftPadding:1,rightPadding:1},"":{d:"M0,0 L0,1 C0.552,1,1,0.776,1,.5 C1,0.224,0.552,0,0,0",type:0,rightPadding:1},"":{d:"M.2,1 C.422,1,.8,.826,.78,.5 C.8,.174,0.422,0,.2,0",type:1,rightPadding:1},"":{d:"M1,0 L1,1 C0.448,1,0,0.776,0,.5 C0,0.224,0.448,0,1,0",type:0,leftPadding:1},"":{d:"M.8,1 C0.578,1,0.2,.826,.22,.5 C0.2,0.174,0.578,0,0.8,0",type:1,leftPadding:1},"":{d:"M-.5,-.5 L1.5,1.5 L-.5,1.5",type:0},"":{d:"M-.5,-.5 L1.5,1.5",type:1,leftPadding:1,rightPadding:1},"":{d:"M1.5,-.5 L-.5,1.5 L1.5,1.5",type:0},"":{d:"M1.5,-.5 L-.5,1.5 L-.5,-.5",type:0},"":{d:"M1.5,-.5 L-.5,1.5",type:1,leftPadding:1,rightPadding:1},"":{d:"M-.5,-.5 L1.5,1.5 L1.5,-.5",type:0}},t.powerlineDefinitions[""]=t.powerlineDefinitions[""],t.powerlineDefinitions[""]=t.powerlineDefinitions[""],t.tryDrawCustomChar=function(e,i,n,l,c,u,d,_){const f=t.blockElementDefinitions[i];if(f)return function(e,t,i,r,s,o){for(let n=0;n7&&parseInt(l.slice(7,9),16)||1;else{if(!l.startsWith("rgba"))throw new Error(`Unexpected fillStyle color format "${l}" when drawing pattern glyph`);[u,d,_,f]=l.substring(5,l.length-1).split(",").map(e=>parseFloat(e))}for(let e=0;ee.bezierCurveTo(t[0],t[1],t[2],t[3],t[4],t[5]),L:(e,t)=>e.lineTo(t[0],t[1]),M:(e,t)=>e.moveTo(t[0],t[1])};function h(e,t,i,r,s,o,a,h=0,l=0){const c=e.map(e=>parseFloat(e)||parseInt(e));if(c.length<2)throw new Error("Too few arguments for instruction");for(let e=0;e{Object.defineProperty(t,"__esModule",{value:!0}),t.observeDevicePixelDimensions=void 0;const r=i(859);t.observeDevicePixelDimensions=function(e,t,i){let s=new t.ResizeObserver(t=>{const r=t.find(t=>t.target===e);if(!r)return;if(!("devicePixelContentBoxSize"in r))return s?.disconnect(),void(s=void 0);const o=r.devicePixelContentBoxSize[0].inlineSize,n=r.devicePixelContentBoxSize[0].blockSize;o>0&&n>0&&i(o,n)});try{s.observe(e,{box:["device-pixel-content-box"]})}catch{s.disconnect(),s=void 0}return(0,r.toDisposable)(()=>s?.disconnect())}},374:(e,t)=>{function i(e){return 57508<=e&&e<=57558}function r(e){return e>=128512&&e<=128591||e>=127744&&e<=128511||e>=128640&&e<=128767||e>=9728&&e<=9983||e>=9984&&e<=10175||e>=65024&&e<=65039||e>=129280&&e<=129535||e>=127462&&e<=127487}Object.defineProperty(t,"__esModule",{value:!0}),t.computeNextVariantOffset=t.createRenderDimensions=t.treatGlyphAsBackgroundColor=t.allowRescaling=t.isEmoji=t.isRestrictedPowerlineGlyph=t.isPowerlineGlyph=t.throwIfFalsy=void 0,t.throwIfFalsy=function(e){if(!e)throw new Error("value must not be falsy");return e},t.isPowerlineGlyph=i,t.isRestrictedPowerlineGlyph=function(e){return 57520<=e&&e<=57527},t.isEmoji=r,t.allowRescaling=function(e,t,s,o){return 1===t&&s>Math.ceil(1.5*o)&&void 0!==e&&e>255&&!r(e)&&!i(e)&&!function(e){return 57344<=e&&e<=63743}(e)},t.treatGlyphAsBackgroundColor=function(e){return i(e)||function(e){return 9472<=e&&e<=9631}(e)},t.createRenderDimensions=function(){return{css:{canvas:{width:0,height:0},cell:{width:0,height:0}},device:{canvas:{width:0,height:0},cell:{width:0,height:0},char:{width:0,height:0,left:0,top:0}}}},t.computeNextVariantOffset=function(e,t,i=0){return(e-(2*Math.round(t)-i))%(2*Math.round(t))}},296:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.createSelectionRenderModel=void 0;class i{constructor(){this.clear()}clear(){this.hasSelection=!1,this.columnSelectMode=!1,this.viewportStartRow=0,this.viewportEndRow=0,this.viewportCappedStartRow=0,this.viewportCappedEndRow=0,this.startCol=0,this.endCol=0,this.selectionStart=void 0,this.selectionEnd=void 0}update(e,t,i,r=!1){if(this.selectionStart=t,this.selectionEnd=i,!t||!i||t[0]===i[0]&&t[1]===i[1])return void this.clear();const s=e.buffers.active.ydisp,o=t[1]-s,n=i[1]-s,a=Math.max(o,0),h=Math.min(n,e.rows-1);a>=e.rows||h<0?this.clear():(this.hasSelection=!0,this.columnSelectMode=r,this.viewportStartRow=o,this.viewportEndRow=n,this.viewportCappedStartRow=a,this.viewportCappedEndRow=h,this.startCol=t[0],this.endCol=i[0])}isCellSelected(e,t,i){return!!this.hasSelection&&(i-=e.buffer.active.viewportY,this.columnSelectMode?this.startCol<=this.endCol?t>=this.startCol&&i>=this.viewportCappedStartRow&&t=this.viewportCappedStartRow&&t>=this.endCol&&i<=this.viewportCappedEndRow:i>this.viewportStartRow&&i=this.startCol&&t=this.startCol)}}t.createSelectionRenderModel=function(){return new i}},509:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.TextureAtlas=void 0;const r=i(237),s=i(860),o=i(374),n=i(160),a=i(345),h=i(485),l=i(385),c=i(147),u=i(855),d={texturePage:0,texturePosition:{x:0,y:0},texturePositionClipSpace:{x:0,y:0},offset:{x:0,y:0},size:{x:0,y:0},sizeClipSpace:{x:0,y:0}};let _;class f{get pages(){return this._pages}constructor(e,t,i){this._document=e,this._config=t,this._unicodeService=i,this._didWarmUp=!1,this._cacheMap=new h.FourKeyMap,this._cacheMapCombined=new h.FourKeyMap,this._pages=[],this._activePages=[],this._workBoundingBox={top:0,left:0,bottom:0,right:0},this._workAttributeData=new c.AttributeData,this._textureSize=512,this._onAddTextureAtlasCanvas=new a.EventEmitter,this.onAddTextureAtlasCanvas=this._onAddTextureAtlasCanvas.event,this._onRemoveTextureAtlasCanvas=new a.EventEmitter,this.onRemoveTextureAtlasCanvas=this._onRemoveTextureAtlasCanvas.event,this._requestClearModel=!1,this._createNewPage(),this._tmpCanvas=m(e,4*this._config.deviceCellWidth+4,this._config.deviceCellHeight+4),this._tmpCtx=(0,o.throwIfFalsy)(this._tmpCanvas.getContext("2d",{alpha:this._config.allowTransparency,willReadFrequently:!0}))}dispose(){for(const e of this.pages)e.canvas.remove();this._onAddTextureAtlasCanvas.dispose()}warmUp(){this._didWarmUp||(this._doWarmUp(),this._didWarmUp=!0)}_doWarmUp(){const e=new l.IdleTaskQueue;for(let t=33;t<126;t++)e.enqueue(()=>{if(!this._cacheMap.get(t,u.DEFAULT_COLOR,u.DEFAULT_COLOR,u.DEFAULT_EXT)){const e=this._drawToCache(t,u.DEFAULT_COLOR,u.DEFAULT_COLOR,u.DEFAULT_EXT);this._cacheMap.set(t,u.DEFAULT_COLOR,u.DEFAULT_COLOR,u.DEFAULT_EXT,e)}})}beginFrame(){return this._requestClearModel}clearTexture(){if(0!==this._pages[0].currentRow.x||0!==this._pages[0].currentRow.y){for(const e of this._pages)e.clear();this._cacheMap.clear(),this._cacheMapCombined.clear(),this._didWarmUp=!1}}_createNewPage(){if(f.maxAtlasPages&&this._pages.length>=Math.max(4,f.maxAtlasPages)){const e=this._pages.filter(e=>2*e.canvas.width<=(f.maxTextureSize||4096)).sort((e,t)=>t.canvas.width!==e.canvas.width?t.canvas.width-e.canvas.width:t.percentageUsed-e.percentageUsed);let t=-1,i=0;for(let r=0;re.glyphs[0].texturePage).sort((e,t)=>e>t?1:-1),o=this.pages.length-r.length,n=this._mergePages(r,o);n.version++;for(let e=s.length-1;e>=0;e--)this._deletePage(s[e]);this.pages.push(n),this._requestClearModel=!0,this._onAddTextureAtlasCanvas.fire(n.canvas)}const e=new g(this._document,this._textureSize);return this._pages.push(e),this._activePages.push(e),this._onAddTextureAtlasCanvas.fire(e.canvas),e}_mergePages(e,t){const i=2*e[0].canvas.width,r=new g(this._document,i,e);for(const[s,o]of e.entries()){const e=s*o.canvas.width%i,n=Math.floor(s/2)*o.canvas.height;r.ctx.drawImage(o.canvas,e,n);for(const r of o.glyphs)r.texturePage=t,r.sizeClipSpace.x=r.size.x/i,r.sizeClipSpace.y=r.size.y/i,r.texturePosition.x+=e,r.texturePosition.y+=n,r.texturePositionClipSpace.x=r.texturePosition.x/i,r.texturePositionClipSpace.y=r.texturePosition.y/i;this._onRemoveTextureAtlasCanvas.fire(o.canvas);const a=this._activePages.indexOf(o);-1!==a&&this._activePages.splice(a,1)}return r}_deletePage(e){this._pages.splice(e,1);for(let t=e;t=this._config.colors.ansi.length)throw new Error("No color found for idx "+e);return this._config.colors.ansi[e]}_getBackgroundColor(e,t,i,r){if(this._config.allowTransparency)return n.NULL_COLOR;let s;switch(e){case 16777216:case 33554432:s=this._getColorFromAnsiIndex(t);break;case 50331648:const e=c.AttributeData.toColorRGB(t);s=n.channels.toColor(e[0],e[1],e[2]);break;default:s=i?n.color.opaque(this._config.colors.foreground):this._config.colors.background}return s}_getForegroundColor(e,t,i,s,o,a,h,l,u,d){const _=this._getMinimumContrastColor(e,t,i,s,o,a,h,u,l,d);if(_)return _;let f;switch(o){case 16777216:case 33554432:this._config.drawBoldTextInBrightColors&&u&&a<8&&(a+=8),f=this._getColorFromAnsiIndex(a);break;case 50331648:const e=c.AttributeData.toColorRGB(a);f=n.channels.toColor(e[0],e[1],e[2]);break;default:f=h?this._config.colors.background:this._config.colors.foreground}return this._config.allowTransparency&&(f=n.color.opaque(f)),l&&(f=n.color.multiplyOpacity(f,r.DIM_OPACITY)),f}_resolveBackgroundRgba(e,t,i){switch(e){case 16777216:case 33554432:return this._getColorFromAnsiIndex(t).rgba;case 50331648:return t<<8;default:return i?this._config.colors.foreground.rgba:this._config.colors.background.rgba}}_resolveForegroundRgba(e,t,i,r){switch(e){case 16777216:case 33554432:return this._config.drawBoldTextInBrightColors&&r&&t<8&&(t+=8),this._getColorFromAnsiIndex(t).rgba;case 50331648:return t<<8;default:return i?this._config.colors.background.rgba:this._config.colors.foreground.rgba}}_getMinimumContrastColor(e,t,i,r,s,o,a,h,l,c){if(1===this._config.minimumContrastRatio||c)return;const u=this._getContrastCache(l),d=u.getColor(e,r);if(void 0!==d)return d||void 0;const _=this._resolveBackgroundRgba(t,i,a),f=this._resolveForegroundRgba(s,o,a,h),g=n.rgba.ensureContrastRatio(_,f,this._config.minimumContrastRatio/(l?2:1));if(!g)return void u.setColor(e,r,null);const p=n.channels.toColor(g>>24&255,g>>16&255,g>>8&255);return u.setColor(e,r,p),p}_getContrastCache(e){return e?this._config.colors.halfContrastCache:this._config.colors.contrastCache}_drawToCache(e,t,i,n,a=!1){const h="number"==typeof e?String.fromCharCode(e):e,l=Math.min(this._config.deviceCellWidth*Math.max(h.length,2)+4,this._textureSize);this._tmpCanvas.width=e?2*e-l:e-l;0==!(l>=e)||0===_?(this._tmpCtx.setLineDash([Math.round(e),Math.round(e)]),this._tmpCtx.moveTo(h+_,r),this._tmpCtx.lineTo(c,r)):(this._tmpCtx.setLineDash([Math.round(e),Math.round(e)]),this._tmpCtx.moveTo(h,r),this._tmpCtx.lineTo(h+_,r),this._tmpCtx.moveTo(h+_+e,r),this._tmpCtx.lineTo(c,r)),l=(0,o.computeNextVariantOffset)(c-h,e,l);break;case 5:const f=.6,g=.3,p=c-h,m=Math.floor(f*p),v=Math.floor(g*p),b=p-m-v;this._tmpCtx.setLineDash([m,v,b]),this._tmpCtx.moveTo(h,r),this._tmpCtx.lineTo(c,r);break;default:this._tmpCtx.moveTo(h,r),this._tmpCtx.lineTo(c,r)}this._tmpCtx.stroke(),this._tmpCtx.restore()}if(this._tmpCtx.restore(),!P&&this._config.fontSize>=12&&!this._config.allowTransparency&&" "!==h){this._tmpCtx.save(),this._tmpCtx.textBaseline="alphabetic";const t=this._tmpCtx.measureText(h);if(this._tmpCtx.restore(),"actualBoundingBoxDescent"in t&&t.actualBoundingBoxDescent>0){this._tmpCtx.save();const t=new Path2D;t.rect(i,r-Math.ceil(e/2),this._config.deviceCellWidth*B,n-r+Math.ceil(e/2)),this._tmpCtx.clip(t),this._tmpCtx.lineWidth=3*this._config.devicePixelRatio,this._tmpCtx.strokeStyle=E.css,this._tmpCtx.strokeText(h,D,D+this._config.deviceCharHeight),this._tmpCtx.restore()}}}if(S){const e=Math.max(1,Math.floor(this._config.fontSize*this._config.devicePixelRatio/15)),t=e%2==1?.5:0;this._tmpCtx.lineWidth=e,this._tmpCtx.strokeStyle=this._tmpCtx.fillStyle,this._tmpCtx.beginPath(),this._tmpCtx.moveTo(D,D+t),this._tmpCtx.lineTo(D+this._config.deviceCharWidth*B,D+t),this._tmpCtx.stroke()}if(P||this._tmpCtx.fillText(h,D,D+this._config.deviceCharHeight),"_"===h&&!this._config.allowTransparency){let e=p(this._tmpCtx.getImageData(D,D,this._config.deviceCellWidth,this._config.deviceCellHeight),E,M,F);if(e)for(let t=1;t<=5&&(this._tmpCtx.save(),this._tmpCtx.fillStyle=E.css,this._tmpCtx.fillRect(0,0,this._tmpCanvas.width,this._tmpCanvas.height),this._tmpCtx.restore(),this._tmpCtx.fillText(h,D,D+this._config.deviceCharHeight-t),e=p(this._tmpCtx.getImageData(D,D,this._config.deviceCellWidth,this._config.deviceCellHeight),E,M,F),e);t++);}if(C){const e=Math.max(1,Math.floor(this._config.fontSize*this._config.devicePixelRatio/10)),t=this._tmpCtx.lineWidth%2==1?.5:0;this._tmpCtx.lineWidth=e,this._tmpCtx.strokeStyle=this._tmpCtx.fillStyle,this._tmpCtx.beginPath(),this._tmpCtx.moveTo(D,D+Math.floor(this._config.deviceCharHeight/2)-t),this._tmpCtx.lineTo(D+this._config.deviceCharWidth*B,D+Math.floor(this._config.deviceCharHeight/2)-t),this._tmpCtx.stroke()}this._tmpCtx.restore();const I=this._tmpCtx.getImageData(0,0,this._tmpCanvas.width,this._tmpCanvas.height);let O;if(O=this._config.allowTransparency?function(e){for(let t=0;t0)return!1;return!0}(I):p(I,E,M,F),O)return d;const N=this._findGlyphBoundingBox(I,this._workBoundingBox,l,L,P,D);let V,U;for(;;){if(0===this._activePages.length){const e=this._createNewPage();V=e,U=e.currentRow,U.height=N.size.y;break}V=this._activePages[this._activePages.length-1],U=V.currentRow;for(const e of this._activePages)N.size.y<=e.currentRow.height&&(V=e,U=e.currentRow);for(let e=this._activePages.length-1;e>=0;e--)for(const t of this._activePages[e].fixedRows)t.height<=U.height&&N.size.y<=t.height&&(V=this._activePages[e],U=t);if(U.y+N.size.y>=V.canvas.height||U.height>N.size.y+2){let e=!1;if(V.currentRow.y+V.currentRow.height+N.size.y>=V.canvas.height){let t;for(const e of this._activePages)if(e.currentRow.y+e.currentRow.height+N.size.y=f.maxAtlasPages&&U.y+N.size.y<=V.canvas.height&&U.height>=N.size.y&&U.x+N.size.x<=V.canvas.width)e=!0;else{const t=this._createNewPage();V=t,U=t.currentRow,U.height=N.size.y,e=!0}}e||(V.currentRow.height>0&&V.fixedRows.push(V.currentRow),U={x:0,y:V.currentRow.y+V.currentRow.height,height:N.size.y},V.fixedRows.push(U),V.currentRow={x:0,y:U.y+U.height,height:0})}if(U.x+N.size.x<=V.canvas.width)break;U===V.currentRow?(U.x=0,U.y+=U.height,U.height=0):V.fixedRows.splice(V.fixedRows.indexOf(U),1)}return N.texturePage=this._pages.indexOf(V),N.texturePosition.x=U.x,N.texturePosition.y=U.y,N.texturePositionClipSpace.x=U.x/V.canvas.width,N.texturePositionClipSpace.y=U.y/V.canvas.height,N.sizeClipSpace.x/=V.canvas.width,N.sizeClipSpace.y/=V.canvas.height,U.height=Math.max(U.height,N.size.y),U.x+=N.size.x,V.ctx.putImageData(I,N.texturePosition.x-this._workBoundingBox.left,N.texturePosition.y-this._workBoundingBox.top,this._workBoundingBox.left,this._workBoundingBox.top,N.size.x,N.size.y),V.addGlyph(N),V.version++,N}_findGlyphBoundingBox(e,t,i,r,s,o){t.top=0;const n=r?this._config.deviceCellHeight:this._tmpCanvas.height,a=r?this._config.deviceCellWidth:i;let h=!1;for(let i=0;i=o;i--){for(let r=0;r=0;i--){for(let r=0;r>>24,o=t.rgba>>>16&255,n=t.rgba>>>8&255,a=i.rgba>>>24,h=i.rgba>>>16&255,l=i.rgba>>>8&255,c=Math.floor((Math.abs(s-a)+Math.abs(o-h)+Math.abs(n-l))/12);let u=!0;for(let t=0;t{Object.defineProperty(t,"__esModule",{value:!0}),t.contrastRatio=t.toPaddedHex=t.rgba=t.rgb=t.css=t.color=t.channels=t.NULL_COLOR=void 0;let i=0,r=0,s=0,o=0;var n,a,h,l,c;function u(e){const t=e.toString(16);return t.length<2?"0"+t:t}function d(e,t){return e>>0},e.toColor=function(t,i,r,s){return{css:e.toCss(t,i,r,s),rgba:e.toRgba(t,i,r,s)}}}(n||(t.channels=n={})),function(e){function t(e,t){return o=Math.round(255*t),[i,r,s]=c.toChannels(e.rgba),{css:n.toCss(i,r,s,o),rgba:n.toRgba(i,r,s,o)}}e.blend=function(e,t){if(o=(255&t.rgba)/255,1===o)return{css:t.css,rgba:t.rgba};const a=t.rgba>>24&255,h=t.rgba>>16&255,l=t.rgba>>8&255,c=e.rgba>>24&255,u=e.rgba>>16&255,d=e.rgba>>8&255;return i=c+Math.round((a-c)*o),r=u+Math.round((h-u)*o),s=d+Math.round((l-d)*o),{css:n.toCss(i,r,s),rgba:n.toRgba(i,r,s)}},e.isOpaque=function(e){return!(255&~e.rgba)},e.ensureContrastRatio=function(e,t,i){const r=c.ensureContrastRatio(e.rgba,t.rgba,i);if(r)return n.toColor(r>>24&255,r>>16&255,r>>8&255)},e.opaque=function(e){const t=(255|e.rgba)>>>0;return[i,r,s]=c.toChannels(t),{css:n.toCss(i,r,s),rgba:t}},e.opacity=t,e.multiplyOpacity=function(e,i){return o=255&e.rgba,t(e,o*i/255)},e.toColorRGB=function(e){return[e.rgba>>24&255,e.rgba>>16&255,e.rgba>>8&255]}}(a||(t.color=a={})),function(e){let t,a;try{const e=document.createElement("canvas");e.width=1,e.height=1;const i=e.getContext("2d",{willReadFrequently:!0});i&&(t=i,t.globalCompositeOperation="copy",a=t.createLinearGradient(0,0,1,1))}catch{}e.toColor=function(e){if(e.match(/#[\da-f]{3,8}/i))switch(e.length){case 4:return i=parseInt(e.slice(1,2).repeat(2),16),r=parseInt(e.slice(2,3).repeat(2),16),s=parseInt(e.slice(3,4).repeat(2),16),n.toColor(i,r,s);case 5:return i=parseInt(e.slice(1,2).repeat(2),16),r=parseInt(e.slice(2,3).repeat(2),16),s=parseInt(e.slice(3,4).repeat(2),16),o=parseInt(e.slice(4,5).repeat(2),16),n.toColor(i,r,s,o);case 7:return{css:e,rgba:(parseInt(e.slice(1),16)<<8|255)>>>0};case 9:return{css:e,rgba:parseInt(e.slice(1),16)>>>0}}const h=e.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(h)return i=parseInt(h[1]),r=parseInt(h[2]),s=parseInt(h[3]),o=Math.round(255*(void 0===h[5]?1:parseFloat(h[5]))),n.toColor(i,r,s,o);if(!t||!a)throw new Error("css.toColor: Unsupported css format");if(t.fillStyle=a,t.fillStyle=e,"string"!=typeof t.fillStyle)throw new Error("css.toColor: Unsupported css format");if(t.fillRect(0,0,1,1),[i,r,s,o]=t.getImageData(0,0,1,1).data,255!==o)throw new Error("css.toColor: Unsupported css format");return{rgba:n.toRgba(i,r,s,o),css:e}}}(h||(t.css=h={})),function(e){function t(e,t,i){const r=e/255,s=t/255,o=i/255;return.2126*(r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))+.7152*(s<=.03928?s/12.92:Math.pow((s+.055)/1.055,2.4))+.0722*(o<=.03928?o/12.92:Math.pow((o+.055)/1.055,2.4))}e.relativeLuminance=function(e){return t(e>>16&255,e>>8&255,255&e)},e.relativeLuminance2=t}(l||(t.rgb=l={})),function(e){function t(e,t,i){const r=e>>24&255,s=e>>16&255,o=e>>8&255;let n=t>>24&255,a=t>>16&255,h=t>>8&255,c=d(l.relativeLuminance2(n,a,h),l.relativeLuminance2(r,s,o));for(;c0||a>0||h>0);)n-=Math.max(0,Math.ceil(.1*n)),a-=Math.max(0,Math.ceil(.1*a)),h-=Math.max(0,Math.ceil(.1*h)),c=d(l.relativeLuminance2(n,a,h),l.relativeLuminance2(r,s,o));return(n<<24|a<<16|h<<8|255)>>>0}function a(e,t,i){const r=e>>24&255,s=e>>16&255,o=e>>8&255;let n=t>>24&255,a=t>>16&255,h=t>>8&255,c=d(l.relativeLuminance2(n,a,h),l.relativeLuminance2(r,s,o));for(;c>>0}e.blend=function(e,t){if(o=(255&t)/255,1===o)return t;const a=t>>24&255,h=t>>16&255,l=t>>8&255,c=e>>24&255,u=e>>16&255,d=e>>8&255;return i=c+Math.round((a-c)*o),r=u+Math.round((h-u)*o),s=d+Math.round((l-d)*o),n.toRgba(i,r,s)},e.ensureContrastRatio=function(e,i,r){const s=l.relativeLuminance(e>>8),o=l.relativeLuminance(i>>8);if(d(s,o)>8));if(nd(s,l.relativeLuminance(t>>8))?o:t}return o}const n=a(e,i,r),h=d(s,l.relativeLuminance(n>>8));if(hd(s,l.relativeLuminance(o>>8))?n:o}return n}},e.reduceLuminance=t,e.increaseLuminance=a,e.toChannels=function(e){return[e>>24&255,e>>16&255,e>>8&255,255&e]}}(c||(t.rgba=c={})),t.toPaddedHex=u,t.contrastRatio=d},345:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.runAndSubscribe=t.forwardEvent=t.EventEmitter=void 0,t.EventEmitter=class{constructor(){this._listeners=[],this._disposed=!1}get event(){return this._event||(this._event=e=>(this._listeners.push(e),{dispose:()=>{if(!this._disposed)for(let t=0;tt.fire(e))},t.runAndSubscribe=function(e,t){return t(void 0),e(e=>t(e))}},859:(e,t)=>{function i(e){for(const t of e)t.dispose();e.length=0}Object.defineProperty(t,"__esModule",{value:!0}),t.getDisposeArrayDisposable=t.disposeArray=t.toDisposable=t.MutableDisposable=t.Disposable=void 0,t.Disposable=class{constructor(){this._disposables=[],this._isDisposed=!1}dispose(){this._isDisposed=!0;for(const e of this._disposables)e.dispose();this._disposables.length=0}register(e){return this._disposables.push(e),e}unregister(e){const t=this._disposables.indexOf(e);-1!==t&&this._disposables.splice(t,1)}},t.MutableDisposable=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(e){this._isDisposed||e===this._value||(this._value?.dispose(),this._value=e)}clear(){this.value=void 0}dispose(){this._isDisposed=!0,this._value?.dispose(),this._value=void 0}},t.toDisposable=function(e){return{dispose:e}},t.disposeArray=i,t.getDisposeArrayDisposable=function(e){return{dispose:()=>i(e)}}},485:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FourKeyMap=t.TwoKeyMap=void 0;class i{constructor(){this._data={}}set(e,t,i){this._data[e]||(this._data[e]={}),this._data[e][t]=i}get(e,t){return this._data[e]?this._data[e][t]:void 0}clear(){this._data={}}}t.TwoKeyMap=i,t.FourKeyMap=class{constructor(){this._data=new i}set(e,t,r,s,o){this._data.get(e,t)||this._data.set(e,t,new i),this._data.get(e,t).set(r,s,o)}get(e,t,i,r){return this._data.get(e,t)?.get(i,r)}clear(){this._data.clear()}}},399:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.isChromeOS=t.isLinux=t.isWindows=t.isIphone=t.isIpad=t.isMac=t.getSafariVersion=t.isSafari=t.isLegacyEdge=t.isFirefox=t.isNode=void 0,t.isNode="undefined"!=typeof process&&"title"in process;const i=t.isNode?"node":navigator.userAgent,r=t.isNode?"node":navigator.platform;t.isFirefox=i.includes("Firefox"),t.isLegacyEdge=i.includes("Edge"),t.isSafari=/^((?!chrome|android).)*safari/i.test(i),t.getSafariVersion=function(){if(!t.isSafari)return 0;const e=i.match(/Version\/(\d+)/);return null===e||e.length<2?0:parseInt(e[1])},t.isMac=["Macintosh","MacIntel","MacPPC","Mac68K"].includes(r),t.isIpad="iPad"===r,t.isIphone="iPhone"===r,t.isWindows=["Windows","Win16","Win32","WinCE"].includes(r),t.isLinux=r.indexOf("Linux")>=0,t.isChromeOS=/\bCrOS\b/.test(i)},385:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DebouncedIdleTask=t.IdleTaskQueue=t.PriorityTaskQueue=void 0;const r=i(399);class s{constructor(){this._tasks=[],this._i=0}enqueue(e){this._tasks.push(e),this._start()}flush(){for(;this._is)return r-t<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(r-t))}ms`),void this._start();r=s}this.clear()}}class o extends s{_requestCallback(e){return setTimeout(()=>e(this._createDeadline(16)))}_cancelCallback(e){clearTimeout(e)}_createDeadline(e){const t=Date.now()+e;return{timeRemaining:()=>Math.max(0,t-Date.now())}}}t.PriorityTaskQueue=o,t.IdleTaskQueue=!r.isNode&&"requestIdleCallback"in window?class extends s{_requestCallback(e){return requestIdleCallback(e)}_cancelCallback(e){cancelIdleCallback(e)}}:o,t.DebouncedIdleTask=class{constructor(){this._queue=new t.IdleTaskQueue}set(e){this._queue.clear(),this._queue.enqueue(e)}flush(){this._queue.flush()}}},147:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ExtendedAttrs=t.AttributeData=void 0;class i{constructor(){this.fg=0,this.bg=0,this.extended=new r}static toColorRGB(e){return[e>>>16&255,e>>>8&255,255&e]}static fromColorRGB(e){return(255&e[0])<<16|(255&e[1])<<8|255&e[2]}clone(){const e=new i;return e.fg=this.fg,e.bg=this.bg,e.extended=this.extended.clone(),e}isInverse(){return 67108864&this.fg}isBold(){return 134217728&this.fg}isUnderline(){return this.hasExtendedAttrs()&&0!==this.extended.underlineStyle?1:268435456&this.fg}isBlink(){return 536870912&this.fg}isInvisible(){return 1073741824&this.fg}isItalic(){return 67108864&this.bg}isDim(){return 134217728&this.bg}isStrikethrough(){return 2147483648&this.fg}isProtected(){return 536870912&this.bg}isOverline(){return 1073741824&this.bg}getFgColorMode(){return 50331648&this.fg}getBgColorMode(){return 50331648&this.bg}isFgRGB(){return!(50331648&~this.fg)}isBgRGB(){return!(50331648&~this.bg)}isFgPalette(){return 16777216==(50331648&this.fg)||33554432==(50331648&this.fg)}isBgPalette(){return 16777216==(50331648&this.bg)||33554432==(50331648&this.bg)}isFgDefault(){return!(50331648&this.fg)}isBgDefault(){return!(50331648&this.bg)}isAttributeDefault(){return 0===this.fg&&0===this.bg}getFgColor(){switch(50331648&this.fg){case 16777216:case 33554432:return 255&this.fg;case 50331648:return 16777215&this.fg;default:return-1}}getBgColor(){switch(50331648&this.bg){case 16777216:case 33554432:return 255&this.bg;case 50331648:return 16777215&this.bg;default:return-1}}hasExtendedAttrs(){return 268435456&this.bg}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(268435456&this.bg&&~this.extended.underlineColor)switch(50331648&this.extended.underlineColor){case 16777216:case 33554432:return 255&this.extended.underlineColor;case 50331648:return 16777215&this.extended.underlineColor;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return 268435456&this.bg&&~this.extended.underlineColor?50331648&this.extended.underlineColor:this.getFgColorMode()}isUnderlineColorRGB(){return 268435456&this.bg&&~this.extended.underlineColor?!(50331648&~this.extended.underlineColor):this.isFgRGB()}isUnderlineColorPalette(){return 268435456&this.bg&&~this.extended.underlineColor?16777216==(50331648&this.extended.underlineColor)||33554432==(50331648&this.extended.underlineColor):this.isFgPalette()}isUnderlineColorDefault(){return 268435456&this.bg&&~this.extended.underlineColor?!(50331648&this.extended.underlineColor):this.isFgDefault()}getUnderlineStyle(){return 268435456&this.fg?268435456&this.bg?this.extended.underlineStyle:1:0}getUnderlineVariantOffset(){return this.extended.underlineVariantOffset}}t.AttributeData=i;class r{get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(e){this._ext=e}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(e){this._ext&=-469762049,this._ext|=e<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(e){this._ext&=-67108864,this._ext|=67108863&e}get urlId(){return this._urlId}set urlId(e){this._urlId=e}get underlineVariantOffset(){const e=(3758096384&this._ext)>>29;return e<0?4294967288^e:e}set underlineVariantOffset(e){this._ext&=536870911,this._ext|=e<<29&3758096384}constructor(e=0,t=0){this._ext=0,this._urlId=0,this._ext=e,this._urlId=t}clone(){return new r(this._ext,this._urlId)}isEmpty(){return 0===this.underlineStyle&&0===this._urlId}}t.ExtendedAttrs=r},782:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.CellData=void 0;const r=i(133),s=i(855),o=i(147);class n extends o.AttributeData{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new o.ExtendedAttrs,this.combinedData=""}static fromCharData(e){const t=new n;return t.setFromCharData(e),t}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?(0,r.stringFromCodePoint)(2097151&this.content):""}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(e){this.fg=e[s.CHAR_DATA_ATTR_INDEX],this.bg=0;let t=!1;if(e[s.CHAR_DATA_CHAR_INDEX].length>2)t=!0;else if(2===e[s.CHAR_DATA_CHAR_INDEX].length){const i=e[s.CHAR_DATA_CHAR_INDEX].charCodeAt(0);if(55296<=i&&i<=56319){const r=e[s.CHAR_DATA_CHAR_INDEX].charCodeAt(1);56320<=r&&r<=57343?this.content=1024*(i-55296)+r-56320+65536|e[s.CHAR_DATA_WIDTH_INDEX]<<22:t=!0}else t=!0}else this.content=e[s.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|e[s.CHAR_DATA_WIDTH_INDEX]<<22;t&&(this.combinedData=e[s.CHAR_DATA_CHAR_INDEX],this.content=2097152|e[s.CHAR_DATA_WIDTH_INDEX]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}t.CellData=n},855:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.WHITESPACE_CELL_CODE=t.WHITESPACE_CELL_WIDTH=t.WHITESPACE_CELL_CHAR=t.NULL_CELL_CODE=t.NULL_CELL_WIDTH=t.NULL_CELL_CHAR=t.CHAR_DATA_CODE_INDEX=t.CHAR_DATA_WIDTH_INDEX=t.CHAR_DATA_CHAR_INDEX=t.CHAR_DATA_ATTR_INDEX=t.DEFAULT_EXT=t.DEFAULT_ATTR=t.DEFAULT_COLOR=void 0,t.DEFAULT_COLOR=0,t.DEFAULT_ATTR=256|t.DEFAULT_COLOR<<9,t.DEFAULT_EXT=0,t.CHAR_DATA_ATTR_INDEX=0,t.CHAR_DATA_CHAR_INDEX=1,t.CHAR_DATA_WIDTH_INDEX=2,t.CHAR_DATA_CODE_INDEX=3,t.NULL_CELL_CHAR="",t.NULL_CELL_WIDTH=1,t.NULL_CELL_CODE=0,t.WHITESPACE_CELL_CHAR=" ",t.WHITESPACE_CELL_WIDTH=1,t.WHITESPACE_CELL_CODE=32},133:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Utf8ToUtf32=t.StringToUtf32=t.utf32ToString=t.stringFromCodePoint=void 0,t.stringFromCodePoint=function(e){return e>65535?(e-=65536,String.fromCharCode(55296+(e>>10))+String.fromCharCode(e%1024+56320)):String.fromCharCode(e)},t.utf32ToString=function(e,t=0,i=e.length){let r="";for(let s=t;s65535?(t-=65536,r+=String.fromCharCode(55296+(t>>10))+String.fromCharCode(t%1024+56320)):r+=String.fromCharCode(t)}return r},t.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(e,t){const i=e.length;if(!i)return 0;let r=0,s=0;if(this._interim){const i=e.charCodeAt(s++);56320<=i&&i<=57343?t[r++]=1024*(this._interim-55296)+i-56320+65536:(t[r++]=this._interim,t[r++]=i),this._interim=0}for(let o=s;o=i)return this._interim=s,r;const n=e.charCodeAt(o);56320<=n&&n<=57343?t[r++]=1024*(s-55296)+n-56320+65536:(t[r++]=s,t[r++]=n)}else 65279!==s&&(t[r++]=s)}return r}},t.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(e,t){const i=e.length;if(!i)return 0;let r,s,o,n,a=0,h=0,l=0;if(this.interim[0]){let r=!1,s=this.interim[0];s&=192==(224&s)?31:224==(240&s)?15:7;let o,n=0;for(;(o=63&this.interim[++n])&&n<4;)s<<=6,s|=o;const h=192==(224&this.interim[0])?2:224==(240&this.interim[0])?3:4,c=h-n;for(;l=i)return 0;if(o=e[l++],128!=(192&o)){l--,r=!0;break}this.interim[n++]=o,s<<=6,s|=63&o}r||(2===h?s<128?l--:t[a++]=s:3===h?s<2048||s>=55296&&s<=57343||65279===s||(t[a++]=s):s<65536||s>1114111||(t[a++]=s)),this.interim.fill(0)}const c=i-4;let u=l;for(;u=i)return this.interim[0]=r,a;if(s=e[u++],128!=(192&s)){u--;continue}if(h=(31&r)<<6|63&s,h<128){u--;continue}t[a++]=h}else if(224==(240&r)){if(u>=i)return this.interim[0]=r,a;if(s=e[u++],128!=(192&s)){u--;continue}if(u>=i)return this.interim[0]=r,this.interim[1]=s,a;if(o=e[u++],128!=(192&o)){u--;continue}if(h=(15&r)<<12|(63&s)<<6|63&o,h<2048||h>=55296&&h<=57343||65279===h)continue;t[a++]=h}else if(240==(248&r)){if(u>=i)return this.interim[0]=r,a;if(s=e[u++],128!=(192&s)){u--;continue}if(u>=i)return this.interim[0]=r,this.interim[1]=s,a;if(o=e[u++],128!=(192&o)){u--;continue}if(u>=i)return this.interim[0]=r,this.interim[1]=s,this.interim[2]=o,a;if(n=e[u++],128!=(192&n)){u--;continue}if(h=(7&r)<<18|(63&s)<<12|(63&o)<<6|63&n,h<65536||h>1114111)continue;t[a++]=h}}return a}}},776:function(e,t,i){var r=this&&this.__decorate||function(e,t,i,r){var s,o=arguments.length,n=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,i):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,r);else for(var a=e.length-1;a>=0;a--)(s=e[a])&&(n=(o<3?s(n):o>3?s(t,i,n):s(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},s=this&&this.__param||function(e,t){return function(i,r){t(i,r,e)}};Object.defineProperty(t,"__esModule",{value:!0}),t.traceCall=t.setTraceLogger=t.LogService=void 0;const o=i(859),n=i(97),a={trace:n.LogLevelEnum.TRACE,debug:n.LogLevelEnum.DEBUG,info:n.LogLevelEnum.INFO,warn:n.LogLevelEnum.WARN,error:n.LogLevelEnum.ERROR,off:n.LogLevelEnum.OFF};let h,l=t.LogService=class extends o.Disposable{get logLevel(){return this._logLevel}constructor(e){super(),this._optionsService=e,this._logLevel=n.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange("logLevel",()=>this._updateLogLevel())),h=this}_updateLogLevel(){this._logLevel=a[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let t=0;tJSON.stringify(e)).join(", ")})`);const t=r.apply(this,e);return h.trace(`GlyphRenderer#${r.name} return`,t),t}}},726:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.createDecorator=t.getServiceDependencies=t.serviceRegistry=void 0;const i="di$target",r="di$dependencies";t.serviceRegistry=new Map,t.getServiceDependencies=function(e){return e[r]||[]},t.createDecorator=function(e){if(t.serviceRegistry.has(e))return t.serviceRegistry.get(e);const s=function(e,t,o){if(3!==arguments.length)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");!function(e,t,s){t[i]===t?t[r].push({id:e,index:s}):(t[r]=[{id:e,index:s}],t[i]=t)}(s,e,o)};return s.toString=()=>e,t.serviceRegistry.set(e,s),s}},97:(e,t,i)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.IDecorationService=t.IUnicodeService=t.IOscLinkService=t.IOptionsService=t.ILogService=t.LogLevelEnum=t.IInstantiationService=t.ICharsetService=t.ICoreService=t.ICoreMouseService=t.IBufferService=void 0;const r=i(726);var s;t.IBufferService=(0,r.createDecorator)("BufferService"),t.ICoreMouseService=(0,r.createDecorator)("CoreMouseService"),t.ICoreService=(0,r.createDecorator)("CoreService"),t.ICharsetService=(0,r.createDecorator)("CharsetService"),t.IInstantiationService=(0,r.createDecorator)("InstantiationService"),function(e){e[e.TRACE=0]="TRACE",e[e.DEBUG=1]="DEBUG",e[e.INFO=2]="INFO",e[e.WARN=3]="WARN",e[e.ERROR=4]="ERROR",e[e.OFF=5]="OFF"}(s||(t.LogLevelEnum=s={})),t.ILogService=(0,r.createDecorator)("LogService"),t.IOptionsService=(0,r.createDecorator)("OptionsService"),t.IOscLinkService=(0,r.createDecorator)("OscLinkService"),t.IUnicodeService=(0,r.createDecorator)("UnicodeService"),t.IDecorationService=(0,r.createDecorator)("DecorationService")}},t={};function i(r){var s=t[r];if(void 0!==s)return s.exports;var o=t[r]={exports:{}};return e[r].call(o.exports,o,o.exports,i),o.exports}var r={};return(()=>{var e=r;Object.defineProperty(e,"__esModule",{value:!0}),e.WebglAddon=void 0;const t=i(345),s=i(859),o=i(399),n=i(666),a=i(776);class h extends s.Disposable{constructor(e){if(o.isSafari&&(0,o.getSafariVersion)()<16){const e={antialias:!1,depth:!1,preserveDrawingBuffer:!0};if(!document.createElement("canvas").getContext("webgl2",e))throw new Error("Webgl2 is only supported on Safari 16 and above")}super(),this._preserveDrawingBuffer=e,this._onChangeTextureAtlas=this.register(new t.EventEmitter),this.onChangeTextureAtlas=this._onChangeTextureAtlas.event,this._onAddTextureAtlasCanvas=this.register(new t.EventEmitter),this.onAddTextureAtlasCanvas=this._onAddTextureAtlasCanvas.event,this._onRemoveTextureAtlasCanvas=this.register(new t.EventEmitter),this.onRemoveTextureAtlasCanvas=this._onRemoveTextureAtlasCanvas.event,this._onContextLoss=this.register(new t.EventEmitter),this.onContextLoss=this._onContextLoss.event}activate(e){const i=e._core;if(!e.element)return void this.register(i.onWillOpen(()=>this.activate(e)));this._terminal=e;const r=i.coreService,o=i.optionsService,h=i,l=h._renderService,c=h._characterJoinerService,u=h._charSizeService,d=h._coreBrowserService,_=h._decorationService,f=h._logService,g=h._themeService;(0,a.setTraceLogger)(f),this._renderer=this.register(new n.WebglRenderer(e,c,u,d,r,_,o,g,this._preserveDrawingBuffer)),this.register((0,t.forwardEvent)(this._renderer.onContextLoss,this._onContextLoss)),this.register((0,t.forwardEvent)(this._renderer.onChangeTextureAtlas,this._onChangeTextureAtlas)),this.register((0,t.forwardEvent)(this._renderer.onAddTextureAtlasCanvas,this._onAddTextureAtlasCanvas)),this.register((0,t.forwardEvent)(this._renderer.onRemoveTextureAtlasCanvas,this._onRemoveTextureAtlasCanvas)),l.setRenderer(this._renderer),this.register((0,s.toDisposable)(()=>{const t=this._terminal._core._renderService;t.setRenderer(this._terminal._core._createRenderer()),t.handleResize(e.cols,e.rows)}))}get textureAtlas(){return this._renderer?.textureAtlas}clearTextureAtlas(){this._renderer?.clearTextureAtlas()}}e.WebglAddon=h})(),r})(),e.exports=t()},782:(e,t,i)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Hterm=void 0;var r=i(279),s=function(){function e(e){this.elem=e,r.hterm.defaultStorage=new r.lib.Storage.Memory,this.term=new r.hterm.Terminal,this.term.getPrefs().set("send-encoding","raw"),this.term.decorate(this.elem),this.io=this.term.io.push(),this.term.installKeyboard()}return e.prototype.info=function(){return{columns:this.columns,rows:this.rows}},e.prototype.output=function(e){null!=this.term.io&&this.term.io.writeUTF8(e)},e.prototype.showMessage=function(e,t){this.message=e,t>0?this.term.io.showOverlay(e,t):this.term.io.showOverlay(e,null)},e.prototype.removeMessage=function(){this.term.io.showOverlay(this.message,0)},e.prototype.setWindowTitle=function(e){this.term.setWindowTitle(e)},e.prototype.setPreferences=function(e){var t=this;Object.keys(e).forEach(function(i){"enable-webgl"!=i&&t.term.getPrefs().set(i,e[i])})},e.prototype.onInput=function(e){this.io.onVTKeystroke=function(t){e(t)},this.io.sendString=function(t){e(t)}},e.prototype.onResize=function(e){var t=this;this.io.onTerminalResize=function(i,r){t.columns=i,t.rows=r,e(i,r)}},e.prototype.deactivate=function(){this.io.onVTKeystroke=function(){},this.io.sendString=function(){},this.io.onTerminalResize=function(){},this.term.uninstallKeyboard()},e.prototype.reset=function(){this.removeMessage(),this.term.installKeyboard()},e.prototype.close=function(){this.term.uninstallKeyboard()},e}();t.Hterm=s},903:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Connection=t.ConnectionFactory=void 0;var i=function(){function e(e,t){this.url=e,this.protocols=t}return e.prototype.create=function(){return new r(this.url,this.protocols)},e}();t.ConnectionFactory=i;var r=function(){function e(e,t){this.bare=new WebSocket(e,t)}return e.prototype.open=function(){},e.prototype.close=function(){this.bare.close()},e.prototype.send=function(e){this.bare.send(e)},e.prototype.isOpen=function(){return this.bare.readyState==WebSocket.CONNECTING||this.bare.readyState==WebSocket.OPEN},e.prototype.onOpen=function(e){this.bare.onopen=function(t){e()}},e.prototype.onReceive=function(e){this.bare.onmessage=function(t){e(t.data)}},e.prototype.onClose=function(e){this.bare.onclose=function(t){e()}},e}();t.Connection=r}},t={};function i(r){var s=t[r];if(void 0!==s)return s.exports;var o=t[r]={exports:{}};return e[r](o,o.exports,i),o.exports}(()=>{"use strict";var e=i(782),t=i(134),r=i(59),s=i(903);var o=document.getElementById("terminal");if(null!==o){var n;n="hterm"==gotty_term?new e.Hterm(o):new t.Xterm(o);var a=("https:"==window.location.protocol?"wss://":"ws://")+window.location.host+window.location.pathname+"ws",h=window.location.search,l=new s.ConnectionFactory(a,r.protocols),c=new r.WebTTY(n,l,h,gotty_auth_token).open();window.addEventListener("unload",function(){c(),n.close()})}})()})(); +//# sourceMappingURL=gotty-bundle.js.map \ No newline at end of file diff --git a/js/dist/gotty-bundle.js.LICENSE.txt b/js/dist/gotty-bundle.js.LICENSE.txt new file mode 100644 index 0000000..9d1088a --- /dev/null +++ b/js/dist/gotty-bundle.js.LICENSE.txt @@ -0,0 +1,33 @@ +/*! + * libapps (https://npmjs.com/package/libapps) + * @license BSD-3-Clause + * @version 1.70.0 + * ==libapps/LICENSE== + * // Copyright (c) 2006-2009 The Chromium OS Authors. All rights reserved. + * // + * // Redistribution and use in source and binary forms, with or without + * // modification, are permitted provided that the following conditions are + * // met: + * // + * // * Redistributions of source code must retain the above copyright + * // notice, this list of conditions and the following disclaimer. + * // * Redistributions in binary form must reproduce the above + * // copyright notice, this list of conditions and the following disclaimer + * // in the documentation and/or other materials provided with the + * // distribution. + * // * Neither the name of Google Inc. nor the names of its + * // contributors may be used to endorse or promote products derived from + * // this software without specific prior written permission. + * // + * // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ diff --git a/js/dist/gotty-bundle.js.map b/js/dist/gotty-bundle.js.map new file mode 100644 index 0000000..c4fe0e0 --- /dev/null +++ b/js/dist/gotty-bundle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"./gotty-bundle.js","mappings":"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M,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,KAAK,MAAM,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,QAAQ3B,EAAE,CAAC,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,MAAM,OAAO,CAAC,OAAO,QAAQ,CAAC,OAAO,QAAQ,CAAC,OAAO,QAAQ,CAAC,OAAO,QAAQ,CAAC,OAAO,QAAQ,CAAC,OAAO,QAAQ,CAAC,OAAO,QAAQ,CAAC,OAAO,SAAS,IAAIc,EAAEjB,EAAEkoD,UAAU,MAAM,WAAAlnD,GAAc,GAAGE,KAAKinD,QAAQ,KAAKlnD,EAAE,CAACA,EAAE,IAAIgnD,WAAW,OAAOhnD,EAAEg8B,KAAK,GAAGh8B,EAAE,GAAG,EAAEA,EAAEg8B,KAAK,EAAE,EAAE,IAAIh8B,EAAEg8B,KAAK,EAAE,IAAI,KAAKh8B,EAAEg8B,KAAK,EAAE,KAAK,MAAMh8B,EAAE,MAAM,EAAEA,EAAE,MAAM,EAAEA,EAAEg8B,KAAK,EAAE,MAAM,OAAOh8B,EAAE,OAAO,EAAEA,EAAEg8B,KAAK,EAAE,MAAM,OAAOh8B,EAAEg8B,KAAK,EAAE,MAAM,OAAOh8B,EAAEg8B,KAAK,EAAE,MAAM,OAAOh8B,EAAEg8B,KAAK,EAAE,MAAM,OAAOh8B,EAAEg8B,KAAK,EAAE,MAAM,OAAOh8B,EAAEg8B,KAAK,EAAE,MAAM,OAAO,IAAI,IAAI/8B,EAAE,EAAEA,EAAE4B,EAAEgB,SAAS5C,EAAEe,EAAEg8B,KAAK,EAAEn7B,EAAE5B,GAAG,GAAG4B,EAAE5B,GAAG,GAAG,EAAE,CAAC,CAAC,OAAAkoD,CAAQloD,GAAG,OAAOA,EAAE,GAAG,EAAEA,EAAE,IAAI,EAAEA,EAAE,MAAMe,EAAEf,GAAG,SAASA,EAAEF,GAAG,IAAI+B,EAAEC,EAAE,EAAEF,EAAE9B,EAAE8C,OAAO,EAAE,GAAG5C,EAAEF,EAAE,GAAG,IAAIE,EAAEF,EAAE8B,GAAG,GAAG,OAAM,EAAG,KAAKA,GAAGE,GAAG,GAAGD,EAAEC,EAAEF,GAAG,EAAE5B,EAAEF,EAAE+B,GAAG,GAAGC,EAAED,EAAE,MAAM,CAAC,KAAK7B,EAAEF,EAAE+B,GAAG,IAAI,OAAM,EAAGD,EAAEC,EAAE,CAAC,CAAC,OAAM,CAAE,CAAzJ,CAA2J7B,EAAEC,GAAG,EAAED,GAAG,QAAQA,GAAG,QAAQA,GAAG,QAAQA,GAAG,OAAO,EAAE,CAAC,CAAC,cAAA45C,CAAe55C,EAAEF,GAAG,IAAI+B,EAAEb,KAAKknD,QAAQloD,GAAG4B,EAAE,IAAIC,GAAG,IAAI/B,EAAE,GAAG8B,EAAE,CAAC,MAAM5B,EAAE8B,EAAEqqC,eAAe0N,aAAa/5C,GAAG,IAAIE,EAAE4B,GAAE,EAAG5B,EAAE6B,IAAIA,EAAE7B,EAAE,CAAC,OAAO8B,EAAEqqC,eAAegc,oBAAoB,EAAEtmD,EAAED,EAAE,IAAI,KAAK,CAAC5B,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEktC,iBAAY,EAAO,MAAMlrC,EAAED,EAAE,MAAMD,EAAEC,EAAE,KAAK,MAAM5B,UAAU2B,EAAE2L,WAAW,WAAAzM,CAAYd,GAAGwN,QAAQxM,KAAKonD,QAAQpoD,EAAEgB,KAAK2rC,aAAa,GAAG3rC,KAAKqnD,WAAW,GAAGrnD,KAAKsnD,aAAa,EAAEtnD,KAAKunD,cAAc,EAAEvnD,KAAKwnD,gBAAe,EAAGxnD,KAAKynD,WAAW,EAAEznD,KAAK0nD,eAAc,EAAG1nD,KAAKwqC,eAAexqC,KAAK8N,SAAS,IAAIhN,EAAE4U,cAAc1V,KAAKyqC,cAAczqC,KAAKwqC,eAAe50B,KAAK,CAAC,eAAAg2B,GAAkB5rC,KAAK0nD,eAAc,CAAE,CAAC,SAAAzb,CAAUjtC,EAAEF,GAAG,QAAG,IAASA,GAAGkB,KAAKynD,WAAW3oD,EAAE,YAAYkB,KAAKynD,WAAW,GAAG,GAAGznD,KAAKsnD,cAActoD,EAAE4C,OAAO5B,KAAK2rC,aAAazpC,KAAKlD,GAAGgB,KAAKqnD,WAAWnlD,UAAK,GAAQlC,KAAKynD,aAAaznD,KAAKwnD,eAAe,OAAO,IAAI3mD,EAAE,IAAIb,KAAKwnD,gBAAe,EAAG3mD,EAAEb,KAAK2rC,aAAap8B,SAAS,CAACvP,KAAKonD,QAAQvmD,GAAG,MAAM7B,EAAEgB,KAAKqnD,WAAW93C,QAAQvQ,GAAGA,GAAG,CAACgB,KAAKsnD,aAAa,EAAEtnD,KAAKunD,cAAc,WAAWvnD,KAAKwnD,gBAAe,EAAGxnD,KAAKynD,WAAW,CAAC,CAAC,KAAA99C,CAAM3K,EAAEF,GAAG,GAAGkB,KAAKsnD,aAAa,IAAI,MAAM,IAAIx7C,MAAM,+DAA+D,IAAI9L,KAAK2rC,aAAa/pC,OAAO,CAAC,GAAG5B,KAAKunD,cAAc,EAAEvnD,KAAK0nD,cAAc,OAAO1nD,KAAK0nD,eAAc,EAAG1nD,KAAKsnD,cAActoD,EAAE4C,OAAO5B,KAAK2rC,aAAazpC,KAAKlD,GAAGgB,KAAKqnD,WAAWnlD,KAAKpD,QAAQkB,KAAK2nD,cAAcxgD,WAAW,IAAKnH,KAAK2nD,cAAe,CAAC3nD,KAAKsnD,cAActoD,EAAE4C,OAAO5B,KAAK2rC,aAAazpC,KAAKlD,GAAGgB,KAAKqnD,WAAWnlD,KAAKpD,EAAE,CAAC,WAAA6oD,CAAY3oD,EAAE,EAAEF,GAAE,GAAI,MAAM+B,EAAE7B,GAAGusB,KAAKC,MAAM,KAAKxrB,KAAK2rC,aAAa/pC,OAAO5B,KAAKunD,eAAe,CAAC,MAAMvoD,EAAEgB,KAAK2rC,aAAa3rC,KAAKunD,eAAezmD,EAAEd,KAAKonD,QAAQpoD,EAAEF,GAAG,GAAGgC,EAAE,CAAC,MAAM9B,EAAEA,GAAGusB,KAAKC,MAAM3qB,GAAG,GAAGsG,WAAW,IAAKnH,KAAK2nD,YAAY,EAAE3oD,IAAKgB,KAAK2nD,YAAY9mD,EAAE7B,GAAG,YAAY8B,EAAEuI,MAAOrK,IAAI6gC,eAAe,KAAM,MAAM7gC,CAAE,GAAGiM,QAAQC,SAAQ,KAAO/B,KAAKnK,EAAE,CAAC,MAAM4B,EAAEZ,KAAKqnD,WAAWrnD,KAAKunD,eAAe,GAAG3mD,GAAGA,IAAIZ,KAAKunD,gBAAgBvnD,KAAKsnD,cAActoD,EAAE4C,OAAO2pB,KAAKC,MAAM3qB,GAAG,GAAG,KAAK,CAACb,KAAK2rC,aAAa/pC,OAAO5B,KAAKunD,eAAevnD,KAAKunD,cAAc,KAAKvnD,KAAK2rC,aAAa3rC,KAAK2rC,aAAarlC,MAAMtG,KAAKunD,eAAevnD,KAAKqnD,WAAWrnD,KAAKqnD,WAAW/gD,MAAMtG,KAAKunD,eAAevnD,KAAKunD,cAAc,GAAGpgD,WAAW,IAAKnH,KAAK2nD,iBAAkB3nD,KAAK2rC,aAAa/pC,OAAO,EAAE5B,KAAKqnD,WAAWzlD,OAAO,EAAE5B,KAAKsnD,aAAa,EAAEtnD,KAAKunD,cAAc,GAAGvnD,KAAKwqC,eAAelyB,MAAM,EAAExZ,EAAEktC,YAAY/sC,GAAG,KAAK,CAACD,EAAEF,KAAKW,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE+gB,YAAY/gB,EAAE+8C,gBAAW,EAAO,MAAMh7C,EAAE,qKAAqKC,EAAE,aAAa,SAASF,EAAE5B,EAAEF,GAAG,MAAM+B,EAAE7B,EAAE4Q,SAAS,IAAI9O,EAAED,EAAEe,OAAO,EAAE,IAAIf,EAAEA,EAAE,OAAO/B,GAAG,KAAK,EAAE,OAAO+B,EAAE,GAAG,KAAK,EAAE,OAAOC,EAAE,KAAK,GAAG,OAAOA,EAAEA,GAAGwF,MAAM,EAAE,GAAG,QAAQ,OAAOxF,EAAEA,EAAE,CAAChC,EAAE+8C,WAAW,SAAS78C,GAAG,IAAIA,EAAE,OAAO,IAAIF,EAAEE,EAAE2nD,cAAc,GAAG,IAAI7nD,EAAE4D,QAAQ,QAAQ,CAAC5D,EAAEA,EAAEwH,MAAM,GAAG,MAAMtH,EAAE6B,EAAEY,KAAK3C,GAAG,GAAGE,EAAE,CAAC,MAAMF,EAAEE,EAAE,GAAG,GAAGA,EAAE,GAAG,IAAIA,EAAE,GAAG,KAAK,MAAM,MAAM,CAAC4b,KAAK2S,MAAM5b,SAAS3S,EAAE,IAAIA,EAAE,IAAIA,EAAE,IAAIA,EAAE,IAAI,IAAIF,EAAE,KAAK8b,KAAK2S,MAAM5b,SAAS3S,EAAE,IAAIA,EAAE,IAAIA,EAAE,IAAIA,EAAE,IAAI,IAAIF,EAAE,KAAK8b,KAAK2S,MAAM5b,SAAS3S,EAAE,IAAIA,EAAE,IAAIA,EAAE,IAAIA,EAAE,IAAI,IAAIF,EAAE,KAAK,CAAC,MAAM,GAAG,IAAIA,EAAE4D,QAAQ,OAAO5D,EAAEA,EAAEwH,MAAM,GAAGxF,EAAEW,KAAK3C,IAAI,CAAC,EAAE,EAAE,EAAE,IAAIib,SAASjb,EAAE8C,SAAS,CAAC,MAAM5C,EAAEF,EAAE8C,OAAO,EAAEf,EAAE,CAAC,EAAE,EAAE,GAAG,IAAI,IAAIC,EAAE,EAAEA,EAAE,IAAIA,EAAE,CAAC,MAAMF,EAAE+Q,SAAS7S,EAAEwH,MAAMtH,EAAE8B,EAAE9B,EAAE8B,EAAE9B,GAAG,IAAI6B,EAAEC,GAAG,IAAI9B,EAAE4B,GAAG,EAAE,IAAI5B,EAAE4B,EAAE,IAAI5B,EAAE4B,GAAG,EAAEA,GAAG,CAAC,CAAC,OAAOC,CAAC,CAAC,EAAE/B,EAAE+gB,YAAY,SAAS7gB,EAAEF,EAAE,IAAI,MAAM+B,EAAEC,EAAE7B,GAAGD,EAAE,MAAM,OAAO4B,EAAEC,EAAE/B,MAAM8B,EAAEE,EAAEhC,MAAM8B,EAAE3B,EAAEH,IAAI,GAAG,KAAK,CAACE,EAAEF,KAAKW,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE8oD,mBAAc,EAAO9oD,EAAE8oD,cAAc,KAAK,KAAK,CAAC5oD,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE44C,WAAW54C,EAAE+oD,eAAU,EAAO,MAAM/mD,EAAED,EAAE,KAAKD,EAAEC,EAAE,MAAM5B,EAAE4B,EAAE,MAAMd,EAAE,GAAGjB,EAAE+oD,UAAU,MAAM,WAAA/nD,GAAcE,KAAK8nD,UAAUroD,OAAOwF,OAAO,MAAMjF,KAAK+nD,QAAQhoD,EAAEC,KAAKgoD,OAAO,EAAEhoD,KAAKioD,WAAW,OAAOjoD,KAAKkoD,OAAO,CAACvX,QAAO,EAAGwX,aAAa,EAAEC,aAAY,EAAG,CAAC,OAAAxkD,GAAU5D,KAAK8nD,UAAUroD,OAAOwF,OAAO,MAAMjF,KAAKioD,WAAW,OAAOjoD,KAAK+nD,QAAQhoD,CAAC,CAAC,eAAAsoD,CAAgBrpD,EAAEF,QAAG,IAASkB,KAAK8nD,UAAU9oD,KAAKgB,KAAK8nD,UAAU9oD,GAAG,IAAI,MAAM6B,EAAEb,KAAK8nD,UAAU9oD,GAAG,OAAO6B,EAAEqB,KAAKpD,GAAG,CAAC8E,QAAQ,KAAK,MAAM5E,EAAE6B,EAAE6B,QAAQ5D,IAAI,IAAIE,GAAG6B,EAAEwW,OAAOrY,EAAE,IAAI,CAAC,YAAAspD,CAAatpD,GAAGgB,KAAK8nD,UAAU9oD,WAAWgB,KAAK8nD,UAAU9oD,EAAE,CAAC,kBAAAupD,CAAmBvpD,GAAGgB,KAAKioD,WAAWjpD,CAAC,CAAC,KAAAoI,GAAQ,GAAGpH,KAAK+nD,QAAQnmD,OAAO,IAAI,IAAI5C,EAAEgB,KAAKkoD,OAAOvX,OAAO3wC,KAAKkoD,OAAOC,aAAa,EAAEnoD,KAAK+nD,QAAQnmD,OAAO,EAAE5C,GAAG,IAAIA,EAAEgB,KAAK+nD,QAAQ/oD,GAAGwpD,QAAO,GAAIxoD,KAAKkoD,OAAOvX,QAAO,EAAG3wC,KAAK+nD,QAAQhoD,EAAEC,KAAKgoD,OAAO,CAAC,CAAC,IAAAS,CAAKzpD,EAAEF,GAAG,GAAGkB,KAAKoH,QAAQpH,KAAKgoD,OAAOhpD,EAAEgB,KAAK+nD,QAAQ/nD,KAAK8nD,UAAU9oD,IAAIe,EAAEC,KAAK+nD,QAAQnmD,OAAO,IAAI,IAAI5C,EAAEgB,KAAK+nD,QAAQnmD,OAAO,EAAE5C,GAAG,EAAEA,IAAIgB,KAAK+nD,QAAQ/oD,GAAGypD,KAAK3pD,QAAQkB,KAAKioD,WAAWjoD,KAAKgoD,OAAO,OAAOlpD,EAAE,CAAC,GAAA4pD,CAAI1pD,EAAEF,EAAE+B,GAAG,GAAGb,KAAK+nD,QAAQnmD,OAAO,IAAI,IAAId,EAAEd,KAAK+nD,QAAQnmD,OAAO,EAAEd,GAAG,EAAEA,IAAId,KAAK+nD,QAAQjnD,GAAG4nD,IAAI1pD,EAAEF,EAAE+B,QAAQb,KAAKioD,WAAWjoD,KAAKgoD,OAAO,OAAM,EAAGlnD,EAAE8lD,eAAe5nD,EAAEF,EAAE+B,GAAG,CAAC,MAAA2nD,CAAOxpD,EAAEF,GAAE,GAAI,GAAGkB,KAAK+nD,QAAQnmD,OAAO,CAAC,IAAIf,GAAE,EAAGC,EAAEd,KAAK+nD,QAAQnmD,OAAO,EAAEhB,GAAE,EAAG,GAAGZ,KAAKkoD,OAAOvX,SAAS7vC,EAAEd,KAAKkoD,OAAOC,aAAa,EAAEtnD,EAAE/B,EAAE8B,EAAEZ,KAAKkoD,OAAOE,YAAYpoD,KAAKkoD,OAAOvX,QAAO,IAAK/vC,IAAG,IAAKC,EAAE,CAAC,KAAKC,GAAG,IAAID,EAAEb,KAAK+nD,QAAQjnD,GAAG0nD,OAAOxpD,IAAG,IAAK6B,GAAGC,IAAI,GAAGD,aAAaoK,QAAQ,OAAOjL,KAAKkoD,OAAOvX,QAAO,EAAG3wC,KAAKkoD,OAAOC,aAAarnD,EAAEd,KAAKkoD,OAAOE,aAAY,EAAGvnD,EAAEC,GAAG,CAAC,KAAKA,GAAG,EAAEA,IAAI,GAAGD,EAAEb,KAAK+nD,QAAQjnD,GAAG0nD,QAAO,GAAI3nD,aAAaoK,QAAQ,OAAOjL,KAAKkoD,OAAOvX,QAAO,EAAG3wC,KAAKkoD,OAAOC,aAAarnD,EAAEd,KAAKkoD,OAAOE,aAAY,EAAGvnD,CAAC,MAAMb,KAAKioD,WAAWjoD,KAAKgoD,OAAO,SAAShpD,GAAGgB,KAAK+nD,QAAQhoD,EAAEC,KAAKgoD,OAAO,CAAC,GAAG,MAAM9mD,EAAE,IAAIN,EAAE+nD,OAAOznD,EAAE0nD,SAAS,GAAG9pD,EAAE44C,WAAW,MAAM,WAAA53C,CAAYd,GAAGgB,KAAKG,SAASnB,EAAEgB,KAAK28C,MAAM,GAAG38C,KAAK6oD,QAAQ3nD,EAAElB,KAAK8oD,WAAU,CAAE,CAAC,IAAAL,CAAKzpD,GAAGgB,KAAK6oD,QAAQ7pD,EAAE4C,OAAO,GAAG5C,EAAEoyC,OAAO,GAAGpyC,EAAEgqC,QAAQ9nC,EAAElB,KAAK28C,MAAM,GAAG38C,KAAK8oD,WAAU,CAAE,CAAC,GAAAJ,CAAI1pD,EAAEF,EAAE+B,GAAGb,KAAK8oD,YAAY9oD,KAAK28C,QAAO,EAAG77C,EAAE8lD,eAAe5nD,EAAEF,EAAE+B,GAAGb,KAAK28C,MAAM/6C,OAAO3C,EAAE2oD,gBAAgB5nD,KAAK28C,MAAM,GAAG38C,KAAK8oD,WAAU,GAAI,CAAC,MAAAN,CAAOxpD,GAAG,IAAIF,GAAE,EAAG,GAAGkB,KAAK8oD,UAAUhqD,GAAE,OAAQ,GAAGE,IAAIF,EAAEkB,KAAKG,SAASH,KAAK28C,MAAM38C,KAAK6oD,SAAS/pD,aAAamM,SAAS,OAAOnM,EAAEqK,KAAMnK,IAAIgB,KAAK6oD,QAAQ3nD,EAAElB,KAAK28C,MAAM,GAAG38C,KAAK8oD,WAAU,EAAG9pD,IAAK,OAAOgB,KAAK6oD,QAAQ3nD,EAAElB,KAAK28C,MAAM,GAAG38C,KAAK8oD,WAAU,EAAGhqD,CAAC,IAAI,KAAK,CAACE,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEowC,qBAAqBpwC,EAAEiqD,uBAAuBjqD,EAAEkqD,qBAAgB,EAAO,MAAMloD,EAAED,EAAE,KAAKD,EAAEC,EAAE,MAAM5B,EAAE4B,EAAE,MAAMd,EAAEc,EAAE,MAAM,MAAMK,EAAE,WAAApB,CAAYd,GAAGgB,KAAKipD,MAAM,IAAIlC,WAAW/nD,EAAE,CAAC,UAAAkqD,CAAWlqD,EAAEF,GAAGkB,KAAKipD,MAAMltB,KAAK/8B,GAAG,EAAEF,EAAE,CAAC,GAAAqO,CAAInO,EAAEF,EAAE+B,EAAEC,GAAGd,KAAKipD,MAAMnqD,GAAG,EAAEE,GAAG6B,GAAG,EAAEC,CAAC,CAAC,OAAAqoD,CAAQnqD,EAAEF,EAAE+B,EAAEC,GAAG,IAAI,IAAIF,EAAE,EAAEA,EAAE5B,EAAE4C,OAAOhB,IAAIZ,KAAKipD,MAAMnqD,GAAG,EAAEE,EAAE4B,IAAIC,GAAG,EAAEC,CAAC,EAAEhC,EAAEkqD,gBAAgB9nD,EAAE,MAAMW,EAAE,IAAI/C,EAAEiqD,uBAAuB,WAAW,MAAM/pD,EAAE,IAAIkC,EAAE,MAAMpC,EAAEypC,MAAM6gB,MAAM,KAAK7gB,MAAM,MAAM/nC,IAAI,CAAExB,EAAEF,IAAIA,GAAI+B,EAAE,CAAC7B,EAAE6B,IAAI/B,EAAEwH,MAAMtH,EAAE6B,GAAGC,EAAED,EAAE,GAAG,KAAKD,EAAEC,EAAE,EAAE,IAAID,EAAEsB,KAAK,IAAItB,EAAEsB,KAAKknD,MAAMxoD,EAAEC,EAAE,GAAG,KAAK,MAAM5B,EAAE4B,EAAE,EAAE,IAAI,IAAId,EAAE,IAAIA,KAAKf,EAAEkqD,WAAW,EAAE,GAAGlqD,EAAEmqD,QAAQroD,EAAE,EAAE,EAAE,GAAG7B,EAAED,EAAEmqD,QAAQ,CAAC,GAAG,GAAG,IAAI,KAAKppD,EAAE,EAAE,GAAGf,EAAEmqD,QAAQtoD,EAAE,IAAI,KAAKd,EAAE,EAAE,GAAGf,EAAEmqD,QAAQtoD,EAAE,IAAI,KAAKd,EAAE,EAAE,GAAGf,EAAEmO,IAAI,IAAIpN,EAAE,EAAE,GAAGf,EAAEmO,IAAI,GAAGpN,EAAE,GAAG,GAAGf,EAAEmO,IAAI,IAAIpN,EAAE,EAAE,GAAGf,EAAEmqD,QAAQ,CAAC,IAAI,IAAI,KAAKppD,EAAE,EAAE,GAAGf,EAAEmO,IAAI,IAAIpN,EAAE,GAAG,GAAGf,EAAEmO,IAAI,IAAIpN,EAAE,GAAG,GAAG,OAAOf,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmO,IAAI,GAAG,EAAE,EAAE,GAAGnO,EAAEmqD,QAAQroD,EAAE,EAAE,EAAE,GAAG9B,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmqD,QAAQ,CAAC,IAAI,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,GAAGnqD,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQ,CAAC,GAAG,GAAG,IAAI,EAAE,EAAE,GAAGnqD,EAAEmqD,QAAQroD,EAAE,EAAE,EAAE,GAAG9B,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmO,IAAI,GAAG,EAAE,GAAG,GAAGnO,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQ,CAAC,GAAG,GAAG,GAAG,IAAI,EAAE,EAAE,GAAGnqD,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQ,CAAC,GAAG,GAAG,GAAG,IAAI,EAAE,EAAE,GAAGnqD,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,EAAE,GAAG,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,GAAG,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,GAAG,GAAG7B,EAAEmqD,QAAQ,CAAC,GAAG,GAAG,IAAI,EAAE,GAAG,GAAGnqD,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,EAAE,GAAG,GAAG7B,EAAEmO,IAAI,GAAG,EAAE,GAAG,GAAGnO,EAAEmqD,QAAQvoD,EAAE,EAAE,EAAE,GAAG5B,EAAEmO,IAAI,IAAI,EAAE,EAAE,GAAGnO,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,GAAG7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,IAAI7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,EAAE,EAAE,IAAI7B,EAAEmqD,QAAQ,CAAC,GAAG,GAAG,GAAG,IAAI,EAAE,EAAE,IAAInqD,EAAEmqD,QAAQvoD,EAAE,GAAG,EAAE,IAAI5B,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,GAAG,EAAE,IAAI7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,GAAG,EAAE,IAAI7B,EAAEmqD,QAAQvoD,EAAE,GAAG,EAAE,IAAI5B,EAAEmO,IAAI,IAAI,GAAG,EAAE,IAAInO,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,GAAG,EAAE,IAAI7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,GAAG,EAAE,IAAI7B,EAAEmqD,QAAQ,CAAC,GAAG,GAAG,GAAG,IAAI,GAAG,EAAE,IAAInqD,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,GAAG,EAAE,IAAI7B,EAAEmqD,QAAQvoD,EAAE,GAAG,EAAE,IAAI5B,EAAEmO,IAAI,IAAI,GAAG,EAAE,IAAInO,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,GAAG,EAAE,IAAI7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,GAAG,EAAE,IAAI7B,EAAEmqD,QAAQtoD,EAAE,GAAG,IAAI,GAAG,EAAE,IAAI7B,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,GAAG,GAAG,IAAI7B,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,GAAG,GAAG,IAAI7B,EAAEmqD,QAAQtoD,EAAE,GAAG,KAAK,EAAE,GAAG,IAAI7B,EAAEmqD,QAAQvoD,EAAE,GAAG,GAAG,IAAI5B,EAAEmqD,QAAQroD,EAAE,GAAG,GAAG,IAAI9B,EAAEmO,IAAI,IAAI,GAAG,EAAE,IAAInO,EAAEmqD,QAAQ,CAAC,GAAG,IAAI,GAAG,IAAI,GAAG,GAAG,GAAGnqD,EAAEmO,IAAItL,EAAE,EAAE,EAAE,GAAG7C,EAAEmO,IAAItL,EAAE,EAAE,EAAE,GAAG7C,EAAEmO,IAAItL,EAAE,EAAE,EAAE,GAAG7C,EAAEmO,IAAItL,EAAE,GAAG,EAAE,IAAI7C,EAAEmO,IAAItL,EAAE,GAAG,GAAG,IAAI7C,CAAC,CAAntE,GAAutE,MAAMmC,UAAUL,EAAEyL,WAAW,WAAAzM,CAAYd,EAAEF,EAAEiqD,wBAAwBv8C,QAAQxM,KAAKqpD,aAAarqD,EAAEgB,KAAK0wC,YAAY,CAAC/4B,MAAM,EAAE2xC,SAAS,GAAGC,WAAW,EAAEC,WAAW,EAAEC,SAAS,GAAGzpD,KAAK0pD,aAAa,EAAE1pD,KAAK2pD,aAAa3pD,KAAK0pD,aAAa1pD,KAAK6oD,QAAQ,IAAIjoD,EAAE+nD,OAAO3oD,KAAK6oD,QAAQD,SAAS,GAAG5oD,KAAK4pD,SAAS,EAAE5pD,KAAK24C,mBAAmB,EAAE34C,KAAK6pD,gBAAgB,CAAC7qD,EAAEF,EAAE+B,OAAOb,KAAK8pD,kBAAkB9qD,MAAMgB,KAAK+pD,cAAc,CAAC/qD,EAAEF,OAAOkB,KAAKgqD,cAAchrD,MAAMgB,KAAKiqD,gBAAgBjrD,GAAGA,EAAEgB,KAAKkqD,cAAclqD,KAAK6pD,gBAAgB7pD,KAAKmqD,iBAAiB1qD,OAAOwF,OAAO,MAAMjF,KAAKoqD,aAAa3qD,OAAOwF,OAAO,MAAMjF,KAAKqqD,aAAa5qD,OAAOwF,OAAO,MAAMjF,KAAK8N,UAAS,EAAGhN,EAAEuO,cAAc,KAAMrP,KAAKoqD,aAAa3qD,OAAOwF,OAAO,MAAMjF,KAAKmqD,iBAAiB1qD,OAAOwF,OAAO,MAAMjF,KAAKqqD,aAAa5qD,OAAOwF,OAAO,KAAM,IAAIjF,KAAKsqD,WAAWtqD,KAAK8N,SAAS,IAAI7O,EAAEsrD,WAAWvqD,KAAKwqD,WAAWxqD,KAAK8N,SAAS,IAAI/N,EAAE8nD,WAAW7nD,KAAKyqD,cAAczqD,KAAKiqD,gBAAgBjqD,KAAK0sC,mBAAmB,CAACS,MAAM,MAAM,KAAK,EAAI,CAAC,WAAAud,CAAY1rD,EAAEF,EAAE,CAAC,GAAG,MAAM,IAAI+B,EAAE,EAAE,GAAG7B,EAAE2zC,OAAO,CAAC,GAAG3zC,EAAE2zC,OAAO/wC,OAAO,EAAE,MAAM,IAAIkK,MAAM,qCAAqC,GAAGjL,EAAE7B,EAAE2zC,OAAO9oB,WAAW,GAAGhpB,GAAG,GAAGA,GAAGA,EAAE,GAAG,MAAM,IAAIiL,MAAM,uCAAuC,CAAC,GAAG9M,EAAE8yC,cAAc,CAAC,GAAG9yC,EAAE8yC,cAAclwC,OAAO,EAAE,MAAM,IAAIkK,MAAM,iDAAiD,IAAI,IAAIhN,EAAE,EAAEA,EAAEE,EAAE8yC,cAAclwC,SAAS9C,EAAE,CAAC,MAAMgC,EAAE9B,EAAE8yC,cAAcjoB,WAAW/qB,GAAG,GAAG,GAAGgC,GAAGA,EAAE,GAAG,MAAM,IAAIgL,MAAM,8CAA8CjL,IAAI,EAAEA,GAAGC,CAAC,CAAC,CAAC,GAAG,IAAI9B,EAAEmuC,MAAMvrC,OAAO,MAAM,IAAIkK,MAAM,+BAA+B,MAAMhL,EAAE9B,EAAEmuC,MAAMtjB,WAAW,GAAG,GAAG/qB,EAAE,GAAGgC,GAAGA,EAAEhC,EAAE,GAAG,MAAM,IAAIgN,MAAM,0BAA0BhN,EAAE,SAASA,EAAE,MAAM,OAAO+B,IAAI,EAAEA,GAAGC,EAAED,CAAC,CAAC,aAAAswC,CAAcnyC,GAAG,MAAMF,EAAE,GAAG,KAAKE,GAAGF,EAAEoD,KAAK4G,OAAOuhB,aAAa,IAAIrrB,IAAIA,IAAI,EAAE,OAAOF,EAAE6D,UAAUrB,KAAK,GAAG,CAAC,eAAAqwC,CAAgB3yC,GAAGgB,KAAKkqD,cAAclrD,CAAC,CAAC,iBAAA2rD,GAAoB3qD,KAAKkqD,cAAclqD,KAAK6pD,eAAe,CAAC,kBAAAnd,CAAmB1tC,EAAEF,GAAG,MAAM+B,EAAEb,KAAK0qD,YAAY1rD,EAAE,CAAC,GAAG,WAAM,IAASgB,KAAKqqD,aAAaxpD,KAAKb,KAAKqqD,aAAaxpD,GAAG,IAAI,MAAMC,EAAEd,KAAKqqD,aAAaxpD,GAAG,OAAOC,EAAEoB,KAAKpD,GAAG,CAAC8E,QAAQ,KAAK,MAAM5E,EAAE8B,EAAE4B,QAAQ5D,IAAI,IAAIE,GAAG8B,EAAEuW,OAAOrY,EAAE,IAAI,CAAC,eAAA4rD,CAAgB5rD,GAAGgB,KAAKqqD,aAAarqD,KAAK0qD,YAAY1rD,EAAE,CAAC,GAAG,eAAegB,KAAKqqD,aAAarqD,KAAK0qD,YAAY1rD,EAAE,CAAC,GAAG,MAAM,CAAC,qBAAAsyC,CAAsBtyC,GAAGgB,KAAKgqD,cAAchrD,CAAC,CAAC,iBAAA81C,CAAkB91C,EAAEF,GAAGkB,KAAKmqD,iBAAiBnrD,EAAE6qB,WAAW,IAAI/qB,CAAC,CAAC,mBAAA+rD,CAAoB7rD,GAAGgB,KAAKmqD,iBAAiBnrD,EAAE6qB,WAAW,YAAY7pB,KAAKmqD,iBAAiBnrD,EAAE6qB,WAAW,GAAG,CAAC,yBAAA0nB,CAA0BvyC,GAAGgB,KAAK8pD,kBAAkB9qD,CAAC,CAAC,kBAAA4tC,CAAmB5tC,EAAEF,GAAG,MAAM+B,EAAEb,KAAK0qD,YAAY1rD,QAAG,IAASgB,KAAKoqD,aAAavpD,KAAKb,KAAKoqD,aAAavpD,GAAG,IAAI,MAAMC,EAAEd,KAAKoqD,aAAavpD,GAAG,OAAOC,EAAEoB,KAAKpD,GAAG,CAAC8E,QAAQ,KAAK,MAAM5E,EAAE8B,EAAE4B,QAAQ5D,IAAI,IAAIE,GAAG8B,EAAEuW,OAAOrY,EAAE,IAAI,CAAC,eAAA8rD,CAAgB9rD,GAAGgB,KAAKoqD,aAAapqD,KAAK0qD,YAAY1rD,YAAYgB,KAAKoqD,aAAapqD,KAAK0qD,YAAY1rD,GAAG,CAAC,qBAAAiyC,CAAsBjyC,GAAGgB,KAAK+pD,cAAc/qD,CAAC,CAAC,kBAAA2tC,CAAmB3tC,EAAEF,GAAG,OAAOkB,KAAKwqD,WAAWnC,gBAAgBroD,KAAK0qD,YAAY1rD,GAAGF,EAAE,CAAC,eAAAisD,CAAgB/rD,GAAGgB,KAAKwqD,WAAWlC,aAAatoD,KAAK0qD,YAAY1rD,GAAG,CAAC,qBAAA0yC,CAAsB1yC,GAAGgB,KAAKwqD,WAAWjC,mBAAmBvpD,EAAE,CAAC,kBAAA6tC,CAAmB7tC,EAAEF,GAAG,OAAOkB,KAAKsqD,WAAWjC,gBAAgBrpD,EAAEF,EAAE,CAAC,eAAAksD,CAAgBhsD,GAAGgB,KAAKsqD,WAAWhC,aAAatpD,EAAE,CAAC,qBAAAyyC,CAAsBzyC,GAAGgB,KAAKsqD,WAAW/B,mBAAmBvpD,EAAE,CAAC,eAAAy4C,CAAgBz4C,GAAGgB,KAAKyqD,cAAczrD,CAAC,CAAC,iBAAAisD,GAAoBjrD,KAAKyqD,cAAczqD,KAAKiqD,eAAe,CAAC,KAAA7iD,GAAQpH,KAAK2pD,aAAa3pD,KAAK0pD,aAAa1pD,KAAKsqD,WAAWljD,QAAQpH,KAAKwqD,WAAWpjD,QAAQpH,KAAK6oD,QAAQzhD,QAAQpH,KAAK6oD,QAAQD,SAAS,GAAG5oD,KAAK4pD,SAAS,EAAE5pD,KAAK24C,mBAAmB,EAAE,IAAI34C,KAAK0wC,YAAY/4B,QAAQ3X,KAAK0wC,YAAY/4B,MAAM,EAAE3X,KAAK0wC,YAAY4Y,SAAS,GAAG,CAAC,cAAA1R,CAAe54C,EAAEF,EAAE+B,EAAEC,EAAEF,GAAGZ,KAAK0wC,YAAY/4B,MAAM3Y,EAAEgB,KAAK0wC,YAAY4Y,SAASxqD,EAAEkB,KAAK0wC,YAAY6Y,WAAW1oD,EAAEb,KAAK0wC,YAAY8Y,WAAW1oD,EAAEd,KAAK0wC,YAAY+Y,SAAS7oD,CAAC,CAAC,KAAA+F,CAAM3H,EAAEF,EAAE+B,GAAG,IAAIC,EAAEF,EAAE,EAAE3B,EAAE,EAAEc,EAAE,EAAE,GAAGC,KAAK0wC,YAAY/4B,MAAM,GAAG,IAAI3X,KAAK0wC,YAAY/4B,MAAM3X,KAAK0wC,YAAY/4B,MAAM,EAAE5X,EAAEC,KAAK0wC,YAAY+Y,SAAS,MAAM,CAAC,QAAG,IAAS5oD,GAAG,IAAIb,KAAK0wC,YAAY/4B,MAAM,MAAM3X,KAAK0wC,YAAY/4B,MAAM,EAAE,IAAI7L,MAAM,0EAA0E,MAAMhN,EAAEkB,KAAK0wC,YAAY4Y,SAAS,IAAIrqD,EAAEe,KAAK0wC,YAAY6Y,WAAW,EAAE,OAAOvpD,KAAK0wC,YAAY/4B,OAAO,KAAK,EAAE,IAAG,IAAK9W,GAAG5B,GAAG,EAAE,KAAKA,GAAG,IAAI6B,EAAEhC,EAAEG,GAAGe,KAAK6oD,UAAS,IAAK/nD,GAAG7B,IAAI,GAAG6B,aAAamK,QAAQ,OAAOjL,KAAK0wC,YAAY6Y,WAAWtqD,EAAE6B,EAAEd,KAAK0wC,YAAY4Y,SAAS,GAAG,MAAM,KAAK,EAAE,IAAG,IAAKzoD,GAAG5B,GAAG,EAAE,KAAKA,GAAG,IAAI6B,EAAEhC,EAAEG,MAAK,IAAK6B,GAAG7B,IAAI,GAAG6B,aAAamK,QAAQ,OAAOjL,KAAK0wC,YAAY6Y,WAAWtqD,EAAE6B,EAAEd,KAAK0wC,YAAY4Y,SAAS,GAAG,MAAM,KAAK,EAAE,GAAG1oD,EAAE5B,EAAEgB,KAAK0wC,YAAY+Y,UAAU3oD,EAAEd,KAAKwqD,WAAWhC,OAAO,KAAK5nD,GAAG,KAAKA,EAAEC,GAAGC,EAAE,OAAOA,EAAE,KAAKF,IAAIZ,KAAK0wC,YAAY8Y,YAAY,GAAGxpD,KAAK6oD,QAAQzhD,QAAQpH,KAAK6oD,QAAQD,SAAS,GAAG5oD,KAAK4pD,SAAS,EAAE,MAAM,KAAK,EAAE,GAAGhpD,EAAE5B,EAAEgB,KAAK0wC,YAAY+Y,UAAU3oD,EAAEd,KAAKsqD,WAAWroD,IAAI,KAAKrB,GAAG,KAAKA,EAAEC,GAAGC,EAAE,OAAOA,EAAE,KAAKF,IAAIZ,KAAK0wC,YAAY8Y,YAAY,GAAGxpD,KAAK6oD,QAAQzhD,QAAQpH,KAAK6oD,QAAQD,SAAS,GAAG5oD,KAAK4pD,SAAS,EAAE5pD,KAAK0wC,YAAY/4B,MAAM,EAAE5X,EAAEC,KAAK0wC,YAAY+Y,SAAS,EAAEzpD,KAAK24C,mBAAmB,EAAE34C,KAAK2pD,aAAa,GAAG3pD,KAAK0wC,YAAY8Y,UAAU,CAAC,IAAI,IAAI3oD,EAAEd,EAAEc,EAAE/B,IAAI+B,EAAE,CAAC,OAAOD,EAAE5B,EAAE6B,GAAG5B,EAAEe,KAAKqpD,aAAaJ,MAAMjpD,KAAK2pD,cAAc,GAAG/oD,EAAE,IAAIA,EAAEiB,IAAI5C,GAAG,GAAG,KAAK,EAAE,IAAI,IAAI6B,EAAED,EAAE,KAAKC,EAAE,CAAC,GAAGA,GAAGhC,IAAI8B,EAAE5B,EAAE8B,IAAI,IAAIF,EAAE,KAAKA,EAAEiB,EAAE,CAAC7B,KAAKkqD,cAAclrD,EAAE6B,EAAEC,GAAGD,EAAEC,EAAE,EAAE,KAAK,CAAC,KAAKA,GAAGhC,IAAI8B,EAAE5B,EAAE8B,IAAI,IAAIF,EAAE,KAAKA,EAAEiB,EAAE,CAAC7B,KAAKkqD,cAAclrD,EAAE6B,EAAEC,GAAGD,EAAEC,EAAE,EAAE,KAAK,CAAC,KAAKA,GAAGhC,IAAI8B,EAAE5B,EAAE8B,IAAI,IAAIF,EAAE,KAAKA,EAAEiB,EAAE,CAAC7B,KAAKkqD,cAAclrD,EAAE6B,EAAEC,GAAGD,EAAEC,EAAE,EAAE,KAAK,CAAC,KAAKA,GAAGhC,IAAI8B,EAAE5B,EAAE8B,IAAI,IAAIF,EAAE,KAAKA,EAAEiB,EAAE,CAAC7B,KAAKkqD,cAAclrD,EAAE6B,EAAEC,GAAGD,EAAEC,EAAE,EAAE,KAAK,CAAC,CAAC,MAAM,KAAK,EAAEd,KAAKmqD,iBAAiBvpD,GAAGZ,KAAKmqD,iBAAiBvpD,KAAKZ,KAAK8pD,kBAAkBlpD,GAAGZ,KAAK24C,mBAAmB,EAAE,MAAM,KAAK,EAAE,MAAM,KAAK,EAAE,GAAG34C,KAAKyqD,cAAc,CAAC7/B,SAAS/pB,EAAE2wC,KAAK5wC,EAAE+oD,aAAa3pD,KAAK2pD,aAAauB,QAAQlrD,KAAK4pD,SAASxY,OAAOpxC,KAAK6oD,QAAQsC,OAAM,IAAKA,MAAM,OAAO,MAAM,KAAK,EAAE,MAAMprD,EAAEC,KAAKoqD,aAAapqD,KAAK4pD,UAAU,EAAEhpD,GAAG,IAAIM,EAAEnB,EAAEA,EAAE6B,OAAO,GAAG,EAAE,KAAKV,GAAG,IAAIJ,EAAEf,EAAEmB,GAAGlB,KAAK6oD,UAAS,IAAK/nD,GAAGI,IAAI,GAAGJ,aAAamK,QAAQ,OAAOjL,KAAK43C,eAAe,EAAE73C,EAAEmB,EAAEjC,EAAE4B,GAAGC,EAAEI,EAAE,GAAGlB,KAAK+pD,cAAc/pD,KAAK4pD,UAAU,EAAEhpD,EAAEZ,KAAK6oD,SAAS7oD,KAAK24C,mBAAmB,EAAE,MAAM,KAAK,EAAE,GAAG,OAAO/3C,GAAG,KAAK,GAAGZ,KAAK6oD,QAAQD,SAAS,GAAG,MAAM,KAAK,GAAG5oD,KAAK6oD,QAAQuC,aAAa,GAAG,MAAM,QAAQprD,KAAK6oD,QAAQwC,SAASzqD,EAAE,aAAaC,EAAE/B,IAAI8B,EAAE5B,EAAE6B,IAAI,IAAID,EAAE,IAAIC,IAAI,MAAM,KAAK,EAAEb,KAAK4pD,WAAW,EAAE5pD,KAAK4pD,UAAUhpD,EAAE,MAAM,KAAK,GAAG,MAAMO,EAAEnB,KAAKqqD,aAAarqD,KAAK4pD,UAAU,EAAEhpD,GAAG,IAAIS,EAAEF,EAAEA,EAAES,OAAO,GAAG,EAAE,KAAKP,GAAG,IAAIP,EAAEK,EAAEE,MAAK,IAAKP,GAAGO,IAAI,GAAGP,aAAamK,QAAQ,OAAOjL,KAAK43C,eAAe,EAAEz2C,EAAEE,EAAEpC,EAAE4B,GAAGC,EAAEO,EAAE,GAAGrB,KAAKgqD,cAAchqD,KAAK4pD,UAAU,EAAEhpD,GAAGZ,KAAK24C,mBAAmB,EAAE,MAAM,KAAK,GAAG34C,KAAK6oD,QAAQzhD,QAAQpH,KAAK6oD,QAAQD,SAAS,GAAG5oD,KAAK4pD,SAAS,EAAE,MAAM,KAAK,GAAG5pD,KAAKwqD,WAAW/B,KAAKzoD,KAAK4pD,UAAU,EAAEhpD,EAAEZ,KAAK6oD,SAAS,MAAM,KAAK,GAAG,IAAI,IAAI/nD,EAAED,EAAE,KAAKC,EAAE,GAAGA,GAAGhC,GAAG,MAAM8B,EAAE5B,EAAE8B,KAAK,KAAKF,GAAG,KAAKA,GAAGA,EAAE,KAAKA,EAAEiB,EAAE,CAAC7B,KAAKwqD,WAAW9B,IAAI1pD,EAAE6B,EAAEC,GAAGD,EAAEC,EAAE,EAAE,KAAK,CAAC,MAAM,KAAK,GAAG,GAAGA,EAAEd,KAAKwqD,WAAWhC,OAAO,KAAK5nD,GAAG,KAAKA,GAAGE,EAAE,OAAOd,KAAK43C,eAAe,EAAE,GAAG,EAAE34C,EAAE4B,GAAGC,EAAE,KAAKF,IAAI3B,GAAG,GAAGe,KAAK6oD,QAAQzhD,QAAQpH,KAAK6oD,QAAQD,SAAS,GAAG5oD,KAAK4pD,SAAS,EAAE5pD,KAAK24C,mBAAmB,EAAE,MAAM,KAAK,EAAE34C,KAAKsqD,WAAWxoD,QAAQ,MAAM,KAAK,EAAE,IAAI,IAAIhB,EAAED,EAAE,GAAGC,IAAI,GAAGA,GAAGhC,IAAI8B,EAAE5B,EAAE8B,IAAI,IAAIF,EAAE,KAAKA,EAAEiB,EAAE,CAAC7B,KAAKsqD,WAAW5B,IAAI1pD,EAAE6B,EAAEC,GAAGD,EAAEC,EAAE,EAAE,KAAK,CAAC,MAAM,KAAK,EAAE,GAAGA,EAAEd,KAAKsqD,WAAWroD,IAAI,KAAKrB,GAAG,KAAKA,GAAGE,EAAE,OAAOd,KAAK43C,eAAe,EAAE,GAAG,EAAE34C,EAAE4B,GAAGC,EAAE,KAAKF,IAAI3B,GAAG,GAAGe,KAAK6oD,QAAQzhD,QAAQpH,KAAK6oD,QAAQD,SAAS,GAAG5oD,KAAK4pD,SAAS,EAAE5pD,KAAK24C,mBAAmB,EAAE34C,KAAK2pD,aAAa,GAAG1qD,CAAC,CAAC,EAAEH,EAAEowC,qBAAqB/tC,GAAG,KAAK,CAACnC,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEs3C,WAAWt3C,EAAEyrD,eAAU,EAAO,MAAMzpD,EAAED,EAAE,MAAMD,EAAEC,EAAE,KAAK5B,EAAE,GAAGH,EAAEyrD,UAAU,MAAM,WAAAzqD,GAAcE,KAAKsrD,OAAO,EAAEtrD,KAAK+nD,QAAQ9oD,EAAEe,KAAKijD,KAAK,EAAEjjD,KAAK8nD,UAAUroD,OAAOwF,OAAO,MAAMjF,KAAKioD,WAAW,OAAOjoD,KAAKkoD,OAAO,CAACvX,QAAO,EAAGwX,aAAa,EAAEC,aAAY,EAAG,CAAC,eAAAC,CAAgBrpD,EAAEF,QAAG,IAASkB,KAAK8nD,UAAU9oD,KAAKgB,KAAK8nD,UAAU9oD,GAAG,IAAI,MAAM6B,EAAEb,KAAK8nD,UAAU9oD,GAAG,OAAO6B,EAAEqB,KAAKpD,GAAG,CAAC8E,QAAQ,KAAK,MAAM5E,EAAE6B,EAAE6B,QAAQ5D,IAAI,IAAIE,GAAG6B,EAAEwW,OAAOrY,EAAE,IAAI,CAAC,YAAAspD,CAAatpD,GAAGgB,KAAK8nD,UAAU9oD,WAAWgB,KAAK8nD,UAAU9oD,EAAE,CAAC,kBAAAupD,CAAmBvpD,GAAGgB,KAAKioD,WAAWjpD,CAAC,CAAC,OAAA4E,GAAU5D,KAAK8nD,UAAUroD,OAAOwF,OAAO,MAAMjF,KAAKioD,WAAW,OAAOjoD,KAAK+nD,QAAQ9oD,CAAC,CAAC,KAAAmI,GAAQ,GAAG,IAAIpH,KAAKsrD,OAAO,IAAI,IAAItsD,EAAEgB,KAAKkoD,OAAOvX,OAAO3wC,KAAKkoD,OAAOC,aAAa,EAAEnoD,KAAK+nD,QAAQnmD,OAAO,EAAE5C,GAAG,IAAIA,EAAEgB,KAAK+nD,QAAQ/oD,GAAGiD,KAAI,GAAIjC,KAAKkoD,OAAOvX,QAAO,EAAG3wC,KAAK+nD,QAAQ9oD,EAAEe,KAAKijD,KAAK,EAAEjjD,KAAKsrD,OAAO,CAAC,CAAC,MAAAvN,GAAS,GAAG/9C,KAAK+nD,QAAQ/nD,KAAK8nD,UAAU9nD,KAAKijD,MAAMhkD,EAAEe,KAAK+nD,QAAQnmD,OAAO,IAAI,IAAI5C,EAAEgB,KAAK+nD,QAAQnmD,OAAO,EAAE5C,GAAG,EAAEA,IAAIgB,KAAK+nD,QAAQ/oD,GAAG8C,aAAa9B,KAAKioD,WAAWjoD,KAAKijD,IAAI,QAAQ,CAAC,IAAAsI,CAAKvsD,EAAEF,EAAE+B,GAAG,GAAGb,KAAK+nD,QAAQnmD,OAAO,IAAI,IAAId,EAAEd,KAAK+nD,QAAQnmD,OAAO,EAAEd,GAAG,EAAEA,IAAId,KAAK+nD,QAAQjnD,GAAG4nD,IAAI1pD,EAAEF,EAAE+B,QAAQb,KAAKioD,WAAWjoD,KAAKijD,IAAI,OAAM,EAAGriD,EAAEgmD,eAAe5nD,EAAEF,EAAE+B,GAAG,CAAC,KAAAiB,GAAQ9B,KAAKoH,QAAQpH,KAAKsrD,OAAO,CAAC,CAAC,GAAA5C,CAAI1pD,EAAEF,EAAE+B,GAAG,GAAG,IAAIb,KAAKsrD,OAAO,CAAC,GAAG,IAAItrD,KAAKsrD,OAAO,KAAKxsD,EAAE+B,GAAG,CAAC,MAAMA,EAAE7B,EAAEF,KAAK,GAAG,KAAK+B,EAAE,CAACb,KAAKsrD,OAAO,EAAEtrD,KAAK+9C,SAAS,KAAK,CAAC,GAAGl9C,EAAE,IAAI,GAAGA,EAAE,YAAYb,KAAKsrD,OAAO,IAAI,IAAItrD,KAAKijD,MAAMjjD,KAAKijD,IAAI,GAAGjjD,KAAKijD,IAAI,GAAGjjD,KAAKijD,IAAIpiD,EAAE,EAAE,CAAC,IAAIb,KAAKsrD,QAAQzqD,EAAE/B,EAAE,GAAGkB,KAAKurD,KAAKvsD,EAAEF,EAAE+B,EAAE,CAAC,CAAC,GAAAoB,CAAIjD,EAAEF,GAAE,GAAI,GAAG,IAAIkB,KAAKsrD,OAAO,CAAC,GAAG,IAAItrD,KAAKsrD,OAAO,GAAG,IAAItrD,KAAKsrD,QAAQtrD,KAAK+9C,SAAS/9C,KAAK+nD,QAAQnmD,OAAO,CAAC,IAAIf,GAAE,EAAGC,EAAEd,KAAK+nD,QAAQnmD,OAAO,EAAEhB,GAAE,EAAG,GAAGZ,KAAKkoD,OAAOvX,SAAS7vC,EAAEd,KAAKkoD,OAAOC,aAAa,EAAEtnD,EAAE/B,EAAE8B,EAAEZ,KAAKkoD,OAAOE,YAAYpoD,KAAKkoD,OAAOvX,QAAO,IAAK/vC,IAAG,IAAKC,EAAE,CAAC,KAAKC,GAAG,IAAID,EAAEb,KAAK+nD,QAAQjnD,GAAGmB,IAAIjD,IAAG,IAAK6B,GAAGC,IAAI,GAAGD,aAAaoK,QAAQ,OAAOjL,KAAKkoD,OAAOvX,QAAO,EAAG3wC,KAAKkoD,OAAOC,aAAarnD,EAAEd,KAAKkoD,OAAOE,aAAY,EAAGvnD,EAAEC,GAAG,CAAC,KAAKA,GAAG,EAAEA,IAAI,GAAGD,EAAEb,KAAK+nD,QAAQjnD,GAAGmB,KAAI,GAAIpB,aAAaoK,QAAQ,OAAOjL,KAAKkoD,OAAOvX,QAAO,EAAG3wC,KAAKkoD,OAAOC,aAAarnD,EAAEd,KAAKkoD,OAAOE,aAAY,EAAGvnD,CAAC,MAAMb,KAAKioD,WAAWjoD,KAAKijD,IAAI,MAAMjkD,GAAGgB,KAAK+nD,QAAQ9oD,EAAEe,KAAKijD,KAAK,EAAEjjD,KAAKsrD,OAAO,CAAC,CAAC,GAAGxsD,EAAEs3C,WAAW,MAAM,WAAAt2C,CAAYd,GAAGgB,KAAKG,SAASnB,EAAEgB,KAAK28C,MAAM,GAAG38C,KAAK8oD,WAAU,CAAE,CAAC,KAAAhnD,GAAQ9B,KAAK28C,MAAM,GAAG38C,KAAK8oD,WAAU,CAAE,CAAC,GAAAJ,CAAI1pD,EAAEF,EAAE+B,GAAGb,KAAK8oD,YAAY9oD,KAAK28C,QAAO,EAAG/7C,EAAEgmD,eAAe5nD,EAAEF,EAAE+B,GAAGb,KAAK28C,MAAM/6C,OAAOd,EAAE8mD,gBAAgB5nD,KAAK28C,MAAM,GAAG38C,KAAK8oD,WAAU,GAAI,CAAC,GAAA7mD,CAAIjD,GAAG,IAAIF,GAAE,EAAG,GAAGkB,KAAK8oD,UAAUhqD,GAAE,OAAQ,GAAGE,IAAIF,EAAEkB,KAAKG,SAASH,KAAK28C,OAAO79C,aAAamM,SAAS,OAAOnM,EAAEqK,KAAMnK,IAAIgB,KAAK28C,MAAM,GAAG38C,KAAK8oD,WAAU,EAAG9pD,IAAK,OAAOgB,KAAK28C,MAAM,GAAG38C,KAAK8oD,WAAU,EAAGhqD,CAAC,IAAI,KAAK,CAACE,EAAEF,KAAKW,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE6pD,YAAO,EAAO,MAAM9nD,EAAE,WAAW,MAAMC,EAAE,gBAAO0qD,CAAUxsD,GAAG,MAAMF,EAAE,IAAIgC,EAAE,IAAI9B,EAAE4C,OAAO,OAAO9C,EAAE,IAAI,IAAI+B,EAAE0nC,MAAMU,QAAQjqC,EAAE,IAAI,EAAE,EAAE6B,EAAE7B,EAAE4C,SAASf,EAAE,CAAC,MAAMC,EAAE9B,EAAE6B,GAAG,GAAG0nC,MAAMU,QAAQnoC,GAAG,IAAI,IAAI9B,EAAE,EAAEA,EAAE8B,EAAEc,SAAS5C,EAAEF,EAAEssD,YAAYtqD,EAAE9B,SAASF,EAAE8pD,SAAS9nD,EAAE,CAAC,OAAOhC,CAAC,CAAC,WAAAgB,CAAYd,EAAE,GAAGF,EAAE,IAAI,GAAGkB,KAAK0oC,UAAU1pC,EAAEgB,KAAKyrD,mBAAmB3sD,EAAEA,EAAE,IAAI,MAAM,IAAIgN,MAAM,mDAAmD9L,KAAKoxC,OAAO,IAAIsa,WAAW1sD,GAAGgB,KAAK4B,OAAO,EAAE5B,KAAK2rD,WAAW,IAAID,WAAW5sD,GAAGkB,KAAK4rD,iBAAiB,EAAE5rD,KAAK6rD,cAAc,IAAIC,YAAY9sD,GAAGgB,KAAK+rD,eAAc,EAAG/rD,KAAKgsD,kBAAiB,EAAGhsD,KAAKisD,aAAY,CAAE,CAAC,KAAAjjB,GAAQ,MAAMhqC,EAAE,IAAI8B,EAAEd,KAAK0oC,UAAU1oC,KAAKyrD,oBAAoB,OAAOzsD,EAAEoyC,OAAOphC,IAAIhQ,KAAKoxC,QAAQpyC,EAAE4C,OAAO5B,KAAK4B,OAAO5C,EAAE2sD,WAAW37C,IAAIhQ,KAAK2rD,YAAY3sD,EAAE4sD,iBAAiB5rD,KAAK4rD,iBAAiB5sD,EAAE6sD,cAAc77C,IAAIhQ,KAAK6rD,eAAe7sD,EAAE+sD,cAAc/rD,KAAK+rD,cAAc/sD,EAAEgtD,iBAAiBhsD,KAAKgsD,iBAAiBhtD,EAAEitD,YAAYjsD,KAAKisD,YAAYjtD,CAAC,CAAC,OAAAqyC,GAAU,MAAMryC,EAAE,GAAG,IAAI,IAAIF,EAAE,EAAEA,EAAEkB,KAAK4B,SAAS9C,EAAE,CAACE,EAAEkD,KAAKlC,KAAKoxC,OAAOtyC,IAAI,MAAM+B,EAAEb,KAAK6rD,cAAc/sD,IAAI,EAAEgC,EAAE,IAAId,KAAK6rD,cAAc/sD,GAAGgC,EAAED,EAAE,GAAG7B,EAAEkD,KAAKqmC,MAAM0P,UAAU3xC,MAAMknC,KAAKxtC,KAAK2rD,WAAW9qD,EAAEC,GAAG,CAAC,OAAO9B,CAAC,CAAC,KAAAoI,GAAQpH,KAAK4B,OAAO,EAAE5B,KAAK4rD,iBAAiB,EAAE5rD,KAAK+rD,eAAc,EAAG/rD,KAAKgsD,kBAAiB,EAAGhsD,KAAKisD,aAAY,CAAE,CAAC,QAAArD,CAAS5pD,GAAG,GAAGgB,KAAKisD,aAAY,EAAGjsD,KAAK4B,QAAQ5B,KAAK0oC,UAAU1oC,KAAK+rD,eAAc,MAAO,CAAC,GAAG/sD,GAAG,EAAE,MAAM,IAAI8M,MAAM,yCAAyC9L,KAAK6rD,cAAc7rD,KAAK4B,QAAQ5B,KAAK4rD,kBAAkB,EAAE5rD,KAAK4rD,iBAAiB5rD,KAAKoxC,OAAOpxC,KAAK4B,UAAU5C,EAAE6B,EAAEA,EAAE7B,CAAC,CAAC,CAAC,WAAAosD,CAAYpsD,GAAG,GAAGgB,KAAKisD,aAAY,EAAGjsD,KAAK4B,OAAO,GAAG5B,KAAK+rD,eAAe/rD,KAAK4rD,kBAAkB5rD,KAAKyrD,mBAAmBzrD,KAAKgsD,kBAAiB,MAAO,CAAC,GAAGhtD,GAAG,EAAE,MAAM,IAAI8M,MAAM,yCAAyC9L,KAAK2rD,WAAW3rD,KAAK4rD,oBAAoB5sD,EAAE6B,EAAEA,EAAE7B,EAAEgB,KAAK6rD,cAAc7rD,KAAK4B,OAAO,IAAI,CAAC,CAAC,YAAAs5C,CAAal8C,GAAG,OAAO,IAAIgB,KAAK6rD,cAAc7sD,KAAKgB,KAAK6rD,cAAc7sD,IAAI,GAAG,CAAC,CAAC,YAAAm8C,CAAan8C,GAAG,MAAMF,EAAEkB,KAAK6rD,cAAc7sD,IAAI,EAAE6B,EAAE,IAAIb,KAAK6rD,cAAc7sD,GAAG,OAAO6B,EAAE/B,EAAE,EAAEkB,KAAK2rD,WAAWvT,SAASt5C,EAAE+B,GAAG,IAAI,CAAC,eAAAqrD,GAAkB,MAAMltD,EAAE,CAAC,EAAE,IAAI,IAAIF,EAAE,EAAEA,EAAEkB,KAAK4B,SAAS9C,EAAE,CAAC,MAAM+B,EAAEb,KAAK6rD,cAAc/sD,IAAI,EAAEgC,EAAE,IAAId,KAAK6rD,cAAc/sD,GAAGgC,EAAED,EAAE,IAAI7B,EAAEF,GAAGkB,KAAK2rD,WAAWrlD,MAAMzF,EAAEC,GAAG,CAAC,OAAO9B,CAAC,CAAC,QAAAqsD,CAASrsD,GAAG,IAAIF,EAAE,GAAGkB,KAAK+rD,iBAAiBjtD,EAAEkB,KAAKisD,YAAYjsD,KAAK4rD,iBAAiB5rD,KAAK4B,SAAS5B,KAAKisD,aAAajsD,KAAKgsD,iBAAiB,OAAO,MAAMlrD,EAAEd,KAAKisD,YAAYjsD,KAAK2rD,WAAW3rD,KAAKoxC,OAAOxwC,EAAEE,EAAEhC,EAAE,GAAGgC,EAAEhC,EAAE,IAAI8B,EAAEga,KAAKC,IAAI,GAAGja,EAAE5B,EAAE6B,GAAG7B,CAAC,EAAEF,EAAE6pD,OAAO7nD,GAAG,KAAK,CAAC9B,EAAEF,KAAKW,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEqtD,kBAAa,EAAOrtD,EAAEqtD,aAAa,MAAM,WAAArsD,GAAcE,KAAKosD,QAAQ,EAAE,CAAC,OAAAxoD,GAAU,IAAI,IAAI5E,EAAEgB,KAAKosD,QAAQxqD,OAAO,EAAE5C,GAAG,EAAEA,IAAIgB,KAAKosD,QAAQptD,GAAGqtD,SAASzoD,SAAS,CAAC,SAAAyE,CAAUrJ,EAAEF,GAAG,MAAM+B,EAAE,CAACwrD,SAASvtD,EAAE8E,QAAQ9E,EAAE8E,QAAQs/C,YAAW,GAAIljD,KAAKosD,QAAQlqD,KAAKrB,GAAG/B,EAAE8E,QAAQ,IAAI5D,KAAKssD,qBAAqBzrD,GAAG/B,EAAEsD,SAASpD,EAAE,CAAC,oBAAAstD,CAAqBttD,GAAG,GAAGA,EAAEkkD,WAAW,OAAO,IAAIpkD,GAAG,EAAE,IAAI,IAAI+B,EAAE,EAAEA,EAAEb,KAAKosD,QAAQxqD,OAAOf,IAAI,GAAGb,KAAKosD,QAAQvrD,KAAK7B,EAAE,CAACF,EAAE+B,EAAE,KAAK,CAAC,IAAI,IAAI/B,EAAE,MAAM,IAAIgN,MAAM,uDAAuD9M,EAAEkkD,YAAW,EAAGlkD,EAAE4E,QAAQwlD,MAAMpqD,EAAEqtD,UAAUrsD,KAAKosD,QAAQ/0C,OAAOvY,EAAE,EAAE,IAAI,KAAK,CAACE,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEytD,mBAAc,EAAO,MAAMzrD,EAAED,EAAE,MAAMD,EAAEC,EAAE,KAAK/B,EAAEytD,cAAc,MAAM,WAAAzsD,CAAYd,EAAEF,GAAGkB,KAAKwsD,QAAQxtD,EAAEgB,KAAKqf,KAAKvgB,CAAC,CAAC,IAAA2tD,CAAKztD,GAAG,OAAOgB,KAAKwsD,QAAQxtD,EAAEgB,IAAI,CAAC,WAAI0sD,GAAU,OAAO1sD,KAAKwsD,QAAQxqD,CAAC,CAAC,WAAI2qD,GAAU,OAAO3sD,KAAKwsD,QAAQzqD,CAAC,CAAC,aAAI+6B,GAAY,OAAO98B,KAAKwsD,QAAQ18C,KAAK,CAAC,SAAI88C,GAAQ,OAAO5sD,KAAKwsD,QAAQxrC,KAAK,CAAC,UAAIpf,GAAS,OAAO5B,KAAKwsD,QAAQ78C,MAAM/N,MAAM,CAAC,OAAAW,CAAQvD,GAAG,MAAMF,EAAEkB,KAAKwsD,QAAQ78C,MAAME,IAAI7Q,GAAG,GAAGF,EAAE,OAAO,IAAIgC,EAAE+rD,kBAAkB/tD,EAAE,CAAC,WAAA8D,GAAc,OAAO,IAAIhC,EAAEyY,QAAQ,IAAI,KAAK,CAACra,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE+tD,uBAAkB,EAAO,MAAM/rD,EAAED,EAAE,KAAK/B,EAAE+tD,kBAAkB,MAAM,WAAA/sD,CAAYd,GAAGgB,KAAK8sD,MAAM9tD,CAAC,CAAC,aAAIyD,GAAY,OAAOzC,KAAK8sD,MAAMrqD,SAAS,CAAC,UAAIb,GAAS,OAAO5B,KAAK8sD,MAAMlrD,MAAM,CAAC,OAAAiB,CAAQ7D,EAAEF,GAAG,KAAKE,EAAE,GAAGA,GAAGgB,KAAK8sD,MAAMlrD,QAAQ,OAAO9C,GAAGkB,KAAK8sD,MAAMtzC,SAASxa,EAAEF,GAAGA,GAAGkB,KAAK8sD,MAAMtzC,SAASxa,EAAE,IAAI8B,EAAEuY,SAAS,CAAC,iBAAA7W,CAAkBxD,EAAEF,EAAE+B,GAAG,OAAOb,KAAK8sD,MAAMtqD,kBAAkBxD,EAAEF,EAAE+B,EAAE,IAAI,KAAK,CAAC7B,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEiuD,wBAAmB,EAAO,MAAMjsD,EAAED,EAAE,MAAMD,EAAEC,EAAE,MAAM5B,EAAE4B,EAAE,KAAK,MAAMd,UAAUd,EAAEsN,WAAW,WAAAzM,CAAYd,GAAGwN,QAAQxM,KAAKgtD,MAAMhuD,EAAEgB,KAAKitD,gBAAgBjtD,KAAK8N,SAAS,IAAIlN,EAAE8U,cAAc1V,KAAKktD,eAAeltD,KAAKitD,gBAAgBr3C,MAAM5V,KAAK2iD,QAAQ,IAAI7hD,EAAEyrD,cAAcvsD,KAAKgtD,MAAM5sC,QAAQmS,OAAO,UAAUvyB,KAAKmtD,WAAW,IAAIrsD,EAAEyrD,cAAcvsD,KAAKgtD,MAAM5sC,QAAQ4G,IAAI,aAAahnB,KAAKgtD,MAAM5sC,QAAQwM,iBAAiB,IAAK5sB,KAAKitD,gBAAgB30C,KAAKtY,KAAKsC,QAAS,CAAC,UAAIA,GAAS,GAAGtC,KAAKgtD,MAAM5sC,QAAQ9d,SAAStC,KAAKgtD,MAAM5sC,QAAQmS,OAAO,OAAOvyB,KAAKuyB,OAAO,GAAGvyB,KAAKgtD,MAAM5sC,QAAQ9d,SAAStC,KAAKgtD,MAAM5sC,QAAQ4G,IAAI,OAAOhnB,KAAKotD,UAAU,MAAM,IAAIthD,MAAM,gDAAgD,CAAC,UAAIymB,GAAS,OAAOvyB,KAAK2iD,QAAQ8J,KAAKzsD,KAAKgtD,MAAM5sC,QAAQmS,OAAO,CAAC,aAAI66B,GAAY,OAAOptD,KAAKmtD,WAAWV,KAAKzsD,KAAKgtD,MAAM5sC,QAAQ4G,IAAI,EAAEloB,EAAEiuD,mBAAmBhtD,GAAG,KAAK,CAACf,EAAEF,KAAKW,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEuuD,eAAU,EAAOvuD,EAAEuuD,UAAU,MAAM,WAAAvtD,CAAYd,GAAGgB,KAAKgtD,MAAMhuD,CAAC,CAAC,kBAAA4tC,CAAmB5tC,EAAEF,GAAG,OAAOkB,KAAKgtD,MAAMpgB,mBAAmB5tC,EAAGA,GAAGF,EAAEE,EAAEqyC,WAAY,CAAC,aAAAic,CAActuD,EAAEF,GAAG,OAAOkB,KAAK4sC,mBAAmB5tC,EAAEF,EAAE,CAAC,kBAAA6tC,CAAmB3tC,EAAEF,GAAG,OAAOkB,KAAKgtD,MAAMrgB,mBAAmB3tC,EAAE,CAAEA,EAAE6B,IAAI/B,EAAEE,EAAE6B,EAAEwwC,WAAY,CAAC,aAAAkc,CAAcvuD,EAAEF,GAAG,OAAOkB,KAAK2sC,mBAAmB3tC,EAAEF,EAAE,CAAC,kBAAA4tC,CAAmB1tC,EAAEF,GAAG,OAAOkB,KAAKgtD,MAAMtgB,mBAAmB1tC,EAAEF,EAAE,CAAC,aAAA0uD,CAAcxuD,EAAEF,GAAG,OAAOkB,KAAK0sC,mBAAmB1tC,EAAEF,EAAE,CAAC,kBAAA+tC,CAAmB7tC,EAAEF,GAAG,OAAOkB,KAAKgtD,MAAMngB,mBAAmB7tC,EAAEF,EAAE,CAAC,aAAA2uD,CAAczuD,EAAEF,GAAG,OAAOkB,KAAK6sC,mBAAmB7tC,EAAEF,EAAE,IAAI,KAAK,CAACE,EAAEF,KAAKW,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE4uD,gBAAW,EAAO5uD,EAAE4uD,WAAW,MAAM,WAAA5tD,CAAYd,GAAGgB,KAAKgtD,MAAMhuD,CAAC,CAAC,QAAA8O,CAAS9O,GAAGgB,KAAKgtD,MAAM9hB,eAAep9B,SAAS9O,EAAE,CAAC,YAAI2uD,GAAW,OAAO3tD,KAAKgtD,MAAM9hB,eAAeyiB,QAAQ,CAAC,iBAAIC,GAAgB,OAAO5tD,KAAKgtD,MAAM9hB,eAAe0iB,aAAa,CAAC,iBAAIA,CAAc5uD,GAAGgB,KAAKgtD,MAAM9hB,eAAe0iB,cAAc5uD,CAAC,IAAI,IAAI,SAASA,EAAEF,EAAE+B,GAAG,IAAIC,EAAEd,MAAMA,KAAKgM,YAAY,SAAShN,EAAEF,EAAE+B,EAAEC,GAAG,IAAIF,EAAE3B,EAAEgN,UAAUrK,OAAO7B,EAAEd,EAAE,EAAEH,EAAE,OAAOgC,EAAEA,EAAErB,OAAOyM,yBAAyBpN,EAAE+B,GAAGC,EAAE,GAAG,iBAAiBqL,SAAS,mBAAmBA,QAAQC,SAASrM,EAAEoM,QAAQC,SAASpN,EAAEF,EAAE+B,EAAEC,QAAQ,IAAI,IAAII,EAAElC,EAAE4C,OAAO,EAAEV,GAAG,EAAEA,KAAKN,EAAE5B,EAAEkC,MAAMnB,GAAGd,EAAE,EAAE2B,EAAEb,GAAGd,EAAE,EAAE2B,EAAE9B,EAAE+B,EAAEd,GAAGa,EAAE9B,EAAE+B,KAAKd,GAAG,OAAOd,EAAE,GAAGc,GAAGN,OAAOC,eAAeZ,EAAE+B,EAAEd,GAAGA,CAAC,EAAEa,EAAEZ,MAAMA,KAAKqM,SAAS,SAASrN,EAAEF,GAAG,OAAO,SAAS+B,EAAEC,GAAGhC,EAAE+B,EAAEC,EAAE9B,EAAE,CAAC,EAAES,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE8rC,cAAc9rC,EAAEutC,aAAavtC,EAAEstC,kBAAa,EAAO,MAAMntC,EAAE4B,EAAE,MAAMd,EAAEc,EAAE,KAAKK,EAAEL,EAAE,MAAMgB,EAAEhB,EAAE,MAAM/B,EAAEstC,aAAa,EAAEttC,EAAEutC,aAAa,EAAE,IAAIlrC,EAAErC,EAAE8rC,cAAc,cAAc7qC,EAAEwM,WAAW,UAAIlK,GAAS,OAAOrC,KAAKogB,QAAQ9d,MAAM,CAAC,WAAAxC,CAAYd,GAAGwN,QAAQxM,KAAK6tD,iBAAgB,EAAG7tD,KAAKuqC,UAAUvqC,KAAK8N,SAAS,IAAI7O,EAAEyW,cAAc1V,KAAK+F,SAAS/F,KAAKuqC,UAAU30B,MAAM5V,KAAKslB,UAAUtlB,KAAK8N,SAAS,IAAI7O,EAAEyW,cAAc1V,KAAKuO,SAASvO,KAAKslB,UAAU1P,MAAM5V,KAAK+I,KAAK6R,KAAKG,IAAI/b,EAAEgU,WAAWjK,MAAM,EAAEjK,EAAEstC,cAAcpsC,KAAK6F,KAAK+U,KAAKG,IAAI/b,EAAEgU,WAAWnN,MAAM,EAAE/G,EAAEutC,cAAcrsC,KAAKogB,QAAQpgB,KAAK8N,SAAS,IAAI5M,EAAEuhD,UAAUzjD,EAAEgB,MAAM,CAAC,MAAA6jB,CAAO7kB,EAAEF,GAAGkB,KAAK+I,KAAK/J,EAAEgB,KAAK6F,KAAK/G,EAAEkB,KAAKogB,QAAQyD,OAAO7kB,EAAEF,GAAGkB,KAAKuqC,UAAUjyB,KAAK,CAACvP,KAAK/J,EAAE6G,KAAK/G,GAAG,CAAC,KAAAsI,GAAQpH,KAAKogB,QAAQhZ,QAAQpH,KAAK6tD,iBAAgB,CAAE,CAAC,MAAAvhB,CAAOttC,EAAEF,GAAE,GAAI,MAAM+B,EAAEb,KAAKqC,OAAO,IAAIvB,EAAEA,EAAEd,KAAK8tD,iBAAiBhtD,GAAGA,EAAEc,SAAS5B,KAAK+I,MAAMjI,EAAE+9B,MAAM,KAAK7/B,EAAE4Z,IAAI9X,EAAEg+B,MAAM,KAAK9/B,EAAE05B,KAAK53B,EAAED,EAAE6pB,aAAa1rB,EAAEF,GAAGkB,KAAK8tD,iBAAiBhtD,GAAGA,EAAE2B,UAAU3D,EAAE,MAAM8B,EAAEC,EAAEmgB,MAAMngB,EAAE2sB,UAAUvuB,EAAE4B,EAAEmgB,MAAMngB,EAAEkrC,aAAa,GAAG,IAAIlrC,EAAE2sB,UAAU,CAAC,MAAMxuB,EAAE6B,EAAE8O,MAAMk5B,OAAO5pC,IAAI4B,EAAE8O,MAAM/N,OAAO,EAAE5C,EAAE6B,EAAE8O,MAAMi5B,UAAU2Z,SAASzhD,GAAGD,EAAE8O,MAAMzN,KAAKpB,EAAEkoC,SAASnoC,EAAE8O,MAAM0H,OAAOpY,EAAE,EAAE,EAAE6B,EAAEkoC,SAAShqC,EAAEgB,KAAK6tD,kBAAkBhtD,EAAEiP,MAAM8K,KAAKG,IAAIla,EAAEiP,MAAM,EAAE,KAAKjP,EAAEmgB,QAAQhhB,KAAK6tD,iBAAiBhtD,EAAEiP,QAAQ,KAAK,CAAC,MAAM9Q,EAAEC,EAAE2B,EAAE,EAAEC,EAAE8O,MAAMo5B,cAAcnoC,EAAE,EAAE5B,EAAE,GAAG,GAAG6B,EAAE8O,MAAMK,IAAI/Q,EAAE6B,EAAEkoC,QAAQ,CAAChpC,KAAK6tD,kBAAkBhtD,EAAEiP,MAAMjP,EAAEmgB,OAAOhhB,KAAKslB,UAAUhN,KAAKzX,EAAEiP,MAAM,CAAC,WAAAS,CAAYvR,EAAEF,EAAE+B,GAAG,MAAMC,EAAEd,KAAKqC,OAAO,GAAGrD,EAAE,EAAE,CAAC,GAAG,IAAI8B,EAAEgP,MAAM,OAAO9P,KAAK6tD,iBAAgB,CAAE,MAAM7uD,EAAE8B,EAAEgP,OAAOhP,EAAEkgB,QAAQhhB,KAAK6tD,iBAAgB,GAAI,MAAMjtD,EAAEE,EAAEgP,MAAMhP,EAAEgP,MAAM8K,KAAKG,IAAIH,KAAKC,IAAI/Z,EAAEgP,MAAM9Q,EAAE8B,EAAEkgB,OAAO,GAAGpgB,IAAIE,EAAEgP,QAAQhR,GAAGkB,KAAKslB,UAAUhN,KAAKxX,EAAEgP,OAAO,GAAGhR,EAAE8rC,cAAczpC,EAAEL,EAAE,CAACF,EAAE,EAAEiB,EAAEoY,kBAAkB9Y,EAAE,EAAE,KAAK,CAACnC,EAAEF,KAAKW,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEwsC,oBAAe,EAAOxsC,EAAEwsC,eAAe,MAAM,WAAAxrC,GAAcE,KAAK+tD,OAAO,EAAE/tD,KAAKguD,UAAU,EAAE,CAAC,KAAA5mD,GAAQpH,KAAKq4C,aAAQ,EAAOr4C,KAAKguD,UAAU,GAAGhuD,KAAK+tD,OAAO,CAAC,CAAC,SAAA3W,CAAUp4C,GAAGgB,KAAK+tD,OAAO/uD,EAAEgB,KAAKq4C,QAAQr4C,KAAKguD,UAAUhvD,EAAE,CAAC,WAAAy7C,CAAYz7C,EAAEF,GAAGkB,KAAKguD,UAAUhvD,GAAGF,EAAEkB,KAAK+tD,SAAS/uD,IAAIgB,KAAKq4C,QAAQv5C,EAAE,IAAI,KAAK,SAASE,EAAEF,EAAE+B,GAAG,IAAIC,EAAEd,MAAMA,KAAKgM,YAAY,SAAShN,EAAEF,EAAE+B,EAAEC,GAAG,IAAIF,EAAE3B,EAAEgN,UAAUrK,OAAO7B,EAAEd,EAAE,EAAEH,EAAE,OAAOgC,EAAEA,EAAErB,OAAOyM,yBAAyBpN,EAAE+B,GAAGC,EAAE,GAAG,iBAAiBqL,SAAS,mBAAmBA,QAAQC,SAASrM,EAAEoM,QAAQC,SAASpN,EAAEF,EAAE+B,EAAEC,QAAQ,IAAI,IAAII,EAAElC,EAAE4C,OAAO,EAAEV,GAAG,EAAEA,KAAKN,EAAE5B,EAAEkC,MAAMnB,GAAGd,EAAE,EAAE2B,EAAEb,GAAGd,EAAE,EAAE2B,EAAE9B,EAAE+B,EAAEd,GAAGa,EAAE9B,EAAE+B,KAAKd,GAAG,OAAOd,EAAE,GAAGc,GAAGN,OAAOC,eAAeZ,EAAE+B,EAAEd,GAAGA,CAAC,EAAEa,EAAEZ,MAAMA,KAAKqM,SAAS,SAASrN,EAAEF,GAAG,OAAO,SAAS+B,EAAEC,GAAGhC,EAAE+B,EAAEC,EAAE9B,EAAE,CAAC,EAAES,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEksC,sBAAiB,EAAO,MAAM/rC,EAAE4B,EAAE,MAAMd,EAAEc,EAAE,MAAMK,EAAEL,EAAE,KAAKgB,EAAE,CAACosD,KAAK,CAACC,OAAO,EAAEC,SAAS,KAAI,GAAIC,IAAI,CAACF,OAAO,EAAEC,SAASnvD,GAAG,IAAIA,EAAEwiB,QAAQ,IAAIxiB,EAAE6nB,SAAS7nB,EAAE8nB,MAAK,EAAG9nB,EAAEgoB,KAAI,EAAGhoB,EAAEuQ,OAAM,GAAG,IAAK8+C,MAAM,CAACH,OAAO,GAAGC,SAASnvD,GAAG,KAAKA,EAAE6nB,QAAQynC,KAAK,CAACJ,OAAO,GAAGC,SAASnvD,GAAG,KAAKA,EAAE6nB,QAAQ,IAAI7nB,EAAEwiB,QAAQ+sC,IAAI,CAACL,OAAO,GAAGC,SAASnvD,IAAG,IAAK,SAASmC,EAAEnC,EAAEF,GAAG,IAAI+B,GAAG7B,EAAE8nB,KAAK,GAAG,IAAI9nB,EAAEuQ,MAAM,EAAE,IAAIvQ,EAAEgoB,IAAI,EAAE,GAAG,OAAO,IAAIhoB,EAAEwiB,QAAQ3gB,GAAG,GAAGA,GAAG7B,EAAE6nB,SAAShmB,GAAG,EAAE7B,EAAEwiB,OAAO,EAAExiB,EAAEwiB,SAAS3gB,GAAG,IAAI,EAAE7B,EAAEwiB,SAAS3gB,GAAG,KAAK,KAAK7B,EAAE6nB,OAAOhmB,GAAG,GAAG,IAAI7B,EAAE6nB,QAAQ/nB,IAAI+B,GAAG,IAAIA,CAAC,CAAC,MAAMQ,EAAEyH,OAAOuhB,aAAa9oB,EAAE,CAACitD,QAAQxvD,IAAI,MAAMF,EAAE,CAACqC,EAAEnC,GAAE,GAAI,GAAGA,EAAE4nB,IAAI,GAAG5nB,EAAE6S,IAAI,IAAI,OAAO/S,EAAE,GAAG,KAAKA,EAAE,GAAG,KAAKA,EAAE,GAAG,IAAI,GAAG,MAAMuC,EAAEvC,EAAE,MAAMuC,EAAEvC,EAAE,MAAMuC,EAAEvC,EAAE,OAAO2vD,IAAIzvD,IAAI,MAAMF,EAAE,IAAIE,EAAE6nB,QAAQ,IAAI7nB,EAAEwiB,OAAO,IAAI,IAAI,MAAM,MAAMrgB,EAAEnC,GAAE,MAAOA,EAAE4nB,OAAO5nB,EAAE6S,MAAM/S,KAAK4vD,WAAW1vD,IAAI,MAAMF,EAAE,IAAIE,EAAE6nB,QAAQ,IAAI7nB,EAAEwiB,OAAO,IAAI,IAAI,MAAM,MAAMrgB,EAAEnC,GAAE,MAAOA,EAAE+C,KAAK/C,EAAEgD,IAAIlD,MAAM,IAAImc,EAAEnc,EAAEksC,iBAAiB,cAAc9pC,EAAEqL,WAAW,WAAAzM,CAAYd,EAAEF,GAAG0N,QAAQxM,KAAKmV,eAAenW,EAAEgB,KAAKszB,aAAax0B,EAAEkB,KAAK2uD,WAAW,CAAC,EAAE3uD,KAAK4uD,WAAW,CAAC,EAAE5uD,KAAK6uD,gBAAgB,GAAG7uD,KAAK8uD,gBAAgB,GAAG9uD,KAAK+uD,WAAW,KAAK/uD,KAAKgvD,kBAAkBhvD,KAAK8N,SAAS,IAAI/N,EAAE2V,cAAc1V,KAAKwnB,iBAAiBxnB,KAAKgvD,kBAAkBp5C,MAAM,IAAI,MAAM5W,KAAKS,OAAO6K,KAAKzI,GAAG7B,KAAKivD,YAAYjwD,EAAE6C,EAAE7C,IAAI,IAAI,MAAMA,KAAKS,OAAO6K,KAAK/I,GAAGvB,KAAKkvD,YAAYlwD,EAAEuC,EAAEvC,IAAIgB,KAAKoH,OAAO,CAAC,WAAA6nD,CAAYjwD,EAAEF,GAAGkB,KAAK2uD,WAAW3vD,GAAGF,CAAC,CAAC,WAAAowD,CAAYlwD,EAAEF,GAAGkB,KAAK4uD,WAAW5vD,GAAGF,CAAC,CAAC,kBAAI8oB,GAAiB,OAAO5nB,KAAK6uD,eAAe,CAAC,wBAAInpC,GAAuB,OAAO,IAAI1lB,KAAK2uD,WAAW3uD,KAAK6uD,iBAAiBX,MAAM,CAAC,kBAAItmC,CAAe5oB,GAAG,IAAIgB,KAAK2uD,WAAW3vD,GAAG,MAAM,IAAI8M,MAAM,qBAAqB9M,MAAMgB,KAAK6uD,gBAAgB7vD,EAAEgB,KAAKgvD,kBAAkB12C,KAAKtY,KAAK2uD,WAAW3vD,GAAGkvD,OAAO,CAAC,kBAAItT,GAAiB,OAAO56C,KAAK8uD,eAAe,CAAC,kBAAIlU,CAAe57C,GAAG,IAAIgB,KAAK4uD,WAAW5vD,GAAG,MAAM,IAAI8M,MAAM,qBAAqB9M,MAAMgB,KAAK8uD,gBAAgB9vD,CAAC,CAAC,KAAAoI,GAAQpH,KAAK4nB,eAAe,OAAO5nB,KAAK46C,eAAe,UAAU56C,KAAK+uD,WAAW,IAAI,CAAC,iBAAApoC,CAAkB3nB,GAAG,GAAGA,EAAE4nB,IAAI,GAAG5nB,EAAE4nB,KAAK5mB,KAAKmV,eAAepM,MAAM/J,EAAE6S,IAAI,GAAG7S,EAAE6S,KAAK7R,KAAKmV,eAAetP,KAAK,OAAM,EAAG,GAAG,IAAI7G,EAAEwiB,QAAQ,KAAKxiB,EAAE6nB,OAAO,OAAM,EAAG,GAAG,IAAI7nB,EAAEwiB,QAAQ,KAAKxiB,EAAE6nB,OAAO,OAAM,EAAG,GAAG,IAAI7nB,EAAEwiB,SAAS,IAAIxiB,EAAE6nB,QAAQ,IAAI7nB,EAAE6nB,QAAQ,OAAM,EAAG,GAAG7nB,EAAE4nB,MAAM5nB,EAAE6S,MAAM,KAAK7S,EAAE6nB,QAAQ7mB,KAAK+uD,YAAY/uD,KAAKmvD,aAAanvD,KAAK+uD,WAAW/vD,EAAE,eAAegB,KAAK8uD,iBAAiB,OAAM,EAAG,IAAI9uD,KAAK2uD,WAAW3uD,KAAK6uD,iBAAiBV,SAASnvD,GAAG,OAAM,EAAG,MAAMF,EAAEkB,KAAK4uD,WAAW5uD,KAAK8uD,iBAAiB9vD,GAAG,OAAOF,IAAI,YAAYkB,KAAK8uD,gBAAgB9uD,KAAKszB,aAAa87B,mBAAmBtwD,GAAGkB,KAAKszB,aAAapgB,iBAAiBpU,GAAE,IAAKkB,KAAK+uD,WAAW/vD,GAAE,CAAE,CAAC,aAAA0oB,CAAc1oB,GAAG,MAAM,CAACqwD,QAAQ,EAAErwD,GAAGswD,MAAM,EAAEtwD,GAAGuwD,QAAQ,EAAEvwD,GAAGwwD,QAAQ,EAAExwD,GAAGooB,SAAS,GAAGpoB,GAAG,CAAC,YAAAmwD,CAAanwD,EAAEF,EAAE+B,GAAG,GAAGA,EAAE,CAAC,GAAG7B,EAAE+C,IAAIjD,EAAEiD,EAAE,OAAM,EAAG,GAAG/C,EAAEgD,IAAIlD,EAAEkD,EAAE,OAAM,CAAE,KAAK,CAAC,GAAGhD,EAAE4nB,MAAM9nB,EAAE8nB,IAAI,OAAM,EAAG,GAAG5nB,EAAE6S,MAAM/S,EAAE+S,IAAI,OAAM,CAAE,CAAC,OAAO7S,EAAEwiB,SAAS1iB,EAAE0iB,QAAQxiB,EAAE6nB,SAAS/nB,EAAE+nB,QAAQ7nB,EAAE8nB,OAAOhoB,EAAEgoB,MAAM9nB,EAAEgoB,MAAMloB,EAAEkoB,KAAKhoB,EAAEuQ,QAAQzQ,EAAEyQ,KAAK,GAAGzQ,EAAEksC,iBAAiB/vB,EAAEna,EAAE,CAACF,EAAE,EAAE3B,EAAE6Z,gBAAgBlY,EAAE,EAAE3B,EAAE60B,eAAe7Y,EAAE,EAAE,KAAK,SAASjc,EAAEF,EAAE+B,GAAG,IAAIC,EAAEd,MAAMA,KAAKgM,YAAY,SAAShN,EAAEF,EAAE+B,EAAEC,GAAG,IAAIF,EAAE3B,EAAEgN,UAAUrK,OAAO7B,EAAEd,EAAE,EAAEH,EAAE,OAAOgC,EAAEA,EAAErB,OAAOyM,yBAAyBpN,EAAE+B,GAAGC,EAAE,GAAG,iBAAiBqL,SAAS,mBAAmBA,QAAQC,SAASrM,EAAEoM,QAAQC,SAASpN,EAAEF,EAAE+B,EAAEC,QAAQ,IAAI,IAAII,EAAElC,EAAE4C,OAAO,EAAEV,GAAG,EAAEA,KAAKN,EAAE5B,EAAEkC,MAAMnB,GAAGd,EAAE,EAAE2B,EAAEb,GAAGd,EAAE,EAAE2B,EAAE9B,EAAE+B,EAAEd,GAAGa,EAAE9B,EAAE+B,KAAKd,GAAG,OAAOd,EAAE,GAAGc,GAAGN,OAAOC,eAAeZ,EAAE+B,EAAEd,GAAGA,CAAC,EAAEa,EAAEZ,MAAMA,KAAKqM,SAAS,SAASrN,EAAEF,GAAG,OAAO,SAAS+B,EAAEC,GAAGhC,EAAE+B,EAAEC,EAAE9B,EAAE,CAAC,EAAES,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEisC,iBAAY,EAAO,MAAM9rC,EAAE4B,EAAE,MAAMd,EAAEc,EAAE,MAAMK,EAAEL,EAAE,KAAKgB,EAAEhB,EAAE,MAAMM,EAAE1B,OAAOimC,OAAO,CAAC8S,YAAW,IAAKn3C,EAAE5B,OAAOimC,OAAO,CAAC3d,uBAAsB,EAAG4yB,mBAAkB,EAAG5nC,oBAAmB,EAAGwZ,QAAO,EAAGktB,mBAAkB,EAAGh5B,WAAU,EAAG63B,YAAW,IAAK,IAAI/2C,EAAEzC,EAAEisC,YAAY,cAAc7pC,EAAEqL,WAAW,WAAAzM,CAAYd,EAAEF,EAAE+B,GAAG2L,QAAQxM,KAAKmV,eAAenW,EAAEgB,KAAKsiB,YAAYxjB,EAAEkB,KAAKkZ,gBAAgBrY,EAAEb,KAAKsoB,qBAAoB,EAAGtoB,KAAK84B,gBAAe,EAAG94B,KAAKqqC,QAAQrqC,KAAK8N,SAAS,IAAI/N,EAAE2V,cAAc1V,KAAK2K,OAAO3K,KAAKqqC,QAAQz0B,MAAM5V,KAAKyvD,aAAazvD,KAAK8N,SAAS,IAAI/N,EAAE2V,cAAc1V,KAAK8iC,YAAY9iC,KAAKyvD,aAAa75C,MAAM5V,KAAKmqC,UAAUnqC,KAAK8N,SAAS,IAAI/N,EAAE2V,cAAc1V,KAAKoqC,SAASpqC,KAAKmqC,UAAUv0B,MAAM5V,KAAK0vD,yBAAyB1vD,KAAK8N,SAAS,IAAI/N,EAAE2V,cAAc1V,KAAK0rC,wBAAwB1rC,KAAK0vD,yBAAyB95C,MAAM5V,KAAKu4C,OAAM,EAAGt5C,EAAE+pC,OAAO7nC,GAAGnB,KAAK8S,iBAAgB,EAAG7T,EAAE+pC,OAAO3nC,EAAE,CAAC,KAAA+F,GAAQpH,KAAKu4C,OAAM,EAAGt5C,EAAE+pC,OAAO7nC,GAAGnB,KAAK8S,iBAAgB,EAAG7T,EAAE+pC,OAAO3nC,EAAE,CAAC,gBAAA6R,CAAiBlU,EAAEF,GAAE,GAAI,GAAGkB,KAAKkZ,gBAAgBlG,WAAW28C,aAAa,OAAO,MAAM9uD,EAAEb,KAAKmV,eAAe9S,OAAOvD,GAAGkB,KAAKkZ,gBAAgBlG,WAAWyW,mBAAmB5oB,EAAEmgB,QAAQngB,EAAEiP,OAAO9P,KAAK0vD,yBAAyBp3C,OAAOxZ,GAAGkB,KAAKyvD,aAAan3C,OAAOtY,KAAKsiB,YAAYC,MAAM,iBAAiBvjB,KAAK,IAAKA,EAAEk5C,MAAM,IAAI13C,IAAKxB,GAAGA,EAAE6qB,WAAW,KAAO7pB,KAAKqqC,QAAQ/xB,KAAKtZ,EAAE,CAAC,kBAAAowD,CAAmBpwD,GAAGgB,KAAKkZ,gBAAgBlG,WAAW28C,eAAe3vD,KAAKsiB,YAAYC,MAAM,mBAAmBvjB,KAAK,IAAKA,EAAEk5C,MAAM,IAAI13C,IAAKxB,GAAGA,EAAE6qB,WAAW,KAAO7pB,KAAKmqC,UAAU7xB,KAAKtZ,GAAG,GAAGF,EAAEisC,YAAYxpC,EAAET,EAAE,CAACF,EAAE,EAAEiB,EAAEiX,gBAAgBlY,EAAE,EAAEiB,EAAEipC,aAAalqC,EAAE,EAAEiB,EAAEoY,kBAAkB1Y,EAAE,EAAE,KAAK,CAACvC,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEqf,uBAAkB,EAAO,MAAMrd,EAAED,EAAE,MAAMD,EAAEC,EAAE,MAAM5B,EAAE4B,EAAE,KAAKd,EAAEc,EAAE,MAAM,IAAIK,EAAE,EAAEW,EAAE,EAAE,MAAMV,UAAUlC,EAAEsN,WAAW,eAAIqL,GAAc,OAAO5X,KAAK4vD,aAAanS,QAAQ,CAAC,WAAA39C,GAAc0M,QAAQxM,KAAK4vD,aAAa,IAAI7vD,EAAEo9C,WAAYn+C,GAAGA,GAAGixB,OAAOC,MAAOlwB,KAAK6vD,wBAAwB7vD,KAAK8N,SAAS,IAAIlN,EAAE8U,cAAc1V,KAAKyvB,uBAAuBzvB,KAAK6vD,wBAAwBj6C,MAAM5V,KAAK8vD,qBAAqB9vD,KAAK8N,SAAS,IAAIlN,EAAE8U,cAAc1V,KAAK0vB,oBAAoB1vB,KAAK8vD,qBAAqBl6C,MAAM5V,KAAK8N,UAAS,EAAG7O,EAAEoQ,cAAc,IAAKrP,KAAKoH,SAAU,CAAC,kBAAA2hB,CAAmB/pB,GAAG,GAAGA,EAAEixB,OAAOizB,WAAW,OAAO,MAAMpkD,EAAE,IAAIuC,EAAErC,GAAG,GAAGF,EAAE,CAAC,MAAME,EAAEF,EAAEmxB,OAAOI,UAAU,IAAKvxB,EAAE8E,WAAY9E,EAAEuxB,UAAU,KAAMvxB,IAAIkB,KAAK4vD,aAAat/B,OAAOxxB,IAAIkB,KAAK8vD,qBAAqBx3C,KAAKxZ,GAAGE,EAAE4E,UAAW,GAAG5D,KAAK4vD,aAAavS,OAAOv+C,GAAGkB,KAAK6vD,wBAAwBv3C,KAAKxZ,EAAE,CAAC,OAAOA,CAAC,CAAC,KAAAsI,GAAQ,IAAI,MAAMpI,KAAKgB,KAAK4vD,aAAanS,SAASz+C,EAAE4E,UAAU5D,KAAK4vD,aAAa/kD,OAAO,CAAC,qBAACklD,CAAqB/wD,EAAEF,EAAE+B,GAAG,IAAIC,EAAE,EAAEF,EAAE,EAAE,IAAI,MAAM3B,KAAKe,KAAK4vD,aAAarS,eAAez+C,GAAGgC,EAAE7B,EAAEyiB,QAAQ3f,GAAG,EAAEnB,EAAEE,GAAG7B,EAAEyiB,QAAQlP,OAAO,GAAGxT,GAAG8B,GAAG9B,EAAE4B,KAAKC,IAAI5B,EAAEyiB,QAAQsO,OAAO,YAAYnvB,WAAW5B,EAAE,CAAC,uBAAAk5B,CAAwBn5B,EAAEF,EAAE+B,EAAEC,GAAGd,KAAK4vD,aAAapS,aAAa1+C,EAAGA,IAAIoC,EAAEpC,EAAE4iB,QAAQ3f,GAAG,EAAEF,EAAEX,GAAGpC,EAAE4iB,QAAQlP,OAAO,GAAGxT,GAAGkC,GAAGlC,EAAE6C,KAAKhB,IAAI/B,EAAE4iB,QAAQsO,OAAO,YAAYnvB,IAAIC,EAAEhC,EAAG,EAAE,EAAEA,EAAEqf,kBAAkBhd,EAAE,MAAME,UAAUpC,EAAEsN,WAAW,cAAI22C,GAAa,OAAOljD,KAAK2tB,WAAW,CAAC,sBAAI6M,GAAqB,OAAO,OAAOx6B,KAAKgwD,YAAYhwD,KAAK0hB,QAAQuL,gBAAgBjtB,KAAKgwD,UAAUlvD,EAAEsR,IAAI8N,QAAQlgB,KAAK0hB,QAAQuL,iBAAiBjtB,KAAKgwD,eAAU,GAAQhwD,KAAKgwD,SAAS,CAAC,sBAAIt1B,GAAqB,OAAO,OAAO16B,KAAKiwD,YAAYjwD,KAAK0hB,QAAQwuC,gBAAgBlwD,KAAKiwD,UAAUnvD,EAAEsR,IAAI8N,QAAQlgB,KAAK0hB,QAAQwuC,iBAAiBlwD,KAAKiwD,eAAU,GAAQjwD,KAAKiwD,SAAS,CAAC,WAAAnwD,CAAYd,GAAGwN,QAAQxM,KAAK0hB,QAAQ1iB,EAAEgB,KAAKowB,gBAAgBpwB,KAAK8N,SAAS,IAAIlN,EAAE8U,cAAc1V,KAAKqO,SAASrO,KAAKowB,gBAAgBxa,MAAM5V,KAAKojD,WAAWpjD,KAAK8N,SAAS,IAAIlN,EAAE8U,cAAc1V,KAAKqwB,UAAUrwB,KAAKojD,WAAWxtC,MAAM5V,KAAKgwD,UAAU,KAAKhwD,KAAKiwD,UAAU,KAAKjwD,KAAKiwB,OAAOjxB,EAAEixB,OAAOjwB,KAAK0hB,QAAQwP,uBAAuBlxB,KAAK0hB,QAAQwP,qBAAqBtG,WAAW5qB,KAAK0hB,QAAQwP,qBAAqBtG,SAAS,OAAO,CAAC,OAAAhnB,GAAU5D,KAAKojD,WAAW9qC,OAAO9L,MAAM5I,SAAS,IAAI,KAAK,CAAC5E,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE4rC,qBAAqB5rC,EAAEqxD,uBAAkB,EAAO,MAAMrvD,EAAED,EAAE,MAAMD,EAAEC,EAAE,MAAM,MAAM5B,EAAE,WAAAa,IAAed,GAAGgB,KAAKowD,SAAS,IAAIv5C,IAAI,IAAI,MAAM/X,EAAE+B,KAAK7B,EAAEgB,KAAKgQ,IAAIlR,EAAE+B,EAAE,CAAC,GAAAmP,CAAIhR,EAAEF,GAAG,MAAM+B,EAAEb,KAAKowD,SAASvgD,IAAI7Q,GAAG,OAAOgB,KAAKowD,SAASpgD,IAAIhR,EAAEF,GAAG+B,CAAC,CAAC,OAAA0J,CAAQvL,GAAG,IAAI,MAAMF,EAAE+B,KAAKb,KAAKowD,SAASr5C,UAAU/X,EAAEF,EAAE+B,EAAE,CAAC,GAAAuW,CAAIpY,GAAG,OAAOgB,KAAKowD,SAASh5C,IAAIpY,EAAE,CAAC,GAAA6Q,CAAI7Q,GAAG,OAAOgB,KAAKowD,SAASvgD,IAAI7Q,EAAE,EAAEF,EAAEqxD,kBAAkBlxD,EAAEH,EAAE4rC,qBAAqB,MAAM,WAAA5qC,GAAcE,KAAKqwD,UAAU,IAAIpxD,EAAEe,KAAKqwD,UAAUrgD,IAAIlP,EAAE4R,sBAAsB1S,KAAK,CAAC,UAAAoe,CAAWpf,EAAEF,GAAGkB,KAAKqwD,UAAUrgD,IAAIhR,EAAEF,EAAE,CAAC,UAAAwxD,CAAWtxD,GAAG,OAAOgB,KAAKqwD,UAAUxgD,IAAI7Q,EAAE,CAAC,cAAAkf,CAAelf,KAAKF,GAAG,MAAM+B,GAAE,EAAGD,EAAE2vD,wBAAwBvxD,GAAGwxD,KAAK,CAAExxD,EAAEF,IAAIE,EAAE2C,MAAM7C,EAAE6C,OAAQb,EAAE,GAAG,IAAI,MAAMhC,KAAK+B,EAAE,CAAC,MAAMA,EAAEb,KAAKqwD,UAAUxgD,IAAI/Q,EAAE6/B,IAAI,IAAI99B,EAAE,MAAM,IAAIiL,MAAM,oBAAoB9M,EAAEyxD,mCAAmC3xD,EAAE6/B,OAAO79B,EAAEoB,KAAKrB,EAAE,CAAC,MAAM5B,EAAE4B,EAAEe,OAAO,EAAEf,EAAE,GAAGc,MAAM7C,EAAE8C,OAAO,GAAG9C,EAAE8C,SAAS3C,EAAE,MAAM,IAAI6M,MAAM,gDAAgD9M,EAAEyxD,oBAAoBxxD,EAAE,oBAAoBH,EAAE8C,2BAA2B,OAAO,IAAI5C,KAAK,IAAIF,KAAKgC,GAAG,IAAI,KAAK,SAAS9B,EAAEF,EAAE+B,GAAG,IAAIC,EAAEd,MAAMA,KAAKgM,YAAY,SAAShN,EAAEF,EAAE+B,EAAEC,GAAG,IAAIF,EAAE3B,EAAEgN,UAAUrK,OAAO7B,EAAEd,EAAE,EAAEH,EAAE,OAAOgC,EAAEA,EAAErB,OAAOyM,yBAAyBpN,EAAE+B,GAAGC,EAAE,GAAG,iBAAiBqL,SAAS,mBAAmBA,QAAQC,SAASrM,EAAEoM,QAAQC,SAASpN,EAAEF,EAAE+B,EAAEC,QAAQ,IAAI,IAAII,EAAElC,EAAE4C,OAAO,EAAEV,GAAG,EAAEA,KAAKN,EAAE5B,EAAEkC,MAAMnB,GAAGd,EAAE,EAAE2B,EAAEb,GAAGd,EAAE,EAAE2B,EAAE9B,EAAE+B,EAAEd,GAAGa,EAAE9B,EAAE+B,KAAKd,GAAG,OAAOd,EAAE,GAAGc,GAAGN,OAAOC,eAAeZ,EAAE+B,EAAEd,GAAGA,CAAC,EAAEa,EAAEZ,MAAMA,KAAKqM,SAAS,SAASrN,EAAEF,GAAG,OAAO,SAAS+B,EAAEC,GAAGhC,EAAE+B,EAAEC,EAAE9B,EAAE,CAAC,EAAES,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE4xD,UAAU5xD,EAAE6xD,eAAe7xD,EAAE+rC,gBAAW,EAAO,MAAM5rC,EAAE4B,EAAE,KAAKd,EAAEc,EAAE,MAAMK,EAAE,CAAC0vD,MAAM7wD,EAAEmsC,aAAa2kB,MAAMtuC,MAAMxiB,EAAEmsC,aAAa8L,MAAM3yC,KAAKtF,EAAEmsC,aAAa4kB,KAAKttD,KAAKzD,EAAEmsC,aAAaC,KAAK5iC,MAAMxJ,EAAEmsC,aAAa6kB,MAAMC,IAAIjxD,EAAEmsC,aAAa+kB,KAAK,IAAIpvD,EAAEV,EAAErC,EAAE+rC,WAAW,cAAc5rC,EAAEsN,WAAW,YAAIkb,GAAW,OAAOznB,KAAKkxD,SAAS,CAAC,WAAApxD,CAAYd,GAAGwN,QAAQxM,KAAKkZ,gBAAgBla,EAAEgB,KAAKkxD,UAAUnxD,EAAEmsC,aAAa+kB,IAAIjxD,KAAKmxD,kBAAkBnxD,KAAK8N,SAAS9N,KAAKkZ,gBAAgB4M,uBAAuB,WAAW,IAAK9lB,KAAKmxD,oBAAqBtvD,EAAE7B,IAAI,CAAC,eAAAmxD,GAAkBnxD,KAAKkxD,UAAUhwD,EAAElB,KAAKkZ,gBAAgBlG,WAAWyU,SAAS,CAAC,uBAAA2pC,CAAwBpyD,GAAG,IAAI,IAAIF,EAAE,EAAEA,EAAEE,EAAE4C,OAAO9C,IAAI,mBAAmBE,EAAEF,KAAKE,EAAEF,GAAGE,EAAEF,KAAK,CAAC,IAAAuyD,CAAKryD,EAAEF,EAAE+B,GAAGb,KAAKoxD,wBAAwBvwD,GAAG7B,EAAEwuC,KAAKjqC,SAASvD,KAAKkZ,gBAAgBwI,QAAQ4vC,OAAO,GAAG,cAAcxyD,KAAK+B,EAAE,CAAC,KAAA+vD,CAAM5xD,KAAKF,GAAGkB,KAAKkxD,WAAWnxD,EAAEmsC,aAAa2kB,OAAO7wD,KAAKqxD,KAAKrxD,KAAKkZ,gBAAgBwI,QAAQ4vC,QAAQV,MAAM3iD,KAAKjO,KAAKkZ,gBAAgBwI,QAAQ4vC,SAAS/tD,QAAQuD,IAAI9H,EAAEF,EAAE,CAAC,KAAAyjB,CAAMvjB,KAAKF,GAAGkB,KAAKkxD,WAAWnxD,EAAEmsC,aAAa8L,OAAOh4C,KAAKqxD,KAAKrxD,KAAKkZ,gBAAgBwI,QAAQ4vC,QAAQ/uC,MAAMtU,KAAKjO,KAAKkZ,gBAAgBwI,QAAQ4vC,SAAS/tD,QAAQuD,IAAI9H,EAAEF,EAAE,CAAC,IAAAuG,CAAKrG,KAAKF,GAAGkB,KAAKkxD,WAAWnxD,EAAEmsC,aAAa4kB,MAAM9wD,KAAKqxD,KAAKrxD,KAAKkZ,gBAAgBwI,QAAQ4vC,QAAQjsD,KAAK4I,KAAKjO,KAAKkZ,gBAAgBwI,QAAQ4vC,SAAS/tD,QAAQ8B,KAAKrG,EAAEF,EAAE,CAAC,IAAA0E,CAAKxE,KAAKF,GAAGkB,KAAKkxD,WAAWnxD,EAAEmsC,aAAaC,MAAMnsC,KAAKqxD,KAAKrxD,KAAKkZ,gBAAgBwI,QAAQ4vC,QAAQ9tD,KAAKyK,KAAKjO,KAAKkZ,gBAAgBwI,QAAQ4vC,SAAS/tD,QAAQC,KAAKxE,EAAEF,EAAE,CAAC,KAAAyK,CAAMvK,KAAKF,GAAGkB,KAAKkxD,WAAWnxD,EAAEmsC,aAAa6kB,OAAO/wD,KAAKqxD,KAAKrxD,KAAKkZ,gBAAgBwI,QAAQ4vC,QAAQ/nD,MAAM0E,KAAKjO,KAAKkZ,gBAAgBwI,QAAQ4vC,SAAS/tD,QAAQgG,MAAMvK,EAAEF,EAAE,GAAGA,EAAE+rC,WAAW1pC,EAAEL,EAAE,CAACF,EAAE,EAAEb,EAAEka,kBAAkB9Y,GAAGrC,EAAE6xD,eAAe,SAAS3xD,GAAG6C,EAAE7C,CAAC,EAAEF,EAAE4xD,UAAU,SAAS1xD,EAAEF,EAAE+B,GAAG,GAAG,mBAAmBA,EAAElB,MAAM,MAAM,IAAImM,MAAM,iBAAiB,MAAMhL,EAAED,EAAElB,MAAMkB,EAAElB,MAAM,YAAYX,GAAG,GAAG6C,EAAE4lB,WAAW1nB,EAAEmsC,aAAa2kB,MAAM,OAAO/vD,EAAEsoD,MAAMppD,KAAKhB,GAAG6C,EAAE+uD,MAAM,iBAAiB9vD,EAAE2vD,QAAQzxD,EAAEwB,IAAKxB,GAAGuG,KAAKC,UAAUxG,IAAKsC,KAAK,UAAU,MAAMxC,EAAEgC,EAAEsoD,MAAMppD,KAAKhB,GAAG,OAAO6C,EAAE+uD,MAAM,iBAAiB9vD,EAAE2vD,cAAc3xD,GAAGA,CAAC,CAAC,CAAC,EAAE,KAAK,CAACE,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE6rC,eAAe7rC,EAAEyyD,qBAAgB,EAAO,MAAMzwD,EAAED,EAAE,MAAMD,EAAEC,EAAE,KAAK5B,EAAE4B,EAAE,MAAM/B,EAAEyyD,gBAAgB,CAACxoD,KAAK,GAAGlD,KAAK,GAAGkC,aAAY,EAAGD,YAAY,QAAQquB,YAAY,EAAEgB,oBAAoB,UAAUq6B,cAAa,EAAGj4B,4BAA2B,EAAG7W,iBAAiB,KAAKmM,mBAAmB,MAAMC,sBAAsB,EAAE7mB,WAAW,kCAAkCC,SAAS,GAAGstB,WAAW,SAASC,eAAe,OAAOxiB,0BAAyB,EAAGgO,WAAW,EAAE2U,cAAc,EAAExc,YAAY,KAAKqO,SAAS,OAAO6pC,OAAO,KAAK1Q,WAAW,IAAIn3B,mBAAkB,EAAGsF,kBAAkB,EAAElJ,kBAAiB,EAAGiI,qBAAqB,EAAEvE,iBAAgB,EAAGua,+BAA8B,EAAGjJ,qBAAqB,EAAE80B,cAAa,EAAG8B,kBAAiB,EAAGC,mBAAkB,EAAG5P,aAAa,EAAExb,MAAM,CAAC,EAAEqrB,0BAAyB,EAAGhwC,sBAAsB1iB,EAAEqqB,MAAMkrB,cAAc,CAAC,EAAExsC,aAAY,EAAG8kC,WAAW,CAAC,EAAE1H,cAAc,eAAeT,qBAAoB,EAAG6U,YAAW,EAAGgB,SAAS,QAAQtvB,cAAa,EAAGnF,mBAAmB,GAAG,MAAMhmB,EAAE,CAAC,SAAS,OAAO,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,MAAM,OAAO,MAAMmB,UAAUN,EAAE2L,WAAW,WAAAzM,CAAYd,GAAGwN,QAAQxM,KAAK4xD,gBAAgB5xD,KAAK8N,SAAS,IAAIhN,EAAE4U,cAAc1V,KAAK40B,eAAe50B,KAAK4xD,gBAAgBh8C,MAAM,MAAM/U,EAAE,IAAI/B,EAAEyyD,iBAAiB,IAAI,MAAMzyD,KAAKE,EAAE,GAAGF,KAAK+B,EAAE,IAAI,MAAMC,EAAE9B,EAAEF,GAAG+B,EAAE/B,GAAGkB,KAAK6xD,2BAA2B/yD,EAAEgC,EAAE,CAAC,MAAM9B,GAAGuE,QAAQgG,MAAMvK,EAAE,CAACgB,KAAKgT,WAAWnS,EAAEb,KAAK0hB,QAAQ,IAAI7gB,GAAGb,KAAK8xD,gBAAgB9xD,KAAK8N,UAAS,EAAGlN,EAAEyO,cAAc,KAAMrP,KAAKgT,WAAWoG,YAAY,KAAKpZ,KAAKgT,WAAW0P,iBAAiB,IAAK,GAAG,CAAC,sBAAAoD,CAAuB9mB,EAAEF,GAAG,OAAOkB,KAAK40B,eAAgB/zB,IAAIA,IAAI7B,GAAGF,EAAEkB,KAAKgT,WAAWhU,GAAI,EAAE,CAAC,sBAAAy+B,CAAuBz+B,EAAEF,GAAG,OAAOkB,KAAK40B,eAAgB/zB,KAAK,IAAI7B,EAAE0D,QAAQ7B,IAAI/B,GAAI,EAAE,CAAC,aAAAgzD,GAAgB,MAAM9yD,EAAEA,IAAI,KAAKA,KAAKF,EAAEyyD,iBAAiB,MAAM,IAAIzlD,MAAM,uBAAuB9M,MAAM,OAAOgB,KAAKgT,WAAWhU,IAAI6B,EAAE,CAAC7B,EAAE6B,KAAK,KAAK7B,KAAKF,EAAEyyD,iBAAiB,MAAM,IAAIzlD,MAAM,uBAAuB9M,MAAM6B,EAAEb,KAAK6xD,2BAA2B7yD,EAAE6B,GAAGb,KAAKgT,WAAWhU,KAAK6B,IAAIb,KAAKgT,WAAWhU,GAAG6B,EAAEb,KAAK4xD,gBAAgBt5C,KAAKtZ,KAAK,IAAI,MAAMF,KAAKkB,KAAKgT,WAAW,CAAC,MAAMlS,EAAE,CAAC+O,IAAI7Q,EAAEiP,KAAKjO,KAAKlB,GAAGkR,IAAInP,EAAEoN,KAAKjO,KAAKlB,IAAIW,OAAOC,eAAeM,KAAK0hB,QAAQ5iB,EAAEgC,EAAE,CAAC,CAAC,0BAAA+wD,CAA2B7yD,EAAE6B,GAAG,OAAO7B,GAAG,IAAI,cAAc,GAAG6B,IAAIA,EAAE/B,EAAEyyD,gBAAgBvyD,KAAK,SAASA,GAAG,MAAM,UAAUA,GAAG,cAAcA,GAAG,QAAQA,CAAC,CAAzD,CAA2D6B,GAAG,MAAM,IAAIiL,MAAM,IAAIjL,+BAA+B7B,KAAK,MAAM,IAAI,gBAAgB6B,IAAIA,EAAE/B,EAAEyyD,gBAAgBvyD,IAAI,MAAM,IAAI,aAAa,IAAI,iBAAiB,GAAG,iBAAiB6B,GAAG,GAAGA,GAAGA,GAAG,IAAI,MAAMA,EAAEd,EAAEga,SAASlZ,GAAGA,EAAE/B,EAAEyyD,gBAAgBvyD,GAAG,MAAM,IAAI,cAAc6B,EAAE+Z,KAAKgU,MAAM/tB,GAAG,IAAI,aAAa,IAAI,eAAe,GAAGA,EAAE,EAAE,MAAM,IAAIiL,MAAM,GAAG9M,mCAAmC6B,KAAK,MAAM,IAAI,uBAAuBA,EAAE+Z,KAAKG,IAAI,EAAEH,KAAKC,IAAI,GAAGD,KAAK2S,MAAM,GAAG1sB,GAAG,KAAK,MAAM,IAAI,aAAa,IAAIA,EAAE+Z,KAAKC,IAAIha,EAAE,aAAa,EAAE,MAAM,IAAIiL,MAAM,GAAG9M,mCAAmC6B,KAAK,MAAM,IAAI,wBAAwB,IAAI,oBAAoB,GAAGA,GAAG,EAAE,MAAM,IAAIiL,MAAM,GAAG9M,+CAA+C6B,KAAK,MAAM,IAAI,OAAO,IAAI,OAAO,IAAIA,GAAG,IAAIA,EAAE,MAAM,IAAIiL,MAAM,GAAG9M,6BAA6B6B,KAAK,MAAM,IAAI,aAAaA,EAAEA,GAAG,CAAC,EAAE,OAAOA,CAAC,EAAE/B,EAAE6rC,eAAezpC,GAAG,KAAK,SAASlC,EAAEF,EAAE+B,GAAG,IAAIC,EAAEd,MAAMA,KAAKgM,YAAY,SAAShN,EAAEF,EAAE+B,EAAEC,GAAG,IAAIF,EAAE3B,EAAEgN,UAAUrK,OAAO7B,EAAEd,EAAE,EAAEH,EAAE,OAAOgC,EAAEA,EAAErB,OAAOyM,yBAAyBpN,EAAE+B,GAAGC,EAAE,GAAG,iBAAiBqL,SAAS,mBAAmBA,QAAQC,SAASrM,EAAEoM,QAAQC,SAASpN,EAAEF,EAAE+B,EAAEC,QAAQ,IAAI,IAAII,EAAElC,EAAE4C,OAAO,EAAEV,GAAG,EAAEA,KAAKN,EAAE5B,EAAEkC,MAAMnB,GAAGd,EAAE,EAAE2B,EAAEb,GAAGd,EAAE,EAAE2B,EAAE9B,EAAE+B,EAAEd,GAAGa,EAAE9B,EAAE+B,KAAKd,GAAG,OAAOd,EAAE,GAAGc,GAAGN,OAAOC,eAAeZ,EAAE+B,EAAEd,GAAGA,CAAC,EAAEa,EAAEZ,MAAMA,KAAKqM,SAAS,SAASrN,EAAEF,GAAG,OAAO,SAAS+B,EAAEC,GAAGhC,EAAE+B,EAAEC,EAAE9B,EAAE,CAAC,EAAES,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE0sC,oBAAe,EAAO,MAAMvsC,EAAE4B,EAAE,MAAM,IAAId,EAAEjB,EAAE0sC,eAAe,MAAM,WAAA1rC,CAAYd,GAAGgB,KAAKmV,eAAenW,EAAEgB,KAAKmjD,QAAQ,EAAEnjD,KAAK+xD,eAAe,IAAIl7C,IAAI7W,KAAKgyD,cAAc,IAAIn7C,GAAG,CAAC,YAAAolC,CAAaj9C,GAAG,MAAMF,EAAEkB,KAAKmV,eAAe9S,OAAO,QAAG,IAASrD,EAAE2/B,GAAG,CAAC,MAAM99B,EAAE/B,EAAEgqB,UAAUhqB,EAAEkiB,MAAMliB,EAAEkD,GAAGlB,EAAE,CAACsF,KAAKpH,EAAE2/B,GAAG3+B,KAAKmjD,UAAUxzC,MAAM,CAAC9O,IAAI,OAAOA,EAAEwvB,UAAU,IAAKrwB,KAAKiyD,sBAAsBnxD,EAAED,IAAKb,KAAKgyD,cAAchiD,IAAIlP,EAAE69B,GAAG79B,GAAGA,EAAE69B,EAAE,CAAC,MAAM99B,EAAE7B,EAAE8B,EAAEd,KAAKkyD,eAAerxD,GAAGD,EAAEZ,KAAK+xD,eAAeliD,IAAI/O,GAAG,GAAGF,EAAE,OAAOZ,KAAKg5C,cAAcp4C,EAAE+9B,GAAG7/B,EAAEkiB,MAAMliB,EAAEkD,GAAGpB,EAAE+9B,GAAG,MAAM1/B,EAAEH,EAAEgqB,UAAUhqB,EAAEkiB,MAAMliB,EAAEkD,GAAGjC,EAAE,CAAC4+B,GAAG3+B,KAAKmjD,UAAU34C,IAAIxK,KAAKkyD,eAAerxD,GAAGuF,KAAKvF,EAAE8O,MAAM,CAAC1Q,IAAI,OAAOA,EAAEoxB,UAAU,IAAKrwB,KAAKiyD,sBAAsBlyD,EAAEd,IAAKe,KAAK+xD,eAAe/hD,IAAIjQ,EAAEyK,IAAIzK,GAAGC,KAAKgyD,cAAchiD,IAAIjQ,EAAE4+B,GAAG5+B,GAAGA,EAAE4+B,EAAE,CAAC,aAAAqa,CAAch6C,EAAEF,GAAG,MAAM+B,EAAEb,KAAKgyD,cAAcniD,IAAI7Q,GAAG,GAAG6B,GAAGA,EAAE8O,MAAMwiD,MAAOnzD,GAAGA,EAAEkxB,OAAOpxB,GAAI,CAAC,MAAME,EAAEgB,KAAKmV,eAAe9S,OAAOymB,UAAUhqB,GAAG+B,EAAE8O,MAAMzN,KAAKlD,GAAGA,EAAEqxB,UAAU,IAAKrwB,KAAKiyD,sBAAsBpxD,EAAE7B,GAAI,CAAC,CAAC,WAAA4a,CAAY5a,GAAG,OAAOgB,KAAKgyD,cAAcniD,IAAI7Q,IAAIoH,IAAI,CAAC,cAAA8rD,CAAelzD,GAAG,MAAM,GAAGA,EAAE2/B,OAAO3/B,EAAE6a,KAAK,CAAC,qBAAAo4C,CAAsBjzD,EAAEF,GAAG,MAAM+B,EAAE7B,EAAE2Q,MAAMjN,QAAQ5D,IAAI,IAAI+B,IAAI7B,EAAE2Q,MAAM0H,OAAOxW,EAAE,GAAG,IAAI7B,EAAE2Q,MAAM/N,cAAS,IAAS5C,EAAEoH,KAAKu4B,IAAI3+B,KAAK+xD,eAAezhC,OAAOtxB,EAAEwL,KAAKxK,KAAKgyD,cAAc1hC,OAAOtxB,EAAE2/B,KAAK,GAAG7/B,EAAE0sC,eAAezrC,EAAEe,EAAE,CAACF,EAAE,EAAE3B,EAAE6Z,iBAAiB/Y,EAAE,EAAE,KAAK,CAACf,EAAEF,KAAKW,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAE0mC,gBAAgB1mC,EAAEyxD,uBAAuBzxD,EAAEszD,qBAAgB,EAAO,MAAMvxD,EAAE,YAAYC,EAAE,kBAAkBhC,EAAEszD,gBAAgB,IAAIv7C,IAAI/X,EAAEyxD,uBAAuB,SAASvxD,GAAG,OAAOA,EAAE8B,IAAI,EAAE,EAAEhC,EAAE0mC,gBAAgB,SAASxmC,GAAG,GAAGF,EAAEszD,gBAAgBh7C,IAAIpY,GAAG,OAAOF,EAAEszD,gBAAgBviD,IAAI7Q,GAAG,MAAM4B,EAAE,SAAS5B,EAAEF,EAAEG,GAAG,GAAG,IAAIgN,UAAUrK,OAAO,MAAM,IAAIkK,MAAM,qEAAqE,SAAS9M,EAAEF,EAAE8B,GAAG9B,EAAE+B,KAAK/B,EAAEA,EAAEgC,GAAGoB,KAAK,CAACy8B,GAAG3/B,EAAE2C,MAAMf,KAAK9B,EAAEgC,GAAG,CAAC,CAAC69B,GAAG3/B,EAAE2C,MAAMf,IAAI9B,EAAE+B,GAAG/B,EAAE,CAAjF,CAAmF8B,EAAE5B,EAAEC,EAAE,EAAE,OAAO2B,EAAEgP,SAAS,IAAI5Q,EAAEF,EAAEszD,gBAAgBpiD,IAAIhR,EAAE4B,GAAGA,CAAC,GAAG,KAAK,CAAC5B,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEuf,mBAAmBvf,EAAEssC,gBAAgBtsC,EAAEob,gBAAgBpb,EAAEmb,gBAAgBnb,EAAEgsC,YAAYhsC,EAAEotC,aAAaptC,EAAE4T,sBAAsB5T,EAAEysC,gBAAgBzsC,EAAEg1B,aAAah1B,EAAEmsC,kBAAkBnsC,EAAEga,oBAAe,EAAO,MAAMhY,EAAED,EAAE,MAAM,IAAID,EAAE9B,EAAEga,gBAAe,EAAGhY,EAAE0kC,iBAAiB,iBAAiB1mC,EAAEmsC,mBAAkB,EAAGnqC,EAAE0kC,iBAAiB,oBAAoB1mC,EAAEg1B,cAAa,EAAGhzB,EAAE0kC,iBAAiB,eAAe1mC,EAAEysC,iBAAgB,EAAGzqC,EAAE0kC,iBAAiB,kBAAkB1mC,EAAE4T,uBAAsB,EAAG5R,EAAE0kC,iBAAiB,wBAAwB,SAASxmC,GAAGA,EAAEA,EAAE6xD,MAAM,GAAG,QAAQ7xD,EAAEA,EAAEg5C,MAAM,GAAG,QAAQh5C,EAAEA,EAAE8xD,KAAK,GAAG,OAAO9xD,EAAEA,EAAEmtC,KAAK,GAAG,OAAOntC,EAAEA,EAAE+xD,MAAM,GAAG,QAAQ/xD,EAAEA,EAAEiyD,IAAI,GAAG,KAAK,CAAjI,CAAmIrwD,IAAI9B,EAAEotC,aAAatrC,EAAE,CAAC,IAAI9B,EAAEgsC,aAAY,EAAGhqC,EAAE0kC,iBAAiB,cAAc1mC,EAAEmb,iBAAgB,EAAGnZ,EAAE0kC,iBAAiB,kBAAkB1mC,EAAEob,iBAAgB,EAAGpZ,EAAE0kC,iBAAiB,kBAAkB1mC,EAAEssC,iBAAgB,EAAGtqC,EAAE0kC,iBAAiB,kBAAkB1mC,EAAEuf,oBAAmB,EAAGvd,EAAE0kC,iBAAiB,sBAAsB,KAAK,CAACxmC,EAAEF,EAAE+B,KAAKpB,OAAOC,eAAeZ,EAAE,aAAa,CAACa,OAAM,IAAKb,EAAEqsC,oBAAe,EAAO,MAAMrqC,EAAED,EAAE,MAAMD,EAAEC,EAAE,KAAK,MAAM5B,EAAE,wBAAO65C,CAAkB95C,GAAG,SAAW,EAAEA,EAAE,CAAC,mBAAO65C,CAAa75C,GAAG,OAAOA,GAAG,EAAE,CAAC,CAAC,sBAAOqzD,CAAgBrzD,GAAG,OAAOA,GAAG,CAAC,CAAC,0BAAOmoD,CAAoBnoD,EAAEF,EAAE+B,GAAE,GAAI,OAAO,SAAS7B,IAAI,GAAG,EAAEF,IAAI,GAAG+B,EAAE,EAAE,EAAE,CAAC,WAAAf,GAAcE,KAAKsyD,WAAW7yD,OAAOwF,OAAO,MAAMjF,KAAK+nD,QAAQ,GAAG/nD,KAAKuyD,UAAU,IAAIzxD,EAAE4U,aAAa1V,KAAKwyD,SAASxyD,KAAKuyD,UAAU38C,MAAM,MAAM5W,EAAE,IAAI4B,EAAEomD,UAAUhnD,KAAK8N,SAAS9O,GAAGgB,KAAK+nD,QAAQ/oD,EAAEioD,QAAQjnD,KAAKyyD,gBAAgBzzD,CAAC,CAAC,OAAA4E,GAAU5D,KAAKuyD,UAAU3uD,SAAS,CAAC,YAAI+pD,GAAW,OAAOluD,OAAO6K,KAAKtK,KAAKsyD,WAAW,CAAC,iBAAI1E,GAAgB,OAAO5tD,KAAK+nD,OAAO,CAAC,iBAAI6F,CAAc5uD,GAAG,IAAIgB,KAAKsyD,WAAWtzD,GAAG,MAAM,IAAI8M,MAAM,4BAA4B9M,MAAMgB,KAAK+nD,QAAQ/oD,EAAEgB,KAAKyyD,gBAAgBzyD,KAAKsyD,WAAWtzD,GAAGgB,KAAKuyD,UAAUj6C,KAAKtZ,EAAE,CAAC,QAAA8O,CAAS9O,GAAGgB,KAAKsyD,WAAWtzD,EAAEioD,SAASjoD,CAAC,CAAC,OAAAkoD,CAAQloD,GAAG,OAAOgB,KAAKyyD,gBAAgBvL,QAAQloD,EAAE,CAAC,kBAAA0zD,CAAmB1zD,GAAG,IAAIF,EAAE,EAAE+B,EAAE,EAAE,MAAMC,EAAE9B,EAAE4C,OAAO,IAAI,IAAIhB,EAAE,EAAEA,EAAEE,IAAIF,EAAE,CAAC,IAAIb,EAAEf,EAAE6qB,WAAWjpB,GAAG,GAAG,OAAOb,GAAGA,GAAG,MAAM,CAAC,KAAKa,GAAGE,EAAE,OAAOhC,EAAEkB,KAAKknD,QAAQnnD,GAAG,MAAMc,EAAE7B,EAAE6qB,WAAWjpB,GAAG,OAAOC,GAAGA,GAAG,MAAMd,EAAE,MAAMA,EAAE,OAAOc,EAAE,MAAM,MAAM/B,GAAGkB,KAAKknD,QAAQrmD,EAAE,CAAC,MAAMK,EAAElB,KAAK44C,eAAe74C,EAAEc,GAAG,IAAIgB,EAAE5C,EAAE45C,aAAa33C,GAAGjC,EAAE65C,kBAAkB53C,KAAKW,GAAG5C,EAAE45C,aAAah4C,IAAI/B,GAAG+C,EAAEhB,EAAEK,CAAC,CAAC,OAAOpC,CAAC,CAAC,cAAA85C,CAAe55C,EAAEF,GAAG,OAAOkB,KAAKyyD,gBAAgB7Z,eAAe55C,EAAEF,EAAE,EAAEA,EAAEqsC,eAAelsC,IAAIH,EAAE,CAAC,EAAE,SAAS+B,EAAEC,GAAG,IAAIF,EAAE9B,EAAEgC,GAAG,QAAG,IAASF,EAAE,OAAOA,EAAEoC,QAAQ,IAAI/D,EAAEH,EAAEgC,GAAG,CAACkC,QAAQ,CAAC,GAAG,OAAOhE,EAAE8B,GAAG0sC,KAAKvuC,EAAE+D,QAAQ/D,EAAEA,EAAE+D,QAAQnC,GAAG5B,EAAE+D,OAAO,CAAC,IAAIlC,EAAE,CAAC,EAAE,MAAM,MAAM,IAAI9B,EAAE8B,EAAErB,OAAOC,eAAeV,EAAE,aAAa,CAACW,OAAM,IAAKX,EAAE6I,cAAS,EAAO,MAAM/I,EAAE+B,EAAE,MAAMD,EAAEC,EAAE,MAAM5B,EAAE4B,EAAE,KAAKd,EAAEc,EAAE,MAAMK,EAAEL,EAAE,MAAMgB,EAAEhB,EAAE,MAAMM,EAAEN,EAAE,MAAMQ,EAAE,CAAC,OAAO,QAAQ,MAAME,UAAUtC,EAAEsN,WAAW,WAAAzM,CAAYd,GAAGwN,QAAQxM,KAAKgtD,MAAMhtD,KAAK8N,SAAS,IAAIlN,EAAEiH,SAAS7I,IAAIgB,KAAK2yD,cAAc3yD,KAAK8N,SAAS,IAAI/N,EAAEosD,cAAcnsD,KAAK4yD,eAAe,IAAI5yD,KAAKgtD,MAAMtrC,SAAS,MAAM5iB,EAAEE,GAAGgB,KAAKgtD,MAAMtrC,QAAQ1iB,GAAG6B,EAAE,CAAC7B,EAAEF,KAAKkB,KAAK6yD,sBAAsB7zD,GAAGgB,KAAKgtD,MAAMtrC,QAAQ1iB,GAAGF,GAAG,IAAI,MAAME,KAAKgB,KAAKgtD,MAAMtrC,QAAQ,CAAC,MAAM5gB,EAAE,CAAC+O,IAAI/Q,EAAEmP,KAAKjO,KAAKhB,GAAGgR,IAAInP,EAAEoN,KAAKjO,KAAKhB,IAAIS,OAAOC,eAAeM,KAAK4yD,eAAe5zD,EAAE8B,EAAE,CAAC,CAAC,qBAAA+xD,CAAsB7zD,GAAG,GAAGqC,EAAE0Y,SAAS/a,GAAG,MAAM,IAAI8M,MAAM,WAAW9M,wCAAwC,CAAC,iBAAA8zD,GAAoB,IAAI9yD,KAAKgtD,MAAM1rC,eAAetO,WAAWy+C,iBAAiB,MAAM,IAAI3lD,MAAM,uEAAuE,CAAC,UAAIgS,GAAS,OAAO9d,KAAKgtD,MAAMlvC,MAAM,CAAC,YAAIssB,GAAW,OAAOpqC,KAAKgtD,MAAM5iB,QAAQ,CAAC,gBAAI9sB,GAAe,OAAOtd,KAAKgtD,MAAM1vC,YAAY,CAAC,UAAI3S,GAAS,OAAO3K,KAAKgtD,MAAMriD,MAAM,CAAC,SAAIkE,GAAQ,OAAO7O,KAAKgtD,MAAMn+C,KAAK,CAAC,cAAIH,GAAa,OAAO1O,KAAKgtD,MAAMt+C,UAAU,CAAC,YAAIL,GAAW,OAAOrO,KAAKgtD,MAAM3+C,QAAQ,CAAC,YAAItI,GAAW,OAAO/F,KAAKgtD,MAAMjnD,QAAQ,CAAC,YAAIwI,GAAW,OAAOvO,KAAKgtD,MAAMz+C,QAAQ,CAAC,qBAAImP,GAAoB,OAAO1d,KAAKgtD,MAAMtvC,iBAAiB,CAAC,iBAAIE,GAAgB,OAAO5d,KAAKgtD,MAAMpvC,aAAa,CAAC,iBAAI6sB,GAAgB,OAAOzqC,KAAKgtD,MAAMviB,aAAa,CAAC,WAAIv8B,GAAU,OAAOlO,KAAKgtD,MAAM9+C,OAAO,CAAC,UAAI6kD,GAAS,OAAO/yD,KAAKqvC,UAAUrvC,KAAKqvC,QAAQ,IAAIxtC,EAAEwrD,UAAUrtD,KAAKgtD,QAAQhtD,KAAKqvC,OAAO,CAAC,WAAI2jB,GAAU,OAAOhzD,KAAK8yD,oBAAoB,IAAI3xD,EAAEusD,WAAW1tD,KAAKgtD,MAAM,CAAC,YAAI3sC,GAAW,OAAOrgB,KAAKgtD,MAAM3sC,QAAQ,CAAC,QAAIxa,GAAO,OAAO7F,KAAKgtD,MAAMnnD,IAAI,CAAC,QAAIkD,GAAO,OAAO/I,KAAKgtD,MAAMjkD,IAAI,CAAC,UAAI1G,GAAS,OAAOrC,KAAKwsD,UAAUxsD,KAAKwsD,QAAQxsD,KAAK8N,SAAS,IAAI5M,EAAE6rD,mBAAmB/sD,KAAKgtD,SAAShtD,KAAKwsD,OAAO,CAAC,WAAI5jC,GAAU,OAAO5oB,KAAK8yD,oBAAoB9yD,KAAKgtD,MAAMpkC,OAAO,CAAC,SAAI2vB,GAAQ,MAAMv5C,EAAEgB,KAAKgtD,MAAMttC,YAAY5M,gBAAgB,IAAIhU,EAAE,OAAO,OAAOkB,KAAKgtD,MAAMvnC,iBAAiBmC,gBAAgB,IAAI,MAAM9oB,EAAE,MAAM,MAAM,IAAI,QAAQA,EAAE,QAAQ,MAAM,IAAI,OAAOA,EAAE,OAAO,MAAM,IAAI,MAAMA,EAAE,MAAM,MAAM,CAACm0D,0BAA0Bj0D,EAAE+oB,sBAAsBmrC,sBAAsBl0D,EAAE27C,kBAAkB5nC,mBAAmB/T,EAAE+T,mBAAmBylC,WAAWx4C,KAAKgtD,MAAMttC,YAAY64B,MAAMC,WAAW2a,kBAAkBr0D,EAAEs0D,WAAWp0D,EAAEutB,OAAO8mC,sBAAsBr0D,EAAEy6C,kBAAkB6Z,cAAct0D,EAAEyhB,UAAU8yC,eAAev0D,EAAEs5C,WAAW,CAAC,WAAI52B,GAAU,OAAO1hB,KAAK4yD,cAAc,CAAC,WAAIlxC,CAAQ1iB,GAAG,IAAI,MAAMF,KAAKE,EAAEgB,KAAK4yD,eAAe9zD,GAAGE,EAAEF,EAAE,CAAC,IAAA8L,GAAO5K,KAAKgtD,MAAMpiD,MAAM,CAAC,KAAA5B,GAAQhJ,KAAKgtD,MAAMhkD,OAAO,CAAC,KAAA/C,CAAMjH,EAAEF,GAAE,GAAIkB,KAAKgtD,MAAM/mD,MAAMjH,EAAEF,EAAE,CAAC,MAAA+kB,CAAO7kB,EAAEF,GAAGkB,KAAKwzD,gBAAgBx0D,EAAEF,GAAGkB,KAAKgtD,MAAMnpC,OAAO7kB,EAAEF,EAAE,CAAC,IAAAqE,CAAKnE,GAAGgB,KAAKgtD,MAAM7pD,KAAKnE,EAAE,CAAC,2BAAAupB,CAA4BvpB,GAAGgB,KAAKgtD,MAAMzkC,4BAA4BvpB,EAAE,CAAC,6BAAAwpB,CAA8BxpB,GAAGgB,KAAKgtD,MAAMxkC,8BAA8BxpB,EAAE,CAAC,oBAAA2E,CAAqB3E,GAAG,OAAOgB,KAAKgtD,MAAMrpD,qBAAqB3E,EAAE,CAAC,uBAAAypB,CAAwBzpB,GAAG,OAAOgB,KAAK8yD,oBAAoB9yD,KAAKgtD,MAAMvkC,wBAAwBzpB,EAAE,CAAC,yBAAA0pB,CAA0B1pB,GAAGgB,KAAK8yD,oBAAoB9yD,KAAKgtD,MAAMtkC,0BAA0B1pB,EAAE,CAAC,cAAA6pB,CAAe7pB,EAAE,GAAG,OAAOgB,KAAKwzD,gBAAgBx0D,GAAGgB,KAAKgtD,MAAMnkC,eAAe7pB,EAAE,CAAC,kBAAA+pB,CAAmB/pB,GAAG,OAAOgB,KAAK8yD,oBAAoB9yD,KAAKyzD,wBAAwBz0D,EAAE+C,GAAG,EAAE/C,EAAEwT,OAAO,EAAExT,EAAEsT,QAAQ,GAAGtS,KAAKgtD,MAAMjkC,mBAAmB/pB,EAAE,CAAC,YAAAoiB,GAAe,OAAOphB,KAAKgtD,MAAM5rC,cAAc,CAAC,MAAArP,CAAO/S,EAAEF,EAAE+B,GAAGb,KAAKwzD,gBAAgBx0D,EAAEF,EAAE+B,GAAGb,KAAKgtD,MAAMj7C,OAAO/S,EAAEF,EAAE+B,EAAE,CAAC,YAAA6P,GAAe,OAAO1Q,KAAKgtD,MAAMt8C,cAAc,CAAC,oBAAAuY,GAAuB,OAAOjpB,KAAKgtD,MAAM/jC,sBAAsB,CAAC,cAAAnY,GAAiB9Q,KAAKgtD,MAAMl8C,gBAAgB,CAAC,SAAAsY,GAAYppB,KAAKgtD,MAAM5jC,WAAW,CAAC,WAAAC,CAAYrqB,EAAEF,GAAGkB,KAAKwzD,gBAAgBx0D,EAAEF,GAAGkB,KAAKgtD,MAAM3jC,YAAYrqB,EAAEF,EAAE,CAAC,OAAA8E,GAAU4I,MAAM5I,SAAS,CAAC,WAAA2M,CAAYvR,GAAGgB,KAAKwzD,gBAAgBx0D,GAAGgB,KAAKgtD,MAAMz8C,YAAYvR,EAAE,CAAC,WAAAutC,CAAYvtC,GAAGgB,KAAKwzD,gBAAgBx0D,GAAGgB,KAAKgtD,MAAMzgB,YAAYvtC,EAAE,CAAC,WAAAwtC,GAAcxsC,KAAKgtD,MAAMxgB,aAAa,CAAC,cAAA3jC,GAAiB7I,KAAKgtD,MAAMnkD,gBAAgB,CAAC,YAAA4jC,CAAaztC,GAAGgB,KAAKwzD,gBAAgBx0D,GAAGgB,KAAKgtD,MAAMvgB,aAAaztC,EAAE,CAAC,KAAA6L,GAAQ7K,KAAKgtD,MAAMniD,OAAO,CAAC,KAAAlB,CAAM3K,EAAEF,GAAGkB,KAAKgtD,MAAMrjD,MAAM3K,EAAEF,EAAE,CAAC,OAAA40D,CAAQ10D,EAAEF,GAAGkB,KAAKgtD,MAAMrjD,MAAM3K,GAAGgB,KAAKgtD,MAAMrjD,MAAM,OAAO7K,EAAE,CAAC,KAAA6U,CAAM3U,GAAGgB,KAAKgtD,MAAMr5C,MAAM3U,EAAE,CAAC,OAAA0Q,CAAQ1Q,EAAEF,GAAGkB,KAAKwzD,gBAAgBx0D,EAAEF,GAAGkB,KAAKgtD,MAAMt9C,QAAQ1Q,EAAEF,EAAE,CAAC,KAAAsI,GAAQpH,KAAKgtD,MAAM5lD,OAAO,CAAC,iBAAAyjB,GAAoB7qB,KAAKgtD,MAAMniC,mBAAmB,CAAC,SAAAxiB,CAAUrJ,GAAGgB,KAAK2yD,cAActqD,UAAUrI,KAAKhB,EAAE,CAAC,kBAAW20D,GAAU,OAAO70D,CAAC,CAAC,eAAA00D,IAAmBx0D,GAAG,IAAI,MAAMF,KAAKE,EAAE,GAAGF,IAAI,KAAK8S,MAAM9S,IAAIA,EAAE,GAAG,EAAE,MAAM,IAAIgN,MAAM,iCAAiC,CAAC,uBAAA2nD,IAA2Bz0D,GAAG,IAAI,MAAMF,KAAKE,EAAE,GAAGF,IAAIA,IAAI,KAAK8S,MAAM9S,IAAIA,EAAE,GAAG,GAAGA,EAAE,GAAG,MAAM,IAAIgN,MAAM,0CAA0C,EAAE9M,EAAE6I,SAAStG,CAAE,EAAvlJ,GAA2lJT,CAAE,EAAht0R,GAA3K+C,EAAOb,QAAQlE,G,uBCqDnF,QAAkB,IAAP2K,EACT,MAAM,IAAIqC,MAAM,uCAElB,IAAIrC,EAAM,CAQVA,qBAA2B,CAAC,EAS5BA,eAAqB,GAsBrBA,MAAY,SAASmqD,GACnB,IAAI5yD,EAEJ,IACE,MAAM,IAAI8K,KACZ,CAAE,MAAO+nD,GACP,IAAIC,EAAaD,EAAGE,MAAM7b,MAAM,MAI9Bl3C,EADE8yD,EAAWlyD,QAAU,EACdkyD,EAAW,GAAGjhD,QAAQ,YAAa,IAEnCihD,EAAW,GAAGjhD,QAAQ,mBAAoB,GAEvD,CAEA,IAAK,IAAIhS,EAAI,EAAGA,EAAIoL,UAAUrK,OAAQf,IAAK,CACzC,IAAImzD,EAAO/nD,UAAUpL,GACrB,GAAImzD,aAAgBzrB,MAClB9+B,EAAIwqD,MAAM7K,MAAM3/C,EAAKuqD,OAChB,CACL,IAAIE,EAAMl0D,KAAKm0D,qBAAqBH,GAC/BE,IACHA,EAAMl0D,KAAKm0D,qBAAqBH,GAAQ,IAC1CE,EAAIhyD,KAAKlB,EACX,CACF,CACF,EAQAyI,2BAAiC,WAC/B,IAAI2qD,GAAS,EAEb,IAAK,IAAIJ,KAAQvqD,EAAI0qD,qBAOnB,IANA,IAAIE,EAAa5qD,EAAI0qD,qBAAqBH,GACtCM,EAAQN,EAAK9b,MAAM,KAInBqc,EAAOrxD,QAAUnE,KACZ8B,EAAI,EAAGA,EAAIyzD,EAAM1yD,OAAQf,IAAK,CACrC,KAAMyzD,EAAMzzD,KAAM0zD,GAAM,CACtBhxD,QAAQC,KAAK,YAAcwwD,EAAO,iBAAkBK,GACpDD,GAAS,EACT,KACF,CAEAG,EAAMA,EAAID,EAAMzzD,GAClB,CAGF,IAAKuzD,EACH,MAAM,IAAItoD,MAAM,kCACpB,EAcArC,aAAmB,SAASgnD,EAAM/lD,GAEhC,OADAjB,EAAI+qD,eAAetyD,KAAK,CAACuuD,EAAM/lD,IACxBA,CACT,EAgBAjB,KAAW,SAASgrD,EAAQC,GAC1B,IAAIR,EAAMzqD,EAAI+qD,eAEVG,EAAW,WACb,GAAIT,EAAItyD,OAAQ,CACd,IAAIgzD,EAAMV,EAAI3kD,QACVmlD,GACFA,EAAgB,SAAWE,EAAI,IACjCA,EAAI,GAAGnrD,EAAI0R,EAAE05C,MAAMF,GACrB,MACEF,GAEJ,EAEA,GAAqB,mBAAVA,EACT,MAAM,IAAI3oD,MAAM,uCAElBrC,EAAIqrD,6BAEJ3tD,WAAWwtD,EAAU,EACvB,GAaK7rD,OAAOmvC,UAAU8c,WACpBjsD,OAAOmvC,UAAU8c,SAAW,SAASC,EAAcC,GAGjD,OADAD,GAAgBh1D,KAAK4B,SACD,EACXkH,OAAO9I,YAEEk1D,IAAdD,IACFA,EAAY,KAGVD,EAAeC,EAAUrzD,SAC3BqzD,EAAYA,EAAUh5B,OAAQ+4B,EAAeC,EAAUrzD,OAAU,IAE5DqzD,EAAU3uD,MAAM,EAAG0uD,GAAgBlsD,OAAO9I,MACnD,GAIG8I,OAAOmvC,UAAUkd,SACpBrsD,OAAOmvC,UAAUkd,OAAS,SAASH,EAAcC,GAG/C,OADAD,GAAgBh1D,KAAK4B,SACD,EACXkH,OAAO9I,YAEEk1D,IAAdD,IACFA,EAAY,KAGVD,EAAeC,EAAUrzD,SAC3BqzD,EAAYA,EAAUh5B,OAAQ+4B,EAAeC,EAAUrzD,OAAU,IAE5DkH,OAAO9I,MAAQi1D,EAAU3uD,MAAM,EAAG0uD,GAC3C,GAYFvrD,EAAI+V,OAAS,CAAC,EAwBd/V,EAAI+V,OAAO41C,IAAM,CAEfC,MAAO,mCAGPC,MAAO,4CAGPlsB,IAAK,IAAIroC,OACL,oEAEG8R,QAAQ,MAAO,MAAO,KAG7B4nB,KAAM,IAAI15B,OACN,+FAGG8R,QAAQ,MAAO,MAAO,KAG7B0iD,KAAM,IAAIx0D,OACN,iGAGG8R,QAAQ,MAAO,MAAO,KAG7B2iD,OAAQ,iEAGR/E,KAAM,oBAcRhnD,EAAI+V,OAAOi2C,SAAW,SAAS91D,GAC7B,SAAS+1D,EAAMt6C,GAEb,OADAA,GAAwB,IAAnBR,KAAKC,IAAIO,EAAG,MAAYxL,SAAS,IAC/BnG,EAAI0R,EAAEw6C,KAAKv6C,EAAG,EACvB,CAEA,IAAI84C,EAAMv0D,EAAM8pC,MAAMhgC,EAAI+V,OAAO41C,IAAIG,MACrC,OAAKrB,EAGE,OAASwB,EAAMxB,EAAI,IAAM,IAAMwB,EAAMxB,EAAI,IAAM,IAAMwB,EAAMxB,EAAI,IAF7D,IAGX,EAcAzqD,EAAI+V,OAAOo2C,YAAc,SAASx6C,GAChC,IAAKA,EAAE5b,WAAW,KAChB,OAAO,KAKT,GAHA4b,EAAIA,EAAEy6C,OAAO,IAG2B,GAApC,CAAC,EAAG,EAAG,EAAG,IAAInzD,QAAQ0Y,EAAExZ,QAC1B,OAAO,KAGT,GAAIwZ,EAAEquB,MAAM,cACV,OAAO,KAGT,IAAIxyB,EAAOmE,EAAExZ,OAAS,EAClBhB,EAAIwa,EAAEy6C,OAAO,EAAG5+C,GAChBoE,EAAID,EAAEy6C,OAAO5+C,EAAMA,GACnBwE,EAAIL,EAAEy6C,OAAO5+C,EAAOA,EAAMA,GAS9B,OAAOxN,EAAI+V,OAAOs2C,YAAY,CAACl1D,EAAGya,EAAGI,GAAGjb,IANxC,SAAgB4a,GAEd,OADAA,EAAIzJ,SAASyJ,EAAG,IACD,GAARnE,EAAYmE,EACJ,GAARnE,EAAYmE,GAAK,EACjBA,GAAM,GAAKnE,EAAO,EAC3B,GAEF,EAaAxN,EAAI+V,OAAOu2C,SAAW,SAAS36C,GAgC7B,IAAI84C,EAAM94C,EAAEquB,MAAMhgC,EAAI+V,OAAO41C,IAAII,QACjC,OAAKtB,GAQLA,EAAI78C,OAAO,EAAG,GACP5N,EAAI+V,OAAOs2C,YAAY5B,EAAI1zD,IAzClC,SAAe4a,GAMb,OAAgB,GAAZA,EAAExZ,OAKG+P,SAASyJ,EAAIA,EAAG,IAGT,GAAZA,EAAExZ,OAIG+P,SAASyJ,EAAG,KAGL,GAAZA,EAAExZ,SAGJwZ,GAAQA,EAAEy6C,OAAO,IAIZj7C,KAAK2S,MAAM5b,SAASyJ,EAAG,IAAM,KACtC,KAKMA,EAAE5b,WAAW,KACRiK,EAAI+V,OAAOo2C,YAAYx6C,GAEvB3R,EAAI+V,OAAOw2C,UAAU56C,EAKlC,EAaA3R,EAAI+V,OAAOy2C,SAAW,SAASC,GAC7B,IAAIb,EAAQ5rD,EAAI+V,OAAO41C,IAAIC,MACvBC,EAAQ7rD,EAAI+V,OAAO41C,IAAIE,MAE3B,SAASa,EAAQC,GACG,GAAdA,EAAIx0D,SACNw0D,EAAMA,EAAIvjD,QAAQwiD,EAAO,SAASxzD,EAAGjB,EAAGya,EAAGI,GACzC,MAAO,IAAM7a,EAAIA,EAAIya,EAAIA,EAAII,EAAIA,CACnC,IAEF,IAAIy4C,EAAMkC,EAAI3sB,MAAM6rB,GACpB,OAAKpB,EAGE,OAASviD,SAASuiD,EAAI,GAAI,IAAM,KACnCviD,SAASuiD,EAAI,GAAI,IAAM,KACvBviD,SAASuiD,EAAI,GAAI,IAAM,IAJlB,IAKX,CAEA,GAAIgC,aAAe3tB,MACjB,IAAK,IAAI1nC,EAAI,EAAGA,EAAIq1D,EAAIt0D,OAAQf,IAC9Bq1D,EAAIr1D,GAAKs1D,EAAQD,EAAIr1D,SAGvBq1D,EAAMC,EAAQD,GAGhB,OAAOA,CACT,EAcAzsD,EAAI+V,OAAO62C,SAAW,SAASH,GAC7B,SAASC,EAAQ/sB,GACf,IAAI8qB,EAAMzqD,EAAI+V,OAAO82C,SAASltB,GAC9B,OAAK8qB,EAEE,IAAMzqD,EAAI0R,EAAEw6C,MAAOhkD,SAASuiD,EAAI,KAAO,GACpBviD,SAASuiD,EAAI,KAAQ,EACrBviD,SAASuiD,EAAI,KAAYtkD,SAAS,IAAK,GAHxD,IAIX,CAEA,GAAIsmD,aAAe3tB,MACjB,IAAK,IAAI1nC,EAAI,EAAGA,EAAIq1D,EAAIt0D,OAAQf,IAC9Bq1D,EAAIr1D,GAAKs1D,EAAQD,EAAIr1D,SAGvBq1D,EAAMC,EAAQD,GAGhB,OAAOA,CACT,EAOAzsD,EAAI+V,OAAO+2C,aAAe,SAASC,GACjC,OAAIA,EAAIh3D,WAAW,KACViK,EAAI+V,OAAOy2C,SAASO,GAEzB/sD,EAAI+V,OAAO41C,IAAIG,KAAK9lD,KAAK+mD,GACpBA,EAEF/sD,EAAI+V,OAAOw2C,UAAUQ,EAC9B,EAKA/sD,EAAI+V,OAAOs2C,YAAc,SAAS5B,GAChC,IAAIuC,EAASvC,EAAItyD,OAAS,EAAKsyD,EAAI,GAAK,EACxC,MAAO,QAAUA,EAAI,GAAK,KAAOA,EAAI,GAAK,KAAOA,EAAI,GAAK,KAAOuC,EAAQ,GAC3E,EAKAhtD,EAAI+V,OAAOk3C,SAAW,SAASttB,EAAKqtB,GAClC,IAAIvC,EAAMzqD,EAAI+V,OAAO82C,SAASltB,GAE9B,OADA8qB,EAAI,GAAKuC,EACFhtD,EAAI+V,OAAOs2C,YAAY5B,EAChC,EAKAzqD,EAAI+V,OAAOm3C,IAAM,SAASC,EAAMC,EAAMC,GAIpC,IAHA,IAAIC,EAAOttD,EAAI+V,OAAO82C,SAASM,GAC3BI,EAAOvtD,EAAI+V,OAAO82C,SAASO,GAEtBh2D,EAAI,EAAGA,EAAI,IAAKA,EAAG,CAC1B,IAAIo2D,EAAOD,EAAKn2D,GAAKk2D,EAAKl2D,GAC1Bk2D,EAAKl2D,GAAK+Z,KAAK2S,MAAM5b,SAASolD,EAAKl2D,IAAMo2D,EAAOH,EAClD,CAEA,OAAOrtD,EAAI+V,OAAOs2C,YAAYiB,EAChC,EAQAttD,EAAI+V,OAAO82C,SAAW,SAASh3C,GAE3B,IAMI40C,EAPN,GAAI50C,EAAM9f,WAAW,SAEnB,GADI00D,EAAM50C,EAAMmqB,MAAMhgC,EAAI+V,OAAO41C,IAAI36B,MAGnC,OADAy5B,EAAI3kD,QACG2kD,OAIT,GADIA,EAAM50C,EAAMmqB,MAAMhgC,EAAI+V,OAAO41C,IAAIhsB,KAInC,OAFA8qB,EAAI3kD,QACJ2kD,EAAIhyD,KAAK,GACFgyD,EAKX,OADA3wD,QAAQgG,MAAM,mBAAsB+V,GAC7B,IACT,EAcA7V,EAAI+V,OAAOw2C,UAAY,SAASvF,GAC9B,OAAIA,KAAQhnD,EAAI+V,OAAO03C,aAGvBzG,EAAOA,EAAK9J,iBACAl9C,EAAI+V,OAAO03C,aAGvBzG,EAAOA,EAAK59C,QAAQ,OAAQ,OAChBpJ,EAAI+V,OAAO03C,WAPdztD,EAAI+V,OAAO03C,WAAWzG,GAUxB,IACT,EAKAhnD,EAAI+V,OAAO23C,kBAAoB1tD,EAAI+V,OAAOy2C,SACvC,CACC,UAAW,UAAW,UAAW,UACjC,UAAW,UAAW,UAAW,UACjC,UAAW,UAAW,UAAW,UACjC,UAAW,UAAW,UAAW,UAGjC,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UAEvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UAEvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UAEvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UAEvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UAEvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UAGvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,UACvD,UAAW,UAAW,UAAW,UAAW,UAAW,YAM3DxsD,EAAI+V,OAAO43C,aAAe3tD,EAAI+V,OAAO23C,kBAKrC1tD,EAAI+V,OAAO03C,WAAa,CACtB,UAAa,qBACb,aAAgB,qBAChB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,qBACjB,WAAc,qBACd,YAAe,qBACf,YAAe,qBACf,YAAe,qBACf,YAAe,oBACf,MAAS,qBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,qBACT,OAAU,qBACV,QAAW,qBACX,QAAW,qBACX,QAAW,qBACX,QAAW,qBACX,MAAS,eACT,eAAkB,qBAClB,KAAQ,iBACR,MAAS,iBACT,MAAS,iBACT,MAAS,iBACT,MAAS,iBACT,WAAc,oBACd,MAAS,mBACT,OAAU,mBACV,OAAU,mBACV,OAAU,mBACV,OAAU,mBACV,UAAa,qBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,oBACd,UAAa,oBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,oBACd,WAAc,mBACd,YAAe,mBACf,YAAe,mBACf,YAAe,mBACf,YAAe,kBACf,UAAa,oBACb,WAAc,oBACd,WAAc,oBACd,WAAc,oBACd,WAAc,mBACd,MAAS,oBACT,OAAU,oBACV,OAAU,oBACV,OAAU,mBACV,OAAU,mBACV,eAAkB,qBAClB,SAAY,qBACZ,UAAa,qBACb,UAAa,qBACb,UAAa,qBACb,UAAa,qBACb,KAAQ,mBACR,MAAS,mBACT,MAAS,mBACT,MAAS,mBACT,MAAS,mBACT,SAAY,iBACZ,SAAY,mBACZ,cAAiB,oBACjB,eAAkB,oBAClB,eAAkB,oBAClB,eAAkB,oBAClB,eAAkB,mBAClB,SAAY,qBACZ,UAAa,iBACb,SAAY,qBACZ,UAAa,qBACb,YAAe,mBACf,eAAkB,mBAClB,gBAAmB,qBACnB,gBAAmB,qBACnB,gBAAmB,oBACnB,gBAAmB,oBACnB,WAAc,mBACd,YAAe,mBACf,YAAe,mBACf,YAAe,mBACf,YAAe,kBACf,WAAc,oBACd,YAAe,oBACf,YAAe,oBACf,YAAe,oBACf,YAAe,oBACf,QAAW,iBACX,WAAc,qBACd,aAAgB,qBAChB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,mBACjB,cAAiB,kBACjB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,oBAClB,cAAiB,kBACjB,cAAiB,mBACjB,WAAc,mBACd,UAAa,kBACb,SAAY,oBACZ,UAAa,oBACb,UAAa,oBACb,UAAa,oBACb,UAAa,mBACb,YAAe,mBACf,aAAgB,mBAChB,aAAgB,mBAChB,aAAgB,mBAChB,aAAgB,mBAChB,QAAW,qBACX,QAAW,qBACX,WAAc,oBACd,YAAe,oBACf,YAAe,oBACf,YAAe,oBACf,YAAe,mBACf,UAAa,mBACb,WAAc,mBACd,WAAc,mBACd,WAAc,mBACd,WAAc,mBACd,YAAe,qBACf,YAAe,mBACf,UAAa,qBACb,WAAc,qBACd,KAAQ,mBACR,MAAS,mBACT,MAAS,mBACT,MAAS,mBACT,MAAS,mBACT,UAAa,oBACb,WAAc,oBACd,WAAc,oBACd,WAAc,oBACd,WAAc,oBACd,KAAQ,qBACR,MAAS,eACT,MAAS,eACT,OAAU,kBACV,QAAW,qBACX,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,MAAS,eACT,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,MAAS,eACT,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,iBACT,OAAU,iBACV,OAAU,iBACV,OAAU,iBACV,OAAU,iBACV,YAAe,oBACf,KAAQ,qBACR,MAAS,eACT,MAAS,eACT,OAAU,kBACV,QAAW,qBACX,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,MAAS,eACT,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,MAAS,eACT,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,OAAU,kBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,kBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,SAAY,qBACZ,UAAa,qBACb,UAAa,qBACb,UAAa,qBACb,UAAa,qBACb,QAAW,qBACX,SAAY,qBACZ,SAAY,qBACZ,SAAY,oBACZ,SAAY,mBACZ,UAAa,mBACb,WAAc,qBACd,WAAc,mBACd,WAAc,mBACd,WAAc,mBACd,MAAS,qBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,qBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,oBACV,SAAY,qBACZ,cAAiB,qBACjB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,qBAClB,UAAa,mBACb,aAAgB,qBAChB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,qBACjB,UAAa,qBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,UAAa,qBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,eAAkB,qBAClB,gBAAmB,qBACnB,gBAAmB,qBACnB,gBAAmB,qBACnB,gBAAmB,oBACnB,qBAAwB,qBACxB,UAAa,qBACb,WAAc,qBACd,UAAa,qBACb,UAAa,qBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,oBACd,YAAe,qBACf,aAAgB,qBAChB,aAAgB,qBAChB,aAAgB,oBAChB,aAAgB,mBAChB,cAAiB,oBACjB,aAAgB,qBAChB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,oBACjB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,qBAClB,gBAAmB,qBACnB,gBAAmB,qBACnB,gBAAmB,qBACnB,gBAAmB,qBACnB,YAAe,qBACf,aAAgB,qBAChB,aAAgB,qBAChB,aAAgB,qBAChB,aAAgB,qBAChB,UAAa,mBACb,MAAS,qBACT,QAAW,mBACX,SAAY,mBACZ,SAAY,mBACZ,SAAY,mBACZ,SAAY,mBACZ,OAAU,mBACV,QAAW,oBACX,QAAW,oBACX,QAAW,oBACX,QAAW,mBACX,iBAAoB,qBACpB,WAAc,iBACd,aAAgB,oBAChB,cAAiB,qBACjB,cAAiB,oBACjB,cAAiB,oBACjB,cAAiB,oBACjB,aAAgB,qBAChB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,qBACjB,cAAiB,mBACjB,eAAkB,oBAClB,gBAAmB,qBACnB,kBAAqB,mBACrB,gBAAmB,oBACnB,gBAAmB,oBACnB,aAAgB,mBAChB,UAAa,qBACb,UAAa,qBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,SAAY,qBACZ,YAAe,qBACf,aAAgB,qBAChB,aAAgB,qBAChB,aAAgB,qBAChB,aAAgB,oBAChB,KAAQ,iBACR,SAAY,iBACZ,QAAW,qBACX,UAAa,oBACb,WAAc,oBACd,WAAc,oBACd,WAAc,oBACd,WAAc,oBACd,OAAU,mBACV,QAAW,mBACX,QAAW,mBACX,QAAW,mBACX,QAAW,kBACX,UAAa,kBACb,WAAc,kBACd,WAAc,kBACd,WAAc,kBACd,WAAc,kBACd,OAAU,qBACV,QAAW,qBACX,QAAW,qBACX,QAAW,qBACX,QAAW,oBACX,cAAiB,qBACjB,UAAa,qBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,mBACd,cAAiB,qBACjB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,qBAClB,cAAiB,qBACjB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,qBAClB,eAAkB,mBAClB,WAAc,qBACd,UAAa,qBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,KAAQ,oBACR,KAAQ,qBACR,MAAS,qBACT,MAAS,qBACT,MAAS,qBACT,MAAS,oBACT,KAAQ,qBACR,MAAS,qBACT,MAAS,qBACT,MAAS,qBACT,MAAS,qBACT,WAAc,qBACd,OAAU,oBACV,QAAW,oBACX,QAAW,oBACX,QAAW,oBACX,QAAW,mBACX,IAAO,iBACP,KAAQ,iBACR,KAAQ,iBACR,KAAQ,iBACR,KAAQ,iBACR,UAAa,qBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,UAAa,oBACb,WAAc,oBACd,WAAc,oBACd,WAAc,mBACd,WAAc,mBACd,YAAe,mBACf,OAAU,qBACV,QAAW,qBACX,QAAW,oBACX,QAAW,oBACX,QAAW,mBACX,WAAc,oBACd,SAAY,mBACZ,UAAa,oBACb,UAAa,oBACb,UAAa,oBACb,UAAa,mBACb,SAAY,qBACZ,UAAa,qBACb,UAAa,qBACb,UAAa,qBACb,UAAa,qBACb,OAAU,mBACV,QAAW,oBACX,QAAW,oBACX,QAAW,oBACX,QAAW,mBACX,QAAW,qBACX,SAAY,qBACZ,SAAY,qBACZ,SAAY,qBACZ,SAAY,oBACZ,UAAa,oBACb,WAAc,qBACd,WAAc,qBACd,WAAc,oBACd,WAAc,mBACd,UAAa,qBACb,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,WAAc,qBACd,UAAa,qBACb,KAAQ,qBACR,MAAS,qBACT,MAAS,qBACT,MAAS,qBACT,MAAS,qBACT,YAAe,mBACf,aAAgB,mBAChB,aAAgB,mBAChB,aAAgB,mBAChB,aAAgB,kBAChB,UAAa,oBACb,WAAc,oBACd,WAAc,oBACd,WAAc,oBACd,WAAc,oBACd,IAAO,qBACP,KAAQ,oBACR,KAAQ,oBACR,KAAQ,oBACR,KAAQ,mBACR,QAAW,qBACX,SAAY,qBACZ,SAAY,qBACZ,SAAY,qBACZ,SAAY,qBACZ,OAAU,mBACV,QAAW,mBACX,QAAW,mBACX,QAAW,mBACX,QAAW,mBACX,UAAa,oBACb,WAAc,mBACd,WAAc,mBACd,WAAc,mBACd,WAAc,mBACd,OAAU,qBACV,UAAa,oBACb,WAAc,oBACd,WAAc,oBACd,WAAc,oBACd,WAAc,mBACd,MAAS,qBACT,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,OAAU,qBACV,MAAS,qBACT,WAAc,qBACd,OAAU,mBACV,QAAW,mBACX,QAAW,mBACX,QAAW,mBACX,QAAW,mBACX,YAAe,qBAYjBztD,EAAI0R,EAAI,CAAC,EAST1R,EAAI0R,EAAEk8C,WAAa,SAAS5G,GAG1B,OAAO,IAAI3nD,OAAO2nD,EACpB,EAeAhnD,EAAI0R,EAAEm8C,YAAc,SAASC,EAAKC,GAChC,OAAOD,EAAI1kD,QAAQ,0BAA2B,SAAS42B,EAAOguB,EAAIC,GAC9D,QAA4B,IAAjBF,EAAKE,GACd,KAAM,qBAAuBA,EAE/B,IAAIC,EAAKH,EAAKE,GAEd,GAAID,KAAMhuD,EAAI0R,EAAEm8C,YAAYM,UAC1BD,EAAKluD,EAAI0R,EAAEm8C,YAAYM,UAAUH,GAAIE,QAChC,GAAIF,EACT,KAAM,4BAA8BA,EAGtC,OAAOE,CACT,EACJ,EAOAluD,EAAI0R,EAAEm8C,YAAYM,UAAY,CAC5BC,UACAC,mBACAC,WAAY,SAASR,GACnB,IAAI/2D,EAAM,CACR,IAAK,OACL,IAAK,OACL,IAAK,QACL,IAAK,SACL,IAAK,SAGP,OAAO+2D,EAAI1kD,QAAQ,aAAc,SAASyI,GAAK,OAAO9a,EAAI8a,EAAG,EAC/D,GASF7R,EAAI0R,EAAE68C,mBAAqB,SAASttD,GAC9BjB,EAAI0R,EAAE68C,mBAAmBC,kBAC3BC,OAAOC,KAAKH,mBAAmBttD,GAE/BvD,WAAW,WACPuD,EAAS,CAAC/C,UAAUywD,SAASvlD,QAAQ,KAAM,MAC7C,EAAG,EAET,EAEApJ,EAAI0R,EAAE68C,mBAAmBC,gBAAkB,WACzC,OAAO/0D,OAAOg1D,QAAUA,OAAOC,IACjC,EAgBA1uD,EAAI0R,EAAEk9C,WAAa,SAASC,GACtBA,EAAY94D,WAAW,OACzB84D,EAAcA,EAAYzC,OAAO,IAKnC,IAHA,IAAI8B,EAAK,CAAC,EAENY,EAAQD,EAAYpgB,MAAM,KACrBr3C,EAAI,EAAGA,EAAI03D,EAAM32D,OAAQf,IAAK,CACrC,IAAI23D,EAAOD,EAAM13D,GAAGq3C,MAAM,KAC1Byf,EAAGc,mBAAmBD,EAAK,KAAOC,mBAAmBD,EAAK,GAC5D,CAEA,OAAOb,CACT,EAEAluD,EAAI0R,EAAEu9C,OAAS,SAAS1E,GACtB,OAAIvqD,EAAI0R,EAAEu9C,OAAOT,kBACRC,OAAOS,QAAQD,OAAO1E,GAExBA,CACT,EAEAvqD,EAAI0R,EAAEu9C,OAAOT,gBAAkB,WAC7B,OAAO/0D,OAAOg1D,QAAUA,OAAOS,SAAWT,OAAOS,QAAQD,MAC3D,EASAjvD,EAAI0R,EAAEy9C,MAAQ,SAASx9C,EAAGP,EAAKE,GAC7B,OAAIK,EAAIP,EACCA,EACLO,EAAIL,EACCA,EACFK,CACT,EASA3R,EAAI0R,EAAEw6C,KAAO,SAASkD,EAAQj3D,GAC5B,OAAOkH,OAAO+vD,GAAQ9D,SAASnzD,EAAQ,IACzC,EAYA6H,EAAI0R,EAAE29C,cAAgB,SAASl3D,GAC7B,GAAIA,GAAU,EACZ,MAAO,GAET,IAAIuZ,EAAInb,KAAK84D,cAIb,IAHK39C,EAAE49C,aACL59C,EAAE49C,WAAa,cAEVn3D,EAASuZ,EAAE49C,WAAWn3D,QAC3BuZ,EAAE49C,YAAc59C,EAAE49C,WAGpB,OAAO59C,EAAE49C,WAAWlD,OAAO,EAAGj0D,EAChC,EA+BA6H,EAAI0R,EAAE05C,MAAQ,SAASnqD,EAAUsuD,GAC/B,IASMnvD,EAQAovD,EAjBFC,EAAKF,GAAU,IACfjF,EAAQtqD,EAAI0R,EAAEg+C,SAAS,GAE3B,OAMMtvD,EAAU1C,WAAW,WACvB,IAAIspD,EAA2B,iBAAZ/lD,EAAwB+lD,EAAO/lD,EAAS+lD,KAC3DA,EAAOA,EAAQ,KAAOA,EAAQ,GAC9BltD,QAAQC,KAAK,iCAAoC01D,EAAK,IAAQ,IAAMzI,GACpEltD,QAAQuD,IAAIitD,GACZlqD,EAAU,IACZ,EAAGqvD,GAECD,EAAmB,SAASvuD,GAC9B,OAAO,WAML,OALIb,IACFxC,aAAawC,GACbA,EAAU,MAGLa,EAAS0+C,MAAM,KAAMn9C,UAC9B,CACF,EAEuB,iBAAZvB,EACFuuD,EAEFA,EAAiBvuD,EAE5B,EAoBAjB,EAAI0R,EAAEg+C,SAAW,SAASC,GACxB,IAEItF,EAFAuF,EAAeD,EAAmBA,EAAmB,EAAI,EAI7D,IACE,MAAM,IAAIttD,KACZ,CAAE,MAAO+nD,GACPC,EAAaD,EAAGE,MAAM7b,MAAM,KAC9B,CAGA,IADA,IAAIohB,EAAc,CAAC,EACVz4D,EAAIw4D,EAAcx4D,EAAIizD,EAAWlyD,OAAQf,IAChDy4D,EAAYz4D,EAAIw4D,GAAgBvF,EAAWjzD,GAAGgS,QAAQ,YAAa,IAGrE,OAAOymD,CACT,EAaA7vD,EAAI0R,EAAEo+C,iBAAmB,SAASC,EAAYC,GAC5C,IAAIC,EAAMF,EAAYC,EAClBE,EAAU/+C,KAAKiY,KAAK6mC,GACxB,OAAIC,EAAUD,EAAM,KACXC,EAEA/+C,KAAKgU,MAAM8qC,EAEtB,EASAjwD,EAAI0R,EAAEy+C,UAAY,SAAS/+C,EAAKE,GAC9B,OAAOH,KAAKgU,MAAMhU,KAAKi/C,UAAY9+C,EAAMF,EAAM,IAAMA,CACvD,EAsBApR,EAAIqwD,eAAiB,SAASC,GAC5B/5D,KAAKg6D,WAAaD,EAAUv5D,IACxB,SAASgL,GAAM,OAAOA,EAAGqH,QAAQ,KAAM,IAAK,IAEV,GAAlC7S,KAAKg6D,WAAWt3D,QAAQ,OAC1B1C,KAAKg6D,WAAW1pD,QAAQ,MAE1BtQ,KAAKi6D,SAAW,CAAC,CACnB,EAQAxwD,EAAIqwD,eAAe7hB,UAAUiiB,YAAc,SAASC,GAClD,IAAK,IAAI3vD,KAAO2vD,EAAM,CACpB,IAAI3D,EAAM2D,EAAK3vD,GAEVgsD,EAAI4D,aAIPp6D,KAAKi6D,SAASzvD,GAAOgsD,EAAIluD,QAAQuK,QAC7B,wBACA,SAASyI,EAAGm1C,GACV,OAAO0J,EAAK3vD,GAAK4vD,aAAa3J,EAAK9J,eAAevoB,OACpD,GAPJp+B,KAAKi6D,SAASzvD,GAAOgsD,EAAIluD,OAS7B,CACF,EAYAmB,EAAIqwD,eAAe7hB,UAAUoiB,oBAAsB,SAC/CC,EAASC,GACX,IAAIR,EAAY/5D,KAAKg6D,WAAWQ,SAC5BC,EAAS,GACTC,EAAS,GAEb,SAASC,EAAmBhjD,GACtBA,EACF8iD,EAASV,EAAUxqD,QAEnBmrD,EAASX,EAAUxqD,QAGjBwqD,EAAUn4D,OACZg5D,IAEAL,EAAWE,EAAQC,EAEvB,CAEA,IAAIE,EAAkB,WACpB56D,KAAK66D,aAAa76D,KAAK86D,kBAAkBR,EAASP,GAChCY,EAAmB1sD,KAAKjO,MAAM,GAC9B26D,EAAmB1sD,KAAKjO,MAAM,GAClD,EAAEiO,KAAKjO,MAEP46D,GACF,EAKAnxD,EAAIqwD,eAAe7hB,UAAU4iB,aAAe,SACxCE,EAAKC,EAAWC,GAClB,IAAIC,EAAM,IAAIC,eAEdD,EAAIE,UAAY,WACI,KAAdF,EAAIG,QAORr7D,KAAKk6D,YAAY30D,KAAKoB,MAAMu0D,EAAII,eAChCN,KAPMC,GACFA,EAAYC,EAAIG,OAOtB,EAAEptD,KAAKjO,MAEPk7D,EAAI/3D,KAAK,MAAO43D,GAChBG,EAAI51D,MACN,EAQAmE,EAAIqwD,eAAegB,kBAAoB,SAASS,EAAK52D,GACnD,OAAO42D,EAAI1oD,QAAQ,WAAY,SAAUyI,EAAG3Z,GACxC,OAAOgD,EAAKhD,EAAQ,EACtB,EACJ,EAKA8H,EAAIqwD,eAAe7hB,UAAU6iB,kBACzBrxD,EAAIqwD,eAAegB,kBAUvBrxD,EAAIqwD,eAAe7hB,UAAUpoC,IAAM,SAAS2rD,EAASC,EAAUC,GAC7D,IAAIpzD,EAEJ,GAAIkzD,KAAWx7D,KAAKi6D,SAClB3xD,EAAUtI,KAAKi6D,SAASuB,QAMxB,GAHIt4D,OAAOg1D,OAAOC,OAChB7vD,EAAU4vD,OAAOC,KAAKwD,WAAWH,KAE9BlzD,EAEH,OADA/E,QAAQC,KAAK,oBAAsBg4D,QACL,IAAfE,EAA8BF,EAAUE,EAI3D,OAAKD,GAGCA,aAAoBlzB,QACxBkzB,EAAW,CAACA,IAEPz7D,KAAK86D,kBAAkBxyD,EAASmzD,IAL9BnzD,CAMX,EAOAmB,EAAIqwD,eAAe7hB,UAAU2jB,sBAAwB,SAASC,GAG5D,IAFA,IAAIC,EAAQD,EAAIE,iBAAiB,UAExBl7D,EAAI,EAAGA,EAAIi7D,EAAMl6D,OAAQf,IAChCb,KAAKg8D,qBAAqBF,EAAMj7D,GACpC,EAsBA4I,EAAIqwD,eAAe7hB,UAAU+jB,qBAAuB,SAAShrD,GAG3D,SAASirD,EAAM1E,GAAO,OAAOA,EAAI1kD,QAAQ,KAAM,KAAK6zC,aAAc,CAElE,IAAIyR,EAAOnnD,EAAKb,aAAa,QAC7B,GAAKgoD,EAAL,CAGA,IACEA,EAAO5yD,KAAKoB,MAAMwxD,EACpB,CAAE,MAAOtE,GAEP,MADAtwD,QAAQgG,MAAM,eAAkByH,EAAKkrD,QAAU,IAAMlrD,EAAK2tB,GAAK,KAAOw5B,GAChEtE,CACR,CAGA,IAAK,IAAIrpD,KAAO2tD,EAAM,CAEpB,IAAIgE,EAAO3xD,EAEPgxD,EAAUrD,EAAK3tD,GAEfgxD,EAAQh8D,WAAW,OACrBgL,EAAMgxD,EAAQ3F,OAAO,GACrB2F,EAAUrD,EAAK3tD,IAIbgxD,EAAQh8D,WAAW,OACrBg8D,EAAUS,EAAMjrD,EAAKb,aAAaqrD,EAAQ3F,OAAO,IAAM,IAAMrrD,IAG/D,IAAI+wD,EAAMv7D,KAAK6P,IAAI2rD,GACP,KAARW,EACFnrD,EAAKlH,YAAcyxD,EAEnBvqD,EAAK3D,aAAa8uD,EAAMZ,EAC5B,CA/BQ,CAgCV,EA0BA9xD,EAAI2yD,kBAAoB,SAASC,EAASC,GACxCt8D,KAAKq8D,QAAUA,EACfr8D,KAAKu8D,iBAAmBv8D,KAAKw8D,iBAAiBvuD,KAAKjO,MAEnDA,KAAKy8D,WAAY,EACjBz8D,KAAKoC,WAELpC,KAAK4wD,OAAQ,EAEb,IAAIje,EAAS2pB,GAAc,IACtB3pB,EAAO+pB,SAAS,OACnB/pB,GAAU,KAEZ3yC,KAAK2yC,OAASA,EAEd3yC,KAAK28D,aAAe,CAAC,EACrB38D,KAAK48D,iBAAmB,GAExB58D,KAAK68D,gBAAkB,CAAC,EAgBxB78D,KAAK88D,YAAc,CAAC,CACtB,EAQArzD,EAAI2yD,kBAAkBnkB,UAAU8kB,cAAgBtzD,EAAI0R,EAAEk8C,WAAW,WAQjE5tD,EAAI2yD,kBAAkBY,OAAS,SAASvM,EAAMwM,GAC5Cj9D,KAAKywD,KAAOA,EACZzwD,KAAKi9D,aAAeA,EACpBj9D,KAAKk9D,aAAel9D,KAAK+8D,cACzB/8D,KAAKm9D,UAAY,EACnB,EAKA1zD,EAAI2yD,kBAAkBY,OAAO/kB,UAAU8kB,cACnCtzD,EAAI2yD,kBAAkBnkB,UAAU8kB,cASpCtzD,EAAI2yD,kBAAkBY,OAAO/kB,UAAUmlB,YAAc,SAAS9xD,GAC5DtL,KAAKm9D,UAAUj7D,KAAKoJ,EACtB,EAOA7B,EAAI2yD,kBAAkBY,OAAO/kB,UAAUolB,eAAiB,SAAS/xD,GAC/D,IAAIzK,EAAIb,KAAKm9D,UAAUz6D,QAAQ4I,GAC3BzK,GAAK,GACPb,KAAKm9D,UAAU9lD,OAAOxW,EAAG,EAC7B,EAKA4I,EAAI2yD,kBAAkBY,OAAO/kB,UAAUpoC,IAAM,WAC3C,OAAI7P,KAAKk9D,eAAiBl9D,KAAK+8D,cACzB,oBAAoBttD,YAAYzP,KAAKi9D,cAChCj9D,KAAKi9D,aAEkB,iBAArBj9D,KAAKi9D,aAGP13D,KAAKoB,MAAMpB,KAAKC,UAAUxF,KAAKi9D,eAGjCj9D,KAAKi9D,aAGPj9D,KAAKk9D,YACd,EAQAzzD,EAAI2yD,kBAAkBnkB,UAAUhxC,WAAa,WAC3C,IAAKjH,KAAKy8D,UACR,MAAM,IAAI3wD,MAAM,iBAElB9L,KAAKy8D,WAAY,EACjBz8D,KAAKq8D,QAAQgB,eAAer9D,KAAKu8D,iBACnC,EASA9yD,EAAI2yD,kBAAkBnkB,UAAU71C,SAAW,WACzC,GAAIpC,KAAKy8D,UACP,MAAM,IAAI3wD,MAAM,qBAElB9L,KAAKy8D,WAAY,EACjBz8D,KAAKq8D,QAAQe,YAAYp9D,KAAKu8D,iBAChC,EAkBA9yD,EAAI2yD,kBAAkBnkB,UAAUqlB,YAAc,SAASC,GACrD,IAAIC,EAAkB,EAEtB,SAASC,IACkB,KAAnBD,GAAwBD,GAC5BA,GACJ,CAEA,IAAIjzD,EAAO7K,OAAO6K,KAAKtK,KAAK28D,cAAcn8D,IACtC,SAASgL,GAAM,OAAOxL,KAAK2yC,OAASnnC,CAAG,EAAEyC,KAAKjO,OAE9CA,KAAK4wD,OACPrtD,QAAQuD,IAAI,qBAAuB9G,KAAK2yC,QAE1C3yC,KAAKq8D,QAAQqB,SAASpzD,EAAM,SAASqzD,GACjC,IAAIC,EAAe59D,KAAK2yC,OAAO/wC,OAE/B,IAAK,IAAI4I,KAAOmzD,EAAO,CACrB,IAAIh+D,EAAQg+D,EAAMnzD,GACdimD,EAAOjmD,EAAIqrD,OAAO+H,GAClBC,EAAYpN,KAAQzwD,KAAK88D,aACZv3D,KAAKC,UAAU7F,IACf4F,KAAKC,UAAUxF,KAAK28D,aAAalM,GAAMyM,cAExDl9D,KAAK28D,aAAalM,GAAMyM,aAAev9D,EAEnCk+D,IACFL,IACAx9D,KAAK89D,cAAcrN,EAAMgN,GAE7B,CAEuB,GAAnBD,GAAwBD,GAC1Bp2D,WAAWo2D,EACf,EAAEtvD,KAAKjO,MACX,EAiBAyJ,EAAI2yD,kBAAkBnkB,UAAU8lB,iBAAmB,SAC/CtN,EAAM9wD,EAAOq+D,GAEf,IAAIC,EAASj+D,KAAK28D,aAAalM,GAC3BwN,EACFj+D,KAAKk+D,cAAczN,EAAM9wD,GAEzBs+D,EAASj+D,KAAK28D,aAAalM,GACvB,IAAIhnD,EAAI2yD,kBAAkBY,OAAOvM,EAAM9wD,GAGzCq+D,GACFC,EAAOb,YAAYY,EACvB,EASAv0D,EAAI2yD,kBAAkBnkB,UAAUkmB,kBAAoB,SAASC,GAC3D,IAAK,IAAIv9D,EAAI,EAAGA,EAAIu9D,EAASx8D,OAAQf,IACnCb,KAAK+9D,iBAAiBK,EAASv9D,GAAG,GAAIu9D,EAASv9D,GAAG,GAAIu9D,EAASv9D,GAAG,GAEtE,EAoBA4I,EAAI2yD,kBAAkBnkB,UAAUomB,eAAiB,SAC7CC,EAAUC,GAGZv+D,KAAK+9D,iBAAiBO,EAAU,GACVt+D,KAAKw+D,mBAAmBvwD,KAAKjO,KAAMs+D,IACzDt+D,KAAK68D,gBAAgByB,GAAYC,EACjCv+D,KAAK88D,YAAYwB,GAAY,CAAC,CAChC,EAUA70D,EAAI2yD,kBAAkBnkB,UAAUwmB,aAAe,SAASC,EAAQl+D,GAC9D,GAAIk+D,GAA2B,mBAAVA,EACnB,MAAM,IAAI5yD,MAAM,0BAKlB,GAHI4yD,GACF1+D,KAAK48D,iBAAiB16D,KAAKw8D,GAExBl+D,EAGL,IAAK,IAAIiwD,KAAQjwD,EAAK,CACpB,KAAMiwD,KAAQzwD,KAAK28D,cACjB,MAAM,IAAI7wD,MAAM,uBAAyB2kD,GAE3CzwD,KAAK28D,aAAalM,GAAM2M,YAAY58D,EAAIiwD,GAC1C,CACF,EAWAhnD,EAAI2yD,kBAAkBnkB,UAAU0mB,UAAY,WAC1C,IAAK,IAAIlO,KAAQzwD,KAAK28D,aACpB38D,KAAK4+D,cAAcnO,EAEvB,EAOAhnD,EAAI2yD,kBAAkBnkB,UAAU2mB,cAAgB,SAASnO,GACvD,IAAIwN,EAASj+D,KAAK28D,aAAalM,GAC/B,IAAKwN,EACH,MAAM,IAAInyD,MAAM,uBAAyB2kD,GAI3C,IAFA,IAAIyM,EAAee,EAAOpuD,MAEjBhP,EAAI,EAAGA,EAAIb,KAAK48D,iBAAiBh7D,OAAQf,IAChDb,KAAK48D,iBAAiB/7D,GAAG4vD,EAAMyM,GAEjC,IAASr8D,EAAI,EAAGA,EAAIo9D,EAAOd,UAAUv7D,OAAQf,IAC3Co9D,EAAOd,UAAUt8D,GAAGq8D,EAAczM,EAAMzwD,KAE5C,EAaAyJ,EAAI2yD,kBAAkBnkB,UAAU4mB,YAAc,SAASP,EAAUQ,EACVC,GACrD,IACIpgC,EADAqgC,EAAMh/D,KAAK6P,IAAIyuD,GAGnB,GAAIS,GAEF,GADApgC,EAAKogC,GACmB,GAApBC,EAAIt8D,QAAQi8B,GACd,MAAM,IAAI7yB,MAAM,oBAAsBwyD,EAAW,KAAO3/B,QAI1D,MAAQA,IAA0B,GAApBqgC,EAAIt8D,QAAQi8B,IACxBA,EAAKl1B,EAAI0R,EAAEy+C,UAAU,EAAG,OAAQhqD,SAAS,IACzC+uB,EAAKl1B,EAAI0R,EAAEw6C,KAAKh3B,EAAI,GAChBmgC,IACFngC,EAAKmgC,EAAW,IAAMngC,GAI5B,IAAIsgC,EAAej/D,KAAK68D,gBAAgByB,GAAUt+D,KAAM2+B,GASxD,OARAsgC,EAAarO,MAAQ5wD,KAAK4wD,MAC1BqO,EAAaC,WAEbl/D,KAAK88D,YAAYwB,GAAU3/B,GAAMsgC,EAEjCD,EAAI98D,KAAKy8B,GACT3+B,KAAKgQ,IAAIsuD,EAAUU,GAEZC,CACT,EAWAx1D,EAAI2yD,kBAAkBnkB,UAAUhuC,YAAc,SAASq0D,EAAU3/B,GACnD3+B,KAAKm/D,SAASb,EAAU3/B,GAC9BugC,WAEN,IAAIF,EAAMh/D,KAAK6P,IAAIyuD,GACfz9D,EAAIm+D,EAAIt8D,QAAQi8B,IACV,GAAN99B,IACFm+D,EAAI3nD,OAAOxW,EAAG,GACdb,KAAKgQ,IAAIsuD,EAAUU,WAGdh/D,KAAK88D,YAAYwB,GAAU3/B,EACpC,EAaAl1B,EAAI2yD,kBAAkBnkB,UAAUknB,SAAW,SAASb,EAAU3/B,EAAI+8B,GAChE,KAAM4C,KAAYt+D,KAAK88D,aACrB,MAAM,IAAIhxD,MAAM,uBAAyBwyD,GAE3C,IAAI1yD,EAAY5L,KAAK88D,YAAYwB,GACjC,KAAM3/B,KAAM/yB,GAAY,CACtB,QAA0B,IAAf8vD,EACT,MAAM,IAAI5vD,MAAM,YAAcwyD,EAAW,YAAc3/B,GAEzD,OAAO+8B,CACT,CAEA,OAAO9vD,EAAU+yB,EACnB,EAqBAl1B,EAAI2yD,kBAAkBgD,eAAiB,SAASl+D,EAAGua,GAOjD,IANA,IAAIk8C,EAAK,CACP0H,MAAO,CAAC,EACRC,QAAS,CAAC,EACVC,OAAQ,CAAC,GAGF1+D,EAAI,EAAGA,EAAIK,EAAEU,OAAQf,KACJ,GAApB4a,EAAE/Y,QAAQxB,EAAEL,IACd82D,EAAG4H,OAAOr+D,EAAEL,KAAM,EAElB82D,EAAG0H,MAAMn+D,EAAEL,KAAM,EAIrB,IAASA,EAAI,EAAGA,EAAI4a,EAAE7Z,OAAQf,IACvB4a,EAAE5a,KAAM82D,EAAG0H,OAAW5jD,EAAE5a,KAAM82D,EAAG4H,SAGtC5H,EAAG2H,QAAQ7jD,EAAE5a,KAAM,GAGrB,OAAO82D,CACT,EAcAluD,EAAI2yD,kBAAkBnkB,UAAU6lB,cAAgB,SAC5CQ,EAAUf,GAEZ,IAAIC,EAAkB,EACtB,SAASgC,IACkB,KAAnBhC,GAAwBD,GAC5BA,GACJ,CAWA,IARA,IAAIkC,EAAaz/D,KAAK6P,IAAIyuD,GAItBoB,EAASjgE,OAAO6K,KAAKtK,KAAK88D,YAAYwB,IAIjCz9D,GAFA4I,EAAI2yD,kBAAkBgD,eAAeK,EAAYC,GAE7C,GAAG7+D,EAAI4+D,EAAW79D,OAAQf,IAAK,CAC1C,IAAI89B,EAAK8gC,EAAW5+D,GAEhB8+D,EAAeD,EAAOh9D,QAAQi8B,GAIlC,GAHIghC,GAAgB,GAClBD,EAAOroD,OAAOsoD,EAAc,IAEzB3/D,KAAK88D,YAAYwB,GAAU3/B,GAAK,CACnC,IAAIsgC,EAAej/D,KAAK68D,gBAAgByB,GAAUt+D,KAAM2+B,GACxD,IAAKsgC,EAAc,CACjB17D,QAAQC,KAAK,4BAA8B86D,EAAW,KAAO3/B,GAC7D,QACF,CAEAsgC,EAAarO,MAAQ5wD,KAAK4wD,MAC1B5wD,KAAK88D,YAAYwB,GAAU3/B,GAAMsgC,EACjCzB,IACAyB,EAAa3B,YAAYkC,EAC3B,CACF,CAEA,IAAS3+D,EAAI,EAAGA,EAAI6+D,EAAO99D,OAAQf,WAC1Bb,KAAK88D,YAAYwB,GAAUoB,EAAO7+D,KAGtC28D,GAAmBD,GACtBp2D,WAAWo2D,EACf,EAUA9zD,EAAI2yD,kBAAkBnkB,UAAU7wC,MAAQ,SAASqpD,GAC/C,IAAIwN,EAASj+D,KAAK28D,aAAalM,GAC/B,IAAKwN,EACH,MAAM,IAAInyD,MAAM,uBAAyB2kD,GAE3CzwD,KAAKq8D,QAAQuD,WAAW5/D,KAAK2yC,OAAS8d,GAElCwN,EAAOf,eAAiBl9D,KAAK+8D,gBAC/BkB,EAAOf,aAAel9D,KAAK+8D,cAC3B/8D,KAAK4+D,cAAcnO,GAEvB,EAKAhnD,EAAI2yD,kBAAkBnkB,UAAUinB,SAAW,WACzC,IAAIW,EAAU,GAEd,IAAK,IAAIvB,KAAYt+D,KAAK88D,YAAa,CACrC,IAAIlxD,EAAY5L,KAAK88D,YAAYwB,GACjC,IAAK,IAAI3/B,KAAM/yB,EACbA,EAAU+yB,GAAIugC,UAElB,CAEA,IAAK,IAAIzO,KAAQzwD,KAAK28D,aAChB38D,KAAK28D,aAAalM,GAAMyM,eAAiBl9D,KAAK+8D,gBAChD/8D,KAAK28D,aAAalM,GAAMyM,aAAel9D,KAAK+8D,cAC5C8C,EAAQ39D,KAAKuuD,IAIjB,IAAInmD,EAAO7K,OAAO6K,KAAKtK,KAAK28D,cAAcn8D,IAAI,SAASgL,GACnD,OAAOxL,KAAK2yC,OAASnnC,CACzB,EAAEyC,KAAKjO,OAEPA,KAAKq8D,QAAQyD,YAAYx1D,GAEzBu1D,EAAQt1D,QAAQvK,KAAK4+D,cAAc3wD,KAAKjO,MAC1C,EAeAyJ,EAAI2yD,kBAAkBnkB,UAAUgf,KAAO,SAAS/1D,EAAGua,GAEjD,cAAYva,UAAeua,IACrB,sCAAsChM,YAAYvO,IAIjDA,IAAMua,CACf,EAcAhS,EAAI2yD,kBAAkBnkB,UAAUimB,cAAgB,SAASzN,EAAMsP,GAC7D,IAAI9B,EAASj+D,KAAK28D,aAAalM,GAC/B,IAAKwN,EACH,MAAM,IAAInyD,MAAM,uBAAyB2kD,GAEtCzwD,KAAKi3D,KAAKgH,EAAOhB,aAAc8C,KAKhC9B,EAAOf,eAAiBl9D,KAAK+8D,eAMjCkB,EAAOhB,aAAe8C,EAEtB//D,KAAK4+D,cAAcnO,IANjBwN,EAAOhB,aAAe8C,EAO1B,EAQAt2D,EAAI2yD,kBAAkBnkB,UAAU+nB,eAAiB,SAASx/D,GACxD,IAAK,IAAIgK,KAAOhK,EACdR,KAAKk+D,cAAc1zD,EAAKhK,EAAIgK,GAEhC,EAYAf,EAAI2yD,kBAAkBnkB,UAAUjoC,IAAM,SAASygD,EAAMsP,GACnD,IAAI9B,EAASj+D,KAAK28D,aAAalM,GAC/B,IAAKwN,EACH,MAAM,IAAInyD,MAAM,uBAAyB2kD,GAE3C,IAAIwP,EAAWhC,EAAOpuD,MAEjB7P,KAAKi3D,KAAKgJ,EAAUF,KAGrB//D,KAAKi3D,KAAKgH,EAAOhB,aAAc8C,IACjC9B,EAAOf,aAAe6C,EACtB//D,KAAKq8D,QAAQ6D,QAAQlgE,KAAK2yC,OAAS8d,EAAMsP,KAEzC9B,EAAOf,aAAel9D,KAAK+8D,cAC3B/8D,KAAKq8D,QAAQuD,WAAW5/D,KAAK2yC,OAAS8d,IAWxCtpD,WAAWnH,KAAK4+D,cAAc3wD,KAAKjO,KAAMywD,GAAO,GAClD,EAOAhnD,EAAI2yD,kBAAkBnkB,UAAUpoC,IAAM,SAAS4gD,GAC7C,IAAIwN,EAASj+D,KAAK28D,aAAalM,GAC/B,IAAKwN,EACH,MAAM,IAAInyD,MAAM,uBAAyB2kD,GAE3C,OAAOwN,EAAOpuD,KAChB,EAOApG,EAAI2yD,kBAAkBnkB,UAAUkoB,aAAe,WAC7C,IAAIxI,EAAK,CAAC,EAEV,IAAK,IAAIlH,KAAQzwD,KAAK28D,aACpB,GAAIlM,KAAQzwD,KAAK88D,YAAa,CAC5BnF,EAAGlH,GAAQ,GAEX,IADA,IAAI2P,EAAWpgE,KAAK6P,IAAI4gD,GACf5vD,EAAI,EAAGA,EAAIu/D,EAASx+D,OAAQf,IAAK,CACxC,IAAI89B,EAAKyhC,EAASv/D,GAClB82D,EAAGlH,GAAMvuD,KAAK,CAACy8B,GAAIA,EAAI0hC,KAAMrgE,KAAKm/D,SAAS1O,EAAM9xB,GAAIwhC,gBACvD,CAEF,KAAO,CACL,IAAIlC,EAASj+D,KAAK28D,aAAalM,GAC3BwN,EAAOf,cAAgBl9D,KAAK+8D,gBAC9BpF,EAAGlH,GAAQwN,EAAOf,aACtB,CAGF,OAAOvF,CACT,EAOAluD,EAAI2yD,kBAAkBnkB,UAAUqoB,eAAiB,SAASD,GACxD,IAAK,IAAI5P,KAAQ4P,EACf,GAAI5P,KAAQzwD,KAAK88D,YAEf,IADA,IAAIlxD,EAAYy0D,EAAK5P,GACZ5vD,EAAI,EAAGA,EAAI+K,EAAUhK,OAAQf,IAAK,CACzC,IAAI89B,EAAK/yB,EAAU/K,GAAG89B,GAElB4hC,EAAmBvgE,KAAK88D,YAAYrM,GAAM9xB,GACzC4hC,IACHA,EAAmBvgE,KAAK6+D,YAAYpO,EAAM,KAAM9xB,IAElD4hC,EAAiBD,eAAe10D,EAAU/K,GAAGw/D,KAC/C,MAGArgE,KAAKgQ,IAAIygD,EAAM4P,EAAK5P,GAG1B,EAKAhnD,EAAI2yD,kBAAkBnkB,UAAUumB,mBAAqB,SAASF,GAC5Dt+D,KAAK89D,cAAcQ,EACrB,EAKA70D,EAAI2yD,kBAAkBnkB,UAAUukB,iBAAmB,SAASh8D,GAC1D,IAAK,IAAIgK,KAAOhK,EACd,IAAIR,KAAK2yC,QACgC,GAAnCnoC,EAAIg2D,YAAYxgE,KAAK2yC,OAAQ,GADnC,CAKA,IAAI8d,EAAOjmD,EAAIqrD,OAAO71D,KAAK2yC,OAAO/wC,QAElC,GAAM6uD,KAAQzwD,KAAK28D,aAAnB,CAKA,IAAIsB,EAASj+D,KAAK28D,aAAalM,GAE3BsP,EAAWv/D,EAAIgK,GAAKu1D,SACpB7C,EAAee,EAAOf,aACtBA,IAAiBe,EAAOlB,gBAC1BG,OAAe,GAEbl9D,KAAKi3D,KAAKiG,EAAc6C,KAExB9B,EAAOf,aADL,MAAO6C,EACa9B,EAAOlB,cAEPgD,EAGxB//D,KAAK4+D,cAAcnO,GAhBrB,CAPA,CA0BJ,EAmBAhnD,EAAIg3D,SAAW,CACbC,WAAY,CAAC,GAYfj3D,EAAIg3D,SAAStzD,IAAM,SAASsjD,EAAMpxC,EAAMjZ,GACtCqD,EAAIg3D,SAASC,WAAWjQ,GAAQ,CAC9BpxC,KAAMA,EACNoxC,KAAMA,EACNrqD,KAAMA,EAEV,EAYAqD,EAAIg3D,SAAS5wD,IAAM,SAAS4gD,EAAMkQ,GAChC,KAAMlQ,KAAQhnD,EAAIg3D,SAASC,YAAa,CACtC,QAA+B,IAApBC,EACT,KAAM,qBAAuBlQ,EAE/B,OAAOkQ,CACT,CAEA,OAAOl3D,EAAIg3D,SAASC,WAAWjQ,EACjC,EAUAhnD,EAAIg3D,SAASrsD,QAAU,SAASq8C,EAAMkQ,GACpC,KAAMlQ,KAAQhnD,EAAIg3D,SAASC,YAAa,CACtC,QAA+B,IAApBC,EACT,KAAM,qBAAuBlQ,EAE/B,OAAOkQ,CACT,CAEA,OAAOl3D,EAAIg3D,SAASC,WAAWjQ,GAAMrqD,IACvC,EAUAqD,EAAIg3D,SAASG,WAAa,SAASnQ,EAAMkQ,GACvC,IAAIF,EAAWh3D,EAAIg3D,SAAS5wD,IAAI4gD,EAAMkQ,GACtC,MAAO,QAAUF,EAASphD,KAAO,IAAMohD,EAASr6D,IAClD,EAYAqD,EAAIo3D,QAAU,IAAIphE,OAYlBgK,EAAIo3D,QAAQC,OAAS,SAASzE,GAC5Br8D,KAAK+gE,SAAW1E,EAChBr8D,KAAKghE,WAAa,GAElB9I,OAAOmE,QAAQ4E,UAAUxgC,YAAYzgC,KAAKkhE,WAAWjzD,KAAKjO,MAC5D,EAKAyJ,EAAIo3D,QAAQC,OAAO7oB,UAAUipB,WAAa,SAASC,EAASC,GAC1D,GAAIlJ,OAAOmE,QAAQ+E,IAAaphE,KAAK+gE,SAGrC,IAAK,IAAIlgE,EAAI,EAAGA,EAAIb,KAAKghE,WAAWp/D,OAAQf,IAC1Cb,KAAKghE,WAAWngE,GAAGsgE,EAEvB,EAQA13D,EAAIo3D,QAAQC,OAAO7oB,UAAUmlB,YAAc,SAAS1yD,GAClD1K,KAAKghE,WAAW9+D,KAAKwI,EACvB,EAOAjB,EAAIo3D,QAAQC,OAAO7oB,UAAUolB,eAAiB,SAAS3yD,GACrD,IAAI7J,EAAIb,KAAKghE,WAAWt+D,QAAQgI,IACtB,GAAN7J,GACFb,KAAKghE,WAAW3pD,OAAOxW,EAAG,EAC9B,EAQA4I,EAAIo3D,QAAQC,OAAO7oB,UAAUptC,MAAQ,SAAS0yD,GAC5Cv9D,KAAK+gE,SAASl2D,QAEV0yD,GACFp2D,WAAWo2D,EAAc,EAC7B,EASA9zD,EAAIo3D,QAAQC,OAAO7oB,UAAUopB,QAAU,SAAS72D,EAAKE,GACnD1K,KAAK+gE,SAASlxD,IAAIrF,EAAKE,EACzB,EASAjB,EAAIo3D,QAAQC,OAAO7oB,UAAUylB,SAAW,SAASpzD,EAAMI,GACrD1K,KAAK+gE,SAASlxD,IAAIvF,EAAMI,EAC1B,EAYAjB,EAAIo3D,QAAQC,OAAO7oB,UAAUioB,QAAU,SAAS11D,EAAK7K,EAAO49D,GAC1D,IAAIhJ,EAAM,CAAC,EACXA,EAAI/pD,GAAO7K,EACXK,KAAK+gE,SAAS/wD,IAAIukD,EAAKgJ,EACzB,EAUA9zD,EAAIo3D,QAAQC,OAAO7oB,UAAUqpB,SAAW,SAAS/M,EAAKgJ,GACpDv9D,KAAK+gE,SAAS/wD,IAAIukD,EAAKgJ,EACzB,EAUA9zD,EAAIo3D,QAAQC,OAAO7oB,UAAU2nB,WAAa,SAASp1D,EAAK+yD,GACtDv9D,KAAK+gE,SAASzxD,OAAO9E,EAAK+yD,EAC5B,EAUA9zD,EAAIo3D,QAAQC,OAAO7oB,UAAU6nB,YAAc,SAASx1D,EAAMizD,GACxDv9D,KAAK+gE,SAASzxD,OAAOhF,EAAMizD,EAC7B,EAYA9zD,EAAIo3D,QAAQU,MAAQ,WAClBvhE,KAAKghE,WAAa,GAClBhhE,KAAK+gE,SAAW79D,OAAOs+D,aACvBt+D,OAAO+F,iBAAiB,UAAWjJ,KAAKyhE,WAAWxzD,KAAKjO,MAC1D,EAKAyJ,EAAIo3D,QAAQU,MAAMtpB,UAAUwpB,WAAa,SAASziE,GAChD,GAAIA,EAAE0iE,aAAe1hE,KAAK+gE,SAA1B,CAMA,IAAIY,EAAY3iE,EAAEihE,SAAW16D,KAAKoB,MAAM3H,EAAEihE,UAAYjhE,EAAEihE,SACpD2B,EAAW5iE,EAAE+gE,SAAWx6D,KAAKoB,MAAM3H,EAAE+gE,UAAY/gE,EAAE+gE,SACnDhgE,EAAI,CAAC,EACTA,EAAEf,EAAEwL,KAAO,CACTy1D,SAAU0B,EACV5B,SAAU6B,GAGZ,IAAK,IAAI/gE,EAAI,EAAGA,EAAIb,KAAKghE,WAAWp/D,OAAQf,IAC1Cb,KAAKghE,WAAWngE,GAAGd,EAdb,CAgBV,EAQA0J,EAAIo3D,QAAQU,MAAMtpB,UAAUmlB,YAAc,SAAS1yD,GACjD1K,KAAKghE,WAAW9+D,KAAKwI,EACvB,EAOAjB,EAAIo3D,QAAQU,MAAMtpB,UAAUolB,eAAiB,SAAS3yD,GACpD,IAAI7J,EAAIb,KAAKghE,WAAWt+D,QAAQgI,IACtB,GAAN7J,GACFb,KAAKghE,WAAW3pD,OAAOxW,EAAG,EAC9B,EAQA4I,EAAIo3D,QAAQU,MAAMtpB,UAAUptC,MAAQ,SAAS0yD,GAC3Cv9D,KAAK+gE,SAASl2D,QAEV0yD,GACFp2D,WAAWo2D,EAAc,EAC7B,EASA9zD,EAAIo3D,QAAQU,MAAMtpB,UAAUopB,QAAU,SAAS72D,EAAKE,GAClD,IAAI/K,EAAQK,KAAK+gE,SAASM,QAAQ72D,GAElC,GAAoB,iBAAT7K,EACT,IACEA,EAAQ4F,KAAKoB,MAAMhH,EACrB,CAAE,MAAOX,GAET,CAGFmI,WAAWuD,EAASuD,KAAK,KAAMtO,GAAQ,EACzC,EASA8J,EAAIo3D,QAAQU,MAAMtpB,UAAUylB,SAAW,SAASpzD,EAAMI,GAGpD,IAFA,IAAIitD,EAAK,CAAC,EAED92D,EAAIyJ,EAAK1I,OAAS,EAAGf,GAAK,EAAGA,IAAK,CACzC,IAAI2J,EAAMF,EAAKzJ,GACXlB,EAAQK,KAAK+gE,SAASM,QAAQ72D,GAClC,GAAoB,iBAAT7K,EACT,IACEg4D,EAAGntD,GAAOjF,KAAKoB,MAAMhH,EACvB,CAAE,MAAOX,GAEP24D,EAAGntD,GAAO7K,CACZ,MAEA2K,EAAK+M,OAAOxW,EAAG,EAEnB,CAEAsG,WAAWuD,EAASuD,KAAK,KAAM0pD,GAAK,EACtC,EAYAluD,EAAIo3D,QAAQU,MAAMtpB,UAAUioB,QAAU,SAAS11D,EAAK7K,EAAO49D,GACzDv9D,KAAK+gE,SAASb,QAAQ11D,EAAKjF,KAAKC,UAAU7F,IAEtC49D,GACJp2D,WAAWo2D,EAAc,EAC3B,EAUA9zD,EAAIo3D,QAAQU,MAAMtpB,UAAUqpB,SAAW,SAAS/M,EAAKgJ,GACnD,IAAK,IAAI/yD,KAAO+pD,EACdv0D,KAAK+gE,SAASb,QAAQ11D,EAAKjF,KAAKC,UAAU+uD,EAAI/pD,KAG5C+yD,GACJp2D,WAAWo2D,EAAc,EAC3B,EAUA9zD,EAAIo3D,QAAQU,MAAMtpB,UAAU2nB,WAAa,SAASp1D,EAAK+yD,GACrDv9D,KAAK+gE,SAASnB,WAAWp1D,GAErB+yD,GACJp2D,WAAWo2D,EAAc,EAC3B,EAUA9zD,EAAIo3D,QAAQU,MAAMtpB,UAAU6nB,YAAc,SAAS5L,EAAKqJ,GACtD,IAAK,IAAI18D,EAAI,EAAGA,EAAIqzD,EAAItyD,OAAQf,IAC9Bb,KAAK+gE,SAASnB,WAAW1L,EAAIrzD,IAG3B08D,GACJp2D,WAAWo2D,EAAc,EAC3B,EAYA9zD,EAAIo3D,QAAQgB,OAAS,WACnB7hE,KAAKghE,WAAa,GAClBhhE,KAAK+gE,SAAW,CAAC,CACnB,EAQAt3D,EAAIo3D,QAAQgB,OAAO5pB,UAAUmlB,YAAc,SAAS1yD,GAClD1K,KAAKghE,WAAW9+D,KAAKwI,EACvB,EAOAjB,EAAIo3D,QAAQgB,OAAO5pB,UAAUolB,eAAiB,SAAS3yD,GACrD,IAAI7J,EAAIb,KAAKghE,WAAWt+D,QAAQgI,IACtB,GAAN7J,GACFb,KAAKghE,WAAW3pD,OAAOxW,EAAG,EAC9B,EAQA4I,EAAIo3D,QAAQgB,OAAO5pB,UAAUptC,MAAQ,SAAS0yD,GAC5C,IAAIv+D,EAAI,CAAC,EACT,IAAK,IAAIwL,KAAOxK,KAAK+gE,SACnB/hE,EAAEwL,GAAO,CAACy1D,SAAUjgE,KAAK+gE,SAASv2D,GAAMu1D,cAAU,GAGpD//D,KAAK+gE,SAAW,CAAC,EAEjB55D,WAAW,WACT,IAAK,IAAItG,EAAI,EAAGA,EAAIb,KAAKghE,WAAWp/D,OAAQf,IAC1Cb,KAAKghE,WAAWngE,GAAG7B,EAEvB,EAAEiP,KAAKjO,MAAO,GAEVu9D,GACFp2D,WAAWo2D,EAAc,EAC7B,EASA9zD,EAAIo3D,QAAQgB,OAAO5pB,UAAUopB,QAAU,SAAS72D,EAAKE,GACnD,IAAI/K,EAAQK,KAAK+gE,SAASv2D,GAE1B,GAAoB,iBAAT7K,EACT,IACEA,EAAQ4F,KAAKoB,MAAMhH,EACrB,CAAE,MAAOX,GAET,CAGFmI,WAAWuD,EAASuD,KAAK,KAAMtO,GAAQ,EACzC,EASA8J,EAAIo3D,QAAQgB,OAAO5pB,UAAUylB,SAAW,SAASpzD,EAAMI,GAGrD,IAFA,IAAIitD,EAAK,CAAC,EAED92D,EAAIyJ,EAAK1I,OAAS,EAAGf,GAAK,EAAGA,IAAK,CACzC,IAAI2J,EAAMF,EAAKzJ,GACXlB,EAAQK,KAAK+gE,SAASv2D,GAC1B,GAAoB,iBAAT7K,EACT,IACEg4D,EAAGntD,GAAOjF,KAAKoB,MAAMhH,EACvB,CAAE,MAAOX,GAEP24D,EAAGntD,GAAO7K,CACZ,MAEA2K,EAAK+M,OAAOxW,EAAG,EAEnB,CAEAsG,WAAWuD,EAASuD,KAAK,KAAM0pD,GAAK,EACtC,EAYAluD,EAAIo3D,QAAQgB,OAAO5pB,UAAUioB,QAAU,SAAS11D,EAAK7K,EAAO49D,GAC1D,IAAI0C,EAAWjgE,KAAK+gE,SAASv2D,GAC7BxK,KAAK+gE,SAASv2D,GAAOjF,KAAKC,UAAU7F,GAEpC,IAAIX,EAAI,CAAC,EACTA,EAAEwL,GAAO,CAACy1D,SAAUA,EAAUF,SAAUpgE,GAExCwH,WAAW,WACT,IAAK,IAAItG,EAAI,EAAGA,EAAIb,KAAKghE,WAAWp/D,OAAQf,IAC1Cb,KAAKghE,WAAWngE,GAAG7B,EAEvB,EAAEiP,KAAKjO,MAAO,GAEVu9D,GACJp2D,WAAWo2D,EAAc,EAC3B,EAUA9zD,EAAIo3D,QAAQgB,OAAO5pB,UAAUqpB,SAAW,SAAS/M,EAAKgJ,GACpD,IAAIv+D,EAAI,CAAC,EAET,IAAK,IAAIwL,KAAO+pD,EACdv1D,EAAEwL,GAAO,CAACy1D,SAAUjgE,KAAK+gE,SAASv2D,GAAMu1D,SAAUxL,EAAI/pD,IACtDxK,KAAK+gE,SAASv2D,GAAOjF,KAAKC,UAAU+uD,EAAI/pD,IAG1CrD,WAAW,WACT,IAAK,IAAItG,EAAI,EAAGA,EAAIb,KAAKghE,WAAWp/D,OAAQf,IAC1Cb,KAAKghE,WAAWngE,GAAG7B,EAEvB,EAAEiP,KAAKjO,OAEHu9D,GACJp2D,WAAWo2D,EAAc,EAC3B,EAUA9zD,EAAIo3D,QAAQgB,OAAO5pB,UAAU2nB,WAAa,SAASp1D,EAAK+yD,UAC/Cv9D,KAAK+gE,SAASv2D,GAEjB+yD,GACJp2D,WAAWo2D,EAAc,EAC3B,EAUA9zD,EAAIo3D,QAAQgB,OAAO5pB,UAAU6nB,YAAc,SAAS5L,EAAKqJ,GACvD,IAAK,IAAI18D,EAAI,EAAGA,EAAIqzD,EAAItyD,OAAQf,WACvBb,KAAK+gE,SAAS7M,EAAIrzD,IAGvB08D,GACJp2D,WAAWo2D,EAAc,EAC3B,EAiCA9zD,EAAIq4D,YAAc,SAASC,GACzB/hE,KAAK8G,IAAMi7D,GAAW,IAAIt4D,EAAIq4D,YAAYE,GAC5C,EAUAv4D,EAAIq4D,YAAY7pB,UAAUgqB,cAAgB,SAASC,GACjD,OAAO,IAAIz4D,EAAIq4D,YAAYK,QAAQniE,KAAMkiE,EAC3C,EAOAz4D,EAAIq4D,YAAY7pB,UAAUmqB,kBAAoB,SAASC,GAAU,EASjE54D,EAAIq4D,YAAY7pB,UAAUqqB,aAAe,SAASC,EAAQC,GAAK,EAS/D/4D,EAAIq4D,YAAY7pB,UAAUwqB,cAAgB,SAASF,EAAQC,GAAK,EAWhE/4D,EAAIq4D,YAAYE,IAAM,SAASU,EAAYn/D,SACzCvD,KAAK2iE,MAAO,EACZ3iE,KAAKoG,KAAO,GACZpG,KAAK4iE,QAAU,GACf5iE,KAAK6iE,aAAe,EAKpB7iE,KAAK8iE,SAAWJ,EAChB,CAAC,MAAO,QAAS,OAAQ,OAAQ,SAASn4D,QAASw4D,IACjD,IAAIC,EAAY,GAChB,OAAQD,GACN,IAAK,QACL,IAAK,OACL,IAAK,QACHC,EAAYD,EAAMrc,cAAgB,KAItC,MAAMuc,EAAOjjE,KAAK8iE,SAASC,GAC3B/iE,KAAK+iE,GAAS/iE,KAAK8iE,SAASC,GAAS,IAAIp+D,KACnC3E,KAAK2iE,OACP3iE,KAAKoG,MAAQpG,KAAK4iE,QAAUI,EAAYr+D,EAAKrD,KAAK,KAAO,MAC3D2hE,EAAK7Z,MAAMppD,KAAK8iE,SAAUn+D,MAK9B,CAAC,QAAS,kBAAkB4F,QAAS24D,IACnC,MAAMC,EAASnjE,KAAK8iE,SAASI,GAC7BljE,KAAKkjE,GAASljE,KAAK8iE,SAASI,GAAS,CAACE,EAAM,MAC1CD,EAAOC,GACHpjE,KAAK2iE,OACP3iE,KAAKoG,MAAQpG,KAAK4iE,QAAUQ,EAAQ,MACtCpjE,KAAK4iE,QAAU,KAAK3mC,SAASj8B,KAAK6iE,iBAItC,MAAMQ,EAAYrjE,KAAK8iE,SAASQ,SAChCtjE,KAAKsjE,SAAWtjE,KAAK8iE,SAASQ,SAAW,KACvCD,IACArjE,KAAK4iE,QAAU,KAAK3mC,SAASj8B,KAAK6iE,cAEtC,EA+DAp5D,EAAIq4D,YAAYyB,MAAQ,SAASC,GAC/B,SAASC,EAAKC,EAAalB,GACzBxiE,KAAK2jE,aAAeD,EACpB1jE,KAAKwjE,UAAYA,EAEjBxjE,KAAKkF,MAAMs9D,EACb,CAcA,OAZAiB,EAAKD,UAAYA,EACjBC,EAAKG,QAAUn6D,EAAIq4D,YAAYyB,MAAMK,QACrCH,EAAKI,YAAcp6D,EAAIq4D,YAAYyB,MAAMM,YACzCJ,EAAKK,QAAUr6D,EAAIq4D,YAAYyB,MAAMO,QACrCL,EAAKM,YAAct6D,EAAIq4D,YAAYyB,MAAMQ,YACzCN,EAAKO,UAAY,GACjBP,EAAKQ,SAAW,CAAC,EACjBR,EAAKxrB,UAAYx4C,OAAOwF,OAAOwE,EAAIq4D,YAAYyB,MAAMtrB,WACrDwrB,EAAK3jE,YAAc2J,EAAIq4D,YAAYyB,MAEnC95D,EAAIq4D,YAAYyB,MAAMW,WAAWhiE,KAAKuhE,GAE/BA,CACT,EAKAh6D,EAAIq4D,YAAYyB,MAAMW,WAAa,GAOnCz6D,EAAIq4D,YAAYyB,MAAMK,QAAU,SAASO,EAAUC,GACjD,GAAID,KAAYnkE,KAAKikE,SACnB,KAAM,wBAA0BE,EAElC,IAAI10D,EAAO,IAAIhG,EAAIq4D,YAAYuC,KAAKrkE,KAAMmkE,EAAUC,GACpDpkE,KAAKikE,SAASE,GAAY10D,EAC1BzP,KAAKgkE,UAAU9hE,KAAKuN,EACtB,EAKAhG,EAAIq4D,YAAYyB,MAAMM,YAAc,SAASM,EAAUC,GACrD,GAAID,KAAYnkE,KAAKikE,SACnB,KAAM,wBAA0BE,EAElC,IAAI10D,EAAO,IAAIhG,EAAIq4D,YAAYuC,KAAKrkE,KAAMmkE,EAAUC,GACpD7gE,QAAQuD,IAAI,kBAAoB2I,EAAK60D,SACvC,EAWA76D,EAAIq4D,YAAYyB,MAAMO,QAAU,SAASK,GACvC,OAAOnkE,KAAKikE,SAASE,EACvB,EAOA16D,EAAIq4D,YAAYyB,MAAMQ,YAAc,WAClC,OAAO/jE,KAAKgkE,SACd,EAsBAv6D,EAAIq4D,YAAYyB,MAAMtrB,UAAUssB,YAAc,SAAS/B,EAAIpE,GACzD,IAAK,IAAIxiD,KAAKwiD,EACZp+D,KAAK4b,GAAMA,KAAK4mD,EAAMA,EAAG5mD,GAAKwiD,EAASxiD,EAE3C,EAuBAnS,EAAIq4D,YAAYyB,MAAMtrB,UAAU/yC,MAAQ,SAASs9D,GAAK,EAiBtD/4D,EAAIq4D,YAAYyB,MAAMtrB,UAAUusB,SAAW,SAASjC,EAAQC,GAAK,EAiBjE/4D,EAAIq4D,YAAYyB,MAAMtrB,UAAUwsB,UAAY,SAASlC,EAAQC,GAAK,EAiBlE/4D,EAAIq4D,YAAYuC,KAAO,SAASK,EAAYP,EAAUC,GAIpDpkE,KAAK0kE,WAAaA,EAKlB1kE,KAAKmkE,SAAWA,EAKhBnkE,KAAKskE,SAAWI,EAAWlB,UAAY,IAAMW,EAAW,IAGxDnkE,KAAK2kE,cAAgBP,CACvB,EAUA36D,EAAIq4D,YAAYuC,KAAKpsB,UAAU2sB,IAAM,SAASrC,GAC5C,IAEEviE,KAAK2kE,cAAcvb,MAAMmZ,EAAOsC,MACP,CAACtC,EAAQA,EAAOF,QAAQG,IACnD,CAAE,MAAO3O,GACP,GAAIA,aAAcpqD,EAAIq4D,YAAYgD,OAAOC,aACvC,OAEFxC,EAAOyC,QAAQ,6BAA+BnR,GAE1CA,EAAGE,QACDF,EAAGE,iBAAiBxrB,MACtBg6B,EAAOyC,QAAQnR,EAAGE,MAAMzyD,KAAK,OAE7BihE,EAAOyC,QAAQnR,EAAGE,QAItBwO,EAAO0C,cAAc1C,EAAO2C,QAAQ,EACtC,CACF,EAaAz7D,EAAIq4D,YAAYK,QAAU,SAASuB,EAAalB,GAI9CxiE,KAAK0jE,YAAcA,EAKnB1jE,KAAK8G,IAAM48D,EAAY58D,IAMvB9G,KAAKwiE,GAAKA,GAAM,CAAC,EAKjBxiE,KAAKmlE,SAAW,GAKhBnlE,KAAKolE,OAAS,GAKdplE,KAAKqlE,UAAY,KAMjBrlE,KAAKslE,SAAW,KAOhBtlE,KAAKulE,cAAgB,KAOrBvlE,KAAKwlE,YAAc,EAKnBxlE,KAAKylE,OAAQ,EAGbzlE,KAAK0lE,WAAa,EAEpB,EAMAj8D,EAAIq4D,YAAYK,QAAQlqB,UAAU0tB,UAAYl8D,EAAI0R,EAAEk8C,WAAW,eAK/D5tD,EAAIq4D,YAAYK,QAAQlqB,UAAU2tB,WAAa,SAASn2D,GACtDzP,KAAK0lE,WAAWxjE,KAAKuN,EACvB,EAEAhG,EAAIq4D,YAAYK,QAAQlqB,UAAU4tB,YAAc,SAC5CnB,EAAYoB,GAKd,IAJA,IAAIxL,EAAUwL,GAAe9lE,KAAK2lE,UAC9BI,EAAc,EACdC,EAAWtB,EAAWX,cAEjBnqC,EAAI,EAAGA,EAAIosC,EAASpkE,OAAQg4B,IAAK,CACxC,IAAInqB,EAAOu2D,EAASpsC,GAGpB,GAAI0gC,IAAYt6D,KAAK2lE,UACnB,GAAIrL,aAAmBv5D,QACrB,IAAKu5D,EAAQ7qD,KAAKA,EAAK00D,UACrB,cACG,GAAI10D,EAAK00D,UAAY7J,EAC1B,SAIJt6D,KAAK4lE,WAAWn2D,GAChBs2D,GACF,CAEA,OAAOA,CACT,EAeAt8D,EAAIq4D,YAAYK,QAAQlqB,UAAUguB,cAAgB,SAAS3L,GAGzD,IAFA,IAAIyL,EAAc,EAETllE,EAAI,EAAGA,EAAI4I,EAAIq4D,YAAYyB,MAAMW,WAAWtiE,OAAQf,IAC3DklE,GAAe/lE,KAAK6lE,YAAYp8D,EAAIq4D,YAAYyB,MAAMW,WAAWrjE,GACjCy5D,GAOlC,OAJKyL,GACH/lE,KAAK8G,IAAItD,KAAK,wCAA0C82D,GAGnDyL,CACT,EAMAt8D,EAAIq4D,YAAYK,QAAQlqB,UAAUiuB,qBAAuB,SACrD59D,EAAS69D,EAAMj2C,GAEjB,GAAuE,GAAnE5nB,EAAQ5F,QAAQ,kDACsB,GAAtC4F,EAAQ5F,QAAQ,kBAIlB,OAAO,EAGT,GAAK1C,KAAKulE,eAGNj9D,GAAW,YAActI,KAAKulE,cAAca,sBAAhD,CAKA,IAAIC,EAAO,SAWX,OATIrmE,KAAKulE,cAAclK,QAAUr7D,KAAKulE,cAAce,UAClDD,EAAO,SAETrmE,KAAK8G,IAAIyC,MAAM,sBAAwB88D,EAAO,eAC/BrmE,KAAKulE,cAAc91D,KAAK60D,UACvCtkE,KAAK8G,IAAIyC,MAAMjB,EAAU,KAAO69D,EAAO,IAAMj2C,GAE7ClwB,KAAKulE,cAAcN,cAAcjlE,KAAKulE,cAAcL,QAAQ,IAErD,CAbP,CAcF,EAaAz7D,EAAIq4D,YAAYK,QAAQlqB,UAAUsuB,mBAAqB,SACnDC,GACGA,GASLxmE,KAAKslE,SAAW,IAAK/5C,KAAUvrB,KAAKqlE,UAEpCrlE,KAAK8G,IAAIw8D,WACTtjE,KAAK8G,IAAIzB,KAAKrF,KAAKolE,OAAOxjE,OAAS,YACrB5B,KAAKmlE,SAASvjE,OAAS,YACvB5B,KAAKymE,aAAazmE,KAAKslE,WAErCtlE,KAAK0mE,YAELxjE,OAAOyjE,QAAU,KAEjB3mE,KAAK0jE,YAAYtB,kBAAkBpiE,OAfjCmH,WAAWnH,KAAKumE,mBAAmBt4D,KAAKjO,MAAO,GAAG,EAgBtD,EAQAyJ,EAAIq4D,YAAYK,QAAQlqB,UAAU2uB,iBAAmB,SAASrE,GAC5D,IACEviE,KAAK0jE,YAAYjB,cAAcF,EAAQviE,KAAKwiE,IAC5CD,EAAOsC,MAAMJ,UAAUlC,EAAQviE,KAAK6mE,IACtC,CAAE,MAAOhT,GACP7zD,KAAK8G,IAAIyC,MAAM,uCACCsqD,EAAGE,MAAQF,EAAGE,MAAQF,IACtC7zD,KAAKylE,OAAQ,CACf,CAQA,GANIlD,EAAOlH,QAAUkH,EAAOuE,OAC1B9mE,KAAK8G,IAAIyC,MAAMg5D,EAAOlH,QACfkH,EAAO+C,SAAW,KACzBtlE,KAAK8G,IAAItD,KAAK,kBAAoBxD,KAAKymE,aAAalE,EAAO+C,WAC7DtlE,KAAK8G,IAAIw8D,WAELf,EAAOlH,QAAUkH,EAAO2C,OAC1BllE,KAAKmlE,SAASjjE,KAAKqgE,GACnBviE,KAAK+mE,aAAe,SACf,IAAIxE,EAAOlH,QAAUkH,EAAOuE,OAKjC,OAFA9mE,KAAK8G,IAAIyC,MAAM,0BAA4Bg5D,EAAO9yD,KAAK60D,SAAW,KACnD/B,EAAOlH,QACfr7D,KAAKylE,OAAQ,EAJpBzlE,KAAKolE,OAAOljE,KAAKqgE,EAKnB,CAEAviE,KAAKgnE,cACP,EAqBAv9D,EAAIq4D,YAAYK,QAAQlqB,UAAUgvB,mBAAqB,SACnD1E,EAAQ2E,GACVlnE,KAAK8G,IAAIyC,MAAM,2BAA6Bg5D,EAAO9yD,KAAK60D,SAAW,KACpD4C,GAIf,IAAIvlE,EAAQ3B,KAAKolE,OAAO1iE,QAAQ6/D,GAC5B5gE,GAAS,IACX3B,KAAKolE,OAAO/tD,OAAO1V,EAAO,GAC1B3B,KAAKmlE,SAASjjE,KAAKqgE,GAEvB,EAKA94D,EAAIq4D,YAAYK,QAAQlqB,UAAU+uB,aAAe,WAC/C,GAAIhnE,KAAKylE,QAAUzlE,KAAK0lE,WAAW9jE,OACjC,OAAO5B,KAAKumE,qBAEd,GAAIvmE,KAAKwlE,aAAexlE,KAAKmlE,SAASvjE,QAAU5B,KAAKwlE,YAEnD,OADAxlE,KAAK8G,IAAIyC,MAAM,qDACRvJ,KAAKumE,qBAMd,IAAI92D,EAAOzP,KAAK0lE,WAAW,GACvBb,EAAQ7kE,KAAKulE,cAAgBvlE,KAAKulE,cAAcV,MAAQ,KAE5D,IACOA,GAAWA,aAAiBp1D,EAAKi1D,aAChCG,GACF7kE,KAAK8G,IAAIw8D,WACXtjE,KAAK8G,IAAIo8D,MAAMzzD,EAAKi1D,WAAWlB,WAC/BqB,EAAQ,IAAIp1D,EAAKi1D,WAAW1kE,KAAK0jE,YAAa1jE,KAAKwiE,IAEvD,CAAE,MAAO3O,GAKP,OAHA7zD,KAAK8G,IAAIyC,MAAM,4BAA8BsqD,EAAGE,MAAQF,EAAGE,MAAQF,IACnE7zD,KAAKylE,OAAQ,OACbzlE,KAAKumE,oBAEP,CAEA,IACEvmE,KAAK8G,IAAIo8D,MAAMzzD,EAAK00D,UAEpBnkE,KAAKulE,cAAgB,IAAI97D,EAAIq4D,YAAYgD,OAAO9kE,KAAM6kE,EAAOp1D,GAC7DzP,KAAK0jE,YAAYpB,aAAatiE,KAAKulE,cAAevlE,KAAKwiE,IACvDqC,EAAML,SAASxkE,KAAKulE,cAAevlE,KAAKwiE,IAExCxiE,KAAK0lE,WAAWn2D,OAClB,CAAE,MAAOskD,GAOP,OANA7zD,KAAK8G,IAAIyC,MAAM,+CACCsqD,EAAGE,MAAQF,EAAGE,MAAQF,IACtC7zD,KAAK8G,IAAIw8D,WAETtjE,KAAKylE,OAAQ,OACbzlE,KAAKumE,oBAEP,CAEA,IACEvmE,KAAKulE,cAAcX,KACrB,CAAE,MAAO/Q,GAGP7zD,KAAK8G,IAAIyC,MAAM,0CACCsqD,EAAGE,MAAQF,EAAGE,MAAQF,IACtC7zD,KAAKylE,OAAQ,CACf,CACF,EAoBAh8D,EAAIq4D,YAAYK,QAAQlqB,UAAU2sB,IAAM,WACtC5kE,KAAK8G,IAAIzB,KAAK,WAAarF,KAAK0lE,WAAW9jE,OAAS,YAEpDsB,OAAOyjE,QAAU3mE,KAAKkmE,qBAAqBj4D,KAAKjO,MAChDA,KAAKqlE,UAAY,IAAI95C,KACrBvrB,KAAKgnE,cACP,EAKAv9D,EAAIq4D,YAAYK,QAAQlqB,UAAUwuB,aAAe,SAASvN,GAExD,OADYA,EAAK,KAAMluC,QAAQ,GACjB,GAChB,EAKAvhB,EAAIq4D,YAAYK,QAAQlqB,UAAUyuB,UAAY,WAC5C,GAAI1mE,KAAKmlE,SAASvjE,OAChB,IAAK,IAAIf,EAAI,EAAGA,EAAIb,KAAKmlE,SAASvjE,OAAQf,IACxCb,KAAK8G,IAAIyC,MAAM,WAAavJ,KAAKmlE,SAAStkE,GAAG4O,KAAK60D,UAIlDtkE,KAAK0lE,WAAW9jE,QAClB5B,KAAK8G,IAAItD,KAAK,wBAA0BxD,KAAK0lE,WAAW9jE,OAC1C,yBAElB,EAmBA6H,EAAIq4D,YAAYgD,OAAS,SAASzC,EAASwC,EAAOp1D,GAIhDzP,KAAKqiE,QAAUA,EAKfriE,KAAK6kE,MAAQA,EAKb7kE,KAAKyP,KAAOA,EAKZzP,KAAKqlE,UAAY,KAMjBrlE,KAAKslE,SAAW,KAKhBtlE,KAAKq7D,OAASr7D,KAAKsmE,QAGnBtmE,KAAKomE,sBAAwB,IAC/B,EAKA38D,EAAIq4D,YAAYgD,OAAO7sB,UAAUquB,QAAU,UAC3C78D,EAAIq4D,YAAYgD,OAAO7sB,UAAUitB,OAAU,SAC3Cz7D,EAAIq4D,YAAYgD,OAAO7sB,UAAU6uB,OAAU,SAM3Cr9D,EAAIq4D,YAAYgD,OAAOC,aAAe,SAASxC,GAC7CviE,KAAKuiE,OAASA,CAChB,EAEA94D,EAAIq4D,YAAYgD,OAAOC,aAAa9sB,UAAUroC,SAAW,WACvD,MAAO,wCAA0C5P,KAAKuiE,OAAO9yD,KAAK60D,SAC9D,aAAetkE,KAAKuiE,OAAOlH,MACjC,EAKA5xD,EAAIq4D,YAAYgD,OAAO7sB,UAAU2sB,IAAM,WAGrC5kE,KAAKqlE,UAAY,IAAI95C,KACrBvrB,KAAKyP,KAAKm1D,IAAI5kE,MAEVA,KAAKq7D,QAAUr7D,KAAKsmE,SAAYtmE,KAAKmnE,WACvCnnE,KAAKglE,QAAQ,8DACbhlE,KAAKilE,cAAcjlE,KAAKklE,QAAQ,GAEpC,EAWAz7D,EAAIq4D,YAAYgD,OAAO7sB,UAAUmvB,mBAAqB,SAAS7P,GAC7Dv3D,KAAKomE,sBAAwB7O,CAC/B,EAKA9tD,EAAIq4D,YAAYgD,OAAO7sB,UAAUovB,WAAa,WAC5CrnE,KAAKmnE,SAAW,KAEZnnE,KAAKq7D,QAAUr7D,KAAKsmE,UAGxBtmE,KAAKglE,QAAQ,mBACbhlE,KAAKilE,cAAcjlE,KAAKklE,QAAQ,GAClC,EAkBAz7D,EAAIq4D,YAAYgD,OAAO7sB,UAAUqvB,YAAc,SAASpO,GAClDl5D,KAAKmnE,UACP9/D,aAAarH,KAAKmnE,UAEpBnnE,KAAKmnE,SAAWhgE,WAAWnH,KAAKqnE,WAAWp5D,KAAKjO,MAAOk5D,EACzD,EASAzvD,EAAIq4D,YAAYgD,OAAO7sB,UAAUgtB,cAAgB,SAAS5J,EAAQkM,GAUhE,GATIvnE,KAAKq7D,QAAUr7D,KAAKsmE,SACtBtmE,KAAKslE,SAAW,IAAK/5C,KAAUvrB,KAAKqlE,UACpCrlE,KAAKq7D,OAASA,EAEdr7D,KAAKqiE,QAAQuE,iBAAiB5mE,OAE9BA,KAAKqiE,QAAQ4E,mBAAmBjnE,KAAMq7D,GAGpCpvD,UAAUrK,OAAS,GAAK2lE,EAC1B,MAAM,IAAI99D,EAAIq4D,YAAYgD,OAAOC,aAAa/kE,KAClD,EAKAyJ,EAAIq4D,YAAYgD,OAAO7sB,UAAUuvB,SAAW,SAASC,EAAQC,GAC3D,IAAKD,IAAWC,EACd,OAASD,IAAWC,EAEtB,GAAID,EAAO7lE,QAAU8lE,EAAS9lE,OAC5B,OAAO,EAET,IAAK,IAAIf,EAAI,EAAGA,EAAI4mE,EAAO7lE,SAAUf,EACnC,GAAI4mE,EAAO5mE,IAAM6mE,EAAS7mE,GACxB,OAAO,EAEX,OAAO,CACT,EAgBA4I,EAAIq4D,YAAYgD,OAAO7sB,UAAU0vB,SAAW,SACxCF,EAAQC,EAAUE,GAEpB,SAASC,EAAOloE,GACd,GAAoB,iBAATA,EACT,OAAOA,EAET,IACIu0D,EADMprD,OAAOnJ,GACHu4C,MAAM,MAAM13C,IAAI,SAAUxB,GAAK,OAAOuG,KAAKC,UAAUxG,EAAG,GACtE,OAAIk1D,EAAItyD,OAAS,EAGR,KAAOsyD,EAAI5yD,KAAK,MAEhB4yD,EAAI5yD,KAAK,KAEpB,CAEA,GAAImmE,IAAWC,KAIXA,aAAoBn/B,OAClBvoC,KAAKwnE,SAASC,EAAQC,IAD5B,CAIA,IAAIjX,EAAOmX,EAAW,IAAMA,EAAW,IAAM,GAE7C5nE,KAAK8nE,KAAK,WAAarX,EAAO,KAAOzwD,KAAK+nE,mBAAmB,GAAK,KACxDF,EAAOJ,GAAU,QAAUI,EAAOH,GALlC,CAMZ,EAgBAj+D,EAAIq4D,YAAYgD,OAAO7sB,UAAU+vB,OAAS,SAASP,EAAQG,GACzD,IAAe,IAAXH,EAAJ,CAGA,IAAIhX,EAAOmX,EAAW,IAAMA,EAAW,IAAM,GAE7C5nE,KAAK8nE,KAAK,SAAWrX,EAAO,KAAOzwD,KAAK+nE,mBAAmB,GAAK,KACtDj/D,OAAO2+D,GALT,CAMV,EAYAh+D,EAAIq4D,YAAYgD,OAAO7sB,UAAU8vB,mBAAqB,SAASE,GAC7D,IACE,MAAM,IAAIn8D,KACZ,CAAE,MAAO+nD,GACP,IACIK,EADQL,EAAGE,MAAM7b,MAAM,MAAM+vB,EAAa,GAC9Bx+B,MAAM,uBACtB,OAAOyqB,EAAMA,EAAI,GAAK,KACxB,CACF,EAKAzqD,EAAIq4D,YAAYgD,OAAO7sB,UAAU+sB,QAAU,SAAS18D,GAClDtI,KAAKqiE,QAAQv7D,IAAIzB,KAAKiD,EACxB,EASAmB,EAAIq4D,YAAYgD,OAAO7sB,UAAU6vB,KAAO,SAASI,GAC3Cj8D,UAAUrK,QACZ5B,KAAKglE,QAAQkD,GAEfloE,KAAKilE,cAAcjlE,KAAKklE,QAAQ,EAClC,EAOAz7D,EAAIq4D,YAAYgD,OAAO7sB,UAAUkwB,KAAO,WACtCnoE,KAAKilE,cAAcjlE,KAAK8mE,QAAQ,EAClC,EAiBAr9D,EAAIC,YAAc,WAEhB1J,KAAKooE,UAAY,EAEjBpoE,KAAKqoE,UAAY,EAEjBroE,KAAKsoE,WAAa,CACpB,EAWA7+D,EAAIC,YAAYuuC,UAAUruC,OAAS,SAAS2tD,GAE1C,IADA,IAAIgR,EAAM,GACD1nE,EAAI,EAAGA,EAAI02D,EAAI31D,OAAQf,IAAK,CACnC,IAAIM,EAAIo2D,EAAI1tC,WAAWhpB,GACvB,GAAsB,GAAlBb,KAAKooE,UACHjnE,GAAK,IACPonE,GAAOhR,EAAIvyB,OAAOnkC,GACT,KAAQM,GAAKA,GAAK,KAC3BnB,KAAKqoE,UAAYlnE,EAAI,IACrBnB,KAAKooE,UAAY,EACjBpoE,KAAKsoE,WAAa,KACT,KAAQnnE,GAAKA,GAAK,KAC3BnB,KAAKqoE,UAAYlnE,EAAI,IACrBnB,KAAKooE,UAAY,EACjBpoE,KAAKsoE,WAAa,MACT,KAAQnnE,GAAKA,GAAK,KAC3BnB,KAAKqoE,UAAYlnE,EAAI,IACrBnB,KAAKooE,UAAY,EACjBpoE,KAAKsoE,WAAa,OACT,KAAQnnE,GAAKA,GAAK,KAC3BnB,KAAKqoE,UAAYlnE,EAAI,IACrBnB,KAAKooE,UAAY,EACjBpoE,KAAKsoE,WAAa,SACT,KAAQnnE,GAAKA,GAAK,KAC3BnB,KAAKqoE,UAAYlnE,EAAI,IACrBnB,KAAKooE,UAAY,EACjBpoE,KAAKsoE,WAAa,UAElBC,GAAO,SAGT,GAAI,KAAQpnE,GAAKA,GAAK,KAGpB,GAFAnB,KAAKooE,YACLpoE,KAAKqoE,WAAaroE,KAAKqoE,WAAa,IAAMlnE,EAAI,KACxB,GAAlBnB,KAAKooE,UAAgB,CAGvB,IAAIC,EAAYroE,KAAKqoE,UACjBA,EAAYroE,KAAKsoE,YACb,OAAUD,GAAaA,GAAa,OACrCA,EAAY,QACjBE,GAAO,IAGHF,EAAY,MACdE,GAAOz/D,OAAOuhB,aAAag+C,IAG3BA,GAAa,MACbE,GAAOz/D,OAAOuhB,aACZ,OAAWg+C,IAAc,GAAM,MAC/B,OAAsB,KAAZA,IAGlB,OAIAE,GAAO,IACPvoE,KAAKooE,UAAY,EACjBvnE,GAGN,CACA,OAAO0nE,CACT,EAWA9+D,EAAI++D,WAAa,SAASC,GACxB,OAAO,IAAKh/D,EAAIC,aAAeE,OAAO6+D,EACxC,EAaAh/D,EAAIi/D,WAAa,SAASnR,GAExB,IADA,IAAIgR,EAAM,GACD1nE,EAAI,EAAGA,EAAI02D,EAAI31D,OAAQf,IAAK,CAEnC,IAmBIunE,EAnBAjnE,EAAIo2D,EAAI1tC,WAAWhpB,GACvB,GAAI,OAAUM,GAAKA,GAAK,MACtBA,EAAI,WACC,GAAI,OAAUA,GAAKA,GAAK,MAC7B,GAAIN,EAAE,EAAI02D,EAAI31D,OAAQ,CACpB,IAAIL,EAAIg2D,EAAI1tC,WAAWhpB,EAAE,GACrB,OAAUU,GAAKA,GAAK,OAEtBJ,EAAI,QAAgB,KAAJA,IAAc,KAAW,KAAJI,GACrCV,KAEAM,EAAI,KAER,MACEA,EAAI,MAMR,GAAIA,GAAK,IACPonE,GAAOhR,EAAIvyB,OAAOnkC,QAapB,IAXWM,GAAK,MACdonE,GAAOz/D,OAAOuhB,aAAa,IAAQlpB,IAAM,GACzCinE,EAAY,GACHjnE,GAAK,OACdonE,GAAOz/D,OAAOuhB,aAAa,IAAQlpB,IAAM,IACzCinE,EAAY,IAEZG,GAAOz/D,OAAOuhB,aAAa,IAAQlpB,IAAM,IACzCinE,EAAY,GAGPA,EAAY,GACjBA,IACAG,GAAOz/D,OAAOuhB,aAAa,IAASlpB,IAAO,EAAIinE,EAAc,GAEjE,CACA,OAAOG,CACT,EAuGA9+D,EAAIk/D,GAAK,CAAC,EAGVl/D,EAAIk/D,GAAGC,SAAW,EAGlBn/D,EAAIk/D,GAAGE,aAAe,EAGtBp/D,EAAIk/D,GAAGG,oBAAqB,EAG5Br/D,EAAIk/D,GAAGI,kBAAoB,EAI3Bt/D,EAAIk/D,GAAGK,UAAY,CACf,CAAE,IAAQ,KAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,MAAQ,OAClD,CAAE,MAAQ,OAAU,CAAE,MAAQ,OAAU,CAAE,MAAQ,OAClD,CAAE,MAAQ,OAAU,CAAE,MAAQ,OAAU,CAAE,MAAQ,OAClD,CAAE,MAAQ,OAAU,CAAE,MAAQ,OAAU,CAAE,MAAQ,OAClD,CAAE,MAAS,OAAW,CAAE,MAAS,OAAW,CAAE,MAAS,OACvD,CAAE,MAAS,OAAW,CAAE,MAAS,OAAW,CAAE,OAAS,QACvD,CAAE,OAAS,QAAW,CAAE,OAAS,QAAW,CAAE,OAAS,QACvD,CAAE,OAAS,QAAW,CAAE,OAAS,QAAW,CAAE,OAAS,QACvD,CAAE,OAAS,SAKfv/D,EAAIk/D,GAAGM,UAAY,CACf,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAAU,CAAE,IAAQ,KAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAAU,CAAE,KAAQ,MAClD,CAAE,KAAQ,MAAU,CAAE,KAAQ,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E,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,IAAI,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,IAAI,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,IAAI,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,IAAI,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,IAAI,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,IAAI,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,IAAI,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,IAAI,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,IAAI,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,IAAI,KAAK,CAAC,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,CAACE,EAAE,EAAEC,EAAE,EAAE0Z,EAAE,EAAE7Z,EAAE,GAAG,C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","sources":["webpack:///./node_modules/@xterm/addon-web-links/lib/addon-web-links.js","webpack:///./src/webtty.ts","webpack:///./src/xterm.ts","webpack:///./src/waitFor.ts","webpack:///./node_modules/@xterm/xterm/lib/xterm.js","webpack:///./node_modules/libapps/hterm/dist/js/hterm_module.js","webpack:///./node_modules/@xterm/addon-fit/lib/addon-fit.js","webpack:///./node_modules/@xterm/addon-webgl/lib/addon-webgl.js","webpack:///./src/hterm.ts","webpack:///./src/websocket.ts","webpack:///webpack/bootstrap","webpack:///./src/main.ts"],"sourcesContent":["/*!\n * @xterm/addon-web-links (https://npmjs.com/package/@xterm/addon-web-links)\n * @license MIT\n * @version 0.11.0\n * ==@xterm/addon-web-links/LICENSE==\n * Copyright (c) 2017, The xterm.js authors (https://github.com/xtermjs/xterm.js)\n * \n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n * \n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define([],t):\"object\"==typeof exports?exports.WebLinksAddon=t():e.WebLinksAddon=t()}(self,(()=>(()=>{\"use strict\";var e={6:(e,t)=>{function n(e){try{const t=new URL(e),n=t.password&&t.username?`${t.protocol}//${t.username}:${t.password}@${t.host}`:t.username?`${t.protocol}//${t.username}@${t.host}`:`${t.protocol}//${t.host}`;return e.toLocaleLowerCase().startsWith(n.toLocaleLowerCase())}catch(e){return!1}}Object.defineProperty(t,\"__esModule\",{value:!0}),t.LinkComputer=t.WebLinkProvider=void 0,t.WebLinkProvider=class{constructor(e,t,n,o={}){this._terminal=e,this._regex=t,this._handler=n,this._options=o}provideLinks(e,t){const n=o.computeLink(e,this._regex,this._terminal,this._handler);t(this._addCallbacks(n))}_addCallbacks(e){return e.map((e=>(e.leave=this._options.leave,e.hover=(t,n)=>{if(this._options.hover){const{range:o}=e;this._options.hover(t,n,o)}},e)))}};class o{static computeLink(e,t,r,i){const s=new RegExp(t.source,(t.flags||\"\")+\"g\"),[a,c]=o._getWindowedLineStrings(e-1,r),l=a.join(\"\");let d;const p=[];for(;d=s.exec(l);){const e=d[0];if(!n(e))continue;const[t,s]=o._mapStrIdx(r,c,0,d.index),[a,l]=o._mapStrIdx(r,t,s,e.length);if(-1===t||-1===s||-1===a||-1===l)continue;const h={start:{x:s+1,y:t+1},end:{x:l,y:a+1}};p.push({range:h,text:e,activate:i})}return p}static _getWindowedLineStrings(e,t){let n,o=e,r=e,i=0,s=\"\";const a=[];if(n=t.buffer.active.getLine(e)){const e=n.translateToString(!0);if(n.isWrapped&&\" \"!==e[0]){for(i=0;(n=t.buffer.active.getLine(--o))&&i<2048&&(s=n.translateToString(!0),i+=s.length,a.push(s),n.isWrapped&&-1===s.indexOf(\" \")););a.reverse()}for(a.push(e),i=0;(n=t.buffer.active.getLine(++r))&&n.isWrapped&&i<2048&&(s=n.translateToString(!0),i+=s.length,a.push(s),-1===s.indexOf(\" \")););}return[a,o]}static _mapStrIdx(e,t,n,o){const r=e.buffer.active,i=r.getNullCell();let s=n;for(;o;){const e=r.getLine(t);if(!e)return[-1,-1];for(let n=s;n{var e=o;Object.defineProperty(e,\"__esModule\",{value:!0}),e.WebLinksAddon=void 0;const t=n(6),r=/(https?|HTTPS?):[/]{2}[^\\s\"'!*(){}|\\\\\\^<>`]*[^\\s\"':,.!?{}|\\\\\\^~\\[\\]`()<>]/;function i(e,t){const n=window.open();if(n){try{n.opener=null}catch{}n.location.href=t}else console.warn(\"Opening link blocked as opener could not be cleared\")}e.WebLinksAddon=class{constructor(e=i,t={}){this._handler=e,this._options=t}activate(e){this._terminal=e;const n=this._options,o=n.urlRegex||r;this._linkProvider=this._terminal.registerLinkProvider(new t.WebLinkProvider(this._terminal,o,this._handler,n))}dispose(){this._linkProvider?.dispose()}}})(),o})()));\n//# sourceMappingURL=addon-web-links.js.map","export const protocols = [\"webtty\"];\n\nexport const msgInputUnknown = \"0\";\nexport const msgInput = \"1\";\nexport const msgPing = \"2\";\nexport const msgResizeTerminal = \"3\";\n\nexport const msgUnknownOutput = \"0\";\nexport const msgOutput = \"1\";\nexport const msgPong = \"2\";\nexport const msgSetWindowTitle = \"3\";\nexport const msgSetPreferences = \"4\";\nexport const msgSetReconnect = \"5\";\n\nexport interface Terminal {\n info(): { columns: number; rows: number };\n output(data: string): void;\n showMessage(message: string, timeout: number): void;\n removeMessage(): void;\n setWindowTitle(title: string): void;\n setPreferences(value: object): void;\n onInput(callback: (input: string) => void): void;\n onResize(callback: (colmuns: number, rows: number) => void): void;\n reset(): void;\n deactivate(): void;\n close(): void;\n}\n\nexport interface Connection {\n open(): void;\n close(): void;\n send(data: string): void;\n isOpen(): boolean;\n onOpen(callback: () => void): void;\n onReceive(callback: (data: string) => void): void;\n onClose(callback: () => void): void;\n}\n\nexport interface ConnectionFactory {\n create(): Connection;\n}\n\nexport class WebTTY {\n term: Terminal;\n connectionFactory: ConnectionFactory;\n args: string;\n authToken: string;\n reconnect: number;\n\n constructor(\n term: Terminal,\n connectionFactory: ConnectionFactory,\n args: string,\n authToken: string,\n ) {\n this.term = term;\n this.connectionFactory = connectionFactory;\n this.args = args;\n this.authToken = authToken;\n this.reconnect = -1;\n }\n\n open() {\n let connection = this.connectionFactory.create();\n let pingTimer: ReturnType;\n let reconnectTimeout: NodeJS.Timeout;\n\n const setup = () => {\n connection.onOpen(() => {\n const termInfo = this.term.info();\n\n connection.send(\n JSON.stringify({\n Arguments: this.args,\n AuthToken: this.authToken,\n }),\n );\n\n const resizeHandler = (colmuns: number, rows: number) => {\n connection.send(\n msgResizeTerminal +\n JSON.stringify({\n columns: colmuns,\n rows: rows,\n }),\n );\n };\n\n this.term.onResize(resizeHandler);\n resizeHandler(termInfo.columns, termInfo.rows);\n\n this.term.onInput((input: string) => {\n connection.send(msgInput + input);\n });\n\n pingTimer = setInterval(() => {\n connection.send(msgPing);\n }, 30 * 1000);\n });\n\n connection.onReceive((data) => {\n const payload = data.slice(1);\n switch (data[0]) {\n case msgOutput:\n this.term.output(atob(payload));\n break;\n case msgPong:\n break;\n case msgSetWindowTitle:\n this.term.setWindowTitle(payload);\n break;\n case msgSetPreferences:\n const preferences = JSON.parse(payload);\n this.term.setPreferences(preferences);\n break;\n case msgSetReconnect:\n const autoReconnect = JSON.parse(payload);\n console.log(\"Enabling reconnect: \" + autoReconnect + \" seconds\");\n this.reconnect = autoReconnect;\n break;\n }\n });\n\n connection.onClose(() => {\n clearInterval(pingTimer);\n this.term.deactivate();\n this.term.showMessage(\"Connection Closed\", 0);\n if (this.reconnect > 0) {\n reconnectTimeout = setTimeout(() => {\n connection = this.connectionFactory.create();\n this.term.reset();\n setup();\n }, this.reconnect * 1000);\n }\n });\n\n connection.open();\n };\n\n setup();\n return () => {\n clearTimeout(reconnectTimeout);\n connection.close();\n };\n }\n}\n","import { lib } from \"libapps\";\n\nimport { IDisposable, Terminal } from \"@xterm/xterm\";\nimport { FitAddon } from \"@xterm/addon-fit\";\nimport { WebglAddon } from \"@xterm/addon-webgl\";\nimport { WebLinksAddon } from \"@xterm/addon-web-links\";\n\nimport { waitForElement } from \"./waitFor\";\n\nexport class Xterm {\n elem: HTMLElement;\n term: Terminal;\n resizeListener: () => void;\n decoder: lib.UTF8Decoder;\n\n message: HTMLElement;\n messageTimeout: number;\n messageTimer: ReturnType;\n\n fitAddon: FitAddon;\n disposables: IDisposable[] = [];\n\n constructor(elem: HTMLElement) {\n this.elem = elem;\n const isWindows =\n [\"Windows\", \"Win16\", \"Win32\", \"WinCE\"].indexOf(navigator.platform) >= 0;\n this.term = new Terminal({\n cursorStyle: \"block\",\n cursorBlink: true,\n windowsMode: isWindows,\n fontFamily:\n \"DejaVu Sans Mono, Everson Mono, FreeMono, Menlo, Terminal, monospace, Apple Symbols\",\n fontSize: 12,\n });\n\n this.fitAddon = new FitAddon();\n this.term.loadAddon(this.fitAddon);\n this.term.loadAddon(new WebLinksAddon());\n\n this.message = elem.ownerDocument.createElement(\"div\");\n this.message.className = \"xterm-overlay\";\n this.messageTimeout = 2000;\n\n this.resizeListener = () => {\n this.fitAddon.fit();\n this.term.scrollToBottom();\n this.showMessage(\n String(this.term.cols) + \"x\" + String(this.term.rows),\n this.messageTimeout,\n );\n };\n\n this.term.open(elem);\n\n this.term.focus();\n window.addEventListener(\"resize\", () => {\n this.resizeListener();\n });\n\n waitForElement(\".xterm-screen > canvas\", 5000)\n .then(() => {\n window.requestAnimationFrame(() => {\n window.requestAnimationFrame(() => {\n this.resizeListener();\n });\n });\n })\n .catch((err) => {\n console.error(err);\n });\n\n this.decoder = new lib.UTF8Decoder();\n }\n\n info(): { columns: number; rows: number } {\n return { columns: this.term.cols, rows: this.term.rows };\n }\n\n output(data: string) {\n this.term.write(this.decoder.decode(data));\n }\n\n showMessage(message: string, timeout: number) {\n this.message.textContent = message;\n this.elem.appendChild(this.message);\n\n if (this.messageTimer) {\n clearTimeout(this.messageTimer);\n }\n if (timeout > 0) {\n this.messageTimer = setTimeout(() => {\n this.elem.removeChild(this.message);\n }, timeout);\n }\n }\n\n removeMessage(): void {\n if (this.message.parentNode == this.elem) {\n this.elem.removeChild(this.message);\n }\n }\n\n setWindowTitle(title: string) {\n document.title = title;\n }\n\n setPreferences(value: object) {\n Object.keys(value).forEach((key) => {\n if (key && key == \"enable-webgl\") {\n this.term.loadAddon(new WebglAddon());\n }\n });\n }\n\n onInput(callback: (input: string) => void) {\n this.disposables.push(\n this.term.onData((data) => {\n callback(data);\n }),\n );\n }\n\n onResize(callback: (colmuns: number, rows: number) => void) {\n this.disposables.push(\n this.term.onResize((data) => {\n callback(data.cols, data.rows);\n }),\n );\n }\n\n deactivate(): void {\n this.disposables.forEach((d) => d.dispose());\n this.term.blur();\n }\n\n reset(): void {\n this.removeMessage();\n this.term.clear();\n }\n\n close(): void {\n window.removeEventListener(\"resize\", this.resizeListener);\n this.term.dispose();\n }\n}\n","/**\n * Waits for a DOM element matching the selector to exist in the document.\n * Resolves immediately if it already exists.\n *\n * @param selector CSS selector for the element to wait for\n * @param timeout Optional timeout in milliseconds (default: no timeout)\n * @returns Promise that resolves with the found element\n */\nexport function waitForElement(\n selector: string,\n timeout?: number,\n): Promise {\n return new Promise((resolve, reject) => {\n // If it already exists, resolve immediately\n const existing = document.querySelector(selector);\n if (existing) {\n resolve(existing);\n return;\n }\n\n const observer = new MutationObserver(() => {\n const el = document.querySelector(selector);\n if (el) {\n observer.disconnect();\n resolve(el);\n }\n });\n\n observer.observe(document.body, { childList: true, subtree: true });\n\n if (timeout) {\n setTimeout(() => {\n observer.disconnect();\n reject(new Error(`Timeout waiting for element: ${selector}`));\n }, timeout);\n }\n });\n}\n","/*!\n * @xterm/xterm (https://npmjs.com/package/@xterm/xterm)\n * @license MIT\n * @version 5.5.0\n * ==@xterm/xterm/LICENSE==\n * Copyright (c) 2017-2019, The xterm.js authors (https://github.com/xtermjs/xterm.js)\n * Copyright (c) 2014-2016, SourceLair Private Company (https://www.sourcelair.com)\n * Copyright (c) 2012-2013, Christopher Jeffrey (https://github.com/chjj/)\n * \n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n * \n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */\n!function(e,t){if(\"object\"==typeof exports&&\"object\"==typeof module)module.exports=t();else if(\"function\"==typeof define&&define.amd)define([],t);else{var i=t();for(var s in i)(\"object\"==typeof exports?exports:e)[s]=i[s]}}(globalThis,(()=>(()=>{\"use strict\";var e={4567:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.AccessibilityManager=void 0;const n=i(9042),o=i(9924),a=i(844),h=i(4725),c=i(2585),l=i(3656);let d=t.AccessibilityManager=class extends a.Disposable{constructor(e,t,i,s){super(),this._terminal=e,this._coreBrowserService=i,this._renderService=s,this._rowColumns=new WeakMap,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce=\"\",this._accessibilityContainer=this._coreBrowserService.mainDocument.createElement(\"div\"),this._accessibilityContainer.classList.add(\"xterm-accessibility\"),this._rowContainer=this._coreBrowserService.mainDocument.createElement(\"div\"),this._rowContainer.setAttribute(\"role\",\"list\"),this._rowContainer.classList.add(\"xterm-accessibility-tree\"),this._rowElements=[];for(let e=0;ethis._handleBoundaryFocus(e,0),this._bottomBoundaryFocusListener=e=>this._handleBoundaryFocus(e,1),this._rowElements[0].addEventListener(\"focus\",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener(\"focus\",this._bottomBoundaryFocusListener),this._refreshRowsDimensions(),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=this._coreBrowserService.mainDocument.createElement(\"div\"),this._liveRegion.classList.add(\"live-region\"),this._liveRegion.setAttribute(\"aria-live\",\"assertive\"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this.register(new o.TimeBasedDebouncer(this._renderRows.bind(this))),!this._terminal.element)throw new Error(\"Cannot enable accessibility before Terminal.open\");this._terminal.element.insertAdjacentElement(\"afterbegin\",this._accessibilityContainer),this.register(this._terminal.onResize((e=>this._handleResize(e.rows)))),this.register(this._terminal.onRender((e=>this._refreshRows(e.start,e.end)))),this.register(this._terminal.onScroll((()=>this._refreshRows()))),this.register(this._terminal.onA11yChar((e=>this._handleChar(e)))),this.register(this._terminal.onLineFeed((()=>this._handleChar(\"\\n\")))),this.register(this._terminal.onA11yTab((e=>this._handleTab(e)))),this.register(this._terminal.onKey((e=>this._handleKey(e.key)))),this.register(this._terminal.onBlur((()=>this._clearLiveRegion()))),this.register(this._renderService.onDimensionsChange((()=>this._refreshRowsDimensions()))),this.register((0,l.addDisposableDomListener)(document,\"selectionchange\",(()=>this._handleSelectionChange()))),this.register(this._coreBrowserService.onDprChange((()=>this._refreshRowsDimensions()))),this._refreshRows(),this.register((0,a.toDisposable)((()=>{this._accessibilityContainer.remove(),this._rowElements.length=0})))}_handleTab(e){for(let t=0;t0?this._charsToConsume.shift()!==e&&(this._charsToAnnounce+=e):this._charsToAnnounce+=e,\"\\n\"===e&&(this._liveRegionLineCount++,21===this._liveRegionLineCount&&(this._liveRegion.textContent+=n.tooMuchOutput)))}_clearLiveRegion(){this._liveRegion.textContent=\"\",this._liveRegionLineCount=0}_handleKey(e){this._clearLiveRegion(),/\\p{Control}/u.test(e)||this._charsToConsume.push(e)}_refreshRows(e,t){this._liveRegionDebouncer.refresh(e,t,this._terminal.rows)}_renderRows(e,t){const i=this._terminal.buffer,s=i.lines.length.toString();for(let r=e;r<=t;r++){const e=i.lines.get(i.ydisp+r),t=[],n=e?.translateToString(!0,void 0,void 0,t)||\"\",o=(i.ydisp+r+1).toString(),a=this._rowElements[r];a&&(0===n.length?(a.innerText=\" \",this._rowColumns.set(a,[0,1])):(a.textContent=n,this._rowColumns.set(a,t)),a.setAttribute(\"aria-posinset\",o),a.setAttribute(\"aria-setsize\",s))}this._announceCharacters()}_announceCharacters(){0!==this._charsToAnnounce.length&&(this._liveRegion.textContent+=this._charsToAnnounce,this._charsToAnnounce=\"\")}_handleBoundaryFocus(e,t){const i=e.target,s=this._rowElements[0===t?1:this._rowElements.length-2];if(i.getAttribute(\"aria-posinset\")===(0===t?\"1\":`${this._terminal.buffer.lines.length}`))return;if(e.relatedTarget!==s)return;let r,n;if(0===t?(r=i,n=this._rowElements.pop(),this._rowContainer.removeChild(n)):(r=this._rowElements.shift(),n=i,this._rowContainer.removeChild(r)),r.removeEventListener(\"focus\",this._topBoundaryFocusListener),n.removeEventListener(\"focus\",this._bottomBoundaryFocusListener),0===t){const e=this._createAccessibilityTreeNode();this._rowElements.unshift(e),this._rowContainer.insertAdjacentElement(\"afterbegin\",e)}else{const e=this._createAccessibilityTreeNode();this._rowElements.push(e),this._rowContainer.appendChild(e)}this._rowElements[0].addEventListener(\"focus\",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener(\"focus\",this._bottomBoundaryFocusListener),this._terminal.scrollLines(0===t?-1:1),this._rowElements[0===t?1:this._rowElements.length-2].focus(),e.preventDefault(),e.stopImmediatePropagation()}_handleSelectionChange(){if(0===this._rowElements.length)return;const e=document.getSelection();if(!e)return;if(e.isCollapsed)return void(this._rowContainer.contains(e.anchorNode)&&this._terminal.clearSelection());if(!e.anchorNode||!e.focusNode)return void console.error(\"anchorNode and/or focusNode are null\");let t={node:e.anchorNode,offset:e.anchorOffset},i={node:e.focusNode,offset:e.focusOffset};if((t.node.compareDocumentPosition(i.node)&Node.DOCUMENT_POSITION_PRECEDING||t.node===i.node&&t.offset>i.offset)&&([t,i]=[i,t]),t.node.compareDocumentPosition(this._rowElements[0])&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_FOLLOWING)&&(t={node:this._rowElements[0].childNodes[0],offset:0}),!this._rowContainer.contains(t.node))return;const s=this._rowElements.slice(-1)[0];if(i.node.compareDocumentPosition(s)&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_PRECEDING)&&(i={node:s,offset:s.textContent?.length??0}),!this._rowContainer.contains(i.node))return;const r=({node:e,offset:t})=>{const i=e instanceof Text?e.parentNode:e;let s=parseInt(i?.getAttribute(\"aria-posinset\"),10)-1;if(isNaN(s))return console.warn(\"row is invalid. Race condition?\"),null;const r=this._rowColumns.get(i);if(!r)return console.warn(\"columns is null. Race condition?\"),null;let n=t=this._terminal.cols&&(++s,n=0),{row:s,column:n}},n=r(t),o=r(i);if(n&&o){if(n.row>o.row||n.row===o.row&&n.column>=o.column)throw new Error(\"invalid range\");this._terminal.select(n.column,n.row,(o.row-n.row)*this._terminal.cols-n.column+o.column)}}_handleResize(e){this._rowElements[this._rowElements.length-1].removeEventListener(\"focus\",this._bottomBoundaryFocusListener);for(let e=this._rowContainer.children.length;ee;)this._rowContainer.removeChild(this._rowElements.pop());this._rowElements[this._rowElements.length-1].addEventListener(\"focus\",this._bottomBoundaryFocusListener),this._refreshRowsDimensions()}_createAccessibilityTreeNode(){const e=this._coreBrowserService.mainDocument.createElement(\"div\");return e.setAttribute(\"role\",\"listitem\"),e.tabIndex=-1,this._refreshRowDimensions(e),e}_refreshRowsDimensions(){if(this._renderService.dimensions.css.cell.height){this._accessibilityContainer.style.width=`${this._renderService.dimensions.css.canvas.width}px`,this._rowElements.length!==this._terminal.rows&&this._handleResize(this._terminal.rows);for(let e=0;e{function i(e){return e.replace(/\\r?\\n/g,\"\\r\")}function s(e,t){return t?\"\u001b[200~\"+e+\"\u001b[201~\":e}function r(e,t,r,n){e=s(e=i(e),r.decPrivateModes.bracketedPasteMode&&!0!==n.rawOptions.ignoreBracketedPasteMode),r.triggerDataEvent(e,!0),t.value=\"\"}function n(e,t,i){const s=i.getBoundingClientRect(),r=e.clientX-s.left-10,n=e.clientY-s.top-10;t.style.width=\"20px\",t.style.height=\"20px\",t.style.left=`${r}px`,t.style.top=`${n}px`,t.style.zIndex=\"1000\",t.focus()}Object.defineProperty(t,\"__esModule\",{value:!0}),t.rightClickHandler=t.moveTextAreaUnderMouseCursor=t.paste=t.handlePasteEvent=t.copyHandler=t.bracketTextForPaste=t.prepareTextForTerminal=void 0,t.prepareTextForTerminal=i,t.bracketTextForPaste=s,t.copyHandler=function(e,t){e.clipboardData&&e.clipboardData.setData(\"text/plain\",t.selectionText),e.preventDefault()},t.handlePasteEvent=function(e,t,i,s){e.stopPropagation(),e.clipboardData&&r(e.clipboardData.getData(\"text/plain\"),t,i,s)},t.paste=r,t.moveTextAreaUnderMouseCursor=n,t.rightClickHandler=function(e,t,i,s,r){n(e,t,i),r&&s.rightClickSelect(e),t.value=s.selectionText,t.select()}},7239:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.ColorContrastCache=void 0;const s=i(1505);t.ColorContrastCache=class{constructor(){this._color=new s.TwoKeyMap,this._css=new s.TwoKeyMap}setCss(e,t,i){this._css.set(e,t,i)}getCss(e,t){return this._css.get(e,t)}setColor(e,t,i){this._color.set(e,t,i)}getColor(e,t){return this._color.get(e,t)}clear(){this._color.clear(),this._css.clear()}}},3656:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.addDisposableDomListener=void 0,t.addDisposableDomListener=function(e,t,i,s){e.addEventListener(t,i,s);let r=!1;return{dispose:()=>{r||(r=!0,e.removeEventListener(t,i,s))}}}},3551:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.Linkifier=void 0;const n=i(3656),o=i(8460),a=i(844),h=i(2585),c=i(4725);let l=t.Linkifier=class extends a.Disposable{get currentLink(){return this._currentLink}constructor(e,t,i,s,r){super(),this._element=e,this._mouseService=t,this._renderService=i,this._bufferService=s,this._linkProviderService=r,this._linkCacheDisposables=[],this._isMouseOut=!0,this._wasResized=!1,this._activeLine=-1,this._onShowLinkUnderline=this.register(new o.EventEmitter),this.onShowLinkUnderline=this._onShowLinkUnderline.event,this._onHideLinkUnderline=this.register(new o.EventEmitter),this.onHideLinkUnderline=this._onHideLinkUnderline.event,this.register((0,a.getDisposeArrayDisposable)(this._linkCacheDisposables)),this.register((0,a.toDisposable)((()=>{this._lastMouseEvent=void 0,this._activeProviderReplies?.clear()}))),this.register(this._bufferService.onResize((()=>{this._clearCurrentLink(),this._wasResized=!0}))),this.register((0,n.addDisposableDomListener)(this._element,\"mouseleave\",(()=>{this._isMouseOut=!0,this._clearCurrentLink()}))),this.register((0,n.addDisposableDomListener)(this._element,\"mousemove\",this._handleMouseMove.bind(this))),this.register((0,n.addDisposableDomListener)(this._element,\"mousedown\",this._handleMouseDown.bind(this))),this.register((0,n.addDisposableDomListener)(this._element,\"mouseup\",this._handleMouseUp.bind(this)))}_handleMouseMove(e){this._lastMouseEvent=e;const t=this._positionFromMouseEvent(e,this._element,this._mouseService);if(!t)return;this._isMouseOut=!1;const i=e.composedPath();for(let e=0;e{e?.forEach((e=>{e.link.dispose&&e.link.dispose()}))})),this._activeProviderReplies=new Map,this._activeLine=e.y);let i=!1;for(const[s,r]of this._linkProviderService.linkProviders.entries())if(t){const t=this._activeProviderReplies?.get(s);t&&(i=this._checkLinkProviderResult(s,e,i))}else r.provideLinks(e.y,(t=>{if(this._isMouseOut)return;const r=t?.map((e=>({link:e})));this._activeProviderReplies?.set(s,r),i=this._checkLinkProviderResult(s,e,i),this._activeProviderReplies?.size===this._linkProviderService.linkProviders.length&&this._removeIntersectingLinks(e.y,this._activeProviderReplies)}))}_removeIntersectingLinks(e,t){const i=new Set;for(let s=0;se?this._bufferService.cols:s.link.range.end.x;for(let e=n;e<=o;e++){if(i.has(e)){r.splice(t--,1);break}i.add(e)}}}}_checkLinkProviderResult(e,t,i){if(!this._activeProviderReplies)return i;const s=this._activeProviderReplies.get(e);let r=!1;for(let t=0;tthis._linkAtPosition(e.link,t)));e&&(i=!0,this._handleNewLink(e))}if(this._activeProviderReplies.size===this._linkProviderService.linkProviders.length&&!i)for(let e=0;ethis._linkAtPosition(e.link,t)));if(s){i=!0,this._handleNewLink(s);break}}return i}_handleMouseDown(){this._mouseDownLink=this._currentLink}_handleMouseUp(e){if(!this._currentLink)return;const t=this._positionFromMouseEvent(e,this._element,this._mouseService);t&&this._mouseDownLink===this._currentLink&&this._linkAtPosition(this._currentLink.link,t)&&this._currentLink.link.activate(e,this._currentLink.link.text)}_clearCurrentLink(e,t){this._currentLink&&this._lastMouseEvent&&(!e||!t||this._currentLink.link.range.start.y>=e&&this._currentLink.link.range.end.y<=t)&&(this._linkLeave(this._element,this._currentLink.link,this._lastMouseEvent),this._currentLink=void 0,(0,a.disposeArray)(this._linkCacheDisposables))}_handleNewLink(e){if(!this._lastMouseEvent)return;const t=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);t&&this._linkAtPosition(e.link,t)&&(this._currentLink=e,this._currentLink.state={decorations:{underline:void 0===e.link.decorations||e.link.decorations.underline,pointerCursor:void 0===e.link.decorations||e.link.decorations.pointerCursor},isHovered:!0},this._linkHover(this._element,e.link,this._lastMouseEvent),e.link.decorations={},Object.defineProperties(e.link.decorations,{pointerCursor:{get:()=>this._currentLink?.state?.decorations.pointerCursor,set:e=>{this._currentLink?.state&&this._currentLink.state.decorations.pointerCursor!==e&&(this._currentLink.state.decorations.pointerCursor=e,this._currentLink.state.isHovered&&this._element.classList.toggle(\"xterm-cursor-pointer\",e))}},underline:{get:()=>this._currentLink?.state?.decorations.underline,set:t=>{this._currentLink?.state&&this._currentLink?.state?.decorations.underline!==t&&(this._currentLink.state.decorations.underline=t,this._currentLink.state.isHovered&&this._fireUnderlineEvent(e.link,t))}}}),this._linkCacheDisposables.push(this._renderService.onRenderedViewportChange((e=>{if(!this._currentLink)return;const t=0===e.start?0:e.start+1+this._bufferService.buffer.ydisp,i=this._bufferService.buffer.ydisp+1+e.end;if(this._currentLink.link.range.start.y>=t&&this._currentLink.link.range.end.y<=i&&(this._clearCurrentLink(t,i),this._lastMouseEvent)){const e=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);e&&this._askForLink(e,!1)}}))))}_linkHover(e,t,i){this._currentLink?.state&&(this._currentLink.state.isHovered=!0,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!0),this._currentLink.state.decorations.pointerCursor&&e.classList.add(\"xterm-cursor-pointer\")),t.hover&&t.hover(i,t.text)}_fireUnderlineEvent(e,t){const i=e.range,s=this._bufferService.buffer.ydisp,r=this._createLinkUnderlineEvent(i.start.x-1,i.start.y-s-1,i.end.x,i.end.y-s-1,void 0);(t?this._onShowLinkUnderline:this._onHideLinkUnderline).fire(r)}_linkLeave(e,t,i){this._currentLink?.state&&(this._currentLink.state.isHovered=!1,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!1),this._currentLink.state.decorations.pointerCursor&&e.classList.remove(\"xterm-cursor-pointer\")),t.leave&&t.leave(i,t.text)}_linkAtPosition(e,t){const i=e.range.start.y*this._bufferService.cols+e.range.start.x,s=e.range.end.y*this._bufferService.cols+e.range.end.x,r=t.y*this._bufferService.cols+t.x;return i<=r&&r<=s}_positionFromMouseEvent(e,t,i){const s=i.getCoords(e,t,this._bufferService.cols,this._bufferService.rows);if(s)return{x:s[0],y:s[1]+this._bufferService.buffer.ydisp}}_createLinkUnderlineEvent(e,t,i,s,r){return{x1:e,y1:t,x2:i,y2:s,cols:this._bufferService.cols,fg:r}}};t.Linkifier=l=s([r(1,c.IMouseService),r(2,c.IRenderService),r(3,h.IBufferService),r(4,c.ILinkProviderService)],l)},9042:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.tooMuchOutput=t.promptLabel=void 0,t.promptLabel=\"Terminal input\",t.tooMuchOutput=\"Too much output to announce, navigate to rows manually to read\"},3730:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.OscLinkProvider=void 0;const n=i(511),o=i(2585);let a=t.OscLinkProvider=class{constructor(e,t,i){this._bufferService=e,this._optionsService=t,this._oscLinkService=i}provideLinks(e,t){const i=this._bufferService.buffer.lines.get(e-1);if(!i)return void t(void 0);const s=[],r=this._optionsService.rawOptions.linkHandler,o=new n.CellData,a=i.getTrimmedLength();let c=-1,l=-1,d=!1;for(let t=0;tr?r.activate(e,t,n):h(0,t),hover:(e,t)=>r?.hover?.(e,t,n),leave:(e,t)=>r?.leave?.(e,t,n)})}d=!1,o.hasExtendedAttrs()&&o.extended.urlId?(l=t,c=o.extended.urlId):(l=-1,c=-1)}}t(s)}};function h(e,t){if(confirm(`Do you want to navigate to ${t}?\\n\\nWARNING: This link could potentially be dangerous`)){const e=window.open();if(e){try{e.opener=null}catch{}e.location.href=t}else console.warn(\"Opening link blocked as opener could not be cleared\")}}t.OscLinkProvider=a=s([r(0,o.IBufferService),r(1,o.IOptionsService),r(2,o.IOscLinkService)],a)},6193:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.RenderDebouncer=void 0,t.RenderDebouncer=class{constructor(e,t){this._renderCallback=e,this._coreBrowserService=t,this._refreshCallbacks=[]}dispose(){this._animationFrame&&(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}addRefreshCallback(e){return this._refreshCallbacks.push(e),this._animationFrame||(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>this._innerRefresh()))),this._animationFrame}refresh(e,t,i){this._rowCount=i,e=void 0!==e?e:0,t=void 0!==t?t:this._rowCount-1,this._rowStart=void 0!==this._rowStart?Math.min(this._rowStart,e):e,this._rowEnd=void 0!==this._rowEnd?Math.max(this._rowEnd,t):t,this._animationFrame||(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>this._innerRefresh())))}_innerRefresh(){if(this._animationFrame=void 0,void 0===this._rowStart||void 0===this._rowEnd||void 0===this._rowCount)return void this._runRefreshCallbacks();const e=Math.max(this._rowStart,0),t=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(e,t),this._runRefreshCallbacks()}_runRefreshCallbacks(){for(const e of this._refreshCallbacks)e(0);this._refreshCallbacks=[]}}},3236:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.Terminal=void 0;const s=i(3614),r=i(3656),n=i(3551),o=i(9042),a=i(3730),h=i(1680),c=i(3107),l=i(5744),d=i(2950),_=i(1296),u=i(428),f=i(4269),v=i(5114),p=i(8934),g=i(3230),m=i(9312),S=i(4725),C=i(6731),b=i(8055),w=i(8969),y=i(8460),E=i(844),k=i(6114),L=i(8437),D=i(2584),R=i(7399),x=i(5941),A=i(9074),B=i(2585),T=i(5435),M=i(4567),O=i(779);class P extends w.CoreTerminal{get onFocus(){return this._onFocus.event}get onBlur(){return this._onBlur.event}get onA11yChar(){return this._onA11yCharEmitter.event}get onA11yTab(){return this._onA11yTabEmitter.event}get onWillOpen(){return this._onWillOpen.event}constructor(e={}){super(e),this.browser=k,this._keyDownHandled=!1,this._keyDownSeen=!1,this._keyPressHandled=!1,this._unprocessedDeadKey=!1,this._accessibilityManager=this.register(new E.MutableDisposable),this._onCursorMove=this.register(new y.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onKey=this.register(new y.EventEmitter),this.onKey=this._onKey.event,this._onRender=this.register(new y.EventEmitter),this.onRender=this._onRender.event,this._onSelectionChange=this.register(new y.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onTitleChange=this.register(new y.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onBell=this.register(new y.EventEmitter),this.onBell=this._onBell.event,this._onFocus=this.register(new y.EventEmitter),this._onBlur=this.register(new y.EventEmitter),this._onA11yCharEmitter=this.register(new y.EventEmitter),this._onA11yTabEmitter=this.register(new y.EventEmitter),this._onWillOpen=this.register(new y.EventEmitter),this._setup(),this._decorationService=this._instantiationService.createInstance(A.DecorationService),this._instantiationService.setService(B.IDecorationService,this._decorationService),this._linkProviderService=this._instantiationService.createInstance(O.LinkProviderService),this._instantiationService.setService(S.ILinkProviderService,this._linkProviderService),this._linkProviderService.registerLinkProvider(this._instantiationService.createInstance(a.OscLinkProvider)),this.register(this._inputHandler.onRequestBell((()=>this._onBell.fire()))),this.register(this._inputHandler.onRequestRefreshRows(((e,t)=>this.refresh(e,t)))),this.register(this._inputHandler.onRequestSendFocus((()=>this._reportFocus()))),this.register(this._inputHandler.onRequestReset((()=>this.reset()))),this.register(this._inputHandler.onRequestWindowsOptionsReport((e=>this._reportWindowsOptions(e)))),this.register(this._inputHandler.onColor((e=>this._handleColorEvent(e)))),this.register((0,y.forwardEvent)(this._inputHandler.onCursorMove,this._onCursorMove)),this.register((0,y.forwardEvent)(this._inputHandler.onTitleChange,this._onTitleChange)),this.register((0,y.forwardEvent)(this._inputHandler.onA11yChar,this._onA11yCharEmitter)),this.register((0,y.forwardEvent)(this._inputHandler.onA11yTab,this._onA11yTabEmitter)),this.register(this._bufferService.onResize((e=>this._afterResize(e.cols,e.rows)))),this.register((0,E.toDisposable)((()=>{this._customKeyEventHandler=void 0,this.element?.parentNode?.removeChild(this.element)})))}_handleColorEvent(e){if(this._themeService)for(const t of e){let e,i=\"\";switch(t.index){case 256:e=\"foreground\",i=\"10\";break;case 257:e=\"background\",i=\"11\";break;case 258:e=\"cursor\",i=\"12\";break;default:e=\"ansi\",i=\"4;\"+t.index}switch(t.type){case 0:const s=b.color.toColorRGB(\"ansi\"===e?this._themeService.colors.ansi[t.index]:this._themeService.colors[e]);this.coreService.triggerDataEvent(`${D.C0.ESC}]${i};${(0,x.toRgbString)(s)}${D.C1_ESCAPED.ST}`);break;case 1:if(\"ansi\"===e)this._themeService.modifyColors((e=>e.ansi[t.index]=b.channels.toColor(...t.color)));else{const i=e;this._themeService.modifyColors((e=>e[i]=b.channels.toColor(...t.color)))}break;case 2:this._themeService.restoreColor(t.index)}}}_setup(){super._setup(),this._customKeyEventHandler=void 0}get buffer(){return this.buffers.active}focus(){this.textarea&&this.textarea.focus({preventScroll:!0})}_handleScreenReaderModeOptionChange(e){e?!this._accessibilityManager.value&&this._renderService&&(this._accessibilityManager.value=this._instantiationService.createInstance(M.AccessibilityManager,this)):this._accessibilityManager.clear()}_handleTextAreaFocus(e){this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(D.C0.ESC+\"[I\"),this.element.classList.add(\"focus\"),this._showCursor(),this._onFocus.fire()}blur(){return this.textarea?.blur()}_handleTextAreaBlur(){this.textarea.value=\"\",this.refresh(this.buffer.y,this.buffer.y),this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(D.C0.ESC+\"[O\"),this.element.classList.remove(\"focus\"),this._onBlur.fire()}_syncTextArea(){if(!this.textarea||!this.buffer.isCursorInViewport||this._compositionHelper.isComposing||!this._renderService)return;const e=this.buffer.ybase+this.buffer.y,t=this.buffer.lines.get(e);if(!t)return;const i=Math.min(this.buffer.x,this.cols-1),s=this._renderService.dimensions.css.cell.height,r=t.getWidth(i),n=this._renderService.dimensions.css.cell.width*r,o=this.buffer.y*this._renderService.dimensions.css.cell.height,a=i*this._renderService.dimensions.css.cell.width;this.textarea.style.left=a+\"px\",this.textarea.style.top=o+\"px\",this.textarea.style.width=n+\"px\",this.textarea.style.height=s+\"px\",this.textarea.style.lineHeight=s+\"px\",this.textarea.style.zIndex=\"-5\"}_initGlobal(){this._bindKeys(),this.register((0,r.addDisposableDomListener)(this.element,\"copy\",(e=>{this.hasSelection()&&(0,s.copyHandler)(e,this._selectionService)})));const e=e=>(0,s.handlePasteEvent)(e,this.textarea,this.coreService,this.optionsService);this.register((0,r.addDisposableDomListener)(this.textarea,\"paste\",e)),this.register((0,r.addDisposableDomListener)(this.element,\"paste\",e)),k.isFirefox?this.register((0,r.addDisposableDomListener)(this.element,\"mousedown\",(e=>{2===e.button&&(0,s.rightClickHandler)(e,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)}))):this.register((0,r.addDisposableDomListener)(this.element,\"contextmenu\",(e=>{(0,s.rightClickHandler)(e,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)}))),k.isLinux&&this.register((0,r.addDisposableDomListener)(this.element,\"auxclick\",(e=>{1===e.button&&(0,s.moveTextAreaUnderMouseCursor)(e,this.textarea,this.screenElement)})))}_bindKeys(){this.register((0,r.addDisposableDomListener)(this.textarea,\"keyup\",(e=>this._keyUp(e)),!0)),this.register((0,r.addDisposableDomListener)(this.textarea,\"keydown\",(e=>this._keyDown(e)),!0)),this.register((0,r.addDisposableDomListener)(this.textarea,\"keypress\",(e=>this._keyPress(e)),!0)),this.register((0,r.addDisposableDomListener)(this.textarea,\"compositionstart\",(()=>this._compositionHelper.compositionstart()))),this.register((0,r.addDisposableDomListener)(this.textarea,\"compositionupdate\",(e=>this._compositionHelper.compositionupdate(e)))),this.register((0,r.addDisposableDomListener)(this.textarea,\"compositionend\",(()=>this._compositionHelper.compositionend()))),this.register((0,r.addDisposableDomListener)(this.textarea,\"input\",(e=>this._inputEvent(e)),!0)),this.register(this.onRender((()=>this._compositionHelper.updateCompositionElements())))}open(e){if(!e)throw new Error(\"Terminal requires a parent element.\");if(e.isConnected||this._logService.debug(\"Terminal.open was called on an element that was not attached to the DOM\"),this.element?.ownerDocument.defaultView&&this._coreBrowserService)return void(this.element.ownerDocument.defaultView!==this._coreBrowserService.window&&(this._coreBrowserService.window=this.element.ownerDocument.defaultView));this._document=e.ownerDocument,this.options.documentOverride&&this.options.documentOverride instanceof Document&&(this._document=this.optionsService.rawOptions.documentOverride),this.element=this._document.createElement(\"div\"),this.element.dir=\"ltr\",this.element.classList.add(\"terminal\"),this.element.classList.add(\"xterm\"),e.appendChild(this.element);const t=this._document.createDocumentFragment();this._viewportElement=this._document.createElement(\"div\"),this._viewportElement.classList.add(\"xterm-viewport\"),t.appendChild(this._viewportElement),this._viewportScrollArea=this._document.createElement(\"div\"),this._viewportScrollArea.classList.add(\"xterm-scroll-area\"),this._viewportElement.appendChild(this._viewportScrollArea),this.screenElement=this._document.createElement(\"div\"),this.screenElement.classList.add(\"xterm-screen\"),this.register((0,r.addDisposableDomListener)(this.screenElement,\"mousemove\",(e=>this.updateCursorStyle(e)))),this._helperContainer=this._document.createElement(\"div\"),this._helperContainer.classList.add(\"xterm-helpers\"),this.screenElement.appendChild(this._helperContainer),t.appendChild(this.screenElement),this.textarea=this._document.createElement(\"textarea\"),this.textarea.classList.add(\"xterm-helper-textarea\"),this.textarea.setAttribute(\"aria-label\",o.promptLabel),k.isChromeOS||this.textarea.setAttribute(\"aria-multiline\",\"false\"),this.textarea.setAttribute(\"autocorrect\",\"off\"),this.textarea.setAttribute(\"autocapitalize\",\"off\"),this.textarea.setAttribute(\"spellcheck\",\"false\"),this.textarea.tabIndex=0,this._coreBrowserService=this.register(this._instantiationService.createInstance(v.CoreBrowserService,this.textarea,e.ownerDocument.defaultView??window,this._document??\"undefined\"!=typeof window?window.document:null)),this._instantiationService.setService(S.ICoreBrowserService,this._coreBrowserService),this.register((0,r.addDisposableDomListener)(this.textarea,\"focus\",(e=>this._handleTextAreaFocus(e)))),this.register((0,r.addDisposableDomListener)(this.textarea,\"blur\",(()=>this._handleTextAreaBlur()))),this._helperContainer.appendChild(this.textarea),this._charSizeService=this._instantiationService.createInstance(u.CharSizeService,this._document,this._helperContainer),this._instantiationService.setService(S.ICharSizeService,this._charSizeService),this._themeService=this._instantiationService.createInstance(C.ThemeService),this._instantiationService.setService(S.IThemeService,this._themeService),this._characterJoinerService=this._instantiationService.createInstance(f.CharacterJoinerService),this._instantiationService.setService(S.ICharacterJoinerService,this._characterJoinerService),this._renderService=this.register(this._instantiationService.createInstance(g.RenderService,this.rows,this.screenElement)),this._instantiationService.setService(S.IRenderService,this._renderService),this.register(this._renderService.onRenderedViewportChange((e=>this._onRender.fire(e)))),this.onResize((e=>this._renderService.resize(e.cols,e.rows))),this._compositionView=this._document.createElement(\"div\"),this._compositionView.classList.add(\"composition-view\"),this._compositionHelper=this._instantiationService.createInstance(d.CompositionHelper,this.textarea,this._compositionView),this._helperContainer.appendChild(this._compositionView),this._mouseService=this._instantiationService.createInstance(p.MouseService),this._instantiationService.setService(S.IMouseService,this._mouseService),this.linkifier=this.register(this._instantiationService.createInstance(n.Linkifier,this.screenElement)),this.element.appendChild(t);try{this._onWillOpen.fire(this.element)}catch{}this._renderService.hasRenderer()||this._renderService.setRenderer(this._createRenderer()),this.viewport=this._instantiationService.createInstance(h.Viewport,this._viewportElement,this._viewportScrollArea),this.viewport.onRequestScrollLines((e=>this.scrollLines(e.amount,e.suppressScrollEvent,1))),this.register(this._inputHandler.onRequestSyncScrollBar((()=>this.viewport.syncScrollArea()))),this.register(this.viewport),this.register(this.onCursorMove((()=>{this._renderService.handleCursorMove(),this._syncTextArea()}))),this.register(this.onResize((()=>this._renderService.handleResize(this.cols,this.rows)))),this.register(this.onBlur((()=>this._renderService.handleBlur()))),this.register(this.onFocus((()=>this._renderService.handleFocus()))),this.register(this._renderService.onDimensionsChange((()=>this.viewport.syncScrollArea()))),this._selectionService=this.register(this._instantiationService.createInstance(m.SelectionService,this.element,this.screenElement,this.linkifier)),this._instantiationService.setService(S.ISelectionService,this._selectionService),this.register(this._selectionService.onRequestScrollLines((e=>this.scrollLines(e.amount,e.suppressScrollEvent)))),this.register(this._selectionService.onSelectionChange((()=>this._onSelectionChange.fire()))),this.register(this._selectionService.onRequestRedraw((e=>this._renderService.handleSelectionChanged(e.start,e.end,e.columnSelectMode)))),this.register(this._selectionService.onLinuxMouseSelection((e=>{this.textarea.value=e,this.textarea.focus(),this.textarea.select()}))),this.register(this._onScroll.event((e=>{this.viewport.syncScrollArea(),this._selectionService.refresh()}))),this.register((0,r.addDisposableDomListener)(this._viewportElement,\"scroll\",(()=>this._selectionService.refresh()))),this.register(this._instantiationService.createInstance(c.BufferDecorationRenderer,this.screenElement)),this.register((0,r.addDisposableDomListener)(this.element,\"mousedown\",(e=>this._selectionService.handleMouseDown(e)))),this.coreMouseService.areMouseEventsActive?(this._selectionService.disable(),this.element.classList.add(\"enable-mouse-events\")):this._selectionService.enable(),this.options.screenReaderMode&&(this._accessibilityManager.value=this._instantiationService.createInstance(M.AccessibilityManager,this)),this.register(this.optionsService.onSpecificOptionChange(\"screenReaderMode\",(e=>this._handleScreenReaderModeOptionChange(e)))),this.options.overviewRulerWidth&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(l.OverviewRulerRenderer,this._viewportElement,this.screenElement))),this.optionsService.onSpecificOptionChange(\"overviewRulerWidth\",(e=>{!this._overviewRulerRenderer&&e&&this._viewportElement&&this.screenElement&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(l.OverviewRulerRenderer,this._viewportElement,this.screenElement)))})),this._charSizeService.measure(),this.refresh(0,this.rows-1),this._initGlobal(),this.bindMouse()}_createRenderer(){return this._instantiationService.createInstance(_.DomRenderer,this,this._document,this.element,this.screenElement,this._viewportElement,this._helperContainer,this.linkifier)}bindMouse(){const e=this,t=this.element;function i(t){const i=e._mouseService.getMouseReportCoords(t,e.screenElement);if(!i)return!1;let s,r;switch(t.overrideType||t.type){case\"mousemove\":r=32,void 0===t.buttons?(s=3,void 0!==t.button&&(s=t.button<3?t.button:3)):s=1&t.buttons?0:4&t.buttons?1:2&t.buttons?2:3;break;case\"mouseup\":r=0,s=t.button<3?t.button:3;break;case\"mousedown\":r=1,s=t.button<3?t.button:3;break;case\"wheel\":if(e._customWheelEventHandler&&!1===e._customWheelEventHandler(t))return!1;if(0===e.viewport.getLinesScrolled(t))return!1;r=t.deltaY<0?0:1,s=4;break;default:return!1}return!(void 0===r||void 0===s||s>4)&&e.coreMouseService.triggerMouseEvent({col:i.col,row:i.row,x:i.x,y:i.y,button:s,action:r,ctrl:t.ctrlKey,alt:t.altKey,shift:t.shiftKey})}const s={mouseup:null,wheel:null,mousedrag:null,mousemove:null},n={mouseup:e=>(i(e),e.buttons||(this._document.removeEventListener(\"mouseup\",s.mouseup),s.mousedrag&&this._document.removeEventListener(\"mousemove\",s.mousedrag)),this.cancel(e)),wheel:e=>(i(e),this.cancel(e,!0)),mousedrag:e=>{e.buttons&&i(e)},mousemove:e=>{e.buttons||i(e)}};this.register(this.coreMouseService.onProtocolChange((e=>{e?(\"debug\"===this.optionsService.rawOptions.logLevel&&this._logService.debug(\"Binding to mouse events:\",this.coreMouseService.explainEvents(e)),this.element.classList.add(\"enable-mouse-events\"),this._selectionService.disable()):(this._logService.debug(\"Unbinding from mouse events.\"),this.element.classList.remove(\"enable-mouse-events\"),this._selectionService.enable()),8&e?s.mousemove||(t.addEventListener(\"mousemove\",n.mousemove),s.mousemove=n.mousemove):(t.removeEventListener(\"mousemove\",s.mousemove),s.mousemove=null),16&e?s.wheel||(t.addEventListener(\"wheel\",n.wheel,{passive:!1}),s.wheel=n.wheel):(t.removeEventListener(\"wheel\",s.wheel),s.wheel=null),2&e?s.mouseup||(s.mouseup=n.mouseup):(this._document.removeEventListener(\"mouseup\",s.mouseup),s.mouseup=null),4&e?s.mousedrag||(s.mousedrag=n.mousedrag):(this._document.removeEventListener(\"mousemove\",s.mousedrag),s.mousedrag=null)}))),this.coreMouseService.activeProtocol=this.coreMouseService.activeProtocol,this.register((0,r.addDisposableDomListener)(t,\"mousedown\",(e=>{if(e.preventDefault(),this.focus(),this.coreMouseService.areMouseEventsActive&&!this._selectionService.shouldForceSelection(e))return i(e),s.mouseup&&this._document.addEventListener(\"mouseup\",s.mouseup),s.mousedrag&&this._document.addEventListener(\"mousemove\",s.mousedrag),this.cancel(e)}))),this.register((0,r.addDisposableDomListener)(t,\"wheel\",(e=>{if(!s.wheel){if(this._customWheelEventHandler&&!1===this._customWheelEventHandler(e))return!1;if(!this.buffer.hasScrollback){const t=this.viewport.getLinesScrolled(e);if(0===t)return;const i=D.C0.ESC+(this.coreService.decPrivateModes.applicationCursorKeys?\"O\":\"[\")+(e.deltaY<0?\"A\":\"B\");let s=\"\";for(let e=0;e{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchStart(e),this.cancel(e)}),{passive:!0})),this.register((0,r.addDisposableDomListener)(t,\"touchmove\",(e=>{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchMove(e)?void 0:this.cancel(e)}),{passive:!1}))}refresh(e,t){this._renderService?.refreshRows(e,t)}updateCursorStyle(e){this._selectionService?.shouldColumnSelect(e)?this.element.classList.add(\"column-select\"):this.element.classList.remove(\"column-select\")}_showCursor(){this.coreService.isCursorInitialized||(this.coreService.isCursorInitialized=!0,this.refresh(this.buffer.y,this.buffer.y))}scrollLines(e,t,i=0){1===i?(super.scrollLines(e,t,i),this.refresh(0,this.rows-1)):this.viewport?.scrollLines(e)}paste(e){(0,s.paste)(e,this.textarea,this.coreService,this.optionsService)}attachCustomKeyEventHandler(e){this._customKeyEventHandler=e}attachCustomWheelEventHandler(e){this._customWheelEventHandler=e}registerLinkProvider(e){return this._linkProviderService.registerLinkProvider(e)}registerCharacterJoiner(e){if(!this._characterJoinerService)throw new Error(\"Terminal must be opened first\");const t=this._characterJoinerService.register(e);return this.refresh(0,this.rows-1),t}deregisterCharacterJoiner(e){if(!this._characterJoinerService)throw new Error(\"Terminal must be opened first\");this._characterJoinerService.deregister(e)&&this.refresh(0,this.rows-1)}get markers(){return this.buffer.markers}registerMarker(e){return this.buffer.addMarker(this.buffer.ybase+this.buffer.y+e)}registerDecoration(e){return this._decorationService.registerDecoration(e)}hasSelection(){return!!this._selectionService&&this._selectionService.hasSelection}select(e,t,i){this._selectionService.setSelection(e,t,i)}getSelection(){return this._selectionService?this._selectionService.selectionText:\"\"}getSelectionPosition(){if(this._selectionService&&this._selectionService.hasSelection)return{start:{x:this._selectionService.selectionStart[0],y:this._selectionService.selectionStart[1]},end:{x:this._selectionService.selectionEnd[0],y:this._selectionService.selectionEnd[1]}}}clearSelection(){this._selectionService?.clearSelection()}selectAll(){this._selectionService?.selectAll()}selectLines(e,t){this._selectionService?.selectLines(e,t)}_keyDown(e){if(this._keyDownHandled=!1,this._keyDownSeen=!0,this._customKeyEventHandler&&!1===this._customKeyEventHandler(e))return!1;const t=this.browser.isMac&&this.options.macOptionIsMeta&&e.altKey;if(!t&&!this._compositionHelper.keydown(e))return this.options.scrollOnUserInput&&this.buffer.ybase!==this.buffer.ydisp&&this.scrollToBottom(),!1;t||\"Dead\"!==e.key&&\"AltGraph\"!==e.key||(this._unprocessedDeadKey=!0);const i=(0,R.evaluateKeyboardEvent)(e,this.coreService.decPrivateModes.applicationCursorKeys,this.browser.isMac,this.options.macOptionIsMeta);if(this.updateCursorStyle(e),3===i.type||2===i.type){const t=this.rows-1;return this.scrollLines(2===i.type?-t:t),this.cancel(e,!0)}return 1===i.type&&this.selectAll(),!!this._isThirdLevelShift(this.browser,e)||(i.cancel&&this.cancel(e,!0),!i.key||!!(e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&1===e.key.length&&e.key.charCodeAt(0)>=65&&e.key.charCodeAt(0)<=90)||(this._unprocessedDeadKey?(this._unprocessedDeadKey=!1,!0):(i.key!==D.C0.ETX&&i.key!==D.C0.CR||(this.textarea.value=\"\"),this._onKey.fire({key:i.key,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(i.key,!0),!this.optionsService.rawOptions.screenReaderMode||e.altKey||e.ctrlKey?this.cancel(e,!0):void(this._keyDownHandled=!0))))}_isThirdLevelShift(e,t){const i=e.isMac&&!this.options.macOptionIsMeta&&t.altKey&&!t.ctrlKey&&!t.metaKey||e.isWindows&&t.altKey&&t.ctrlKey&&!t.metaKey||e.isWindows&&t.getModifierState(\"AltGraph\");return\"keypress\"===t.type?i:i&&(!t.keyCode||t.keyCode>47)}_keyUp(e){this._keyDownSeen=!1,this._customKeyEventHandler&&!1===this._customKeyEventHandler(e)||(function(e){return 16===e.keyCode||17===e.keyCode||18===e.keyCode}(e)||this.focus(),this.updateCursorStyle(e),this._keyPressHandled=!1)}_keyPress(e){let t;if(this._keyPressHandled=!1,this._keyDownHandled)return!1;if(this._customKeyEventHandler&&!1===this._customKeyEventHandler(e))return!1;if(this.cancel(e),e.charCode)t=e.charCode;else if(null===e.which||void 0===e.which)t=e.keyCode;else{if(0===e.which||0===e.charCode)return!1;t=e.which}return!(!t||(e.altKey||e.ctrlKey||e.metaKey)&&!this._isThirdLevelShift(this.browser,e)||(t=String.fromCharCode(t),this._onKey.fire({key:t,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(t,!0),this._keyPressHandled=!0,this._unprocessedDeadKey=!1,0))}_inputEvent(e){if(e.data&&\"insertText\"===e.inputType&&(!e.composed||!this._keyDownSeen)&&!this.optionsService.rawOptions.screenReaderMode){if(this._keyPressHandled)return!1;this._unprocessedDeadKey=!1;const t=e.data;return this.coreService.triggerDataEvent(t,!0),this.cancel(e),!0}return!1}resize(e,t){e!==this.cols||t!==this.rows?super.resize(e,t):this._charSizeService&&!this._charSizeService.hasValidSize&&this._charSizeService.measure()}_afterResize(e,t){this._charSizeService?.measure(),this.viewport?.syncScrollArea(!0)}clear(){if(0!==this.buffer.ybase||0!==this.buffer.y){this.buffer.clearAllMarkers(),this.buffer.lines.set(0,this.buffer.lines.get(this.buffer.ybase+this.buffer.y)),this.buffer.lines.length=1,this.buffer.ydisp=0,this.buffer.ybase=0,this.buffer.y=0;for(let e=1;e{Object.defineProperty(t,\"__esModule\",{value:!0}),t.TimeBasedDebouncer=void 0,t.TimeBasedDebouncer=class{constructor(e,t=1e3){this._renderCallback=e,this._debounceThresholdMS=t,this._lastRefreshMs=0,this._additionalRefreshRequested=!1}dispose(){this._refreshTimeoutID&&clearTimeout(this._refreshTimeoutID)}refresh(e,t,i){this._rowCount=i,e=void 0!==e?e:0,t=void 0!==t?t:this._rowCount-1,this._rowStart=void 0!==this._rowStart?Math.min(this._rowStart,e):e,this._rowEnd=void 0!==this._rowEnd?Math.max(this._rowEnd,t):t;const s=Date.now();if(s-this._lastRefreshMs>=this._debounceThresholdMS)this._lastRefreshMs=s,this._innerRefresh();else if(!this._additionalRefreshRequested){const e=s-this._lastRefreshMs,t=this._debounceThresholdMS-e;this._additionalRefreshRequested=!0,this._refreshTimeoutID=window.setTimeout((()=>{this._lastRefreshMs=Date.now(),this._innerRefresh(),this._additionalRefreshRequested=!1,this._refreshTimeoutID=void 0}),t)}}_innerRefresh(){if(void 0===this._rowStart||void 0===this._rowEnd||void 0===this._rowCount)return;const e=Math.max(this._rowStart,0),t=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(e,t)}}},1680:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.Viewport=void 0;const n=i(3656),o=i(4725),a=i(8460),h=i(844),c=i(2585);let l=t.Viewport=class extends h.Disposable{constructor(e,t,i,s,r,o,h,c){super(),this._viewportElement=e,this._scrollArea=t,this._bufferService=i,this._optionsService=s,this._charSizeService=r,this._renderService=o,this._coreBrowserService=h,this.scrollBarWidth=0,this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._wheelPartialScroll=0,this._refreshAnimationFrame=null,this._ignoreNextScrollEvent=!1,this._smoothScrollState={startTime:0,origin:-1,target:-1},this._onRequestScrollLines=this.register(new a.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this.scrollBarWidth=this._viewportElement.offsetWidth-this._scrollArea.offsetWidth||15,this.register((0,n.addDisposableDomListener)(this._viewportElement,\"scroll\",this._handleScroll.bind(this))),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate((e=>this._activeBuffer=e.activeBuffer))),this._renderDimensions=this._renderService.dimensions,this.register(this._renderService.onDimensionsChange((e=>this._renderDimensions=e))),this._handleThemeChange(c.colors),this.register(c.onChangeColors((e=>this._handleThemeChange(e)))),this.register(this._optionsService.onSpecificOptionChange(\"scrollback\",(()=>this.syncScrollArea()))),setTimeout((()=>this.syncScrollArea()))}_handleThemeChange(e){this._viewportElement.style.backgroundColor=e.background.css}reset(){this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._coreBrowserService.window.requestAnimationFrame((()=>this.syncScrollArea()))}_refresh(e){if(e)return this._innerRefresh(),void(null!==this._refreshAnimationFrame&&this._coreBrowserService.window.cancelAnimationFrame(this._refreshAnimationFrame));null===this._refreshAnimationFrame&&(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>this._innerRefresh())))}_innerRefresh(){if(this._charSizeService.height>0){this._currentRowHeight=this._renderDimensions.device.cell.height/this._coreBrowserService.dpr,this._currentDeviceCellHeight=this._renderDimensions.device.cell.height,this._lastRecordedViewportHeight=this._viewportElement.offsetHeight;const e=Math.round(this._currentRowHeight*this._lastRecordedBufferLength)+(this._lastRecordedViewportHeight-this._renderDimensions.css.canvas.height);this._lastRecordedBufferHeight!==e&&(this._lastRecordedBufferHeight=e,this._scrollArea.style.height=this._lastRecordedBufferHeight+\"px\")}const e=this._bufferService.buffer.ydisp*this._currentRowHeight;this._viewportElement.scrollTop!==e&&(this._ignoreNextScrollEvent=!0,this._viewportElement.scrollTop=e),this._refreshAnimationFrame=null}syncScrollArea(e=!1){if(this._lastRecordedBufferLength!==this._bufferService.buffer.lines.length)return this._lastRecordedBufferLength=this._bufferService.buffer.lines.length,void this._refresh(e);this._lastRecordedViewportHeight===this._renderService.dimensions.css.canvas.height&&this._lastScrollTop===this._activeBuffer.ydisp*this._currentRowHeight&&this._renderDimensions.device.cell.height===this._currentDeviceCellHeight||this._refresh(e)}_handleScroll(e){if(this._lastScrollTop=this._viewportElement.scrollTop,!this._viewportElement.offsetParent)return;if(this._ignoreNextScrollEvent)return this._ignoreNextScrollEvent=!1,void this._onRequestScrollLines.fire({amount:0,suppressScrollEvent:!0});const t=Math.round(this._lastScrollTop/this._currentRowHeight)-this._bufferService.buffer.ydisp;this._onRequestScrollLines.fire({amount:t,suppressScrollEvent:!0})}_smoothScroll(){if(this._isDisposed||-1===this._smoothScrollState.origin||-1===this._smoothScrollState.target)return;const e=this._smoothScrollPercent();this._viewportElement.scrollTop=this._smoothScrollState.origin+Math.round(e*(this._smoothScrollState.target-this._smoothScrollState.origin)),e<1?this._coreBrowserService.window.requestAnimationFrame((()=>this._smoothScroll())):this._clearSmoothScrollState()}_smoothScrollPercent(){return this._optionsService.rawOptions.smoothScrollDuration&&this._smoothScrollState.startTime?Math.max(Math.min((Date.now()-this._smoothScrollState.startTime)/this._optionsService.rawOptions.smoothScrollDuration,1),0):1}_clearSmoothScrollState(){this._smoothScrollState.startTime=0,this._smoothScrollState.origin=-1,this._smoothScrollState.target=-1}_bubbleScroll(e,t){const i=this._viewportElement.scrollTop+this._lastRecordedViewportHeight;return!(t<0&&0!==this._viewportElement.scrollTop||t>0&&i0&&(i=e),s=\"\"}}return{bufferElements:r,cursorElement:i}}getLinesScrolled(e){if(0===e.deltaY||e.shiftKey)return 0;let t=this._applyScrollModifier(e.deltaY,e);return e.deltaMode===WheelEvent.DOM_DELTA_PIXEL?(t/=this._currentRowHeight+0,this._wheelPartialScroll+=t,t=Math.floor(Math.abs(this._wheelPartialScroll))*(this._wheelPartialScroll>0?1:-1),this._wheelPartialScroll%=1):e.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(t*=this._bufferService.rows),t}_applyScrollModifier(e,t){const i=this._optionsService.rawOptions.fastScrollModifier;return\"alt\"===i&&t.altKey||\"ctrl\"===i&&t.ctrlKey||\"shift\"===i&&t.shiftKey?e*this._optionsService.rawOptions.fastScrollSensitivity*this._optionsService.rawOptions.scrollSensitivity:e*this._optionsService.rawOptions.scrollSensitivity}handleTouchStart(e){this._lastTouchY=e.touches[0].pageY}handleTouchMove(e){const t=this._lastTouchY-e.touches[0].pageY;return this._lastTouchY=e.touches[0].pageY,0!==t&&(this._viewportElement.scrollTop+=t,this._bubbleScroll(e,t))}};t.Viewport=l=s([r(2,c.IBufferService),r(3,c.IOptionsService),r(4,o.ICharSizeService),r(5,o.IRenderService),r(6,o.ICoreBrowserService),r(7,o.IThemeService)],l)},3107:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.BufferDecorationRenderer=void 0;const n=i(4725),o=i(844),a=i(2585);let h=t.BufferDecorationRenderer=class extends o.Disposable{constructor(e,t,i,s,r){super(),this._screenElement=e,this._bufferService=t,this._coreBrowserService=i,this._decorationService=s,this._renderService=r,this._decorationElements=new Map,this._altBufferIsActive=!1,this._dimensionsChanged=!1,this._container=document.createElement(\"div\"),this._container.classList.add(\"xterm-decoration-container\"),this._screenElement.appendChild(this._container),this.register(this._renderService.onRenderedViewportChange((()=>this._doRefreshDecorations()))),this.register(this._renderService.onDimensionsChange((()=>{this._dimensionsChanged=!0,this._queueRefresh()}))),this.register(this._coreBrowserService.onDprChange((()=>this._queueRefresh()))),this.register(this._bufferService.buffers.onBufferActivate((()=>{this._altBufferIsActive=this._bufferService.buffer===this._bufferService.buffers.alt}))),this.register(this._decorationService.onDecorationRegistered((()=>this._queueRefresh()))),this.register(this._decorationService.onDecorationRemoved((e=>this._removeDecoration(e)))),this.register((0,o.toDisposable)((()=>{this._container.remove(),this._decorationElements.clear()})))}_queueRefresh(){void 0===this._animationFrame&&(this._animationFrame=this._renderService.addRefreshCallback((()=>{this._doRefreshDecorations(),this._animationFrame=void 0})))}_doRefreshDecorations(){for(const e of this._decorationService.decorations)this._renderDecoration(e);this._dimensionsChanged=!1}_renderDecoration(e){this._refreshStyle(e),this._dimensionsChanged&&this._refreshXPosition(e)}_createElement(e){const t=this._coreBrowserService.mainDocument.createElement(\"div\");t.classList.add(\"xterm-decoration\"),t.classList.toggle(\"xterm-decoration-top-layer\",\"top\"===e?.options?.layer),t.style.width=`${Math.round((e.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,t.style.height=(e.options.height||1)*this._renderService.dimensions.css.cell.height+\"px\",t.style.top=(e.marker.line-this._bufferService.buffers.active.ydisp)*this._renderService.dimensions.css.cell.height+\"px\",t.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`;const i=e.options.x??0;return i&&i>this._bufferService.cols&&(t.style.display=\"none\"),this._refreshXPosition(e,t),t}_refreshStyle(e){const t=e.marker.line-this._bufferService.buffers.active.ydisp;if(t<0||t>=this._bufferService.rows)e.element&&(e.element.style.display=\"none\",e.onRenderEmitter.fire(e.element));else{let i=this._decorationElements.get(e);i||(i=this._createElement(e),e.element=i,this._decorationElements.set(e,i),this._container.appendChild(i),e.onDispose((()=>{this._decorationElements.delete(e),i.remove()}))),i.style.top=t*this._renderService.dimensions.css.cell.height+\"px\",i.style.display=this._altBufferIsActive?\"none\":\"block\",e.onRenderEmitter.fire(i)}}_refreshXPosition(e,t=e.element){if(!t)return;const i=e.options.x??0;\"right\"===(e.options.anchor||\"left\")?t.style.right=i?i*this._renderService.dimensions.css.cell.width+\"px\":\"\":t.style.left=i?i*this._renderService.dimensions.css.cell.width+\"px\":\"\"}_removeDecoration(e){this._decorationElements.get(e)?.remove(),this._decorationElements.delete(e),e.dispose()}};t.BufferDecorationRenderer=h=s([r(1,a.IBufferService),r(2,n.ICoreBrowserService),r(3,a.IDecorationService),r(4,n.IRenderService)],h)},5871:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.ColorZoneStore=void 0,t.ColorZoneStore=class{constructor(){this._zones=[],this._zonePool=[],this._zonePoolIndex=0,this._linePadding={full:0,left:0,center:0,right:0}}get zones(){return this._zonePool.length=Math.min(this._zonePool.length,this._zones.length),this._zones}clear(){this._zones.length=0,this._zonePoolIndex=0}addDecoration(e){if(e.options.overviewRulerOptions){for(const t of this._zones)if(t.color===e.options.overviewRulerOptions.color&&t.position===e.options.overviewRulerOptions.position){if(this._lineIntersectsZone(t,e.marker.line))return;if(this._lineAdjacentToZone(t,e.marker.line,e.options.overviewRulerOptions.position))return void this._addLineToZone(t,e.marker.line)}if(this._zonePoolIndex=e.startBufferLine&&t<=e.endBufferLine}_lineAdjacentToZone(e,t,i){return t>=e.startBufferLine-this._linePadding[i||\"full\"]&&t<=e.endBufferLine+this._linePadding[i||\"full\"]}_addLineToZone(e,t){e.startBufferLine=Math.min(e.startBufferLine,t),e.endBufferLine=Math.max(e.endBufferLine,t)}}},5744:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.OverviewRulerRenderer=void 0;const n=i(5871),o=i(4725),a=i(844),h=i(2585),c={full:0,left:0,center:0,right:0},l={full:0,left:0,center:0,right:0},d={full:0,left:0,center:0,right:0};let _=t.OverviewRulerRenderer=class extends a.Disposable{get _width(){return this._optionsService.options.overviewRulerWidth||0}constructor(e,t,i,s,r,o,h){super(),this._viewportElement=e,this._screenElement=t,this._bufferService=i,this._decorationService=s,this._renderService=r,this._optionsService=o,this._coreBrowserService=h,this._colorZoneStore=new n.ColorZoneStore,this._shouldUpdateDimensions=!0,this._shouldUpdateAnchor=!0,this._lastKnownBufferLength=0,this._canvas=this._coreBrowserService.mainDocument.createElement(\"canvas\"),this._canvas.classList.add(\"xterm-decoration-overview-ruler\"),this._refreshCanvasDimensions(),this._viewportElement.parentElement?.insertBefore(this._canvas,this._viewportElement);const c=this._canvas.getContext(\"2d\");if(!c)throw new Error(\"Ctx cannot be null\");this._ctx=c,this._registerDecorationListeners(),this._registerBufferChangeListeners(),this._registerDimensionChangeListeners(),this.register((0,a.toDisposable)((()=>{this._canvas?.remove()})))}_registerDecorationListeners(){this.register(this._decorationService.onDecorationRegistered((()=>this._queueRefresh(void 0,!0)))),this.register(this._decorationService.onDecorationRemoved((()=>this._queueRefresh(void 0,!0))))}_registerBufferChangeListeners(){this.register(this._renderService.onRenderedViewportChange((()=>this._queueRefresh()))),this.register(this._bufferService.buffers.onBufferActivate((()=>{this._canvas.style.display=this._bufferService.buffer===this._bufferService.buffers.alt?\"none\":\"block\"}))),this.register(this._bufferService.onScroll((()=>{this._lastKnownBufferLength!==this._bufferService.buffers.normal.lines.length&&(this._refreshDrawHeightConstants(),this._refreshColorZonePadding())})))}_registerDimensionChangeListeners(){this.register(this._renderService.onRender((()=>{this._containerHeight&&this._containerHeight===this._screenElement.clientHeight||(this._queueRefresh(!0),this._containerHeight=this._screenElement.clientHeight)}))),this.register(this._optionsService.onSpecificOptionChange(\"overviewRulerWidth\",(()=>this._queueRefresh(!0)))),this.register(this._coreBrowserService.onDprChange((()=>this._queueRefresh(!0)))),this._queueRefresh(!0)}_refreshDrawConstants(){const e=Math.floor(this._canvas.width/3),t=Math.ceil(this._canvas.width/3);l.full=this._canvas.width,l.left=e,l.center=t,l.right=e,this._refreshDrawHeightConstants(),d.full=0,d.left=0,d.center=l.left,d.right=l.left+l.center}_refreshDrawHeightConstants(){c.full=Math.round(2*this._coreBrowserService.dpr);const e=this._canvas.height/this._bufferService.buffer.lines.length,t=Math.round(Math.max(Math.min(e,12),6)*this._coreBrowserService.dpr);c.left=t,c.center=t,c.right=t}_refreshColorZonePadding(){this._colorZoneStore.setPadding({full:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*c.full),left:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*c.left),center:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*c.center),right:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*c.right)}),this._lastKnownBufferLength=this._bufferService.buffers.normal.lines.length}_refreshCanvasDimensions(){this._canvas.style.width=`${this._width}px`,this._canvas.width=Math.round(this._width*this._coreBrowserService.dpr),this._canvas.style.height=`${this._screenElement.clientHeight}px`,this._canvas.height=Math.round(this._screenElement.clientHeight*this._coreBrowserService.dpr),this._refreshDrawConstants(),this._refreshColorZonePadding()}_refreshDecorations(){this._shouldUpdateDimensions&&this._refreshCanvasDimensions(),this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height),this._colorZoneStore.clear();for(const e of this._decorationService.decorations)this._colorZoneStore.addDecoration(e);this._ctx.lineWidth=1;const e=this._colorZoneStore.zones;for(const t of e)\"full\"!==t.position&&this._renderColorZone(t);for(const t of e)\"full\"===t.position&&this._renderColorZone(t);this._shouldUpdateDimensions=!1,this._shouldUpdateAnchor=!1}_renderColorZone(e){this._ctx.fillStyle=e.color,this._ctx.fillRect(d[e.position||\"full\"],Math.round((this._canvas.height-1)*(e.startBufferLine/this._bufferService.buffers.active.lines.length)-c[e.position||\"full\"]/2),l[e.position||\"full\"],Math.round((this._canvas.height-1)*((e.endBufferLine-e.startBufferLine)/this._bufferService.buffers.active.lines.length)+c[e.position||\"full\"]))}_queueRefresh(e,t){this._shouldUpdateDimensions=e||this._shouldUpdateDimensions,this._shouldUpdateAnchor=t||this._shouldUpdateAnchor,void 0===this._animationFrame&&(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>{this._refreshDecorations(),this._animationFrame=void 0})))}};t.OverviewRulerRenderer=_=s([r(2,h.IBufferService),r(3,h.IDecorationService),r(4,o.IRenderService),r(5,h.IOptionsService),r(6,o.ICoreBrowserService)],_)},2950:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.CompositionHelper=void 0;const n=i(4725),o=i(2585),a=i(2584);let h=t.CompositionHelper=class{get isComposing(){return this._isComposing}constructor(e,t,i,s,r,n){this._textarea=e,this._compositionView=t,this._bufferService=i,this._optionsService=s,this._coreService=r,this._renderService=n,this._isComposing=!1,this._isSendingComposition=!1,this._compositionPosition={start:0,end:0},this._dataAlreadySent=\"\"}compositionstart(){this._isComposing=!0,this._compositionPosition.start=this._textarea.value.length,this._compositionView.textContent=\"\",this._dataAlreadySent=\"\",this._compositionView.classList.add(\"active\")}compositionupdate(e){this._compositionView.textContent=e.data,this.updateCompositionElements(),setTimeout((()=>{this._compositionPosition.end=this._textarea.value.length}),0)}compositionend(){this._finalizeComposition(!0)}keydown(e){if(this._isComposing||this._isSendingComposition){if(229===e.keyCode)return!1;if(16===e.keyCode||17===e.keyCode||18===e.keyCode)return!1;this._finalizeComposition(!1)}return 229!==e.keyCode||(this._handleAnyTextareaChanges(),!1)}_finalizeComposition(e){if(this._compositionView.classList.remove(\"active\"),this._isComposing=!1,e){const e={start:this._compositionPosition.start,end:this._compositionPosition.end};this._isSendingComposition=!0,setTimeout((()=>{if(this._isSendingComposition){let t;this._isSendingComposition=!1,e.start+=this._dataAlreadySent.length,t=this._isComposing?this._textarea.value.substring(e.start,e.end):this._textarea.value.substring(e.start),t.length>0&&this._coreService.triggerDataEvent(t,!0)}}),0)}else{this._isSendingComposition=!1;const e=this._textarea.value.substring(this._compositionPosition.start,this._compositionPosition.end);this._coreService.triggerDataEvent(e,!0)}}_handleAnyTextareaChanges(){const e=this._textarea.value;setTimeout((()=>{if(!this._isComposing){const t=this._textarea.value,i=t.replace(e,\"\");this._dataAlreadySent=i,t.length>e.length?this._coreService.triggerDataEvent(i,!0):t.lengththis.updateCompositionElements(!0)),0)}}};t.CompositionHelper=h=s([r(2,o.IBufferService),r(3,o.IOptionsService),r(4,o.ICoreService),r(5,n.IRenderService)],h)},9806:(e,t)=>{function i(e,t,i){const s=i.getBoundingClientRect(),r=e.getComputedStyle(i),n=parseInt(r.getPropertyValue(\"padding-left\")),o=parseInt(r.getPropertyValue(\"padding-top\"));return[t.clientX-s.left-n,t.clientY-s.top-o]}Object.defineProperty(t,\"__esModule\",{value:!0}),t.getCoords=t.getCoordsRelativeToElement=void 0,t.getCoordsRelativeToElement=i,t.getCoords=function(e,t,s,r,n,o,a,h,c){if(!o)return;const l=i(e,t,s);return l?(l[0]=Math.ceil((l[0]+(c?a/2:0))/a),l[1]=Math.ceil(l[1]/h),l[0]=Math.min(Math.max(l[0],1),r+(c?1:0)),l[1]=Math.min(Math.max(l[1],1),n),l):void 0}},9504:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.moveToCellSequence=void 0;const s=i(2584);function r(e,t,i,s){const r=e-n(e,i),a=t-n(t,i),l=Math.abs(r-a)-function(e,t,i){let s=0;const r=e-n(e,i),a=t-n(t,i);for(let n=0;n=0&&et?\"A\":\"B\"}function a(e,t,i,s,r,n){let o=e,a=t,h=\"\";for(;o!==i||a!==s;)o+=r?1:-1,r&&o>n.cols-1?(h+=n.buffer.translateBufferLineToString(a,!1,e,o),o=0,e=0,a++):!r&&o<0&&(h+=n.buffer.translateBufferLineToString(a,!1,0,e+1),o=n.cols-1,e=o,a--);return h+n.buffer.translateBufferLineToString(a,!1,e,o)}function h(e,t){const i=t?\"O\":\"[\";return s.C0.ESC+i+e}function c(e,t){e=Math.floor(e);let i=\"\";for(let s=0;s0?s-n(s,o):t;const _=s,u=function(e,t,i,s,o,a){let h;return h=r(i,s,o,a).length>0?s-n(s,o):t,e=i&&he?\"D\":\"C\",c(Math.abs(o-e),h(d,s));d=l>t?\"D\":\"C\";const _=Math.abs(l-t);return c(function(e,t){return t.cols-e}(l>t?e:o,i)+(_-1)*i.cols+1+((l>t?o:e)-1),h(d,s))}},1296:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.DomRenderer=void 0;const n=i(3787),o=i(2550),a=i(2223),h=i(6171),c=i(6052),l=i(4725),d=i(8055),_=i(8460),u=i(844),f=i(2585),v=\"xterm-dom-renderer-owner-\",p=\"xterm-rows\",g=\"xterm-fg-\",m=\"xterm-bg-\",S=\"xterm-focus\",C=\"xterm-selection\";let b=1,w=t.DomRenderer=class extends u.Disposable{constructor(e,t,i,s,r,a,l,d,f,g,m,S,w){super(),this._terminal=e,this._document=t,this._element=i,this._screenElement=s,this._viewportElement=r,this._helperContainer=a,this._linkifier2=l,this._charSizeService=f,this._optionsService=g,this._bufferService=m,this._coreBrowserService=S,this._themeService=w,this._terminalClass=b++,this._rowElements=[],this._selectionRenderModel=(0,c.createSelectionRenderModel)(),this.onRequestRedraw=this.register(new _.EventEmitter).event,this._rowContainer=this._document.createElement(\"div\"),this._rowContainer.classList.add(p),this._rowContainer.style.lineHeight=\"normal\",this._rowContainer.setAttribute(\"aria-hidden\",\"true\"),this._refreshRowElements(this._bufferService.cols,this._bufferService.rows),this._selectionContainer=this._document.createElement(\"div\"),this._selectionContainer.classList.add(C),this._selectionContainer.setAttribute(\"aria-hidden\",\"true\"),this.dimensions=(0,h.createRenderDimensions)(),this._updateDimensions(),this.register(this._optionsService.onOptionChange((()=>this._handleOptionsChanged()))),this.register(this._themeService.onChangeColors((e=>this._injectCss(e)))),this._injectCss(this._themeService.colors),this._rowFactory=d.createInstance(n.DomRendererRowFactory,document),this._element.classList.add(v+this._terminalClass),this._screenElement.appendChild(this._rowContainer),this._screenElement.appendChild(this._selectionContainer),this.register(this._linkifier2.onShowLinkUnderline((e=>this._handleLinkHover(e)))),this.register(this._linkifier2.onHideLinkUnderline((e=>this._handleLinkLeave(e)))),this.register((0,u.toDisposable)((()=>{this._element.classList.remove(v+this._terminalClass),this._rowContainer.remove(),this._selectionContainer.remove(),this._widthCache.dispose(),this._themeStyleElement.remove(),this._dimensionsStyleElement.remove()}))),this._widthCache=new o.WidthCache(this._document,this._helperContainer),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}_updateDimensions(){const e=this._coreBrowserService.dpr;this.dimensions.device.char.width=this._charSizeService.width*e,this.dimensions.device.char.height=Math.ceil(this._charSizeService.height*e),this.dimensions.device.cell.width=this.dimensions.device.char.width+Math.round(this._optionsService.rawOptions.letterSpacing),this.dimensions.device.cell.height=Math.floor(this.dimensions.device.char.height*this._optionsService.rawOptions.lineHeight),this.dimensions.device.char.left=0,this.dimensions.device.char.top=0,this.dimensions.device.canvas.width=this.dimensions.device.cell.width*this._bufferService.cols,this.dimensions.device.canvas.height=this.dimensions.device.cell.height*this._bufferService.rows,this.dimensions.css.canvas.width=Math.round(this.dimensions.device.canvas.width/e),this.dimensions.css.canvas.height=Math.round(this.dimensions.device.canvas.height/e),this.dimensions.css.cell.width=this.dimensions.css.canvas.width/this._bufferService.cols,this.dimensions.css.cell.height=this.dimensions.css.canvas.height/this._bufferService.rows;for(const e of this._rowElements)e.style.width=`${this.dimensions.css.canvas.width}px`,e.style.height=`${this.dimensions.css.cell.height}px`,e.style.lineHeight=`${this.dimensions.css.cell.height}px`,e.style.overflow=\"hidden\";this._dimensionsStyleElement||(this._dimensionsStyleElement=this._document.createElement(\"style\"),this._screenElement.appendChild(this._dimensionsStyleElement));const t=`${this._terminalSelector} .${p} span { display: inline-block; height: 100%; vertical-align: top;}`;this._dimensionsStyleElement.textContent=t,this._selectionContainer.style.height=this._viewportElement.style.height,this._screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._screenElement.style.height=`${this.dimensions.css.canvas.height}px`}_injectCss(e){this._themeStyleElement||(this._themeStyleElement=this._document.createElement(\"style\"),this._screenElement.appendChild(this._themeStyleElement));let t=`${this._terminalSelector} .${p} { color: ${e.foreground.css}; font-family: ${this._optionsService.rawOptions.fontFamily}; font-size: ${this._optionsService.rawOptions.fontSize}px; font-kerning: none; white-space: pre}`;t+=`${this._terminalSelector} .${p} .xterm-dim { color: ${d.color.multiplyOpacity(e.foreground,.5).css};}`,t+=`${this._terminalSelector} span:not(.xterm-bold) { font-weight: ${this._optionsService.rawOptions.fontWeight};}${this._terminalSelector} span.xterm-bold { font-weight: ${this._optionsService.rawOptions.fontWeightBold};}${this._terminalSelector} span.xterm-italic { font-style: italic;}`;const i=`blink_underline_${this._terminalClass}`,s=`blink_bar_${this._terminalClass}`,r=`blink_block_${this._terminalClass}`;t+=`@keyframes ${i} { 50% { border-bottom-style: hidden; }}`,t+=`@keyframes ${s} { 50% { box-shadow: none; }}`,t+=`@keyframes ${r} { 0% { background-color: ${e.cursor.css}; color: ${e.cursorAccent.css}; } 50% { background-color: inherit; color: ${e.cursor.css}; }}`,t+=`${this._terminalSelector} .${p}.${S} .xterm-cursor.xterm-cursor-blink.xterm-cursor-underline { animation: ${i} 1s step-end infinite;}${this._terminalSelector} .${p}.${S} .xterm-cursor.xterm-cursor-blink.xterm-cursor-bar { animation: ${s} 1s step-end infinite;}${this._terminalSelector} .${p}.${S} .xterm-cursor.xterm-cursor-blink.xterm-cursor-block { animation: ${r} 1s step-end infinite;}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-block { background-color: ${e.cursor.css}; color: ${e.cursorAccent.css};}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-block:not(.xterm-cursor-blink) { background-color: ${e.cursor.css} !important; color: ${e.cursorAccent.css} !important;}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-outline { outline: 1px solid ${e.cursor.css}; outline-offset: -1px;}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-bar { box-shadow: ${this._optionsService.rawOptions.cursorWidth}px 0 0 ${e.cursor.css} inset;}${this._terminalSelector} .${p} .xterm-cursor.xterm-cursor-underline { border-bottom: 1px ${e.cursor.css}; border-bottom-style: solid; height: calc(100% - 1px);}`,t+=`${this._terminalSelector} .${C} { position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none;}${this._terminalSelector}.focus .${C} div { position: absolute; background-color: ${e.selectionBackgroundOpaque.css};}${this._terminalSelector} .${C} div { position: absolute; background-color: ${e.selectionInactiveBackgroundOpaque.css};}`;for(const[i,s]of e.ansi.entries())t+=`${this._terminalSelector} .${g}${i} { color: ${s.css}; }${this._terminalSelector} .${g}${i}.xterm-dim { color: ${d.color.multiplyOpacity(s,.5).css}; }${this._terminalSelector} .${m}${i} { background-color: ${s.css}; }`;t+=`${this._terminalSelector} .${g}${a.INVERTED_DEFAULT_COLOR} { color: ${d.color.opaque(e.background).css}; }${this._terminalSelector} .${g}${a.INVERTED_DEFAULT_COLOR}.xterm-dim { color: ${d.color.multiplyOpacity(d.color.opaque(e.background),.5).css}; }${this._terminalSelector} .${m}${a.INVERTED_DEFAULT_COLOR} { background-color: ${e.foreground.css}; }`,this._themeStyleElement.textContent=t}_setDefaultSpacing(){const e=this.dimensions.css.cell.width-this._widthCache.get(\"W\",!1,!1);this._rowContainer.style.letterSpacing=`${e}px`,this._rowFactory.defaultSpacing=e}handleDevicePixelRatioChange(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}_refreshRowElements(e,t){for(let e=this._rowElements.length;e<=t;e++){const e=this._document.createElement(\"div\");this._rowContainer.appendChild(e),this._rowElements.push(e)}for(;this._rowElements.length>t;)this._rowContainer.removeChild(this._rowElements.pop())}handleResize(e,t){this._refreshRowElements(e,t),this._updateDimensions(),this.handleSelectionChanged(this._selectionRenderModel.selectionStart,this._selectionRenderModel.selectionEnd,this._selectionRenderModel.columnSelectMode)}handleCharSizeChanged(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}handleBlur(){this._rowContainer.classList.remove(S),this.renderRows(0,this._bufferService.rows-1)}handleFocus(){this._rowContainer.classList.add(S),this.renderRows(this._bufferService.buffer.y,this._bufferService.buffer.y)}handleSelectionChanged(e,t,i){if(this._selectionContainer.replaceChildren(),this._rowFactory.handleSelectionChanged(e,t,i),this.renderRows(0,this._bufferService.rows-1),!e||!t)return;this._selectionRenderModel.update(this._terminal,e,t,i);const s=this._selectionRenderModel.viewportStartRow,r=this._selectionRenderModel.viewportEndRow,n=this._selectionRenderModel.viewportCappedStartRow,o=this._selectionRenderModel.viewportCappedEndRow;if(n>=this._bufferService.rows||o<0)return;const a=this._document.createDocumentFragment();if(i){const i=e[0]>t[0];a.appendChild(this._createSelectionElement(n,i?t[0]:e[0],i?e[0]:t[0],o-n+1))}else{const i=s===n?e[0]:0,h=n===r?t[0]:this._bufferService.cols;a.appendChild(this._createSelectionElement(n,i,h));const c=o-n-1;if(a.appendChild(this._createSelectionElement(n+1,0,this._bufferService.cols,c)),n!==o){const e=r===o?t[0]:this._bufferService.cols;a.appendChild(this._createSelectionElement(o,0,e))}}this._selectionContainer.appendChild(a)}_createSelectionElement(e,t,i,s=1){const r=this._document.createElement(\"div\"),n=t*this.dimensions.css.cell.width;let o=this.dimensions.css.cell.width*(i-t);return n+o>this.dimensions.css.canvas.width&&(o=this.dimensions.css.canvas.width-n),r.style.height=s*this.dimensions.css.cell.height+\"px\",r.style.top=e*this.dimensions.css.cell.height+\"px\",r.style.left=`${n}px`,r.style.width=`${o}px`,r}handleCursorMove(){}_handleOptionsChanged(){this._updateDimensions(),this._injectCss(this._themeService.colors),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}clear(){for(const e of this._rowElements)e.replaceChildren()}renderRows(e,t){const i=this._bufferService.buffer,s=i.ybase+i.y,r=Math.min(i.x,this._bufferService.cols-1),n=this._optionsService.rawOptions.cursorBlink,o=this._optionsService.rawOptions.cursorStyle,a=this._optionsService.rawOptions.cursorInactiveStyle;for(let h=e;h<=t;h++){const e=h+i.ydisp,t=this._rowElements[h],c=i.lines.get(e);if(!t||!c)break;t.replaceChildren(...this._rowFactory.createRow(c,e,e===s,o,a,r,n,this.dimensions.css.cell.width,this._widthCache,-1,-1))}}get _terminalSelector(){return`.${v}${this._terminalClass}`}_handleLinkHover(e){this._setCellUnderline(e.x1,e.x2,e.y1,e.y2,e.cols,!0)}_handleLinkLeave(e){this._setCellUnderline(e.x1,e.x2,e.y1,e.y2,e.cols,!1)}_setCellUnderline(e,t,i,s,r,n){i<0&&(e=0),s<0&&(t=0);const o=this._bufferService.rows-1;i=Math.max(Math.min(i,o),0),s=Math.max(Math.min(s,o),0),r=Math.min(r,this._bufferService.cols);const a=this._bufferService.buffer,h=a.ybase+a.y,c=Math.min(a.x,r-1),l=this._optionsService.rawOptions.cursorBlink,d=this._optionsService.rawOptions.cursorStyle,_=this._optionsService.rawOptions.cursorInactiveStyle;for(let o=i;o<=s;++o){const u=o+a.ydisp,f=this._rowElements[o],v=a.lines.get(u);if(!f||!v)break;f.replaceChildren(...this._rowFactory.createRow(v,u,u===h,d,_,c,l,this.dimensions.css.cell.width,this._widthCache,n?o===i?e:0:-1,n?(o===s?t:r)-1:-1))}}};t.DomRenderer=w=s([r(7,f.IInstantiationService),r(8,l.ICharSizeService),r(9,f.IOptionsService),r(10,f.IBufferService),r(11,l.ICoreBrowserService),r(12,l.IThemeService)],w)},3787:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.DomRendererRowFactory=void 0;const n=i(2223),o=i(643),a=i(511),h=i(2585),c=i(8055),l=i(4725),d=i(4269),_=i(6171),u=i(3734);let f=t.DomRendererRowFactory=class{constructor(e,t,i,s,r,n,o){this._document=e,this._characterJoinerService=t,this._optionsService=i,this._coreBrowserService=s,this._coreService=r,this._decorationService=n,this._themeService=o,this._workCell=new a.CellData,this._columnSelectMode=!1,this.defaultSpacing=0}handleSelectionChanged(e,t,i){this._selectionStart=e,this._selectionEnd=t,this._columnSelectMode=i}createRow(e,t,i,s,r,a,h,l,_,f,p){const g=[],m=this._characterJoinerService.getJoinedCharacters(t),S=this._themeService.colors;let C,b=e.getNoBgTrimmedLength();i&&b0&&M===m[0][0]){O=!0;const t=m.shift();I=new d.JoinedCellData(this._workCell,e.translateToString(!0,t[0],t[1]),t[1]-t[0]),P=t[1]-1,b=I.getWidth()}const H=this._isCellInSelection(M,t),F=i&&M===a,W=T&&M>=f&&M<=p;let U=!1;this._decorationService.forEachDecorationAtCell(M,t,void 0,(e=>{U=!0}));let N=I.getChars()||o.WHITESPACE_CELL_CHAR;if(\" \"===N&&(I.isUnderline()||I.isOverline())&&(N=\" \"),A=b*l-_.get(N,I.isBold(),I.isItalic()),C){if(w&&(H&&x||!H&&!x&&I.bg===E)&&(H&&x&&S.selectionForeground||I.fg===k)&&I.extended.ext===L&&W===D&&A===R&&!F&&!O&&!U){I.isInvisible()?y+=o.WHITESPACE_CELL_CHAR:y+=N,w++;continue}w&&(C.textContent=y),C=this._document.createElement(\"span\"),w=0,y=\"\"}else C=this._document.createElement(\"span\");if(E=I.bg,k=I.fg,L=I.extended.ext,D=W,R=A,x=H,O&&a>=M&&a<=P&&(a=M),!this._coreService.isCursorHidden&&F&&this._coreService.isCursorInitialized)if(B.push(\"xterm-cursor\"),this._coreBrowserService.isFocused)h&&B.push(\"xterm-cursor-blink\"),B.push(\"bar\"===s?\"xterm-cursor-bar\":\"underline\"===s?\"xterm-cursor-underline\":\"xterm-cursor-block\");else if(r)switch(r){case\"outline\":B.push(\"xterm-cursor-outline\");break;case\"block\":B.push(\"xterm-cursor-block\");break;case\"bar\":B.push(\"xterm-cursor-bar\");break;case\"underline\":B.push(\"xterm-cursor-underline\")}if(I.isBold()&&B.push(\"xterm-bold\"),I.isItalic()&&B.push(\"xterm-italic\"),I.isDim()&&B.push(\"xterm-dim\"),y=I.isInvisible()?o.WHITESPACE_CELL_CHAR:I.getChars()||o.WHITESPACE_CELL_CHAR,I.isUnderline()&&(B.push(`xterm-underline-${I.extended.underlineStyle}`),\" \"===y&&(y=\" \"),!I.isUnderlineColorDefault()))if(I.isUnderlineColorRGB())C.style.textDecorationColor=`rgb(${u.AttributeData.toColorRGB(I.getUnderlineColor()).join(\",\")})`;else{let e=I.getUnderlineColor();this._optionsService.rawOptions.drawBoldTextInBrightColors&&I.isBold()&&e<8&&(e+=8),C.style.textDecorationColor=S.ansi[e].css}I.isOverline()&&(B.push(\"xterm-overline\"),\" \"===y&&(y=\" \")),I.isStrikethrough()&&B.push(\"xterm-strikethrough\"),W&&(C.style.textDecoration=\"underline\");let $=I.getFgColor(),j=I.getFgColorMode(),z=I.getBgColor(),K=I.getBgColorMode();const q=!!I.isInverse();if(q){const e=$;$=z,z=e;const t=j;j=K,K=t}let V,G,X,J=!1;switch(this._decorationService.forEachDecorationAtCell(M,t,void 0,(e=>{\"top\"!==e.options.layer&&J||(e.backgroundColorRGB&&(K=50331648,z=e.backgroundColorRGB.rgba>>8&16777215,V=e.backgroundColorRGB),e.foregroundColorRGB&&(j=50331648,$=e.foregroundColorRGB.rgba>>8&16777215,G=e.foregroundColorRGB),J=\"top\"===e.options.layer)})),!J&&H&&(V=this._coreBrowserService.isFocused?S.selectionBackgroundOpaque:S.selectionInactiveBackgroundOpaque,z=V.rgba>>8&16777215,K=50331648,J=!0,S.selectionForeground&&(j=50331648,$=S.selectionForeground.rgba>>8&16777215,G=S.selectionForeground)),J&&B.push(\"xterm-decoration-top\"),K){case 16777216:case 33554432:X=S.ansi[z],B.push(`xterm-bg-${z}`);break;case 50331648:X=c.channels.toColor(z>>16,z>>8&255,255&z),this._addStyle(C,`background-color:#${v((z>>>0).toString(16),\"0\",6)}`);break;default:q?(X=S.foreground,B.push(`xterm-bg-${n.INVERTED_DEFAULT_COLOR}`)):X=S.background}switch(V||I.isDim()&&(V=c.color.multiplyOpacity(X,.5)),j){case 16777216:case 33554432:I.isBold()&&$<8&&this._optionsService.rawOptions.drawBoldTextInBrightColors&&($+=8),this._applyMinimumContrast(C,X,S.ansi[$],I,V,void 0)||B.push(`xterm-fg-${$}`);break;case 50331648:const e=c.channels.toColor($>>16&255,$>>8&255,255&$);this._applyMinimumContrast(C,X,e,I,V,G)||this._addStyle(C,`color:#${v($.toString(16),\"0\",6)}`);break;default:this._applyMinimumContrast(C,X,S.foreground,I,V,G)||q&&B.push(`xterm-fg-${n.INVERTED_DEFAULT_COLOR}`)}B.length&&(C.className=B.join(\" \"),B.length=0),F||O||U?C.textContent=y:w++,A!==this.defaultSpacing&&(C.style.letterSpacing=`${A}px`),g.push(C),M=P}return C&&w&&(C.textContent=y),g}_applyMinimumContrast(e,t,i,s,r,n){if(1===this._optionsService.rawOptions.minimumContrastRatio||(0,_.treatGlyphAsBackgroundColor)(s.getCode()))return!1;const o=this._getContrastCache(s);let a;if(r||n||(a=o.getColor(t.rgba,i.rgba)),void 0===a){const e=this._optionsService.rawOptions.minimumContrastRatio/(s.isDim()?2:1);a=c.color.ensureContrastRatio(r||t,n||i,e),o.setColor((r||t).rgba,(n||i).rgba,a??null)}return!!a&&(this._addStyle(e,`color:${a.css}`),!0)}_getContrastCache(e){return e.isDim()?this._themeService.colors.halfContrastCache:this._themeService.colors.contrastCache}_addStyle(e,t){e.setAttribute(\"style\",`${e.getAttribute(\"style\")||\"\"}${t};`)}_isCellInSelection(e,t){const i=this._selectionStart,s=this._selectionEnd;return!(!i||!s)&&(this._columnSelectMode?i[0]<=s[0]?e>=i[0]&&t>=i[1]&&e=i[1]&&e>=s[0]&&t<=s[1]:t>i[1]&&t=i[0]&&e=i[0])}};function v(e,t,i){for(;e.length{Object.defineProperty(t,\"__esModule\",{value:!0}),t.WidthCache=void 0,t.WidthCache=class{constructor(e,t){this._flat=new Float32Array(256),this._font=\"\",this._fontSize=0,this._weight=\"normal\",this._weightBold=\"bold\",this._measureElements=[],this._container=e.createElement(\"div\"),this._container.classList.add(\"xterm-width-cache-measure-container\"),this._container.setAttribute(\"aria-hidden\",\"true\"),this._container.style.whiteSpace=\"pre\",this._container.style.fontKerning=\"none\";const i=e.createElement(\"span\");i.classList.add(\"xterm-char-measure-element\");const s=e.createElement(\"span\");s.classList.add(\"xterm-char-measure-element\"),s.style.fontWeight=\"bold\";const r=e.createElement(\"span\");r.classList.add(\"xterm-char-measure-element\"),r.style.fontStyle=\"italic\";const n=e.createElement(\"span\");n.classList.add(\"xterm-char-measure-element\"),n.style.fontWeight=\"bold\",n.style.fontStyle=\"italic\",this._measureElements=[i,s,r,n],this._container.appendChild(i),this._container.appendChild(s),this._container.appendChild(r),this._container.appendChild(n),t.appendChild(this._container),this.clear()}dispose(){this._container.remove(),this._measureElements.length=0,this._holey=void 0}clear(){this._flat.fill(-9999),this._holey=new Map}setFont(e,t,i,s){e===this._font&&t===this._fontSize&&i===this._weight&&s===this._weightBold||(this._font=e,this._fontSize=t,this._weight=i,this._weightBold=s,this._container.style.fontFamily=this._font,this._container.style.fontSize=`${this._fontSize}px`,this._measureElements[0].style.fontWeight=`${i}`,this._measureElements[1].style.fontWeight=`${s}`,this._measureElements[2].style.fontWeight=`${i}`,this._measureElements[3].style.fontWeight=`${s}`,this.clear())}get(e,t,i){let s=0;if(!t&&!i&&1===e.length&&(s=e.charCodeAt(0))<256){if(-9999!==this._flat[s])return this._flat[s];const t=this._measure(e,0);return t>0&&(this._flat[s]=t),t}let r=e;t&&(r+=\"B\"),i&&(r+=\"I\");let n=this._holey.get(r);if(void 0===n){let s=0;t&&(s|=1),i&&(s|=2),n=this._measure(e,s),n>0&&this._holey.set(r,n)}return n}_measure(e,t){const i=this._measureElements[t];return i.textContent=e.repeat(32),i.offsetWidth/32}}},2223:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.TEXT_BASELINE=t.DIM_OPACITY=t.INVERTED_DEFAULT_COLOR=void 0;const s=i(6114);t.INVERTED_DEFAULT_COLOR=257,t.DIM_OPACITY=.5,t.TEXT_BASELINE=s.isFirefox||s.isLegacyEdge?\"bottom\":\"ideographic\"},6171:(e,t)=>{function i(e){return 57508<=e&&e<=57558}function s(e){return e>=128512&&e<=128591||e>=127744&&e<=128511||e>=128640&&e<=128767||e>=9728&&e<=9983||e>=9984&&e<=10175||e>=65024&&e<=65039||e>=129280&&e<=129535||e>=127462&&e<=127487}Object.defineProperty(t,\"__esModule\",{value:!0}),t.computeNextVariantOffset=t.createRenderDimensions=t.treatGlyphAsBackgroundColor=t.allowRescaling=t.isEmoji=t.isRestrictedPowerlineGlyph=t.isPowerlineGlyph=t.throwIfFalsy=void 0,t.throwIfFalsy=function(e){if(!e)throw new Error(\"value must not be falsy\");return e},t.isPowerlineGlyph=i,t.isRestrictedPowerlineGlyph=function(e){return 57520<=e&&e<=57527},t.isEmoji=s,t.allowRescaling=function(e,t,r,n){return 1===t&&r>Math.ceil(1.5*n)&&void 0!==e&&e>255&&!s(e)&&!i(e)&&!function(e){return 57344<=e&&e<=63743}(e)},t.treatGlyphAsBackgroundColor=function(e){return i(e)||function(e){return 9472<=e&&e<=9631}(e)},t.createRenderDimensions=function(){return{css:{canvas:{width:0,height:0},cell:{width:0,height:0}},device:{canvas:{width:0,height:0},cell:{width:0,height:0},char:{width:0,height:0,left:0,top:0}}}},t.computeNextVariantOffset=function(e,t,i=0){return(e-(2*Math.round(t)-i))%(2*Math.round(t))}},6052:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.createSelectionRenderModel=void 0;class i{constructor(){this.clear()}clear(){this.hasSelection=!1,this.columnSelectMode=!1,this.viewportStartRow=0,this.viewportEndRow=0,this.viewportCappedStartRow=0,this.viewportCappedEndRow=0,this.startCol=0,this.endCol=0,this.selectionStart=void 0,this.selectionEnd=void 0}update(e,t,i,s=!1){if(this.selectionStart=t,this.selectionEnd=i,!t||!i||t[0]===i[0]&&t[1]===i[1])return void this.clear();const r=e.buffers.active.ydisp,n=t[1]-r,o=i[1]-r,a=Math.max(n,0),h=Math.min(o,e.rows-1);a>=e.rows||h<0?this.clear():(this.hasSelection=!0,this.columnSelectMode=s,this.viewportStartRow=n,this.viewportEndRow=o,this.viewportCappedStartRow=a,this.viewportCappedEndRow=h,this.startCol=t[0],this.endCol=i[0])}isCellSelected(e,t,i){return!!this.hasSelection&&(i-=e.buffer.active.viewportY,this.columnSelectMode?this.startCol<=this.endCol?t>=this.startCol&&i>=this.viewportCappedStartRow&&t=this.viewportCappedStartRow&&t>=this.endCol&&i<=this.viewportCappedEndRow:i>this.viewportStartRow&&i=this.startCol&&t=this.startCol)}}t.createSelectionRenderModel=function(){return new i}},456:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.SelectionModel=void 0,t.SelectionModel=class{constructor(e){this._bufferService=e,this.isSelectAllActive=!1,this.selectionStartLength=0}clearSelection(){this.selectionStart=void 0,this.selectionEnd=void 0,this.isSelectAllActive=!1,this.selectionStartLength=0}get finalSelectionStart(){return this.isSelectAllActive?[0,0]:this.selectionEnd&&this.selectionStart&&this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart}get finalSelectionEnd(){if(this.isSelectAllActive)return[this._bufferService.cols,this._bufferService.buffer.ybase+this._bufferService.rows-1];if(this.selectionStart){if(!this.selectionEnd||this.areSelectionValuesReversed()){const e=this.selectionStart[0]+this.selectionStartLength;return e>this._bufferService.cols?e%this._bufferService.cols==0?[this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)-1]:[e%this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)]:[e,this.selectionStart[1]]}if(this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]){const e=this.selectionStart[0]+this.selectionStartLength;return e>this._bufferService.cols?[e%this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)]:[Math.max(e,this.selectionEnd[0]),this.selectionEnd[1]]}return this.selectionEnd}}areSelectionValuesReversed(){const e=this.selectionStart,t=this.selectionEnd;return!(!e||!t)&&(e[1]>t[1]||e[1]===t[1]&&e[0]>t[0])}handleTrim(e){return this.selectionStart&&(this.selectionStart[1]-=e),this.selectionEnd&&(this.selectionEnd[1]-=e),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)}}},428:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.CharSizeService=void 0;const n=i(2585),o=i(8460),a=i(844);let h=t.CharSizeService=class extends a.Disposable{get hasValidSize(){return this.width>0&&this.height>0}constructor(e,t,i){super(),this._optionsService=i,this.width=0,this.height=0,this._onCharSizeChange=this.register(new o.EventEmitter),this.onCharSizeChange=this._onCharSizeChange.event;try{this._measureStrategy=this.register(new d(this._optionsService))}catch{this._measureStrategy=this.register(new l(e,t,this._optionsService))}this.register(this._optionsService.onMultipleOptionChange([\"fontFamily\",\"fontSize\"],(()=>this.measure())))}measure(){const e=this._measureStrategy.measure();e.width===this.width&&e.height===this.height||(this.width=e.width,this.height=e.height,this._onCharSizeChange.fire())}};t.CharSizeService=h=s([r(2,n.IOptionsService)],h);class c extends a.Disposable{constructor(){super(...arguments),this._result={width:0,height:0}}_validateAndSet(e,t){void 0!==e&&e>0&&void 0!==t&&t>0&&(this._result.width=e,this._result.height=t)}}class l extends c{constructor(e,t,i){super(),this._document=e,this._parentElement=t,this._optionsService=i,this._measureElement=this._document.createElement(\"span\"),this._measureElement.classList.add(\"xterm-char-measure-element\"),this._measureElement.textContent=\"W\".repeat(32),this._measureElement.setAttribute(\"aria-hidden\",\"true\"),this._measureElement.style.whiteSpace=\"pre\",this._measureElement.style.fontKerning=\"none\",this._parentElement.appendChild(this._measureElement)}measure(){return this._measureElement.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._measureElement.style.fontSize=`${this._optionsService.rawOptions.fontSize}px`,this._validateAndSet(Number(this._measureElement.offsetWidth)/32,Number(this._measureElement.offsetHeight)),this._result}}class d extends c{constructor(e){super(),this._optionsService=e,this._canvas=new OffscreenCanvas(100,100),this._ctx=this._canvas.getContext(\"2d\");const t=this._ctx.measureText(\"W\");if(!(\"width\"in t&&\"fontBoundingBoxAscent\"in t&&\"fontBoundingBoxDescent\"in t))throw new Error(\"Required font metrics not supported\")}measure(){this._ctx.font=`${this._optionsService.rawOptions.fontSize}px ${this._optionsService.rawOptions.fontFamily}`;const e=this._ctx.measureText(\"W\");return this._validateAndSet(e.width,e.fontBoundingBoxAscent+e.fontBoundingBoxDescent),this._result}}},4269:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.CharacterJoinerService=t.JoinedCellData=void 0;const n=i(3734),o=i(643),a=i(511),h=i(2585);class c extends n.AttributeData{constructor(e,t,i){super(),this.content=0,this.combinedData=\"\",this.fg=e.fg,this.bg=e.bg,this.combinedData=t,this._width=i}isCombined(){return 2097152}getWidth(){return this._width}getChars(){return this.combinedData}getCode(){return 2097151}setFromCharData(e){throw new Error(\"not implemented\")}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}t.JoinedCellData=c;let l=t.CharacterJoinerService=class e{constructor(e){this._bufferService=e,this._characterJoiners=[],this._nextCharacterJoinerId=0,this._workCell=new a.CellData}register(e){const t={id:this._nextCharacterJoinerId++,handler:e};return this._characterJoiners.push(t),t.id}deregister(e){for(let t=0;t1){const e=this._getJoinedRanges(s,a,n,t,r);for(let t=0;t1){const e=this._getJoinedRanges(s,a,n,t,r);for(let t=0;t{Object.defineProperty(t,\"__esModule\",{value:!0}),t.CoreBrowserService=void 0;const s=i(844),r=i(8460),n=i(3656);class o extends s.Disposable{constructor(e,t,i){super(),this._textarea=e,this._window=t,this.mainDocument=i,this._isFocused=!1,this._cachedIsFocused=void 0,this._screenDprMonitor=new a(this._window),this._onDprChange=this.register(new r.EventEmitter),this.onDprChange=this._onDprChange.event,this._onWindowChange=this.register(new r.EventEmitter),this.onWindowChange=this._onWindowChange.event,this.register(this.onWindowChange((e=>this._screenDprMonitor.setWindow(e)))),this.register((0,r.forwardEvent)(this._screenDprMonitor.onDprChange,this._onDprChange)),this._textarea.addEventListener(\"focus\",(()=>this._isFocused=!0)),this._textarea.addEventListener(\"blur\",(()=>this._isFocused=!1))}get window(){return this._window}set window(e){this._window!==e&&(this._window=e,this._onWindowChange.fire(this._window))}get dpr(){return this.window.devicePixelRatio}get isFocused(){return void 0===this._cachedIsFocused&&(this._cachedIsFocused=this._isFocused&&this._textarea.ownerDocument.hasFocus(),queueMicrotask((()=>this._cachedIsFocused=void 0))),this._cachedIsFocused}}t.CoreBrowserService=o;class a extends s.Disposable{constructor(e){super(),this._parentWindow=e,this._windowResizeListener=this.register(new s.MutableDisposable),this._onDprChange=this.register(new r.EventEmitter),this.onDprChange=this._onDprChange.event,this._outerListener=()=>this._setDprAndFireIfDiffers(),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._updateDpr(),this._setWindowResizeListener(),this.register((0,s.toDisposable)((()=>this.clearListener())))}setWindow(e){this._parentWindow=e,this._setWindowResizeListener(),this._setDprAndFireIfDiffers()}_setWindowResizeListener(){this._windowResizeListener.value=(0,n.addDisposableDomListener)(this._parentWindow,\"resize\",(()=>this._setDprAndFireIfDiffers()))}_setDprAndFireIfDiffers(){this._parentWindow.devicePixelRatio!==this._currentDevicePixelRatio&&this._onDprChange.fire(this._parentWindow.devicePixelRatio),this._updateDpr()}_updateDpr(){this._outerListener&&(this._resolutionMediaMatchList?.removeListener(this._outerListener),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._resolutionMediaMatchList=this._parentWindow.matchMedia(`screen and (resolution: ${this._parentWindow.devicePixelRatio}dppx)`),this._resolutionMediaMatchList.addListener(this._outerListener))}clearListener(){this._resolutionMediaMatchList&&this._outerListener&&(this._resolutionMediaMatchList.removeListener(this._outerListener),this._resolutionMediaMatchList=void 0,this._outerListener=void 0)}}},779:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.LinkProviderService=void 0;const s=i(844);class r extends s.Disposable{constructor(){super(),this.linkProviders=[],this.register((0,s.toDisposable)((()=>this.linkProviders.length=0)))}registerLinkProvider(e){return this.linkProviders.push(e),{dispose:()=>{const t=this.linkProviders.indexOf(e);-1!==t&&this.linkProviders.splice(t,1)}}}}t.LinkProviderService=r},8934:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.MouseService=void 0;const n=i(4725),o=i(9806);let a=t.MouseService=class{constructor(e,t){this._renderService=e,this._charSizeService=t}getCoords(e,t,i,s,r){return(0,o.getCoords)(window,e,t,i,s,this._charSizeService.hasValidSize,this._renderService.dimensions.css.cell.width,this._renderService.dimensions.css.cell.height,r)}getMouseReportCoords(e,t){const i=(0,o.getCoordsRelativeToElement)(window,e,t);if(this._charSizeService.hasValidSize)return i[0]=Math.min(Math.max(i[0],0),this._renderService.dimensions.css.canvas.width-1),i[1]=Math.min(Math.max(i[1],0),this._renderService.dimensions.css.canvas.height-1),{col:Math.floor(i[0]/this._renderService.dimensions.css.cell.width),row:Math.floor(i[1]/this._renderService.dimensions.css.cell.height),x:Math.floor(i[0]),y:Math.floor(i[1])}}};t.MouseService=a=s([r(0,n.IRenderService),r(1,n.ICharSizeService)],a)},3230:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.RenderService=void 0;const n=i(6193),o=i(4725),a=i(8460),h=i(844),c=i(7226),l=i(2585);let d=t.RenderService=class extends h.Disposable{get dimensions(){return this._renderer.value.dimensions}constructor(e,t,i,s,r,o,l,d){super(),this._rowCount=e,this._charSizeService=s,this._renderer=this.register(new h.MutableDisposable),this._pausedResizeTask=new c.DebouncedIdleTask,this._observerDisposable=this.register(new h.MutableDisposable),this._isPaused=!1,this._needsFullRefresh=!1,this._isNextRenderRedrawOnly=!0,this._needsSelectionRefresh=!1,this._canvasWidth=0,this._canvasHeight=0,this._selectionState={start:void 0,end:void 0,columnSelectMode:!1},this._onDimensionsChange=this.register(new a.EventEmitter),this.onDimensionsChange=this._onDimensionsChange.event,this._onRenderedViewportChange=this.register(new a.EventEmitter),this.onRenderedViewportChange=this._onRenderedViewportChange.event,this._onRender=this.register(new a.EventEmitter),this.onRender=this._onRender.event,this._onRefreshRequest=this.register(new a.EventEmitter),this.onRefreshRequest=this._onRefreshRequest.event,this._renderDebouncer=new n.RenderDebouncer(((e,t)=>this._renderRows(e,t)),l),this.register(this._renderDebouncer),this.register(l.onDprChange((()=>this.handleDevicePixelRatioChange()))),this.register(o.onResize((()=>this._fullRefresh()))),this.register(o.buffers.onBufferActivate((()=>this._renderer.value?.clear()))),this.register(i.onOptionChange((()=>this._handleOptionsChanged()))),this.register(this._charSizeService.onCharSizeChange((()=>this.handleCharSizeChanged()))),this.register(r.onDecorationRegistered((()=>this._fullRefresh()))),this.register(r.onDecorationRemoved((()=>this._fullRefresh()))),this.register(i.onMultipleOptionChange([\"customGlyphs\",\"drawBoldTextInBrightColors\",\"letterSpacing\",\"lineHeight\",\"fontFamily\",\"fontSize\",\"fontWeight\",\"fontWeightBold\",\"minimumContrastRatio\",\"rescaleOverlappingGlyphs\"],(()=>{this.clear(),this.handleResize(o.cols,o.rows),this._fullRefresh()}))),this.register(i.onMultipleOptionChange([\"cursorBlink\",\"cursorStyle\"],(()=>this.refreshRows(o.buffer.y,o.buffer.y,!0)))),this.register(d.onChangeColors((()=>this._fullRefresh()))),this._registerIntersectionObserver(l.window,t),this.register(l.onWindowChange((e=>this._registerIntersectionObserver(e,t))))}_registerIntersectionObserver(e,t){if(\"IntersectionObserver\"in e){const i=new e.IntersectionObserver((e=>this._handleIntersectionChange(e[e.length-1])),{threshold:0});i.observe(t),this._observerDisposable.value=(0,h.toDisposable)((()=>i.disconnect()))}}_handleIntersectionChange(e){this._isPaused=void 0===e.isIntersecting?0===e.intersectionRatio:!e.isIntersecting,this._isPaused||this._charSizeService.hasValidSize||this._charSizeService.measure(),!this._isPaused&&this._needsFullRefresh&&(this._pausedResizeTask.flush(),this.refreshRows(0,this._rowCount-1),this._needsFullRefresh=!1)}refreshRows(e,t,i=!1){this._isPaused?this._needsFullRefresh=!0:(i||(this._isNextRenderRedrawOnly=!1),this._renderDebouncer.refresh(e,t,this._rowCount))}_renderRows(e,t){this._renderer.value&&(e=Math.min(e,this._rowCount-1),t=Math.min(t,this._rowCount-1),this._renderer.value.renderRows(e,t),this._needsSelectionRefresh&&(this._renderer.value.handleSelectionChanged(this._selectionState.start,this._selectionState.end,this._selectionState.columnSelectMode),this._needsSelectionRefresh=!1),this._isNextRenderRedrawOnly||this._onRenderedViewportChange.fire({start:e,end:t}),this._onRender.fire({start:e,end:t}),this._isNextRenderRedrawOnly=!0)}resize(e,t){this._rowCount=t,this._fireOnCanvasResize()}_handleOptionsChanged(){this._renderer.value&&(this.refreshRows(0,this._rowCount-1),this._fireOnCanvasResize())}_fireOnCanvasResize(){this._renderer.value&&(this._renderer.value.dimensions.css.canvas.width===this._canvasWidth&&this._renderer.value.dimensions.css.canvas.height===this._canvasHeight||this._onDimensionsChange.fire(this._renderer.value.dimensions))}hasRenderer(){return!!this._renderer.value}setRenderer(e){this._renderer.value=e,this._renderer.value&&(this._renderer.value.onRequestRedraw((e=>this.refreshRows(e.start,e.end,!0))),this._needsSelectionRefresh=!0,this._fullRefresh())}addRefreshCallback(e){return this._renderDebouncer.addRefreshCallback(e)}_fullRefresh(){this._isPaused?this._needsFullRefresh=!0:this.refreshRows(0,this._rowCount-1)}clearTextureAtlas(){this._renderer.value&&(this._renderer.value.clearTextureAtlas?.(),this._fullRefresh())}handleDevicePixelRatioChange(){this._charSizeService.measure(),this._renderer.value&&(this._renderer.value.handleDevicePixelRatioChange(),this.refreshRows(0,this._rowCount-1))}handleResize(e,t){this._renderer.value&&(this._isPaused?this._pausedResizeTask.set((()=>this._renderer.value?.handleResize(e,t))):this._renderer.value.handleResize(e,t),this._fullRefresh())}handleCharSizeChanged(){this._renderer.value?.handleCharSizeChanged()}handleBlur(){this._renderer.value?.handleBlur()}handleFocus(){this._renderer.value?.handleFocus()}handleSelectionChanged(e,t,i){this._selectionState.start=e,this._selectionState.end=t,this._selectionState.columnSelectMode=i,this._renderer.value?.handleSelectionChanged(e,t,i)}handleCursorMove(){this._renderer.value?.handleCursorMove()}clear(){this._renderer.value?.clear()}};t.RenderService=d=s([r(2,l.IOptionsService),r(3,o.ICharSizeService),r(4,l.IDecorationService),r(5,l.IBufferService),r(6,o.ICoreBrowserService),r(7,o.IThemeService)],d)},9312:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.SelectionService=void 0;const n=i(9806),o=i(9504),a=i(456),h=i(4725),c=i(8460),l=i(844),d=i(6114),_=i(4841),u=i(511),f=i(2585),v=String.fromCharCode(160),p=new RegExp(v,\"g\");let g=t.SelectionService=class extends l.Disposable{constructor(e,t,i,s,r,n,o,h,d){super(),this._element=e,this._screenElement=t,this._linkifier=i,this._bufferService=s,this._coreService=r,this._mouseService=n,this._optionsService=o,this._renderService=h,this._coreBrowserService=d,this._dragScrollAmount=0,this._enabled=!0,this._workCell=new u.CellData,this._mouseDownTimeStamp=0,this._oldHasSelection=!1,this._oldSelectionStart=void 0,this._oldSelectionEnd=void 0,this._onLinuxMouseSelection=this.register(new c.EventEmitter),this.onLinuxMouseSelection=this._onLinuxMouseSelection.event,this._onRedrawRequest=this.register(new c.EventEmitter),this.onRequestRedraw=this._onRedrawRequest.event,this._onSelectionChange=this.register(new c.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onRequestScrollLines=this.register(new c.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this._mouseMoveListener=e=>this._handleMouseMove(e),this._mouseUpListener=e=>this._handleMouseUp(e),this._coreService.onUserInput((()=>{this.hasSelection&&this.clearSelection()})),this._trimListener=this._bufferService.buffer.lines.onTrim((e=>this._handleTrim(e))),this.register(this._bufferService.buffers.onBufferActivate((e=>this._handleBufferActivate(e)))),this.enable(),this._model=new a.SelectionModel(this._bufferService),this._activeSelectionMode=0,this.register((0,l.toDisposable)((()=>{this._removeMouseDownListeners()})))}reset(){this.clearSelection()}disable(){this.clearSelection(),this._enabled=!1}enable(){this._enabled=!0}get selectionStart(){return this._model.finalSelectionStart}get selectionEnd(){return this._model.finalSelectionEnd}get hasSelection(){const e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;return!(!e||!t||e[0]===t[0]&&e[1]===t[1])}get selectionText(){const e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;if(!e||!t)return\"\";const i=this._bufferService.buffer,s=[];if(3===this._activeSelectionMode){if(e[0]===t[0])return\"\";const r=e[0]e.replace(p,\" \"))).join(d.isWindows?\"\\r\\n\":\"\\n\")}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(e){this._refreshAnimationFrame||(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>this._refresh()))),d.isLinux&&e&&this.selectionText.length&&this._onLinuxMouseSelection.fire(this.selectionText)}_refresh(){this._refreshAnimationFrame=void 0,this._onRedrawRequest.fire({start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd,columnSelectMode:3===this._activeSelectionMode})}_isClickInSelection(e){const t=this._getMouseBufferCoords(e),i=this._model.finalSelectionStart,s=this._model.finalSelectionEnd;return!!(i&&s&&t)&&this._areCoordsInSelection(t,i,s)}isCellInSelection(e,t){const i=this._model.finalSelectionStart,s=this._model.finalSelectionEnd;return!(!i||!s)&&this._areCoordsInSelection([e,t],i,s)}_areCoordsInSelection(e,t,i){return e[1]>t[1]&&e[1]=t[0]&&e[0]=t[0]}_selectWordAtCursor(e,t){const i=this._linkifier.currentLink?.link?.range;if(i)return this._model.selectionStart=[i.start.x-1,i.start.y-1],this._model.selectionStartLength=(0,_.getRangeLength)(i,this._bufferService.cols),this._model.selectionEnd=void 0,!0;const s=this._getMouseBufferCoords(e);return!!s&&(this._selectWordAt(s,t),this._model.selectionEnd=void 0,!0)}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(e,t){this._model.clearSelection(),e=Math.max(e,0),t=Math.min(t,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,e],this._model.selectionEnd=[this._bufferService.cols,t],this.refresh(),this._onSelectionChange.fire()}_handleTrim(e){this._model.handleTrim(e)&&this.refresh()}_getMouseBufferCoords(e){const t=this._mouseService.getCoords(e,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(t)return t[0]--,t[1]--,t[1]+=this._bufferService.buffer.ydisp,t}_getMouseEventScrollAmount(e){let t=(0,n.getCoordsRelativeToElement)(this._coreBrowserService.window,e,this._screenElement)[1];const i=this._renderService.dimensions.css.canvas.height;return t>=0&&t<=i?0:(t>i&&(t-=i),t=Math.min(Math.max(t,-50),50),t/=50,t/Math.abs(t)+Math.round(14*t))}shouldForceSelection(e){return d.isMac?e.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:e.shiftKey}handleMouseDown(e){if(this._mouseDownTimeStamp=e.timeStamp,(2!==e.button||!this.hasSelection)&&0===e.button){if(!this._enabled){if(!this.shouldForceSelection(e))return;e.stopPropagation()}e.preventDefault(),this._dragScrollAmount=0,this._enabled&&e.shiftKey?this._handleIncrementalClick(e):1===e.detail?this._handleSingleClick(e):2===e.detail?this._handleDoubleClick(e):3===e.detail&&this._handleTripleClick(e),this._addMouseDownListeners(),this.refresh(!0)}}_addMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.addEventListener(\"mousemove\",this._mouseMoveListener),this._screenElement.ownerDocument.addEventListener(\"mouseup\",this._mouseUpListener)),this._dragScrollIntervalTimer=this._coreBrowserService.window.setInterval((()=>this._dragScroll()),50)}_removeMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.removeEventListener(\"mousemove\",this._mouseMoveListener),this._screenElement.ownerDocument.removeEventListener(\"mouseup\",this._mouseUpListener)),this._coreBrowserService.window.clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=void 0}_handleIncrementalClick(e){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(e))}_handleSingleClick(e){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(e)?3:0,this._model.selectionStart=this._getMouseBufferCoords(e),!this._model.selectionStart)return;this._model.selectionEnd=void 0;const t=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);t&&t.length!==this._model.selectionStart[0]&&0===t.hasWidth(this._model.selectionStart[0])&&this._model.selectionStart[0]++}_handleDoubleClick(e){this._selectWordAtCursor(e,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(e){const t=this._getMouseBufferCoords(e);t&&(this._activeSelectionMode=2,this._selectLineAt(t[1]))}shouldColumnSelect(e){return e.altKey&&!(d.isMac&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(e){if(e.stopImmediatePropagation(),!this._model.selectionStart)return;const t=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(e),!this._model.selectionEnd)return void this.refresh(!0);2===this._activeSelectionMode?this._model.selectionEnd[1]0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));const i=this._bufferService.buffer;if(this._model.selectionEnd[1]0?(3!==this._activeSelectionMode&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(e.ydisp+this._bufferService.rows,e.lines.length-1)):(3!==this._activeSelectionMode&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=e.ydisp),this.refresh()}}_handleMouseUp(e){const t=e.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&t<500&&e.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){const t=this._mouseService.getCoords(e,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(t&&void 0!==t[0]&&void 0!==t[1]){const e=(0,o.moveToCellSequence)(t[0]-1,t[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(e,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){const e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd,i=!(!e||!t||e[0]===t[0]&&e[1]===t[1]);i?e&&t&&(this._oldSelectionStart&&this._oldSelectionEnd&&e[0]===this._oldSelectionStart[0]&&e[1]===this._oldSelectionStart[1]&&t[0]===this._oldSelectionEnd[0]&&t[1]===this._oldSelectionEnd[1]||this._fireOnSelectionChange(e,t,i)):this._oldHasSelection&&this._fireOnSelectionChange(e,t,i)}_fireOnSelectionChange(e,t,i){this._oldSelectionStart=e,this._oldSelectionEnd=t,this._oldHasSelection=i,this._onSelectionChange.fire()}_handleBufferActivate(e){this.clearSelection(),this._trimListener.dispose(),this._trimListener=e.activeBuffer.lines.onTrim((e=>this._handleTrim(e)))}_convertViewportColToCharacterIndex(e,t){let i=t;for(let s=0;t>=s;s++){const r=e.loadCell(s,this._workCell).getChars().length;0===this._workCell.getWidth()?i--:r>1&&t!==s&&(i+=r-1)}return i}setSelection(e,t,i){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[e,t],this._model.selectionStartLength=i,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(e){this._isClickInSelection(e)||(this._selectWordAtCursor(e,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(e,t,i=!0,s=!0){if(e[0]>=this._bufferService.cols)return;const r=this._bufferService.buffer,n=r.lines.get(e[1]);if(!n)return;const o=r.translateBufferLineToString(e[1],!1);let a=this._convertViewportColToCharacterIndex(n,e[0]),h=a;const c=e[0]-a;let l=0,d=0,_=0,u=0;if(\" \"===o.charAt(a)){for(;a>0&&\" \"===o.charAt(a-1);)a--;for(;h1&&(u+=s-1,h+=s-1);t>0&&a>0&&!this._isCharWordSeparator(n.loadCell(t-1,this._workCell));){n.loadCell(t-1,this._workCell);const e=this._workCell.getChars().length;0===this._workCell.getWidth()?(l++,t--):e>1&&(_+=e-1,a-=e-1),a--,t--}for(;i1&&(u+=e-1,h+=e-1),h++,i++}}h++;let f=a+c-l+_,v=Math.min(this._bufferService.cols,h-a+l+d-_-u);if(t||\"\"!==o.slice(a,h).trim()){if(i&&0===f&&32!==n.getCodePoint(0)){const t=r.lines.get(e[1]-1);if(t&&n.isWrapped&&32!==t.getCodePoint(this._bufferService.cols-1)){const t=this._getWordAt([this._bufferService.cols-1,e[1]-1],!1,!0,!1);if(t){const e=this._bufferService.cols-t.start;f-=e,v+=e}}}if(s&&f+v===this._bufferService.cols&&32!==n.getCodePoint(this._bufferService.cols-1)){const t=r.lines.get(e[1]+1);if(t?.isWrapped&&32!==t.getCodePoint(0)){const t=this._getWordAt([0,e[1]+1],!1,!1,!0);t&&(v+=t.length)}}return{start:f,length:v}}}_selectWordAt(e,t){const i=this._getWordAt(e,t);if(i){for(;i.start<0;)i.start+=this._bufferService.cols,e[1]--;this._model.selectionStart=[i.start,e[1]],this._model.selectionStartLength=i.length}}_selectToWordAt(e){const t=this._getWordAt(e,!0);if(t){let i=e[1];for(;t.start<0;)t.start+=this._bufferService.cols,i--;if(!this._model.areSelectionValuesReversed())for(;t.start+t.length>this._bufferService.cols;)t.length-=this._bufferService.cols,i++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?t.start:t.start+t.length,i]}}_isCharWordSeparator(e){return 0!==e.getWidth()&&this._optionsService.rawOptions.wordSeparator.indexOf(e.getChars())>=0}_selectLineAt(e){const t=this._bufferService.buffer.getWrappedRangeForLine(e),i={start:{x:0,y:t.first},end:{x:this._bufferService.cols-1,y:t.last}};this._model.selectionStart=[0,t.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=(0,_.getRangeLength)(i,this._bufferService.cols)}};t.SelectionService=g=s([r(3,f.IBufferService),r(4,f.ICoreService),r(5,h.IMouseService),r(6,f.IOptionsService),r(7,h.IRenderService),r(8,h.ICoreBrowserService)],g)},4725:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.ILinkProviderService=t.IThemeService=t.ICharacterJoinerService=t.ISelectionService=t.IRenderService=t.IMouseService=t.ICoreBrowserService=t.ICharSizeService=void 0;const s=i(8343);t.ICharSizeService=(0,s.createDecorator)(\"CharSizeService\"),t.ICoreBrowserService=(0,s.createDecorator)(\"CoreBrowserService\"),t.IMouseService=(0,s.createDecorator)(\"MouseService\"),t.IRenderService=(0,s.createDecorator)(\"RenderService\"),t.ISelectionService=(0,s.createDecorator)(\"SelectionService\"),t.ICharacterJoinerService=(0,s.createDecorator)(\"CharacterJoinerService\"),t.IThemeService=(0,s.createDecorator)(\"ThemeService\"),t.ILinkProviderService=(0,s.createDecorator)(\"LinkProviderService\")},6731:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.ThemeService=t.DEFAULT_ANSI_COLORS=void 0;const n=i(7239),o=i(8055),a=i(8460),h=i(844),c=i(2585),l=o.css.toColor(\"#ffffff\"),d=o.css.toColor(\"#000000\"),_=o.css.toColor(\"#ffffff\"),u=o.css.toColor(\"#000000\"),f={css:\"rgba(255, 255, 255, 0.3)\",rgba:4294967117};t.DEFAULT_ANSI_COLORS=Object.freeze((()=>{const e=[o.css.toColor(\"#2e3436\"),o.css.toColor(\"#cc0000\"),o.css.toColor(\"#4e9a06\"),o.css.toColor(\"#c4a000\"),o.css.toColor(\"#3465a4\"),o.css.toColor(\"#75507b\"),o.css.toColor(\"#06989a\"),o.css.toColor(\"#d3d7cf\"),o.css.toColor(\"#555753\"),o.css.toColor(\"#ef2929\"),o.css.toColor(\"#8ae234\"),o.css.toColor(\"#fce94f\"),o.css.toColor(\"#729fcf\"),o.css.toColor(\"#ad7fa8\"),o.css.toColor(\"#34e2e2\"),o.css.toColor(\"#eeeeec\")],t=[0,95,135,175,215,255];for(let i=0;i<216;i++){const s=t[i/36%6|0],r=t[i/6%6|0],n=t[i%6];e.push({css:o.channels.toCss(s,r,n),rgba:o.channels.toRgba(s,r,n)})}for(let t=0;t<24;t++){const i=8+10*t;e.push({css:o.channels.toCss(i,i,i),rgba:o.channels.toRgba(i,i,i)})}return e})());let v=t.ThemeService=class extends h.Disposable{get colors(){return this._colors}constructor(e){super(),this._optionsService=e,this._contrastCache=new n.ColorContrastCache,this._halfContrastCache=new n.ColorContrastCache,this._onChangeColors=this.register(new a.EventEmitter),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:l,background:d,cursor:_,cursorAccent:u,selectionForeground:void 0,selectionBackgroundTransparent:f,selectionBackgroundOpaque:o.color.blend(d,f),selectionInactiveBackgroundTransparent:f,selectionInactiveBackgroundOpaque:o.color.blend(d,f),ansi:t.DEFAULT_ANSI_COLORS.slice(),contrastCache:this._contrastCache,halfContrastCache:this._halfContrastCache},this._updateRestoreColors(),this._setTheme(this._optionsService.rawOptions.theme),this.register(this._optionsService.onSpecificOptionChange(\"minimumContrastRatio\",(()=>this._contrastCache.clear()))),this.register(this._optionsService.onSpecificOptionChange(\"theme\",(()=>this._setTheme(this._optionsService.rawOptions.theme))))}_setTheme(e={}){const i=this._colors;if(i.foreground=p(e.foreground,l),i.background=p(e.background,d),i.cursor=p(e.cursor,_),i.cursorAccent=p(e.cursorAccent,u),i.selectionBackgroundTransparent=p(e.selectionBackground,f),i.selectionBackgroundOpaque=o.color.blend(i.background,i.selectionBackgroundTransparent),i.selectionInactiveBackgroundTransparent=p(e.selectionInactiveBackground,i.selectionBackgroundTransparent),i.selectionInactiveBackgroundOpaque=o.color.blend(i.background,i.selectionInactiveBackgroundTransparent),i.selectionForeground=e.selectionForeground?p(e.selectionForeground,o.NULL_COLOR):void 0,i.selectionForeground===o.NULL_COLOR&&(i.selectionForeground=void 0),o.color.isOpaque(i.selectionBackgroundTransparent)){const e=.3;i.selectionBackgroundTransparent=o.color.opacity(i.selectionBackgroundTransparent,e)}if(o.color.isOpaque(i.selectionInactiveBackgroundTransparent)){const e=.3;i.selectionInactiveBackgroundTransparent=o.color.opacity(i.selectionInactiveBackgroundTransparent,e)}if(i.ansi=t.DEFAULT_ANSI_COLORS.slice(),i.ansi[0]=p(e.black,t.DEFAULT_ANSI_COLORS[0]),i.ansi[1]=p(e.red,t.DEFAULT_ANSI_COLORS[1]),i.ansi[2]=p(e.green,t.DEFAULT_ANSI_COLORS[2]),i.ansi[3]=p(e.yellow,t.DEFAULT_ANSI_COLORS[3]),i.ansi[4]=p(e.blue,t.DEFAULT_ANSI_COLORS[4]),i.ansi[5]=p(e.magenta,t.DEFAULT_ANSI_COLORS[5]),i.ansi[6]=p(e.cyan,t.DEFAULT_ANSI_COLORS[6]),i.ansi[7]=p(e.white,t.DEFAULT_ANSI_COLORS[7]),i.ansi[8]=p(e.brightBlack,t.DEFAULT_ANSI_COLORS[8]),i.ansi[9]=p(e.brightRed,t.DEFAULT_ANSI_COLORS[9]),i.ansi[10]=p(e.brightGreen,t.DEFAULT_ANSI_COLORS[10]),i.ansi[11]=p(e.brightYellow,t.DEFAULT_ANSI_COLORS[11]),i.ansi[12]=p(e.brightBlue,t.DEFAULT_ANSI_COLORS[12]),i.ansi[13]=p(e.brightMagenta,t.DEFAULT_ANSI_COLORS[13]),i.ansi[14]=p(e.brightCyan,t.DEFAULT_ANSI_COLORS[14]),i.ansi[15]=p(e.brightWhite,t.DEFAULT_ANSI_COLORS[15]),e.extendedAnsi){const s=Math.min(i.ansi.length-16,e.extendedAnsi.length);for(let r=0;r{Object.defineProperty(t,\"__esModule\",{value:!0}),t.CircularList=void 0;const s=i(8460),r=i(844);class n extends r.Disposable{constructor(e){super(),this._maxLength=e,this.onDeleteEmitter=this.register(new s.EventEmitter),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this.register(new s.EventEmitter),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this.register(new s.EventEmitter),this.onTrim=this.onTrimEmitter.event,this._array=new Array(this._maxLength),this._startIndex=0,this._length=0}get maxLength(){return this._maxLength}set maxLength(e){if(this._maxLength===e)return;const t=new Array(e);for(let i=0;ithis._length)for(let t=this._length;t=e;t--)this._array[this._getCyclicIndex(t+i.length)]=this._array[this._getCyclicIndex(t)];for(let t=0;tthis._maxLength){const e=this._length+i.length-this._maxLength;this._startIndex+=e,this._length=this._maxLength,this.onTrimEmitter.fire(e)}else this._length+=i.length}trimStart(e){e>this._length&&(e=this._length),this._startIndex+=e,this._length-=e,this.onTrimEmitter.fire(e)}shiftElements(e,t,i){if(!(t<=0)){if(e<0||e>=this._length)throw new Error(\"start argument out of range\");if(e+i<0)throw new Error(\"Cannot shift elements in list beyond index 0\");if(i>0){for(let s=t-1;s>=0;s--)this.set(e+s+i,this.get(e+s));const s=e+t+i-this._length;if(s>0)for(this._length+=s;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let s=0;s{Object.defineProperty(t,\"__esModule\",{value:!0}),t.clone=void 0,t.clone=function e(t,i=5){if(\"object\"!=typeof t)return t;const s=Array.isArray(t)?[]:{};for(const r in t)s[r]=i<=1?t[r]:t[r]&&e(t[r],i-1);return s}},8055:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.contrastRatio=t.toPaddedHex=t.rgba=t.rgb=t.css=t.color=t.channels=t.NULL_COLOR=void 0;let i=0,s=0,r=0,n=0;var o,a,h,c,l;function d(e){const t=e.toString(16);return t.length<2?\"0\"+t:t}function _(e,t){return e>>0},e.toColor=function(t,i,s,r){return{css:e.toCss(t,i,s,r),rgba:e.toRgba(t,i,s,r)}}}(o||(t.channels=o={})),function(e){function t(e,t){return n=Math.round(255*t),[i,s,r]=l.toChannels(e.rgba),{css:o.toCss(i,s,r,n),rgba:o.toRgba(i,s,r,n)}}e.blend=function(e,t){if(n=(255&t.rgba)/255,1===n)return{css:t.css,rgba:t.rgba};const a=t.rgba>>24&255,h=t.rgba>>16&255,c=t.rgba>>8&255,l=e.rgba>>24&255,d=e.rgba>>16&255,_=e.rgba>>8&255;return i=l+Math.round((a-l)*n),s=d+Math.round((h-d)*n),r=_+Math.round((c-_)*n),{css:o.toCss(i,s,r),rgba:o.toRgba(i,s,r)}},e.isOpaque=function(e){return 255==(255&e.rgba)},e.ensureContrastRatio=function(e,t,i){const s=l.ensureContrastRatio(e.rgba,t.rgba,i);if(s)return o.toColor(s>>24&255,s>>16&255,s>>8&255)},e.opaque=function(e){const t=(255|e.rgba)>>>0;return[i,s,r]=l.toChannels(t),{css:o.toCss(i,s,r),rgba:t}},e.opacity=t,e.multiplyOpacity=function(e,i){return n=255&e.rgba,t(e,n*i/255)},e.toColorRGB=function(e){return[e.rgba>>24&255,e.rgba>>16&255,e.rgba>>8&255]}}(a||(t.color=a={})),function(e){let t,a;try{const e=document.createElement(\"canvas\");e.width=1,e.height=1;const i=e.getContext(\"2d\",{willReadFrequently:!0});i&&(t=i,t.globalCompositeOperation=\"copy\",a=t.createLinearGradient(0,0,1,1))}catch{}e.toColor=function(e){if(e.match(/#[\\da-f]{3,8}/i))switch(e.length){case 4:return i=parseInt(e.slice(1,2).repeat(2),16),s=parseInt(e.slice(2,3).repeat(2),16),r=parseInt(e.slice(3,4).repeat(2),16),o.toColor(i,s,r);case 5:return i=parseInt(e.slice(1,2).repeat(2),16),s=parseInt(e.slice(2,3).repeat(2),16),r=parseInt(e.slice(3,4).repeat(2),16),n=parseInt(e.slice(4,5).repeat(2),16),o.toColor(i,s,r,n);case 7:return{css:e,rgba:(parseInt(e.slice(1),16)<<8|255)>>>0};case 9:return{css:e,rgba:parseInt(e.slice(1),16)>>>0}}const h=e.match(/rgba?\\(\\s*(\\d{1,3})\\s*,\\s*(\\d{1,3})\\s*,\\s*(\\d{1,3})\\s*(,\\s*(0|1|\\d?\\.(\\d+))\\s*)?\\)/);if(h)return i=parseInt(h[1]),s=parseInt(h[2]),r=parseInt(h[3]),n=Math.round(255*(void 0===h[5]?1:parseFloat(h[5]))),o.toColor(i,s,r,n);if(!t||!a)throw new Error(\"css.toColor: Unsupported css format\");if(t.fillStyle=a,t.fillStyle=e,\"string\"!=typeof t.fillStyle)throw new Error(\"css.toColor: Unsupported css format\");if(t.fillRect(0,0,1,1),[i,s,r,n]=t.getImageData(0,0,1,1).data,255!==n)throw new Error(\"css.toColor: Unsupported css format\");return{rgba:o.toRgba(i,s,r,n),css:e}}}(h||(t.css=h={})),function(e){function t(e,t,i){const s=e/255,r=t/255,n=i/255;return.2126*(s<=.03928?s/12.92:Math.pow((s+.055)/1.055,2.4))+.7152*(r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))}e.relativeLuminance=function(e){return t(e>>16&255,e>>8&255,255&e)},e.relativeLuminance2=t}(c||(t.rgb=c={})),function(e){function t(e,t,i){const s=e>>24&255,r=e>>16&255,n=e>>8&255;let o=t>>24&255,a=t>>16&255,h=t>>8&255,l=_(c.relativeLuminance2(o,a,h),c.relativeLuminance2(s,r,n));for(;l0||a>0||h>0);)o-=Math.max(0,Math.ceil(.1*o)),a-=Math.max(0,Math.ceil(.1*a)),h-=Math.max(0,Math.ceil(.1*h)),l=_(c.relativeLuminance2(o,a,h),c.relativeLuminance2(s,r,n));return(o<<24|a<<16|h<<8|255)>>>0}function a(e,t,i){const s=e>>24&255,r=e>>16&255,n=e>>8&255;let o=t>>24&255,a=t>>16&255,h=t>>8&255,l=_(c.relativeLuminance2(o,a,h),c.relativeLuminance2(s,r,n));for(;l>>0}e.blend=function(e,t){if(n=(255&t)/255,1===n)return t;const a=t>>24&255,h=t>>16&255,c=t>>8&255,l=e>>24&255,d=e>>16&255,_=e>>8&255;return i=l+Math.round((a-l)*n),s=d+Math.round((h-d)*n),r=_+Math.round((c-_)*n),o.toRgba(i,s,r)},e.ensureContrastRatio=function(e,i,s){const r=c.relativeLuminance(e>>8),n=c.relativeLuminance(i>>8);if(_(r,n)>8));if(o_(r,c.relativeLuminance(t>>8))?n:t}return n}const o=a(e,i,s),h=_(r,c.relativeLuminance(o>>8));if(h_(r,c.relativeLuminance(n>>8))?o:n}return o}},e.reduceLuminance=t,e.increaseLuminance=a,e.toChannels=function(e){return[e>>24&255,e>>16&255,e>>8&255,255&e]}}(l||(t.rgba=l={})),t.toPaddedHex=d,t.contrastRatio=_},8969:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.CoreTerminal=void 0;const s=i(844),r=i(2585),n=i(4348),o=i(7866),a=i(744),h=i(7302),c=i(6975),l=i(8460),d=i(1753),_=i(1480),u=i(7994),f=i(9282),v=i(5435),p=i(5981),g=i(2660);let m=!1;class S extends s.Disposable{get onScroll(){return this._onScrollApi||(this._onScrollApi=this.register(new l.EventEmitter),this._onScroll.event((e=>{this._onScrollApi?.fire(e.position)}))),this._onScrollApi.event}get cols(){return this._bufferService.cols}get rows(){return this._bufferService.rows}get buffers(){return this._bufferService.buffers}get options(){return this.optionsService.options}set options(e){for(const t in e)this.optionsService.options[t]=e[t]}constructor(e){super(),this._windowsWrappingHeuristics=this.register(new s.MutableDisposable),this._onBinary=this.register(new l.EventEmitter),this.onBinary=this._onBinary.event,this._onData=this.register(new l.EventEmitter),this.onData=this._onData.event,this._onLineFeed=this.register(new l.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onResize=this.register(new l.EventEmitter),this.onResize=this._onResize.event,this._onWriteParsed=this.register(new l.EventEmitter),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this.register(new l.EventEmitter),this._instantiationService=new n.InstantiationService,this.optionsService=this.register(new h.OptionsService(e)),this._instantiationService.setService(r.IOptionsService,this.optionsService),this._bufferService=this.register(this._instantiationService.createInstance(a.BufferService)),this._instantiationService.setService(r.IBufferService,this._bufferService),this._logService=this.register(this._instantiationService.createInstance(o.LogService)),this._instantiationService.setService(r.ILogService,this._logService),this.coreService=this.register(this._instantiationService.createInstance(c.CoreService)),this._instantiationService.setService(r.ICoreService,this.coreService),this.coreMouseService=this.register(this._instantiationService.createInstance(d.CoreMouseService)),this._instantiationService.setService(r.ICoreMouseService,this.coreMouseService),this.unicodeService=this.register(this._instantiationService.createInstance(_.UnicodeService)),this._instantiationService.setService(r.IUnicodeService,this.unicodeService),this._charsetService=this._instantiationService.createInstance(u.CharsetService),this._instantiationService.setService(r.ICharsetService,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(g.OscLinkService),this._instantiationService.setService(r.IOscLinkService,this._oscLinkService),this._inputHandler=this.register(new v.InputHandler(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this.register((0,l.forwardEvent)(this._inputHandler.onLineFeed,this._onLineFeed)),this.register(this._inputHandler),this.register((0,l.forwardEvent)(this._bufferService.onResize,this._onResize)),this.register((0,l.forwardEvent)(this.coreService.onData,this._onData)),this.register((0,l.forwardEvent)(this.coreService.onBinary,this._onBinary)),this.register(this.coreService.onRequestScrollToBottom((()=>this.scrollToBottom()))),this.register(this.coreService.onUserInput((()=>this._writeBuffer.handleUserInput()))),this.register(this.optionsService.onMultipleOptionChange([\"windowsMode\",\"windowsPty\"],(()=>this._handleWindowsPtyOptionChange()))),this.register(this._bufferService.onScroll((e=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)}))),this.register(this._inputHandler.onScroll((e=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)}))),this._writeBuffer=this.register(new p.WriteBuffer(((e,t)=>this._inputHandler.parse(e,t)))),this.register((0,l.forwardEvent)(this._writeBuffer.onWriteParsed,this._onWriteParsed))}write(e,t){this._writeBuffer.write(e,t)}writeSync(e,t){this._logService.logLevel<=r.LogLevelEnum.WARN&&!m&&(this._logService.warn(\"writeSync is unreliable and will be removed soon.\"),m=!0),this._writeBuffer.writeSync(e,t)}input(e,t=!0){this.coreService.triggerDataEvent(e,t)}resize(e,t){isNaN(e)||isNaN(t)||(e=Math.max(e,a.MINIMUM_COLS),t=Math.max(t,a.MINIMUM_ROWS),this._bufferService.resize(e,t))}scroll(e,t=!1){this._bufferService.scroll(e,t)}scrollLines(e,t,i){this._bufferService.scrollLines(e,t,i)}scrollPages(e){this.scrollLines(e*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(e){const t=e-this._bufferService.buffer.ydisp;0!==t&&this.scrollLines(t)}registerEscHandler(e,t){return this._inputHandler.registerEscHandler(e,t)}registerDcsHandler(e,t){return this._inputHandler.registerDcsHandler(e,t)}registerCsiHandler(e,t){return this._inputHandler.registerCsiHandler(e,t)}registerOscHandler(e,t){return this._inputHandler.registerOscHandler(e,t)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let e=!1;const t=this.optionsService.rawOptions.windowsPty;t&&void 0!==t.buildNumber&&void 0!==t.buildNumber?e=!!(\"conpty\"===t.backend&&t.buildNumber<21376):this.optionsService.rawOptions.windowsMode&&(e=!0),e?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){const e=[];e.push(this.onLineFeed(f.updateWindowsModeWrappedState.bind(null,this._bufferService))),e.push(this.registerCsiHandler({final:\"H\"},(()=>((0,f.updateWindowsModeWrappedState)(this._bufferService),!1)))),this._windowsWrappingHeuristics.value=(0,s.toDisposable)((()=>{for(const t of e)t.dispose()}))}}}t.CoreTerminal=S},8460:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.runAndSubscribe=t.forwardEvent=t.EventEmitter=void 0,t.EventEmitter=class{constructor(){this._listeners=[],this._disposed=!1}get event(){return this._event||(this._event=e=>(this._listeners.push(e),{dispose:()=>{if(!this._disposed)for(let t=0;tt.fire(e)))},t.runAndSubscribe=function(e,t){return t(void 0),e((e=>t(e)))}},5435:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.InputHandler=t.WindowsOptionsReportType=void 0;const n=i(2584),o=i(7116),a=i(2015),h=i(844),c=i(482),l=i(8437),d=i(8460),_=i(643),u=i(511),f=i(3734),v=i(2585),p=i(1480),g=i(6242),m=i(6351),S=i(5941),C={\"(\":0,\")\":1,\"*\":2,\"+\":3,\"-\":1,\".\":2},b=131072;function w(e,t){if(e>24)return t.setWinLines||!1;switch(e){case 1:return!!t.restoreWin;case 2:return!!t.minimizeWin;case 3:return!!t.setWinPosition;case 4:return!!t.setWinSizePixels;case 5:return!!t.raiseWin;case 6:return!!t.lowerWin;case 7:return!!t.refreshWin;case 8:return!!t.setWinSizeChars;case 9:return!!t.maximizeWin;case 10:return!!t.fullscreenWin;case 11:return!!t.getWinState;case 13:return!!t.getWinPosition;case 14:return!!t.getWinSizePixels;case 15:return!!t.getScreenSizePixels;case 16:return!!t.getCellSizePixels;case 18:return!!t.getWinSizeChars;case 19:return!!t.getScreenSizeChars;case 20:return!!t.getIconTitle;case 21:return!!t.getWinTitle;case 22:return!!t.pushTitle;case 23:return!!t.popTitle;case 24:return!!t.setWinLines}return!1}var y;!function(e){e[e.GET_WIN_SIZE_PIXELS=0]=\"GET_WIN_SIZE_PIXELS\",e[e.GET_CELL_SIZE_PIXELS=1]=\"GET_CELL_SIZE_PIXELS\"}(y||(t.WindowsOptionsReportType=y={}));let E=0;class k extends h.Disposable{getAttrData(){return this._curAttrData}constructor(e,t,i,s,r,h,_,f,v=new a.EscapeSequenceParser){super(),this._bufferService=e,this._charsetService=t,this._coreService=i,this._logService=s,this._optionsService=r,this._oscLinkService=h,this._coreMouseService=_,this._unicodeService=f,this._parser=v,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new c.StringToUtf32,this._utf8Decoder=new c.Utf8ToUtf32,this._workCell=new u.CellData,this._windowTitle=\"\",this._iconName=\"\",this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=l.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=l.DEFAULT_ATTR_DATA.clone(),this._onRequestBell=this.register(new d.EventEmitter),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this.register(new d.EventEmitter),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this.register(new d.EventEmitter),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this.register(new d.EventEmitter),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this.register(new d.EventEmitter),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this.register(new d.EventEmitter),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this.register(new d.EventEmitter),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this.register(new d.EventEmitter),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this.register(new d.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this.register(new d.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onScroll=this.register(new d.EventEmitter),this.onScroll=this._onScroll.event,this._onTitleChange=this.register(new d.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onColor=this.register(new d.EventEmitter),this.onColor=this._onColor.event,this._parseStack={paused:!1,cursorStartX:0,cursorStartY:0,decodedLength:0,position:0},this._specialColors=[256,257,258],this.register(this._parser),this._dirtyRowTracker=new L(this._bufferService),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate((e=>this._activeBuffer=e.activeBuffer))),this._parser.setCsiHandlerFallback(((e,t)=>{this._logService.debug(\"Unknown CSI code: \",{identifier:this._parser.identToString(e),params:t.toArray()})})),this._parser.setEscHandlerFallback((e=>{this._logService.debug(\"Unknown ESC code: \",{identifier:this._parser.identToString(e)})})),this._parser.setExecuteHandlerFallback((e=>{this._logService.debug(\"Unknown EXECUTE code: \",{code:e})})),this._parser.setOscHandlerFallback(((e,t,i)=>{this._logService.debug(\"Unknown OSC code: \",{identifier:e,action:t,data:i})})),this._parser.setDcsHandlerFallback(((e,t,i)=>{\"HOOK\"===t&&(i=i.toArray()),this._logService.debug(\"Unknown DCS code: \",{identifier:this._parser.identToString(e),action:t,payload:i})})),this._parser.setPrintHandler(((e,t,i)=>this.print(e,t,i))),this._parser.registerCsiHandler({final:\"@\"},(e=>this.insertChars(e))),this._parser.registerCsiHandler({intermediates:\" \",final:\"@\"},(e=>this.scrollLeft(e))),this._parser.registerCsiHandler({final:\"A\"},(e=>this.cursorUp(e))),this._parser.registerCsiHandler({intermediates:\" \",final:\"A\"},(e=>this.scrollRight(e))),this._parser.registerCsiHandler({final:\"B\"},(e=>this.cursorDown(e))),this._parser.registerCsiHandler({final:\"C\"},(e=>this.cursorForward(e))),this._parser.registerCsiHandler({final:\"D\"},(e=>this.cursorBackward(e))),this._parser.registerCsiHandler({final:\"E\"},(e=>this.cursorNextLine(e))),this._parser.registerCsiHandler({final:\"F\"},(e=>this.cursorPrecedingLine(e))),this._parser.registerCsiHandler({final:\"G\"},(e=>this.cursorCharAbsolute(e))),this._parser.registerCsiHandler({final:\"H\"},(e=>this.cursorPosition(e))),this._parser.registerCsiHandler({final:\"I\"},(e=>this.cursorForwardTab(e))),this._parser.registerCsiHandler({final:\"J\"},(e=>this.eraseInDisplay(e,!1))),this._parser.registerCsiHandler({prefix:\"?\",final:\"J\"},(e=>this.eraseInDisplay(e,!0))),this._parser.registerCsiHandler({final:\"K\"},(e=>this.eraseInLine(e,!1))),this._parser.registerCsiHandler({prefix:\"?\",final:\"K\"},(e=>this.eraseInLine(e,!0))),this._parser.registerCsiHandler({final:\"L\"},(e=>this.insertLines(e))),this._parser.registerCsiHandler({final:\"M\"},(e=>this.deleteLines(e))),this._parser.registerCsiHandler({final:\"P\"},(e=>this.deleteChars(e))),this._parser.registerCsiHandler({final:\"S\"},(e=>this.scrollUp(e))),this._parser.registerCsiHandler({final:\"T\"},(e=>this.scrollDown(e))),this._parser.registerCsiHandler({final:\"X\"},(e=>this.eraseChars(e))),this._parser.registerCsiHandler({final:\"Z\"},(e=>this.cursorBackwardTab(e))),this._parser.registerCsiHandler({final:\"`\"},(e=>this.charPosAbsolute(e))),this._parser.registerCsiHandler({final:\"a\"},(e=>this.hPositionRelative(e))),this._parser.registerCsiHandler({final:\"b\"},(e=>this.repeatPrecedingCharacter(e))),this._parser.registerCsiHandler({final:\"c\"},(e=>this.sendDeviceAttributesPrimary(e))),this._parser.registerCsiHandler({prefix:\">\",final:\"c\"},(e=>this.sendDeviceAttributesSecondary(e))),this._parser.registerCsiHandler({final:\"d\"},(e=>this.linePosAbsolute(e))),this._parser.registerCsiHandler({final:\"e\"},(e=>this.vPositionRelative(e))),this._parser.registerCsiHandler({final:\"f\"},(e=>this.hVPosition(e))),this._parser.registerCsiHandler({final:\"g\"},(e=>this.tabClear(e))),this._parser.registerCsiHandler({final:\"h\"},(e=>this.setMode(e))),this._parser.registerCsiHandler({prefix:\"?\",final:\"h\"},(e=>this.setModePrivate(e))),this._parser.registerCsiHandler({final:\"l\"},(e=>this.resetMode(e))),this._parser.registerCsiHandler({prefix:\"?\",final:\"l\"},(e=>this.resetModePrivate(e))),this._parser.registerCsiHandler({final:\"m\"},(e=>this.charAttributes(e))),this._parser.registerCsiHandler({final:\"n\"},(e=>this.deviceStatus(e))),this._parser.registerCsiHandler({prefix:\"?\",final:\"n\"},(e=>this.deviceStatusPrivate(e))),this._parser.registerCsiHandler({intermediates:\"!\",final:\"p\"},(e=>this.softReset(e))),this._parser.registerCsiHandler({intermediates:\" \",final:\"q\"},(e=>this.setCursorStyle(e))),this._parser.registerCsiHandler({final:\"r\"},(e=>this.setScrollRegion(e))),this._parser.registerCsiHandler({final:\"s\"},(e=>this.saveCursor(e))),this._parser.registerCsiHandler({final:\"t\"},(e=>this.windowOptions(e))),this._parser.registerCsiHandler({final:\"u\"},(e=>this.restoreCursor(e))),this._parser.registerCsiHandler({intermediates:\"'\",final:\"}\"},(e=>this.insertColumns(e))),this._parser.registerCsiHandler({intermediates:\"'\",final:\"~\"},(e=>this.deleteColumns(e))),this._parser.registerCsiHandler({intermediates:'\"',final:\"q\"},(e=>this.selectProtected(e))),this._parser.registerCsiHandler({intermediates:\"$\",final:\"p\"},(e=>this.requestMode(e,!0))),this._parser.registerCsiHandler({prefix:\"?\",intermediates:\"$\",final:\"p\"},(e=>this.requestMode(e,!1))),this._parser.setExecuteHandler(n.C0.BEL,(()=>this.bell())),this._parser.setExecuteHandler(n.C0.LF,(()=>this.lineFeed())),this._parser.setExecuteHandler(n.C0.VT,(()=>this.lineFeed())),this._parser.setExecuteHandler(n.C0.FF,(()=>this.lineFeed())),this._parser.setExecuteHandler(n.C0.CR,(()=>this.carriageReturn())),this._parser.setExecuteHandler(n.C0.BS,(()=>this.backspace())),this._parser.setExecuteHandler(n.C0.HT,(()=>this.tab())),this._parser.setExecuteHandler(n.C0.SO,(()=>this.shiftOut())),this._parser.setExecuteHandler(n.C0.SI,(()=>this.shiftIn())),this._parser.setExecuteHandler(n.C1.IND,(()=>this.index())),this._parser.setExecuteHandler(n.C1.NEL,(()=>this.nextLine())),this._parser.setExecuteHandler(n.C1.HTS,(()=>this.tabSet())),this._parser.registerOscHandler(0,new g.OscHandler((e=>(this.setTitle(e),this.setIconName(e),!0)))),this._parser.registerOscHandler(1,new g.OscHandler((e=>this.setIconName(e)))),this._parser.registerOscHandler(2,new g.OscHandler((e=>this.setTitle(e)))),this._parser.registerOscHandler(4,new g.OscHandler((e=>this.setOrReportIndexedColor(e)))),this._parser.registerOscHandler(8,new g.OscHandler((e=>this.setHyperlink(e)))),this._parser.registerOscHandler(10,new g.OscHandler((e=>this.setOrReportFgColor(e)))),this._parser.registerOscHandler(11,new g.OscHandler((e=>this.setOrReportBgColor(e)))),this._parser.registerOscHandler(12,new g.OscHandler((e=>this.setOrReportCursorColor(e)))),this._parser.registerOscHandler(104,new g.OscHandler((e=>this.restoreIndexedColor(e)))),this._parser.registerOscHandler(110,new g.OscHandler((e=>this.restoreFgColor(e)))),this._parser.registerOscHandler(111,new g.OscHandler((e=>this.restoreBgColor(e)))),this._parser.registerOscHandler(112,new g.OscHandler((e=>this.restoreCursorColor(e)))),this._parser.registerEscHandler({final:\"7\"},(()=>this.saveCursor())),this._parser.registerEscHandler({final:\"8\"},(()=>this.restoreCursor())),this._parser.registerEscHandler({final:\"D\"},(()=>this.index())),this._parser.registerEscHandler({final:\"E\"},(()=>this.nextLine())),this._parser.registerEscHandler({final:\"H\"},(()=>this.tabSet())),this._parser.registerEscHandler({final:\"M\"},(()=>this.reverseIndex())),this._parser.registerEscHandler({final:\"=\"},(()=>this.keypadApplicationMode())),this._parser.registerEscHandler({final:\">\"},(()=>this.keypadNumericMode())),this._parser.registerEscHandler({final:\"c\"},(()=>this.fullReset())),this._parser.registerEscHandler({final:\"n\"},(()=>this.setgLevel(2))),this._parser.registerEscHandler({final:\"o\"},(()=>this.setgLevel(3))),this._parser.registerEscHandler({final:\"|\"},(()=>this.setgLevel(3))),this._parser.registerEscHandler({final:\"}\"},(()=>this.setgLevel(2))),this._parser.registerEscHandler({final:\"~\"},(()=>this.setgLevel(1))),this._parser.registerEscHandler({intermediates:\"%\",final:\"@\"},(()=>this.selectDefaultCharset())),this._parser.registerEscHandler({intermediates:\"%\",final:\"G\"},(()=>this.selectDefaultCharset()));for(const e in o.CHARSETS)this._parser.registerEscHandler({intermediates:\"(\",final:e},(()=>this.selectCharset(\"(\"+e))),this._parser.registerEscHandler({intermediates:\")\",final:e},(()=>this.selectCharset(\")\"+e))),this._parser.registerEscHandler({intermediates:\"*\",final:e},(()=>this.selectCharset(\"*\"+e))),this._parser.registerEscHandler({intermediates:\"+\",final:e},(()=>this.selectCharset(\"+\"+e))),this._parser.registerEscHandler({intermediates:\"-\",final:e},(()=>this.selectCharset(\"-\"+e))),this._parser.registerEscHandler({intermediates:\".\",final:e},(()=>this.selectCharset(\".\"+e))),this._parser.registerEscHandler({intermediates:\"/\",final:e},(()=>this.selectCharset(\"/\"+e)));this._parser.registerEscHandler({intermediates:\"#\",final:\"8\"},(()=>this.screenAlignmentPattern())),this._parser.setErrorHandler((e=>(this._logService.error(\"Parsing error: \",e),e))),this._parser.registerDcsHandler({intermediates:\"$\",final:\"q\"},new m.DcsHandler(((e,t)=>this.requestStatusString(e,t))))}_preserveStack(e,t,i,s){this._parseStack.paused=!0,this._parseStack.cursorStartX=e,this._parseStack.cursorStartY=t,this._parseStack.decodedLength=i,this._parseStack.position=s}_logSlowResolvingAsync(e){this._logService.logLevel<=v.LogLevelEnum.WARN&&Promise.race([e,new Promise(((e,t)=>setTimeout((()=>t(\"#SLOW_TIMEOUT\")),5e3)))]).catch((e=>{if(\"#SLOW_TIMEOUT\"!==e)throw e;console.warn(\"async parser handler taking longer than 5000 ms\")}))}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(e,t){let i,s=this._activeBuffer.x,r=this._activeBuffer.y,n=0;const o=this._parseStack.paused;if(o){if(i=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,t))return this._logSlowResolvingAsync(i),i;s=this._parseStack.cursorStartX,r=this._parseStack.cursorStartY,this._parseStack.paused=!1,e.length>b&&(n=this._parseStack.position+b)}if(this._logService.logLevel<=v.LogLevelEnum.DEBUG&&this._logService.debug(\"parsing data\"+(\"string\"==typeof e?` \"${e}\"`:` \"${Array.prototype.map.call(e,(e=>String.fromCharCode(e))).join(\"\")}\"`),\"string\"==typeof e?e.split(\"\").map((e=>e.charCodeAt(0))):e),this._parseBuffer.lengthb)for(let t=n;t0&&2===f.getWidth(this._activeBuffer.x-1)&&f.setCellFromCodepoint(this._activeBuffer.x-1,0,1,u);let v=this._parser.precedingJoinState;for(let g=t;ga)if(h){const e=f;let t=this._activeBuffer.x-m;for(this._activeBuffer.x=m,this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData(),!0)):(this._activeBuffer.y>=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!0),f=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y),m>0&&f instanceof l.BufferLine&&f.copyCellsFrom(e,t,0,m,!1);t=0;)f.setCellFromCodepoint(this._activeBuffer.x++,0,0,u)}else if(d&&(f.insertCells(this._activeBuffer.x,r-m,this._activeBuffer.getNullCell(u)),2===f.getWidth(a-1)&&f.setCellFromCodepoint(a-1,_.NULL_CELL_CODE,_.NULL_CELL_WIDTH,u)),f.setCellFromCodepoint(this._activeBuffer.x++,s,r,u),r>0)for(;--r;)f.setCellFromCodepoint(this._activeBuffer.x++,0,0,u)}this._parser.precedingJoinState=v,this._activeBuffer.x0&&0===f.getWidth(this._activeBuffer.x)&&!f.hasContent(this._activeBuffer.x)&&f.setCellFromCodepoint(this._activeBuffer.x,0,1,u),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(e,t){return\"t\"!==e.final||e.prefix||e.intermediates?this._parser.registerCsiHandler(e,t):this._parser.registerCsiHandler(e,(e=>!w(e.params[0],this._optionsService.rawOptions.windowOptions)||t(e)))}registerDcsHandler(e,t){return this._parser.registerDcsHandler(e,new m.DcsHandler(t))}registerEscHandler(e,t){return this._parser.registerEscHandler(e,t)}registerOscHandler(e,t){return this._parser.registerOscHandler(e,new g.OscHandler(t))}bell(){return this._onRequestBell.fire(),!0}lineFeed(){return this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._optionsService.rawOptions.convertEol&&(this._activeBuffer.x=0),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows?this._activeBuffer.y=this._bufferService.rows-1:this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.x>=this._bufferService.cols&&this._activeBuffer.x--,this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._onLineFeed.fire(),!0}carriageReturn(){return this._activeBuffer.x=0,!0}backspace(){if(!this._coreService.decPrivateModes.reverseWraparound)return this._restrictCursor(),this._activeBuffer.x>0&&this._activeBuffer.x--,!0;if(this._restrictCursor(this._bufferService.cols),this._activeBuffer.x>0)this._activeBuffer.x--;else if(0===this._activeBuffer.x&&this._activeBuffer.y>this._activeBuffer.scrollTop&&this._activeBuffer.y<=this._activeBuffer.scrollBottom&&this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y)?.isWrapped){this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.y--,this._activeBuffer.x=this._bufferService.cols-1;const e=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);e.hasWidth(this._activeBuffer.x)&&!e.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;const e=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-e),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(e=this._bufferService.cols-1){this._activeBuffer.x=Math.min(e,Math.max(0,this._activeBuffer.x)),this._activeBuffer.y=this._coreService.decPrivateModes.origin?Math.min(this._activeBuffer.scrollBottom,Math.max(this._activeBuffer.scrollTop,this._activeBuffer.y)):Math.min(this._bufferService.rows-1,Math.max(0,this._activeBuffer.y)),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_setCursor(e,t){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=e,this._activeBuffer.y=this._activeBuffer.scrollTop+t):(this._activeBuffer.x=e,this._activeBuffer.y=t),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(e,t){this._restrictCursor(),this._setCursor(this._activeBuffer.x+e,this._activeBuffer.y+t)}cursorUp(e){const t=this._activeBuffer.y-this._activeBuffer.scrollTop;return t>=0?this._moveCursor(0,-Math.min(t,e.params[0]||1)):this._moveCursor(0,-(e.params[0]||1)),!0}cursorDown(e){const t=this._activeBuffer.scrollBottom-this._activeBuffer.y;return t>=0?this._moveCursor(0,Math.min(t,e.params[0]||1)):this._moveCursor(0,e.params[0]||1),!0}cursorForward(e){return this._moveCursor(e.params[0]||1,0),!0}cursorBackward(e){return this._moveCursor(-(e.params[0]||1),0),!0}cursorNextLine(e){return this.cursorDown(e),this._activeBuffer.x=0,!0}cursorPrecedingLine(e){return this.cursorUp(e),this._activeBuffer.x=0,!0}cursorCharAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(e){return this._setCursor(e.length>=2?(e.params[1]||1)-1:0,(e.params[0]||1)-1),!0}charPosAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(e){return this._moveCursor(e.params[0]||1,0),!0}linePosAbsolute(e){return this._setCursor(this._activeBuffer.x,(e.params[0]||1)-1),!0}vPositionRelative(e){return this._moveCursor(0,e.params[0]||1),!0}hVPosition(e){return this.cursorPosition(e),!0}tabClear(e){const t=e.params[0];return 0===t?delete this._activeBuffer.tabs[this._activeBuffer.x]:3===t&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(e){const t=e.params[0];return 1===t&&(this._curAttrData.bg|=536870912),2!==t&&0!==t||(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(e,t,i,s=!1,r=!1){const n=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);n.replaceCells(t,i,this._activeBuffer.getNullCell(this._eraseAttrData()),r),s&&(n.isWrapped=!1)}_resetBufferLine(e,t=!1){const i=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);i&&(i.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),t),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+e),i.isWrapped=!1)}eraseInDisplay(e,t=!1){let i;switch(this._restrictCursor(this._bufferService.cols),e.params[0]){case 0:for(i=this._activeBuffer.y,this._dirtyRowTracker.markDirty(i),this._eraseInBufferLine(i++,this._activeBuffer.x,this._bufferService.cols,0===this._activeBuffer.x,t);i=this._bufferService.cols&&(this._activeBuffer.lines.get(i+1).isWrapped=!1);i--;)this._resetBufferLine(i,t);this._dirtyRowTracker.markDirty(0);break;case 2:for(i=this._bufferService.rows,this._dirtyRowTracker.markDirty(i-1);i--;)this._resetBufferLine(i,t);this._dirtyRowTracker.markDirty(0);break;case 3:const e=this._activeBuffer.lines.length-this._bufferService.rows;e>0&&(this._activeBuffer.lines.trimStart(e),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-e,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-e,0),this._onScroll.fire(0))}return!0}eraseInLine(e,t=!1){switch(this._restrictCursor(this._bufferService.cols),e.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,0===this._activeBuffer.x,t);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,t);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,t)}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(e){this._restrictCursor();let t=e.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.ythis._activeBuffer.scrollBottom||this._activeBuffer.y65535?2:1}let h=a;for(let e=1;e0||(this._is(\"xterm\")||this._is(\"rxvt-unicode\")||this._is(\"screen\")?this._coreService.triggerDataEvent(n.C0.ESC+\"[?1;2c\"):this._is(\"linux\")&&this._coreService.triggerDataEvent(n.C0.ESC+\"[?6c\")),!0}sendDeviceAttributesSecondary(e){return e.params[0]>0||(this._is(\"xterm\")?this._coreService.triggerDataEvent(n.C0.ESC+\"[>0;276;0c\"):this._is(\"rxvt-unicode\")?this._coreService.triggerDataEvent(n.C0.ESC+\"[>85;95;0c\"):this._is(\"linux\")?this._coreService.triggerDataEvent(e.params[0]+\"c\"):this._is(\"screen\")&&this._coreService.triggerDataEvent(n.C0.ESC+\"[>83;40003;0c\")),!0}_is(e){return 0===(this._optionsService.rawOptions.termName+\"\").indexOf(e)}setMode(e){for(let t=0;te?1:2,u=e.params[0];return f=u,v=t?2===u?4:4===u?_(o.modes.insertMode):12===u?3:20===u?_(d.convertEol):0:1===u?_(i.applicationCursorKeys):3===u?d.windowOptions.setWinLines?80===h?2:132===h?1:0:0:6===u?_(i.origin):7===u?_(i.wraparound):8===u?3:9===u?_(\"X10\"===s):12===u?_(d.cursorBlink):25===u?_(!o.isCursorHidden):45===u?_(i.reverseWraparound):66===u?_(i.applicationKeypad):67===u?4:1e3===u?_(\"VT200\"===s):1002===u?_(\"DRAG\"===s):1003===u?_(\"ANY\"===s):1004===u?_(i.sendFocus):1005===u?4:1006===u?_(\"SGR\"===r):1015===u?4:1016===u?_(\"SGR_PIXELS\"===r):1048===u?1:47===u||1047===u||1049===u?_(c===l):2004===u?_(i.bracketedPasteMode):0,o.triggerDataEvent(`${n.C0.ESC}[${t?\"\":\"?\"}${f};${v}$y`),!0;var f,v}_updateAttrColor(e,t,i,s,r){return 2===t?(e|=50331648,e&=-16777216,e|=f.AttributeData.fromColorRGB([i,s,r])):5===t&&(e&=-50331904,e|=33554432|255&i),e}_extractColor(e,t,i){const s=[0,0,-1,0,0,0];let r=0,n=0;do{if(s[n+r]=e.params[t+n],e.hasSubParams(t+n)){const i=e.getSubParams(t+n);let o=0;do{5===s[1]&&(r=1),s[n+o+1+r]=i[o]}while(++o=2||2===s[1]&&n+r>=5)break;s[1]&&(r=1)}while(++n+t5)&&(e=1),t.extended.underlineStyle=e,t.fg|=268435456,0===e&&(t.fg&=-268435457),t.updateExtended()}_processSGR0(e){e.fg=l.DEFAULT_ATTR_DATA.fg,e.bg=l.DEFAULT_ATTR_DATA.bg,e.extended=e.extended.clone(),e.extended.underlineStyle=0,e.extended.underlineColor&=-67108864,e.updateExtended()}charAttributes(e){if(1===e.length&&0===e.params[0])return this._processSGR0(this._curAttrData),!0;const t=e.length;let i;const s=this._curAttrData;for(let r=0;r=30&&i<=37?(s.fg&=-50331904,s.fg|=16777216|i-30):i>=40&&i<=47?(s.bg&=-50331904,s.bg|=16777216|i-40):i>=90&&i<=97?(s.fg&=-50331904,s.fg|=16777224|i-90):i>=100&&i<=107?(s.bg&=-50331904,s.bg|=16777224|i-100):0===i?this._processSGR0(s):1===i?s.fg|=134217728:3===i?s.bg|=67108864:4===i?(s.fg|=268435456,this._processUnderline(e.hasSubParams(r)?e.getSubParams(r)[0]:1,s)):5===i?s.fg|=536870912:7===i?s.fg|=67108864:8===i?s.fg|=1073741824:9===i?s.fg|=2147483648:2===i?s.bg|=134217728:21===i?this._processUnderline(2,s):22===i?(s.fg&=-134217729,s.bg&=-134217729):23===i?s.bg&=-67108865:24===i?(s.fg&=-268435457,this._processUnderline(0,s)):25===i?s.fg&=-536870913:27===i?s.fg&=-67108865:28===i?s.fg&=-1073741825:29===i?s.fg&=2147483647:39===i?(s.fg&=-67108864,s.fg|=16777215&l.DEFAULT_ATTR_DATA.fg):49===i?(s.bg&=-67108864,s.bg|=16777215&l.DEFAULT_ATTR_DATA.bg):38===i||48===i||58===i?r+=this._extractColor(e,r,s):53===i?s.bg|=1073741824:55===i?s.bg&=-1073741825:59===i?(s.extended=s.extended.clone(),s.extended.underlineColor=-1,s.updateExtended()):100===i?(s.fg&=-67108864,s.fg|=16777215&l.DEFAULT_ATTR_DATA.fg,s.bg&=-67108864,s.bg|=16777215&l.DEFAULT_ATTR_DATA.bg):this._logService.debug(\"Unknown SGR attribute: %d.\",i);return!0}deviceStatus(e){switch(e.params[0]){case 5:this._coreService.triggerDataEvent(`${n.C0.ESC}[0n`);break;case 6:const e=this._activeBuffer.y+1,t=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${n.C0.ESC}[${e};${t}R`)}return!0}deviceStatusPrivate(e){if(6===e.params[0]){const e=this._activeBuffer.y+1,t=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${n.C0.ESC}[?${e};${t}R`)}return!0}softReset(e){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=l.DEFAULT_ATTR_DATA.clone(),this._coreService.reset(),this._charsetService.reset(),this._activeBuffer.savedX=0,this._activeBuffer.savedY=this._activeBuffer.ybase,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,this._coreService.decPrivateModes.origin=!1,!0}setCursorStyle(e){const t=e.params[0]||1;switch(t){case 1:case 2:this._optionsService.options.cursorStyle=\"block\";break;case 3:case 4:this._optionsService.options.cursorStyle=\"underline\";break;case 5:case 6:this._optionsService.options.cursorStyle=\"bar\"}const i=t%2==1;return this._optionsService.options.cursorBlink=i,!0}setScrollRegion(e){const t=e.params[0]||1;let i;return(e.length<2||(i=e.params[1])>this._bufferService.rows||0===i)&&(i=this._bufferService.rows),i>t&&(this._activeBuffer.scrollTop=t-1,this._activeBuffer.scrollBottom=i-1,this._setCursor(0,0)),!0}windowOptions(e){if(!w(e.params[0],this._optionsService.rawOptions.windowOptions))return!0;const t=e.length>1?e.params[1]:0;switch(e.params[0]){case 14:2!==t&&this._onRequestWindowsOptionsReport.fire(y.GET_WIN_SIZE_PIXELS);break;case 16:this._onRequestWindowsOptionsReport.fire(y.GET_CELL_SIZE_PIXELS);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${n.C0.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:0!==t&&2!==t||(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>10&&this._windowTitleStack.shift()),0!==t&&1!==t||(this._iconNameStack.push(this._iconName),this._iconNameStack.length>10&&this._iconNameStack.shift());break;case 23:0!==t&&2!==t||this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),0!==t&&1!==t||this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop())}return!0}saveCursor(e){return this._activeBuffer.savedX=this._activeBuffer.x,this._activeBuffer.savedY=this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,!0}restoreCursor(e){return this._activeBuffer.x=this._activeBuffer.savedX||0,this._activeBuffer.y=Math.max(this._activeBuffer.savedY-this._activeBuffer.ybase,0),this._curAttrData.fg=this._activeBuffer.savedCurAttrData.fg,this._curAttrData.bg=this._activeBuffer.savedCurAttrData.bg,this._charsetService.charset=this._savedCharset,this._activeBuffer.savedCharset&&(this._charsetService.charset=this._activeBuffer.savedCharset),this._restrictCursor(),!0}setTitle(e){return this._windowTitle=e,this._onTitleChange.fire(e),!0}setIconName(e){return this._iconName=e,!0}setOrReportIndexedColor(e){const t=[],i=e.split(\";\");for(;i.length>1;){const e=i.shift(),s=i.shift();if(/^\\d+$/.exec(e)){const i=parseInt(e);if(D(i))if(\"?\"===s)t.push({type:0,index:i});else{const e=(0,S.parseColor)(s);e&&t.push({type:1,index:i,color:e})}}}return t.length&&this._onColor.fire(t),!0}setHyperlink(e){const t=e.split(\";\");return!(t.length<2)&&(t[1]?this._createHyperlink(t[0],t[1]):!t[0]&&this._finishHyperlink())}_createHyperlink(e,t){this._getCurrentLinkId()&&this._finishHyperlink();const i=e.split(\":\");let s;const r=i.findIndex((e=>e.startsWith(\"id=\")));return-1!==r&&(s=i[r].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:s,uri:t}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(e,t){const i=e.split(\";\");for(let e=0;e=this._specialColors.length);++e,++t)if(\"?\"===i[e])this._onColor.fire([{type:0,index:this._specialColors[t]}]);else{const s=(0,S.parseColor)(i[e]);s&&this._onColor.fire([{type:1,index:this._specialColors[t],color:s}])}return!0}setOrReportFgColor(e){return this._setOrReportSpecialColor(e,0)}setOrReportBgColor(e){return this._setOrReportSpecialColor(e,1)}setOrReportCursorColor(e){return this._setOrReportSpecialColor(e,2)}restoreIndexedColor(e){if(!e)return this._onColor.fire([{type:2}]),!0;const t=[],i=e.split(\";\");for(let e=0;e=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._restrictCursor(),!0}tabSet(){return this._activeBuffer.tabs[this._activeBuffer.x]=!0,!0}reverseIndex(){if(this._restrictCursor(),this._activeBuffer.y===this._activeBuffer.scrollTop){const e=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,e,1),this._activeBuffer.lines.set(this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.getBlankLine(this._eraseAttrData())),this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom)}else this._activeBuffer.y--,this._restrictCursor();return!0}fullReset(){return this._parser.reset(),this._onRequestReset.fire(),!0}reset(){this._curAttrData=l.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=l.DEFAULT_ATTR_DATA.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=67108863&this._curAttrData.bg,this._eraseAttrDataInternal}setgLevel(e){return this._charsetService.setgLevel(e),!0}screenAlignmentPattern(){const e=new u.CellData;e.content=1<<22|\"E\".charCodeAt(0),e.fg=this._curAttrData.fg,e.bg=this._curAttrData.bg,this._setCursor(0,0);for(let t=0;t(this._coreService.triggerDataEvent(`${n.C0.ESC}${e}${n.C0.ESC}\\\\`),!0))('\"q'===e?`P1$r${this._curAttrData.isProtected()?1:0}\"q`:'\"p'===e?'P1$r61;1\"p':\"r\"===e?`P1$r${i.scrollTop+1};${i.scrollBottom+1}r`:\"m\"===e?\"P1$r0m\":\" q\"===e?`P1$r${{block:2,underline:4,bar:6}[s.cursorStyle]-(s.cursorBlink?1:0)} q`:\"P0$r\")}markRangeDirty(e,t){this._dirtyRowTracker.markRangeDirty(e,t)}}t.InputHandler=k;let L=class{constructor(e){this._bufferService=e,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(e){ethis.end&&(this.end=e)}markRangeDirty(e,t){e>t&&(E=e,e=t,t=E),ethis.end&&(this.end=t)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};function D(e){return 0<=e&&e<256}L=s([r(0,v.IBufferService)],L)},844:(e,t)=>{function i(e){for(const t of e)t.dispose();e.length=0}Object.defineProperty(t,\"__esModule\",{value:!0}),t.getDisposeArrayDisposable=t.disposeArray=t.toDisposable=t.MutableDisposable=t.Disposable=void 0,t.Disposable=class{constructor(){this._disposables=[],this._isDisposed=!1}dispose(){this._isDisposed=!0;for(const e of this._disposables)e.dispose();this._disposables.length=0}register(e){return this._disposables.push(e),e}unregister(e){const t=this._disposables.indexOf(e);-1!==t&&this._disposables.splice(t,1)}},t.MutableDisposable=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(e){this._isDisposed||e===this._value||(this._value?.dispose(),this._value=e)}clear(){this.value=void 0}dispose(){this._isDisposed=!0,this._value?.dispose(),this._value=void 0}},t.toDisposable=function(e){return{dispose:e}},t.disposeArray=i,t.getDisposeArrayDisposable=function(e){return{dispose:()=>i(e)}}},1505:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.FourKeyMap=t.TwoKeyMap=void 0;class i{constructor(){this._data={}}set(e,t,i){this._data[e]||(this._data[e]={}),this._data[e][t]=i}get(e,t){return this._data[e]?this._data[e][t]:void 0}clear(){this._data={}}}t.TwoKeyMap=i,t.FourKeyMap=class{constructor(){this._data=new i}set(e,t,s,r,n){this._data.get(e,t)||this._data.set(e,t,new i),this._data.get(e,t).set(s,r,n)}get(e,t,i,s){return this._data.get(e,t)?.get(i,s)}clear(){this._data.clear()}}},6114:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.isChromeOS=t.isLinux=t.isWindows=t.isIphone=t.isIpad=t.isMac=t.getSafariVersion=t.isSafari=t.isLegacyEdge=t.isFirefox=t.isNode=void 0,t.isNode=\"undefined\"!=typeof process&&\"title\"in process;const i=t.isNode?\"node\":navigator.userAgent,s=t.isNode?\"node\":navigator.platform;t.isFirefox=i.includes(\"Firefox\"),t.isLegacyEdge=i.includes(\"Edge\"),t.isSafari=/^((?!chrome|android).)*safari/i.test(i),t.getSafariVersion=function(){if(!t.isSafari)return 0;const e=i.match(/Version\\/(\\d+)/);return null===e||e.length<2?0:parseInt(e[1])},t.isMac=[\"Macintosh\",\"MacIntel\",\"MacPPC\",\"Mac68K\"].includes(s),t.isIpad=\"iPad\"===s,t.isIphone=\"iPhone\"===s,t.isWindows=[\"Windows\",\"Win16\",\"Win32\",\"WinCE\"].includes(s),t.isLinux=s.indexOf(\"Linux\")>=0,t.isChromeOS=/\\bCrOS\\b/.test(i)},6106:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.SortedList=void 0;let i=0;t.SortedList=class{constructor(e){this._getKey=e,this._array=[]}clear(){this._array.length=0}insert(e){0!==this._array.length?(i=this._search(this._getKey(e)),this._array.splice(i,0,e)):this._array.push(e)}delete(e){if(0===this._array.length)return!1;const t=this._getKey(e);if(void 0===t)return!1;if(i=this._search(t),-1===i)return!1;if(this._getKey(this._array[i])!==t)return!1;do{if(this._array[i]===e)return this._array.splice(i,1),!0}while(++i=this._array.length)&&this._getKey(this._array[i])===e))do{yield this._array[i]}while(++i=this._array.length)&&this._getKey(this._array[i])===e))do{t(this._array[i])}while(++i=t;){let s=t+i>>1;const r=this._getKey(this._array[s]);if(r>e)i=s-1;else{if(!(r0&&this._getKey(this._array[s-1])===e;)s--;return s}t=s+1}}return t}}},7226:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.DebouncedIdleTask=t.IdleTaskQueue=t.PriorityTaskQueue=void 0;const s=i(6114);class r{constructor(){this._tasks=[],this._i=0}enqueue(e){this._tasks.push(e),this._start()}flush(){for(;this._ir)return s-t<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(s-t))}ms`),void this._start();s=r}this.clear()}}class n extends r{_requestCallback(e){return setTimeout((()=>e(this._createDeadline(16))))}_cancelCallback(e){clearTimeout(e)}_createDeadline(e){const t=Date.now()+e;return{timeRemaining:()=>Math.max(0,t-Date.now())}}}t.PriorityTaskQueue=n,t.IdleTaskQueue=!s.isNode&&\"requestIdleCallback\"in window?class extends r{_requestCallback(e){return requestIdleCallback(e)}_cancelCallback(e){cancelIdleCallback(e)}}:n,t.DebouncedIdleTask=class{constructor(){this._queue=new t.IdleTaskQueue}set(e){this._queue.clear(),this._queue.enqueue(e)}flush(){this._queue.flush()}}},9282:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.updateWindowsModeWrappedState=void 0;const s=i(643);t.updateWindowsModeWrappedState=function(e){const t=e.buffer.lines.get(e.buffer.ybase+e.buffer.y-1),i=t?.get(e.cols-1),r=e.buffer.lines.get(e.buffer.ybase+e.buffer.y);r&&i&&(r.isWrapped=i[s.CHAR_DATA_CODE_INDEX]!==s.NULL_CELL_CODE&&i[s.CHAR_DATA_CODE_INDEX]!==s.WHITESPACE_CELL_CODE)}},3734:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.ExtendedAttrs=t.AttributeData=void 0;class i{constructor(){this.fg=0,this.bg=0,this.extended=new s}static toColorRGB(e){return[e>>>16&255,e>>>8&255,255&e]}static fromColorRGB(e){return(255&e[0])<<16|(255&e[1])<<8|255&e[2]}clone(){const e=new i;return e.fg=this.fg,e.bg=this.bg,e.extended=this.extended.clone(),e}isInverse(){return 67108864&this.fg}isBold(){return 134217728&this.fg}isUnderline(){return this.hasExtendedAttrs()&&0!==this.extended.underlineStyle?1:268435456&this.fg}isBlink(){return 536870912&this.fg}isInvisible(){return 1073741824&this.fg}isItalic(){return 67108864&this.bg}isDim(){return 134217728&this.bg}isStrikethrough(){return 2147483648&this.fg}isProtected(){return 536870912&this.bg}isOverline(){return 1073741824&this.bg}getFgColorMode(){return 50331648&this.fg}getBgColorMode(){return 50331648&this.bg}isFgRGB(){return 50331648==(50331648&this.fg)}isBgRGB(){return 50331648==(50331648&this.bg)}isFgPalette(){return 16777216==(50331648&this.fg)||33554432==(50331648&this.fg)}isBgPalette(){return 16777216==(50331648&this.bg)||33554432==(50331648&this.bg)}isFgDefault(){return 0==(50331648&this.fg)}isBgDefault(){return 0==(50331648&this.bg)}isAttributeDefault(){return 0===this.fg&&0===this.bg}getFgColor(){switch(50331648&this.fg){case 16777216:case 33554432:return 255&this.fg;case 50331648:return 16777215&this.fg;default:return-1}}getBgColor(){switch(50331648&this.bg){case 16777216:case 33554432:return 255&this.bg;case 50331648:return 16777215&this.bg;default:return-1}}hasExtendedAttrs(){return 268435456&this.bg}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(268435456&this.bg&&~this.extended.underlineColor)switch(50331648&this.extended.underlineColor){case 16777216:case 33554432:return 255&this.extended.underlineColor;case 50331648:return 16777215&this.extended.underlineColor;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return 268435456&this.bg&&~this.extended.underlineColor?50331648&this.extended.underlineColor:this.getFgColorMode()}isUnderlineColorRGB(){return 268435456&this.bg&&~this.extended.underlineColor?50331648==(50331648&this.extended.underlineColor):this.isFgRGB()}isUnderlineColorPalette(){return 268435456&this.bg&&~this.extended.underlineColor?16777216==(50331648&this.extended.underlineColor)||33554432==(50331648&this.extended.underlineColor):this.isFgPalette()}isUnderlineColorDefault(){return 268435456&this.bg&&~this.extended.underlineColor?0==(50331648&this.extended.underlineColor):this.isFgDefault()}getUnderlineStyle(){return 268435456&this.fg?268435456&this.bg?this.extended.underlineStyle:1:0}getUnderlineVariantOffset(){return this.extended.underlineVariantOffset}}t.AttributeData=i;class s{get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(e){this._ext=e}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(e){this._ext&=-469762049,this._ext|=e<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(e){this._ext&=-67108864,this._ext|=67108863&e}get urlId(){return this._urlId}set urlId(e){this._urlId=e}get underlineVariantOffset(){const e=(3758096384&this._ext)>>29;return e<0?4294967288^e:e}set underlineVariantOffset(e){this._ext&=536870911,this._ext|=e<<29&3758096384}constructor(e=0,t=0){this._ext=0,this._urlId=0,this._ext=e,this._urlId=t}clone(){return new s(this._ext,this._urlId)}isEmpty(){return 0===this.underlineStyle&&0===this._urlId}}t.ExtendedAttrs=s},9092:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.Buffer=t.MAX_BUFFER_SIZE=void 0;const s=i(6349),r=i(7226),n=i(3734),o=i(8437),a=i(4634),h=i(511),c=i(643),l=i(4863),d=i(7116);t.MAX_BUFFER_SIZE=4294967295,t.Buffer=class{constructor(e,t,i){this._hasScrollback=e,this._optionsService=t,this._bufferService=i,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=o.DEFAULT_ATTR_DATA.clone(),this.savedCharset=d.DEFAULT_CHARSET,this.markers=[],this._nullCell=h.CellData.fromCharData([0,c.NULL_CELL_CHAR,c.NULL_CELL_WIDTH,c.NULL_CELL_CODE]),this._whitespaceCell=h.CellData.fromCharData([0,c.WHITESPACE_CELL_CHAR,c.WHITESPACE_CELL_WIDTH,c.WHITESPACE_CELL_CODE]),this._isClearing=!1,this._memoryCleanupQueue=new r.IdleTaskQueue,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new s.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(e){return e?(this._nullCell.fg=e.fg,this._nullCell.bg=e.bg,this._nullCell.extended=e.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new n.ExtendedAttrs),this._nullCell}getWhitespaceCell(e){return e?(this._whitespaceCell.fg=e.fg,this._whitespaceCell.bg=e.bg,this._whitespaceCell.extended=e.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new n.ExtendedAttrs),this._whitespaceCell}getBlankLine(e,t){return new o.BufferLine(this._bufferService.cols,this.getNullCell(e),t)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){const e=this.ybase+this.y-this.ydisp;return e>=0&&et.MAX_BUFFER_SIZE?t.MAX_BUFFER_SIZE:i}fillViewportRows(e){if(0===this.lines.length){void 0===e&&(e=o.DEFAULT_ATTR_DATA);let t=this._rows;for(;t--;)this.lines.push(this.getBlankLine(e))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new s.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(e,t){const i=this.getNullCell(o.DEFAULT_ATTR_DATA);let s=0;const r=this._getCorrectBufferLength(t);if(r>this.lines.maxLength&&(this.lines.maxLength=r),this.lines.length>0){if(this._cols0&&this.lines.length<=this.ybase+this.y+n+1?(this.ybase--,n++,this.ydisp>0&&this.ydisp--):this.lines.push(new o.BufferLine(e,i)));else for(let e=this._rows;e>t;e--)this.lines.length>t+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(r0&&(this.lines.trimStart(e),this.ybase=Math.max(this.ybase-e,0),this.ydisp=Math.max(this.ydisp-e,0),this.savedY=Math.max(this.savedY-e,0)),this.lines.maxLength=r}this.x=Math.min(this.x,e-1),this.y=Math.min(this.y,t-1),n&&(this.y+=n),this.savedX=Math.min(this.savedX,e-1),this.scrollTop=0}if(this.scrollBottom=t-1,this._isReflowEnabled&&(this._reflow(e,t),this._cols>e))for(let t=0;t.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue((()=>this._batchedMemoryCleanup())))}_batchedMemoryCleanup(){let e=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,e=!1);let t=0;for(;this._memoryCleanupPosition100)return!0;return e}get _isReflowEnabled(){const e=this._optionsService.rawOptions.windowsPty;return e&&e.buildNumber?this._hasScrollback&&\"conpty\"===e.backend&&e.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(e,t){this._cols!==e&&(e>this._cols?this._reflowLarger(e,t):this._reflowSmaller(e,t))}_reflowLarger(e,t){const i=(0,a.reflowLargerGetLinesToRemove)(this.lines,this._cols,e,this.ybase+this.y,this.getNullCell(o.DEFAULT_ATTR_DATA));if(i.length>0){const s=(0,a.reflowLargerCreateNewLayout)(this.lines,i);(0,a.reflowLargerApplyNewLayout)(this.lines,s.layout),this._reflowLargerAdjustViewport(e,t,s.countRemoved)}}_reflowLargerAdjustViewport(e,t,i){const s=this.getNullCell(o.DEFAULT_ATTR_DATA);let r=i;for(;r-- >0;)0===this.ybase?(this.y>0&&this.y--,this.lines.length=0;n--){let h=this.lines.get(n);if(!h||!h.isWrapped&&h.getTrimmedLength()<=e)continue;const c=[h];for(;h.isWrapped&&n>0;)h=this.lines.get(--n),c.unshift(h);const l=this.ybase+this.y;if(l>=n&&l0&&(s.push({start:n+c.length+r,newLines:v}),r+=v.length),c.push(...v);let p=_.length-1,g=_[p];0===g&&(p--,g=_[p]);let m=c.length-u-1,S=d;for(;m>=0;){const e=Math.min(S,g);if(void 0===c[p])break;if(c[p].copyCellsFrom(c[m],S-e,g-e,e,!0),g-=e,0===g&&(p--,g=_[p]),S-=e,0===S){m--;const e=Math.max(m,0);S=(0,a.getWrappedLineTrimmedLength)(c,e,this._cols)}}for(let t=0;t0;)0===this.ybase?this.y0){const e=[],t=[];for(let e=0;e=0;c--)if(a&&a.start>n+h){for(let e=a.newLines.length-1;e>=0;e--)this.lines.set(c--,a.newLines[e]);c++,e.push({index:n+1,amount:a.newLines.length}),h+=a.newLines.length,a=s[++o]}else this.lines.set(c,t[n--]);let c=0;for(let t=e.length-1;t>=0;t--)e[t].index+=c,this.lines.onInsertEmitter.fire(e[t]),c+=e[t].amount;const l=Math.max(0,i+r-this.lines.maxLength);l>0&&this.lines.onTrimEmitter.fire(l)}}translateBufferLineToString(e,t,i=0,s){const r=this.lines.get(e);return r?r.translateToString(t,i,s):\"\"}getWrappedRangeForLine(e){let t=e,i=e;for(;t>0&&this.lines.get(t).isWrapped;)t--;for(;i+10;);return e>=this._cols?this._cols-1:e<0?0:e}nextStop(e){for(null==e&&(e=this.x);!this.tabs[++e]&&e=this._cols?this._cols-1:e<0?0:e}clearMarkers(e){this._isClearing=!0;for(let t=0;t{t.line-=e,t.line<0&&t.dispose()}))),t.register(this.lines.onInsert((e=>{t.line>=e.index&&(t.line+=e.amount)}))),t.register(this.lines.onDelete((e=>{t.line>=e.index&&t.linee.index&&(t.line-=e.amount)}))),t.register(t.onDispose((()=>this._removeMarker(t)))),t}_removeMarker(e){this._isClearing||this.markers.splice(this.markers.indexOf(e),1)}}},8437:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.BufferLine=t.DEFAULT_ATTR_DATA=void 0;const s=i(3734),r=i(511),n=i(643),o=i(482);t.DEFAULT_ATTR_DATA=Object.freeze(new s.AttributeData);let a=0;class h{constructor(e,t,i=!1){this.isWrapped=i,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(3*e);const s=t||r.CellData.fromCharData([0,n.NULL_CELL_CHAR,n.NULL_CELL_WIDTH,n.NULL_CELL_CODE]);for(let t=0;t>22,2097152&t?this._combined[e].charCodeAt(this._combined[e].length-1):i]}set(e,t){this._data[3*e+1]=t[n.CHAR_DATA_ATTR_INDEX],t[n.CHAR_DATA_CHAR_INDEX].length>1?(this._combined[e]=t[1],this._data[3*e+0]=2097152|e|t[n.CHAR_DATA_WIDTH_INDEX]<<22):this._data[3*e+0]=t[n.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|t[n.CHAR_DATA_WIDTH_INDEX]<<22}getWidth(e){return this._data[3*e+0]>>22}hasWidth(e){return 12582912&this._data[3*e+0]}getFg(e){return this._data[3*e+1]}getBg(e){return this._data[3*e+2]}hasContent(e){return 4194303&this._data[3*e+0]}getCodePoint(e){const t=this._data[3*e+0];return 2097152&t?this._combined[e].charCodeAt(this._combined[e].length-1):2097151&t}isCombined(e){return 2097152&this._data[3*e+0]}getString(e){const t=this._data[3*e+0];return 2097152&t?this._combined[e]:2097151&t?(0,o.stringFromCodePoint)(2097151&t):\"\"}isProtected(e){return 536870912&this._data[3*e+2]}loadCell(e,t){return a=3*e,t.content=this._data[a+0],t.fg=this._data[a+1],t.bg=this._data[a+2],2097152&t.content&&(t.combinedData=this._combined[e]),268435456&t.bg&&(t.extended=this._extendedAttrs[e]),t}setCell(e,t){2097152&t.content&&(this._combined[e]=t.combinedData),268435456&t.bg&&(this._extendedAttrs[e]=t.extended),this._data[3*e+0]=t.content,this._data[3*e+1]=t.fg,this._data[3*e+2]=t.bg}setCellFromCodepoint(e,t,i,s){268435456&s.bg&&(this._extendedAttrs[e]=s.extended),this._data[3*e+0]=t|i<<22,this._data[3*e+1]=s.fg,this._data[3*e+2]=s.bg}addCodepointToCell(e,t,i){let s=this._data[3*e+0];2097152&s?this._combined[e]+=(0,o.stringFromCodePoint)(t):2097151&s?(this._combined[e]=(0,o.stringFromCodePoint)(2097151&s)+(0,o.stringFromCodePoint)(t),s&=-2097152,s|=2097152):s=t|1<<22,i&&(s&=-12582913,s|=i<<22),this._data[3*e+0]=s}insertCells(e,t,i){if((e%=this.length)&&2===this.getWidth(e-1)&&this.setCellFromCodepoint(e-1,0,1,i),t=0;--i)this.setCell(e+t+i,this.loadCell(e+i,s));for(let s=0;sthis.length){if(this._data.buffer.byteLength>=4*i)this._data=new Uint32Array(this._data.buffer,0,i);else{const e=new Uint32Array(i);e.set(this._data),this._data=e}for(let i=this.length;i=e&&delete this._combined[s]}const s=Object.keys(this._extendedAttrs);for(let t=0;t=e&&delete this._extendedAttrs[i]}}return this.length=e,4*i*2=0;--e)if(4194303&this._data[3*e+0])return e+(this._data[3*e+0]>>22);return 0}getNoBgTrimmedLength(){for(let e=this.length-1;e>=0;--e)if(4194303&this._data[3*e+0]||50331648&this._data[3*e+2])return e+(this._data[3*e+0]>>22);return 0}copyCellsFrom(e,t,i,s,r){const n=e._data;if(r)for(let r=s-1;r>=0;r--){for(let e=0;e<3;e++)this._data[3*(i+r)+e]=n[3*(t+r)+e];268435456&n[3*(t+r)+2]&&(this._extendedAttrs[i+r]=e._extendedAttrs[t+r])}else for(let r=0;r=t&&(this._combined[r-t+i]=e._combined[r])}}translateToString(e,t,i,s){t=t??0,i=i??this.length,e&&(i=Math.min(i,this.getTrimmedLength())),s&&(s.length=0);let r=\"\";for(;t>22||1}return s&&s.push(t),r}}t.BufferLine=h},4841:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.getRangeLength=void 0,t.getRangeLength=function(e,t){if(e.start.y>e.end.y)throw new Error(`Buffer range end (${e.end.x}, ${e.end.y}) cannot be before start (${e.start.x}, ${e.start.y})`);return t*(e.end.y-e.start.y)+(e.end.x-e.start.x+1)}},4634:(e,t)=>{function i(e,t,i){if(t===e.length-1)return e[t].getTrimmedLength();const s=!e[t].hasContent(i-1)&&1===e[t].getWidth(i-1),r=2===e[t+1].getWidth(0);return s&&r?i-1:i}Object.defineProperty(t,\"__esModule\",{value:!0}),t.getWrappedLineTrimmedLength=t.reflowSmallerGetNewLineLengths=t.reflowLargerApplyNewLayout=t.reflowLargerCreateNewLayout=t.reflowLargerGetLinesToRemove=void 0,t.reflowLargerGetLinesToRemove=function(e,t,s,r,n){const o=[];for(let a=0;a=a&&r0&&(e>d||0===l[e].getTrimmedLength());e--)v++;v>0&&(o.push(a+l.length-v),o.push(v)),a+=l.length-1}return o},t.reflowLargerCreateNewLayout=function(e,t){const i=[];let s=0,r=t[s],n=0;for(let o=0;oi(e,r,t))).reduce(((e,t)=>e+t));let o=0,a=0,h=0;for(;hc&&(o-=c,a++);const l=2===e[a].getWidth(o-1);l&&o--;const d=l?s-1:s;r.push(d),h+=d}return r},t.getWrappedLineTrimmedLength=i},5295:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.BufferSet=void 0;const s=i(8460),r=i(844),n=i(9092);class o extends r.Disposable{constructor(e,t){super(),this._optionsService=e,this._bufferService=t,this._onBufferActivate=this.register(new s.EventEmitter),this.onBufferActivate=this._onBufferActivate.event,this.reset(),this.register(this._optionsService.onSpecificOptionChange(\"scrollback\",(()=>this.resize(this._bufferService.cols,this._bufferService.rows)))),this.register(this._optionsService.onSpecificOptionChange(\"tabStopWidth\",(()=>this.setupTabStops())))}reset(){this._normal=new n.Buffer(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new n.Buffer(!1,this._optionsService,this._bufferService),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}),this.setupTabStops()}get alt(){return this._alt}get active(){return this._activeBuffer}get normal(){return this._normal}activateNormalBuffer(){this._activeBuffer!==this._normal&&(this._normal.x=this._alt.x,this._normal.y=this._alt.y,this._alt.clearAllMarkers(),this._alt.clear(),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}))}activateAltBuffer(e){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(e),this._alt.x=this._normal.x,this._alt.y=this._normal.y,this._activeBuffer=this._alt,this._onBufferActivate.fire({activeBuffer:this._alt,inactiveBuffer:this._normal}))}resize(e,t){this._normal.resize(e,t),this._alt.resize(e,t),this.setupTabStops(e)}setupTabStops(e){this._normal.setupTabStops(e),this._alt.setupTabStops(e)}}t.BufferSet=o},511:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.CellData=void 0;const s=i(482),r=i(643),n=i(3734);class o extends n.AttributeData{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new n.ExtendedAttrs,this.combinedData=\"\"}static fromCharData(e){const t=new o;return t.setFromCharData(e),t}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?(0,s.stringFromCodePoint)(2097151&this.content):\"\"}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(e){this.fg=e[r.CHAR_DATA_ATTR_INDEX],this.bg=0;let t=!1;if(e[r.CHAR_DATA_CHAR_INDEX].length>2)t=!0;else if(2===e[r.CHAR_DATA_CHAR_INDEX].length){const i=e[r.CHAR_DATA_CHAR_INDEX].charCodeAt(0);if(55296<=i&&i<=56319){const s=e[r.CHAR_DATA_CHAR_INDEX].charCodeAt(1);56320<=s&&s<=57343?this.content=1024*(i-55296)+s-56320+65536|e[r.CHAR_DATA_WIDTH_INDEX]<<22:t=!0}else t=!0}else this.content=e[r.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|e[r.CHAR_DATA_WIDTH_INDEX]<<22;t&&(this.combinedData=e[r.CHAR_DATA_CHAR_INDEX],this.content=2097152|e[r.CHAR_DATA_WIDTH_INDEX]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}t.CellData=o},643:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.WHITESPACE_CELL_CODE=t.WHITESPACE_CELL_WIDTH=t.WHITESPACE_CELL_CHAR=t.NULL_CELL_CODE=t.NULL_CELL_WIDTH=t.NULL_CELL_CHAR=t.CHAR_DATA_CODE_INDEX=t.CHAR_DATA_WIDTH_INDEX=t.CHAR_DATA_CHAR_INDEX=t.CHAR_DATA_ATTR_INDEX=t.DEFAULT_EXT=t.DEFAULT_ATTR=t.DEFAULT_COLOR=void 0,t.DEFAULT_COLOR=0,t.DEFAULT_ATTR=256|t.DEFAULT_COLOR<<9,t.DEFAULT_EXT=0,t.CHAR_DATA_ATTR_INDEX=0,t.CHAR_DATA_CHAR_INDEX=1,t.CHAR_DATA_WIDTH_INDEX=2,t.CHAR_DATA_CODE_INDEX=3,t.NULL_CELL_CHAR=\"\",t.NULL_CELL_WIDTH=1,t.NULL_CELL_CODE=0,t.WHITESPACE_CELL_CHAR=\" \",t.WHITESPACE_CELL_WIDTH=1,t.WHITESPACE_CELL_CODE=32},4863:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.Marker=void 0;const s=i(8460),r=i(844);class n{get id(){return this._id}constructor(e){this.line=e,this.isDisposed=!1,this._disposables=[],this._id=n._nextId++,this._onDispose=this.register(new s.EventEmitter),this.onDispose=this._onDispose.event}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),(0,r.disposeArray)(this._disposables),this._disposables.length=0)}register(e){return this._disposables.push(e),e}}t.Marker=n,n._nextId=1},7116:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.DEFAULT_CHARSET=t.CHARSETS=void 0,t.CHARSETS={},t.DEFAULT_CHARSET=t.CHARSETS.B,t.CHARSETS[0]={\"`\":\"◆\",a:\"▒\",b:\"␉\",c:\"␌\",d:\"␍\",e:\"␊\",f:\"°\",g:\"±\",h:\"␤\",i:\"␋\",j:\"┘\",k:\"┐\",l:\"┌\",m:\"└\",n:\"┼\",o:\"⎺\",p:\"⎻\",q:\"─\",r:\"⎼\",s:\"⎽\",t:\"├\",u:\"┤\",v:\"┴\",w:\"┬\",x:\"│\",y:\"≤\",z:\"≥\",\"{\":\"π\",\"|\":\"≠\",\"}\":\"£\",\"~\":\"·\"},t.CHARSETS.A={\"#\":\"£\"},t.CHARSETS.B=void 0,t.CHARSETS[4]={\"#\":\"£\",\"@\":\"¾\",\"[\":\"ij\",\"\\\\\":\"½\",\"]\":\"|\",\"{\":\"¨\",\"|\":\"f\",\"}\":\"¼\",\"~\":\"´\"},t.CHARSETS.C=t.CHARSETS[5]={\"[\":\"Ä\",\"\\\\\":\"Ö\",\"]\":\"Å\",\"^\":\"Ü\",\"`\":\"é\",\"{\":\"ä\",\"|\":\"ö\",\"}\":\"å\",\"~\":\"ü\"},t.CHARSETS.R={\"#\":\"£\",\"@\":\"à\",\"[\":\"°\",\"\\\\\":\"ç\",\"]\":\"§\",\"{\":\"é\",\"|\":\"ù\",\"}\":\"è\",\"~\":\"¨\"},t.CHARSETS.Q={\"@\":\"à\",\"[\":\"â\",\"\\\\\":\"ç\",\"]\":\"ê\",\"^\":\"î\",\"`\":\"ô\",\"{\":\"é\",\"|\":\"ù\",\"}\":\"è\",\"~\":\"û\"},t.CHARSETS.K={\"@\":\"§\",\"[\":\"Ä\",\"\\\\\":\"Ö\",\"]\":\"Ü\",\"{\":\"ä\",\"|\":\"ö\",\"}\":\"ü\",\"~\":\"ß\"},t.CHARSETS.Y={\"#\":\"£\",\"@\":\"§\",\"[\":\"°\",\"\\\\\":\"ç\",\"]\":\"é\",\"`\":\"ù\",\"{\":\"à\",\"|\":\"ò\",\"}\":\"è\",\"~\":\"ì\"},t.CHARSETS.E=t.CHARSETS[6]={\"@\":\"Ä\",\"[\":\"Æ\",\"\\\\\":\"Ø\",\"]\":\"Å\",\"^\":\"Ü\",\"`\":\"ä\",\"{\":\"æ\",\"|\":\"ø\",\"}\":\"å\",\"~\":\"ü\"},t.CHARSETS.Z={\"#\":\"£\",\"@\":\"§\",\"[\":\"¡\",\"\\\\\":\"Ñ\",\"]\":\"¿\",\"{\":\"°\",\"|\":\"ñ\",\"}\":\"ç\"},t.CHARSETS.H=t.CHARSETS[7]={\"@\":\"É\",\"[\":\"Ä\",\"\\\\\":\"Ö\",\"]\":\"Å\",\"^\":\"Ü\",\"`\":\"é\",\"{\":\"ä\",\"|\":\"ö\",\"}\":\"å\",\"~\":\"ü\"},t.CHARSETS[\"=\"]={\"#\":\"ù\",\"@\":\"à\",\"[\":\"é\",\"\\\\\":\"ç\",\"]\":\"ê\",\"^\":\"î\",_:\"è\",\"`\":\"ô\",\"{\":\"ä\",\"|\":\"ö\",\"}\":\"ü\",\"~\":\"û\"}},2584:(e,t)=>{var i,s,r;Object.defineProperty(t,\"__esModule\",{value:!0}),t.C1_ESCAPED=t.C1=t.C0=void 0,function(e){e.NUL=\"\\0\",e.SOH=\"\u0001\",e.STX=\"\u0002\",e.ETX=\"\u0003\",e.EOT=\"\u0004\",e.ENQ=\"\u0005\",e.ACK=\"\u0006\",e.BEL=\"\u0007\",e.BS=\"\\b\",e.HT=\"\\t\",e.LF=\"\\n\",e.VT=\"\\v\",e.FF=\"\\f\",e.CR=\"\\r\",e.SO=\"\u000e\",e.SI=\"\u000f\",e.DLE=\"\u0010\",e.DC1=\"\u0011\",e.DC2=\"\u0012\",e.DC3=\"\u0013\",e.DC4=\"\u0014\",e.NAK=\"\u0015\",e.SYN=\"\u0016\",e.ETB=\"\u0017\",e.CAN=\"\u0018\",e.EM=\"\u0019\",e.SUB=\"\u001a\",e.ESC=\"\u001b\",e.FS=\"\u001c\",e.GS=\"\u001d\",e.RS=\"\u001e\",e.US=\"\u001f\",e.SP=\" \",e.DEL=\"\"}(i||(t.C0=i={})),function(e){e.PAD=\"€\",e.HOP=\"\",e.BPH=\"‚\",e.NBH=\"ƒ\",e.IND=\"„\",e.NEL=\"…\",e.SSA=\"†\",e.ESA=\"‡\",e.HTS=\"ˆ\",e.HTJ=\"‰\",e.VTS=\"Š\",e.PLD=\"‹\",e.PLU=\"Œ\",e.RI=\"\",e.SS2=\"Ž\",e.SS3=\"\",e.DCS=\"\",e.PU1=\"‘\",e.PU2=\"’\",e.STS=\"“\",e.CCH=\"”\",e.MW=\"•\",e.SPA=\"–\",e.EPA=\"—\",e.SOS=\"˜\",e.SGCI=\"™\",e.SCI=\"š\",e.CSI=\"›\",e.ST=\"œ\",e.OSC=\"\",e.PM=\"ž\",e.APC=\"Ÿ\"}(s||(t.C1=s={})),function(e){e.ST=`${i.ESC}\\\\`}(r||(t.C1_ESCAPED=r={}))},7399:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.evaluateKeyboardEvent=void 0;const s=i(2584),r={48:[\"0\",\")\"],49:[\"1\",\"!\"],50:[\"2\",\"@\"],51:[\"3\",\"#\"],52:[\"4\",\"$\"],53:[\"5\",\"%\"],54:[\"6\",\"^\"],55:[\"7\",\"&\"],56:[\"8\",\"*\"],57:[\"9\",\"(\"],186:[\";\",\":\"],187:[\"=\",\"+\"],188:[\",\",\"<\"],189:[\"-\",\"_\"],190:[\".\",\">\"],191:[\"/\",\"?\"],192:[\"`\",\"~\"],219:[\"[\",\"{\"],220:[\"\\\\\",\"|\"],221:[\"]\",\"}\"],222:[\"'\",'\"']};t.evaluateKeyboardEvent=function(e,t,i,n){const o={type:0,cancel:!1,key:void 0},a=(e.shiftKey?1:0)|(e.altKey?2:0)|(e.ctrlKey?4:0)|(e.metaKey?8:0);switch(e.keyCode){case 0:\"UIKeyInputUpArrow\"===e.key?o.key=t?s.C0.ESC+\"OA\":s.C0.ESC+\"[A\":\"UIKeyInputLeftArrow\"===e.key?o.key=t?s.C0.ESC+\"OD\":s.C0.ESC+\"[D\":\"UIKeyInputRightArrow\"===e.key?o.key=t?s.C0.ESC+\"OC\":s.C0.ESC+\"[C\":\"UIKeyInputDownArrow\"===e.key&&(o.key=t?s.C0.ESC+\"OB\":s.C0.ESC+\"[B\");break;case 8:o.key=e.ctrlKey?\"\\b\":s.C0.DEL,e.altKey&&(o.key=s.C0.ESC+o.key);break;case 9:if(e.shiftKey){o.key=s.C0.ESC+\"[Z\";break}o.key=s.C0.HT,o.cancel=!0;break;case 13:o.key=e.altKey?s.C0.ESC+s.C0.CR:s.C0.CR,o.cancel=!0;break;case 27:o.key=s.C0.ESC,e.altKey&&(o.key=s.C0.ESC+s.C0.ESC),o.cancel=!0;break;case 37:if(e.metaKey)break;a?(o.key=s.C0.ESC+\"[1;\"+(a+1)+\"D\",o.key===s.C0.ESC+\"[1;3D\"&&(o.key=s.C0.ESC+(i?\"b\":\"[1;5D\"))):o.key=t?s.C0.ESC+\"OD\":s.C0.ESC+\"[D\";break;case 39:if(e.metaKey)break;a?(o.key=s.C0.ESC+\"[1;\"+(a+1)+\"C\",o.key===s.C0.ESC+\"[1;3C\"&&(o.key=s.C0.ESC+(i?\"f\":\"[1;5C\"))):o.key=t?s.C0.ESC+\"OC\":s.C0.ESC+\"[C\";break;case 38:if(e.metaKey)break;a?(o.key=s.C0.ESC+\"[1;\"+(a+1)+\"A\",i||o.key!==s.C0.ESC+\"[1;3A\"||(o.key=s.C0.ESC+\"[1;5A\")):o.key=t?s.C0.ESC+\"OA\":s.C0.ESC+\"[A\";break;case 40:if(e.metaKey)break;a?(o.key=s.C0.ESC+\"[1;\"+(a+1)+\"B\",i||o.key!==s.C0.ESC+\"[1;3B\"||(o.key=s.C0.ESC+\"[1;5B\")):o.key=t?s.C0.ESC+\"OB\":s.C0.ESC+\"[B\";break;case 45:e.shiftKey||e.ctrlKey||(o.key=s.C0.ESC+\"[2~\");break;case 46:o.key=a?s.C0.ESC+\"[3;\"+(a+1)+\"~\":s.C0.ESC+\"[3~\";break;case 36:o.key=a?s.C0.ESC+\"[1;\"+(a+1)+\"H\":t?s.C0.ESC+\"OH\":s.C0.ESC+\"[H\";break;case 35:o.key=a?s.C0.ESC+\"[1;\"+(a+1)+\"F\":t?s.C0.ESC+\"OF\":s.C0.ESC+\"[F\";break;case 33:e.shiftKey?o.type=2:e.ctrlKey?o.key=s.C0.ESC+\"[5;\"+(a+1)+\"~\":o.key=s.C0.ESC+\"[5~\";break;case 34:e.shiftKey?o.type=3:e.ctrlKey?o.key=s.C0.ESC+\"[6;\"+(a+1)+\"~\":o.key=s.C0.ESC+\"[6~\";break;case 112:o.key=a?s.C0.ESC+\"[1;\"+(a+1)+\"P\":s.C0.ESC+\"OP\";break;case 113:o.key=a?s.C0.ESC+\"[1;\"+(a+1)+\"Q\":s.C0.ESC+\"OQ\";break;case 114:o.key=a?s.C0.ESC+\"[1;\"+(a+1)+\"R\":s.C0.ESC+\"OR\";break;case 115:o.key=a?s.C0.ESC+\"[1;\"+(a+1)+\"S\":s.C0.ESC+\"OS\";break;case 116:o.key=a?s.C0.ESC+\"[15;\"+(a+1)+\"~\":s.C0.ESC+\"[15~\";break;case 117:o.key=a?s.C0.ESC+\"[17;\"+(a+1)+\"~\":s.C0.ESC+\"[17~\";break;case 118:o.key=a?s.C0.ESC+\"[18;\"+(a+1)+\"~\":s.C0.ESC+\"[18~\";break;case 119:o.key=a?s.C0.ESC+\"[19;\"+(a+1)+\"~\":s.C0.ESC+\"[19~\";break;case 120:o.key=a?s.C0.ESC+\"[20;\"+(a+1)+\"~\":s.C0.ESC+\"[20~\";break;case 121:o.key=a?s.C0.ESC+\"[21;\"+(a+1)+\"~\":s.C0.ESC+\"[21~\";break;case 122:o.key=a?s.C0.ESC+\"[23;\"+(a+1)+\"~\":s.C0.ESC+\"[23~\";break;case 123:o.key=a?s.C0.ESC+\"[24;\"+(a+1)+\"~\":s.C0.ESC+\"[24~\";break;default:if(!e.ctrlKey||e.shiftKey||e.altKey||e.metaKey)if(i&&!n||!e.altKey||e.metaKey)!i||e.altKey||e.ctrlKey||e.shiftKey||!e.metaKey?e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&e.keyCode>=48&&1===e.key.length?o.key=e.key:e.key&&e.ctrlKey&&(\"_\"===e.key&&(o.key=s.C0.US),\"@\"===e.key&&(o.key=s.C0.NUL)):65===e.keyCode&&(o.type=1);else{const t=r[e.keyCode],i=t?.[e.shiftKey?1:0];if(i)o.key=s.C0.ESC+i;else if(e.keyCode>=65&&e.keyCode<=90){const t=e.ctrlKey?e.keyCode-64:e.keyCode+32;let i=String.fromCharCode(t);e.shiftKey&&(i=i.toUpperCase()),o.key=s.C0.ESC+i}else if(32===e.keyCode)o.key=s.C0.ESC+(e.ctrlKey?s.C0.NUL:\" \");else if(\"Dead\"===e.key&&e.code.startsWith(\"Key\")){let t=e.code.slice(3,4);e.shiftKey||(t=t.toLowerCase()),o.key=s.C0.ESC+t,o.cancel=!0}}else e.keyCode>=65&&e.keyCode<=90?o.key=String.fromCharCode(e.keyCode-64):32===e.keyCode?o.key=s.C0.NUL:e.keyCode>=51&&e.keyCode<=55?o.key=String.fromCharCode(e.keyCode-51+27):56===e.keyCode?o.key=s.C0.DEL:219===e.keyCode?o.key=s.C0.ESC:220===e.keyCode?o.key=s.C0.FS:221===e.keyCode&&(o.key=s.C0.GS)}return o}},482:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.Utf8ToUtf32=t.StringToUtf32=t.utf32ToString=t.stringFromCodePoint=void 0,t.stringFromCodePoint=function(e){return e>65535?(e-=65536,String.fromCharCode(55296+(e>>10))+String.fromCharCode(e%1024+56320)):String.fromCharCode(e)},t.utf32ToString=function(e,t=0,i=e.length){let s=\"\";for(let r=t;r65535?(t-=65536,s+=String.fromCharCode(55296+(t>>10))+String.fromCharCode(t%1024+56320)):s+=String.fromCharCode(t)}return s},t.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(e,t){const i=e.length;if(!i)return 0;let s=0,r=0;if(this._interim){const i=e.charCodeAt(r++);56320<=i&&i<=57343?t[s++]=1024*(this._interim-55296)+i-56320+65536:(t[s++]=this._interim,t[s++]=i),this._interim=0}for(let n=r;n=i)return this._interim=r,s;const o=e.charCodeAt(n);56320<=o&&o<=57343?t[s++]=1024*(r-55296)+o-56320+65536:(t[s++]=r,t[s++]=o)}else 65279!==r&&(t[s++]=r)}return s}},t.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(e,t){const i=e.length;if(!i)return 0;let s,r,n,o,a=0,h=0,c=0;if(this.interim[0]){let s=!1,r=this.interim[0];r&=192==(224&r)?31:224==(240&r)?15:7;let n,o=0;for(;(n=63&this.interim[++o])&&o<4;)r<<=6,r|=n;const h=192==(224&this.interim[0])?2:224==(240&this.interim[0])?3:4,l=h-o;for(;c=i)return 0;if(n=e[c++],128!=(192&n)){c--,s=!0;break}this.interim[o++]=n,r<<=6,r|=63&n}s||(2===h?r<128?c--:t[a++]=r:3===h?r<2048||r>=55296&&r<=57343||65279===r||(t[a++]=r):r<65536||r>1114111||(t[a++]=r)),this.interim.fill(0)}const l=i-4;let d=c;for(;d=i)return this.interim[0]=s,a;if(r=e[d++],128!=(192&r)){d--;continue}if(h=(31&s)<<6|63&r,h<128){d--;continue}t[a++]=h}else if(224==(240&s)){if(d>=i)return this.interim[0]=s,a;if(r=e[d++],128!=(192&r)){d--;continue}if(d>=i)return this.interim[0]=s,this.interim[1]=r,a;if(n=e[d++],128!=(192&n)){d--;continue}if(h=(15&s)<<12|(63&r)<<6|63&n,h<2048||h>=55296&&h<=57343||65279===h)continue;t[a++]=h}else if(240==(248&s)){if(d>=i)return this.interim[0]=s,a;if(r=e[d++],128!=(192&r)){d--;continue}if(d>=i)return this.interim[0]=s,this.interim[1]=r,a;if(n=e[d++],128!=(192&n)){d--;continue}if(d>=i)return this.interim[0]=s,this.interim[1]=r,this.interim[2]=n,a;if(o=e[d++],128!=(192&o)){d--;continue}if(h=(7&s)<<18|(63&r)<<12|(63&n)<<6|63&o,h<65536||h>1114111)continue;t[a++]=h}}return a}}},225:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.UnicodeV6=void 0;const s=i(1480),r=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531]],n=[[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]];let o;t.UnicodeV6=class{constructor(){if(this.version=\"6\",!o){o=new Uint8Array(65536),o.fill(1),o[0]=0,o.fill(0,1,32),o.fill(0,127,160),o.fill(2,4352,4448),o[9001]=2,o[9002]=2,o.fill(2,11904,42192),o[12351]=1,o.fill(2,44032,55204),o.fill(2,63744,64256),o.fill(2,65040,65050),o.fill(2,65072,65136),o.fill(2,65280,65377),o.fill(2,65504,65511);for(let e=0;et[r][1])return!1;for(;r>=s;)if(i=s+r>>1,e>t[i][1])s=i+1;else{if(!(e=131072&&e<=196605||e>=196608&&e<=262141?2:1}charProperties(e,t){let i=this.wcwidth(e),r=0===i&&0!==t;if(r){const e=s.UnicodeService.extractWidth(t);0===e?r=!1:e>i&&(i=e)}return s.UnicodeService.createPropertyValue(0,i,r)}}},5981:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.WriteBuffer=void 0;const s=i(8460),r=i(844);class n extends r.Disposable{constructor(e){super(),this._action=e,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this.register(new s.EventEmitter),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(e,t){if(void 0!==t&&this._syncCalls>t)return void(this._syncCalls=0);if(this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;let i;for(this._isSyncWriting=!0;i=this._writeBuffer.shift();){this._action(i);const e=this._callbacks.shift();e&&e()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(e,t){if(this._pendingData>5e7)throw new Error(\"write data discarded, use flow control to avoid losing data\");if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput)return this._didUserInput=!1,this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t),void this._innerWrite();setTimeout((()=>this._innerWrite()))}this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t)}_innerWrite(e=0,t=!0){const i=e||Date.now();for(;this._writeBuffer.length>this._bufferOffset;){const e=this._writeBuffer[this._bufferOffset],s=this._action(e,t);if(s){const e=e=>Date.now()-i>=12?setTimeout((()=>this._innerWrite(0,e))):this._innerWrite(i,e);return void s.catch((e=>(queueMicrotask((()=>{throw e})),Promise.resolve(!1)))).then(e)}const r=this._callbacks[this._bufferOffset];if(r&&r(),this._bufferOffset++,this._pendingData-=e.length,Date.now()-i>=12)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>50&&(this._writeBuffer=this._writeBuffer.slice(this._bufferOffset),this._callbacks=this._callbacks.slice(this._bufferOffset),this._bufferOffset=0),setTimeout((()=>this._innerWrite()))):(this._writeBuffer.length=0,this._callbacks.length=0,this._pendingData=0,this._bufferOffset=0),this._onWriteParsed.fire()}}t.WriteBuffer=n},5941:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.toRgbString=t.parseColor=void 0;const i=/^([\\da-f])\\/([\\da-f])\\/([\\da-f])$|^([\\da-f]{2})\\/([\\da-f]{2})\\/([\\da-f]{2})$|^([\\da-f]{3})\\/([\\da-f]{3})\\/([\\da-f]{3})$|^([\\da-f]{4})\\/([\\da-f]{4})\\/([\\da-f]{4})$/,s=/^[\\da-f]+$/;function r(e,t){const i=e.toString(16),s=i.length<2?\"0\"+i:i;switch(t){case 4:return i[0];case 8:return s;case 12:return(s+s).slice(0,3);default:return s+s}}t.parseColor=function(e){if(!e)return;let t=e.toLowerCase();if(0===t.indexOf(\"rgb:\")){t=t.slice(4);const e=i.exec(t);if(e){const t=e[1]?15:e[4]?255:e[7]?4095:65535;return[Math.round(parseInt(e[1]||e[4]||e[7]||e[10],16)/t*255),Math.round(parseInt(e[2]||e[5]||e[8]||e[11],16)/t*255),Math.round(parseInt(e[3]||e[6]||e[9]||e[12],16)/t*255)]}}else if(0===t.indexOf(\"#\")&&(t=t.slice(1),s.exec(t)&&[3,6,9,12].includes(t.length))){const e=t.length/3,i=[0,0,0];for(let s=0;s<3;++s){const r=parseInt(t.slice(e*s,e*s+e),16);i[s]=1===e?r<<4:2===e?r:3===e?r>>4:r>>8}return i}},t.toRgbString=function(e,t=16){const[i,s,n]=e;return`rgb:${r(i,t)}/${r(s,t)}/${r(n,t)}`}},5770:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.PAYLOAD_LIMIT=void 0,t.PAYLOAD_LIMIT=1e7},6351:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.DcsHandler=t.DcsParser=void 0;const s=i(482),r=i(8742),n=i(5770),o=[];t.DcsParser=class{constructor(){this._handlers=Object.create(null),this._active=o,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=o}registerHandler(e,t){void 0===this._handlers[e]&&(this._handlers[e]=[]);const i=this._handlers[e];return i.push(t),{dispose:()=>{const e=i.indexOf(t);-1!==e&&i.splice(e,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}reset(){if(this._active.length)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].unhook(!1);this._stack.paused=!1,this._active=o,this._ident=0}hook(e,t){if(this.reset(),this._ident=e,this._active=this._handlers[e]||o,this._active.length)for(let e=this._active.length-1;e>=0;e--)this._active[e].hook(t);else this._handlerFb(this._ident,\"HOOK\",t)}put(e,t,i){if(this._active.length)for(let s=this._active.length-1;s>=0;s--)this._active[s].put(e,t,i);else this._handlerFb(this._ident,\"PUT\",(0,s.utf32ToString)(e,t,i))}unhook(e,t=!0){if(this._active.length){let i=!1,s=this._active.length-1,r=!1;if(this._stack.paused&&(s=this._stack.loopPosition-1,i=t,r=this._stack.fallThrough,this._stack.paused=!1),!r&&!1===i){for(;s>=0&&(i=this._active[s].unhook(e),!0!==i);s--)if(i instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!1,i;s--}for(;s>=0;s--)if(i=this._active[s].unhook(!1),i instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!0,i}else this._handlerFb(this._ident,\"UNHOOK\",e);this._active=o,this._ident=0}};const a=new r.Params;a.addParam(0),t.DcsHandler=class{constructor(e){this._handler=e,this._data=\"\",this._params=a,this._hitLimit=!1}hook(e){this._params=e.length>1||e.params[0]?e.clone():a,this._data=\"\",this._hitLimit=!1}put(e,t,i){this._hitLimit||(this._data+=(0,s.utf32ToString)(e,t,i),this._data.length>n.PAYLOAD_LIMIT&&(this._data=\"\",this._hitLimit=!0))}unhook(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data,this._params),t instanceof Promise))return t.then((e=>(this._params=a,this._data=\"\",this._hitLimit=!1,e)));return this._params=a,this._data=\"\",this._hitLimit=!1,t}}},2015:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.EscapeSequenceParser=t.VT500_TRANSITION_TABLE=t.TransitionTable=void 0;const s=i(844),r=i(8742),n=i(6242),o=i(6351);class a{constructor(e){this.table=new Uint8Array(e)}setDefault(e,t){this.table.fill(e<<4|t)}add(e,t,i,s){this.table[t<<8|e]=i<<4|s}addMany(e,t,i,s){for(let r=0;rt)),i=(e,i)=>t.slice(e,i),s=i(32,127),r=i(0,24);r.push(25),r.push.apply(r,i(28,32));const n=i(0,14);let o;for(o in e.setDefault(1,0),e.addMany(s,0,2,0),n)e.addMany([24,26,153,154],o,3,0),e.addMany(i(128,144),o,3,0),e.addMany(i(144,152),o,3,0),e.add(156,o,0,0),e.add(27,o,11,1),e.add(157,o,4,8),e.addMany([152,158,159],o,0,7),e.add(155,o,11,3),e.add(144,o,11,9);return e.addMany(r,0,3,0),e.addMany(r,1,3,1),e.add(127,1,0,1),e.addMany(r,8,0,8),e.addMany(r,3,3,3),e.add(127,3,0,3),e.addMany(r,4,3,4),e.add(127,4,0,4),e.addMany(r,6,3,6),e.addMany(r,5,3,5),e.add(127,5,0,5),e.addMany(r,2,3,2),e.add(127,2,0,2),e.add(93,1,4,8),e.addMany(s,8,5,8),e.add(127,8,5,8),e.addMany([156,27,24,26,7],8,6,0),e.addMany(i(28,32),8,0,8),e.addMany([88,94,95],1,0,7),e.addMany(s,7,0,7),e.addMany(r,7,0,7),e.add(156,7,0,0),e.add(127,7,0,7),e.add(91,1,11,3),e.addMany(i(64,127),3,7,0),e.addMany(i(48,60),3,8,4),e.addMany([60,61,62,63],3,9,4),e.addMany(i(48,60),4,8,4),e.addMany(i(64,127),4,7,0),e.addMany([60,61,62,63],4,0,6),e.addMany(i(32,64),6,0,6),e.add(127,6,0,6),e.addMany(i(64,127),6,0,0),e.addMany(i(32,48),3,9,5),e.addMany(i(32,48),5,9,5),e.addMany(i(48,64),5,0,6),e.addMany(i(64,127),5,7,0),e.addMany(i(32,48),4,9,5),e.addMany(i(32,48),1,9,2),e.addMany(i(32,48),2,9,2),e.addMany(i(48,127),2,10,0),e.addMany(i(48,80),1,10,0),e.addMany(i(81,88),1,10,0),e.addMany([89,90,92],1,10,0),e.addMany(i(96,127),1,10,0),e.add(80,1,11,9),e.addMany(r,9,0,9),e.add(127,9,0,9),e.addMany(i(28,32),9,0,9),e.addMany(i(32,48),9,9,12),e.addMany(i(48,60),9,8,10),e.addMany([60,61,62,63],9,9,10),e.addMany(r,11,0,11),e.addMany(i(32,128),11,0,11),e.addMany(i(28,32),11,0,11),e.addMany(r,10,0,10),e.add(127,10,0,10),e.addMany(i(28,32),10,0,10),e.addMany(i(48,60),10,8,10),e.addMany([60,61,62,63],10,0,11),e.addMany(i(32,48),10,9,12),e.addMany(r,12,0,12),e.add(127,12,0,12),e.addMany(i(28,32),12,0,12),e.addMany(i(32,48),12,9,12),e.addMany(i(48,64),12,0,11),e.addMany(i(64,127),12,12,13),e.addMany(i(64,127),10,12,13),e.addMany(i(64,127),9,12,13),e.addMany(r,13,13,13),e.addMany(s,13,13,13),e.add(127,13,0,13),e.addMany([27,156,24,26],13,14,0),e.add(h,0,2,0),e.add(h,8,5,8),e.add(h,6,0,6),e.add(h,11,0,11),e.add(h,13,13,13),e}();class c extends s.Disposable{constructor(e=t.VT500_TRANSITION_TABLE){super(),this._transitions=e,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new r.Params,this._params.addParam(0),this._collect=0,this.precedingJoinState=0,this._printHandlerFb=(e,t,i)=>{},this._executeHandlerFb=e=>{},this._csiHandlerFb=(e,t)=>{},this._escHandlerFb=e=>{},this._errorHandlerFb=e=>e,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this.register((0,s.toDisposable)((()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)}))),this._oscParser=this.register(new n.OscParser),this._dcsParser=this.register(new o.DcsParser),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:\"\\\\\"},(()=>!0))}_identifier(e,t=[64,126]){let i=0;if(e.prefix){if(e.prefix.length>1)throw new Error(\"only one byte as prefix supported\");if(i=e.prefix.charCodeAt(0),i&&60>i||i>63)throw new Error(\"prefix must be in range 0x3c .. 0x3f\")}if(e.intermediates){if(e.intermediates.length>2)throw new Error(\"only two bytes as intermediates are supported\");for(let t=0;ts||s>47)throw new Error(\"intermediate must be in range 0x20 .. 0x2f\");i<<=8,i|=s}}if(1!==e.final.length)throw new Error(\"final must be a single byte\");const s=e.final.charCodeAt(0);if(t[0]>s||s>t[1])throw new Error(`final must be in range ${t[0]} .. ${t[1]}`);return i<<=8,i|=s,i}identToString(e){const t=[];for(;e;)t.push(String.fromCharCode(255&e)),e>>=8;return t.reverse().join(\"\")}setPrintHandler(e){this._printHandler=e}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(e,t){const i=this._identifier(e,[48,126]);void 0===this._escHandlers[i]&&(this._escHandlers[i]=[]);const s=this._escHandlers[i];return s.push(t),{dispose:()=>{const e=s.indexOf(t);-1!==e&&s.splice(e,1)}}}clearEscHandler(e){this._escHandlers[this._identifier(e,[48,126])]&&delete this._escHandlers[this._identifier(e,[48,126])]}setEscHandlerFallback(e){this._escHandlerFb=e}setExecuteHandler(e,t){this._executeHandlers[e.charCodeAt(0)]=t}clearExecuteHandler(e){this._executeHandlers[e.charCodeAt(0)]&&delete this._executeHandlers[e.charCodeAt(0)]}setExecuteHandlerFallback(e){this._executeHandlerFb=e}registerCsiHandler(e,t){const i=this._identifier(e);void 0===this._csiHandlers[i]&&(this._csiHandlers[i]=[]);const s=this._csiHandlers[i];return s.push(t),{dispose:()=>{const e=s.indexOf(t);-1!==e&&s.splice(e,1)}}}clearCsiHandler(e){this._csiHandlers[this._identifier(e)]&&delete this._csiHandlers[this._identifier(e)]}setCsiHandlerFallback(e){this._csiHandlerFb=e}registerDcsHandler(e,t){return this._dcsParser.registerHandler(this._identifier(e),t)}clearDcsHandler(e){this._dcsParser.clearHandler(this._identifier(e))}setDcsHandlerFallback(e){this._dcsParser.setHandlerFallback(e)}registerOscHandler(e,t){return this._oscParser.registerHandler(e,t)}clearOscHandler(e){this._oscParser.clearHandler(e)}setOscHandlerFallback(e){this._oscParser.setHandlerFallback(e)}setErrorHandler(e){this._errorHandler=e}clearErrorHandler(){this._errorHandler=this._errorHandlerFb}reset(){this.currentState=this.initialState,this._oscParser.reset(),this._dcsParser.reset(),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0,0!==this._parseStack.state&&(this._parseStack.state=2,this._parseStack.handlers=[])}_preserveStack(e,t,i,s,r){this._parseStack.state=e,this._parseStack.handlers=t,this._parseStack.handlerPos=i,this._parseStack.transition=s,this._parseStack.chunkPos=r}parse(e,t,i){let s,r=0,n=0,o=0;if(this._parseStack.state)if(2===this._parseStack.state)this._parseStack.state=0,o=this._parseStack.chunkPos+1;else{if(void 0===i||1===this._parseStack.state)throw this._parseStack.state=1,new Error(\"improper continuation due to previous async handler, giving up parsing\");const t=this._parseStack.handlers;let n=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(!1===i&&n>-1)for(;n>=0&&(s=t[n](this._params),!0!==s);n--)if(s instanceof Promise)return this._parseStack.handlerPos=n,s;this._parseStack.handlers=[];break;case 4:if(!1===i&&n>-1)for(;n>=0&&(s=t[n](),!0!==s);n--)if(s instanceof Promise)return this._parseStack.handlerPos=n,s;this._parseStack.handlers=[];break;case 6:if(r=e[this._parseStack.chunkPos],s=this._dcsParser.unhook(24!==r&&26!==r,i),s)return s;27===r&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(r=e[this._parseStack.chunkPos],s=this._oscParser.end(24!==r&&26!==r,i),s)return s;27===r&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0}this._parseStack.state=0,o=this._parseStack.chunkPos+1,this.precedingJoinState=0,this.currentState=15&this._parseStack.transition}for(let i=o;i>4){case 2:for(let s=i+1;;++s){if(s>=t||(r=e[s])<32||r>126&&r=t||(r=e[s])<32||r>126&&r=t||(r=e[s])<32||r>126&&r=t||(r=e[s])<32||r>126&&r=0&&(s=o[a](this._params),!0!==s);a--)if(s instanceof Promise)return this._preserveStack(3,o,a,n,i),s;a<0&&this._csiHandlerFb(this._collect<<8|r,this._params),this.precedingJoinState=0;break;case 8:do{switch(r){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(r-48)}}while(++i47&&r<60);i--;break;case 9:this._collect<<=8,this._collect|=r;break;case 10:const c=this._escHandlers[this._collect<<8|r];let l=c?c.length-1:-1;for(;l>=0&&(s=c[l](),!0!==s);l--)if(s instanceof Promise)return this._preserveStack(4,c,l,n,i),s;l<0&&this._escHandlerFb(this._collect<<8|r),this.precedingJoinState=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|r,this._params);break;case 13:for(let s=i+1;;++s)if(s>=t||24===(r=e[s])||26===r||27===r||r>127&&r=t||(r=e[s])<32||r>127&&r{Object.defineProperty(t,\"__esModule\",{value:!0}),t.OscHandler=t.OscParser=void 0;const s=i(5770),r=i(482),n=[];t.OscParser=class{constructor(){this._state=0,this._active=n,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(e,t){void 0===this._handlers[e]&&(this._handlers[e]=[]);const i=this._handlers[e];return i.push(t),{dispose:()=>{const e=i.indexOf(t);-1!==e&&i.splice(e,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=n}reset(){if(2===this._state)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].end(!1);this._stack.paused=!1,this._active=n,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||n,this._active.length)for(let e=this._active.length-1;e>=0;e--)this._active[e].start();else this._handlerFb(this._id,\"START\")}_put(e,t,i){if(this._active.length)for(let s=this._active.length-1;s>=0;s--)this._active[s].put(e,t,i);else this._handlerFb(this._id,\"PUT\",(0,r.utf32ToString)(e,t,i))}start(){this.reset(),this._state=1}put(e,t,i){if(3!==this._state){if(1===this._state)for(;t0&&this._put(e,t,i)}}end(e,t=!0){if(0!==this._state){if(3!==this._state)if(1===this._state&&this._start(),this._active.length){let i=!1,s=this._active.length-1,r=!1;if(this._stack.paused&&(s=this._stack.loopPosition-1,i=t,r=this._stack.fallThrough,this._stack.paused=!1),!r&&!1===i){for(;s>=0&&(i=this._active[s].end(e),!0!==i);s--)if(i instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!1,i;s--}for(;s>=0;s--)if(i=this._active[s].end(!1),i instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=s,this._stack.fallThrough=!0,i}else this._handlerFb(this._id,\"END\",e);this._active=n,this._id=-1,this._state=0}}},t.OscHandler=class{constructor(e){this._handler=e,this._data=\"\",this._hitLimit=!1}start(){this._data=\"\",this._hitLimit=!1}put(e,t,i){this._hitLimit||(this._data+=(0,r.utf32ToString)(e,t,i),this._data.length>s.PAYLOAD_LIMIT&&(this._data=\"\",this._hitLimit=!0))}end(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data),t instanceof Promise))return t.then((e=>(this._data=\"\",this._hitLimit=!1,e)));return this._data=\"\",this._hitLimit=!1,t}}},8742:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.Params=void 0;const i=2147483647;class s{static fromArray(e){const t=new s;if(!e.length)return t;for(let i=Array.isArray(e[0])?1:0;i256)throw new Error(\"maxSubParamsLength must not be greater than 256\");this.params=new Int32Array(e),this.length=0,this._subParams=new Int32Array(t),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(e),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}clone(){const e=new s(this.maxLength,this.maxSubParamsLength);return e.params.set(this.params),e.length=this.length,e._subParams.set(this._subParams),e._subParamsLength=this._subParamsLength,e._subParamsIdx.set(this._subParamsIdx),e._rejectDigits=this._rejectDigits,e._rejectSubDigits=this._rejectSubDigits,e._digitIsSub=this._digitIsSub,e}toArray(){const e=[];for(let t=0;t>8,s=255&this._subParamsIdx[t];s-i>0&&e.push(Array.prototype.slice.call(this._subParams,i,s))}return e}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(e){if(this._digitIsSub=!1,this.length>=this.maxLength)this._rejectDigits=!0;else{if(e<-1)throw new Error(\"values lesser than -1 are not allowed\");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=e>i?i:e}}addSubParam(e){if(this._digitIsSub=!0,this.length)if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength)this._rejectSubDigits=!0;else{if(e<-1)throw new Error(\"values lesser than -1 are not allowed\");this._subParams[this._subParamsLength++]=e>i?i:e,this._subParamsIdx[this.length-1]++}}hasSubParams(e){return(255&this._subParamsIdx[e])-(this._subParamsIdx[e]>>8)>0}getSubParams(e){const t=this._subParamsIdx[e]>>8,i=255&this._subParamsIdx[e];return i-t>0?this._subParams.subarray(t,i):null}getSubParamsAll(){const e={};for(let t=0;t>8,s=255&this._subParamsIdx[t];s-i>0&&(e[t]=this._subParams.slice(i,s))}return e}addDigit(e){let t;if(this._rejectDigits||!(t=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;const s=this._digitIsSub?this._subParams:this.params,r=s[t-1];s[t-1]=~r?Math.min(10*r+e,i):e}}t.Params=s},5741:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.AddonManager=void 0,t.AddonManager=class{constructor(){this._addons=[]}dispose(){for(let e=this._addons.length-1;e>=0;e--)this._addons[e].instance.dispose()}loadAddon(e,t){const i={instance:t,dispose:t.dispose,isDisposed:!1};this._addons.push(i),t.dispose=()=>this._wrappedAddonDispose(i),t.activate(e)}_wrappedAddonDispose(e){if(e.isDisposed)return;let t=-1;for(let i=0;i{Object.defineProperty(t,\"__esModule\",{value:!0}),t.BufferApiView=void 0;const s=i(3785),r=i(511);t.BufferApiView=class{constructor(e,t){this._buffer=e,this.type=t}init(e){return this._buffer=e,this}get cursorY(){return this._buffer.y}get cursorX(){return this._buffer.x}get viewportY(){return this._buffer.ydisp}get baseY(){return this._buffer.ybase}get length(){return this._buffer.lines.length}getLine(e){const t=this._buffer.lines.get(e);if(t)return new s.BufferLineApiView(t)}getNullCell(){return new r.CellData}}},3785:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.BufferLineApiView=void 0;const s=i(511);t.BufferLineApiView=class{constructor(e){this._line=e}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(e,t){if(!(e<0||e>=this._line.length))return t?(this._line.loadCell(e,t),t):this._line.loadCell(e,new s.CellData)}translateToString(e,t,i){return this._line.translateToString(e,t,i)}}},8285:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.BufferNamespaceApi=void 0;const s=i(8771),r=i(8460),n=i(844);class o extends n.Disposable{constructor(e){super(),this._core=e,this._onBufferChange=this.register(new r.EventEmitter),this.onBufferChange=this._onBufferChange.event,this._normal=new s.BufferApiView(this._core.buffers.normal,\"normal\"),this._alternate=new s.BufferApiView(this._core.buffers.alt,\"alternate\"),this._core.buffers.onBufferActivate((()=>this._onBufferChange.fire(this.active)))}get active(){if(this._core.buffers.active===this._core.buffers.normal)return this.normal;if(this._core.buffers.active===this._core.buffers.alt)return this.alternate;throw new Error(\"Active buffer is neither normal nor alternate\")}get normal(){return this._normal.init(this._core.buffers.normal)}get alternate(){return this._alternate.init(this._core.buffers.alt)}}t.BufferNamespaceApi=o},7975:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.ParserApi=void 0,t.ParserApi=class{constructor(e){this._core=e}registerCsiHandler(e,t){return this._core.registerCsiHandler(e,(e=>t(e.toArray())))}addCsiHandler(e,t){return this.registerCsiHandler(e,t)}registerDcsHandler(e,t){return this._core.registerDcsHandler(e,((e,i)=>t(e,i.toArray())))}addDcsHandler(e,t){return this.registerDcsHandler(e,t)}registerEscHandler(e,t){return this._core.registerEscHandler(e,t)}addEscHandler(e,t){return this.registerEscHandler(e,t)}registerOscHandler(e,t){return this._core.registerOscHandler(e,t)}addOscHandler(e,t){return this.registerOscHandler(e,t)}}},7090:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.UnicodeApi=void 0,t.UnicodeApi=class{constructor(e){this._core=e}register(e){this._core.unicodeService.register(e)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(e){this._core.unicodeService.activeVersion=e}}},744:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.BufferService=t.MINIMUM_ROWS=t.MINIMUM_COLS=void 0;const n=i(8460),o=i(844),a=i(5295),h=i(2585);t.MINIMUM_COLS=2,t.MINIMUM_ROWS=1;let c=t.BufferService=class extends o.Disposable{get buffer(){return this.buffers.active}constructor(e){super(),this.isUserScrolling=!1,this._onResize=this.register(new n.EventEmitter),this.onResize=this._onResize.event,this._onScroll=this.register(new n.EventEmitter),this.onScroll=this._onScroll.event,this.cols=Math.max(e.rawOptions.cols||0,t.MINIMUM_COLS),this.rows=Math.max(e.rawOptions.rows||0,t.MINIMUM_ROWS),this.buffers=this.register(new a.BufferSet(e,this))}resize(e,t){this.cols=e,this.rows=t,this.buffers.resize(e,t),this._onResize.fire({cols:e,rows:t})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(e,t=!1){const i=this.buffer;let s;s=this._cachedBlankLine,s&&s.length===this.cols&&s.getFg(0)===e.fg&&s.getBg(0)===e.bg||(s=i.getBlankLine(e,t),this._cachedBlankLine=s),s.isWrapped=t;const r=i.ybase+i.scrollTop,n=i.ybase+i.scrollBottom;if(0===i.scrollTop){const e=i.lines.isFull;n===i.lines.length-1?e?i.lines.recycle().copyFrom(s):i.lines.push(s.clone()):i.lines.splice(n+1,0,s.clone()),e?this.isUserScrolling&&(i.ydisp=Math.max(i.ydisp-1,0)):(i.ybase++,this.isUserScrolling||i.ydisp++)}else{const e=n-r+1;i.lines.shiftElements(r+1,e-1,-1),i.lines.set(n,s.clone())}this.isUserScrolling||(i.ydisp=i.ybase),this._onScroll.fire(i.ydisp)}scrollLines(e,t,i){const s=this.buffer;if(e<0){if(0===s.ydisp)return;this.isUserScrolling=!0}else e+s.ydisp>=s.ybase&&(this.isUserScrolling=!1);const r=s.ydisp;s.ydisp=Math.max(Math.min(s.ydisp+e,s.ybase),0),r!==s.ydisp&&(t||this._onScroll.fire(s.ydisp))}};t.BufferService=c=s([r(0,h.IOptionsService)],c)},7994:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.CharsetService=void 0,t.CharsetService=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(e){this.glevel=e,this.charset=this._charsets[e]}setgCharset(e,t){this._charsets[e]=t,this.glevel===e&&(this.charset=t)}}},1753:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.CoreMouseService=void 0;const n=i(2585),o=i(8460),a=i(844),h={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:e=>4!==e.button&&1===e.action&&(e.ctrl=!1,e.alt=!1,e.shift=!1,!0)},VT200:{events:19,restrict:e=>32!==e.action},DRAG:{events:23,restrict:e=>32!==e.action||3!==e.button},ANY:{events:31,restrict:e=>!0}};function c(e,t){let i=(e.ctrl?16:0)|(e.shift?4:0)|(e.alt?8:0);return 4===e.button?(i|=64,i|=e.action):(i|=3&e.button,4&e.button&&(i|=64),8&e.button&&(i|=128),32===e.action?i|=32:0!==e.action||t||(i|=3)),i}const l=String.fromCharCode,d={DEFAULT:e=>{const t=[c(e,!1)+32,e.col+32,e.row+32];return t[0]>255||t[1]>255||t[2]>255?\"\":`\u001b[M${l(t[0])}${l(t[1])}${l(t[2])}`},SGR:e=>{const t=0===e.action&&4!==e.button?\"m\":\"M\";return`\u001b[<${c(e,!0)};${e.col};${e.row}${t}`},SGR_PIXELS:e=>{const t=0===e.action&&4!==e.button?\"m\":\"M\";return`\u001b[<${c(e,!0)};${e.x};${e.y}${t}`}};let _=t.CoreMouseService=class extends a.Disposable{constructor(e,t){super(),this._bufferService=e,this._coreService=t,this._protocols={},this._encodings={},this._activeProtocol=\"\",this._activeEncoding=\"\",this._lastEvent=null,this._onProtocolChange=this.register(new o.EventEmitter),this.onProtocolChange=this._onProtocolChange.event;for(const e of Object.keys(h))this.addProtocol(e,h[e]);for(const e of Object.keys(d))this.addEncoding(e,d[e]);this.reset()}addProtocol(e,t){this._protocols[e]=t}addEncoding(e,t){this._encodings[e]=t}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return 0!==this._protocols[this._activeProtocol].events}set activeProtocol(e){if(!this._protocols[e])throw new Error(`unknown protocol \"${e}\"`);this._activeProtocol=e,this._onProtocolChange.fire(this._protocols[e].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(e){if(!this._encodings[e])throw new Error(`unknown encoding \"${e}\"`);this._activeEncoding=e}reset(){this.activeProtocol=\"NONE\",this.activeEncoding=\"DEFAULT\",this._lastEvent=null}triggerMouseEvent(e){if(e.col<0||e.col>=this._bufferService.cols||e.row<0||e.row>=this._bufferService.rows)return!1;if(4===e.button&&32===e.action)return!1;if(3===e.button&&32!==e.action)return!1;if(4!==e.button&&(2===e.action||3===e.action))return!1;if(e.col++,e.row++,32===e.action&&this._lastEvent&&this._equalEvents(this._lastEvent,e,\"SGR_PIXELS\"===this._activeEncoding))return!1;if(!this._protocols[this._activeProtocol].restrict(e))return!1;const t=this._encodings[this._activeEncoding](e);return t&&(\"DEFAULT\"===this._activeEncoding?this._coreService.triggerBinaryEvent(t):this._coreService.triggerDataEvent(t,!0)),this._lastEvent=e,!0}explainEvents(e){return{down:!!(1&e),up:!!(2&e),drag:!!(4&e),move:!!(8&e),wheel:!!(16&e)}}_equalEvents(e,t,i){if(i){if(e.x!==t.x)return!1;if(e.y!==t.y)return!1}else{if(e.col!==t.col)return!1;if(e.row!==t.row)return!1}return e.button===t.button&&e.action===t.action&&e.ctrl===t.ctrl&&e.alt===t.alt&&e.shift===t.shift}};t.CoreMouseService=_=s([r(0,n.IBufferService),r(1,n.ICoreService)],_)},6975:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.CoreService=void 0;const n=i(1439),o=i(8460),a=i(844),h=i(2585),c=Object.freeze({insertMode:!1}),l=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,origin:!1,reverseWraparound:!1,sendFocus:!1,wraparound:!0});let d=t.CoreService=class extends a.Disposable{constructor(e,t,i){super(),this._bufferService=e,this._logService=t,this._optionsService=i,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this.register(new o.EventEmitter),this.onData=this._onData.event,this._onUserInput=this.register(new o.EventEmitter),this.onUserInput=this._onUserInput.event,this._onBinary=this.register(new o.EventEmitter),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this.register(new o.EventEmitter),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=(0,n.clone)(c),this.decPrivateModes=(0,n.clone)(l)}reset(){this.modes=(0,n.clone)(c),this.decPrivateModes=(0,n.clone)(l)}triggerDataEvent(e,t=!1){if(this._optionsService.rawOptions.disableStdin)return;const i=this._bufferService.buffer;t&&this._optionsService.rawOptions.scrollOnUserInput&&i.ybase!==i.ydisp&&this._onRequestScrollToBottom.fire(),t&&this._onUserInput.fire(),this._logService.debug(`sending data \"${e}\"`,(()=>e.split(\"\").map((e=>e.charCodeAt(0))))),this._onData.fire(e)}triggerBinaryEvent(e){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary \"${e}\"`,(()=>e.split(\"\").map((e=>e.charCodeAt(0))))),this._onBinary.fire(e))}};t.CoreService=d=s([r(0,h.IBufferService),r(1,h.ILogService),r(2,h.IOptionsService)],d)},9074:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.DecorationService=void 0;const s=i(8055),r=i(8460),n=i(844),o=i(6106);let a=0,h=0;class c extends n.Disposable{get decorations(){return this._decorations.values()}constructor(){super(),this._decorations=new o.SortedList((e=>e?.marker.line)),this._onDecorationRegistered=this.register(new r.EventEmitter),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this.register(new r.EventEmitter),this.onDecorationRemoved=this._onDecorationRemoved.event,this.register((0,n.toDisposable)((()=>this.reset())))}registerDecoration(e){if(e.marker.isDisposed)return;const t=new l(e);if(t){const e=t.marker.onDispose((()=>t.dispose()));t.onDispose((()=>{t&&(this._decorations.delete(t)&&this._onDecorationRemoved.fire(t),e.dispose())})),this._decorations.insert(t),this._onDecorationRegistered.fire(t)}return t}reset(){for(const e of this._decorations.values())e.dispose();this._decorations.clear()}*getDecorationsAtCell(e,t,i){let s=0,r=0;for(const n of this._decorations.getKeyIterator(t))s=n.options.x??0,r=s+(n.options.width??1),e>=s&&e{a=t.options.x??0,h=a+(t.options.width??1),e>=a&&e{Object.defineProperty(t,\"__esModule\",{value:!0}),t.InstantiationService=t.ServiceCollection=void 0;const s=i(2585),r=i(8343);class n{constructor(...e){this._entries=new Map;for(const[t,i]of e)this.set(t,i)}set(e,t){const i=this._entries.get(e);return this._entries.set(e,t),i}forEach(e){for(const[t,i]of this._entries.entries())e(t,i)}has(e){return this._entries.has(e)}get(e){return this._entries.get(e)}}t.ServiceCollection=n,t.InstantiationService=class{constructor(){this._services=new n,this._services.set(s.IInstantiationService,this)}setService(e,t){this._services.set(e,t)}getService(e){return this._services.get(e)}createInstance(e,...t){const i=(0,r.getServiceDependencies)(e).sort(((e,t)=>e.index-t.index)),s=[];for(const t of i){const i=this._services.get(t.id);if(!i)throw new Error(`[createInstance] ${e.name} depends on UNKNOWN service ${t.id}.`);s.push(i)}const n=i.length>0?i[0].index:t.length;if(t.length!==n)throw new Error(`[createInstance] First service dependency of ${e.name} at position ${n+1} conflicts with ${t.length} static arguments`);return new e(...[...t,...s])}}},7866:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.traceCall=t.setTraceLogger=t.LogService=void 0;const n=i(844),o=i(2585),a={trace:o.LogLevelEnum.TRACE,debug:o.LogLevelEnum.DEBUG,info:o.LogLevelEnum.INFO,warn:o.LogLevelEnum.WARN,error:o.LogLevelEnum.ERROR,off:o.LogLevelEnum.OFF};let h,c=t.LogService=class extends n.Disposable{get logLevel(){return this._logLevel}constructor(e){super(),this._optionsService=e,this._logLevel=o.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange(\"logLevel\",(()=>this._updateLogLevel()))),h=this}_updateLogLevel(){this._logLevel=a[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let t=0;tJSON.stringify(e))).join(\", \")})`);const t=s.apply(this,e);return h.trace(`GlyphRenderer#${s.name} return`,t),t}}},7302:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.OptionsService=t.DEFAULT_OPTIONS=void 0;const s=i(8460),r=i(844),n=i(6114);t.DEFAULT_OPTIONS={cols:80,rows:24,cursorBlink:!1,cursorStyle:\"block\",cursorWidth:1,cursorInactiveStyle:\"outline\",customGlyphs:!0,drawBoldTextInBrightColors:!0,documentOverride:null,fastScrollModifier:\"alt\",fastScrollSensitivity:5,fontFamily:\"courier-new, courier, monospace\",fontSize:15,fontWeight:\"normal\",fontWeightBold:\"bold\",ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:\"info\",logger:null,scrollback:1e3,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},rescaleOverlappingGlyphs:!1,rightClickSelectsWord:n.isMac,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:\" ()[]{}',\\\"`\",altClickMovesCursor:!0,convertEol:!1,termName:\"xterm\",cancelEvents:!1,overviewRulerWidth:0};const o=[\"normal\",\"bold\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"];class a extends r.Disposable{constructor(e){super(),this._onOptionChange=this.register(new s.EventEmitter),this.onOptionChange=this._onOptionChange.event;const i={...t.DEFAULT_OPTIONS};for(const t in e)if(t in i)try{const s=e[t];i[t]=this._sanitizeAndValidateOption(t,s)}catch(e){console.error(e)}this.rawOptions=i,this.options={...i},this._setupOptions(),this.register((0,r.toDisposable)((()=>{this.rawOptions.linkHandler=null,this.rawOptions.documentOverride=null})))}onSpecificOptionChange(e,t){return this.onOptionChange((i=>{i===e&&t(this.rawOptions[e])}))}onMultipleOptionChange(e,t){return this.onOptionChange((i=>{-1!==e.indexOf(i)&&t()}))}_setupOptions(){const e=e=>{if(!(e in t.DEFAULT_OPTIONS))throw new Error(`No option with key \"${e}\"`);return this.rawOptions[e]},i=(e,i)=>{if(!(e in t.DEFAULT_OPTIONS))throw new Error(`No option with key \"${e}\"`);i=this._sanitizeAndValidateOption(e,i),this.rawOptions[e]!==i&&(this.rawOptions[e]=i,this._onOptionChange.fire(e))};for(const t in this.rawOptions){const s={get:e.bind(this,t),set:i.bind(this,t)};Object.defineProperty(this.options,t,s)}}_sanitizeAndValidateOption(e,i){switch(e){case\"cursorStyle\":if(i||(i=t.DEFAULT_OPTIONS[e]),!function(e){return\"block\"===e||\"underline\"===e||\"bar\"===e}(i))throw new Error(`\"${i}\" is not a valid value for ${e}`);break;case\"wordSeparator\":i||(i=t.DEFAULT_OPTIONS[e]);break;case\"fontWeight\":case\"fontWeightBold\":if(\"number\"==typeof i&&1<=i&&i<=1e3)break;i=o.includes(i)?i:t.DEFAULT_OPTIONS[e];break;case\"cursorWidth\":i=Math.floor(i);case\"lineHeight\":case\"tabStopWidth\":if(i<1)throw new Error(`${e} cannot be less than 1, value: ${i}`);break;case\"minimumContrastRatio\":i=Math.max(1,Math.min(21,Math.round(10*i)/10));break;case\"scrollback\":if((i=Math.min(i,4294967295))<0)throw new Error(`${e} cannot be less than 0, value: ${i}`);break;case\"fastScrollSensitivity\":case\"scrollSensitivity\":if(i<=0)throw new Error(`${e} cannot be less than or equal to 0, value: ${i}`);break;case\"rows\":case\"cols\":if(!i&&0!==i)throw new Error(`${e} must be numeric, value: ${i}`);break;case\"windowsPty\":i=i??{}}return i}}t.OptionsService=a},2660:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,n=arguments.length,o=n<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)o=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(o=(n<3?r(o):n>3?r(t,i,o):r(t,i))||o);return n>3&&o&&Object.defineProperty(t,i,o),o},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.OscLinkService=void 0;const n=i(2585);let o=t.OscLinkService=class{constructor(e){this._bufferService=e,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(e){const t=this._bufferService.buffer;if(void 0===e.id){const i=t.addMarker(t.ybase+t.y),s={data:e,id:this._nextId++,lines:[i]};return i.onDispose((()=>this._removeMarkerFromLink(s,i))),this._dataByLinkId.set(s.id,s),s.id}const i=e,s=this._getEntryIdKey(i),r=this._entriesWithId.get(s);if(r)return this.addLineToLink(r.id,t.ybase+t.y),r.id;const n=t.addMarker(t.ybase+t.y),o={id:this._nextId++,key:this._getEntryIdKey(i),data:i,lines:[n]};return n.onDispose((()=>this._removeMarkerFromLink(o,n))),this._entriesWithId.set(o.key,o),this._dataByLinkId.set(o.id,o),o.id}addLineToLink(e,t){const i=this._dataByLinkId.get(e);if(i&&i.lines.every((e=>e.line!==t))){const e=this._bufferService.buffer.addMarker(t);i.lines.push(e),e.onDispose((()=>this._removeMarkerFromLink(i,e)))}}getLinkData(e){return this._dataByLinkId.get(e)?.data}_getEntryIdKey(e){return`${e.id};;${e.uri}`}_removeMarkerFromLink(e,t){const i=e.lines.indexOf(t);-1!==i&&(e.lines.splice(i,1),0===e.lines.length&&(void 0!==e.data.id&&this._entriesWithId.delete(e.key),this._dataByLinkId.delete(e.id)))}};t.OscLinkService=o=s([r(0,n.IBufferService)],o)},8343:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.createDecorator=t.getServiceDependencies=t.serviceRegistry=void 0;const i=\"di$target\",s=\"di$dependencies\";t.serviceRegistry=new Map,t.getServiceDependencies=function(e){return e[s]||[]},t.createDecorator=function(e){if(t.serviceRegistry.has(e))return t.serviceRegistry.get(e);const r=function(e,t,n){if(3!==arguments.length)throw new Error(\"@IServiceName-decorator can only be used to decorate a parameter\");!function(e,t,r){t[i]===t?t[s].push({id:e,index:r}):(t[s]=[{id:e,index:r}],t[i]=t)}(r,e,n)};return r.toString=()=>e,t.serviceRegistry.set(e,r),r}},2585:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.IDecorationService=t.IUnicodeService=t.IOscLinkService=t.IOptionsService=t.ILogService=t.LogLevelEnum=t.IInstantiationService=t.ICharsetService=t.ICoreService=t.ICoreMouseService=t.IBufferService=void 0;const s=i(8343);var r;t.IBufferService=(0,s.createDecorator)(\"BufferService\"),t.ICoreMouseService=(0,s.createDecorator)(\"CoreMouseService\"),t.ICoreService=(0,s.createDecorator)(\"CoreService\"),t.ICharsetService=(0,s.createDecorator)(\"CharsetService\"),t.IInstantiationService=(0,s.createDecorator)(\"InstantiationService\"),function(e){e[e.TRACE=0]=\"TRACE\",e[e.DEBUG=1]=\"DEBUG\",e[e.INFO=2]=\"INFO\",e[e.WARN=3]=\"WARN\",e[e.ERROR=4]=\"ERROR\",e[e.OFF=5]=\"OFF\"}(r||(t.LogLevelEnum=r={})),t.ILogService=(0,s.createDecorator)(\"LogService\"),t.IOptionsService=(0,s.createDecorator)(\"OptionsService\"),t.IOscLinkService=(0,s.createDecorator)(\"OscLinkService\"),t.IUnicodeService=(0,s.createDecorator)(\"UnicodeService\"),t.IDecorationService=(0,s.createDecorator)(\"DecorationService\")},1480:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.UnicodeService=void 0;const s=i(8460),r=i(225);class n{static extractShouldJoin(e){return 0!=(1&e)}static extractWidth(e){return e>>1&3}static extractCharKind(e){return e>>3}static createPropertyValue(e,t,i=!1){return(16777215&e)<<3|(3&t)<<1|(i?1:0)}constructor(){this._providers=Object.create(null),this._active=\"\",this._onChange=new s.EventEmitter,this.onChange=this._onChange.event;const e=new r.UnicodeV6;this.register(e),this._active=e.version,this._activeProvider=e}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(e){if(!this._providers[e])throw new Error(`unknown Unicode version \"${e}\"`);this._active=e,this._activeProvider=this._providers[e],this._onChange.fire(e)}register(e){this._providers[e.version]=e}wcwidth(e){return this._activeProvider.wcwidth(e)}getStringCellWidth(e){let t=0,i=0;const s=e.length;for(let r=0;r=s)return t+this.wcwidth(o);const i=e.charCodeAt(r);56320<=i&&i<=57343?o=1024*(o-55296)+i-56320+65536:t+=this.wcwidth(i)}const a=this.charProperties(o,i);let h=n.extractWidth(a);n.extractShouldJoin(a)&&(h-=n.extractWidth(i)),t+=h,i=a}return t}charProperties(e,t){return this._activeProvider.charProperties(e,t)}}t.UnicodeService=n}},t={};function i(s){var r=t[s];if(void 0!==r)return r.exports;var n=t[s]={exports:{}};return e[s].call(n.exports,n,n.exports,i),n.exports}var s={};return(()=>{var e=s;Object.defineProperty(e,\"__esModule\",{value:!0}),e.Terminal=void 0;const t=i(9042),r=i(3236),n=i(844),o=i(5741),a=i(8285),h=i(7975),c=i(7090),l=[\"cols\",\"rows\"];class d extends n.Disposable{constructor(e){super(),this._core=this.register(new r.Terminal(e)),this._addonManager=this.register(new o.AddonManager),this._publicOptions={...this._core.options};const t=e=>this._core.options[e],i=(e,t)=>{this._checkReadonlyOptions(e),this._core.options[e]=t};for(const e in this._core.options){const s={get:t.bind(this,e),set:i.bind(this,e)};Object.defineProperty(this._publicOptions,e,s)}}_checkReadonlyOptions(e){if(l.includes(e))throw new Error(`Option \"${e}\" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw new Error(\"You must set the allowProposedApi option to true to use proposed API\")}get onBell(){return this._core.onBell}get onBinary(){return this._core.onBinary}get onCursorMove(){return this._core.onCursorMove}get onData(){return this._core.onData}get onKey(){return this._core.onKey}get onLineFeed(){return this._core.onLineFeed}get onRender(){return this._core.onRender}get onResize(){return this._core.onResize}get onScroll(){return this._core.onScroll}get onSelectionChange(){return this._core.onSelectionChange}get onTitleChange(){return this._core.onTitleChange}get onWriteParsed(){return this._core.onWriteParsed}get element(){return this._core.element}get parser(){return this._parser||(this._parser=new h.ParserApi(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new c.UnicodeApi(this._core)}get textarea(){return this._core.textarea}get rows(){return this._core.rows}get cols(){return this._core.cols}get buffer(){return this._buffer||(this._buffer=this.register(new a.BufferNamespaceApi(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){const e=this._core.coreService.decPrivateModes;let t=\"none\";switch(this._core.coreMouseService.activeProtocol){case\"X10\":t=\"x10\";break;case\"VT200\":t=\"vt200\";break;case\"DRAG\":t=\"drag\";break;case\"ANY\":t=\"any\"}return{applicationCursorKeysMode:e.applicationCursorKeys,applicationKeypadMode:e.applicationKeypad,bracketedPasteMode:e.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:t,originMode:e.origin,reverseWraparoundMode:e.reverseWraparound,sendFocusMode:e.sendFocus,wraparoundMode:e.wraparound}}get options(){return this._publicOptions}set options(e){for(const t in e)this._publicOptions[t]=e[t]}blur(){this._core.blur()}focus(){this._core.focus()}input(e,t=!0){this._core.input(e,t)}resize(e,t){this._verifyIntegers(e,t),this._core.resize(e,t)}open(e){this._core.open(e)}attachCustomKeyEventHandler(e){this._core.attachCustomKeyEventHandler(e)}attachCustomWheelEventHandler(e){this._core.attachCustomWheelEventHandler(e)}registerLinkProvider(e){return this._core.registerLinkProvider(e)}registerCharacterJoiner(e){return this._checkProposedApi(),this._core.registerCharacterJoiner(e)}deregisterCharacterJoiner(e){this._checkProposedApi(),this._core.deregisterCharacterJoiner(e)}registerMarker(e=0){return this._verifyIntegers(e),this._core.registerMarker(e)}registerDecoration(e){return this._checkProposedApi(),this._verifyPositiveIntegers(e.x??0,e.width??0,e.height??0),this._core.registerDecoration(e)}hasSelection(){return this._core.hasSelection()}select(e,t,i){this._verifyIntegers(e,t,i),this._core.select(e,t,i)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(e,t){this._verifyIntegers(e,t),this._core.selectLines(e,t)}dispose(){super.dispose()}scrollLines(e){this._verifyIntegers(e),this._core.scrollLines(e)}scrollPages(e){this._verifyIntegers(e),this._core.scrollPages(e)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(e){this._verifyIntegers(e),this._core.scrollToLine(e)}clear(){this._core.clear()}write(e,t){this._core.write(e,t)}writeln(e,t){this._core.write(e),this._core.write(\"\\r\\n\",t)}paste(e){this._core.paste(e)}refresh(e,t){this._verifyIntegers(e,t),this._core.refresh(e,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(e){this._addonManager.loadAddon(this,e)}static get strings(){return t}_verifyIntegers(...e){for(const t of e)if(t===1/0||isNaN(t)||t%1!=0)throw new Error(\"This API only accepts integers\")}_verifyPositiveIntegers(...e){for(const t of e)if(t&&(t===1/0||isNaN(t)||t%1!=0||t<0))throw new Error(\"This API only accepts positive integers\")}}e.Terminal=d})(),s})()));\n//# sourceMappingURL=xterm.js.map","/*!\n * libapps (https://npmjs.com/package/libapps)\n * @license BSD-3-Clause\n * @version 1.70.0\n * ==libapps/LICENSE==\n * // Copyright (c) 2006-2009 The Chromium OS Authors. All rights reserved.\n * //\n * // Redistribution and use in source and binary forms, with or without\n * // modification, are permitted provided that the following conditions are\n * // met:\n * //\n * // * Redistributions of source code must retain the above copyright\n * // notice, this list of conditions and the following disclaimer.\n * // * Redistributions in binary form must reproduce the above\n * // copyright notice, this list of conditions and the following disclaimer\n * // in the documentation and/or other materials provided with the\n * // distribution.\n * // * Neither the name of Google Inc. nor the names of its\n * // contributors may be used to endorse or promote products derived from\n * // this software without specific prior written permission.\n * //\n * // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * // \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n// This file was generated by libdot/bin/concat.sh.\n// It has been marked read-only for your safety. Rather\n// than edit it directly, please modify one of these source\n// files...\n//\n// libdot/js/lib.js\n// libdot/js/lib_polyfill.js\n// libdot/js/lib_colors.js\n// libdot/js/lib_f.js\n// libdot/js/lib_message_manager.js\n// libdot/js/lib_preference_manager.js\n// libdot/js/lib_resource.js\n// libdot/js/lib_storage.js\n// libdot/js/lib_storage_chrome.js\n// libdot/js/lib_storage_local.js\n// libdot/js/lib_storage_memory.js\n// libdot/js/lib_test_manager.js\n// libdot/js/lib_utf8.js\n// libdot/third_party/wcwidth/lib_wc.js\n// hterm/js/hterm.js\n// hterm/js/hterm_frame.js\n// hterm/js/hterm_keyboard.js\n// hterm/js/hterm_keyboard_bindings.js\n// hterm/js/hterm_keyboard_keymap.js\n// hterm/js/hterm_keyboard_keypattern.js\n// hterm/js/hterm_options.js\n// hterm/js/hterm_parser.js\n// hterm/js/hterm_parser_identifiers.js\n// hterm/js/hterm_preference_manager.js\n// hterm/js/hterm_pubsub.js\n// hterm/js/hterm_screen.js\n// hterm/js/hterm_scrollport.js\n// hterm/js/hterm_terminal.js\n// hterm/js/hterm_terminal_io.js\n// hterm/js/hterm_text_attributes.js\n// hterm/js/hterm_vt.js\n// hterm/js/hterm_vt_character_map.js\n// hterm/js/hterm_export.js\n//\n\n// SOURCE FILE: libdot/js/lib.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nif (typeof lib != 'undefined')\n throw new Error('Global \"lib\" object already exists.');\n\nvar lib = {};\n\n/**\n * Map of \"dependency\" to [\"source\", ...].\n *\n * Each dependency is a object name, like \"lib.fs\", \"source\" is the url that\n * depends on the object.\n */\nlib.runtimeDependencies_ = {};\n\n/**\n * List of functions that need to be invoked during library initialization.\n *\n * Each element in the initCallbacks_ array is itself a two-element array.\n * Element 0 is a short string describing the owner of the init routine, useful\n * for debugging. Element 1 is the callback function.\n */\nlib.initCallbacks_ = [];\n\n/**\n * Records a runtime dependency.\n *\n * This can be useful when you want to express a run-time dependency at\n * compile time. It is not intended to be a full-fledged library system or\n * dependency tracker. It's just there to make it possible to debug the\n * deps without running all the code.\n *\n * Object names are specified as strings. For example...\n *\n * lib.rtdep('lib.colors', 'lib.PreferenceManager');\n *\n * Object names need not be rooted by 'lib'. You may use this to declare a\n * dependency on any object.\n *\n * The client program may call lib.ensureRuntimeDependencies() at startup in\n * order to ensure that all runtime dependencies have been met.\n *\n * @param {string} var_args One or more objects specified as strings.\n */\nlib.rtdep = function(var_args) {\n var source;\n\n try {\n throw new Error();\n } catch (ex) {\n var stackArray = ex.stack.split('\\n');\n // In Safari, the resulting stackArray will only have 2 elements and the\n // individual strings are formatted differently.\n if (stackArray.length >= 3) {\n source = stackArray[2].replace(/^\\s*at\\s+/, '');\n } else {\n source = stackArray[1].replace(/^\\s*global code@/, '');\n }\n }\n\n for (var i = 0; i < arguments.length; i++) {\n var path = arguments[i];\n if (path instanceof Array) {\n lib.rtdep.apply(lib, path);\n } else {\n var ary = this.runtimeDependencies_[path];\n if (!ary)\n ary = this.runtimeDependencies_[path] = [];\n ary.push(source);\n }\n }\n};\n\n/**\n * Ensures that all runtime dependencies are met, or an exception is thrown.\n *\n * Every unmet runtime dependency will be logged to the JS console. If at\n * least one dependency is unmet this will raise an exception.\n */\nlib.ensureRuntimeDependencies_ = function() {\n var passed = true;\n\n for (var path in lib.runtimeDependencies_) {\n var sourceList = lib.runtimeDependencies_[path];\n var names = path.split('.');\n\n // In a document context 'window' is the global object. In a worker it's\n // called 'self'.\n var obj = (window || self);\n for (var i = 0; i < names.length; i++) {\n if (!(names[i] in obj)) {\n console.warn('Missing \"' + path + '\" is needed by', sourceList);\n passed = false;\n break;\n }\n\n obj = obj[names[i]];\n }\n }\n\n if (!passed)\n throw new Error('Failed runtime dependency check');\n};\n\n/**\n * Register an initialization function.\n *\n * The initialization functions are invoked in registration order when\n * lib.init() is invoked. Each function will receive a single parameter, which\n * is a function to be invoked when it completes its part of the initialization.\n *\n * @param {string} name A short descriptive name of the init routine useful for\n * debugging.\n * @param {function(function)} callback The initialization function to register.\n * @return {function} The callback parameter.\n */\nlib.registerInit = function(name, callback) {\n lib.initCallbacks_.push([name, callback]);\n return callback;\n};\n\n/**\n * Initialize the library.\n *\n * This will ensure that all registered runtime dependencies are met, and\n * invoke any registered initialization functions.\n *\n * Initialization is asynchronous. The library is not ready for use until\n * the onInit function is invoked.\n *\n * @param {function()} onInit The function to invoke when initialization is\n * complete.\n * @param {function(*)} opt_logFunction An optional function to send\n * initialization related log messages to.\n */\nlib.init = function(onInit, opt_logFunction) {\n var ary = lib.initCallbacks_;\n\n var initNext = function() {\n if (ary.length) {\n var rec = ary.shift();\n if (opt_logFunction)\n opt_logFunction('init: ' + rec[0]);\n rec[1](lib.f.alarm(initNext));\n } else {\n onInit();\n }\n };\n\n if (typeof onInit != 'function')\n throw new Error('Missing or invalid argument: onInit');\n\n lib.ensureRuntimeDependencies_();\n\n setTimeout(initNext, 0);\n};\n// SOURCE FILE: libdot/js/lib_polyfill.js\n// Copyright 2017 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * @fileoverview Polyfills for ES2016+ features we want to use.\n */\n\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart\nif (!String.prototype.padStart) {\n String.prototype.padStart = function(targetLength, padString) {\n // If the string is already long enough, nothing to do!\n targetLength -= this.length;\n if (targetLength <= 0)\n return String(this);\n\n if (padString === undefined)\n padString = ' ';\n\n // In case the pad is multiple chars long.\n if (targetLength > padString.length)\n padString = padString.repeat((targetLength / padString.length) + 1);\n\n return padString.slice(0, targetLength) + String(this);\n };\n}\n\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd\nif (!String.prototype.padEnd) {\n String.prototype.padEnd = function(targetLength, padString) {\n // If the string is already long enough, nothing to do!\n targetLength -= this.length;\n if (targetLength <= 0)\n return String(this);\n\n if (padString === undefined)\n padString = ' ';\n\n // In case the pad is multiple chars long.\n if (targetLength > padString.length)\n padString = padString.repeat((targetLength / padString.length) + 1);\n\n return String(this) + padString.slice(0, targetLength);\n };\n}\n// SOURCE FILE: libdot/js/lib_colors.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Namespace for color utilities.\n */\nlib.colors = {};\n\n/**\n * First, some canned regular expressions we're going to use in this file.\n *\n *\n * BRACE YOURSELF\n *\n * ,~~~~.\n * |>_< ~~\n * 3`---'-/.\n * 3:::::\\v\\\n * =o=:::::\\,\\\n * | :::::\\,,\\\n *\n * THE REGULAR EXPRESSIONS\n * ARE COMING.\n *\n * There's no way to break long RE literals in JavaScript. Fix that why don't\n * you? Oh, and also there's no way to write a string that doesn't interpret\n * escapes.\n *\n * Instead, we stoop to this .replace() trick.\n */\nlib.colors.re_ = {\n // CSS hex color, #RGB.\n hex16: /#([a-f0-9])([a-f0-9])([a-f0-9])/i,\n\n // CSS hex color, #RRGGBB.\n hex24: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/i,\n\n // CSS rgb color, rgb(rrr,ggg,bbb).\n rgb: new RegExp(\n ('^/s*rgb/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,' +\n '/s*(/d{1,3})/s*/)/s*$'\n ).replace(/\\//g, '\\\\'), 'i'),\n\n // CSS rgb color, rgb(rrr,ggg,bbb,aaa).\n rgba: new RegExp(\n ('^/s*rgba/s*' +\n '/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*' +\n '(?:,/s*(/d+(?:/./d+)?)/s*)/)/s*$'\n ).replace(/\\//g, '\\\\'), 'i'),\n\n // Either RGB or RGBA.\n rgbx: new RegExp(\n ('^/s*rgba?/s*' +\n '/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*' +\n '(?:,/s*(/d+(?:/./d+)?)/s*)?/)/s*$'\n ).replace(/\\//g, '\\\\'), 'i'),\n\n // An X11 \"rgb:dddd/dddd/dddd\" value.\n x11rgb: /^\\s*rgb:([a-f0-9]{1,4})\\/([a-f0-9]{1,4})\\/([a-f0-9]{1,4})\\s*$/i,\n\n // English color name.\n name: /[a-z][a-z0-9\\s]+/,\n};\n\n/**\n * Convert a CSS rgb(ddd,ddd,ddd) color value into an X11 color value.\n *\n * Other CSS color values are ignored to ensure sanitary data handling.\n *\n * Each 'ddd' component is a one byte value specified in decimal.\n *\n * @param {string} value The CSS color value to convert.\n * @return {string} The X11 color value or null if the value could not be\n * converted.\n */\nlib.colors.rgbToX11 = function(value) {\n function scale(v) {\n v = (Math.min(v, 255) * 257).toString(16);\n return lib.f.zpad(v, 4);\n }\n\n var ary = value.match(lib.colors.re_.rgbx);\n if (!ary)\n return null;\n\n return 'rgb:' + scale(ary[1]) + '/' + scale(ary[2]) + '/' + scale(ary[3]);\n};\n\n/**\n * Convert a legacy X11 colover value into an CSS rgb(...) color value.\n *\n * They take the form:\n * 12 bit: #RGB -> #R000G000B000\n * 24 bit: #RRGGBB -> #RR00GG00BB00\n * 36 bit: #RRRGGGBBB -> #RRR0GGG0BBB0\n * 48 bit: #RRRRGGGGBBBB\n * These are the most significant bits.\n *\n * Truncate values back down to 24 bit since that's all CSS supports.\n */\nlib.colors.x11HexToCSS = function(v) {\n if (!v.startsWith('#'))\n return null;\n // Strip the leading # off.\n v = v.substr(1);\n\n // Reject unknown sizes.\n if ([3, 6, 9, 12].indexOf(v.length) == -1)\n return null;\n\n // Reject non-hex values.\n if (v.match(/[^a-f0-9]/i))\n return null;\n\n // Split the colors out.\n var size = v.length / 3;\n var r = v.substr(0, size);\n var g = v.substr(size, size);\n var b = v.substr(size + size, size);\n\n // Normalize to 16 bits.\n function norm16(v) {\n v = parseInt(v, 16);\n return size == 2 ? v : // 16 bit\n size == 1 ? v << 4 : // 8 bit\n v >> (4 * (size - 2)); // 24 or 32 bit\n }\n return lib.colors.arrayToRGBA([r, g, b].map(norm16));\n};\n\n/**\n * Convert an X11 color value into an CSS rgb(...) color value.\n *\n * The X11 value may be an X11 color name, or an RGB value of the form\n * rgb:hhhh/hhhh/hhhh. If a component value is less than 4 digits it is\n * padded out to 4, then scaled down to fit in a single byte.\n *\n * @param {string} value The X11 color value to convert.\n * @return {string} The CSS color value or null if the value could not be\n * converted.\n */\nlib.colors.x11ToCSS = function(v) {\n function scale(v) {\n // Pad out values with less than four digits. This padding (probably)\n // matches xterm. It's difficult to say for sure since xterm seems to\n // arrive at a padded value and then perform some combination of\n // gamma correction, color space transformation, and quantization.\n\n if (v.length == 1) {\n // Single digits pad out to four by repeating the character. \"f\" becomes\n // \"ffff\". Scaling down a hex value of this pattern by 257 is the same\n // as cutting off one byte. We skip the middle step and just double\n // the character.\n return parseInt(v + v, 16);\n }\n\n if (v.length == 2) {\n // Similar deal here. X11 pads two digit values by repeating the\n // byte (or scale up by 257). Since we're going to scale it back\n // down anyway, we can just return the original value.\n return parseInt(v, 16);\n }\n\n if (v.length == 3) {\n // Three digit values seem to be padded by repeating the final digit.\n // e.g. 10f becomes 10ff.\n v = v + v.substr(2);\n }\n\n // Scale down the 2 byte value.\n return Math.round(parseInt(v, 16) / 257);\n }\n\n var ary = v.match(lib.colors.re_.x11rgb);\n if (!ary) {\n // Handle the legacy format.\n if (v.startsWith('#'))\n return lib.colors.x11HexToCSS(v);\n else\n return lib.colors.nameToRGB(v);\n }\n\n ary.splice(0, 1);\n return lib.colors.arrayToRGBA(ary.map(scale));\n};\n\n/**\n * Converts one or more CSS '#RRGGBB' color values into their rgb(...)\n * form.\n *\n * Arrays are converted in place. If a value cannot be converted, it is\n * replaced with null.\n *\n * @param {string|Array.} A single RGB value or array of RGB values to\n * convert.\n * @return {string|Array.} The converted value or values.\n */\nlib.colors.hexToRGB = function(arg) {\n var hex16 = lib.colors.re_.hex16;\n var hex24 = lib.colors.re_.hex24;\n\n function convert(hex) {\n if (hex.length == 4) {\n hex = hex.replace(hex16, function(h, r, g, b) {\n return \"#\" + r + r + g + g + b + b;\n });\n }\n var ary = hex.match(hex24);\n if (!ary)\n return null;\n\n return 'rgb(' + parseInt(ary[1], 16) + ', ' +\n parseInt(ary[2], 16) + ', ' +\n parseInt(ary[3], 16) + ')';\n }\n\n if (arg instanceof Array) {\n for (var i = 0; i < arg.length; i++) {\n arg[i] = convert(arg[i]);\n }\n } else {\n arg = convert(arg);\n }\n\n return arg;\n};\n\n/**\n * Converts one or more CSS rgb(...) forms into their '#RRGGBB' color values.\n *\n * If given an rgba(...) form, the alpha field is thrown away.\n *\n * Arrays are converted in place. If a value cannot be converted, it is\n * replaced with null.\n *\n * @param {string|Array.} A single rgb(...) value or array of rgb(...)\n * values to convert.\n * @return {string|Array.} The converted value or values.\n */\nlib.colors.rgbToHex = function(arg) {\n function convert(rgb) {\n var ary = lib.colors.crackRGB(rgb);\n if (!ary)\n return null;\n return '#' + lib.f.zpad(((parseInt(ary[0]) << 16) |\n (parseInt(ary[1]) << 8) |\n (parseInt(ary[2]) << 0)).toString(16), 6);\n }\n\n if (arg instanceof Array) {\n for (var i = 0; i < arg.length; i++) {\n arg[i] = convert(arg[i]);\n }\n } else {\n arg = convert(arg);\n }\n\n return arg;\n};\n\n/**\n * Take any valid css color definition and turn it into an rgb or rgba value.\n *\n * Returns null if the value could not be normalized.\n */\nlib.colors.normalizeCSS = function(def) {\n if (def.startsWith('#'))\n return lib.colors.hexToRGB(def);\n\n if (lib.colors.re_.rgbx.test(def))\n return def;\n\n return lib.colors.nameToRGB(def);\n};\n\n/**\n * Convert a 3 or 4 element array into an rgba(...) string.\n */\nlib.colors.arrayToRGBA = function(ary) {\n var alpha = (ary.length > 3) ? ary[3] : 1;\n return 'rgba(' + ary[0] + ', ' + ary[1] + ', ' + ary[2] + ', ' + alpha + ')';\n};\n\n/**\n * Overwrite the alpha channel of an rgb/rgba color.\n */\nlib.colors.setAlpha = function(rgb, alpha) {\n var ary = lib.colors.crackRGB(rgb);\n ary[3] = alpha;\n return lib.colors.arrayToRGBA(ary);\n};\n\n/**\n * Mix a percentage of a tint color into a base color.\n */\nlib.colors.mix = function(base, tint, percent) {\n var ary1 = lib.colors.crackRGB(base);\n var ary2 = lib.colors.crackRGB(tint);\n\n for (var i = 0; i < 4; ++i) {\n var diff = ary2[i] - ary1[i];\n ary1[i] = Math.round(parseInt(ary1[i]) + diff * percent);\n }\n\n return lib.colors.arrayToRGBA(ary1);\n};\n\n/**\n * Split an rgb/rgba color into an array of its components.\n *\n * On success, a 4 element array will be returned. For rgb values, the alpha\n * will be set to 1.\n */\nlib.colors.crackRGB = function(color) {\n if (color.startsWith('rgba')) {\n var ary = color.match(lib.colors.re_.rgba);\n if (ary) {\n ary.shift();\n return ary;\n }\n } else {\n var ary = color.match(lib.colors.re_.rgb);\n if (ary) {\n ary.shift();\n ary.push(1);\n return ary;\n }\n }\n\n console.error('Couldn\\'t crack: ' + color);\n return null;\n};\n\n/**\n * Convert an X11 color name into a CSS rgb(...) value.\n *\n * Names are stripped of spaces and converted to lowercase. If the name is\n * unknown, null is returned.\n *\n * This list of color name to RGB mapping is derived from the stock X11\n * rgb.txt file.\n *\n * @param {string} name The color name to convert.\n * @return {string} The corresponding CSS rgb(...) value.\n */\nlib.colors.nameToRGB = function(name) {\n if (name in lib.colors.colorNames)\n return lib.colors.colorNames[name];\n\n name = name.toLowerCase();\n if (name in lib.colors.colorNames)\n return lib.colors.colorNames[name];\n\n name = name.replace(/\\s+/g, '');\n if (name in lib.colors.colorNames)\n return lib.colors.colorNames[name];\n\n return null;\n};\n\n/**\n * The stock color palette.\n */\nlib.colors.stockColorPalette = lib.colors.hexToRGB\n ([// The \"ANSI 16\"...\n '#000000', '#CC0000', '#4E9A06', '#C4A000',\n '#3465A4', '#75507B', '#06989A', '#D3D7CF',\n '#555753', '#EF2929', '#00BA13', '#FCE94F',\n '#729FCF', '#F200CB', '#00B5BD', '#EEEEEC',\n\n // The 6x6 color cubes...\n '#000000', '#00005F', '#000087', '#0000AF', '#0000D7', '#0000FF',\n '#005F00', '#005F5F', '#005F87', '#005FAF', '#005FD7', '#005FFF',\n '#008700', '#00875F', '#008787', '#0087AF', '#0087D7', '#0087FF',\n '#00AF00', '#00AF5F', '#00AF87', '#00AFAF', '#00AFD7', '#00AFFF',\n '#00D700', '#00D75F', '#00D787', '#00D7AF', '#00D7D7', '#00D7FF',\n '#00FF00', '#00FF5F', '#00FF87', '#00FFAF', '#00FFD7', '#00FFFF',\n\n '#5F0000', '#5F005F', '#5F0087', '#5F00AF', '#5F00D7', '#5F00FF',\n '#5F5F00', '#5F5F5F', '#5F5F87', '#5F5FAF', '#5F5FD7', '#5F5FFF',\n '#5F8700', '#5F875F', '#5F8787', '#5F87AF', '#5F87D7', '#5F87FF',\n '#5FAF00', '#5FAF5F', '#5FAF87', '#5FAFAF', '#5FAFD7', '#5FAFFF',\n '#5FD700', '#5FD75F', '#5FD787', '#5FD7AF', '#5FD7D7', '#5FD7FF',\n '#5FFF00', '#5FFF5F', '#5FFF87', '#5FFFAF', '#5FFFD7', '#5FFFFF',\n\n '#870000', '#87005F', '#870087', '#8700AF', '#8700D7', '#8700FF',\n '#875F00', '#875F5F', '#875F87', '#875FAF', '#875FD7', '#875FFF',\n '#878700', '#87875F', '#878787', '#8787AF', '#8787D7', '#8787FF',\n '#87AF00', '#87AF5F', '#87AF87', '#87AFAF', '#87AFD7', '#87AFFF',\n '#87D700', '#87D75F', '#87D787', '#87D7AF', '#87D7D7', '#87D7FF',\n '#87FF00', '#87FF5F', '#87FF87', '#87FFAF', '#87FFD7', '#87FFFF',\n\n '#AF0000', '#AF005F', '#AF0087', '#AF00AF', '#AF00D7', '#AF00FF',\n '#AF5F00', '#AF5F5F', '#AF5F87', '#AF5FAF', '#AF5FD7', '#AF5FFF',\n '#AF8700', '#AF875F', '#AF8787', '#AF87AF', '#AF87D7', '#AF87FF',\n '#AFAF00', '#AFAF5F', '#AFAF87', '#AFAFAF', '#AFAFD7', '#AFAFFF',\n '#AFD700', '#AFD75F', '#AFD787', '#AFD7AF', '#AFD7D7', '#AFD7FF',\n '#AFFF00', '#AFFF5F', '#AFFF87', '#AFFFAF', '#AFFFD7', '#AFFFFF',\n\n '#D70000', '#D7005F', '#D70087', '#D700AF', '#D700D7', '#D700FF',\n '#D75F00', '#D75F5F', '#D75F87', '#D75FAF', '#D75FD7', '#D75FFF',\n '#D78700', '#D7875F', '#D78787', '#D787AF', '#D787D7', '#D787FF',\n '#D7AF00', '#D7AF5F', '#D7AF87', '#D7AFAF', '#D7AFD7', '#D7AFFF',\n '#D7D700', '#D7D75F', '#D7D787', '#D7D7AF', '#D7D7D7', '#D7D7FF',\n '#D7FF00', '#D7FF5F', '#D7FF87', '#D7FFAF', '#D7FFD7', '#D7FFFF',\n\n '#FF0000', '#FF005F', '#FF0087', '#FF00AF', '#FF00D7', '#FF00FF',\n '#FF5F00', '#FF5F5F', '#FF5F87', '#FF5FAF', '#FF5FD7', '#FF5FFF',\n '#FF8700', '#FF875F', '#FF8787', '#FF87AF', '#FF87D7', '#FF87FF',\n '#FFAF00', '#FFAF5F', '#FFAF87', '#FFAFAF', '#FFAFD7', '#FFAFFF',\n '#FFD700', '#FFD75F', '#FFD787', '#FFD7AF', '#FFD7D7', '#FFD7FF',\n '#FFFF00', '#FFFF5F', '#FFFF87', '#FFFFAF', '#FFFFD7', '#FFFFFF',\n\n // The greyscale ramp...\n '#080808', '#121212', '#1C1C1C', '#262626', '#303030', '#3A3A3A',\n '#444444', '#4E4E4E', '#585858', '#626262', '#6C6C6C', '#767676',\n '#808080', '#8A8A8A', '#949494', '#9E9E9E', '#A8A8A8', '#B2B2B2',\n '#BCBCBC', '#C6C6C6', '#D0D0D0', '#DADADA', '#E4E4E4', '#EEEEEE'\n ]);\n\n/**\n * The current color palette, possibly with user changes.\n */\nlib.colors.colorPalette = lib.colors.stockColorPalette;\n\n/**\n * Named colors according to the stock X11 rgb.txt file.\n */\nlib.colors.colorNames = {\n \"aliceblue\": \"rgb(240, 248, 255)\",\n \"antiquewhite\": \"rgb(250, 235, 215)\",\n \"antiquewhite1\": \"rgb(255, 239, 219)\",\n \"antiquewhite2\": \"rgb(238, 223, 204)\",\n \"antiquewhite3\": \"rgb(205, 192, 176)\",\n \"antiquewhite4\": \"rgb(139, 131, 120)\",\n \"aquamarine\": \"rgb(127, 255, 212)\",\n \"aquamarine1\": \"rgb(127, 255, 212)\",\n \"aquamarine2\": \"rgb(118, 238, 198)\",\n \"aquamarine3\": \"rgb(102, 205, 170)\",\n \"aquamarine4\": \"rgb(69, 139, 116)\",\n \"azure\": \"rgb(240, 255, 255)\",\n \"azure1\": \"rgb(240, 255, 255)\",\n \"azure2\": \"rgb(224, 238, 238)\",\n \"azure3\": \"rgb(193, 205, 205)\",\n \"azure4\": \"rgb(131, 139, 139)\",\n \"beige\": \"rgb(245, 245, 220)\",\n \"bisque\": \"rgb(255, 228, 196)\",\n \"bisque1\": \"rgb(255, 228, 196)\",\n \"bisque2\": \"rgb(238, 213, 183)\",\n \"bisque3\": \"rgb(205, 183, 158)\",\n \"bisque4\": \"rgb(139, 125, 107)\",\n \"black\": \"rgb(0, 0, 0)\",\n \"blanchedalmond\": \"rgb(255, 235, 205)\",\n \"blue\": \"rgb(0, 0, 255)\",\n \"blue1\": \"rgb(0, 0, 255)\",\n \"blue2\": \"rgb(0, 0, 238)\",\n \"blue3\": \"rgb(0, 0, 205)\",\n \"blue4\": \"rgb(0, 0, 139)\",\n \"blueviolet\": \"rgb(138, 43, 226)\",\n \"brown\": \"rgb(165, 42, 42)\",\n \"brown1\": \"rgb(255, 64, 64)\",\n \"brown2\": \"rgb(238, 59, 59)\",\n \"brown3\": \"rgb(205, 51, 51)\",\n \"brown4\": \"rgb(139, 35, 35)\",\n \"burlywood\": \"rgb(222, 184, 135)\",\n \"burlywood1\": \"rgb(255, 211, 155)\",\n \"burlywood2\": \"rgb(238, 197, 145)\",\n \"burlywood3\": \"rgb(205, 170, 125)\",\n \"burlywood4\": \"rgb(139, 115, 85)\",\n \"cadetblue\": \"rgb(95, 158, 160)\",\n \"cadetblue1\": \"rgb(152, 245, 255)\",\n \"cadetblue2\": \"rgb(142, 229, 238)\",\n \"cadetblue3\": \"rgb(122, 197, 205)\",\n \"cadetblue4\": \"rgb(83, 134, 139)\",\n \"chartreuse\": \"rgb(127, 255, 0)\",\n \"chartreuse1\": \"rgb(127, 255, 0)\",\n \"chartreuse2\": \"rgb(118, 238, 0)\",\n \"chartreuse3\": \"rgb(102, 205, 0)\",\n \"chartreuse4\": \"rgb(69, 139, 0)\",\n \"chocolate\": \"rgb(210, 105, 30)\",\n \"chocolate1\": \"rgb(255, 127, 36)\",\n \"chocolate2\": \"rgb(238, 118, 33)\",\n \"chocolate3\": \"rgb(205, 102, 29)\",\n \"chocolate4\": \"rgb(139, 69, 19)\",\n \"coral\": \"rgb(255, 127, 80)\",\n \"coral1\": \"rgb(255, 114, 86)\",\n \"coral2\": \"rgb(238, 106, 80)\",\n \"coral3\": \"rgb(205, 91, 69)\",\n \"coral4\": \"rgb(139, 62, 47)\",\n \"cornflowerblue\": \"rgb(100, 149, 237)\",\n \"cornsilk\": \"rgb(255, 248, 220)\",\n \"cornsilk1\": \"rgb(255, 248, 220)\",\n \"cornsilk2\": \"rgb(238, 232, 205)\",\n \"cornsilk3\": \"rgb(205, 200, 177)\",\n \"cornsilk4\": \"rgb(139, 136, 120)\",\n \"cyan\": \"rgb(0, 255, 255)\",\n \"cyan1\": \"rgb(0, 255, 255)\",\n \"cyan2\": \"rgb(0, 238, 238)\",\n \"cyan3\": \"rgb(0, 205, 205)\",\n \"cyan4\": \"rgb(0, 139, 139)\",\n \"darkblue\": \"rgb(0, 0, 139)\",\n \"darkcyan\": \"rgb(0, 139, 139)\",\n \"darkgoldenrod\": \"rgb(184, 134, 11)\",\n \"darkgoldenrod1\": \"rgb(255, 185, 15)\",\n \"darkgoldenrod2\": \"rgb(238, 173, 14)\",\n \"darkgoldenrod3\": \"rgb(205, 149, 12)\",\n \"darkgoldenrod4\": \"rgb(139, 101, 8)\",\n \"darkgray\": \"rgb(169, 169, 169)\",\n \"darkgreen\": \"rgb(0, 100, 0)\",\n \"darkgrey\": \"rgb(169, 169, 169)\",\n \"darkkhaki\": \"rgb(189, 183, 107)\",\n \"darkmagenta\": \"rgb(139, 0, 139)\",\n \"darkolivegreen\": \"rgb(85, 107, 47)\",\n \"darkolivegreen1\": \"rgb(202, 255, 112)\",\n \"darkolivegreen2\": \"rgb(188, 238, 104)\",\n \"darkolivegreen3\": \"rgb(162, 205, 90)\",\n \"darkolivegreen4\": \"rgb(110, 139, 61)\",\n \"darkorange\": \"rgb(255, 140, 0)\",\n \"darkorange1\": \"rgb(255, 127, 0)\",\n \"darkorange2\": \"rgb(238, 118, 0)\",\n \"darkorange3\": \"rgb(205, 102, 0)\",\n \"darkorange4\": \"rgb(139, 69, 0)\",\n \"darkorchid\": \"rgb(153, 50, 204)\",\n \"darkorchid1\": \"rgb(191, 62, 255)\",\n \"darkorchid2\": \"rgb(178, 58, 238)\",\n \"darkorchid3\": \"rgb(154, 50, 205)\",\n \"darkorchid4\": \"rgb(104, 34, 139)\",\n \"darkred\": \"rgb(139, 0, 0)\",\n \"darksalmon\": \"rgb(233, 150, 122)\",\n \"darkseagreen\": \"rgb(143, 188, 143)\",\n \"darkseagreen1\": \"rgb(193, 255, 193)\",\n \"darkseagreen2\": \"rgb(180, 238, 180)\",\n \"darkseagreen3\": \"rgb(155, 205, 155)\",\n \"darkseagreen4\": \"rgb(105, 139, 105)\",\n \"darkslateblue\": \"rgb(72, 61, 139)\",\n \"darkslategray\": \"rgb(47, 79, 79)\",\n \"darkslategray1\": \"rgb(151, 255, 255)\",\n \"darkslategray2\": \"rgb(141, 238, 238)\",\n \"darkslategray3\": \"rgb(121, 205, 205)\",\n \"darkslategray4\": \"rgb(82, 139, 139)\",\n \"darkslategrey\": \"rgb(47, 79, 79)\",\n \"darkturquoise\": \"rgb(0, 206, 209)\",\n \"darkviolet\": \"rgb(148, 0, 211)\",\n \"debianred\": \"rgb(215, 7, 81)\",\n \"deeppink\": \"rgb(255, 20, 147)\",\n \"deeppink1\": \"rgb(255, 20, 147)\",\n \"deeppink2\": \"rgb(238, 18, 137)\",\n \"deeppink3\": \"rgb(205, 16, 118)\",\n \"deeppink4\": \"rgb(139, 10, 80)\",\n \"deepskyblue\": \"rgb(0, 191, 255)\",\n \"deepskyblue1\": \"rgb(0, 191, 255)\",\n \"deepskyblue2\": \"rgb(0, 178, 238)\",\n \"deepskyblue3\": \"rgb(0, 154, 205)\",\n \"deepskyblue4\": \"rgb(0, 104, 139)\",\n \"dimgray\": \"rgb(105, 105, 105)\",\n \"dimgrey\": \"rgb(105, 105, 105)\",\n \"dodgerblue\": \"rgb(30, 144, 255)\",\n \"dodgerblue1\": \"rgb(30, 144, 255)\",\n \"dodgerblue2\": \"rgb(28, 134, 238)\",\n \"dodgerblue3\": \"rgb(24, 116, 205)\",\n \"dodgerblue4\": \"rgb(16, 78, 139)\",\n \"firebrick\": \"rgb(178, 34, 34)\",\n \"firebrick1\": \"rgb(255, 48, 48)\",\n \"firebrick2\": \"rgb(238, 44, 44)\",\n \"firebrick3\": \"rgb(205, 38, 38)\",\n \"firebrick4\": \"rgb(139, 26, 26)\",\n \"floralwhite\": \"rgb(255, 250, 240)\",\n \"forestgreen\": \"rgb(34, 139, 34)\",\n \"gainsboro\": \"rgb(220, 220, 220)\",\n \"ghostwhite\": \"rgb(248, 248, 255)\",\n \"gold\": \"rgb(255, 215, 0)\",\n \"gold1\": \"rgb(255, 215, 0)\",\n \"gold2\": \"rgb(238, 201, 0)\",\n \"gold3\": \"rgb(205, 173, 0)\",\n \"gold4\": \"rgb(139, 117, 0)\",\n \"goldenrod\": \"rgb(218, 165, 32)\",\n \"goldenrod1\": \"rgb(255, 193, 37)\",\n \"goldenrod2\": \"rgb(238, 180, 34)\",\n \"goldenrod3\": \"rgb(205, 155, 29)\",\n \"goldenrod4\": \"rgb(139, 105, 20)\",\n \"gray\": \"rgb(190, 190, 190)\",\n \"gray0\": \"rgb(0, 0, 0)\",\n \"gray1\": \"rgb(3, 3, 3)\",\n \"gray10\": \"rgb(26, 26, 26)\",\n \"gray100\": \"rgb(255, 255, 255)\",\n \"gray11\": \"rgb(28, 28, 28)\",\n \"gray12\": \"rgb(31, 31, 31)\",\n \"gray13\": \"rgb(33, 33, 33)\",\n \"gray14\": \"rgb(36, 36, 36)\",\n \"gray15\": \"rgb(38, 38, 38)\",\n \"gray16\": \"rgb(41, 41, 41)\",\n \"gray17\": \"rgb(43, 43, 43)\",\n \"gray18\": \"rgb(46, 46, 46)\",\n \"gray19\": \"rgb(48, 48, 48)\",\n \"gray2\": \"rgb(5, 5, 5)\",\n \"gray20\": \"rgb(51, 51, 51)\",\n \"gray21\": \"rgb(54, 54, 54)\",\n \"gray22\": \"rgb(56, 56, 56)\",\n \"gray23\": \"rgb(59, 59, 59)\",\n \"gray24\": \"rgb(61, 61, 61)\",\n \"gray25\": \"rgb(64, 64, 64)\",\n \"gray26\": \"rgb(66, 66, 66)\",\n \"gray27\": \"rgb(69, 69, 69)\",\n \"gray28\": \"rgb(71, 71, 71)\",\n \"gray29\": \"rgb(74, 74, 74)\",\n \"gray3\": \"rgb(8, 8, 8)\",\n \"gray30\": \"rgb(77, 77, 77)\",\n \"gray31\": \"rgb(79, 79, 79)\",\n \"gray32\": \"rgb(82, 82, 82)\",\n \"gray33\": \"rgb(84, 84, 84)\",\n \"gray34\": \"rgb(87, 87, 87)\",\n \"gray35\": \"rgb(89, 89, 89)\",\n \"gray36\": \"rgb(92, 92, 92)\",\n \"gray37\": \"rgb(94, 94, 94)\",\n \"gray38\": \"rgb(97, 97, 97)\",\n \"gray39\": \"rgb(99, 99, 99)\",\n \"gray4\": \"rgb(10, 10, 10)\",\n \"gray40\": \"rgb(102, 102, 102)\",\n \"gray41\": \"rgb(105, 105, 105)\",\n \"gray42\": \"rgb(107, 107, 107)\",\n \"gray43\": \"rgb(110, 110, 110)\",\n \"gray44\": \"rgb(112, 112, 112)\",\n \"gray45\": \"rgb(115, 115, 115)\",\n \"gray46\": \"rgb(117, 117, 117)\",\n \"gray47\": \"rgb(120, 120, 120)\",\n \"gray48\": \"rgb(122, 122, 122)\",\n \"gray49\": \"rgb(125, 125, 125)\",\n \"gray5\": \"rgb(13, 13, 13)\",\n \"gray50\": \"rgb(127, 127, 127)\",\n \"gray51\": \"rgb(130, 130, 130)\",\n \"gray52\": \"rgb(133, 133, 133)\",\n \"gray53\": \"rgb(135, 135, 135)\",\n \"gray54\": \"rgb(138, 138, 138)\",\n \"gray55\": \"rgb(140, 140, 140)\",\n \"gray56\": \"rgb(143, 143, 143)\",\n \"gray57\": \"rgb(145, 145, 145)\",\n \"gray58\": \"rgb(148, 148, 148)\",\n \"gray59\": \"rgb(150, 150, 150)\",\n \"gray6\": \"rgb(15, 15, 15)\",\n \"gray60\": \"rgb(153, 153, 153)\",\n \"gray61\": \"rgb(156, 156, 156)\",\n \"gray62\": \"rgb(158, 158, 158)\",\n \"gray63\": \"rgb(161, 161, 161)\",\n \"gray64\": \"rgb(163, 163, 163)\",\n \"gray65\": \"rgb(166, 166, 166)\",\n \"gray66\": \"rgb(168, 168, 168)\",\n \"gray67\": \"rgb(171, 171, 171)\",\n \"gray68\": \"rgb(173, 173, 173)\",\n \"gray69\": \"rgb(176, 176, 176)\",\n \"gray7\": \"rgb(18, 18, 18)\",\n \"gray70\": \"rgb(179, 179, 179)\",\n \"gray71\": \"rgb(181, 181, 181)\",\n \"gray72\": \"rgb(184, 184, 184)\",\n \"gray73\": \"rgb(186, 186, 186)\",\n \"gray74\": \"rgb(189, 189, 189)\",\n \"gray75\": \"rgb(191, 191, 191)\",\n \"gray76\": \"rgb(194, 194, 194)\",\n \"gray77\": \"rgb(196, 196, 196)\",\n \"gray78\": \"rgb(199, 199, 199)\",\n \"gray79\": \"rgb(201, 201, 201)\",\n \"gray8\": \"rgb(20, 20, 20)\",\n \"gray80\": \"rgb(204, 204, 204)\",\n \"gray81\": \"rgb(207, 207, 207)\",\n \"gray82\": \"rgb(209, 209, 209)\",\n \"gray83\": \"rgb(212, 212, 212)\",\n \"gray84\": \"rgb(214, 214, 214)\",\n \"gray85\": \"rgb(217, 217, 217)\",\n \"gray86\": \"rgb(219, 219, 219)\",\n \"gray87\": \"rgb(222, 222, 222)\",\n \"gray88\": \"rgb(224, 224, 224)\",\n \"gray89\": \"rgb(227, 227, 227)\",\n \"gray9\": \"rgb(23, 23, 23)\",\n \"gray90\": \"rgb(229, 229, 229)\",\n \"gray91\": \"rgb(232, 232, 232)\",\n \"gray92\": \"rgb(235, 235, 235)\",\n \"gray93\": \"rgb(237, 237, 237)\",\n \"gray94\": \"rgb(240, 240, 240)\",\n \"gray95\": \"rgb(242, 242, 242)\",\n \"gray96\": \"rgb(245, 245, 245)\",\n \"gray97\": \"rgb(247, 247, 247)\",\n \"gray98\": \"rgb(250, 250, 250)\",\n \"gray99\": \"rgb(252, 252, 252)\",\n \"green\": \"rgb(0, 255, 0)\",\n \"green1\": \"rgb(0, 255, 0)\",\n \"green2\": \"rgb(0, 238, 0)\",\n \"green3\": \"rgb(0, 205, 0)\",\n \"green4\": \"rgb(0, 139, 0)\",\n \"greenyellow\": \"rgb(173, 255, 47)\",\n \"grey\": \"rgb(190, 190, 190)\",\n \"grey0\": \"rgb(0, 0, 0)\",\n \"grey1\": \"rgb(3, 3, 3)\",\n \"grey10\": \"rgb(26, 26, 26)\",\n \"grey100\": \"rgb(255, 255, 255)\",\n \"grey11\": \"rgb(28, 28, 28)\",\n \"grey12\": \"rgb(31, 31, 31)\",\n \"grey13\": \"rgb(33, 33, 33)\",\n \"grey14\": \"rgb(36, 36, 36)\",\n \"grey15\": \"rgb(38, 38, 38)\",\n \"grey16\": \"rgb(41, 41, 41)\",\n \"grey17\": \"rgb(43, 43, 43)\",\n \"grey18\": \"rgb(46, 46, 46)\",\n \"grey19\": \"rgb(48, 48, 48)\",\n \"grey2\": \"rgb(5, 5, 5)\",\n \"grey20\": \"rgb(51, 51, 51)\",\n \"grey21\": \"rgb(54, 54, 54)\",\n \"grey22\": \"rgb(56, 56, 56)\",\n \"grey23\": \"rgb(59, 59, 59)\",\n \"grey24\": \"rgb(61, 61, 61)\",\n \"grey25\": \"rgb(64, 64, 64)\",\n \"grey26\": \"rgb(66, 66, 66)\",\n \"grey27\": \"rgb(69, 69, 69)\",\n \"grey28\": \"rgb(71, 71, 71)\",\n \"grey29\": \"rgb(74, 74, 74)\",\n \"grey3\": \"rgb(8, 8, 8)\",\n \"grey30\": \"rgb(77, 77, 77)\",\n \"grey31\": \"rgb(79, 79, 79)\",\n \"grey32\": \"rgb(82, 82, 82)\",\n \"grey33\": \"rgb(84, 84, 84)\",\n \"grey34\": \"rgb(87, 87, 87)\",\n \"grey35\": \"rgb(89, 89, 89)\",\n \"grey36\": \"rgb(92, 92, 92)\",\n \"grey37\": \"rgb(94, 94, 94)\",\n \"grey38\": \"rgb(97, 97, 97)\",\n \"grey39\": \"rgb(99, 99, 99)\",\n \"grey4\": \"rgb(10, 10, 10)\",\n \"grey40\": \"rgb(102, 102, 102)\",\n \"grey41\": \"rgb(105, 105, 105)\",\n \"grey42\": \"rgb(107, 107, 107)\",\n \"grey43\": \"rgb(110, 110, 110)\",\n \"grey44\": \"rgb(112, 112, 112)\",\n \"grey45\": \"rgb(115, 115, 115)\",\n \"grey46\": \"rgb(117, 117, 117)\",\n \"grey47\": \"rgb(120, 120, 120)\",\n \"grey48\": \"rgb(122, 122, 122)\",\n \"grey49\": \"rgb(125, 125, 125)\",\n \"grey5\": \"rgb(13, 13, 13)\",\n \"grey50\": \"rgb(127, 127, 127)\",\n \"grey51\": \"rgb(130, 130, 130)\",\n \"grey52\": \"rgb(133, 133, 133)\",\n \"grey53\": \"rgb(135, 135, 135)\",\n \"grey54\": \"rgb(138, 138, 138)\",\n \"grey55\": \"rgb(140, 140, 140)\",\n \"grey56\": \"rgb(143, 143, 143)\",\n \"grey57\": \"rgb(145, 145, 145)\",\n \"grey58\": \"rgb(148, 148, 148)\",\n \"grey59\": \"rgb(150, 150, 150)\",\n \"grey6\": \"rgb(15, 15, 15)\",\n \"grey60\": \"rgb(153, 153, 153)\",\n \"grey61\": \"rgb(156, 156, 156)\",\n \"grey62\": \"rgb(158, 158, 158)\",\n \"grey63\": \"rgb(161, 161, 161)\",\n \"grey64\": \"rgb(163, 163, 163)\",\n \"grey65\": \"rgb(166, 166, 166)\",\n \"grey66\": \"rgb(168, 168, 168)\",\n \"grey67\": \"rgb(171, 171, 171)\",\n \"grey68\": \"rgb(173, 173, 173)\",\n \"grey69\": \"rgb(176, 176, 176)\",\n \"grey7\": \"rgb(18, 18, 18)\",\n \"grey70\": \"rgb(179, 179, 179)\",\n \"grey71\": \"rgb(181, 181, 181)\",\n \"grey72\": \"rgb(184, 184, 184)\",\n \"grey73\": \"rgb(186, 186, 186)\",\n \"grey74\": \"rgb(189, 189, 189)\",\n \"grey75\": \"rgb(191, 191, 191)\",\n \"grey76\": \"rgb(194, 194, 194)\",\n \"grey77\": \"rgb(196, 196, 196)\",\n \"grey78\": \"rgb(199, 199, 199)\",\n \"grey79\": \"rgb(201, 201, 201)\",\n \"grey8\": \"rgb(20, 20, 20)\",\n \"grey80\": \"rgb(204, 204, 204)\",\n \"grey81\": \"rgb(207, 207, 207)\",\n \"grey82\": \"rgb(209, 209, 209)\",\n \"grey83\": \"rgb(212, 212, 212)\",\n \"grey84\": \"rgb(214, 214, 214)\",\n \"grey85\": \"rgb(217, 217, 217)\",\n \"grey86\": \"rgb(219, 219, 219)\",\n \"grey87\": \"rgb(222, 222, 222)\",\n \"grey88\": \"rgb(224, 224, 224)\",\n \"grey89\": \"rgb(227, 227, 227)\",\n \"grey9\": \"rgb(23, 23, 23)\",\n \"grey90\": \"rgb(229, 229, 229)\",\n \"grey91\": \"rgb(232, 232, 232)\",\n \"grey92\": \"rgb(235, 235, 235)\",\n \"grey93\": \"rgb(237, 237, 237)\",\n \"grey94\": \"rgb(240, 240, 240)\",\n \"grey95\": \"rgb(242, 242, 242)\",\n \"grey96\": \"rgb(245, 245, 245)\",\n \"grey97\": \"rgb(247, 247, 247)\",\n \"grey98\": \"rgb(250, 250, 250)\",\n \"grey99\": \"rgb(252, 252, 252)\",\n \"honeydew\": \"rgb(240, 255, 240)\",\n \"honeydew1\": \"rgb(240, 255, 240)\",\n \"honeydew2\": \"rgb(224, 238, 224)\",\n \"honeydew3\": \"rgb(193, 205, 193)\",\n \"honeydew4\": \"rgb(131, 139, 131)\",\n \"hotpink\": \"rgb(255, 105, 180)\",\n \"hotpink1\": \"rgb(255, 110, 180)\",\n \"hotpink2\": \"rgb(238, 106, 167)\",\n \"hotpink3\": \"rgb(205, 96, 144)\",\n \"hotpink4\": \"rgb(139, 58, 98)\",\n \"indianred\": \"rgb(205, 92, 92)\",\n \"indianred1\": \"rgb(255, 106, 106)\",\n \"indianred2\": \"rgb(238, 99, 99)\",\n \"indianred3\": \"rgb(205, 85, 85)\",\n \"indianred4\": \"rgb(139, 58, 58)\",\n \"ivory\": \"rgb(255, 255, 240)\",\n \"ivory1\": \"rgb(255, 255, 240)\",\n \"ivory2\": \"rgb(238, 238, 224)\",\n \"ivory3\": \"rgb(205, 205, 193)\",\n \"ivory4\": \"rgb(139, 139, 131)\",\n \"khaki\": \"rgb(240, 230, 140)\",\n \"khaki1\": \"rgb(255, 246, 143)\",\n \"khaki2\": \"rgb(238, 230, 133)\",\n \"khaki3\": \"rgb(205, 198, 115)\",\n \"khaki4\": \"rgb(139, 134, 78)\",\n \"lavender\": \"rgb(230, 230, 250)\",\n \"lavenderblush\": \"rgb(255, 240, 245)\",\n \"lavenderblush1\": \"rgb(255, 240, 245)\",\n \"lavenderblush2\": \"rgb(238, 224, 229)\",\n \"lavenderblush3\": \"rgb(205, 193, 197)\",\n \"lavenderblush4\": \"rgb(139, 131, 134)\",\n \"lawngreen\": \"rgb(124, 252, 0)\",\n \"lemonchiffon\": \"rgb(255, 250, 205)\",\n \"lemonchiffon1\": \"rgb(255, 250, 205)\",\n \"lemonchiffon2\": \"rgb(238, 233, 191)\",\n \"lemonchiffon3\": \"rgb(205, 201, 165)\",\n \"lemonchiffon4\": \"rgb(139, 137, 112)\",\n \"lightblue\": \"rgb(173, 216, 230)\",\n \"lightblue1\": \"rgb(191, 239, 255)\",\n \"lightblue2\": \"rgb(178, 223, 238)\",\n \"lightblue3\": \"rgb(154, 192, 205)\",\n \"lightblue4\": \"rgb(104, 131, 139)\",\n \"lightcoral\": \"rgb(240, 128, 128)\",\n \"lightcyan\": \"rgb(224, 255, 255)\",\n \"lightcyan1\": \"rgb(224, 255, 255)\",\n \"lightcyan2\": \"rgb(209, 238, 238)\",\n \"lightcyan3\": \"rgb(180, 205, 205)\",\n \"lightcyan4\": \"rgb(122, 139, 139)\",\n \"lightgoldenrod\": \"rgb(238, 221, 130)\",\n \"lightgoldenrod1\": \"rgb(255, 236, 139)\",\n \"lightgoldenrod2\": \"rgb(238, 220, 130)\",\n \"lightgoldenrod3\": \"rgb(205, 190, 112)\",\n \"lightgoldenrod4\": \"rgb(139, 129, 76)\",\n \"lightgoldenrodyellow\": \"rgb(250, 250, 210)\",\n \"lightgray\": \"rgb(211, 211, 211)\",\n \"lightgreen\": \"rgb(144, 238, 144)\",\n \"lightgrey\": \"rgb(211, 211, 211)\",\n \"lightpink\": \"rgb(255, 182, 193)\",\n \"lightpink1\": \"rgb(255, 174, 185)\",\n \"lightpink2\": \"rgb(238, 162, 173)\",\n \"lightpink3\": \"rgb(205, 140, 149)\",\n \"lightpink4\": \"rgb(139, 95, 101)\",\n \"lightsalmon\": \"rgb(255, 160, 122)\",\n \"lightsalmon1\": \"rgb(255, 160, 122)\",\n \"lightsalmon2\": \"rgb(238, 149, 114)\",\n \"lightsalmon3\": \"rgb(205, 129, 98)\",\n \"lightsalmon4\": \"rgb(139, 87, 66)\",\n \"lightseagreen\": \"rgb(32, 178, 170)\",\n \"lightskyblue\": \"rgb(135, 206, 250)\",\n \"lightskyblue1\": \"rgb(176, 226, 255)\",\n \"lightskyblue2\": \"rgb(164, 211, 238)\",\n \"lightskyblue3\": \"rgb(141, 182, 205)\",\n \"lightskyblue4\": \"rgb(96, 123, 139)\",\n \"lightslateblue\": \"rgb(132, 112, 255)\",\n \"lightslategray\": \"rgb(119, 136, 153)\",\n \"lightslategrey\": \"rgb(119, 136, 153)\",\n \"lightsteelblue\": \"rgb(176, 196, 222)\",\n \"lightsteelblue1\": \"rgb(202, 225, 255)\",\n \"lightsteelblue2\": \"rgb(188, 210, 238)\",\n \"lightsteelblue3\": \"rgb(162, 181, 205)\",\n \"lightsteelblue4\": \"rgb(110, 123, 139)\",\n \"lightyellow\": \"rgb(255, 255, 224)\",\n \"lightyellow1\": \"rgb(255, 255, 224)\",\n \"lightyellow2\": \"rgb(238, 238, 209)\",\n \"lightyellow3\": \"rgb(205, 205, 180)\",\n \"lightyellow4\": \"rgb(139, 139, 122)\",\n \"limegreen\": \"rgb(50, 205, 50)\",\n \"linen\": \"rgb(250, 240, 230)\",\n \"magenta\": \"rgb(255, 0, 255)\",\n \"magenta1\": \"rgb(255, 0, 255)\",\n \"magenta2\": \"rgb(238, 0, 238)\",\n \"magenta3\": \"rgb(205, 0, 205)\",\n \"magenta4\": \"rgb(139, 0, 139)\",\n \"maroon\": \"rgb(176, 48, 96)\",\n \"maroon1\": \"rgb(255, 52, 179)\",\n \"maroon2\": \"rgb(238, 48, 167)\",\n \"maroon3\": \"rgb(205, 41, 144)\",\n \"maroon4\": \"rgb(139, 28, 98)\",\n \"mediumaquamarine\": \"rgb(102, 205, 170)\",\n \"mediumblue\": \"rgb(0, 0, 205)\",\n \"mediumorchid\": \"rgb(186, 85, 211)\",\n \"mediumorchid1\": \"rgb(224, 102, 255)\",\n \"mediumorchid2\": \"rgb(209, 95, 238)\",\n \"mediumorchid3\": \"rgb(180, 82, 205)\",\n \"mediumorchid4\": \"rgb(122, 55, 139)\",\n \"mediumpurple\": \"rgb(147, 112, 219)\",\n \"mediumpurple1\": \"rgb(171, 130, 255)\",\n \"mediumpurple2\": \"rgb(159, 121, 238)\",\n \"mediumpurple3\": \"rgb(137, 104, 205)\",\n \"mediumpurple4\": \"rgb(93, 71, 139)\",\n \"mediumseagreen\": \"rgb(60, 179, 113)\",\n \"mediumslateblue\": \"rgb(123, 104, 238)\",\n \"mediumspringgreen\": \"rgb(0, 250, 154)\",\n \"mediumturquoise\": \"rgb(72, 209, 204)\",\n \"mediumvioletred\": \"rgb(199, 21, 133)\",\n \"midnightblue\": \"rgb(25, 25, 112)\",\n \"mintcream\": \"rgb(245, 255, 250)\",\n \"mistyrose\": \"rgb(255, 228, 225)\",\n \"mistyrose1\": \"rgb(255, 228, 225)\",\n \"mistyrose2\": \"rgb(238, 213, 210)\",\n \"mistyrose3\": \"rgb(205, 183, 181)\",\n \"mistyrose4\": \"rgb(139, 125, 123)\",\n \"moccasin\": \"rgb(255, 228, 181)\",\n \"navajowhite\": \"rgb(255, 222, 173)\",\n \"navajowhite1\": \"rgb(255, 222, 173)\",\n \"navajowhite2\": \"rgb(238, 207, 161)\",\n \"navajowhite3\": \"rgb(205, 179, 139)\",\n \"navajowhite4\": \"rgb(139, 121, 94)\",\n \"navy\": \"rgb(0, 0, 128)\",\n \"navyblue\": \"rgb(0, 0, 128)\",\n \"oldlace\": \"rgb(253, 245, 230)\",\n \"olivedrab\": \"rgb(107, 142, 35)\",\n \"olivedrab1\": \"rgb(192, 255, 62)\",\n \"olivedrab2\": \"rgb(179, 238, 58)\",\n \"olivedrab3\": \"rgb(154, 205, 50)\",\n \"olivedrab4\": \"rgb(105, 139, 34)\",\n \"orange\": \"rgb(255, 165, 0)\",\n \"orange1\": \"rgb(255, 165, 0)\",\n \"orange2\": \"rgb(238, 154, 0)\",\n \"orange3\": \"rgb(205, 133, 0)\",\n \"orange4\": \"rgb(139, 90, 0)\",\n \"orangered\": \"rgb(255, 69, 0)\",\n \"orangered1\": \"rgb(255, 69, 0)\",\n \"orangered2\": \"rgb(238, 64, 0)\",\n \"orangered3\": \"rgb(205, 55, 0)\",\n \"orangered4\": \"rgb(139, 37, 0)\",\n \"orchid\": \"rgb(218, 112, 214)\",\n \"orchid1\": \"rgb(255, 131, 250)\",\n \"orchid2\": \"rgb(238, 122, 233)\",\n \"orchid3\": \"rgb(205, 105, 201)\",\n \"orchid4\": \"rgb(139, 71, 137)\",\n \"palegoldenrod\": \"rgb(238, 232, 170)\",\n \"palegreen\": \"rgb(152, 251, 152)\",\n \"palegreen1\": \"rgb(154, 255, 154)\",\n \"palegreen2\": \"rgb(144, 238, 144)\",\n \"palegreen3\": \"rgb(124, 205, 124)\",\n \"palegreen4\": \"rgb(84, 139, 84)\",\n \"paleturquoise\": \"rgb(175, 238, 238)\",\n \"paleturquoise1\": \"rgb(187, 255, 255)\",\n \"paleturquoise2\": \"rgb(174, 238, 238)\",\n \"paleturquoise3\": \"rgb(150, 205, 205)\",\n \"paleturquoise4\": \"rgb(102, 139, 139)\",\n \"palevioletred\": \"rgb(219, 112, 147)\",\n \"palevioletred1\": \"rgb(255, 130, 171)\",\n \"palevioletred2\": \"rgb(238, 121, 159)\",\n \"palevioletred3\": \"rgb(205, 104, 137)\",\n \"palevioletred4\": \"rgb(139, 71, 93)\",\n \"papayawhip\": \"rgb(255, 239, 213)\",\n \"peachpuff\": \"rgb(255, 218, 185)\",\n \"peachpuff1\": \"rgb(255, 218, 185)\",\n \"peachpuff2\": \"rgb(238, 203, 173)\",\n \"peachpuff3\": \"rgb(205, 175, 149)\",\n \"peachpuff4\": \"rgb(139, 119, 101)\",\n \"peru\": \"rgb(205, 133, 63)\",\n \"pink\": \"rgb(255, 192, 203)\",\n \"pink1\": \"rgb(255, 181, 197)\",\n \"pink2\": \"rgb(238, 169, 184)\",\n \"pink3\": \"rgb(205, 145, 158)\",\n \"pink4\": \"rgb(139, 99, 108)\",\n \"plum\": \"rgb(221, 160, 221)\",\n \"plum1\": \"rgb(255, 187, 255)\",\n \"plum2\": \"rgb(238, 174, 238)\",\n \"plum3\": \"rgb(205, 150, 205)\",\n \"plum4\": \"rgb(139, 102, 139)\",\n \"powderblue\": \"rgb(176, 224, 230)\",\n \"purple\": \"rgb(160, 32, 240)\",\n \"purple1\": \"rgb(155, 48, 255)\",\n \"purple2\": \"rgb(145, 44, 238)\",\n \"purple3\": \"rgb(125, 38, 205)\",\n \"purple4\": \"rgb(85, 26, 139)\",\n \"red\": \"rgb(255, 0, 0)\",\n \"red1\": \"rgb(255, 0, 0)\",\n \"red2\": \"rgb(238, 0, 0)\",\n \"red3\": \"rgb(205, 0, 0)\",\n \"red4\": \"rgb(139, 0, 0)\",\n \"rosybrown\": \"rgb(188, 143, 143)\",\n \"rosybrown1\": \"rgb(255, 193, 193)\",\n \"rosybrown2\": \"rgb(238, 180, 180)\",\n \"rosybrown3\": \"rgb(205, 155, 155)\",\n \"rosybrown4\": \"rgb(139, 105, 105)\",\n \"royalblue\": \"rgb(65, 105, 225)\",\n \"royalblue1\": \"rgb(72, 118, 255)\",\n \"royalblue2\": \"rgb(67, 110, 238)\",\n \"royalblue3\": \"rgb(58, 95, 205)\",\n \"royalblue4\": \"rgb(39, 64, 139)\",\n \"saddlebrown\": \"rgb(139, 69, 19)\",\n \"salmon\": \"rgb(250, 128, 114)\",\n \"salmon1\": \"rgb(255, 140, 105)\",\n \"salmon2\": \"rgb(238, 130, 98)\",\n \"salmon3\": \"rgb(205, 112, 84)\",\n \"salmon4\": \"rgb(139, 76, 57)\",\n \"sandybrown\": \"rgb(244, 164, 96)\",\n \"seagreen\": \"rgb(46, 139, 87)\",\n \"seagreen1\": \"rgb(84, 255, 159)\",\n \"seagreen2\": \"rgb(78, 238, 148)\",\n \"seagreen3\": \"rgb(67, 205, 128)\",\n \"seagreen4\": \"rgb(46, 139, 87)\",\n \"seashell\": \"rgb(255, 245, 238)\",\n \"seashell1\": \"rgb(255, 245, 238)\",\n \"seashell2\": \"rgb(238, 229, 222)\",\n \"seashell3\": \"rgb(205, 197, 191)\",\n \"seashell4\": \"rgb(139, 134, 130)\",\n \"sienna\": \"rgb(160, 82, 45)\",\n \"sienna1\": \"rgb(255, 130, 71)\",\n \"sienna2\": \"rgb(238, 121, 66)\",\n \"sienna3\": \"rgb(205, 104, 57)\",\n \"sienna4\": \"rgb(139, 71, 38)\",\n \"skyblue\": \"rgb(135, 206, 235)\",\n \"skyblue1\": \"rgb(135, 206, 255)\",\n \"skyblue2\": \"rgb(126, 192, 238)\",\n \"skyblue3\": \"rgb(108, 166, 205)\",\n \"skyblue4\": \"rgb(74, 112, 139)\",\n \"slateblue\": \"rgb(106, 90, 205)\",\n \"slateblue1\": \"rgb(131, 111, 255)\",\n \"slateblue2\": \"rgb(122, 103, 238)\",\n \"slateblue3\": \"rgb(105, 89, 205)\",\n \"slateblue4\": \"rgb(71, 60, 139)\",\n \"slategray\": \"rgb(112, 128, 144)\",\n \"slategray1\": \"rgb(198, 226, 255)\",\n \"slategray2\": \"rgb(185, 211, 238)\",\n \"slategray3\": \"rgb(159, 182, 205)\",\n \"slategray4\": \"rgb(108, 123, 139)\",\n \"slategrey\": \"rgb(112, 128, 144)\",\n \"snow\": \"rgb(255, 250, 250)\",\n \"snow1\": \"rgb(255, 250, 250)\",\n \"snow2\": \"rgb(238, 233, 233)\",\n \"snow3\": \"rgb(205, 201, 201)\",\n \"snow4\": \"rgb(139, 137, 137)\",\n \"springgreen\": \"rgb(0, 255, 127)\",\n \"springgreen1\": \"rgb(0, 255, 127)\",\n \"springgreen2\": \"rgb(0, 238, 118)\",\n \"springgreen3\": \"rgb(0, 205, 102)\",\n \"springgreen4\": \"rgb(0, 139, 69)\",\n \"steelblue\": \"rgb(70, 130, 180)\",\n \"steelblue1\": \"rgb(99, 184, 255)\",\n \"steelblue2\": \"rgb(92, 172, 238)\",\n \"steelblue3\": \"rgb(79, 148, 205)\",\n \"steelblue4\": \"rgb(54, 100, 139)\",\n \"tan\": \"rgb(210, 180, 140)\",\n \"tan1\": \"rgb(255, 165, 79)\",\n \"tan2\": \"rgb(238, 154, 73)\",\n \"tan3\": \"rgb(205, 133, 63)\",\n \"tan4\": \"rgb(139, 90, 43)\",\n \"thistle\": \"rgb(216, 191, 216)\",\n \"thistle1\": \"rgb(255, 225, 255)\",\n \"thistle2\": \"rgb(238, 210, 238)\",\n \"thistle3\": \"rgb(205, 181, 205)\",\n \"thistle4\": \"rgb(139, 123, 139)\",\n \"tomato\": \"rgb(255, 99, 71)\",\n \"tomato1\": \"rgb(255, 99, 71)\",\n \"tomato2\": \"rgb(238, 92, 66)\",\n \"tomato3\": \"rgb(205, 79, 57)\",\n \"tomato4\": \"rgb(139, 54, 38)\",\n \"turquoise\": \"rgb(64, 224, 208)\",\n \"turquoise1\": \"rgb(0, 245, 255)\",\n \"turquoise2\": \"rgb(0, 229, 238)\",\n \"turquoise3\": \"rgb(0, 197, 205)\",\n \"turquoise4\": \"rgb(0, 134, 139)\",\n \"violet\": \"rgb(238, 130, 238)\",\n \"violetred\": \"rgb(208, 32, 144)\",\n \"violetred1\": \"rgb(255, 62, 150)\",\n \"violetred2\": \"rgb(238, 58, 140)\",\n \"violetred3\": \"rgb(205, 50, 120)\",\n \"violetred4\": \"rgb(139, 34, 82)\",\n \"wheat\": \"rgb(245, 222, 179)\",\n \"wheat1\": \"rgb(255, 231, 186)\",\n \"wheat2\": \"rgb(238, 216, 174)\",\n \"wheat3\": \"rgb(205, 186, 150)\",\n \"wheat4\": \"rgb(139, 126, 102)\",\n \"white\": \"rgb(255, 255, 255)\",\n \"whitesmoke\": \"rgb(245, 245, 245)\",\n \"yellow\": \"rgb(255, 255, 0)\",\n \"yellow1\": \"rgb(255, 255, 0)\",\n \"yellow2\": \"rgb(238, 238, 0)\",\n \"yellow3\": \"rgb(205, 205, 0)\",\n \"yellow4\": \"rgb(139, 139, 0)\",\n \"yellowgreen\": \"rgb(154, 205, 50)\"\n};\n// SOURCE FILE: libdot/js/lib_f.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Grab bag of utility functions.\n */\nlib.f = {};\n\n/**\n * Create a unique enum value.\n *\n * @suppress {lintChecks}\n * @param {string} name A human friendly name for debugging.\n * @return {Object} A unique enum that won't compare equal to anything else.\n */\nlib.f.createEnum = function(name) {\n // We use a String object as nothing else should be using them -- we want to\n // use string primitives normally. But debuggers will include our name.\n return new String(name);\n};\n\n/**\n * Replace variable references in a string.\n *\n * Variables are of the form %FUNCTION(VARNAME). FUNCTION is an optional\n * escape function to apply to the value.\n *\n * For example\n * lib.f.replaceVars(\"%(greeting), %encodeURIComponent(name)\",\n * { greeting: \"Hello\",\n * name: \"Google+\" });\n *\n * Will result in \"Hello, Google%2B\".\n */\nlib.f.replaceVars = function(str, vars) {\n return str.replace(/%([a-z]*)\\(([^\\)]+)\\)/gi, function(match, fn, varname) {\n if (typeof vars[varname] == 'undefined')\n throw 'Unknown variable: ' + varname;\n\n var rv = vars[varname];\n\n if (fn in lib.f.replaceVars.functions) {\n rv = lib.f.replaceVars.functions[fn](rv);\n } else if (fn) {\n throw 'Unknown escape function: ' + fn;\n }\n\n return rv;\n });\n};\n\n/**\n * Functions that can be used with replaceVars.\n *\n * Clients can add to this list to extend lib.f.replaceVars().\n */\nlib.f.replaceVars.functions = {\n encodeURI: encodeURI,\n encodeURIComponent: encodeURIComponent,\n escapeHTML: function(str) {\n var map = {\n '<': '<',\n '>': '>',\n '&': '&',\n '\"': '"',\n \"'\": '''\n };\n\n return str.replace(/[<>&\\\"\\']/g, function(m) { return map[m] });\n }\n};\n\n/**\n * Get the list of accepted UI languages.\n *\n * @param {function(Array)} callback Function to invoke with the results. The\n * parameter is a list of locale names.\n */\nlib.f.getAcceptLanguages = function(callback) {\n if (lib.f.getAcceptLanguages.chromeSupported()) {\n chrome.i18n.getAcceptLanguages(callback);\n } else {\n setTimeout(function() {\n callback([navigator.language.replace(/-/g, '_')]);\n }, 0);\n }\n};\n\nlib.f.getAcceptLanguages.chromeSupported = function() {\n return window.chrome && chrome.i18n;\n};\n\n/**\n * Parse a query string into a hash.\n *\n * This takes a url query string in the form 'name1=value&name2=value' and\n * converts it into an object of the form { name1: 'value', name2: 'value' }.\n * If a given name appears multiple times in the query string, only the\n * last value will appear in the result.\n *\n * Names and values are passed through decodeURIComponent before being added\n * to the result object.\n *\n * @param {string} queryString The string to parse. If it starts with a\n * leading '?', the '?' will be ignored.\n */\nlib.f.parseQuery = function(queryString) {\n if (queryString.startsWith('?'))\n queryString = queryString.substr(1);\n\n var rv = {};\n\n var pairs = queryString.split('&');\n for (var i = 0; i < pairs.length; i++) {\n var pair = pairs[i].split('=');\n rv[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]);\n }\n\n return rv;\n};\n\nlib.f.getURL = function(path) {\n if (lib.f.getURL.chromeSupported())\n return chrome.runtime.getURL(path);\n\n return path;\n};\n\nlib.f.getURL.chromeSupported = function() {\n return window.chrome && chrome.runtime && chrome.runtime.getURL;\n};\n\n/**\n * Clamp a given integer to a specified range.\n *\n * @param {integer} v The value to be clamped.\n * @param {integer} min The minimum acceptable value.\n * @param {integer} max The maximum acceptable value.\n */\nlib.f.clamp = function(v, min, max) {\n if (v < min)\n return min;\n if (v > max)\n return max;\n return v;\n};\n\n/**\n * Left pad a number to a given length with leading zeros.\n *\n * @param {string|integer} number The number to pad.\n * @param {integer} length The desired length.\n * @return {string} The padded number as a string.\n */\nlib.f.zpad = function(number, length) {\n return String(number).padStart(length, '0');\n};\n\n/**\n * Return a string containing a given number of space characters.\n *\n * This method maintains a static cache of the largest amount of whitespace\n * ever requested. It shouldn't be used to generate an insanely huge amount of\n * whitespace.\n *\n * @param {integer} length The desired amount of whitespace.\n * @param {string} A string of spaces of the requested length.\n */\nlib.f.getWhitespace = function(length) {\n if (length <= 0)\n return '';\n\n var f = this.getWhitespace;\n if (!f.whitespace)\n f.whitespace = ' ';\n\n while (length > f.whitespace.length) {\n f.whitespace += f.whitespace;\n }\n\n return f.whitespace.substr(0, length);\n};\n\n /**\n * Ensure that a function is called within a certain time limit.\n *\n * Simple usage looks like this...\n *\n * lib.registerInit(lib.f.alarm(onInit));\n *\n * This will log a warning to the console if onInit() is not invoked within\n * 5 seconds.\n *\n * If you're performing some operation that may take longer than 5 seconds you\n * can pass a duration in milliseconds as the optional second parameter.\n *\n * If you pass a string identifier instead of a callback function, you'll get a\n * wrapper generator rather than a single wrapper. Each call to the\n * generator will return a wrapped version of the callback wired to\n * a shared timeout. This is for cases where you want to ensure that at least\n * one of a set of callbacks is invoked before a timeout expires.\n *\n * var alarm = lib.f.alarm('fetch object');\n * lib.foo.fetchObject(alarm(onSuccess), alarm(onFailure));\n *\n * @param {function(*)} callback The function to wrap in an alarm.\n * @param {int} opt_ms Optional number of milliseconds to wait before raising\n * an alarm. Default is 5000 (5 seconds).\n * @return {function} If callback is a function then the return value will be\n * the wrapped callback. If callback is a string then the return value will\n * be a function that generates new wrapped callbacks.\n */\nlib.f.alarm = function(callback, opt_ms) {\n var ms = opt_ms || 5 * 1000;\n var stack = lib.f.getStack(1);\n\n return (function() {\n // This outer function is called immediately. It's here to capture a new\n // scope for the timeout variable.\n\n // The 'timeout' variable is shared by this timeout function, and the\n // callback wrapper.\n var timeout = setTimeout(function() {\n var name = (typeof callback == 'string') ? name : callback.name;\n name = name ? (': ' + name) : '';\n console.warn('lib.f.alarm: timeout expired: ' + (ms / 1000) + 's' + name);\n console.log(stack);\n timeout = null;\n }, ms);\n\n var wrapperGenerator = function(callback) {\n return function() {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n\n return callback.apply(null, arguments);\n }\n };\n\n if (typeof callback == 'string')\n return wrapperGenerator;\n\n return wrapperGenerator(callback);\n })();\n};\n\n/**\n * Return the current call stack after skipping a given number of frames.\n *\n * This method is intended to be used for debugging only. It returns an\n * Object instead of an Array, because the console stringifies arrays by\n * default and that's not what we want.\n *\n * A typical call might look like...\n *\n * console.log('Something wicked this way came', lib.f.getStack());\n * // Notice the comma ^\n *\n * This would print the message to the js console, followed by an object\n * which can be clicked to reveal the stack.\n *\n * @param {number} opt_ignoreFrames The optional number of stack frames to\n * ignore. The actual 'getStack' call is always ignored.\n */\nlib.f.getStack = function(opt_ignoreFrames) {\n var ignoreFrames = opt_ignoreFrames ? opt_ignoreFrames + 2 : 2;\n\n var stackArray;\n\n try {\n throw new Error();\n } catch (ex) {\n stackArray = ex.stack.split('\\n');\n }\n\n var stackObject = {};\n for (var i = ignoreFrames; i < stackArray.length; i++) {\n stackObject[i - ignoreFrames] = stackArray[i].replace(/^\\s*at\\s+/, '');\n }\n\n return stackObject;\n};\n\n/**\n * Divides the two numbers and floors the results, unless the remainder is less\n * than an incredibly small value, in which case it returns the ceiling.\n * This is useful when the number are truncated approximations of longer\n * values, and so doing division with these numbers yields a result incredibly\n * close to a whole number.\n *\n * @param {number} numerator\n * @param {number} denominator\n * @return {number}\n */\nlib.f.smartFloorDivide = function(numerator, denominator) {\n var val = numerator / denominator;\n var ceiling = Math.ceil(val);\n if (ceiling - val < .0001) {\n return ceiling;\n } else {\n return Math.floor(val);\n }\n};\n\n/**\n * Get a random integer in a range (inclusive).\n *\n * @param {number} min The lowest integer in the range.\n * @param {number} max The highest integer in the range.\n * @return {number} A random number between min & max.\n */\nlib.f.randomInt = function(min, max) {\n return Math.floor(Math.random() * (max - min + 1)) + min;\n};\n// SOURCE FILE: libdot/js/lib_message_manager.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * MessageManager class handles internationalized strings.\n *\n * Note: chrome.i18n isn't sufficient because...\n * 1. There's a bug in chrome that makes it unavailable in iframes:\n * https://crbug.com/130200\n * 2. The client code may not be packaged in a Chrome extension.\n * 3. The client code may be part of a library packaged in a third-party\n * Chrome extension.\n *\n * @param {Array} languages List of languages to load, in the order they\n * should be loaded. Newer messages replace older ones. 'en' is\n * automatically added as the first language if it is not already present.\n */\nlib.MessageManager = function(languages) {\n this.languages_ = languages.map(\n function(el) { return el.replace(/-/g, '_') });\n\n if (this.languages_.indexOf('en') == -1)\n this.languages_.unshift('en');\n\n this.messages = {};\n};\n\n/**\n * Add message definitions to the message manager.\n *\n * This takes an object of the same format of a Chrome messages.json file. See\n * .\n */\nlib.MessageManager.prototype.addMessages = function(defs) {\n for (var key in defs) {\n var def = defs[key];\n\n if (!def.placeholders) {\n this.messages[key] = def.message;\n } else {\n // Replace \"$NAME$\" placeholders with \"$1\", etc.\n this.messages[key] = def.message.replace(\n /\\$([a-z][^\\s\\$]+)\\$/ig,\n function(m, name) {\n return defs[key].placeholders[name.toLowerCase()].content;\n });\n }\n }\n};\n\n/**\n * Load the first available language message bundle.\n *\n * @param {string} pattern A url pattern containing a \"$1\" where the locale\n * name should go.\n * @param {function(Array,Array)} onComplete Function to be called when loading\n * is complete. The two arrays are the list of successful and failed\n * locale names. If the first parameter is length 0, no locales were\n * loaded.\n */\nlib.MessageManager.prototype.findAndLoadMessages = function(\n pattern, onComplete) {\n var languages = this.languages_.concat();\n var loaded = [];\n var failed = [];\n\n function onLanguageComplete(state) {\n if (state) {\n loaded = languages.shift();\n } else {\n failed = languages.shift();\n }\n\n if (languages.length) {\n tryNextLanguage();\n } else {\n onComplete(loaded, failed);\n }\n }\n\n var tryNextLanguage = function() {\n this.loadMessages(this.replaceReferences(pattern, languages),\n onLanguageComplete.bind(this, true),\n onLanguageComplete.bind(this, false));\n }.bind(this);\n\n tryNextLanguage();\n};\n\n/**\n * Load messages from a messages.json file.\n */\nlib.MessageManager.prototype.loadMessages = function(\n url, onSuccess, opt_onError) {\n var xhr = new XMLHttpRequest();\n\n xhr.onloadend = function() {\n if (xhr.status != 200) {\n if (opt_onError)\n opt_onError(xhr.status);\n\n return;\n }\n\n this.addMessages(JSON.parse(xhr.responseText));\n onSuccess();\n }.bind(this);\n\n xhr.open('GET', url);\n xhr.send();\n};\n\n/**\n * Replace $1...$n references with the elements of the args array.\n *\n * @param {string} msg String containing the message and argument references.\n * @param {Array} args Array containing the argument values.\n */\nlib.MessageManager.replaceReferences = function(msg, args) {\n return msg.replace(/\\$(\\d+)/g, function (m, index) {\n return args[index - 1];\n });\n};\n\n/**\n * Per-instance copy of replaceReferences.\n */\nlib.MessageManager.prototype.replaceReferences =\n lib.MessageManager.replaceReferences;\n\n/**\n * Get a message by name, optionally replacing arguments too.\n *\n * @param {string} msgname String containing the name of the message to get.\n * @param {Array} opt_args Optional array containing the argument values.\n * @param {string} opt_default Optional value to return if the msgname is not\n * found. Returns the message name by default.\n */\nlib.MessageManager.prototype.get = function(msgname, opt_args, opt_default) {\n var message;\n\n if (msgname in this.messages) {\n message = this.messages[msgname];\n\n } else {\n if (window.chrome.i18n)\n message = chrome.i18n.getMessage(msgname);\n\n if (!message) {\n console.warn('Unknown message: ' + msgname);\n return (typeof opt_default == 'undefined') ? msgname : opt_default;\n }\n }\n\n if (!opt_args)\n return message;\n\n if (!(opt_args instanceof Array))\n opt_args = [opt_args];\n\n return this.replaceReferences(message, opt_args);\n};\n\n/**\n * Process all of the \"i18n\" html attributes found in a given dom fragment.\n *\n * The real work happens in processI18nAttribute.\n */\nlib.MessageManager.prototype.processI18nAttributes = function(dom) {\n var nodes = dom.querySelectorAll('[i18n]');\n\n for (var i = 0; i < nodes.length; i++)\n this.processI18nAttribute(nodes[i]);\n};\n\n/**\n * Process the \"i18n\" attribute in the specified node.\n *\n * The i18n attribute should contain a JSON object. The keys are taken to\n * be attribute names, and the values are message names.\n *\n * If the JSON object has a \"_\" (underscore) key, its value is used as the\n * textContent of the element.\n *\n * Message names can refer to other attributes on the same element with by\n * prefixing with a dollar sign. For example...\n *\n * \n *\n * The aria-label message name will be computed as \"SEND_BUTTON_ARIA_LABEL\".\n * Notice that the \"id\" attribute was appended to the target attribute, and\n * the result converted to UPPER_AND_UNDER style.\n */\nlib.MessageManager.prototype.processI18nAttribute = function(node) {\n // Convert the \"lower-and-dashes\" attribute names into\n // \"UPPER_AND_UNDER\" style.\n function thunk(str) { return str.replace(/-/g, '_').toUpperCase() }\n\n var i18n = node.getAttribute('i18n');\n if (!i18n)\n return;\n\n try {\n i18n = JSON.parse(i18n);\n } catch (ex) {\n console.error('Can\\'t parse ' + node.tagName + '#' + node.id + ': ' + i18n);\n throw ex;\n }\n\n // Load all the messages specified in the i18n attributes.\n for (var key in i18n) {\n // The node attribute we'll be setting.\n var attr = key;\n\n var msgname = i18n[key];\n // For \"=foo\", re-use the referenced message name.\n if (msgname.startsWith('=')) {\n key = msgname.substr(1);\n msgname = i18n[key];\n }\n\n // For \"$foo\", calculate the message name.\n if (msgname.startsWith('$'))\n msgname = thunk(node.getAttribute(msgname.substr(1)) + '_' + key);\n\n // Finally load the message.\n var msg = this.get(msgname);\n if (attr == '_')\n node.textContent = msg;\n else\n node.setAttribute(attr, msg);\n }\n};\n// SOURCE FILE: libdot/js/lib_preference_manager.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Constructor for lib.PreferenceManager objects.\n *\n * These objects deal with persisting changes to stable storage and notifying\n * consumers when preferences change.\n *\n * It is intended that the backing store could be something other than HTML5\n * storage, but there aren't any use cases at the moment. In the future there\n * may be a chrome api to store sync-able name/value pairs, and we'd want\n * that.\n *\n * @param {lib.Storage.*} storage The storage object to use as a backing\n * store.\n * @param {string} opt_prefix The optional prefix to be used for all preference\n * names. The '/' character should be used to separate levels of hierarchy,\n * if you're going to have that kind of thing. If provided, the prefix\n * should start with a '/'. If not provided, it defaults to '/'.\n */\nlib.PreferenceManager = function(storage, opt_prefix) {\n this.storage = storage;\n this.storageObserver_ = this.onStorageChange_.bind(this);\n\n this.isActive_ = false;\n this.activate();\n\n this.trace = false;\n\n var prefix = opt_prefix || '/';\n if (!prefix.endsWith('/'))\n prefix += '/';\n\n this.prefix = prefix;\n\n this.prefRecords_ = {};\n this.globalObservers_ = [];\n\n this.childFactories_ = {};\n\n // Map of list-name to {map of child pref managers}\n // As in...\n //\n // this.childLists_ = {\n // 'profile-ids': {\n // 'one': PreferenceManager,\n // 'two': PreferenceManager,\n // ...\n // },\n //\n // 'frob-ids': {\n // ...\n // }\n // }\n this.childLists_ = {};\n};\n\n/**\n * Used internally to indicate that the current value of the preference should\n * be taken from the default value defined with the preference.\n *\n * Equality tests against this value MUST use '===' or '!==' to be accurate.\n */\nlib.PreferenceManager.prototype.DEFAULT_VALUE = lib.f.createEnum('DEFAULT');\n\n/**\n * An individual preference.\n *\n * These objects are managed by the PreferenceManager, you shouldn't need to\n * handle them directly.\n */\nlib.PreferenceManager.Record = function(name, defaultValue) {\n this.name = name;\n this.defaultValue = defaultValue;\n this.currentValue = this.DEFAULT_VALUE;\n this.observers = [];\n};\n\n/**\n * A local copy of the DEFAULT_VALUE constant to make it less verbose.\n */\nlib.PreferenceManager.Record.prototype.DEFAULT_VALUE =\n lib.PreferenceManager.prototype.DEFAULT_VALUE;\n\n/**\n * Register a callback to be invoked when this preference changes.\n *\n * @param {function(value, string, lib.PreferenceManager} observer The function\n * to invoke. It will receive the new value, the name of the preference,\n * and a reference to the PreferenceManager as parameters.\n */\nlib.PreferenceManager.Record.prototype.addObserver = function(observer) {\n this.observers.push(observer);\n};\n\n/**\n * Unregister an observer callback.\n *\n * @param {function} observer A previously registered callback.\n */\nlib.PreferenceManager.Record.prototype.removeObserver = function(observer) {\n var i = this.observers.indexOf(observer);\n if (i >= 0)\n this.observers.splice(i, 1);\n};\n\n/**\n * Fetch the value of this preference.\n */\nlib.PreferenceManager.Record.prototype.get = function() {\n if (this.currentValue === this.DEFAULT_VALUE) {\n if (/^(string|number)$/.test(typeof this.defaultValue))\n return this.defaultValue;\n\n if (typeof this.defaultValue == 'object') {\n // We want to return a COPY of the default value so that users can\n // modify the array or object without changing the default value.\n return JSON.parse(JSON.stringify(this.defaultValue));\n }\n\n return this.defaultValue;\n }\n\n return this.currentValue;\n};\n\n/**\n * Stop this preference manager from tracking storage changes.\n *\n * Call this if you're going to swap out one preference manager for another so\n * that you don't get notified about irrelevant changes.\n */\nlib.PreferenceManager.prototype.deactivate = function() {\n if (!this.isActive_)\n throw new Error('Not activated');\n\n this.isActive_ = false;\n this.storage.removeObserver(this.storageObserver_);\n};\n\n/**\n * Start tracking storage changes.\n *\n * If you previously deactivated this preference manager, you can reactivate it\n * with this method. You don't need to call this at initialization time, as\n * it's automatically called as part of the constructor.\n */\nlib.PreferenceManager.prototype.activate = function() {\n if (this.isActive_)\n throw new Error('Already activated');\n\n this.isActive_ = true;\n this.storage.addObserver(this.storageObserver_);\n};\n\n/**\n * Read the backing storage for these preferences.\n *\n * You should do this once at initialization time to prime the local cache\n * of preference values. The preference manager will monitor the backing\n * storage for changes, so you should not need to call this more than once.\n *\n * This function recursively reads storage for all child preference managers as\n * well.\n *\n * This function is asynchronous, if you need to read preference values, you\n * *must* wait for the callback.\n *\n * @param {function()} opt_callback Optional function to invoke when the read\n * has completed.\n */\nlib.PreferenceManager.prototype.readStorage = function(opt_callback) {\n var pendingChildren = 0;\n\n function onChildComplete() {\n if (--pendingChildren == 0 && opt_callback)\n opt_callback();\n }\n\n var keys = Object.keys(this.prefRecords_).map(\n function(el) { return this.prefix + el }.bind(this));\n\n if (this.trace)\n console.log('Preferences read: ' + this.prefix);\n\n this.storage.getItems(keys, function(items) {\n var prefixLength = this.prefix.length;\n\n for (var key in items) {\n var value = items[key];\n var name = key.substr(prefixLength);\n var needSync = (name in this.childLists_ &&\n (JSON.stringify(value) !=\n JSON.stringify(this.prefRecords_[name].currentValue)));\n\n this.prefRecords_[name].currentValue = value;\n\n if (needSync) {\n pendingChildren++;\n this.syncChildList(name, onChildComplete);\n }\n }\n\n if (pendingChildren == 0 && opt_callback)\n setTimeout(opt_callback);\n }.bind(this));\n};\n\n/**\n * Define a preference.\n *\n * This registers a name, default value, and onChange handler for a preference.\n *\n * @param {string} name The name of the preference. This will be prefixed by\n * the prefix of this PreferenceManager before written to local storage.\n * @param {string|number|boolean|Object|Array|null} value The default value of\n * this preference. Anything that can be represented in JSON is a valid\n * default value.\n * @param {function(value, string, lib.PreferenceManager} opt_observer A\n * function to invoke when the preference changes. It will receive the new\n * value, the name of the preference, and a reference to the\n * PreferenceManager as parameters.\n */\nlib.PreferenceManager.prototype.definePreference = function(\n name, value, opt_onChange) {\n\n var record = this.prefRecords_[name];\n if (record) {\n this.changeDefault(name, value);\n } else {\n record = this.prefRecords_[name] =\n new lib.PreferenceManager.Record(name, value);\n }\n\n if (opt_onChange)\n record.addObserver(opt_onChange);\n};\n\n/**\n * Define multiple preferences with a single function call.\n *\n * @param {Array} defaults An array of 3-element arrays. Each three element\n * array should contain the [key, value, onChange] parameters for a\n * preference.\n */\nlib.PreferenceManager.prototype.definePreferences = function(defaults) {\n for (var i = 0; i < defaults.length; i++) {\n this.definePreference(defaults[i][0], defaults[i][1], defaults[i][2]);\n }\n};\n\n/**\n * Define an ordered list of child preferences.\n *\n * Child preferences are different from just storing an array of JSON objects\n * in that each child is an instance of a preference manager. This means you\n * can observe changes to individual child preferences, and get some validation\n * that you're not reading or writing to an undefined child preference value.\n *\n * @param {string} listName A name for the list of children. This must be\n * unique in this preference manager. The listName will become a\n * preference on this PreferenceManager used to store the ordered list of\n * child ids. It is also used in get/add/remove operations to identify the\n * list of children to operate on.\n * @param {function} childFactory A function that will be used to generate\n * instances of these children. The factory function will receive the\n * parent lib.PreferenceManager object and a unique id for the new child\n * preferences.\n */\nlib.PreferenceManager.prototype.defineChildren = function(\n listName, childFactory) {\n\n // Define a preference to hold the ordered list of child ids.\n this.definePreference(listName, [],\n this.onChildListChange_.bind(this, listName));\n this.childFactories_[listName] = childFactory;\n this.childLists_[listName] = {};\n};\n\n/**\n * Register to observe preference changes.\n *\n * @param {Function} global A callback that will happen for every preference.\n * Pass null if you don't need one.\n * @param {Object} map A map of preference specific callbacks. Pass null if\n * you don't need any.\n */\nlib.PreferenceManager.prototype.addObservers = function(global, map) {\n if (global && typeof global != 'function')\n throw new Error('Invalid param: globals');\n\n if (global)\n this.globalObservers_.push(global);\n\n if (!map)\n return;\n\n for (var name in map) {\n if (!(name in this.prefRecords_))\n throw new Error('Unknown preference: ' + name);\n\n this.prefRecords_[name].addObserver(map[name]);\n }\n};\n\n/**\n * Dispatch the change observers for all known preferences.\n *\n * It may be useful to call this after readStorage completes, in order to\n * get application state in sync with user preferences.\n *\n * This can be used if you've changed a preference manager out from under\n * a live object, for example when switching to a different prefix.\n */\nlib.PreferenceManager.prototype.notifyAll = function() {\n for (var name in this.prefRecords_) {\n this.notifyChange_(name);\n }\n};\n\n/**\n * Notify the change observers for a given preference.\n *\n * @param {string} name The name of the preference that changed.\n */\nlib.PreferenceManager.prototype.notifyChange_ = function(name) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n var currentValue = record.get();\n\n for (var i = 0; i < this.globalObservers_.length; i++)\n this.globalObservers_[i](name, currentValue);\n\n for (var i = 0; i < record.observers.length; i++) {\n record.observers[i](currentValue, name, this);\n }\n};\n\n/**\n * Create a new child PreferenceManager for the given child list.\n *\n * The optional hint parameter is an opaque prefix added to the auto-generated\n * unique id for this child. Your child factory can parse out the prefix\n * and use it.\n *\n * @param {string} listName The child list to create the new instance from.\n * @param {string} opt_hint Optional hint to include in the child id.\n * @param {string} opt_id Optional id to override the generated id.\n */\nlib.PreferenceManager.prototype.createChild = function(listName, opt_hint,\n opt_id) {\n var ids = this.get(listName);\n var id;\n\n if (opt_id) {\n id = opt_id;\n if (ids.indexOf(id) != -1)\n throw new Error('Duplicate child: ' + listName + ': ' + id);\n\n } else {\n // Pick a random, unique 4-digit hex identifier for the new profile.\n while (!id || ids.indexOf(id) != -1) {\n id = lib.f.randomInt(1, 0xffff).toString(16);\n id = lib.f.zpad(id, 4);\n if (opt_hint)\n id = opt_hint + ':' + id;\n }\n }\n\n var childManager = this.childFactories_[listName](this, id);\n childManager.trace = this.trace;\n childManager.resetAll();\n\n this.childLists_[listName][id] = childManager;\n\n ids.push(id);\n this.set(listName, ids);\n\n return childManager;\n};\n\n/**\n * Remove a child preferences instance.\n *\n * Removes a child preference manager and clears any preferences stored in it.\n *\n * @param {string} listName The name of the child list containing the child to\n * remove.\n * @param {string} id The child ID.\n */\nlib.PreferenceManager.prototype.removeChild = function(listName, id) {\n var prefs = this.getChild(listName, id);\n prefs.resetAll();\n\n var ids = this.get(listName);\n var i = ids.indexOf(id);\n if (i != -1) {\n ids.splice(i, 1);\n this.set(listName, ids);\n }\n\n delete this.childLists_[listName][id];\n};\n\n/**\n * Return a child PreferenceManager instance for a given id.\n *\n * If the child list or child id is not known this will return the specified\n * default value or throw an exception if no default value is provided.\n *\n * @param {string} listName The child list to look in.\n * @param {string} id The child ID.\n * @param {*} opt_default The optional default value to return if the child\n * is not found.\n */\nlib.PreferenceManager.prototype.getChild = function(listName, id, opt_default) {\n if (!(listName in this.childLists_))\n throw new Error('Unknown child list: ' + listName);\n\n var childList = this.childLists_[listName];\n if (!(id in childList)) {\n if (typeof opt_default == 'undefined')\n throw new Error('Unknown \"' + listName + '\" child: ' + id);\n\n return opt_default;\n }\n\n return childList[id];\n};\n\n/**\n * Calculate the difference between two lists of child ids.\n *\n * Given two arrays of child ids, this function will return an object\n * with \"added\", \"removed\", and \"common\" properties. Each property is\n * a map of child-id to `true`. For example, given...\n *\n * a = ['child-x', 'child-y']\n * b = ['child-y']\n *\n * diffChildLists(a, b) =>\n * { added: { 'child-x': true }, removed: {}, common: { 'child-y': true } }\n *\n * The added/removed properties assume that `a` is the current list.\n *\n * @param {Array[string]} a The most recent list of child ids.\n * @param {Array[string]} b An older list of child ids.\n * @return {Object} An object with added/removed/common properties.\n */\nlib.PreferenceManager.diffChildLists = function(a, b) {\n var rv = {\n added: {},\n removed: {},\n common: {},\n };\n\n for (var i = 0; i < a.length; i++) {\n if (b.indexOf(a[i]) != -1) {\n rv.common[a[i]] = true;\n } else {\n rv.added[a[i]] = true;\n }\n }\n\n for (var i = 0; i < b.length; i++) {\n if ((b[i] in rv.added) || (b[i] in rv.common))\n continue;\n\n rv.removed[b[i]] = true;\n }\n\n return rv;\n};\n\n/**\n * Synchronize a list of child PreferenceManagers instances with the current\n * list stored in prefs.\n *\n * This will instantiate any missing managers and read current preference values\n * from storage. Any active managers that no longer appear in preferences will\n * be deleted.\n *\n * @param {string} listName The child list to synchronize.\n * @param {function()} opt_callback Optional function to invoke when the sync\n * is complete.\n */\nlib.PreferenceManager.prototype.syncChildList = function(\n listName, opt_callback) {\n\n var pendingChildren = 0;\n function onChildStorage() {\n if (--pendingChildren == 0 && opt_callback)\n opt_callback();\n }\n\n // The list of child ids that we *should* have a manager for.\n var currentIds = this.get(listName);\n\n // The known managers at the start of the sync. Any manager still in this\n // list at the end should be discarded.\n var oldIds = Object.keys(this.childLists_[listName]);\n\n var rv = lib.PreferenceManager.diffChildLists(currentIds, oldIds);\n\n for (var i = 0; i < currentIds.length; i++) {\n var id = currentIds[i];\n\n var managerIndex = oldIds.indexOf(id);\n if (managerIndex >= 0)\n oldIds.splice(managerIndex, 1);\n\n if (!this.childLists_[listName][id]) {\n var childManager = this.childFactories_[listName](this, id);\n if (!childManager) {\n console.warn('Unable to restore child: ' + listName + ': ' + id);\n continue;\n }\n\n childManager.trace = this.trace;\n this.childLists_[listName][id] = childManager;\n pendingChildren++;\n childManager.readStorage(onChildStorage);\n }\n }\n\n for (var i = 0; i < oldIds.length; i++) {\n delete this.childLists_[listName][oldIds[i]];\n }\n\n if (!pendingChildren && opt_callback)\n setTimeout(opt_callback);\n};\n\n/**\n * Reset a preference to its default state.\n *\n * This will dispatch the onChange handler if the preference value actually\n * changes.\n *\n * @param {string} name The preference to reset.\n */\nlib.PreferenceManager.prototype.reset = function(name) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n this.storage.removeItem(this.prefix + name);\n\n if (record.currentValue !== this.DEFAULT_VALUE) {\n record.currentValue = this.DEFAULT_VALUE;\n this.notifyChange_(name);\n }\n};\n\n/**\n * Reset all preferences back to their default state.\n */\nlib.PreferenceManager.prototype.resetAll = function() {\n var changed = [];\n\n for (var listName in this.childLists_) {\n var childList = this.childLists_[listName];\n for (var id in childList) {\n childList[id].resetAll();\n }\n }\n\n for (var name in this.prefRecords_) {\n if (this.prefRecords_[name].currentValue !== this.DEFAULT_VALUE) {\n this.prefRecords_[name].currentValue = this.DEFAULT_VALUE;\n changed.push(name);\n }\n }\n\n var keys = Object.keys(this.prefRecords_).map(function(el) {\n return this.prefix + el;\n }.bind(this));\n\n this.storage.removeItems(keys);\n\n changed.forEach(this.notifyChange_.bind(this));\n};\n\n/**\n * Return true if two values should be considered not-equal.\n *\n * If both values are the same scalar type and compare equal this function\n * returns false (no difference), otherwise return true.\n *\n * This is used in places where we want to check if a preference has changed.\n * Rather than take the time to compare complex values we just consider them\n * to always be different.\n *\n * @param {*} a A value to compare.\n * @param {*} b A value to compare.\n */\nlib.PreferenceManager.prototype.diff = function(a, b) {\n // If the types are different, or the type is not a simple primitive one.\n if ((typeof a) !== (typeof b) ||\n !(/^(undefined|boolean|number|string)$/.test(typeof a))) {\n return true;\n }\n\n return a !== b;\n};\n\n/**\n * Change the default value of a preference.\n *\n * This is useful when subclassing preference managers.\n *\n * The function does not alter the current value of the preference, unless\n * it has the old default value. When that happens, the change observers\n * will be notified.\n *\n * @param {string} name The name of the parameter to change.\n * @param {*} newValue The new default value for the preference.\n */\nlib.PreferenceManager.prototype.changeDefault = function(name, newValue) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n if (!this.diff(record.defaultValue, newValue)) {\n // Default value hasn't changed.\n return;\n }\n\n if (record.currentValue !== this.DEFAULT_VALUE) {\n // This pref has a specific value, just change the default and we're done.\n record.defaultValue = newValue;\n return;\n }\n\n record.defaultValue = newValue;\n\n this.notifyChange_(name);\n};\n\n/**\n * Change the default value of multiple preferences.\n *\n * @param {Object} map A map of name -> value pairs specifying the new default\n * values.\n */\nlib.PreferenceManager.prototype.changeDefaults = function(map) {\n for (var key in map) {\n this.changeDefault(key, map[key]);\n }\n};\n\n/**\n * Set a preference to a specific value.\n *\n * This will dispatch the onChange handler if the preference value actually\n * changes.\n *\n * @param {string} key The preference to set.\n * @param {*} value The value to set. Anything that can be represented in\n * JSON is a valid value.\n */\nlib.PreferenceManager.prototype.set = function(name, newValue) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n var oldValue = record.get();\n\n if (!this.diff(oldValue, newValue))\n return;\n\n if (this.diff(record.defaultValue, newValue)) {\n record.currentValue = newValue;\n this.storage.setItem(this.prefix + name, newValue);\n } else {\n record.currentValue = this.DEFAULT_VALUE;\n this.storage.removeItem(this.prefix + name);\n }\n\n // We need to manually send out the notification on this instance. If we\n // The storage event won't fire a notification because we've already changed\n // the currentValue, so it won't see a difference. If we delayed changing\n // currentValue until the storage event, a pref read immediately after a write\n // would return the previous value.\n //\n // The notification is in a timeout so clients don't accidentally depend on\n // a synchronous notification.\n setTimeout(this.notifyChange_.bind(this, name), 0);\n};\n\n/**\n * Get the value of a preference.\n *\n * @param {string} key The preference to get.\n */\nlib.PreferenceManager.prototype.get = function(name) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n return record.get();\n};\n\n/**\n * Return all non-default preferences as a JSON object.\n *\n * This includes any nested preference managers as well.\n */\nlib.PreferenceManager.prototype.exportAsJson = function() {\n var rv = {};\n\n for (var name in this.prefRecords_) {\n if (name in this.childLists_) {\n rv[name] = [];\n var childIds = this.get(name);\n for (var i = 0; i < childIds.length; i++) {\n var id = childIds[i];\n rv[name].push({id: id, json: this.getChild(name, id).exportAsJson()});\n }\n\n } else {\n var record = this.prefRecords_[name];\n if (record.currentValue != this.DEFAULT_VALUE)\n rv[name] = record.currentValue;\n }\n }\n\n return rv;\n};\n\n/**\n * Import a JSON blob of preferences previously generated with exportAsJson.\n *\n * This will create nested preference managers as well.\n */\nlib.PreferenceManager.prototype.importFromJson = function(json) {\n for (var name in json) {\n if (name in this.childLists_) {\n var childList = json[name];\n for (var i = 0; i < childList.length; i++) {\n var id = childList[i].id;\n\n var childPrefManager = this.childLists_[name][id];\n if (!childPrefManager)\n childPrefManager = this.createChild(name, null, id);\n\n childPrefManager.importFromJson(childList[i].json);\n }\n\n } else {\n this.set(name, json[name]);\n }\n }\n};\n\n/**\n * Called when one of the child list preferences changes.\n */\nlib.PreferenceManager.prototype.onChildListChange_ = function(listName) {\n this.syncChildList(listName);\n};\n\n/**\n * Called when a key in the storage changes.\n */\nlib.PreferenceManager.prototype.onStorageChange_ = function(map) {\n for (var key in map) {\n if (this.prefix) {\n if (key.lastIndexOf(this.prefix, 0) != 0)\n continue;\n }\n\n var name = key.substr(this.prefix.length);\n\n if (!(name in this.prefRecords_)) {\n // Sometimes we'll get notified about prefs that are no longer defined.\n continue;\n }\n\n var record = this.prefRecords_[name];\n\n var newValue = map[key].newValue;\n var currentValue = record.currentValue;\n if (currentValue === record.DEFAULT_VALUE)\n currentValue = (void 0);\n\n if (this.diff(currentValue, newValue)) {\n if (typeof newValue == 'undefined' || newValue === null) {\n record.currentValue = record.DEFAULT_VALUE;\n } else {\n record.currentValue = newValue;\n }\n\n this.notifyChange_(name);\n }\n }\n};\n// SOURCE FILE: libdot/js/lib_resource.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Storage for canned resources.\n *\n * These are usually non-JavaScript things that are collected during a build\n * step and converted into a series of 'lib.resource.add(...)' calls. See\n * the \"@resource\" directive from libdot/bin/concat.sh for the canonical use\n * case.\n *\n * This is global storage, so you should prefix your resource names to avoid\n * collisions.\n */\nlib.resource = {\n resources_: {}\n};\n\n/**\n * Add a resource.\n *\n * @param {string} name A name for the resource. You should prefix this to\n * avoid collisions with resources from a shared library.\n * @param {string} type A mime type for the resource, or \"raw\" if not\n * applicable.\n * @param {*} data The value of the resource.\n */\nlib.resource.add = function(name, type, data) {\n lib.resource.resources_[name] = {\n type: type,\n name: name,\n data: data\n };\n};\n\n/**\n * Retrieve a resource record.\n *\n * The resource data is stored on the \"data\" property of the returned object.\n *\n * @param {string} name The name of the resource to get.\n * @param {*} opt_defaultValue The optional value to return if the resource is\n * not defined.\n * @return {object} An object with \"type\", \"name\", and \"data\" properties.\n */\nlib.resource.get = function(name, opt_defaultValue) {\n if (!(name in lib.resource.resources_)) {\n if (typeof opt_defaultValue == 'undefined')\n throw 'Unknown resource: ' + name;\n\n return opt_defaultValue;\n }\n\n return lib.resource.resources_[name];\n};\n\n/**\n * Retrieve resource data.\n *\n * @param {string} name The name of the resource to get.\n * @param {*} opt_defaultValue The optional value to return if the resource is\n * not defined.\n * @return {*} The resource data.\n */\nlib.resource.getData = function(name, opt_defaultValue) {\n if (!(name in lib.resource.resources_)) {\n if (typeof opt_defaultValue == 'undefined')\n throw 'Unknown resource: ' + name;\n\n return opt_defaultValue;\n }\n\n return lib.resource.resources_[name].data;\n};\n\n/**\n * Retrieve resource as a data: url.\n *\n * @param {string} name The name of the resource to get.\n * @param {*} opt_defaultValue The optional value to return if the resource is\n * not defined.\n * @return {*} A data: url encoded version of the resource.\n */\nlib.resource.getDataUrl = function(name, opt_defaultValue) {\n var resource = lib.resource.get(name, opt_defaultValue);\n return 'data:' + resource.type + ',' + resource.data;\n};\n// SOURCE FILE: libdot/js/lib_storage.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Namespace for implementations of persistent, possibly cloud-backed\n * storage.\n */\nlib.Storage = new Object();\n// SOURCE FILE: libdot/js/lib_storage_chrome.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * chrome.storage based class with an async interface that is interchangeable\n * with other lib.Storage.* implementations.\n */\nlib.Storage.Chrome = function(storage) {\n this.storage_ = storage;\n this.observers_ = [];\n\n chrome.storage.onChanged.addListener(this.onChanged_.bind(this));\n};\n\n/**\n * Called by the storage implementation when the storage is modified.\n */\nlib.Storage.Chrome.prototype.onChanged_ = function(changes, areaname) {\n if (chrome.storage[areaname] != this.storage_)\n return;\n\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](changes);\n }\n};\n\n/**\n * Register a function to observe storage changes.\n *\n * @param {function(map)} callback The function to invoke when the storage\n * changes.\n */\nlib.Storage.Chrome.prototype.addObserver = function(callback) {\n this.observers_.push(callback);\n};\n\n/**\n * Unregister a change observer.\n *\n * @param {function} observer A previously registered callback.\n */\nlib.Storage.Chrome.prototype.removeObserver = function(callback) {\n var i = this.observers_.indexOf(callback);\n if (i != -1)\n this.observers_.splice(i, 1);\n};\n\n/**\n * Delete everything in this storage.\n *\n * @param {function(map)} callback The function to invoke when the delete\n * has completed.\n */\nlib.Storage.Chrome.prototype.clear = function(opt_callback) {\n this.storage_.clear();\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Return the current value of a storage item.\n *\n * @param {string} key The key to look up.\n * @param {function(value) callback The function to invoke when the value has\n * been retrieved.\n */\nlib.Storage.Chrome.prototype.getItem = function(key, callback) {\n this.storage_.get(key, callback);\n};\n/**\n * Fetch the values of multiple storage items.\n *\n * @param {Array} keys The keys to look up.\n * @param {function(map) callback The function to invoke when the values have\n * been retrieved.\n */\n\nlib.Storage.Chrome.prototype.getItems = function(keys, callback) {\n this.storage_.get(keys, callback);\n};\n\n/**\n * Set a value in storage.\n *\n * @param {string} key The key for the value to be stored.\n * @param {*} value The value to be stored. Anything that can be serialized\n * with JSON is acceptable.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Chrome.prototype.setItem = function(key, value, opt_callback) {\n var obj = {};\n obj[key] = value;\n this.storage_.set(obj, opt_callback);\n};\n\n/**\n * Set multiple values in storage.\n *\n * @param {Object} map A map of key/values to set in storage.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Chrome.prototype.setItems = function(obj, opt_callback) {\n this.storage_.set(obj, opt_callback);\n};\n\n/**\n * Remove an item from storage.\n *\n * @param {string} key The key to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Chrome.prototype.removeItem = function(key, opt_callback) {\n this.storage_.remove(key, opt_callback);\n};\n\n/**\n * Remove multiple items from storage.\n *\n * @param {Array} keys The keys to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Chrome.prototype.removeItems = function(keys, opt_callback) {\n this.storage_.remove(keys, opt_callback);\n};\n// SOURCE FILE: libdot/js/lib_storage_local.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * window.localStorage based class with an async interface that is\n * interchangeable with other lib.Storage.* implementations.\n */\nlib.Storage.Local = function() {\n this.observers_ = [];\n this.storage_ = window.localStorage;\n window.addEventListener('storage', this.onStorage_.bind(this));\n};\n\n/**\n * Called by the storage implementation when the storage is modified.\n */\nlib.Storage.Local.prototype.onStorage_ = function(e) {\n if (e.storageArea != this.storage_)\n return;\n\n // JS throws an exception if JSON.parse is given an empty string. So here we\n // only parse if the value is truthy. This mean the empty string, undefined\n // and null will not be parsed.\n var prevValue = e.oldValue ? JSON.parse(e.oldValue) : e.oldValue;\n var curValue = e.newValue ? JSON.parse(e.newValue) : e.newValue;\n var o = {};\n o[e.key] = {\n oldValue: prevValue,\n newValue: curValue\n };\n\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](o);\n }\n};\n\n/**\n * Register a function to observe storage changes.\n *\n * @param {function(map)} callback The function to invoke when the storage\n * changes.\n */\nlib.Storage.Local.prototype.addObserver = function(callback) {\n this.observers_.push(callback);\n};\n\n/**\n * Unregister a change observer.\n *\n * @param {function} observer A previously registered callback.\n */\nlib.Storage.Local.prototype.removeObserver = function(callback) {\n var i = this.observers_.indexOf(callback);\n if (i != -1)\n this.observers_.splice(i, 1);\n};\n\n/**\n * Delete everything in this storage.\n *\n * @param {function(map)} callback The function to invoke when the delete\n * has completed.\n */\nlib.Storage.Local.prototype.clear = function(opt_callback) {\n this.storage_.clear();\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Return the current value of a storage item.\n *\n * @param {string} key The key to look up.\n * @param {function(value) callback The function to invoke when the value has\n * been retrieved.\n */\nlib.Storage.Local.prototype.getItem = function(key, callback) {\n var value = this.storage_.getItem(key);\n\n if (typeof value == 'string') {\n try {\n value = JSON.parse(value);\n } catch (e) {\n // If we can't parse the value, just return it unparsed.\n }\n }\n\n setTimeout(callback.bind(null, value), 0);\n};\n\n/**\n * Fetch the values of multiple storage items.\n *\n * @param {Array} keys The keys to look up.\n * @param {function(map) callback The function to invoke when the values have\n * been retrieved.\n */\nlib.Storage.Local.prototype.getItems = function(keys, callback) {\n var rv = {};\n\n for (var i = keys.length - 1; i >= 0; i--) {\n var key = keys[i];\n var value = this.storage_.getItem(key);\n if (typeof value == 'string') {\n try {\n rv[key] = JSON.parse(value);\n } catch (e) {\n // If we can't parse the value, just return it unparsed.\n rv[key] = value;\n }\n } else {\n keys.splice(i, 1);\n }\n }\n\n setTimeout(callback.bind(null, rv), 0);\n};\n\n/**\n * Set a value in storage.\n *\n * @param {string} key The key for the value to be stored.\n * @param {*} value The value to be stored. Anything that can be serialized\n * with JSON is acceptable.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Local.prototype.setItem = function(key, value, opt_callback) {\n this.storage_.setItem(key, JSON.stringify(value));\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Set multiple values in storage.\n *\n * @param {Object} map A map of key/values to set in storage.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Local.prototype.setItems = function(obj, opt_callback) {\n for (var key in obj) {\n this.storage_.setItem(key, JSON.stringify(obj[key]));\n }\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Remove an item from storage.\n *\n * @param {string} key The key to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Local.prototype.removeItem = function(key, opt_callback) {\n this.storage_.removeItem(key);\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Remove multiple items from storage.\n *\n * @param {Array} keys The keys to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Local.prototype.removeItems = function(ary, opt_callback) {\n for (var i = 0; i < ary.length; i++) {\n this.storage_.removeItem(ary[i]);\n }\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n// SOURCE FILE: libdot/js/lib_storage_memory.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * In-memory storage class with an async interface that is interchangeable with\n * other lib.Storage.* implementations.\n */\nlib.Storage.Memory = function() {\n this.observers_ = [];\n this.storage_ = {};\n};\n\n/**\n * Register a function to observe storage changes.\n *\n * @param {function(map)} callback The function to invoke when the storage\n * changes.\n */\nlib.Storage.Memory.prototype.addObserver = function(callback) {\n this.observers_.push(callback);\n};\n\n/**\n * Unregister a change observer.\n *\n * @param {function} observer A previously registered callback.\n */\nlib.Storage.Memory.prototype.removeObserver = function(callback) {\n var i = this.observers_.indexOf(callback);\n if (i != -1)\n this.observers_.splice(i, 1);\n};\n\n/**\n * Delete everything in this storage.\n *\n * @param {function(map)} callback The function to invoke when the delete\n * has completed.\n */\nlib.Storage.Memory.prototype.clear = function(opt_callback) {\n var e = {};\n for (var key in this.storage_) {\n e[key] = {oldValue: this.storage_[key], newValue: (void 0)};\n }\n\n this.storage_ = {};\n\n setTimeout(function() {\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](e);\n }\n }.bind(this), 0);\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Return the current value of a storage item.\n *\n * @param {string} key The key to look up.\n * @param {function(value) callback The function to invoke when the value has\n * been retrieved.\n */\nlib.Storage.Memory.prototype.getItem = function(key, callback) {\n var value = this.storage_[key];\n\n if (typeof value == 'string') {\n try {\n value = JSON.parse(value);\n } catch (e) {\n // If we can't parse the value, just return it unparsed.\n }\n }\n\n setTimeout(callback.bind(null, value), 0);\n};\n\n/**\n * Fetch the values of multiple storage items.\n *\n * @param {Array} keys The keys to look up.\n * @param {function(map) callback The function to invoke when the values have\n * been retrieved.\n */\nlib.Storage.Memory.prototype.getItems = function(keys, callback) {\n var rv = {};\n\n for (var i = keys.length - 1; i >= 0; i--) {\n var key = keys[i];\n var value = this.storage_[key];\n if (typeof value == 'string') {\n try {\n rv[key] = JSON.parse(value);\n } catch (e) {\n // If we can't parse the value, just return it unparsed.\n rv[key] = value;\n }\n } else {\n keys.splice(i, 1);\n }\n }\n\n setTimeout(callback.bind(null, rv), 0);\n};\n\n/**\n * Set a value in storage.\n *\n * @param {string} key The key for the value to be stored.\n * @param {*} value The value to be stored. Anything that can be serialized\n * with JSON is acceptable.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Memory.prototype.setItem = function(key, value, opt_callback) {\n var oldValue = this.storage_[key];\n this.storage_[key] = JSON.stringify(value);\n\n var e = {};\n e[key] = {oldValue: oldValue, newValue: value};\n\n setTimeout(function() {\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](e);\n }\n }.bind(this), 0);\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Set multiple values in storage.\n *\n * @param {Object} map A map of key/values to set in storage.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Memory.prototype.setItems = function(obj, opt_callback) {\n var e = {};\n\n for (var key in obj) {\n e[key] = {oldValue: this.storage_[key], newValue: obj[key]};\n this.storage_[key] = JSON.stringify(obj[key]);\n }\n\n setTimeout(function() {\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](e);\n }\n }.bind(this));\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Remove an item from storage.\n *\n * @param {string} key The key to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Memory.prototype.removeItem = function(key, opt_callback) {\n delete this.storage_[key];\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Remove multiple items from storage.\n *\n * @param {Array} keys The keys to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Memory.prototype.removeItems = function(ary, opt_callback) {\n for (var i = 0; i < ary.length; i++) {\n delete this.storage_[ary[i]];\n }\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n// SOURCE FILE: libdot/js/lib_test_manager.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * @fileoverview JavaScript unit testing framework for synchronous and\n * asynchronous tests.\n *\n * This file contains the lib.TestManager and related classes. At the moment\n * it's all collected in a single file since it's reasonably small\n * (=~1k lines), and it's a lot easier to include one file into your test\n * harness than it is to include seven.\n *\n * The following classes are defined...\n *\n * lib.TestManager - The root class and entrypoint for creating test runs.\n * lib.TestManager.Log - Logging service.\n * lib.TestManager.Suite - A collection of tests.\n * lib.TestManager.Test - A single test.\n * lib.TestManager.TestRun - Manages the execution of a set of tests.\n * lib.TestManager.Result - A single test result.\n */\n\n/**\n * Root object in the unit test hierarchy, and keeper of the log object.\n *\n * @param {lib.TestManager.Log} opt_log Optional lib.TestManager.Log object.\n * Logs to the JavaScript console if omitted.\n */\nlib.TestManager = function(opt_log) {\n this.log = opt_log || new lib.TestManager.Log();\n}\n\n/**\n * Create a new test run object for this test manager.\n *\n * @param {Object} opt_cx An object to be passed to test suite setup(),\n * preamble(), and test cases during this test run. This object is opaque\n * to lib.TestManager.* code. It's entirely up to the test suite what it's\n * used for.\n */\nlib.TestManager.prototype.createTestRun = function(opt_cx) {\n return new lib.TestManager.TestRun(this, opt_cx);\n};\n\n/**\n * Called when a test run associated with this test manager completes.\n *\n * Clients may override this to call an appropriate function.\n */\nlib.TestManager.prototype.onTestRunComplete = function(testRun) {};\n\n/**\n * Called before a test associated with this test manager is run.\n *\n * @param {lib.TestManager.Result} result The result object for the upcoming\n * test.\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.prototype.testPreamble = function(result, cx) {};\n\n/**\n * Called after a test associated with this test manager finishes.\n *\n * @param {lib.TestManager.Result} result The result object for the finished\n * test.\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.prototype.testPostamble = function(result, cx) {};\n\n/**\n * Destination for test case output.\n *\n * Thw API will be the same as the console object. e.g. We support info(),\n * warn(), error(), etc... just like console.info(), etc...\n *\n * @param {Object} opt_console The console object to route all logging through.\n * Should provide saome API as the standard console API.\n */\nlib.TestManager.Log = function(opt_console=console) {\n this.save = false;\n this.data = '';\n this.prefix_ = '';\n this.prefixStack_ = 0;\n\n // Capture all the console entry points in case code at runtime calls these\n // directly. We want to be able to still see things.\n // We also expose the direct API to our callers (e.g. we provide warn()).\n this.console_ = opt_console;\n ['log', 'debug', 'info', 'warn', 'error'].forEach((level) => {\n let msgPrefix = '';\n switch (level) {\n case 'debug':\n case 'warn':\n case 'error':\n msgPrefix = level.toUpperCase() + ': ';\n break;\n }\n\n const oLog = this.console_[level];\n this[level] = this.console_[level] = (...args) => {\n if (this.save)\n this.data += this.prefix_ + msgPrefix + args.join(' ') + '\\n';\n oLog.apply(this.console_, args);\n };\n });\n\n // Wrap/bind the group functions.\n ['group', 'groupCollapsed'].forEach((group) => {\n const oGroup = this.console_[group];\n this[group] = this.console_[group] = (label='') => {\n oGroup(label);\n if (this.save)\n this.data += this.prefix_ + label + '\\n';\n this.prefix_ = ' '.repeat(++this.prefixStack_);\n };\n });\n\n const oGroupEnd = this.console_.groupEnd;\n this.groupEnd = this.console_.groupEnd = () => {\n oGroupEnd();\n this.prefix_ = ' '.repeat(--this.prefixStack_);\n };\n};\n\n/**\n * Returns a new constructor function that will inherit from\n * lib.TestManager.Suite.\n *\n * Use this function to create a new test suite subclass. It will return a\n * properly initialized constructor function for the subclass. You can then\n * override the setup() and preamble() methods if necessary and add test cases\n * to the subclass.\n *\n * var MyTests = new lib.TestManager.Suite('MyTests');\n *\n * MyTests.prototype.setup = function(cx) {\n * // Sets this.size to cx.size if it exists, or the default value of 10\n * // if not.\n * this.setDefault(cx, {size: 10});\n * };\n *\n * MyTests.prototype.preamble = function(result, cx) {\n * // Some tests (even successful ones) may side-effect this list, so\n * // recreate it before every test.\n * this.list = [];\n * for (var i = 0; i < this.size; i++) {\n * this.list[i] = i;\n * }\n * };\n *\n * // Basic synchronous test case.\n * MyTests.addTest('pop-length', function(result, cx) {\n * this.list.pop();\n *\n * // If this assertion fails, the testcase will stop here.\n * result.assertEQ(this.list.length, this.size - 1);\n *\n * // A test must indicate it has passed by calling this method.\n * result.pass();\n * });\n *\n * // Sample asynchronous test case.\n * MyTests.addTest('async-pop-length', function(result, cx) {\n * var self = this;\n *\n * var callback = function() {\n * result.assertEQ(self.list.length, self.size - 1);\n * result.pass();\n * };\n *\n * // Wait 100ms to check the array length for the sake of this example.\n * setTimeout(callback, 100);\n *\n * this.list.pop();\n *\n * // Indicate that this test needs another 200ms to complete.\n * // If the test does not report pass/fail by then, it is considered to\n * // have timed out.\n * result.requestTime(200);\n * });\n *\n * ...\n *\n * @param {string} suiteName The name of the test suite.\n */\nlib.TestManager.Suite = function(suiteName) {\n function ctor(testManager, cx) {\n this.testManager_ = testManager;\n this.suiteName = suiteName;\n\n this.setup(cx);\n }\n\n ctor.suiteName = suiteName;\n ctor.addTest = lib.TestManager.Suite.addTest;\n ctor.disableTest = lib.TestManager.Suite.disableTest;\n ctor.getTest = lib.TestManager.Suite.getTest;\n ctor.getTestList = lib.TestManager.Suite.getTestList;\n ctor.testList_ = [];\n ctor.testMap_ = {};\n ctor.prototype = Object.create(lib.TestManager.Suite.prototype);\n ctor.constructor = lib.TestManager.Suite;\n\n lib.TestManager.Suite.subclasses.push(ctor);\n\n return ctor;\n};\n\n/**\n * List of lib.TestManager.Suite subclasses, in the order they were defined.\n */\nlib.TestManager.Suite.subclasses = [];\n\n/**\n * Add a test to a lib.TestManager.Suite.\n *\n * This method is copied to new subclasses when they are created.\n */\nlib.TestManager.Suite.addTest = function(testName, testFunction) {\n if (testName in this.testMap_)\n throw 'Duplicate test name: ' + testName;\n\n var test = new lib.TestManager.Test(this, testName, testFunction);\n this.testMap_[testName] = test;\n this.testList_.push(test);\n};\n\n/**\n * Defines a disabled test.\n */\nlib.TestManager.Suite.disableTest = function(testName, testFunction) {\n if (testName in this.testMap_)\n throw 'Duplicate test name: ' + testName;\n\n var test = new lib.TestManager.Test(this, testName, testFunction);\n console.log('Disabled test: ' + test.fullName);\n};\n\n/**\n * Get a lib.TestManager.Test instance by name.\n *\n * This method is copied to new subclasses when they are created.\n *\n * @param {string} testName The name of the desired test.\n * @return {lib.TestManager.Test} The requested test, or undefined if it was not\n * found.\n */\nlib.TestManager.Suite.getTest = function(testName) {\n return this.testMap_[testName];\n};\n\n/**\n * Get an array of lib.TestManager.Tests associated with this Suite.\n *\n * This method is copied to new subclasses when they are created.\n */\nlib.TestManager.Suite.getTestList = function() {\n return this.testList_;\n};\n\n/**\n * Set properties on a test suite instance, pulling the property value from\n * the context if it exists and from the defaults dictionary if not.\n *\n * This is intended to be used in your test suite's setup() method to\n * define parameters for the test suite which may be overridden through the\n * context object. For example...\n *\n * MySuite.prototype.setup = function(cx) {\n * this.setDefaults(cx, {size: 10});\n * };\n *\n * If the context object has a 'size' property then this.size will be set to\n * the value of cx.size, otherwise this.size will get a default value of 10.\n *\n * @param {Object} cx The context object for a test run.\n * @param {Object} defaults An object containing name/value pairs to set on\n * this test suite instance. The value listed here will be used if the\n * name is not defined on the context object.\n */\nlib.TestManager.Suite.prototype.setDefaults = function(cx, defaults) {\n for (var k in defaults) {\n this[k] = (k in cx) ? cx[k] : defaults[k];\n }\n};\n\n/**\n * Subclassable method called to set up the test suite.\n *\n * The default implementation of this method is a no-op. If your test suite\n * requires some kind of suite-wide setup, this is the place to do it.\n *\n * It's fine to store state on the test suite instance, that state will be\n * accessible to all tests in the suite. If any test case fails, the entire\n * test suite object will be discarded and a new one will be created for\n * the remaining tests.\n *\n * Any side effects outside of this test suite instance must be idempotent.\n * For example, if you're adding DOM nodes to a document, make sure to first\n * test that they're not already there. If they are, remove them rather than\n * reuse them. You should not count on their state, since they were probably\n * left behind by a failed testcase.\n *\n * Any exception here will abort the remainder of the test run.\n *\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.Suite.prototype.setup = function(cx) {};\n\n/**\n * Subclassable method called to do pre-test set up.\n *\n * The default implementation of this method is a no-op. If your test suite\n * requires some kind of pre-test setup, this is the place to do it.\n *\n * This can be used to avoid a bunch of boilerplate setup/teardown code in\n * this suite's testcases.\n *\n * Any exception here will abort the remainder of the test run.\n *\n * @param {lib.TestManager.Result} result The result object for the upcoming\n * test.\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.Suite.prototype.preamble = function(result, cx) {};\n\n/**\n * Subclassable method called to do post-test tear-down.\n *\n * The default implementation of this method is a no-op. If your test suite\n * requires some kind of pre-test setup, this is the place to do it.\n *\n * This can be used to avoid a bunch of boilerplate setup/teardown code in\n * this suite's testcases.\n *\n * Any exception here will abort the remainder of the test run.\n *\n * @param {lib.TestManager.Result} result The result object for the finished\n * test.\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.Suite.prototype.postamble = function(result, cx) {};\n\n/**\n * Object representing a single test in a test suite.\n *\n * These are created as part of the lib.TestManager.Suite.addTest() method.\n * You should never have to construct one by hand.\n *\n * @param {lib.TestManager.Suite} suiteClass The test suite class containing\n * this test.\n * @param {string} testName The local name of this test case, not including the\n * test suite name.\n * @param {function(lib.TestManager.Result, Object)} testFunction The function\n * to invoke for this test case. This is passed a Result instance and the\n * context object associated with the test run.\n *\n */\nlib.TestManager.Test = function(suiteClass, testName, testFunction) {\n /**\n * The test suite class containing this function.\n */\n this.suiteClass = suiteClass;\n\n /**\n * The local name of this test, not including the test suite name.\n */\n this.testName = testName;\n\n /**\n * The global name of this test, including the test suite name.\n */\n this.fullName = suiteClass.suiteName + '[' + testName + ']';\n\n // The function to call for this test.\n this.testFunction_ = testFunction;\n};\n\n/**\n * Execute this test.\n *\n * This is called by a lib.TestManager.Result instance, as part of a\n * lib.TestManager.TestRun. You should not call it by hand.\n *\n * @param {lib.TestManager.Result} result The result object for the test.\n */\nlib.TestManager.Test.prototype.run = function(result) {\n try {\n // Tests are applied to the parent lib.TestManager.Suite subclass.\n this.testFunction_.apply(result.suite,\n [result, result.testRun.cx]);\n } catch (ex) {\n if (ex instanceof lib.TestManager.Result.TestComplete)\n return;\n\n result.println('Test raised an exception: ' + ex);\n\n if (ex.stack) {\n if (ex.stack instanceof Array) {\n result.println(ex.stack.join('\\n'));\n } else {\n result.println(ex.stack);\n }\n }\n\n result.completeTest_(result.FAILED, false);\n }\n};\n\n/**\n * Used to choose a set of tests and run them.\n *\n * It's slightly more convenient to construct one of these from\n * lib.TestManager.prototype.createTestRun().\n *\n * @param {lib.TestManager} testManager The testManager associated with this\n * TestRun.\n * @param {Object} cx A context to be passed into the tests. This can be used\n * to set parameters for the test suite or individual test cases.\n */\nlib.TestManager.TestRun = function(testManager, cx) {\n /**\n * The associated lib.TestManager instance.\n */\n this.testManager = testManager;\n\n /**\n * Shortcut to the lib.TestManager's log.\n */\n this.log = testManager.log;\n\n /**\n * The test run context. It's entirely up to the test suite and test cases\n * how this is used. It is opaque to lib.TestManager.* classes.\n */\n this.cx = cx || {};\n\n /**\n * The list of test cases that encountered failures.\n */\n this.failures = [];\n\n /**\n * The list of test cases that passed.\n */\n this.passes = [];\n\n /**\n * The time the test run started, or null if it hasn't been started yet.\n */\n this.startDate = null;\n\n /**\n * The time in milliseconds that the test run took to complete, or null if\n * it hasn't completed yet.\n */\n this.duration = null;\n\n /**\n * The most recent result object, or null if the test run hasn't started\n * yet. In order to detect late failures, this is not cleared when the test\n * completes.\n */\n this.currentResult = null;\n\n /**\n * Number of maximum failures. The test run will stop when this number is\n * reached. If 0 or omitted, the entire set of selected tests is run, even\n * if some fail.\n */\n this.maxFailures = 0;\n\n /**\n * True if this test run ended early because of an unexpected condition.\n */\n this.panic = false;\n\n // List of pending test cases.\n this.testQueue_ = [];\n\n};\n\n/**\n * This value can be passed to select() to indicate that all tests should\n * be selected.\n */\nlib.TestManager.TestRun.prototype.ALL_TESTS = lib.f.createEnum('');\n\n/**\n * Add a single test to the test run.\n */\nlib.TestManager.TestRun.prototype.selectTest = function(test) {\n this.testQueue_.push(test);\n};\n\nlib.TestManager.TestRun.prototype.selectSuite = function(\n suiteClass, opt_pattern) {\n var pattern = opt_pattern || this.ALL_TESTS;\n var selectCount = 0;\n var testList = suiteClass.getTestList();\n\n for (var j = 0; j < testList.length; j++) {\n var test = testList[j];\n // Note that we're using \"!==\" rather than \"!=\" so that we're matching\n // the ALL_TESTS String object, rather than the contents of the string.\n if (pattern !== this.ALL_TESTS) {\n if (pattern instanceof RegExp) {\n if (!pattern.test(test.testName))\n continue;\n } else if (test.testName != pattern) {\n continue;\n }\n }\n\n this.selectTest(test);\n selectCount++;\n }\n\n return selectCount;\n};\n\n/**\n * Selects one or more tests to gather results for.\n *\n * Selecting the same test more than once is allowed.\n *\n * @param {string|RegExp} pattern Pattern used to select tests.\n * If TestRun.prototype.ALL_TESTS, all tests are selected.\n * If a string, only the test that exactly matches is selected.\n * If a RegExp, only tests matching the RegExp are added.\n *\n * @return {int} The number of additional tests that have been selected into\n * this TestRun.\n */\nlib.TestManager.TestRun.prototype.selectPattern = function(pattern) {\n var selectCount = 0;\n\n for (var i = 0; i < lib.TestManager.Suite.subclasses.length; i++) {\n selectCount += this.selectSuite(lib.TestManager.Suite.subclasses[i],\n pattern);\n }\n\n if (!selectCount) {\n this.log.warn('No tests matched selection criteria: ' + pattern);\n }\n\n return selectCount;\n};\n\n/**\n * Hooked up to window.onerror during a test run in order to catch exceptions\n * that would otherwise go uncaught.\n */\nlib.TestManager.TestRun.prototype.onUncaughtException_ = function(\n message, file, line) {\n\n if (message.indexOf('Uncaught lib.TestManager.Result.TestComplete') == 0 ||\n message.indexOf('status: passed') != -1) {\n // This is a result.pass() or result.fail() call from a callback. We're\n // already going to deal with it as part of the completeTest_() call\n // that raised it. We can safely squelch this error message.\n return true;\n }\n\n if (!this.currentResult)\n return;\n\n if (message == 'Uncaught ' + this.currentResult.expectedErrorMessage_) {\n // Test cases may need to raise an unhandled exception as part of the test.\n return;\n }\n\n var when = 'during';\n\n if (this.currentResult.status != this.currentResult.PENDING)\n when = 'after';\n\n this.log.error('Uncaught exception ' + when + ' test case: ' +\n this.currentResult.test.fullName);\n this.log.error(message + ', ' + file + ':' + line);\n\n this.currentResult.completeTest_(this.currentResult.FAILED, false);\n\n return false;\n};\n\n/**\n * Called to when this test run has completed.\n *\n * This method typically re-runs itself asynchronously, in order to let the\n * DOM stabilize and short-term timeouts to complete before declaring the\n * test run complete.\n *\n * @param {boolean} opt_skipTimeout If true, the timeout is skipped and the\n * test run is completed immediately. This should only be used from within\n * this function.\n */\nlib.TestManager.TestRun.prototype.onTestRunComplete_ = function(\n opt_skipTimeout) {\n if (!opt_skipTimeout) {\n // The final test may have left a lingering setTimeout(..., 0), or maybe\n // poked at the DOM in a way that will trigger a event to fire at the end\n // of this stack, so we give things a chance to settle down before our\n // final cleanup...\n setTimeout(this.onTestRunComplete_.bind(this), 0, true);\n return;\n }\n\n this.duration = (new Date()) - this.startDate;\n\n this.log.groupEnd();\n this.log.info(this.passes.length + ' passed, ' +\n this.failures.length + ' failed, ' +\n this.msToSeconds_(this.duration));\n\n this.summarize();\n\n window.onerror = null;\n\n this.testManager.onTestRunComplete(this);\n};\n\n/**\n * Called by the lib.TestManager.Result object when a test completes.\n *\n * @param {lib.TestManager.Result} result The result object which has just\n * completed.\n */\nlib.TestManager.TestRun.prototype.onResultComplete = function(result) {\n try {\n this.testManager.testPostamble(result, this.cx);\n result.suite.postamble(result, this.ctx);\n } catch (ex) {\n this.log.error('Unexpected exception in postamble: ' +\n (ex.stack ? ex.stack : ex));\n this.panic = true;\n }\n\n if (result.status != result.PASSED)\n this.log.error(result.status);\n else if (result.duration > 500)\n this.log.warn('Slow test took ' + this.msToSeconds_(result.duration));\n this.log.groupEnd();\n\n if (result.status == result.FAILED) {\n this.failures.push(result);\n this.currentSuite = null;\n } else if (result.status == result.PASSED) {\n this.passes.push(result);\n } else {\n this.log.error('Unknown result status: ' + result.test.fullName + ': ' +\n result.status);\n return this.panic = true;\n }\n\n this.runNextTest_();\n};\n\n/**\n * Called by the lib.TestManager.Result object when a test which has already\n * completed reports another completion.\n *\n * This is usually indicative of a buggy testcase. It is probably reporting a\n * result on exit and then again from an asynchronous callback.\n *\n * It may also be the case that the last act of the testcase causes a DOM change\n * which triggers some event to run after the test returns. If the event\n * handler reports a failure or raises an uncaught exception, the test will\n * fail even though it has already completed.\n *\n * In any case, re-completing a test ALWAYS moves it into the failure pile.\n *\n * @param {lib.TestManager.Result} result The result object which has just\n * completed.\n * @param {string} lateStatus The status that the test attempted to record this\n * time around.\n */\nlib.TestManager.TestRun.prototype.onResultReComplete = function(\n result, lateStatus) {\n this.log.error('Late complete for test: ' + result.test.fullName + ': ' +\n lateStatus);\n\n // Consider any late completion a failure, even if it's a double-pass, since\n // it's a misuse of the testing API.\n var index = this.passes.indexOf(result);\n if (index >= 0) {\n this.passes.splice(index, 1);\n this.failures.push(result);\n }\n};\n\n/**\n * Run the next test in the queue.\n */\nlib.TestManager.TestRun.prototype.runNextTest_ = function() {\n if (this.panic || !this.testQueue_.length)\n return this.onTestRunComplete_();\n\n if (this.maxFailures && this.failures.length >= this.maxFailures) {\n this.log.error('Maximum failure count reached, aborting test run.');\n return this.onTestRunComplete_();\n }\n\n // Peek at the top test first. We remove it later just before it's about\n // to run, so that we don't disturb the incomplete test count in the\n // event that we fail before running it.\n var test = this.testQueue_[0];\n var suite = this.currentResult ? this.currentResult.suite : null;\n\n try {\n if (!suite || !(suite instanceof test.suiteClass)) {\n if (suite)\n this.log.groupEnd();\n this.log.group(test.suiteClass.suiteName);\n suite = new test.suiteClass(this.testManager, this.cx);\n }\n } catch (ex) {\n // If test suite setup fails we're not even going to try to run the tests.\n this.log.error('Exception during setup: ' + (ex.stack ? ex.stack : ex));\n this.panic = true;\n this.onTestRunComplete_();\n return;\n }\n\n try {\n this.log.group(test.testName);\n\n this.currentResult = new lib.TestManager.Result(this, suite, test);\n this.testManager.testPreamble(this.currentResult, this.cx);\n suite.preamble(this.currentResult, this.cx);\n\n this.testQueue_.shift();\n } catch (ex) {\n this.log.error('Unexpected exception during test preamble: ' +\n (ex.stack ? ex.stack : ex));\n this.log.groupEnd();\n\n this.panic = true;\n this.onTestRunComplete_();\n return;\n }\n\n try {\n this.currentResult.run();\n } catch (ex) {\n // Result.run() should catch test exceptions and turn them into failures.\n // If we got here, it means there is trouble in the testing framework.\n this.log.error('Unexpected exception during test run: ' +\n (ex.stack ? ex.stack : ex));\n this.panic = true;\n }\n};\n\n/**\n * Run the selected list of tests.\n *\n * Some tests may need to run asynchronously, so you cannot assume the run is\n * complete when this function returns. Instead, pass in a function to be\n * called back when the run has completed.\n *\n * This function will log the results of the test run as they happen into the\n * log defined by the associated lib.TestManager. By default this is\n * console.log, which can be viewed in the JavaScript console of most browsers.\n *\n * The browser state is determined by the last test to run. We intentionally\n * don't do any cleanup so that you can inspect the state of a failed test, or\n * leave the browser ready for manual testing.\n *\n * Any failures in lib.TestManager.* code or test suite setup or test case\n * preamble will cause the test run to abort.\n */\nlib.TestManager.TestRun.prototype.run = function() {\n this.log.info('Running ' + this.testQueue_.length + ' test(s)');\n\n window.onerror = this.onUncaughtException_.bind(this);\n this.startDate = new Date();\n this.runNextTest_();\n};\n\n/**\n * Format milliseconds as fractional seconds.\n */\nlib.TestManager.TestRun.prototype.msToSeconds_ = function(ms) {\n var secs = (ms / 1000).toFixed(2);\n return secs + 's';\n};\n\n/**\n * Log the current result summary.\n */\nlib.TestManager.TestRun.prototype.summarize = function() {\n if (this.failures.length) {\n for (var i = 0; i < this.failures.length; i++) {\n this.log.error('FAILED: ' + this.failures[i].test.fullName);\n }\n }\n\n if (this.testQueue_.length) {\n this.log.warn('Test run incomplete: ' + this.testQueue_.length +\n ' test(s) were not run.');\n }\n};\n\n/**\n * Record of the result of a single test.\n *\n * These are constructed during a test run, you shouldn't have to make one\n * on your own.\n *\n * An instance of this class is passed in to each test function. It can be\n * used to add messages to the test log, to record a test pass/fail state, to\n * test assertions, or to create exception-proof wrappers for callback\n * functions.\n *\n * @param {lib.TestManager.TestRun} testRun The TestRun instance associated with\n * this result.\n * @param {lib.TestManager.Suit} suite The Suite containing the test we're\n * collecting this result for.\n * @param {lib.TestManager.Test} test The test we're collecting this result for.\n */\nlib.TestManager.Result = function(testRun, suite, test) {\n /**\n * The TestRun instance associated with this result.\n */\n this.testRun = testRun;\n\n /**\n * The Suite containing the test we're collecting this result for.\n */\n this.suite = suite;\n\n /**\n * The test we're collecting this result for.\n */\n this.test = test;\n\n /**\n * The time we started to collect this result, or null if we haven't started.\n */\n this.startDate = null;\n\n /**\n * The time in milliseconds that the test took to complete, or null if\n * it hasn't completed yet.\n */\n this.duration = null;\n\n /**\n * The current status of this test result.\n */\n this.status = this.PENDING;\n\n // An error message that the test case is expected to generate.\n this.expectedErrorMessage_ = null;\n};\n\n/**\n * Possible values for this.status.\n */\nlib.TestManager.Result.prototype.PENDING = 'pending';\nlib.TestManager.Result.prototype.FAILED = 'FAILED';\nlib.TestManager.Result.prototype.PASSED = 'passed';\n\n/**\n * Exception thrown when a test completes (pass or fail), to ensure no more of\n * the test is run.\n */\nlib.TestManager.Result.TestComplete = function(result) {\n this.result = result;\n};\n\nlib.TestManager.Result.TestComplete.prototype.toString = function() {\n return 'lib.TestManager.Result.TestComplete: ' + this.result.test.fullName +\n ', status: ' + this.result.status;\n}\n\n/**\n * Start the test associated with this result.\n */\nlib.TestManager.Result.prototype.run = function() {\n var self = this;\n\n this.startDate = new Date();\n this.test.run(this);\n\n if (this.status == this.PENDING && !this.timeout_) {\n this.println('Test did not return a value and did not request more time.');\n this.completeTest_(this.FAILED, false);\n }\n};\n\n/**\n * Unhandled error message this test expects to generate.\n *\n * This must be the exact string that would appear in the JavaScript console,\n * minus the 'Uncaught ' prefix.\n *\n * The test case does *not* automatically fail if the error message is not\n * encountered.\n */\nlib.TestManager.Result.prototype.expectErrorMessage = function(str) {\n this.expectedErrorMessage_ = str;\n};\n\n/**\n * Function called when a test times out.\n */\nlib.TestManager.Result.prototype.onTimeout_ = function() {\n this.timeout_ = null;\n\n if (this.status != this.PENDING)\n return;\n\n this.println('Test timed out.');\n this.completeTest_(this.FAILED, false);\n};\n\n/**\n * Indicate that a test case needs more time to complete.\n *\n * Before a test case returns it must report a pass/fail result, or request more\n * time to do so.\n *\n * If a test does not report pass/fail before the time expires it will\n * be reported as a timeout failure. Any late pass/fails will be noted in the\n * test log, but will not affect the final result of the test.\n *\n * Test cases may call requestTime more than once. If you have a few layers\n * of asynchronous API to go through, you should call this once per layer with\n * an estimate of how long each callback will take to complete.\n *\n * @param {int} ms Number of milliseconds requested.\n */\nlib.TestManager.Result.prototype.requestTime = function(ms) {\n if (this.timeout_)\n clearTimeout(this.timeout_);\n\n this.timeout_ = setTimeout(this.onTimeout_.bind(this), ms);\n};\n\n/**\n * Report the completion of a test.\n *\n * @param {string} status The status of the test case.\n * @param {boolean} opt_throw Optional boolean indicating whether or not\n * to throw the TestComplete exception.\n */\nlib.TestManager.Result.prototype.completeTest_ = function(status, opt_throw) {\n if (this.status == this.PENDING) {\n this.duration = (new Date()) - this.startDate;\n this.status = status;\n\n this.testRun.onResultComplete(this);\n } else {\n this.testRun.onResultReComplete(this, status);\n }\n\n if (arguments.length < 2 || opt_throw)\n throw new lib.TestManager.Result.TestComplete(this);\n};\n\n/**\n * Check that two arrays are equal.\n */\nlib.TestManager.Result.prototype.arrayEQ_ = function(actual, expected) {\n if (!actual || !expected)\n return (!actual && !expected);\n\n if (actual.length != expected.length)\n return false;\n\n for (var i = 0; i < actual.length; ++i)\n if (actual[i] != expected[i])\n return false;\n\n return true;\n};\n\n/**\n * Assert that an actual value is exactly equal to the expected value.\n *\n * This uses the JavaScript '===' operator in order to avoid type coercion.\n *\n * If the assertion fails, the test is marked as a failure and a TestCompleted\n * exception is thrown.\n *\n * @param {*} actual The actual measured value.\n * @param {*} expected The value expected.\n * @param {string} opt_name An optional name used to identify this\n * assertion in the test log. If omitted it will be the file:line\n * of the caller.\n */\nlib.TestManager.Result.prototype.assertEQ = function(\n actual, expected, opt_name) {\n // Utility function to pretty up the log.\n function format(value) {\n if (typeof value == 'number')\n return value;\n\n var str = String(value);\n var ary = str.split('\\n').map(function (e) { return JSON.stringify(e) });\n if (ary.length > 1) {\n // If the string has newlines, start it off on its own line so that\n // it's easier to compare against another string with newlines.\n return '\\n' + ary.join('\\n');\n } else {\n return ary.join('\\n');\n }\n }\n\n if (actual === expected)\n return;\n\n // Deal with common object types since JavaScript can't.\n if (expected instanceof Array)\n if (this.arrayEQ_(actual, expected))\n return;\n\n var name = opt_name ? '[' + opt_name + ']' : '';\n\n this.fail('assertEQ' + name + ': ' + this.getCallerLocation_(1) + ': ' +\n format(actual) + ' !== ' + format(expected));\n};\n\n/**\n * Assert that a value is true.\n *\n * This uses the JavaScript '===' operator in order to avoid type coercion.\n * The must be the boolean value `true`, not just some \"truish\" value.\n *\n * If the assertion fails, the test is marked as a failure and a TestCompleted\n * exception is thrown.\n *\n * @param {boolean} actual The actual measured value.\n * @param {string} opt_name An optional name used to identify this\n * assertion in the test log. If omitted it will be the file:line\n * of the caller.\n */\nlib.TestManager.Result.prototype.assert = function(actual, opt_name) {\n if (actual === true)\n return;\n\n var name = opt_name ? '[' + opt_name + ']' : '';\n\n this.fail('assert' + name + ': ' + this.getCallerLocation_(1) + ': ' +\n String(actual));\n};\n\n/**\n * Return the filename:line of a calling stack frame.\n *\n * This uses a dirty hack. It throws an exception, catches it, and examines\n * the stack property of the caught exception.\n *\n * @param {int} frameIndex The stack frame to return. 0 is the frame that\n * called this method, 1 is its caller, and so on.\n * @return {string} A string of the format \"filename:linenumber\".\n */\nlib.TestManager.Result.prototype.getCallerLocation_ = function(frameIndex) {\n try {\n throw new Error();\n } catch (ex) {\n var frame = ex.stack.split('\\n')[frameIndex + 2];\n var ary = frame.match(/([^/]+:\\d+):\\d+\\)?$/);\n return ary ? ary[1] : '???';\n }\n};\n\n/**\n * Write a message to the result log.\n */\nlib.TestManager.Result.prototype.println = function(message) {\n this.testRun.log.info(message);\n};\n\n/**\n * Mark a failed test and exit out of the rest of the test.\n *\n * This will throw a TestCompleted exception, causing the current test to stop.\n *\n * @param {string} opt_message Optional message to add to the log.\n */\nlib.TestManager.Result.prototype.fail = function(opt_message) {\n if (arguments.length)\n this.println(opt_message);\n\n this.completeTest_(this.FAILED, true);\n};\n\n/**\n * Mark a passed test and exit out of the rest of the test.\n *\n * This will throw a TestCompleted exception, causing the current test to stop.\n */\nlib.TestManager.Result.prototype.pass = function() {\n this.completeTest_(this.PASSED, true);\n};\n// SOURCE FILE: libdot/js/lib_utf8.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n// TODO(davidben): When the string encoding API is implemented,\n// replace this with the native in-browser implementation.\n//\n// https://wiki.whatwg.org/wiki/StringEncoding\n// https://encoding.spec.whatwg.org/\n\n/**\n * A stateful UTF-8 decoder.\n */\nlib.UTF8Decoder = function() {\n // The number of bytes left in the current sequence.\n this.bytesLeft = 0;\n // The in-progress code point being decoded, if bytesLeft > 0.\n this.codePoint = 0;\n // The lower bound on the final code point, if bytesLeft > 0.\n this.lowerBound = 0;\n};\n\n/**\n * Decodes a some UTF-8 data, taking into account state from previous\n * data streamed through the encoder.\n *\n * @param {String} str data to decode, represented as a JavaScript\n * String with each code unit representing a byte between 0x00 to\n * 0xFF.\n * @return {String} The data decoded into a JavaScript UTF-16 string.\n */\nlib.UTF8Decoder.prototype.decode = function(str) {\n var ret = '';\n for (var i = 0; i < str.length; i++) {\n var c = str.charCodeAt(i);\n if (this.bytesLeft == 0) {\n if (c <= 0x7F) {\n ret += str.charAt(i);\n } else if (0xC0 <= c && c <= 0xDF) {\n this.codePoint = c - 0xC0;\n this.bytesLeft = 1;\n this.lowerBound = 0x80;\n } else if (0xE0 <= c && c <= 0xEF) {\n this.codePoint = c - 0xE0;\n this.bytesLeft = 2;\n this.lowerBound = 0x800;\n } else if (0xF0 <= c && c <= 0xF7) {\n this.codePoint = c - 0xF0;\n this.bytesLeft = 3;\n this.lowerBound = 0x10000;\n } else if (0xF8 <= c && c <= 0xFB) {\n this.codePoint = c - 0xF8;\n this.bytesLeft = 4;\n this.lowerBound = 0x200000;\n } else if (0xFC <= c && c <= 0xFD) {\n this.codePoint = c - 0xFC;\n this.bytesLeft = 5;\n this.lowerBound = 0x4000000;\n } else {\n ret += '\\ufffd';\n }\n } else {\n if (0x80 <= c && c <= 0xBF) {\n this.bytesLeft--;\n this.codePoint = (this.codePoint << 6) + (c - 0x80);\n if (this.bytesLeft == 0) {\n // Got a full sequence. Check if it's within bounds and\n // filter out surrogate pairs.\n var codePoint = this.codePoint;\n if (codePoint < this.lowerBound\n || (0xD800 <= codePoint && codePoint <= 0xDFFF)\n || codePoint > 0x10FFFF) {\n ret += '\\ufffd';\n } else {\n // Encode as UTF-16 in the output.\n if (codePoint < 0x10000) {\n ret += String.fromCharCode(codePoint);\n } else {\n // Surrogate pair.\n codePoint -= 0x10000;\n ret += String.fromCharCode(\n 0xD800 + ((codePoint >>> 10) & 0x3FF),\n 0xDC00 + (codePoint & 0x3FF));\n }\n }\n }\n } else {\n // Too few bytes in multi-byte sequence. Rewind stream so we\n // don't lose the next byte.\n ret += '\\ufffd';\n this.bytesLeft = 0;\n i--;\n }\n }\n }\n return ret;\n};\n\n/**\n * Decodes UTF-8 data. This is a convenience function for when all the\n * data is already known.\n *\n * @param {String} str data to decode, represented as a JavaScript\n * String with each code unit representing a byte between 0x00 to\n * 0xFF.\n * @return {String} The data decoded into a JavaScript UTF-16 string.\n */\nlib.decodeUTF8 = function(utf8) {\n return (new lib.UTF8Decoder()).decode(utf8);\n};\n\n/**\n * Encodes a UTF-16 string into UTF-8.\n *\n * TODO(davidben): Do we need a stateful version of this that can\n * handle a surrogate pair split in two calls? What happens if a\n * keypress event would have contained a character outside the BMP?\n *\n * @param {String} str The string to encode.\n * @return {String} The string encoded as UTF-8, as a JavaScript\n * string with bytes represented as code units from 0x00 to 0xFF.\n */\nlib.encodeUTF8 = function(str) {\n var ret = '';\n for (var i = 0; i < str.length; i++) {\n // Get a unicode code point out of str.\n var c = str.charCodeAt(i);\n if (0xDC00 <= c && c <= 0xDFFF) {\n c = 0xFFFD;\n } else if (0xD800 <= c && c <= 0xDBFF) {\n if (i+1 < str.length) {\n var d = str.charCodeAt(i+1);\n if (0xDC00 <= d && d <= 0xDFFF) {\n // Swallow a surrogate pair.\n c = 0x10000 + ((c & 0x3FF) << 10) + (d & 0x3FF);\n i++;\n } else {\n c = 0xFFFD;\n }\n } else {\n c = 0xFFFD;\n }\n }\n\n // Encode c in UTF-8.\n var bytesLeft;\n if (c <= 0x7F) {\n ret += str.charAt(i);\n continue;\n } else if (c <= 0x7FF) {\n ret += String.fromCharCode(0xC0 | (c >>> 6));\n bytesLeft = 1;\n } else if (c <= 0xFFFF) {\n ret += String.fromCharCode(0xE0 | (c >>> 12));\n bytesLeft = 2;\n } else /* if (c <= 0x10FFFF) */ {\n ret += String.fromCharCode(0xF0 | (c >>> 18));\n bytesLeft = 3;\n }\n\n while (bytesLeft > 0) {\n bytesLeft--;\n ret += String.fromCharCode(0x80 | ((c >>> (6 * bytesLeft)) & 0x3F));\n }\n }\n return ret;\n};\n// SOURCE FILE: libdot/third_party/wcwidth/lib_wc.js\n// Copyright (c) 2014 The Chromium OS Authors. All rights reserved.\n// Use of lib.wc source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * This JavaScript library is ported from the wcwidth.js module of node.js.\n * The original implementation can be found at:\n * https://npmjs.org/package/wcwidth.js\n */\n\n/**\n * JavaScript porting of Markus Kuhn's wcwidth() implementation\n *\n * The following explanation comes from the original C implementation:\n *\n * This is an implementation of wcwidth() and wcswidth() (defined in\n * IEEE Std 1002.1-2001) for Unicode.\n *\n * http://www.opengroup.org/onlinepubs/007904975/functions/wcwidth.html\n * http://www.opengroup.org/onlinepubs/007904975/functions/wcswidth.html\n *\n * In fixed-width output devices, Latin characters all occupy a single\n * \"cell\" position of equal width, whereas ideographic CJK characters\n * occupy two such cells. Interoperability between terminal-line\n * applications and (teletype-style) character terminals using the\n * UTF-8 encoding requires agreement on which character should advance\n * the cursor by how many cell positions. No established formal\n * standards exist at present on which Unicode character shall occupy\n * how many cell positions on character terminals. These routines are\n * a first attempt of defining such behavior based on simple rules\n * applied to data provided by the Unicode Consortium.\n *\n * For some graphical characters, the Unicode standard explicitly\n * defines a character-cell width via the definition of the East Asian\n * FullWidth (F), Wide (W), Half-width (H), and Narrow (Na) classes.\n * In all these cases, there is no ambiguity about which width a\n * terminal shall use. For characters in the East Asian Ambiguous (A)\n * class, the width choice depends purely on a preference of backward\n * compatibility with either historic CJK or Western practice.\n * Choosing single-width for these characters is easy to justify as\n * the appropriate long-term solution, as the CJK practice of\n * displaying these characters as double-width comes from historic\n * implementation simplicity (8-bit encoded characters were displayed\n * single-width and 16-bit ones double-width, even for Greek,\n * Cyrillic, etc.) and not any typographic considerations.\n *\n * Much less clear is the choice of width for the Not East Asian\n * (Neutral) class. Existing practice does not dictate a width for any\n * of these characters. It would nevertheless make sense\n * typographically to allocate two character cells to characters such\n * as for instance EM SPACE or VOLUME INTEGRAL, which cannot be\n * represented adequately with a single-width glyph. The following\n * routines at present merely assign a single-cell width to all\n * neutral characters, in the interest of simplicity. This is not\n * entirely satisfactory and should be reconsidered before\n * establishing a formal standard in lib.wc area. At the moment, the\n * decision which Not East Asian (Neutral) characters should be\n * represented by double-width glyphs cannot yet be answered by\n * applying a simple rule from the Unicode database content. Setting\n * up a proper standard for the behavior of UTF-8 character terminals\n * will require a careful analysis not only of each Unicode character,\n * but also of each presentation form, something the author of these\n * routines has avoided to do so far.\n *\n * http://www.unicode.org/unicode/reports/tr11/\n *\n * Markus Kuhn -- 2007-05-26 (Unicode 5.0)\n *\n * Permission to use, copy, modify, and distribute lib.wc software\n * for any purpose and without fee is hereby granted. The author\n * disclaims all warranties with regard to lib.wc software.\n *\n * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c\n */\n\n/**\n * The following function defines the column width of an ISO 10646 character\n * as follows:\n *\n * - The null character (U+0000) has a column width of 0.\n * - Other C0/C1 control characters and DEL will lead to a return value of -1.\n * - Non-spacing and enclosing combining characters (general category code Mn\n * or Me in the Unicode database) have a column width of 0.\n * - SOFT HYPHEN (U+00AD) has a column width of 1.\n * - Other format characters (general category code Cf in the Unicode database)\n * and ZERO WIDTH SPACE (U+200B) have a column width of 0.\n * - Hangul Jamo medial vowels and final consonants (U+1160-U+11FF) have a\n * column width of 0.\n * - Spacing characters in the East Asian Wide (W) or East Asian Full-width (F)\n * category as defined in Unicode Technical Report #11 have a column width of\n * 2.\n * - East Asian Ambiguous characters are taken into account if\n * regardCjkAmbiguous flag is enabled. They have a column width of 2.\n * - All remaining characters (including all printable ISO 8859-1 and WGL4\n * characters, Unicode control characters, etc.) have a column width of 1.\n *\n * This implementation assumes that characters are encoded in ISO 10646.\n */\n\nlib.wc = {};\n\n// Width of a nul character.\nlib.wc.nulWidth = 0;\n\n// Width of a control character.\nlib.wc.controlWidth = 0;\n\n// Flag whether to consider East Asian Ambiguous characters.\nlib.wc.regardCjkAmbiguous = false;\n\n// Width of an East Asian Ambiguous character.\nlib.wc.cjkAmbiguousWidth = 2;\n\n// Sorted list of non-overlapping intervals of non-spacing characters\n// generated by \"uniset +cat=Me +cat=Mn +cat=Cf -00AD +1160-11FF +200B c\"\nlib.wc.combining = [\n [ 0x0300, 0x036F ], [ 0x0483, 0x0486 ], [ 0x0488, 0x0489 ],\n [ 0x0591, 0x05BD ], [ 0x05BF, 0x05BF ], [ 0x05C1, 0x05C2 ],\n [ 0x05C4, 0x05C5 ], [ 0x05C7, 0x05C7 ], [ 0x0600, 0x0603 ],\n [ 0x0610, 0x0615 ], [ 0x064B, 0x065E ], [ 0x0670, 0x0670 ],\n [ 0x06D6, 0x06E4 ], [ 0x06E7, 0x06E8 ], [ 0x06EA, 0x06ED ],\n [ 0x070F, 0x070F ], [ 0x0711, 0x0711 ], [ 0x0730, 0x074A ],\n [ 0x07A6, 0x07B0 ], [ 0x07EB, 0x07F3 ], [ 0x0901, 0x0902 ],\n [ 0x093C, 0x093C ], [ 0x0941, 0x0948 ], [ 0x094D, 0x094D ],\n [ 0x0951, 0x0954 ], [ 0x0962, 0x0963 ], [ 0x0981, 0x0981 ],\n [ 0x09BC, 0x09BC ], [ 0x09C1, 0x09C4 ], [ 0x09CD, 0x09CD ],\n [ 0x09E2, 0x09E3 ], [ 0x0A01, 0x0A02 ], [ 0x0A3C, 0x0A3C ],\n [ 0x0A41, 0x0A42 ], [ 0x0A47, 0x0A48 ], [ 0x0A4B, 0x0A4D ],\n [ 0x0A70, 0x0A71 ], [ 0x0A81, 0x0A82 ], [ 0x0ABC, 0x0ABC ],\n [ 0x0AC1, 0x0AC5 ], [ 0x0AC7, 0x0AC8 ], [ 0x0ACD, 0x0ACD ],\n [ 0x0AE2, 0x0AE3 ], [ 0x0B01, 0x0B01 ], [ 0x0B3C, 0x0B3C ],\n [ 0x0B3F, 0x0B3F ], [ 0x0B41, 0x0B43 ], [ 0x0B4D, 0x0B4D ],\n [ 0x0B56, 0x0B56 ], [ 0x0B82, 0x0B82 ], [ 0x0BC0, 0x0BC0 ],\n [ 0x0BCD, 0x0BCD ], [ 0x0C3E, 0x0C40 ], [ 0x0C46, 0x0C48 ],\n [ 0x0C4A, 0x0C4D ], [ 0x0C55, 0x0C56 ], [ 0x0CBC, 0x0CBC ],\n [ 0x0CBF, 0x0CBF ], [ 0x0CC6, 0x0CC6 ], [ 0x0CCC, 0x0CCD ],\n [ 0x0CE2, 0x0CE3 ], [ 0x0D41, 0x0D43 ], [ 0x0D4D, 0x0D4D ],\n [ 0x0DCA, 0x0DCA ], [ 0x0DD2, 0x0DD4 ], [ 0x0DD6, 0x0DD6 ],\n [ 0x0E31, 0x0E31 ], [ 0x0E34, 0x0E3A ], [ 0x0E47, 0x0E4E ],\n [ 0x0EB1, 0x0EB1 ], [ 0x0EB4, 0x0EB9 ], [ 0x0EBB, 0x0EBC ],\n [ 0x0EC8, 0x0ECD ], [ 0x0F18, 0x0F19 ], [ 0x0F35, 0x0F35 ],\n [ 0x0F37, 0x0F37 ], [ 0x0F39, 0x0F39 ], [ 0x0F71, 0x0F7E ],\n [ 0x0F80, 0x0F84 ], [ 0x0F86, 0x0F87 ], [ 0x0F90, 0x0F97 ],\n [ 0x0F99, 0x0FBC ], [ 0x0FC6, 0x0FC6 ], [ 0x102D, 0x1030 ],\n [ 0x1032, 0x1032 ], [ 0x1036, 0x1037 ], [ 0x1039, 0x1039 ],\n [ 0x1058, 0x1059 ], [ 0x1160, 0x11FF ], [ 0x135F, 0x135F ],\n [ 0x1712, 0x1714 ], [ 0x1732, 0x1734 ], [ 0x1752, 0x1753 ],\n [ 0x1772, 0x1773 ], [ 0x17B4, 0x17B5 ], [ 0x17B7, 0x17BD ],\n [ 0x17C6, 0x17C6 ], [ 0x17C9, 0x17D3 ], [ 0x17DD, 0x17DD ],\n [ 0x180B, 0x180D ], [ 0x18A9, 0x18A9 ], [ 0x1920, 0x1922 ],\n [ 0x1927, 0x1928 ], [ 0x1932, 0x1932 ], [ 0x1939, 0x193B ],\n [ 0x1A17, 0x1A18 ], [ 0x1B00, 0x1B03 ], [ 0x1B34, 0x1B34 ],\n [ 0x1B36, 0x1B3A ], [ 0x1B3C, 0x1B3C ], [ 0x1B42, 0x1B42 ],\n [ 0x1B6B, 0x1B73 ], [ 0x1DC0, 0x1DCA ], [ 0x1DFE, 0x1DFF ],\n [ 0x200B, 0x200F ], [ 0x202A, 0x202E ], [ 0x2060, 0x2063 ],\n [ 0x206A, 0x206F ], [ 0x20D0, 0x20EF ], [ 0x302A, 0x302F ],\n [ 0x3099, 0x309A ], [ 0xA806, 0xA806 ], [ 0xA80B, 0xA80B ],\n [ 0xA825, 0xA826 ], [ 0xFB1E, 0xFB1E ], [ 0xFE00, 0xFE0F ],\n [ 0xFE20, 0xFE23 ], [ 0xFEFF, 0xFEFF ], [ 0xFFF9, 0xFFFB ],\n [ 0x10A01, 0x10A03 ], [ 0x10A05, 0x10A06 ], [ 0x10A0C, 0x10A0F ],\n [ 0x10A38, 0x10A3A ], [ 0x10A3F, 0x10A3F ], [ 0x1D167, 0x1D169 ],\n [ 0x1D173, 0x1D182 ], [ 0x1D185, 0x1D18B ], [ 0x1D1AA, 0x1D1AD ],\n [ 0x1D242, 0x1D244 ], [ 0xE0001, 0xE0001 ], [ 0xE0020, 0xE007F ],\n [ 0xE0100, 0xE01EF ]\n];\n\n// Sorted list of non-overlapping intervals of East Asian Ambiguous characters\n// generated by \"uniset +WIDTH-A -cat=Me -cat=Mn -cat=Cf c\"\nlib.wc.ambiguous = [\n [ 0x00A1, 0x00A1 ], [ 0x00A4, 0x00A4 ], [ 0x00A7, 0x00A8 ],\n [ 0x00AA, 0x00AA ], [ 0x00AE, 0x00AE ], [ 0x00B0, 0x00B4 ],\n [ 0x00B6, 0x00BA ], [ 0x00BC, 0x00BF ], [ 0x00C6, 0x00C6 ],\n [ 0x00D0, 0x00D0 ], [ 0x00D7, 0x00D8 ], [ 0x00DE, 0x00E1 ],\n [ 0x00E6, 0x00E6 ], [ 0x00E8, 0x00EA ], [ 0x00EC, 0x00ED ],\n [ 0x00F0, 0x00F0 ], [ 0x00F2, 0x00F3 ], [ 0x00F7, 0x00FA ],\n [ 0x00FC, 0x00FC ], [ 0x00FE, 0x00FE ], [ 0x0101, 0x0101 ],\n [ 0x0111, 0x0111 ], [ 0x0113, 0x0113 ], [ 0x011B, 0x011B ],\n [ 0x0126, 0x0127 ], [ 0x012B, 0x012B ], [ 0x0131, 0x0133 ],\n [ 0x0138, 0x0138 ], [ 0x013F, 0x0142 ], [ 0x0144, 0x0144 ],\n [ 0x0148, 0x014B ], [ 0x014D, 0x014D ], [ 0x0152, 0x0153 ],\n [ 0x0166, 0x0167 ], [ 0x016B, 0x016B ], [ 0x01CE, 0x01CE ],\n [ 0x01D0, 0x01D0 ], [ 0x01D2, 0x01D2 ], [ 0x01D4, 0x01D4 ],\n [ 0x01D6, 0x01D6 ], [ 0x01D8, 0x01D8 ], [ 0x01DA, 0x01DA ],\n [ 0x01DC, 0x01DC ], [ 0x0251, 0x0251 ], [ 0x0261, 0x0261 ],\n [ 0x02C4, 0x02C4 ], [ 0x02C7, 0x02C7 ], [ 0x02C9, 0x02CB ],\n [ 0x02CD, 0x02CD ], [ 0x02D0, 0x02D0 ], [ 0x02D8, 0x02DB ],\n [ 0x02DD, 0x02DD ], [ 0x02DF, 0x02DF ], [ 0x0391, 0x03A1 ],\n [ 0x03A3, 0x03A9 ], [ 0x03B1, 0x03C1 ], [ 0x03C3, 0x03C9 ],\n [ 0x0401, 0x0401 ], [ 0x0410, 0x044F ], [ 0x0451, 0x0451 ],\n [ 0x2010, 0x2010 ], [ 0x2013, 0x2016 ], [ 0x2018, 0x2019 ],\n [ 0x201C, 0x201D ], [ 0x2020, 0x2022 ], [ 0x2024, 0x2027 ],\n [ 0x2030, 0x2030 ], [ 0x2032, 0x2033 ], [ 0x2035, 0x2035 ],\n [ 0x203B, 0x203B ], [ 0x203E, 0x203E ], [ 0x2074, 0x2074 ],\n [ 0x207F, 0x207F ], [ 0x2081, 0x2084 ], [ 0x20AC, 0x20AC ],\n [ 0x2103, 0x2103 ], [ 0x2105, 0x2105 ], [ 0x2109, 0x2109 ],\n [ 0x2113, 0x2113 ], [ 0x2116, 0x2116 ], [ 0x2121, 0x2122 ],\n [ 0x2126, 0x2126 ], [ 0x212B, 0x212B ], [ 0x2153, 0x2154 ],\n [ 0x215B, 0x215E ], [ 0x2160, 0x216B ], [ 0x2170, 0x2179 ],\n [ 0x2190, 0x2199 ], [ 0x21B8, 0x21B9 ], [ 0x21D2, 0x21D2 ],\n [ 0x21D4, 0x21D4 ], [ 0x21E7, 0x21E7 ], [ 0x2200, 0x2200 ],\n [ 0x2202, 0x2203 ], [ 0x2207, 0x2208 ], [ 0x220B, 0x220B ],\n [ 0x220F, 0x220F ], [ 0x2211, 0x2211 ], [ 0x2215, 0x2215 ],\n [ 0x221A, 0x221A ], [ 0x221D, 0x2220 ], [ 0x2223, 0x2223 ],\n [ 0x2225, 0x2225 ], [ 0x2227, 0x222C ], [ 0x222E, 0x222E ],\n [ 0x2234, 0x2237 ], [ 0x223C, 0x223D ], [ 0x2248, 0x2248 ],\n [ 0x224C, 0x224C ], [ 0x2252, 0x2252 ], [ 0x2260, 0x2261 ],\n [ 0x2264, 0x2267 ], [ 0x226A, 0x226B ], [ 0x226E, 0x226F ],\n [ 0x2282, 0x2283 ], [ 0x2286, 0x2287 ], [ 0x2295, 0x2295 ],\n [ 0x2299, 0x2299 ], [ 0x22A5, 0x22A5 ], [ 0x22BF, 0x22BF ],\n [ 0x2312, 0x2312 ], [ 0x2460, 0x24E9 ], [ 0x24EB, 0x254B ],\n [ 0x2550, 0x2573 ], [ 0x2580, 0x258F ], [ 0x2592, 0x2595 ],\n [ 0x25A0, 0x25A1 ], [ 0x25A3, 0x25A9 ], [ 0x25B2, 0x25B3 ],\n [ 0x25B6, 0x25B7 ], [ 0x25BC, 0x25BD ], [ 0x25C0, 0x25C1 ],\n [ 0x25C6, 0x25C8 ], [ 0x25CB, 0x25CB ], [ 0x25CE, 0x25D1 ],\n [ 0x25E2, 0x25E5 ], [ 0x25EF, 0x25EF ], [ 0x2605, 0x2606 ],\n [ 0x2609, 0x2609 ], [ 0x260E, 0x260F ], [ 0x2614, 0x2615 ],\n [ 0x261C, 0x261C ], [ 0x261E, 0x261E ], [ 0x2640, 0x2640 ],\n [ 0x2642, 0x2642 ], [ 0x2660, 0x2661 ], [ 0x2663, 0x2665 ],\n [ 0x2667, 0x266A ], [ 0x266C, 0x266D ], [ 0x266F, 0x266F ],\n [ 0x273D, 0x273D ], [ 0x2776, 0x277F ], [ 0xE000, 0xF8FF ],\n [ 0xFFFD, 0xFFFD ], [ 0xF0000, 0xFFFFD ], [ 0x100000, 0x10FFFD ]\n];\n\n/**\n * Binary search to check if the given unicode character is a space character.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {boolean} True if the given character is a space character; false\n * otherwise.\n */\nlib.wc.isSpace = function(ucs) {\n // Auxiliary function for binary search in interval table.\n var min = 0, max = lib.wc.combining.length - 1;\n var mid;\n\n if (ucs < lib.wc.combining[0][0] || ucs > lib.wc.combining[max][1])\n return false;\n while (max >= min) {\n mid = Math.floor((min + max) / 2);\n if (ucs > lib.wc.combining[mid][1]) {\n min = mid + 1;\n } else if (ucs < lib.wc.combining[mid][0]) {\n max = mid - 1;\n } else {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Auxiliary function for checking if the given unicode character is a East\n * Asian Ambiguous character.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {boolean} True if the given character is a East Asian Ambiguous\n * character.\n */\nlib.wc.isCjkAmbiguous = function(ucs) {\n var min = 0, max = lib.wc.ambiguous.length - 1;\n var mid;\n\n if (ucs < lib.wc.ambiguous[0][0] || ucs > lib.wc.ambiguous[max][1])\n return false;\n while (max >= min) {\n mid = Math.floor((min + max) / 2);\n if (ucs > lib.wc.ambiguous[mid][1]) {\n min = mid + 1;\n } else if (ucs < lib.wc.ambiguous[mid][0]) {\n max = mid - 1;\n } else {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Determine the column width of the given character.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {integer} The column width of the given character.\n */\nlib.wc.charWidth = function(ucs) {\n if (lib.wc.regardCjkAmbiguous) {\n return lib.wc.charWidthRegardAmbiguous(ucs);\n } else {\n return lib.wc.charWidthDisregardAmbiguous(ucs);\n }\n};\n\n/**\n * Determine the column width of the given character without considering East\n * Asian Ambiguous characters.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {integer} The column width of the given character.\n */\nlib.wc.charWidthDisregardAmbiguous = function(ucs) {\n // Test for 8-bit control characters.\n if (ucs === 0)\n return lib.wc.nulWidth;\n if (ucs < 32 || (ucs >= 0x7f && ucs < 0xa0))\n return lib.wc.controlWidth;\n\n // Optimize for ASCII characters.\n if (ucs < 0x7f)\n return 1;\n\n // Binary search in table of non-spacing characters.\n if (lib.wc.isSpace(ucs))\n return 0;\n\n // If we arrive here, ucs is not a combining or C0/C1 control character.\n return 1 +\n (ucs >= 0x1100 &&\n (ucs <= 0x115f || // Hangul Jamo init. consonants\n ucs == 0x2329 || ucs == 0x232a ||\n (ucs >= 0x2e80 && ucs <= 0xa4cf &&\n ucs != 0x303f) || // CJK ... Yi\n (ucs >= 0xac00 && ucs <= 0xd7a3) || // Hangul Syllables\n (ucs >= 0xf900 && ucs <= 0xfaff) || // CJK Compatibility Ideographs\n (ucs >= 0xfe10 && ucs <= 0xfe19) || // Vertical forms\n (ucs >= 0xfe30 && ucs <= 0xfe6f) || // CJK Compatibility Forms\n (ucs >= 0xff00 && ucs <= 0xff60) || // Fullwidth Forms\n (ucs >= 0xffe0 && ucs <= 0xffe6) ||\n (ucs >= 0x20000 && ucs <= 0x2fffd) ||\n (ucs >= 0x30000 && ucs <= 0x3fffd)));\n // TODO: emoji characters usually require space for wide characters although\n // East Asian width spec says nothing. Should we add special cases for them?\n};\n\n/**\n * Determine the column width of the given character considering East Asian\n * Ambiguous characters.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {integer} The column width of the given character.\n */\nlib.wc.charWidthRegardAmbiguous = function(ucs) {\n if (lib.wc.isCjkAmbiguous(ucs))\n return lib.wc.cjkAmbiguousWidth;\n\n return lib.wc.charWidthDisregardAmbiguous(ucs);\n};\n\n/**\n * Determine the column width of the given string.\n *\n * @param {string} str A string.\n *\n * @return {integer} The column width of the given string.\n */\nlib.wc.strWidth = function(str) {\n var width, rv = 0;\n\n for (var i = 0; i < str.length;) {\n var codePoint = str.codePointAt(i);\n width = lib.wc.charWidth(codePoint);\n if (width < 0)\n return -1;\n rv += width;\n i += (codePoint <= 0xffff) ? 1 : 2;\n }\n\n return rv;\n};\n\n/**\n * Get the substring at the given column offset of the given column width.\n *\n * @param {string} str The string to get substring from.\n * @param {integer} start The starting column offset to get substring.\n * @param {integer} opt_width The column width of the substring.\n *\n * @return {string} The substring.\n */\nlib.wc.substr = function(str, start, opt_width) {\n var startIndex, endIndex, width;\n\n for (startIndex = 0, width = 0; startIndex < str.length; startIndex++) {\n width += lib.wc.charWidth(str.charCodeAt(startIndex));\n if (width > start)\n break;\n }\n\n if (opt_width != undefined) {\n for (endIndex = startIndex, width = 0;\n endIndex < str.length && width <= opt_width;\n width += lib.wc.charWidth(str.charCodeAt(endIndex)), endIndex++);\n if (width > opt_width)\n endIndex--;\n return str.substring(startIndex, endIndex);\n }\n\n return str.substr(startIndex);\n};\n\n/**\n * Get substring at the given start and end column offset.\n *\n * @param {string} str The string to get substring from.\n * @param {integer} start The starting column offset.\n * @param {integer} end The ending column offset.\n *\n * @return {string} The substring.\n */\nlib.wc.substring = function(str, start, end) {\n return lib.wc.substr(str, start, end - start);\n};\nlib.resource.add('libdot/changelog/version', 'text/plain',\n'1.16' +\n''\n);\n\nlib.resource.add('libdot/changelog/date', 'text/plain',\n'2017-08-16' +\n''\n);\n\n// SOURCE FILE: hterm/js/hterm.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.Storage');\n\n/**\n * @fileoverview Declares the hterm.* namespace and some basic shared utilities\n * that are too small to deserve dedicated files.\n */\nvar hterm = {};\n\n/**\n * The type of window hosting hterm.\n *\n * This is set as part of hterm.init(). The value is invalid until\n * initialization completes.\n */\nhterm.windowType = null;\n\n/**\n * Warning message to display in the terminal when browser zoom is enabled.\n *\n * You can replace it with your own localized message.\n */\nhterm.zoomWarningMessage = 'ZOOM != 100%';\n\n/**\n * Brief overlay message displayed when text is copied to the clipboard.\n *\n * By default it is the unicode BLACK SCISSORS character, but you can\n * replace it with your own localized message.\n *\n * This is only displayed when the 'enable-clipboard-notice' preference\n * is enabled.\n */\nhterm.notifyCopyMessage = '\\u2702';\n\n\n/**\n * Text shown in a desktop notification for the terminal\n * bell. \\u226a is a unicode EIGHTH NOTE, %(title) will\n * be replaced by the terminal title.\n */\nhterm.desktopNotificationTitle = '\\u266A %(title) \\u266A';\n\n/**\n * List of known hterm test suites.\n *\n * A test harness should ensure that they all exist before running.\n */\nhterm.testDeps = ['hterm.ScrollPort.Tests', 'hterm.Screen.Tests',\n 'hterm.Terminal.Tests', 'hterm.VT.Tests',\n 'hterm.VT.CannedTests'];\n\n/**\n * The hterm init function, registered with lib.registerInit().\n *\n * This is called during lib.init().\n *\n * @param {function} onInit The function lib.init() wants us to invoke when\n * initialization is complete.\n */\nlib.registerInit('hterm', function(onInit) {\n function onWindow(window) {\n hterm.windowType = window.type;\n setTimeout(onInit, 0);\n }\n\n function onTab(tab) {\n if (tab && window.chrome) {\n chrome.windows.get(tab.windowId, null, onWindow);\n } else {\n // TODO(rginda): This is where we end up for a v1 app's background page.\n // Maybe windowType = 'none' would be more appropriate, or something.\n hterm.windowType = 'normal';\n setTimeout(onInit, 0);\n }\n }\n\n if (!hterm.defaultStorage) {\n if (window.chrome && chrome.storage && chrome.storage.sync) {\n hterm.defaultStorage = new lib.Storage.Chrome(chrome.storage.sync);\n } else {\n hterm.defaultStorage = new lib.Storage.Local();\n }\n }\n\n // The chrome.tabs API is not supported in packaged apps, and detecting if\n // you're a packaged app is a little awkward.\n var isPackagedApp = false;\n if (window.chrome && chrome.runtime && chrome.runtime.getManifest) {\n var manifest = chrome.runtime.getManifest();\n isPackagedApp = manifest.app && manifest.app.background;\n }\n\n if (isPackagedApp) {\n // Packaged apps are never displayed in browser tabs.\n setTimeout(onWindow.bind(null, {type: 'popup'}), 0);\n } else {\n if (window.chrome && chrome.tabs) {\n // The getCurrent method gets the tab that is \"currently running\", not the\n // topmost or focused tab.\n chrome.tabs.getCurrent(onTab);\n } else {\n setTimeout(onWindow.bind(null, {type: 'normal'}), 0);\n }\n }\n});\n\n/**\n * Return decimal { width, height } for a given dom node.\n */\nhterm.getClientSize = function(dom) {\n return dom.getBoundingClientRect();\n};\n\n/**\n * Return decimal width for a given dom node.\n */\nhterm.getClientWidth = function(dom) {\n return dom.getBoundingClientRect().width;\n};\n\n/**\n * Return decimal height for a given dom node.\n */\nhterm.getClientHeight = function(dom) {\n return dom.getBoundingClientRect().height;\n};\n\n/**\n * Copy the current selection to the system clipboard.\n *\n * @param {HTMLDocument} The document with the selection to copy.\n */\nhterm.copySelectionToClipboard = function(document) {\n try {\n document.execCommand('copy');\n } catch (firefoxException) {\n // Ignore this. FF throws an exception if there was an error, even though\n // the spec says just return false.\n }\n};\n\n/**\n * Paste the system clipboard into the element with focus.\n *\n * Note: In Chrome/Firefox app/extension environments, you'll need the\n * \"clipboardRead\" permission. In other environments, this might always\n * fail as the browser frequently blocks access for security reasons.\n *\n * @param {HTMLDocument} The document to paste into.\n * @return {boolean} True if the paste succeeded.\n */\nhterm.pasteFromClipboard = function(document) {\n try {\n return document.execCommand('paste');\n } catch (firefoxException) {\n // Ignore this. FF 40 and older would incorrectly throw an exception if\n // there was an error instead of returning false.\n return false;\n }\n};\n\n/**\n * Create a new notification.\n *\n * @param {Object} params Various parameters for the notification.\n * @param {string} params.title The title (defaults to the window's title).\n * @param {string} params.body The message body (main text).\n */\nhterm.notify = function(params) {\n var def = (curr, fallback) => curr !== undefined ? curr : fallback;\n if (params === undefined || params === null)\n params = {};\n\n // Merge the user's choices with the default settings. We don't take it\n // directly in case it was stuffed with excess junk.\n var options = {\n 'body': params.body,\n 'icon': def(params.icon, lib.resource.getDataUrl('hterm/images/icon-96')),\n }\n\n var title = def(params.title, window.document.title);\n if (!title)\n title = 'hterm';\n title = lib.f.replaceVars(hterm.desktopNotificationTitle, {'title': title});\n\n var n = new Notification(title, options);\n n.onclick = function() {\n window.focus();\n this.close();\n };\n return n;\n};\n\n/**\n * Constructor for a hterm.Size record.\n *\n * Instances of this class have public read/write members for width and height.\n *\n * @param {integer} width The width of this record.\n * @param {integer} height The height of this record.\n */\nhterm.Size = function(width, height) {\n this.width = width;\n this.height = height;\n};\n\n/**\n * Adjust the width and height of this record.\n *\n * @param {integer} width The new width of this record.\n * @param {integer} height The new height of this record.\n */\nhterm.Size.prototype.resize = function(width, height) {\n this.width = width;\n this.height = height;\n};\n\n/**\n * Return a copy of this record.\n *\n * @return {hterm.Size} A new hterm.Size instance with the same width and\n * height.\n */\nhterm.Size.prototype.clone = function() {\n return new hterm.Size(this.width, this.height);\n};\n\n/**\n * Set the height and width of this instance based on another hterm.Size.\n *\n * @param {hterm.Size} that The object to copy from.\n */\nhterm.Size.prototype.setTo = function(that) {\n this.width = that.width;\n this.height = that.height;\n};\n\n/**\n * Test if another hterm.Size instance is equal to this one.\n *\n * @param {hterm.Size} that The other hterm.Size instance.\n * @return {boolean} True if both instances have the same width/height, false\n * otherwise.\n */\nhterm.Size.prototype.equals = function(that) {\n return this.width == that.width && this.height == that.height;\n};\n\n/**\n * Return a string representation of this instance.\n *\n * @return {string} A string that identifies the width and height of this\n * instance.\n */\nhterm.Size.prototype.toString = function() {\n return '[hterm.Size: ' + this.width + ', ' + this.height + ']';\n};\n\n/**\n * Constructor for a hterm.RowCol record.\n *\n * Instances of this class have public read/write members for row and column.\n *\n * This class includes an 'overflow' bit which is use to indicate that an\n * attempt has been made to move the cursor column passed the end of the\n * screen. When this happens we leave the cursor column set to the last column\n * of the screen but set the overflow bit. In this state cursor movement\n * happens normally, but any attempt to print new characters causes a cr/lf\n * first.\n *\n * @param {integer} row The row of this record.\n * @param {integer} column The column of this record.\n * @param {boolean} opt_overflow Optional boolean indicating that the RowCol\n * has overflowed.\n */\nhterm.RowCol = function(row, column, opt_overflow) {\n this.row = row;\n this.column = column;\n this.overflow = !!opt_overflow;\n};\n\n/**\n * Adjust the row and column of this record.\n *\n * @param {integer} row The new row of this record.\n * @param {integer} column The new column of this record.\n * @param {boolean} opt_overflow Optional boolean indicating that the RowCol\n * has overflowed.\n */\nhterm.RowCol.prototype.move = function(row, column, opt_overflow) {\n this.row = row;\n this.column = column;\n this.overflow = !!opt_overflow;\n};\n\n/**\n * Return a copy of this record.\n *\n * @return {hterm.RowCol} A new hterm.RowCol instance with the same row and\n * column.\n */\nhterm.RowCol.prototype.clone = function() {\n return new hterm.RowCol(this.row, this.column, this.overflow);\n};\n\n/**\n * Set the row and column of this instance based on another hterm.RowCol.\n *\n * @param {hterm.RowCol} that The object to copy from.\n */\nhterm.RowCol.prototype.setTo = function(that) {\n this.row = that.row;\n this.column = that.column;\n this.overflow = that.overflow;\n};\n\n/**\n * Test if another hterm.RowCol instance is equal to this one.\n *\n * @param {hterm.RowCol} that The other hterm.RowCol instance.\n * @return {boolean} True if both instances have the same row/column, false\n * otherwise.\n */\nhterm.RowCol.prototype.equals = function(that) {\n return (this.row == that.row && this.column == that.column &&\n this.overflow == that.overflow);\n};\n\n/**\n * Return a string representation of this instance.\n *\n * @return {string} A string that identifies the row and column of this\n * instance.\n */\nhterm.RowCol.prototype.toString = function() {\n return ('[hterm.RowCol: ' + this.row + ', ' + this.column + ', ' +\n this.overflow + ']');\n};\n// SOURCE FILE: hterm/js/hterm_frame.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f');\n\n/**\n * First draft of the interface between the terminal and a third party dialog.\n *\n * This is rough. It's just the terminal->dialog layer. To complete things\n * we'll also need a command->terminal layer. That will have to facilitate\n * command->terminal->dialog or direct command->dialog communication.\n *\n * I imagine this class will change significantly when that happens.\n */\n\n/**\n * Construct a new frame for the given terminal.\n *\n * @param terminal {hterm.Terminal} The parent terminal object.\n * @param url {String} The url to load in the frame.\n * @param opt_options {Object} Optional options for the frame. Not implemented.\n */\nhterm.Frame = function(terminal, url, opt_options) {\n this.terminal_ = terminal;\n this.div_ = terminal.div_;\n this.url = url;\n this.options = opt_options || {};\n this.iframe_ = null;\n this.container_ = null;\n this.messageChannel_ = null;\n};\n\n/**\n * Handle messages from the iframe.\n */\nhterm.Frame.prototype.onMessage_ = function(e) {\n switch (e.data.name) {\n case 'ipc-init-ok':\n // We get this response after we send them ipc-init and they finish.\n this.sendTerminalInfo_();\n return;\n case 'terminal-info-ok':\n // We get this response after we send them terminal-info and they finish.\n // Show the finished frame, and then rebind our message handler to the\n // callback below.\n this.container_.style.display = 'flex';\n this.messageChannel_.port1.onmessage = this.onMessage.bind(this);\n this.onLoad();\n return;\n default:\n console.log('Unknown message from frame:', e.data);\n return;\n }\n};\n\n/**\n * Clients could override this, I guess.\n *\n * It doesn't support multiple listeners, but I'm not sure that would make sense\n * here. It's probably better to speak directly to our parents.\n */\nhterm.Frame.prototype.onMessage = function() {};\n\n/**\n * Handle iframe onLoad event.\n */\nhterm.Frame.prototype.onLoad_ = function() {\n this.messageChannel_ = new MessageChannel();\n this.messageChannel_.port1.onmessage = this.onMessage_.bind(this);\n this.messageChannel_.port1.start();\n this.iframe_.contentWindow.postMessage(\n {name: 'ipc-init', argv: [{messagePort: this.messageChannel_.port2}]},\n this.url, [this.messageChannel_.port2]);\n};\n\n/**\n * Clients may override this.\n */\nhterm.Frame.prototype.onLoad = function() {};\n\n/**\n * Sends the terminal-info message to the iframe.\n */\nhterm.Frame.prototype.sendTerminalInfo_ = function() {\n lib.f.getAcceptLanguages(function(languages) {\n this.postMessage('terminal-info', [{\n acceptLanguages: languages,\n foregroundColor: this.terminal_.getForegroundColor(),\n backgroundColor: this.terminal_.getBackgroundColor(),\n cursorColor: this.terminal_.getCursorColor(),\n fontSize: this.terminal_.getFontSize(),\n fontFamily: this.terminal_.getFontFamily(),\n baseURL: lib.f.getURL('/')\n }]\n );\n }.bind(this));\n};\n\n/**\n * User clicked the close button on the frame decoration.\n */\nhterm.Frame.prototype.onCloseClicked_ = function() {\n this.close();\n};\n\n/**\n * Close this frame.\n */\nhterm.Frame.prototype.close = function() {\n if (!this.container_ || !this.container_.parentNode)\n return;\n\n this.container_.parentNode.removeChild(this.container_);\n this.onClose();\n};\n\n\n/**\n * Clients may override this.\n */\nhterm.Frame.prototype.onClose = function() {};\n\n/**\n * Send a message to the iframe.\n */\nhterm.Frame.prototype.postMessage = function(name, argv) {\n if (!this.messageChannel_)\n throw new Error('Message channel is not set up.');\n\n this.messageChannel_.port1.postMessage({name: name, argv: argv});\n};\n\n/**\n * Show the UI for this frame.\n *\n * The iframe src is not loaded until this method is called.\n */\nhterm.Frame.prototype.show = function() {\n var self = this;\n\n function opt(name, defaultValue) {\n if (name in self.options)\n return self.options[name];\n\n return defaultValue;\n }\n\n var self = this;\n\n if (this.container_ && this.container_.parentNode) {\n console.error('Frame already visible');\n return;\n }\n\n var headerHeight = '16px';\n\n var divSize = hterm.getClientSize(this.div_);\n\n var width = opt('width', 640);\n var height = opt('height', 480);\n var left = (divSize.width - width) / 2;\n var top = (divSize.height - height) / 2;\n\n var document = this.terminal_.document_;\n\n var container = this.container_ = document.createElement('div');\n container.style.cssText = (\n 'position: absolute;' +\n 'display: none;' +\n 'flex-direction: column;' +\n 'top: 10%;' +\n 'left: 4%;' +\n 'width: 90%;' +\n 'height: 80%;' +\n 'min-height: 20%;' +\n 'max-height: 80%;' +\n 'box-shadow: 0 0 2px ' + this.terminal_.getForegroundColor() + ';' +\n 'border: 2px ' + this.terminal_.getForegroundColor() + ' solid;');\n\n if (false) {\n // No use for the close button, so no use for the window header either.\n var header = document.createElement('div');\n header.style.cssText = (\n 'display: flex;' +\n 'justify-content: flex-end;' +\n 'height: ' + headerHeight + ';' +\n 'background-color: ' + this.terminal_.getForegroundColor() + ';' +\n 'color: ' + this.terminal_.getBackgroundColor() + ';' +\n 'font-size: 16px;' +\n 'font-family: ' + this.terminal_.getFontFamily());\n container.appendChild(header);\n\n var button = document.createElement('div');\n button.setAttribute('role', 'button');\n button.style.cssText = (\n 'margin-top: -3px;' +\n 'margin-right: 3px;' +\n 'cursor: pointer;');\n button.textContent = '\\u2a2f';\n button.addEventListener('click', this.onCloseClicked_.bind(this));\n header.appendChild(button);\n }\n\n var iframe = this.iframe_ = document.createElement('iframe');\n iframe.onload = this.onLoad_.bind(this);\n iframe.style.cssText = (\n 'display: flex;' +\n 'flex: 1;' +\n 'width: 100%');\n iframe.setAttribute('src', this.url);\n iframe.setAttribute('seamless', true);\n container.appendChild(iframe);\n\n this.div_.appendChild(container);\n};\n// SOURCE FILE: hterm/js/hterm_keyboard.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('hterm.Keyboard.KeyMap');\n\n/**\n * Keyboard handler.\n *\n * Consumes onKey* events and invokes onVTKeystroke on the associated\n * hterm.Terminal object.\n *\n * See also: [XTERM] as referenced in vt.js.\n *\n * @param {hterm.Terminal} The Terminal object associated with this keyboard.\n */\nhterm.Keyboard = function(terminal) {\n // The parent vt interpreter.\n this.terminal = terminal;\n\n // The element we're currently capturing keyboard events for.\n this.keyboardElement_ = null;\n\n // The event handlers we are interested in, and their bound callbacks, saved\n // so they can be uninstalled with removeEventListener, when required.\n this.handlers_ = [\n ['focusout', this.onFocusOut_.bind(this)],\n ['keydown', this.onKeyDown_.bind(this)],\n ['keypress', this.onKeyPress_.bind(this)],\n ['keyup', this.onKeyUp_.bind(this)],\n ['textInput', this.onTextInput_.bind(this)]\n ];\n\n /**\n * The current key map.\n */\n this.keyMap = new hterm.Keyboard.KeyMap(this);\n\n this.bindings = new hterm.Keyboard.Bindings(this);\n\n /**\n * none: Disable any AltGr related munging.\n * ctrl-alt: Assume Ctrl+Alt means AltGr.\n * left-alt: Assume left Alt means AltGr.\n * right-alt: Assume right Alt means AltGr.\n */\n this.altGrMode = 'none';\n\n /**\n * If true, Shift-Insert will fall through to the browser as a paste.\n * If false, the keystroke will be sent to the host.\n */\n this.shiftInsertPaste = true;\n\n /**\n * If true, home/end will control the terminal scrollbar and shift home/end\n * will send the VT keycodes. If false then home/end sends VT codes and\n * shift home/end scrolls.\n */\n this.homeKeysScroll = false;\n\n /**\n * Same as above, except for page up/page down.\n */\n this.pageKeysScroll = false;\n\n /**\n * If true, Ctrl-Plus/Minus/Zero controls zoom.\n * If false, Ctrl-Shift-Plus/Minus/Zero controls zoom, Ctrl-Minus sends ^_,\n * Ctrl-Plus/Zero do nothing.\n */\n this.ctrlPlusMinusZeroZoom = true;\n\n /**\n * Ctrl+C copies if true, sends ^C to host if false.\n * Ctrl+Shift+C sends ^C to host if true, copies if false.\n */\n this.ctrlCCopy = false;\n\n /**\n * Ctrl+V pastes if true, sends ^V to host if false.\n * Ctrl+Shift+V sends ^V to host if true, pastes if false.\n */\n this.ctrlVPaste = false;\n\n /**\n * Enable/disable application keypad.\n *\n * This changes the way numeric keys are sent from the keyboard.\n */\n this.applicationKeypad = false;\n\n /**\n * Enable/disable the application cursor mode.\n *\n * This changes the way cursor keys are sent from the keyboard.\n */\n this.applicationCursor = false;\n\n /**\n * If true, the backspace should send BS ('\\x08', aka ^H). Otherwise\n * the backspace key should send '\\x7f'.\n */\n this.backspaceSendsBackspace = false;\n\n /**\n * The encoding method for data sent to the host.\n */\n this.characterEncoding = 'utf-8';\n\n /**\n * Set whether the meta key sends a leading escape or not.\n */\n this.metaSendsEscape = true;\n\n /**\n * Set whether meta-V gets passed to host.\n */\n this.passMetaV = true;\n\n /**\n * Controls how the alt key is handled.\n *\n * escape....... Send an ESC prefix.\n * 8-bit........ Add 128 to the unshifted character as in xterm.\n * browser-key.. Wait for the keypress event and see what the browser says.\n * (This won't work well on platforms where the browser\n * performs a default action for some alt sequences.)\n *\n * This setting only matters when alt is distinct from meta (altIsMeta is\n * false.)\n */\n this.altSendsWhat = 'escape';\n\n /**\n * Set whether the alt key acts as a meta key, instead of producing 8-bit\n * characters.\n *\n * True to enable, false to disable, null to autodetect based on platform.\n */\n this.altIsMeta = false;\n\n /**\n * If true, tries to detect DEL key events that are from alt-backspace on\n * Chrome OS vs from a true DEL key press.\n *\n * Background: At the time of writing, on Chrome OS, alt-backspace is mapped\n * to DEL. Some users may be happy with this, but others may be frustrated\n * that it's impossible to do meta-backspace. If the user enables this pref,\n * we use a trick to tell a true DEL keypress from alt-backspace: on\n * alt-backspace, we will see the alt key go down, then get a DEL keystroke\n * that indicates that alt is not pressed. See https://crbug.com/174410 .\n */\n this.altBackspaceIsMetaBackspace = false;\n\n /**\n * Used to keep track of the current alt-key state, which is necessary for\n * the altBackspaceIsMetaBackspace preference above and for the altGrMode\n * preference. This is a bitmap with where bit positions correspond to the\n * \"location\" property of the key event.\n */\n this.altKeyPressed = 0;\n\n /**\n * If true, Chrome OS media keys will be mapped to their F-key equivalent.\n * E.g. \"Back\" will be mapped to F1. If false, Chrome will handle the keys.\n */\n this.mediaKeysAreFKeys = false;\n\n /**\n * Holds the previous setting of altSendsWhat when DECSET 1039 is used. When\n * DECRST 1039 is used, altSendsWhat is changed back to this and this is\n * nulled out.\n */\n this.previousAltSendsWhat_ = null;\n};\n\n/**\n * Special handling for keyCodes in a keyboard layout.\n */\nhterm.Keyboard.KeyActions = {\n /**\n * Call preventDefault and stopPropagation for this key event and nothing\n * else.\n */\n CANCEL: lib.f.createEnum('CANCEL'),\n\n /**\n * This performs the default terminal action for the key. If used in the\n * 'normal' action and the the keystroke represents a printable key, the\n * character will be sent to the host. If used in one of the modifier\n * actions, the terminal will perform the normal action after (possibly)\n * altering it.\n *\n * - If the normal sequence starts with CSI, the sequence will be adjusted\n * to include the modifier parameter as described in [XTERM] in the final\n * table of the \"PC-Style Function Keys\" section.\n *\n * - If the control key is down and the key represents a printable character,\n * and the uppercase version of the unshifted keycap is between\n * 64 (ASCII '@') and 95 (ASCII '_'), then the uppercase version of the\n * unshifted keycap minus 64 is sent. This makes '^@' send '\\x00' and\n * '^_' send '\\x1f'. (Note that one higher that 0x1f is 0x20, which is\n * the first printable ASCII value.)\n *\n * - If the alt key is down and the key represents a printable character then\n * the value of the character is shifted up by 128.\n *\n * - If meta is down and configured to send an escape, '\\x1b' will be sent\n * before the normal action is performed.\n */\n DEFAULT: lib.f.createEnum('DEFAULT'),\n\n /**\n * Causes the terminal to opt out of handling the key event, instead letting\n * the browser deal with it.\n */\n PASS: lib.f.createEnum('PASS'),\n\n /**\n * Insert the first or second character of the keyCap, based on e.shiftKey.\n * The key will be handled in onKeyDown, and e.preventDefault() will be\n * called.\n *\n * It is useful for a modified key action, where it essentially strips the\n * modifier while preventing the browser from reacting to the key.\n */\n STRIP: lib.f.createEnum('STRIP')\n};\n\n/**\n * Encode a string according to the 'send-encoding' preference.\n */\nhterm.Keyboard.prototype.encode = function(str) {\n if (this.characterEncoding == 'utf-8')\n return this.terminal.vt.encodeUTF8(str);\n\n return str;\n};\n\n/**\n * Capture keyboard events sent to the associated element.\n *\n * This enables the keyboard. Captured events are consumed by this class\n * and will not perform their default action or bubble to other elements.\n *\n * Passing a null element will uninstall the keyboard handlers.\n *\n * @param {HTMLElement} element The element whose events should be captured, or\n * null to disable the keyboard.\n */\nhterm.Keyboard.prototype.installKeyboard = function(element) {\n if (element == this.keyboardElement_)\n return;\n\n if (element && this.keyboardElement_)\n this.installKeyboard(null);\n\n for (var i = 0; i < this.handlers_.length; i++) {\n var handler = this.handlers_[i];\n if (element) {\n element.addEventListener(handler[0], handler[1]);\n } else {\n this.keyboardElement_.removeEventListener(handler[0], handler[1]);\n }\n }\n\n this.keyboardElement_ = element;\n};\n\n/**\n * Disable keyboard event capture.\n *\n * This will allow the browser to process key events normally.\n */\nhterm.Keyboard.prototype.uninstallKeyboard = function() {\n this.installKeyboard(null);\n};\n\n/**\n * Handle onTextInput events.\n *\n * We're not actually supposed to get these, but we do on the Mac in the case\n * where a third party app sends synthetic keystrokes to Chrome.\n */\nhterm.Keyboard.prototype.onTextInput_ = function(e) {\n if (!e.data)\n return;\n\n e.data.split('').forEach(this.terminal.onVTKeystroke.bind(this.terminal));\n};\n\n/**\n * Handle onKeyPress events.\n */\nhterm.Keyboard.prototype.onKeyPress_ = function(e) {\n var code;\n\n var key = String.fromCharCode(e.which);\n var lowerKey = key.toLowerCase();\n if ((e.ctrlKey || e.metaKey) && (lowerKey == 'c' || lowerKey == 'v')) {\n // On FF the key press (not key down) event gets fired for copy/paste.\n // Let it fall through for the default browser behavior.\n return;\n }\n\n if (e.altKey && this.altSendsWhat == 'browser-key' && e.charCode == 0) {\n // If we got here because we were expecting the browser to handle an\n // alt sequence but it didn't do it, then we might be on an OS without\n // an enabled IME system. In that case we fall back to xterm-like\n // behavior.\n //\n // This happens here only as a fallback. Typically these platforms should\n // set altSendsWhat to either 'escape' or '8-bit'.\n var ch = String.fromCharCode(e.keyCode);\n if (!e.shiftKey)\n ch = ch.toLowerCase();\n code = ch.charCodeAt(0) + 128;\n\n } else if (e.charCode >= 32) {\n ch = e.charCode;\n }\n\n if (ch)\n this.terminal.onVTKeystroke(String.fromCharCode(ch));\n\n e.preventDefault();\n e.stopPropagation();\n};\n\n/**\n * Prevent default handling for non-ctrl-shifted event.\n *\n * When combined with Chrome permission 'app.window.fullscreen.overrideEsc',\n * and called for both key down and key up events,\n * the ESC key remains usable within fullscreen Chrome app windows.\n */\nhterm.Keyboard.prototype.preventChromeAppNonCtrlShiftDefault_ = function(e) {\n if (!window.chrome || !window.chrome.app || !window.chrome.app.window)\n return;\n if (!e.ctrlKey || !e.shiftKey)\n e.preventDefault();\n};\n\nhterm.Keyboard.prototype.onFocusOut_ = function(e) {\n this.altKeyPressed = 0;\n};\n\nhterm.Keyboard.prototype.onKeyUp_ = function(e) {\n if (e.keyCode == 18)\n this.altKeyPressed = this.altKeyPressed & ~(1 << (e.location - 1));\n\n if (e.keyCode == 27)\n this.preventChromeAppNonCtrlShiftDefault_(e);\n};\n\n/**\n * Handle onKeyDown events.\n */\nhterm.Keyboard.prototype.onKeyDown_ = function(e) {\n if (e.keyCode == 18)\n this.altKeyPressed = this.altKeyPressed | (1 << (e.location - 1));\n\n if (e.keyCode == 27)\n this.preventChromeAppNonCtrlShiftDefault_(e);\n\n var keyDef = this.keyMap.keyDefs[e.keyCode];\n if (!keyDef) {\n console.warn('No definition for keyCode: ' + e.keyCode);\n return;\n }\n\n // The type of action we're going to use.\n var resolvedActionType = null;\n\n var self = this;\n function getAction(name) {\n // Get the key action for the given action name. If the action is a\n // function, dispatch it. If the action defers to the normal action,\n // resolve that instead.\n\n resolvedActionType = name;\n\n var action = keyDef[name];\n if (typeof action == 'function')\n action = action.apply(self.keyMap, [e, keyDef]);\n\n if (action === DEFAULT && name != 'normal')\n action = getAction('normal');\n\n return action;\n }\n\n // Note that we use the triple-equals ('===') operator to test equality for\n // these constants, in order to distinguish usage of the constant from usage\n // of a literal string that happens to contain the same bytes.\n var CANCEL = hterm.Keyboard.KeyActions.CANCEL;\n var DEFAULT = hterm.Keyboard.KeyActions.DEFAULT;\n var PASS = hterm.Keyboard.KeyActions.PASS;\n var STRIP = hterm.Keyboard.KeyActions.STRIP;\n\n var control = e.ctrlKey;\n var alt = this.altIsMeta ? false : e.altKey;\n var meta = this.altIsMeta ? (e.altKey || e.metaKey) : e.metaKey;\n\n // In the key-map, we surround the keyCap for non-printables in \"[...]\"\n var isPrintable = !(/^\\[\\w+\\]$/.test(keyDef.keyCap));\n\n switch (this.altGrMode) {\n case 'ctrl-alt':\n if (isPrintable && control && alt) {\n // ctrl-alt-printable means altGr. We clear out the control and\n // alt modifiers and wait to see the charCode in the keydown event.\n control = false;\n alt = false;\n }\n break;\n\n case 'right-alt':\n if (isPrintable && (this.terminal.keyboard.altKeyPressed & 2)) {\n control = false;\n alt = false;\n }\n break;\n\n case 'left-alt':\n if (isPrintable && (this.terminal.keyboard.altKeyPressed & 1)) {\n control = false;\n alt = false;\n }\n break;\n }\n\n var action;\n\n if (control) {\n action = getAction('control');\n } else if (alt) {\n action = getAction('alt');\n } else if (meta) {\n action = getAction('meta');\n } else {\n action = getAction('normal');\n }\n\n // If e.maskShiftKey was set (during getAction) it means the shift key is\n // already accounted for in the action, and we should not act on it any\n // further. This is currently only used for Ctrl-Shift-Tab, which should send\n // \"CSI Z\", not \"CSI 1 ; 2 Z\".\n var shift = !e.maskShiftKey && e.shiftKey;\n\n var keyDown = {\n keyCode: e.keyCode,\n shift: e.shiftKey, // not `var shift` from above.\n ctrl: control,\n alt: alt,\n meta: meta\n };\n\n var binding = this.bindings.getBinding(keyDown);\n\n if (binding) {\n // Clear out the modifier bits so we don't try to munge the sequence\n // further.\n shift = control = alt = meta = false;\n resolvedActionType = 'normal';\n action = binding.action;\n\n if (typeof action == 'function')\n action = action.call(this, this.terminal, keyDown);\n }\n\n if (alt && this.altSendsWhat == 'browser-key' && action == DEFAULT) {\n // When altSendsWhat is 'browser-key', we wait for the keypress event.\n // In keypress, the browser should have set the event.charCode to the\n // appropriate character.\n // TODO(rginda): Character compositions will need some black magic.\n action = PASS;\n }\n\n if (action === PASS || (action === DEFAULT && !(control || alt || meta))) {\n // If this key is supposed to be handled by the browser, or it is an\n // unmodified key with the default action, then exit this event handler.\n // If it's an unmodified key, it'll be handled in onKeyPress where we\n // can tell for sure which ASCII code to insert.\n //\n // This block needs to come before the STRIP test, otherwise we'll strip\n // the modifier and think it's ok to let the browser handle the keypress.\n // The browser won't know we're trying to ignore the modifiers and might\n // perform some default action.\n return;\n }\n\n if (action === STRIP) {\n alt = control = false;\n action = keyDef.normal;\n if (typeof action == 'function')\n action = action.apply(this.keyMap, [e, keyDef]);\n\n if (action == DEFAULT && keyDef.keyCap.length == 2)\n action = keyDef.keyCap.substr((shift ? 1 : 0), 1);\n }\n\n e.preventDefault();\n e.stopPropagation();\n\n if (action === CANCEL)\n return;\n\n if (action !== DEFAULT && typeof action != 'string') {\n console.warn('Invalid action: ' + JSON.stringify(action));\n return;\n }\n\n // Strip the modifier that is associated with the action, since we assume that\n // modifier has already been accounted for in the action.\n if (resolvedActionType == 'control') {\n control = false;\n } else if (resolvedActionType == 'alt') {\n alt = false;\n } else if (resolvedActionType == 'meta') {\n meta = false;\n }\n\n if (action.substr(0, 2) == '\\x1b[' && (alt || control || shift)) {\n // The action is an escape sequence that and it was triggered in the\n // presence of a keyboard modifier, we may need to alter the action to\n // include the modifier before sending it.\n\n var mod;\n\n if (shift && !(alt || control)) {\n mod = ';2';\n } else if (alt && !(shift || control)) {\n mod = ';3';\n } else if (shift && alt && !control) {\n mod = ';4';\n } else if (control && !(shift || alt)) {\n mod = ';5';\n } else if (shift && control && !alt) {\n mod = ';6';\n } else if (alt && control && !shift) {\n mod = ';7';\n } else if (shift && alt && control) {\n mod = ';8';\n }\n\n if (action.length == 3) {\n // Some of the CSI sequences have zero parameters unless modified.\n action = '\\x1b[1' + mod + action.substr(2, 1);\n } else {\n // Others always have at least one parameter.\n action = action.substr(0, action.length - 1) + mod +\n action.substr(action.length - 1);\n }\n\n } else {\n if (action === DEFAULT) {\n action = keyDef.keyCap.substr((shift ? 1 : 0), 1);\n\n if (control) {\n var unshifted = keyDef.keyCap.substr(0, 1);\n var code = unshifted.charCodeAt(0);\n if (code >= 64 && code <= 95) {\n action = String.fromCharCode(code - 64);\n }\n }\n }\n\n if (alt && this.altSendsWhat == '8-bit' && action.length == 1) {\n var code = action.charCodeAt(0) + 128;\n action = String.fromCharCode(code);\n }\n\n // We respect alt/metaSendsEscape even if the keymap action was a literal\n // string. Otherwise, every overridden alt/meta action would have to\n // check alt/metaSendsEscape.\n if ((alt && this.altSendsWhat == 'escape') ||\n (meta && this.metaSendsEscape)) {\n action = '\\x1b' + action;\n }\n }\n\n this.terminal.onVTKeystroke(action);\n};\n// SOURCE FILE: hterm/js/hterm_keyboard_bindings.js\n// Copyright (c) 2015 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * A mapping from hterm.Keyboard.KeyPattern to an action.\n *\n * TODO(rginda): For now this bindings code is only used for user overrides.\n * hterm.Keyboard.KeyMap still handles all of the built-in key mappings.\n * It'd be nice if we migrated that over to be hterm.Keyboard.Bindings based.\n */\nhterm.Keyboard.Bindings = function() {\n this.bindings_ = {};\n};\n\n/**\n * Remove all bindings.\n */\nhterm.Keyboard.Bindings.prototype.clear = function () {\n this.bindings_ = {};\n};\n\n/**\n * Add a new binding.\n *\n * Internal API that assumes parsed objects as inputs.\n * See the public addBinding for more details.\n *\n * @param {hterm.Keyboard.KeyPattern} keyPattern\n * @param {string|function|hterm.Keyboard.KeyAction} action\n */\nhterm.Keyboard.Bindings.prototype.addBinding_ = function(keyPattern, action) {\n var binding = null;\n var list = this.bindings_[keyPattern.keyCode];\n if (list) {\n for (var i = 0; i < list.length; i++) {\n if (list[i].keyPattern.matchKeyPattern(keyPattern)) {\n binding = list[i];\n break;\n }\n }\n }\n\n if (binding) {\n binding.action = action;\n } else {\n binding = {keyPattern: keyPattern, action: action};\n\n if (!list) {\n this.bindings_[keyPattern.keyCode] = [binding];\n } else {\n this.bindings_[keyPattern.keyCode].push(binding);\n\n list.sort(function(a, b) {\n return hterm.Keyboard.KeyPattern.sortCompare(\n a.keyPattern, b.keyPattern);\n });\n }\n }\n};\n\n/**\n * Add a new binding.\n *\n * If a binding for the keyPattern already exists it will be overridden.\n *\n * More specific keyPatterns take precedence over those with wildcards. Given\n * bindings for \"Ctrl-A\" and \"Ctrl-*-A\", and a \"Ctrl-A\" keydown, the \"Ctrl-A\"\n * binding will match even if \"Ctrl-*-A\" was created last.\n *\n * If action is a string, it will be passed through hterm.Parser.parseKeyAction.\n *\n * For example:\n * // Will replace Ctrl-P keystrokes with the string \"hiya!\".\n * addBinding('Ctrl-P', \"'hiya!'\");\n * // Will cancel the keystroke entirely (make it do nothing).\n * addBinding('Alt-D', hterm.Keyboard.KeyActions.CANCEL);\n * // Will execute the code and return the action.\n * addBinding('Ctrl-T', function() {\n * console.log('Got a T!');\n * return hterm.Keyboard.KeyActions.PASS;\n * });\n *\n * @param {string|hterm.Keyboard.KeyPattern} keyPattern\n * @param {string|function|hterm.Keyboard.KeyAction} action\n */\nhterm.Keyboard.Bindings.prototype.addBinding = function(key, action) {\n // If we're given a hterm.Keyboard.KeyPattern object, pass it down.\n if (typeof key != 'string') {\n this.addBinding_(key, action);\n return;\n }\n\n // Here we treat key as a string.\n var p = new hterm.Parser();\n\n p.reset(key);\n var sequence;\n\n try {\n sequence = p.parseKeySequence();\n } catch (ex) {\n console.error(ex);\n return;\n }\n\n if (!p.isComplete()) {\n console.error(p.error('Expected end of sequence: ' + sequence));\n return;\n }\n\n // If action is a string, parse it. Otherwise assume it's callable.\n if (typeof action == 'string') {\n p.reset(action);\n try {\n action = p.parseKeyAction();\n } catch (ex) {\n console.error(ex);\n return;\n }\n }\n\n if (!p.isComplete()) {\n console.error(p.error('Expected end of sequence: ' + sequence));\n return;\n }\n\n this.addBinding_(new hterm.Keyboard.KeyPattern(sequence), action);\n};\n\n/**\n * Add multiple bindings at a time using a map of {string: string, ...}\n *\n * This uses hterm.Parser to parse the maps key into KeyPatterns, and the\n * map values into {string|function|KeyAction}.\n *\n * For example:\n * {\n * // Will replace Ctrl-P keystrokes with the string \"hiya!\".\n * 'Ctrl-P': \"'hiya!'\",\n * // Will cancel the keystroke entirely (make it do nothing).\n * 'Alt-D': hterm.Keyboard.KeyActions.CANCEL,\n * }\n *\n * @param {Object} map\n */\nhterm.Keyboard.Bindings.prototype.addBindings = function(map) {\n for (var key in map) {\n this.addBinding(key, map[key]);\n }\n};\n\n/**\n * Return the binding that is the best match for the given keyDown record,\n * or null if there is no match.\n *\n * @param {Object} keyDown An object with a keyCode property and zero or\n * more boolean properties representing key modifiers. These property names\n * must match those defined in hterm.Keyboard.KeyPattern.modifiers.\n */\nhterm.Keyboard.Bindings.prototype.getBinding = function(keyDown) {\n var list = this.bindings_[keyDown.keyCode];\n if (!list)\n return null;\n\n for (var i = 0; i < list.length; i++) {\n var binding = list[i];\n if (binding.keyPattern.matchKeyDown(keyDown))\n return binding;\n }\n\n return null;\n};\n// SOURCE FILE: hterm/js/hterm_keyboard_keymap.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('hterm.Keyboard.KeyActions');\n\n/**\n * The default key map for hterm.\n *\n * Contains a mapping of keyCodes to keyDefs (aka key definitions). The key\n * definition tells the hterm.Keyboard class how to handle keycodes.\n *\n * This should work for most cases, as the printable characters get handled\n * in the keypress event. In that case, even if the keycap is wrong in the\n * key map, the correct character should be sent.\n *\n * Different layouts, such as Dvorak should work with this keymap, as those\n * layouts typically move keycodes around on the keyboard without disturbing\n * the actual keycaps.\n *\n * There may be issues with control keys on non-US keyboards or with keyboards\n * that very significantly from the expectations here, in which case we may\n * have to invent new key maps.\n *\n * The sequences defined in this key map come from [XTERM] as referenced in\n * vt.js, starting with the section titled \"Alt and Meta Keys\".\n */\nhterm.Keyboard.KeyMap = function(keyboard) {\n this.keyboard = keyboard;\n this.keyDefs = {};\n this.reset();\n};\n\n/**\n * Add a single key definition.\n *\n * The definition is a hash containing the following keys: 'keyCap', 'normal',\n * 'control', and 'alt'.\n *\n * - keyCap is a string identifying the key. For printable\n * keys, the key cap should be exactly two characters, starting with the\n * unshifted version. For example, 'aA', 'bB', '1!' and '=+'. For\n * non-printable the key cap should be surrounded in square braces, as in\n * '[INS]', '[LEFT]'. By convention, non-printable keycaps are in uppercase\n * but this is not a strict requirement.\n *\n * - Normal is the action that should be performed when they key is pressed\n * in the absence of any modifier. See below for the supported actions.\n *\n * - Control is the action that should be performed when they key is pressed\n * along with the control modifier. See below for the supported actions.\n *\n * - Alt is the action that should be performed when they key is pressed\n * along with the alt modifier. See below for the supported actions.\n *\n * - Meta is the action that should be performed when they key is pressed\n * along with the meta modifier. See below for the supported actions.\n *\n * Actions can be one of the hterm.Keyboard.KeyActions as documented below,\n * a literal string, or an array. If the action is a literal string then\n * the string is sent directly to the host. If the action is an array it\n * is taken to be an escape sequence that may be altered by modifier keys.\n * The second-to-last element of the array will be overwritten with the\n * state of the modifier keys, as specified in the final table of \"PC-Style\n * Function Keys\" from [XTERM].\n */\nhterm.Keyboard.KeyMap.prototype.addKeyDef = function(keyCode, def) {\n if (keyCode in this.keyDefs)\n console.warn('Duplicate keyCode: ' + keyCode);\n\n this.keyDefs[keyCode] = def;\n};\n\n/**\n * Add multiple key definitions in a single call.\n *\n * This function takes the key definitions as variable argument list. Each\n * argument is the key definition specified as an array.\n *\n * (If the function took everything as one big hash we couldn't detect\n * duplicates, and there would be a lot more typing involved.)\n *\n * Each key definition should have 6 elements: (keyCode, keyCap, normal action,\n * control action, alt action and meta action). See KeyMap.addKeyDef for the\n * meaning of these elements.\n */\nhterm.Keyboard.KeyMap.prototype.addKeyDefs = function(var_args) {\n for (var i = 0; i < arguments.length; i++) {\n this.addKeyDef(arguments[i][0],\n { keyCap: arguments[i][1],\n normal: arguments[i][2],\n control: arguments[i][3],\n alt: arguments[i][4],\n meta: arguments[i][5]\n });\n }\n};\n\n/**\n * Set up the default state for this keymap.\n */\nhterm.Keyboard.KeyMap.prototype.reset = function() {\n this.keyDefs = {};\n\n var self = this;\n\n // This function is used by the \"macro\" functions below. It makes it\n // possible to use the call() macro as an argument to any other macro.\n function resolve(action, e, k) {\n if (typeof action == 'function')\n return action.apply(self, [e, k]);\n\n return action;\n }\n\n // If not application keypad a, else b. The keys that care about\n // application keypad ignore it when the key is modified.\n function ak(a, b) {\n return function(e, k) {\n var action = (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey ||\n !self.keyboard.applicationKeypad) ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // If mod or not application cursor a, else b. The keys that care about\n // application cursor ignore it when the key is modified.\n function ac(a, b) {\n return function(e, k) {\n var action = (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey ||\n !self.keyboard.applicationCursor) ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // If not backspace-sends-backspace keypad a, else b.\n function bs(a, b) {\n return function(e, k) {\n var action = !self.keyboard.backspaceSendsBackspace ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // If not e.shiftKey a, else b.\n function sh(a, b) {\n return function(e, k) {\n var action = !e.shiftKey ? a : b;\n e.maskShiftKey = true;\n return resolve(action, e, k);\n };\n }\n\n // If not e.altKey a, else b.\n function alt(a, b) {\n return function(e, k) {\n var action = !e.altKey ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // If no modifiers a, else b.\n function mod(a, b) {\n return function(e, k) {\n var action = !(e.shiftKey || e.ctrlKey || e.altKey || e.metaKey) ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // Compute a control character for a given character.\n function ctl(ch) { return String.fromCharCode(ch.charCodeAt(0) - 64) }\n\n // Call a method on the keymap instance.\n function c(m) { return function (e, k) { return this[m](e, k) } }\n\n // Ignore if not trapping media keys.\n function med(fn) {\n return function(e, k) {\n if (!self.keyboard.mediaKeysAreFKeys) {\n // Block Back, Forward, and Reload keys to avoid navigating away from\n // the current page.\n return (e.keyCode == 166 || e.keyCode == 167 || e.keyCode == 168) ?\n hterm.Keyboard.KeyActions.CANCEL :\n hterm.Keyboard.KeyActions.PASS;\n }\n return resolve(fn, e, k);\n };\n }\n\n var ESC = '\\x1b';\n var CSI = '\\x1b[';\n var SS3 = '\\x1bO';\n\n var CANCEL = hterm.Keyboard.KeyActions.CANCEL;\n var DEFAULT = hterm.Keyboard.KeyActions.DEFAULT;\n var PASS = hterm.Keyboard.KeyActions.PASS;\n var STRIP = hterm.Keyboard.KeyActions.STRIP;\n\n this.addKeyDefs(\n // These fields are: [keycode, keycap, normal, control, alt, meta]\n\n // The browser sends the keycode 0 for some keys. We'll just assume it's\n // going to do the right thing by default for those keys.\n [0, '[UNKNOWN]', PASS, PASS, PASS, PASS],\n\n // First row.\n [27, '[ESC]', ESC, DEFAULT, DEFAULT, DEFAULT],\n [112, '[F1]', mod(SS3 + 'P', CSI + 'P'), DEFAULT, CSI + \"23~\", DEFAULT],\n [113, '[F2]', mod(SS3 + 'Q', CSI + 'Q'), DEFAULT, CSI + \"24~\", DEFAULT],\n [114, '[F3]', mod(SS3 + 'R', CSI + 'R'), DEFAULT, CSI + \"25~\", DEFAULT],\n [115, '[F4]', mod(SS3 + 'S', CSI + 'S'), DEFAULT, CSI + \"26~\", DEFAULT],\n [116, '[F5]', CSI + '15~', DEFAULT, CSI + \"28~\", DEFAULT],\n [117, '[F6]', CSI + '17~', DEFAULT, CSI + \"29~\", DEFAULT],\n [118, '[F7]', CSI + '18~', DEFAULT, CSI + \"31~\", DEFAULT],\n [119, '[F8]', CSI + '19~', DEFAULT, CSI + \"32~\", DEFAULT],\n [120, '[F9]', CSI + '20~', DEFAULT, CSI + \"33~\", DEFAULT],\n [121, '[F10]', CSI + '21~', DEFAULT, CSI + \"34~\", DEFAULT],\n [122, '[F11]', CSI + '23~', DEFAULT, CSI + \"42~\", DEFAULT],\n [123, '[F12]', CSI + '24~', DEFAULT, CSI + \"43~\", DEFAULT],\n\n // Second row.\n [192, '`~', DEFAULT, sh(ctl('@'), ctl('^')), DEFAULT, PASS],\n [49, '1!', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [50, '2@', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [51, '3#', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [52, '4$', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [53, '5%', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [54, '6^', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [55, '7&', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [56, '8*', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [57, '9(', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [48, '0)', DEFAULT, c('onPlusMinusZero_'),c('onAltNum_'),c('onPlusMinusZero_')],\n [189, '-_', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n [187, '=+', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n // Firefox -_ and =+\n [173, '-_', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n [61, '=+', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n // Firefox Italian +*\n [171, '+*', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n\n [8, '[BKSP]', bs('\\x7f', '\\b'), bs('\\b', '\\x7f'), DEFAULT, DEFAULT],\n\n // Third row.\n [9, '[TAB]', sh('\\t', CSI + 'Z'), STRIP, PASS, DEFAULT],\n [81, 'qQ', DEFAULT, ctl('Q'), DEFAULT, DEFAULT],\n [87, 'wW', DEFAULT, ctl('W'), DEFAULT, DEFAULT],\n [69, 'eE', DEFAULT, ctl('E'), DEFAULT, DEFAULT],\n [82, 'rR', DEFAULT, ctl('R'), DEFAULT, DEFAULT],\n [84, 'tT', DEFAULT, ctl('T'), DEFAULT, DEFAULT],\n [89, 'yY', DEFAULT, ctl('Y'), DEFAULT, DEFAULT],\n [85, 'uU', DEFAULT, ctl('U'), DEFAULT, DEFAULT],\n [73, 'iI', DEFAULT, ctl('I'), DEFAULT, DEFAULT],\n [79, 'oO', DEFAULT, ctl('O'), DEFAULT, DEFAULT],\n [80, 'pP', DEFAULT, ctl('P'), DEFAULT, DEFAULT],\n [219, '[{', DEFAULT, ctl('['), DEFAULT, DEFAULT],\n [221, ']}', DEFAULT, ctl(']'), DEFAULT, DEFAULT],\n [220, '\\\\|', DEFAULT, ctl('\\\\'), DEFAULT, DEFAULT],\n\n // Fourth row. (We let Ctrl-Shift-J pass for Chrome DevTools.)\n [20, '[CAPS]', PASS, PASS, PASS, DEFAULT],\n [65, 'aA', DEFAULT, ctl('A'), DEFAULT, DEFAULT],\n [83, 'sS', DEFAULT, ctl('S'), DEFAULT, DEFAULT],\n [68, 'dD', DEFAULT, ctl('D'), DEFAULT, DEFAULT],\n [70, 'fF', DEFAULT, ctl('F'), DEFAULT, DEFAULT],\n [71, 'gG', DEFAULT, ctl('G'), DEFAULT, DEFAULT],\n [72, 'hH', DEFAULT, ctl('H'), DEFAULT, DEFAULT],\n [74, 'jJ', DEFAULT, sh(ctl('J'), PASS), DEFAULT, DEFAULT],\n [75, 'kK', DEFAULT, sh(ctl('K'), c('onClear_')), DEFAULT, DEFAULT],\n [76, 'lL', DEFAULT, sh(ctl('L'), PASS), DEFAULT, DEFAULT],\n [186, ';:', DEFAULT, STRIP, DEFAULT, DEFAULT],\n [222, '\\'\"', DEFAULT, STRIP, DEFAULT, DEFAULT],\n [13, '[ENTER]', '\\r', CANCEL, CANCEL, DEFAULT],\n\n // Fifth row. This includes the copy/paste shortcuts. On some\n // platforms it's Ctrl-C/V, on others it's Meta-C/V. We assume either\n // Ctrl-C/Meta-C should pass to the browser when there is a selection,\n // and Ctrl-Shift-V/Meta-*-V should always pass to the browser (since\n // these seem to be recognized as paste too).\n [16, '[SHIFT]', PASS, PASS, PASS, DEFAULT],\n [90, 'zZ', DEFAULT, ctl('Z'), DEFAULT, DEFAULT],\n [88, 'xX', DEFAULT, ctl('X'), DEFAULT, DEFAULT],\n [67, 'cC', DEFAULT, c('onCtrlC_'), DEFAULT, c('onMetaC_')],\n [86, 'vV', DEFAULT, c('onCtrlV_'), DEFAULT, c('onMetaV_')],\n [66, 'bB', DEFAULT, sh(ctl('B'), PASS), DEFAULT, sh(DEFAULT, PASS)],\n [78, 'nN', DEFAULT, c('onCtrlN_'), DEFAULT, c('onMetaN_')],\n [77, 'mM', DEFAULT, ctl('M'), DEFAULT, DEFAULT],\n [188, ',<', DEFAULT, alt(STRIP, PASS), DEFAULT, DEFAULT],\n [190, '.>', DEFAULT, alt(STRIP, PASS), DEFAULT, DEFAULT],\n [191, '/?', DEFAULT, sh(ctl('_'), ctl('?')), DEFAULT, DEFAULT],\n\n // Sixth and final row.\n [17, '[CTRL]', PASS, PASS, PASS, PASS],\n [18, '[ALT]', PASS, PASS, PASS, PASS],\n [91, '[LAPL]', PASS, PASS, PASS, PASS],\n [32, ' ', DEFAULT, ctl('@'), DEFAULT, DEFAULT],\n [92, '[RAPL]', PASS, PASS, PASS, PASS],\n [93, '[RMENU]', PASS, PASS, PASS, PASS],\n\n // These things.\n [42, '[PRTSCR]', PASS, PASS, PASS, PASS],\n [145, '[SCRLK]', PASS, PASS, PASS, PASS],\n [19, '[BREAK]', PASS, PASS, PASS, PASS],\n\n // The block of six keys above the arrows.\n [45, '[INSERT]', c('onKeyInsert_'), DEFAULT, DEFAULT, DEFAULT],\n [36, '[HOME]', c('onKeyHome_'), DEFAULT, DEFAULT, DEFAULT],\n [33, '[PGUP]', c('onKeyPageUp_'), DEFAULT, DEFAULT, DEFAULT],\n [46, '[DEL]', c('onKeyDel_'), DEFAULT, DEFAULT, DEFAULT],\n [35, '[END]', c('onKeyEnd_'), DEFAULT, DEFAULT, DEFAULT],\n [34, '[PGDOWN]', c('onKeyPageDown_'), DEFAULT, DEFAULT, DEFAULT],\n\n // Arrow keys. When unmodified they respect the application cursor state,\n // otherwise they always send the CSI codes.\n [38, '[UP]', c('onKeyArrowUp_'), DEFAULT, DEFAULT, DEFAULT],\n [40, '[DOWN]', c('onKeyArrowDown_'), DEFAULT, DEFAULT, DEFAULT],\n [39, '[RIGHT]', ac(CSI + 'C', SS3 + 'C'), DEFAULT, DEFAULT, DEFAULT],\n [37, '[LEFT]', ac(CSI + 'D', SS3 + 'D'), DEFAULT, DEFAULT, DEFAULT],\n\n [144, '[NUMLOCK]', PASS, PASS, PASS, PASS],\n\n // With numlock off, the keypad generates the same key codes as the arrows\n // and 'block of six' for some keys, and null key codes for the rest.\n\n // Keypad with numlock on generates unique key codes...\n [96, '[KP0]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [97, '[KP1]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [98, '[KP2]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [99, '[KP3]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [100, '[KP4]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [101, '[KP5]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [102, '[KP6]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [103, '[KP7]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [104, '[KP8]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [105, '[KP9]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [107, '[KP+]', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n [109, '[KP-]', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n [106, '[KP*]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [111, '[KP/]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [110, '[KP.]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n\n // Chrome OS keyboard top row.\n [166, '[BACK]', med(mod(SS3+'P', CSI+'P')), DEFAULT, CSI+\"23~\", DEFAULT],\n [167, '[FWD]', med(mod(SS3+'Q', CSI+'Q')), DEFAULT, CSI+\"24~\", DEFAULT],\n [168, '[RELOAD]', med(mod(SS3+'R', CSI+'R')), DEFAULT, CSI+\"25~\", DEFAULT],\n [183, '[FSCR]', med(mod(SS3+'S', CSI+'S')), DEFAULT, CSI+\"26~\", DEFAULT],\n [182, '[WINS]', med(CSI + '15~'), DEFAULT, CSI+\"28~\", DEFAULT],\n [216, '[BRIT-]', med(CSI + '17~'), DEFAULT, CSI+\"29~\", DEFAULT],\n [217, '[BRIT+]', med(CSI + '18~'), DEFAULT, CSI+\"31~\", DEFAULT]\n\n // 173 [MUTE], 174 [VOL-] and 175 [VOL+] are trapped by the Chrome OS\n // window manager, so we'll never see them. Note that 173 is also\n // Firefox's -_ keycode.\n );\n};\n\n/**\n * Either allow the paste or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyInsert_ = function(e) {\n if (this.keyboard.shiftInsertPaste && e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n return '\\x1b[2~';\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyHome_ = function(e) {\n if (!this.keyboard.homeKeysScroll ^ e.shiftKey) {\n if ((e.altey || e.ctrlKey || e.shiftKey) ||\n !this.keyboard.applicationCursor) {\n return '\\x1b[H';\n }\n\n return '\\x1bOH';\n }\n\n this.keyboard.terminal.scrollHome();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyEnd_ = function(e) {\n if (!this.keyboard.homeKeysScroll ^ e.shiftKey) {\n if ((e.altKey || e.ctrlKey || e.shiftKey) ||\n !this.keyboard.applicationCursor) {\n return '\\x1b[F';\n }\n\n return '\\x1bOF';\n }\n\n this.keyboard.terminal.scrollEnd();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyPageUp_ = function(e) {\n if (!this.keyboard.pageKeysScroll ^ e.shiftKey)\n return '\\x1b[5~';\n\n this.keyboard.terminal.scrollPageUp();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either send a true DEL, or sub in meta-backspace.\n *\n * On Chrome OS, if we know the alt key is down, but we get a DEL event that\n * claims that the alt key is not pressed, we know the DEL was a synthetic\n * one from a user that hit alt-backspace. Based on a user pref, we can sub\n * in meta-backspace in this case.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyDel_ = function(e) {\n if (this.keyboard.altBackspaceIsMetaBackspace &&\n this.keyboard.altKeyPressed && !e.altKey)\n return '\\x1b\\x7f';\n return '\\x1b[3~';\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyPageDown_ = function(e) {\n if (!this.keyboard.pageKeysScroll ^ e.shiftKey)\n return '\\x1b[6~';\n\n this.keyboard.terminal.scrollPageDown();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyArrowUp_ = function(e) {\n if (!this.keyboard.applicationCursor && e.shiftKey) {\n this.keyboard.terminal.scrollLineUp();\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n return (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey ||\n !this.keyboard.applicationCursor) ? '\\x1b[A' : '\\x1bOA';\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyArrowDown_ = function(e) {\n if (!this.keyboard.applicationCursor && e.shiftKey) {\n this.keyboard.terminal.scrollLineDown();\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n return (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey ||\n !this.keyboard.applicationCursor) ? '\\x1b[B' : '\\x1bOB';\n};\n\n/**\n * Clear the primary/alternate screens and the scrollback buffer.\n */\nhterm.Keyboard.KeyMap.prototype.onClear_ = function(e, keyDef) {\n this.keyboard.terminal.wipeContents();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either pass Ctrl-1..9 to the browser or send them to the host.\n *\n * Note that Ctrl-1 and Ctrl-9 don't actually have special sequences mapped\n * to them in xterm or gnome-terminal. The range is really Ctrl-2..8, but\n * we handle 1..9 since Chrome treats the whole range special.\n */\nhterm.Keyboard.KeyMap.prototype.onCtrlNum_ = function(e, keyDef) {\n // Compute a control character for a given character.\n function ctl(ch) { return String.fromCharCode(ch.charCodeAt(0) - 64) }\n\n if (this.keyboard.terminal.passCtrlNumber && !e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n switch (keyDef.keyCap.substr(0, 1)) {\n case '1': return '1';\n case '2': return ctl('@');\n case '3': return ctl('[');\n case '4': return ctl('\\\\');\n case '5': return ctl(']');\n case '6': return ctl('^');\n case '7': return ctl('_');\n case '8': return '\\x7f';\n case '9': return '9';\n }\n};\n\n/**\n * Either pass Alt-1..9 to the browser or send them to the host.\n */\nhterm.Keyboard.KeyMap.prototype.onAltNum_ = function(e, keyDef) {\n if (this.keyboard.terminal.passAltNumber && !e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n return hterm.Keyboard.KeyActions.DEFAULT;\n};\n\n/**\n * Either pass Meta-1..9 to the browser or send them to the host.\n */\nhterm.Keyboard.KeyMap.prototype.onMetaNum_ = function(e, keyDef) {\n if (this.keyboard.terminal.passMetaNumber && !e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n return hterm.Keyboard.KeyActions.DEFAULT;\n};\n\n/**\n * Either send a ^C or interpret the keystroke as a copy command.\n */\nhterm.Keyboard.KeyMap.prototype.onCtrlC_ = function(e, keyDef) {\n var selection = this.keyboard.terminal.getDocument().getSelection();\n\n if (!selection.isCollapsed) {\n if (this.keyboard.ctrlCCopy && !e.shiftKey) {\n // Ctrl-C should copy if there is a selection, send ^C otherwise.\n // Perform the copy by letting the browser handle Ctrl-C. On most\n // browsers, this is the *only* way to place text on the clipboard from\n // the 'drive-by' web.\n if (this.keyboard.terminal.clearSelectionAfterCopy) {\n setTimeout(selection.collapseToEnd.bind(selection), 50);\n }\n return hterm.Keyboard.KeyActions.PASS;\n }\n\n if (!this.keyboard.ctrlCCopy && e.shiftKey) {\n // Ctrl-Shift-C should copy if there is a selection, send ^C otherwise.\n // Perform the copy manually. This only works in situations where\n // document.execCommand('copy') is allowed.\n if (this.keyboard.terminal.clearSelectionAfterCopy) {\n setTimeout(selection.collapseToEnd.bind(selection), 50);\n }\n this.keyboard.terminal.copySelectionToClipboard();\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n }\n\n return '\\x03';\n};\n\n/**\n * Either send a ^N or open a new window to the same location.\n */\nhterm.Keyboard.KeyMap.prototype.onCtrlN_ = function(e, keyDef) {\n if (e.shiftKey) {\n window.open(document.location.href, '',\n 'chrome=no,close=yes,resize=yes,scrollbars=yes,' +\n 'minimizable=yes,width=' + window.innerWidth +\n ',height=' + window.innerHeight);\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n return '\\x0e';\n};\n\n/**\n * Either send a ^V or issue a paste command.\n *\n * The default behavior is to paste if the user presses Ctrl-Shift-V, and send\n * a ^V if the user presses Ctrl-V. This can be flipped with the\n * 'ctrl-v-paste' preference.\n *\n */\nhterm.Keyboard.KeyMap.prototype.onCtrlV_ = function(e, keyDef) {\n if ((!e.shiftKey && this.keyboard.ctrlVPaste) ||\n (e.shiftKey && !this.keyboard.ctrlVPaste)) {\n // We try to do the pasting ourselves as not all browsers/OSs bind Ctrl-V to\n // pasting. Notably, on macOS, Ctrl-V/Ctrl-Shift-V do nothing.\n // However, this might run into web restrictions, so if it fails, we still\n // fallback to the letting the native behavior (hopefully) save us.\n if (this.keyboard.terminal.paste())\n return hterm.Keyboard.KeyActions.CANCEL;\n else\n return hterm.Keyboard.KeyActions.PASS;\n }\n\n return '\\x16';\n};\n\n/**\n * Either the default action or open a new window to the same location.\n */\nhterm.Keyboard.KeyMap.prototype.onMetaN_ = function(e, keyDef) {\n if (e.shiftKey) {\n window.open(document.location.href, '',\n 'chrome=no,close=yes,resize=yes,scrollbars=yes,' +\n 'minimizable=yes,width=' + window.outerWidth +\n ',height=' + window.outerHeight);\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n return hterm.Keyboard.KeyActions.DEFAULT;\n};\n\n/**\n * Either send a Meta-C or allow the browser to interpret the keystroke as a\n * copy command.\n *\n * If there is no selection, or if the user presses Meta-Shift-C, then we'll\n * transmit an '\\x1b' (if metaSendsEscape is on) followed by 'c' or 'C'.\n *\n * If there is a selection, we defer to the browser. In this case we clear out\n * the selection so the user knows we heard them, and also to give them a\n * chance to send a Meta-C by just hitting the key again.\n */\nhterm.Keyboard.KeyMap.prototype.onMetaC_ = function(e, keyDef) {\n var document = this.keyboard.terminal.getDocument();\n if (e.shiftKey || document.getSelection().isCollapsed) {\n // If the shift key is being held, or there is no document selection, send\n // a Meta-C. The keyboard code will add the ESC if metaSendsEscape is true,\n // we just have to decide between 'c' and 'C'.\n return keyDef.keyCap.substr(e.shiftKey ? 1 : 0, 1);\n }\n\n // Otherwise let the browser handle it as a copy command.\n if (this.keyboard.terminal.clearSelectionAfterCopy) {\n setTimeout(function() { document.getSelection().collapseToEnd() }, 50);\n }\n return hterm.Keyboard.KeyActions.PASS;\n};\n\n/**\n * Either PASS or DEFAULT Meta-V, depending on preference.\n *\n * Always PASS Meta-Shift-V to allow browser to interpret the keystroke as\n * a paste command.\n */\nhterm.Keyboard.KeyMap.prototype.onMetaV_ = function(e, keyDef) {\n if (e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n return this.keyboard.passMetaV ?\n hterm.Keyboard.KeyActions.PASS :\n hterm.Keyboard.KeyActions.DEFAULT;\n};\n\n/**\n * Handle font zooming.\n *\n * The browser's built-in zoom has a bit of an issue at certain zoom levels.\n * At some magnifications, the measured height of a row of text differs from\n * the height that was explicitly set.\n *\n * We override the browser zoom keys to change the ScrollPort's font size to\n * avoid the issue.\n */\nhterm.Keyboard.KeyMap.prototype.onPlusMinusZero_ = function(e, keyDef) {\n if (!(this.keyboard.ctrlPlusMinusZeroZoom ^ e.shiftKey)) {\n // If ctrl-PMZ controls zoom and the shift key is pressed, or\n // ctrl-shift-PMZ controls zoom and this shift key is not pressed,\n // then we want to send the control code instead of affecting zoom.\n if (keyDef.keyCap == '-_')\n return '\\x1f'; // ^_\n\n // Only ^_ is valid, the other sequences have no meaning.\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n if (this.keyboard.terminal.getZoomFactor() != 1) {\n // If we're not at 1:1 zoom factor, let the Ctrl +/-/0 keys control the\n // browser zoom, so it's easier to for the user to get back to 100%.\n return hterm.Keyboard.KeyActions.PASS;\n }\n\n var cap = keyDef.keyCap.substr(0, 1);\n if (cap == '0') {\n this.keyboard.terminal.setFontSize(0);\n } else {\n var size = this.keyboard.terminal.getFontSize();\n\n if (cap == '-' || keyDef.keyCap == '[KP-]') {\n size -= 1;\n } else {\n size += 1;\n }\n\n this.keyboard.terminal.setFontSize(size);\n }\n\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n// SOURCE FILE: hterm/js/hterm_keyboard_keypattern.js\n// Copyright (c) 2015 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * A record of modifier bits and keycode used to define a key binding.\n *\n * The modifier names are enumerated in the static KeyPattern.modifiers\n * property below. Each modifier can be true, false, or \"*\". True means\n * the modifier key must be present, false means it must not, and \"*\" means\n * it doesn't matter.\n */\nhterm.Keyboard.KeyPattern = function(spec) {\n this.wildcardCount = 0;\n this.keyCode = spec.keyCode;\n\n hterm.Keyboard.KeyPattern.modifiers.forEach(function(mod) {\n this[mod] = spec[mod] || false;\n if (this[mod] == '*')\n this.wildcardCount++;\n }.bind(this));\n};\n\n/**\n * Valid modifier names.\n */\nhterm.Keyboard.KeyPattern.modifiers = [\n 'shift', 'ctrl', 'alt', 'meta'\n];\n\n/**\n * A compare callback for Array.prototype.sort().\n *\n * The bindings code wants to be sure to search through the strictest key\n * patterns first, so that loosely defined patterns have a lower priority than\n * exact patterns.\n *\n * @param {hterm.Keyboard.KeyPattern} a\n * @param {hterm.Keyboard.KeyPattern} b\n */\nhterm.Keyboard.KeyPattern.sortCompare = function(a, b) {\n if (a.wildcardCount < b.wildcardCount)\n return -1;\n\n if (a.wildcardCount > b.wildcardCount)\n return 1;\n\n return 0;\n};\n\n/**\n * Private method used to match this key pattern against other key patterns\n * or key down events.\n *\n * @param {Object} The object to match.\n * @param {boolean} True if we should ignore wildcards. Useful when you want\n * to perform and exact match against another key pattern.\n */\nhterm.Keyboard.KeyPattern.prototype.match_ = function(obj, exactMatch) {\n if (this.keyCode != obj.keyCode)\n return false;\n\n var rv = true;\n\n hterm.Keyboard.KeyPattern.modifiers.forEach(function(mod) {\n var modValue = (mod in obj) ? obj[mod] : false;\n if (!rv || (!exactMatch && this[mod] == '*') || this[mod] == modValue)\n return;\n\n rv = false;\n }.bind(this));\n\n return rv;\n};\n\n/**\n * Return true if the given keyDown object is a match for this key pattern.\n *\n * @param {Object} keyDown An object with a keyCode property and zero or\n * more boolean properties representing key modifiers. These property names\n * must match those defined in hterm.Keyboard.KeyPattern.modifiers.\n */\nhterm.Keyboard.KeyPattern.prototype.matchKeyDown = function(keyDown) {\n return this.match_(keyDown, false);\n};\n\n/**\n * Return true if the given hterm.Keyboard.KeyPattern is exactly the same as\n * this one.\n *\n * @param {hterm.Keyboard.KeyPattern}\n */\nhterm.Keyboard.KeyPattern.prototype.matchKeyPattern = function(keyPattern) {\n return this.match_(keyPattern, true);\n};\n// SOURCE FILE: hterm/js/hterm_options.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * @fileoverview This file implements the hterm.Options class,\n * which stores current operating conditions for the terminal. This object is\n * used instead of a series of parameters to allow saving/restoring of cursor\n * conditions easily, and to provide an easy place for common configuration\n * options.\n *\n * Original code by Cory Maccarrone.\n */\n\n/**\n * Constructor for the hterm.Options class, optionally acting as a copy\n * constructor.\n *\n * The defaults are as defined in http://www.vt100.net/docs/vt510-rm/DECSTR\n * except that we enable autowrap (wraparound) by default since that seems to\n * be what xterm does.\n *\n * @param {hterm.Options=} opt_copy Optional instance to copy.\n * @constructor\n */\nhterm.Options = function(opt_copy) {\n // All attributes in this class are public to allow easy access by the\n // terminal.\n\n this.wraparound = opt_copy ? opt_copy.wraparound : true;\n this.reverseWraparound = opt_copy ? opt_copy.reverseWraparound : false;\n this.originMode = opt_copy ? opt_copy.originMode : false;\n this.autoCarriageReturn = opt_copy ? opt_copy.autoCarriageReturn : false;\n this.cursorVisible = opt_copy ? opt_copy.cursorVisible : false;\n this.cursorBlink = opt_copy ? opt_copy.cursorBlink : false;\n this.insertMode = opt_copy ? opt_copy.insertMode : false;\n this.reverseVideo = opt_copy ? opt_copy.reverseVideo : false;\n this.bracketedPaste = opt_copy ? opt_copy.bracketedPaste : false;\n};\n// SOURCE FILE: hterm/js/hterm_parser.js\n// Copyright (c) 2015 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('hterm.Keyboard.KeyActions');\n\n/**\n * @constructor\n * Parses the key definition syntax used for user keyboard customizations.\n */\nhterm.Parser = function() {\n /**\n * @type {string} The source string.\n */\n this.source = '';\n\n /**\n * @type {number} The current position.\n */\n this.pos = 0;\n\n /**\n * @type {string?} The character at the current position.\n */\n this.ch = null;\n};\n\nhterm.Parser.prototype.error = function(message) {\n return new Error('Parse error at ' + this.pos + ': ' + message);\n};\n\nhterm.Parser.prototype.isComplete = function() {\n return this.pos == this.source.length;\n};\n\nhterm.Parser.prototype.reset = function(source, opt_pos) {\n this.source = source;\n this.pos = opt_pos || 0;\n this.ch = source.substr(0, 1);\n};\n\n/**\n * Parse a key sequence.\n *\n * A key sequence is zero or more of the key modifiers defined in\n * hterm.Parser.identifiers.modifierKeys followed by a key code. Key\n * codes can be an integer or an identifier from\n * hterm.Parser.identifiers.keyCodes. Modifiers and keyCodes should be joined\n * by the dash character.\n *\n * An asterisk \"*\" can be used to indicate that the unspecified modifiers\n * are optional.\n *\n * For example:\n * A: Matches only an unmodified \"A\" character.\n * 65: Same as above.\n * 0x41: Same as above.\n * Ctrl-A: Matches only Ctrl-A.\n * Ctrl-65: Same as above.\n * Ctrl-0x41: Same as above.\n * Ctrl-Shift-A: Matches only Ctrl-Shift-A.\n * Ctrl-*-A: Matches Ctrl-A, as well as any other key sequence that includes\n * at least the Ctrl and A keys.\n *\n * @return {Object} An object with shift, ctrl, alt, meta, keyCode\n * properties.\n */\nhterm.Parser.prototype.parseKeySequence = function() {\n var rv = {\n keyCode: null\n };\n\n for (var k in hterm.Parser.identifiers.modifierKeys) {\n rv[hterm.Parser.identifiers.modifierKeys[k]] = false;\n }\n\n while (this.pos < this.source.length) {\n this.skipSpace();\n\n var token = this.parseToken();\n if (token.type == 'integer') {\n rv.keyCode = token.value;\n\n } else if (token.type == 'identifier') {\n var ucValue = token.value.toUpperCase();\n if (ucValue in hterm.Parser.identifiers.modifierKeys &&\n hterm.Parser.identifiers.modifierKeys.hasOwnProperty(ucValue)) {\n var mod = hterm.Parser.identifiers.modifierKeys[ucValue];\n if (rv[mod] && rv[mod] != '*')\n throw this.error('Duplicate modifier: ' + token.value);\n rv[mod] = true;\n\n } else if (ucValue in hterm.Parser.identifiers.keyCodes &&\n hterm.Parser.identifiers.keyCodes.hasOwnProperty(ucValue)) {\n rv.keyCode = hterm.Parser.identifiers.keyCodes[ucValue];\n\n } else {\n throw this.error('Unknown key: ' + token.value);\n }\n\n } else if (token.type == 'symbol') {\n if (token.value == '*') {\n for (var id in hterm.Parser.identifiers.modifierKeys) {\n var p = hterm.Parser.identifiers.modifierKeys[id];\n if (!rv[p])\n rv[p] = '*';\n }\n } else {\n throw this.error('Unexpected symbol: ' + token.value);\n }\n } else {\n throw this.error('Expected integer or identifier');\n }\n\n this.skipSpace();\n\n if (this.ch != '-')\n break;\n\n if (rv.keyCode != null)\n throw this.error('Extra definition after target key');\n\n this.advance(1);\n }\n\n if (rv.keyCode == null)\n throw this.error('Missing target key');\n\n return rv;\n};\n\nhterm.Parser.prototype.parseKeyAction = function() {\n this.skipSpace();\n\n var token = this.parseToken();\n\n if (token.type == 'string')\n return token.value;\n\n if (token.type == 'identifier') {\n if (token.value in hterm.Parser.identifiers.actions &&\n hterm.Parser.identifiers.actions.hasOwnProperty(token.value))\n return hterm.Parser.identifiers.actions[token.value];\n\n throw this.error('Unknown key action: ' + token.value);\n }\n\n throw this.error('Expected string or identifier');\n\n};\n\nhterm.Parser.prototype.peekString = function() {\n return this.ch == '\\'' || this.ch == '\"';\n};\n\nhterm.Parser.prototype.peekIdentifier = function() {\n return this.ch.match(/[a-z_]/i);\n};\n\nhterm.Parser.prototype.peekInteger = function() {\n return this.ch.match(/[0-9]/);\n};\n\nhterm.Parser.prototype.parseToken = function() {\n if (this.ch == '*') {\n var rv = {type: 'symbol', value: this.ch};\n this.advance(1);\n return rv;\n }\n\n if (this.peekIdentifier())\n return {type: 'identifier', value: this.parseIdentifier()};\n\n if (this.peekString())\n return {type: 'string', value: this.parseString()};\n\n if (this.peekInteger())\n return {type: 'integer', value: this.parseInteger()};\n\n\n throw this.error('Unexpected token');\n};\n\nhterm.Parser.prototype.parseIdentifier = function() {\n if (!this.peekIdentifier())\n throw this.error('Expected identifier');\n\n return this.parsePattern(/[a-z0-9_]+/ig);\n};\n\nhterm.Parser.prototype.parseInteger = function() {\n var base = 10;\n\n if (this.ch == '0' && this.pos < this.source.length - 1 &&\n this.source.substr(this.pos + 1, 1) == 'x') {\n return parseInt(this.parsePattern(/0x[0-9a-f]+/gi));\n }\n\n return parseInt(this.parsePattern(/\\d+/g));\n};\n\n/**\n * Parse a single or double quoted string.\n *\n * The current position should point at the initial quote character. Single\n * quoted strings will be treated literally, double quoted will process escapes.\n *\n * TODO(rginda): Variable interpolation.\n *\n * @param {ParseState} parseState\n * @param {string} quote A single or double-quote character.\n * @return {string}\n */\nhterm.Parser.prototype.parseString = function() {\n var result = '';\n\n var quote = this.ch;\n if (quote != '\"' && quote != '\\'')\n throw this.error('String expected');\n\n this.advance(1);\n\n var re = new RegExp('[\\\\\\\\' + quote + ']', 'g');\n\n while (this.pos < this.source.length) {\n re.lastIndex = this.pos;\n if (!re.exec(this.source))\n throw this.error('Unterminated string literal');\n\n result += this.source.substring(this.pos, re.lastIndex - 1);\n\n this.advance(re.lastIndex - this.pos - 1);\n\n if (quote == '\"' && this.ch == '\\\\') {\n this.advance(1);\n result += this.parseEscape();\n continue;\n }\n\n if (quote == '\\'' && this.ch == '\\\\') {\n result += this.ch;\n this.advance(1);\n continue;\n }\n\n if (this.ch == quote) {\n this.advance(1);\n return result;\n }\n }\n\n throw this.error('Unterminated string literal');\n};\n\n\n/**\n * Parse an escape code from the current position (which should point to\n * the first character AFTER the leading backslash.)\n *\n * @return {string}\n */\nhterm.Parser.prototype.parseEscape = function() {\n var map = {\n '\"': '\"',\n '\\'': '\\'',\n '\\\\': '\\\\',\n 'a': '\\x07',\n 'b': '\\x08',\n 'e': '\\x1b',\n 'f': '\\x0c',\n 'n': '\\x0a',\n 'r': '\\x0d',\n 't': '\\x09',\n 'v': '\\x0b',\n 'x': function() {\n var value = this.parsePattern(/[a-z0-9]{2}/ig);\n return String.fromCharCode(parseInt(value, 16));\n },\n 'u': function() {\n var value = this.parsePattern(/[a-z0-9]{4}/ig);\n return String.fromCharCode(parseInt(value, 16));\n }\n };\n\n if (!(this.ch in map && map.hasOwnProperty(this.ch)))\n throw this.error('Unknown escape: ' + this.ch);\n\n var value = map[this.ch];\n this.advance(1);\n\n if (typeof value == 'function')\n value = value.call(this);\n\n return value;\n};\n\n/**\n * Parse the given pattern starting from the current position.\n *\n * @param {RegExp} pattern A pattern representing the characters to span. MUST\n * include the \"global\" RegExp flag.\n * @return {string}\n */\nhterm.Parser.prototype.parsePattern = function(pattern) {\n if (!pattern.global)\n throw this.error('Internal error: Span patterns must be global');\n\n pattern.lastIndex = this.pos;\n var ary = pattern.exec(this.source);\n\n if (!ary || pattern.lastIndex - ary[0].length != this.pos)\n throw this.error('Expected match for: ' + pattern);\n\n this.pos = pattern.lastIndex - 1;\n this.advance(1);\n\n return ary[0];\n};\n\n\n/**\n * Advance the current position.\n *\n * @param {number} count\n */\nhterm.Parser.prototype.advance = function(count) {\n this.pos += count;\n this.ch = this.source.substr(this.pos, 1);\n};\n\n/**\n * @param {string=} opt_expect A list of valid non-whitespace characters to\n * terminate on.\n * @return {void}\n */\nhterm.Parser.prototype.skipSpace = function(opt_expect) {\n if (!/\\s/.test(this.ch))\n return;\n\n var re = /\\s+/gm;\n re.lastIndex = this.pos;\n\n var source = this.source;\n if (re.exec(source))\n this.pos = re.lastIndex;\n\n this.ch = this.source.substr(this.pos, 1);\n\n if (opt_expect) {\n if (this.ch.indexOf(opt_expect) == -1) {\n throw this.error('Expected one of ' + opt_expect + ', found: ' +\n this.ch);\n }\n }\n};\n// SOURCE FILE: hterm/js/hterm_parser_identifiers.js\n// Copyright (c) 2015 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Collections of identifier for hterm.Parser.\n */\nhterm.Parser.identifiers = {};\n\n/**\n * Modifier key names used when defining key sequences.\n *\n * These are upper case so we can normalize the user input and be forgiving.\n * \"CTRL-A\" and \"Ctrl-A\" and \"ctrl-a\" are all accepted.\n *\n * Note: Names here cannot overlap with hterm.Parser.identifiers.keyCodes.\n */\nhterm.Parser.identifiers.modifierKeys = {\n SHIFT: 'shift',\n CTRL: 'ctrl',\n // Common alias.\n CONTROL: 'ctrl',\n ALT: 'alt',\n META: 'meta'\n};\n\n/**\n * Key codes useful when defining key sequences.\n *\n * Punctuation is mostly left out of this list because they can move around\n * based on keyboard locale and browser.\n *\n * In a key sequence like \"Ctrl-ESC\", the ESC comes from this list of\n * identifiers. It is equivalent to \"Ctrl-27\" and \"Ctrl-0x1b\".\n *\n * These are upper case so we can normalize the user input and be forgiving.\n * \"Ctrl-ESC\" and \"Ctrl-Esc\" an \"Ctrl-esc\" are all accepted.\n *\n * We also include common aliases for the same key. \"Esc\" and \"Escape\" are the\n * same key.\n *\n * Note: Names here cannot overlap with hterm.Parser.identifiers.modifierKeys.\n */\nhterm.Parser.identifiers.keyCodes = {\n // Top row.\n ESCAPE: 27,\n ESC: 27,\n F1: 112,\n F2: 113,\n F3: 114,\n F4: 115,\n F5: 116,\n F6: 117,\n F7: 118,\n F8: 119,\n F9: 120,\n F10: 121,\n F11: 122,\n F12: 123,\n\n // Row two.\n ONE: 49,\n TWO: 50,\n THREE: 51,\n FOUR: 52,\n FIVE: 53,\n SIX: 54,\n SEVEN: 55,\n EIGHT: 56,\n NINE: 57,\n ZERO: 48,\n BACKSPACE: 8,\n BKSP: 8,\n BS: 8,\n\n // Row three.\n TAB: 9,\n Q: 81,\n W: 87,\n E: 69,\n R: 82,\n T: 84,\n Y: 89,\n U: 85,\n I: 73,\n O: 79,\n P: 80,\n\n // Row four.\n CAPS_LOCK: 20,\n CAPSLOCK: 20,\n CAPS: 20,\n A: 65,\n S: 83,\n D: 68,\n F: 70,\n G: 71,\n H: 72,\n J: 74,\n K: 75,\n L: 76,\n // We map enter and return together even though enter should really be 10\n // because most people don't know or care about the history here. Plus,\n // most keyboards/programs map them together already. If they really want\n // to bind them differently, they can also use the numeric value.\n ENTER: 13,\n ENT: 13,\n RETURN: 13,\n RET: 13,\n\n // Row five.\n Z: 90,\n X: 88,\n C: 67,\n V: 86,\n B: 66,\n N: 78,\n M: 77,\n\n // Etc.\n SPACE: 32,\n SP: 32,\n PRINT_SCREEN: 42,\n PRTSC: 42,\n SCROLL_LOCK: 145,\n SCRLK: 145,\n BREAK: 19,\n BRK: 19,\n INSERT: 45,\n INS: 45,\n HOME: 36,\n PAGE_UP: 33,\n PGUP: 33,\n DELETE: 46,\n DEL: 46,\n END: 35,\n PAGE_DOWN: 34,\n PGDOWN: 34,\n PGDN: 34,\n UP: 38,\n DOWN: 40,\n RIGHT: 39,\n LEFT: 37,\n NUMLOCK: 144,\n\n // Keypad\n KP0: 96,\n KP1: 97,\n KP2: 98,\n KP3: 99,\n KP4: 100,\n KP5: 101,\n KP6: 102,\n KP7: 103,\n KP8: 104,\n KP9: 105,\n KP_PLUS: 107,\n KP_ADD: 107,\n KP_MINUS: 109,\n KP_SUBTRACT: 109,\n KP_STAR: 106,\n KP_MULTIPLY: 106,\n KP_DIVIDE: 111,\n KP_DECIMAL: 110,\n KP_PERIOD: 110,\n\n // Chrome OS media keys\n NAVIGATE_BACK: 166,\n NAVIGATE_FORWARD: 167,\n RELOAD: 168,\n FULL_SCREEN: 183,\n WINDOW_OVERVIEW: 182,\n BRIGHTNESS_UP: 216,\n BRIGHTNESS_DOWN: 217\n};\n\n/**\n * Identifiers for use in key actions.\n */\nhterm.Parser.identifiers.actions = {\n /**\n * Prevent the browser and operating system from handling the event.\n */\n CANCEL: hterm.Keyboard.KeyActions.CANCEL,\n\n /**\n * Wait for a \"keypress\" event, send the keypress charCode to the host.\n */\n DEFAULT: hterm.Keyboard.KeyActions.DEFAULT,\n\n /**\n * Let the browser or operating system handle the key.\n */\n PASS: hterm.Keyboard.KeyActions.PASS,\n\n /**\n * Scroll the terminal one page up.\n */\n scrollPageUp: function(terminal) {\n terminal.scrollPageUp();\n return hterm.Keyboard.KeyActions.CANCEL;\n },\n\n /**\n * Scroll the terminal one page down.\n */\n scrollPageDown: function(terminal) {\n terminal.scrollPageDown();\n return hterm.Keyboard.KeyActions.CANCEL;\n },\n\n /**\n * Scroll the terminal to the top.\n */\n scrollToTop: function(terminal) {\n terminal.scrollEnd();\n return hterm.Keyboard.KeyActions.CANCEL;\n },\n\n /**\n * Scroll the terminal to the bottom.\n */\n scrollToBottom: function(terminal) {\n terminal.scrollEnd();\n return hterm.Keyboard.KeyActions.CANCEL;\n },\n\n /**\n * Clear the terminal and scrollback buffer.\n */\n clearScrollback: function(terminal) {\n terminal.wipeContents();\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n};\n// SOURCE FILE: hterm/js/hterm_preference_manager.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f', 'lib.Storage');\n\n/**\n * PreferenceManager subclass managing global NaSSH preferences.\n *\n * This is currently just an ordered list of known connection profiles.\n */\nhterm.PreferenceManager = function(profileId) {\n lib.PreferenceManager.call(this, hterm.defaultStorage,\n '/hterm/profiles/' + profileId);\n var defs = hterm.PreferenceManager.defaultPreferences;\n Object.keys(defs).forEach(function(key) {\n this.definePreference(key, defs[key][1]);\n }.bind(this));\n};\n\nhterm.PreferenceManager.categories = {};\nhterm.PreferenceManager.categories.Keyboard = 'Keyboard';\nhterm.PreferenceManager.categories.Appearance = 'Appearance';\nhterm.PreferenceManager.categories.CopyPaste = 'CopyPaste';\nhterm.PreferenceManager.categories.Sounds = 'Sounds';\nhterm.PreferenceManager.categories.Scrolling = 'Scrolling';\nhterm.PreferenceManager.categories.Encoding = 'Encoding';\nhterm.PreferenceManager.categories.Miscellaneous = 'Miscellaneous';\n\n/**\n * List of categories, ordered by display order (top to bottom)\n */\nhterm.PreferenceManager.categoryDefinitions = [\n { id: hterm.PreferenceManager.categories.Appearance,\n text: 'Appearance (fonts, colors, images)'},\n { id: hterm.PreferenceManager.categories.CopyPaste,\n text: 'Copy & Paste'},\n { id: hterm.PreferenceManager.categories.Encoding,\n text: 'Encoding'},\n { id: hterm.PreferenceManager.categories.Keyboard,\n text: 'Keyboard'},\n { id: hterm.PreferenceManager.categories.Scrolling,\n text: 'Scrolling'},\n { id: hterm.PreferenceManager.categories.Sounds,\n text: 'Sounds'},\n { id: hterm.PreferenceManager.categories.Miscellaneous,\n text: 'Misc.'}\n];\n\n\nhterm.PreferenceManager.defaultPreferences = {\n 'alt-gr-mode':\n [hterm.PreferenceManager.categories.Keyboard, null,\n [null, 'none', 'ctrl-alt', 'left-alt', 'right-alt'],\n 'Select an AltGr detection hack^Wheuristic.\\n' +\n '\\n' +\n '\\'null\\': Autodetect based on navigator.language:\\n' +\n ' \\'en-us\\' => \\'none\\', else => \\'right-alt\\'\\n' +\n '\\'none\\': Disable any AltGr related munging.\\n' +\n '\\'ctrl-alt\\': Assume Ctrl+Alt means AltGr.\\n' +\n '\\'left-alt\\': Assume left Alt means AltGr.\\n' +\n '\\'right-alt\\': Assume right Alt means AltGr.\\n'],\n\n 'alt-backspace-is-meta-backspace':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If set, undoes the Chrome OS Alt-Backspace->DEL remap, so that ' +\n 'alt-backspace indeed is alt-backspace.'],\n\n 'alt-is-meta':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'Set whether the alt key acts as a meta key or as a distinct alt key.'],\n\n 'alt-sends-what':\n [hterm.PreferenceManager.categories.Keyboard, 'escape',\n ['escape', '8-bit', 'browser-key'],\n 'Controls how the alt key is handled.\\n' +\n '\\n' +\n ' escape....... Send an ESC prefix.\\n' +\n ' 8-bit........ Add 128 to the unshifted character as in xterm.\\n' +\n ' browser-key.. Wait for the keypress event and see what the browser \\n' +\n ' says. (This won\\'t work well on platforms where the \\n' +\n ' browser performs a default action for some alt sequences.)'\n ],\n\n 'audible-bell-sound':\n [hterm.PreferenceManager.categories.Sounds, 'lib-resource:hterm/audio/bell',\n 'url',\n 'URL of the terminal bell sound. Empty string for no audible bell.'],\n\n 'desktop-notification-bell':\n [hterm.PreferenceManager.categories.Sounds, false, 'bool',\n 'If true, terminal bells in the background will create a Web ' +\n 'Notification. https://www.w3.org/TR/notifications/\\n' +\n '\\n'+\n 'Displaying notifications requires permission from the user. When this ' +\n 'option is set to true, hterm will attempt to ask the user for permission ' +\n 'if necessary. Note browsers may not show this permission request if it ' +\n 'did not originate from a user action.\\n' +\n '\\n' +\n 'Chrome extensions with the \"notifications\" permission have permission to ' +\n 'display notifications.'],\n\n 'background-color':\n [hterm.PreferenceManager.categories.Appearance, 'rgb(16, 16, 16)', 'color',\n 'The background color for text with no other color attributes.'],\n\n 'background-image':\n [hterm.PreferenceManager.categories.Appearance, '', 'string',\n 'CSS value of the background image. Empty string for no image.\\n' +\n '\\n' +\n 'For example:\\n' +\n ' url(https://goo.gl/anedTK)\\n' +\n ' linear-gradient(top bottom, blue, red)'],\n\n 'background-size':\n [hterm.PreferenceManager.categories.Appearance, '', 'string',\n 'CSS value of the background image size. Defaults to none.'],\n\n 'background-position':\n [hterm.PreferenceManager.categories.Appearance, '', 'string',\n 'CSS value of the background image position.\\n' +\n '\\n' +\n 'For example:\\n' +\n ' 10% 10%\\n' +\n ' center'],\n\n 'backspace-sends-backspace':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If true, the backspace should send BS (\\'\\\\x08\\', aka ^H). Otherwise ' +\n 'the backspace key should send \\'\\\\x7f\\'.'],\n\n 'character-map-overrides':\n [hterm.PreferenceManager.categories.Appearance, null, 'value',\n 'This is specified as an object. It is a sparse array, where each ' +\n 'property is the character set code and the value is an object that is ' +\n 'a sparse array itself. In that sparse array, each property is the ' +\n 'received character and the value is the displayed character.\\n' +\n '\\n' +\n 'For example:\\n' +\n ' {\"0\":{\"+\":\"\\\\u2192\",\",\":\"\\\\u2190\",\"-\":\"\\\\u2191\",\".\":\"\\\\u2193\", ' +\n '\"0\":\"\\\\u2588\"}}'\n ],\n\n 'close-on-exit':\n [hterm.PreferenceManager.categories.Miscellaneous, true, 'bool',\n 'Whether or not to close the window when the command exits.'],\n\n 'cursor-blink':\n [hterm.PreferenceManager.categories.Appearance, false, 'bool',\n 'Whether or not to blink the cursor by default.'],\n\n 'cursor-blink-cycle':\n [hterm.PreferenceManager.categories.Appearance, [1000, 500], 'value',\n 'The cursor blink rate in milliseconds.\\n' +\n '\\n' +\n 'A two element array, the first of which is how long the cursor should be ' +\n 'on, second is how long it should be off.'],\n\n 'cursor-color':\n [hterm.PreferenceManager.categories.Appearance, 'rgba(255, 0, 0, 0.5)',\n 'color',\n 'The color of the visible cursor.'],\n\n 'color-palette-overrides':\n [hterm.PreferenceManager.categories.Appearance, null, 'value',\n 'Override colors in the default palette.\\n' +\n '\\n' +\n 'This can be specified as an array or an object. If specified as an ' +\n 'object it is assumed to be a sparse array, where each property ' +\n 'is a numeric index into the color palette.\\n' +\n '\\n' +\n 'Values can be specified as almost any css color value. This ' +\n 'includes #RGB, #RRGGBB, rgb(...), rgba(...), and any color names ' +\n 'that are also part of the stock X11 rgb.txt file.\\n' +\n '\\n' +\n 'You can use \\'null\\' to specify that the default value should be not ' +\n 'be changed. This is useful for skipping a small number of indices ' +\n 'when the value is specified as an array.'],\n\n 'copy-on-select':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Automatically copy mouse selection to the clipboard.'],\n\n 'use-default-window-copy':\n [hterm.PreferenceManager.categories.CopyPaste, false, 'bool',\n 'Whether to use the default window copy behavior'],\n\n 'clear-selection-after-copy':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Whether to clear the selection after copying.'],\n\n 'ctrl-plus-minus-zero-zoom':\n [hterm.PreferenceManager.categories.Keyboard, true, 'bool',\n 'If true, Ctrl-Plus/Minus/Zero controls zoom.\\n' +\n 'If false, Ctrl-Shift-Plus/Minus/Zero controls zoom, Ctrl-Minus sends ^_, ' +\n 'Ctrl-Plus/Zero do nothing.'],\n\n 'ctrl-c-copy':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'Ctrl+C copies if true, send ^C to host if false.\\n' +\n 'Ctrl+Shift+C sends ^C to host if true, copies if false.'],\n\n 'ctrl-v-paste':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'Ctrl+V pastes if true, send ^V to host if false.\\n' +\n 'Ctrl+Shift+V sends ^V to host if true, pastes if false.'],\n\n 'east-asian-ambiguous-as-two-column':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'Set whether East Asian Ambiguous characters have two column width.'],\n\n 'enable-8-bit-control':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'True to enable 8-bit control characters, false to ignore them.\\n' +\n '\\n' +\n 'We\\'ll respect the two-byte versions of these control characters ' +\n 'regardless of this setting.'],\n\n 'enable-bold':\n [hterm.PreferenceManager.categories.Appearance, null, 'tristate',\n 'True if we should use bold weight font for text with the bold/bright ' +\n 'attribute. False to use the normal weight font. Null to autodetect.'],\n\n 'enable-bold-as-bright':\n [hterm.PreferenceManager.categories.Appearance, true, 'bool',\n 'True if we should use bright colors (8-15 on a 16 color palette) ' +\n 'for any text with the bold attribute. False otherwise.'],\n\n 'enable-blink':\n [hterm.PreferenceManager.categories.Appearance, true, 'bool',\n 'True if we should respect the blink attribute. False to ignore it. '],\n\n 'enable-clipboard-notice':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Show a message in the terminal when the host writes to the clipboard.'],\n\n 'enable-clipboard-write':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Allow the host to write directly to the system clipboard.'],\n\n 'enable-dec12':\n [hterm.PreferenceManager.categories.Miscellaneous, false, 'bool',\n 'Respect the host\\'s attempt to change the cursor blink status using ' +\n 'DEC Private Mode 12.'],\n\n 'environment':\n [hterm.PreferenceManager.categories.Miscellaneous, {'TERM': 'xterm-256color'},\n 'value',\n 'The default environment variables, as an object.'],\n\n 'font-family':\n [hterm.PreferenceManager.categories.Appearance,\n '\"DejaVu Sans Mono\", \"Everson Mono\", FreeMono, \"Menlo\", \"Terminal\", ' +\n 'monospace', 'string',\n 'Default font family for the terminal text.'],\n\n 'font-size':\n [hterm.PreferenceManager.categories.Appearance, 15, 'int',\n 'The default font size in pixels.'],\n\n 'font-smoothing':\n [hterm.PreferenceManager.categories.Appearance, 'antialiased', 'string',\n 'CSS font-smoothing property.'],\n\n 'foreground-color':\n [hterm.PreferenceManager.categories.Appearance, 'rgb(240, 240, 240)', 'color',\n 'The foreground color for text with no other color attributes.'],\n\n 'home-keys-scroll':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If true, home/end will control the terminal scrollbar and shift home/end ' +\n 'will send the VT keycodes. If false then home/end sends VT codes and ' +\n 'shift home/end scrolls.'],\n\n 'keybindings':\n [hterm.PreferenceManager.categories.Keyboard, null, 'value',\n 'A map of key sequence to key actions. Key sequences include zero or ' +\n 'more modifier keys followed by a key code. Key codes can be decimal or ' +\n 'hexadecimal numbers, or a key identifier. Key actions can be specified ' +\n 'a string to send to the host, or an action identifier. For a full ' +\n 'explanation of the format, see https://goo.gl/LWRndr.\\n' +\n '\\n' +\n 'Sample keybindings:\\n' +\n '{\\n' +\n ' \"Ctrl-Alt-K\": \"clearScrollback\",\\n' +\n ' \"Ctrl-Shift-L\": \"PASS\",\\n' +\n ' \"Ctrl-H\": \"\\'HELLO\\\\n\\'\"\\n' +\n '}'],\n\n 'max-string-sequence':\n [hterm.PreferenceManager.categories.Encoding, 100000, 'int',\n 'Max length of a DCS, OSC, PM, or APS sequence before we give up and ' +\n 'ignore the code.'],\n\n 'media-keys-are-fkeys':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If true, convert media keys to their Fkey equivalent. If false, let ' +\n 'the browser handle the keys.'],\n\n 'meta-sends-escape':\n [hterm.PreferenceManager.categories.Keyboard, true, 'bool',\n 'Set whether the meta key sends a leading escape or not.'],\n\n 'mouse-right-click-paste':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Paste on right mouse button clicks.\\n' +\n '\\n' +\n 'This option is activate independent of the \"mouse-paste-button\" ' +\n 'setting.\\n' +\n '\\n' +\n 'Note: This will handle left & right handed mice correctly.'],\n\n 'mouse-paste-button':\n [hterm.PreferenceManager.categories.CopyPaste, null,\n [null, 0, 1, 2, 3, 4, 5, 6],\n 'Mouse paste button, or null to autodetect.\\n' +\n '\\n' +\n 'For autodetect, we\\'ll use the middle mouse button for non-X11 ' +\n 'platforms (including Chrome OS). On X11, we\\'ll use the right mouse ' +\n 'button (since the native window manager should paste via the middle ' +\n 'mouse button).\\n' +\n '\\n' +\n '0 == left (primary) button.\\n' +\n '1 == middle (auxiliary) button.\\n' +\n '2 == right (secondary) button.\\n' +\n '\\n' +\n 'This option is activate independent of the \"mouse-right-click-paste\" ' +\n 'setting.\\n' +\n '\\n' +\n 'Note: This will handle left & right handed mice correctly.'],\n\n 'word-break-match-left':\n [hterm.PreferenceManager.categories.CopyPaste,\n '[^\\\\s\\\\[\\\\](){}<>\"\\'\\\\^!@#$%&*,;:`]', 'string',\n 'Regular expression to halt matching to the left (start) of a selection.\\n' +\n '\\n' +\n 'Normally this is a character class to reject specific characters.\\n' +\n 'We allow \"~\" and \".\" by default as paths frequently start with those.'],\n\n 'word-break-match-right':\n [hterm.PreferenceManager.categories.CopyPaste,\n '[^\\\\s\\\\[\\\\](){}<>\"\\'\\\\^!@#$%&*,;:~.`]', 'string',\n 'Regular expression to halt matching to the right (end) of a selection.\\n' +\n '\\n' +\n 'Normally this is a character class to reject specific characters.'],\n\n 'word-break-match-middle':\n [hterm.PreferenceManager.categories.CopyPaste,\n '[^\\\\s\\\\[\\\\](){}<>\"\\'\\\\^]*', 'string',\n 'Regular expression to match all the characters in the middle.\\n' +\n '\\n' +\n 'Normally this is a character class to reject specific characters.\\n' +\n '\\n' +\n 'Used to expand the selection surrounding the starting point.'],\n\n 'page-keys-scroll':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If true, page up/down will control the terminal scrollbar and shift ' +\n 'page up/down will send the VT keycodes. If false then page up/down ' +\n 'sends VT codes and shift page up/down scrolls.'],\n\n 'pass-alt-number':\n [hterm.PreferenceManager.categories.Keyboard, null, 'tristate',\n 'Set whether we should pass Alt-1..9 to the browser.\\n' +\n '\\n' +\n 'This is handy when running hterm in a browser tab, so that you don\\'t ' +\n 'lose Chrome\\'s \"switch to tab\" keyboard accelerators. When not running ' +\n 'in a tab it\\'s better to send these keys to the host so they can be ' +\n 'used in vim or emacs.\\n' +\n '\\n' +\n 'If true, Alt-1..9 will be handled by the browser. If false, Alt-1..9 ' +\n 'will be sent to the host. If null, autodetect based on browser platform ' +\n 'and window type.'],\n\n 'pass-ctrl-number':\n [hterm.PreferenceManager.categories.Keyboard, null, 'tristate',\n 'Set whether we should pass Ctrl-1..9 to the browser.\\n' +\n '\\n' +\n 'This is handy when running hterm in a browser tab, so that you don\\'t ' +\n 'lose Chrome\\'s \"switch to tab\" keyboard accelerators. When not running ' +\n 'in a tab it\\'s better to send these keys to the host so they can be ' +\n 'used in vim or emacs.\\n' +\n '\\n' +\n 'If true, Ctrl-1..9 will be handled by the browser. If false, Ctrl-1..9 ' +\n 'will be sent to the host. If null, autodetect based on browser platform ' +\n 'and window type.'],\n\n 'pass-meta-number':\n [hterm.PreferenceManager.categories.Keyboard, null, 'tristate',\n 'Set whether we should pass Meta-1..9 to the browser.\\n' +\n '\\n' +\n 'This is handy when running hterm in a browser tab, so that you don\\'t ' +\n 'lose Chrome\\'s \"switch to tab\" keyboard accelerators. When not running ' +\n 'in a tab it\\'s better to send these keys to the host so they can be ' +\n 'used in vim or emacs.\\n' +\n '\\n' +\n 'If true, Meta-1..9 will be handled by the browser. If false, Meta-1..9 ' +\n 'will be sent to the host. If null, autodetect based on browser platform ' +\n 'and window type.'],\n\n 'pass-meta-v':\n [hterm.PreferenceManager.categories.Keyboard, true, 'bool',\n 'Set whether meta-V gets passed to host.'],\n\n 'receive-encoding':\n [hterm.PreferenceManager.categories.Encoding, 'utf-8', ['utf-8', 'raw'],\n 'Set the expected encoding for data received from the host.\\n' +\n '\\n' +\n 'Valid values are \\'utf-8\\' and \\'raw\\'.'],\n\n 'scroll-on-keystroke':\n [hterm.PreferenceManager.categories.Scrolling, true, 'bool',\n 'If true, scroll to the bottom on any keystroke.'],\n\n 'scroll-on-output':\n [hterm.PreferenceManager.categories.Scrolling, false, 'bool',\n 'If true, scroll to the bottom on terminal output.'],\n\n 'scrollbar-visible':\n [hterm.PreferenceManager.categories.Scrolling, true, 'bool',\n 'The vertical scrollbar mode.'],\n\n 'scroll-wheel-may-send-arrow-keys':\n [hterm.PreferenceManager.categories.Scrolling, false, 'bool',\n 'When using the alternative screen buffer, and DECCKM (Application Cursor ' +\n 'Keys) is active, mouse wheel scroll events will emulate arrow keys.\\n' +\n '\\n' +\n 'It can be temporarily disabled by holding the shift key.\\n' +\n '\\n' +\n 'This frequently comes up when using pagers (less) or reading man pages ' +\n 'or text editors (vi/nano) or using screen/tmux.'],\n\n 'scroll-wheel-move-multiplier':\n [hterm.PreferenceManager.categories.Scrolling, 1, 'int',\n 'The multiplier for the pixel delta in wheel events caused by the ' +\n 'scroll wheel. Alters how fast the page scrolls.'],\n\n 'send-encoding':\n [hterm.PreferenceManager.categories.Encoding, 'utf-8', ['utf-8', 'raw'],\n 'Set the encoding for data sent to host.'],\n\n 'terminal-encoding':\n [hterm.PreferenceManager.categories.Encoding, 'iso-2022',\n ['iso-2022', 'utf-8', 'utf-8-locked'],\n 'The default terminal encoding (DOCS).\\n' +\n '\\n' +\n 'ISO-2022 enables character map translations (like graphics maps).\\n' +\n 'UTF-8 disables support for those.\\n' +\n '\\n' +\n 'The locked variant means the encoding cannot be changed at runtime ' +\n 'via terminal escape sequences.\\n' +\n '\\n' +\n 'You should stick with UTF-8 unless you notice broken rendering with ' +\n 'legacy applications.'],\n\n 'shift-insert-paste':\n [hterm.PreferenceManager.categories.Keyboard, true, 'bool',\n 'Shift + Insert pastes if true, sent to host if false.'],\n\n 'user-css':\n [hterm.PreferenceManager.categories.Appearance, '', 'url',\n 'URL of user stylesheet to include in the terminal document.'],\n\n 'user-css-text':\n [hterm.PreferenceManager.categories.Appearance, '', 'multiline-string',\n 'Custom CSS text for styling the terminal.'],\n};\n\nhterm.PreferenceManager.prototype =\n Object.create(lib.PreferenceManager.prototype);\nhterm.PreferenceManager.constructor = hterm.PreferenceManager;\n// SOURCE FILE: hterm/js/hterm_pubsub.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Utility class used to add publish/subscribe/unsubscribe functionality to\n * an existing object.\n */\nhterm.PubSub = function() {\n this.observers_ = {};\n};\n\n/**\n * Add publish, subscribe, and unsubscribe methods to an existing object.\n *\n * No other properties of the object are touched, so there is no need to\n * worry about clashing private properties.\n *\n * @param {Object} obj The object to add this behavior to.\n */\nhterm.PubSub.addBehavior = function(obj) {\n var pubsub = new hterm.PubSub();\n for (var m in hterm.PubSub.prototype) {\n obj[m] = hterm.PubSub.prototype[m].bind(pubsub);\n }\n};\n\n/**\n * Subscribe to be notified of messages about a subject.\n *\n * @param {string} subject The subject to subscribe to.\n * @param {function(Object)} callback The function to invoke for notifications.\n */\nhterm.PubSub.prototype.subscribe = function(subject, callback) {\n if (!(subject in this.observers_))\n this.observers_[subject] = [];\n\n this.observers_[subject].push(callback);\n};\n\n/**\n * Unsubscribe from a subject.\n *\n * @param {string} subject The subject to unsubscribe from.\n * @param {function(Object)} callback A callback previously registered via\n * subscribe().\n */\nhterm.PubSub.prototype.unsubscribe = function(subject, callback) {\n var list = this.observers_[subject];\n if (!list)\n throw 'Invalid subject: ' + subject;\n\n var i = list.indexOf(callback);\n if (i < 0)\n throw 'Not subscribed: ' + subject;\n\n list.splice(i, 1);\n};\n\n/**\n * Publish a message about a subject.\n *\n * Subscribers (and the optional final callback) are invoked asynchronously.\n * This method will return before anyone is actually notified.\n *\n * @param {string} subject The subject to publish about.\n * @param {Object} e An arbitrary object associated with this notification.\n * @param {function(Object)} opt_lastCallback An optional function to call after\n * all subscribers have been notified.\n */\nhterm.PubSub.prototype.publish = function(subject, e, opt_lastCallback) {\n function notifyList(i) {\n // Set this timeout before invoking the callback, so we don't have to\n // concern ourselves with exceptions.\n if (i < list.length - 1)\n setTimeout(notifyList, 0, i + 1);\n\n list[i](e);\n }\n\n var list = this.observers_[subject];\n if (list) {\n // Copy the list, in case it changes while we're notifying.\n list = [].concat(list);\n }\n\n if (opt_lastCallback) {\n if (list) {\n list.push(opt_lastCallback);\n } else {\n list = [opt_lastCallback];\n }\n }\n\n if (list)\n setTimeout(notifyList, 0, 0);\n};\n// SOURCE FILE: hterm/js/hterm_screen.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f', 'lib.wc',\n 'hterm.RowCol', 'hterm.Size', 'hterm.TextAttributes');\n\n/**\n * @fileoverview This class represents a single terminal screen full of text.\n *\n * It maintains the current cursor position and has basic methods for text\n * insert and overwrite, and adding or removing rows from the screen.\n *\n * This class has no knowledge of the scrollback buffer.\n *\n * The number of rows on the screen is determined only by the number of rows\n * that the caller inserts into the screen. If a caller wants to ensure a\n * constant number of rows on the screen, it's their responsibility to remove a\n * row for each row inserted.\n *\n * The screen width, in contrast, is enforced locally.\n *\n *\n * In practice...\n * - The hterm.Terminal class holds two hterm.Screen instances. One for the\n * primary screen and one for the alternate screen.\n *\n * - The html.Screen class only cares that rows are HTMLElements. In the\n * larger context of hterm, however, the rows happen to be displayed by an\n * hterm.ScrollPort and have to follow a few rules as a result. Each\n * row must be rooted by the custom HTML tag 'x-row', and each must have a\n * rowIndex property that corresponds to the index of the row in the context\n * of the scrollback buffer. These invariants are enforced by hterm.Terminal\n * because that is the class using the hterm.Screen in the context of an\n * hterm.ScrollPort.\n */\n\n/**\n * Create a new screen instance.\n *\n * The screen initially has no rows and a maximum column count of 0.\n *\n * @param {integer} opt_columnCount The maximum number of columns for this\n * screen. See insertString() and overwriteString() for information about\n * what happens when too many characters are added too a row. Defaults to\n * 0 if not provided.\n */\nhterm.Screen = function(opt_columnCount) {\n /**\n * Public, read-only access to the rows in this screen.\n */\n this.rowsArray = [];\n\n // The max column width for this screen.\n this.columnCount_ = opt_columnCount || 80;\n\n // The current color, bold, underline and blink attributes.\n this.textAttributes = new hterm.TextAttributes(window.document);\n\n // Current zero-based cursor coordinates.\n this.cursorPosition = new hterm.RowCol(0, 0);\n\n // The node containing the row that the cursor is positioned on.\n this.cursorRowNode_ = null;\n\n // The node containing the span of text that the cursor is positioned on.\n this.cursorNode_ = null;\n\n // The offset in column width into cursorNode_ where the cursor is positioned.\n this.cursorOffset_ = null;\n\n // Regexes for expanding word selections.\n this.wordBreakMatchLeft = null;\n this.wordBreakMatchRight = null;\n this.wordBreakMatchMiddle = null;\n};\n\n/**\n * Return the screen size as an hterm.Size object.\n *\n * @return {hterm.Size} hterm.Size object representing the current number\n * of rows and columns in this screen.\n */\nhterm.Screen.prototype.getSize = function() {\n return new hterm.Size(this.columnCount_, this.rowsArray.length);\n};\n\n/**\n * Return the current number of rows in this screen.\n *\n * @return {integer} The number of rows in this screen.\n */\nhterm.Screen.prototype.getHeight = function() {\n return this.rowsArray.length;\n};\n\n/**\n * Return the current number of columns in this screen.\n *\n * @return {integer} The number of columns in this screen.\n */\nhterm.Screen.prototype.getWidth = function() {\n return this.columnCount_;\n};\n\n/**\n * Set the maximum number of columns per row.\n *\n * @param {integer} count The maximum number of columns per row.\n */\nhterm.Screen.prototype.setColumnCount = function(count) {\n this.columnCount_ = count;\n\n if (this.cursorPosition.column >= count)\n this.setCursorPosition(this.cursorPosition.row, count - 1);\n};\n\n/**\n * Remove the first row from the screen and return it.\n *\n * @return {HTMLElement} The first row in this screen.\n */\nhterm.Screen.prototype.shiftRow = function() {\n return this.shiftRows(1)[0];\n};\n\n/**\n * Remove rows from the top of the screen and return them as an array.\n *\n * @param {integer} count The number of rows to remove.\n * @return {Array.} The selected rows.\n */\nhterm.Screen.prototype.shiftRows = function(count) {\n return this.rowsArray.splice(0, count);\n};\n\n/**\n * Insert a row at the top of the screen.\n *\n * @param {HTMLElement} row The row to insert.\n */\nhterm.Screen.prototype.unshiftRow = function(row) {\n this.rowsArray.splice(0, 0, row);\n};\n\n/**\n * Insert rows at the top of the screen.\n *\n * @param {Array.} rows The rows to insert.\n */\nhterm.Screen.prototype.unshiftRows = function(rows) {\n this.rowsArray.unshift.apply(this.rowsArray, rows);\n};\n\n/**\n * Remove the last row from the screen and return it.\n *\n * @return {HTMLElement} The last row in this screen.\n */\nhterm.Screen.prototype.popRow = function() {\n return this.popRows(1)[0];\n};\n\n/**\n * Remove rows from the bottom of the screen and return them as an array.\n *\n * @param {integer} count The number of rows to remove.\n * @return {Array.} The selected rows.\n */\nhterm.Screen.prototype.popRows = function(count) {\n return this.rowsArray.splice(this.rowsArray.length - count, count);\n};\n\n/**\n * Insert a row at the bottom of the screen.\n *\n * @param {HTMLElement} row The row to insert.\n */\nhterm.Screen.prototype.pushRow = function(row) {\n this.rowsArray.push(row);\n};\n\n/**\n * Insert rows at the bottom of the screen.\n *\n * @param {Array.} rows The rows to insert.\n */\nhterm.Screen.prototype.pushRows = function(rows) {\n rows.push.apply(this.rowsArray, rows);\n};\n\n/**\n * Insert a row at the specified row of the screen.\n *\n * @param {integer} index The index to insert the row.\n * @param {HTMLElement} row The row to insert.\n */\nhterm.Screen.prototype.insertRow = function(index, row) {\n this.rowsArray.splice(index, 0, row);\n};\n\n/**\n * Insert rows at the specified row of the screen.\n *\n * @param {integer} index The index to insert the rows.\n * @param {Array.} rows The rows to insert.\n */\nhterm.Screen.prototype.insertRows = function(index, rows) {\n for (var i = 0; i < rows.length; i++) {\n this.rowsArray.splice(index + i, 0, rows[i]);\n }\n};\n\n/**\n * Remove a row from the screen and return it.\n *\n * @param {integer} index The index of the row to remove.\n * @return {HTMLElement} The selected row.\n */\nhterm.Screen.prototype.removeRow = function(index) {\n return this.rowsArray.splice(index, 1)[0];\n};\n\n/**\n * Remove rows from the bottom of the screen and return them as an array.\n *\n * @param {integer} index The index to start removing rows.\n * @param {integer} count The number of rows to remove.\n * @return {Array.} The selected rows.\n */\nhterm.Screen.prototype.removeRows = function(index, count) {\n return this.rowsArray.splice(index, count);\n};\n\n/**\n * Invalidate the current cursor position.\n *\n * This sets this.cursorPosition to (0, 0) and clears out some internal\n * data.\n *\n * Attempting to insert or overwrite text while the cursor position is invalid\n * will raise an obscure exception.\n */\nhterm.Screen.prototype.invalidateCursorPosition = function() {\n this.cursorPosition.move(0, 0);\n this.cursorRowNode_ = null;\n this.cursorNode_ = null;\n this.cursorOffset_ = null;\n};\n\n/**\n * Clear the contents of the cursor row.\n */\nhterm.Screen.prototype.clearCursorRow = function() {\n this.cursorRowNode_.innerHTML = '';\n this.cursorRowNode_.removeAttribute('line-overflow');\n this.cursorOffset_ = 0;\n this.cursorPosition.column = 0;\n this.cursorPosition.overflow = false;\n\n var text;\n if (this.textAttributes.isDefault()) {\n text = '';\n } else {\n text = lib.f.getWhitespace(this.columnCount_);\n }\n\n // We shouldn't honor inverse colors when clearing an area, to match\n // xterm's back color erase behavior.\n var inverse = this.textAttributes.inverse;\n this.textAttributes.inverse = false;\n this.textAttributes.syncColors();\n\n var node = this.textAttributes.createContainer(text);\n this.cursorRowNode_.appendChild(node);\n this.cursorNode_ = node;\n\n this.textAttributes.inverse = inverse;\n this.textAttributes.syncColors();\n};\n\n/**\n * Mark the current row as having overflowed to the next line.\n *\n * The line overflow state is used when converting a range of rows into text.\n * It makes it possible to recombine two or more overflow terminal rows into\n * a single line.\n *\n * This is distinct from the cursor being in the overflow state. Cursor\n * overflow indicates that printing at the cursor position will commit a\n * line overflow, unless it is preceded by a repositioning of the cursor\n * to a non-overflow state.\n */\nhterm.Screen.prototype.commitLineOverflow = function() {\n this.cursorRowNode_.setAttribute('line-overflow', true);\n};\n\n/**\n * Relocate the cursor to a give row and column.\n *\n * @param {integer} row The zero based row.\n * @param {integer} column The zero based column.\n */\nhterm.Screen.prototype.setCursorPosition = function(row, column) {\n if (!this.rowsArray.length) {\n console.warn('Attempt to set cursor position on empty screen.');\n return;\n }\n\n if (row >= this.rowsArray.length) {\n console.error('Row out of bounds: ' + row);\n row = this.rowsArray.length - 1;\n } else if (row < 0) {\n console.error('Row out of bounds: ' + row);\n row = 0;\n }\n\n if (column >= this.columnCount_) {\n console.error('Column out of bounds: ' + column);\n column = this.columnCount_ - 1;\n } else if (column < 0) {\n console.error('Column out of bounds: ' + column);\n column = 0;\n }\n\n this.cursorPosition.overflow = false;\n\n var rowNode = this.rowsArray[row];\n var node = rowNode.firstChild;\n\n if (!node) {\n node = rowNode.ownerDocument.createTextNode('');\n rowNode.appendChild(node);\n }\n\n var currentColumn = 0;\n\n if (rowNode == this.cursorRowNode_) {\n if (column >= this.cursorPosition.column - this.cursorOffset_) {\n node = this.cursorNode_;\n currentColumn = this.cursorPosition.column - this.cursorOffset_;\n }\n } else {\n this.cursorRowNode_ = rowNode;\n }\n\n this.cursorPosition.move(row, column);\n\n while (node) {\n var offset = column - currentColumn;\n var width = hterm.TextAttributes.nodeWidth(node);\n if (!node.nextSibling || width > offset) {\n this.cursorNode_ = node;\n this.cursorOffset_ = offset;\n return;\n }\n\n currentColumn += width;\n node = node.nextSibling;\n }\n};\n\n/**\n * Set the provided selection object to be a caret selection at the current\n * cursor position.\n */\nhterm.Screen.prototype.syncSelectionCaret = function(selection) {\n try {\n selection.collapse(this.cursorNode_, this.cursorOffset_);\n } catch (firefoxIgnoredException) {\n // FF can throw an exception if the range is off, rather than just not\n // performing the collapse.\n }\n};\n\n/**\n * Split a single node into two nodes at the given offset.\n *\n * For example:\n * Given the DOM fragment '
Hello World
', call splitNode_\n * passing the span and an offset of 6. This would modify the fragment to\n * become: '
Hello World
'. If the span\n * had any attributes they would have been copied to the new span as well.\n *\n * The to-be-split node must have a container, so that the new node can be\n * placed next to it.\n *\n * @param {HTMLNode} node The node to split.\n * @param {integer} offset The offset into the node where the split should\n * occur.\n */\nhterm.Screen.prototype.splitNode_ = function(node, offset) {\n var afterNode = node.cloneNode(false);\n\n var textContent = node.textContent;\n node.textContent = hterm.TextAttributes.nodeSubstr(node, 0, offset);\n afterNode.textContent = lib.wc.substr(textContent, offset);\n\n if (afterNode.textContent)\n node.parentNode.insertBefore(afterNode, node.nextSibling);\n if (!node.textContent)\n node.parentNode.removeChild(node);\n};\n\n/**\n * Ensure that text is clipped and the cursor is clamped to the column count.\n */\nhterm.Screen.prototype.maybeClipCurrentRow = function() {\n var width = hterm.TextAttributes.nodeWidth(this.cursorRowNode_);\n\n if (width <= this.columnCount_) {\n // Current row does not need clipping, but may need clamping.\n if (this.cursorPosition.column >= this.columnCount_) {\n this.setCursorPosition(this.cursorPosition.row, this.columnCount_ - 1);\n this.cursorPosition.overflow = true;\n }\n\n return;\n }\n\n // Save off the current column so we can maybe restore it later.\n var currentColumn = this.cursorPosition.column;\n\n // Move the cursor to the final column.\n this.setCursorPosition(this.cursorPosition.row, this.columnCount_ - 1);\n\n // Remove any text that partially overflows.\n width = hterm.TextAttributes.nodeWidth(this.cursorNode_);\n\n if (this.cursorOffset_ < width - 1) {\n this.cursorNode_.textContent = hterm.TextAttributes.nodeSubstr(\n this.cursorNode_, 0, this.cursorOffset_ + 1);\n }\n\n // Remove all nodes after the cursor.\n var rowNode = this.cursorRowNode_;\n var node = this.cursorNode_.nextSibling;\n\n while (node) {\n rowNode.removeChild(node);\n node = this.cursorNode_.nextSibling;\n }\n\n if (currentColumn < this.columnCount_) {\n // If the cursor was within the screen before we started then restore its\n // position.\n this.setCursorPosition(this.cursorPosition.row, currentColumn);\n } else {\n // Otherwise leave it at the the last column in the overflow state.\n this.cursorPosition.overflow = true;\n }\n};\n\n/**\n * Insert a string at the current character position using the current\n * text attributes.\n *\n * You must call maybeClipCurrentRow() after in order to clip overflowed\n * text and clamp the cursor.\n *\n * It is also up to the caller to properly maintain the line overflow state\n * using hterm.Screen..commitLineOverflow().\n */\nhterm.Screen.prototype.insertString = function(str) {\n var cursorNode = this.cursorNode_;\n var cursorNodeText = cursorNode.textContent;\n\n this.cursorRowNode_.removeAttribute('line-overflow');\n\n // We may alter the width of the string by prepending some missing\n // whitespaces, so we need to record the string width ahead of time.\n var strWidth = lib.wc.strWidth(str);\n\n // No matter what, before this function exits the cursor column will have\n // moved this much.\n this.cursorPosition.column += strWidth;\n\n // Local cache of the cursor offset.\n var offset = this.cursorOffset_;\n\n // Reverse offset is the offset measured from the end of the string.\n // Zero implies that the cursor is at the end of the cursor node.\n var reverseOffset = hterm.TextAttributes.nodeWidth(cursorNode) - offset;\n\n if (reverseOffset < 0) {\n // A negative reverse offset means the cursor is positioned past the end\n // of the characters on this line. We'll need to insert the missing\n // whitespace.\n var ws = lib.f.getWhitespace(-reverseOffset);\n\n // This whitespace should be completely unstyled. Underline, background\n // color, and strikethrough would be visible on whitespace, so we can't use\n // one of those spans to hold the text.\n if (!(this.textAttributes.underline ||\n this.textAttributes.strikethrough ||\n this.textAttributes.background ||\n this.textAttributes.wcNode ||\n !this.textAttributes.asciiNode ||\n this.textAttributes.tileData != null)) {\n // Best case scenario, we can just pretend the spaces were part of the\n // original string.\n str = ws + str;\n } else if (cursorNode.nodeType == 3 ||\n !(cursorNode.wcNode ||\n !cursorNode.asciiNode ||\n cursorNode.tileNode ||\n cursorNode.style.textDecoration ||\n cursorNode.style.backgroundColor)) {\n // Second best case, the current node is able to hold the whitespace.\n cursorNode.textContent = (cursorNodeText += ws);\n } else {\n // Worst case, we have to create a new node to hold the whitespace.\n var wsNode = cursorNode.ownerDocument.createTextNode(ws);\n this.cursorRowNode_.insertBefore(wsNode, cursorNode.nextSibling);\n this.cursorNode_ = cursorNode = wsNode;\n this.cursorOffset_ = offset = -reverseOffset;\n cursorNodeText = ws;\n }\n\n // We now know for sure that we're at the last character of the cursor node.\n reverseOffset = 0;\n }\n\n if (this.textAttributes.matchesContainer(cursorNode)) {\n // The new text can be placed directly in the cursor node.\n if (reverseOffset == 0) {\n cursorNode.textContent = cursorNodeText + str;\n } else if (offset == 0) {\n cursorNode.textContent = str + cursorNodeText;\n } else {\n cursorNode.textContent =\n hterm.TextAttributes.nodeSubstr(cursorNode, 0, offset) +\n str + hterm.TextAttributes.nodeSubstr(cursorNode, offset);\n }\n\n this.cursorOffset_ += strWidth;\n return;\n }\n\n // The cursor node is the wrong style for the new text. If we're at the\n // beginning or end of the cursor node, then the adjacent node is also a\n // potential candidate.\n\n if (offset == 0) {\n // At the beginning of the cursor node, the check the previous sibling.\n var previousSibling = cursorNode.previousSibling;\n if (previousSibling &&\n this.textAttributes.matchesContainer(previousSibling)) {\n previousSibling.textContent += str;\n this.cursorNode_ = previousSibling;\n this.cursorOffset_ = lib.wc.strWidth(previousSibling.textContent);\n return;\n }\n\n var newNode = this.textAttributes.createContainer(str);\n this.cursorRowNode_.insertBefore(newNode, cursorNode);\n this.cursorNode_ = newNode;\n this.cursorOffset_ = strWidth;\n return;\n }\n\n if (reverseOffset == 0) {\n // At the end of the cursor node, the check the next sibling.\n var nextSibling = cursorNode.nextSibling;\n if (nextSibling &&\n this.textAttributes.matchesContainer(nextSibling)) {\n nextSibling.textContent = str + nextSibling.textContent;\n this.cursorNode_ = nextSibling;\n this.cursorOffset_ = lib.wc.strWidth(str);\n return;\n }\n\n var newNode = this.textAttributes.createContainer(str);\n this.cursorRowNode_.insertBefore(newNode, nextSibling);\n this.cursorNode_ = newNode;\n // We specifically need to include any missing whitespace here, since it's\n // going in a new node.\n this.cursorOffset_ = hterm.TextAttributes.nodeWidth(newNode);\n return;\n }\n\n // Worst case, we're somewhere in the middle of the cursor node. We'll\n // have to split it into two nodes and insert our new container in between.\n this.splitNode_(cursorNode, offset);\n var newNode = this.textAttributes.createContainer(str);\n this.cursorRowNode_.insertBefore(newNode, cursorNode.nextSibling);\n this.cursorNode_ = newNode;\n this.cursorOffset_ = strWidth;\n};\n\n/**\n * Overwrite the text at the current cursor position.\n *\n * You must call maybeClipCurrentRow() after in order to clip overflowed\n * text and clamp the cursor.\n *\n * It is also up to the caller to properly maintain the line overflow state\n * using hterm.Screen..commitLineOverflow().\n */\nhterm.Screen.prototype.overwriteString = function(str) {\n var maxLength = this.columnCount_ - this.cursorPosition.column;\n if (!maxLength)\n return [str];\n\n var width = lib.wc.strWidth(str);\n if (this.textAttributes.matchesContainer(this.cursorNode_) &&\n this.cursorNode_.textContent.substr(this.cursorOffset_) == str) {\n // This overwrite would be a no-op, just move the cursor and return.\n this.cursorOffset_ += width;\n this.cursorPosition.column += width;\n return;\n }\n\n this.deleteChars(Math.min(width, maxLength));\n this.insertString(str);\n};\n\n/**\n * Forward-delete one or more characters at the current cursor position.\n *\n * Text to the right of the deleted characters is shifted left. Only affects\n * characters on the same row as the cursor.\n *\n * @param {integer} count The column width of characters to delete. This is\n * clamped to the column width minus the cursor column.\n * @return {integer} The column width of the characters actually deleted.\n */\nhterm.Screen.prototype.deleteChars = function(count) {\n var node = this.cursorNode_;\n var offset = this.cursorOffset_;\n\n var currentCursorColumn = this.cursorPosition.column;\n count = Math.min(count, this.columnCount_ - currentCursorColumn);\n if (!count)\n return 0;\n\n var rv = count;\n var startLength, endLength;\n\n while (node && count) {\n startLength = hterm.TextAttributes.nodeWidth(node);\n node.textContent = hterm.TextAttributes.nodeSubstr(node, 0, offset) +\n hterm.TextAttributes.nodeSubstr(node, offset + count);\n endLength = hterm.TextAttributes.nodeWidth(node);\n count -= startLength - endLength;\n if (offset < startLength && endLength && startLength == endLength) {\n // No characters were deleted when there should be. We're probably trying\n // to delete one column width from a wide character node. We remove the\n // wide character node here and replace it with a single space.\n var spaceNode = this.textAttributes.createContainer(' ');\n node.parentNode.insertBefore(spaceNode, node.nextSibling);\n node.textContent = '';\n endLength = 0;\n count -= 1;\n }\n\n var nextNode = node.nextSibling;\n if (endLength == 0 && node != this.cursorNode_) {\n node.parentNode.removeChild(node);\n }\n node = nextNode;\n offset = 0;\n }\n\n // Remove this.cursorNode_ if it is an empty non-text node.\n if (this.cursorNode_.nodeType != 3 && !this.cursorNode_.textContent) {\n var cursorNode = this.cursorNode_;\n if (cursorNode.previousSibling) {\n this.cursorNode_ = cursorNode.previousSibling;\n this.cursorOffset_ = hterm.TextAttributes.nodeWidth(\n cursorNode.previousSibling);\n } else if (cursorNode.nextSibling) {\n this.cursorNode_ = cursorNode.nextSibling;\n this.cursorOffset_ = 0;\n } else {\n var emptyNode = this.cursorRowNode_.ownerDocument.createTextNode('');\n this.cursorRowNode_.appendChild(emptyNode);\n this.cursorNode_ = emptyNode;\n this.cursorOffset_ = 0;\n }\n this.cursorRowNode_.removeChild(cursorNode);\n }\n\n return rv;\n};\n\n/**\n * Finds first X-ROW of a line containing specified X-ROW.\n * Used to support line overflow.\n *\n * @param {Node} row X-ROW to begin search for first row of line.\n * @return {Node} The X-ROW that is at the beginning of the line.\n **/\nhterm.Screen.prototype.getLineStartRow_ = function(row) {\n while (row.previousSibling &&\n row.previousSibling.hasAttribute('line-overflow')) {\n row = row.previousSibling;\n }\n return row;\n};\n\n/**\n * Gets text of a line beginning with row.\n * Supports line overflow.\n *\n * @param {Node} row First X-ROW of line.\n * @return {string} Text content of line.\n **/\nhterm.Screen.prototype.getLineText_ = function(row) {\n var rowText = \"\";\n while (row) {\n rowText += row.textContent;\n if (row.hasAttribute('line-overflow')) {\n row = row.nextSibling;\n } else {\n break;\n }\n }\n return rowText;\n};\n\n/**\n * Returns X-ROW that is ancestor of the node.\n *\n * @param {Node} node Node to get X-ROW ancestor for.\n * @return {Node} X-ROW ancestor of node, or null if not found.\n **/\nhterm.Screen.prototype.getXRowAncestor_ = function(node) {\n while (node) {\n if (node.nodeName === 'X-ROW')\n break;\n node = node.parentNode;\n }\n return node;\n};\n\n/**\n * Returns position within line of character at offset within node.\n * Supports line overflow.\n *\n * @param {Node} row X-ROW at beginning of line.\n * @param {Node} node Node to get position of.\n * @param {integer} offset Offset into node.\n *\n * @return {integer} Position within line of character at offset within node.\n **/\nhterm.Screen.prototype.getPositionWithOverflow_ = function(row, node, offset) {\n if (!node)\n return -1;\n var ancestorRow = this.getXRowAncestor_(node);\n if (!ancestorRow)\n return -1;\n var position = 0;\n while (ancestorRow != row) {\n position += hterm.TextAttributes.nodeWidth(row);\n if (row.hasAttribute('line-overflow') && row.nextSibling) {\n row = row.nextSibling;\n } else {\n return -1;\n }\n }\n return position + this.getPositionWithinRow_(row, node, offset);\n};\n\n/**\n * Returns position within row of character at offset within node.\n * Does not support line overflow.\n *\n * @param {Node} row X-ROW to get position within.\n * @param {Node} node Node to get position for.\n * @param {integer} offset Offset within node to get position for.\n * @return {integer} Position within row of character at offset within node.\n **/\nhterm.Screen.prototype.getPositionWithinRow_ = function(row, node, offset) {\n if (node.parentNode != row) {\n // If we traversed to the top node, then there's nothing to find here.\n if (node.parentNode == null)\n return -1;\n\n return this.getPositionWithinRow_(node.parentNode, node, offset) +\n this.getPositionWithinRow_(row, node.parentNode, 0);\n }\n var position = 0;\n for (var i = 0; i < row.childNodes.length; i++) {\n var currentNode = row.childNodes[i];\n if (currentNode == node)\n return position + offset;\n position += hterm.TextAttributes.nodeWidth(currentNode);\n }\n return -1;\n};\n\n/**\n * Returns the node and offset corresponding to position within line.\n * Supports line overflow.\n *\n * @param {Node} row X-ROW at beginning of line.\n * @param {integer} position Position within line to retrieve node and offset.\n * @return {Array} Two element array containing node and offset respectively.\n **/\nhterm.Screen.prototype.getNodeAndOffsetWithOverflow_ = function(row, position) {\n while (row && position > hterm.TextAttributes.nodeWidth(row)) {\n if (row.hasAttribute('line-overflow') && row.nextSibling) {\n position -= hterm.TextAttributes.nodeWidth(row);\n row = row.nextSibling;\n } else {\n return -1;\n }\n }\n return this.getNodeAndOffsetWithinRow_(row, position);\n};\n\n/**\n * Returns the node and offset corresponding to position within row.\n * Does not support line overflow.\n *\n * @param {Node} row X-ROW to get position within.\n * @param {integer} position Position within row to retrieve node and offset.\n * @return {Array} Two element array containing node and offset respectively.\n **/\nhterm.Screen.prototype.getNodeAndOffsetWithinRow_ = function(row, position) {\n for (var i = 0; i < row.childNodes.length; i++) {\n var node = row.childNodes[i];\n var nodeTextWidth = hterm.TextAttributes.nodeWidth(node);\n if (position <= nodeTextWidth) {\n if (node.nodeName === 'SPAN') {\n /** Drill down to node contained by SPAN. **/\n return this.getNodeAndOffsetWithinRow_(node, position);\n } else {\n return [node, position];\n }\n }\n position -= nodeTextWidth;\n }\n return null;\n};\n\n/**\n * Returns the node and offset corresponding to position within line.\n * Supports line overflow.\n *\n * @param {Node} row X-ROW at beginning of line.\n * @param {integer} start Start position of range within line.\n * @param {integer} end End position of range within line.\n * @param {Range} range Range to modify.\n **/\nhterm.Screen.prototype.setRange_ = function(row, start, end, range) {\n var startNodeAndOffset = this.getNodeAndOffsetWithOverflow_(row, start);\n if (startNodeAndOffset == null)\n return;\n var endNodeAndOffset = this.getNodeAndOffsetWithOverflow_(row, end);\n if (endNodeAndOffset == null)\n return;\n range.setStart(startNodeAndOffset[0], startNodeAndOffset[1]);\n range.setEnd(endNodeAndOffset[0], endNodeAndOffset[1]);\n};\n\n/**\n * Expands selection to surround URLs.\n *\n * @param {Selection} selection Selection to expand.\n **/\nhterm.Screen.prototype.expandSelection = function(selection) {\n if (!selection)\n return;\n\n var range = selection.getRangeAt(0);\n if (!range || range.toString().match(/\\s/))\n return;\n\n var row = this.getLineStartRow_(this.getXRowAncestor_(range.startContainer));\n if (!row)\n return;\n\n var startPosition = this.getPositionWithOverflow_(row,\n range.startContainer,\n range.startOffset);\n if (startPosition == -1)\n return;\n var endPosition = this.getPositionWithOverflow_(row,\n range.endContainer,\n range.endOffset);\n if (endPosition == -1)\n return;\n\n // Use the user configurable match settings.\n var leftMatch = this.wordBreakMatchLeft;\n var rightMatch = this.wordBreakMatchRight;\n var insideMatch = this.wordBreakMatchMiddle;\n\n //Move start to the left.\n var rowText = this.getLineText_(row);\n var lineUpToRange = lib.wc.substring(rowText, 0, endPosition);\n var leftRegularExpression = new RegExp(leftMatch + insideMatch + \"$\");\n var expandedStart = lineUpToRange.search(leftRegularExpression);\n if (expandedStart == -1 || expandedStart > startPosition)\n return;\n\n //Move end to the right.\n var lineFromRange = lib.wc.substring(rowText, startPosition,\n lib.wc.strWidth(rowText));\n var rightRegularExpression = new RegExp(\"^\" + insideMatch + rightMatch);\n var found = lineFromRange.match(rightRegularExpression);\n if (!found)\n return;\n var expandedEnd = startPosition + lib.wc.strWidth(found[0]);\n if (expandedEnd == -1 || expandedEnd < endPosition)\n return;\n\n this.setRange_(row, expandedStart, expandedEnd, range);\n selection.addRange(range);\n};\n// SOURCE FILE: hterm/js/hterm_scrollport.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f', 'hterm.PubSub', 'hterm.Size');\n\n/**\n * A 'viewport' view of fixed-height rows with support for selection and\n * copy-to-clipboard.\n *\n * 'Viewport' in this case means that only the visible rows are in the DOM.\n * If the rowProvider has 100,000 rows, but the ScrollPort is only 25 rows\n * tall, then only 25 dom nodes are created. The ScrollPort will ask the\n * RowProvider to create new visible rows on demand as they are scrolled in\n * to the visible area.\n *\n * This viewport is designed so that select and copy-to-clipboard still works,\n * even when all or part of the selection is scrolled off screen.\n *\n * Note that the X11 mouse clipboard does not work properly when all or part\n * of the selection is off screen. It would be difficult to fix this without\n * adding significant overhead to pathologically large selection cases.\n *\n * The RowProvider should return rows rooted by the custom tag name 'x-row'.\n * This ensures that we can quickly assign the correct display height\n * to the rows with css.\n *\n * @param {RowProvider} rowProvider An object capable of providing rows as\n * raw text or row nodes.\n */\nhterm.ScrollPort = function(rowProvider) {\n hterm.PubSub.addBehavior(this);\n\n this.rowProvider_ = rowProvider;\n\n // SWAG the character size until we can measure it.\n this.characterSize = new hterm.Size(10, 10);\n\n // DOM node used for character measurement.\n this.ruler_ = null;\n\n this.selection = new hterm.ScrollPort.Selection(this);\n\n // A map of rowIndex => rowNode for each row that is drawn as part of a\n // pending redraw_() call. Null if there is no pending redraw_ call.\n this.currentRowNodeCache_ = null;\n\n // A map of rowIndex => rowNode for each row that was drawn as part of the\n // previous redraw_() call.\n this.previousRowNodeCache_ = {};\n\n // Used during scroll events to detect when the underlying cause is a resize.\n this.lastScreenWidth_ = null;\n this.lastScreenHeight_ = null;\n\n // True if the user should be allowed to select text in the terminal.\n // This is disabled when the host requests mouse drag events so that we don't\n // end up with two notions of selection.\n this.selectionEnabled_ = true;\n\n // The last row count returned by the row provider, re-populated during\n // syncScrollHeight().\n this.lastRowCount_ = 0;\n\n // The scroll wheel pixel delta multiplier to increase/decrease\n // the scroll speed of mouse wheel events. See: https://goo.gl/sXelnq\n this.scrollWheelMultiplier_ = 1;\n\n // The last touch events we saw to support touch based scrolling. Indexed\n // by touch identifier since we can have more than one touch active.\n this.lastTouch_ = {};\n\n /**\n * True if the last scroll caused the scrollport to show the final row.\n */\n this.isScrolledEnd = true;\n\n /**\n * A guess at the current scrollbar width, fixed in resize().\n */\n this.currentScrollbarWidthPx = 16;\n\n /**\n * Whether the ctrl-v key on the screen should paste.\n */\n this.ctrlVPaste = false;\n\n this.div_ = null;\n this.document_ = null;\n\n // Collection of active timeout handles.\n this.timeouts_ = {};\n\n this.observers_ = {};\n\n this.DEBUG_ = false;\n}\n\n/**\n * Proxy for the native selection object which understands how to walk up the\n * DOM to find the containing row node and sort out which comes first.\n *\n * @param {hterm.ScrollPort} scrollPort The parent hterm.ScrollPort instance.\n */\nhterm.ScrollPort.Selection = function(scrollPort) {\n this.scrollPort_ = scrollPort;\n\n /**\n * The row containing the start of the selection.\n *\n * This may be partially or fully selected. It may be the selection anchor\n * or the focus, but its rowIndex is guaranteed to be less-than-or-equal-to\n * that of the endRow.\n *\n * If only one row is selected then startRow == endRow. If there is no\n * selection or the selection is collapsed then startRow == null.\n */\n this.startRow = null;\n\n /**\n * The row containing the end of the selection.\n *\n * This may be partially or fully selected. It may be the selection anchor\n * or the focus, but its rowIndex is guaranteed to be greater-than-or-equal-to\n * that of the startRow.\n *\n * If only one row is selected then startRow == endRow. If there is no\n * selection or the selection is collapsed then startRow == null.\n */\n this.endRow = null;\n\n /**\n * True if startRow != endRow.\n */\n this.isMultiline = null;\n\n /**\n * True if the selection is just a point rather than a range.\n */\n this.isCollapsed = null;\n};\n\n/**\n * Given a list of DOM nodes and a container, return the DOM node that\n * is first according to a depth-first search.\n *\n * Returns null if none of the children are found.\n */\nhterm.ScrollPort.Selection.prototype.findFirstChild = function(\n parent, childAry) {\n var node = parent.firstChild;\n\n while (node) {\n if (childAry.indexOf(node) != -1)\n return node;\n\n if (node.childNodes.length) {\n var rv = this.findFirstChild(node, childAry);\n if (rv)\n return rv;\n }\n\n node = node.nextSibling;\n }\n\n return null;\n};\n\n/**\n * Synchronize this object with the current DOM selection.\n *\n * This is a one-way synchronization, the DOM selection is copied to this\n * object, not the other way around.\n */\nhterm.ScrollPort.Selection.prototype.sync = function() {\n var self = this;\n\n // The dom selection object has no way to tell which nodes come first in\n // the document, so we have to figure that out.\n //\n // This function is used when we detect that the \"anchor\" node is first.\n function anchorFirst() {\n self.startRow = anchorRow;\n self.startNode = selection.anchorNode;\n self.startOffset = selection.anchorOffset;\n self.endRow = focusRow;\n self.endNode = selection.focusNode;\n self.endOffset = selection.focusOffset;\n }\n\n // This function is used when we detect that the \"focus\" node is first.\n function focusFirst() {\n self.startRow = focusRow;\n self.startNode = selection.focusNode;\n self.startOffset = selection.focusOffset;\n self.endRow = anchorRow;\n self.endNode = selection.anchorNode;\n self.endOffset = selection.anchorOffset;\n }\n\n var selection = this.scrollPort_.getDocument().getSelection();\n\n this.startRow = null;\n this.endRow = null;\n this.isMultiline = null;\n this.isCollapsed = !selection || selection.isCollapsed;\n\n if (this.isCollapsed)\n return;\n\n var anchorRow = selection.anchorNode;\n while (anchorRow && !('rowIndex' in anchorRow)) {\n anchorRow = anchorRow.parentNode;\n }\n\n if (!anchorRow) {\n console.error('Selection anchor is not rooted in a row node: ' +\n selection.anchorNode.nodeName);\n return;\n }\n\n var focusRow = selection.focusNode;\n while (focusRow && !('rowIndex' in focusRow)) {\n focusRow = focusRow.parentNode;\n }\n\n if (!focusRow) {\n console.error('Selection focus is not rooted in a row node: ' +\n selection.focusNode.nodeName);\n return;\n }\n\n if (anchorRow.rowIndex < focusRow.rowIndex) {\n anchorFirst();\n\n } else if (anchorRow.rowIndex > focusRow.rowIndex) {\n focusFirst();\n\n } else if (selection.focusNode == selection.anchorNode) {\n if (selection.anchorOffset < selection.focusOffset) {\n anchorFirst();\n } else {\n focusFirst();\n }\n\n } else {\n // The selection starts and ends in the same row, but isn't contained all\n // in a single node.\n var firstNode = this.findFirstChild(\n anchorRow, [selection.anchorNode, selection.focusNode]);\n\n if (!firstNode)\n throw new Error('Unexpected error syncing selection.');\n\n if (firstNode == selection.anchorNode) {\n anchorFirst();\n } else {\n focusFirst();\n }\n }\n\n this.isMultiline = anchorRow.rowIndex != focusRow.rowIndex;\n};\n\n\n/**\n * Turn a div into this hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.decorate = function(div) {\n this.div_ = div;\n\n this.iframe_ = div.ownerDocument.createElement('iframe');\n this.iframe_.style.cssText = (\n 'border: 0;' +\n 'height: 100%;' +\n 'position: absolute;' +\n 'width: 100%');\n\n // Set the iframe src to # in FF. Otherwise when the frame's\n // load event fires in FF it clears out the content of the iframe.\n if ('mozInnerScreenX' in window) // detect a FF only property\n this.iframe_.src = '#';\n\n div.appendChild(this.iframe_);\n\n this.iframe_.contentWindow.addEventListener('resize',\n this.onResize_.bind(this));\n\n var doc = this.document_ = this.iframe_.contentDocument;\n doc.body.style.cssText = (\n 'margin: 0px;' +\n 'padding: 0px;' +\n 'height: 100%;' +\n 'width: 100%;' +\n 'overflow: hidden;' +\n 'cursor: var(--hterm-mouse-cursor-style);' +\n '-webkit-user-select: none;' +\n '-moz-user-select: none;');\n\n if (this.DEBUG_) {\n // When we're debugging we add padding to the body so that the offscreen\n // elements are visible.\n this.document_.body.style.paddingTop =\n this.document_.body.style.paddingBottom =\n 'calc(var(--hterm-charsize-height) * 3)';\n }\n\n var style = doc.createElement('style');\n style.textContent = (\n 'x-row {' +\n ' display: block;' +\n ' height: var(--hterm-charsize-height);' +\n ' line-height: var(--hterm-charsize-height);' +\n '}');\n doc.head.appendChild(style);\n\n this.userCssLink_ = doc.createElement('link');\n this.userCssLink_.setAttribute('rel', 'stylesheet');\n\n this.userCssText_ = doc.createElement('style');\n doc.head.appendChild(this.userCssText_);\n\n // TODO(rginda): Sorry, this 'screen_' isn't the same thing as hterm.Screen\n // from screen.js. I need to pick a better name for one of them to avoid\n // the collision.\n // We make this field editable even though we don't actually allow anything\n // to be edited here so that Chrome will do the right thing with virtual\n // keyboards and IMEs. But make sure we turn off all the input helper logic\n // that doesn't make sense here, and might inadvertently mung or save input.\n // Some of these attributes are standard while others are browser specific,\n // but should be safely ignored by other browsers.\n this.screen_ = doc.createElement('x-screen');\n this.screen_.setAttribute('contenteditable', 'true');\n this.screen_.setAttribute('spellcheck', 'false');\n this.screen_.setAttribute('autocomplete', 'off');\n this.screen_.setAttribute('autocorrect', 'off');\n this.screen_.setAttribute('autocaptalize', 'none');\n this.screen_.setAttribute('role', 'textbox');\n this.screen_.setAttribute('tabindex', '-1');\n this.screen_.style.cssText = (\n 'caret-color: transparent;' +\n 'display: block;' +\n 'font-family: monospace;' +\n 'font-size: 15px;' +\n 'font-variant-ligatures: none;' +\n 'height: 100%;' +\n 'overflow-y: scroll; overflow-x: hidden;' +\n 'white-space: pre;' +\n 'width: 100%;' +\n 'outline: none !important');\n\n doc.body.appendChild(this.screen_);\n\n this.screen_.addEventListener('scroll', this.onScroll_.bind(this));\n this.screen_.addEventListener('wheel', this.onScrollWheel_.bind(this));\n this.screen_.addEventListener('touchstart', this.onTouch_.bind(this));\n this.screen_.addEventListener('touchmove', this.onTouch_.bind(this));\n this.screen_.addEventListener('touchend', this.onTouch_.bind(this));\n this.screen_.addEventListener('touchcancel', this.onTouch_.bind(this));\n this.screen_.addEventListener('copy', this.onCopy_.bind(this));\n this.screen_.addEventListener('paste', this.onPaste_.bind(this));\n // Disable drag & drop of text/content. We don't handle it at all (yet?),\n // and the default behavior just confuses hterm.\n this.screen_.addEventListener('drop', function(e) {\n e.preventDefault();\n return false;\n });\n\n doc.body.addEventListener('keydown', this.onBodyKeyDown_.bind(this));\n\n // This is the main container for the fixed rows.\n this.rowNodes_ = doc.createElement('div');\n this.rowNodes_.id = 'hterm:row-nodes';\n this.rowNodes_.style.cssText = (\n 'display: block;' +\n 'position: fixed;' +\n 'overflow: hidden;' +\n '-webkit-user-select: text;' +\n '-moz-user-select: text;');\n this.screen_.appendChild(this.rowNodes_);\n\n // Two nodes to hold offscreen text during the copy event.\n this.topSelectBag_ = doc.createElement('x-select-bag');\n this.topSelectBag_.style.cssText = (\n 'display: block;' +\n 'overflow: hidden;' +\n 'height: var(--hterm-charsize-height);' +\n 'white-space: pre;');\n\n this.bottomSelectBag_ = this.topSelectBag_.cloneNode();\n\n // Nodes above the top fold and below the bottom fold are hidden. They are\n // only used to hold rows that are part of the selection but are currently\n // scrolled off the top or bottom of the visible range.\n this.topFold_ = doc.createElement('x-fold');\n this.topFold_.id = 'hterm:top-fold-for-row-selection';\n this.topFold_.style.cssText = 'display: block;';\n this.rowNodes_.appendChild(this.topFold_);\n\n this.bottomFold_ = this.topFold_.cloneNode();\n this.bottomFold_.id = 'hterm:bottom-fold-for-row-selection';\n this.rowNodes_.appendChild(this.bottomFold_);\n\n // This hidden div accounts for the vertical space that would be consumed by\n // all the rows in the buffer if they were visible. It's what causes the\n // scrollbar to appear on the 'x-screen', and it moves within the screen when\n // the scrollbar is moved.\n //\n // It is set 'visibility: hidden' to keep the browser from trying to include\n // it in the selection when a user 'drag selects' upwards (drag the mouse to\n // select and scroll at the same time). Without this, the selection gets\n // out of whack.\n this.scrollArea_ = doc.createElement('div');\n this.scrollArea_.id = 'hterm:scrollarea';\n this.scrollArea_.style.cssText = 'visibility: hidden';\n this.screen_.appendChild(this.scrollArea_);\n\n // This svg element is used to detect when the browser is zoomed. It must be\n // placed in the outermost document for currentScale to be correct.\n // TODO(rginda): This means that hterm nested in an iframe will not correctly\n // detect browser zoom level. We should come up with a better solution.\n // Note: This must be http:// else Chrome cannot create the element correctly.\n var xmlns = 'http://www.w3.org/2000/svg';\n this.svg_ = this.div_.ownerDocument.createElementNS(xmlns, 'svg');\n this.svg_.id = 'hterm:zoom-detector';\n this.svg_.setAttribute('xmlns', xmlns);\n this.svg_.setAttribute('version', '1.1');\n this.svg_.style.cssText = (\n 'position: absolute;' +\n 'top: 0;' +\n 'left: 0;' +\n 'visibility: hidden');\n\n\n // We send focus to this element just before a paste happens, so we can\n // capture the pasted text and forward it on to someone who cares.\n this.pasteTarget_ = doc.createElement('textarea');\n this.pasteTarget_.id = 'hterm:ctrl-v-paste-target';\n this.pasteTarget_.setAttribute('tabindex', '-1');\n this.pasteTarget_.style.cssText = (\n 'position: absolute;' +\n 'height: 1px;' +\n 'width: 1px;' +\n 'left: 0px; ' +\n 'bottom: 0px;' +\n 'opacity: 0');\n this.pasteTarget_.contentEditable = true;\n\n this.screen_.appendChild(this.pasteTarget_);\n this.pasteTarget_.addEventListener(\n 'textInput', this.handlePasteTargetTextInput_.bind(this));\n\n this.resize();\n};\n\n/**\n * Select the font-family and font-smoothing for this scrollport.\n *\n * @param {string} fontFamily Value of the CSS 'font-family' to use for this\n * scrollport. Should be a monospace font.\n * @param {string} opt_smoothing Optional value for '-webkit-font-smoothing'.\n * Defaults to an empty string if not specified.\n */\nhterm.ScrollPort.prototype.setFontFamily = function(fontFamily, opt_smoothing) {\n this.screen_.style.fontFamily = fontFamily;\n if (opt_smoothing) {\n this.screen_.style.webkitFontSmoothing = opt_smoothing;\n } else {\n this.screen_.style.webkitFontSmoothing = '';\n }\n\n this.syncCharacterSize();\n};\n\nhterm.ScrollPort.prototype.getFontFamily = function() {\n return this.screen_.style.fontFamily;\n};\n\n/**\n * Set a custom stylesheet to include in the scrollport.\n *\n * Defaults to null, meaning no custom css is loaded. Set it back to null or\n * the empty string to remove a previously applied custom css.\n */\nhterm.ScrollPort.prototype.setUserCssUrl = function(url) {\n if (url) {\n this.userCssLink_.setAttribute('href', url);\n\n if (!this.userCssLink_.parentNode)\n this.document_.head.appendChild(this.userCssLink_);\n } else if (this.userCssLink_.parentNode) {\n this.document_.head.removeChild(this.userCssLink_);\n }\n};\n\nhterm.ScrollPort.prototype.setUserCssText = function(text) {\n this.userCssText_.textContent = text;\n};\n\nhterm.ScrollPort.prototype.focus = function() {\n this.iframe_.focus();\n this.screen_.focus();\n};\n\nhterm.ScrollPort.prototype.getForegroundColor = function() {\n return this.screen_.style.color;\n};\n\nhterm.ScrollPort.prototype.setForegroundColor = function(color) {\n this.screen_.style.color = color;\n};\n\nhterm.ScrollPort.prototype.getBackgroundColor = function() {\n return this.screen_.style.backgroundColor;\n};\n\nhterm.ScrollPort.prototype.setBackgroundColor = function(color) {\n this.screen_.style.backgroundColor = color;\n};\n\nhterm.ScrollPort.prototype.setBackgroundImage = function(image) {\n this.screen_.style.backgroundImage = image;\n};\n\nhterm.ScrollPort.prototype.setBackgroundSize = function(size) {\n this.screen_.style.backgroundSize = size;\n};\n\nhterm.ScrollPort.prototype.setBackgroundPosition = function(position) {\n this.screen_.style.backgroundPosition = position;\n};\n\nhterm.ScrollPort.prototype.setCtrlVPaste = function(ctrlVPaste) {\n this.ctrlVPaste = ctrlVPaste;\n};\n\n/**\n * Get the usable size of the scrollport screen.\n *\n * The width will not include the scrollbar width.\n */\nhterm.ScrollPort.prototype.getScreenSize = function() {\n var size = hterm.getClientSize(this.screen_);\n return {\n height: size.height,\n width: size.width - this.currentScrollbarWidthPx\n };\n};\n\n/**\n * Get the usable width of the scrollport screen.\n *\n * This the widget width minus scrollbar width.\n */\nhterm.ScrollPort.prototype.getScreenWidth = function() {\n return this.getScreenSize().width ;\n};\n\n/**\n * Get the usable height of the scrollport screen.\n */\nhterm.ScrollPort.prototype.getScreenHeight = function() {\n return this.getScreenSize().height;\n};\n\n/**\n * Return the document that holds the visible rows of this hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.getDocument = function() {\n return this.document_;\n};\n\n/**\n * Returns the x-screen element that holds the rows of this hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.getScreenNode = function() {\n return this.screen_;\n};\n\n/**\n * Clear out any cached rowNodes.\n */\nhterm.ScrollPort.prototype.resetCache = function() {\n this.currentRowNodeCache_ = null;\n this.previousRowNodeCache_ = {};\n};\n\n/**\n * Change the current rowProvider.\n *\n * This will clear the row cache and cause a redraw.\n *\n * @param {Object} rowProvider An object capable of providing the rows\n * in this hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.setRowProvider = function(rowProvider) {\n this.resetCache();\n this.rowProvider_ = rowProvider;\n this.scheduleRedraw();\n};\n\n/**\n * Inform the ScrollPort that the root DOM nodes for some or all of the visible\n * rows are no longer valid.\n *\n * Specifically, this should be called if this.rowProvider_.getRowNode() now\n * returns an entirely different node than it did before. It does not\n * need to be called if the content of a row node is the only thing that\n * changed.\n *\n * This skips some of the overhead of a full redraw, but should not be used\n * in cases where the scrollport has been scrolled, or when the row count has\n * changed.\n */\nhterm.ScrollPort.prototype.invalidate = function() {\n var node = this.topFold_.nextSibling;\n while (node != this.bottomFold_) {\n var nextSibling = node.nextSibling;\n node.parentElement.removeChild(node);\n node = nextSibling;\n }\n\n this.previousRowNodeCache_ = null;\n var topRowIndex = this.getTopRowIndex();\n var bottomRowIndex = this.getBottomRowIndex(topRowIndex);\n\n this.drawVisibleRows_(topRowIndex, bottomRowIndex);\n};\n\nhterm.ScrollPort.prototype.scheduleInvalidate = function() {\n if (this.timeouts_.invalidate)\n return;\n\n var self = this;\n this.timeouts_.invalidate = setTimeout(function () {\n delete self.timeouts_.invalidate;\n self.invalidate();\n }, 0);\n};\n\n/**\n * Set the font size of the ScrollPort.\n */\nhterm.ScrollPort.prototype.setFontSize = function(px) {\n this.screen_.style.fontSize = px + 'px';\n this.syncCharacterSize();\n};\n\n/**\n * Return the current font size of the ScrollPort.\n */\nhterm.ScrollPort.prototype.getFontSize = function() {\n return parseInt(this.screen_.style.fontSize);\n};\n\n/**\n * Measure the size of a single character in pixels.\n *\n * @param {string} opt_weight The font weight to measure, or 'normal' if\n * omitted.\n * @return {hterm.Size} A new hterm.Size object.\n */\nhterm.ScrollPort.prototype.measureCharacterSize = function(opt_weight) {\n // Number of lines used to average the height of a single character.\n var numberOfLines = 100;\n // Number of chars per line used to average the width of a single character.\n var lineLength = 100;\n\n if (!this.ruler_) {\n this.ruler_ = this.document_.createElement('div');\n this.ruler_.id = 'hterm:ruler-character-size';\n this.ruler_.style.cssText = (\n 'position: absolute;' +\n 'top: 0;' +\n 'left: 0;' +\n 'visibility: hidden;' +\n 'height: auto !important;' +\n 'width: auto !important;');\n\n // We need to put the text in a span to make the size calculation\n // work properly in Firefox\n this.rulerSpan_ = this.document_.createElement('span');\n this.rulerSpan_.id = 'hterm:ruler-span-workaround';\n this.rulerSpan_.innerHTML =\n ('X'.repeat(lineLength) + '\\r').repeat(numberOfLines);\n this.ruler_.appendChild(this.rulerSpan_);\n\n this.rulerBaseline_ = this.document_.createElement('span');\n this.rulerSpan_.id = 'hterm:ruler-baseline';\n // We want to collapse it on the baseline\n this.rulerBaseline_.style.fontSize = '0px';\n this.rulerBaseline_.textContent = 'X';\n }\n\n this.rulerSpan_.style.fontWeight = opt_weight || '';\n\n this.rowNodes_.appendChild(this.ruler_);\n var rulerSize = hterm.getClientSize(this.rulerSpan_);\n\n var size = new hterm.Size(rulerSize.width / lineLength,\n rulerSize.height / numberOfLines);\n\n this.ruler_.appendChild(this.rulerBaseline_);\n size.baseline = this.rulerBaseline_.offsetTop;\n this.ruler_.removeChild(this.rulerBaseline_);\n\n this.rowNodes_.removeChild(this.ruler_);\n\n this.div_.ownerDocument.body.appendChild(this.svg_);\n size.zoomFactor = this.svg_.currentScale;\n this.div_.ownerDocument.body.removeChild(this.svg_);\n\n return size;\n};\n\n/**\n * Synchronize the character size.\n *\n * This will re-measure the current character size and adjust the height\n * of an x-row to match.\n */\nhterm.ScrollPort.prototype.syncCharacterSize = function() {\n this.characterSize = this.measureCharacterSize();\n\n this.resize();\n};\n\n/**\n * Reset dimensions and visible row count to account for a change in the\n * dimensions of the 'x-screen'.\n */\nhterm.ScrollPort.prototype.resize = function() {\n this.currentScrollbarWidthPx = hterm.getClientWidth(this.screen_) -\n this.screen_.clientWidth;\n\n this.syncScrollHeight();\n this.syncRowNodesDimensions_();\n\n var self = this;\n this.publish(\n 'resize', { scrollPort: this },\n function() {\n self.scrollRowToBottom(self.rowProvider_.getRowCount());\n self.scheduleRedraw();\n });\n};\n\n/**\n * Set the position and size of the row nodes element.\n */\nhterm.ScrollPort.prototype.syncRowNodesDimensions_ = function() {\n var screenSize = this.getScreenSize();\n\n this.lastScreenWidth_ = screenSize.width;\n this.lastScreenHeight_ = screenSize.height;\n\n // We don't want to show a partial row because it would be distracting\n // in a terminal, so we floor any fractional row count.\n this.visibleRowCount = lib.f.smartFloorDivide(\n screenSize.height, this.characterSize.height);\n\n // Then compute the height of our integral number of rows.\n var visibleRowsHeight = this.visibleRowCount * this.characterSize.height;\n\n // Then the difference between the screen height and total row height needs to\n // be made up for as top margin. We need to record this value so it\n // can be used later to determine the topRowIndex.\n this.visibleRowTopMargin = 0;\n this.visibleRowBottomMargin = screenSize.height - visibleRowsHeight;\n\n this.topFold_.style.marginBottom = this.visibleRowTopMargin + 'px';\n\n\n var topFoldOffset = 0;\n var node = this.topFold_.previousSibling;\n while (node) {\n topFoldOffset += hterm.getClientHeight(node);\n node = node.previousSibling;\n }\n\n // Set the dimensions of the visible rows container.\n this.rowNodes_.style.width = screenSize.width + 'px';\n this.rowNodes_.style.height = visibleRowsHeight + topFoldOffset + 'px';\n this.rowNodes_.style.left = this.screen_.offsetLeft + 'px';\n this.rowNodes_.style.top = this.screen_.offsetTop - topFoldOffset + 'px';\n};\n\nhterm.ScrollPort.prototype.syncScrollHeight = function() {\n // Resize the scroll area to appear as though it contains every row.\n this.lastRowCount_ = this.rowProvider_.getRowCount();\n this.scrollArea_.style.height = (this.characterSize.height *\n this.lastRowCount_ +\n this.visibleRowTopMargin +\n this.visibleRowBottomMargin +\n 'px');\n};\n\n/**\n * Schedule a redraw to happen asynchronously.\n *\n * If this method is called multiple times before the redraw has a chance to\n * run only one redraw occurs.\n */\nhterm.ScrollPort.prototype.scheduleRedraw = function() {\n if (this.timeouts_.redraw)\n return;\n\n var self = this;\n this.timeouts_.redraw = setTimeout(function () {\n delete self.timeouts_.redraw;\n self.redraw_();\n }, 0);\n};\n\n/**\n * Redraw the current hterm.ScrollPort based on the current scrollbar position.\n *\n * When redrawing, we are careful to make sure that the rows that start or end\n * the current selection are not touched in any way. Doing so would disturb\n * the selection, and cleaning up after that would cause flashes at best and\n * incorrect selection at worst. Instead, we modify the DOM around these nodes.\n * We even stash the selection start/end outside of the visible area if\n * they are not supposed to be visible in the hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.redraw_ = function() {\n this.resetSelectBags_();\n this.selection.sync();\n\n this.syncScrollHeight();\n\n this.currentRowNodeCache_ = {};\n\n var topRowIndex = this.getTopRowIndex();\n var bottomRowIndex = this.getBottomRowIndex(topRowIndex);\n\n this.drawTopFold_(topRowIndex);\n this.drawBottomFold_(bottomRowIndex);\n this.drawVisibleRows_(topRowIndex, bottomRowIndex);\n\n this.syncRowNodesDimensions_();\n\n this.previousRowNodeCache_ = this.currentRowNodeCache_;\n this.currentRowNodeCache_ = null;\n\n this.isScrolledEnd = (\n this.getTopRowIndex() + this.visibleRowCount >= this.lastRowCount_);\n};\n\n/**\n * Ensure that the nodes above the top fold are as they should be.\n *\n * If the selection start and/or end nodes are above the visible range\n * of this hterm.ScrollPort then the dom will be adjusted so that they appear\n * before the top fold (the first x-fold element, aka this.topFold).\n *\n * If not, the top fold will be the first element.\n *\n * It is critical that this method does not move the selection nodes. Doing\n * so would clear the current selection. Instead, the rest of the DOM is\n * adjusted around them.\n */\nhterm.ScrollPort.prototype.drawTopFold_ = function(topRowIndex) {\n if (!this.selection.startRow ||\n this.selection.startRow.rowIndex >= topRowIndex) {\n // Selection is entirely below the top fold, just make sure the fold is\n // the first child.\n if (this.rowNodes_.firstChild != this.topFold_)\n this.rowNodes_.insertBefore(this.topFold_, this.rowNodes_.firstChild);\n\n return;\n }\n\n if (!this.selection.isMultiline ||\n this.selection.endRow.rowIndex >= topRowIndex) {\n // Only the startRow is above the fold.\n if (this.selection.startRow.nextSibling != this.topFold_)\n this.rowNodes_.insertBefore(this.topFold_,\n this.selection.startRow.nextSibling);\n } else {\n // Both rows are above the fold.\n if (this.selection.endRow.nextSibling != this.topFold_) {\n this.rowNodes_.insertBefore(this.topFold_,\n this.selection.endRow.nextSibling);\n }\n\n // Trim any intermediate lines.\n while (this.selection.startRow.nextSibling !=\n this.selection.endRow) {\n this.rowNodes_.removeChild(this.selection.startRow.nextSibling);\n }\n }\n\n while(this.rowNodes_.firstChild != this.selection.startRow) {\n this.rowNodes_.removeChild(this.rowNodes_.firstChild);\n }\n};\n\n/**\n * Ensure that the nodes below the bottom fold are as they should be.\n *\n * If the selection start and/or end nodes are below the visible range\n * of this hterm.ScrollPort then the dom will be adjusted so that they appear\n * after the bottom fold (the second x-fold element, aka this.bottomFold).\n *\n * If not, the bottom fold will be the last element.\n *\n * It is critical that this method does not move the selection nodes. Doing\n * so would clear the current selection. Instead, the rest of the DOM is\n * adjusted around them.\n */\nhterm.ScrollPort.prototype.drawBottomFold_ = function(bottomRowIndex) {\n if (!this.selection.endRow ||\n this.selection.endRow.rowIndex <= bottomRowIndex) {\n // Selection is entirely above the bottom fold, just make sure the fold is\n // the last child.\n if (this.rowNodes_.lastChild != this.bottomFold_)\n this.rowNodes_.appendChild(this.bottomFold_);\n\n return;\n }\n\n if (!this.selection.isMultiline ||\n this.selection.startRow.rowIndex <= bottomRowIndex) {\n // Only the endRow is below the fold.\n if (this.bottomFold_.nextSibling != this.selection.endRow)\n this.rowNodes_.insertBefore(this.bottomFold_,\n this.selection.endRow);\n } else {\n // Both rows are below the fold.\n if (this.bottomFold_.nextSibling != this.selection.startRow) {\n this.rowNodes_.insertBefore(this.bottomFold_,\n this.selection.startRow);\n }\n\n // Trim any intermediate lines.\n while (this.selection.startRow.nextSibling !=\n this.selection.endRow) {\n this.rowNodes_.removeChild(this.selection.startRow.nextSibling);\n }\n }\n\n while(this.rowNodes_.lastChild != this.selection.endRow) {\n this.rowNodes_.removeChild(this.rowNodes_.lastChild);\n }\n};\n\n/**\n * Ensure that the rows between the top and bottom folds are as they should be.\n *\n * This method assumes that drawTopFold_() and drawBottomFold_() have already\n * run, and that they have left any visible selection row (selection start\n * or selection end) between the folds.\n *\n * It recycles DOM nodes from the previous redraw where possible, but will ask\n * the rowSource to make new nodes if necessary.\n *\n * It is critical that this method does not move the selection nodes. Doing\n * so would clear the current selection. Instead, the rest of the DOM is\n * adjusted around them.\n */\nhterm.ScrollPort.prototype.drawVisibleRows_ = function(\n topRowIndex, bottomRowIndex) {\n var self = this;\n\n // Keep removing nodes, starting with currentNode, until we encounter\n // targetNode. Throws on failure.\n function removeUntilNode(currentNode, targetNode) {\n while (currentNode != targetNode) {\n if (!currentNode)\n throw 'Did not encounter target node';\n\n if (currentNode == self.bottomFold_)\n throw 'Encountered bottom fold before target node';\n\n var deadNode = currentNode;\n currentNode = currentNode.nextSibling;\n deadNode.parentNode.removeChild(deadNode);\n }\n }\n\n // Shorthand for things we're going to use a lot.\n var selectionStartRow = this.selection.startRow;\n var selectionEndRow = this.selection.endRow;\n var bottomFold = this.bottomFold_;\n\n // The node we're examining during the current iteration.\n var node = this.topFold_.nextSibling;\n\n var targetDrawCount = Math.min(this.visibleRowCount,\n this.rowProvider_.getRowCount());\n\n for (var drawCount = 0; drawCount < targetDrawCount; drawCount++) {\n var rowIndex = topRowIndex + drawCount;\n\n if (node == bottomFold) {\n // We've hit the bottom fold, we need to insert a new row.\n var newNode = this.fetchRowNode_(rowIndex);\n if (!newNode) {\n console.log(\"Couldn't fetch row index: \" + rowIndex);\n break;\n }\n\n this.rowNodes_.insertBefore(newNode, node);\n continue;\n }\n\n if (node.rowIndex == rowIndex) {\n // This node is in the right place, move along.\n node = node.nextSibling;\n continue;\n }\n\n if (selectionStartRow && selectionStartRow.rowIndex == rowIndex) {\n // The selection start row is supposed to be here, remove nodes until\n // we find it.\n removeUntilNode(node, selectionStartRow);\n node = selectionStartRow.nextSibling;\n continue;\n }\n\n if (selectionEndRow && selectionEndRow.rowIndex == rowIndex) {\n // The selection end row is supposed to be here, remove nodes until\n // we find it.\n removeUntilNode(node, selectionEndRow);\n node = selectionEndRow.nextSibling;\n continue;\n }\n\n if (node == selectionStartRow || node == selectionEndRow) {\n // We encountered the start/end of the selection, but we don't want it\n // yet. Insert a new row instead.\n var newNode = this.fetchRowNode_(rowIndex);\n if (!newNode) {\n console.log(\"Couldn't fetch row index: \" + rowIndex);\n break;\n }\n\n this.rowNodes_.insertBefore(newNode, node);\n continue;\n }\n\n // There is nothing special about this node, but it's in our way. Replace\n // it with the node that should be here.\n var newNode = this.fetchRowNode_(rowIndex);\n if (!newNode) {\n console.log(\"Couldn't fetch row index: \" + rowIndex);\n break;\n }\n\n if (node == newNode) {\n node = node.nextSibling;\n continue;\n }\n\n this.rowNodes_.insertBefore(newNode, node);\n if (!newNode.nextSibling)\n debugger;\n this.rowNodes_.removeChild(node);\n node = newNode.nextSibling;\n }\n\n if (node != this.bottomFold_)\n removeUntilNode(node, bottomFold);\n};\n\n/**\n * Empty out both select bags and remove them from the document.\n *\n * These nodes hold the text between the start and end of the selection\n * when that text is otherwise off screen. They are filled out in the\n * onCopy_ event.\n */\nhterm.ScrollPort.prototype.resetSelectBags_ = function() {\n if (this.topSelectBag_.parentNode) {\n this.topSelectBag_.textContent = '';\n this.topSelectBag_.parentNode.removeChild(this.topSelectBag_);\n }\n\n if (this.bottomSelectBag_.parentNode) {\n this.bottomSelectBag_.textContent = '';\n this.bottomSelectBag_.parentNode.removeChild(this.bottomSelectBag_);\n }\n};\n\n/**\n * Place a row node in the cache of visible nodes.\n *\n * This method may only be used during a redraw_.\n */\nhterm.ScrollPort.prototype.cacheRowNode_ = function(rowNode) {\n this.currentRowNodeCache_[rowNode.rowIndex] = rowNode;\n};\n\n/**\n * Fetch the row node for the given index.\n *\n * This will return a node from the cache if possible, or will request one\n * from the RowProvider if not.\n *\n * If a redraw_ is in progress the row will be added to the current cache.\n */\nhterm.ScrollPort.prototype.fetchRowNode_ = function(rowIndex) {\n var node;\n\n if (this.previousRowNodeCache_ && rowIndex in this.previousRowNodeCache_) {\n node = this.previousRowNodeCache_[rowIndex];\n } else {\n node = this.rowProvider_.getRowNode(rowIndex);\n }\n\n if (this.currentRowNodeCache_)\n this.cacheRowNode_(node);\n\n return node;\n};\n\n/**\n * Select all rows in the viewport.\n */\nhterm.ScrollPort.prototype.selectAll = function() {\n var firstRow;\n\n if (this.topFold_.nextSibling.rowIndex != 0) {\n while (this.topFold_.previousSibling) {\n this.rowNodes_.removeChild(this.topFold_.previousSibling);\n }\n\n firstRow = this.fetchRowNode_(0);\n this.rowNodes_.insertBefore(firstRow, this.topFold_);\n this.syncRowNodesDimensions_();\n } else {\n firstRow = this.topFold_.nextSibling;\n }\n\n var lastRowIndex = this.rowProvider_.getRowCount() - 1;\n var lastRow;\n\n if (this.bottomFold_.previousSibling.rowIndex != lastRowIndex) {\n while (this.bottomFold_.nextSibling) {\n this.rowNodes_.removeChild(this.bottomFold_.nextSibling);\n }\n\n lastRow = this.fetchRowNode_(lastRowIndex);\n this.rowNodes_.appendChild(lastRow);\n } else {\n lastRow = this.bottomFold_.previousSibling.rowIndex;\n }\n\n var selection = this.document_.getSelection();\n selection.collapse(firstRow, 0);\n selection.extend(lastRow, lastRow.childNodes.length);\n\n this.selection.sync();\n};\n\n/**\n * Return the maximum scroll position in pixels.\n */\nhterm.ScrollPort.prototype.getScrollMax_ = function(e) {\n return (hterm.getClientHeight(this.scrollArea_) +\n this.visibleRowTopMargin + this.visibleRowBottomMargin -\n hterm.getClientHeight(this.screen_));\n};\n\n/**\n * Scroll the given rowIndex to the top of the hterm.ScrollPort.\n *\n * @param {integer} rowIndex Index of the target row.\n */\nhterm.ScrollPort.prototype.scrollRowToTop = function(rowIndex) {\n this.syncScrollHeight();\n\n this.isScrolledEnd = (\n rowIndex + this.visibleRowCount >= this.lastRowCount_);\n\n var scrollTop = rowIndex * this.characterSize.height +\n this.visibleRowTopMargin;\n\n var scrollMax = this.getScrollMax_();\n if (scrollTop > scrollMax)\n scrollTop = scrollMax;\n\n if (this.screen_.scrollTop == scrollTop)\n return;\n\n this.screen_.scrollTop = scrollTop;\n this.scheduleRedraw();\n};\n\n/**\n * Scroll the given rowIndex to the bottom of the hterm.ScrollPort.\n *\n * @param {integer} rowIndex Index of the target row.\n */\nhterm.ScrollPort.prototype.scrollRowToBottom = function(rowIndex) {\n this.syncScrollHeight();\n\n this.isScrolledEnd = (\n rowIndex + this.visibleRowCount >= this.lastRowCount_);\n\n var scrollTop = rowIndex * this.characterSize.height +\n this.visibleRowTopMargin + this.visibleRowBottomMargin;\n scrollTop -= this.visibleRowCount * this.characterSize.height;\n\n if (scrollTop < 0)\n scrollTop = 0;\n\n if (this.screen_.scrollTop == scrollTop)\n return;\n\n this.screen_.scrollTop = scrollTop;\n};\n\n/**\n * Return the row index of the first visible row.\n *\n * This is based on the scroll position. If a redraw_ is in progress this\n * returns the row that *should* be at the top.\n */\nhterm.ScrollPort.prototype.getTopRowIndex = function() {\n return Math.round(this.screen_.scrollTop / this.characterSize.height);\n};\n\n/**\n * Return the row index of the last visible row.\n *\n * This is based on the scroll position. If a redraw_ is in progress this\n * returns the row that *should* be at the bottom.\n */\nhterm.ScrollPort.prototype.getBottomRowIndex = function(topRowIndex) {\n return topRowIndex + this.visibleRowCount - 1;\n};\n\n/**\n * Handler for scroll events.\n *\n * The onScroll event fires when scrollArea's scrollTop property changes. This\n * may be due to the user manually move the scrollbar, or a programmatic change.\n */\nhterm.ScrollPort.prototype.onScroll_ = function(e) {\n var screenSize = this.getScreenSize();\n if (screenSize.width != this.lastScreenWidth_ ||\n screenSize.height != this.lastScreenHeight_) {\n // This event may also fire during a resize (but before the resize event!).\n // This happens when the browser moves the scrollbar as part of the resize.\n // In these cases, we want to ignore the scroll event and let onResize\n // handle things. If we don't, then we end up scrolling to the wrong\n // position after a resize.\n this.resize();\n return;\n }\n\n this.redraw_();\n this.publish('scroll', { scrollPort: this });\n};\n\n/**\n * Clients can override this if they want to hear scrollwheel events.\n *\n * Clients may call event.preventDefault() if they want to keep the scrollport\n * from also handling the events.\n */\nhterm.ScrollPort.prototype.onScrollWheel = function(e) {};\n\n/**\n * Handler for scroll-wheel events.\n *\n * The onScrollWheel event fires when the user moves their scrollwheel over this\n * hterm.ScrollPort. Because the frontmost element in the hterm.ScrollPort is\n * a fixed position DIV, the scroll wheel does nothing by default. Instead, we\n * have to handle it manually.\n */\nhterm.ScrollPort.prototype.onScrollWheel_ = function(e) {\n this.onScrollWheel(e);\n\n if (e.defaultPrevented)\n return;\n\n // Figure out how far this event wants us to scroll.\n var delta = this.scrollWheelDelta(e);\n\n var top = this.screen_.scrollTop - delta;\n if (top < 0)\n top = 0;\n\n var scrollMax = this.getScrollMax_();\n if (top > scrollMax)\n top = scrollMax;\n\n if (top != this.screen_.scrollTop) {\n // Moving scrollTop causes a scroll event, which triggers the redraw.\n this.screen_.scrollTop = top;\n\n // Only preventDefault when we've actually scrolled. If there's nothing\n // to scroll we want to pass the event through so Chrome can detect the\n // overscroll.\n e.preventDefault();\n }\n};\n\n/**\n * Calculate how far a wheel event should scroll.\n *\n * @param {WheelEvent} e The mouse wheel event to process.\n * @return {number} How far (in pixels) to scroll.\n */\nhterm.ScrollPort.prototype.scrollWheelDelta = function(e) {\n var delta;\n\n switch (e.deltaMode) {\n case WheelEvent.DOM_DELTA_PIXEL:\n delta = e.deltaY * this.scrollWheelMultiplier_;\n break;\n case WheelEvent.DOM_DELTA_LINE:\n delta = e.deltaY * this.characterSize.height;\n break;\n case WheelEvent.DOM_DELTA_PAGE:\n delta = e.deltaY * this.characterSize.height * this.screen_.getHeight();\n break;\n }\n\n // The sign is inverted from what we would expect.\n return delta * -1;\n};\n\n\n/**\n * Clients can override this if they want to hear touch events.\n *\n * Clients may call event.preventDefault() if they want to keep the scrollport\n * from also handling the events.\n */\nhterm.ScrollPort.prototype.onTouch = function(e) {};\n\n/**\n * Handler for touch events.\n */\nhterm.ScrollPort.prototype.onTouch_ = function(e) {\n this.onTouch(e);\n\n if (e.defaultPrevented)\n return;\n\n // Extract the fields from the Touch event that we need. If we saved the\n // event directly, it has references to other objects (like x-row) that\n // might stick around for a long time. This way we only have small objects\n // in our lastTouch_ state.\n var scrubTouch = function(t) {\n return {\n id: t.identifier,\n y: t.clientY,\n x: t.clientX,\n };\n };\n\n var i, touch;\n switch (e.type) {\n case 'touchstart':\n // Save the current set of touches.\n for (i = 0; i < e.changedTouches.length; ++i) {\n touch = scrubTouch(e.changedTouches[i]);\n this.lastTouch_[touch.id] = touch;\n }\n break;\n\n case 'touchcancel':\n case 'touchend':\n // Throw away existing touches that we're finished with.\n for (i = 0; i < e.changedTouches.length; ++i)\n delete this.lastTouch_[e.changedTouches[i].identifier];\n break;\n\n case 'touchmove':\n // Walk all of the touches in this one event and merge all of their\n // changes into one delta. This lets multiple fingers scroll faster.\n var delta = 0;\n for (i = 0; i < e.changedTouches.length; ++i) {\n touch = scrubTouch(e.changedTouches[i]);\n delta += (this.lastTouch_[touch.id].y - touch.y);\n this.lastTouch_[touch.id] = touch;\n }\n\n // Invert to match the touchscreen scrolling direction of browser windows.\n delta *= -1;\n\n var top = this.screen_.scrollTop - delta;\n if (top < 0)\n top = 0;\n\n var scrollMax = this.getScrollMax_();\n if (top > scrollMax)\n top = scrollMax;\n\n if (top != this.screen_.scrollTop) {\n // Moving scrollTop causes a scroll event, which triggers the redraw.\n this.screen_.scrollTop = top;\n }\n break;\n }\n\n // To disable gestures or anything else interfering with our scrolling.\n e.preventDefault();\n};\n\n/**\n * Handler for resize events.\n *\n * The browser will resize us such that the top row stays at the top, but we\n * prefer to the bottom row to stay at the bottom.\n */\nhterm.ScrollPort.prototype.onResize_ = function(e) {\n // Re-measure, since onResize also happens for browser zoom changes.\n this.syncCharacterSize();\n this.resize();\n};\n\n/**\n * Clients can override this if they want to hear copy events.\n *\n * Clients may call event.preventDefault() if they want to keep the scrollport\n * from also handling the events.\n */\nhterm.ScrollPort.prototype.onCopy = function(e) { };\n\n/**\n * Handler for copy-to-clipboard events.\n *\n * If some or all of the selected rows are off screen we may need to fill in\n * the rows between selection start and selection end. This handler determines\n * if we're missing some of the selected text, and if so populates one or both\n * of the \"select bags\" with the missing text.\n */\nhterm.ScrollPort.prototype.onCopy_ = function(e) {\n this.onCopy(e);\n\n if (e.defaultPrevented)\n return;\n\n this.resetSelectBags_();\n this.selection.sync();\n\n if (!this.selection.startRow ||\n this.selection.endRow.rowIndex - this.selection.startRow.rowIndex < 2) {\n return;\n }\n\n var topRowIndex = this.getTopRowIndex();\n var bottomRowIndex = this.getBottomRowIndex(topRowIndex);\n\n if (this.selection.startRow.rowIndex < topRowIndex) {\n // Start of selection is above the top fold.\n var endBackfillIndex;\n\n if (this.selection.endRow.rowIndex < topRowIndex) {\n // Entire selection is above the top fold.\n endBackfillIndex = this.selection.endRow.rowIndex;\n } else {\n // Selection extends below the top fold.\n endBackfillIndex = this.topFold_.nextSibling.rowIndex;\n }\n\n this.topSelectBag_.textContent = this.rowProvider_.getRowsText(\n this.selection.startRow.rowIndex + 1, endBackfillIndex);\n this.rowNodes_.insertBefore(this.topSelectBag_,\n this.selection.startRow.nextSibling);\n this.syncRowNodesDimensions_();\n }\n\n if (this.selection.endRow.rowIndex > bottomRowIndex) {\n // Selection ends below the bottom fold.\n var startBackfillIndex;\n\n if (this.selection.startRow.rowIndex > bottomRowIndex) {\n // Entire selection is below the bottom fold.\n startBackfillIndex = this.selection.startRow.rowIndex + 1;\n } else {\n // Selection starts above the bottom fold.\n startBackfillIndex = this.bottomFold_.previousSibling.rowIndex + 1;\n }\n\n this.bottomSelectBag_.textContent = this.rowProvider_.getRowsText(\n startBackfillIndex, this.selection.endRow.rowIndex);\n this.rowNodes_.insertBefore(this.bottomSelectBag_, this.selection.endRow);\n }\n};\n\n/**\n * Focuses on the paste target on a ctrl-v keydown event, as in\n * FF a content editable element must be focused before the paste event.\n */\nhterm.ScrollPort.prototype.onBodyKeyDown_ = function(e) {\n if (!this.ctrlVPaste)\n return;\n\n var key = String.fromCharCode(e.which);\n var lowerKey = key.toLowerCase();\n if ((e.ctrlKey || e.metaKey) && lowerKey == \"v\")\n this.pasteTarget_.focus();\n};\n\n/**\n * Handle a paste event on the the ScrollPort's screen element.\n */\nhterm.ScrollPort.prototype.onPaste_ = function(e) {\n this.pasteTarget_.focus();\n\n var self = this;\n setTimeout(function() {\n self.publish('paste', { text: self.pasteTarget_.value });\n self.pasteTarget_.value = '';\n self.screen_.focus();\n }, 0);\n};\n\n/**\n * Handles a textInput event on the paste target. Stops this from\n * propagating as we want this to be handled in the onPaste_ method.\n */\nhterm.ScrollPort.prototype.handlePasteTargetTextInput_ = function(e) {\n e.stopPropagation();\n};\n\n/**\n * Set the vertical scrollbar mode of the ScrollPort.\n */\nhterm.ScrollPort.prototype.setScrollbarVisible = function(state) {\n this.screen_.style.overflowY = state ? 'scroll' : 'hidden';\n};\n\n/**\n * Set scroll wheel multiplier. This alters how much the screen scrolls on\n * mouse wheel events.\n */\nhterm.ScrollPort.prototype.setScrollWheelMoveMultipler = function(multiplier) {\n this.scrollWheelMultiplier_ = multiplier;\n};\n// SOURCE FILE: hterm/js/hterm_terminal.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.colors', 'lib.PreferenceManager', 'lib.resource', 'lib.wc',\n 'lib.f', 'hterm.Keyboard', 'hterm.Options', 'hterm.PreferenceManager',\n 'hterm.Screen', 'hterm.ScrollPort', 'hterm.Size',\n 'hterm.TextAttributes', 'hterm.VT');\n\n/**\n * Constructor for the Terminal class.\n *\n * A Terminal pulls together the hterm.ScrollPort, hterm.Screen and hterm.VT100\n * classes to provide the complete terminal functionality.\n *\n * There are a number of lower-level Terminal methods that can be called\n * directly to manipulate the cursor, text, scroll region, and other terminal\n * attributes. However, the primary method is interpret(), which parses VT\n * escape sequences and invokes the appropriate Terminal methods.\n *\n * This class was heavily influenced by Cory Maccarrone's Framebuffer class.\n *\n * TODO(rginda): Eventually we're going to need to support characters which are\n * displayed twice as wide as standard latin characters. This is to support\n * CJK (and possibly other character sets).\n *\n * @param {string} opt_profileId Optional preference profile name. If not\n * provided, defaults to 'default'.\n */\nhterm.Terminal = function(opt_profileId) {\n this.profileId_ = null;\n\n // Two screen instances.\n this.primaryScreen_ = new hterm.Screen();\n this.alternateScreen_ = new hterm.Screen();\n\n // The \"current\" screen.\n this.screen_ = this.primaryScreen_;\n\n // The local notion of the screen size. ScreenBuffers also have a size which\n // indicates their present size. During size changes, the two may disagree.\n // Also, the inactive screen's size is not altered until it is made the active\n // screen.\n this.screenSize = new hterm.Size(0, 0);\n\n // The scroll port we'll be using to display the visible rows.\n this.scrollPort_ = new hterm.ScrollPort(this);\n this.scrollPort_.subscribe('resize', this.onResize_.bind(this));\n this.scrollPort_.subscribe('scroll', this.onScroll_.bind(this));\n this.scrollPort_.subscribe('paste', this.onPaste_.bind(this));\n this.scrollPort_.onCopy = this.onCopy_.bind(this);\n\n // The div that contains this terminal.\n this.div_ = null;\n\n // The document that contains the scrollPort. Defaulted to the global\n // document here so that the terminal is functional even if it hasn't been\n // inserted into a document yet, but re-set in decorate().\n this.document_ = window.document;\n\n // The rows that have scrolled off screen and are no longer addressable.\n this.scrollbackRows_ = [];\n\n // Saved tab stops.\n this.tabStops_ = [];\n\n // Keep track of whether default tab stops have been erased; after a TBC\n // clears all tab stops, defaults aren't restored on resize until a reset.\n this.defaultTabStops = true;\n\n // The VT's notion of the top and bottom rows. Used during some VT\n // cursor positioning and scrolling commands.\n this.vtScrollTop_ = null;\n this.vtScrollBottom_ = null;\n\n // The DIV element for the visible cursor.\n this.cursorNode_ = null;\n\n // The current cursor shape of the terminal.\n this.cursorShape_ = hterm.Terminal.cursorShape.BLOCK;\n\n // The current color of the cursor.\n this.cursorColor_ = null;\n\n // Cursor blink on/off cycle in ms, overwritten by prefs once they're loaded.\n this.cursorBlinkCycle_ = [100, 100];\n\n // Pre-bound onCursorBlink_ handler, so we don't have to do this for each\n // cursor on/off servicing.\n this.myOnCursorBlink_ = this.onCursorBlink_.bind(this);\n\n // These prefs are cached so we don't have to read from local storage with\n // each output and keystroke. They are initialized by the preference manager.\n this.backgroundColor_ = null;\n this.foregroundColor_ = null;\n this.scrollOnOutput_ = null;\n this.scrollOnKeystroke_ = null;\n this.scrollWheelArrowKeys_ = null;\n\n // True if we should override mouse event reporting to allow local selection.\n this.defeatMouseReports_ = false;\n\n // Terminal bell sound.\n this.bellAudio_ = this.document_.createElement('audio');\n this.bellAudio_.id = 'hterm:bell-audio';\n this.bellAudio_.setAttribute('preload', 'auto');\n\n // All terminal bell notifications that have been generated (not necessarily\n // shown).\n this.bellNotificationList_ = [];\n\n // Whether we have permission to display notifications.\n this.desktopNotificationBell_ = false;\n\n // Cursor position and attributes saved with DECSC.\n this.savedOptions_ = {};\n\n // The current mode bits for the terminal.\n this.options_ = new hterm.Options();\n\n // Timeouts we might need to clear.\n this.timeouts_ = {};\n\n // The VT escape sequence interpreter.\n this.vt = new hterm.VT(this);\n\n // The keyboard handler.\n this.keyboard = new hterm.Keyboard(this);\n\n // General IO interface that can be given to third parties without exposing\n // the entire terminal object.\n this.io = new hterm.Terminal.IO(this);\n\n // True if mouse-click-drag should scroll the terminal.\n this.enableMouseDragScroll = true;\n\n this.copyOnSelect = null;\n this.mouseRightClickPaste = null;\n this.mousePasteButton = null;\n\n // Whether to use the default window copy behavior.\n this.useDefaultWindowCopy = false;\n\n this.clearSelectionAfterCopy = true;\n\n this.realizeSize_(80, 24);\n this.setDefaultTabStops();\n\n this.setProfile(opt_profileId || 'default',\n function() { this.onTerminalReady(); }.bind(this));\n};\n\n/**\n * Possible cursor shapes.\n */\nhterm.Terminal.cursorShape = {\n BLOCK: 'BLOCK',\n BEAM: 'BEAM',\n UNDERLINE: 'UNDERLINE'\n};\n\n/**\n * Clients should override this to be notified when the terminal is ready\n * for use.\n *\n * The terminal initialization is asynchronous, and shouldn't be used before\n * this method is called.\n */\nhterm.Terminal.prototype.onTerminalReady = function() { };\n\n/**\n * Default tab with of 8 to match xterm.\n */\nhterm.Terminal.prototype.tabWidth = 8;\n\n/**\n * Select a preference profile.\n *\n * This will load the terminal preferences for the given profile name and\n * associate subsequent preference changes with the new preference profile.\n *\n * @param {string} profileId The name of the preference profile. Forward slash\n * characters will be removed from the name.\n * @param {function} opt_callback Optional callback to invoke when the profile\n * transition is complete.\n */\nhterm.Terminal.prototype.setProfile = function(profileId, opt_callback) {\n this.profileId_ = profileId.replace(/\\//g, '');\n\n var terminal = this;\n\n if (this.prefs_)\n this.prefs_.deactivate();\n\n this.prefs_ = new hterm.PreferenceManager(this.profileId_);\n this.prefs_.addObservers(null, {\n 'alt-gr-mode': function(v) {\n if (v == null) {\n if (navigator.language.toLowerCase() == 'en-us') {\n v = 'none';\n } else {\n v = 'right-alt';\n }\n } else if (typeof v == 'string') {\n v = v.toLowerCase();\n } else {\n v = 'none';\n }\n\n if (!/^(none|ctrl-alt|left-alt|right-alt)$/.test(v))\n v = 'none';\n\n terminal.keyboard.altGrMode = v;\n },\n\n 'alt-backspace-is-meta-backspace': function(v) {\n terminal.keyboard.altBackspaceIsMetaBackspace = v;\n },\n\n 'alt-is-meta': function(v) {\n terminal.keyboard.altIsMeta = v;\n },\n\n 'alt-sends-what': function(v) {\n if (!/^(escape|8-bit|browser-key)$/.test(v))\n v = 'escape';\n\n terminal.keyboard.altSendsWhat = v;\n },\n\n 'audible-bell-sound': function(v) {\n var ary = v.match(/^lib-resource:(\\S+)/);\n if (ary) {\n terminal.bellAudio_.setAttribute('src',\n lib.resource.getDataUrl(ary[1]));\n } else {\n terminal.bellAudio_.setAttribute('src', v);\n }\n },\n\n 'desktop-notification-bell': function(v) {\n if (v && Notification) {\n terminal.desktopNotificationBell_ =\n Notification.permission === 'granted';\n if (!terminal.desktopNotificationBell_) {\n // Note: We don't call Notification.requestPermission here because\n // Chrome requires the call be the result of a user action (such as an\n // onclick handler), and pref listeners are run asynchronously.\n //\n // A way of working around this would be to display a dialog in the\n // terminal with a \"click-to-request-permission\" button.\n console.warn('desktop-notification-bell is true but we do not have ' +\n 'permission to display notifications.');\n }\n } else {\n terminal.desktopNotificationBell_ = false;\n }\n },\n\n 'background-color': function(v) {\n terminal.setBackgroundColor(v);\n },\n\n 'background-image': function(v) {\n terminal.scrollPort_.setBackgroundImage(v);\n },\n\n 'background-size': function(v) {\n terminal.scrollPort_.setBackgroundSize(v);\n },\n\n 'background-position': function(v) {\n terminal.scrollPort_.setBackgroundPosition(v);\n },\n\n 'backspace-sends-backspace': function(v) {\n terminal.keyboard.backspaceSendsBackspace = v;\n },\n\n 'character-map-overrides': function(v) {\n if (!(v == null || v instanceof Object)) {\n console.warn('Preference character-map-modifications is not an ' +\n 'object: ' + v);\n return;\n }\n\n terminal.vt.characterMaps.reset();\n terminal.vt.characterMaps.setOverrides(v);\n },\n\n 'cursor-blink': function(v) {\n terminal.setCursorBlink(!!v);\n },\n\n 'cursor-blink-cycle': function(v) {\n if (v instanceof Array &&\n typeof v[0] == 'number' &&\n typeof v[1] == 'number') {\n terminal.cursorBlinkCycle_ = v;\n } else if (typeof v == 'number') {\n terminal.cursorBlinkCycle_ = [v, v];\n } else {\n // Fast blink indicates an error.\n terminal.cursorBlinkCycle_ = [100, 100];\n }\n },\n\n 'cursor-color': function(v) {\n terminal.setCursorColor(v);\n },\n\n 'color-palette-overrides': function(v) {\n if (!(v == null || v instanceof Object || v instanceof Array)) {\n console.warn('Preference color-palette-overrides is not an array or ' +\n 'object: ' + v);\n return;\n }\n\n lib.colors.colorPalette = lib.colors.stockColorPalette.concat();\n\n if (v) {\n for (var key in v) {\n var i = parseInt(key);\n if (isNaN(i) || i < 0 || i > 255) {\n console.log('Invalid value in palette: ' + key + ': ' + v[key]);\n continue;\n }\n\n if (v[i]) {\n var rgb = lib.colors.normalizeCSS(v[i]);\n if (rgb)\n lib.colors.colorPalette[i] = rgb;\n }\n }\n }\n\n terminal.primaryScreen_.textAttributes.resetColorPalette();\n terminal.alternateScreen_.textAttributes.resetColorPalette();\n },\n\n 'copy-on-select': function(v) {\n terminal.copyOnSelect = !!v;\n },\n\n 'use-default-window-copy': function(v) {\n terminal.useDefaultWindowCopy = !!v;\n },\n\n 'clear-selection-after-copy': function(v) {\n terminal.clearSelectionAfterCopy = !!v;\n },\n\n 'ctrl-plus-minus-zero-zoom': function(v) {\n terminal.keyboard.ctrlPlusMinusZeroZoom = v;\n },\n\n 'ctrl-c-copy': function(v) {\n terminal.keyboard.ctrlCCopy = v;\n },\n\n 'ctrl-v-paste': function(v) {\n terminal.keyboard.ctrlVPaste = v;\n terminal.scrollPort_.setCtrlVPaste(v);\n },\n\n 'east-asian-ambiguous-as-two-column': function(v) {\n lib.wc.regardCjkAmbiguous = v;\n },\n\n 'enable-8-bit-control': function(v) {\n terminal.vt.enable8BitControl = !!v;\n },\n\n 'enable-bold': function(v) {\n terminal.syncBoldSafeState();\n },\n\n 'enable-bold-as-bright': function(v) {\n terminal.primaryScreen_.textAttributes.enableBoldAsBright = !!v;\n terminal.alternateScreen_.textAttributes.enableBoldAsBright = !!v;\n },\n\n 'enable-blink': function(v) {\n terminal.syncBlinkState();\n },\n\n 'enable-clipboard-write': function(v) {\n terminal.vt.enableClipboardWrite = !!v;\n },\n\n 'enable-dec12': function(v) {\n terminal.vt.enableDec12 = !!v;\n },\n\n 'font-family': function(v) {\n terminal.syncFontFamily();\n },\n\n 'font-size': function(v) {\n terminal.setFontSize(v);\n },\n\n 'font-smoothing': function(v) {\n terminal.syncFontFamily();\n },\n\n 'foreground-color': function(v) {\n terminal.setForegroundColor(v);\n },\n\n 'home-keys-scroll': function(v) {\n terminal.keyboard.homeKeysScroll = v;\n },\n\n 'keybindings': function(v) {\n terminal.keyboard.bindings.clear();\n\n if (!v)\n return;\n\n if (!(v instanceof Object)) {\n console.error('Error in keybindings preference: Expected object');\n return;\n }\n\n try {\n terminal.keyboard.bindings.addBindings(v);\n } catch (ex) {\n console.error('Error in keybindings preference: ' + ex);\n }\n },\n\n 'max-string-sequence': function(v) {\n terminal.vt.maxStringSequence = v;\n },\n\n 'media-keys-are-fkeys': function(v) {\n terminal.keyboard.mediaKeysAreFKeys = v;\n },\n\n 'meta-sends-escape': function(v) {\n terminal.keyboard.metaSendsEscape = v;\n },\n\n 'mouse-right-click-paste': function(v) {\n terminal.mouseRightClickPaste = v;\n },\n\n 'mouse-paste-button': function(v) {\n terminal.syncMousePasteButton();\n },\n\n 'page-keys-scroll': function(v) {\n terminal.keyboard.pageKeysScroll = v;\n },\n\n 'pass-alt-number': function(v) {\n if (v == null) {\n var osx = window.navigator.userAgent.match(/Mac OS X/);\n\n // Let Alt-1..9 pass to the browser (to control tab switching) on\n // non-OS X systems, or if hterm is not opened in an app window.\n v = (!osx && hterm.windowType != 'popup');\n }\n\n terminal.passAltNumber = v;\n },\n\n 'pass-ctrl-number': function(v) {\n if (v == null) {\n var osx = window.navigator.userAgent.match(/Mac OS X/);\n\n // Let Ctrl-1..9 pass to the browser (to control tab switching) on\n // non-OS X systems, or if hterm is not opened in an app window.\n v = (!osx && hterm.windowType != 'popup');\n }\n\n terminal.passCtrlNumber = v;\n },\n\n 'pass-meta-number': function(v) {\n if (v == null) {\n var osx = window.navigator.userAgent.match(/Mac OS X/);\n\n // Let Meta-1..9 pass to the browser (to control tab switching) on\n // OS X systems, or if hterm is not opened in an app window.\n v = (osx && hterm.windowType != 'popup');\n }\n\n terminal.passMetaNumber = v;\n },\n\n 'pass-meta-v': function(v) {\n terminal.keyboard.passMetaV = v;\n },\n\n 'receive-encoding': function(v) {\n if (!(/^(utf-8|raw)$/).test(v)) {\n console.warn('Invalid value for \"receive-encoding\": ' + v);\n v = 'utf-8';\n }\n\n terminal.vt.characterEncoding = v;\n },\n\n 'scroll-on-keystroke': function(v) {\n terminal.scrollOnKeystroke_ = v;\n },\n\n 'scroll-on-output': function(v) {\n terminal.scrollOnOutput_ = v;\n },\n\n 'scrollbar-visible': function(v) {\n terminal.setScrollbarVisible(v);\n },\n\n 'scroll-wheel-may-send-arrow-keys': function(v) {\n terminal.scrollWheelArrowKeys_ = v;\n },\n\n 'scroll-wheel-move-multiplier': function(v) {\n terminal.setScrollWheelMoveMultipler(v);\n },\n\n 'send-encoding': function(v) {\n if (!(/^(utf-8|raw)$/).test(v)) {\n console.warn('Invalid value for \"send-encoding\": ' + v);\n v = 'utf-8';\n }\n\n terminal.keyboard.characterEncoding = v;\n },\n\n 'shift-insert-paste': function(v) {\n terminal.keyboard.shiftInsertPaste = v;\n },\n\n 'terminal-encoding': function(v) {\n terminal.vt.setEncoding(v);\n },\n\n 'user-css': function(v) {\n terminal.scrollPort_.setUserCssUrl(v);\n },\n\n 'user-css-text': function(v) {\n terminal.scrollPort_.setUserCssText(v);\n },\n\n 'word-break-match-left': function(v) {\n terminal.primaryScreen_.wordBreakMatchLeft = v;\n terminal.alternateScreen_.wordBreakMatchLeft = v;\n },\n\n 'word-break-match-right': function(v) {\n terminal.primaryScreen_.wordBreakMatchRight = v;\n terminal.alternateScreen_.wordBreakMatchRight = v;\n },\n\n 'word-break-match-middle': function(v) {\n terminal.primaryScreen_.wordBreakMatchMiddle = v;\n terminal.alternateScreen_.wordBreakMatchMiddle = v;\n },\n });\n\n this.prefs_.readStorage(function() {\n this.prefs_.notifyAll();\n\n if (opt_callback)\n opt_callback();\n }.bind(this));\n};\n\n\n/**\n * Returns the preferences manager used for configuring this terminal.\n *\n * @return {hterm.PreferenceManager}\n */\nhterm.Terminal.prototype.getPrefs = function() {\n return this.prefs_;\n};\n\n/**\n * Enable or disable bracketed paste mode.\n *\n * @param {boolean} state The value to set.\n */\nhterm.Terminal.prototype.setBracketedPaste = function(state) {\n this.options_.bracketedPaste = state;\n};\n\n/**\n * Set the color for the cursor.\n *\n * If you want this setting to persist, set it through prefs_, rather than\n * with this method.\n *\n * @param {string} color The color to set.\n */\nhterm.Terminal.prototype.setCursorColor = function(color) {\n this.cursorColor_ = color;\n this.cursorNode_.style.backgroundColor = color;\n this.cursorNode_.style.borderColor = color;\n};\n\n/**\n * Return the current cursor color as a string.\n * @return {string}\n */\nhterm.Terminal.prototype.getCursorColor = function() {\n return this.cursorColor_;\n};\n\n/**\n * Enable or disable mouse based text selection in the terminal.\n *\n * @param {boolean} state The value to set.\n */\nhterm.Terminal.prototype.setSelectionEnabled = function(state) {\n this.enableMouseDragScroll = state;\n};\n\n/**\n * Set the background color.\n *\n * If you want this setting to persist, set it through prefs_, rather than\n * with this method.\n *\n * @param {string} color The color to set.\n */\nhterm.Terminal.prototype.setBackgroundColor = function(color) {\n this.backgroundColor_ = lib.colors.normalizeCSS(color);\n this.primaryScreen_.textAttributes.setDefaults(\n this.foregroundColor_, this.backgroundColor_);\n this.alternateScreen_.textAttributes.setDefaults(\n this.foregroundColor_, this.backgroundColor_);\n this.scrollPort_.setBackgroundColor(color);\n};\n\n/**\n * Return the current terminal background color.\n *\n * Intended for use by other classes, so we don't have to expose the entire\n * prefs_ object.\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getBackgroundColor = function() {\n return this.backgroundColor_;\n};\n\n/**\n * Set the foreground color.\n *\n * If you want this setting to persist, set it through prefs_, rather than\n * with this method.\n *\n * @param {string} color The color to set.\n */\nhterm.Terminal.prototype.setForegroundColor = function(color) {\n this.foregroundColor_ = lib.colors.normalizeCSS(color);\n this.primaryScreen_.textAttributes.setDefaults(\n this.foregroundColor_, this.backgroundColor_);\n this.alternateScreen_.textAttributes.setDefaults(\n this.foregroundColor_, this.backgroundColor_);\n this.scrollPort_.setForegroundColor(color);\n};\n\n/**\n * Return the current terminal foreground color.\n *\n * Intended for use by other classes, so we don't have to expose the entire\n * prefs_ object.\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getForegroundColor = function() {\n return this.foregroundColor_;\n};\n\n/**\n * Create a new instance of a terminal command and run it with a given\n * argument string.\n *\n * @param {function} commandClass The constructor for a terminal command.\n * @param {string} argString The argument string to pass to the command.\n */\nhterm.Terminal.prototype.runCommandClass = function(commandClass, argString) {\n var environment = this.prefs_.get('environment');\n if (typeof environment != 'object' || environment == null)\n environment = {};\n\n var self = this;\n this.command = new commandClass(\n { argString: argString || '',\n io: this.io.push(),\n environment: environment,\n onExit: function(code) {\n self.io.pop();\n self.uninstallKeyboard();\n if (self.prefs_.get('close-on-exit'))\n window.close();\n }\n });\n\n this.installKeyboard();\n this.command.run();\n};\n\n/**\n * Returns true if the current screen is the primary screen, false otherwise.\n *\n * @return {boolean}\n */\nhterm.Terminal.prototype.isPrimaryScreen = function() {\n return this.screen_ == this.primaryScreen_;\n};\n\n/**\n * Install the keyboard handler for this terminal.\n *\n * This will prevent the browser from seeing any keystrokes sent to the\n * terminal.\n */\nhterm.Terminal.prototype.installKeyboard = function() {\n this.keyboard.installKeyboard(this.scrollPort_.getDocument().body);\n}\n\n/**\n * Uninstall the keyboard handler for this terminal.\n */\nhterm.Terminal.prototype.uninstallKeyboard = function() {\n this.keyboard.installKeyboard(null);\n}\n\n/**\n * Set a CSS variable.\n *\n * Normally this is used to set variables in the hterm namespace.\n *\n * @param {string} name The variable to set.\n * @param {string} value The value to assign to the variable.\n * @param {string?} opt_prefix The variable namespace/prefix to use.\n */\nhterm.Terminal.prototype.setCssVar = function(name, value,\n opt_prefix='--hterm-') {\n this.document_.documentElement.style.setProperty(\n `${opt_prefix}${name}`, value);\n};\n\n/**\n * Set the font size for this terminal.\n *\n * Call setFontSize(0) to reset to the default font size.\n *\n * This function does not modify the font-size preference.\n *\n * @param {number} px The desired font size, in pixels.\n */\nhterm.Terminal.prototype.setFontSize = function(px) {\n if (px === 0)\n px = this.prefs_.get('font-size');\n\n this.scrollPort_.setFontSize(px);\n this.setCssVar('charsize-width', this.scrollPort_.characterSize.width + 'px');\n this.setCssVar('charsize-height',\n this.scrollPort_.characterSize.height + 'px');\n};\n\n/**\n * Get the current font size.\n *\n * @return {number}\n */\nhterm.Terminal.prototype.getFontSize = function() {\n return this.scrollPort_.getFontSize();\n};\n\n/**\n * Get the current font family.\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getFontFamily = function() {\n return this.scrollPort_.getFontFamily();\n};\n\n/**\n * Set the CSS \"font-family\" for this terminal.\n */\nhterm.Terminal.prototype.syncFontFamily = function() {\n this.scrollPort_.setFontFamily(this.prefs_.get('font-family'),\n this.prefs_.get('font-smoothing'));\n this.syncBoldSafeState();\n};\n\n/**\n * Set this.mousePasteButton based on the mouse-paste-button pref,\n * autodetecting if necessary.\n */\nhterm.Terminal.prototype.syncMousePasteButton = function() {\n var button = this.prefs_.get('mouse-paste-button');\n if (typeof button == 'number') {\n this.mousePasteButton = button;\n return;\n }\n\n var ary = navigator.userAgent.match(/\\(X11;\\s+(\\S+)/);\n if (!ary || ary[1] == 'CrOS') {\n this.mousePasteButton = 1; // Middle mouse button.\n } else {\n this.mousePasteButton = 2; // Right mouse button.\n }\n};\n\n/**\n * Enable or disable bold based on the enable-bold pref, autodetecting if\n * necessary.\n */\nhterm.Terminal.prototype.syncBoldSafeState = function() {\n var enableBold = this.prefs_.get('enable-bold');\n if (enableBold !== null) {\n this.primaryScreen_.textAttributes.enableBold = enableBold;\n this.alternateScreen_.textAttributes.enableBold = enableBold;\n return;\n }\n\n var normalSize = this.scrollPort_.measureCharacterSize();\n var boldSize = this.scrollPort_.measureCharacterSize('bold');\n\n var isBoldSafe = normalSize.equals(boldSize);\n if (!isBoldSafe) {\n console.warn('Bold characters disabled: Size of bold weight differs ' +\n 'from normal. Font family is: ' +\n this.scrollPort_.getFontFamily());\n }\n\n this.primaryScreen_.textAttributes.enableBold = isBoldSafe;\n this.alternateScreen_.textAttributes.enableBold = isBoldSafe;\n};\n\n/**\n * Enable or disable blink based on the enable-blink pref.\n */\nhterm.Terminal.prototype.syncBlinkState = function() {\n this.setCssVar('node-duration',\n this.prefs_.get('enable-blink') ? '0.7s' : '0');\n};\n\n/**\n * Set the mouse cursor style based on the current terminal mode.\n */\nhterm.Terminal.prototype.syncMouseStyle = function() {\n this.setCssVar('mouse-cursor-style',\n this.vt.mouseReport == this.vt.MOUSE_REPORT_DISABLED ?\n 'var(--hterm-mouse-cursor-text)' :\n 'var(--hterm-mouse-cursor-pointer)');\n};\n\n/**\n * Return a copy of the current cursor position.\n *\n * @return {hterm.RowCol} The RowCol object representing the current position.\n */\nhterm.Terminal.prototype.saveCursor = function() {\n return this.screen_.cursorPosition.clone();\n};\n\n/**\n * Return the current text attributes.\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getTextAttributes = function() {\n return this.screen_.textAttributes;\n};\n\n/**\n * Set the text attributes.\n *\n * @param {string} textAttributes The attributes to set.\n */\nhterm.Terminal.prototype.setTextAttributes = function(textAttributes) {\n this.screen_.textAttributes = textAttributes;\n};\n\n/**\n * Return the current browser zoom factor applied to the terminal.\n *\n * @return {number} The current browser zoom factor.\n */\nhterm.Terminal.prototype.getZoomFactor = function() {\n return this.scrollPort_.characterSize.zoomFactor;\n};\n\n/**\n * Change the title of this terminal's window.\n *\n * @param {string} title The title to set.\n */\nhterm.Terminal.prototype.setWindowTitle = function(title) {\n window.document.title = title;\n};\n\n/**\n * Restore a previously saved cursor position.\n *\n * @param {hterm.RowCol} cursor The position to restore.\n */\nhterm.Terminal.prototype.restoreCursor = function(cursor) {\n var row = lib.f.clamp(cursor.row, 0, this.screenSize.height - 1);\n var column = lib.f.clamp(cursor.column, 0, this.screenSize.width - 1);\n this.screen_.setCursorPosition(row, column);\n if (cursor.column > column ||\n cursor.column == column && cursor.overflow) {\n this.screen_.cursorPosition.overflow = true;\n }\n};\n\n/**\n * Clear the cursor's overflow flag.\n */\nhterm.Terminal.prototype.clearCursorOverflow = function() {\n this.screen_.cursorPosition.overflow = false;\n};\n\n/**\n * Sets the cursor shape\n *\n * @param {string} shape The shape to set.\n */\nhterm.Terminal.prototype.setCursorShape = function(shape) {\n this.cursorShape_ = shape;\n this.restyleCursor_();\n}\n\n/**\n * Get the cursor shape\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getCursorShape = function() {\n return this.cursorShape_;\n}\n\n/**\n * Set the width of the terminal, resizing the UI to match.\n *\n * @param {number} columnCount\n */\nhterm.Terminal.prototype.setWidth = function(columnCount) {\n if (columnCount == null) {\n this.div_.style.width = '100%';\n return;\n }\n\n this.div_.style.width = Math.ceil(\n this.scrollPort_.characterSize.width *\n columnCount + this.scrollPort_.currentScrollbarWidthPx) + 'px';\n this.realizeSize_(columnCount, this.screenSize.height);\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * Set the height of the terminal, resizing the UI to match.\n *\n * @param {number} rowCount The height in rows.\n */\nhterm.Terminal.prototype.setHeight = function(rowCount) {\n if (rowCount == null) {\n this.div_.style.height = '100%';\n return;\n }\n\n this.div_.style.height =\n this.scrollPort_.characterSize.height * rowCount + 'px';\n this.realizeSize_(this.screenSize.width, rowCount);\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * Deal with terminal size changes.\n *\n * @param {number} columnCount The number of columns.\n * @param {number} rowCount The number of rows.\n */\nhterm.Terminal.prototype.realizeSize_ = function(columnCount, rowCount) {\n if (columnCount != this.screenSize.width)\n this.realizeWidth_(columnCount);\n\n if (rowCount != this.screenSize.height)\n this.realizeHeight_(rowCount);\n\n // Send new terminal size to plugin.\n this.io.onTerminalResize_(columnCount, rowCount);\n};\n\n/**\n * Deal with terminal width changes.\n *\n * This function does what needs to be done when the terminal width changes\n * out from under us. It happens here rather than in onResize_() because this\n * code may need to run synchronously to handle programmatic changes of\n * terminal width.\n *\n * Relying on the browser to send us an async resize event means we may not be\n * in the correct state yet when the next escape sequence hits.\n *\n * @param {number} columnCount The number of columns.\n */\nhterm.Terminal.prototype.realizeWidth_ = function(columnCount) {\n if (columnCount <= 0)\n throw new Error('Attempt to realize bad width: ' + columnCount);\n\n var deltaColumns = columnCount - this.screen_.getWidth();\n\n this.screenSize.width = columnCount;\n this.screen_.setColumnCount(columnCount);\n\n if (deltaColumns > 0) {\n if (this.defaultTabStops)\n this.setDefaultTabStops(this.screenSize.width - deltaColumns);\n } else {\n for (var i = this.tabStops_.length - 1; i >= 0; i--) {\n if (this.tabStops_[i] < columnCount)\n break;\n\n this.tabStops_.pop();\n }\n }\n\n this.screen_.setColumnCount(this.screenSize.width);\n};\n\n/**\n * Deal with terminal height changes.\n *\n * This function does what needs to be done when the terminal height changes\n * out from under us. It happens here rather than in onResize_() because this\n * code may need to run synchronously to handle programmatic changes of\n * terminal height.\n *\n * Relying on the browser to send us an async resize event means we may not be\n * in the correct state yet when the next escape sequence hits.\n *\n * @param {number} rowCount The number of rows.\n */\nhterm.Terminal.prototype.realizeHeight_ = function(rowCount) {\n if (rowCount <= 0)\n throw new Error('Attempt to realize bad height: ' + rowCount);\n\n var deltaRows = rowCount - this.screen_.getHeight();\n\n this.screenSize.height = rowCount;\n\n var cursor = this.saveCursor();\n\n if (deltaRows < 0) {\n // Screen got smaller.\n deltaRows *= -1;\n while (deltaRows) {\n var lastRow = this.getRowCount() - 1;\n if (lastRow - this.scrollbackRows_.length == cursor.row)\n break;\n\n if (this.getRowText(lastRow))\n break;\n\n this.screen_.popRow();\n deltaRows--;\n }\n\n var ary = this.screen_.shiftRows(deltaRows);\n this.scrollbackRows_.push.apply(this.scrollbackRows_, ary);\n\n // We just removed rows from the top of the screen, we need to update\n // the cursor to match.\n cursor.row = Math.max(cursor.row - deltaRows, 0);\n } else if (deltaRows > 0) {\n // Screen got larger.\n\n if (deltaRows <= this.scrollbackRows_.length) {\n var scrollbackCount = Math.min(deltaRows, this.scrollbackRows_.length);\n var rows = this.scrollbackRows_.splice(\n this.scrollbackRows_.length - scrollbackCount, scrollbackCount);\n this.screen_.unshiftRows(rows);\n deltaRows -= scrollbackCount;\n cursor.row += scrollbackCount;\n }\n\n if (deltaRows)\n this.appendRows_(deltaRows);\n }\n\n this.setVTScrollRegion(null, null);\n this.restoreCursor(cursor);\n};\n\n/**\n * Scroll the terminal to the top of the scrollback buffer.\n */\nhterm.Terminal.prototype.scrollHome = function() {\n this.scrollPort_.scrollRowToTop(0);\n};\n\n/**\n * Scroll the terminal to the end.\n */\nhterm.Terminal.prototype.scrollEnd = function() {\n this.scrollPort_.scrollRowToBottom(this.getRowCount());\n};\n\n/**\n * Scroll the terminal one page up (minus one line) relative to the current\n * position.\n */\nhterm.Terminal.prototype.scrollPageUp = function() {\n var i = this.scrollPort_.getTopRowIndex();\n this.scrollPort_.scrollRowToTop(i - this.screenSize.height + 1);\n};\n\n/**\n * Scroll the terminal one page down (minus one line) relative to the current\n * position.\n */\nhterm.Terminal.prototype.scrollPageDown = function() {\n var i = this.scrollPort_.getTopRowIndex();\n this.scrollPort_.scrollRowToTop(i + this.screenSize.height - 1);\n};\n\n/**\n * Scroll the terminal one line up relative to the current position.\n */\nhterm.Terminal.prototype.scrollLineUp = function() {\n var i = this.scrollPort_.getTopRowIndex();\n this.scrollPort_.scrollRowToTop(i - 1);\n};\n\n/**\n * Scroll the terminal one line down relative to the current position.\n */\nhterm.Terminal.prototype.scrollLineDown = function() {\n var i = this.scrollPort_.getTopRowIndex();\n this.scrollPort_.scrollRowToTop(i + 1);\n};\n\n/**\n * Clear primary screen, secondary screen, and the scrollback buffer.\n */\nhterm.Terminal.prototype.wipeContents = function() {\n this.scrollbackRows_.length = 0;\n this.scrollPort_.resetCache();\n\n [this.primaryScreen_, this.alternateScreen_].forEach(function(screen) {\n var bottom = screen.getHeight();\n if (bottom > 0) {\n this.renumberRows_(0, bottom);\n this.clearHome(screen);\n }\n }.bind(this));\n\n this.syncCursorPosition_();\n this.scrollPort_.invalidate();\n};\n\n/**\n * Full terminal reset.\n */\nhterm.Terminal.prototype.reset = function() {\n this.clearAllTabStops();\n this.setDefaultTabStops();\n\n this.clearHome(this.primaryScreen_);\n this.primaryScreen_.textAttributes.reset();\n\n this.clearHome(this.alternateScreen_);\n this.alternateScreen_.textAttributes.reset();\n\n this.setCursorBlink(!!this.prefs_.get('cursor-blink'));\n\n this.vt.reset();\n\n this.softReset();\n};\n\n/**\n * Soft terminal reset.\n *\n * Perform a soft reset to the default values listed in\n * http://www.vt100.net/docs/vt510-rm/DECSTR#T5-9\n */\nhterm.Terminal.prototype.softReset = function() {\n // Reset terminal options to their default values.\n this.options_ = new hterm.Options();\n\n // We show the cursor on soft reset but do not alter the blink state.\n this.options_.cursorBlink = !!this.timeouts_.cursorBlink;\n\n // Xterm also resets the color palette on soft reset, even though it doesn't\n // seem to be documented anywhere.\n this.primaryScreen_.textAttributes.resetColorPalette();\n this.alternateScreen_.textAttributes.resetColorPalette();\n\n // The xterm man page explicitly says this will happen on soft reset.\n this.setVTScrollRegion(null, null);\n\n // Xterm also shows the cursor on soft reset, but does not alter the blink\n // state.\n this.setCursorVisible(true);\n};\n\n/**\n * Move the cursor forward to the next tab stop, or to the last column\n * if no more tab stops are set.\n */\nhterm.Terminal.prototype.forwardTabStop = function() {\n var column = this.screen_.cursorPosition.column;\n\n for (var i = 0; i < this.tabStops_.length; i++) {\n if (this.tabStops_[i] > column) {\n this.setCursorColumn(this.tabStops_[i]);\n return;\n }\n }\n\n // xterm does not clear the overflow flag on HT or CHT.\n var overflow = this.screen_.cursorPosition.overflow;\n this.setCursorColumn(this.screenSize.width - 1);\n this.screen_.cursorPosition.overflow = overflow;\n};\n\n/**\n * Move the cursor backward to the previous tab stop, or to the first column\n * if no previous tab stops are set.\n */\nhterm.Terminal.prototype.backwardTabStop = function() {\n var column = this.screen_.cursorPosition.column;\n\n for (var i = this.tabStops_.length - 1; i >= 0; i--) {\n if (this.tabStops_[i] < column) {\n this.setCursorColumn(this.tabStops_[i]);\n return;\n }\n }\n\n this.setCursorColumn(1);\n};\n\n/**\n * Set a tab stop at the given column.\n *\n * @param {integer} column Zero based column.\n */\nhterm.Terminal.prototype.setTabStop = function(column) {\n for (var i = this.tabStops_.length - 1; i >= 0; i--) {\n if (this.tabStops_[i] == column)\n return;\n\n if (this.tabStops_[i] < column) {\n this.tabStops_.splice(i + 1, 0, column);\n return;\n }\n }\n\n this.tabStops_.splice(0, 0, column);\n};\n\n/**\n * Clear the tab stop at the current cursor position.\n *\n * No effect if there is no tab stop at the current cursor position.\n */\nhterm.Terminal.prototype.clearTabStopAtCursor = function() {\n var column = this.screen_.cursorPosition.column;\n\n var i = this.tabStops_.indexOf(column);\n if (i == -1)\n return;\n\n this.tabStops_.splice(i, 1);\n};\n\n/**\n * Clear all tab stops.\n */\nhterm.Terminal.prototype.clearAllTabStops = function() {\n this.tabStops_.length = 0;\n this.defaultTabStops = false;\n};\n\n/**\n * Set up the default tab stops, starting from a given column.\n *\n * This sets a tabstop every (column % this.tabWidth) column, starting\n * from the specified column, or 0 if no column is provided. It also flags\n * future resizes to set them up.\n *\n * This does not clear the existing tab stops first, use clearAllTabStops\n * for that.\n *\n * @param {integer} opt_start Optional starting zero based starting column, useful\n * for filling out missing tab stops when the terminal is resized.\n */\nhterm.Terminal.prototype.setDefaultTabStops = function(opt_start) {\n var start = opt_start || 0;\n var w = this.tabWidth;\n // Round start up to a default tab stop.\n start = start - 1 - ((start - 1) % w) + w;\n for (var i = start; i < this.screenSize.width; i += w) {\n this.setTabStop(i);\n }\n\n this.defaultTabStops = true;\n};\n\n/**\n * Interpret a sequence of characters.\n *\n * Incomplete escape sequences are buffered until the next call.\n *\n * @param {string} str Sequence of characters to interpret or pass through.\n */\nhterm.Terminal.prototype.interpret = function(str) {\n this.vt.interpret(str);\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * Take over the given DIV for use as the terminal display.\n *\n * @param {HTMLDivElement} div The div to use as the terminal display.\n */\nhterm.Terminal.prototype.decorate = function(div) {\n this.div_ = div;\n\n this.scrollPort_.decorate(div);\n this.scrollPort_.setBackgroundImage(this.prefs_.get('background-image'));\n this.scrollPort_.setBackgroundSize(this.prefs_.get('background-size'));\n this.scrollPort_.setBackgroundPosition(\n this.prefs_.get('background-position'));\n this.scrollPort_.setUserCssUrl(this.prefs_.get('user-css'));\n this.scrollPort_.setUserCssText(this.prefs_.get('user-css-text'));\n\n this.div_.focus = this.focus.bind(this);\n\n this.setFontSize(this.prefs_.get('font-size'));\n this.syncFontFamily();\n\n this.setScrollbarVisible(this.prefs_.get('scrollbar-visible'));\n this.setScrollWheelMoveMultipler(\n this.prefs_.get('scroll-wheel-move-multiplier'));\n\n this.document_ = this.scrollPort_.getDocument();\n\n this.document_.body.oncontextmenu = function() { return false; };\n\n var onMouse = this.onMouse_.bind(this);\n var screenNode = this.scrollPort_.getScreenNode();\n screenNode.addEventListener('mousedown', onMouse);\n screenNode.addEventListener('mouseup', onMouse);\n screenNode.addEventListener('mousemove', onMouse);\n this.scrollPort_.onScrollWheel = onMouse;\n\n screenNode.addEventListener(\n 'focus', this.onFocusChange_.bind(this, true));\n // Listen for mousedown events on the screenNode as in FF the focus\n // events don't bubble.\n screenNode.addEventListener('mousedown', function() {\n setTimeout(this.onFocusChange_.bind(this, true));\n }.bind(this));\n\n screenNode.addEventListener(\n 'blur', this.onFocusChange_.bind(this, false));\n\n var style = this.document_.createElement('style');\n style.textContent =\n ('.cursor-node[focus=\"false\"] {' +\n ' box-sizing: border-box;' +\n ' background-color: transparent !important;' +\n ' border-width: 2px;' +\n ' border-style: solid;' +\n '}' +\n '.wc-node {' +\n ' display: inline-block;' +\n ' text-align: center;' +\n ' width: calc(var(--hterm-charsize-width) * 2);' +\n ' line-height: var(--hterm-charsize-height);' +\n '}' +\n ':root {' +\n ' --hterm-charsize-width: ' + this.scrollPort_.characterSize.width + 'px;' +\n ' --hterm-charsize-height: ' + this.scrollPort_.characterSize.height + 'px;' +\n ' --hterm-cursor-offset-col: 0;' +\n ' --hterm-cursor-offset-row: 0;' +\n ' --hterm-blink-node-duration: 0.7s;' +\n ' --hterm-mouse-cursor-text: text;' +\n ' --hterm-mouse-cursor-pointer: default;' +\n ' --hterm-mouse-cursor-style: var(--hterm-mouse-cursor-text);' +\n '}' +\n '@keyframes blink {' +\n ' from { opacity: 1.0; }' +\n ' to { opacity: 0.0; }' +\n '}' +\n '.blink-node {' +\n ' animation-name: blink;' +\n ' animation-duration: var(--hterm-blink-node-duration);' +\n ' animation-iteration-count: infinite;' +\n ' animation-timing-function: ease-in-out;' +\n ' animation-direction: alternate;' +\n '}');\n this.document_.head.appendChild(style);\n\n this.cursorNode_ = this.document_.createElement('div');\n this.cursorNode_.id = 'hterm:terminal-cursor';\n this.cursorNode_.className = 'cursor-node';\n this.cursorNode_.style.cssText =\n ('position: absolute;' +\n 'left: calc(var(--hterm-charsize-width) * var(--hterm-cursor-offset-col));' +\n 'top: calc(var(--hterm-charsize-height) * var(--hterm-cursor-offset-row));' +\n 'display: block;' +\n 'width: var(--hterm-charsize-width);' +\n 'height: var(--hterm-charsize-height);' +\n '-webkit-transition: opacity, background-color 100ms linear;' +\n '-moz-transition: opacity, background-color 100ms linear;');\n\n this.setCursorColor(this.prefs_.get('cursor-color'));\n this.setCursorBlink(!!this.prefs_.get('cursor-blink'));\n this.restyleCursor_();\n\n this.document_.body.appendChild(this.cursorNode_);\n\n // When 'enableMouseDragScroll' is off we reposition this element directly\n // under the mouse cursor after a click. This makes Chrome associate\n // subsequent mousemove events with the scroll-blocker. Since the\n // scroll-blocker is a peer (not a child) of the scrollport, the mousemove\n // events do not cause the scrollport to scroll.\n //\n // It's a hack, but it's the cleanest way I could find.\n this.scrollBlockerNode_ = this.document_.createElement('div');\n this.scrollBlockerNode_.id = 'hterm:mouse-drag-scroll-blocker';\n this.scrollBlockerNode_.style.cssText =\n ('position: absolute;' +\n 'top: -99px;' +\n 'display: block;' +\n 'width: 10px;' +\n 'height: 10px;');\n this.document_.body.appendChild(this.scrollBlockerNode_);\n\n this.scrollPort_.onScrollWheel = onMouse;\n ['mousedown', 'mouseup', 'mousemove', 'click', 'dblclick',\n ].forEach(function(event) {\n this.scrollBlockerNode_.addEventListener(event, onMouse);\n this.cursorNode_.addEventListener(event, onMouse);\n this.document_.addEventListener(event, onMouse);\n }.bind(this));\n\n this.cursorNode_.addEventListener('mousedown', function() {\n setTimeout(this.focus.bind(this));\n }.bind(this));\n\n this.setReverseVideo(false);\n\n this.scrollPort_.focus();\n this.scrollPort_.scheduleRedraw();\n};\n\n/**\n * Return the HTML document that contains the terminal DOM nodes.\n *\n * @return {HTMLDocument}\n */\nhterm.Terminal.prototype.getDocument = function() {\n return this.document_;\n};\n\n/**\n * Focus the terminal.\n */\nhterm.Terminal.prototype.focus = function() {\n this.scrollPort_.focus();\n};\n\n/**\n * Return the HTML Element for a given row index.\n *\n * This is a method from the RowProvider interface. The ScrollPort uses\n * it to fetch rows on demand as they are scrolled into view.\n *\n * TODO(rginda): Consider saving scrollback rows as (HTML source, text content)\n * pairs to conserve memory.\n *\n * @param {integer} index The zero-based row index, measured relative to the\n * start of the scrollback buffer. On-screen rows will always have the\n * largest indices.\n * @return {HTMLElement} The 'x-row' element containing for the requested row.\n */\nhterm.Terminal.prototype.getRowNode = function(index) {\n if (index < this.scrollbackRows_.length)\n return this.scrollbackRows_[index];\n\n var screenIndex = index - this.scrollbackRows_.length;\n return this.screen_.rowsArray[screenIndex];\n};\n\n/**\n * Return the text content for a given range of rows.\n *\n * This is a method from the RowProvider interface. The ScrollPort uses\n * it to fetch text content on demand when the user attempts to copy their\n * selection to the clipboard.\n *\n * @param {integer} start The zero-based row index to start from, measured\n * relative to the start of the scrollback buffer. On-screen rows will\n * always have the largest indices.\n * @param {integer} end The zero-based row index to end on, measured\n * relative to the start of the scrollback buffer.\n * @return {string} A single string containing the text value of the range of\n * rows. Lines will be newline delimited, with no trailing newline.\n */\nhterm.Terminal.prototype.getRowsText = function(start, end) {\n var ary = [];\n for (var i = start; i < end; i++) {\n var node = this.getRowNode(i);\n ary.push(node.textContent);\n if (i < end - 1 && !node.getAttribute('line-overflow'))\n ary.push('\\n');\n }\n\n return ary.join('');\n};\n\n/**\n * Return the text content for a given row.\n *\n * This is a method from the RowProvider interface. The ScrollPort uses\n * it to fetch text content on demand when the user attempts to copy their\n * selection to the clipboard.\n *\n * @param {integer} index The zero-based row index to return, measured\n * relative to the start of the scrollback buffer. On-screen rows will\n * always have the largest indices.\n * @return {string} A string containing the text value of the selected row.\n */\nhterm.Terminal.prototype.getRowText = function(index) {\n var node = this.getRowNode(index);\n return node.textContent;\n};\n\n/**\n * Return the total number of rows in the addressable screen and in the\n * scrollback buffer of this terminal.\n *\n * This is a method from the RowProvider interface. The ScrollPort uses\n * it to compute the size of the scrollbar.\n *\n * @return {integer} The number of rows in this terminal.\n */\nhterm.Terminal.prototype.getRowCount = function() {\n return this.scrollbackRows_.length + this.screen_.rowsArray.length;\n};\n\n/**\n * Create DOM nodes for new rows and append them to the end of the terminal.\n *\n * This is the only correct way to add a new DOM node for a row. Notice that\n * the new row is appended to the bottom of the list of rows, and does not\n * require renumbering (of the rowIndex property) of previous rows.\n *\n * If you think you want a new blank row somewhere in the middle of the\n * terminal, look into moveRows_().\n *\n * This method does not pay attention to vtScrollTop/Bottom, since you should\n * be using moveRows() in cases where they would matter.\n *\n * The cursor will be positioned at column 0 of the first inserted line.\n *\n * @param {number} count The number of rows to created.\n */\nhterm.Terminal.prototype.appendRows_ = function(count) {\n var cursorRow = this.screen_.rowsArray.length;\n var offset = this.scrollbackRows_.length + cursorRow;\n for (var i = 0; i < count; i++) {\n var row = this.document_.createElement('x-row');\n row.appendChild(this.document_.createTextNode(''));\n row.rowIndex = offset + i;\n this.screen_.pushRow(row);\n }\n\n var extraRows = this.screen_.rowsArray.length - this.screenSize.height;\n if (extraRows > 0) {\n var ary = this.screen_.shiftRows(extraRows);\n Array.prototype.push.apply(this.scrollbackRows_, ary);\n if (this.scrollPort_.isScrolledEnd)\n this.scheduleScrollDown_();\n }\n\n if (cursorRow >= this.screen_.rowsArray.length)\n cursorRow = this.screen_.rowsArray.length - 1;\n\n this.setAbsoluteCursorPosition(cursorRow, 0);\n};\n\n/**\n * Relocate rows from one part of the addressable screen to another.\n *\n * This is used to recycle rows during VT scrolls (those which are driven\n * by VT commands, rather than by the user manipulating the scrollbar.)\n *\n * In this case, the blank lines scrolled into the scroll region are made of\n * the nodes we scrolled off. These have their rowIndex properties carefully\n * renumbered so as not to confuse the ScrollPort.\n *\n * @param {number} fromIndex The start index.\n * @param {number} count The number of rows to move.\n * @param {number} toIndex The destination index.\n */\nhterm.Terminal.prototype.moveRows_ = function(fromIndex, count, toIndex) {\n var ary = this.screen_.removeRows(fromIndex, count);\n this.screen_.insertRows(toIndex, ary);\n\n var start, end;\n if (fromIndex < toIndex) {\n start = fromIndex;\n end = toIndex + count;\n } else {\n start = toIndex;\n end = fromIndex + count;\n }\n\n this.renumberRows_(start, end);\n this.scrollPort_.scheduleInvalidate();\n};\n\n/**\n * Renumber the rowIndex property of the given range of rows.\n *\n * The start and end indices are relative to the screen, not the scrollback.\n * Rows in the scrollback buffer cannot be renumbered. Since they are not\n * addressable (you can't delete them, scroll them, etc), you should have\n * no need to renumber scrollback rows.\n *\n * @param {number} start The start index.\n * @param {number} end The end index.\n * @param {hterm.Screen} opt_screen The screen to renumber.\n */\nhterm.Terminal.prototype.renumberRows_ = function(start, end, opt_screen) {\n var screen = opt_screen || this.screen_;\n\n var offset = this.scrollbackRows_.length;\n for (var i = start; i < end; i++) {\n screen.rowsArray[i].rowIndex = offset + i;\n }\n};\n\n/**\n * Print a string to the terminal.\n *\n * This respects the current insert and wraparound modes. It will add new lines\n * to the end of the terminal, scrolling off the top into the scrollback buffer\n * if necessary.\n *\n * The string is *not* parsed for escape codes. Use the interpret() method if\n * that's what you're after.\n *\n * @param{string} str The string to print.\n */\nhterm.Terminal.prototype.print = function(str) {\n var startOffset = 0;\n\n var strWidth = lib.wc.strWidth(str);\n\n while (startOffset < strWidth) {\n if (this.options_.wraparound && this.screen_.cursorPosition.overflow) {\n this.screen_.commitLineOverflow();\n this.newLine();\n }\n\n var count = strWidth - startOffset;\n var didOverflow = false;\n var substr;\n\n if (this.screen_.cursorPosition.column + count >= this.screenSize.width) {\n didOverflow = true;\n count = this.screenSize.width - this.screen_.cursorPosition.column;\n }\n\n if (didOverflow && !this.options_.wraparound) {\n // If the string overflowed the line but wraparound is off, then the\n // last printed character should be the last of the string.\n // TODO: This will add to our problems with multibyte UTF-16 characters.\n substr = lib.wc.substr(str, startOffset, count - 1) +\n lib.wc.substr(str, strWidth - 1);\n count = strWidth;\n } else {\n substr = lib.wc.substr(str, startOffset, count);\n }\n\n var tokens = hterm.TextAttributes.splitWidecharString(substr);\n for (var i = 0; i < tokens.length; i++) {\n this.screen_.textAttributes.wcNode = tokens[i].wcNode;\n this.screen_.textAttributes.asciiNode = tokens[i].asciiNode;\n\n if (this.options_.insertMode) {\n this.screen_.insertString(tokens[i].str);\n } else {\n this.screen_.overwriteString(tokens[i].str);\n }\n this.screen_.textAttributes.wcNode = false;\n this.screen_.textAttributes.asciiNode = true;\n }\n\n this.screen_.maybeClipCurrentRow();\n startOffset += count;\n }\n\n this.scheduleSyncCursorPosition_();\n\n if (this.scrollOnOutput_)\n this.scrollPort_.scrollRowToBottom(this.getRowCount());\n};\n\n/**\n * Set the VT scroll region.\n *\n * This also resets the cursor position to the absolute (0, 0) position, since\n * that's what xterm appears to do.\n *\n * Setting the scroll region to the full height of the terminal will clear\n * the scroll region. This is *NOT* what most terminals do. We're explicitly\n * going \"off-spec\" here because it makes `screen` and `tmux` overflow into the\n * local scrollback buffer, which means the scrollbars and shift-pgup/pgdn\n * continue to work as most users would expect.\n *\n * @param {integer} scrollTop The zero-based top of the scroll region.\n * @param {integer} scrollBottom The zero-based bottom of the scroll region,\n * inclusive.\n */\nhterm.Terminal.prototype.setVTScrollRegion = function(scrollTop, scrollBottom) {\n if (scrollTop == 0 && scrollBottom == this.screenSize.height - 1) {\n this.vtScrollTop_ = null;\n this.vtScrollBottom_ = null;\n } else {\n this.vtScrollTop_ = scrollTop;\n this.vtScrollBottom_ = scrollBottom;\n }\n};\n\n/**\n * Return the top row index according to the VT.\n *\n * This will return 0 unless the terminal has been told to restrict scrolling\n * to some lower row. It is used for some VT cursor positioning and scrolling\n * commands.\n *\n * @return {integer} The topmost row in the terminal's scroll region.\n */\nhterm.Terminal.prototype.getVTScrollTop = function() {\n if (this.vtScrollTop_ != null)\n return this.vtScrollTop_;\n\n return 0;\n};\n\n/**\n * Return the bottom row index according to the VT.\n *\n * This will return the height of the terminal unless the it has been told to\n * restrict scrolling to some higher row. It is used for some VT cursor\n * positioning and scrolling commands.\n *\n * @return {integer} The bottom most row in the terminal's scroll region.\n */\nhterm.Terminal.prototype.getVTScrollBottom = function() {\n if (this.vtScrollBottom_ != null)\n return this.vtScrollBottom_;\n\n return this.screenSize.height - 1;\n}\n\n/**\n * Process a '\\n' character.\n *\n * If the cursor is on the final row of the terminal this will append a new\n * blank row to the screen and scroll the topmost row into the scrollback\n * buffer.\n *\n * Otherwise, this moves the cursor to column zero of the next row.\n */\nhterm.Terminal.prototype.newLine = function() {\n var cursorAtEndOfScreen = (this.screen_.cursorPosition.row ==\n this.screen_.rowsArray.length - 1);\n\n if (this.vtScrollBottom_ != null) {\n // A VT Scroll region is active, we never append new rows.\n if (this.screen_.cursorPosition.row == this.vtScrollBottom_) {\n // We're at the end of the VT Scroll Region, perform a VT scroll.\n this.vtScrollUp(1);\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row, 0);\n } else if (cursorAtEndOfScreen) {\n // We're at the end of the screen, the only thing to do is put the\n // cursor to column 0.\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row, 0);\n } else {\n // Anywhere else, advance the cursor row, and reset the column.\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row + 1, 0);\n }\n } else if (cursorAtEndOfScreen) {\n // We're at the end of the screen. Append a new row to the terminal,\n // shifting the top row into the scrollback.\n this.appendRows_(1);\n } else {\n // Anywhere else in the screen just moves the cursor.\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row + 1, 0);\n }\n};\n\n/**\n * Like newLine(), except maintain the cursor column.\n */\nhterm.Terminal.prototype.lineFeed = function() {\n var column = this.screen_.cursorPosition.column;\n this.newLine();\n this.setCursorColumn(column);\n};\n\n/**\n * If autoCarriageReturn is set then newLine(), else lineFeed().\n */\nhterm.Terminal.prototype.formFeed = function() {\n if (this.options_.autoCarriageReturn) {\n this.newLine();\n } else {\n this.lineFeed();\n }\n};\n\n/**\n * Move the cursor up one row, possibly inserting a blank line.\n *\n * The cursor column is not changed.\n */\nhterm.Terminal.prototype.reverseLineFeed = function() {\n var scrollTop = this.getVTScrollTop();\n var currentRow = this.screen_.cursorPosition.row;\n\n if (currentRow == scrollTop) {\n this.insertLines(1);\n } else {\n this.setAbsoluteCursorRow(currentRow - 1);\n }\n};\n\n/**\n * Replace all characters to the left of the current cursor with the space\n * character.\n *\n * TODO(rginda): This should probably *remove* the characters (not just replace\n * with a space) if there are no characters at or beyond the current cursor\n * position.\n */\nhterm.Terminal.prototype.eraseToLeft = function() {\n var cursor = this.saveCursor();\n this.setCursorColumn(0);\n this.screen_.overwriteString(lib.f.getWhitespace(cursor.column + 1));\n this.restoreCursor(cursor);\n};\n\n/**\n * Erase a given number of characters to the right of the cursor.\n *\n * The cursor position is unchanged.\n *\n * If the current background color is not the default background color this\n * will insert spaces rather than delete. This is unfortunate because the\n * trailing space will affect text selection, but it's difficult to come up\n * with a way to style empty space that wouldn't trip up the hterm.Screen\n * code.\n *\n * eraseToRight is ignored in the presence of a cursor overflow. This deviates\n * from xterm, but agrees with gnome-terminal and konsole, xfce4-terminal. See\n * crbug.com/232390 for details.\n *\n * @param {number} opt_count The number of characters to erase.\n */\nhterm.Terminal.prototype.eraseToRight = function(opt_count) {\n if (this.screen_.cursorPosition.overflow)\n return;\n\n var maxCount = this.screenSize.width - this.screen_.cursorPosition.column;\n var count = opt_count ? Math.min(opt_count, maxCount) : maxCount;\n\n if (this.screen_.textAttributes.background ===\n this.screen_.textAttributes.DEFAULT_COLOR) {\n var cursorRow = this.screen_.rowsArray[this.screen_.cursorPosition.row];\n if (hterm.TextAttributes.nodeWidth(cursorRow) <=\n this.screen_.cursorPosition.column + count) {\n this.screen_.deleteChars(count);\n this.clearCursorOverflow();\n return;\n }\n }\n\n var cursor = this.saveCursor();\n this.screen_.overwriteString(lib.f.getWhitespace(count));\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Erase the current line.\n *\n * The cursor position is unchanged.\n */\nhterm.Terminal.prototype.eraseLine = function() {\n var cursor = this.saveCursor();\n this.screen_.clearCursorRow();\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Erase all characters from the start of the screen to the current cursor\n * position, regardless of scroll region.\n *\n * The cursor position is unchanged.\n */\nhterm.Terminal.prototype.eraseAbove = function() {\n var cursor = this.saveCursor();\n\n this.eraseToLeft();\n\n for (var i = 0; i < cursor.row; i++) {\n this.setAbsoluteCursorPosition(i, 0);\n this.screen_.clearCursorRow();\n }\n\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Erase all characters from the current cursor position to the end of the\n * screen, regardless of scroll region.\n *\n * The cursor position is unchanged.\n */\nhterm.Terminal.prototype.eraseBelow = function() {\n var cursor = this.saveCursor();\n\n this.eraseToRight();\n\n var bottom = this.screenSize.height - 1;\n for (var i = cursor.row + 1; i <= bottom; i++) {\n this.setAbsoluteCursorPosition(i, 0);\n this.screen_.clearCursorRow();\n }\n\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Fill the terminal with a given character.\n *\n * This methods does not respect the VT scroll region.\n *\n * @param {string} ch The character to use for the fill.\n */\nhterm.Terminal.prototype.fill = function(ch) {\n var cursor = this.saveCursor();\n\n this.setAbsoluteCursorPosition(0, 0);\n for (var row = 0; row < this.screenSize.height; row++) {\n for (var col = 0; col < this.screenSize.width; col++) {\n this.setAbsoluteCursorPosition(row, col);\n this.screen_.overwriteString(ch);\n }\n }\n\n this.restoreCursor(cursor);\n};\n\n/**\n * Erase the entire display and leave the cursor at (0, 0).\n *\n * This does not respect the scroll region.\n *\n * @param {hterm.Screen} opt_screen Optional screen to operate on. Defaults\n * to the current screen.\n */\nhterm.Terminal.prototype.clearHome = function(opt_screen) {\n var screen = opt_screen || this.screen_;\n var bottom = screen.getHeight();\n\n if (bottom == 0) {\n // Empty screen, nothing to do.\n return;\n }\n\n for (var i = 0; i < bottom; i++) {\n screen.setCursorPosition(i, 0);\n screen.clearCursorRow();\n }\n\n screen.setCursorPosition(0, 0);\n};\n\n/**\n * Erase the entire display without changing the cursor position.\n *\n * The cursor position is unchanged. This does not respect the scroll\n * region.\n *\n * @param {hterm.Screen} opt_screen Optional screen to operate on. Defaults\n * to the current screen.\n */\nhterm.Terminal.prototype.clear = function(opt_screen) {\n var screen = opt_screen || this.screen_;\n var cursor = screen.cursorPosition.clone();\n this.clearHome(screen);\n screen.setCursorPosition(cursor.row, cursor.column);\n};\n\n/**\n * VT command to insert lines at the current cursor row.\n *\n * This respects the current scroll region. Rows pushed off the bottom are\n * lost (they won't show up in the scrollback buffer).\n *\n * @param {integer} count The number of lines to insert.\n */\nhterm.Terminal.prototype.insertLines = function(count) {\n var cursorRow = this.screen_.cursorPosition.row;\n\n var bottom = this.getVTScrollBottom();\n count = Math.min(count, bottom - cursorRow);\n\n // The moveCount is the number of rows we need to relocate to make room for\n // the new row(s). The count is the distance to move them.\n var moveCount = bottom - cursorRow - count + 1;\n if (moveCount)\n this.moveRows_(cursorRow, moveCount, cursorRow + count);\n\n for (var i = count - 1; i >= 0; i--) {\n this.setAbsoluteCursorPosition(cursorRow + i, 0);\n this.screen_.clearCursorRow();\n }\n};\n\n/**\n * VT command to delete lines at the current cursor row.\n *\n * New rows are added to the bottom of scroll region to take their place. New\n * rows are strictly there to take up space and have no content or style.\n *\n * @param {number} count The number of lines to delete.\n */\nhterm.Terminal.prototype.deleteLines = function(count) {\n var cursor = this.saveCursor();\n\n var top = cursor.row;\n var bottom = this.getVTScrollBottom();\n\n var maxCount = bottom - top + 1;\n count = Math.min(count, maxCount);\n\n var moveStart = bottom - count + 1;\n if (count != maxCount)\n this.moveRows_(top, count, moveStart);\n\n for (var i = 0; i < count; i++) {\n this.setAbsoluteCursorPosition(moveStart + i, 0);\n this.screen_.clearCursorRow();\n }\n\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Inserts the given number of spaces at the current cursor position.\n *\n * The cursor position is not changed.\n *\n * @param {number} count The number of spaces to insert.\n */\nhterm.Terminal.prototype.insertSpace = function(count) {\n var cursor = this.saveCursor();\n\n var ws = lib.f.getWhitespace(count || 1);\n this.screen_.insertString(ws);\n this.screen_.maybeClipCurrentRow();\n\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Forward-delete the specified number of characters starting at the cursor\n * position.\n *\n * @param {integer} count The number of characters to delete.\n */\nhterm.Terminal.prototype.deleteChars = function(count) {\n var deleted = this.screen_.deleteChars(count);\n if (deleted && !this.screen_.textAttributes.isDefault()) {\n var cursor = this.saveCursor();\n this.setCursorColumn(this.screenSize.width - deleted);\n this.screen_.insertString(lib.f.getWhitespace(deleted));\n this.restoreCursor(cursor);\n }\n\n this.clearCursorOverflow();\n};\n\n/**\n * Shift rows in the scroll region upwards by a given number of lines.\n *\n * New rows are inserted at the bottom of the scroll region to fill the\n * vacated rows. The new rows not filled out with the current text attributes.\n *\n * This function does not affect the scrollback rows at all. Rows shifted\n * off the top are lost.\n *\n * The cursor position is not altered.\n *\n * @param {integer} count The number of rows to scroll.\n */\nhterm.Terminal.prototype.vtScrollUp = function(count) {\n var cursor = this.saveCursor();\n\n this.setAbsoluteCursorRow(this.getVTScrollTop());\n this.deleteLines(count);\n\n this.restoreCursor(cursor);\n};\n\n/**\n * Shift rows below the cursor down by a given number of lines.\n *\n * This function respects the current scroll region.\n *\n * New rows are inserted at the top of the scroll region to fill the\n * vacated rows. The new rows not filled out with the current text attributes.\n *\n * This function does not affect the scrollback rows at all. Rows shifted\n * off the bottom are lost.\n *\n * @param {integer} count The number of rows to scroll.\n */\nhterm.Terminal.prototype.vtScrollDown = function(opt_count) {\n var cursor = this.saveCursor();\n\n this.setAbsoluteCursorPosition(this.getVTScrollTop(), 0);\n this.insertLines(opt_count);\n\n this.restoreCursor(cursor);\n};\n\n\n/**\n * Set the cursor position.\n *\n * The cursor row is relative to the scroll region if the terminal has\n * 'origin mode' enabled, or relative to the addressable screen otherwise.\n *\n * @param {integer} row The new zero-based cursor row.\n * @param {integer} row The new zero-based cursor column.\n */\nhterm.Terminal.prototype.setCursorPosition = function(row, column) {\n if (this.options_.originMode) {\n this.setRelativeCursorPosition(row, column);\n } else {\n this.setAbsoluteCursorPosition(row, column);\n }\n};\n\n/**\n * Move the cursor relative to its current position.\n *\n * @param {number} row\n * @param {number} column\n */\nhterm.Terminal.prototype.setRelativeCursorPosition = function(row, column) {\n var scrollTop = this.getVTScrollTop();\n row = lib.f.clamp(row + scrollTop, scrollTop, this.getVTScrollBottom());\n column = lib.f.clamp(column, 0, this.screenSize.width - 1);\n this.screen_.setCursorPosition(row, column);\n};\n\n/**\n * Move the cursor to the specified position.\n *\n * @param {number} row\n * @param {number} column\n */\nhterm.Terminal.prototype.setAbsoluteCursorPosition = function(row, column) {\n row = lib.f.clamp(row, 0, this.screenSize.height - 1);\n column = lib.f.clamp(column, 0, this.screenSize.width - 1);\n this.screen_.setCursorPosition(row, column);\n};\n\n/**\n * Set the cursor column.\n *\n * @param {integer} column The new zero-based cursor column.\n */\nhterm.Terminal.prototype.setCursorColumn = function(column) {\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row, column);\n};\n\n/**\n * Return the cursor column.\n *\n * @return {integer} The zero-based cursor column.\n */\nhterm.Terminal.prototype.getCursorColumn = function() {\n return this.screen_.cursorPosition.column;\n};\n\n/**\n * Set the cursor row.\n *\n * The cursor row is relative to the scroll region if the terminal has\n * 'origin mode' enabled, or relative to the addressable screen otherwise.\n *\n * @param {integer} row The new cursor row.\n */\nhterm.Terminal.prototype.setAbsoluteCursorRow = function(row) {\n this.setAbsoluteCursorPosition(row, this.screen_.cursorPosition.column);\n};\n\n/**\n * Return the cursor row.\n *\n * @return {integer} The zero-based cursor row.\n */\nhterm.Terminal.prototype.getCursorRow = function() {\n return this.screen_.cursorPosition.row;\n};\n\n/**\n * Request that the ScrollPort redraw itself soon.\n *\n * The redraw will happen asynchronously, soon after the call stack winds down.\n * Multiple calls will be coalesced into a single redraw.\n */\nhterm.Terminal.prototype.scheduleRedraw_ = function() {\n if (this.timeouts_.redraw)\n return;\n\n var self = this;\n this.timeouts_.redraw = setTimeout(function() {\n delete self.timeouts_.redraw;\n self.scrollPort_.redraw_();\n }, 0);\n};\n\n/**\n * Request that the ScrollPort be scrolled to the bottom.\n *\n * The scroll will happen asynchronously, soon after the call stack winds down.\n * Multiple calls will be coalesced into a single scroll.\n *\n * This affects the scrollbar position of the ScrollPort, and has nothing to\n * do with the VT scroll commands.\n */\nhterm.Terminal.prototype.scheduleScrollDown_ = function() {\n if (this.timeouts_.scrollDown)\n return;\n\n var self = this;\n this.timeouts_.scrollDown = setTimeout(function() {\n delete self.timeouts_.scrollDown;\n self.scrollPort_.scrollRowToBottom(self.getRowCount());\n }, 10);\n};\n\n/**\n * Move the cursor up a specified number of rows.\n *\n * @param {integer} count The number of rows to move the cursor.\n */\nhterm.Terminal.prototype.cursorUp = function(count) {\n return this.cursorDown(-(count || 1));\n};\n\n/**\n * Move the cursor down a specified number of rows.\n *\n * @param {integer} count The number of rows to move the cursor.\n */\nhterm.Terminal.prototype.cursorDown = function(count) {\n count = count || 1;\n var minHeight = (this.options_.originMode ? this.getVTScrollTop() : 0);\n var maxHeight = (this.options_.originMode ? this.getVTScrollBottom() :\n this.screenSize.height - 1);\n\n var row = lib.f.clamp(this.screen_.cursorPosition.row + count,\n minHeight, maxHeight);\n this.setAbsoluteCursorRow(row);\n};\n\n/**\n * Move the cursor left a specified number of columns.\n *\n * If reverse wraparound mode is enabled and the previous row wrapped into\n * the current row then we back up through the wraparound as well.\n *\n * @param {integer} count The number of columns to move the cursor.\n */\nhterm.Terminal.prototype.cursorLeft = function(count) {\n count = count || 1;\n\n if (count < 1)\n return;\n\n var currentColumn = this.screen_.cursorPosition.column;\n if (this.options_.reverseWraparound) {\n if (this.screen_.cursorPosition.overflow) {\n // If this cursor is in the right margin, consume one count to get it\n // back to the last column. This only applies when we're in reverse\n // wraparound mode.\n count--;\n this.clearCursorOverflow();\n\n if (!count)\n return;\n }\n\n var newRow = this.screen_.cursorPosition.row;\n var newColumn = currentColumn - count;\n if (newColumn < 0) {\n newRow = newRow - Math.floor(count / this.screenSize.width) - 1;\n if (newRow < 0) {\n // xterm also wraps from row 0 to the last row.\n newRow = this.screenSize.height + newRow % this.screenSize.height;\n }\n newColumn = this.screenSize.width + newColumn % this.screenSize.width;\n }\n\n this.setCursorPosition(Math.max(newRow, 0), newColumn);\n\n } else {\n var newColumn = Math.max(currentColumn - count, 0);\n this.setCursorColumn(newColumn);\n }\n};\n\n/**\n * Move the cursor right a specified number of columns.\n *\n * @param {integer} count The number of columns to move the cursor.\n */\nhterm.Terminal.prototype.cursorRight = function(count) {\n count = count || 1;\n\n if (count < 1)\n return;\n\n var column = lib.f.clamp(this.screen_.cursorPosition.column + count,\n 0, this.screenSize.width - 1);\n this.setCursorColumn(column);\n};\n\n/**\n * Reverse the foreground and background colors of the terminal.\n *\n * This only affects text that was drawn with no attributes.\n *\n * TODO(rginda): Test xterm to see if reverse is respected for text that has\n * been drawn with attributes that happen to coincide with the default\n * 'no-attribute' colors. My guess is probably not.\n *\n * @param {boolean} state The state to set.\n */\nhterm.Terminal.prototype.setReverseVideo = function(state) {\n this.options_.reverseVideo = state;\n if (state) {\n this.scrollPort_.setForegroundColor(this.prefs_.get('background-color'));\n this.scrollPort_.setBackgroundColor(this.prefs_.get('foreground-color'));\n } else {\n this.scrollPort_.setForegroundColor(this.prefs_.get('foreground-color'));\n this.scrollPort_.setBackgroundColor(this.prefs_.get('background-color'));\n }\n};\n\n/**\n * Ring the terminal bell.\n *\n * This will not play the bell audio more than once per second.\n */\nhterm.Terminal.prototype.ringBell = function() {\n this.cursorNode_.style.backgroundColor =\n this.scrollPort_.getForegroundColor();\n\n var self = this;\n setTimeout(function() {\n self.cursorNode_.style.backgroundColor = self.prefs_.get('cursor-color');\n }, 200);\n\n // bellSquelchTimeout_ affects both audio and notification bells.\n if (this.bellSquelchTimeout_)\n return;\n\n if (this.bellAudio_.getAttribute('src')) {\n this.bellAudio_.play();\n this.bellSequelchTimeout_ = setTimeout(function() {\n delete this.bellSquelchTimeout_;\n }.bind(this), 500);\n } else {\n delete this.bellSquelchTimeout_;\n }\n\n if (this.desktopNotificationBell_ && !this.document_.hasFocus()) {\n var n = hterm.notify();\n this.bellNotificationList_.push(n);\n // TODO: Should we try to raise the window here?\n n.onclick = function() { self.closeBellNotifications_(); };\n }\n};\n\n/**\n * Set the origin mode bit.\n *\n * If origin mode is on, certain VT cursor and scrolling commands measure their\n * row parameter relative to the VT scroll region. Otherwise, row 0 corresponds\n * to the top of the addressable screen.\n *\n * Defaults to off.\n *\n * @param {boolean} state True to set origin mode, false to unset.\n */\nhterm.Terminal.prototype.setOriginMode = function(state) {\n this.options_.originMode = state;\n this.setCursorPosition(0, 0);\n};\n\n/**\n * Set the insert mode bit.\n *\n * If insert mode is on, existing text beyond the cursor position will be\n * shifted right to make room for new text. Otherwise, new text overwrites\n * any existing text.\n *\n * Defaults to off.\n *\n * @param {boolean} state True to set insert mode, false to unset.\n */\nhterm.Terminal.prototype.setInsertMode = function(state) {\n this.options_.insertMode = state;\n};\n\n/**\n * Set the auto carriage return bit.\n *\n * If auto carriage return is on then a formfeed character is interpreted\n * as a newline, otherwise it's the same as a linefeed. The difference boils\n * down to whether or not the cursor column is reset.\n *\n * @param {boolean} state The state to set.\n */\nhterm.Terminal.prototype.setAutoCarriageReturn = function(state) {\n this.options_.autoCarriageReturn = state;\n};\n\n/**\n * Set the wraparound mode bit.\n *\n * If wraparound mode is on, certain VT commands will allow the cursor to wrap\n * to the start of the following row. Otherwise, the cursor is clamped to the\n * end of the screen and attempts to write past it are ignored.\n *\n * Defaults to on.\n *\n * @param {boolean} state True to set wraparound mode, false to unset.\n */\nhterm.Terminal.prototype.setWraparound = function(state) {\n this.options_.wraparound = state;\n};\n\n/**\n * Set the reverse-wraparound mode bit.\n *\n * If wraparound mode is off, certain VT commands will allow the cursor to wrap\n * to the end of the previous row. Otherwise, the cursor is clamped to column\n * 0.\n *\n * Defaults to off.\n *\n * @param {boolean} state True to set reverse-wraparound mode, false to unset.\n */\nhterm.Terminal.prototype.setReverseWraparound = function(state) {\n this.options_.reverseWraparound = state;\n};\n\n/**\n * Selects between the primary and alternate screens.\n *\n * If alternate mode is on, the alternate screen is active. Otherwise the\n * primary screen is active.\n *\n * Swapping screens has no effect on the scrollback buffer.\n *\n * Each screen maintains its own cursor position.\n *\n * Defaults to off.\n *\n * @param {boolean} state True to set alternate mode, false to unset.\n */\nhterm.Terminal.prototype.setAlternateMode = function(state) {\n var cursor = this.saveCursor();\n this.screen_ = state ? this.alternateScreen_ : this.primaryScreen_;\n\n if (this.screen_.rowsArray.length &&\n this.screen_.rowsArray[0].rowIndex != this.scrollbackRows_.length) {\n // If the screen changed sizes while we were away, our rowIndexes may\n // be incorrect.\n var offset = this.scrollbackRows_.length;\n var ary = this.screen_.rowsArray;\n for (var i = 0; i < ary.length; i++) {\n ary[i].rowIndex = offset + i;\n }\n }\n\n this.realizeWidth_(this.screenSize.width);\n this.realizeHeight_(this.screenSize.height);\n this.scrollPort_.syncScrollHeight();\n this.scrollPort_.invalidate();\n\n this.restoreCursor(cursor);\n this.scrollPort_.resize();\n};\n\n/**\n * Set the cursor-blink mode bit.\n *\n * If cursor-blink is on, the cursor will blink when it is visible. Otherwise\n * a visible cursor does not blink.\n *\n * You should make sure to turn blinking off if you're going to dispose of a\n * terminal, otherwise you'll leak a timeout.\n *\n * Defaults to on.\n *\n * @param {boolean} state True to set cursor-blink mode, false to unset.\n */\nhterm.Terminal.prototype.setCursorBlink = function(state) {\n this.options_.cursorBlink = state;\n\n if (!state && this.timeouts_.cursorBlink) {\n clearTimeout(this.timeouts_.cursorBlink);\n delete this.timeouts_.cursorBlink;\n }\n\n if (this.options_.cursorVisible)\n this.setCursorVisible(true);\n};\n\n/**\n * Set the cursor-visible mode bit.\n *\n * If cursor-visible is on, the cursor will be visible. Otherwise it will not.\n *\n * Defaults to on.\n *\n * @param {boolean} state True to set cursor-visible mode, false to unset.\n */\nhterm.Terminal.prototype.setCursorVisible = function(state) {\n this.options_.cursorVisible = state;\n\n if (!state) {\n if (this.timeouts_.cursorBlink) {\n clearTimeout(this.timeouts_.cursorBlink);\n delete this.timeouts_.cursorBlink;\n }\n this.cursorNode_.style.opacity = '0';\n return;\n }\n\n this.syncCursorPosition_();\n\n this.cursorNode_.style.opacity = '1';\n\n if (this.options_.cursorBlink) {\n if (this.timeouts_.cursorBlink)\n return;\n\n this.onCursorBlink_();\n } else {\n if (this.timeouts_.cursorBlink) {\n clearTimeout(this.timeouts_.cursorBlink);\n delete this.timeouts_.cursorBlink;\n }\n }\n};\n\n/**\n * Synchronizes the visible cursor and document selection with the current\n * cursor coordinates.\n */\nhterm.Terminal.prototype.syncCursorPosition_ = function() {\n var topRowIndex = this.scrollPort_.getTopRowIndex();\n var bottomRowIndex = this.scrollPort_.getBottomRowIndex(topRowIndex);\n var cursorRowIndex = this.scrollbackRows_.length +\n this.screen_.cursorPosition.row;\n\n if (cursorRowIndex > bottomRowIndex) {\n // Cursor is scrolled off screen, move it outside of the visible area.\n this.setCssVar('cursor-offset-row', '-1');\n return;\n }\n\n if (this.options_.cursorVisible &&\n this.cursorNode_.style.display == 'none') {\n // Re-display the terminal cursor if it was hidden by the mouse cursor.\n this.cursorNode_.style.display = '';\n }\n\n // Position the cursor using CSS variable math. If we do the math in JS,\n // the float math will end up being more precise than the CSS which will\n // cause the cursor tracking to be off.\n this.setCssVar(\n 'cursor-offset-row',\n `${cursorRowIndex - topRowIndex} + ` +\n `${this.scrollPort_.visibleRowTopMargin}px`);\n this.setCssVar('cursor-offset-col', this.screen_.cursorPosition.column);\n\n this.cursorNode_.setAttribute('title',\n '(' + this.screen_.cursorPosition.column +\n ', ' + this.screen_.cursorPosition.row +\n ')');\n\n // Update the caret for a11y purposes.\n var selection = this.document_.getSelection();\n if (selection && selection.isCollapsed)\n this.screen_.syncSelectionCaret(selection);\n};\n\n/**\n * Adjusts the style of this.cursorNode_ according to the current cursor shape\n * and character cell dimensions.\n */\nhterm.Terminal.prototype.restyleCursor_ = function() {\n var shape = this.cursorShape_;\n\n if (this.cursorNode_.getAttribute('focus') == 'false') {\n // Always show a block cursor when unfocused.\n shape = hterm.Terminal.cursorShape.BLOCK;\n }\n\n var style = this.cursorNode_.style;\n\n switch (shape) {\n case hterm.Terminal.cursorShape.BEAM:\n style.height = 'var(--hterm-charsize-height)';\n style.backgroundColor = 'transparent';\n style.borderBottomStyle = null;\n style.borderLeftStyle = 'solid';\n break;\n\n case hterm.Terminal.cursorShape.UNDERLINE:\n style.height = this.scrollPort_.characterSize.baseline + 'px';\n style.backgroundColor = 'transparent';\n style.borderBottomStyle = 'solid';\n // correct the size to put it exactly at the baseline\n style.borderLeftStyle = null;\n break;\n\n default:\n style.height = 'var(--hterm-charsize-height)';\n style.backgroundColor = this.cursorColor_;\n style.borderBottomStyle = null;\n style.borderLeftStyle = null;\n break;\n }\n};\n\n/**\n * Synchronizes the visible cursor with the current cursor coordinates.\n *\n * The sync will happen asynchronously, soon after the call stack winds down.\n * Multiple calls will be coalesced into a single sync.\n */\nhterm.Terminal.prototype.scheduleSyncCursorPosition_ = function() {\n if (this.timeouts_.syncCursor)\n return;\n\n var self = this;\n this.timeouts_.syncCursor = setTimeout(function() {\n self.syncCursorPosition_();\n delete self.timeouts_.syncCursor;\n }, 0);\n};\n\n/**\n * Show or hide the zoom warning.\n *\n * The zoom warning is a message warning the user that their browser zoom must\n * be set to 100% in order for hterm to function properly.\n *\n * @param {boolean} state True to show the message, false to hide it.\n */\nhterm.Terminal.prototype.showZoomWarning_ = function(state) {\n if (!this.zoomWarningNode_) {\n if (!state)\n return;\n\n this.zoomWarningNode_ = this.document_.createElement('div');\n this.zoomWarningNode_.id = 'hterm:zoom-warning';\n this.zoomWarningNode_.style.cssText = (\n 'color: black;' +\n 'background-color: #ff2222;' +\n 'font-size: large;' +\n 'border-radius: 8px;' +\n 'opacity: 0.75;' +\n 'padding: 0.2em 0.5em 0.2em 0.5em;' +\n 'top: 0.5em;' +\n 'right: 1.2em;' +\n 'position: absolute;' +\n '-webkit-text-size-adjust: none;' +\n '-webkit-user-select: none;' +\n '-moz-text-size-adjust: none;' +\n '-moz-user-select: none;');\n\n this.zoomWarningNode_.addEventListener('click', function(e) {\n this.parentNode.removeChild(this);\n });\n }\n\n this.zoomWarningNode_.textContent = lib.MessageManager.replaceReferences(\n hterm.zoomWarningMessage,\n [parseInt(this.scrollPort_.characterSize.zoomFactor * 100)]);\n\n this.zoomWarningNode_.style.fontFamily = this.prefs_.get('font-family');\n\n if (state) {\n if (!this.zoomWarningNode_.parentNode)\n this.div_.parentNode.appendChild(this.zoomWarningNode_);\n } else if (this.zoomWarningNode_.parentNode) {\n this.zoomWarningNode_.parentNode.removeChild(this.zoomWarningNode_);\n }\n};\n\n/**\n * Show the terminal overlay for a given amount of time.\n *\n * The terminal overlay appears in inverse video in a large font, centered\n * over the terminal. You should probably keep the overlay message brief,\n * since it's in a large font and you probably aren't going to check the size\n * of the terminal first.\n *\n * @param {string} msg The text (not HTML) message to display in the overlay.\n * @param {number} opt_timeout The amount of time to wait before fading out\n * the overlay. Defaults to 1.5 seconds. Pass null to have the overlay\n * stay up forever (or until the next overlay).\n */\nhterm.Terminal.prototype.showOverlay = function(msg, opt_timeout) {\n if (!this.overlayNode_) {\n if (!this.div_)\n return;\n\n this.overlayNode_ = this.document_.createElement('div');\n this.overlayNode_.style.cssText = (\n 'border-radius: 15px;' +\n 'font-size: xx-large;' +\n 'opacity: 0.75;' +\n 'padding: 0.2em 0.5em 0.2em 0.5em;' +\n 'position: absolute;' +\n '-webkit-user-select: none;' +\n '-webkit-transition: opacity 180ms ease-in;' +\n '-moz-user-select: none;' +\n '-moz-transition: opacity 180ms ease-in;');\n\n this.overlayNode_.addEventListener('mousedown', function(e) {\n e.preventDefault();\n e.stopPropagation();\n }, true);\n }\n\n this.overlayNode_.style.color = this.prefs_.get('background-color');\n this.overlayNode_.style.backgroundColor = this.prefs_.get('foreground-color');\n this.overlayNode_.style.fontFamily = this.prefs_.get('font-family');\n\n this.overlayNode_.textContent = msg;\n this.overlayNode_.style.opacity = '0.75';\n\n if (!this.overlayNode_.parentNode)\n this.div_.appendChild(this.overlayNode_);\n\n var divSize = hterm.getClientSize(this.div_);\n var overlaySize = hterm.getClientSize(this.overlayNode_);\n\n this.overlayNode_.style.top =\n (divSize.height - overlaySize.height) / 2 + 'px';\n this.overlayNode_.style.left = (divSize.width - overlaySize.width -\n this.scrollPort_.currentScrollbarWidthPx) / 2 + 'px';\n\n var self = this;\n\n if (this.overlayTimeout_)\n clearTimeout(this.overlayTimeout_);\n\n if (opt_timeout === null)\n return;\n\n this.overlayTimeout_ = setTimeout(function() {\n self.overlayNode_.style.opacity = '0';\n self.overlayTimeout_ = setTimeout(function() {\n if (self.overlayNode_.parentNode)\n self.overlayNode_.parentNode.removeChild(self.overlayNode_);\n self.overlayTimeout_ = null;\n self.overlayNode_.style.opacity = '0.75';\n }, 200);\n }, opt_timeout || 1500);\n};\n\n/**\n * Paste from the system clipboard to the terminal.\n */\nhterm.Terminal.prototype.paste = function() {\n return hterm.pasteFromClipboard(this.document_);\n};\n\n/**\n * Copy a string to the system clipboard.\n *\n * Note: If there is a selected range in the terminal, it'll be cleared.\n *\n * @param {string} str The string to copy.\n */\nhterm.Terminal.prototype.copyStringToClipboard = function(str) {\n if (this.prefs_.get('enable-clipboard-notice'))\n setTimeout(this.showOverlay.bind(this, hterm.notifyCopyMessage, 500), 200);\n\n var copySource = this.document_.createElement('pre');\n copySource.id = 'hterm:copy-to-clipboard-source';\n copySource.textContent = str;\n copySource.style.cssText = (\n '-webkit-user-select: text;' +\n '-moz-user-select: text;' +\n 'position: absolute;' +\n 'top: -99px');\n\n this.document_.body.appendChild(copySource);\n\n var selection = this.document_.getSelection();\n var anchorNode = selection.anchorNode;\n var anchorOffset = selection.anchorOffset;\n var focusNode = selection.focusNode;\n var focusOffset = selection.focusOffset;\n\n selection.selectAllChildren(copySource);\n\n hterm.copySelectionToClipboard(this.document_);\n\n // IE doesn't support selection.extend. This means that the selection\n // won't return on IE.\n if (selection.extend) {\n selection.collapse(anchorNode, anchorOffset);\n selection.extend(focusNode, focusOffset);\n }\n\n copySource.parentNode.removeChild(copySource);\n};\n\n/**\n * Returns the selected text, or null if no text is selected.\n *\n * @return {string|null}\n */\nhterm.Terminal.prototype.getSelectionText = function() {\n var selection = this.scrollPort_.selection;\n selection.sync();\n\n if (selection.isCollapsed)\n return null;\n\n\n // Start offset measures from the beginning of the line.\n var startOffset = selection.startOffset;\n var node = selection.startNode;\n\n if (node.nodeName != 'X-ROW') {\n // If the selection doesn't start on an x-row node, then it must be\n // somewhere inside the x-row. Add any characters from previous siblings\n // into the start offset.\n\n if (node.nodeName == '#text' && node.parentNode.nodeName == 'SPAN') {\n // If node is the text node in a styled span, move up to the span node.\n node = node.parentNode;\n }\n\n while (node.previousSibling) {\n node = node.previousSibling;\n startOffset += hterm.TextAttributes.nodeWidth(node);\n }\n }\n\n // End offset measures from the end of the line.\n var endOffset = (hterm.TextAttributes.nodeWidth(selection.endNode) -\n selection.endOffset);\n node = selection.endNode;\n\n if (node.nodeName != 'X-ROW') {\n // If the selection doesn't end on an x-row node, then it must be\n // somewhere inside the x-row. Add any characters from following siblings\n // into the end offset.\n\n if (node.nodeName == '#text' && node.parentNode.nodeName == 'SPAN') {\n // If node is the text node in a styled span, move up to the span node.\n node = node.parentNode;\n }\n\n while (node.nextSibling) {\n node = node.nextSibling;\n endOffset += hterm.TextAttributes.nodeWidth(node);\n }\n }\n\n var rv = this.getRowsText(selection.startRow.rowIndex,\n selection.endRow.rowIndex + 1);\n return lib.wc.substring(rv, startOffset, lib.wc.strWidth(rv) - endOffset);\n};\n\n/**\n * Copy the current selection to the system clipboard, then clear it after a\n * short delay.\n */\nhterm.Terminal.prototype.copySelectionToClipboard = function() {\n var text = this.getSelectionText();\n if (text != null)\n this.copyStringToClipboard(text);\n};\n\nhterm.Terminal.prototype.overlaySize = function() {\n this.showOverlay(this.screenSize.width + 'x' + this.screenSize.height);\n};\n\n/**\n * Invoked by hterm.Terminal.Keyboard when a VT keystroke is detected.\n *\n * @param {string} string The VT string representing the keystroke, in UTF-16.\n */\nhterm.Terminal.prototype.onVTKeystroke = function(string) {\n if (this.scrollOnKeystroke_)\n this.scrollPort_.scrollRowToBottom(this.getRowCount());\n\n this.io.onVTKeystroke(this.keyboard.encode(string));\n};\n\n/**\n * Launches url in a new tab.\n *\n * @param {string} url URL to launch in a new tab.\n */\nhterm.Terminal.prototype.openUrl = function(url) {\n if (window.chrome && window.chrome.browser) {\n // For Chrome v2 apps, we need to use this API to properly open windows.\n chrome.browser.openTab({'url': url});\n } else {\n var win = window.open(url, '_blank');\n win.focus();\n }\n}\n\n/**\n * Open the selected url.\n */\nhterm.Terminal.prototype.openSelectedUrl_ = function() {\n var str = this.getSelectionText();\n\n // If there is no selection, try and expand wherever they clicked.\n if (str == null) {\n this.screen_.expandSelection(this.document_.getSelection());\n str = this.getSelectionText();\n\n // If clicking in empty space, return.\n if (str == null)\n return;\n }\n\n // Make sure URL is valid before opening.\n if (str.length > 2048 || str.search(/[\\s\\[\\](){}<>\"'\\\\^`]/) >= 0)\n return;\n\n // If the URI isn't anchored, it'll open relative to the extension.\n // We have no way of knowing the correct schema, so assume http.\n if (str.search('^[a-zA-Z][a-zA-Z0-9+.-]*://') < 0) {\n // We have to whitelist a few protocols that lack authorities and thus\n // never use the //. Like mailto.\n switch (str.split(':', 1)[0]) {\n case 'mailto':\n break;\n default:\n str = 'http://' + str;\n break;\n }\n }\n\n this.openUrl(str);\n}\n\n\n/**\n * Add the terminalRow and terminalColumn properties to mouse events and\n * then forward on to onMouse().\n *\n * The terminalRow and terminalColumn properties contain the (row, column)\n * coordinates for the mouse event.\n *\n * @param {Event} e The mouse event to handle.\n */\nhterm.Terminal.prototype.onMouse_ = function(e) {\n if (e.processedByTerminalHandler_) {\n // We register our event handlers on the document, as well as the cursor\n // and the scroll blocker. Mouse events that occur on the cursor or\n // scroll blocker will also appear on the document, but we don't want to\n // process them twice.\n //\n // We can't just prevent bubbling because that has other side effects, so\n // we decorate the event object with this property instead.\n return;\n }\n\n var reportMouseEvents = (!this.defeatMouseReports_ &&\n this.vt.mouseReport != this.vt.MOUSE_REPORT_DISABLED);\n\n e.processedByTerminalHandler_ = true;\n\n // One based row/column stored on the mouse event.\n e.terminalRow = parseInt((e.clientY - this.scrollPort_.visibleRowTopMargin) /\n this.scrollPort_.characterSize.height) + 1;\n e.terminalColumn = parseInt(e.clientX /\n this.scrollPort_.characterSize.width) + 1;\n\n if (e.type == 'mousedown' && e.terminalColumn > this.screenSize.width) {\n // Mousedown in the scrollbar area.\n return;\n }\n\n if (this.options_.cursorVisible && !reportMouseEvents) {\n // If the cursor is visible and we're not sending mouse events to the\n // host app, then we want to hide the terminal cursor when the mouse\n // cursor is over top. This keeps the terminal cursor from interfering\n // with local text selection.\n if (e.terminalRow - 1 == this.screen_.cursorPosition.row &&\n e.terminalColumn - 1 == this.screen_.cursorPosition.column) {\n this.cursorNode_.style.display = 'none';\n } else if (this.cursorNode_.style.display == 'none') {\n this.cursorNode_.style.display = '';\n }\n }\n\n if (e.type == 'mousedown') {\n if (e.altKey || !reportMouseEvents) {\n // If VT mouse reporting is disabled, or has been defeated with\n // alt-mousedown, then the mouse will act on the local selection.\n this.defeatMouseReports_ = true;\n this.setSelectionEnabled(true);\n } else {\n // Otherwise we defer ownership of the mouse to the VT.\n this.defeatMouseReports_ = false;\n this.document_.getSelection().collapseToEnd();\n this.setSelectionEnabled(false);\n e.preventDefault();\n }\n }\n\n if (!reportMouseEvents) {\n if (e.type == 'dblclick' && this.copyOnSelect) {\n this.screen_.expandSelection(this.document_.getSelection());\n this.copySelectionToClipboard(this.document_);\n }\n\n if (e.type == 'click' && !e.shiftKey && (e.ctrlKey || e.metaKey)) {\n // Debounce this event with the dblclick event. If you try to doubleclick\n // a URL to open it, Chrome will fire click then dblclick, but we won't\n // have expanded the selection text at the first click event.\n clearTimeout(this.timeouts_.openUrl);\n this.timeouts_.openUrl = setTimeout(this.openSelectedUrl_.bind(this),\n 500);\n return;\n }\n\n if (e.type == 'mousedown') {\n if ((this.mouseRightClickPaste && e.button == 2 /* right button */) ||\n e.button == this.mousePasteButton) {\n if (!this.paste())\n console.warning('Could not paste manually due to web restrictions');;\n }\n }\n\n if (e.type == 'mouseup' && e.button == 0 && this.copyOnSelect &&\n !this.document_.getSelection().isCollapsed) {\n this.copySelectionToClipboard(this.document_);\n }\n\n if ((e.type == 'mousemove' || e.type == 'mouseup') &&\n this.scrollBlockerNode_.engaged) {\n // Disengage the scroll-blocker after one of these events.\n this.scrollBlockerNode_.engaged = false;\n this.scrollBlockerNode_.style.top = '-99px';\n }\n\n // Emulate arrow key presses via scroll wheel events.\n if (this.scrollWheelArrowKeys_ && !e.shiftKey &&\n this.keyboard.applicationCursor && !this.isPrimaryScreen()) {\n if (e.type == 'wheel') {\n var delta = this.scrollPort_.scrollWheelDelta(e);\n var lines = lib.f.smartFloorDivide(\n Math.abs(delta), this.scrollPort_.characterSize.height);\n\n var data = '\\x1bO' + (delta < 0 ? 'B' : 'A');\n this.io.sendString(data.repeat(lines));\n\n e.preventDefault();\n }\n }\n } else /* if (this.reportMouseEvents) */ {\n if (!this.scrollBlockerNode_.engaged) {\n if (e.type == 'mousedown') {\n // Move the scroll-blocker into place if we want to keep the scrollport\n // from scrolling.\n this.scrollBlockerNode_.engaged = true;\n this.scrollBlockerNode_.style.top = (e.clientY - 5) + 'px';\n this.scrollBlockerNode_.style.left = (e.clientX - 5) + 'px';\n } else if (e.type == 'mousemove') {\n // Oh. This means that drag-scroll was disabled AFTER the mouse down,\n // in which case it's too late to engage the scroll-blocker.\n this.document_.getSelection().collapseToEnd();\n e.preventDefault();\n }\n }\n\n this.onMouse(e);\n }\n\n if (e.type == 'mouseup' && this.document_.getSelection().isCollapsed) {\n // Restore this on mouseup in case it was temporarily defeated with a\n // alt-mousedown. Only do this when the selection is empty so that\n // we don't immediately kill the users selection.\n this.defeatMouseReports_ = false;\n }\n};\n\n/**\n * Clients should override this if they care to know about mouse events.\n *\n * The event parameter will be a normal DOM mouse click event with additional\n * 'terminalRow' and 'terminalColumn' properties.\n *\n * @param {Event} e The mouse event to handle.\n */\nhterm.Terminal.prototype.onMouse = function(e) { };\n\n/**\n * React when focus changes.\n *\n * @param {boolean} focused True if focused, false otherwise.\n */\nhterm.Terminal.prototype.onFocusChange_ = function(focused) {\n this.cursorNode_.setAttribute('focus', focused);\n this.restyleCursor_();\n if (focused === true)\n this.closeBellNotifications_();\n};\n\n/**\n * React when the ScrollPort is scrolled.\n */\nhterm.Terminal.prototype.onScroll_ = function() {\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * React when text is pasted into the scrollPort.\n *\n * @param {Event} e The DOM paste event to handle.\n */\nhterm.Terminal.prototype.onPaste_ = function(e) {\n var data = e.text.replace(/\\n/mg, '\\r');\n data = this.keyboard.encode(data);\n if (this.options_.bracketedPaste)\n data = '\\x1b[200~' + data + '\\x1b[201~';\n\n this.io.sendString(data);\n};\n\n/**\n * React when the user tries to copy from the scrollPort.\n *\n * @param {Event} e The DOM copy event.\n */\nhterm.Terminal.prototype.onCopy_ = function(e) {\n if (!this.useDefaultWindowCopy) {\n e.preventDefault();\n setTimeout(this.copySelectionToClipboard.bind(this), 0);\n }\n};\n\n/**\n * React when the ScrollPort is resized.\n *\n * Note: This function should not directly contain code that alters the internal\n * state of the terminal. That kind of code belongs in realizeWidth or\n * realizeHeight, so that it can be executed synchronously in the case of a\n * programmatic width change.\n */\nhterm.Terminal.prototype.onResize_ = function() {\n var columnCount = Math.floor(this.scrollPort_.getScreenWidth() /\n this.scrollPort_.characterSize.width) || 0;\n var rowCount = lib.f.smartFloorDivide(this.scrollPort_.getScreenHeight(),\n this.scrollPort_.characterSize.height) || 0;\n\n if (columnCount <= 0 || rowCount <= 0) {\n // We avoid these situations since they happen sometimes when the terminal\n // gets removed from the document or during the initial load, and we can't\n // deal with that.\n // This can also happen if called before the scrollPort calculates the\n // character size, meaning we dived by 0 above and default to 0 values.\n return;\n }\n\n var isNewSize = (columnCount != this.screenSize.width ||\n rowCount != this.screenSize.height);\n\n // We do this even if the size didn't change, just to be sure everything is\n // in sync.\n this.realizeSize_(columnCount, rowCount);\n this.showZoomWarning_(this.scrollPort_.characterSize.zoomFactor != 1);\n\n if (isNewSize)\n this.overlaySize();\n\n this.restyleCursor_();\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * Service the cursor blink timeout.\n */\nhterm.Terminal.prototype.onCursorBlink_ = function() {\n if (!this.options_.cursorBlink) {\n delete this.timeouts_.cursorBlink;\n return;\n }\n\n if (this.cursorNode_.getAttribute('focus') == 'false' ||\n this.cursorNode_.style.opacity == '0') {\n this.cursorNode_.style.opacity = '1';\n this.timeouts_.cursorBlink = setTimeout(this.myOnCursorBlink_,\n this.cursorBlinkCycle_[0]);\n } else {\n this.cursorNode_.style.opacity = '0';\n this.timeouts_.cursorBlink = setTimeout(this.myOnCursorBlink_,\n this.cursorBlinkCycle_[1]);\n }\n};\n\n/**\n * Set the scrollbar-visible mode bit.\n *\n * If scrollbar-visible is on, the vertical scrollbar will be visible.\n * Otherwise it will not.\n *\n * Defaults to on.\n *\n * @param {boolean} state True to set scrollbar-visible mode, false to unset.\n */\nhterm.Terminal.prototype.setScrollbarVisible = function(state) {\n this.scrollPort_.setScrollbarVisible(state);\n};\n\n/**\n * Set the scroll wheel move multiplier. This will affect how fast the page\n * scrolls on wheel events.\n *\n * Defaults to 1.\n *\n * @param {number} multiplier The multiplier to set.\n */\nhterm.Terminal.prototype.setScrollWheelMoveMultipler = function(multiplier) {\n this.scrollPort_.setScrollWheelMoveMultipler(multiplier);\n};\n\n/**\n * Close all web notifications created by terminal bells.\n */\nhterm.Terminal.prototype.closeBellNotifications_ = function() {\n this.bellNotificationList_.forEach(function(n) {\n n.close();\n });\n this.bellNotificationList_.length = 0;\n};\n// SOURCE FILE: hterm/js/hterm_terminal_io.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.encodeUTF8');\n\n/**\n * Input/Output interface used by commands to communicate with the terminal.\n *\n * Commands like `nassh` and `crosh` receive an instance of this class as\n * part of their argv object. This allows them to write to and read from the\n * terminal without exposing them to an entire hterm.Terminal instance.\n *\n * The active command must override the onVTKeystroke() and sendString() methods\n * of this class in order to receive keystrokes and send output to the correct\n * destination.\n *\n * Isolating commands from the terminal provides the following benefits:\n * - Provides a mechanism to save and restore onVTKeystroke and sendString\n * handlers when invoking subcommands (see the push() and pop() methods).\n * - The isolation makes it easier to make changes in Terminal and supporting\n * classes without affecting commands.\n * - In The Future commands may run in web workers where they would only be able\n * to talk to a Terminal instance through an IPC mechanism.\n *\n * @param {hterm.Terminal}\n */\nhterm.Terminal.IO = function(terminal) {\n this.terminal_ = terminal;\n\n // The IO object to restore on IO.pop().\n this.previousIO_ = null;\n};\n\n/**\n * Show the terminal overlay for a given amount of time.\n *\n * The terminal overlay appears in inverse video in a large font, centered\n * over the terminal. You should probably keep the overlay message brief,\n * since it's in a large font and you probably aren't going to check the size\n * of the terminal first.\n *\n * @param {string} msg The text (not HTML) message to display in the overlay.\n * @param {number} opt_timeout The amount of time to wait before fading out\n * the overlay. Defaults to 1.5 seconds. Pass null to have the overlay\n * stay up forever (or until the next overlay).\n */\nhterm.Terminal.IO.prototype.showOverlay = function(message, opt_timeout) {\n this.terminal_.showOverlay(message, opt_timeout);\n};\n\n/**\n * Open an frame in the current terminal window, pointed to the specified\n * url.\n *\n * Eventually we'll probably need size/position/decoration options.\n * The user should also be able to move/resize the frame.\n *\n * @param {string} url The URL to load in the frame.\n * @param {Object} opt_options Optional frame options. Not implemented.\n */\nhterm.Terminal.IO.prototype.createFrame = function(url, opt_options) {\n return new hterm.Frame(this.terminal_, url, opt_options);\n};\n\n/**\n * Change the preference profile for the terminal.\n *\n * @param profileName {string} The name of the preference profile to activate.\n */\nhterm.Terminal.IO.prototype.setTerminalProfile = function(profileName) {\n this.terminal_.setProfile(profileName);\n};\n\n/**\n * Create a new hterm.Terminal.IO instance and make it active on the Terminal\n * object associated with this instance.\n *\n * This is used to pass control of the terminal IO off to a subcommand. The\n * IO.pop() method can be used to restore control when the subcommand completes.\n */\nhterm.Terminal.IO.prototype.push = function() {\n var io = new hterm.Terminal.IO(this.terminal_);\n io.keyboardCaptured_ = this.keyboardCaptured_;\n\n io.columnCount = this.columnCount;\n io.rowCount = this.rowCount;\n\n io.previousIO_ = this.terminal_.io;\n this.terminal_.io = io;\n\n return io;\n};\n\n/**\n * Restore the Terminal's previous IO object.\n */\nhterm.Terminal.IO.prototype.pop = function() {\n this.terminal_.io = this.previousIO_;\n};\n\n/**\n * Called when data needs to be sent to the current command.\n *\n * Clients should override this to receive notification of pending data.\n *\n * @param {string} string The data to send.\n */\nhterm.Terminal.IO.prototype.sendString = function(string) {\n // Override this.\n console.log('Unhandled sendString: ' + string);\n};\n\n/**\n * Called when a terminal keystroke is detected.\n *\n * Clients should override this to receive notification of keystrokes.\n *\n * The keystroke data will be encoded according to the 'send-encoding'\n * preference.\n *\n * @param {string} string The VT key sequence.\n */\nhterm.Terminal.IO.prototype.onVTKeystroke = function(string) {\n // Override this.\n console.log('Unobserverd VT keystroke: ' + JSON.stringify(string));\n};\n\nhterm.Terminal.IO.prototype.onTerminalResize_ = function(width, height) {\n var obj = this;\n while (obj) {\n obj.columnCount = width;\n obj.rowCount = height;\n obj = obj.previousIO_;\n }\n\n this.onTerminalResize(width, height);\n};\n\n/**\n * Called when terminal size is changed.\n *\n * Clients should override this to receive notification of resize.\n *\n * @param {string|integer} terminal width.\n * @param {string|integer} terminal height.\n */\nhterm.Terminal.IO.prototype.onTerminalResize = function(width, height) {\n // Override this.\n};\n\n/**\n * Write a UTF-8 encoded byte string to the terminal.\n *\n * @param {string} string The UTF-8 encoded string to print.\n */\nhterm.Terminal.IO.prototype.writeUTF8 = function(string) {\n if (this.terminal_.io != this)\n throw 'Attempt to print from inactive IO object.';\n\n this.terminal_.interpret(string);\n};\n\n/**\n * Write a UTF-8 encoded byte string to the terminal followed by crlf.\n *\n * @param {string} string The UTF-8 encoded string to print.\n */\nhterm.Terminal.IO.prototype.writelnUTF8 = function(string) {\n if (this.terminal_.io != this)\n throw 'Attempt to print from inactive IO object.';\n\n this.terminal_.interpret(string + '\\r\\n');\n};\n\n/**\n * Write a UTF-16 JavaScript string to the terminal.\n *\n * @param {string} string The string to print.\n */\nhterm.Terminal.IO.prototype.print =\nhterm.Terminal.IO.prototype.writeUTF16 = function(string) {\n this.writeUTF8(lib.encodeUTF8(string));\n};\n\n/**\n * Print a UTF-16 JavaScript string to the terminal followed by a newline.\n *\n * @param {string} string The string to print.\n */\nhterm.Terminal.IO.prototype.println =\nhterm.Terminal.IO.prototype.writelnUTF16 = function(string) {\n this.writelnUTF8(lib.encodeUTF8(string));\n};\n// SOURCE FILE: hterm/js/hterm_text_attributes.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.colors');\n\n/**\n * Constructor for TextAttribute objects.\n *\n * These objects manage a set of text attributes such as foreground/\n * background color, bold, faint, italic, blink, underline, and strikethrough.\n *\n * TextAttribute instances can be used to construct a DOM container implementing\n * the current attributes, or to test an existing DOM container for\n * compatibility with the current attributes.\n *\n * @constructor\n * @param {HTMLDocument} document The parent document to use when creating\n * new DOM containers.\n */\nhterm.TextAttributes = function(document) {\n this.document_ = document;\n // These variables contain the source of the color as either:\n // SRC_DEFAULT (use context default)\n // SRC_RGB (specified in 'rgb( r, g, b)' form)\n // number (representing the index from color palette to use)\n this.foregroundSource = this.SRC_DEFAULT;\n this.backgroundSource = this.SRC_DEFAULT;\n\n // These properties cache the value in the color table, but foregroundSource\n // and backgroundSource contain the canonical values.\n this.foreground = this.DEFAULT_COLOR;\n this.background = this.DEFAULT_COLOR;\n\n this.defaultForeground = 'rgb(255, 255, 255)';\n this.defaultBackground = 'rgb(0, 0, 0)';\n\n this.bold = false;\n this.faint = false;\n this.italic = false;\n this.blink = false;\n this.underline = false;\n this.strikethrough = false;\n this.inverse = false;\n this.invisible = false;\n this.wcNode = false;\n this.asciiNode = true;\n this.tileData = null;\n\n this.colorPalette = null;\n this.resetColorPalette();\n};\n\n/**\n * If false, we ignore the bold attribute.\n *\n * This is used for fonts that have a bold version that is a different size\n * than the normal weight version.\n */\nhterm.TextAttributes.prototype.enableBold = true;\n\n/**\n * If true, use bright colors (if available) for bold text.\n *\n * This setting is independent of the enableBold setting.\n */\nhterm.TextAttributes.prototype.enableBoldAsBright = true;\n\n/**\n * A sentinel constant meaning \"whatever the default color is in this context\".\n */\nhterm.TextAttributes.prototype.DEFAULT_COLOR = lib.f.createEnum('');\n\n/**\n * A constant string used to specify that source color is context default.\n */\nhterm.TextAttributes.prototype.SRC_DEFAULT = 'default';\n\n\n/**\n * A constant string used to specify that the source of a color is a valid\n * rgb( r, g, b) specifier.\n */\nhterm.TextAttributes.prototype.SRC_RGB = 'rgb';\n\n/**\n * The document object which should own the DOM nodes created by this instance.\n *\n * @param {HTMLDocument} document The parent document.\n */\nhterm.TextAttributes.prototype.setDocument = function(document) {\n this.document_ = document;\n};\n\n/**\n * Create a deep copy of this object.\n *\n * @return {hterm.TextAttributes} A deep copy of this object.\n */\nhterm.TextAttributes.prototype.clone = function() {\n var rv = new hterm.TextAttributes(null);\n\n for (var key in this) {\n rv[key] = this[key];\n }\n\n rv.colorPalette = this.colorPalette.concat();\n return rv;\n};\n\n/**\n * Reset the current set of attributes.\n *\n * This does not affect the palette. Use resetColorPalette() for that.\n * It also doesn't affect the tile data, it's not meant to.\n */\nhterm.TextAttributes.prototype.reset = function() {\n this.foregroundSource = this.SRC_DEFAULT;\n this.backgroundSource = this.SRC_DEFAULT;\n this.foreground = this.DEFAULT_COLOR;\n this.background = this.DEFAULT_COLOR;\n this.bold = false;\n this.faint = false;\n this.italic = false;\n this.blink = false;\n this.underline = false;\n this.strikethrough = false;\n this.inverse = false;\n this.invisible = false;\n this.wcNode = false;\n this.asciiNode = true;\n};\n\n/**\n * Reset the color palette to the default state.\n */\nhterm.TextAttributes.prototype.resetColorPalette = function() {\n this.colorPalette = lib.colors.colorPalette.concat();\n this.syncColors();\n};\n\n/**\n * Test if the current attributes describe unstyled text.\n *\n * @return {boolean} True if the current attributes describe unstyled text.\n */\nhterm.TextAttributes.prototype.isDefault = function() {\n return (this.foregroundSource == this.SRC_DEFAULT &&\n this.backgroundSource == this.SRC_DEFAULT &&\n !this.bold &&\n !this.faint &&\n !this.italic &&\n !this.blink &&\n !this.underline &&\n !this.strikethrough &&\n !this.inverse &&\n !this.invisible &&\n !this.wcNode &&\n this.asciiNode &&\n this.tileData == null);\n};\n\n/**\n * Create a DOM container (a span or a text node) with a style to match the\n * current set of attributes.\n *\n * This method will create a plain text node if the text is unstyled, or\n * an HTML span if the text is styled. Due to lack of monospace wide character\n * fonts on certain systems (e.g. Chrome OS), we need to put each wide character\n * in a span of CSS class '.wc-node' which has double column width.\n * Each vt_tiledata tile is also represented by a span with a single\n * character, with CSS classes '.tile' and '.tile_'.\n *\n * @param {string} opt_textContent Optional text content for the new container.\n * @return {HTMLNode} An HTML span or text nodes styled to match the current\n * attributes.\n */\nhterm.TextAttributes.prototype.createContainer = function(opt_textContent) {\n if (this.isDefault())\n return this.document_.createTextNode(opt_textContent);\n\n var span = this.document_.createElement('span');\n var style = span.style;\n var classes = [];\n\n if (this.foreground != this.DEFAULT_COLOR)\n style.color = this.foreground;\n\n if (this.background != this.DEFAULT_COLOR)\n style.backgroundColor = this.background;\n\n if (this.enableBold && this.bold)\n style.fontWeight = 'bold';\n\n if (this.faint)\n span.faint = true;\n\n if (this.italic)\n style.fontStyle = 'italic';\n\n if (this.blink) {\n classes.push('blink-node');\n span.blinkNode = true;\n }\n\n var textDecoration = '';\n if (this.underline) {\n textDecoration += ' underline';\n span.underline = true;\n }\n if (this.strikethrough) {\n textDecoration += ' line-through';\n span.strikethrough = true;\n }\n if (textDecoration) {\n style.textDecoration = textDecoration;\n }\n\n if (this.wcNode) {\n classes.push('wc-node');\n span.wcNode = true;\n span.asciiNode = false;\n }\n\n if (this.tileData != null) {\n classes.push('tile');\n classes.push('tile_' + this.tileData);\n span.tileNode = true;\n }\n\n if (opt_textContent)\n span.textContent = opt_textContent;\n\n if (classes.length)\n span.className = classes.join(' ');\n\n return span;\n};\n\n/**\n * Tests if the provided object (string, span or text node) has the same\n * style as this TextAttributes instance.\n *\n * This indicates that text with these attributes could be inserted directly\n * into the target DOM node.\n *\n * For the purposes of this method, a string is considered a text node.\n *\n * @param {string|HTMLNode} obj The object to test.\n * @return {boolean} True if the provided container has the same style as\n * this attributes instance.\n */\nhterm.TextAttributes.prototype.matchesContainer = function(obj) {\n if (typeof obj == 'string' || obj.nodeType == 3)\n return this.isDefault();\n\n var style = obj.style;\n\n // We don't want to put multiple characters in a wcNode or a tile.\n // See the comments in createContainer.\n return (!(this.wcNode || obj.wcNode) &&\n this.asciiNode == this.asciiNode &&\n !(this.tileData != null || obj.tileNode) &&\n this.foreground == style.color &&\n this.background == style.backgroundColor &&\n (this.enableBold && this.bold) == !!style.fontWeight &&\n this.blink == obj.blinkNode &&\n this.italic == !!style.fontStyle &&\n !!this.underline == !!obj.underline &&\n !!this.strikethrough == !!obj.strikethrough);\n};\n\nhterm.TextAttributes.prototype.setDefaults = function(foreground, background) {\n this.defaultForeground = foreground;\n this.defaultBackground = background;\n\n this.syncColors();\n};\n\n/**\n * Updates foreground and background properties based on current indices and\n * other state.\n *\n * @param {string} terminalForeground The terminal foreground color for use as\n * inverse text background.\n * @param {string} terminalBackground The terminal background color for use as\n * inverse text foreground.\n *\n */\nhterm.TextAttributes.prototype.syncColors = function() {\n function getBrightIndex(i) {\n if (i < 8) {\n // If the color is from the lower half of the ANSI 16, add 8.\n return i + 8;\n }\n\n // If it's not from the 16 color palette, ignore bold requests. This\n // matches the behavior of gnome-terminal.\n return i;\n }\n\n var foregroundSource = this.foregroundSource;\n var backgroundSource = this.backgroundSource;\n var defaultForeground = this.DEFAULT_COLOR;\n var defaultBackground = this.DEFAULT_COLOR;\n\n if (this.inverse) {\n foregroundSource = this.backgroundSource;\n backgroundSource = this.foregroundSource;\n // We can't inherit the container's color anymore.\n defaultForeground = this.defaultBackground;\n defaultBackground = this.defaultForeground;\n }\n\n if (this.enableBoldAsBright && this.bold) {\n if (foregroundSource != this.SRC_DEFAULT &&\n foregroundSource != this.SRC_RGB) {\n foregroundSource = getBrightIndex(foregroundSource);\n }\n }\n\n if (this.invisible) {\n foregroundSource = backgroundSource;\n defaultForeground = this.defaultBackground;\n }\n\n // Set fore/background colors unless already specified in rgb(r, g, b) form.\n if (foregroundSource != this.SRC_RGB) {\n this.foreground = ((foregroundSource == this.SRC_DEFAULT) ?\n defaultForeground : this.colorPalette[foregroundSource]);\n }\n\n if (this.faint && !this.invisible) {\n var colorToMakeFaint = ((this.foreground == this.DEFAULT_COLOR) ?\n this.defaultForeground : this.foreground);\n this.foreground = lib.colors.mix(colorToMakeFaint, 'rgb(0, 0, 0)', 0.3333);\n }\n\n if (backgroundSource != this.SRC_RGB) {\n this.background = ((backgroundSource == this.SRC_DEFAULT) ?\n defaultBackground : this.colorPalette[backgroundSource]);\n }\n};\n\n/**\n * Static method used to test if the provided objects (strings, spans or\n * text nodes) have the same style.\n *\n * For the purposes of this method, a string is considered a text node.\n *\n * @param {string|HTMLNode} obj1 An object to test.\n * @param {string|HTMLNode} obj2 Another object to test.\n * @return {boolean} True if the containers have the same style.\n */\nhterm.TextAttributes.containersMatch = function(obj1, obj2) {\n if (typeof obj1 == 'string')\n return hterm.TextAttributes.containerIsDefault(obj2);\n\n if (obj1.nodeType != obj2.nodeType)\n return false;\n\n if (obj1.nodeType == 3)\n return true;\n\n var style1 = obj1.style;\n var style2 = obj2.style;\n\n return (style1.color == style2.color &&\n style1.backgroundColor == style2.backgroundColor &&\n style1.fontWeight == style2.fontWeight &&\n style1.fontStyle == style2.fontStyle &&\n style1.textDecoration == style2.textDecoration);\n};\n\n/**\n * Static method to test if a given DOM container represents unstyled text.\n *\n * For the purposes of this method, a string is considered a text node.\n *\n * @param {string|HTMLNode} obj1 An object to test.\n * @return {boolean} True if the object is unstyled.\n */\nhterm.TextAttributes.containerIsDefault = function(obj) {\n return typeof obj == 'string' || obj.nodeType == 3;\n};\n\n/**\n * Static method to get the column width of a node's textContent.\n *\n * @param {HTMLElement} node The HTML element to get the width of textContent\n * from.\n * @return {integer} The column width of the node's textContent.\n */\nhterm.TextAttributes.nodeWidth = function(node) {\n if (!node.asciiNode) {\n return lib.wc.strWidth(node.textContent);\n } else {\n return node.textContent.length;\n }\n}\n\n/**\n * Static method to get the substr of a node's textContent. The start index\n * and substr width are computed in column width.\n *\n * @param {HTMLElement} node The HTML element to get the substr of textContent\n * from.\n * @param {integer} start The starting offset in column width.\n * @param {integer} width The width to capture in column width.\n * @return {integer} The extracted substr of the node's textContent.\n */\nhterm.TextAttributes.nodeSubstr = function(node, start, width) {\n if (!node.asciiNode) {\n return lib.wc.substr(node.textContent, start, width);\n } else {\n return node.textContent.substr(start, width);\n }\n}\n\n/**\n * Static method to get the substring based of a node's textContent. The\n * start index of end index are computed in column width.\n *\n * @param {HTMLElement} node The HTML element to get the substr of textContent\n * from.\n * @param {integer} start The starting offset in column width.\n * @param {integer} end The ending offset in column width.\n * @return {integer} The extracted substring of the node's textContent.\n */\nhterm.TextAttributes.nodeSubstring = function(node, start, end) {\n if (!node.asciiNode) {\n return lib.wc.substring(node.textContent, start, end);\n } else {\n return node.textContent.substring(start, end);\n }\n};\n\n/**\n * Static method to split a string into contiguous runs of single-width\n * characters and runs of double-width characters.\n *\n * @param {string} str The string to split.\n * @return {Array} An array of objects that contain substrings of str, where\n * each substring is either a contiguous runs of single-width characters\n * or a double-width character. For objects that contain a double-width\n * character, its wcNode property is set to true. For objects that contain\n * only ASCII content, its asciiNode property is set to true.\n */\nhterm.TextAttributes.splitWidecharString = function(str) {\n var rv = [];\n var base = 0, length = 0;\n var asciiNode = true;\n\n for (var i = 0; i < str.length;) {\n var c = str.codePointAt(i);\n var increment = (c <= 0xffff) ? 1 : 2;\n if (c < 128) {\n length += increment;\n } else if (lib.wc.charWidth(c) <= 1) {\n length += increment;\n asciiNode = false;\n } else {\n if (length) {\n rv.push({\n str: str.substr(base, length),\n asciiNode: asciiNode,\n });\n asciiNode = true;\n }\n rv.push({\n str: str.substr(i, increment),\n wcNode: true,\n asciiNode: false,\n });\n base = i + increment;\n length = 0;\n }\n i += increment;\n }\n\n if (length) {\n rv.push({\n str: str.substr(base, length),\n asciiNode: asciiNode,\n });\n }\n\n return rv;\n};\n// SOURCE FILE: hterm/js/hterm_vt.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.colors', 'lib.f', 'lib.UTF8Decoder',\n 'hterm.VT.CharacterMap');\n\n/**\n * Constructor for the VT escape sequence interpreter.\n *\n * The interpreter operates on a terminal object capable of performing cursor\n * move operations, painting characters, etc.\n *\n * This interpreter is intended to be compatible with xterm, though it\n * ignores some of the more esoteric escape sequences.\n *\n * Control sequences are documented in hterm/doc/ControlSequences.md.\n *\n * @param {hterm.Terminal} terminal Terminal to use with the interpreter.\n */\nhterm.VT = function(terminal) {\n /**\n * The display terminal object associated with this virtual terminal.\n */\n this.terminal = terminal;\n\n terminal.onMouse = this.onTerminalMouse_.bind(this);\n this.mouseReport = this.MOUSE_REPORT_DISABLED;\n\n // Parse state left over from the last parse. You should use the parseState\n // instance passed into your parse routine, rather than reading\n // this.parseState_ directly.\n this.parseState_ = new hterm.VT.ParseState(this.parseUnknown_);\n\n // Any \"leading modifiers\" for the escape sequence, such as '?', ' ', or the\n // other modifiers handled in this.parseCSI_.\n this.leadingModifier_ = '';\n\n // Any \"trailing modifiers\". Same character set as a leading modifier,\n // except these are found after the numeric arguments.\n this.trailingModifier_ = '';\n\n // Whether or not to respect the escape codes for setting terminal width.\n this.allowColumnWidthChanges_ = false;\n\n // The amount of time we're willing to wait for the end of an OSC sequence.\n this.oscTimeLimit_ = 20000;\n\n // Decoder to maintain UTF-8 decode state.\n this.utf8Decoder_ = new lib.UTF8Decoder();\n\n /**\n * Whether to accept the 8-bit control characters.\n *\n * An 8-bit control character is one with the eighth bit set. These\n * didn't work on 7-bit terminals so they all have two byte equivalents.\n * Most hosts still only use the two-byte versions.\n *\n * We ignore 8-bit control codes by default. This is in order to avoid\n * issues with \"accidental\" usage of codes that need to be terminated.\n * The \"accident\" usually involves cat'ing binary data.\n */\n this.enable8BitControl = false;\n\n /**\n * Whether to allow the OSC 52 sequence to write to the system clipboard.\n */\n this.enableClipboardWrite = true;\n\n /**\n * Respect the host's attempt to change the cursor blink status using\n * the DEC Private mode 12.\n */\n this.enableDec12 = false;\n\n /**\n * The expected encoding method for data received from the host.\n */\n this.characterEncoding = 'utf-8';\n\n /**\n * Max length of an unterminated DCS, OSC, PM or APC sequence before we give\n * up and ignore the code.\n *\n * These all end with a String Terminator (ST, '\\x9c', ESC '\\\\') or\n * (BEL, '\\x07') character, hence the \"string sequence\" moniker.\n */\n this.maxStringSequence = 1024;\n\n /**\n * If true, emit warnings when we encounter a control character or escape\n * sequence that we don't recognize or explicitly ignore.\n */\n this.warnUnimplemented = true;\n\n /**\n * The set of available character maps (used by G0...G3 below).\n */\n this.characterMaps = new hterm.VT.CharacterMaps();\n\n /**\n * The default G0...G3 character maps.\n * We default to the US/ASCII map everywhere as that aligns with other\n * terminals, and it makes it harder to accidentally switch to the graphics\n * character map (Ctrl-N). Any program that wants to use the graphics map\n * will usually select it anyways since there's no guarantee what state any\n * of the maps are in at any particular time.\n */\n this.G0 = this.G1 = this.G2 = this.G3 =\n this.characterMaps.getMap('B');\n\n /**\n * The 7-bit visible character set.\n *\n * This is a mapping from inbound data to display glyph. The GL set\n * contains the 94 bytes from 0x21 to 0x7e.\n *\n * The default GL set is 'B', US ASCII.\n */\n this.GL = 'G0';\n\n /**\n * The 8-bit visible character set.\n *\n * This is a mapping from inbound data to display glyph. The GR set\n * contains the 94 bytes from 0xa1 to 0xfe.\n */\n this.GR = 'G0';\n\n /**\n * The current encoding of the terminal.\n *\n * We only support ECMA-35 and UTF-8, so go with a boolean here.\n * The encoding can be locked too.\n */\n this.codingSystemUtf8_ = false;\n this.codingSystemLocked_ = false;\n\n // Construct a regular expression to match the known one-byte control chars.\n // This is used in parseUnknown_ to quickly scan a string for the next\n // control character.\n this.cc1Pattern_ = null;\n this.updateEncodingState_();\n\n // Saved state used in DECSC.\n //\n // This is a place to store a copy VT state, it is *not* the active state.\n this.savedState_ = new hterm.VT.CursorState(this);\n};\n\n/**\n * No mouse events.\n */\nhterm.VT.prototype.MOUSE_REPORT_DISABLED = 0;\n\n/**\n * DECSET mode 1000.\n *\n * Report mouse down/up events only.\n */\nhterm.VT.prototype.MOUSE_REPORT_CLICK = 1;\n\n/**\n * DECSET mode 1002.\n *\n * Report mouse down/up and movement while a button is down.\n */\nhterm.VT.prototype.MOUSE_REPORT_DRAG = 3;\n\n/**\n * ParseState constructor.\n *\n * This object tracks the current state of the parse. It has fields for the\n * current buffer, position in the buffer, and the parse function.\n *\n * @param {function} defaultFunc The default parser function.\n * @param {string} opt_buf Optional string to use as the current buffer.\n */\nhterm.VT.ParseState = function(defaultFunction, opt_buf) {\n this.defaultFunction = defaultFunction;\n this.buf = opt_buf || null;\n this.pos = 0;\n this.func = defaultFunction;\n this.args = [];\n};\n\n/**\n * Reset the parser function, buffer, and position.\n */\nhterm.VT.ParseState.prototype.reset = function(opt_buf) {\n this.resetParseFunction();\n this.resetBuf(opt_buf || '');\n this.resetArguments();\n};\n\n/**\n * Reset the parser function only.\n */\nhterm.VT.ParseState.prototype.resetParseFunction = function() {\n this.func = this.defaultFunction;\n};\n\n/**\n * Reset the buffer and position only.\n *\n * @param {string} buf Optional new value for buf, defaults to null.\n */\nhterm.VT.ParseState.prototype.resetBuf = function(opt_buf) {\n this.buf = (typeof opt_buf == 'string') ? opt_buf : null;\n this.pos = 0;\n};\n\n/**\n * Reset the arguments list only.\n *\n * @param {string} opt_arg_zero Optional initial value for args[0].\n */\nhterm.VT.ParseState.prototype.resetArguments = function(opt_arg_zero) {\n this.args.length = 0;\n if (typeof opt_arg_zero != 'undefined')\n this.args[0] = opt_arg_zero;\n};\n\n/**\n * Get an argument as an integer.\n *\n * @param {number} argnum The argument number to retrieve.\n */\nhterm.VT.ParseState.prototype.iarg = function(argnum, defaultValue) {\n var str = this.args[argnum];\n if (str) {\n var ret = parseInt(str, 10);\n // An argument of zero is treated as the default value.\n if (ret == 0)\n ret = defaultValue;\n return ret;\n }\n return defaultValue;\n};\n\n/**\n * Advance the parse position.\n *\n * @param {integer} count The number of bytes to advance.\n */\nhterm.VT.ParseState.prototype.advance = function(count) {\n this.pos += count;\n};\n\n/**\n * Return the remaining portion of the buffer without affecting the parse\n * position.\n *\n * @return {string} The remaining portion of the buffer.\n */\nhterm.VT.ParseState.prototype.peekRemainingBuf = function() {\n return this.buf.substr(this.pos);\n};\n\n/**\n * Return the next single character in the buffer without affecting the parse\n * position.\n *\n * @return {string} The next character in the buffer.\n */\nhterm.VT.ParseState.prototype.peekChar = function() {\n return this.buf.substr(this.pos, 1);\n};\n\n/**\n * Return the next single character in the buffer and advance the parse\n * position one byte.\n *\n * @return {string} The next character in the buffer.\n */\nhterm.VT.ParseState.prototype.consumeChar = function() {\n return this.buf.substr(this.pos++, 1);\n};\n\n/**\n * Return true if the buffer is empty, or the position is past the end.\n */\nhterm.VT.ParseState.prototype.isComplete = function() {\n return this.buf == null || this.buf.length <= this.pos;\n};\n\nhterm.VT.CursorState = function(vt) {\n this.vt_ = vt;\n this.save();\n};\n\nhterm.VT.CursorState.prototype.save = function() {\n this.cursor = this.vt_.terminal.saveCursor();\n\n this.textAttributes = this.vt_.terminal.getTextAttributes().clone();\n\n this.GL = this.vt_.GL;\n this.GR = this.vt_.GR;\n\n this.G0 = this.vt_.G0;\n this.G1 = this.vt_.G1;\n this.G2 = this.vt_.G2;\n this.G3 = this.vt_.G3;\n};\n\nhterm.VT.CursorState.prototype.restore = function() {\n this.vt_.terminal.restoreCursor(this.cursor);\n\n this.vt_.terminal.setTextAttributes(this.textAttributes.clone());\n\n this.vt_.GL = this.GL;\n this.vt_.GR = this.GR;\n\n this.vt_.G0 = this.G0;\n this.vt_.G1 = this.G1;\n this.vt_.G2 = this.G2;\n this.vt_.G3 = this.G3;\n};\n\nhterm.VT.prototype.reset = function() {\n this.G0 = this.characterMaps.getMap('B');\n this.G1 = this.characterMaps.getMap('0');\n this.G2 = this.characterMaps.getMap('B');\n this.G3 = this.characterMaps.getMap('B');\n\n this.GL = 'G0';\n this.GR = 'G0';\n\n this.savedState_ = new hterm.VT.CursorState(this);\n\n this.mouseReport = this.MOUSE_REPORT_DISABLED;\n};\n\n/**\n * Handle terminal mouse events.\n *\n * See the \"Mouse Tracking\" section of [xterm].\n */\nhterm.VT.prototype.onTerminalMouse_ = function(e) {\n if (this.mouseReport == this.MOUSE_REPORT_DISABLED)\n return;\n\n // Temporary storage for our response.\n var response;\n\n // Modifier key state.\n var mod = 0;\n if (e.shiftKey)\n mod |= 4;\n if (e.metaKey || (this.terminal.keyboard.altIsMeta && e.altKey))\n mod |= 8;\n if (e.ctrlKey)\n mod |= 16;\n\n // TODO(rginda): We should also support mode 1005 and/or 1006 to extend the\n // coordinate space. Though, after poking around just a little, I wasn't\n // able to get vi or emacs to use either of these modes.\n var x = String.fromCharCode(lib.f.clamp(e.terminalColumn + 32, 32, 255));\n var y = String.fromCharCode(lib.f.clamp(e.terminalRow + 32, 32, 255));\n\n switch (e.type) {\n case 'wheel':\n // Mouse wheel is treated as button 1 or 2 plus an additional 64.\n b = (((e.deltaY * -1) > 0) ? 0 : 1) + 96;\n b |= mod;\n response = '\\x1b[M' + String.fromCharCode(b) + x + y;\n\n // Keep the terminal from scrolling.\n e.preventDefault();\n break;\n\n case 'mousedown':\n // Buttons are encoded as button number plus 32.\n var b = Math.min(e.button, 2) + 32;\n\n // And mix in the modifier keys.\n b |= mod;\n\n response = '\\x1b[M' + String.fromCharCode(b) + x + y;\n break;\n\n case 'mouseup':\n // Mouse up has no indication of which button was released.\n response = '\\x1b[M\\x23' + x + y;\n break;\n\n case 'mousemove':\n if (this.mouseReport == this.MOUSE_REPORT_DRAG && e.buttons) {\n // Standard button bits. The XTerm protocol only reports the first\n // button press (e.g. if left & right are pressed, right is ignored),\n // and it only supports the first three buttons. If none of them are\n // pressed, then XTerm flags it as a release. We'll do the same.\n b = 32;\n\n // Priority here matches XTerm: left, middle, right.\n if (e.buttons & 0x1) {\n // Report left button.\n b += 0;\n } else if (e.buttons & 0x4) {\n // Report middle button.\n b += 1;\n } else if (e.buttons & 0x2) {\n // Report right button.\n b += 2;\n } else {\n // Release higher buttons.\n b += 3;\n }\n\n // Add 32 to indicate mouse motion.\n b += 32;\n\n // And mix in the modifier keys.\n b |= mod;\n\n response = '\\x1b[M' + String.fromCharCode(b) + x + y;\n }\n\n break;\n\n case 'click':\n case 'dblclick':\n break;\n\n default:\n console.error('Unknown mouse event: ' + e.type, e);\n break;\n }\n\n if (response)\n this.terminal.io.sendString(response);\n};\n\n/**\n * Interpret a string of characters, displaying the results on the associated\n * terminal object.\n *\n * The buffer will be decoded according to the 'receive-encoding' preference.\n */\nhterm.VT.prototype.interpret = function(buf) {\n this.parseState_.resetBuf(this.decode(buf));\n\n while (!this.parseState_.isComplete()) {\n var func = this.parseState_.func;\n var pos = this.parseState_.pos;\n var buf = this.parseState_.buf;\n\n this.parseState_.func.call(this, this.parseState_);\n\n if (this.parseState_.func == func && this.parseState_.pos == pos &&\n this.parseState_.buf == buf) {\n throw 'Parser did not alter the state!';\n }\n }\n};\n\n/**\n * Decode a string according to the 'receive-encoding' preference.\n */\nhterm.VT.prototype.decode = function(str) {\n if (this.characterEncoding == 'utf-8')\n return this.decodeUTF8(str);\n\n return str;\n};\n\n/**\n * Encode a UTF-16 string as UTF-8.\n *\n * See also: https://en.wikipedia.org/wiki/UTF-16\n */\nhterm.VT.prototype.encodeUTF8 = function(str) {\n return lib.encodeUTF8(str);\n};\n\n/**\n * Decode a UTF-8 string into UTF-16.\n */\nhterm.VT.prototype.decodeUTF8 = function(str) {\n return this.utf8Decoder_.decode(str);\n};\n\n/**\n * Set the encoding of the terminal.\n *\n * @param {string} encoding The name of the encoding to set.\n */\nhterm.VT.prototype.setEncoding = function(encoding) {\n switch (encoding) {\n default:\n console.warn('Invalid value for \"terminal-encoding\": ' + encoding);\n // Fall through.\n case 'iso-2022':\n this.codingSystemUtf8_ = false;\n this.codingSystemLocked_ = false;\n break;\n case 'utf-8-locked':\n this.codingSystemUtf8_ = true;\n this.codingSystemLocked_ = true;\n break;\n case 'utf-8':\n this.codingSystemUtf8_ = true;\n this.codingSystemLocked_ = false;\n break;\n }\n\n this.updateEncodingState_();\n};\n\n/**\n * Refresh internal state when the encoding changes.\n */\nhterm.VT.prototype.updateEncodingState_ = function() {\n // If we're in UTF8 mode, don't suport 8-bit escape sequences as we'll never\n // see those -- everything should be UTF8!\n var cc1 = Object.keys(hterm.VT.CC1)\n .filter((e) => !this.codingSystemUtf8_ || e.charCodeAt() < 0x80)\n .map((e) => '\\\\x' + lib.f.zpad(e.charCodeAt().toString(16), 2))\n .join('');\n this.cc1Pattern_ = new RegExp(`[${cc1}]`);\n};\n\n/**\n * The default parse function.\n *\n * This will scan the string for the first 1-byte control character (C0/C1\n * characters from [CTRL]). Any plain text coming before the code will be\n * printed to the terminal, then the control character will be dispatched.\n */\nhterm.VT.prototype.parseUnknown_ = function(parseState) {\n var self = this;\n\n function print(str) {\n if (!self.codingSystemUtf8_ && self[self.GL].GL)\n str = self[self.GL].GL(str);\n\n self.terminal.print(str);\n };\n\n // Search for the next contiguous block of plain text.\n var buf = parseState.peekRemainingBuf();\n var nextControl = buf.search(this.cc1Pattern_);\n\n if (nextControl == 0) {\n // We've stumbled right into a control character.\n this.dispatch('CC1', buf.substr(0, 1), parseState);\n parseState.advance(1);\n return;\n }\n\n if (nextControl == -1) {\n // There are no control characters in this string.\n print(buf);\n parseState.reset();\n return;\n }\n\n print(buf.substr(0, nextControl));\n this.dispatch('CC1', buf.substr(nextControl, 1), parseState);\n parseState.advance(nextControl + 1);\n};\n\n/**\n * Parse a Control Sequence Introducer code and dispatch it.\n *\n * See [CSI] for some useful information about these codes.\n */\nhterm.VT.prototype.parseCSI_ = function(parseState) {\n var ch = parseState.peekChar();\n var args = parseState.args;\n\n if (ch >= '@' && ch <= '~') {\n // This is the final character.\n this.dispatch('CSI', this.leadingModifier_ + this.trailingModifier_ + ch,\n parseState);\n parseState.resetParseFunction();\n\n } else if (ch == ';') {\n // Parameter delimiter.\n if (this.trailingModifier_) {\n // Parameter delimiter after the trailing modifier. That's a paddlin'.\n parseState.resetParseFunction();\n\n } else {\n if (!args.length) {\n // They omitted the first param, we need to supply it.\n args.push('');\n }\n\n args.push('');\n }\n\n } else if (ch >= '0' && ch <= '9') {\n // Next byte in the current parameter.\n\n if (this.trailingModifier_) {\n // Numeric parameter after the trailing modifier. That's a paddlin'.\n parseState.resetParseFunction();\n } else {\n if (!args.length) {\n args[0] = ch;\n } else {\n args[args.length - 1] += ch;\n }\n }\n\n } else if (ch >= ' ' && ch <= '?' && ch != ':') {\n // Modifier character.\n if (!args.length) {\n this.leadingModifier_ += ch;\n } else {\n this.trailingModifier_ += ch;\n }\n\n } else if (this.cc1Pattern_.test(ch)) {\n // Control character.\n this.dispatch('CC1', ch, parseState);\n\n } else {\n // Unexpected character in sequence, bail out.\n parseState.resetParseFunction();\n }\n\n parseState.advance(1);\n};\n\n/**\n * Skip over the string until the next String Terminator (ST, 'ESC \\') or\n * Bell (BEL, '\\x07').\n *\n * The string is accumulated in parseState.args[0]. Make sure to reset the\n * arguments (with parseState.resetArguments) before starting the parse.\n *\n * You can detect that parsing in complete by checking that the parse\n * function has changed back to the default parse function.\n *\n * If we encounter more than maxStringSequence characters, we send back\n * the unterminated sequence to be re-parsed with the default parser function.\n *\n * @return {boolean} If true, parsing is ongoing or complete. If false, we've\n * exceeded the max string sequence.\n */\nhterm.VT.prototype.parseUntilStringTerminator_ = function(parseState) {\n var buf = parseState.peekRemainingBuf();\n var nextTerminator = buf.search(/(\\x1b\\\\|\\x07)/);\n var args = parseState.args;\n\n if (!args.length) {\n args[0] = '';\n args[1] = new Date();\n }\n\n if (nextTerminator == -1) {\n // No terminator here, have to wait for the next string.\n\n args[0] += buf;\n\n var abortReason;\n\n if (args[0].length > this.maxStringSequence)\n abortReason = 'too long: ' + args[0].length;\n\n if (args[0].indexOf('\\x1b') != -1)\n abortReason = 'embedded escape: ' + args[0].indexOf('\\x1b');\n\n if (new Date() - args[1] > this.oscTimeLimit_)\n abortReason = 'timeout expired: ' + new Date() - args[1];\n\n if (abortReason) {\n console.log('parseUntilStringTerminator_: aborting: ' + abortReason,\n args[0]);\n parseState.reset(args[0]);\n return false;\n }\n\n parseState.advance(buf.length);\n return true;\n }\n\n if (args[0].length + nextTerminator > this.maxStringSequence) {\n // We found the end of the sequence, but we still think it's too long.\n parseState.reset(args[0] + buf);\n return false;\n }\n\n args[0] += buf.substr(0, nextTerminator);\n\n parseState.resetParseFunction();\n parseState.advance(nextTerminator +\n (buf.substr(nextTerminator, 1) == '\\x1b' ? 2 : 1));\n\n return true;\n};\n\n/**\n * Dispatch to the function that handles a given CC1, ESC, or CSI or VT52 code.\n */\nhterm.VT.prototype.dispatch = function(type, code, parseState) {\n var handler = hterm.VT[type][code];\n if (!handler) {\n if (this.warnUnimplemented)\n console.warn('Unknown ' + type + ' code: ' + JSON.stringify(code));\n return;\n }\n\n if (handler == hterm.VT.ignore) {\n if (this.warnUnimplemented)\n console.warn('Ignored ' + type + ' code: ' + JSON.stringify(code));\n return;\n }\n\n if (type == 'CC1' && code > '\\x7f' && !this.enable8BitControl) {\n // It's kind of a hack to put this here, but...\n //\n // If we're dispatching a 'CC1' code, and it's got the eighth bit set,\n // but we're not supposed to handle 8-bit codes? Just ignore it.\n //\n // This prevents an errant (DCS, '\\x90'), (OSC, '\\x9d'), (PM, '\\x9e') or\n // (APC, '\\x9f') from locking up the terminal waiting for its expected\n // (ST, '\\x9c') or (BEL, '\\x07').\n console.warn('Ignoring 8-bit control code: 0x' +\n code.charCodeAt(0).toString(16));\n return;\n }\n\n handler.apply(this, [parseState, code]);\n};\n\n/**\n * Set one of the ANSI defined terminal mode bits.\n *\n * Invoked in response to SM/RM.\n *\n * Unexpected and unimplemented values are silently ignored.\n */\nhterm.VT.prototype.setANSIMode = function(code, state) {\n if (code == 4) { // Insert Mode (IRM)\n this.terminal.setInsertMode(state);\n } else if (code == 20) { // Automatic Newline (LNM)\n this.terminal.setAutoCarriageReturn(state);\n } else if (this.warnUnimplemented) {\n console.warn('Unimplemented ANSI Mode: ' + code);\n }\n};\n\n/**\n * Set or reset one of the DEC Private modes.\n *\n * Invoked in response to DECSET/DECRST.\n */\nhterm.VT.prototype.setDECMode = function(code, state) {\n switch (parseInt(code, 10)) {\n case 1: // DECCKM\n this.terminal.keyboard.applicationCursor = state;\n break;\n\n case 3: // DECCOLM\n if (this.allowColumnWidthChanges_) {\n this.terminal.setWidth(state ? 132 : 80);\n\n this.terminal.clearHome();\n this.terminal.setVTScrollRegion(null, null);\n }\n break;\n\n case 5: // DECSCNM\n this.terminal.setReverseVideo(state);\n break;\n\n case 6: // DECOM\n this.terminal.setOriginMode(state);\n break;\n\n case 7: // DECAWM\n this.terminal.setWraparound(state);\n break;\n\n case 12: // Start blinking cursor\n if (this.enableDec12)\n this.terminal.setCursorBlink(state);\n break;\n\n case 25: // DECTCEM\n this.terminal.setCursorVisible(state);\n break;\n\n case 30: // Show scrollbar\n this.terminal.setScrollbarVisible(state);\n break;\n\n case 40: // Allow 80 - 132 (DECCOLM) Mode\n this.terminal.allowColumnWidthChanges_ = state;\n break;\n\n case 45: // Reverse-wraparound Mode\n this.terminal.setReverseWraparound(state);\n break;\n\n case 67: // Backarrow key sends backspace (DECBKM)\n this.terminal.keyboard.backspaceSendsBackspace = state;\n break;\n\n case 1000: // Report on mouse clicks only.\n this.mouseReport = (\n state ? this.MOUSE_REPORT_CLICK : this.MOUSE_REPORT_DISABLED);\n this.terminal.syncMouseStyle();\n break;\n\n case 1002: // Report on mouse clicks and drags\n this.mouseReport = (\n state ? this.MOUSE_REPORT_DRAG : this.MOUSE_REPORT_DISABLED);\n this.terminal.syncMouseStyle();\n break;\n\n case 1010: // Scroll to bottom on tty output\n this.terminal.scrollOnOutput = state;\n break;\n\n case 1011: // Scroll to bottom on key press\n this.terminal.scrollOnKeystroke = state;\n break;\n\n case 1036: // Send ESC when Meta modifies a key\n this.terminal.keyboard.metaSendsEscape = state;\n break;\n\n case 1039: // Send ESC when Alt modifies a key\n if (state) {\n if (!this.terminal.keyboard.previousAltSendsWhat_) {\n this.terminal.keyboard.previousAltSendsWhat_ =\n this.terminal.keyboard.altSendsWhat;\n this.terminal.keyboard.altSendsWhat = 'escape';\n }\n } else if (this.terminal.keyboard.previousAltSendsWhat_) {\n this.terminal.keyboard.altSendsWhat =\n this.terminal.keyboard.previousAltSendsWhat_;\n this.terminal.keyboard.previousAltSendsWhat_ = null;\n }\n break;\n\n case 47: // Use Alternate Screen Buffer\n case 1047:\n this.terminal.setAlternateMode(state);\n break;\n\n case 1048: // Save cursor as in DECSC.\n this.savedState_.save();\n\n case 1049: // 1047 + 1048 + clear.\n if (state) {\n this.savedState_.save();\n this.terminal.setAlternateMode(state);\n this.terminal.clear();\n } else {\n this.terminal.setAlternateMode(state);\n this.savedState_.restore();\n }\n\n break;\n\n case 2004: // Bracketed paste mode.\n this.terminal.setBracketedPaste(state);\n break;\n\n default:\n if (this.warnUnimplemented)\n console.warn('Unimplemented DEC Private Mode: ' + code);\n break;\n }\n};\n\n/**\n * Function shared by control characters and escape sequences that are\n * ignored.\n */\nhterm.VT.ignore = function() {};\n\n/**\n * Collection of control characters expressed in a single byte.\n *\n * This includes the characters from the C0 and C1 sets (see [CTRL]) that we\n * care about. Two byte versions of the C1 codes are defined in the\n * hterm.VT.ESC collection.\n *\n * The 'CC1' mnemonic here refers to the fact that these are one-byte Control\n * Codes. It's only used in this source file and not defined in any of the\n * referenced documents.\n */\nhterm.VT.CC1 = {};\n\n/**\n * Collection of two-byte and three-byte sequences starting with ESC.\n */\nhterm.VT.ESC = {};\n\n/**\n * Collection of CSI (Control Sequence Introducer) sequences.\n *\n * These sequences begin with 'ESC [', and may take zero or more arguments.\n */\nhterm.VT.CSI = {};\n\n/**\n * Collection of OSC (Operating System Control) sequences.\n *\n * These sequences begin with 'ESC ]', followed by a function number and a\n * string terminated by either ST or BEL.\n */\nhterm.VT.OSC = {};\n\n/**\n * Collection of VT52 sequences.\n *\n * When in VT52 mode, other sequences are disabled.\n */\nhterm.VT.VT52 = {};\n\n/**\n * Null (NUL).\n *\n * Silently ignored.\n */\nhterm.VT.CC1['\\x00'] = hterm.VT.ignore;\n\n/**\n * Enquiry (ENQ).\n *\n * Transmit answerback message.\n *\n * The default answerback message in xterm is an empty string, so we just\n * ignore this.\n */\nhterm.VT.CC1['\\x05'] = hterm.VT.ignore;\n\n/**\n * Ring Bell (BEL).\n */\nhterm.VT.CC1['\\x07'] = function() {\n this.terminal.ringBell();\n};\n\n/**\n * Backspace (BS).\n *\n * Move the cursor to the left one character position, unless it is at the\n * left margin, in which case no action occurs.\n */\nhterm.VT.CC1['\\x08'] = function() {\n this.terminal.cursorLeft(1);\n};\n\n/**\n * Horizontal Tab (HT).\n *\n * Move the cursor to the next tab stop, or to the right margin if no further\n * tab stops are present on the line.\n */\nhterm.VT.CC1['\\x09'] = function() {\n this.terminal.forwardTabStop();\n};\n\n/**\n * Line Feed (LF).\n *\n * This code causes a line feed or a new line operation. See Automatic\n * Newline (LNM).\n */\nhterm.VT.CC1['\\x0a'] = function() {\n this.terminal.formFeed();\n};\n\n/**\n * Vertical Tab (VT).\n *\n * Interpreted as LF.\n */\nhterm.VT.CC1['\\x0b'] = hterm.VT.CC1['\\x0a'];\n\n/**\n * Form Feed (FF).\n *\n * Interpreted as LF.\n */\nhterm.VT.CC1['\\x0c'] = hterm.VT.CC1['\\x0a'];\n\n/**\n * Carriage Return (CR).\n *\n * Move cursor to the left margin on the current line.\n */\nhterm.VT.CC1['\\x0d'] = function() {\n this.terminal.setCursorColumn(0);\n};\n\n/**\n * Shift Out (SO), aka Lock Shift 0 (LS1).\n *\n * Invoke G1 character set in GL.\n */\nhterm.VT.CC1['\\x0e'] = function() {\n this.GL = 'G1';\n};\n\n/**\n * Shift In (SI), aka Lock Shift 0 (LS0).\n *\n * Invoke G0 character set in GL.\n */\nhterm.VT.CC1['\\x0f'] = function() {\n this.GL = 'G0';\n};\n\n/**\n * Transmit On (XON).\n *\n * Not currently implemented.\n *\n * TODO(rginda): Implement?\n */\nhterm.VT.CC1['\\x11'] = hterm.VT.ignore;\n\n/**\n * Transmit Off (XOFF).\n *\n * Not currently implemented.\n *\n * TODO(rginda): Implement?\n */\nhterm.VT.CC1['\\x13'] = hterm.VT.ignore;\n\n/**\n * Cancel (CAN).\n *\n * If sent during a control sequence, the sequence is immediately terminated\n * and not executed.\n *\n * It also causes the error character to be displayed.\n */\nhterm.VT.CC1['\\x18'] = function(parseState) {\n // If we've shifted in the G1 character set, shift it back out to\n // the default character set.\n if (this.GL == 'G1') {\n this.GL = 'G0';\n }\n parseState.resetParseFunction();\n this.terminal.print('?');\n};\n\n/**\n * Substitute (SUB).\n *\n * Interpreted as CAN.\n */\nhterm.VT.CC1['\\x1a'] = hterm.VT.CC1['\\x18'];\n\n/**\n * Escape (ESC).\n */\nhterm.VT.CC1['\\x1b'] = function(parseState) {\n function parseESC(parseState) {\n var ch = parseState.consumeChar();\n\n if (ch == '\\x1b')\n return;\n\n this.dispatch('ESC', ch, parseState);\n\n if (parseState.func == parseESC)\n parseState.resetParseFunction();\n };\n\n parseState.func = parseESC;\n};\n\n/**\n * Delete (DEL).\n */\nhterm.VT.CC1['\\x7f'] = hterm.VT.ignore;\n\n// 8 bit control characters and their two byte equivalents, below...\n\n/**\n * Index (IND).\n *\n * Like newline, only keep the X position\n */\nhterm.VT.CC1['\\x84'] =\nhterm.VT.ESC['D'] = function() {\n this.terminal.lineFeed();\n};\n\n/**\n * Next Line (NEL).\n *\n * Like newline, but doesn't add lines.\n */\nhterm.VT.CC1['\\x85'] =\nhterm.VT.ESC['E'] = function() {\n this.terminal.setCursorColumn(0);\n this.terminal.cursorDown(1);\n};\n\n/**\n * Horizontal Tabulation Set (HTS).\n */\nhterm.VT.CC1['\\x88'] =\nhterm.VT.ESC['H'] = function() {\n this.terminal.setTabStop(this.terminal.getCursorColumn());\n};\n\n/**\n * Reverse Index (RI).\n *\n * Move up one line.\n */\nhterm.VT.CC1['\\x8d'] =\nhterm.VT.ESC['M'] = function() {\n this.terminal.reverseLineFeed();\n};\n\n/**\n * Single Shift 2 (SS2).\n *\n * Select of G2 Character Set for the next character only.\n *\n * Not currently implemented.\n */\nhterm.VT.CC1['\\x8e'] =\nhterm.VT.ESC['N'] = hterm.VT.ignore;\n\n/**\n * Single Shift 3 (SS3).\n *\n * Select of G3 Character Set for the next character only.\n *\n * Not currently implemented.\n */\nhterm.VT.CC1['\\x8f'] =\nhterm.VT.ESC['O'] = hterm.VT.ignore;\n\n/**\n * Device Control String (DCS).\n *\n * Indicate a DCS sequence. See Device-Control functions in [XTERM].\n * Not currently implemented.\n *\n * TODO(rginda): Consider implementing DECRQSS, the rest don't seem applicable.\n */\nhterm.VT.CC1['\\x90'] =\nhterm.VT.ESC['P'] = function(parseState) {\n parseState.resetArguments();\n parseState.func = this.parseUntilStringTerminator_;\n};\n\n/**\n * Start of Guarded Area (SPA).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x96'] =\nhterm.VT.ESC['V'] = hterm.VT.ignore;\n\n/**\n * End of Guarded Area (EPA).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x97'] =\nhterm.VT.ESC['W'] = hterm.VT.ignore;\n\n/**\n * Start of String (SOS).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x98'] =\nhterm.VT.ESC['X'] = hterm.VT.ignore;\n\n/**\n * Single Character Introducer (SCI, also DECID).\n *\n * Return Terminal ID. Obsolete form of 'ESC [ c' (DA).\n */\nhterm.VT.CC1['\\x9a'] =\nhterm.VT.ESC['Z'] = function() {\n this.terminal.io.sendString('\\x1b[?1;2c');\n};\n\n/**\n * Control Sequence Introducer (CSI).\n *\n * The lead into most escape sequences. See [CSI].\n */\nhterm.VT.CC1['\\x9b'] =\nhterm.VT.ESC['['] = function(parseState) {\n parseState.resetArguments();\n this.leadingModifier_ = '';\n this.trailingModifier_ = '';\n parseState.func = this.parseCSI_;\n};\n\n/**\n * String Terminator (ST).\n *\n * Used to terminate DCS/OSC/PM/APC commands which may take string arguments.\n *\n * We don't directly handle it here, as it's only used to terminate other\n * sequences. See the 'parseUntilStringTerminator_' method.\n */\nhterm.VT.CC1['\\x9c'] =\nhterm.VT.ESC['\\\\'] = hterm.VT.ignore;\n\n/**\n * Operating System Command (OSC).\n *\n * Commands relating to the operating system.\n */\nhterm.VT.CC1['\\x9d'] =\nhterm.VT.ESC[']'] = function(parseState) {\n parseState.resetArguments();\n\n function parseOSC(parseState) {\n if (!this.parseUntilStringTerminator_(parseState)) {\n // The string sequence was too long.\n return;\n }\n\n if (parseState.func == parseOSC) {\n // We're not done parsing the string yet.\n return;\n }\n\n // We're done.\n var ary = parseState.args[0].match(/^(\\d+);(.*)$/);\n if (ary) {\n parseState.args[0] = ary[2];\n this.dispatch('OSC', ary[1], parseState);\n } else {\n console.warn('Invalid OSC: ' + JSON.stringify(parseState.args[0]));\n }\n };\n\n parseState.func = parseOSC;\n};\n\n/**\n * Privacy Message (PM).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x9e'] =\nhterm.VT.ESC['^'] = function(parseState) {\n parseState.resetArguments();\n parseState.func = this.parseUntilStringTerminator_;\n};\n\n/**\n * Application Program Control (APC).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x9f'] =\nhterm.VT.ESC['_'] = function(parseState) {\n parseState.resetArguments();\n parseState.func = this.parseUntilStringTerminator_;\n};\n\n/**\n * ESC \\x20 - Unclear to me where these originated, possibly in xterm.\n *\n * Not currently implemented:\n * ESC \\x20 F - Select 7 bit escape codes in responses (S7C1T).\n * ESC \\x20 G - Select 8 bit escape codes in responses (S8C1T).\n * NB: We currently assume S7C1T always.\n *\n * Will not implement:\n * ESC \\x20 L - Set ANSI conformance level 1.\n * ESC \\x20 M - Set ANSI conformance level 2.\n * ESC \\x20 N - Set ANSI conformance level 3.\n */\nhterm.VT.ESC['\\x20'] = function(parseState) {\n parseState.func = function(parseState) {\n var ch = parseState.consumeChar();\n if (this.warnUnimplemented)\n console.warn('Unimplemented sequence: ESC 0x20 ' + ch);\n parseState.resetParseFunction();\n };\n};\n\n/**\n * DEC 'ESC #' sequences.\n */\nhterm.VT.ESC['#'] = function(parseState) {\n parseState.func = function(parseState) {\n var ch = parseState.consumeChar();\n if (ch == '8') // DEC Screen Alignment Test (DECALN)\n this.terminal.fill('E');\n\n parseState.resetParseFunction();\n };\n};\n\n/**\n * Designate Other Coding System (DOCS).\n */\nhterm.VT.ESC['%'] = function(parseState) {\n parseState.func = function(parseState) {\n var ch = parseState.consumeChar();\n\n // If we've locked the encoding, then just eat the bytes and return.\n if (this.codingSystemLocked_) {\n if (ch == '/')\n parseState.consumeChar();\n parseState.resetParseFunction();\n return;\n }\n\n // Process the encoding requests.\n switch (ch) {\n case '@':\n // Switch to ECMA 35.\n this.setEncoding('iso-2022');\n break;\n\n case 'G':\n // Switch to UTF-8.\n this.setEncoding('utf-8');\n break;\n\n case '/':\n // One way transition to something else.\n ch = parseState.consumeChar();\n switch (ch) {\n case 'G': // UTF-8 Level 1.\n case 'H': // UTF-8 Level 2.\n case 'I': // UTF-8 Level 3.\n // We treat all UTF-8 levels the same.\n this.setEncoding('utf-8-locked');\n break;\n\n default:\n if (this.warnUnimplemented)\n console.warn('Unknown ESC % / argument: ' + JSON.stringify(ch));\n break;\n }\n break;\n\n default:\n if (this.warnUnimplemented)\n console.warn('Unknown ESC % argument: ' + JSON.stringify(ch));\n break;\n }\n\n parseState.resetParseFunction();\n };\n};\n\n/**\n * Character Set Selection (SCS).\n *\n * ESC ( Ps - Set G0 character set (VT100).\n * ESC ) Ps - Set G1 character set (VT220).\n * ESC * Ps - Set G2 character set (VT220).\n * ESC + Ps - Set G3 character set (VT220).\n * ESC - Ps - Set G1 character set (VT300).\n * ESC . Ps - Set G2 character set (VT300).\n * ESC / Ps - Set G3 character set (VT300).\n *\n * All other sequences are echoed to the terminal.\n */\nhterm.VT.ESC['('] =\nhterm.VT.ESC[')'] =\nhterm.VT.ESC['*'] =\nhterm.VT.ESC['+'] =\nhterm.VT.ESC['-'] =\nhterm.VT.ESC['.'] =\nhterm.VT.ESC['/'] = function(parseState, code) {\n parseState.func = function(parseState) {\n var ch = parseState.consumeChar();\n if (ch == '\\x1b') {\n parseState.resetParseFunction();\n parseState.func();\n return;\n }\n\n var map = this.characterMaps.getMap(ch);\n if (map !== undefined) {\n if (code == '(') {\n this.G0 = map;\n } else if (code == ')' || code == '-') {\n this.G1 = map;\n } else if (code == '*' || code == '.') {\n this.G2 = map;\n } else if (code == '+' || code == '/') {\n this.G3 = map;\n }\n } else if (this.warnUnimplemented) {\n console.log('Invalid character set for \"' + code + '\": ' + ch);\n }\n\n parseState.resetParseFunction();\n };\n};\n\n/**\n * Back Index (DECBI).\n *\n * VT420 and up. Not currently implemented.\n */\nhterm.VT.ESC['6'] = hterm.VT.ignore;\n\n/**\n * Save Cursor (DECSC).\n */\nhterm.VT.ESC['7'] = function() {\n this.savedState_.save();\n};\n\n/**\n * Restore Cursor (DECRC).\n */\nhterm.VT.ESC['8'] = function() {\n this.savedState_.restore();\n};\n\n/**\n * Forward Index (DECFI).\n *\n * VT210 and up. Not currently implemented.\n */\nhterm.VT.ESC['9'] = hterm.VT.ignore;\n\n/**\n * Application keypad (DECKPAM).\n */\nhterm.VT.ESC['='] = function() {\n this.terminal.keyboard.applicationKeypad = true;\n};\n\n/**\n * Normal keypad (DECKPNM).\n */\nhterm.VT.ESC['>'] = function() {\n this.terminal.keyboard.applicationKeypad = false;\n};\n\n/**\n * Cursor to lower left corner of screen.\n *\n * Will not implement.\n *\n * This is only recognized by xterm when the hpLowerleftBugCompat resource is\n * set.\n */\nhterm.VT.ESC['F'] = hterm.VT.ignore;\n\n/**\n * Full Reset (RIS).\n */\nhterm.VT.ESC['c'] = function() {\n this.reset();\n this.terminal.reset();\n};\n\n/**\n * Memory lock/unlock.\n *\n * Will not implement.\n */\nhterm.VT.ESC['l'] =\nhterm.VT.ESC['m'] = hterm.VT.ignore;\n\n/**\n * Lock Shift 2 (LS2)\n *\n * Invoke the G2 Character Set as GL.\n */\nhterm.VT.ESC['n'] = function() {\n this.GL = 'G2';\n};\n\n/**\n * Lock Shift 3 (LS3)\n *\n * Invoke the G3 Character Set as GL.\n */\nhterm.VT.ESC['o'] = function() {\n this.GL = 'G3';\n};\n\n/**\n * Lock Shift 2, Right (LS3R)\n *\n * Invoke the G3 Character Set as GR.\n */\nhterm.VT.ESC['|'] = function() {\n this.GR = 'G3';\n};\n\n/**\n * Lock Shift 2, Right (LS2R)\n *\n * Invoke the G2 Character Set as GR.\n */\nhterm.VT.ESC['}'] = function() {\n this.GR = 'G2';\n};\n\n/**\n * Lock Shift 1, Right (LS1R)\n *\n * Invoke the G1 Character Set as GR.\n */\nhterm.VT.ESC['~'] = function() {\n this.GR = 'G1';\n};\n\n/**\n * Change icon name and window title.\n *\n * We only change the window title.\n */\nhterm.VT.OSC['0'] = function(parseState) {\n this.terminal.setWindowTitle(parseState.args[0]);\n};\n\n/**\n * Change window title.\n */\nhterm.VT.OSC['2'] = hterm.VT.OSC['0'];\n\n/**\n * Set/read color palette.\n */\nhterm.VT.OSC['4'] = function(parseState) {\n // Args come in as a single 'index1;rgb1 ... ;indexN;rgbN' string.\n // We split on the semicolon and iterate through the pairs.\n var args = parseState.args[0].split(';');\n\n var pairCount = parseInt(args.length / 2);\n var colorPalette = this.terminal.getTextAttributes().colorPalette;\n var responseArray = [];\n\n for (var pairNumber = 0; pairNumber < pairCount; ++pairNumber) {\n var colorIndex = parseInt(args[pairNumber * 2]);\n var colorValue = args[pairNumber * 2 + 1];\n\n if (colorIndex >= colorPalette.length)\n continue;\n\n if (colorValue == '?') {\n // '?' means we should report back the current color value.\n colorValue = lib.colors.rgbToX11(colorPalette[colorIndex]);\n if (colorValue)\n responseArray.push(colorIndex + ';' + colorValue);\n\n continue;\n }\n\n colorValue = lib.colors.x11ToCSS(colorValue);\n if (colorValue)\n colorPalette[colorIndex] = colorValue;\n }\n\n if (responseArray.length)\n this.terminal.io.sendString('\\x1b]4;' + responseArray.join(';') + '\\x07');\n};\n\n/**\n * iTerm2 growl notifications.\n */\nhterm.VT.OSC['9'] = function(parseState) {\n // This just dumps the entire string as the message.\n hterm.notify({'body': parseState.args[0]});\n};\n\n/**\n * Change VT100 text foreground color.\n */\nhterm.VT.OSC['10'] = function(parseState) {\n // Args come in as a single string, but extra args will chain to the following\n // OSC sequences.\n var args = parseState.args[0].split(';');\n if (!args)\n return;\n\n var colorArg;\n var colorX11 = lib.colors.x11ToCSS(args.shift());\n if (colorX11)\n this.terminal.setForegroundColor(colorX11);\n\n if (args.length > 0) {\n parseState.args[0] = args.join(';');\n hterm.VT.OSC['11'].apply(this, [parseState]);\n }\n};\n\n/**\n * Change VT100 text background color.\n */\nhterm.VT.OSC['11'] = function(parseState) {\n // Args come in as a single string, but extra args will chain to the following\n // OSC sequences.\n var args = parseState.args[0].split(';');\n if (!args)\n return;\n\n var colorArg;\n var colorX11 = lib.colors.x11ToCSS(args.shift());\n if (colorX11)\n this.terminal.setBackgroundColor(colorX11);\n\n /* Note: If we support OSC 12+, we'd chain it here.\n if (args.length > 0) {\n parseState.args[0] = args.join(';');\n hterm.VT.OSC['12'].apply(this, [parseState]);\n }\n */\n};\n\n/**\n * Set the cursor shape.\n *\n * Parameter is expected to be in the form \"CursorShape=number\", where number is\n * one of:\n *\n * 0 - Block\n * 1 - I-Beam\n * 2 - Underline\n *\n * This is a bit of a de-facto standard supported by iTerm 2 and Konsole. See\n * also: DECSCUSR.\n *\n * Invalid numbers will restore the cursor to the block shape.\n */\nhterm.VT.OSC['50'] = function(parseState) {\n var args = parseState.args[0].match(/CursorShape=(.)/i);\n if (!args) {\n console.warn('Could not parse OSC 50 args: ' + parseState.args[0]);\n return;\n }\n\n switch (args[1]) {\n case '1': // CursorShape=1: I-Beam.\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BEAM);\n break;\n\n case '2': // CursorShape=2: Underline.\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.UNDERLINE);\n break;\n\n default: // CursorShape=0: Block.\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BLOCK);\n }\n};\n\n/**\n * Set/read system clipboard.\n *\n * Read is not implemented due to security considerations. A remote app\n * that is able to both write and read to the clipboard could essentially\n * take over your session.\n *\n * The clipboard data will be decoded according to the 'receive-encoding'\n * preference.\n */\nhterm.VT.OSC['52'] = function(parseState) {\n // Args come in as a single 'clipboard;b64-data' string. The clipboard\n // parameter is used to select which of the X clipboards to address. Since\n // we're not integrating with X, we treat them all the same.\n var args = parseState.args[0].match(/^[cps01234567]*;(.*)/);\n if (!args)\n return;\n\n var data = window.atob(args[1]);\n if (data)\n this.terminal.copyStringToClipboard(this.decode(data));\n};\n\n/**\n * URxvt perl modules.\n *\n * This is the escape system used by rxvt-unicode and its perl modules.\n * Obviously we don't support perl or custom modules, so we list a few common\n * ones that we find useful.\n *\n * Technically there is no format here, but most modules obey:\n * ;\n */\nhterm.VT.OSC['777'] = function(parseState) {\n var ary;\n var urxvtMod = parseState.args[0].split(';', 1)[0];\n\n switch (urxvtMod) {\n case 'notify':\n // Format:\n // notify;title;message\n var title, message;\n ary = parseState.args[0].match(/^[^;]+;([^;]*)(;([\\s\\S]*))?$/);\n if (ary) {\n title = ary[1];\n message = ary[3];\n }\n hterm.notify({'title': title, 'body': message});\n break;\n\n default:\n console.warn('Unknown urxvt module: ' + parseState.args[0]);\n break;\n }\n};\n\n/**\n * Insert (blank) characters (ICH).\n */\nhterm.VT.CSI['@'] = function(parseState) {\n this.terminal.insertSpace(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Up (CUU).\n */\nhterm.VT.CSI['A'] = function(parseState) {\n this.terminal.cursorUp(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Down (CUD).\n */\nhterm.VT.CSI['B'] = function(parseState) {\n this.terminal.cursorDown(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Forward (CUF).\n */\nhterm.VT.CSI['C'] = function(parseState) {\n this.terminal.cursorRight(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Backward (CUB).\n */\nhterm.VT.CSI['D'] = function(parseState) {\n this.terminal.cursorLeft(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Next Line (CNL).\n *\n * This is like Cursor Down, except the cursor moves to the beginning of the\n * line as well.\n */\nhterm.VT.CSI['E'] = function(parseState) {\n this.terminal.cursorDown(parseState.iarg(0, 1));\n this.terminal.setCursorColumn(0);\n};\n\n/**\n * Cursor Preceding Line (CPL).\n *\n * This is like Cursor Up, except the cursor moves to the beginning of the\n * line as well.\n */\nhterm.VT.CSI['F'] = function(parseState) {\n this.terminal.cursorUp(parseState.iarg(0, 1));\n this.terminal.setCursorColumn(0);\n};\n\n/**\n * Cursor Character Absolute (CHA).\n */\nhterm.VT.CSI['G'] = function(parseState) {\n this.terminal.setCursorColumn(parseState.iarg(0, 1) - 1);\n};\n\n/**\n * Cursor Position (CUP).\n */\nhterm.VT.CSI['H'] = function(parseState) {\n this.terminal.setCursorPosition(parseState.iarg(0, 1) - 1,\n parseState.iarg(1, 1) - 1);\n};\n\n/**\n * Cursor Forward Tabulation (CHT).\n */\nhterm.VT.CSI['I'] = function(parseState) {\n var count = parseState.iarg(0, 1);\n count = lib.f.clamp(count, 1, this.terminal.screenSize.width);\n for (var i = 0; i < count; i++) {\n this.terminal.forwardTabStop();\n }\n};\n\n/**\n * Erase in Display (ED, DECSED).\n */\nhterm.VT.CSI['J'] =\nhterm.VT.CSI['?J'] = function(parseState, code) {\n var arg = parseState.args[0];\n\n if (!arg || arg == 0) {\n this.terminal.eraseBelow();\n } else if (arg == 1) {\n this.terminal.eraseAbove();\n } else if (arg == 2) {\n this.terminal.clear();\n } else if (arg == 3) {\n // The xterm docs say this means \"Erase saved lines\", but we'll just clear\n // the display since killing the scrollback seems rude.\n this.terminal.clear();\n }\n};\n\n/**\n * Erase in line (EL, DECSEL).\n */\nhterm.VT.CSI['K'] =\nhterm.VT.CSI['?K'] = function(parseState, code) {\n var arg = parseState.args[0];\n\n if (!arg || arg == 0) {\n this.terminal.eraseToRight();\n } else if (arg == 1) {\n this.terminal.eraseToLeft();\n } else if (arg == 2) {\n this.terminal.eraseLine();\n }\n};\n\n/**\n * Insert Lines (IL).\n */\nhterm.VT.CSI['L'] = function(parseState) {\n this.terminal.insertLines(parseState.iarg(0, 1));\n};\n\n/**\n * Delete Lines (DL).\n */\nhterm.VT.CSI['M'] = function(parseState) {\n this.terminal.deleteLines(parseState.iarg(0, 1));\n};\n\n/**\n * Delete Characters (DCH).\n *\n * This command shifts the line contents left, starting at the cursor position.\n */\nhterm.VT.CSI['P'] = function(parseState) {\n this.terminal.deleteChars(parseState.iarg(0, 1));\n};\n\n/**\n * Scroll Up (SU).\n */\nhterm.VT.CSI['S'] = function(parseState) {\n this.terminal.vtScrollUp(parseState.iarg(0, 1));\n};\n\n/**\n * Scroll Down (SD).\n * Also 'Initiate highlight mouse tracking'. Will not implement this part.\n */\nhterm.VT.CSI['T'] = function(parseState) {\n if (parseState.args.length <= 1)\n this.terminal.vtScrollDown(parseState.iarg(0, 1));\n};\n\n/**\n * Reset one or more features of the title modes to the default value.\n *\n * ESC [ > Ps T\n *\n * Normally, \"reset\" disables the feature. It is possible to disable the\n * ability to reset features by compiling a different default for the title\n * modes into xterm.\n *\n * Ps values:\n * 0 - Do not set window/icon labels using hexadecimal.\n * 1 - Do not query window/icon labels using hexadecimal.\n * 2 - Do not set window/icon labels using UTF-8.\n * 3 - Do not query window/icon labels using UTF-8.\n *\n * Will not implement.\n */\nhterm.VT.CSI['>T'] = hterm.VT.ignore;\n\n/**\n * Erase Characters (ECH).\n */\nhterm.VT.CSI['X'] = function(parseState) {\n this.terminal.eraseToRight(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Backward Tabulation (CBT).\n */\nhterm.VT.CSI['Z'] = function(parseState) {\n var count = parseState.iarg(0, 1);\n count = lib.f.clamp(count, 1, this.terminal.screenSize.width);\n for (var i = 0; i < count; i++) {\n this.terminal.backwardTabStop();\n }\n};\n\n/**\n * Character Position Absolute (HPA).\n *\n * Same as Cursor Character Absolute (CHA).\n */\nhterm.VT.CSI['`'] = hterm.VT.CSI['G'];\n\n/**\n * Character Position Relative (HPR).\n */\nhterm.VT.CSI['a'] = function(parseState) {\n this.terminal.setCursorColumn(this.terminal.getCursorColumn() +\n parseState.iarg(0, 1));\n};\n\n/**\n * Repeat the preceding graphic character.\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['b'] = hterm.VT.ignore;\n\n/**\n * Send Device Attributes (Primary DA).\n *\n * TODO(rginda): This is hardcoded to send back 'VT100 with Advanced Video\n * Option', but it may be more correct to send a VT220 response once\n * we fill out the 'Not currently implemented' parts.\n */\nhterm.VT.CSI['c'] = function(parseState) {\n if (!parseState.args[0] || parseState.args[0] == 0) {\n this.terminal.io.sendString('\\x1b[?1;2c');\n }\n};\n\n/**\n * Send Device Attributes (Secondary DA).\n *\n * TODO(rginda): This is hardcoded to send back 'VT100' but it may be more\n * correct to send a VT220 response once we fill out more 'Not currently\n * implemented' parts.\n */\nhterm.VT.CSI['>c'] = function(parseState) {\n this.terminal.io.sendString('\\x1b[>0;256;0c');\n};\n\n/**\n * Line Position Absolute (VPA).\n */\nhterm.VT.CSI['d'] = function(parseState) {\n this.terminal.setAbsoluteCursorRow(parseState.iarg(0, 1) - 1);\n};\n\n/**\n * Horizontal and Vertical Position (HVP).\n *\n * Same as Cursor Position (CUP).\n */\nhterm.VT.CSI['f'] = hterm.VT.CSI['H'];\n\n/**\n * Tab Clear (TBC).\n */\nhterm.VT.CSI['g'] = function(parseState) {\n if (!parseState.args[0] || parseState.args[0] == 0) {\n // Clear tab stop at cursor.\n this.terminal.clearTabStopAtCursor(false);\n } else if (parseState.args[0] == 3) {\n // Clear all tab stops.\n this.terminal.clearAllTabStops();\n }\n};\n\n/**\n * Set Mode (SM).\n */\nhterm.VT.CSI['h'] = function(parseState) {\n for (var i = 0; i < parseState.args.length; i++) {\n this.setANSIMode(parseState.args[i], true);\n }\n};\n\n/**\n * DEC Private Mode Set (DECSET).\n */\nhterm.VT.CSI['?h'] = function(parseState) {\n for (var i = 0; i < parseState.args.length; i++) {\n this.setDECMode(parseState.args[i], true);\n }\n};\n\n/**\n * Media Copy (MC).\n * Media Copy (MC, DEC Specific).\n *\n * These commands control the printer. Will not implement.\n */\nhterm.VT.CSI['i'] =\nhterm.VT.CSI['?i'] = hterm.VT.ignore;\n\n/**\n * Reset Mode (RM).\n */\nhterm.VT.CSI['l'] = function(parseState) {\n for (var i = 0; i < parseState.args.length; i++) {\n this.setANSIMode(parseState.args[i], false);\n }\n};\n\n/**\n * DEC Private Mode Reset (DECRST).\n */\nhterm.VT.CSI['?l'] = function(parseState) {\n for (var i = 0; i < parseState.args.length; i++) {\n this.setDECMode(parseState.args[i], false);\n }\n};\n\n/**\n * Character Attributes (SGR).\n *\n * Iterate through the list of arguments, applying the attribute changes based\n * on the argument value...\n */\nhterm.VT.CSI['m'] = function(parseState) {\n function get256(i) {\n if (parseState.args.length < i + 2 || parseState.args[i + 1] != 5)\n return null;\n\n return parseState.iarg(i + 2, 0);\n }\n\n function getTrueColor(i) {\n if (parseState.args.length < i + 5 || parseState.args[i + 1] != 2)\n return null;\n var r = parseState.iarg(i + 2, 0);\n var g = parseState.iarg(i + 3, 0);\n var b = parseState.iarg(i + 4, 0);\n\n return 'rgb(' + r + ' ,' + g + ' ,' + b + ')';\n }\n\n var attrs = this.terminal.getTextAttributes();\n\n if (!parseState.args.length) {\n attrs.reset();\n return;\n }\n\n for (var i = 0; i < parseState.args.length; i++) {\n var arg = parseState.iarg(i, 0);\n\n if (arg < 30) {\n if (arg == 0) { // Normal (default).\n attrs.reset();\n } else if (arg == 1) { // Bold.\n attrs.bold = true;\n } else if (arg == 2) { // Faint.\n attrs.faint = true;\n } else if (arg == 3) { // Italic.\n attrs.italic = true;\n } else if (arg == 4) { // Underline.\n attrs.underline = true;\n } else if (arg == 5) { // Blink.\n attrs.blink = true;\n } else if (arg == 7) { // Inverse.\n attrs.inverse = true;\n } else if (arg == 8) { // Invisible.\n attrs.invisible = true;\n } else if (arg == 9) { // Crossed out.\n attrs.strikethrough = true;\n } else if (arg == 22) { // Not bold & not faint.\n attrs.bold = false;\n attrs.faint = false;\n } else if (arg == 23) { // Not italic.\n attrs.italic = false;\n } else if (arg == 24) { // Not underlined.\n attrs.underline = false;\n } else if (arg == 25) { // Not blink.\n attrs.blink = false;\n } else if (arg == 27) { // Steady.\n attrs.inverse = false;\n } else if (arg == 28) { // Visible.\n attrs.invisible = false;\n } else if (arg == 29) { // Not crossed out.\n attrs.strikethrough = false;\n }\n\n } else if (arg < 50) {\n // Select fore/background color from bottom half of 16 color palette\n // or from the 256 color palette or alternative specify color in fully\n // qualified rgb(r, g, b) form.\n if (arg < 38) {\n attrs.foregroundSource = arg - 30;\n\n } else if (arg == 38) {\n // First check for true color definition\n var trueColor = getTrueColor(i);\n if (trueColor != null) {\n attrs.foregroundSource = attrs.SRC_RGB;\n attrs.foreground = trueColor;\n\n i += 5;\n } else {\n // Check for 256 color\n var c = get256(i);\n if (c == null)\n break;\n\n i += 2;\n\n if (c >= attrs.colorPalette.length)\n continue;\n\n attrs.foregroundSource = c;\n }\n\n } else if (arg == 39) {\n attrs.foregroundSource = attrs.SRC_DEFAULT;\n\n } else if (arg < 48) {\n attrs.backgroundSource = arg - 40;\n\n } else if (arg == 48) {\n // First check for true color definition\n var trueColor = getTrueColor(i);\n if (trueColor != null) {\n attrs.backgroundSource = attrs.SRC_RGB;\n attrs.background = trueColor;\n\n i += 5;\n } else {\n // Check for 256 color\n var c = get256(i);\n if (c == null)\n break;\n\n i += 2;\n\n if (c >= attrs.colorPalette.length)\n continue;\n\n attrs.backgroundSource = c;\n }\n } else {\n attrs.backgroundSource = attrs.SRC_DEFAULT;\n }\n\n } else if (arg >= 90 && arg <= 97) {\n attrs.foregroundSource = arg - 90 + 8;\n\n } else if (arg >= 100 && arg <= 107) {\n attrs.backgroundSource = arg - 100 + 8;\n }\n }\n\n attrs.setDefaults(this.terminal.getForegroundColor(),\n this.terminal.getBackgroundColor());\n};\n\n/**\n * Set xterm-specific keyboard modes.\n *\n * Will not implement.\n */\nhterm.VT.CSI['>m'] = hterm.VT.ignore;\n\n/**\n * Device Status Report (DSR, DEC Specific).\n *\n * 5 - Status Report. Result (OK) is CSI 0 n\n * 6 - Report Cursor Position (CPR) [row;column]. Result is CSI r ; c R\n */\nhterm.VT.CSI['n'] = function(parseState) {\n if (parseState.args[0] == 5) {\n this.terminal.io.sendString('\\x1b0n');\n } else if (parseState.args[0] == 6) {\n var row = this.terminal.getCursorRow() + 1;\n var col = this.terminal.getCursorColumn() + 1;\n this.terminal.io.sendString('\\x1b[' + row + ';' + col + 'R');\n }\n};\n\n/**\n * Disable modifiers which may be enabled via CSI['>m'].\n *\n * Will not implement.\n */\nhterm.VT.CSI['>n'] = hterm.VT.ignore;\n\n/**\n * Device Status Report (DSR, DEC Specific).\n *\n * 6 - Report Cursor Position (CPR) [row;column] as CSI ? r ; c R\n * 15 - Report Printer status as CSI ? 1 0 n (ready) or\n * CSI ? 1 1 n (not ready).\n * 25 - Report UDK status as CSI ? 2 0 n (unlocked) or CSI ? 2 1 n (locked).\n * 26 - Report Keyboard status as CSI ? 2 7 ; 1 ; 0 ; 0 n (North American).\n * The last two parameters apply to VT400 & up, and denote keyboard ready\n * and LK01 respectively.\n * 53 - Report Locator status as CSI ? 5 3 n Locator available, if compiled-in,\n * or CSI ? 5 0 n No Locator, if not.\n */\nhterm.VT.CSI['?n'] = function(parseState) {\n if (parseState.args[0] == 6) {\n var row = this.terminal.getCursorRow() + 1;\n var col = this.terminal.getCursorColumn() + 1;\n this.terminal.io.sendString('\\x1b[' + row + ';' + col + 'R');\n } else if (parseState.args[0] == 15) {\n this.terminal.io.sendString('\\x1b[?11n');\n } else if (parseState.args[0] == 25) {\n this.terminal.io.sendString('\\x1b[?21n');\n } else if (parseState.args[0] == 26) {\n this.terminal.io.sendString('\\x1b[?12;1;0;0n');\n } else if (parseState.args[0] == 53) {\n this.terminal.io.sendString('\\x1b[?50n');\n }\n};\n\n/**\n * This is used by xterm to decide whether to hide the pointer cursor as the\n * user types.\n *\n * Valid values for the parameter:\n * 0 - Never hide the pointer.\n * 1 - Hide if the mouse tracking mode is not enabled.\n * 2 - Always hide the pointer.\n *\n * If no parameter is given, xterm uses the default, which is 1.\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['>p'] = hterm.VT.ignore;\n\n/**\n * Soft terminal reset (DECSTR).\n */\nhterm.VT.CSI['!p'] = function() {\n this.reset();\n this.terminal.softReset();\n};\n\n/**\n * Request ANSI Mode (DECRQM).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['$p'] = hterm.VT.ignore;\nhterm.VT.CSI['?$p'] = hterm.VT.ignore;\n\n/**\n * Set conformance level (DECSCL).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['\"p'] = hterm.VT.ignore;\n\n/**\n * Load LEDs (DECLL).\n *\n * Not currently implemented. Could be implemented as virtual LEDs overlaying\n * the terminal if anyone cares.\n */\nhterm.VT.CSI['q'] = hterm.VT.ignore;\n\n/**\n * Set cursor style (DECSCUSR, VT520).\n */\nhterm.VT.CSI[' q'] = function(parseState) {\n var arg = parseState.args[0];\n\n if (arg == 0 || arg == 1) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BLOCK);\n this.terminal.setCursorBlink(true);\n } else if (arg == 2) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BLOCK);\n this.terminal.setCursorBlink(false);\n } else if (arg == 3) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.UNDERLINE);\n this.terminal.setCursorBlink(true);\n } else if (arg == 4) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.UNDERLINE);\n this.terminal.setCursorBlink(false);\n } else if (arg == 5) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BEAM);\n this.terminal.setCursorBlink(true);\n } else if (arg == 6) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BEAM);\n this.terminal.setCursorBlink(false);\n } else {\n console.warn('Unknown cursor style: ' + arg);\n }\n};\n\n/**\n * Select character protection attribute (DECSCA).\n *\n * Will not implement.\n */\nhterm.VT.CSI['\"q'] = hterm.VT.ignore;\n\n/**\n * Set Scrolling Region (DECSTBM).\n */\nhterm.VT.CSI['r'] = function(parseState) {\n var args = parseState.args;\n var scrollTop = args[0] ? parseInt(args[0], 10) -1 : null;\n var scrollBottom = args[1] ? parseInt(args[1], 10) - 1 : null;\n this.terminal.setVTScrollRegion(scrollTop, scrollBottom);\n this.terminal.setCursorPosition(0, 0);\n};\n\n/**\n * Restore DEC Private Mode Values.\n *\n * Will not implement.\n */\nhterm.VT.CSI['?r'] = hterm.VT.ignore;\n\n/**\n * Change Attributes in Rectangular Area (DECCARA)\n *\n * Will not implement.\n */\nhterm.VT.CSI['$r'] = hterm.VT.ignore;\n\n/**\n * Save cursor (ANSI.SYS)\n */\nhterm.VT.CSI['s'] = function() {\n this.savedState_.save();\n};\n\n/**\n * Save DEC Private Mode Values.\n *\n * Will not implement.\n */\nhterm.VT.CSI['?s'] = hterm.VT.ignore;\n\n/**\n * Window manipulation (from dtterm, as well as extensions).\n *\n * Will not implement.\n */\nhterm.VT.CSI['t'] = hterm.VT.ignore;\n\n/**\n * Reverse Attributes in Rectangular Area (DECRARA).\n *\n * Will not implement.\n */\nhterm.VT.CSI['$t'] = hterm.VT.ignore;\n\n/**\n * Set one or more features of the title modes.\n *\n * Will not implement.\n */\nhterm.VT.CSI['>t'] = hterm.VT.ignore;\n\n/**\n * Set warning-bell volume (DECSWBV, VT520).\n *\n * Will not implement.\n */\nhterm.VT.CSI[' t'] = hterm.VT.ignore;\n\n/**\n * Restore cursor (ANSI.SYS).\n */\nhterm.VT.CSI['u'] = function() {\n this.savedState_.restore();\n};\n\n/**\n * Set margin-bell volume (DECSMBV, VT520).\n *\n * Will not implement.\n */\nhterm.VT.CSI[' u'] = hterm.VT.ignore;\n\n/**\n * Copy Rectangular Area (DECCRA, VT400 and up).\n *\n * Will not implement.\n */\nhterm.VT.CSI['$v'] = hterm.VT.ignore;\n\n/**\n * Enable Filter Rectangle (DECEFR).\n *\n * Will not implement.\n */\nhterm.VT.CSI['\\'w'] = hterm.VT.ignore;\n\n/**\n * Request Terminal Parameters (DECREQTPARM).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['x'] = hterm.VT.ignore;\n\n/**\n * Select Attribute Change Extent (DECSACE).\n *\n * Will not implement.\n */\nhterm.VT.CSI['*x'] = hterm.VT.ignore;\n\n/**\n * Fill Rectangular Area (DECFRA), VT420 and up.\n *\n * Will not implement.\n */\nhterm.VT.CSI['$x'] = hterm.VT.ignore;\n\n/**\n * vt_tiledata (as used by NAOhack and UnNetHack)\n * (see https://nethackwiki.com/wiki/Vt_tiledata for more info)\n *\n * Implemented as far as we care (start a glyph and end a glyph).\n */\nhterm.VT.CSI['z'] = function(parseState) {\n if (parseState.args.length < 1)\n return;\n var arg = parseState.args[0];\n if (arg == 0) {\n // Start a glyph (one parameter, the glyph number).\n if (parseState.args.length < 2)\n return;\n this.terminal.getTextAttributes().tileData = parseState.args[1];\n } else if (arg == 1) {\n // End a glyph.\n this.terminal.getTextAttributes().tileData = null;\n }\n};\n\n/**\n * Enable Locator Reporting (DECELR).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['\\'z'] = hterm.VT.ignore;\n\n/**\n * Erase Rectangular Area (DECERA), VT400 and up.\n *\n * Will not implement.\n */\nhterm.VT.CSI['$z'] = hterm.VT.ignore;\n\n/**\n * Select Locator Events (DECSLE).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['\\'{'] = hterm.VT.ignore;\n\n/**\n * Request Locator Position (DECRQLP).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['\\'|'] = hterm.VT.ignore;\n\n/**\n * Insert Columns (DECIC), VT420 and up.\n *\n * Will not implement.\n */\nhterm.VT.CSI['\\'}'] = hterm.VT.ignore;\n\n/**\n * Delete P s Columns (DECDC), VT420 and up.\n *\n * Will not implement.\n */\nhterm.VT.CSI['\\'~'] = hterm.VT.ignore;\n// SOURCE FILE: hterm/js/hterm_vt_character_map.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f');\n\n/**\n * Character map object.\n *\n * Mapping from received to display character, used depending on the active\n * VT character set.\n *\n * GR maps are not currently supported.\n *\n * @param {string} description A human readable description of this map.\n * @param {Object} glmap The GL mapping from input to output characters.\n */\nhterm.VT.CharacterMap = function(description, glmap) {\n /**\n * Short description for this character set, useful for debugging.\n */\n this.description = description;\n\n /**\n * The function to call to when this map is installed in GL.\n */\n this.GL = null;\n\n // Always keep an unmodified reference to the map.\n // This allows us to sanely reset back to the original state.\n this.glmapBase_ = glmap;\n\n // Now sync the internal state as needed.\n this.sync_();\n};\n\n/**\n * Internal helper for resyncing internal state.\n *\n * Used when the mappings change.\n *\n * @param {Object?} opt_glmap Additional mappings to overlay on top of the\n * base mapping.\n */\nhterm.VT.CharacterMap.prototype.sync_ = function(opt_glmap) {\n // If there are no maps, then reset the state back.\n if (!this.glmapBase_ && !opt_glmap) {\n this.GL = null;\n delete this.glmap_;\n delete this.glre_;\n return;\n }\n\n // Set the the GL mapping. If we're given a custom mapping, then create a\n // new object to hold the merged map. This way we can cleanly reset back.\n if (opt_glmap)\n this.glmap_ = Object.assign({}, this.glmapBase_, opt_glmap);\n else\n this.glmap_ = this.glmapBase_;\n\n var glchars = Object.keys(this.glmap_).map((key) =>\n '\\\\x' + lib.f.zpad(key.charCodeAt(0).toString(16)));\n this.glre_ = new RegExp('[' + glchars.join('') + ']', 'g');\n\n this.GL = (str) => str.replace(this.glre_, (ch) => this.glmap_[ch]);\n};\n\n/**\n * Reset map back to original mappings (discarding runtime updates).\n *\n * Specifically, any calls to setOverrides will be discarded.\n */\nhterm.VT.CharacterMap.prototype.reset = function() {\n // If we haven't been given a custom mapping, then there's nothing to reset.\n if (this.glmap_ !== this.glmapBase_)\n this.sync_();\n};\n\n/**\n * Merge custom changes to this map.\n *\n * The input map need not duplicate the existing mappings as it is merged with\n * the existing base map (what was created with). Subsequent calls to this\n * will throw away previous override settings.\n *\n * @param {Object} glmap The custom map to override existing mappings.\n */\nhterm.VT.CharacterMap.prototype.setOverrides = function(glmap) {\n this.sync_(glmap);\n};\n\n/**\n * Return a copy of this mapping.\n *\n * @return {hterm.VT.CharacterMap} A new hterm.VT.CharacterMap instance.\n */\nhterm.VT.CharacterMap.prototype.clone = function() {\n var map = new hterm.VT.CharacterMap(this.description, this.glmapBase_);\n if (this.glmap_ !== this.glmapBase_)\n map.setOverrides(this.glmap_);\n return map;\n};\n\n/**\n * Table of character maps.\n */\nhterm.VT.CharacterMaps = function() {\n this.maps_ = hterm.VT.CharacterMaps.DefaultMaps;\n\n // Always keep an unmodified reference to the map.\n // This allows us to sanely reset back to the original state.\n this.mapsBase_ = this.maps_;\n};\n\n/**\n * Look up a previously registered map.\n *\n * @param {String} name The name of the map to lookup.\n * @return {hterm.VT.CharacterMap} The map, if it's been registered.\n */\nhterm.VT.CharacterMaps.prototype.getMap = function(name) {\n if (this.maps_.hasOwnProperty(name))\n return this.maps_[name];\n else\n return undefined;\n};\n\n/**\n * Register a new map.\n *\n * Any previously registered maps by this name will be discarded.\n *\n * @param {String} name The name of the map.\n * @param {hterm.VT.CharacterMap} map The map to register.\n */\nhterm.VT.CharacterMaps.prototype.addMap = function(name, map) {\n if (this.maps_ === this.mapsBase_)\n this.maps_ = Object.assign({}, this.mapsBase_);\n this.maps_[name] = map;\n};\n\n/**\n * Reset the table and all its maps back to original state.\n */\nhterm.VT.CharacterMaps.prototype.reset = function() {\n if (this.maps_ !== hterm.VT.CharacterMaps.DefaultMaps)\n this.maps_ = hterm.VT.CharacterMaps.DefaultMaps;\n};\n\n/**\n * Merge custom changes to this table.\n *\n * @param {Object} maps A set of hterm.VT.CharacterMap objects.\n */\nhterm.VT.CharacterMaps.prototype.setOverrides = function(maps) {\n if (this.maps_ === this.mapsBase_)\n this.maps_ = Object.assign({}, this.mapsBase_);\n\n for (var name in maps) {\n var map = this.getMap(name);\n if (map !== undefined) {\n this.maps_[name] = map.clone();\n this.maps_[name].setOverrides(maps[name]);\n } else\n this.addMap(name, new hterm.VT.CharacterMap('user ' + name, maps[name]));\n }\n};\n\n/**\n * The default set of supported character maps.\n */\nhterm.VT.CharacterMaps.DefaultMaps = {};\n\n/**\n * VT100 Graphic character map.\n * http://vt100.net/docs/vt220-rm/table2-4.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['0'] = new hterm.VT.CharacterMap(\n 'graphic', {\n '\\x60':'\\u25c6', // ` -> diamond\n '\\x61':'\\u2592', // a -> grey-box\n '\\x62':'\\u2409', // b -> h/t\n '\\x63':'\\u240c', // c -> f/f\n '\\x64':'\\u240d', // d -> c/r\n '\\x65':'\\u240a', // e -> l/f\n '\\x66':'\\u00b0', // f -> degree\n '\\x67':'\\u00b1', // g -> +/-\n '\\x68':'\\u2424', // h -> n/l\n '\\x69':'\\u240b', // i -> v/t\n '\\x6a':'\\u2518', // j -> bottom-right\n '\\x6b':'\\u2510', // k -> top-right\n '\\x6c':'\\u250c', // l -> top-left\n '\\x6d':'\\u2514', // m -> bottom-left\n '\\x6e':'\\u253c', // n -> line-cross\n '\\x6f':'\\u23ba', // o -> scan1\n '\\x70':'\\u23bb', // p -> scan3\n '\\x71':'\\u2500', // q -> scan5\n '\\x72':'\\u23bc', // r -> scan7\n '\\x73':'\\u23bd', // s -> scan9\n '\\x74':'\\u251c', // t -> left-tee\n '\\x75':'\\u2524', // u -> right-tee\n '\\x76':'\\u2534', // v -> bottom-tee\n '\\x77':'\\u252c', // w -> top-tee\n '\\x78':'\\u2502', // x -> vertical-line\n '\\x79':'\\u2264', // y -> less-equal\n '\\x7a':'\\u2265', // z -> greater-equal\n '\\x7b':'\\u03c0', // { -> pi\n '\\x7c':'\\u2260', // | -> not-equal\n '\\x7d':'\\u00a3', // } -> british-pound\n '\\x7e':'\\u00b7', // ~ -> dot\n });\n\n/**\n * British character map.\n * http://vt100.net/docs/vt220-rm/table2-5.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['A'] = new hterm.VT.CharacterMap(\n 'british', {\n '\\x23': '\\u00a3', // # -> british-pound\n });\n\n/**\n * US ASCII map, no changes.\n */\nhterm.VT.CharacterMaps.DefaultMaps['B'] = new hterm.VT.CharacterMap(\n 'us', null);\n\n/**\n * Dutch character map.\n * http://vt100.net/docs/vt220-rm/table2-6.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['4'] = new hterm.VT.CharacterMap(\n 'dutch', {\n '\\x23': '\\u00a3', // # -> british-pound\n\n '\\x40': '\\u00be', // @ -> 3/4\n\n '\\x5b': '\\u0132', // [ -> 'ij' ligature (xterm goes with \\u00ff?)\n '\\x5c': '\\u00bd', // \\ -> 1/2\n '\\x5d': '\\u007c', // ] -> vertical bar\n\n '\\x7b': '\\u00a8', // { -> two dots\n '\\x7c': '\\u0066', // | -> f\n '\\x7d': '\\u00bc', // } -> 1/4\n '\\x7e': '\\u00b4', // ~ -> acute\n });\n\n/**\n * Finnish character map.\n * http://vt100.net/docs/vt220-rm/table2-7.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['C'] =\nhterm.VT.CharacterMaps.DefaultMaps['5'] = new hterm.VT.CharacterMap(\n 'finnish', {\n '\\x5b': '\\u00c4', // [ -> 'A' umlaut\n '\\x5c': '\\u00d6', // \\ -> 'O' umlaut\n '\\x5d': '\\u00c5', // ] -> 'A' ring\n '\\x5e': '\\u00dc', // ~ -> 'u' umlaut\n\n '\\x60': '\\u00e9', // ` -> 'e' acute\n\n '\\x7b': '\\u00e4', // { -> 'a' umlaut\n '\\x7c': '\\u00f6', // | -> 'o' umlaut\n '\\x7d': '\\u00e5', // } -> 'a' ring\n '\\x7e': '\\u00fc', // ~ -> 'u' umlaut\n });\n\n/**\n * French character map.\n * http://vt100.net/docs/vt220-rm/table2-8.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['R'] = new hterm.VT.CharacterMap(\n 'french', {\n '\\x23': '\\u00a3', // # -> british-pound\n\n '\\x40': '\\u00e0', // @ -> 'a' grave\n\n '\\x5b': '\\u00b0', // [ -> ring\n '\\x5c': '\\u00e7', // \\ -> 'c' cedilla\n '\\x5d': '\\u00a7', // ] -> section symbol (double s)\n\n '\\x7b': '\\u00e9', // { -> 'e' acute\n '\\x7c': '\\u00f9', // | -> 'u' grave\n '\\x7d': '\\u00e8', // } -> 'e' grave\n '\\x7e': '\\u00a8', // ~ -> umlaut\n });\n\n/**\n * French Canadian character map.\n * http://vt100.net/docs/vt220-rm/table2-9.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['Q'] = new hterm.VT.CharacterMap(\n 'french canadian', {\n '\\x40': '\\u00e0', // @ -> 'a' grave\n\n '\\x5b': '\\u00e2', // [ -> 'a' circumflex\n '\\x5c': '\\u00e7', // \\ -> 'c' cedilla\n '\\x5d': '\\u00ea', // ] -> 'e' circumflex\n '\\x5e': '\\u00ee', // ^ -> 'i' circumflex\n\n '\\x60': '\\u00f4', // ` -> 'o' circumflex\n\n '\\x7b': '\\u00e9', // { -> 'e' acute\n '\\x7c': '\\u00f9', // | -> 'u' grave\n '\\x7d': '\\u00e8', // } -> 'e' grave\n '\\x7e': '\\u00fb', // ~ -> 'u' circumflex\n });\n\n/**\n * German character map.\n * http://vt100.net/docs/vt220-rm/table2-10.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['K'] = new hterm.VT.CharacterMap(\n 'german', {\n '\\x40': '\\u00a7', // @ -> section symbol (double s)\n\n '\\x5b': '\\u00c4', // [ -> 'A' umlaut\n '\\x5c': '\\u00d6', // \\ -> 'O' umlaut\n '\\x5d': '\\u00dc', // ] -> 'U' umlaut\n\n '\\x7b': '\\u00e4', // { -> 'a' umlaut\n '\\x7c': '\\u00f6', // | -> 'o' umlaut\n '\\x7d': '\\u00fc', // } -> 'u' umlaut\n '\\x7e': '\\u00df', // ~ -> eszett\n });\n\n/**\n * Italian character map.\n * http://vt100.net/docs/vt220-rm/table2-11.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['Y'] = new hterm.VT.CharacterMap(\n 'italian', {\n '\\x23': '\\u00a3', // # -> british-pound\n\n '\\x40': '\\u00a7', // @ -> section symbol (double s)\n\n '\\x5b': '\\u00b0', // [ -> ring\n '\\x5c': '\\u00e7', // \\ -> 'c' cedilla\n '\\x5d': '\\u00e9', // ] -> 'e' acute\n\n '\\x60': '\\u00f9', // ` -> 'u' grave\n\n '\\x7b': '\\u00e0', // { -> 'a' grave\n '\\x7c': '\\u00f2', // | -> 'o' grave\n '\\x7d': '\\u00e8', // } -> 'e' grave\n '\\x7e': '\\u00ec', // ~ -> 'i' grave\n });\n\n/**\n * Norwegian/Danish character map.\n * http://vt100.net/docs/vt220-rm/table2-12.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['E'] =\nhterm.VT.CharacterMaps.DefaultMaps['6'] = new hterm.VT.CharacterMap(\n 'norwegian/danish', {\n '\\x40': '\\u00c4', // @ -> 'A' umlaut\n\n '\\x5b': '\\u00c6', // [ -> 'AE' ligature\n '\\x5c': '\\u00d8', // \\ -> 'O' stroke\n '\\x5d': '\\u00c5', // ] -> 'A' ring\n '\\x5e': '\\u00dc', // ^ -> 'U' umlaut\n\n '\\x60': '\\u00e4', // ` -> 'a' umlaut\n\n '\\x7b': '\\u00e6', // { -> 'ae' ligature\n '\\x7c': '\\u00f8', // | -> 'o' stroke\n '\\x7d': '\\u00e5', // } -> 'a' ring\n '\\x7e': '\\u00fc', // ~ -> 'u' umlaut\n });\n\n/**\n * Spanish character map.\n * http://vt100.net/docs/vt220-rm/table2-13.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['Z'] = new hterm.VT.CharacterMap(\n 'spanish', {\n '\\x23': '\\u00a3', // # -> british-pound\n\n '\\x40': '\\u00a7', // @ -> section symbol (double s)\n\n '\\x5b': '\\u00a1', // [ -> '!' inverted\n '\\x5c': '\\u00d1', // \\ -> 'N' tilde\n '\\x5d': '\\u00bf', // ] -> '?' inverted\n\n '\\x7b': '\\u00b0', // { -> ring\n '\\x7c': '\\u00f1', // | -> 'n' tilde\n '\\x7d': '\\u00e7', // } -> 'c' cedilla\n });\n\n/**\n * Swedish character map.\n * http://vt100.net/docs/vt220-rm/table2-14.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['7'] =\nhterm.VT.CharacterMaps.DefaultMaps['H'] = new hterm.VT.CharacterMap(\n 'swedish', {\n '\\x40': '\\u00c9', // @ -> 'E' acute\n\n '\\x5b': '\\u00c4', // [ -> 'A' umlaut\n '\\x5c': '\\u00d6', // \\ -> 'O' umlaut\n '\\x5d': '\\u00c5', // ] -> 'A' ring\n '\\x5e': '\\u00dc', // ^ -> 'U' umlaut\n\n '\\x60': '\\u00e9', // ` -> 'e' acute\n\n '\\x7b': '\\u00e4', // { -> 'a' umlaut\n '\\x7c': '\\u00f6', // | -> 'o' umlaut\n '\\x7d': '\\u00e5', // } -> 'a' ring\n '\\x7e': '\\u00fc', // ~ -> 'u' umlaut\n });\n\n/**\n * Swiss character map.\n * http://vt100.net/docs/vt220-rm/table2-15.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['='] = new hterm.VT.CharacterMap(\n 'swiss', {\n '\\x23': '\\u00f9', // # -> 'u' grave\n\n '\\x40': '\\u00e0', // @ -> 'a' grave\n\n '\\x5b': '\\u00e9', // [ -> 'e' acute\n '\\x5c': '\\u00e7', // \\ -> 'c' cedilla\n '\\x5d': '\\u00ea', // ] -> 'e' circumflex\n '\\x5e': '\\u00ee', // ^ -> 'i' circumflex\n '\\x5f': '\\u00e8', // _ -> 'e' grave\n\n '\\x60': '\\u00f4', // ` -> 'o' circumflex\n\n '\\x7b': '\\u00e4', // { -> 'a' umlaut\n '\\x7c': '\\u00f6', // | -> 'o' umlaut\n '\\x7d': '\\u00fc', // } -> 'u' umlaut\n '\\x7e': '\\u00fb', // ~ -> 'u' circumflex\n });\nlib.resource.add('hterm/audio/bell', 'audio/ogg;base64',\n'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' +\n'zinmkFLKMeUcUko5p5xTzjkIHYTKMQadgxAppRxTzinHHITMQeWcg9BBKAAAIMABACDAQig0ZEUA' +\n'ECcA4HAkz5M0SxQlSxNFzxRl1xNN15U0zTQ1UVRVyxNV1VRV2xZNVbYlTRNNTfRUVRNFVRVV05ZN' +\n'VbVtzzRl2VRV3RZV1bZl2xZ+V5Z13zNNWRZV1dZNVbV115Z9X9ZtXZg0zTQ1UVRVTRRV1VRV2zZV' +\n'17Y1UXRVUVVlWVRVWXZlWfdVV9Z9SxRV1VNN2RVVVbZV2fVtVZZ94XRVXVdl2fdVWRZ+W9eF4fZ9' +\n'4RhV1dZN19V1VZZ9YdZlYbd13yhpmmlqoqiqmiiqqqmqtm2qrq1bouiqoqrKsmeqrqzKsq+rrmzr' +\n'miiqrqiqsiyqqiyrsqz7qizrtqiquq3KsrCbrqvrtu8LwyzrunCqrq6rsuz7qizruq3rxnHrujB8' +\n'pinLpqvquqm6um7runHMtm0co6rqvirLwrDKsu/rui+0dSFRVXXdlF3jV2VZ921fd55b94WybTu/' +\n'rfvKceu60vg5z28cubZtHLNuG7+t+8bzKz9hOI6lZ5q2baqqrZuqq+uybivDrOtCUVV9XZVl3zdd' +\n'WRdu3zeOW9eNoqrquirLvrDKsjHcxm8cuzAcXds2jlvXnbKtC31jyPcJz2vbxnH7OuP2daOvDAnH' +\n'jwAAgAEHAIAAE8pAoSErAoA4AQAGIecUUxAqxSB0EFLqIKRUMQYhc05KxRyUUEpqIZTUKsYgVI5J' +\n'yJyTEkpoKZTSUgehpVBKa6GU1lJrsabUYu0gpBZKaS2U0lpqqcbUWowRYxAy56RkzkkJpbQWSmkt' +\n'c05K56CkDkJKpaQUS0otVsxJyaCj0kFIqaQSU0mptVBKa6WkFktKMbYUW24x1hxKaS2kEltJKcYU' +\n'U20txpojxiBkzknJnJMSSmktlNJa5ZiUDkJKmYOSSkqtlZJSzJyT0kFIqYOOSkkptpJKTKGU1kpK' +\n'sYVSWmwx1pxSbDWU0lpJKcaSSmwtxlpbTLV1EFoLpbQWSmmttVZraq3GUEprJaUYS0qxtRZrbjHm' +\n'GkppraQSW0mpxRZbji3GmlNrNabWam4x5hpbbT3WmnNKrdbUUo0txppjbb3VmnvvIKQWSmktlNJi' +\n'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' +\n'm2L/kruPM6Q7oz4tvDQy+bZ3HzOi+gNHA4DZEgA=' +\n''\n);\n\nlib.resource.add('hterm/images/icon-96', 'image/png;base64',\n'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' +\n'ODoyNC0wNDowMNba8BsAAAAASUVORK5CYII=' +\n''\n);\n\nlib.resource.add('hterm/concat/date', 'text/plain',\n'Tue, 22 Aug 2017 06:42:31 +0000' +\n''\n);\n\nlib.resource.add('hterm/changelog/version', 'text/plain',\n'1.70' +\n''\n);\n\nlib.resource.add('hterm/changelog/date', 'text/plain',\n'2017-08-16' +\n''\n);\n\nlib.resource.add('hterm/git/HEAD', 'text/plain',\n'git rev-parse HEAD' +\n''\n);\n\n// SOURCE FILE: hterm/js/hterm_export.js\nmodule.exports = {\n hterm: hterm,\n lib: lib\n};\n\n","/*!\n * @xterm/addon-fit (https://npmjs.com/package/@xterm/addon-fit)\n * @license MIT\n * @version 0.10.0\n * ==@xterm/addon-fit/LICENSE==\n * Copyright (c) 2019, The xterm.js authors (https://github.com/xtermjs/xterm.js)\n * \n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n * \n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define([],t):\"object\"==typeof exports?exports.FitAddon=t():e.FitAddon=t()}(self,(()=>(()=>{\"use strict\";var e={};return(()=>{var t=e;Object.defineProperty(t,\"__esModule\",{value:!0}),t.FitAddon=void 0,t.FitAddon=class{activate(e){this._terminal=e}dispose(){}fit(){const e=this.proposeDimensions();if(!e||!this._terminal||isNaN(e.cols)||isNaN(e.rows))return;const t=this._terminal._core;this._terminal.rows===e.rows&&this._terminal.cols===e.cols||(t._renderService.clear(),this._terminal.resize(e.cols,e.rows))}proposeDimensions(){if(!this._terminal)return;if(!this._terminal.element||!this._terminal.element.parentElement)return;const e=this._terminal._core,t=e._renderService.dimensions;if(0===t.css.cell.width||0===t.css.cell.height)return;const r=0===this._terminal.options.scrollback?0:e.viewport.scrollBarWidth,i=window.getComputedStyle(this._terminal.element.parentElement),o=parseInt(i.getPropertyValue(\"height\")),s=Math.max(0,parseInt(i.getPropertyValue(\"width\"))),n=window.getComputedStyle(this._terminal.element),l=o-(parseInt(n.getPropertyValue(\"padding-top\"))+parseInt(n.getPropertyValue(\"padding-bottom\"))),a=s-(parseInt(n.getPropertyValue(\"padding-right\"))+parseInt(n.getPropertyValue(\"padding-left\")))-r;return{cols:Math.max(2,Math.floor(a/t.css.cell.width)),rows:Math.max(1,Math.floor(l/t.css.cell.height))}}}})(),e})()));\n//# sourceMappingURL=addon-fit.js.map","/*!\n * @xterm/addon-webgl (https://npmjs.com/package/@xterm/addon-webgl)\n * @license MIT\n * @version 0.18.0\n * ==@xterm/addon-webgl/LICENSE==\n * Copyright (c) 2018, The xterm.js authors (https://github.com/xtermjs/xterm.js)\n * \n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n * \n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n */\n!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define([],t):\"object\"==typeof exports?exports.WebglAddon=t():e.WebglAddon=t()}(self,(()=>(()=>{\"use strict\";var e={965:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.GlyphRenderer=void 0;const s=i(374),r=i(509),o=i(855),n=i(859),a=i(381),h=11,l=h*Float32Array.BYTES_PER_ELEMENT;let c,d=0,_=0,u=0;class g extends n.Disposable{constructor(e,t,i,o){super(),this._terminal=e,this._gl=t,this._dimensions=i,this._optionsService=o,this._activeBuffer=0,this._vertices={count:0,attributes:new Float32Array(0),attributesBuffers:[new Float32Array(0),new Float32Array(0)]};const h=this._gl;void 0===r.TextureAtlas.maxAtlasPages&&(r.TextureAtlas.maxAtlasPages=Math.min(32,(0,s.throwIfFalsy)(h.getParameter(h.MAX_TEXTURE_IMAGE_UNITS))),r.TextureAtlas.maxTextureSize=(0,s.throwIfFalsy)(h.getParameter(h.MAX_TEXTURE_SIZE))),this._program=(0,s.throwIfFalsy)((0,a.createProgram)(h,\"#version 300 es\\nlayout (location = 0) in vec2 a_unitquad;\\nlayout (location = 1) in vec2 a_cellpos;\\nlayout (location = 2) in vec2 a_offset;\\nlayout (location = 3) in vec2 a_size;\\nlayout (location = 4) in float a_texpage;\\nlayout (location = 5) in vec2 a_texcoord;\\nlayout (location = 6) in vec2 a_texsize;\\n\\nuniform mat4 u_projection;\\nuniform vec2 u_resolution;\\n\\nout vec2 v_texcoord;\\nflat out int v_texpage;\\n\\nvoid main() {\\n vec2 zeroToOne = (a_offset / u_resolution) + a_cellpos + (a_unitquad * a_size);\\n gl_Position = u_projection * vec4(zeroToOne, 0.0, 1.0);\\n v_texpage = int(a_texpage);\\n v_texcoord = a_texcoord + a_unitquad * a_texsize;\\n}\",function(e){let t=\"\";for(let i=1;ih.deleteProgram(this._program)))),this._projectionLocation=(0,s.throwIfFalsy)(h.getUniformLocation(this._program,\"u_projection\")),this._resolutionLocation=(0,s.throwIfFalsy)(h.getUniformLocation(this._program,\"u_resolution\")),this._textureLocation=(0,s.throwIfFalsy)(h.getUniformLocation(this._program,\"u_texture\")),this._vertexArrayObject=h.createVertexArray(),h.bindVertexArray(this._vertexArrayObject);const c=new Float32Array([0,0,1,0,0,1,1,1]),d=h.createBuffer();this.register((0,n.toDisposable)((()=>h.deleteBuffer(d)))),h.bindBuffer(h.ARRAY_BUFFER,d),h.bufferData(h.ARRAY_BUFFER,c,h.STATIC_DRAW),h.enableVertexAttribArray(0),h.vertexAttribPointer(0,2,this._gl.FLOAT,!1,0,0);const _=new Uint8Array([0,1,2,3]),u=h.createBuffer();this.register((0,n.toDisposable)((()=>h.deleteBuffer(u)))),h.bindBuffer(h.ELEMENT_ARRAY_BUFFER,u),h.bufferData(h.ELEMENT_ARRAY_BUFFER,_,h.STATIC_DRAW),this._attributesBuffer=(0,s.throwIfFalsy)(h.createBuffer()),this.register((0,n.toDisposable)((()=>h.deleteBuffer(this._attributesBuffer)))),h.bindBuffer(h.ARRAY_BUFFER,this._attributesBuffer),h.enableVertexAttribArray(2),h.vertexAttribPointer(2,2,h.FLOAT,!1,l,0),h.vertexAttribDivisor(2,1),h.enableVertexAttribArray(3),h.vertexAttribPointer(3,2,h.FLOAT,!1,l,2*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(3,1),h.enableVertexAttribArray(4),h.vertexAttribPointer(4,1,h.FLOAT,!1,l,4*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(4,1),h.enableVertexAttribArray(5),h.vertexAttribPointer(5,2,h.FLOAT,!1,l,5*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(5,1),h.enableVertexAttribArray(6),h.vertexAttribPointer(6,2,h.FLOAT,!1,l,7*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(6,1),h.enableVertexAttribArray(1),h.vertexAttribPointer(1,2,h.FLOAT,!1,l,9*Float32Array.BYTES_PER_ELEMENT),h.vertexAttribDivisor(1,1),h.useProgram(this._program);const g=new Int32Array(r.TextureAtlas.maxAtlasPages);for(let e=0;eh.deleteTexture(t.texture)))),h.activeTexture(h.TEXTURE0+e),h.bindTexture(h.TEXTURE_2D,t.texture),h.texParameteri(h.TEXTURE_2D,h.TEXTURE_WRAP_S,h.CLAMP_TO_EDGE),h.texParameteri(h.TEXTURE_2D,h.TEXTURE_WRAP_T,h.CLAMP_TO_EDGE),h.texImage2D(h.TEXTURE_2D,0,h.RGBA,1,1,0,h.RGBA,h.UNSIGNED_BYTE,new Uint8Array([255,0,0,255])),this._atlasTextures[e]=t}h.enable(h.BLEND),h.blendFunc(h.SRC_ALPHA,h.ONE_MINUS_SRC_ALPHA),this.handleResize()}beginFrame(){return!this._atlas||this._atlas.beginFrame()}updateCell(e,t,i,s,r,o,n,a,h){this._updateCell(this._vertices.attributes,e,t,i,s,r,o,n,a,h)}_updateCell(e,t,i,r,n,a,l,g,v,f){d=(i*this._terminal.cols+t)*h,r!==o.NULL_CELL_CODE&&void 0!==r?this._atlas&&(c=g&&g.length>1?this._atlas.getRasterizedGlyphCombinedChar(g,n,a,l,!1):this._atlas.getRasterizedGlyph(r,n,a,l,!1),_=Math.floor((this._dimensions.device.cell.width-this._dimensions.device.char.width)/2),n!==f&&c.offset.x>_?(u=c.offset.x-_,e[d]=-(c.offset.x-u)+this._dimensions.device.char.left,e[d+1]=-c.offset.y+this._dimensions.device.char.top,e[d+2]=(c.size.x-u)/this._dimensions.device.canvas.width,e[d+3]=c.size.y/this._dimensions.device.canvas.height,e[d+4]=c.texturePage,e[d+5]=c.texturePositionClipSpace.x+u/this._atlas.pages[c.texturePage].canvas.width,e[d+6]=c.texturePositionClipSpace.y,e[d+7]=c.sizeClipSpace.x-u/this._atlas.pages[c.texturePage].canvas.width,e[d+8]=c.sizeClipSpace.y):(e[d]=-c.offset.x+this._dimensions.device.char.left,e[d+1]=-c.offset.y+this._dimensions.device.char.top,e[d+2]=c.size.x/this._dimensions.device.canvas.width,e[d+3]=c.size.y/this._dimensions.device.canvas.height,e[d+4]=c.texturePage,e[d+5]=c.texturePositionClipSpace.x,e[d+6]=c.texturePositionClipSpace.y,e[d+7]=c.sizeClipSpace.x,e[d+8]=c.sizeClipSpace.y),this._optionsService.rawOptions.rescaleOverlappingGlyphs&&(0,s.allowRescaling)(r,v,c.size.x,this._dimensions.device.cell.width)&&(e[d+2]=(this._dimensions.device.cell.width-1)/this._dimensions.device.canvas.width)):e.fill(0,d,d+h-1-2)}clear(){const e=this._terminal,t=e.cols*e.rows*h;this._vertices.count!==t?this._vertices.attributes=new Float32Array(t):this._vertices.attributes.fill(0);let i=0;for(;i{Object.defineProperty(t,\"__esModule\",{value:!0}),t.RectangleRenderer=void 0;const s=i(374),r=i(859),o=i(310),n=i(381),a=8*Float32Array.BYTES_PER_ELEMENT;class h{constructor(){this.attributes=new Float32Array(160),this.count=0}}let l=0,c=0,d=0,_=0,u=0,g=0,v=0;class f extends r.Disposable{constructor(e,t,i,o){super(),this._terminal=e,this._gl=t,this._dimensions=i,this._themeService=o,this._vertices=new h,this._verticesCursor=new h;const l=this._gl;this._program=(0,s.throwIfFalsy)((0,n.createProgram)(l,\"#version 300 es\\nlayout (location = 0) in vec2 a_position;\\nlayout (location = 1) in vec2 a_size;\\nlayout (location = 2) in vec4 a_color;\\nlayout (location = 3) in vec2 a_unitquad;\\n\\nuniform mat4 u_projection;\\n\\nout vec4 v_color;\\n\\nvoid main() {\\n vec2 zeroToOne = a_position + (a_unitquad * a_size);\\n gl_Position = u_projection * vec4(zeroToOne, 0.0, 1.0);\\n v_color = a_color;\\n}\",\"#version 300 es\\nprecision lowp float;\\n\\nin vec4 v_color;\\n\\nout vec4 outColor;\\n\\nvoid main() {\\n outColor = v_color;\\n}\")),this.register((0,r.toDisposable)((()=>l.deleteProgram(this._program)))),this._projectionLocation=(0,s.throwIfFalsy)(l.getUniformLocation(this._program,\"u_projection\")),this._vertexArrayObject=l.createVertexArray(),l.bindVertexArray(this._vertexArrayObject);const c=new Float32Array([0,0,1,0,0,1,1,1]),d=l.createBuffer();this.register((0,r.toDisposable)((()=>l.deleteBuffer(d)))),l.bindBuffer(l.ARRAY_BUFFER,d),l.bufferData(l.ARRAY_BUFFER,c,l.STATIC_DRAW),l.enableVertexAttribArray(3),l.vertexAttribPointer(3,2,this._gl.FLOAT,!1,0,0);const _=new Uint8Array([0,1,2,3]),u=l.createBuffer();this.register((0,r.toDisposable)((()=>l.deleteBuffer(u)))),l.bindBuffer(l.ELEMENT_ARRAY_BUFFER,u),l.bufferData(l.ELEMENT_ARRAY_BUFFER,_,l.STATIC_DRAW),this._attributesBuffer=(0,s.throwIfFalsy)(l.createBuffer()),this.register((0,r.toDisposable)((()=>l.deleteBuffer(this._attributesBuffer)))),l.bindBuffer(l.ARRAY_BUFFER,this._attributesBuffer),l.enableVertexAttribArray(0),l.vertexAttribPointer(0,2,l.FLOAT,!1,a,0),l.vertexAttribDivisor(0,1),l.enableVertexAttribArray(1),l.vertexAttribPointer(1,2,l.FLOAT,!1,a,2*Float32Array.BYTES_PER_ELEMENT),l.vertexAttribDivisor(1,1),l.enableVertexAttribArray(2),l.vertexAttribPointer(2,4,l.FLOAT,!1,a,4*Float32Array.BYTES_PER_ELEMENT),l.vertexAttribDivisor(2,1),this._updateCachedColors(o.colors),this.register(this._themeService.onChangeColors((e=>{this._updateCachedColors(e),this._updateViewportRectangle()})))}renderBackgrounds(){this._renderVertices(this._vertices)}renderCursor(){this._renderVertices(this._verticesCursor)}_renderVertices(e){const t=this._gl;t.useProgram(this._program),t.bindVertexArray(this._vertexArrayObject),t.uniformMatrix4fv(this._projectionLocation,!1,n.PROJECTION_MATRIX),t.bindBuffer(t.ARRAY_BUFFER,this._attributesBuffer),t.bufferData(t.ARRAY_BUFFER,e.attributes,t.DYNAMIC_DRAW),t.drawElementsInstanced(this._gl.TRIANGLE_STRIP,4,t.UNSIGNED_BYTE,0,e.count)}handleResize(){this._updateViewportRectangle()}setDimensions(e){this._dimensions=e}_updateCachedColors(e){this._bgFloat=this._colorToFloat32Array(e.background),this._cursorFloat=this._colorToFloat32Array(e.cursor)}_updateViewportRectangle(){this._addRectangleFloat(this._vertices.attributes,0,0,0,this._terminal.cols*this._dimensions.device.cell.width,this._terminal.rows*this._dimensions.device.cell.height,this._bgFloat)}updateBackgrounds(e){const t=this._terminal,i=this._vertices;let s,r,n,a,h,l,c,d,_,u,g,v=1;for(s=0;s>24&255)/255,u=(l>>16&255)/255,g=(l>>8&255)/255,v=1,this._addRectangle(e.attributes,t,c,d,(o-r)*this._dimensions.device.cell.width,this._dimensions.device.cell.height,_,u,g,v)}_addRectangle(e,t,i,s,r,o,n,a,h,l){e[t]=i/this._dimensions.device.canvas.width,e[t+1]=s/this._dimensions.device.canvas.height,e[t+2]=r/this._dimensions.device.canvas.width,e[t+3]=o/this._dimensions.device.canvas.height,e[t+4]=n,e[t+5]=a,e[t+6]=h,e[t+7]=l}_addRectangleFloat(e,t,i,s,r,o,n){e[t]=i/this._dimensions.device.canvas.width,e[t+1]=s/this._dimensions.device.canvas.height,e[t+2]=r/this._dimensions.device.canvas.width,e[t+3]=o/this._dimensions.device.canvas.height,e[t+4]=n[0],e[t+5]=n[1],e[t+6]=n[2],e[t+7]=n[3]}_colorToFloat32Array(e){return new Float32Array([(e.rgba>>24&255)/255,(e.rgba>>16&255)/255,(e.rgba>>8&255)/255,(255&e.rgba)/255])}}t.RectangleRenderer=f},310:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.RenderModel=t.COMBINED_CHAR_BIT_MASK=t.RENDER_MODEL_EXT_OFFSET=t.RENDER_MODEL_FG_OFFSET=t.RENDER_MODEL_BG_OFFSET=t.RENDER_MODEL_INDICIES_PER_CELL=void 0;const s=i(296);t.RENDER_MODEL_INDICIES_PER_CELL=4,t.RENDER_MODEL_BG_OFFSET=1,t.RENDER_MODEL_FG_OFFSET=2,t.RENDER_MODEL_EXT_OFFSET=3,t.COMBINED_CHAR_BIT_MASK=2147483648,t.RenderModel=class{constructor(){this.cells=new Uint32Array(0),this.lineLengths=new Uint32Array(0),this.selection=(0,s.createSelectionRenderModel)()}resize(e,i){const s=e*i*t.RENDER_MODEL_INDICIES_PER_CELL;s!==this.cells.length&&(this.cells=new Uint32Array(s),this.lineLengths=new Uint32Array(i))}clear(){this.cells.fill(0,0),this.lineLengths.fill(0,0)}}},666:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.JoinedCellData=t.WebglRenderer=void 0;const s=i(820),r=i(274),o=i(627),n=i(457),a=i(56),h=i(374),l=i(345),c=i(859),d=i(147),_=i(782),u=i(855),g=i(965),v=i(742),f=i(310),p=i(733);class C extends c.Disposable{constructor(e,t,i,n,d,u,g,v,C){super(),this._terminal=e,this._characterJoinerService=t,this._charSizeService=i,this._coreBrowserService=n,this._coreService=d,this._decorationService=u,this._optionsService=g,this._themeService=v,this._cursorBlinkStateManager=new c.MutableDisposable,this._charAtlasDisposable=this.register(new c.MutableDisposable),this._observerDisposable=this.register(new c.MutableDisposable),this._model=new f.RenderModel,this._workCell=new _.CellData,this._workCell2=new _.CellData,this._rectangleRenderer=this.register(new c.MutableDisposable),this._glyphRenderer=this.register(new c.MutableDisposable),this._onChangeTextureAtlas=this.register(new l.EventEmitter),this.onChangeTextureAtlas=this._onChangeTextureAtlas.event,this._onAddTextureAtlasCanvas=this.register(new l.EventEmitter),this.onAddTextureAtlasCanvas=this._onAddTextureAtlasCanvas.event,this._onRemoveTextureAtlasCanvas=this.register(new l.EventEmitter),this.onRemoveTextureAtlasCanvas=this._onRemoveTextureAtlasCanvas.event,this._onRequestRedraw=this.register(new l.EventEmitter),this.onRequestRedraw=this._onRequestRedraw.event,this._onContextLoss=this.register(new l.EventEmitter),this.onContextLoss=this._onContextLoss.event,this.register(this._themeService.onChangeColors((()=>this._handleColorChange()))),this._cellColorResolver=new r.CellColorResolver(this._terminal,this._optionsService,this._model.selection,this._decorationService,this._coreBrowserService,this._themeService),this._core=this._terminal._core,this._renderLayers=[new p.LinkRenderLayer(this._core.screenElement,2,this._terminal,this._core.linkifier,this._coreBrowserService,g,this._themeService)],this.dimensions=(0,h.createRenderDimensions)(),this._devicePixelRatio=this._coreBrowserService.dpr,this._updateDimensions(),this._updateCursorBlink(),this.register(g.onOptionChange((()=>this._handleOptionsChanged()))),this._canvas=this._coreBrowserService.mainDocument.createElement(\"canvas\");const m={antialias:!1,depth:!1,preserveDrawingBuffer:C};if(this._gl=this._canvas.getContext(\"webgl2\",m),!this._gl)throw new Error(\"WebGL2 not supported \"+this._gl);this.register((0,s.addDisposableDomListener)(this._canvas,\"webglcontextlost\",(e=>{console.log(\"webglcontextlost event received\"),e.preventDefault(),this._contextRestorationTimeout=setTimeout((()=>{this._contextRestorationTimeout=void 0,console.warn(\"webgl context not restored; firing onContextLoss\"),this._onContextLoss.fire(e)}),3e3)}))),this.register((0,s.addDisposableDomListener)(this._canvas,\"webglcontextrestored\",(e=>{console.warn(\"webglcontextrestored event received\"),clearTimeout(this._contextRestorationTimeout),this._contextRestorationTimeout=void 0,(0,o.removeTerminalFromCache)(this._terminal),this._initializeWebGLState(),this._requestRedrawViewport()}))),this._observerDisposable.value=(0,a.observeDevicePixelDimensions)(this._canvas,this._coreBrowserService.window,((e,t)=>this._setCanvasDevicePixelDimensions(e,t))),this.register(this._coreBrowserService.onWindowChange((e=>{this._observerDisposable.value=(0,a.observeDevicePixelDimensions)(this._canvas,e,((e,t)=>this._setCanvasDevicePixelDimensions(e,t)))}))),this._core.screenElement.appendChild(this._canvas),[this._rectangleRenderer.value,this._glyphRenderer.value]=this._initializeWebGLState(),this._isAttached=this._coreBrowserService.window.document.body.contains(this._core.screenElement),this.register((0,c.toDisposable)((()=>{for(const e of this._renderLayers)e.dispose();this._canvas.parentElement?.removeChild(this._canvas),(0,o.removeTerminalFromCache)(this._terminal)})))}get textureAtlas(){return this._charAtlas?.pages[0].canvas}_handleColorChange(){this._refreshCharAtlas(),this._clearModel(!0)}handleDevicePixelRatioChange(){this._devicePixelRatio!==this._coreBrowserService.dpr&&(this._devicePixelRatio=this._coreBrowserService.dpr,this.handleResize(this._terminal.cols,this._terminal.rows))}handleResize(e,t){this._updateDimensions(),this._model.resize(this._terminal.cols,this._terminal.rows);for(const e of this._renderLayers)e.resize(this._terminal,this.dimensions);this._canvas.width=this.dimensions.device.canvas.width,this._canvas.height=this.dimensions.device.canvas.height,this._canvas.style.width=`${this.dimensions.css.canvas.width}px`,this._canvas.style.height=`${this.dimensions.css.canvas.height}px`,this._core.screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._core.screenElement.style.height=`${this.dimensions.css.canvas.height}px`,this._rectangleRenderer.value?.setDimensions(this.dimensions),this._rectangleRenderer.value?.handleResize(),this._glyphRenderer.value?.setDimensions(this.dimensions),this._glyphRenderer.value?.handleResize(),this._refreshCharAtlas(),this._clearModel(!1)}handleCharSizeChanged(){this.handleResize(this._terminal.cols,this._terminal.rows)}handleBlur(){for(const e of this._renderLayers)e.handleBlur(this._terminal);this._cursorBlinkStateManager.value?.pause(),this._requestRedrawViewport()}handleFocus(){for(const e of this._renderLayers)e.handleFocus(this._terminal);this._cursorBlinkStateManager.value?.resume(),this._requestRedrawViewport()}handleSelectionChanged(e,t,i){for(const s of this._renderLayers)s.handleSelectionChanged(this._terminal,e,t,i);this._model.selection.update(this._core,e,t,i),this._requestRedrawViewport()}handleCursorMove(){for(const e of this._renderLayers)e.handleCursorMove(this._terminal);this._cursorBlinkStateManager.value?.restartBlinkAnimation()}_handleOptionsChanged(){this._updateDimensions(),this._refreshCharAtlas(),this._updateCursorBlink()}_initializeWebGLState(){return this._rectangleRenderer.value=new v.RectangleRenderer(this._terminal,this._gl,this.dimensions,this._themeService),this._glyphRenderer.value=new g.GlyphRenderer(this._terminal,this._gl,this.dimensions,this._optionsService),this.handleCharSizeChanged(),[this._rectangleRenderer.value,this._glyphRenderer.value]}_refreshCharAtlas(){if(this.dimensions.device.char.width<=0&&this.dimensions.device.char.height<=0)return void(this._isAttached=!1);const e=(0,o.acquireTextureAtlas)(this._terminal,this._optionsService.rawOptions,this._themeService.colors,this.dimensions.device.cell.width,this.dimensions.device.cell.height,this.dimensions.device.char.width,this.dimensions.device.char.height,this._coreBrowserService.dpr);this._charAtlas!==e&&(this._onChangeTextureAtlas.fire(e.pages[0].canvas),this._charAtlasDisposable.value=(0,c.getDisposeArrayDisposable)([(0,l.forwardEvent)(e.onAddTextureAtlasCanvas,this._onAddTextureAtlasCanvas),(0,l.forwardEvent)(e.onRemoveTextureAtlasCanvas,this._onRemoveTextureAtlasCanvas)])),this._charAtlas=e,this._charAtlas.warmUp(),this._glyphRenderer.value?.setAtlas(this._charAtlas)}_clearModel(e){this._model.clear(),e&&this._glyphRenderer.value?.clear()}clearTextureAtlas(){this._charAtlas?.clearTexture(),this._clearModel(!0),this._requestRedrawViewport()}clear(){this._clearModel(!0);for(const e of this._renderLayers)e.reset(this._terminal);this._cursorBlinkStateManager.value?.restartBlinkAnimation(),this._updateCursorBlink()}registerCharacterJoiner(e){return-1}deregisterCharacterJoiner(e){return!1}renderRows(e,t){if(!this._isAttached){if(!(this._coreBrowserService.window.document.body.contains(this._core.screenElement)&&this._charSizeService.width&&this._charSizeService.height))return;this._updateDimensions(),this._refreshCharAtlas(),this._isAttached=!0}for(const i of this._renderLayers)i.handleGridChanged(this._terminal,e,t);this._glyphRenderer.value&&this._rectangleRenderer.value&&(this._glyphRenderer.value.beginFrame()?(this._clearModel(!0),this._updateModel(0,this._terminal.rows-1)):this._updateModel(e,t),this._rectangleRenderer.value.renderBackgrounds(),this._glyphRenderer.value.render(this._model),this._cursorBlinkStateManager.value&&!this._cursorBlinkStateManager.value.isCursorVisible||this._rectangleRenderer.value.renderCursor())}_updateCursorBlink(){this._terminal.options.cursorBlink?this._cursorBlinkStateManager.value=new n.CursorBlinkStateManager((()=>{this._requestRedrawCursor()}),this._coreBrowserService):this._cursorBlinkStateManager.clear(),this._requestRedrawCursor()}_updateModel(e,t){const i=this._core;let s,r,o,n,a,h,l,c,d,_,g,v,p,C,x=this._workCell;e=L(e,i.rows-1,0),t=L(t,i.rows-1,0);const w=this._terminal.buffer.active.baseY+this._terminal.buffer.active.cursorY,b=w-i.buffer.ydisp,M=Math.min(this._terminal.buffer.active.cursorX,i.cols-1);let R=-1;const y=this._coreService.isCursorInitialized&&!this._coreService.isCursorHidden&&(!this._cursorBlinkStateManager.value||this._cursorBlinkStateManager.value.isCursorVisible);this._model.cursor=void 0;let A=!1;for(r=e;r<=t;r++)for(o=r+i.buffer.ydisp,n=i.buffer.lines.get(o),this._model.lineLengths[r]=0,a=this._characterJoinerService.getJoinedCharacters(o),p=0;p0&&p===a[0][0]&&(h=!0,c=a.shift(),x=new m(x,n.translateToString(!0,c[0],c[1]),c[1]-c[0]),l=c[1]-1),d=x.getChars(),_=x.getCode(),v=(r*i.cols+p)*f.RENDER_MODEL_INDICIES_PER_CELL,this._cellColorResolver.resolve(x,p,o,this.dimensions.device.cell.width),y&&o===w&&(p===M&&(this._model.cursor={x:M,y:b,width:x.getWidth(),style:this._coreBrowserService.isFocused?i.options.cursorStyle||\"block\":i.options.cursorInactiveStyle,cursorWidth:i.options.cursorWidth,dpr:this._devicePixelRatio},R=M+x.getWidth()-1),p>=M&&p<=R&&(this._coreBrowserService.isFocused&&\"block\"===(i.options.cursorStyle||\"block\")||!1===this._coreBrowserService.isFocused&&\"block\"===i.options.cursorInactiveStyle)&&(this._cellColorResolver.result.fg=50331648|this._themeService.colors.cursorAccent.rgba>>8&16777215,this._cellColorResolver.result.bg=50331648|this._themeService.colors.cursor.rgba>>8&16777215)),_!==u.NULL_CELL_CODE&&(this._model.lineLengths[r]=p+1),(this._model.cells[v]!==_||this._model.cells[v+f.RENDER_MODEL_BG_OFFSET]!==this._cellColorResolver.result.bg||this._model.cells[v+f.RENDER_MODEL_FG_OFFSET]!==this._cellColorResolver.result.fg||this._model.cells[v+f.RENDER_MODEL_EXT_OFFSET]!==this._cellColorResolver.result.ext)&&(A=!0,d.length>1&&(_|=f.COMBINED_CHAR_BIT_MASK),this._model.cells[v]=_,this._model.cells[v+f.RENDER_MODEL_BG_OFFSET]=this._cellColorResolver.result.bg,this._model.cells[v+f.RENDER_MODEL_FG_OFFSET]=this._cellColorResolver.result.fg,this._model.cells[v+f.RENDER_MODEL_EXT_OFFSET]=this._cellColorResolver.result.ext,g=x.getWidth(),this._glyphRenderer.value.updateCell(p,r,_,this._cellColorResolver.result.bg,this._cellColorResolver.result.fg,this._cellColorResolver.result.ext,d,g,s),h))for(x=this._workCell,p++;p{Object.defineProperty(t,\"__esModule\",{value:!0}),t.GLTexture=t.expandFloat32Array=t.createShader=t.createProgram=t.PROJECTION_MATRIX=void 0;const s=i(374);function r(e,t,i){const r=(0,s.throwIfFalsy)(e.createShader(t));if(e.shaderSource(r,i),e.compileShader(r),e.getShaderParameter(r,e.COMPILE_STATUS))return r;console.error(e.getShaderInfoLog(r)),e.deleteShader(r)}t.PROJECTION_MATRIX=new Float32Array([2,0,0,0,0,-2,0,0,0,0,1,0,-1,1,0,1]),t.createProgram=function(e,t,i){const o=(0,s.throwIfFalsy)(e.createProgram());if(e.attachShader(o,(0,s.throwIfFalsy)(r(e,e.VERTEX_SHADER,t))),e.attachShader(o,(0,s.throwIfFalsy)(r(e,e.FRAGMENT_SHADER,i))),e.linkProgram(o),e.getProgramParameter(o,e.LINK_STATUS))return o;console.error(e.getProgramInfoLog(o)),e.deleteProgram(o)},t.createShader=r,t.expandFloat32Array=function(e,t){const i=Math.min(2*e.length,t),s=new Float32Array(i);for(let t=0;t{Object.defineProperty(t,\"__esModule\",{value:!0}),t.BaseRenderLayer=void 0;const s=i(627),r=i(237),o=i(374),n=i(859);class a extends n.Disposable{constructor(e,t,i,s,r,o,a,h){super(),this._container=t,this._alpha=r,this._coreBrowserService=o,this._optionsService=a,this._themeService=h,this._deviceCharWidth=0,this._deviceCharHeight=0,this._deviceCellWidth=0,this._deviceCellHeight=0,this._deviceCharLeft=0,this._deviceCharTop=0,this._canvas=this._coreBrowserService.mainDocument.createElement(\"canvas\"),this._canvas.classList.add(`xterm-${i}-layer`),this._canvas.style.zIndex=s.toString(),this._initCanvas(),this._container.appendChild(this._canvas),this.register(this._themeService.onChangeColors((t=>{this._refreshCharAtlas(e,t),this.reset(e)}))),this.register((0,n.toDisposable)((()=>{this._canvas.remove()})))}_initCanvas(){this._ctx=(0,o.throwIfFalsy)(this._canvas.getContext(\"2d\",{alpha:this._alpha})),this._alpha||this._clearAll()}handleBlur(e){}handleFocus(e){}handleCursorMove(e){}handleGridChanged(e,t,i){}handleSelectionChanged(e,t,i,s=!1){}_setTransparency(e,t){if(t===this._alpha)return;const i=this._canvas;this._alpha=t,this._canvas=this._canvas.cloneNode(),this._initCanvas(),this._container.replaceChild(this._canvas,i),this._refreshCharAtlas(e,this._themeService.colors),this.handleGridChanged(e,0,e.rows-1)}_refreshCharAtlas(e,t){this._deviceCharWidth<=0&&this._deviceCharHeight<=0||(this._charAtlas=(0,s.acquireTextureAtlas)(e,this._optionsService.rawOptions,t,this._deviceCellWidth,this._deviceCellHeight,this._deviceCharWidth,this._deviceCharHeight,this._coreBrowserService.dpr),this._charAtlas.warmUp())}resize(e,t){this._deviceCellWidth=t.device.cell.width,this._deviceCellHeight=t.device.cell.height,this._deviceCharWidth=t.device.char.width,this._deviceCharHeight=t.device.char.height,this._deviceCharLeft=t.device.char.left,this._deviceCharTop=t.device.char.top,this._canvas.width=t.device.canvas.width,this._canvas.height=t.device.canvas.height,this._canvas.style.width=`${t.css.canvas.width}px`,this._canvas.style.height=`${t.css.canvas.height}px`,this._alpha||this._clearAll(),this._refreshCharAtlas(e,this._themeService.colors)}_fillBottomLineAtCells(e,t,i=1){this._ctx.fillRect(e*this._deviceCellWidth,(t+1)*this._deviceCellHeight-this._coreBrowserService.dpr-1,i*this._deviceCellWidth,this._coreBrowserService.dpr)}_clearAll(){this._alpha?this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height):(this._ctx.fillStyle=this._themeService.colors.background.css,this._ctx.fillRect(0,0,this._canvas.width,this._canvas.height))}_clearCells(e,t,i,s){this._alpha?this._ctx.clearRect(e*this._deviceCellWidth,t*this._deviceCellHeight,i*this._deviceCellWidth,s*this._deviceCellHeight):(this._ctx.fillStyle=this._themeService.colors.background.css,this._ctx.fillRect(e*this._deviceCellWidth,t*this._deviceCellHeight,i*this._deviceCellWidth,s*this._deviceCellHeight))}_fillCharTrueColor(e,t,i,s){this._ctx.font=this._getFont(e,!1,!1),this._ctx.textBaseline=r.TEXT_BASELINE,this._clipCell(i,s,t.getWidth()),this._ctx.fillText(t.getChars(),i*this._deviceCellWidth+this._deviceCharLeft,s*this._deviceCellHeight+this._deviceCharTop+this._deviceCharHeight)}_clipCell(e,t,i){this._ctx.beginPath(),this._ctx.rect(e*this._deviceCellWidth,t*this._deviceCellHeight,i*this._deviceCellWidth,this._deviceCellHeight),this._ctx.clip()}_getFont(e,t,i){return`${i?\"italic\":\"\"} ${t?e.options.fontWeightBold:e.options.fontWeight} ${e.options.fontSize*this._coreBrowserService.dpr}px ${e.options.fontFamily}`}}t.BaseRenderLayer=a},733:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.LinkRenderLayer=void 0;const s=i(197),r=i(237),o=i(592);class n extends o.BaseRenderLayer{constructor(e,t,i,s,r,o,n){super(i,e,\"link\",t,!0,r,o,n),this.register(s.onShowLinkUnderline((e=>this._handleShowLinkUnderline(e)))),this.register(s.onHideLinkUnderline((e=>this._handleHideLinkUnderline(e))))}resize(e,t){super.resize(e,t),this._state=void 0}reset(e){this._clearCurrentLink()}_clearCurrentLink(){if(this._state){this._clearCells(this._state.x1,this._state.y1,this._state.cols-this._state.x1,1);const e=this._state.y2-this._state.y1-1;e>0&&this._clearCells(0,this._state.y1+1,this._state.cols,e),this._clearCells(0,this._state.y2,this._state.x2,1),this._state=void 0}}_handleShowLinkUnderline(e){if(e.fg===r.INVERTED_DEFAULT_COLOR?this._ctx.fillStyle=this._themeService.colors.background.css:void 0!==e.fg&&(0,s.is256Color)(e.fg)?this._ctx.fillStyle=this._themeService.colors.ansi[e.fg].css:this._ctx.fillStyle=this._themeService.colors.foreground.css,e.y1===e.y2)this._fillBottomLineAtCells(e.x1,e.y1,e.x2-e.x1);else{this._fillBottomLineAtCells(e.x1,e.y1,e.cols-e.x1);for(let t=e.y1+1;t{Object.defineProperty(t,\"__esModule\",{value:!0}),t.addDisposableDomListener=void 0,t.addDisposableDomListener=function(e,t,i,s){e.addEventListener(t,i,s);let r=!1;return{dispose:()=>{r||(r=!0,e.removeEventListener(t,i,s))}}}},274:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.CellColorResolver=void 0;const s=i(855),r=i(160),o=i(374);let n,a=0,h=0,l=!1,c=!1,d=!1,_=0;t.CellColorResolver=class{constructor(e,t,i,s,r,o){this._terminal=e,this._optionService=t,this._selectionRenderModel=i,this._decorationService=s,this._coreBrowserService=r,this._themeService=o,this.result={fg:0,bg:0,ext:0}}resolve(e,t,i,u){if(this.result.bg=e.bg,this.result.fg=e.fg,this.result.ext=268435456&e.bg?e.extended.ext:0,h=0,a=0,c=!1,l=!1,d=!1,n=this._themeService.colors,_=0,e.getCode()!==s.NULL_CELL_CODE&&4===e.extended.underlineStyle){const e=Math.max(1,Math.floor(this._optionService.rawOptions.fontSize*this._coreBrowserService.dpr/15));_=t*u%(2*Math.round(e))}if(this._decorationService.forEachDecorationAtCell(t,i,\"bottom\",(e=>{e.backgroundColorRGB&&(h=e.backgroundColorRGB.rgba>>8&16777215,c=!0),e.foregroundColorRGB&&(a=e.foregroundColorRGB.rgba>>8&16777215,l=!0)})),d=this._selectionRenderModel.isCellSelected(this._terminal,t,i),d){if(67108864&this.result.fg||0!=(50331648&this.result.bg)){if(67108864&this.result.fg)switch(50331648&this.result.fg){case 16777216:case 33554432:h=this._themeService.colors.ansi[255&this.result.fg].rgba;break;case 50331648:h=(16777215&this.result.fg)<<8|255;break;default:h=this._themeService.colors.foreground.rgba}else switch(50331648&this.result.bg){case 16777216:case 33554432:h=this._themeService.colors.ansi[255&this.result.bg].rgba;break;case 50331648:h=(16777215&this.result.bg)<<8|255}h=r.rgba.blend(h,4294967040&(this._coreBrowserService.isFocused?n.selectionBackgroundOpaque:n.selectionInactiveBackgroundOpaque).rgba|128)>>8&16777215}else h=(this._coreBrowserService.isFocused?n.selectionBackgroundOpaque:n.selectionInactiveBackgroundOpaque).rgba>>8&16777215;if(c=!0,n.selectionForeground&&(a=n.selectionForeground.rgba>>8&16777215,l=!0),(0,o.treatGlyphAsBackgroundColor)(e.getCode())){if(67108864&this.result.fg&&0==(50331648&this.result.bg))a=(this._coreBrowserService.isFocused?n.selectionBackgroundOpaque:n.selectionInactiveBackgroundOpaque).rgba>>8&16777215;else{if(67108864&this.result.fg)switch(50331648&this.result.bg){case 16777216:case 33554432:a=this._themeService.colors.ansi[255&this.result.bg].rgba;break;case 50331648:a=(16777215&this.result.bg)<<8|255}else switch(50331648&this.result.fg){case 16777216:case 33554432:a=this._themeService.colors.ansi[255&this.result.fg].rgba;break;case 50331648:a=(16777215&this.result.fg)<<8|255;break;default:a=this._themeService.colors.foreground.rgba}a=r.rgba.blend(a,4294967040&(this._coreBrowserService.isFocused?n.selectionBackgroundOpaque:n.selectionInactiveBackgroundOpaque).rgba|128)>>8&16777215}l=!0}}this._decorationService.forEachDecorationAtCell(t,i,\"top\",(e=>{e.backgroundColorRGB&&(h=e.backgroundColorRGB.rgba>>8&16777215,c=!0),e.foregroundColorRGB&&(a=e.foregroundColorRGB.rgba>>8&16777215,l=!0)})),c&&(h=d?-16777216&e.bg&-134217729|h|50331648:-16777216&e.bg|h|50331648),l&&(a=-16777216&e.fg&-67108865|a|50331648),67108864&this.result.fg&&(c&&!l&&(a=0==(50331648&this.result.bg)?-134217728&this.result.fg|16777215&n.background.rgba>>8|50331648:-134217728&this.result.fg|67108863&this.result.bg,l=!0),!c&&l&&(h=0==(50331648&this.result.fg)?-67108864&this.result.bg|16777215&n.foreground.rgba>>8|50331648:-67108864&this.result.bg|67108863&this.result.fg,c=!0)),n=void 0,this.result.bg=c?h:this.result.bg,this.result.fg=l?a:this.result.fg,this.result.ext&=536870911,this.result.ext|=_<<29&3758096384}}},627:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.removeTerminalFromCache=t.acquireTextureAtlas=void 0;const s=i(509),r=i(197),o=[];t.acquireTextureAtlas=function(e,t,i,n,a,h,l,c){const d=(0,r.generateConfig)(n,a,h,l,t,i,c);for(let t=0;t=0){if((0,r.configEquals)(i.config,d))return i.atlas;1===i.ownedBy.length?(i.atlas.dispose(),o.splice(t,1)):i.ownedBy.splice(s,1);break}}for(let t=0;t{Object.defineProperty(t,\"__esModule\",{value:!0}),t.is256Color=t.configEquals=t.generateConfig=void 0;const s=i(160);t.generateConfig=function(e,t,i,r,o,n,a){const h={foreground:n.foreground,background:n.background,cursor:s.NULL_COLOR,cursorAccent:s.NULL_COLOR,selectionForeground:s.NULL_COLOR,selectionBackgroundTransparent:s.NULL_COLOR,selectionBackgroundOpaque:s.NULL_COLOR,selectionInactiveBackgroundTransparent:s.NULL_COLOR,selectionInactiveBackgroundOpaque:s.NULL_COLOR,ansi:n.ansi.slice(),contrastCache:n.contrastCache,halfContrastCache:n.halfContrastCache};return{customGlyphs:o.customGlyphs,devicePixelRatio:a,letterSpacing:o.letterSpacing,lineHeight:o.lineHeight,deviceCellWidth:e,deviceCellHeight:t,deviceCharWidth:i,deviceCharHeight:r,fontFamily:o.fontFamily,fontSize:o.fontSize,fontWeight:o.fontWeight,fontWeightBold:o.fontWeightBold,allowTransparency:o.allowTransparency,drawBoldTextInBrightColors:o.drawBoldTextInBrightColors,minimumContrastRatio:o.minimumContrastRatio,colors:h}},t.configEquals=function(e,t){for(let i=0;i{Object.defineProperty(t,\"__esModule\",{value:!0}),t.TEXT_BASELINE=t.DIM_OPACITY=t.INVERTED_DEFAULT_COLOR=void 0;const s=i(399);t.INVERTED_DEFAULT_COLOR=257,t.DIM_OPACITY=.5,t.TEXT_BASELINE=s.isFirefox||s.isLegacyEdge?\"bottom\":\"ideographic\"},457:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.CursorBlinkStateManager=void 0;t.CursorBlinkStateManager=class{constructor(e,t){this._renderCallback=e,this._coreBrowserService=t,this.isCursorVisible=!0,this._coreBrowserService.isFocused&&this._restartInterval()}get isPaused(){return!(this._blinkStartTimeout||this._blinkInterval)}dispose(){this._blinkInterval&&(this._coreBrowserService.window.clearInterval(this._blinkInterval),this._blinkInterval=void 0),this._blinkStartTimeout&&(this._coreBrowserService.window.clearTimeout(this._blinkStartTimeout),this._blinkStartTimeout=void 0),this._animationFrame&&(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}restartBlinkAnimation(){this.isPaused||(this._animationTimeRestarted=Date.now(),this.isCursorVisible=!0,this._animationFrame||(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>{this._renderCallback(),this._animationFrame=void 0}))))}_restartInterval(e=600){this._blinkInterval&&(this._coreBrowserService.window.clearInterval(this._blinkInterval),this._blinkInterval=void 0),this._blinkStartTimeout=this._coreBrowserService.window.setTimeout((()=>{if(this._animationTimeRestarted){const e=600-(Date.now()-this._animationTimeRestarted);if(this._animationTimeRestarted=void 0,e>0)return void this._restartInterval(e)}this.isCursorVisible=!1,this._animationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>{this._renderCallback(),this._animationFrame=void 0})),this._blinkInterval=this._coreBrowserService.window.setInterval((()=>{if(this._animationTimeRestarted){const e=600-(Date.now()-this._animationTimeRestarted);return this._animationTimeRestarted=void 0,void this._restartInterval(e)}this.isCursorVisible=!this.isCursorVisible,this._animationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>{this._renderCallback(),this._animationFrame=void 0}))}),600)}),e)}pause(){this.isCursorVisible=!0,this._blinkInterval&&(this._coreBrowserService.window.clearInterval(this._blinkInterval),this._blinkInterval=void 0),this._blinkStartTimeout&&(this._coreBrowserService.window.clearTimeout(this._blinkStartTimeout),this._blinkStartTimeout=void 0),this._animationFrame&&(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}resume(){this.pause(),this._animationTimeRestarted=void 0,this._restartInterval(),this.restartBlinkAnimation()}}},860:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.tryDrawCustomChar=t.powerlineDefinitions=t.boxDrawingDefinitions=t.blockElementDefinitions=void 0;const s=i(374);t.blockElementDefinitions={\"▀\":[{x:0,y:0,w:8,h:4}],\"▁\":[{x:0,y:7,w:8,h:1}],\"▂\":[{x:0,y:6,w:8,h:2}],\"▃\":[{x:0,y:5,w:8,h:3}],\"▄\":[{x:0,y:4,w:8,h:4}],\"▅\":[{x:0,y:3,w:8,h:5}],\"▆\":[{x:0,y:2,w:8,h:6}],\"▇\":[{x:0,y:1,w:8,h:7}],\"█\":[{x:0,y:0,w:8,h:8}],\"▉\":[{x:0,y:0,w:7,h:8}],\"▊\":[{x:0,y:0,w:6,h:8}],\"▋\":[{x:0,y:0,w:5,h:8}],\"▌\":[{x:0,y:0,w:4,h:8}],\"▍\":[{x:0,y:0,w:3,h:8}],\"▎\":[{x:0,y:0,w:2,h:8}],\"▏\":[{x:0,y:0,w:1,h:8}],\"▐\":[{x:4,y:0,w:4,h:8}],\"▔\":[{x:0,y:0,w:8,h:1}],\"▕\":[{x:7,y:0,w:1,h:8}],\"▖\":[{x:0,y:4,w:4,h:4}],\"▗\":[{x:4,y:4,w:4,h:4}],\"▘\":[{x:0,y:0,w:4,h:4}],\"▙\":[{x:0,y:0,w:4,h:8},{x:0,y:4,w:8,h:4}],\"▚\":[{x:0,y:0,w:4,h:4},{x:4,y:4,w:4,h:4}],\"▛\":[{x:0,y:0,w:4,h:8},{x:4,y:0,w:4,h:4}],\"▜\":[{x:0,y:0,w:8,h:4},{x:4,y:0,w:4,h:8}],\"▝\":[{x:4,y:0,w:4,h:4}],\"▞\":[{x:4,y:0,w:4,h:4},{x:0,y:4,w:4,h:4}],\"▟\":[{x:4,y:0,w:4,h:8},{x:0,y:4,w:8,h:4}],\"🭰\":[{x:1,y:0,w:1,h:8}],\"🭱\":[{x:2,y:0,w:1,h:8}],\"🭲\":[{x:3,y:0,w:1,h:8}],\"🭳\":[{x:4,y:0,w:1,h:8}],\"🭴\":[{x:5,y:0,w:1,h:8}],\"🭵\":[{x:6,y:0,w:1,h:8}],\"🭶\":[{x:0,y:1,w:8,h:1}],\"🭷\":[{x:0,y:2,w:8,h:1}],\"🭸\":[{x:0,y:3,w:8,h:1}],\"🭹\":[{x:0,y:4,w:8,h:1}],\"🭺\":[{x:0,y:5,w:8,h:1}],\"🭻\":[{x:0,y:6,w:8,h:1}],\"🭼\":[{x:0,y:0,w:1,h:8},{x:0,y:7,w:8,h:1}],\"🭽\":[{x:0,y:0,w:1,h:8},{x:0,y:0,w:8,h:1}],\"🭾\":[{x:7,y:0,w:1,h:8},{x:0,y:0,w:8,h:1}],\"🭿\":[{x:7,y:0,w:1,h:8},{x:0,y:7,w:8,h:1}],\"🮀\":[{x:0,y:0,w:8,h:1},{x:0,y:7,w:8,h:1}],\"🮁\":[{x:0,y:0,w:8,h:1},{x:0,y:2,w:8,h:1},{x:0,y:4,w:8,h:1},{x:0,y:7,w:8,h:1}],\"🮂\":[{x:0,y:0,w:8,h:2}],\"🮃\":[{x:0,y:0,w:8,h:3}],\"🮄\":[{x:0,y:0,w:8,h:5}],\"🮅\":[{x:0,y:0,w:8,h:6}],\"🮆\":[{x:0,y:0,w:8,h:7}],\"🮇\":[{x:6,y:0,w:2,h:8}],\"🮈\":[{x:5,y:0,w:3,h:8}],\"🮉\":[{x:3,y:0,w:5,h:8}],\"🮊\":[{x:2,y:0,w:6,h:8}],\"🮋\":[{x:1,y:0,w:7,h:8}],\"🮕\":[{x:0,y:0,w:2,h:2},{x:4,y:0,w:2,h:2},{x:2,y:2,w:2,h:2},{x:6,y:2,w:2,h:2},{x:0,y:4,w:2,h:2},{x:4,y:4,w:2,h:2},{x:2,y:6,w:2,h:2},{x:6,y:6,w:2,h:2}],\"🮖\":[{x:2,y:0,w:2,h:2},{x:6,y:0,w:2,h:2},{x:0,y:2,w:2,h:2},{x:4,y:2,w:2,h:2},{x:2,y:4,w:2,h:2},{x:6,y:4,w:2,h:2},{x:0,y:6,w:2,h:2},{x:4,y:6,w:2,h:2}],\"🮗\":[{x:0,y:2,w:8,h:2},{x:0,y:6,w:8,h:2}]};const r={\"░\":[[1,0,0,0],[0,0,0,0],[0,0,1,0],[0,0,0,0]],\"▒\":[[1,0],[0,0],[0,1],[0,0]],\"▓\":[[0,1],[1,1],[1,0],[1,1]]};t.boxDrawingDefinitions={\"─\":{1:\"M0,.5 L1,.5\"},\"━\":{3:\"M0,.5 L1,.5\"},\"│\":{1:\"M.5,0 L.5,1\"},\"┃\":{3:\"M.5,0 L.5,1\"},\"┌\":{1:\"M0.5,1 L.5,.5 L1,.5\"},\"┏\":{3:\"M0.5,1 L.5,.5 L1,.5\"},\"┐\":{1:\"M0,.5 L.5,.5 L.5,1\"},\"┓\":{3:\"M0,.5 L.5,.5 L.5,1\"},\"└\":{1:\"M.5,0 L.5,.5 L1,.5\"},\"┗\":{3:\"M.5,0 L.5,.5 L1,.5\"},\"┘\":{1:\"M.5,0 L.5,.5 L0,.5\"},\"┛\":{3:\"M.5,0 L.5,.5 L0,.5\"},\"├\":{1:\"M.5,0 L.5,1 M.5,.5 L1,.5\"},\"┣\":{3:\"M.5,0 L.5,1 M.5,.5 L1,.5\"},\"┤\":{1:\"M.5,0 L.5,1 M.5,.5 L0,.5\"},\"┫\":{3:\"M.5,0 L.5,1 M.5,.5 L0,.5\"},\"┬\":{1:\"M0,.5 L1,.5 M.5,.5 L.5,1\"},\"┳\":{3:\"M0,.5 L1,.5 M.5,.5 L.5,1\"},\"┴\":{1:\"M0,.5 L1,.5 M.5,.5 L.5,0\"},\"┻\":{3:\"M0,.5 L1,.5 M.5,.5 L.5,0\"},\"┼\":{1:\"M0,.5 L1,.5 M.5,0 L.5,1\"},\"╋\":{3:\"M0,.5 L1,.5 M.5,0 L.5,1\"},\"╴\":{1:\"M.5,.5 L0,.5\"},\"╸\":{3:\"M.5,.5 L0,.5\"},\"╵\":{1:\"M.5,.5 L.5,0\"},\"╹\":{3:\"M.5,.5 L.5,0\"},\"╶\":{1:\"M.5,.5 L1,.5\"},\"╺\":{3:\"M.5,.5 L1,.5\"},\"╷\":{1:\"M.5,.5 L.5,1\"},\"╻\":{3:\"M.5,.5 L.5,1\"},\"═\":{1:(e,t)=>`M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t}`},\"║\":{1:(e,t)=>`M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1`},\"╒\":{1:(e,t)=>`M.5,1 L.5,${.5-t} L1,${.5-t} M.5,${.5+t} L1,${.5+t}`},\"╓\":{1:(e,t)=>`M${.5-e},1 L${.5-e},.5 L1,.5 M${.5+e},.5 L${.5+e},1`},\"╔\":{1:(e,t)=>`M1,${.5-t} L${.5-e},${.5-t} L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1`},\"╕\":{1:(e,t)=>`M0,${.5-t} L.5,${.5-t} L.5,1 M0,${.5+t} L.5,${.5+t}`},\"╖\":{1:(e,t)=>`M${.5+e},1 L${.5+e},.5 L0,.5 M${.5-e},.5 L${.5-e},1`},\"╗\":{1:(e,t)=>`M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M0,${.5-t} L${.5+e},${.5-t} L${.5+e},1`},\"╘\":{1:(e,t)=>`M.5,0 L.5,${.5+t} L1,${.5+t} M.5,${.5-t} L1,${.5-t}`},\"╙\":{1:(e,t)=>`M1,.5 L${.5-e},.5 L${.5-e},0 M${.5+e},.5 L${.5+e},0`},\"╚\":{1:(e,t)=>`M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0 M1,${.5+t} L${.5-e},${.5+t} L${.5-e},0`},\"╛\":{1:(e,t)=>`M0,${.5+t} L.5,${.5+t} L.5,0 M0,${.5-t} L.5,${.5-t}`},\"╜\":{1:(e,t)=>`M0,.5 L${.5+e},.5 L${.5+e},0 M${.5-e},.5 L${.5-e},0`},\"╝\":{1:(e,t)=>`M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0 M0,${.5+t} L${.5+e},${.5+t} L${.5+e},0`},\"╞\":{1:(e,t)=>`M.5,0 L.5,1 M.5,${.5-t} L1,${.5-t} M.5,${.5+t} L1,${.5+t}`},\"╟\":{1:(e,t)=>`M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1 M${.5+e},.5 L1,.5`},\"╠\":{1:(e,t)=>`M${.5-e},0 L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1 M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0`},\"╡\":{1:(e,t)=>`M.5,0 L.5,1 M0,${.5-t} L.5,${.5-t} M0,${.5+t} L.5,${.5+t}`},\"╢\":{1:(e,t)=>`M0,.5 L${.5-e},.5 M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1`},\"╣\":{1:(e,t)=>`M${.5+e},0 L${.5+e},1 M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0`},\"╤\":{1:(e,t)=>`M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t} M.5,${.5+t} L.5,1`},\"╥\":{1:(e,t)=>`M0,.5 L1,.5 M${.5-e},.5 L${.5-e},1 M${.5+e},.5 L${.5+e},1`},\"╦\":{1:(e,t)=>`M0,${.5-t} L1,${.5-t} M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1`},\"╧\":{1:(e,t)=>`M.5,0 L.5,${.5-t} M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t}`},\"╨\":{1:(e,t)=>`M0,.5 L1,.5 M${.5-e},.5 L${.5-e},0 M${.5+e},.5 L${.5+e},0`},\"╩\":{1:(e,t)=>`M0,${.5+t} L1,${.5+t} M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0 M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0`},\"╪\":{1:(e,t)=>`M.5,0 L.5,1 M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t}`},\"╫\":{1:(e,t)=>`M0,.5 L1,.5 M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1`},\"╬\":{1:(e,t)=>`M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1 M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0 M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0`},\"╱\":{1:\"M1,0 L0,1\"},\"╲\":{1:\"M0,0 L1,1\"},\"╳\":{1:\"M1,0 L0,1 M0,0 L1,1\"},\"╼\":{1:\"M.5,.5 L0,.5\",3:\"M.5,.5 L1,.5\"},\"╽\":{1:\"M.5,.5 L.5,0\",3:\"M.5,.5 L.5,1\"},\"╾\":{1:\"M.5,.5 L1,.5\",3:\"M.5,.5 L0,.5\"},\"╿\":{1:\"M.5,.5 L.5,1\",3:\"M.5,.5 L.5,0\"},\"┍\":{1:\"M.5,.5 L.5,1\",3:\"M.5,.5 L1,.5\"},\"┎\":{1:\"M.5,.5 L1,.5\",3:\"M.5,.5 L.5,1\"},\"┑\":{1:\"M.5,.5 L.5,1\",3:\"M.5,.5 L0,.5\"},\"┒\":{1:\"M.5,.5 L0,.5\",3:\"M.5,.5 L.5,1\"},\"┕\":{1:\"M.5,.5 L.5,0\",3:\"M.5,.5 L1,.5\"},\"┖\":{1:\"M.5,.5 L1,.5\",3:\"M.5,.5 L.5,0\"},\"┙\":{1:\"M.5,.5 L.5,0\",3:\"M.5,.5 L0,.5\"},\"┚\":{1:\"M.5,.5 L0,.5\",3:\"M.5,.5 L.5,0\"},\"┝\":{1:\"M.5,0 L.5,1\",3:\"M.5,.5 L1,.5\"},\"┞\":{1:\"M0.5,1 L.5,.5 L1,.5\",3:\"M.5,.5 L.5,0\"},\"┟\":{1:\"M.5,0 L.5,.5 L1,.5\",3:\"M.5,.5 L.5,1\"},\"┠\":{1:\"M.5,.5 L1,.5\",3:\"M.5,0 L.5,1\"},\"┡\":{1:\"M.5,.5 L.5,1\",3:\"M.5,0 L.5,.5 L1,.5\"},\"┢\":{1:\"M.5,.5 L.5,0\",3:\"M0.5,1 L.5,.5 L1,.5\"},\"┥\":{1:\"M.5,0 L.5,1\",3:\"M.5,.5 L0,.5\"},\"┦\":{1:\"M0,.5 L.5,.5 L.5,1\",3:\"M.5,.5 L.5,0\"},\"┧\":{1:\"M.5,0 L.5,.5 L0,.5\",3:\"M.5,.5 L.5,1\"},\"┨\":{1:\"M.5,.5 L0,.5\",3:\"M.5,0 L.5,1\"},\"┩\":{1:\"M.5,.5 L.5,1\",3:\"M.5,0 L.5,.5 L0,.5\"},\"┪\":{1:\"M.5,.5 L.5,0\",3:\"M0,.5 L.5,.5 L.5,1\"},\"┭\":{1:\"M0.5,1 L.5,.5 L1,.5\",3:\"M.5,.5 L0,.5\"},\"┮\":{1:\"M0,.5 L.5,.5 L.5,1\",3:\"M.5,.5 L1,.5\"},\"┯\":{1:\"M.5,.5 L.5,1\",3:\"M0,.5 L1,.5\"},\"┰\":{1:\"M0,.5 L1,.5\",3:\"M.5,.5 L.5,1\"},\"┱\":{1:\"M.5,.5 L1,.5\",3:\"M0,.5 L.5,.5 L.5,1\"},\"┲\":{1:\"M.5,.5 L0,.5\",3:\"M0.5,1 L.5,.5 L1,.5\"},\"┵\":{1:\"M.5,0 L.5,.5 L1,.5\",3:\"M.5,.5 L0,.5\"},\"┶\":{1:\"M.5,0 L.5,.5 L0,.5\",3:\"M.5,.5 L1,.5\"},\"┷\":{1:\"M.5,.5 L.5,0\",3:\"M0,.5 L1,.5\"},\"┸\":{1:\"M0,.5 L1,.5\",3:\"M.5,.5 L.5,0\"},\"┹\":{1:\"M.5,.5 L1,.5\",3:\"M.5,0 L.5,.5 L0,.5\"},\"┺\":{1:\"M.5,.5 L0,.5\",3:\"M.5,0 L.5,.5 L1,.5\"},\"┽\":{1:\"M.5,0 L.5,1 M.5,.5 L1,.5\",3:\"M.5,.5 L0,.5\"},\"┾\":{1:\"M.5,0 L.5,1 M.5,.5 L0,.5\",3:\"M.5,.5 L1,.5\"},\"┿\":{1:\"M.5,0 L.5,1\",3:\"M0,.5 L1,.5\"},\"╀\":{1:\"M0,.5 L1,.5 M.5,.5 L.5,1\",3:\"M.5,.5 L.5,0\"},\"╁\":{1:\"M.5,.5 L.5,0 M0,.5 L1,.5\",3:\"M.5,.5 L.5,1\"},\"╂\":{1:\"M0,.5 L1,.5\",3:\"M.5,0 L.5,1\"},\"╃\":{1:\"M0.5,1 L.5,.5 L1,.5\",3:\"M.5,0 L.5,.5 L0,.5\"},\"╄\":{1:\"M0,.5 L.5,.5 L.5,1\",3:\"M.5,0 L.5,.5 L1,.5\"},\"╅\":{1:\"M.5,0 L.5,.5 L1,.5\",3:\"M0,.5 L.5,.5 L.5,1\"},\"╆\":{1:\"M.5,0 L.5,.5 L0,.5\",3:\"M0.5,1 L.5,.5 L1,.5\"},\"╇\":{1:\"M.5,.5 L.5,1\",3:\"M.5,.5 L.5,0 M0,.5 L1,.5\"},\"╈\":{1:\"M.5,.5 L.5,0\",3:\"M0,.5 L1,.5 M.5,.5 L.5,1\"},\"╉\":{1:\"M.5,.5 L1,.5\",3:\"M.5,0 L.5,1 M.5,.5 L0,.5\"},\"╊\":{1:\"M.5,.5 L0,.5\",3:\"M.5,0 L.5,1 M.5,.5 L1,.5\"},\"╌\":{1:\"M.1,.5 L.4,.5 M.6,.5 L.9,.5\"},\"╍\":{3:\"M.1,.5 L.4,.5 M.6,.5 L.9,.5\"},\"┄\":{1:\"M.0667,.5 L.2667,.5 M.4,.5 L.6,.5 M.7333,.5 L.9333,.5\"},\"┅\":{3:\"M.0667,.5 L.2667,.5 M.4,.5 L.6,.5 M.7333,.5 L.9333,.5\"},\"┈\":{1:\"M.05,.5 L.2,.5 M.3,.5 L.45,.5 M.55,.5 L.7,.5 M.8,.5 L.95,.5\"},\"┉\":{3:\"M.05,.5 L.2,.5 M.3,.5 L.45,.5 M.55,.5 L.7,.5 M.8,.5 L.95,.5\"},\"╎\":{1:\"M.5,.1 L.5,.4 M.5,.6 L.5,.9\"},\"╏\":{3:\"M.5,.1 L.5,.4 M.5,.6 L.5,.9\"},\"┆\":{1:\"M.5,.0667 L.5,.2667 M.5,.4 L.5,.6 M.5,.7333 L.5,.9333\"},\"┇\":{3:\"M.5,.0667 L.5,.2667 M.5,.4 L.5,.6 M.5,.7333 L.5,.9333\"},\"┊\":{1:\"M.5,.05 L.5,.2 M.5,.3 L.5,.45 L.5,.55 M.5,.7 L.5,.95\"},\"┋\":{3:\"M.5,.05 L.5,.2 M.5,.3 L.5,.45 L.5,.55 M.5,.7 L.5,.95\"},\"╭\":{1:(e,t)=>`M.5,1 L.5,${.5+t/.15*.5} C.5,${.5+t/.15*.5},.5,.5,1,.5`},\"╮\":{1:(e,t)=>`M.5,1 L.5,${.5+t/.15*.5} C.5,${.5+t/.15*.5},.5,.5,0,.5`},\"╯\":{1:(e,t)=>`M.5,0 L.5,${.5-t/.15*.5} C.5,${.5-t/.15*.5},.5,.5,0,.5`},\"╰\":{1:(e,t)=>`M.5,0 L.5,${.5-t/.15*.5} C.5,${.5-t/.15*.5},.5,.5,1,.5`}},t.powerlineDefinitions={\"\":{d:\"M0,0 L1,.5 L0,1\",type:0,rightPadding:2},\"\":{d:\"M-1,-.5 L1,.5 L-1,1.5\",type:1,leftPadding:1,rightPadding:1},\"\":{d:\"M1,0 L0,.5 L1,1\",type:0,leftPadding:2},\"\":{d:\"M2,-.5 L0,.5 L2,1.5\",type:1,leftPadding:1,rightPadding:1},\"\":{d:\"M0,0 L0,1 C0.552,1,1,0.776,1,.5 C1,0.224,0.552,0,0,0\",type:0,rightPadding:1},\"\":{d:\"M.2,1 C.422,1,.8,.826,.78,.5 C.8,.174,0.422,0,.2,0\",type:1,rightPadding:1},\"\":{d:\"M1,0 L1,1 C0.448,1,0,0.776,0,.5 C0,0.224,0.448,0,1,0\",type:0,leftPadding:1},\"\":{d:\"M.8,1 C0.578,1,0.2,.826,.22,.5 C0.2,0.174,0.578,0,0.8,0\",type:1,leftPadding:1},\"\":{d:\"M-.5,-.5 L1.5,1.5 L-.5,1.5\",type:0},\"\":{d:\"M-.5,-.5 L1.5,1.5\",type:1,leftPadding:1,rightPadding:1},\"\":{d:\"M1.5,-.5 L-.5,1.5 L1.5,1.5\",type:0},\"\":{d:\"M1.5,-.5 L-.5,1.5 L-.5,-.5\",type:0},\"\":{d:\"M1.5,-.5 L-.5,1.5\",type:1,leftPadding:1,rightPadding:1},\"\":{d:\"M-.5,-.5 L1.5,1.5 L1.5,-.5\",type:0}},t.powerlineDefinitions[\"\"]=t.powerlineDefinitions[\"\"],t.powerlineDefinitions[\"\"]=t.powerlineDefinitions[\"\"],t.tryDrawCustomChar=function(e,i,n,l,c,d,_,u){const g=t.blockElementDefinitions[i];if(g)return function(e,t,i,s,r,o){for(let n=0;n7&&parseInt(l.slice(7,9),16)||1;else{if(!l.startsWith(\"rgba\"))throw new Error(`Unexpected fillStyle color format \"${l}\" when drawing pattern glyph`);[d,_,u,g]=l.substring(5,l.length-1).split(\",\").map((e=>parseFloat(e)))}for(let e=0;ee.bezierCurveTo(t[0],t[1],t[2],t[3],t[4],t[5]),L:(e,t)=>e.lineTo(t[0],t[1]),M:(e,t)=>e.moveTo(t[0],t[1])};function h(e,t,i,s,r,o,a,h=0,l=0){const c=e.map((e=>parseFloat(e)||parseInt(e)));if(c.length<2)throw new Error(\"Too few arguments for instruction\");for(let e=0;e{Object.defineProperty(t,\"__esModule\",{value:!0}),t.observeDevicePixelDimensions=void 0;const s=i(859);t.observeDevicePixelDimensions=function(e,t,i){let r=new t.ResizeObserver((t=>{const s=t.find((t=>t.target===e));if(!s)return;if(!(\"devicePixelContentBoxSize\"in s))return r?.disconnect(),void(r=void 0);const o=s.devicePixelContentBoxSize[0].inlineSize,n=s.devicePixelContentBoxSize[0].blockSize;o>0&&n>0&&i(o,n)}));try{r.observe(e,{box:[\"device-pixel-content-box\"]})}catch{r.disconnect(),r=void 0}return(0,s.toDisposable)((()=>r?.disconnect()))}},374:(e,t)=>{function i(e){return 57508<=e&&e<=57558}function s(e){return e>=128512&&e<=128591||e>=127744&&e<=128511||e>=128640&&e<=128767||e>=9728&&e<=9983||e>=9984&&e<=10175||e>=65024&&e<=65039||e>=129280&&e<=129535||e>=127462&&e<=127487}Object.defineProperty(t,\"__esModule\",{value:!0}),t.computeNextVariantOffset=t.createRenderDimensions=t.treatGlyphAsBackgroundColor=t.allowRescaling=t.isEmoji=t.isRestrictedPowerlineGlyph=t.isPowerlineGlyph=t.throwIfFalsy=void 0,t.throwIfFalsy=function(e){if(!e)throw new Error(\"value must not be falsy\");return e},t.isPowerlineGlyph=i,t.isRestrictedPowerlineGlyph=function(e){return 57520<=e&&e<=57527},t.isEmoji=s,t.allowRescaling=function(e,t,r,o){return 1===t&&r>Math.ceil(1.5*o)&&void 0!==e&&e>255&&!s(e)&&!i(e)&&!function(e){return 57344<=e&&e<=63743}(e)},t.treatGlyphAsBackgroundColor=function(e){return i(e)||function(e){return 9472<=e&&e<=9631}(e)},t.createRenderDimensions=function(){return{css:{canvas:{width:0,height:0},cell:{width:0,height:0}},device:{canvas:{width:0,height:0},cell:{width:0,height:0},char:{width:0,height:0,left:0,top:0}}}},t.computeNextVariantOffset=function(e,t,i=0){return(e-(2*Math.round(t)-i))%(2*Math.round(t))}},296:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.createSelectionRenderModel=void 0;class i{constructor(){this.clear()}clear(){this.hasSelection=!1,this.columnSelectMode=!1,this.viewportStartRow=0,this.viewportEndRow=0,this.viewportCappedStartRow=0,this.viewportCappedEndRow=0,this.startCol=0,this.endCol=0,this.selectionStart=void 0,this.selectionEnd=void 0}update(e,t,i,s=!1){if(this.selectionStart=t,this.selectionEnd=i,!t||!i||t[0]===i[0]&&t[1]===i[1])return void this.clear();const r=e.buffers.active.ydisp,o=t[1]-r,n=i[1]-r,a=Math.max(o,0),h=Math.min(n,e.rows-1);a>=e.rows||h<0?this.clear():(this.hasSelection=!0,this.columnSelectMode=s,this.viewportStartRow=o,this.viewportEndRow=n,this.viewportCappedStartRow=a,this.viewportCappedEndRow=h,this.startCol=t[0],this.endCol=i[0])}isCellSelected(e,t,i){return!!this.hasSelection&&(i-=e.buffer.active.viewportY,this.columnSelectMode?this.startCol<=this.endCol?t>=this.startCol&&i>=this.viewportCappedStartRow&&t=this.viewportCappedStartRow&&t>=this.endCol&&i<=this.viewportCappedEndRow:i>this.viewportStartRow&&i=this.startCol&&t=this.startCol)}}t.createSelectionRenderModel=function(){return new i}},509:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.TextureAtlas=void 0;const s=i(237),r=i(860),o=i(374),n=i(160),a=i(345),h=i(485),l=i(385),c=i(147),d=i(855),_={texturePage:0,texturePosition:{x:0,y:0},texturePositionClipSpace:{x:0,y:0},offset:{x:0,y:0},size:{x:0,y:0},sizeClipSpace:{x:0,y:0}};let u;class g{get pages(){return this._pages}constructor(e,t,i){this._document=e,this._config=t,this._unicodeService=i,this._didWarmUp=!1,this._cacheMap=new h.FourKeyMap,this._cacheMapCombined=new h.FourKeyMap,this._pages=[],this._activePages=[],this._workBoundingBox={top:0,left:0,bottom:0,right:0},this._workAttributeData=new c.AttributeData,this._textureSize=512,this._onAddTextureAtlasCanvas=new a.EventEmitter,this.onAddTextureAtlasCanvas=this._onAddTextureAtlasCanvas.event,this._onRemoveTextureAtlasCanvas=new a.EventEmitter,this.onRemoveTextureAtlasCanvas=this._onRemoveTextureAtlasCanvas.event,this._requestClearModel=!1,this._createNewPage(),this._tmpCanvas=p(e,4*this._config.deviceCellWidth+4,this._config.deviceCellHeight+4),this._tmpCtx=(0,o.throwIfFalsy)(this._tmpCanvas.getContext(\"2d\",{alpha:this._config.allowTransparency,willReadFrequently:!0}))}dispose(){for(const e of this.pages)e.canvas.remove();this._onAddTextureAtlasCanvas.dispose()}warmUp(){this._didWarmUp||(this._doWarmUp(),this._didWarmUp=!0)}_doWarmUp(){const e=new l.IdleTaskQueue;for(let t=33;t<126;t++)e.enqueue((()=>{if(!this._cacheMap.get(t,d.DEFAULT_COLOR,d.DEFAULT_COLOR,d.DEFAULT_EXT)){const e=this._drawToCache(t,d.DEFAULT_COLOR,d.DEFAULT_COLOR,d.DEFAULT_EXT);this._cacheMap.set(t,d.DEFAULT_COLOR,d.DEFAULT_COLOR,d.DEFAULT_EXT,e)}}))}beginFrame(){return this._requestClearModel}clearTexture(){if(0!==this._pages[0].currentRow.x||0!==this._pages[0].currentRow.y){for(const e of this._pages)e.clear();this._cacheMap.clear(),this._cacheMapCombined.clear(),this._didWarmUp=!1}}_createNewPage(){if(g.maxAtlasPages&&this._pages.length>=Math.max(4,g.maxAtlasPages)){const e=this._pages.filter((e=>2*e.canvas.width<=(g.maxTextureSize||4096))).sort(((e,t)=>t.canvas.width!==e.canvas.width?t.canvas.width-e.canvas.width:t.percentageUsed-e.percentageUsed));let t=-1,i=0;for(let s=0;se.glyphs[0].texturePage)).sort(((e,t)=>e>t?1:-1)),o=this.pages.length-s.length,n=this._mergePages(s,o);n.version++;for(let e=r.length-1;e>=0;e--)this._deletePage(r[e]);this.pages.push(n),this._requestClearModel=!0,this._onAddTextureAtlasCanvas.fire(n.canvas)}const e=new v(this._document,this._textureSize);return this._pages.push(e),this._activePages.push(e),this._onAddTextureAtlasCanvas.fire(e.canvas),e}_mergePages(e,t){const i=2*e[0].canvas.width,s=new v(this._document,i,e);for(const[r,o]of e.entries()){const e=r*o.canvas.width%i,n=Math.floor(r/2)*o.canvas.height;s.ctx.drawImage(o.canvas,e,n);for(const s of o.glyphs)s.texturePage=t,s.sizeClipSpace.x=s.size.x/i,s.sizeClipSpace.y=s.size.y/i,s.texturePosition.x+=e,s.texturePosition.y+=n,s.texturePositionClipSpace.x=s.texturePosition.x/i,s.texturePositionClipSpace.y=s.texturePosition.y/i;this._onRemoveTextureAtlasCanvas.fire(o.canvas);const a=this._activePages.indexOf(o);-1!==a&&this._activePages.splice(a,1)}return s}_deletePage(e){this._pages.splice(e,1);for(let t=e;t=this._config.colors.ansi.length)throw new Error(\"No color found for idx \"+e);return this._config.colors.ansi[e]}_getBackgroundColor(e,t,i,s){if(this._config.allowTransparency)return n.NULL_COLOR;let r;switch(e){case 16777216:case 33554432:r=this._getColorFromAnsiIndex(t);break;case 50331648:const e=c.AttributeData.toColorRGB(t);r=n.channels.toColor(e[0],e[1],e[2]);break;default:r=i?n.color.opaque(this._config.colors.foreground):this._config.colors.background}return r}_getForegroundColor(e,t,i,r,o,a,h,l,d,_){const u=this._getMinimumContrastColor(e,t,i,r,o,a,h,d,l,_);if(u)return u;let g;switch(o){case 16777216:case 33554432:this._config.drawBoldTextInBrightColors&&d&&a<8&&(a+=8),g=this._getColorFromAnsiIndex(a);break;case 50331648:const e=c.AttributeData.toColorRGB(a);g=n.channels.toColor(e[0],e[1],e[2]);break;default:g=h?this._config.colors.background:this._config.colors.foreground}return this._config.allowTransparency&&(g=n.color.opaque(g)),l&&(g=n.color.multiplyOpacity(g,s.DIM_OPACITY)),g}_resolveBackgroundRgba(e,t,i){switch(e){case 16777216:case 33554432:return this._getColorFromAnsiIndex(t).rgba;case 50331648:return t<<8;default:return i?this._config.colors.foreground.rgba:this._config.colors.background.rgba}}_resolveForegroundRgba(e,t,i,s){switch(e){case 16777216:case 33554432:return this._config.drawBoldTextInBrightColors&&s&&t<8&&(t+=8),this._getColorFromAnsiIndex(t).rgba;case 50331648:return t<<8;default:return i?this._config.colors.background.rgba:this._config.colors.foreground.rgba}}_getMinimumContrastColor(e,t,i,s,r,o,a,h,l,c){if(1===this._config.minimumContrastRatio||c)return;const d=this._getContrastCache(l),_=d.getColor(e,s);if(void 0!==_)return _||void 0;const u=this._resolveBackgroundRgba(t,i,a),g=this._resolveForegroundRgba(r,o,a,h),v=n.rgba.ensureContrastRatio(u,g,this._config.minimumContrastRatio/(l?2:1));if(!v)return void d.setColor(e,s,null);const f=n.channels.toColor(v>>24&255,v>>16&255,v>>8&255);return d.setColor(e,s,f),f}_getContrastCache(e){return e?this._config.colors.halfContrastCache:this._config.colors.contrastCache}_drawToCache(e,t,i,n,a=!1){const h=\"number\"==typeof e?String.fromCharCode(e):e,l=Math.min(this._config.deviceCellWidth*Math.max(h.length,2)+4,this._textureSize);this._tmpCanvas.width=e?2*e-l:e-l;!1==!(l>=e)||0===u?(this._tmpCtx.setLineDash([Math.round(e),Math.round(e)]),this._tmpCtx.moveTo(h+u,s),this._tmpCtx.lineTo(c,s)):(this._tmpCtx.setLineDash([Math.round(e),Math.round(e)]),this._tmpCtx.moveTo(h,s),this._tmpCtx.lineTo(h+u,s),this._tmpCtx.moveTo(h+u+e,s),this._tmpCtx.lineTo(c,s)),l=(0,o.computeNextVariantOffset)(c-h,e,l);break;case 5:const g=.6,v=.3,f=c-h,p=Math.floor(g*f),C=Math.floor(v*f),m=f-p-C;this._tmpCtx.setLineDash([p,C,m]),this._tmpCtx.moveTo(h,s),this._tmpCtx.lineTo(c,s);break;default:this._tmpCtx.moveTo(h,s),this._tmpCtx.lineTo(c,s)}this._tmpCtx.stroke(),this._tmpCtx.restore()}if(this._tmpCtx.restore(),!F&&this._config.fontSize>=12&&!this._config.allowTransparency&&\" \"!==h){this._tmpCtx.save(),this._tmpCtx.textBaseline=\"alphabetic\";const t=this._tmpCtx.measureText(h);if(this._tmpCtx.restore(),\"actualBoundingBoxDescent\"in t&&t.actualBoundingBoxDescent>0){this._tmpCtx.save();const t=new Path2D;t.rect(i,s-Math.ceil(e/2),this._config.deviceCellWidth*P,n-s+Math.ceil(e/2)),this._tmpCtx.clip(t),this._tmpCtx.lineWidth=3*this._config.devicePixelRatio,this._tmpCtx.strokeStyle=y.css,this._tmpCtx.strokeText(h,B,B+this._config.deviceCharHeight),this._tmpCtx.restore()}}}if(x){const e=Math.max(1,Math.floor(this._config.fontSize*this._config.devicePixelRatio/15)),t=e%2==1?.5:0;this._tmpCtx.lineWidth=e,this._tmpCtx.strokeStyle=this._tmpCtx.fillStyle,this._tmpCtx.beginPath(),this._tmpCtx.moveTo(B,B+t),this._tmpCtx.lineTo(B+this._config.deviceCharWidth*P,B+t),this._tmpCtx.stroke()}if(F||this._tmpCtx.fillText(h,B,B+this._config.deviceCharHeight),\"_\"===h&&!this._config.allowTransparency){let e=f(this._tmpCtx.getImageData(B,B,this._config.deviceCellWidth,this._config.deviceCellHeight),y,D,I);if(e)for(let t=1;t<=5&&(this._tmpCtx.save(),this._tmpCtx.fillStyle=y.css,this._tmpCtx.fillRect(0,0,this._tmpCanvas.width,this._tmpCanvas.height),this._tmpCtx.restore(),this._tmpCtx.fillText(h,B,B+this._config.deviceCharHeight-t),e=f(this._tmpCtx.getImageData(B,B,this._config.deviceCellWidth,this._config.deviceCellHeight),y,D,I),e);t++);}if(L){const e=Math.max(1,Math.floor(this._config.fontSize*this._config.devicePixelRatio/10)),t=this._tmpCtx.lineWidth%2==1?.5:0;this._tmpCtx.lineWidth=e,this._tmpCtx.strokeStyle=this._tmpCtx.fillStyle,this._tmpCtx.beginPath(),this._tmpCtx.moveTo(B,B+Math.floor(this._config.deviceCharHeight/2)-t),this._tmpCtx.lineTo(B+this._config.deviceCharWidth*P,B+Math.floor(this._config.deviceCharHeight/2)-t),this._tmpCtx.stroke()}this._tmpCtx.restore();const O=this._tmpCtx.getImageData(0,0,this._tmpCanvas.width,this._tmpCanvas.height);let k;if(k=this._config.allowTransparency?function(e){for(let t=0;t0)return!1;return!0}(O):f(O,y,D,I),k)return _;const $=this._findGlyphBoundingBox(O,this._workBoundingBox,l,T,F,B);let U,N;for(;;){if(0===this._activePages.length){const e=this._createNewPage();U=e,N=e.currentRow,N.height=$.size.y;break}U=this._activePages[this._activePages.length-1],N=U.currentRow;for(const e of this._activePages)$.size.y<=e.currentRow.height&&(U=e,N=e.currentRow);for(let e=this._activePages.length-1;e>=0;e--)for(const t of this._activePages[e].fixedRows)t.height<=N.height&&$.size.y<=t.height&&(U=this._activePages[e],N=t);if(N.y+$.size.y>=U.canvas.height||N.height>$.size.y+2){let e=!1;if(U.currentRow.y+U.currentRow.height+$.size.y>=U.canvas.height){let t;for(const e of this._activePages)if(e.currentRow.y+e.currentRow.height+$.size.y=g.maxAtlasPages&&N.y+$.size.y<=U.canvas.height&&N.height>=$.size.y&&N.x+$.size.x<=U.canvas.width)e=!0;else{const t=this._createNewPage();U=t,N=t.currentRow,N.height=$.size.y,e=!0}}e||(U.currentRow.height>0&&U.fixedRows.push(U.currentRow),N={x:0,y:U.currentRow.y+U.currentRow.height,height:$.size.y},U.fixedRows.push(N),U.currentRow={x:0,y:N.y+N.height,height:0})}if(N.x+$.size.x<=U.canvas.width)break;N===U.currentRow?(N.x=0,N.y+=N.height,N.height=0):U.fixedRows.splice(U.fixedRows.indexOf(N),1)}return $.texturePage=this._pages.indexOf(U),$.texturePosition.x=N.x,$.texturePosition.y=N.y,$.texturePositionClipSpace.x=N.x/U.canvas.width,$.texturePositionClipSpace.y=N.y/U.canvas.height,$.sizeClipSpace.x/=U.canvas.width,$.sizeClipSpace.y/=U.canvas.height,N.height=Math.max(N.height,$.size.y),N.x+=$.size.x,U.ctx.putImageData(O,$.texturePosition.x-this._workBoundingBox.left,$.texturePosition.y-this._workBoundingBox.top,this._workBoundingBox.left,this._workBoundingBox.top,$.size.x,$.size.y),U.addGlyph($),U.version++,$}_findGlyphBoundingBox(e,t,i,s,r,o){t.top=0;const n=s?this._config.deviceCellHeight:this._tmpCanvas.height,a=s?this._config.deviceCellWidth:i;let h=!1;for(let i=0;i=o;i--){for(let s=0;s=0;i--){for(let s=0;s>>24,o=t.rgba>>>16&255,n=t.rgba>>>8&255,a=i.rgba>>>24,h=i.rgba>>>16&255,l=i.rgba>>>8&255,c=Math.floor((Math.abs(r-a)+Math.abs(o-h)+Math.abs(n-l))/12);let d=!0;for(let t=0;t{Object.defineProperty(t,\"__esModule\",{value:!0}),t.contrastRatio=t.toPaddedHex=t.rgba=t.rgb=t.css=t.color=t.channels=t.NULL_COLOR=void 0;let i=0,s=0,r=0,o=0;var n,a,h,l,c;function d(e){const t=e.toString(16);return t.length<2?\"0\"+t:t}function _(e,t){return e>>0},e.toColor=function(t,i,s,r){return{css:e.toCss(t,i,s,r),rgba:e.toRgba(t,i,s,r)}}}(n||(t.channels=n={})),function(e){function t(e,t){return o=Math.round(255*t),[i,s,r]=c.toChannels(e.rgba),{css:n.toCss(i,s,r,o),rgba:n.toRgba(i,s,r,o)}}e.blend=function(e,t){if(o=(255&t.rgba)/255,1===o)return{css:t.css,rgba:t.rgba};const a=t.rgba>>24&255,h=t.rgba>>16&255,l=t.rgba>>8&255,c=e.rgba>>24&255,d=e.rgba>>16&255,_=e.rgba>>8&255;return i=c+Math.round((a-c)*o),s=d+Math.round((h-d)*o),r=_+Math.round((l-_)*o),{css:n.toCss(i,s,r),rgba:n.toRgba(i,s,r)}},e.isOpaque=function(e){return 255==(255&e.rgba)},e.ensureContrastRatio=function(e,t,i){const s=c.ensureContrastRatio(e.rgba,t.rgba,i);if(s)return n.toColor(s>>24&255,s>>16&255,s>>8&255)},e.opaque=function(e){const t=(255|e.rgba)>>>0;return[i,s,r]=c.toChannels(t),{css:n.toCss(i,s,r),rgba:t}},e.opacity=t,e.multiplyOpacity=function(e,i){return o=255&e.rgba,t(e,o*i/255)},e.toColorRGB=function(e){return[e.rgba>>24&255,e.rgba>>16&255,e.rgba>>8&255]}}(a||(t.color=a={})),function(e){let t,a;try{const e=document.createElement(\"canvas\");e.width=1,e.height=1;const i=e.getContext(\"2d\",{willReadFrequently:!0});i&&(t=i,t.globalCompositeOperation=\"copy\",a=t.createLinearGradient(0,0,1,1))}catch{}e.toColor=function(e){if(e.match(/#[\\da-f]{3,8}/i))switch(e.length){case 4:return i=parseInt(e.slice(1,2).repeat(2),16),s=parseInt(e.slice(2,3).repeat(2),16),r=parseInt(e.slice(3,4).repeat(2),16),n.toColor(i,s,r);case 5:return i=parseInt(e.slice(1,2).repeat(2),16),s=parseInt(e.slice(2,3).repeat(2),16),r=parseInt(e.slice(3,4).repeat(2),16),o=parseInt(e.slice(4,5).repeat(2),16),n.toColor(i,s,r,o);case 7:return{css:e,rgba:(parseInt(e.slice(1),16)<<8|255)>>>0};case 9:return{css:e,rgba:parseInt(e.slice(1),16)>>>0}}const h=e.match(/rgba?\\(\\s*(\\d{1,3})\\s*,\\s*(\\d{1,3})\\s*,\\s*(\\d{1,3})\\s*(,\\s*(0|1|\\d?\\.(\\d+))\\s*)?\\)/);if(h)return i=parseInt(h[1]),s=parseInt(h[2]),r=parseInt(h[3]),o=Math.round(255*(void 0===h[5]?1:parseFloat(h[5]))),n.toColor(i,s,r,o);if(!t||!a)throw new Error(\"css.toColor: Unsupported css format\");if(t.fillStyle=a,t.fillStyle=e,\"string\"!=typeof t.fillStyle)throw new Error(\"css.toColor: Unsupported css format\");if(t.fillRect(0,0,1,1),[i,s,r,o]=t.getImageData(0,0,1,1).data,255!==o)throw new Error(\"css.toColor: Unsupported css format\");return{rgba:n.toRgba(i,s,r,o),css:e}}}(h||(t.css=h={})),function(e){function t(e,t,i){const s=e/255,r=t/255,o=i/255;return.2126*(s<=.03928?s/12.92:Math.pow((s+.055)/1.055,2.4))+.7152*(r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))+.0722*(o<=.03928?o/12.92:Math.pow((o+.055)/1.055,2.4))}e.relativeLuminance=function(e){return t(e>>16&255,e>>8&255,255&e)},e.relativeLuminance2=t}(l||(t.rgb=l={})),function(e){function t(e,t,i){const s=e>>24&255,r=e>>16&255,o=e>>8&255;let n=t>>24&255,a=t>>16&255,h=t>>8&255,c=_(l.relativeLuminance2(n,a,h),l.relativeLuminance2(s,r,o));for(;c0||a>0||h>0);)n-=Math.max(0,Math.ceil(.1*n)),a-=Math.max(0,Math.ceil(.1*a)),h-=Math.max(0,Math.ceil(.1*h)),c=_(l.relativeLuminance2(n,a,h),l.relativeLuminance2(s,r,o));return(n<<24|a<<16|h<<8|255)>>>0}function a(e,t,i){const s=e>>24&255,r=e>>16&255,o=e>>8&255;let n=t>>24&255,a=t>>16&255,h=t>>8&255,c=_(l.relativeLuminance2(n,a,h),l.relativeLuminance2(s,r,o));for(;c>>0}e.blend=function(e,t){if(o=(255&t)/255,1===o)return t;const a=t>>24&255,h=t>>16&255,l=t>>8&255,c=e>>24&255,d=e>>16&255,_=e>>8&255;return i=c+Math.round((a-c)*o),s=d+Math.round((h-d)*o),r=_+Math.round((l-_)*o),n.toRgba(i,s,r)},e.ensureContrastRatio=function(e,i,s){const r=l.relativeLuminance(e>>8),o=l.relativeLuminance(i>>8);if(_(r,o)>8));if(n_(r,l.relativeLuminance(t>>8))?o:t}return o}const n=a(e,i,s),h=_(r,l.relativeLuminance(n>>8));if(h_(r,l.relativeLuminance(o>>8))?n:o}return n}},e.reduceLuminance=t,e.increaseLuminance=a,e.toChannels=function(e){return[e>>24&255,e>>16&255,e>>8&255,255&e]}}(c||(t.rgba=c={})),t.toPaddedHex=d,t.contrastRatio=_},345:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.runAndSubscribe=t.forwardEvent=t.EventEmitter=void 0,t.EventEmitter=class{constructor(){this._listeners=[],this._disposed=!1}get event(){return this._event||(this._event=e=>(this._listeners.push(e),{dispose:()=>{if(!this._disposed)for(let t=0;tt.fire(e)))},t.runAndSubscribe=function(e,t){return t(void 0),e((e=>t(e)))}},859:(e,t)=>{function i(e){for(const t of e)t.dispose();e.length=0}Object.defineProperty(t,\"__esModule\",{value:!0}),t.getDisposeArrayDisposable=t.disposeArray=t.toDisposable=t.MutableDisposable=t.Disposable=void 0,t.Disposable=class{constructor(){this._disposables=[],this._isDisposed=!1}dispose(){this._isDisposed=!0;for(const e of this._disposables)e.dispose();this._disposables.length=0}register(e){return this._disposables.push(e),e}unregister(e){const t=this._disposables.indexOf(e);-1!==t&&this._disposables.splice(t,1)}},t.MutableDisposable=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(e){this._isDisposed||e===this._value||(this._value?.dispose(),this._value=e)}clear(){this.value=void 0}dispose(){this._isDisposed=!0,this._value?.dispose(),this._value=void 0}},t.toDisposable=function(e){return{dispose:e}},t.disposeArray=i,t.getDisposeArrayDisposable=function(e){return{dispose:()=>i(e)}}},485:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.FourKeyMap=t.TwoKeyMap=void 0;class i{constructor(){this._data={}}set(e,t,i){this._data[e]||(this._data[e]={}),this._data[e][t]=i}get(e,t){return this._data[e]?this._data[e][t]:void 0}clear(){this._data={}}}t.TwoKeyMap=i,t.FourKeyMap=class{constructor(){this._data=new i}set(e,t,s,r,o){this._data.get(e,t)||this._data.set(e,t,new i),this._data.get(e,t).set(s,r,o)}get(e,t,i,s){return this._data.get(e,t)?.get(i,s)}clear(){this._data.clear()}}},399:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.isChromeOS=t.isLinux=t.isWindows=t.isIphone=t.isIpad=t.isMac=t.getSafariVersion=t.isSafari=t.isLegacyEdge=t.isFirefox=t.isNode=void 0,t.isNode=\"undefined\"!=typeof process&&\"title\"in process;const i=t.isNode?\"node\":navigator.userAgent,s=t.isNode?\"node\":navigator.platform;t.isFirefox=i.includes(\"Firefox\"),t.isLegacyEdge=i.includes(\"Edge\"),t.isSafari=/^((?!chrome|android).)*safari/i.test(i),t.getSafariVersion=function(){if(!t.isSafari)return 0;const e=i.match(/Version\\/(\\d+)/);return null===e||e.length<2?0:parseInt(e[1])},t.isMac=[\"Macintosh\",\"MacIntel\",\"MacPPC\",\"Mac68K\"].includes(s),t.isIpad=\"iPad\"===s,t.isIphone=\"iPhone\"===s,t.isWindows=[\"Windows\",\"Win16\",\"Win32\",\"WinCE\"].includes(s),t.isLinux=s.indexOf(\"Linux\")>=0,t.isChromeOS=/\\bCrOS\\b/.test(i)},385:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.DebouncedIdleTask=t.IdleTaskQueue=t.PriorityTaskQueue=void 0;const s=i(399);class r{constructor(){this._tasks=[],this._i=0}enqueue(e){this._tasks.push(e),this._start()}flush(){for(;this._ir)return s-t<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(s-t))}ms`),void this._start();s=r}this.clear()}}class o extends r{_requestCallback(e){return setTimeout((()=>e(this._createDeadline(16))))}_cancelCallback(e){clearTimeout(e)}_createDeadline(e){const t=Date.now()+e;return{timeRemaining:()=>Math.max(0,t-Date.now())}}}t.PriorityTaskQueue=o,t.IdleTaskQueue=!s.isNode&&\"requestIdleCallback\"in window?class extends r{_requestCallback(e){return requestIdleCallback(e)}_cancelCallback(e){cancelIdleCallback(e)}}:o,t.DebouncedIdleTask=class{constructor(){this._queue=new t.IdleTaskQueue}set(e){this._queue.clear(),this._queue.enqueue(e)}flush(){this._queue.flush()}}},147:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.ExtendedAttrs=t.AttributeData=void 0;class i{constructor(){this.fg=0,this.bg=0,this.extended=new s}static toColorRGB(e){return[e>>>16&255,e>>>8&255,255&e]}static fromColorRGB(e){return(255&e[0])<<16|(255&e[1])<<8|255&e[2]}clone(){const e=new i;return e.fg=this.fg,e.bg=this.bg,e.extended=this.extended.clone(),e}isInverse(){return 67108864&this.fg}isBold(){return 134217728&this.fg}isUnderline(){return this.hasExtendedAttrs()&&0!==this.extended.underlineStyle?1:268435456&this.fg}isBlink(){return 536870912&this.fg}isInvisible(){return 1073741824&this.fg}isItalic(){return 67108864&this.bg}isDim(){return 134217728&this.bg}isStrikethrough(){return 2147483648&this.fg}isProtected(){return 536870912&this.bg}isOverline(){return 1073741824&this.bg}getFgColorMode(){return 50331648&this.fg}getBgColorMode(){return 50331648&this.bg}isFgRGB(){return 50331648==(50331648&this.fg)}isBgRGB(){return 50331648==(50331648&this.bg)}isFgPalette(){return 16777216==(50331648&this.fg)||33554432==(50331648&this.fg)}isBgPalette(){return 16777216==(50331648&this.bg)||33554432==(50331648&this.bg)}isFgDefault(){return 0==(50331648&this.fg)}isBgDefault(){return 0==(50331648&this.bg)}isAttributeDefault(){return 0===this.fg&&0===this.bg}getFgColor(){switch(50331648&this.fg){case 16777216:case 33554432:return 255&this.fg;case 50331648:return 16777215&this.fg;default:return-1}}getBgColor(){switch(50331648&this.bg){case 16777216:case 33554432:return 255&this.bg;case 50331648:return 16777215&this.bg;default:return-1}}hasExtendedAttrs(){return 268435456&this.bg}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(268435456&this.bg&&~this.extended.underlineColor)switch(50331648&this.extended.underlineColor){case 16777216:case 33554432:return 255&this.extended.underlineColor;case 50331648:return 16777215&this.extended.underlineColor;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return 268435456&this.bg&&~this.extended.underlineColor?50331648&this.extended.underlineColor:this.getFgColorMode()}isUnderlineColorRGB(){return 268435456&this.bg&&~this.extended.underlineColor?50331648==(50331648&this.extended.underlineColor):this.isFgRGB()}isUnderlineColorPalette(){return 268435456&this.bg&&~this.extended.underlineColor?16777216==(50331648&this.extended.underlineColor)||33554432==(50331648&this.extended.underlineColor):this.isFgPalette()}isUnderlineColorDefault(){return 268435456&this.bg&&~this.extended.underlineColor?0==(50331648&this.extended.underlineColor):this.isFgDefault()}getUnderlineStyle(){return 268435456&this.fg?268435456&this.bg?this.extended.underlineStyle:1:0}getUnderlineVariantOffset(){return this.extended.underlineVariantOffset}}t.AttributeData=i;class s{get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(e){this._ext=e}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(e){this._ext&=-469762049,this._ext|=e<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(e){this._ext&=-67108864,this._ext|=67108863&e}get urlId(){return this._urlId}set urlId(e){this._urlId=e}get underlineVariantOffset(){const e=(3758096384&this._ext)>>29;return e<0?4294967288^e:e}set underlineVariantOffset(e){this._ext&=536870911,this._ext|=e<<29&3758096384}constructor(e=0,t=0){this._ext=0,this._urlId=0,this._ext=e,this._urlId=t}clone(){return new s(this._ext,this._urlId)}isEmpty(){return 0===this.underlineStyle&&0===this._urlId}}t.ExtendedAttrs=s},782:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.CellData=void 0;const s=i(133),r=i(855),o=i(147);class n extends o.AttributeData{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new o.ExtendedAttrs,this.combinedData=\"\"}static fromCharData(e){const t=new n;return t.setFromCharData(e),t}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?(0,s.stringFromCodePoint)(2097151&this.content):\"\"}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(e){this.fg=e[r.CHAR_DATA_ATTR_INDEX],this.bg=0;let t=!1;if(e[r.CHAR_DATA_CHAR_INDEX].length>2)t=!0;else if(2===e[r.CHAR_DATA_CHAR_INDEX].length){const i=e[r.CHAR_DATA_CHAR_INDEX].charCodeAt(0);if(55296<=i&&i<=56319){const s=e[r.CHAR_DATA_CHAR_INDEX].charCodeAt(1);56320<=s&&s<=57343?this.content=1024*(i-55296)+s-56320+65536|e[r.CHAR_DATA_WIDTH_INDEX]<<22:t=!0}else t=!0}else this.content=e[r.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|e[r.CHAR_DATA_WIDTH_INDEX]<<22;t&&(this.combinedData=e[r.CHAR_DATA_CHAR_INDEX],this.content=2097152|e[r.CHAR_DATA_WIDTH_INDEX]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}t.CellData=n},855:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.WHITESPACE_CELL_CODE=t.WHITESPACE_CELL_WIDTH=t.WHITESPACE_CELL_CHAR=t.NULL_CELL_CODE=t.NULL_CELL_WIDTH=t.NULL_CELL_CHAR=t.CHAR_DATA_CODE_INDEX=t.CHAR_DATA_WIDTH_INDEX=t.CHAR_DATA_CHAR_INDEX=t.CHAR_DATA_ATTR_INDEX=t.DEFAULT_EXT=t.DEFAULT_ATTR=t.DEFAULT_COLOR=void 0,t.DEFAULT_COLOR=0,t.DEFAULT_ATTR=256|t.DEFAULT_COLOR<<9,t.DEFAULT_EXT=0,t.CHAR_DATA_ATTR_INDEX=0,t.CHAR_DATA_CHAR_INDEX=1,t.CHAR_DATA_WIDTH_INDEX=2,t.CHAR_DATA_CODE_INDEX=3,t.NULL_CELL_CHAR=\"\",t.NULL_CELL_WIDTH=1,t.NULL_CELL_CODE=0,t.WHITESPACE_CELL_CHAR=\" \",t.WHITESPACE_CELL_WIDTH=1,t.WHITESPACE_CELL_CODE=32},133:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.Utf8ToUtf32=t.StringToUtf32=t.utf32ToString=t.stringFromCodePoint=void 0,t.stringFromCodePoint=function(e){return e>65535?(e-=65536,String.fromCharCode(55296+(e>>10))+String.fromCharCode(e%1024+56320)):String.fromCharCode(e)},t.utf32ToString=function(e,t=0,i=e.length){let s=\"\";for(let r=t;r65535?(t-=65536,s+=String.fromCharCode(55296+(t>>10))+String.fromCharCode(t%1024+56320)):s+=String.fromCharCode(t)}return s},t.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(e,t){const i=e.length;if(!i)return 0;let s=0,r=0;if(this._interim){const i=e.charCodeAt(r++);56320<=i&&i<=57343?t[s++]=1024*(this._interim-55296)+i-56320+65536:(t[s++]=this._interim,t[s++]=i),this._interim=0}for(let o=r;o=i)return this._interim=r,s;const n=e.charCodeAt(o);56320<=n&&n<=57343?t[s++]=1024*(r-55296)+n-56320+65536:(t[s++]=r,t[s++]=n)}else 65279!==r&&(t[s++]=r)}return s}},t.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(e,t){const i=e.length;if(!i)return 0;let s,r,o,n,a=0,h=0,l=0;if(this.interim[0]){let s=!1,r=this.interim[0];r&=192==(224&r)?31:224==(240&r)?15:7;let o,n=0;for(;(o=63&this.interim[++n])&&n<4;)r<<=6,r|=o;const h=192==(224&this.interim[0])?2:224==(240&this.interim[0])?3:4,c=h-n;for(;l=i)return 0;if(o=e[l++],128!=(192&o)){l--,s=!0;break}this.interim[n++]=o,r<<=6,r|=63&o}s||(2===h?r<128?l--:t[a++]=r:3===h?r<2048||r>=55296&&r<=57343||65279===r||(t[a++]=r):r<65536||r>1114111||(t[a++]=r)),this.interim.fill(0)}const c=i-4;let d=l;for(;d=i)return this.interim[0]=s,a;if(r=e[d++],128!=(192&r)){d--;continue}if(h=(31&s)<<6|63&r,h<128){d--;continue}t[a++]=h}else if(224==(240&s)){if(d>=i)return this.interim[0]=s,a;if(r=e[d++],128!=(192&r)){d--;continue}if(d>=i)return this.interim[0]=s,this.interim[1]=r,a;if(o=e[d++],128!=(192&o)){d--;continue}if(h=(15&s)<<12|(63&r)<<6|63&o,h<2048||h>=55296&&h<=57343||65279===h)continue;t[a++]=h}else if(240==(248&s)){if(d>=i)return this.interim[0]=s,a;if(r=e[d++],128!=(192&r)){d--;continue}if(d>=i)return this.interim[0]=s,this.interim[1]=r,a;if(o=e[d++],128!=(192&o)){d--;continue}if(d>=i)return this.interim[0]=s,this.interim[1]=r,this.interim[2]=o,a;if(n=e[d++],128!=(192&n)){d--;continue}if(h=(7&s)<<18|(63&r)<<12|(63&o)<<6|63&n,h<65536||h>1114111)continue;t[a++]=h}}return a}}},776:function(e,t,i){var s=this&&this.__decorate||function(e,t,i,s){var r,o=arguments.length,n=o<3?t:null===s?s=Object.getOwnPropertyDescriptor(t,i):s;if(\"object\"==typeof Reflect&&\"function\"==typeof Reflect.decorate)n=Reflect.decorate(e,t,i,s);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(n=(o<3?r(n):o>3?r(t,i,n):r(t,i))||n);return o>3&&n&&Object.defineProperty(t,i,n),n},r=this&&this.__param||function(e,t){return function(i,s){t(i,s,e)}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.traceCall=t.setTraceLogger=t.LogService=void 0;const o=i(859),n=i(97),a={trace:n.LogLevelEnum.TRACE,debug:n.LogLevelEnum.DEBUG,info:n.LogLevelEnum.INFO,warn:n.LogLevelEnum.WARN,error:n.LogLevelEnum.ERROR,off:n.LogLevelEnum.OFF};let h,l=t.LogService=class extends o.Disposable{get logLevel(){return this._logLevel}constructor(e){super(),this._optionsService=e,this._logLevel=n.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange(\"logLevel\",(()=>this._updateLogLevel()))),h=this}_updateLogLevel(){this._logLevel=a[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let t=0;tJSON.stringify(e))).join(\", \")})`);const t=s.apply(this,e);return h.trace(`GlyphRenderer#${s.name} return`,t),t}}},726:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.createDecorator=t.getServiceDependencies=t.serviceRegistry=void 0;const i=\"di$target\",s=\"di$dependencies\";t.serviceRegistry=new Map,t.getServiceDependencies=function(e){return e[s]||[]},t.createDecorator=function(e){if(t.serviceRegistry.has(e))return t.serviceRegistry.get(e);const r=function(e,t,o){if(3!==arguments.length)throw new Error(\"@IServiceName-decorator can only be used to decorate a parameter\");!function(e,t,r){t[i]===t?t[s].push({id:e,index:r}):(t[s]=[{id:e,index:r}],t[i]=t)}(r,e,o)};return r.toString=()=>e,t.serviceRegistry.set(e,r),r}},97:(e,t,i)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.IDecorationService=t.IUnicodeService=t.IOscLinkService=t.IOptionsService=t.ILogService=t.LogLevelEnum=t.IInstantiationService=t.ICharsetService=t.ICoreService=t.ICoreMouseService=t.IBufferService=void 0;const s=i(726);var r;t.IBufferService=(0,s.createDecorator)(\"BufferService\"),t.ICoreMouseService=(0,s.createDecorator)(\"CoreMouseService\"),t.ICoreService=(0,s.createDecorator)(\"CoreService\"),t.ICharsetService=(0,s.createDecorator)(\"CharsetService\"),t.IInstantiationService=(0,s.createDecorator)(\"InstantiationService\"),function(e){e[e.TRACE=0]=\"TRACE\",e[e.DEBUG=1]=\"DEBUG\",e[e.INFO=2]=\"INFO\",e[e.WARN=3]=\"WARN\",e[e.ERROR=4]=\"ERROR\",e[e.OFF=5]=\"OFF\"}(r||(t.LogLevelEnum=r={})),t.ILogService=(0,s.createDecorator)(\"LogService\"),t.IOptionsService=(0,s.createDecorator)(\"OptionsService\"),t.IOscLinkService=(0,s.createDecorator)(\"OscLinkService\"),t.IUnicodeService=(0,s.createDecorator)(\"UnicodeService\"),t.IDecorationService=(0,s.createDecorator)(\"DecorationService\")}},t={};function i(s){var r=t[s];if(void 0!==r)return r.exports;var o=t[s]={exports:{}};return e[s].call(o.exports,o,o.exports,i),o.exports}var s={};return(()=>{var e=s;Object.defineProperty(e,\"__esModule\",{value:!0}),e.WebglAddon=void 0;const t=i(345),r=i(859),o=i(399),n=i(666),a=i(776);class h extends r.Disposable{constructor(e){if(o.isSafari&&(0,o.getSafariVersion)()<16){const e={antialias:!1,depth:!1,preserveDrawingBuffer:!0};if(!document.createElement(\"canvas\").getContext(\"webgl2\",e))throw new Error(\"Webgl2 is only supported on Safari 16 and above\")}super(),this._preserveDrawingBuffer=e,this._onChangeTextureAtlas=this.register(new t.EventEmitter),this.onChangeTextureAtlas=this._onChangeTextureAtlas.event,this._onAddTextureAtlasCanvas=this.register(new t.EventEmitter),this.onAddTextureAtlasCanvas=this._onAddTextureAtlasCanvas.event,this._onRemoveTextureAtlasCanvas=this.register(new t.EventEmitter),this.onRemoveTextureAtlasCanvas=this._onRemoveTextureAtlasCanvas.event,this._onContextLoss=this.register(new t.EventEmitter),this.onContextLoss=this._onContextLoss.event}activate(e){const i=e._core;if(!e.element)return void this.register(i.onWillOpen((()=>this.activate(e))));this._terminal=e;const s=i.coreService,o=i.optionsService,h=i,l=h._renderService,c=h._characterJoinerService,d=h._charSizeService,_=h._coreBrowserService,u=h._decorationService,g=h._logService,v=h._themeService;(0,a.setTraceLogger)(g),this._renderer=this.register(new n.WebglRenderer(e,c,d,_,s,u,o,v,this._preserveDrawingBuffer)),this.register((0,t.forwardEvent)(this._renderer.onContextLoss,this._onContextLoss)),this.register((0,t.forwardEvent)(this._renderer.onChangeTextureAtlas,this._onChangeTextureAtlas)),this.register((0,t.forwardEvent)(this._renderer.onAddTextureAtlasCanvas,this._onAddTextureAtlasCanvas)),this.register((0,t.forwardEvent)(this._renderer.onRemoveTextureAtlasCanvas,this._onRemoveTextureAtlasCanvas)),l.setRenderer(this._renderer),this.register((0,r.toDisposable)((()=>{const t=this._terminal._core._renderService;t.setRenderer(this._terminal._core._createRenderer()),t.handleResize(e.cols,e.rows)})))}get textureAtlas(){return this._renderer?.textureAtlas}clearTextureAtlas(){this._renderer?.clearTextureAtlas()}}e.WebglAddon=h})(),s})()));\n//# sourceMappingURL=addon-webgl.js.map","import * as bare from \"libapps\";\n\nexport class Hterm {\n elem: HTMLElement;\n\n term: bare.hterm.Terminal;\n io: bare.hterm.IO;\n\n columns: number;\n rows: number;\n\n // to \"show\" the current message when removeMessage() is called\n message: string;\n\n constructor(elem: HTMLElement) {\n this.elem = elem;\n bare.hterm.defaultStorage = new bare.lib.Storage.Memory();\n this.term = new bare.hterm.Terminal();\n this.term.getPrefs().set(\"send-encoding\", \"raw\");\n this.term.decorate(this.elem);\n\n this.io = this.term.io.push();\n this.term.installKeyboard();\n };\n\n info(): { columns: number, rows: number } {\n return { columns: this.columns, rows: this.rows };\n };\n\n output(data: string) {\n if (this.term.io != null) {\n this.term.io.writeUTF8(data);\n }\n };\n\n showMessage(message: string, timeout: number) {\n this.message = message;\n if (timeout > 0) {\n this.term.io.showOverlay(message, timeout);\n } else {\n this.term.io.showOverlay(message, null);\n }\n };\n\n removeMessage(): void {\n // there is no hideOverlay(), so show the same message with 0 sec\n this.term.io.showOverlay(this.message, 0);\n }\n\n setWindowTitle(title: string) {\n this.term.setWindowTitle(title);\n };\n\n setPreferences(value: object) {\n Object.keys(value).forEach((key) => {\n if (key != \"enable-webgl\") {\n this.term.getPrefs().set(key, value[key]);\n }\n });\n };\n\n onInput(callback: (input: string) => void) {\n this.io.onVTKeystroke = (data) => {\n callback(data);\n };\n this.io.sendString = (data) => {\n callback(data);\n };\n };\n\n onResize(callback: (colmuns: number, rows: number) => void) {\n this.io.onTerminalResize = (columns: number, rows: number) => {\n this.columns = columns;\n this.rows = rows;\n callback(columns, rows);\n };\n };\n\n deactivate(): void {\n this.io.onVTKeystroke = function() { };\n this.io.sendString = function() { };\n this.io.onTerminalResize = function() { };\n this.term.uninstallKeyboard();\n }\n\n reset(): void {\n this.removeMessage();\n this.term.installKeyboard();\n }\n\n close(): void {\n this.term.uninstallKeyboard();\n }\n}\n","export class ConnectionFactory {\n url: string;\n protocols: string[];\n\n constructor(url: string, protocols: string[]) {\n this.url = url;\n this.protocols = protocols;\n };\n\n create(): Connection {\n return new Connection(this.url, this.protocols);\n };\n}\n\nexport class Connection {\n bare: WebSocket;\n\n\n constructor(url: string, protocols: string[]) {\n this.bare = new WebSocket(url, protocols);\n }\n\n open() {\n // nothing todo for websocket\n };\n\n close() {\n this.bare.close();\n };\n\n send(data: string) {\n this.bare.send(data);\n };\n\n isOpen(): boolean {\n if (this.bare.readyState == WebSocket.CONNECTING ||\n this.bare.readyState == WebSocket.OPEN) {\n return true\n }\n return false\n }\n\n onOpen(callback: () => void) {\n this.bare.onopen = (event) => {\n callback();\n }\n };\n\n onReceive(callback: (data: string) => void) {\n this.bare.onmessage = (event) => {\n callback(event.data);\n }\n };\n\n onClose(callback: () => void) {\n this.bare.onclose = (event) => {\n callback();\n };\n };\n}\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","import { Hterm } from \"./hterm\";\nimport { Xterm } from \"./xterm\";\nimport { Terminal, WebTTY, protocols } from \"./webtty\";\nimport { ConnectionFactory } from \"./websocket\";\n\n// NOTE: This fixes tsfmt diffs in dist with this file\nexport class GoTTY {\n}\n\n// @TODO remove these\ndeclare var gotty_auth_token: string;\ndeclare var gotty_term: string;\n\nconst elem = document.getElementById(\"terminal\")\n\nif (elem !== null) {\n var term: Terminal;\n if (gotty_term == \"hterm\") {\n term = new Hterm(elem);\n } else {\n term = new Xterm(elem);\n }\n const httpsEnabled = window.location.protocol == \"https:\";\n const url = (httpsEnabled ? 'wss://' : 'ws://') + window.location.host + window.location.pathname + 'ws';\n const args = window.location.search;\n const factory = new ConnectionFactory(url, protocols);\n const wt = new WebTTY(term, factory, args, gotty_auth_token);\n const closer = wt.open();\n\n window.addEventListener(\"unload\", () => {\n closer();\n term.close();\n });\n};\n"],"names":["t","self","e","n","URL","password","username","protocol","host","toLocaleLowerCase","startsWith","Object","defineProperty","value","LinkComputer","WebLinkProvider","constructor","o","this","_terminal","_regex","_handler","_options","provideLinks","computeLink","_addCallbacks","map","leave","hover","range","r","i","s","RegExp","source","flags","a","c","_getWindowedLineStrings","l","join","d","p","exec","_mapStrIdx","index","length","h","start","x","y","end","push","text","activate","buffer","active","getLine","translateToString","isWrapped","indexOf","reverse","getNullCell","getCell","getChars","getWidth","exports","WebLinksAddon","window","open","opener","location","href","console","warn","urlRegex","_linkProvider","registerLinkProvider","dispose","module","protocols","msgInputUnknown","msgInput","msgPing","msgResizeTerminal","msgUnknownOutput","msgOutput","msgPong","msgSetWindowTitle","msgSetPreferences","msgSetReconnect","term","connectionFactory","args","authToken","reconnect","pingTimer","reconnectTimeout","connection","create","setup","onOpen","termInfo","info","send","JSON","stringify","Arguments","AuthToken","resizeHandler","colmuns","rows","columns","onResize","onInput","input","setInterval","onReceive","data","payload","slice","output","atob","setWindowTitle","preferences","parse","setPreferences","autoReconnect","log","onClose","clearInterval","deactivate","showMessage","setTimeout","reset","clearTimeout","close","WebTTY","elem","disposables","isWindows","navigator","platform","Terminal","cursorStyle","cursorBlink","windowsMode","fontFamily","fontSize","fitAddon","FitAddon","loadAddon","message","ownerDocument","createElement","className","messageTimeout","resizeListener","fit","scrollToBottom","String","cols","focus","addEventListener","waitForElement","then","requestAnimationFrame","catch","err","error","decoder","lib","UTF8Decoder","write","decode","timeout","textContent","appendChild","messageTimer","removeChild","removeMessage","parentNode","title","document","keys","forEach","key","WebglAddon","callback","onData","blur","clear","removeEventListener","Xterm","selector","Promise","resolve","reject","existing","querySelector","observer","MutationObserver","el","disconnect","observe","body","childList","subtree","Error","globalThis","__decorate","arguments","getOwnPropertyDescriptor","Reflect","decorate","__param","AccessibilityManager","Disposable","super","_coreBrowserService","_renderService","_rowColumns","WeakMap","_liveRegionLineCount","_charsToConsume","_charsToAnnounce","_accessibilityContainer","mainDocument","classList","add","_rowContainer","setAttribute","_rowElements","_createAccessibilityTreeNode","_topBoundaryFocusListener","_handleBoundaryFocus","_bottomBoundaryFocusListener","_refreshRowsDimensions","_liveRegion","_liveRegionDebouncer","register","TimeBasedDebouncer","_renderRows","bind","element","insertAdjacentElement","_handleResize","onRender","_refreshRows","onScroll","onA11yChar","_handleChar","onLineFeed","onA11yTab","_handleTab","onKey","_handleKey","onBlur","_clearLiveRegion","onDimensionsChange","addDisposableDomListener","_handleSelectionChange","onDprChange","toDisposable","remove","shift","tooMuchOutput","test","refresh","lines","toString","get","ydisp","innerText","set","_announceCharacters","target","getAttribute","relatedTarget","pop","unshift","scrollLines","preventDefault","stopImmediatePropagation","getSelection","isCollapsed","contains","anchorNode","clearSelection","focusNode","node","offset","anchorOffset","focusOffset","compareDocumentPosition","Node","DOCUMENT_POSITION_PRECEDING","DOCUMENT_POSITION_CONTAINED_BY","DOCUMENT_POSITION_FOLLOWING","childNodes","Text","parseInt","isNaN","row","column","select","children","tabIndex","_refreshRowDimensions","dimensions","css","cell","height","style","width","canvas","IInstantiationService","ICoreBrowserService","IRenderService","replace","decPrivateModes","bracketedPasteMode","rawOptions","ignoreBracketedPasteMode","triggerDataEvent","getBoundingClientRect","clientX","left","clientY","top","zIndex","rightClickHandler","moveTextAreaUnderMouseCursor","paste","handlePasteEvent","copyHandler","bracketTextForPaste","prepareTextForTerminal","clipboardData","setData","selectionText","stopPropagation","getData","rightClickSelect","ColorContrastCache","_color","TwoKeyMap","_css","setCss","getCss","setColor","getColor","Linkifier","currentLink","_currentLink","_element","_mouseService","_bufferService","_linkProviderService","_linkCacheDisposables","_isMouseOut","_wasResized","_activeLine","_onShowLinkUnderline","EventEmitter","onShowLinkUnderline","event","_onHideLinkUnderline","onHideLinkUnderline","getDisposeArrayDisposable","_lastMouseEvent","_activeProviderReplies","_clearCurrentLink","_handleMouseMove","_handleMouseDown","_handleMouseUp","_positionFromMouseEvent","composedPath","_lastBufferCell","_handleHover","_askForLink","_linkAtPosition","link","Map","linkProviders","entries","_checkLinkProviderResult","size","_removeIntersectingLinks","Set","has","splice","find","_handleNewLink","_mouseDownLink","_linkLeave","disposeArray","state","decorations","underline","pointerCursor","isHovered","_linkHover","defineProperties","toggle","_fireUnderlineEvent","onRenderedViewportChange","_createLinkUnderlineEvent","fire","getCoords","x1","y1","x2","y2","fg","IMouseService","IBufferService","ILinkProviderService","promptLabel","OscLinkProvider","_optionsService","_oscLinkService","linkHandler","CellData","getTrimmedLength","hasContent","loadCell","hasExtendedAttrs","extended","urlId","getLinkData","uri","allowNonHttpProtocols","includes","confirm","IOptionsService","IOscLinkService","RenderDebouncer","_renderCallback","_refreshCallbacks","_animationFrame","cancelAnimationFrame","addRefreshCallback","_innerRefresh","_rowCount","_rowStart","Math","min","_rowEnd","max","_runRefreshCallbacks","_","u","f","v","g","m","S","C","b","w","E","k","L","D","R","A","B","T","M","O","P","CoreTerminal","onFocus","_onFocus","_onBlur","_onA11yCharEmitter","_onA11yTabEmitter","onWillOpen","_onWillOpen","browser","_keyDownHandled","_keyDownSeen","_keyPressHandled","_unprocessedDeadKey","_accessibilityManager","MutableDisposable","_onCursorMove","onCursorMove","_onKey","_onRender","_onSelectionChange","onSelectionChange","_onTitleChange","onTitleChange","_onBell","onBell","_setup","_decorationService","_instantiationService","createInstance","DecorationService","setService","IDecorationService","LinkProviderService","_inputHandler","onRequestBell","onRequestRefreshRows","onRequestSendFocus","_reportFocus","onRequestReset","onRequestWindowsOptionsReport","_reportWindowsOptions","onColor","_handleColorEvent","forwardEvent","_afterResize","_customKeyEventHandler","_themeService","type","color","toColorRGB","colors","ansi","coreService","C0","ESC","toRgbString","C1_ESCAPED","ST","modifyColors","channels","toColor","restoreColor","buffers","textarea","preventScroll","_handleScreenReaderModeOptionChange","_handleTextAreaFocus","sendFocus","_showCursor","_handleTextAreaBlur","_syncTextArea","isCursorInViewport","_compositionHelper","isComposing","ybase","lineHeight","_initGlobal","_bindKeys","hasSelection","_selectionService","optionsService","isFirefox","button","screenElement","options","rightClickSelectsWord","isLinux","_keyUp","_keyDown","_keyPress","compositionstart","compositionupdate","compositionend","_inputEvent","updateCompositionElements","isConnected","_logService","debug","defaultView","_document","documentOverride","Document","dir","createDocumentFragment","_viewportElement","_viewportScrollArea","updateCursorStyle","_helperContainer","isChromeOS","CoreBrowserService","_charSizeService","CharSizeService","ICharSizeService","ThemeService","IThemeService","_characterJoinerService","CharacterJoinerService","ICharacterJoinerService","RenderService","resize","_compositionView","CompositionHelper","MouseService","linkifier","hasRenderer","setRenderer","_createRenderer","viewport","Viewport","onRequestScrollLines","amount","suppressScrollEvent","onRequestSyncScrollBar","syncScrollArea","handleCursorMove","handleResize","handleBlur","handleFocus","SelectionService","ISelectionService","onRequestRedraw","handleSelectionChanged","columnSelectMode","onLinuxMouseSelection","_onScroll","BufferDecorationRenderer","handleMouseDown","coreMouseService","areMouseEventsActive","disable","enable","screenReaderMode","onSpecificOptionChange","overviewRulerWidth","_overviewRulerRenderer","OverviewRulerRenderer","measure","bindMouse","DomRenderer","getMouseReportCoords","overrideType","buttons","_customWheelEventHandler","getLinesScrolled","deltaY","triggerMouseEvent","col","action","ctrl","ctrlKey","alt","altKey","shiftKey","mouseup","wheel","mousedrag","mousemove","cancel","onProtocolChange","logLevel","explainEvents","passive","activeProtocol","shouldForceSelection","hasScrollback","applicationCursorKeys","abs","handleWheel","handleTouchStart","handleTouchMove","refreshRows","shouldColumnSelect","isCursorInitialized","attachCustomKeyEventHandler","attachCustomWheelEventHandler","registerCharacterJoiner","deregisterCharacterJoiner","deregister","markers","registerMarker","addMarker","registerDecoration","setSelection","getSelectionPosition","selectionStart","selectionEnd","selectAll","selectLines","isMac","macOptionIsMeta","keydown","scrollOnUserInput","evaluateKeyboardEvent","_isThirdLevelShift","metaKey","charCodeAt","ETX","CR","domEvent","getModifierState","keyCode","charCode","which","fromCharCode","inputType","composed","hasValidSize","clearAllMarkers","getBlankLine","DEFAULT_ATTR_DATA","position","clearTextureAtlas","WindowsOptionsReportType","GET_WIN_SIZE_PIXELS","toFixed","GET_CELL_SIZE_PIXELS","cancelEvents","_debounceThresholdMS","_lastRefreshMs","_additionalRefreshRequested","_refreshTimeoutID","Date","now","_scrollArea","scrollBarWidth","_currentRowHeight","_currentDeviceCellHeight","_lastRecordedBufferLength","_lastRecordedViewportHeight","_lastRecordedBufferHeight","_lastTouchY","_lastScrollTop","_wheelPartialScroll","_refreshAnimationFrame","_ignoreNextScrollEvent","_smoothScrollState","startTime","origin","_onRequestScrollLines","offsetWidth","_handleScroll","_activeBuffer","onBufferActivate","activeBuffer","_renderDimensions","_handleThemeChange","onChangeColors","backgroundColor","background","_refresh","device","dpr","offsetHeight","round","scrollTop","offsetParent","_smoothScroll","_isDisposed","_smoothScrollPercent","_clearSmoothScrollState","smoothScrollDuration","_bubbleScroll","cancelable","_getPixelsScrolled","scrollHeight","_applyScrollModifier","deltaMode","WheelEvent","DOM_DELTA_LINE","DOM_DELTA_PAGE","getBufferElements","bufferElements","cursorElement","DOM_DELTA_PIXEL","floor","fastScrollModifier","fastScrollSensitivity","scrollSensitivity","touches","pageY","_screenElement","_decorationElements","_altBufferIsActive","_dimensionsChanged","_container","_doRefreshDecorations","_queueRefresh","onDecorationRegistered","onDecorationRemoved","_removeDecoration","_renderDecoration","_refreshStyle","_refreshXPosition","_createElement","layer","marker","line","display","onRenderEmitter","onDispose","delete","anchor","right","ColorZoneStore","_zones","_zonePool","_zonePoolIndex","_linePadding","full","center","zones","addDecoration","overviewRulerOptions","_lineIntersectsZone","_lineAdjacentToZone","_addLineToZone","startBufferLine","endBufferLine","setPadding","_width","_colorZoneStore","_shouldUpdateDimensions","_shouldUpdateAnchor","_lastKnownBufferLength","_canvas","_refreshCanvasDimensions","parentElement","insertBefore","getContext","_ctx","_registerDecorationListeners","_registerBufferChangeListeners","_registerDimensionChangeListeners","normal","_refreshDrawHeightConstants","_refreshColorZonePadding","_containerHeight","clientHeight","_refreshDrawConstants","ceil","_refreshDecorations","clearRect","lineWidth","_renderColorZone","fillStyle","fillRect","_isComposing","_textarea","_coreService","_isSendingComposition","_compositionPosition","_dataAlreadySent","_finalizeComposition","_handleAnyTextareaChanges","substring","DEL","ICoreService","getComputedStyle","getPropertyValue","getCoordsRelativeToElement","moveToCellSequence","translateBufferLineToString","_linkifier2","_terminalClass","_selectionRenderModel","createSelectionRenderModel","_refreshRowElements","_selectionContainer","createRenderDimensions","_updateDimensions","onOptionChange","_handleOptionsChanged","_injectCss","_rowFactory","DomRendererRowFactory","_handleLinkHover","_handleLinkLeave","_widthCache","_themeStyleElement","_dimensionsStyleElement","WidthCache","setFont","fontWeight","fontWeightBold","_setDefaultSpacing","char","letterSpacing","overflow","_terminalSelector","foreground","multiplyOpacity","cursor","cursorAccent","cursorWidth","selectionBackgroundOpaque","selectionInactiveBackgroundOpaque","INVERTED_DEFAULT_COLOR","opaque","defaultSpacing","handleDevicePixelRatioChange","handleCharSizeChanged","renderRows","replaceChildren","update","viewportStartRow","viewportEndRow","viewportCappedStartRow","viewportCappedEndRow","_createSelectionElement","cursorInactiveStyle","createRow","_setCellUnderline","_workCell","_columnSelectMode","_selectionStart","_selectionEnd","getJoinedCharacters","getNoBgTrimmedLength","I","JoinedCellData","H","_isCellInSelection","F","W","U","forEachDecorationAtCell","N","WHITESPACE_CELL_CHAR","isUnderline","isOverline","isBold","isItalic","bg","selectionForeground","ext","isInvisible","isCursorHidden","isFocused","isDim","underlineStyle","isUnderlineColorDefault","isUnderlineColorRGB","textDecorationColor","AttributeData","getUnderlineColor","drawBoldTextInBrightColors","isStrikethrough","textDecoration","$","getFgColor","j","getFgColorMode","z","getBgColor","K","getBgColorMode","q","isInverse","V","G","X","J","backgroundColorRGB","rgba","foregroundColorRGB","_addStyle","_applyMinimumContrast","minimumContrastRatio","treatGlyphAsBackgroundColor","getCode","_getContrastCache","ensureContrastRatio","halfContrastCache","contrastCache","_flat","Float32Array","_font","_fontSize","_weight","_weightBold","_measureElements","whiteSpace","fontKerning","fontStyle","_holey","fill","_measure","repeat","TEXT_BASELINE","DIM_OPACITY","isLegacyEdge","computeNextVariantOffset","allowRescaling","isEmoji","isRestrictedPowerlineGlyph","isPowerlineGlyph","throwIfFalsy","startCol","endCol","isCellSelected","viewportY","SelectionModel","isSelectAllActive","selectionStartLength","finalSelectionStart","areSelectionValuesReversed","finalSelectionEnd","handleTrim","_onCharSizeChange","onCharSizeChange","_measureStrategy","onMultipleOptionChange","_result","_validateAndSet","_parentElement","_measureElement","Number","OffscreenCanvas","measureText","font","fontBoundingBoxAscent","fontBoundingBoxDescent","content","combinedData","isCombined","setFromCharData","getAsCharData","_characterJoiners","_nextCharacterJoinerId","id","handler","getFg","getBg","_getJoinedRanges","_mergeRanges","_stringRangesToCellRanges","getString","_window","_isFocused","_cachedIsFocused","_screenDprMonitor","_onDprChange","_onWindowChange","onWindowChange","setWindow","devicePixelRatio","hasFocus","queueMicrotask","_parentWindow","_windowResizeListener","_outerListener","_setDprAndFireIfDiffers","_currentDevicePixelRatio","_updateDpr","_setWindowResizeListener","clearListener","_resolutionMediaMatchList","removeListener","matchMedia","addListener","_renderer","_pausedResizeTask","DebouncedIdleTask","_observerDisposable","_isPaused","_needsFullRefresh","_isNextRenderRedrawOnly","_needsSelectionRefresh","_canvasWidth","_canvasHeight","_selectionState","_onDimensionsChange","_onRenderedViewportChange","_onRefreshRequest","onRefreshRequest","_renderDebouncer","_fullRefresh","_registerIntersectionObserver","IntersectionObserver","_handleIntersectionChange","threshold","isIntersecting","intersectionRatio","flush","_fireOnCanvasResize","_linkifier","_dragScrollAmount","_enabled","_mouseDownTimeStamp","_oldHasSelection","_oldSelectionStart","_oldSelectionEnd","_onLinuxMouseSelection","_onRedrawRequest","_mouseMoveListener","_mouseUpListener","onUserInput","_trimListener","onTrim","_handleTrim","_handleBufferActivate","_model","_activeSelectionMode","_removeMouseDownListeners","_isClickInSelection","_getMouseBufferCoords","_areCoordsInSelection","isCellInSelection","_selectWordAtCursor","getRangeLength","_selectWordAt","_getMouseEventScrollAmount","macOptionClickForcesSelection","timeStamp","_handleIncrementalClick","detail","_handleSingleClick","_handleDoubleClick","_handleTripleClick","_addMouseDownListeners","_dragScrollIntervalTimer","_dragScroll","hasWidth","_selectLineAt","_selectToWordAt","altClickMovesCursor","_fireEventIfSelectionChanged","_fireOnSelectionChange","_convertViewportColToCharacterIndex","_getWordAt","charAt","_isCharWordSeparator","trim","getCodePoint","wordSeparator","getWrappedRangeForLine","first","last","createDecorator","DEFAULT_ANSI_COLORS","freeze","toCss","toRgba","_colors","_contrastCache","_halfContrastCache","_onChangeColors","selectionBackgroundTransparent","blend","selectionInactiveBackgroundTransparent","_updateRestoreColors","_setTheme","theme","selectionBackground","selectionInactiveBackground","NULL_COLOR","isOpaque","opacity","black","red","green","yellow","blue","magenta","cyan","white","brightBlack","brightRed","brightGreen","brightYellow","brightBlue","brightMagenta","brightCyan","brightWhite","extendedAnsi","_restoreColor","_restoreColors","CircularList","_maxLength","onDeleteEmitter","onDelete","onInsertEmitter","onInsert","onTrimEmitter","_array","Array","_startIndex","_length","maxLength","_getCyclicIndex","recycle","isFull","trimStart","shiftElements","clone","isArray","contrastRatio","toPaddedHex","rgb","toChannels","willReadFrequently","globalCompositeOperation","createLinearGradient","match","parseFloat","getImageData","pow","relativeLuminance","relativeLuminance2","reduceLuminance","increaseLuminance","_onScrollApi","_windowsWrappingHeuristics","_onBinary","onBinary","_onData","_onLineFeed","_onResize","_onWriteParsed","onWriteParsed","InstantiationService","OptionsService","BufferService","LogService","ILogService","CoreService","CoreMouseService","ICoreMouseService","unicodeService","UnicodeService","IUnicodeService","_charsetService","CharsetService","ICharsetService","OscLinkService","InputHandler","onRequestScrollToBottom","_writeBuffer","handleUserInput","_handleWindowsPtyOptionChange","markRangeDirty","scrollBottom","WriteBuffer","writeSync","LogLevelEnum","WARN","MINIMUM_COLS","MINIMUM_ROWS","scroll","scrollPages","scrollToTop","scrollToLine","registerEscHandler","registerDcsHandler","registerCsiHandler","registerOscHandler","windowsPty","buildNumber","backend","_enableWindowsWrappingHeuristics","updateWindowsModeWrappedState","final","runAndSubscribe","_listeners","_disposed","_event","call","clearListeners","setWinLines","restoreWin","minimizeWin","setWinPosition","setWinSizePixels","raiseWin","lowerWin","refreshWin","setWinSizeChars","maximizeWin","fullscreenWin","getWinState","getWinPosition","getWinSizePixels","getScreenSizePixels","getCellSizePixels","getWinSizeChars","getScreenSizeChars","getIconTitle","getWinTitle","pushTitle","popTitle","getAttrData","_curAttrData","EscapeSequenceParser","_coreMouseService","_unicodeService","_parser","_parseBuffer","Uint32Array","_stringDecoder","StringToUtf32","_utf8Decoder","Utf8ToUtf32","_windowTitle","_iconName","_windowTitleStack","_iconNameStack","_eraseAttrDataInternal","_onRequestBell","_onRequestRefreshRows","_onRequestReset","_onRequestSendFocus","_onRequestSyncScrollBar","_onRequestWindowsOptionsReport","_onA11yChar","_onA11yTab","_onColor","_parseStack","paused","cursorStartX","cursorStartY","decodedLength","_specialColors","_dirtyRowTracker","setCsiHandlerFallback","identifier","identToString","params","toArray","setEscHandlerFallback","setExecuteHandlerFallback","code","setOscHandlerFallback","setDcsHandlerFallback","setPrintHandler","print","insertChars","intermediates","scrollLeft","cursorUp","scrollRight","cursorDown","cursorForward","cursorBackward","cursorNextLine","cursorPrecedingLine","cursorCharAbsolute","cursorPosition","cursorForwardTab","eraseInDisplay","prefix","eraseInLine","insertLines","deleteLines","deleteChars","scrollUp","scrollDown","eraseChars","cursorBackwardTab","charPosAbsolute","hPositionRelative","repeatPrecedingCharacter","sendDeviceAttributesPrimary","sendDeviceAttributesSecondary","linePosAbsolute","vPositionRelative","hVPosition","tabClear","setMode","setModePrivate","resetMode","resetModePrivate","charAttributes","deviceStatus","deviceStatusPrivate","softReset","setCursorStyle","setScrollRegion","saveCursor","windowOptions","restoreCursor","insertColumns","deleteColumns","selectProtected","requestMode","setExecuteHandler","BEL","bell","LF","lineFeed","VT","FF","carriageReturn","BS","backspace","HT","tab","SO","shiftOut","SI","shiftIn","C1","IND","NEL","nextLine","HTS","tabSet","OscHandler","setTitle","setIconName","setOrReportIndexedColor","setHyperlink","setOrReportFgColor","setOrReportBgColor","setOrReportCursorColor","restoreIndexedColor","restoreFgColor","restoreBgColor","restoreCursorColor","reverseIndex","keypadApplicationMode","keypadNumericMode","fullReset","setgLevel","selectDefaultCharset","CHARSETS","selectCharset","screenAlignmentPattern","setErrorHandler","DcsHandler","requestStatusString","_preserveStack","_logSlowResolvingAsync","race","_getCurrentLinkId","DEBUG","prototype","split","clearRange","subarray","charset","wraparound","modes","insertMode","markDirty","setCellFromCodepoint","precedingJoinState","charProperties","extractWidth","extractShouldJoin","stringFromCodePoint","addLineToLink","_eraseAttrData","BufferLine","copyCellsFrom","addCodepointToCell","insertCells","NULL_CELL_CODE","NULL_CELL_WIDTH","convertEol","reverseWraparound","_restrictCursor","nextStop","_setCursor","_moveCursor","tabs","prevStop","_eraseInBufferLine","replaceCells","_resetBufferLine","clearMarkers","deleteCells","codePointAt","copyWithin","_is","termName","setgCharset","DEFAULT_CHARSET","applicationKeypad","activeEncoding","activateAltBuffer","activateNormalBuffer","_updateAttrColor","fromColorRGB","_extractColor","hasSubParams","getSubParams","underlineColor","_processUnderline","updateExtended","_processSGR0","savedX","savedY","savedCurAttrData","savedCharset","_savedCharset","parseColor","_createHyperlink","_finishHyperlink","findIndex","registerLink","_setOrReportSpecialColor","markAllDirty","isProtected","block","bar","_disposables","unregister","_value","FourKeyMap","_data","isIphone","isIpad","getSafariVersion","isSafari","isNode","process","userAgent","SortedList","_getKey","insert","_search","getKeyIterator","forEachByKey","values","IdleTaskQueue","PriorityTaskQueue","_tasks","_i","enqueue","_start","_idleCallback","_cancelCallback","_requestCallback","_process","timeRemaining","_createDeadline","requestIdleCallback","cancelIdleCallback","_queue","CHAR_DATA_CODE_INDEX","WHITESPACE_CELL_CODE","ExtendedAttrs","isBlink","isFgRGB","isBgRGB","isFgPalette","isBgPalette","isFgDefault","isBgDefault","isAttributeDefault","isEmpty","getUnderlineColorMode","isUnderlineColorPalette","getUnderlineStyle","getUnderlineVariantOffset","underlineVariantOffset","_urlId","_ext","Buffer","MAX_BUFFER_SIZE","_hasScrollback","_nullCell","fromCharData","NULL_CELL_CHAR","_whitespaceCell","WHITESPACE_CELL_WIDTH","_isClearing","_memoryCleanupQueue","_memoryCleanupPosition","_cols","_rows","_getCorrectBufferLength","setupTabStops","getWhitespaceCell","scrollback","fillViewportRows","_isReflowEnabled","_reflow","_batchedMemoryCleanup","cleanupMemory","_reflowLarger","_reflowSmaller","reflowLargerGetLinesToRemove","reflowLargerCreateNewLayout","reflowLargerApplyNewLayout","layout","_reflowLargerAdjustViewport","countRemoved","reflowSmallerGetNewLineLengths","newLines","getWrappedLineTrimmedLength","setCell","tabStopWidth","Marker","_removeMarker","_combined","_extendedAttrs","CHAR_DATA_ATTR_INDEX","CHAR_DATA_CHAR_INDEX","CHAR_DATA_WIDTH_INDEX","byteLength","copyFrom","reduce","BufferSet","_onBufferActivate","_normal","_alt","inactiveBuffer","DEFAULT_EXT","DEFAULT_ATTR","DEFAULT_COLOR","_id","isDisposed","_nextId","_onDispose","Q","Y","Z","NUL","SOH","STX","EOT","ENQ","ACK","DLE","DC1","DC2","DC3","DC4","NAK","SYN","ETB","CAN","EM","SUB","FS","GS","RS","US","SP","PAD","HOP","BPH","NBH","SSA","ESA","HTJ","VTS","PLD","PLU","RI","SS2","SS3","DCS","PU1","PU2","STS","CCH","MW","SPA","EPA","SOS","SGCI","SCI","CSI","OSC","PM","APC","toUpperCase","toLowerCase","utf32ToString","_interim","interim","Uint8Array","UnicodeV6","version","wcwidth","createPropertyValue","_action","_callbacks","_pendingData","_bufferOffset","_isSyncWriting","_syncCalls","_didUserInput","_innerWrite","PAYLOAD_LIMIT","DcsParser","_handlers","_active","_ident","_handlerFb","_stack","loopPosition","fallThrough","registerHandler","clearHandler","setHandlerFallback","unhook","hook","put","Params","addParam","_params","_hitLimit","VT500_TRANSITION_TABLE","TransitionTable","table","setDefault","addMany","apply","_transitions","handlers","handlerPos","transition","chunkPos","initialState","currentState","_collect","_printHandlerFb","_executeHandlerFb","_csiHandlerFb","_escHandlerFb","_errorHandlerFb","_printHandler","_executeHandlers","_csiHandlers","_escHandlers","_oscParser","OscParser","_dcsParser","_errorHandler","_identifier","clearPrintHandler","clearEscHandler","clearExecuteHandler","clearCsiHandler","clearDcsHandler","clearOscHandler","clearErrorHandler","collect","abort","addSubParam","addDigit","_state","_put","fromArray","maxSubParamsLength","Int32Array","_subParams","_subParamsLength","_subParamsIdx","Uint16Array","_rejectDigits","_rejectSubDigits","_digitIsSub","getSubParamsAll","AddonManager","_addons","instance","_wrappedAddonDispose","BufferApiView","_buffer","init","cursorY","cursorX","baseY","BufferLineApiView","_line","BufferNamespaceApi","_core","_onBufferChange","onBufferChange","_alternate","alternate","ParserApi","addCsiHandler","addDcsHandler","addEscHandler","addOscHandler","UnicodeApi","versions","activeVersion","isUserScrolling","_cachedBlankLine","glevel","_charsets","NONE","events","restrict","X10","VT200","DRAG","ANY","DEFAULT","SGR","SGR_PIXELS","_protocols","_encodings","_activeProtocol","_activeEncoding","_lastEvent","_onProtocolChange","addProtocol","addEncoding","_equalEvents","triggerBinaryEvent","down","up","drag","move","_onUserInput","_onRequestScrollToBottom","disableStdin","_decorations","_onDecorationRegistered","_onDecorationRemoved","getDecorationsAtCell","_cachedBg","_cachedFg","foregroundColor","ServiceCollection","_entries","_services","getService","getServiceDependencies","sort","name","traceCall","setTraceLogger","trace","TRACE","INFO","ERROR","off","OFF","_logLevel","_updateLogLevel","_evalLazyOptionalParams","_log","logger","DEFAULT_OPTIONS","customGlyphs","allowProposedApi","allowTransparency","rescaleOverlappingGlyphs","_onOptionChange","_sanitizeAndValidateOption","_setupOptions","_entriesWithId","_dataByLinkId","_removeMarkerFromLink","_getEntryIdKey","every","serviceRegistry","extractCharKind","_providers","_onChange","onChange","_activeProvider","getStringCellWidth","_addonManager","_publicOptions","_checkReadonlyOptions","_checkProposedApi","parser","unicode","applicationCursorKeysMode","applicationKeypadMode","mouseTrackingMode","originMode","reverseWraparoundMode","sendFocusMode","wraparoundMode","_verifyIntegers","_verifyPositiveIntegers","writeln","strings","var_args","ex","stackArray","stack","path","rtdep","ary","runtimeDependencies_","passed","sourceList","names","obj","initCallbacks_","onInit","opt_logFunction","initNext","rec","alarm","ensureRuntimeDependencies_","padStart","targetLength","padString","undefined","padEnd","re_","hex16","hex24","rgbx","x11rgb","rgbToX11","scale","zpad","x11HexToCSS","substr","arrayToRGBA","x11ToCSS","nameToRGB","hexToRGB","arg","convert","hex","rgbToHex","crackRGB","normalizeCSS","def","alpha","setAlpha","mix","base","tint","percent","ary1","ary2","diff","colorNames","stockColorPalette","colorPalette","createEnum","replaceVars","str","vars","fn","varname","rv","functions","encodeURI","encodeURIComponent","escapeHTML","getAcceptLanguages","chromeSupported","chrome","i18n","language","parseQuery","queryString","pairs","pair","decodeURIComponent","getURL","runtime","clamp","number","getWhitespace","whitespace","opt_ms","wrapperGenerator","ms","getStack","opt_ignoreFrames","ignoreFrames","stackObject","smartFloorDivide","numerator","denominator","val","ceiling","randomInt","random","MessageManager","languages","languages_","messages","addMessages","defs","placeholders","findAndLoadMessages","pattern","onComplete","concat","loaded","failed","onLanguageComplete","tryNextLanguage","loadMessages","replaceReferences","url","onSuccess","opt_onError","xhr","XMLHttpRequest","onloadend","status","responseText","msg","msgname","opt_args","opt_default","getMessage","processI18nAttributes","dom","nodes","querySelectorAll","processI18nAttribute","thunk","tagName","attr","PreferenceManager","storage","opt_prefix","storageObserver_","onStorageChange_","isActive_","endsWith","prefRecords_","globalObservers_","childFactories_","childLists_","DEFAULT_VALUE","Record","defaultValue","currentValue","observers","addObserver","removeObserver","readStorage","opt_callback","pendingChildren","onChildComplete","getItems","items","prefixLength","needSync","syncChildList","definePreference","opt_onChange","record","changeDefault","definePreferences","defaults","defineChildren","listName","childFactory","onChildListChange_","addObservers","global","notifyAll","notifyChange_","createChild","opt_hint","opt_id","ids","childManager","resetAll","getChild","diffChildLists","added","removed","common","onChildStorage","currentIds","oldIds","managerIndex","removeItem","changed","removeItems","newValue","changeDefaults","oldValue","setItem","exportAsJson","childIds","json","importFromJson","childPrefManager","lastIndexOf","resource","resources_","opt_defaultValue","getDataUrl","Storage","Chrome","storage_","observers_","onChanged","onChanged_","changes","areaname","getItem","setItems","Local","localStorage","onStorage_","storageArea","prevValue","curValue","Memory","TestManager","opt_log","Log","createTestRun","opt_cx","TestRun","onTestRunComplete","testRun","testPreamble","result","cx","testPostamble","opt_console","save","prefix_","prefixStack_","console_","level","msgPrefix","oLog","group","oGroup","label","oGroupEnd","groupEnd","Suite","suiteName","ctor","testManager","testManager_","addTest","disableTest","getTest","getTestList","testList_","testMap_","subclasses","testName","testFunction","Test","fullName","setDefaults","preamble","postamble","suiteClass","testFunction_","run","suite","Result","TestComplete","println","completeTest_","FAILED","failures","passes","startDate","duration","currentResult","maxFailures","panic","testQueue_","ALL_TESTS","selectTest","selectSuite","opt_pattern","selectCount","testList","selectPattern","onUncaughtException_","file","expectedErrorMessage_","when","PENDING","onTestRunComplete_","opt_skipTimeout","msToSeconds_","summarize","onerror","onResultComplete","ctx","PASSED","currentSuite","runNextTest_","onResultReComplete","lateStatus","timeout_","expectErrorMessage","onTimeout_","requestTime","opt_throw","arrayEQ_","actual","expected","assertEQ","opt_name","format","fail","getCallerLocation_","assert","frameIndex","opt_message","pass","bytesLeft","codePoint","lowerBound","ret","decodeUTF8","utf8","encodeUTF8","wc","nulWidth","controlWidth","regardCjkAmbiguous","cjkAmbiguousWidth","combining","ambiguous","isSpace","ucs","mid","isCjkAmbiguous","charWidth","charWidthRegardAmbiguous","charWidthDisregardAmbiguous","strWidth","opt_width","startIndex","endIndex","hterm","registerInit","onWindow","windowType","defaultStorage","sync","isPackagedApp","getManifest","manifest","app","getCurrent","windows","windowId","getClientSize","getClientWidth","getClientHeight","copySelectionToClipboard","execCommand","firefoxException","pasteFromClipboard","notify","curr","fallback","icon","desktopNotificationTitle","Notification","onclick","Size","setTo","that","equals","RowCol","opt_overflow","Frame","terminal","opt_options","terminal_","div_","iframe_","container_","messageChannel_","onMessage_","sendTerminalInfo_","port1","onmessage","onMessage","onLoad","onLoad_","MessageChannel","contentWindow","postMessage","argv","messagePort","port2","acceptLanguages","getForegroundColor","getBackgroundColor","cursorColor","getCursorColor","getFontSize","getFontFamily","baseURL","onCloseClicked_","show","opt","divSize","document_","container","cssText","iframe","onload","Keyboard","keyboardElement_","handlers_","onFocusOut_","onKeyDown_","onKeyPress_","onKeyUp_","onTextInput_","keyMap","KeyMap","bindings","Bindings","altGrMode","shiftInsertPaste","homeKeysScroll","pageKeysScroll","ctrlPlusMinusZeroZoom","ctrlCCopy","ctrlVPaste","applicationCursor","backspaceSendsBackspace","characterEncoding","metaSendsEscape","passMetaV","altSendsWhat","altIsMeta","altBackspaceIsMetaBackspace","altKeyPressed","mediaKeysAreFKeys","previousAltSendsWhat_","KeyActions","CANCEL","PASS","STRIP","encode","vt","installKeyboard","uninstallKeyboard","onVTKeystroke","lowerKey","ch","preventChromeAppNonCtrlShiftDefault_","keyDef","keyDefs","resolvedActionType","control","meta","isPrintable","keyCap","keyboard","getAction","maskShiftKey","keyDown","binding","getBinding","mod","bindings_","addBinding_","keyPattern","list","matchKeyPattern","KeyPattern","sortCompare","addBinding","sequence","Parser","parseKeySequence","isComplete","parseKeyAction","addBindings","matchKeyDown","addKeyDef","addKeyDefs","ac","bs","sh","ctl","med","onKeyInsert_","onKeyHome_","altey","scrollHome","onKeyEnd_","scrollEnd","onKeyPageUp_","scrollPageUp","onKeyDel_","onKeyPageDown_","scrollPageDown","onKeyArrowUp_","scrollLineUp","onKeyArrowDown_","scrollLineDown","onClear_","wipeContents","onCtrlNum_","passCtrlNumber","onAltNum_","passAltNumber","onMetaNum_","passMetaNumber","onCtrlC_","selection","getDocument","clearSelectionAfterCopy","collapseToEnd","onCtrlN_","innerWidth","innerHeight","onCtrlV_","onMetaN_","outerWidth","outerHeight","onMetaC_","onMetaV_","onPlusMinusZero_","getZoomFactor","cap","setFontSize","spec","wildcardCount","modifiers","match_","exactMatch","modValue","Options","opt_copy","autoCarriageReturn","cursorVisible","reverseVideo","bracketedPaste","pos","opt_pos","identifiers","modifierKeys","skipSpace","token","parseToken","ucValue","hasOwnProperty","keyCodes","advance","actions","peekString","peekIdentifier","peekInteger","parseIdentifier","parseString","parseInteger","parsePattern","quote","re","lastIndex","parseEscape","count","opt_expect","SHIFT","CTRL","CONTROL","ALT","META","ESCAPE","F1","F2","F3","F4","F5","F6","F7","F8","F9","F10","F11","F12","ONE","TWO","THREE","FOUR","FIVE","SIX","SEVEN","EIGHT","NINE","ZERO","BACKSPACE","BKSP","TAB","CAPS_LOCK","CAPSLOCK","CAPS","ENTER","ENT","RETURN","RET","SPACE","PRINT_SCREEN","PRTSC","SCROLL_LOCK","SCRLK","BREAK","BRK","INSERT","INS","HOME","PAGE_UP","PGUP","DELETE","END","PAGE_DOWN","PGDOWN","PGDN","UP","DOWN","RIGHT","LEFT","NUMLOCK","KP0","KP1","KP2","KP3","KP4","KP5","KP6","KP7","KP8","KP9","KP_PLUS","KP_ADD","KP_MINUS","KP_SUBTRACT","KP_STAR","KP_MULTIPLY","KP_DIVIDE","KP_DECIMAL","KP_PERIOD","NAVIGATE_BACK","NAVIGATE_FORWARD","RELOAD","FULL_SCREEN","WINDOW_OVERVIEW","BRIGHTNESS_UP","BRIGHTNESS_DOWN","clearScrollback","profileId","defaultPreferences","categories","Appearance","CopyPaste","Sounds","Scrolling","Encoding","Miscellaneous","categoryDefinitions","PubSub","addBehavior","pubsub","subscribe","subject","unsubscribe","publish","opt_lastCallback","notifyList","Screen","opt_columnCount","rowsArray","columnCount_","textAttributes","TextAttributes","cursorRowNode_","cursorNode_","cursorOffset_","wordBreakMatchLeft","wordBreakMatchRight","wordBreakMatchMiddle","getSize","getHeight","setColumnCount","setCursorPosition","shiftRow","shiftRows","unshiftRow","unshiftRows","popRow","popRows","pushRow","pushRows","insertRow","insertRows","removeRow","removeRows","invalidateCursorPosition","clearCursorRow","innerHTML","removeAttribute","isDefault","inverse","syncColors","createContainer","commitLineOverflow","rowNode","firstChild","createTextNode","currentColumn","nodeWidth","nextSibling","syncSelectionCaret","collapse","firefoxIgnoredException","splitNode_","afterNode","cloneNode","nodeSubstr","maybeClipCurrentRow","insertString","cursorNode","cursorNodeText","reverseOffset","ws","strikethrough","wcNode","asciiNode","tileData","nodeType","tileNode","wsNode","matchesContainer","previousSibling","newNode","overwriteString","currentCursorColumn","startLength","endLength","spaceNode","nextNode","emptyNode","getLineStartRow_","hasAttribute","getLineText_","rowText","getXRowAncestor_","nodeName","getPositionWithOverflow_","ancestorRow","getPositionWithinRow_","currentNode","getNodeAndOffsetWithOverflow_","getNodeAndOffsetWithinRow_","nodeTextWidth","setRange_","startNodeAndOffset","endNodeAndOffset","setStart","setEnd","expandSelection","getRangeAt","startContainer","startPosition","startOffset","endPosition","endContainer","endOffset","leftMatch","rightMatch","insideMatch","lineUpToRange","leftRegularExpression","expandedStart","search","lineFromRange","rightRegularExpression","found","expandedEnd","addRange","ScrollPort","rowProvider","rowProvider_","characterSize","ruler_","Selection","currentRowNodeCache_","previousRowNodeCache_","lastScreenWidth_","lastScreenHeight_","selectionEnabled_","lastRowCount_","scrollWheelMultiplier_","lastTouch_","isScrolledEnd","currentScrollbarWidthPx","timeouts_","DEBUG_","scrollPort","scrollPort_","startRow","endRow","isMultiline","findFirstChild","parent","childAry","anchorFirst","anchorRow","startNode","focusRow","endNode","focusFirst","rowIndex","firstNode","div","src","onResize_","doc","contentDocument","paddingTop","paddingBottom","head","userCssLink_","userCssText_","screen_","onScroll_","onScrollWheel_","onTouch_","onCopy_","onPaste_","onBodyKeyDown_","rowNodes_","topSelectBag_","bottomSelectBag_","topFold_","bottomFold_","scrollArea_","xmlns","svg_","createElementNS","pasteTarget_","contentEditable","handlePasteTargetTextInput_","setFontFamily","opt_smoothing","webkitFontSmoothing","syncCharacterSize","setUserCssUrl","setUserCssText","setForegroundColor","setBackgroundColor","setBackgroundImage","image","backgroundImage","setBackgroundSize","backgroundSize","setBackgroundPosition","backgroundPosition","setCtrlVPaste","getScreenSize","getScreenWidth","getScreenHeight","getScreenNode","resetCache","setRowProvider","scheduleRedraw","invalidate","topRowIndex","getTopRowIndex","bottomRowIndex","getBottomRowIndex","drawVisibleRows_","scheduleInvalidate","px","measureCharacterSize","opt_weight","rulerSpan_","rulerBaseline_","rulerSize","baseline","offsetTop","zoomFactor","currentScale","clientWidth","syncScrollHeight","syncRowNodesDimensions_","scrollRowToBottom","getRowCount","screenSize","visibleRowCount","visibleRowsHeight","visibleRowTopMargin","visibleRowBottomMargin","marginBottom","topFoldOffset","offsetLeft","redraw","redraw_","resetSelectBags_","drawTopFold_","drawBottomFold_","lastChild","removeUntilNode","targetNode","deadNode","selectionStartRow","selectionEndRow","bottomFold","targetDrawCount","drawCount","fetchRowNode_","cacheRowNode_","getRowNode","firstRow","lastRow","lastRowIndex","extend","getScrollMax_","scrollRowToTop","scrollMax","onScrollWheel","defaultPrevented","delta","scrollWheelDelta","onTouch","touch","scrubTouch","changedTouches","onCopy","endBackfillIndex","startBackfillIndex","getRowsText","setScrollbarVisible","overflowY","setScrollWheelMoveMultipler","multiplier","opt_profileId","profileId_","primaryScreen_","alternateScreen_","scrollbackRows_","tabStops_","defaultTabStops","vtScrollTop_","vtScrollBottom_","cursorShape_","cursorShape","BLOCK","cursorColor_","cursorBlinkCycle_","myOnCursorBlink_","onCursorBlink_","backgroundColor_","foregroundColor_","scrollOnOutput_","scrollOnKeystroke_","scrollWheelArrowKeys_","defeatMouseReports_","bellAudio_","bellNotificationList_","desktopNotificationBell_","savedOptions_","options_","io","IO","enableMouseDragScroll","copyOnSelect","mouseRightClickPaste","mousePasteButton","useDefaultWindowCopy","realizeSize_","setDefaultTabStops","setProfile","onTerminalReady","BEAM","UNDERLINE","tabWidth","prefs_","permission","characterMaps","setOverrides","setCursorBlink","setCursorColor","resetColorPalette","enable8BitControl","syncBoldSafeState","enableBoldAsBright","syncBlinkState","enableClipboardWrite","enableDec12","syncFontFamily","maxStringSequence","syncMousePasteButton","setEncoding","getPrefs","setBracketedPaste","borderColor","setSelectionEnabled","runCommandClass","commandClass","argString","environment","command","onExit","isPrimaryScreen","setCssVar","documentElement","setProperty","enableBold","normalSize","boldSize","isBoldSafe","syncMouseStyle","mouseReport","MOUSE_REPORT_DISABLED","getTextAttributes","setTextAttributes","clearCursorOverflow","setCursorShape","shape","restyleCursor_","getCursorShape","setWidth","columnCount","scheduleSyncCursorPosition_","setHeight","rowCount","realizeWidth_","realizeHeight_","onTerminalResize_","deltaColumns","deltaRows","getRowText","scrollbackCount","appendRows_","setVTScrollRegion","screen","bottom","renumberRows_","clearHome","syncCursorPosition_","clearAllTabStops","setCursorVisible","forwardTabStop","setCursorColumn","backwardTabStop","setTabStop","clearTabStopAtCursor","opt_start","interpret","oncontextmenu","onMouse","onMouse_","screenNode","onFocusChange_","scrollBlockerNode_","setReverseVideo","screenIndex","cursorRow","extraRows","scheduleScrollDown_","setAbsoluteCursorPosition","moveRows_","fromIndex","toIndex","opt_screen","newLine","didOverflow","tokens","splitWidecharString","getVTScrollTop","getVTScrollBottom","cursorAtEndOfScreen","vtScrollUp","formFeed","reverseLineFeed","currentRow","setAbsoluteCursorRow","eraseToLeft","eraseToRight","opt_count","maxCount","eraseLine","eraseAbove","eraseBelow","moveCount","moveStart","insertSpace","deleted","vtScrollDown","setRelativeCursorPosition","getCursorColumn","getCursorRow","scheduleRedraw_","minHeight","maxHeight","cursorLeft","newRow","newColumn","cursorRight","ringBell","bellSquelchTimeout_","play","bellSequelchTimeout_","closeBellNotifications_","setOriginMode","setInsertMode","setAutoCarriageReturn","setWraparound","setReverseWraparound","setAlternateMode","cursorRowIndex","borderBottomStyle","borderLeftStyle","syncCursor","showZoomWarning_","zoomWarningNode_","zoomWarningMessage","showOverlay","opt_timeout","overlayNode_","overlaySize","overlayTimeout_","copyStringToClipboard","notifyCopyMessage","copySource","selectAllChildren","getSelectionText","string","openUrl","openTab","openSelectedUrl_","processedByTerminalHandler_","reportMouseEvents","terminalRow","terminalColumn","engaged","warning","sendString","focused","isNewSize","previousIO_","createFrame","setTerminalProfile","profileName","keyboardCaptured_","onTerminalResize","writeUTF8","writelnUTF8","writeUTF16","writelnUTF16","foregroundSource","SRC_DEFAULT","backgroundSource","defaultForeground","defaultBackground","bold","faint","italic","blink","invisible","SRC_RGB","setDocument","opt_textContent","span","classes","blinkNode","colorToMakeFaint","containersMatch","obj1","obj2","containerIsDefault","style1","style2","nodeSubstring","increment","onTerminalMouse_","parseState_","ParseState","parseUnknown_","leadingModifier_","trailingModifier_","allowColumnWidthChanges_","oscTimeLimit_","utf8Decoder_","warnUnimplemented","CharacterMaps","G0","G1","G2","G3","getMap","GL","GR","codingSystemUtf8_","codingSystemLocked_","cc1Pattern_","updateEncodingState_","savedState_","CursorState","MOUSE_REPORT_CLICK","MOUSE_REPORT_DRAG","defaultFunction","opt_buf","buf","func","resetParseFunction","resetBuf","resetArguments","opt_arg_zero","iarg","argnum","peekRemainingBuf","peekChar","consumeChar","vt_","restore","response","encoding","cc1","CC1","filter","parseState","nextControl","dispatch","parseCSI_","parseUntilStringTerminator_","abortReason","nextTerminator","ignore","setANSIMode","setDECMode","scrollOnOutput","scrollOnKeystroke","VT52","parseESC","parseOSC","pairCount","responseArray","pairNumber","colorIndex","colorValue","colorX11","get256","getTrueColor","attrs","trueColor","CharacterMap","description","glmap","glmapBase_","sync_","opt_glmap","glmap_","glre_","assign","glchars","maps_","DefaultMaps","mapsBase_","addMap","maps","proposeDimensions","GlyphRenderer","BYTES_PER_ELEMENT","_gl","_dimensions","_vertices","attributes","attributesBuffers","TextureAtlas","maxAtlasPages","getParameter","MAX_TEXTURE_IMAGE_UNITS","maxTextureSize","MAX_TEXTURE_SIZE","_program","createProgram","deleteProgram","_projectionLocation","getUniformLocation","_resolutionLocation","_textureLocation","_vertexArrayObject","createVertexArray","bindVertexArray","createBuffer","deleteBuffer","bindBuffer","ARRAY_BUFFER","bufferData","STATIC_DRAW","enableVertexAttribArray","vertexAttribPointer","FLOAT","ELEMENT_ARRAY_BUFFER","_attributesBuffer","vertexAttribDivisor","useProgram","uniform1iv","uniformMatrix4fv","PROJECTION_MATRIX","_atlasTextures","GLTexture","createTexture","deleteTexture","texture","activeTexture","TEXTURE0","bindTexture","TEXTURE_2D","texParameteri","TEXTURE_WRAP_S","CLAMP_TO_EDGE","TEXTURE_WRAP_T","texImage2D","RGBA","UNSIGNED_BYTE","BLEND","blendFunc","SRC_ALPHA","ONE_MINUS_SRC_ALPHA","beginFrame","_atlas","updateCell","_updateCell","getRasterizedGlyphCombinedChar","getRasterizedGlyph","texturePage","texturePositionClipSpace","pages","sizeClipSpace","uniform2f","render","lineLengths","STREAM_DRAW","_bindAtlasPageTexture","drawElementsInstanced","TRIANGLE_STRIP","setAtlas","generateMipmap","setDimensions","RectangleRenderer","_verticesCursor","_updateCachedColors","_updateViewportRectangle","renderBackgrounds","_renderVertices","renderCursor","DYNAMIC_DRAW","_bgFloat","_colorToFloat32Array","_cursorFloat","_addRectangleFloat","updateBackgrounds","RENDER_MODEL_INDICIES_PER_CELL","cells","RENDER_MODEL_BG_OFFSET","RENDER_MODEL_FG_OFFSET","_updateRectangle","updateCursor","expandFloat32Array","_addRectangle","RenderModel","COMBINED_CHAR_BIT_MASK","RENDER_MODEL_EXT_OFFSET","WebglRenderer","_cursorBlinkStateManager","_charAtlasDisposable","_workCell2","_rectangleRenderer","_glyphRenderer","_onChangeTextureAtlas","onChangeTextureAtlas","_onAddTextureAtlasCanvas","onAddTextureAtlasCanvas","_onRemoveTextureAtlasCanvas","onRemoveTextureAtlasCanvas","_onRequestRedraw","_onContextLoss","onContextLoss","_handleColorChange","_cellColorResolver","CellColorResolver","_renderLayers","LinkRenderLayer","_devicePixelRatio","_updateCursorBlink","antialias","depth","preserveDrawingBuffer","_contextRestorationTimeout","removeTerminalFromCache","_initializeWebGLState","_requestRedrawViewport","observeDevicePixelDimensions","_setCanvasDevicePixelDimensions","_isAttached","textureAtlas","_charAtlas","_refreshCharAtlas","_clearModel","pause","resume","restartBlinkAnimation","acquireTextureAtlas","warmUp","clearTexture","handleGridChanged","_updateModel","isCursorVisible","CursorBlinkStateManager","_requestRedrawCursor","createShader","shaderSource","compileShader","getShaderParameter","COMPILE_STATUS","getShaderInfoLog","deleteShader","attachShader","VERTEX_SHADER","FRAGMENT_SHADER","linkProgram","getProgramParameter","LINK_STATUS","getProgramInfoLog","BaseRenderLayer","_alpha","_deviceCharWidth","_deviceCharHeight","_deviceCellWidth","_deviceCellHeight","_deviceCharLeft","_deviceCharTop","_initCanvas","_clearAll","_setTransparency","replaceChild","_fillBottomLineAtCells","_clearCells","_fillCharTrueColor","_getFont","textBaseline","_clipCell","fillText","beginPath","rect","clip","_handleShowLinkUnderline","_handleHideLinkUnderline","is256Color","_optionService","generateConfig","ownedBy","configEquals","config","atlas","deviceCellWidth","deviceCellHeight","deviceCharWidth","deviceCharHeight","_restartInterval","isPaused","_blinkStartTimeout","_blinkInterval","_animationTimeRestarted","tryDrawCustomChar","powerlineDefinitions","boxDrawingDefinitions","blockElementDefinitions","rightPadding","leftPadding","ImageData","putImageData","createPattern","strokeStyle","stroke","closePath","Path2D","bezierCurveTo","lineTo","moveTo","ResizeObserver","devicePixelContentBoxSize","inlineSize","blockSize","box","texturePosition","_pages","_config","_didWarmUp","_cacheMap","_cacheMapCombined","_activePages","_workBoundingBox","_workAttributeData","_textureSize","_requestClearModel","_createNewPage","_tmpCanvas","_tmpCtx","_doWarmUp","_drawToCache","percentageUsed","glyphs","_mergePages","_deletePage","drawImage","_getFromCacheMap","_getColorFromAnsiIndex","_getBackgroundColor","_getForegroundColor","_getMinimumContrastColor","_resolveBackgroundRgba","_resolveForegroundRgba","setLineDash","actualBoundingBoxDescent","strokeText","_findGlyphBoundingBox","fixedRows","addGlyph","_usedPixels","_glyphs","_preserveDrawingBuffer","bare","Hterm","Connection","ConnectionFactory","WebSocket","isOpen","readyState","CONNECTING","OPEN","onopen","onclose","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","__webpack_modules__","getElementById","gotty_term","pathname","factory","gotty_auth_token"],"sourceRoot":""} \ No newline at end of file diff --git a/js/dist/main.d.ts b/js/dist/main.d.ts index e69de29..1cbca16 100644 --- a/js/dist/main.d.ts +++ b/js/dist/main.d.ts @@ -0,0 +1,2 @@ +export declare class GoTTY { +} diff --git a/js/dist/waitFor.d.ts b/js/dist/waitFor.d.ts new file mode 100644 index 0000000..6403617 --- /dev/null +++ b/js/dist/waitFor.d.ts @@ -0,0 +1,9 @@ +/** + * Waits for a DOM element matching the selector to exist in the document. + * Resolves immediately if it already exists. + * + * @param selector CSS selector for the element to wait for + * @param timeout Optional timeout in milliseconds (default: no timeout) + * @returns Promise that resolves with the found element + */ +export declare function waitForElement(selector: string, timeout?: number): Promise; diff --git a/js/dist/xterm.d.ts b/js/dist/xterm.d.ts index 053d8e8..41a85b7 100644 --- a/js/dist/xterm.d.ts +++ b/js/dist/xterm.d.ts @@ -1,13 +1,16 @@ -import * as bare from "xterm"; import { lib } from "libapps"; +import { IDisposable, Terminal } from "@xterm/xterm"; +import { FitAddon } from "@xterm/addon-fit"; export declare class Xterm { elem: HTMLElement; - term: bare; + term: Terminal; resizeListener: () => void; decoder: lib.UTF8Decoder; message: HTMLElement; messageTimeout: number; - messageTimer: number; + messageTimer: ReturnType; + fitAddon: FitAddon; + disposables: IDisposable[]; constructor(elem: HTMLElement); info(): { columns: number; diff --git a/js/package-lock.json b/js/package-lock.json index 0a9eede..4941ef2 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1,2404 +1,1851 @@ { + "name": "js", + "lockfileVersion": 3, "requires": true, - "lockfileVersion": 1, - "dependencies": { - "acorn": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.1.1.tgz", - "integrity": "sha512-vOk6uEMctu0vQrvuSqFdJyqj1Q0S5VTDL79qtjo+DhRr+1mmaD+tluFSCZqhvi/JUhXSzoZN2BhtstaPEeE8cw==", - "dev": true - }, - "acorn-dynamic-import": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz", - "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=", - "dev": true, - "requires": { - "acorn": "4.0.13" - }, + "packages": { + "": { "dependencies": { - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=", - "dev": true + "@xterm/addon-fit": "^0.10.0", + "@xterm/addon-web-links": "^0.11.0", + "@xterm/addon-webgl": "^0.18.0", + "@xterm/xterm": "^5.5.0", + "libapps": "github:yudai/libapps#release-hterm-1.70" + }, + "devDependencies": { + "license-loader": "^0.7.0", + "ts-loader": "^9.1.2", + "typescript": "^4.4.4", + "typescript-formatter": "^7.2.2", + "webpack": "^5", + "webpack-cli": "^6" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.6.3.tgz", + "integrity": "sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.17.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@types/eslint": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.9.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.9.2.tgz", + "integrity": "sha512-uWN8YqxXxqFMX2RqGOrumsKeti4LlmIMIyV0lgut4jx7KQBcBiW6vkDtIBvHnHIquwNfJhk8v2OtmO8zXWHfPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-3.0.1.tgz", + "integrity": "sha512-u8d0pJ5YFgneF/GuvEiDA61Tf1VDomHHYMjv/wc9XzYj7nopltpG96nXN5dJRstxZhcNpV1g+nT6CydO7pHbjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12.0" + }, + "peerDependencies": { + "webpack": "^5.82.0", + "webpack-cli": "6.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-3.0.1.tgz", + "integrity": "sha512-coEmDzc2u/ffMvuW9aCjoRzNSPDl/XLuhPdlFRpT9tZHmJ/039az33CE7uH+8s0uL1j5ZNtfdv0HkfaKRBGJsQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12.0" + }, + "peerDependencies": { + "webpack": "^5.82.0", + "webpack-cli": "6.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-3.0.1.tgz", + "integrity": "sha512-sbgw03xQaCLiT6gcY/6u3qBDn01CWw/nbaXl3gTdTFuJJ75Gffv3E3DBpgvY2fkkrdS1fpjaXNOmJlnbtKauKg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12.0" + }, + "peerDependencies": { + "webpack": "^5.82.0", + "webpack-cli": "6.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true } } }, - "ajv": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", - "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", - "dev": true, - "requires": { - "co": "4.6.0", - "json-stable-stringify": "1.0.1" + "node_modules/@xterm/addon-fit": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@xterm/addon-fit/-/addon-fit-0.10.0.tgz", + "integrity": "sha512-UFYkDm4HUahf2lnEyHvio51TNGiLK66mqP2JoATy7hRZeXaGMRDr00JiSF7m63vR5WKATF605yEggJKsw0JpMQ==", + "license": "MIT", + "peerDependencies": { + "@xterm/xterm": "^5.0.0" } }, - "ajv-keywords": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", - "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=", - "dev": true - }, - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", - "dev": true, - "requires": { - "kind-of": "3.2.2", - "longest": "1.0.1", - "repeat-string": "1.6.1" + "node_modules/@xterm/addon-web-links": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@xterm/addon-web-links/-/addon-web-links-0.11.0.tgz", + "integrity": "sha512-nIHQ38pQI+a5kXnRaTgwqSHnX7KE6+4SVoceompgHL26unAxdfP6IPqUTSYPQgSwM56hsElfoNrrW5V7BUED/Q==", + "license": "MIT", + "peerDependencies": { + "@xterm/xterm": "^5.0.0" } }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "anymatch": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz", - "integrity": "sha1-o+Uvo5FoyCX/V7AkgSbOWo/5VQc=", - "dev": true, - "requires": { - "arrify": "1.0.1", - "micromatch": "2.3.11" + "node_modules/@xterm/addon-webgl": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@xterm/addon-webgl/-/addon-webgl-0.18.0.tgz", + "integrity": "sha512-xCnfMBTI+/HKPdRnSOHaJDRqEpq2Ugy8LEj9GiY4J3zJObo3joylIFaMvzBwbYRg8zLtkO0KQaStCeSfoaI2/w==", + "license": "MIT", + "peerDependencies": { + "@xterm/xterm": "^5.0.0" } }, - "aproba": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz", - "integrity": "sha512-ZpYajIfO0j2cOFTO955KUMIKNmj6zhX8kVztMAxFsDaMwz+9Z9SV0uou2pC9HJqcfpffOsjnbrDMvkNy+9RXPw==", - "dev": true + "node_modules/@xterm/xterm": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-5.5.0.tgz", + "integrity": "sha512-hqJHYaQb5OptNunnyAnkHyM8aCjZ1MEIDTQu1iIbbTD/xops91NB5yq1ZK/dC2JDbVWtF23zUtl9JE2NqwT87A==", + "license": "MIT" }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "dev": true, - "requires": { - "arr-flatten": "1.1.0" - } - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "dev": true - }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", - "dev": true - }, - "asn1.js": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.9.1.tgz", - "integrity": "sha1-SLokC0WpKA6UdImQull9IWYX/UA=", - "dev": true, - "requires": { - "bn.js": "4.11.7", - "inherits": "2.0.3", - "minimalistic-assert": "1.0.0" - } - }, - "assert": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", - "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", - "dev": true, - "requires": { - "util": "0.10.3" - } - }, - "async": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/async/-/async-2.5.0.tgz", - "integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==", - "dev": true, - "requires": { - "lodash": "4.17.4" - } - }, - "async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", - "dev": true - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "base64-js": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz", - "integrity": "sha512-dwVUVIXsBZXwTuwnXI9RK8sBmgq09NDHzyR9SAph9eqk76gKK2JSQmZARC2zRC81JC2QTtxD0ARU5qTS25gIGw==", - "dev": true - }, - "big.js": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz", - "integrity": "sha1-TK2iGTZS6zyp7I5VyQFWacmAaXg=", - "dev": true - }, - "binary-extensions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.9.0.tgz", - "integrity": "sha1-ZlBsFs5vTWkopbPNajPKQelB43s=", - "dev": true - }, - "bluebird": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.0.tgz", - "integrity": "sha1-eRQg1/VR7qKJdFOop3ZT+WYG1nw=", - "dev": true - }, - "bn.js": { - "version": "4.11.7", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.7.tgz", - "integrity": "sha512-LxFiV5mefv0ley0SzqkOPR1bC4EbpPx8LkOz5vMe/Yi15t5hzwgO/G+tc7wOtL4PZTYjwHu8JnEiSLumuSjSfA==", - "dev": true - }, - "brace-expansion": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", - "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", - "dev": true, - "requires": { - "balanced-match": "1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "dev": true, - "requires": { - "expand-range": "1.8.2", - "preserve": "0.2.0", - "repeat-element": "1.1.2" - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", - "dev": true - }, - "browserify-aes": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.0.6.tgz", - "integrity": "sha1-Xncl297x/Vkw1OurSFZ85FHEigo=", - "dev": true, - "requires": { - "buffer-xor": "1.0.3", - "cipher-base": "1.0.4", - "create-hash": "1.1.3", - "evp_bytestokey": "1.0.0", - "inherits": "2.0.3" - } - }, - "browserify-cipher": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.0.tgz", - "integrity": "sha1-mYgkSHS/XtTijalWZtzWasj8Njo=", - "dev": true, - "requires": { - "browserify-aes": "1.0.6", - "browserify-des": "1.0.0", - "evp_bytestokey": "1.0.0" - } - }, - "browserify-des": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.0.tgz", - "integrity": "sha1-2qJ3cXRwki7S/hhZQRihdUOXId0=", - "dev": true, - "requires": { - "cipher-base": "1.0.4", - "des.js": "1.0.0", - "inherits": "2.0.3" - } - }, - "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", - "dev": true, - "requires": { - "bn.js": "4.11.7", - "randombytes": "2.0.5" - } - }, - "browserify-sign": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", - "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", - "dev": true, - "requires": { - "bn.js": "4.11.7", - "browserify-rsa": "4.0.1", - "create-hash": "1.1.3", - "create-hmac": "1.1.6", - "elliptic": "6.4.0", - "inherits": "2.0.3", - "parse-asn1": "5.1.0" - } - }, - "browserify-zlib": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", - "integrity": "sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=", - "dev": true, - "requires": { - "pako": "0.2.9" - } - }, - "buffer": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", - "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", - "dev": true, - "requires": { - "base64-js": "1.2.1", - "ieee754": "1.1.8", - "isarray": "1.0.0" - } - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", - "dev": true - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", - "dev": true - }, - "cacache": { - "version": "9.2.9", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-9.2.9.tgz", - "integrity": "sha512-ghg1j5OyTJ6qsrqU++dN23QiTDxb5AZCFGsF3oB+v9v/gY+F4X8L/0gdQMEjd+8Ot3D29M2etX5PKozHRn2JQw==", - "dev": true, - "requires": { - "bluebird": "3.5.0", - "chownr": "1.0.1", - "glob": "7.1.2", - "graceful-fs": "4.1.11", - "lru-cache": "4.1.1", - "mississippi": "1.3.0", - "mkdirp": "0.5.1", - "move-concurrently": "1.0.1", - "promise-inflight": "1.0.1", - "rimraf": "2.6.1", - "ssri": "4.1.6", - "unique-filename": "1.1.0", - "y18n": "3.2.1" - } - }, - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", - "dev": true - }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", - "dev": true, - "requires": { - "align-text": "0.1.4", - "lazy-cache": "1.0.4" - } - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "dev": true, - "requires": { - "anymatch": "1.3.0", - "async-each": "1.0.1", - "glob-parent": "2.0.0", - "inherits": "2.0.3", - "is-binary-path": "1.0.1", - "is-glob": "2.0.1", - "path-is-absolute": "1.0.1", - "readdirp": "2.1.0" - } - }, - "chownr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz", - "integrity": "sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE=", - "dev": true - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "requires": { - "inherits": "2.0.3", - "safe-buffer": "5.1.1" - } - }, - "cliui": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", - "dev": true, - "requires": { - "center-align": "0.1.3", - "right-align": "0.1.3", - "wordwrap": "0.0.2" - } - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", - "dev": true - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "colors": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", - "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", - "dev": true - }, - "commander": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", - "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==", - "dev": true - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "concat-stream": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz", - "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.3", - "typedarray": "0.0.6" - } - }, - "console-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", - "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", - "dev": true, - "requires": { - "date-now": "0.1.4" - } - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", - "dev": true - }, - "copy-concurrently": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.3.tgz", - "integrity": "sha1-Rft4ZiSaHKiJqlcI5svSc+dbslA=", - "dev": true, - "requires": { - "aproba": "1.1.2", - "fs-write-stream-atomic": "1.0.10", - "iferr": "0.1.5", - "mkdirp": "0.5.1", - "rimraf": "2.6.1", - "run-queue": "1.0.3" - } - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "create-ecdh": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz", - "integrity": "sha1-iIxyNZbN92EvZJgjPuvXo1MBc30=", - "dev": true, - "requires": { - "bn.js": "4.11.7", - "elliptic": "6.4.0" - } - }, - "create-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz", - "integrity": "sha1-YGBCrIuSYnUPSDyt2rD1gZFy2P0=", - "dev": true, - "requires": { - "cipher-base": "1.0.4", - "inherits": "2.0.3", - "ripemd160": "2.0.1", - "sha.js": "2.4.8" - } - }, - "create-hmac": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.6.tgz", - "integrity": "sha1-rLniIaThe9sHbpBlfEK5PjcmzwY=", - "dev": true, - "requires": { - "cipher-base": "1.0.4", - "create-hash": "1.1.3", - "inherits": "2.0.3", - "ripemd160": "2.0.1", - "safe-buffer": "5.1.1", - "sha.js": "2.4.8" - } - }, - "crypto-browserify": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.11.1.tgz", - "integrity": "sha512-Na7ZlwCOqoaW5RwUK1WpXws2kv8mNhWdTlzob0UXulk6G9BDbyiJaGTYBIX61Ozn9l1EPPJpICZb4DaOpT9NlQ==", - "dev": true, - "requires": { - "browserify-cipher": "1.0.0", - "browserify-sign": "4.0.4", - "create-ecdh": "4.0.0", - "create-hash": "1.1.3", - "create-hmac": "1.1.6", - "diffie-hellman": "5.0.2", - "inherits": "2.0.3", - "pbkdf2": "3.0.12", - "public-encrypt": "4.0.0", - "randombytes": "2.0.5" - } - }, - "cyclist": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", - "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", - "dev": true - }, - "date-now": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", - "dev": true - }, - "decamelize": { + "node_modules/@xtuc/ieee754": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "des.js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", - "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "dev": true, - "requires": { - "inherits": "2.0.3", - "minimalistic-assert": "1.0.0" + "license": "BSD-3-Clause" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "diffie-hellman": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.2.tgz", - "integrity": "sha1-tYNXOScM/ias9jIJn97SoH8gnl4=", - "dev": true, - "requires": { - "bn.js": "4.11.7", - "miller-rabin": "4.0.0", - "randombytes": "2.0.5" - } - }, - "domain-browser": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz", - "integrity": "sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw=", - "dev": true - }, - "duplexify": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.1.tgz", - "integrity": "sha512-j5goxHTwVED1Fpe5hh3q9R93Kip0Bg2KVAt4f8CEYM3UEwYcPSvWbXaUQOzdX/HtiNomipv+gU7ASQPDbV7pGQ==", - "dev": true, - "requires": { - "end-of-stream": "1.4.0", - "inherits": "2.0.3", - "readable-stream": "2.3.3", - "stream-shift": "1.0.0" - } - }, - "elliptic": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz", - "integrity": "sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8=", - "dev": true, - "requires": { - "bn.js": "4.11.7", - "brorand": "1.1.0", - "hash.js": "1.1.3", - "hmac-drbg": "1.0.1", - "inherits": "2.0.3", - "minimalistic-assert": "1.0.0", - "minimalistic-crypto-utils": "1.0.1" - } - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", - "dev": true - }, - "end-of-stream": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.0.tgz", - "integrity": "sha1-epDYM+/abPpurA9JSduw+tOmMgY=", - "dev": true, - "requires": { - "once": "1.4.0" - } - }, - "enhanced-resolve": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.3.0.tgz", - "integrity": "sha512-2qbxE7ek3YxPJ1ML6V+satHkzHpJQKWkRHmRx6mfAoW59yP8YH8BFplbegSP+u2hBd6B6KCOpvJQ3dZAP+hkpg==", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "memory-fs": "0.4.1", - "object-assign": "4.1.1", - "tapable": "0.2.7" - } - }, - "errno": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz", - "integrity": "sha1-uJbiOp5ei6M4cfyZar02NfyaHH0=", - "dev": true, - "requires": { - "prr": "0.0.0" - } - }, - "error-ex": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", - "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", - "dev": true, - "requires": { - "is-arrayish": "0.2.1" - } - }, - "events": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", - "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=", - "dev": true - }, - "evp_bytestokey": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz", - "integrity": "sha1-SXtmrZ/vZc18CKYYCCS6FHa2blM=", - "dev": true, - "requires": { - "create-hash": "1.1.3" - } - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "dev": true, - "requires": { - "is-posix-bracket": "0.1.1" - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "dev": true, - "requires": { - "fill-range": "2.2.3" - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "dev": true, - "requires": { - "is-extglob": "1.0.0" - } - }, - "fast-deep-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", - "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=", - "dev": true - }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", - "dev": true - }, - "fill-range": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", - "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", - "dev": true, - "requires": { - "is-number": "2.1.0", - "isobject": "2.1.0", - "randomatic": "1.1.7", - "repeat-element": "1.1.2", - "repeat-string": "1.6.1" - } - }, - "find-cache-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", - "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", - "dev": true, - "requires": { - "commondir": "1.0.1", - "make-dir": "1.0.0", - "pkg-dir": "2.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "2.1.0", - "pinkie-promise": "2.0.1" - } - }, - "flush-write-stream": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.2.tgz", - "integrity": "sha1-yBuQ2HRnZvGmCaRoCZRsRd2K5Bc=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.3" - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "dev": true, - "requires": { - "for-in": "1.0.2" - } - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.3" - } - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "iferr": "0.1.5", - "imurmurhash": "0.1.4", - "readable-stream": "2.3.3" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "get-caller-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=", - "dev": true - }, - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "dev": true, - "requires": { - "fs.realpath": "1.0.0", - "inflight": "1.0.6", - "inherits": "2.0.3", - "minimatch": "3.0.4", - "once": "1.4.0", - "path-is-absolute": "1.0.1" - } - }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "dev": true, - "requires": { - "glob-parent": "2.0.0", - "is-glob": "2.0.1" - } - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true, - "requires": { - "is-glob": "2.0.1" - } - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", - "dev": true - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", - "dev": true - }, - "hash-base": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-2.0.2.tgz", - "integrity": "sha1-ZuodhW206KVHDK32/OI65SRO8uE=", - "dev": true, - "requires": { - "inherits": "2.0.3" - } - }, - "hash.js": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz", - "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==", - "dev": true, - "requires": { - "inherits": "2.0.3", - "minimalistic-assert": "1.0.0" - } - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "dev": true, - "requires": { - "hash.js": "1.1.3", - "minimalistic-assert": "1.0.0", - "minimalistic-crypto-utils": "1.0.1" - } - }, - "hosted-git-info": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", - "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==", - "dev": true - }, - "https-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz", - "integrity": "sha1-P5E2XKvmC3ftDruiS0VOPgnZWoI=", - "dev": true - }, - "ieee754": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", - "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=", - "dev": true - }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "1.4.0", - "wrappy": "1.0.2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "interpret": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz", - "integrity": "sha1-y8NcYu7uc/Gat7EKgBURQBr8D5A=", - "dev": true - }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", - "dev": true - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dev": true, - "requires": { - "binary-extensions": "1.9.0" - } - }, - "is-buffer": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", - "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", - "dev": true - }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", - "dev": true, - "requires": { - "builtin-modules": "1.1.1" - } - }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", - "dev": true - }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", - "dev": true, - "requires": { - "is-primitive": "2.0.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "1.0.1" - } - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true, - "requires": { - "is-extglob": "1.0.0" - } - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - } - }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", - "dev": true - }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", - "dev": true - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - }, - "json-loader": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", - "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==", - "dev": true - }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", - "dev": true - }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", - "dev": true, - "requires": { - "jsonify": "0.0.0" - } - }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true - }, - "jsonify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", - "dev": true - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - }, - "lazy-cache": { + "node_modules/acorn-import-phases": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", - "dev": true - }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", + "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", "dev": true, - "requires": { - "invert-kv": "1.0.0" - } - }, - "libapps": { - "version": "github:yudai/libapps#424e3e95e5346ef0c0c281aaf2ef73463a55b39e" - }, - "license-loader": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/license-loader/-/license-loader-0.5.0.tgz", - "integrity": "sha512-4p+estbTHilHxOXv/wh8qHndksfINzBT6HGvgIU4sfwWu28kCByHGV57K/HVgSujoFFv2wCITghGbK/qRiRbUQ==", - "dev": true - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "parse-json": "2.2.0", - "pify": "2.3.0", - "pinkie-promise": "2.0.1", - "strip-bom": "2.0.0" - } - }, - "loader-runner": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz", - "integrity": "sha1-9IKuqC1UPgeSFwDVpG7yb9rGuKI=", - "dev": true - }, - "loader-utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", - "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", - "dev": true, - "requires": { - "big.js": "3.1.3", - "emojis-list": "2.1.0", - "json5": "0.5.1" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "requires": { - "p-locate": "2.0.0", - "path-exists": "3.0.0" + "license": "MIT", + "engines": { + "node": ">=10.13.0" }, + "peerDependencies": { + "acorn": "^8.14.0" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", "dependencies": { - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - } - } - }, - "lodash": { - "version": "4.17.4", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=", - "dev": true - }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", - "dev": true - }, - "lru-cache": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", - "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", - "dev": true, - "requires": { - "pseudomap": "1.0.2", - "yallist": "2.1.2" - } - }, - "make-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.0.0.tgz", - "integrity": "sha1-l6ARdR6R3YfPre9Ygy67BJNt6Xg=", - "dev": true, - "requires": { - "pify": "2.3.0" - } - }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", - "dev": true, - "requires": { - "errno": "0.1.4", - "readable-stream": "2.3.3" - } - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "dev": true, - "requires": { - "arr-diff": "2.0.0", - "array-unique": "0.2.1", - "braces": "1.8.5", - "expand-brackets": "0.1.5", - "extglob": "0.3.2", - "filename-regex": "2.0.1", - "is-extglob": "1.0.0", - "is-glob": "2.0.1", - "kind-of": "3.2.2", - "normalize-path": "2.1.1", - "object.omit": "2.0.1", - "parse-glob": "3.0.4", - "regex-cache": "0.4.3" - } - }, - "miller-rabin": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.0.tgz", - "integrity": "sha1-SmL7HUKTPAVYOYL0xxb2+55sbT0=", - "dev": true, - "requires": { - "bn.js": "4.11.7", - "brorand": "1.1.0" - } - }, - "minimalistic-assert": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz", - "integrity": "sha1-cCvi3aazf0g2vLP121ZkG2Sh09M=", - "dev": true - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "requires": { - "brace-expansion": "1.1.8" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "dev": true - }, - "mississippi": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-1.3.0.tgz", - "integrity": "sha1-0gFYPrEjJ+PFwWQqQEqcrPlONPU=", - "dev": true, - "requires": { - "concat-stream": "1.6.0", - "duplexify": "3.5.1", - "end-of-stream": "1.4.0", - "flush-write-stream": "1.0.2", - "from2": "2.3.0", - "parallel-transform": "1.1.0", - "pump": "1.0.2", - "pumpify": "1.3.5", - "stream-each": "1.2.0", - "through2": "2.0.3" - } - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "dev": true, - "requires": { - "minimist": "0.0.8" - } - }, - "move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", - "dev": true, - "requires": { - "aproba": "1.1.2", - "copy-concurrently": "1.0.3", - "fs-write-stream-atomic": "1.0.10", - "mkdirp": "0.5.1", - "rimraf": "2.6.1", - "run-queue": "1.0.3" - } - }, - "node-libs-browser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.0.0.tgz", - "integrity": "sha1-o6WeyXAkmFtG6Vg3lkb5bEthZkY=", - "dev": true, - "requires": { - "assert": "1.4.1", - "browserify-zlib": "0.1.4", - "buffer": "4.9.1", - "console-browserify": "1.1.0", - "constants-browserify": "1.0.0", - "crypto-browserify": "3.11.1", - "domain-browser": "1.1.7", - "events": "1.1.1", - "https-browserify": "0.0.1", - "os-browserify": "0.2.1", - "path-browserify": "0.0.0", - "process": "0.11.10", - "punycode": "1.4.1", - "querystring-es3": "0.2.1", - "readable-stream": "2.3.3", - "stream-browserify": "2.0.1", - "stream-http": "2.7.2", - "string_decoder": "0.10.31", - "timers-browserify": "2.0.2", - "tty-browserify": "0.0.0", - "url": "0.11.0", - "util": "0.10.3", - "vm-browserify": "0.0.4" + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" }, - "dependencies": { - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - } + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", - "dev": true, - "requires": { - "hosted-git-info": "2.5.0", - "is-builtin-module": "1.0.0", - "semver": "5.3.0", - "validate-npm-package-license": "3.0.1" - } - }, - "normalize-path": { + "node_modules/ajv-formats": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, - "requires": { - "remove-trailing-separator": "1.0.2" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "dev": true, - "requires": { - "for-own": "0.1.5", - "is-extendable": "0.1.1" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1.0.2" - } - }, - "os-browserify": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz", - "integrity": "sha1-Y/xMzuXS13Y9Jrv4YBB45sLgBE8=", - "dev": true - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "dev": true, - "requires": { - "lcid": "1.0.0" - } - }, - "p-limit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz", - "integrity": "sha1-sH/y2aXYi+yAYDWJWiurZqJ5iLw=", - "dev": true - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "requires": { - "p-limit": "1.1.0" - } - }, - "pako": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", - "dev": true - }, - "parallel-transform": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", - "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", - "dev": true, - "requires": { - "cyclist": "0.2.2", - "inherits": "2.0.3", - "readable-stream": "2.3.3" - } - }, - "parse-asn1": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz", - "integrity": "sha1-N8T5t+06tlx0gXtfJICTf7+XxxI=", - "dev": true, - "requires": { - "asn1.js": "4.9.1", - "browserify-aes": "1.0.6", - "create-hash": "1.1.3", - "evp_bytestokey": "1.0.0", - "pbkdf2": "3.0.12" - } - }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "dev": true, - "requires": { - "glob-base": "0.3.0", - "is-dotfile": "1.0.3", - "is-extglob": "1.0.0", - "is-glob": "2.0.1" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "dev": true, - "requires": { - "error-ex": "1.3.1" - } - }, - "path-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", - "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=", - "dev": true - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "2.0.1" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "pify": "2.3.0", - "pinkie-promise": "2.0.1" - } - }, - "pbkdf2": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.12.tgz", - "integrity": "sha1-vjZ4XFBn6kjYBv+SMojF91C2uKI=", - "dev": true, - "requires": { - "create-hash": "1.1.3", - "create-hmac": "1.1.6", - "ripemd160": "2.0.1", - "safe-buffer": "5.1.1", - "sha.js": "2.4.8" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "2.0.4" - } - }, - "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", - "dev": true, - "requires": { - "find-up": "2.1.0" - }, + "license": "MIT", "dependencies": { - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "dev": true, - "requires": { - "locate-path": "2.0.0" - } + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true } } }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", - "dev": true + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "process-nextick-args": { + "node_modules/baseline-browser-mapping": { + "version": "2.8.20", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz", + "integrity": "sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.27.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.27.0.tgz", + "integrity": "sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.8.19", + "caniuse-lite": "^1.0.30001751", + "electron-to-chromium": "^1.5.238", + "node-releases": "^2.0.26", + "update-browserslist-db": "^1.1.4" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001751", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz", + "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/commandpost": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/commandpost/-/commandpost-1.4.0.tgz", + "integrity": "sha512-aE2Y4MTFJ870NuB/+2z1cXBhSBBzRydVVjzhFC4gtenEhpnj15yu0qptWGJsO9YGrcPZ3ezX8AWb1VA391MKpQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz", + "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", + "dev": true, + "license": "MIT", + "dependencies": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "bin": { + "editorconfig": "bin/editorconfig" + } + }, + "node_modules/editorconfig/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.241", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.241.tgz", + "integrity": "sha512-ILMvKX/ZV5WIJzzdtuHg8xquk2y0BOGlFOxBVwTpbiXqWIH0hamG45ddU4R3PQ0gYu+xgo0vdHXHli9sHIGb4w==", + "dev": true, + "license": "ISC" + }, + "node_modules/enhanced-resolve": { + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/envinfo": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.19.0.tgz", + "integrity": "sha512-DoSM9VyG6O3vqBf+p3Gjgr/Q52HYBBtO3v+4koAxt1MnWr+zEnxE+nke/yXS4lt2P4SYCHQ4V3f1i88LQVOpAw==", + "dev": true, + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "license": "BSD-2-Clause" + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/libapps": { + "version": "1.70.0", + "resolved": "git+ssh://git@github.com/yudai/libapps.git#424e3e95e5346ef0c0c281aaf2ef73463a55b39e", + "license": "BSD-3-Clause" + }, + "node_modules/license-loader": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/license-loader/-/license-loader-0.7.0.tgz", + "integrity": "sha512-O+Qt+ktIVFhGDrztiDmByAtA2/UbMZZVYxdnqibAV9zwriE82cI9aFh0cYZ+novVbo4qGEaoonOsxGZYuA8JPQ==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/loader-runner": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.1.tgz", + "integrity": "sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "license": "ISC", + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.26", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.26.tgz", + "integrity": "sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", - "dev": true + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" }, - "prr": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", - "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", - "dev": true + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } }, - "pseudomap": { + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "public-encrypt": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz", - "integrity": "sha1-OfaZ86RlYN1eusvKaTyvfGXBjMY=", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", "dev": true, - "requires": { - "bn.js": "4.11.7", - "browserify-rsa": "4.0.1", - "create-hash": "1.1.3", - "parse-asn1": "5.1.0", - "randombytes": "2.0.5" - } + "license": "ISC" }, - "pump": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pump/-/pump-1.0.2.tgz", - "integrity": "sha1-Oz7mUS+U8OV1U4wXmV+fFpkKXVE=", - "dev": true, - "requires": { - "end-of-stream": "1.4.0", - "once": "1.4.0" - } - }, - "pumpify": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.3.5.tgz", - "integrity": "sha1-G2ccYZlAq8rqwK0OOjwWS+dgmTs=", - "dev": true, - "requires": { - "duplexify": "3.5.1", - "inherits": "2.0.3", - "pump": "1.0.2" - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", - "dev": true - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", - "dev": true - }, - "randomatic": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", - "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==", - "dev": true, - "requires": { - "is-number": "3.0.0", - "kind-of": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "1.1.5" - } - } - } - }, - "randombytes": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.5.tgz", - "integrity": "sha512-8T7Zn1AhMsQ/HI1SjcCfT/t4ii3eAqco3yOcSzS4mozsOz69lHLsoMXmF9nZgnFanYscnSlUSgs8uZyKzpE6kg==", - "dev": true, - "requires": { - "safe-buffer": "5.1.1" - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true, - "requires": { - "load-json-file": "1.1.0", - "normalize-package-data": "2.4.0", - "path-type": "1.1.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true, - "requires": { - "find-up": "1.1.2", - "read-pkg": "1.1.0" - } - }, - "readable-stream": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", - "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", - "dev": true, - "requires": { - "core-util-is": "1.0.2", - "inherits": "2.0.3", - "isarray": "1.0.0", - "process-nextick-args": "1.0.7", - "safe-buffer": "5.1.1", - "string_decoder": "1.0.3", - "util-deprecate": "1.0.2" - } - }, - "readdirp": { + "node_modules/randombytes": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", - "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, - "requires": { - "graceful-fs": "4.1.11", - "minimatch": "3.0.4", - "readable-stream": "2.3.3", - "set-immediate-shim": "1.0.1" - } - }, - "regex-cache": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", - "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", - "dev": true, - "requires": { - "is-equal-shallow": "0.1.3", - "is-primitive": "2.0.0" - } - }, - "remove-trailing-separator": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz", - "integrity": "sha1-abBi2XhyetFNxrVrpKt3L9jXBRE=", - "dev": true - }, - "repeat-element": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", - "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", - "dev": true - }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "dev": true, - "requires": { - "align-text": "0.1.4" - } - }, - "rimraf": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", - "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", - "dev": true, - "requires": { - "glob": "7.1.2" - } - }, - "ripemd160": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz", - "integrity": "sha1-D0WEKVxTo2KK9+bXmsohzlfRxuc=", - "dev": true, - "requires": { - "hash-base": "2.0.2", - "inherits": "2.0.3" - } - }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", - "dev": true, - "requires": { - "aproba": "1.1.2" - } - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", - "dev": true - }, - "schema-utils": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", - "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", - "dev": true, - "requires": { - "ajv": "5.2.2" - }, + "license": "MIT", "dependencies": { - "ajv": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.2.2.tgz", - "integrity": "sha1-R8aNaehvXZUxA7AHSpQw3GPaXjk=", - "dev": true, - "requires": { - "co": "4.6.0", - "fast-deep-equal": "1.0.0", - "json-schema-traverse": "0.3.1", - "json-stable-stringify": "1.0.1" - } - } + "safe-buffer": "^5.1.0" } }, - "semver": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", - "dev": true - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", - "dev": true - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "dev": true - }, - "sha.js": { - "version": "2.4.8", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.8.tgz", - "integrity": "sha1-NwaMLEdra69ALRSknGf1l5IfY08=", + "node_modules/rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", "dev": true, - "requires": { - "inherits": "2.0.3" + "license": "MIT", + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" } }, - "source-list-map": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-1.1.2.tgz", - "integrity": "sha1-mIkBnRAkzOVc3AaUmDN+9hhqEaE=", - "dev": true - }, - "source-map": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", - "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", - "dev": true - }, - "spdx-correct": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", - "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", - "dev": true, - "requires": { - "spdx-license-ids": "1.2.2" - } - }, - "spdx-expression-parse": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", - "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=", - "dev": true - }, - "spdx-license-ids": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", - "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=", - "dev": true - }, - "ssri": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-4.1.6.tgz", - "integrity": "sha512-WUbCdgSAMQjTFZRWvSPpauryvREEA+Krn19rx67UlJEJx/M192ZHxMmJXjZ4tkdFm+Sb0SXGlENeQVlA5wY7kA==", - "dev": true, - "requires": { - "safe-buffer": "5.1.1" - } - }, - "stream-browserify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", - "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", - "dev": true, - "requires": { - "inherits": "2.0.3", - "readable-stream": "2.3.3" - } - }, - "stream-each": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.0.tgz", - "integrity": "sha1-HpXUdXP1gNgU3A/4zQ9m8c5TyZE=", - "dev": true, - "requires": { - "end-of-stream": "1.4.0", - "stream-shift": "1.0.0" - } - }, - "stream-http": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.2.tgz", - "integrity": "sha512-c0yTD2rbQzXtSsFSVhtpvY/vS6u066PcXOX9kBB3mSO76RiUQzL340uJkGBWnlBg4/HZzqiUXtaVA7wcRcJgEw==", - "dev": true, - "requires": { - "builtin-status-codes": "3.0.0", - "inherits": "2.0.3", - "readable-stream": "2.3.3", - "to-arraybuffer": "1.0.1", - "xtend": "4.0.1" - } - }, - "stream-shift": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", - "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", - "dev": true - }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", - "dev": true, - "requires": { - "safe-buffer": "5.1.1" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "1.1.0", - "is-fullwidth-code-point": "1.0.0", - "strip-ansi": "3.0.1" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "2.1.1" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "0.2.1" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "requires": { - "has-flag": "1.0.0" - } - }, - "tapable": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.7.tgz", - "integrity": "sha1-5GwNqsuyuKmLmwzqD0BSEFgX7Vw=", - "dev": true - }, - "through2": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", - "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", - "dev": true, - "requires": { - "readable-stream": "2.3.3", - "xtend": "4.0.1" - } - }, - "timers-browserify": { + "node_modules/require-from-string": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.2.tgz", - "integrity": "sha1-q0iDz1l9zVCvIRNJoA+8pWrIa4Y=", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, - "requires": { - "setimmediate": "1.0.5" + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", - "dev": true - }, - "ts-loader": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-2.0.3.tgz", - "integrity": "sha1-ibjIdZjwSN8GV2bgfhU48OrrEWU=", + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, - "requires": { - "colors": "1.1.2", - "enhanced-resolve": "3.3.0", - "loader-utils": "1.1.0", - "semver": "5.3.0" - } - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", - "dev": true - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", - "dev": true - }, - "typescript": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.3.2.tgz", - "integrity": "sha1-8PBF4Zb2mnLwayX9O9OdAcPOmYQ=", - "dev": true - }, - "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", - "dev": true, - "requires": { - "source-map": "0.5.6", - "uglify-to-browserify": "1.0.2", - "yargs": "3.10.0" - }, + "license": "MIT", "dependencies": { - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", - "dev": true, - "requires": { - "camelcase": "1.2.1", - "cliui": "2.1.0", - "decamelize": "1.2.0", - "window-size": "0.1.0" - } - } + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "uglify-to-browserify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", - "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, - "optional": true - }, - "uglifyjs-webpack-plugin": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.0.0-beta.2.tgz", - "integrity": "sha512-vTt+xUdBbjfIAmaSm3li3y/9k0m35GXV5AZWAUrSDMOAtI0mmhQ4FAQFtqEkmgEGS+A3S+qFaA0dk1lKheYQSw==", - "dev": true, - "requires": { - "cacache": "9.2.9", - "find-cache-dir": "1.0.0", - "schema-utils": "0.3.0", - "source-map": "0.5.6", - "uglify-es": "3.0.28", - "webpack-sources": "1.0.1", - "worker-farm": "1.5.0" - }, + "license": "MIT", "dependencies": { - "source-list-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz", - "integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==", - "dev": true + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" }, - "uglify-es": { - "version": "3.0.28", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.0.28.tgz", - "integrity": "sha512-xw1hJsSp361OO0Sq0XvNyTI2wfQ4eKNljfSYyeYX/dz9lKEDj+DK+A8CzB0NmoCwWX1MnEx9f16HlkKXyG65CQ==", - "dev": true, - "requires": { - "commander": "2.11.0", - "source-map": "0.5.6" - } + { + "type": "patreon", + "url": "https://www.patreon.com/feross" }, - "webpack-sources": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.0.1.tgz", - "integrity": "sha512-05tMxipUCwHqYaVS8xc7sYPTly8PzXayRCB4dTxLhWTqlKUiwH6ezmEe0OSreL1c30LAuA3Zqmc+uEBUGFJDjw==", - "dev": true, - "requires": { - "source-list-map": "2.0.0", - "source-map": "0.5.6" - } + { + "type": "consulting", + "url": "https://feross.org/support" } - } + ], + "license": "MIT" }, - "unique-filename": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.0.tgz", - "integrity": "sha1-0F8v5AMlYIcfMOk8vnNe6iAVFPM=", + "node_modules/schema-utils": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", "dev": true, - "requires": { - "unique-slug": "2.0.0" - } - }, - "unique-slug": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.0.tgz", - "integrity": "sha1-22Z258fMBimHj/GWCXx4hVrp9Ks=", - "dev": true, - "requires": { - "imurmurhash": "0.1.4" - } - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dev": true, - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, + "license": "MIT", "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", - "dev": true - } - } - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "dev": true, - "requires": { - "inherits": "2.0.1" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", - "dev": true - } + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } }, - "validate-npm-package-license": { + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/shallow-clone": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", - "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, - "requires": { - "spdx-correct": "1.0.2", - "spdx-expression-parse": "1.0.4" - } - }, - "vm-browserify": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", - "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", - "dev": true, - "requires": { - "indexof": "0.0.1" - } - }, - "watchpack": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.4.0.tgz", - "integrity": "sha1-ShRyvLuVK9Cpu0A2gB+VTfs5+qw=", - "dev": true, - "requires": { - "async": "2.5.0", - "chokidar": "1.7.0", - "graceful-fs": "4.1.11" - } - }, - "webpack": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-2.5.1.tgz", - "integrity": "sha1-YXQvDPivVVuHRgqc2Lui8ePuL84=", - "dev": true, - "requires": { - "acorn": "5.1.1", - "acorn-dynamic-import": "2.0.2", - "ajv": "4.11.8", - "ajv-keywords": "1.5.1", - "async": "2.5.0", - "enhanced-resolve": "3.3.0", - "interpret": "1.0.3", - "json-loader": "0.5.7", - "json5": "0.5.1", - "loader-runner": "2.3.0", - "loader-utils": "0.2.17", - "memory-fs": "0.4.1", - "mkdirp": "0.5.1", - "node-libs-browser": "2.0.0", - "source-map": "0.5.6", - "supports-color": "3.2.3", - "tapable": "0.2.7", - "uglify-js": "2.8.29", - "watchpack": "1.4.0", - "webpack-sources": "0.2.3", - "yargs": "6.6.0" - }, + "license": "MIT", "dependencies": { - "loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", - "dev": true, - "requires": { - "big.js": "3.1.3", - "emojis-list": "2.1.0", - "json5": "0.5.1", - "object-assign": "4.1.1" - } + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==", + "dev": true, + "license": "ISC" + }, + "node_modules/source-map": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 12" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tapable": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser": { + "version": "5.44.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.44.0.tgz", + "integrity": "sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.15.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.25", + "jest-worker": "^27.4.5", + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true } } }, - "webpack-sources": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-0.2.3.tgz", - "integrity": "sha1-F8Yr+vE8cH+dAsR54Nzd6DgGl/s=", + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "requires": { - "source-list-map": "1.1.2", - "source-map": "0.5.6" + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", - "dev": true - }, - "window-size": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", - "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", - "dev": true - }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", - "dev": true - }, - "worker-farm": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.5.0.tgz", - "integrity": "sha512-DHRiUggxtbruaTwnLDm2/BRDKZIoOYvrgYUj5Bam4fU6Gtvc0FaEyoswFPBjMXAweGW2H4BDNIpy//1yXXuaqQ==", + "node_modules/ts-loader": { + "version": "9.5.4", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.5.4.tgz", + "integrity": "sha512-nCz0rEwunlTZiy6rXFByQU1kVVpCIgUpc/psFiKVrUwrizdnIbRFu8w7bxhUF0X613DYwT4XzrZHpVyMe758hQ==", "dev": true, - "requires": { - "errno": "0.1.4", - "xtend": "4.0.1" + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4", + "source-map": "^0.7.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" } }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "dev": true, - "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1" + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" } }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "node_modules/typescript-formatter": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/typescript-formatter/-/typescript-formatter-7.2.2.tgz", + "integrity": "sha512-V7vfI9XArVhriOTYHPzMU2WUnm5IMdu9X/CPxs8mIMGxmTBFpDABlbkBka64PZJ9/xgQeRpK8KzzAG4MPzxBDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "commandpost": "^1.0.0", + "editorconfig": "^0.15.0" + }, + "bin": { + "tsfmt": "bin/tsfmt" + }, + "engines": { + "node": ">= 4.2.0" + }, + "peerDependencies": { + "typescript": "^2.1.6 || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev" + } }, - "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", - "dev": true + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" }, - "xterm": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/xterm/-/xterm-2.8.1.tgz", - "integrity": "sha512-AuqLOWpprmhSe4TcGE6Gh2uwkR0wUC95V0Q736OFUmG+84W+w+g6RzcgVhrbOTo/Fzcq9i0TRR5nYksRt2DSIQ==" + "node_modules/update-browserslist-db": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } }, - "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", - "dev": true + "node_modules/watchpack": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } }, - "yallist": { + "node_modules/webpack": { + "version": "5.102.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.102.1.tgz", + "integrity": "sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.8", + "@types/json-schema": "^7.0.15", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.15.0", + "acorn-import-phases": "^1.0.3", + "browserslist": "^4.26.3", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.3", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^4.3.3", + "tapable": "^2.3.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.4", + "webpack-sources": "^3.3.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-6.0.1.tgz", + "integrity": "sha512-MfwFQ6SfwinsUVi0rNJm7rHZ31GyTcpVE5pgVA3hwFRb7COD4TzjUUwhGWKfO50+xdc2MQPuEBBJoqIMGt3JDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@discoveryjs/json-ext": "^0.6.1", + "@webpack-cli/configtest": "^3.0.1", + "@webpack-cli/info": "^3.0.1", + "@webpack-cli/serve": "^3.0.1", + "colorette": "^2.0.14", + "commander": "^12.1.0", + "cross-spawn": "^7.0.3", + "envinfo": "^7.14.0", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^6.0.1" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.82.0" + }, + "peerDependenciesMeta": { + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/webpack-merge": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", + "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.1" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz", + "integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - }, - "yargs": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", - "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", "dev": true, - "requires": { - "camelcase": "3.0.0", - "cliui": "3.2.0", - "decamelize": "1.2.0", - "get-caller-file": "1.0.2", - "os-locale": "1.4.0", - "read-pkg-up": "1.0.1", - "require-directory": "2.1.1", - "require-main-filename": "1.0.1", - "set-blocking": "2.0.0", - "string-width": "1.0.2", - "which-module": "1.0.0", - "y18n": "3.2.1", - "yargs-parser": "4.2.1" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true, - "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wrap-ansi": "2.1.0" - } - } - } - }, - "yargs-parser": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", - "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", - "dev": true, - "requires": { - "camelcase": "3.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - } - } + "license": "ISC" } } } diff --git a/js/package.json b/js/package.json index 8beaeb5..b2e2336 100644 --- a/js/package.json +++ b/js/package.json @@ -1,13 +1,17 @@ { "devDependencies": { - "license-loader": "^0.5.0", - "ts-loader": "^2.0.3", - "typescript": "^2.3.2", - "uglifyjs-webpack-plugin": "^1.0.0-beta.2", - "webpack": "^2.5.1" + "license-loader": "^0.7.0", + "ts-loader": "^9.1.2", + "typescript": "^4.4.4", + "typescript-formatter": "^7.2.2", + "webpack": "^5", + "webpack-cli": "^6" }, "dependencies": { - "libapps": "github:yudai/libapps#release-hterm-1.70", - "xterm": "^2.7.0" + "@xterm/addon-fit": "^0.10.0", + "@xterm/addon-web-links": "^0.11.0", + "@xterm/addon-webgl": "^0.18.0", + "@xterm/xterm": "^5.5.0", + "libapps": "github:yudai/libapps#release-hterm-1.70" } } diff --git a/js/src/hterm.ts b/js/src/hterm.ts index b49a22f..cc68f51 100644 --- a/js/src/hterm.ts +++ b/js/src/hterm.ts @@ -53,7 +53,9 @@ export class Hterm { setPreferences(value: object) { Object.keys(value).forEach((key) => { - this.term.getPrefs().set(key, value[key]); + if (key != "enable-webgl") { + this.term.getPrefs().set(key, value[key]); + } }); }; @@ -75,9 +77,9 @@ export class Hterm { }; deactivate(): void { - this.io.onVTKeystroke = function(){}; - this.io.sendString = function(){}; - this.io.onTerminalResize = function(){}; + this.io.onVTKeystroke = function() { }; + this.io.sendString = function() { }; + this.io.onTerminalResize = function() { }; this.term.uninstallKeyboard(); } diff --git a/js/src/main.ts b/js/src/main.ts index 101190a..ad80cf3 100644 --- a/js/src/main.ts +++ b/js/src/main.ts @@ -3,6 +3,10 @@ import { Xterm } from "./xterm"; import { Terminal, WebTTY, protocols } from "./webtty"; import { ConnectionFactory } from "./websocket"; +// NOTE: This fixes tsfmt diffs in dist with this file +export class GoTTY { +} + // @TODO remove these declare var gotty_auth_token: string; declare var gotty_term: string; diff --git a/js/src/waitFor.ts b/js/src/waitFor.ts new file mode 100644 index 0000000..19a0ac2 --- /dev/null +++ b/js/src/waitFor.ts @@ -0,0 +1,38 @@ +/** + * Waits for a DOM element matching the selector to exist in the document. + * Resolves immediately if it already exists. + * + * @param selector CSS selector for the element to wait for + * @param timeout Optional timeout in milliseconds (default: no timeout) + * @returns Promise that resolves with the found element + */ +export function waitForElement( + selector: string, + timeout?: number, +): Promise { + return new Promise((resolve, reject) => { + // If it already exists, resolve immediately + const existing = document.querySelector(selector); + if (existing) { + resolve(existing); + return; + } + + const observer = new MutationObserver(() => { + const el = document.querySelector(selector); + if (el) { + observer.disconnect(); + resolve(el); + } + }); + + observer.observe(document.body, { childList: true, subtree: true }); + + if (timeout) { + setTimeout(() => { + observer.disconnect(); + reject(new Error(`Timeout waiting for element: ${selector}`)); + }, timeout); + } + }); +} diff --git a/js/src/webtty.ts b/js/src/webtty.ts index 1cd79ac..e8ea708 100644 --- a/js/src/webtty.ts +++ b/js/src/webtty.ts @@ -1,148 +1,146 @@ export const protocols = ["webtty"]; -export const msgInputUnknown = '0'; -export const msgInput = '1'; -export const msgPing = '2'; -export const msgResizeTerminal = '3'; - -export const msgUnknownOutput = '0'; -export const msgOutput = '1'; -export const msgPong = '2'; -export const msgSetWindowTitle = '3'; -export const msgSetPreferences = '4'; -export const msgSetReconnect = '5'; +export const msgInputUnknown = "0"; +export const msgInput = "1"; +export const msgPing = "2"; +export const msgResizeTerminal = "3"; +export const msgUnknownOutput = "0"; +export const msgOutput = "1"; +export const msgPong = "2"; +export const msgSetWindowTitle = "3"; +export const msgSetPreferences = "4"; +export const msgSetReconnect = "5"; export interface Terminal { - info(): { columns: number, rows: number }; - output(data: string): void; - showMessage(message: string, timeout: number): void; - removeMessage(): void; - setWindowTitle(title: string): void; - setPreferences(value: object): void; - onInput(callback: (input: string) => void): void; - onResize(callback: (colmuns: number, rows: number) => void): void; - reset(): void; - deactivate(): void; - close(): void; + info(): { columns: number; rows: number }; + output(data: string): void; + showMessage(message: string, timeout: number): void; + removeMessage(): void; + setWindowTitle(title: string): void; + setPreferences(value: object): void; + onInput(callback: (input: string) => void): void; + onResize(callback: (colmuns: number, rows: number) => void): void; + reset(): void; + deactivate(): void; + close(): void; } export interface Connection { - open(): void; - close(): void; - send(data: string): void; - isOpen(): boolean; - onOpen(callback: () => void): void; - onReceive(callback: (data: string) => void): void; - onClose(callback: () => void): void; + open(): void; + close(): void; + send(data: string): void; + isOpen(): boolean; + onOpen(callback: () => void): void; + onReceive(callback: (data: string) => void): void; + onClose(callback: () => void): void; } export interface ConnectionFactory { - create(): Connection; + create(): Connection; } - export class WebTTY { - term: Terminal; - connectionFactory: ConnectionFactory; - args: string; - authToken: string; - reconnect: number; + term: Terminal; + connectionFactory: ConnectionFactory; + args: string; + authToken: string; + reconnect: number; - constructor(term: Terminal, connectionFactory: ConnectionFactory, args: string, authToken: string) { - this.term = term; - this.connectionFactory = connectionFactory; - this.args = args; - this.authToken = authToken; - this.reconnect = -1; + constructor( + term: Terminal, + connectionFactory: ConnectionFactory, + args: string, + authToken: string, + ) { + this.term = term; + this.connectionFactory = connectionFactory; + this.args = args; + this.authToken = authToken; + this.reconnect = -1; + } + + open() { + let connection = this.connectionFactory.create(); + let pingTimer: ReturnType; + let reconnectTimeout: NodeJS.Timeout; + + const setup = () => { + connection.onOpen(() => { + const termInfo = this.term.info(); + + connection.send( + JSON.stringify({ + Arguments: this.args, + AuthToken: this.authToken, + }), + ); + + const resizeHandler = (colmuns: number, rows: number) => { + connection.send( + msgResizeTerminal + + JSON.stringify({ + columns: colmuns, + rows: rows, + }), + ); + }; + + this.term.onResize(resizeHandler); + resizeHandler(termInfo.columns, termInfo.rows); + + this.term.onInput((input: string) => { + connection.send(msgInput + input); + }); + + pingTimer = setInterval(() => { + connection.send(msgPing); + }, 30 * 1000); + }); + + connection.onReceive((data) => { + const payload = data.slice(1); + switch (data[0]) { + case msgOutput: + this.term.output(atob(payload)); + break; + case msgPong: + break; + case msgSetWindowTitle: + this.term.setWindowTitle(payload); + break; + case msgSetPreferences: + const preferences = JSON.parse(payload); + this.term.setPreferences(preferences); + break; + case msgSetReconnect: + const autoReconnect = JSON.parse(payload); + console.log("Enabling reconnect: " + autoReconnect + " seconds"); + this.reconnect = autoReconnect; + break; + } + }); + + connection.onClose(() => { + clearInterval(pingTimer); + this.term.deactivate(); + this.term.showMessage("Connection Closed", 0); + if (this.reconnect > 0) { + reconnectTimeout = setTimeout(() => { + connection = this.connectionFactory.create(); + this.term.reset(); + setup(); + }, this.reconnect * 1000); + } + }); + + connection.open(); }; - open() { - let connection = this.connectionFactory.create(); - let pingTimer: number; - let reconnectTimeout: number; - - const setup = () => { - connection.onOpen(() => { - const termInfo = this.term.info(); - - connection.send(JSON.stringify( - { - Arguments: this.args, - AuthToken: this.authToken, - } - )); - - - const resizeHandler = (colmuns: number, rows: number) => { - connection.send( - msgResizeTerminal + JSON.stringify( - { - columns: colmuns, - rows: rows - } - ) - ); - }; - - this.term.onResize(resizeHandler); - resizeHandler(termInfo.columns, termInfo.rows); - - this.term.onInput( - (input: string) => { - connection.send(msgInput + input); - } - ); - - pingTimer = setInterval(() => { - connection.send(msgPing) - }, 30 * 1000); - - }); - - connection.onReceive((data) => { - const payload = data.slice(1); - switch (data[0]) { - case msgOutput: - this.term.output(atob(payload)); - break; - case msgPong: - break; - case msgSetWindowTitle: - this.term.setWindowTitle(payload); - break; - case msgSetPreferences: - const preferences = JSON.parse(payload); - this.term.setPreferences(preferences); - break; - case msgSetReconnect: - const autoReconnect = JSON.parse(payload); - console.log("Enabling reconnect: " + autoReconnect + " seconds") - this.reconnect = autoReconnect; - break; - } - }); - - connection.onClose(() => { - clearInterval(pingTimer); - this.term.deactivate(); - this.term.showMessage("Connection Closed", 0); - if (this.reconnect > 0) { - reconnectTimeout = setTimeout(() => { - connection = this.connectionFactory.create(); - this.term.reset(); - setup(); - }, this.reconnect * 1000); - } - }); - - connection.open(); - } - - setup(); - return () => { - clearTimeout(reconnectTimeout); - connection.close(); - } + setup(); + return () => { + clearTimeout(reconnectTimeout); + connection.close(); }; -}; + } +} diff --git a/js/src/xterm.ts b/js/src/xterm.ts index 16a3e63..9b712f4 100644 --- a/js/src/xterm.ts +++ b/js/src/xterm.ts @@ -1,105 +1,145 @@ -import * as bare from "xterm"; -import { lib } from "libapps" +import { lib } from "libapps"; +import { IDisposable, Terminal } from "@xterm/xterm"; +import { FitAddon } from "@xterm/addon-fit"; +import { WebglAddon } from "@xterm/addon-webgl"; +import { WebLinksAddon } from "@xterm/addon-web-links"; -bare.loadAddon("fit"); +import { waitForElement } from "./waitFor"; export class Xterm { - elem: HTMLElement; - term: bare; - resizeListener: () => void; - decoder: lib.UTF8Decoder; + elem: HTMLElement; + term: Terminal; + resizeListener: () => void; + decoder: lib.UTF8Decoder; - message: HTMLElement; - messageTimeout: number; - messageTimer: number; + message: HTMLElement; + messageTimeout: number; + messageTimer: ReturnType; + fitAddon: FitAddon; + disposables: IDisposable[] = []; - constructor(elem: HTMLElement) { - this.elem = elem; - this.term = new bare(); + constructor(elem: HTMLElement) { + this.elem = elem; + const isWindows = + ["Windows", "Win16", "Win32", "WinCE"].indexOf(navigator.platform) >= 0; + this.term = new Terminal({ + cursorStyle: "block", + cursorBlink: true, + windowsMode: isWindows, + fontFamily: + "DejaVu Sans Mono, Everson Mono, FreeMono, Menlo, Terminal, monospace, Apple Symbols", + fontSize: 12, + }); - this.message = elem.ownerDocument.createElement("div"); - this.message.className = "xterm-overlay"; - this.messageTimeout = 2000; + this.fitAddon = new FitAddon(); + this.term.loadAddon(this.fitAddon); + this.term.loadAddon(new WebLinksAddon()); - this.resizeListener = () => { - this.term.fit(); - this.term.scrollToBottom(); - this.showMessage(String(this.term.cols) + "x" + String(this.term.rows), this.messageTimeout); - }; + this.message = elem.ownerDocument.createElement("div"); + this.message.className = "xterm-overlay"; + this.messageTimeout = 2000; - this.term.on("open", () => { + this.resizeListener = () => { + this.fitAddon.fit(); + this.term.scrollToBottom(); + this.showMessage( + String(this.term.cols) + "x" + String(this.term.rows), + this.messageTimeout, + ); + }; + + this.term.open(elem); + + this.term.focus(); + window.addEventListener("resize", () => { + this.resizeListener(); + }); + + waitForElement(".xterm-screen > canvas", 5000) + .then(() => { + window.requestAnimationFrame(() => { + window.requestAnimationFrame(() => { this.resizeListener(); - window.addEventListener("resize", () => { this.resizeListener(); }); + }); }); + }) + .catch((err) => { + console.error(err); + }); - this.term.open(elem, true); + this.decoder = new lib.UTF8Decoder(); + } - this.decoder = new lib.UTF8Decoder() - }; + info(): { columns: number; rows: number } { + return { columns: this.term.cols, rows: this.term.rows }; + } - info(): { columns: number, rows: number } { - return { columns: this.term.cols, rows: this.term.rows }; - }; + output(data: string) { + this.term.write(this.decoder.decode(data)); + } - output(data: string) { - this.term.write(this.decoder.decode(data)); - }; + showMessage(message: string, timeout: number) { + this.message.textContent = message; + this.elem.appendChild(this.message); - showMessage(message: string, timeout: number) { - this.message.textContent = message; - this.elem.appendChild(this.message); - - if (this.messageTimer) { - clearTimeout(this.messageTimer); - } - if (timeout > 0) { - this.messageTimer = setTimeout(() => { - this.elem.removeChild(this.message); - }, timeout); - } - }; - - removeMessage(): void { - if (this.message.parentNode == this.elem) { - this.elem.removeChild(this.message); - } + if (this.messageTimer) { + clearTimeout(this.messageTimer); } - - setWindowTitle(title: string) { - document.title = title; - }; - - setPreferences(value: object) { - }; - - onInput(callback: (input: string) => void) { - this.term.on("data", (data) => { - callback(data); - }); - - }; - - onResize(callback: (colmuns: number, rows: number) => void) { - this.term.on("resize", (data) => { - callback(data.cols, data.rows); - }); - }; - - deactivate(): void { - this.term.off("data"); - this.term.off("resize"); - this.term.blur(); + if (timeout > 0) { + this.messageTimer = setTimeout(() => { + this.elem.removeChild(this.message); + }, timeout); } + } - reset(): void { - this.removeMessage(); - this.term.clear(); + removeMessage(): void { + if (this.message.parentNode == this.elem) { + this.elem.removeChild(this.message); } + } - close(): void { - window.removeEventListener("resize", this.resizeListener); - this.term.destroy(); - } + setWindowTitle(title: string) { + document.title = title; + } + + setPreferences(value: object) { + Object.keys(value).forEach((key) => { + if (key && key == "enable-webgl") { + this.term.loadAddon(new WebglAddon()); + } + }); + } + + onInput(callback: (input: string) => void) { + this.disposables.push( + this.term.onData((data) => { + callback(data); + }), + ); + } + + onResize(callback: (colmuns: number, rows: number) => void) { + this.disposables.push( + this.term.onResize((data) => { + callback(data.cols, data.rows); + }), + ); + } + + deactivate(): void { + this.disposables.forEach((d) => d.dispose()); + this.term.blur(); + } + + reset(): void { + this.removeMessage(); + this.term.clear(); + } + + close(): void { + window.removeEventListener("resize", this.resizeListener); + this.term.dispose(); + } } diff --git a/js/tsconfig.json b/js/tsconfig.json index 58346f0..18ea6a2 100644 --- a/js/tsconfig.json +++ b/js/tsconfig.json @@ -1,20 +1,21 @@ { "compilerOptions": { - "strictNullChecks": true, - "noUnusedLocals" : true, - "noImplicitThis": true, - "alwaysStrict": true, - "outDir": "./dist/", - "declaration": true, - "sourceMap": true, - "target": "es5", - "module": "commonJS", - "baseUrl": ".", - "paths": { - "*": ["./typings/*"] - } + "newLine": "LF", + "strictNullChecks": true, + "noUnusedLocals" : true, + "noImplicitThis": true, + "alwaysStrict": true, + "outDir": "./dist/", + "declaration": true, + "sourceMap": true, + "target": "es5", + "module": "commonJS", + "baseUrl": ".", + "paths": { + "*": ["./typings/*"] + } }, - "exclude": [ - "node_modules" + "exclude": [ + "node_modules" ] } diff --git a/js/typings/libapps/index.d.ts b/js/typings/libapps/index.d.ts index 81eb66d..d0d6c8f 100644 --- a/js/typings/libapps/index.d.ts +++ b/js/typings/libapps/index.d.ts @@ -37,7 +37,7 @@ export declare namespace lib { } export interface Memory { - new (): Storage; + new(): Storage; Memory(): Storage } diff --git a/js/webpack.config.js b/js/webpack.config.js index e035379..3d413e1 100644 --- a/js/webpack.config.js +++ b/js/webpack.config.js @@ -1,29 +1,30 @@ -const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); +const TerserPlugin = require("terser-webpack-plugin"); module.exports = { - entry: "./src/main.ts", - output: { - filename: "./dist/gotty-bundle.js" - }, - devtool: "source-map", - resolve: { - extensions: [".ts", ".tsx", ".js"], - }, - module: { - rules: [ - { - test: /\.tsx?$/, - loader: "ts-loader", - exclude: /node_modules/ - }, - { - test: /\.js$/, - include: /node_modules/, - loader: 'license-loader' - } - ] - }, - plugins: [ - new UglifyJSPlugin() + entry: "./src/main.ts", + output: { + filename: "./gotty-bundle.js" + }, + devtool: "source-map", + resolve: { + extensions: [".ts", ".tsx", ".js"], + }, + module: { + rules: [ + { + test: /\.tsx?$/, + loader: "ts-loader", + exclude: /node_modules/ + }, + { + test: /\.js$/, + include: /node_modules/, + loader: 'license-loader' + } ] + }, + optimization: { + minimize: true, + minimizer: [new TerserPlugin()], + } }; diff --git a/main.go b/main.go index b6290be..38d0b0b 100644 --- a/main.go +++ b/main.go @@ -9,12 +9,12 @@ import ( "strings" "syscall" - "github.com/codegangsta/cli" + "github.com/urfave/cli" - "github.com/yudai/gotty/backend/localcommand" - "github.com/yudai/gotty/pkg/homedir" - "github.com/yudai/gotty/server" - "github.com/yudai/gotty/utils" + "github.com/ghthor/gotty/v2/backend/localcommand" + "github.com/ghthor/gotty/v2/pkg/homedir" + "github.com/ghthor/gotty/v2/server" + "github.com/ghthor/gotty/v2/utils" ) func main() { @@ -66,7 +66,7 @@ func main() { utils.ApplyFlags(cliFlags, flagMappings, c, appOptions, backendOptions) - appOptions.EnableBasicAuth = c.IsSet("credential") + appOptions.EnableBasicAuth = appOptions.EnableBasicAuth || c.IsSet("credential") appOptions.EnableTLSClientAuth = c.IsSet("tls-ca-crt") err = appOptions.Validate() diff --git a/server/asset.go b/server/asset.go index ff62dbe..f819a8b 100644 --- a/server/asset.go +++ b/server/asset.go @@ -1,14 +1,14 @@ -// Code generated by go-bindata. -// sources: +// Code generated by go-bindata. (@generated) DO NOT EDIT. + +//Package server generated by go-bindata.// sources: // bindata/static/css/index.css // bindata/static/css/xterm.css // bindata/static/css/xterm_customize.css // bindata/static/favicon.png // bindata/static/index.html -// bindata/static/js/bundle.js // bindata/static/js/gotty-bundle.js -// DO NOT EDIT! - +// bindata/static/js/gotty-bundle.js.LICENSE.txt +// bindata/static/js/gotty-bundle.js.map package server import ( @@ -26,7 +26,7 @@ import ( 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) + return nil, fmt.Errorf("read %q: %v", name, err) } var buf bytes.Buffer @@ -34,7 +34,7 @@ func bindataRead(data []byte, name string) ([]byte, error) { clErr := gz.Close() if err != nil { - return nil, fmt.Errorf("Read %q: %v", name, err) + return nil, fmt.Errorf("read %q: %v", name, err) } if clErr != nil { return nil, err @@ -55,21 +55,32 @@ type bindataFileInfo struct { modTime time.Time } +// Name return file name func (fi bindataFileInfo) Name() string { return fi.name } + +// Size return file size func (fi bindataFileInfo) Size() int64 { return fi.size } + +// Mode return file mode func (fi bindataFileInfo) Mode() os.FileMode { return fi.mode } + +// ModTime return file modify time func (fi bindataFileInfo) ModTime() time.Time { return fi.modTime } + +// IsDir return file whether a directory func (fi bindataFileInfo) IsDir() bool { - return false + return fi.mode&os.ModeDir != 0 } + +// Sys return file is sys mode func (fi bindataFileInfo) Sys() interface{} { return nil } @@ -89,12 +100,12 @@ func staticCssIndexCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/index.css", size: 116, mode: os.FileMode(436), modTime: time.Unix(1503381631, 0)} + info := bindataFileInfo{name: "static/css/index.css", size: 116, mode: os.FileMode(420), modTime: time.Unix(1761410423, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _staticCssXtermCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x9d\x5d\x93\xda\x48\xb6\xb5\xef\xfd\x2b\x32\xdc\x17\x6d\x3b\xa0\x0a\x89\x6f\x26\xe2\x8d\xa0\xcb\x54\x9b\x77\xca\xe0\xa8\xc2\xe3\xe9\xcb\x04\xa5\x0a\xb9\x41\x62\x24\x51\x1f\x33\x31\xff\xfd\x44\x4a\x99\x85\x2b\x37\x5a\xb9\x3d\x73\x8e\xb9\xe8\x36\xd4\x5a\x5b\x12\xa9\x07\x69\x79\x19\x5f\x7e\xf8\xf0\x46\x7c\x10\x4f\xa5\xca\xf7\x17\xdf\x8b\x49\xfd\x7f\x2d\x91\xa4\xa2\xdc\x2a\xb1\xce\xb3\xc7\x42\xe5\xfa\x47\xae\xb2\xc3\x73\x9e\xdc\x6f\x4b\xf1\x6e\xf3\x5e\x84\x9d\xa0\xd7\x0e\x3b\xc1\xa0\x25\xee\xb2\x63\xbe\x51\x37\x32\xc9\xc5\x97\x3c\x79\x90\xa5\x12\x57\xd9\xfe\x20\xd3\x67\xf1\xee\xf1\xf1\xf1\xa2\xa8\x5e\xdf\xc9\x24\xbf\xd8\x64\x7b\xf1\xee\xf3\x7c\x25\x6e\x92\x8d\x4a\x0b\xf5\xfe\xac\x71\xa8\x8d\xbb\x2d\x71\xb5\xcd\x93\xa2\xcc\x0e\x5b\x95\x8b\xff\xaf\xe2\x38\x57\xcf\x54\xbd\x2d\xcb\x43\x31\xb9\xbc\xbc\x4f\xca\xed\x71\xad\x27\x5c\x6e\xb6\xdf\xbf\x5f\x9a\x1d\x7a\x23\xaa\xfd\xfb\xa2\xf2\x7d\x52\x14\x49\x96\x8a\xa4\x10\x5b\x95\xab\xf5\xb3\xb8\xcf\x65\x5a\xaa\xa8\x25\xe2\x5c\x29\x91\xc5\x62\xb3\x95\xf9\xbd\x6a\x89\x32\x13\x7a\xeb\x0f\x2a\x2f\xb2\x54\x64\xeb\x52\x26\x69\x92\xde\x0b\x29\x36\xd9\xe1\x59\xfb\x65\xb1\x28\xb7\x49\x21\x8a\x2c\x2e\x1f\x65\xae\x84\x4c\x23\x21\x8b\x22\xdb\x24\xb2\x54\x91\x88\xb2\xcd\x71\xaf\xd2\x52\x96\x7a\x64\x9c\xec\x54\x21\xde\xe9\x03\xfa\xf6\xce\x28\xde\xbe\xaf\xe6\x44\x4a\xee\xb4\xa1\x39\xde\xf6\x55\xf1\x98\x94\xdb\xec\x58\x8a\x5c\x15\x65\x9e\x6c\xb4\x8d\x7e\x53\x36\xbb\x63\xa4\xb7\xc4\xbe\xbc\x4b\xf6\x89\x19\xa2\xe5\xd5\x61\xd4\xfb\xac\xad\x8f\x85\x6a\x55\x1b\xdc\x12\xfb\x2c\x4a\x62\xfd\x5f\x55\xed\xdf\xe1\xb8\xde\x25\xc5\xb6\x25\xa2\x44\xbb\xaf\x8f\xa5\x6a\x89\x42\x3f\x59\x1d\xd7\x96\xde\x9b\xcb\x2c\x17\x85\xda\x55\x1b\xb7\xc9\x0e\x89\x2a\xea\x9d\x3e\x6d\x63\xf5\x63\x7a\xd0\x41\x1f\xdc\xd2\x1c\xae\x42\x3f\xf3\xb8\xcd\xf6\xaf\xf7\x27\xa9\xb6\x2a\x3e\xe6\x69\x52\x6c\x55\x25\x8b\x32\x51\x64\xd5\xdc\xef\x6a\x53\xea\x67\xb4\x22\xce\x76\xbb\xec\x51\xef\xe3\x26\x4b\xa3\x44\xef\x5a\x31\x31\xef\xe2\x6a\xab\x84\x5c\x67\x0f\xaa\xda\xad\x7a\xcd\xa4\x59\x99\x6c\xea\xe3\x5f\xbd\x23\x87\xd3\x3b\x6d\x5e\x2a\xb6\x72\xb7\x13\x6b\x65\x0e\x9f\x8a\x44\x92\x6a\x37\xfd\xac\xdd\xb3\x5c\x6f\x46\x51\xca\xb4\x4c\xe4\x4e\x1c\xb2\xbc\x9a\xeb\xee\xf1\x85\xdd\x8e\x4f\x33\x71\xb7\xbc\x5e\x7d\x9b\xde\xce\xc4\xfc\x4e\x7c\xb9\x5d\xfe\x6d\xfe\x71\xf6\x51\xbc\x9d\xde\x89\xf9\xdd\xdb\x96\xf8\x36\x5f\x7d\x5a\x7e\x5d\x89\x6f\xd3\xdb\xdb\xe9\x62\xf5\x87\x58\x5e\x8b\xe9\xe2\x0f\xf1\xd7\xf9\xe2\x63\x4b\xcc\xfe\xfe\xe5\x76\x76\x77\x27\x96\xb7\xda\x6d\xfe\xf9\xcb\xcd\x7c\xf6\xb1\x25\xe6\x8b\xab\x9b\xaf\x1f\xe7\x8b\xdf\xc5\x6f\x5f\x57\x62\xb1\x5c\x89\x9b\xf9\xe7\xf9\x6a\xf6\x51\xac\x96\xd5\x4c\xe3\x36\x9f\xdd\x69\xbf\xcf\xb3\xdb\xab\x4f\xd3\xc5\x6a\xfa\xdb\xfc\x66\xbe\xfa\xa3\xa5\xbd\xae\xe7\xab\x85\x76\xbe\x5e\xde\x8a\xa9\xf8\x32\xbd\x5d\xcd\xaf\xbe\xde\x4c\x6f\xc5\x97\xaf\xb7\x5f\x96\x77\x33\x31\x5d\x7c\x14\x8b\xe5\x62\xbe\xb8\xbe\x9d\x2f\x7e\x9f\x7d\x9e\x2d\x56\x17\x62\xbe\x10\x8b\xa5\x98\xfd\x6d\xb6\x58\x89\xbb\x4f\xd3\x9b\x1b\x3d\x4d\xdb\x4d\xbf\xae\x3e\x2d\x6f\xf5\x86\x8a\xab\xe5\x97\x3f\x6e\xe7\xbf\x7f\x5a\x89\x4f\xcb\x9b\x8f\xb3\xdb\x3b\xf1\xdb\x4c\xdc\xcc\xa7\xbf\xdd\xcc\xea\x69\x8b\x3f\xc4\xd5\xcd\x74\xfe\xb9\x25\x3e\x4e\x3f\x4f\x7f\x9f\x55\xaa\xe5\xea\xd3\xac\xda\x49\xfd\x93\xf5\x66\x8a\x6f\x9f\x66\xfa\x59\x3d\x75\xba\x10\xd3\xab\xd5\x7c\xb9\xd0\xfb\x73\xb5\x5c\xac\x6e\xa7\x57\xab\x96\x58\x2d\x6f\x57\x2f\xea\x6f\xf3\xbb\x59\x4b\x4c\x6f\xe7\x77\xfa\xc8\x5c\xdf\x2e\x3f\x57\x7b\xaa\x8f\xee\xf2\x5a\xff\xd4\x7c\xa1\xa5\x8b\x59\x6d\xa4\x8f\xfc\xeb\x37\x68\x79\x5b\xfd\xfe\xeb\xdd\xec\xc5\x53\x7c\x9c\x4d\x6f\xe6\x8b\xdf\xef\xc4\x7c\xe1\xbe\xa1\xf6\x4d\x5e\xe6\xc9\x7d\x92\xca\xdd\xee\x59\xc4\x59\xfe\xa7\x8a\x44\x9c\x6b\x7c\xe9\x53\xaf\x5a\x15\xf2\x58\x6e\xb3\xfc\xd7\x1f\x97\xdc\x7b\xbd\x52\x85\x10\xd7\x72\x9d\xeb\xa5\xf7\x9b\xda\xed\x64\x1e\xfd\x5a\x88\xef\xf2\x41\x16\x9b\x3c\x39\x94\xe2\xa1\x0c\x3a\x1d\xed\x29\xbe\x17\xbb\x24\x3d\x3e\x19\x91\x26\xd9\xe4\xf2\x72\x5d\x6b\x2e\xb2\xfc\xfe\xd2\xfc\xc0\x65\xfd\x03\x04\x94\x81\x3b\xa8\xfe\x39\x7d\x9a\x64\x66\xeb\x45\xa4\x8a\xe4\x3e\x15\xb9\xda\xcb\x24\x2d\x2e\xaa\x17\x35\x1b\xab\x17\x93\xb2\x50\xbb\xd8\x8c\x97\x85\x58\x2b\x95\x0a\xf5\x54\xaa\x34\xaa\xcf\x51\x73\xca\xd4\x9f\x0a\xe2\xea\x6e\x2e\x36\x59\xa4\x8a\x96\x90\xfb\x2c\xbd\xaf\x85\x59\xa9\x01\x1d\x2b\x59\x1e\x73\x55\xe8\xc3\x77\xf9\xe6\xcd\x65\x75\x0c\xc5\x47\x15\xcb\xe3\xae\x14\x45\xf9\xbc\x53\xd5\x3e\x3f\x9d\xc0\x7c\xf9\xe6\xcd\xc5\xcb\xa6\xfc\xeb\x8d\x10\x42\xac\xe5\xe6\xcf\xfb\x3c\x3b\xa6\x51\x7b\x93\xed\xb2\x7c\x22\x7e\xe9\x74\x3a\x7f\xa9\x5e\xb3\x4f\xc4\x71\x5c\x3f\x11\x67\x69\xd9\x8e\xe5\x3e\xd9\x3d\x4f\xc4\x26\x3b\xe6\x89\xca\xdb\xa9\x7a\x6c\xd9\xdf\x68\xf0\xa5\x59\x71\x90\x1b\xf5\xa3\xa2\xde\xd2\x76\xa1\xca\x32\x49\xef\x8b\x89\x78\xbb\x4b\xee\xe5\x5b\x61\xe6\x1c\xb2\xa2\xc2\xce\x44\xe4\x6a\x27\xcb\xe4\xc1\x88\x8f\x85\xca\xdb\x85\xda\xa9\x4d\x39\x11\x69\x96\x9a\xa7\xdb\xfb\xa2\xdd\xf4\xd2\xa3\x5a\xff\x99\x94\xe7\x5e\xfe\xf7\x0f\xfb\x7e\x11\x67\x9b\x63\xd1\x3a\x3d\x31\xa9\x9e\x30\x87\x24\x3b\x96\xbb\x24\x55\xe7\x84\xe2\xa2\x3a\x9a\xed\xad\xda\x69\xf8\x1a\xc1\x69\xfb\xe5\xba\xc8\x76\xc7\xd2\x6c\x4d\x99\x1d\x26\x7a\x1f\x9b\x1d\xda\xa5\x7a\x2a\x65\xae\xa4\x71\xd2\x6f\xa2\xfe\xf5\x41\x7c\x9a\x5e\xfd\x75\xa2\x17\x44\x9c\x3c\x89\xf9\xec\xd7\x42\xac\x77\x49\xfa\x67\x85\xe9\x63\x5e\x64\xb9\xfd\xc1\xcf\x9a\xce\x2f\x36\xfa\x23\xca\x30\xb4\xd8\xe4\x7a\x71\x59\xca\xcb\x5c\xec\x54\x5c\xb6\x44\xa1\x9f\x90\x65\xf5\x6c\x6d\xa5\x3f\xa1\xd3\xac\x14\x0f\x49\x91\xac\x77\x1a\xba\x95\xf5\x25\xdc\xb9\xec\x20\x37\x49\xf9\x3c\xb1\x6f\xa2\x36\x9f\x88\xf6\x78\x3c\x1e\xab\xfd\xeb\xfd\xd7\xff\xff\x98\x44\xe5\xf6\xe5\x77\x5b\xa5\xcf\xaa\x97\xdf\xfe\xb3\x9d\xa4\x91\x7a\x9a\x88\x76\x60\x9e\xb9\xfc\xf0\x41\x7c\xc9\xd5\x83\x4a\x4b\xf1\x98\xcb\xc3\x41\xef\x78\x51\xef\xca\xfc\xf3\x4c\xc8\xc3\x41\xc9\xbc\x10\xf2\x5e\x9f\x64\xf5\xce\xbc\x1c\x04\xbb\x73\x59\x9e\xeb\xcf\x39\xbb\x07\x76\x8f\x1e\xb7\x49\xa9\xda\xd5\x22\xd5\xef\xb1\xb6\x37\xbb\xf4\xa0\xf2\x78\x97\x3d\x4e\xc4\x36\x89\x22\x95\xd6\xcf\xe6\xaa\x48\xfe\x79\x7e\x35\xd8\xb7\xcd\x9c\x28\x49\xba\x55\x79\x52\x9a\x9d\x57\x4f\x65\x3b\x52\x9b\x2c\x97\xf5\xe1\x3b\xa7\x9f\x6c\xf5\x4c\xeb\x52\xbd\x19\x13\x71\xc8\x92\xb4\x54\x79\x83\xcd\x31\x8d\x54\xae\xd7\xa7\xeb\x65\x16\x56\x92\x3e\xc8\x5d\x12\xb5\xf5\x6a\x39\x6b\xaf\x1d\xd9\x9b\x58\x9f\x29\x93\x34\x2b\xdf\x19\xff\xda\xa6\x5d\xf1\xa5\xfd\xb2\x31\xef\x1b\x7f\x64\x2d\xf3\xf7\xe2\xc5\xcf\xbc\xd6\x0c\x9f\x17\xd6\xbc\xa2\xd1\x8f\x9b\x54\x4f\xaa\xb6\xab\xd1\xf8\xe5\x14\x0e\x0e\x4f\xa2\xc8\x76\x49\xf4\x83\xb3\x79\xb1\x9d\xc5\x71\xa1\xf4\x9a\x0d\x0e\x4f\x7f\x69\xd8\x9e\x32\x97\x69\x71\x90\xb9\x4a\xcb\x73\x5b\xf1\x9f\x1f\x92\x7a\x07\x5e\xbf\x5a\x9d\xe1\xed\x2c\xe5\x1f\xae\x57\x9b\x77\x6e\x25\xbe\x7a\x2f\xcf\x6f\x0a\x99\xd6\xc2\x92\x97\x1d\x6c\xda\xcc\x73\x38\xff\xf7\xcf\x6f\xc6\x64\xb2\x56\x71\x96\xab\xff\x78\x73\xac\xc1\xcb\x49\x9a\x96\x2a\x2d\x27\xe2\xed\xdb\xfa\x58\x45\x49\x71\xd8\xc9\xe7\x89\x58\xef\xb2\xcd\x9f\xee\x47\xd1\x6b\xda\x35\xad\xd4\xff\x62\xbf\xcc\x66\xfd\x08\xc9\x75\x56\x96\xd9\xde\x41\xea\x6b\x80\x56\x6b\xd5\x33\x95\x7d\x48\xd0\xbc\xfc\x15\xa1\x2d\xb0\x39\xe3\xd7\x32\x6f\x5c\xdd\xcc\x05\xff\xb3\xef\xfd\xff\xd6\x3c\xde\x89\xf6\x5f\xec\xff\xff\xdd\x9e\xfe\xfc\x3e\xd9\x15\xfc\xe3\xc5\xc9\x26\xdb\xdb\x53\xa0\xfd\x90\xa8\x47\x22\x3e\x77\x7d\x78\x7d\x7d\xed\x9c\x51\xa7\x2b\xb2\xa6\x13\xaa\xf1\x43\xf8\xe5\x5a\x20\xf0\x6d\xdb\x85\xdc\x68\xb8\x98\x4d\x74\xcf\xe6\x73\x17\x5d\x5a\xa5\x6f\x35\x5f\xae\xb6\xc4\x32\x15\xcb\x3b\xf1\xf7\xfa\x4e\x36\x29\x44\xae\xfe\x71\x4c\xf2\xea\x8e\x55\x64\x79\xa4\x2f\xb3\xb3\xdc\x5e\x4e\x65\xfa\xae\x56\xe6\x55\x5a\x51\x5d\x7f\x88\xf8\xa8\xef\x56\xb2\x83\xfc\xc7\x51\xd9\xcb\x0b\x74\x45\x6d\xaf\x30\xda\xcf\x13\x63\x78\x7e\x43\x1f\x93\x48\xb5\x37\x5b\xf9\x23\x8b\xed\x6b\x69\x96\xef\xf5\x9b\xbc\x95\xb9\xbb\xeb\x49\x5a\x7d\xb0\x81\x23\x90\x67\x8f\xbe\xab\xd6\x57\x14\x40\x97\xb0\x95\xd7\xff\x13\x51\xf2\x70\x3a\x9e\x37\x49\xaa\x8a\x0a\xb5\x26\xc1\x29\x0e\x32\x2d\xea\xb0\x40\x3d\x95\x22\xd5\x37\x33\x22\xdb\xc8\xea\xee\xad\xba\xd7\xd3\x6f\xbd\xbe\x69\x3a\x24\xa5\x12\x6b\xa5\x45\xd5\xf1\x96\x7b\x55\x43\x4f\xbc\xfb\xa5\x1b\x0e\xdf\xc3\xcb\xb7\x73\xdb\x57\x1f\xe0\xf6\x0f\x97\xd7\xd5\x05\x6e\xb2\xab\x2e\x5b\xed\x25\xde\x39\xa5\x3e\xb6\xed\xbd\x92\x85\xbe\x6b\x51\x3b\xb5\xd7\x97\xa1\xf0\x58\x37\xb9\xfb\x0f\xf4\xcb\x15\xf3\xab\x8f\x6a\x95\xca\xf5\x4e\xb5\xf7\xd9\xb1\x50\xed\xea\x32\xb8\x38\x1d\xe4\x6f\x5b\x95\x8a\xea\x25\x61\x5e\x92\xb9\x12\xb5\x24\x12\xef\xd4\xfd\x85\x28\xf7\xc7\xa7\xf7\x2d\xa1\xaf\xa0\xf3\x97\xa4\xa7\x28\x65\x1a\xc9\x3c\xb2\x57\x98\xf6\xf2\xdf\x1c\x58\x7b\x81\x18\xd5\xb7\x90\x0d\x07\xb5\xba\xa9\xd2\x57\xd3\xbc\x7b\x1f\xb2\xa2\x7e\x3c\xbf\x5f\xdf\x47\x5c\x74\xed\xf1\xaa\xb6\xce\xec\x36\xba\x0d\x3b\x6d\xcc\x69\x11\xfe\xfc\x27\xf8\xe9\xd6\xb9\xf6\x57\xf6\x08\xd4\x80\x2b\xe8\x5d\x34\xd9\x90\x75\xb6\x8b\xcc\xfc\xea\x8e\xf7\xd1\x7c\x5c\xea\xe7\xcf\x6f\xfa\xe9\x33\xfa\x5f\x3f\x77\x9d\x6f\x27\x56\xcc\x6f\xd0\x56\x2f\x36\xdc\x77\x56\x0b\xf3\x67\xcf\x07\x7d\x1c\xda\x9d\xd7\x77\x3b\xbf\x84\xaa\xdb\xeb\x0e\x1a\x36\xef\xde\x11\x9d\x39\xfc\x48\x5f\x8b\x03\x67\xe2\x66\xd3\x21\xb7\x03\x64\x62\xd0\x3c\x11\xe9\x6b\x71\xe8\x4c\xec\xa9\xb1\xec\xf8\xf6\x31\x6c\x9e\x88\xf4\xb5\xb8\xeb\xee\x63\x4f\xfa\xf7\xb1\x0b\xf6\x11\xe8\x6b\x71\xcf\x99\xd8\xed\x0d\xfa\xb2\xe7\x99\xd8\x6b\x9e\x88\xf4\xb5\xb8\xef\x4c\x1c\xf6\xfb\x9d\xe1\xda\x33\xb1\xdf\x3c\x11\xe9\x6b\xf1\xc0\x99\xd8\x19\x8c\x47\x63\xe9\x99\x38\x00\x99\x18\xd0\xd7\xe2\xa1\x33\x31\xea\x46\xc3\x0d\xb9\xbe\x72\x26\x0e\x9b\x27\x22\x7d\x2d\x1e\x39\x13\xfb\xfd\xfe\xb0\xdf\xf5\x4c\x1c\x35\x4f\x44\xfa\x5a\x3c\x76\x26\xaa\x38\x1c\x87\x63\xcf\xc4\x71\xf3\x44\xa4\x37\x27\xb3\x0b\x9d\x91\x54\x61\xd7\xb7\x58\x03\x40\x1d\x64\x60\xd4\x2e\x76\xe2\x8d\x1a\xf7\x7c\x6f\x65\x00\xb8\x83\x0c\x8c\xda\x05\xcf\x30\x1c\xc7\xde\xe5\x13\x00\xf2\x20\x03\xa3\x76\xd1\x23\xa3\x61\x2c\x47\xbe\x99\x80\x3d\xc8\xc0\xa8\x29\x7c\x54\xa8\x42\xdf\x4c\x48\x9f\x66\x03\xa3\x76\xf1\xa3\xf4\xaf\x8d\x6f\x26\xe0\x0f\x32\x30\x6a\x02\xa0\x0e\xe7\xa3\x0b\x11\x08\x18\x18\xb5\x8b\x20\x2d\xe8\x7b\xd7\x10\x60\x10\x32\x30\x6a\x17\x42\x5a\x32\x1a\xfa\x66\x02\x0a\x21\x03\xa3\x76\x31\xa4\x25\xd2\xbb\x9f\x80\x43\xc8\xc0\x7c\xc4\xbb\x1c\xd2\x92\xc8\xb7\x9f\x21\xe0\x10\x32\x30\x6a\x97\x43\x5a\x42\x6f\xd9\xdd\x99\x80\x43\xc8\xc0\xa8\x5d\x0e\xe9\x05\xe0\x5d\xb7\x21\xe0\x10\x32\x30\x6a\x97\x43\x5a\xe2\x5d\xb7\x21\xe0\x10\x32\x30\x6a\x97\x43\x5a\xe2\x5d\xb7\x21\xe0\x10\x32\x30\x6a\x97\x43\x5a\xe2\x5d\xb7\x21\xe0\x10\x32\x30\x6a\xca\xa1\x7e\xec\x5f\xb7\x90\x43\xcd\x06\x46\x4d\x39\xd4\x3f\x13\x35\xb9\x33\x21\x87\x9a\x0d\x8c\x9a\x72\x68\x34\xf4\xaf\x5b\xc8\xa1\x66\x03\xa3\xa6\x1c\x1a\x0d\xfd\xeb\x16\x72\xa8\xd9\xc0\x5c\xf8\x53\x0e\x8d\x86\xde\x75\xdb\x85\x1c\x6a\x36\x30\x6a\xca\xa1\xd1\xd0\xbb\x6e\xbb\x90\x43\xcd\x06\x46\x4d\x39\x34\x1a\x7a\xd7\x6d\x17\x72\xa8\xd9\xc0\xa8\x29\x87\x46\x43\xef\xba\xed\x42\x0e\x35\x1b\x18\x35\xe5\x90\xf4\xf3\xb6\x0b\x39\xd4\x6c\x60\xd4\x94\x43\xd2\xcf\xdb\x2e\xe4\x50\xb3\x81\x51\x53\x0e\x49\x3f\x6f\xbb\x90\x43\xcd\x06\x46\x4d\x39\x24\xfd\xbc\xed\x42\x0e\x35\x1b\x18\x35\xe5\x90\xf4\xf3\xb6\x0b\x39\xd4\x6c\x60\xd4\x94\x43\xd2\xcf\xdb\x2e\xe4\x50\xb3\x41\xad\xee\x51\x0e\x45\x7e\xde\xf6\x20\x87\x9a\x0d\x8c\x9a\x72\x28\xf2\xf3\xb6\x07\x39\xd4\x6c\x60\xd4\x94\x43\x91\x9f\xb7\x3d\xc8\xa1\x66\x03\xa3\xa6\x1c\x8a\xfc\xbc\xed\x41\x0e\x35\x1b\x18\x35\xe5\x50\xe4\xe7\x6d\x0f\x72\xa8\xd9\xc0\xa8\x29\x87\x22\x3f\x6f\x7b\x90\x43\xcd\x06\x46\x4d\x39\x14\xfb\x79\xdb\x83\x1c\x6a\x36\x30\x6a\xca\xa1\xd8\xcf\xdb\x1e\xe4\x50\xb3\x81\x51\x53\x0e\xc5\x7e\xde\xf6\x20\x87\x9a\x0d\x8c\x9a\x72\x28\xf6\xf3\xb6\x07\x39\xd4\x6c\x50\xab\xfb\x94\x43\xb1\x9f\xb7\x7d\xc8\xa1\x66\x03\xa3\xa6\x1c\x8a\xfd\xbc\xed\x43\x0e\x35\x1b\x18\xb5\xcb\x21\x7d\x53\xe5\x5d\xb7\x7d\xc0\x21\x64\x60\xd4\x2e\x87\xb4\xc4\xbb\x6e\xfb\x80\x43\xc8\xc0\xa8\x5d\x0e\x69\x89\x77\xdd\xf6\x01\x87\x90\x81\x51\xbb\x1c\xd2\x12\xef\xba\xed\x03\x0e\x21\x03\xa3\x76\x39\xa4\x25\xfe\x75\x0b\x38\x84\x0c\x8c\xda\xe5\x90\x96\xf8\xd7\x2d\xe0\x10\x32\x30\x6a\x12\x52\xc7\x8c\x3c\xa1\x8f\x52\x6a\x60\x60\xd4\x2e\x87\xb4\xc4\xbf\x6e\x01\x87\x90\x41\xad\x1e\xb8\x1c\xd2\x02\xef\xba\x1d\x00\x0e\x21\x03\xa3\x76\x39\xa4\x25\xde\x75\x3b\x00\x1c\x42\x06\x46\x4d\x39\xc4\xc8\x13\x06\x90\x43\xbe\x3c\x61\x40\x39\xc4\xc8\x13\x06\x90\x43\xbe\x3c\x61\x40\x39\xc4\xc8\x13\x06\x90\x43\xbe\x3c\x61\x40\x39\xc4\xc8\x13\x06\x90\x43\xbe\x3c\x61\x40\x39\xc4\xc8\x13\x06\x90\x43\xbe\x3c\x61\x40\x39\xc4\xc8\x13\x06\x90\x43\xbe\x3c\x61\x40\x39\xc4\xc8\x13\x06\x90\x43\xbe\x3c\x61\x40\x39\xc4\xc8\x13\x06\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x48\x39\xc4\xc8\x13\x86\x90\x43\xbe\x3c\x61\x44\x39\xc4\xc8\x13\x46\x90\x43\xbe\x3c\x61\x44\x39\xc4\xc8\x13\x46\x90\x43\xbe\x3c\x61\x44\x39\xc4\xc8\x13\x46\x90\x43\xbe\x3c\x61\x44\x39\xc4\xc8\x13\x46\x90\x43\xbe\x3c\x61\x44\x39\xc4\xc8\x13\x46\x90\x43\xbe\x3c\x61\x44\x39\xc4\xc8\x13\x46\x90\x43\xbe\x3c\x61\x44\x39\xc4\xc8\x13\x46\x90\x43\xbe\x3c\x61\x44\x39\xc4\xc8\x13\x46\x90\x43\xbe\x3c\x61\xe4\x72\x48\x5f\x9c\xfa\xd7\x2d\xe0\x10\x32\x30\x6a\x97\x43\x5a\xe2\x5f\xb7\x80\x43\xc8\xa0\x56\x8f\x49\x7f\x68\xc8\xc8\x13\xc6\xa8\x3f\x04\x0c\x8c\xda\xe5\x90\x96\x78\xd7\xed\x18\x70\x08\x19\x18\xb5\xcb\x21\x2d\xf1\xae\xdb\x31\xe0\x10\x32\x30\x6a\x97\x43\x5a\xe2\x5d\xb7\x63\xc0\x21\x64\x60\xd4\x2e\x87\xf4\x0d\x8e\x77\xdd\x8e\x01\x87\x90\x81\x51\xbb\x1c\xd2\x12\xef\xba\x1d\x03\x0e\x21\x03\xa3\x76\x39\xa4\x25\xfe\x75\x0b\x38\x84\x0c\x8c\xda\xe5\x90\x96\xf8\xd7\x2d\xe0\x10\x32\x30\x6a\xca\x21\x46\x9e\x30\x86\x1c\xf2\xe5\x09\x63\xca\x21\x46\x9e\x30\x86\x1c\xf2\xe5\x09\x41\x87\x82\x88\x11\x28\x9c\x64\x67\xa7\xfa\x12\x85\xa0\x43\x51\xc4\x88\x14\x4e\xb2\x86\xa9\x9e\x4e\x58\x87\xc2\x88\x11\x2a\x9c\x64\x0d\x53\x3d\xad\xb0\x0e\xc5\x11\x23\x56\x38\xc9\x1a\xa6\xe2\xf5\x1b\x74\x28\x90\x18\xc1\xc2\x49\xd6\x30\x15\xaf\xe0\xa0\x43\x91\xc4\x88\x16\x4e\xb2\x86\xa9\xbe\x35\x4c\xa1\xc4\x08\x17\x4e\xb2\xb3\x53\x7d\xe9\x42\xd0\xa1\x58\x62\xc4\x0b\x27\x59\xc3\x54\xdf\x1a\xa6\x60\x62\x04\x0c\x27\x59\xc3\x54\xdf\x1a\xa6\x68\x62\x44\x0c\x27\x59\xc3\x54\xcf\x1a\xa6\x25\xeb\x21\x23\x64\x08\x60\xcb\x1a\x38\x58\x39\x65\x13\x23\x66\x08\x50\xcf\x1a\x39\x58\x39\x65\x13\x23\x68\x08\x50\xd3\x1a\x39\x58\x39\x65\x13\x23\x6a\x08\x50\xd7\x1a\x39\x58\x39\x65\x13\x23\x6c\x08\x50\xdb\x1a\x39\x58\x39\x65\x13\x23\x6e\x08\x50\xdf\x1a\x39\x58\x39\x65\x13\x23\x70\x08\x50\xe3\x1a\x39\x58\x39\x65\x13\x23\x72\x08\x50\xe7\x1a\x39\x58\x39\x65\x13\x23\x74\x08\x50\xeb\x1a\x39\x58\x39\x65\x13\x23\x76\x08\x50\xef\x1a\x39\x18\x39\x29\x5e\x6b\x8d\x7f\x0d\xa3\xe6\x35\x72\xb0\x72\xca\x26\x46\xf4\x10\xa0\xee\x35\x72\xb0\x72\xca\x26\x46\xf8\x10\xa0\xf6\x35\x72\xb0\x72\xca\x26\x46\xfc\x10\xa0\xfe\x35\x72\xb0\x72\x97\x4d\x92\x53\x68\x08\x50\x03\x1b\x39\x58\xb9\xcb\x26\xc9\xa9\x34\x04\xa8\x83\x8d\x1c\xac\xdc\x65\x93\xe4\x94\x1a\x02\xd4\xc2\x46\x0e\x56\xee\xb2\x49\x72\x6a\x0d\x01\xea\x61\x23\x07\x2b\x77\xd9\x24\x39\xc5\x86\x00\x35\xb1\x91\x83\x95\xbb\x6c\x92\x9c\x6a\x43\x80\xba\xd8\xc8\xc1\xc8\x49\x19\x5b\x72\xca\x0d\x01\x6a\x63\x23\x07\x2b\x77\xd9\x24\x39\xf5\x86\x00\xf5\xb1\x91\x83\x95\xbb\x6c\x92\x9c\x82\x43\x80\x1a\xd9\xc8\xc1\xca\xc9\x5f\x51\xe3\x54\x1c\x02\xd4\xc9\x46\x0e\x56\x4e\xd9\xc4\x08\x25\x02\xd4\xca\x46\x0e\x56\x4e\xd9\xc4\x88\x25\x02\xd4\xcb\x46\x0e\x56\x4e\xd9\xc4\xc9\x25\x50\x33\x1b\x39\x58\x39\x65\x13\x27\x97\x40\xdd\x6c\xe4\x60\xe5\x94\x4d\x9c\x5c\x02\xb5\xb3\x91\x83\x95\x53\x36\x71\x72\x09\xd4\xcf\x46\x0e\x46\x4e\x0a\xda\x92\x53\x78\x08\x50\x43\x1b\x39\x58\x39\x65\x13\x27\x97\x40\x1d\x6d\xe4\x60\xe5\x94\x4d\x9c\x5c\x02\xb5\xb4\x91\x83\x95\x53\x36\x71\x72\x09\xd4\xd3\x46\x0e\x56\x4e\xd9\xc4\xc9\x25\x50\x53\x1b\x39\x58\x39\x65\x13\x27\x97\x40\x5d\x6d\xe4\x60\xe5\x94\x4d\x9c\x5c\x02\xb5\xb5\x91\x83\x95\x53\x36\x71\x72\x09\xd4\xd7\x46\x0e\x56\x4e\xd9\xc4\xc9\x25\x50\x63\x1b\x39\x58\x39\x65\x13\x27\x97\x40\x9d\x6d\xe4\x60\xe4\xa4\xb4\x2d\x39\x25\x88\x00\xb5\xb6\x91\x83\x95\x53\x36\x71\x72\x09\xd4\xdb\x46\x0e\x56\x4e\xd9\xc4\xc9\x25\x50\x73\x1b\x39\x58\x39\x65\x13\x27\x97\x40\xdd\x6d\xe4\x60\xe5\x94\x4d\x9c\x5c\x02\xb5\xb7\x91\x83\x95\x53\x36\x71\x72\x09\xd4\xdf\x46\x0e\x56\x4e\xd9\xc4\xc9\x25\x50\x83\x1b\x39\x58\x39\x65\x13\x27\x97\x40\x1d\x6e\xe4\x60\xe5\x94\x4d\x9c\x5c\x02\xb5\xb8\x91\x83\x95\x53\x36\x71\x72\x09\xd4\xe3\x46\x0e\x46\x4e\x8a\xdc\x11\xa7\x18\x11\xa0\x26\x37\x72\xb0\x72\x97\x4d\x11\xa7\x1a\x11\xa0\x2e\x37\x72\xb0\x72\x97\x4d\x11\xa7\x1c\x11\xa0\x36\x37\x72\xb0\x72\x97\x4d\x11\xa7\x1e\x11\xa0\x3e\x37\x72\xb0\x72\x97\x4d\x11\xa7\x20\x11\xa0\x46\x37\x72\xb0\x72\x97\x4d\x11\xa7\x22\x11\xa0\x4e\x37\x72\xb0\x72\x97\x4d\x11\xa7\x24\x11\xa0\x56\x37\x72\xb0\x72\xf2\x0d\x48\x9c\x9a\x44\x80\x7a\xdd\xc8\xc1\xca\x5d\x36\x45\x9c\xa2\x44\x80\x9a\xdd\xc8\xc1\xca\x5d\x36\x45\x9c\xaa\x44\x80\xba\xdd\xc8\xc1\xc8\x49\xb9\x3b\xe2\x94\x25\x02\xd4\xee\x46\x0e\x56\x4e\xd9\xc4\xc9\x25\x50\xbf\x1b\x39\x58\x39\x65\x13\x27\x97\x40\x0d\x6f\xe4\x60\xe5\x94\x4d\x9c\x5c\x02\x75\xbc\x91\x83\x95\x53\x36\x71\x72\x09\xd4\xf2\x46\x0e\x56\x4e\xd9\xc4\xc9\x25\x50\xcf\x1b\x39\x58\x39\x65\x13\x27\x97\x40\x4d\x6f\xe4\x60\xe5\x94\x4d\x9c\x5c\x02\x75\xbd\x91\x83\x95\x53\x36\x71\x72\x09\xd4\xf6\x46\x0e\x56\x4e\xd9\xc4\xc9\x25\x50\xdf\x1b\x39\x18\x39\x29\x7c\x47\xac\xbe\x04\x6a\x7c\x23\x07\x2b\xa7\x6c\xe2\xe4\x12\xa8\xf3\x8d\x1c\xac\x9c\xb2\x89\x93\x4b\xa0\xd6\x37\x72\xb0\x72\xca\x26\x4e\x2e\x81\x7a\xdf\xc8\xc1\xca\x29\x9b\x38\xb9\x04\x6a\x7e\x23\x07\x2b\xa7\x6c\xe2\xe4\x12\xa8\xfb\x8d\x1c\xac\x9c\xb2\x89\x93\x4b\xa0\xf6\x37\x72\xb0\x72\xca\x26\x4e\x2e\x81\xfa\xdf\xc8\xc1\xca\x29\x9b\x38\xb9\x04\x6a\x80\x23\x07\x2b\xa7\x6c\xe2\xe4\x12\xa8\x03\x8e\x1c\x8c\x9c\x94\xc0\x23\x56\x5f\x02\xb5\xc0\x91\x83\x95\x53\x36\x71\x72\x09\xd4\x03\x47\x0e\x56\x4e\xd9\xc4\xc9\x25\x50\x13\x1c\x39\x58\x39\x65\x13\x27\x97\x40\x5d\x70\xe4\x60\xe5\x94\x4d\x9c\x5c\x02\xb5\xc1\x91\x83\x95\x53\x36\x71\x72\x09\xd4\x07\x47\x0e\x56\xee\xb2\x29\x66\xf5\x25\x50\x23\x1c\x39\x58\xb9\xcb\xa6\x98\xd5\x97\x40\x9d\x70\xe4\x60\xe5\x2e\x9b\x62\x56\x5f\x02\xb5\xc2\x91\x83\x95\xbb\x6c\x8a\x59\x7d\x09\xd4\x0b\x47\x0e\xb5\x3c\x24\xbd\xf0\x98\xd3\x97\x08\x51\x2f\x1c\x39\x58\x39\xf9\x8a\x5b\x4e\x5f\x22\x44\xbd\x70\xe4\x60\xe5\x2e\x9b\x62\x4e\x5f\x22\x44\xbd\x70\xe4\x60\xe5\x2e\x9b\x62\x4e\x5f\x22\x44\xbd\x70\xe4\x60\xe5\x2e\x9b\x62\x4e\x5f\x22\x44\xbd\x70\xe4\x60\xe5\x2e\x9b\x62\x4e\x5f\x22\x44\xbd\x70\xe4\x60\xe5\x94\x4d\x9c\x2f\x99\x44\xbd\x70\xe4\x60\xe5\x94\x4d\x9c\xaf\x99\x44\xbd\x70\xe4\x60\xe5\x94\x4d\x9c\x2f\x9a\x44\xbd\x70\xe4\x60\xe5\x94\x4d\x9c\xaf\x9a\x44\xbd\x70\xe4\x60\xe4\xa4\x17\x1e\x73\xfa\x12\x21\xea\x85\x23\x07\x2b\xa7\x6c\x62\xe4\x12\x21\xfc\xfe\x6d\x6f\x5f\x22\x24\xbd\xf0\x98\xd3\x97\x08\x51\x2f\x1c\x39\x58\x39\x65\x13\x23\x97\x08\x51\x2f\x1c\x39\x58\x39\x65\x13\x23\x97\x08\x51\x2f\x1c\x39\x58\x39\x65\x13\x23\x97\x08\x51\x2f\x1c\x39\x58\x39\x65\x13\x23\x97\x08\x51\x2f\x1c\x39\x58\x39\x65\x13\x23\x97\x08\x51\x2f\x1c\x39\x58\x39\x65\x13\x23\x97\x08\x51\x2f\x1c\x39\x58\x39\x65\x13\x23\x97\x08\x51\x2f\x1c\x39\x18\x39\xe9\x85\xc7\x9c\xbe\x44\x88\x7a\xe1\xc8\xc1\xca\x29\x9b\x18\xb9\x44\x88\x7a\xe1\xc8\xc1\xca\x29\x9b\x18\xb9\x44\x88\x7a\xe1\xc8\xc1\xca\x29\x9b\x18\xb9\x44\x88\x7a\xe1\xc8\xc1\xca\x29\x9b\x18\xb9\x44\x88\x7a\xe1\xc8\xc1\xca\x29\x9b\x18\xb9\x44\x88\x7a\xe1\xc8\xc1\xca\x29\x9b\x18\xb9\x44\x88\x7a\xe1\xc8\xc1\xca\x29\x9b\x18\xb9\x44\x88\x7a\xe1\xc8\xc1\xca\x29\x9b\x18\xb9\x44\x88\x7a\xe1\xc8\xc1\xca\x29\x9b\x18\xb9\x44\x88\x7a\xe1\xc8\xc1\xc8\x49\x2f\x3c\xe6\xf4\x25\x42\xd4\x0b\x47\x0e\x56\x4e\xd9\xc4\xc8\x25\x42\xd4\x0b\x47\x0e\x56\x4e\xbe\x20\x77\xa4\x1f\xde\xa9\xe8\x1b\x72\x81\x83\x95\xbb\x6c\x0a\x42\xfd\xf0\x4e\x05\x6c\x42\x0e\x56\xee\xb2\x29\xd8\xe8\x87\x77\x2a\x60\x13\x72\xb0\x72\x97\x4d\xe1\x40\x3f\xbc\x53\x01\x9b\x90\x83\x95\xbb\x6c\xea\x76\xf4\xc3\x3b\x15\xb0\x09\x39\x58\xb9\xcb\xa6\xae\xd4\x0f\xef\x54\xc0\x26\xe4\x60\xe5\x2e\x9b\x7a\xd5\x2f\xef\x54\xc0\x26\xe4\x60\xe5\x2e\x9b\x7a\x4a\x3f\xbc\x53\x01\x9b\x90\x83\x91\x93\x5e\x78\x7f\xa4\x1f\xbe\xa9\xa8\x17\x8e\x1c\xac\xdc\x65\x53\xb5\x00\xbd\xe7\x2b\xea\x85\x23\x07\x2b\x77\xd9\x34\xd8\xe8\x87\x77\x2a\x60\x13\x72\xb0\x72\x97\x4d\xc3\x81\x7e\x78\xa7\x02\x36\x21\x07\x2b\x27\x7f\xd7\xb7\xc2\xa8\x77\x2a\xfa\xbb\xbe\xc0\xc1\xca\xc9\xdf\xf5\x95\xfa\xe1\x9d\x8a\xfe\xae\x2f\x70\xb0\x72\x97\x4d\xe3\x9e\x7e\x78\xa7\x02\x36\x21\x07\x2b\x77\xd9\x34\x56\xfa\xe1\x9d\x0a\xd8\x84\x1c\xac\x9c\x74\x2f\xab\x03\xe4\x9d\x8a\xba\x97\xc0\xc1\xca\x5d\x36\xad\x43\xfd\xf0\x4e\x05\x6c\x42\x0e\x46\x4e\x7a\xe1\xeb\x8d\x7e\xf8\xa6\xa2\x5e\x38\x72\xb0\x72\xf2\xaf\x4c\x56\x27\xb9\x77\x2a\xfa\x77\x26\x81\x83\x95\x93\x3f\xa7\xeb\xe8\x87\x77\x2a\xfa\x73\x3a\xe0\x60\xe5\xe4\xcf\xe9\xa4\x7e\x78\xa7\xa2\x3f\xa7\x03\x0e\x56\xee\xb2\xa9\xfa\x98\xf2\x9e\xaf\xa8\x17\x8e\x1c\xac\xfc\xec\x3f\xfb\xe6\x3d\x5f\x51\x2f\xfc\xe4\xf0\x3f\x01\x00\x00\xff\xff\xa8\x8d\x33\x24\xc6\x8b\x00\x00") +var _staticCssXtermCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5b\x77\xdb\x36\x12\x7e\xae\x7f\xc5\x6c\xfa\xd0\x24\x47\x94\xec\xb4\xdd\xdd\x28\x2f\xcb\x48\x74\xcc\x5d\x89\xf4\x91\xe8\xba\x79\x84\xc8\x91\x08\x07\x04\x58\x00\x94\xac\xf6\xe4\xbf\xef\x19\xf0\xa2\xbb\x93\xb3\x9b\x17\x87\x00\xe6\xf6\xcd\xcc\x37\xa3\xc1\xdb\xb7\x57\xf0\x16\x46\xaa\xdc\x6a\xbe\xca\x2d\xbc\x4e\xdf\xc0\xbb\xeb\x9b\x5f\x20\xc9\x11\x9e\x2d\xea\xa2\xff\x64\x80\x55\x36\x57\xda\xf4\xc1\x17\x02\xdc\x43\x03\x1a\x0d\xea\x35\x66\xfd\xb3\x0a\xde\x79\xef\xae\x6f\x7e\xee\xc1\x28\xd7\xdc\x58\x55\xe6\xa8\xe1\xdf\xb8\x5c\x6a\xdc\xc2\xeb\x69\x98\xc0\x84\xa7\x28\x0d\xbe\x21\xe9\xdc\xda\xd2\x0c\x07\x83\x15\xb7\x79\xb5\xe8\xa7\xaa\x18\xa4\xf9\xd3\xd3\xa0\x31\x4f\x4f\xfe\x25\xea\xf7\x30\x0d\x93\x2b\x70\x4e\xdf\xa3\x2e\xb8\x31\x5c\x49\xe0\x06\x72\xd4\xb8\xd8\xc2\x4a\x33\x69\x31\xeb\xc1\x52\x23\x82\x5a\x42\x9a\x33\xbd\xc2\x1e\x58\x05\x4c\x6e\xa1\x44\x6d\x94\x04\xb5\xb0\x8c\x4b\x2e\x57\xc0\x20\x55\xe5\x96\xf4\xa9\x25\xd8\x9c\x1b\x30\x6a\x69\x37\x4c\x23\x30\x99\x01\x33\x46\xa5\x9c\x59\xcc\x20\x53\x69\x55\xa0\xb4\xcc\x92\xc9\x25\x17\x68\xe0\xb5\xcd\x11\x5e\xcd\x1b\x89\x57\x6f\x9c\x9d\x0c\x99\x20\x85\x5c\x02\x5d\xb7\xb7\xb0\xe1\x36\x57\x95\x25\xe4\xac\xe6\x29\xa9\xe9\x01\x97\xa9\xa8\x32\xf2\xa4\xbd\x16\xbc\xe0\x8d\x11\x12\xaf\xe1\x26\x7d\x56\x41\x65\xb0\xe7\x1c\xee\x41\xa1\x32\xbe\xa4\xbf\xe8\xe2\x2b\xab\x85\xe0\x26\xef\x41\xc6\x49\xfb\xa2\xb2\xd8\x03\x43\x87\x0e\xb7\x1e\x45\x33\x50\x1a\x0c\x0a\xe7\x5c\xaa\x4a\x8e\xa6\x0e\x7a\xe7\xa3\x7b\x46\x86\x4a\x02\xd7\x36\x70\x19\x3a\xd9\xe4\xaa\x38\x8c\x87\x3b\xaf\x96\x95\x96\xdc\xe4\xe8\xc4\x32\x05\x46\x39\xbb\x4f\x98\x5a\x3a\x21\x89\xa5\x12\x42\x6d\x28\xc6\x54\xc9\x8c\x53\x68\x66\xd8\x64\x91\xea\x8c\x2d\xd4\x1a\x5d\x58\x75\x0d\x49\x65\x79\x5a\xe3\xef\x32\x52\xee\x32\xdd\x5c\x99\x9c\x09\x01\x0b\x6c\xe0\xc3\x0c\xb8\x24\x6d\x74\xda\x46\xa6\xc9\x0d\x63\x99\xb4\x9c\x09\x28\x95\x76\x76\x8f\x23\xee\xb7\x7e\xdc\x05\x30\x8f\x6f\x93\x47\x7f\x16\x40\x38\x87\xfb\x59\xfc\x5b\x38\x0e\xc6\xf0\xca\x9f\x43\x38\x7f\xd5\x83\xc7\x30\xb9\x8b\x1f\x12\x78\xf4\x67\x33\x3f\x4a\x3e\x43\x7c\x0b\x7e\xf4\x19\xfe\x13\x46\xe3\x1e\x04\xbf\xdf\xcf\x82\xf9\x1c\xe2\x19\x69\x0b\xa7\xf7\x93\x30\x18\xf7\x20\x8c\x46\x93\x87\x71\x18\x7d\x82\x8f\x0f\x09\x44\x71\x02\x93\x70\x1a\x26\xc1\x18\x92\xd8\xd9\x6c\xb4\x85\xc1\x9c\xf4\x4d\x83\xd9\xe8\xce\x8f\x12\xff\x63\x38\x09\x93\xcf\x3d\xd2\x75\x1b\x26\x11\x69\xbe\x8d\x67\xe0\xc3\xbd\x3f\x4b\xc2\xd1\xc3\xc4\x9f\xc1\xfd\xc3\xec\x3e\x9e\x07\xe0\x47\x63\x88\xe2\x28\x8c\x6e\x67\x61\xf4\x29\x98\x06\x51\xd2\x87\x30\x82\x28\x86\xe0\xb7\x20\x4a\x60\x7e\xe7\x4f\x26\x64\x8d\xd4\xf9\x0f\xc9\x5d\x3c\x23\x47\x61\x14\xdf\x7f\x9e\x85\x9f\xee\x12\xb8\x8b\x27\xe3\x60\x36\x87\x8f\x01\x4c\x42\xff\xe3\x24\xa8\xad\x45\x9f\x61\x34\xf1\xc3\x69\x0f\xc6\xfe\xd4\xff\x14\x38\xa9\x38\xb9\x0b\x5c\x90\xf4\xb2\x76\x13\x1e\xef\x02\x3a\x25\xab\x7e\x04\xfe\x28\x09\xe3\x88\xe2\x19\xc5\x51\x32\xf3\x47\x49\x0f\x92\x78\x96\x74\xd2\x8f\xe1\x3c\xe8\x81\x3f\x0b\xe7\x84\xcc\xed\x2c\x9e\xba\x48\x09\xdd\xf8\x96\x5e\x85\x11\x89\x46\x41\xad\x88\x90\x3f\x4c\x50\x3c\x73\xdf\x0f\xf3\xa0\xd3\x09\xe3\xc0\x9f\x84\xd1\xa7\x39\x84\xd1\x71\x42\xdb\x24\xc7\x9a\xaf\xb8\x64\x42\x6c\x61\xa9\xf4\x17\xcc\x60\xa9\x55\x01\xaf\xa9\xf5\x5c\x55\xd4\x44\xf7\xd3\x7e\xc9\xbd\xa1\x4a\x05\x80\x5b\xb6\xd0\x54\x7a\x1f\x51\x08\xa6\xb3\x9f\x0c\x3c\xb1\x35\x33\xa9\xe6\xa5\x85\xb5\xbd\xb9\xbe\x26\x9d\xf0\x64\x04\x97\xd5\x73\x23\x44\xcc\x36\x1c\x0c\x16\xb5\x4c\x5f\xe9\xd5\xa0\x79\x30\xa8\x1f\x9c\x10\xe7\xcd\xb1\xa1\xfa\x1d\xb5\x89\x6a\xbc\x87\x0c\x0d\x5f\x49\xd0\x58\x30\x2e\x4d\xdf\x5d\x12\x57\xba\x4b\x6e\x0d\x8a\x65\x63\x9e\x19\x58\x20\x4a\xc0\x67\x8b\x32\xab\x7b\xb4\x69\x99\x9a\xdd\x61\x34\x0f\x21\x55\x19\x9a\x1e\xb0\x42\xc9\x55\x2d\xa8\x2c\x11\xf6\x12\x99\xad\x34\x1a\x82\x6f\x70\x75\xd5\x0c\x0b\x18\xe3\x92\x55\xc2\x82\xb1\x5b\xe2\x40\x8a\xfa\x79\x47\xd5\x83\xab\xab\x7e\xad\xfa\xaf\x2b\x00\x80\xb4\xd2\x46\xe9\x21\x58\x7c\xb6\x1f\xdc\x49\xa9\x8c\xe3\x80\x21\x68\x14\xcc\xf2\x35\xd6\xe7\x95\x41\xed\x19\x14\x98\xda\x21\x48\x25\x9b\x63\xaf\x30\xde\xa5\xab\x0d\x2e\xbe\x70\x7b\xee\xfa\x6b\xeb\x46\x7f\xa9\xd2\xca\xf4\x9a\xaf\xa1\xfb\x6a\x5c\x53\x95\x15\x5c\xe2\x89\x08\xd4\x7f\xbc\x1c\x05\x11\x60\xf3\x7a\xe7\x36\x5b\x18\x25\x2a\xdb\x38\x61\x55\x39\x84\xeb\xfa\xff\x0e\x22\xfa\x57\x13\xdb\x9f\x1e\x97\x19\x3e\xb7\x9c\xd3\xea\x2b\x2a\x63\x89\xbc\x72\xbe\x22\x98\x6d\xce\x6a\xaa\x4f\x99\x5c\x33\x83\x86\x26\x87\xd2\x19\x65\x40\xe9\x56\x5f\x38\x0d\x1c\x0f\xb3\xb2\x44\xa6\x81\xa6\x83\x2a\xfb\xcd\xed\xc0\xfd\x6d\xcc\x0d\xe1\xd7\x8b\xc1\x78\x94\x06\xa6\x91\xb5\x41\xb1\x8c\x86\x4f\x17\xc0\xc2\xd9\xed\x3e\x0b\xa6\x57\x5c\xee\x85\x07\x53\xa2\xea\x4e\x09\xcd\xab\x26\x38\x93\x6a\xaa\xb4\x96\xf2\x99\x06\x81\x4b\xdb\x03\x43\x07\xcc\xd6\x01\xba\x5a\xa0\x71\x2d\x95\x85\x35\x37\x7c\x21\xb0\xf5\xfe\x12\xbe\xaa\x64\x29\xb7\xdb\xce\x09\x52\x3b\x04\xef\xfd\xfb\xf7\xef\xb1\x38\x4d\xc1\x86\x67\x36\xef\xbe\x72\xa4\xe6\xea\x3e\x3b\x84\xbc\x5f\xbb\x84\xc1\xbd\xc6\x35\x4a\x0b\x1b\xcd\xca\x92\xa6\x94\xa9\x63\x08\xa7\x41\x83\xb6\x01\xb6\xa2\x56\xab\xa3\xe8\xa2\x6f\xa3\x52\x5a\xd3\xb4\x6b\x03\x68\x03\xda\xe4\xdc\xa2\x67\x4a\x96\xba\x12\x23\xf5\x4d\x44\x6b\xd4\x4b\xa1\x36\x43\xc8\x79\x96\xa1\xac\x4f\x35\x1a\xfe\xe7\xb9\x62\x4c\x55\xd1\xaa\xf6\xd6\x1c\x37\x4d\xea\x06\x6f\x21\x89\xc7\xf1\x10\x46\xbb\xfb\x9d\x0f\x2b\x65\xa1\x40\x63\x30\x83\xaa\x04\xa3\x0a\xdc\xd0\x8a\xd4\xfa\xb6\x60\xe9\x97\x95\x56\x95\xcc\x86\xf0\xe3\xf5\x75\x03\x4f\xaa\x04\xb5\xea\x8f\xb7\xb7\xb7\xf5\x41\xc6\x4d\x29\xd8\x76\xbf\xe7\x2e\xa5\xe9\x62\xb4\x1d\xe6\x37\x2f\x46\xd5\x67\x29\x51\x41\x13\x5c\x67\x78\x21\x54\xfa\xe5\x4c\x39\x93\x08\xcd\xf4\x1d\x18\xb1\x84\x78\x0e\xbf\xd7\x2b\x03\xa7\x05\xf5\x8f\x8a\x6b\xb7\x1a\xec\xba\xa9\x2d\x55\x45\xeb\x03\xd3\x7b\x0d\xb5\xac\x68\x2c\xa8\x92\xfd\x51\x9d\x41\xc9\x6b\xa1\xe9\xb0\x6a\x93\xe8\x6d\x87\x8d\xc2\x0f\x07\x7c\x97\xd5\x2c\xf9\x32\x68\xfa\xa0\x3a\xeb\xca\xbe\x3e\xad\xe9\x85\xb2\x56\x15\xee\xf3\x04\x88\xa6\xef\x8e\x39\x6a\x47\xad\x97\x24\x6a\xb6\xf9\x06\xb9\x9d\x75\xe9\x9c\x46\x25\x84\xb7\xc7\x2b\xae\xb7\xb9\x70\x7d\xdb\x16\x79\x27\xe6\xd1\x52\xee\x15\xc8\x4c\xa5\xd1\x43\x81\xb4\x56\x1f\x27\x9e\x4b\xe2\x66\xaf\xc9\xff\x25\x9d\xdf\x4b\xcc\x67\x48\xc3\xa9\x6f\xf9\x41\x2a\x5d\x30\xb1\x3f\x36\x50\xb2\x85\x40\xaf\x50\x95\x41\xcf\x11\x84\xd9\xd5\xda\x63\x8e\x12\xdc\x15\x34\x57\xb4\x10\xd7\x22\x19\xbc\xc6\x55\x1f\x6c\x51\x3d\xbf\xe9\x01\x71\x8b\xee\x36\x61\x5a\x47\x33\xa6\x33\x28\x15\x97\x16\x75\xcb\x88\x4d\xbd\x9d\xd4\xce\xce\x9d\x06\x38\xf7\xc0\x6b\xa4\x7b\x47\x69\x38\xbc\x3d\x9a\xbf\xcd\xe9\xbe\xce\x54\x89\xaa\x90\xcd\xe0\xec\xef\x4f\xc6\x01\xfd\xa4\xa3\x4b\xa8\x2f\x89\x51\x0a\x95\xe1\xb1\xa3\xa9\x56\xc6\xe4\x8c\xeb\x33\x45\xc1\xd2\x14\x4d\x97\x31\xa9\xec\xeb\x7e\x86\x8b\x6a\xf5\xe6\xd8\x6d\xa2\x29\xb6\xc2\xff\xa5\x12\x8f\x9a\xe3\xb4\xa5\x76\xe4\x73\x48\x71\x56\x33\x69\x4a\xa6\x51\x76\x1d\xea\xe0\x69\x32\x7d\x71\x25\x38\x08\xca\xb3\x1a\x71\x3f\x32\x78\x3b\x1c\xee\x00\xa3\x78\xce\x99\xfb\x0e\xa5\x4e\xf6\x60\xab\x69\xd7\xa7\x03\x9a\x2d\xf5\xa1\x8f\x82\xaf\xd1\xd3\xb8\x6a\xad\x7f\x0b\x4d\xd7\x0f\xe5\xf3\xc1\xe0\xbc\x69\xbf\xdb\xd6\xe8\x0e\x4e\xc7\xd6\xae\xa3\x33\x5e\xec\x4a\x67\xcc\x0b\x30\xb9\xaa\x44\xe6\xe6\x3c\x2b\x4b\xb1\xa5\x0e\xd8\xd1\x69\xaf\x9d\xb1\xcd\x70\x6f\x97\x88\xa5\xd2\x58\xbf\xa8\x91\x23\x1e\x27\x71\x8e\x59\xbb\x07\xe1\x73\x29\x78\xca\xad\xd8\xb6\x3f\xb0\x57\x28\x51\xbb\x9f\xe8\xa9\x60\xc6\xb8\xdf\x8d\x1a\x0d\xba\xae\xbb\x81\xfd\xb1\xd7\xed\x12\x37\xf0\x37\x5e\xd0\xfc\x60\x07\x19\xf1\x2a\x99\xa1\x76\xcc\x70\x03\x7f\x39\xd0\xbd\x0c\x53\xa5\x59\x0d\x62\x77\xfd\x01\xbe\x9e\x8a\xbc\x3b\x27\x92\xa9\x8a\x96\x9c\x97\x25\x7f\x3e\x27\xb9\x61\xeb\xed\x37\xe4\x7e\x39\x6f\xd1\x12\x18\x2f\x4b\xfe\x7a\x56\x92\xb9\x1f\xf2\x07\x92\xad\x28\x65\x9f\xce\x9a\x34\x9f\xc8\xb6\xf7\xfb\x68\xb6\x67\xdf\x07\x6e\x67\xe1\x9c\xe7\x17\x55\x9d\x05\xbd\x53\xf5\x02\xfa\x17\x35\x9e\x4d\x46\xa7\xf1\x62\x56\x2e\xea\x3b\x9b\xa4\x3d\x0f\x2f\x66\xeb\xa2\xc6\xb3\xc9\xdb\x69\x7c\x21\x8b\xc6\x6a\xfe\x05\x6d\xae\x55\xb5\xca\x2f\xa5\xd2\xd9\x68\xde\xec\xa7\xb3\x59\x1c\xda\x96\xef\x24\xbc\x54\x49\xcb\xb8\x44\x7d\x7a\x07\x7f\x5d\xfd\xd0\x91\xf0\xdf\x3f\x5c\xfd\x70\x8e\x91\xfe\x3f\x13\xa7\x8f\xad\x2a\x3d\xc1\xb6\x6e\x06\xee\xac\xff\xe3\x80\xb0\x76\xaf\x09\x38\x5a\x27\x3d\x5d\x89\x6e\x6c\x76\x52\xff\xfc\xfe\x25\xe3\x70\xf4\x7c\x63\xa2\x1c\xf9\x7b\x6c\xf6\xdd\xe5\xdf\xca\x5f\xaf\xfe\x1b\x00\x00\xff\xff\x80\xfd\xeb\x98\xb7\x15\x00\x00") func staticCssXtermCssBytes() ([]byte, error) { return bindataRead( @@ -109,7 +120,7 @@ func staticCssXtermCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/xterm.css", size: 35782, mode: os.FileMode(436), modTime: time.Unix(1503381631, 0)} + info := bindataFileInfo{name: "static/css/xterm.css", size: 5559, mode: os.FileMode(420), modTime: time.Unix(1761699008, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -129,7 +140,7 @@ func staticCssXterm_customizeCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/xterm_customize.css", size: 550, mode: os.FileMode(436), modTime: time.Unix(1503469811, 0)} + info := bindataFileInfo{name: "static/css/xterm_customize.css", size: 550, mode: os.FileMode(420), modTime: time.Unix(1761409913, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -149,7 +160,7 @@ func staticFaviconPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/favicon.png", size: 863, mode: os.FileMode(436), modTime: time.Unix(1503381631, 0)} + info := bindataFileInfo{name: "static/favicon.png", size: 863, mode: os.FileMode(420), modTime: time.Unix(1761410423, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -169,32 +180,12 @@ func staticIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/index.html", size: 491, mode: os.FileMode(436), modTime: time.Unix(1503385310, 0)} + info := bindataFileInfo{name: "static/index.html", size: 491, mode: os.FileMode(420), modTime: time.Unix(1761410423, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _staticJsBundleJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xeb\x73\x1b\x49\xf2\x20\xf6\x79\xf9\x57\xa4\x38\x77\x83\x86\x08\x82\x00\xf8\x90\x44\x0a\xd2\x42\x04\x39\xd2\x8e\x5e\x47\x72\x76\x76\x8f\xc3\x1f\xb7\xd0\x5d\x00\x5a\x6a\x74\x63\xbb\x1b\x24\xb1\x23\xce\x27\xdb\x11\xfe\xe8\x2f\x0e\x7f\xb8\x08\xbf\xce\xfe\xdd\x39\x1c\x8e\xb3\xe3\xe2\xc2\x0e\x9f\xed\x88\x9d\x7f\xcc\x51\x59\xef\xee\x6a\x00\xd4\x63\x67\x7e\x71\x0b\xcd\x48\x40\x3d\xb2\xb2\xb2\x32\xb3\xb2\xaa\xb2\xb2\xb6\xee\xe3\x67\x0b\xbc\xe1\x2c\xf6\xf3\x30\x89\xbd\x49\x12\xcc\x22\x9a\xd5\xe1\x47\xd8\xda\x82\x6b\x3a\x98\x12\xff\xfd\xb3\x24\xc9\xb3\x3c\x25\xd3\x35\x55\xe3\x37\x5b\x5b\x70\x36\xa6\xc0\xcb\x83\x4f\xfc\x31\x35\x72\xaf\x48\x0a\x61\x9c\xe5\x24\x8a\x68\xf0\x8a\xc3\x84\x2e\xfc\x78\x7b\xa0\x0a\x95\x61\xa5\xf4\xcf\xb3\x30\xa5\x20\x91\x31\x4a\xc8\x24\xb8\xbc\x14\x38\x5d\x8a\xd2\x97\x97\x02\xe7\x17\x41\x1d\x7e\x74\x41\x67\xe0\x0f\xc7\xd4\x7f\x0f\xe1\x50\xe2\x1b\x66\x10\xc6\x25\xac\x7f\x13\x0e\xbd\x22\xd6\xe7\x12\xfa\x85\x09\x1e\x7e\xf3\x9b\xdf\xa4\x34\x9f\xa5\x71\xa9\x9b\xba\x42\x93\xde\x4c\x93\x34\xcf\x0e\xcc\x6a\xb7\x45\xcc\x52\x4a\x72\x0a\x04\x62\x7a\x2d\xb1\xf3\x48\x1c\xc0\x74\x96\x43\x98\x43\x18\xe7\x09\xe4\x63\x41\xe2\xba\x59\x9b\x11\x59\xd4\xe8\x2e\x40\x83\xd1\xdd\x42\x3c\xdc\x07\x99\xd9\xb0\x32\xa2\x7d\x18\x92\x28\xa3\x76\xaa\xe8\xc5\x3e\xfc\x68\xe1\xee\x1e\x4a\xd6\xa5\xa3\x1b\xea\xcf\x72\x8a\x58\x0b\xfc\x1c\x43\xfa\x9b\x49\x89\x5e\x3e\x89\x22\x31\x9a\x92\x76\x0d\x01\x41\xfe\xab\xd3\x1d\x9c\x50\xaf\x44\xe9\x38\x22\x23\x13\x1f\x92\x41\x94\x90\x80\x06\x65\x84\x9a\x11\x74\x21\x4f\x67\xb4\x12\xd8\x09\x1f\x78\x06\x4e\x60\x03\xc9\xd0\x80\x6e\x16\x17\x4c\x62\x23\x6f\x32\xc4\x6d\xb9\x15\x5b\x32\x58\x9d\xcc\x24\x66\x06\xc9\xe0\x1d\xf5\x73\xf0\x34\x09\x44\xce\xe5\xa5\xc9\x20\x0e\x0a\x35\x27\xd0\x95\x60\xaa\x44\xb1\xd4\x60\x49\x4e\x5c\x80\x7d\x07\x0f\x56\xb5\x10\x06\x34\xce\xc3\x7c\xae\xd8\x02\x86\x49\x0a\x6c\xf4\xc3\x78\x04\x63\x92\x4e\x92\x78\x0e\xe1\x84\xd3\xf6\x3a\xcc\xc7\x5c\x02\x92\x34\x65\xfd\xf6\x93\x38\xa7\x37\xf9\x12\x84\x42\xe8\x2a\xf8\xde\x15\x89\x66\x94\x29\x35\x31\x1e\xf8\xfb\x00\x2a\xd5\x51\x40\x87\x61\x4c\x61\x44\xf3\x9c\xa6\x36\x9a\x12\x3d\x31\x96\x4b\xb0\x08\x4c\x2c\x14\xef\xc6\x64\x42\x1b\x02\x7a\x41\xad\x84\x43\xef\x9e\x0b\x50\x62\xd7\xae\x17\xb5\xd1\x1b\xe4\x89\x26\x47\xfc\x6d\x9a\x4c\x69\x9a\xcf\x8b\x2d\xda\x55\x7e\xe3\x27\xf1\x30\x1c\xcd\x52\x32\x88\xa8\x53\xf4\x7f\x43\xe3\xd9\x84\x8a\x7c\x26\x13\x85\xec\x11\xcd\xf7\x45\x37\xac\x8c\xdb\x7a\xa5\xce\xab\x24\xf9\x88\xe6\x7d\x3a\x24\xb3\x28\x3f\x42\xa4\x0b\xcc\x91\x4c\xa6\x24\x0f\x07\x61\xc4\xf8\x06\x59\x22\x4e\xe2\x4d\x39\x18\x82\xa5\x97\x0c\x46\x6c\x0e\x06\xaf\x52\x20\x23\x53\xa9\x62\xd0\xa5\x9c\xc0\xd7\x5f\x4b\xf1\xbd\xbc\xa4\x19\x67\x6d\x78\x6a\xf5\x57\xa1\xaa\x3b\xe1\x19\xdc\xc6\xab\x9f\xd7\x02\x9e\x55\xbb\x38\x80\x5b\xd8\xaf\x84\xc0\x9b\xe0\x54\xc8\xca\x70\x2c\xb6\x85\xdf\xb8\xd9\xce\xe3\xbd\x68\x40\x8d\xd4\x14\xa7\x1d\x38\x34\x13\xcf\x3a\x58\x65\x84\x04\x8b\x4d\xd3\x24\x4f\xf2\xf9\x94\x36\xc7\x24\x7b\x73\x1d\x4b\x66\x43\xf5\xbd\x64\x04\x12\x73\x04\xb8\x1a\x6b\xc0\x54\x00\x30\x7a\xba\x4a\x53\xe5\xfa\x0b\x04\x5a\x23\x33\x9d\x0d\xa2\xd0\xbf\x9c\x92\x7c\x7c\x79\xb9\x04\xdd\x29\x74\x61\x7d\xbd\x0a\xe6\xcb\x84\x04\x40\xe3\x3c\x9d\xab\x69\x25\x0e\x64\x0f\xca\xea\x41\x64\xb8\x2c\x18\x57\xdb\xcc\x5e\x6a\xef\x9a\x63\x76\xab\x94\xfb\xa7\x7f\x8c\xae\x78\xe7\x6b\x5b\xf7\xa1\x05\x22\xad\x6c\x0d\x36\x60\xe1\xa4\x0b\x3f\xae\xad\xad\xcf\x32\x0a\x59\x9e\x86\x7e\xbe\x7e\xb0\xb6\xb6\x44\x19\xad\x6b\x41\x5a\x6f\xc0\x8f\x5c\x1b\x73\x05\x03\x4c\x75\x30\x29\x3c\x4c\x26\xd3\x24\x0b\x19\x1a\xcf\x69\x34\xa5\xe9\x65\x1b\xba\x4e\xe2\xb5\xf7\x44\x95\xa3\x2b\x1a\xe7\x47\x93\x90\x31\x74\x75\x69\x51\xf8\xf7\x21\xbd\x66\xe8\x54\x16\xec\x6c\x4b\x4c\xa2\x70\x3a\x48\x48\x1a\x54\x16\xdd\x6e\xc9\xa2\x61\xea\xcf\x22\x92\xbe\x0c\xb3\x6a\xc0\xdb\x1d\x89\x6f\xe6\x93\x29\x3d\xa5\x7f\x9e\xd1\xd8\xa7\x59\x35\x26\xa2\xfc\x8b\x78\x3a\xcb\x9f\x93\x38\x88\x16\xf5\xef\x81\x28\xfd\x96\xa4\xd9\xa2\x72\x8f\x44\xb9\x13\x1a\x07\x34\x5d\x50\xb2\x23\x7b\xf7\x32\x8c\xdf\x87\xc3\x70\x11\xd0\x87\xa2\xe8\x29\x8d\x28\xb2\xd0\x2b\x12\x93\xd1\x22\xe0\x72\x3c\x0e\xc7\x24\x7d\x45\x49\x36\x4b\x69\x35\xe5\x64\xe1\x67\x69\x72\x9d\xa1\x8e\x76\x15\x93\x48\xbc\x4a\x66\x59\x35\x30\xd9\xff\x20\xf1\x67\x13\x1a\xe7\xd0\x05\x8f\xa9\x9a\x64\x08\xd7\x61\x1c\x24\xd7\x70\xaf\x0b\xb5\x59\xcc\x99\x38\xa8\xd5\xe1\xa9\xc8\x68\xaa\x2a\xfb\x10\xcf\xa2\x88\xc3\xf9\xfe\xe4\xc5\xd9\xd1\xe5\xb3\xef\x8e\x8f\x8f\x4e\x2e\xdf\xf6\xbe\x3b\x3d\xba\x3c\x7b\x7e\x72\x74\xfa\xfc\xcd\xcb\x3e\x74\x61\xd7\x2a\xd5\x3b\x3b\x7c\x7e\x79\xfa\xe2\x5f\x1e\x41\x17\xb6\x5b\x2d\x41\x82\xef\x4e\x4e\xdf\x9c\x5c\x3e\x7b\xf9\xe2\xf5\xb7\x97\x2f\x5e\x9f\x1d\x9d\xfc\xbe\xf7\x12\xba\xb0\xc7\x0a\xa8\x09\xe2\x8c\xa6\x93\x30\x26\x91\x97\x4c\xd9\x6f\xb6\x54\x5b\x03\x00\x60\x10\x32\x1a\x0d\x99\xf5\x3a\x0e\xb3\x03\x4c\x0c\x87\xe0\xdd\xf3\xd8\x6f\x6e\x9c\xc5\x3e\xeb\x9f\x04\x51\x97\x75\xd9\x47\xa8\x27\xb6\x0c\x51\x4d\x90\x74\x84\x1d\xcd\xce\x5b\x17\x0d\xd0\xbf\xda\xd6\xaf\xce\x45\x9d\xb7\x76\x8b\x7f\x33\x24\x9a\x03\x35\x42\x62\xac\x0e\x74\x9e\xcf\xd0\x60\x56\xb6\x6c\x47\xa4\xf0\x22\xb6\x14\x37\xcd\x9f\x5c\xed\xb3\xde\xd4\x75\xf7\xc4\x98\x09\x6a\x40\xb7\xdb\x85\x5a\x3c\x9b\x0c\x68\x5a\x33\xbb\xa7\xf2\x8d\x34\xf6\xf1\x93\x28\xdb\x07\xab\xa3\x56\x3e\xc3\x7e\xdf\xee\xba\x95\x3f\xe6\xf2\xb8\x6f\xd1\x43\x95\xb8\x35\x09\xa3\x51\x90\xdf\x3e\x7c\xc0\x25\x31\xcb\x14\x2a\xf3\x3d\x9d\x67\x9e\xa2\x8b\x30\x18\xb2\x7a\x73\x98\xa4\x47\xc4\x1f\x2b\xd5\x0c\xde\x7b\x3a\x37\xfb\xc7\x48\x21\xc0\x9e\xbf\xa7\xf3\x0b\xe8\x76\x91\x39\xeb\x85\xfe\xda\x65\xf4\x10\x98\xe9\x07\x56\x0d\x06\x59\x16\xe3\xd5\xee\x75\x8d\x8a\x12\x47\xcc\x2a\xb6\xb6\xa0\x45\x47\x4b\xb7\x6b\xe5\x6f\x8c\x63\x64\xd5\x32\x8e\xb7\x06\x23\x88\xdc\xa6\x9f\x44\x49\x9a\x35\x23\x1a\x8f\xf2\x31\xf2\xc3\x43\x07\x23\x88\x62\x1a\xaa\xac\xe7\x27\xb1\x4f\x72\x3d\x06\x97\x22\x3d\x8b\x42\x9f\x7a\x0f\xeb\x16\xaf\xd3\x28\xa3\x4b\x1a\x6f\xef\x7d\xbe\xd6\xdb\x7b\x77\x6f\xbe\x75\x97\xe6\x79\x33\xad\x06\x6c\x76\xea\xcb\x28\x81\x85\x1a\x6e\x08\x9b\x9d\xbb\x23\xfa\x19\x47\xa9\xbd\x77\x17\xe4\x98\x42\xa9\x6a\xe8\x40\x97\x28\x89\xaf\x91\x37\x25\x29\x9f\x42\x64\xed\x41\x12\xcc\x99\x78\xcb\xdf\xa2\xc0\x87\x0f\xe0\xa9\xd9\xe3\xa9\x9a\x7b\x9a\x23\x9a\x1f\x45\x14\xd5\xc7\xb3\xf9\x19\x19\xbd\x26\x13\xea\xd5\x18\x90\x5a\xfd\xbc\x75\x21\x26\x9a\xfa\x81\x85\x6f\x01\xdb\xcc\x6c\x6f\x44\x93\x09\xcd\xd3\xf9\x79\xeb\xc2\xa8\xc4\x94\x99\x51\x09\x7f\xba\x2a\xb5\xcd\x4a\x32\x15\xba\x70\xae\x9a\x6e\x68\x80\x17\x65\x11\x14\x4a\xd1\x1c\x50\x4e\xc2\xd8\xab\x05\x24\x67\x4b\x92\x62\xd1\xd2\x80\xcc\x07\x24\xa3\xd0\x85\x96\x81\xca\x3c\x08\xb3\x69\x21\xed\xa6\x58\xa6\xf0\xdb\x9f\xa5\x59\x92\x9e\xe6\x24\x2f\x42\xe3\x39\xcf\xc3\x20\xa0\xb8\x32\x64\xeb\x5f\x8b\xc2\xf1\x15\x4d\xf3\xa3\x24\x32\x12\xff\x3c\xa3\x33\x06\xa7\x56\x33\x12\x33\x3f\x4d\xa2\xe8\x2c\x29\xa2\xc6\xd3\x9f\x25\x79\x9e\x4c\xc4\xb4\xcc\x69\xbe\x09\x6d\x0b\x8f\x2c\x4f\x26\xdf\xd2\x39\xce\x75\xc2\xc0\x83\xae\xb0\x2d\x0a\xe8\x3e\x8b\xc2\xf8\xfd\x8b\x38\xa7\xe9\x15\x89\xca\x85\xc8\x74\x1a\x85\x3e\x61\xb4\xfd\x96\xce\xa7\x24\x70\x74\xcc\x28\x73\x88\x30\x1d\x65\x92\x34\x1c\x85\xf1\xab\x24\xa0\x8e\xcc\x30\xce\x68\x9a\x57\x64\x5e\xa7\x64\x4a\xd2\x64\x16\x07\xa2\x00\xdf\x4b\x53\xf9\x71\x92\x4e\x5c\x98\xfb\x63\x66\xb0\xe6\xe5\x8c\x51\x75\x4e\x44\xaf\xd0\x90\x68\x95\xe1\x30\x3e\x3f\x67\xe5\x4d\x56\x0e\xa8\xff\x32\xf1\x49\x9e\xa4\x26\x03\xb5\x5b\x68\x29\x1a\x49\x57\x79\xa7\xe5\x48\xdc\x2e\x27\xf2\xde\x14\x53\x27\xec\x37\x8e\xa6\xa9\x24\x32\x1a\x07\xc7\x89\x3f\x33\xd3\x66\xf9\xb0\x58\x39\x1b\xa5\xc5\xa4\x59\x7a\x73\x95\x17\x13\x29\x57\x18\x56\xd7\xc3\x28\x48\x69\x6c\x4a\x3c\x1d\xa6\x34\x1b\x9f\xe6\x24\xcd\xcb\xc9\x47\x71\x60\x36\x4c\xae\x68\xf0\x87\x62\xc2\x1f\x8b\x09\x87\x49\x94\x59\xa0\x48\x40\x06\x91\x63\xa4\xaf\xd3\x30\x77\xe7\x04\x74\xd8\xcb\x73\xc6\x77\x5e\x0b\x1e\x3f\x46\xdd\xff\x01\xbc\xce\xee\x03\xf6\xeb\x91\xf8\xb1\xc7\x7e\xb4\xea\xb6\x08\x88\x7a\x26\x18\x5b\x0f\x93\x09\x0e\xfd\x85\x5d\x8d\x69\xdf\xb7\x2c\xb3\xc0\x2d\xd3\x94\x0e\xc3\x9b\xa2\x40\x4f\x93\x2c\x77\x24\x87\xc6\x02\x8c\x71\x23\xbd\x2e\xac\xc9\x9a\xe6\x4f\xd3\x50\x95\xc8\x65\xaa\xa2\x5c\x9e\x35\xf9\x17\xaf\xd4\x00\xd7\xb0\x75\x8b\xd2\x7c\xa5\xa6\x54\x89\xfc\xfd\xe1\x43\x51\x32\xb2\xc2\xfa\x4b\x56\x29\xa5\x97\xab\x46\x72\x95\x27\xeb\xe8\x04\x56\x98\x5e\x9b\xeb\xc0\xa6\xfa\xee\xd5\x0b\x23\x4f\x9f\xcd\x86\x43\x84\x62\x8d\x05\x66\xbd\x88\xdf\xa6\xc9\x28\xa5\x59\xe6\x50\x20\x37\xc9\x70\x78\x4a\xe3\xfc\x2c\x39\x24\xb9\x3f\xfe\x6e\xea\x54\x32\x61\x4e\x4f\xf3\x64\x3a\xa5\x2e\x0d\x97\xcd\xd2\x34\x19\x91\x9c\x5e\x8e\xc3\xd1\xb8\x38\x8c\x51\x18\xe3\x69\x14\xeb\x8b\xbd\x62\x6f\x9a\x3f\x3d\x43\x87\x0f\x88\xff\x5e\x74\x10\x8f\xb6\x4c\x6d\xce\x93\xaf\xc7\x61\x44\xc1\x0b\x37\x37\x4b\xb3\x1e\xb6\xd7\x9c\xce\xb2\x31\x07\x39\x88\x48\xfc\xfe\x65\x18\x53\xcf\xb6\x43\x70\x35\xe3\x1a\xa5\x12\xc4\x62\x81\x66\x46\x73\x4e\x6e\x4f\xb7\x58\x9e\x52\x73\x32\xb0\xf5\x51\x3e\x9b\x32\x22\x66\xd6\xe0\xcd\x32\x9a\x9e\x62\xaf\xc3\x78\xa4\x89\x7b\xbb\x16\xc6\x63\x9a\x86\xb9\x5e\x9f\x34\x16\x2d\xd6\xea\x07\x6b\xca\x3a\xd3\xfb\x78\x34\x25\x19\x15\x32\xac\xd7\x32\xb2\x83\x62\x0d\xea\x59\x4a\xe2\x6b\xf8\xa9\x75\xd3\x1e\x0e\x51\x2b\x58\x6a\xe0\x6b\xe0\x19\x07\x6b\xb7\x46\x63\x39\x89\x47\xc9\xa1\x34\xe7\xce\x11\x70\xed\xab\x0e\xdd\xde\xd9\xde\xab\x35\xc4\x4f\xdf\x6f\xb5\x5a\x2d\xf5\x73\x87\x3e\x22\x2d\x23\x77\x87\x98\xb9\xdb\x3b\x7b\xbb\x64\x47\xfd\x7c\xb0\xbb\xdb\x7a\x30\x50\x3f\x5b\x7b\x8f\x1e\x3e\x22\xea\x67\xb0\x1d\x3c\xf0\x87\xea\xe7\xee\xee\xee\x83\xdd\x6d\xf5\x93\x0e\x3b\x8f\x3a\x8f\xd4\xcf\x87\x84\x76\xb6\x35\xe4\xa1\x4f\x1f\xed\xe8\xba\x0f\x3a\x8f\x86\x06\x28\x12\x3c\x18\x92\x87\x06\x56\xb4\x43\x3b\x1a\x32\xfb\xf8\xb5\xb5\x0b\x83\x14\xca\xa8\xf5\xca\xb4\x66\x7c\xac\xf2\x5d\xc4\x13\xd6\x72\xbd\x01\x28\xc4\xad\x9b\x56\xab\x01\xad\x9b\xdd\x21\xfb\xfb\xe1\x03\xf6\x37\xc1\xef\x01\x7e\x1f\x0e\x2f\x1a\x10\x0a\x5b\x50\x6b\xd9\x61\x92\x82\x77\x00\x21\x3c\x86\x4e\x7b\xef\x00\xc2\x8d\x0d\xcb\xce\x9f\xe5\x5e\x7a\xee\x85\xb0\x05\xdb\x7b\x75\xf8\xe7\xb0\x07\x1f\xa0\x75\xd1\x00\x91\x58\x48\x0b\xd9\x2f\x7b\xbb\xa1\xa2\xad\x9d\x52\x53\xac\x17\x0f\x61\x03\x42\xb8\x0f\xed\xd6\x81\x8d\x42\x03\xd8\x7f\x16\x60\x45\x32\x51\x60\xd4\x80\x81\x09\x4f\xac\x29\x50\xae\x6b\x5f\xd5\x60\x03\xc6\xf4\xc6\x4b\xeb\xe2\xcb\x48\x7e\x19\xd4\xdd\x60\x59\x9e\x6f\x01\x84\x2e\xf8\xcd\x3c\x39\xcd\xd3\x30\x1e\xf1\x7d\x4d\x85\x3c\x97\x0c\x5f\xae\x98\x1e\x43\x07\x9e\x42\xad\xc5\x9a\xf5\x61\x1f\x7c\xb3\x09\x59\x58\xac\x60\x6e\xeb\x9e\x29\x8c\x97\xe5\x51\xb7\x96\x47\x66\xd9\xab\x65\x1c\x94\xcc\x72\xd4\xf0\x0d\x07\x2f\xf1\x94\x06\x1f\x21\x51\xa0\x3c\x50\xbb\x65\xa6\xc0\x92\xd0\x05\x9c\x30\x5f\xc4\xb9\xc7\x21\x9d\x87\x17\xcd\x6c\x36\xc8\x04\x79\xea\x0d\xb0\x48\x94\xcc\x72\x3e\x18\xe7\x2a\x89\x7d\x78\x65\x78\xf2\x04\x57\xe2\x5f\x23\xa7\x36\x2a\x4a\x3c\x74\x17\xe0\xf9\x3c\x47\x65\xd8\x5c\x28\x48\x9e\xcc\xf2\x12\xbd\xe5\x06\x89\xda\x7a\xe2\xbd\xd9\x2f\x11\x4a\xa8\x60\x3a\xa1\xfb\xa0\xce\x8a\x1a\xa2\x8a\x5c\x8b\xa8\x73\x3a\x2c\x4c\xd3\x09\x5b\x2a\xee\x43\xed\x86\x7d\x17\xa5\xe5\x8a\x6d\x1f\xce\x1f\xb6\x1a\xd0\xd9\x11\x7b\x56\xc6\x0a\xc2\x02\x23\x97\x48\xf3\x88\x41\x1a\x44\x89\xff\x5e\x40\xba\x0a\xb3\x19\x89\x9e\xd1\xc8\x6e\x77\x9a\x4c\xdf\xc4\xa5\x54\x3d\x55\xee\x43\xbb\xd5\x6a\xa9\x54\x4a\xd9\x62\x24\xb3\x0a\x07\x74\x30\x1b\xd9\x58\xe0\x26\x20\xb7\x9a\xed\xa2\x61\xc6\xcc\xc8\xd3\x3c\x08\x63\x2b\x63\x96\xd1\xe3\x28\xb9\x3e\x4c\xe2\x3c\x2d\x52\x86\x0c\xd8\xcc\xf6\x7d\x18\xe4\xe3\x7d\x78\x68\x4d\x10\xc6\x56\xa0\x99\x3c\x64\xa6\xb9\x5a\x64\x50\xe2\x8f\xbd\x8a\xdd\xb8\x06\x38\xb7\xe1\xec\x4d\xb2\xaa\x2d\xb2\x03\xab\x6c\xb3\x6a\x3f\xae\x50\xe7\xd6\x3d\x9d\x4a\x9c\x2b\xa7\x52\x3e\xef\xd3\x9b\x9c\xa4\x94\xf0\xe2\x5e\x61\xbe\xd4\xd0\x46\x34\x7f\x83\xe8\x58\x10\xdf\xd3\x79\x03\xe4\x01\xba\x32\x54\xee\xb1\x74\x08\xe3\x32\xc6\x75\xdb\x5c\x49\x93\x6b\xb4\xb4\x8e\xd2\x34\x49\xbd\xda\xeb\x44\x2c\xfd\xf9\x21\x2e\x03\xb2\xce\x94\x18\xfb\xb2\x01\xb5\xf5\x5a\xd9\x24\xe2\x1b\xbc\xe6\x1e\x8c\xde\x86\xb4\x36\xe8\x4b\x9b\xd9\xa5\x3a\x0e\x91\x65\x65\x24\x91\x9d\x54\xc9\x7e\x75\x54\xc9\xae\xc3\xdc\x1f\x97\xb6\x80\x7d\x92\x51\xa8\x69\x29\xac\xed\x5b\x5a\x8c\xe1\x87\x08\xc3\x63\x6d\xbc\xba\x36\x6c\xd1\xaf\x28\x63\xa6\x5f\xed\x94\xe6\x39\xb3\x02\xf3\x31\x35\xc4\x9b\xf7\x1b\x22\x66\xbf\xe7\x63\xc2\x5d\x61\xf8\x9e\x3b\x24\x43\xdc\x32\x87\xda\x41\x09\x2e\x83\xb9\xd1\x85\x75\x6f\x1d\x36\x8c\xcd\x90\x0d\x58\xaf\x43\x98\x41\x9c\xe4\x40\xa2\x28\xb9\xa6\x41\x73\xbd\x5c\xdb\x4f\xe2\x2c\x89\x68\xf3\x9a\xa4\xb1\x37\xc9\x46\xf5\x72\x11\x31\xa2\xc6\x6a\x40\x7e\x6e\x4b\x94\x70\xb3\x93\x35\xa0\xce\x2a\xdc\x98\x17\xb3\xf0\x93\xea\x0a\x92\x90\x64\x92\xcc\xd8\x5a\xe6\x2c\x0d\x27\xc6\x8a\x4a\xc3\xd8\x14\xce\x28\x95\x10\x62\x4a\x83\xec\x84\x2f\xd8\xf1\x90\x4a\xef\x84\x6d\xda\xe0\xf5\x6a\xb9\xf8\x31\x9a\xcd\xd3\x70\x82\xdb\x01\x9e\x59\x77\x51\x3d\xb9\x13\xf7\x8a\xe4\xe3\xe6\x84\xdc\x78\x46\xaa\x8d\x41\x63\x31\x02\x72\xfb\xae\x00\xc8\xd1\x95\x6a\x40\x6c\x20\x4c\x8a\x54\xd1\x1e\x0a\x5b\x1d\x5e\xab\x61\x6f\xc0\x55\xc0\xbf\x2d\xa5\x96\x53\x0c\x6a\x4e\xc8\xcd\x4b\xb1\x87\x5d\x35\x8e\x7c\xf3\x48\x1c\x37\x37\xb3\x79\xec\xf3\xd5\x55\x2f\xa5\xc4\xab\x2f\xe2\xd3\x41\x4a\xc9\xfb\xe2\x2a\x4e\xce\x14\x46\x6b\x65\x5e\xb6\xb2\x17\xaa\x0b\xc3\x26\x28\xe8\x0b\xb9\x46\x3c\xd4\x25\x98\xdd\xc5\x39\xfe\xa0\x0a\xd1\x22\x64\xb4\x2a\x5c\x90\xc5\xf6\x55\xd3\x8f\x48\x96\xb1\xf5\x76\x33\x4f\x46\xa3\x88\x7a\xeb\x68\xca\x6c\xf2\xea\x9b\x19\xab\xbf\xc9\xb4\x7c\xca\x28\xbe\x2e\x94\x2e\x3f\xe7\x53\xc9\xb5\x02\x42\x77\x6f\x61\x40\x52\x1b\xf6\x80\xa4\x45\xa8\xce\x6e\x9a\x96\x46\x05\x05\x0b\xab\x6c\xe7\xf0\xba\xe7\x9e\x94\x66\x4c\x54\xed\x21\x70\xce\xf7\x15\xa3\x65\xb2\x86\xb9\x83\x5c\x69\x03\x94\x40\x58\xad\xd1\x98\x59\x62\x81\xd5\x68\x25\x99\x6b\x16\x99\x07\xc8\x62\x0d\x90\x20\xcc\xfd\xb9\x88\x92\xd4\x6e\x55\xee\x70\x7b\xc6\x01\x5f\xa1\x71\xa8\x3a\xf4\x86\xc5\x3b\xe6\x19\xcd\x15\xf4\x32\x1d\xe5\x07\x4f\xaa\xef\xd2\xb5\xcd\x24\x36\xf9\xe5\xb6\xe1\x3e\xcf\xaf\x2f\x1e\xf0\x05\xa4\xa8\x1e\xf6\x32\x9a\x29\x9d\x24\x57\xcb\xd0\x54\x73\x9a\x83\x4e\x96\xa2\x60\x38\x29\x92\x55\xd6\x58\x89\xf8\x7a\xb3\xd1\xa6\xc0\x20\x14\x7b\xe3\x56\x2f\x19\xf6\x12\x93\x24\xc6\x9f\xca\x98\x6d\x40\x0d\xcd\xd9\x9a\x69\x8d\xd3\xab\xe2\x99\x38\xd6\x51\x3b\xef\xc5\x51\x56\xb9\x5e\xc9\x19\xa7\x79\xd8\x6a\x1e\x9d\x1e\x32\xf3\xeb\xfc\x85\x35\xb2\x6b\x56\xed\x32\xf1\x49\x10\x78\x02\x37\x93\x28\xd8\xd4\x38\xb9\xe6\xa3\xeb\x15\xb3\x9c\xa2\x8e\x67\x35\x73\x4e\x07\x5d\xbe\xb4\x64\x61\xf9\x05\x70\x74\x12\xe6\x9e\xa2\xd0\x8f\x98\xc8\xea\xec\xe3\x37\x75\x70\x7e\x5b\xa9\x08\x06\xd1\x6c\xe1\x26\x9d\xbd\xb2\x60\xa5\x8b\x0b\x0b\x36\xa6\xcf\x8a\x50\x96\x0c\x29\x83\xb3\x60\x44\x05\xa5\xf8\x8c\x8e\x3f\xe6\x0d\x9e\x38\x37\xe8\xf3\xd9\xc6\xfd\xcd\x9d\xc6\x5d\x0a\x9d\x7b\xe8\x17\x48\xf6\x8a\xa3\xac\x65\xa7\x30\xca\x82\x68\x1f\x31\xc8\x61\x1c\xe6\xdf\x44\xc9\xa0\x42\xbb\x30\xf5\x7a\x89\xde\x43\xa6\x7e\x65\xa9\x08\xdf\x4c\xb4\x46\x9d\xad\xf6\xcd\xe3\x8f\xb2\x98\x57\xe6\x32\x86\x31\x33\x19\x8f\x18\x3a\xae\x01\x35\x3f\x99\xce\x0b\x2c\x42\xe3\xbc\x28\xf7\x97\xc5\x83\xb8\x22\x0b\x70\x36\x76\x0d\xaf\xe1\xf0\xd7\x64\x8d\xc9\xf3\x1c\x6c\x87\xb3\x5b\x83\x93\xa5\xbc\x53\xaf\x09\x2e\x29\x35\x25\x59\x4e\x05\x88\xef\x53\x32\x9d\x52\x5b\x20\x24\xf6\x52\xae\xcc\xd6\xcd\xba\x66\xf3\xdc\xd3\xd5\x24\x8f\x21\x42\x58\xa9\xd6\x70\x35\x5c\x49\xd3\xe5\x75\x94\x4c\x09\xcf\xae\x66\x98\x1d\x87\x29\x1d\x26\x37\xd6\x76\x6e\x09\x32\x8e\x40\x90\x5c\xc7\x8b\x87\x4c\x36\x81\x19\xcd\xc1\x2c\xcf\xd9\x7a\xbb\x0b\x1d\x97\x7d\x6f\x92\x28\x0d\x47\xe3\xfc\x30\x0a\xfd\xf7\x05\x3a\x5d\x16\xe8\xb2\x70\xc0\xca\x4c\x70\x5b\xf6\x5f\x59\xd4\x4d\x71\x27\x61\x42\xe3\xd9\xf2\x8e\x7e\x19\xfc\x6f\xcb\x3b\x27\xf6\x78\xbd\x0c\xe3\xd9\x92\xd1\x22\xb3\x1b\x9f\xe1\xf2\x51\x83\xd5\x85\xf6\xb2\xd1\x62\x0a\xf2\x8c\xde\xe4\x6c\xed\xf3\x1d\x33\xde\xf1\x50\x5b\xcc\x88\x9f\x7b\xe0\x8a\x73\x11\xd3\x4a\x4b\xe7\x22\x4d\x8b\xf7\x74\xee\xe0\xdb\xa2\x9e\x51\x2e\x3c\xc4\xcf\xc3\x2b\x2a\xbc\x78\xe0\x1e\xd7\x8d\xab\x2b\x1d\x6c\xfc\x3d\x9d\xf7\x93\xeb\x98\x35\x23\x3a\xd1\xc0\xa3\x73\x43\x6e\x4b\x38\x4e\x53\x9a\x2d\x33\x82\x3e\x37\x92\x6f\x59\x9b\x77\xc2\x72\x36\x5d\x82\xe2\xbd\x6b\x92\xbd\x4a\xe2\x00\x0f\x93\xbf\xa5\xf3\x37\x71\xc4\xfd\x61\x58\x59\xe7\xf4\xcd\x37\x33\x0b\x93\xe6\xed\x02\x84\x0c\x1d\xb9\x7c\x6c\xef\x32\x1e\x36\xe0\x65\x03\x52\x41\x44\x50\x5b\x05\x7c\x0d\xaa\xce\xac\x97\xb6\xe9\x6b\x57\x79\x34\x21\x6b\xc2\x24\xf2\x8b\x2e\xf4\xcd\x62\x49\x14\x0b\xcf\x5d\xb8\xbe\x52\x83\xb3\x69\x40\x70\xe6\x58\xde\x22\x2f\xfa\xe9\x4d\xd2\x38\x58\xa9\x3d\x1a\x07\xab\x34\x86\xb9\x49\xec\xd5\x84\x59\x59\x0d\x9b\x77\xc0\xb8\x98\x20\x5d\xf6\x3e\xb2\x19\xcd\x20\x01\xc9\x49\x89\x45\xd0\xd5\x4c\xf8\x57\x70\x6f\x2d\x2c\xd7\xc4\x91\x6b\x00\x7e\xa7\x71\xb0\x82\x8d\x97\xd1\x34\x3f\x49\xae\x2d\xdd\x97\x26\xd7\xe6\xc6\xb5\xd8\x64\x4f\x85\xdb\x3b\xbf\x5a\x63\x6f\xa9\x23\x00\xa5\x49\x7c\xbc\xb7\x2a\x28\xe0\xd5\x82\xf0\xaa\x56\x76\x38\x48\xf9\xe1\x0c\x09\x63\x9a\x32\x23\x97\xc6\xc1\xe1\x38\x8c\x02\x6c\xdd\xe1\xb8\xc4\xcf\xef\x74\xa6\x30\x89\xd2\xe4\xba\xaa\x73\xc9\x94\xda\xfb\xf2\xdc\xd1\xb2\x01\x43\xd3\xec\xaf\xb6\x63\x8d\xcd\x03\x75\x50\x19\x84\x57\xb6\xd7\x0e\x77\xed\xd4\x2e\x9c\x46\xba\x36\x8e\xee\x19\xa9\x0b\xf7\xfa\x65\x2f\xe4\x7d\xe7\x0c\x88\x84\x2d\xd7\x14\x0e\x52\x0a\x03\x43\x6e\x21\xf3\x0a\xcd\xe4\x3a\xa6\x69\x5f\x8e\x89\x38\x6b\xf8\x7d\x48\xaf\x4d\x67\x2b\x7d\xc1\xa1\xb2\xaa\x51\x1c\x3d\x57\xbb\x76\xd5\x65\xfe\xa9\x07\xa5\xbd\x88\x12\x84\x6a\x7e\xa9\xd8\xc2\xc0\x55\xb4\x5c\xd0\xac\x52\x96\x9f\x80\xae\x5a\x70\x13\x0f\x5a\x37\x6b\xf2\x28\x02\x7f\xd6\x0f\x3e\x72\x2f\xad\xd4\x64\x46\xf3\x5e\x9e\xa7\xe1\x60\x96\x53\xaf\x96\x13\xa6\x21\xe8\x4d\xad\x61\xfb\xb3\xc9\x5d\xe1\x23\x45\xb4\x55\xe9\x55\xa8\xe9\xee\xa2\x2c\xe4\x24\x8a\x29\x8e\x2e\x90\xae\xd6\xf4\xc6\xf5\x47\xa0\xaa\x2b\xbb\xb1\xe5\xe7\x4b\x9b\x4c\xe1\x2f\xec\x6a\x25\xe2\xba\x81\xba\xcb\x15\x4e\x69\xa2\x3b\xe0\x5e\xae\x5c\x81\xbb\x2c\xb7\x1a\xa9\xcb\x60\x2d\x3f\x3f\x43\x6b\xde\x01\x57\x4b\xd9\x3a\xb1\x64\x2b\x81\xd5\x10\x34\x61\xb9\x14\x75\xd1\xab\x4f\xf9\x08\x36\x49\x9e\x13\x7f\x7c\x96\xf4\x93\x89\x32\x3b\x1b\x76\x65\x13\xe0\x18\x27\xc9\x8f\xe9\x6e\xa1\xa6\xbb\xc7\xbc\xd0\x8a\x9d\x2e\x40\x34\xeb\x48\x4b\x64\x01\x7e\xb2\x48\xcd\x55\x6f\x11\x76\x9b\x8b\x6b\xda\x9a\x84\xcc\xf2\x44\xdc\x83\xaf\x35\xa0\x96\x0c\x87\x2b\xd7\x22\xd3\x30\x27\x51\xf8\x17\x7a\x87\x8a\xd9\x94\x46\x91\x3f\xa6\xb8\x22\xac\xe1\xc1\xaa\xbb\x5a\x4e\x06\x2f\x98\x86\x2b\xb8\xd7\xaa\x7c\x12\x04\x68\xcd\x33\x12\xd0\x98\xa6\x9e\x63\xf3\xd6\x9c\x35\xf9\xf6\x7b\xe5\x1e\x26\x4e\xdb\xb7\x85\xdd\x96\x65\x2d\x96\xf6\x16\x2b\x1a\x74\x6c\xa7\x55\xb7\x57\x64\xc3\x12\x57\x49\x84\xec\xcb\x1b\xca\x4a\x64\x93\xf5\x1d\xb8\xbe\x50\xb3\xc8\x57\x46\x36\x6a\xff\xaa\xba\xdc\x36\x95\x3e\xb0\xe5\xab\xb6\xcd\x52\x5a\x71\x9b\xc9\x85\x4d\xd9\x65\x79\x29\x75\x0a\x10\x6c\x5d\x43\xd2\xd3\xf0\x2f\x14\x4f\x10\x97\xcf\x90\x78\x8c\xb7\x50\x43\x94\x1b\x77\xb4\x20\x00\x18\x1e\x6a\xea\xd4\xb8\xe4\xa7\x86\x39\xca\xbc\xf6\xca\x46\x9b\x30\xb5\x4a\x0d\xd3\xf2\x14\xeb\xeb\xfb\xaf\x72\x58\xcc\x1b\xb1\x4d\xe3\x57\x51\xaf\x2e\xd0\x5b\x06\x54\x5c\x7c\xe0\xe5\x88\xf0\x2f\xd4\x1f\x93\x78\x44\x83\xc5\xd2\x20\xd6\x3b\x26\x91\xd4\x19\xe6\x6d\x55\x2b\x13\x81\xa3\x6b\x06\x17\x1d\xd3\x57\xaf\x9b\xf2\xab\xc7\x0d\x70\xd7\x7c\xdf\xa8\xb2\x22\x1a\xa5\xc6\x2b\x9c\xe5\x59\x9b\xfa\x96\x73\x53\x7e\x2d\xf9\xe7\x3b\x9c\xe6\x59\xd5\xf2\x5d\xe6\x66\x31\xc9\x44\x1f\xfd\x02\x1a\xe5\x29\x79\x31\xba\x25\x8f\xee\x55\x97\x8a\x97\x56\x6f\xd5\x7d\x0f\x09\x6e\xd9\x92\x71\x31\x02\x31\xbd\xd6\x96\x4d\xc3\xda\x39\xbb\xc9\xcb\x58\x28\xdd\x2b\xb7\x30\x58\xc2\x41\x55\x21\xe5\x8c\x56\x91\xcf\x5b\x76\x32\x1c\xc3\x8d\x9b\x8b\x45\x0e\x96\x4b\x46\xf7\xa6\xa1\x3a\x3a\xaa\x1f\xd8\x00\x4b\x36\x66\x69\xf2\xf8\xac\xcd\x2d\xf1\x49\x11\x7a\x45\x1e\xcd\x98\x67\xe0\x62\x9d\x2e\x8e\x84\x2a\xfd\xdf\xd0\x85\x8b\x66\x19\x19\xe1\x4e\xd2\x1f\x93\x19\x04\x61\x80\x2e\x56\x53\x82\x5e\x5b\x14\xfe\x84\x40\xfe\xa4\x2e\x2e\x43\x18\xc3\x9f\x2a\x96\xd8\x5e\xfd\x4f\xcd\x1f\x62\xc3\xa7\x4b\x02\xdf\xe8\x42\xed\xcc\x05\x2c\x4e\xae\x41\x79\xbe\xe6\x09\xfc\x29\x4f\x67\xf4\x4f\x30\x98\xe5\x80\xdc\x18\xc6\x23\xee\xeb\x86\xa6\x50\xf3\x5d\x06\xdb\xcd\x16\x54\xb4\x10\xe6\x70\x1d\x46\x91\x04\x88\xf0\xd0\x18\xf9\x53\xd3\xa8\x61\x7b\x88\xf1\xea\x06\x7b\xa9\xc3\x52\x75\x17\x49\xef\x94\x0f\x8b\x87\x84\x38\x04\x16\x87\xde\xaa\xad\xa9\xc2\xce\x7f\x69\xbf\xdc\xe1\xa0\xc0\xd9\xc2\x9c\xbd\x46\x34\xd7\x42\x5a\x47\xef\xe8\x88\x4c\x33\xbc\xce\xa2\x2a\x34\xc3\xec\x50\xa6\x37\x20\xcc\x4e\x98\xd6\x66\x5d\xe0\x5c\x60\xd4\xe9\x42\x6d\x90\x24\x11\x25\x71\x0d\x9e\xc2\x3d\x9d\xb3\x6f\x40\x63\xd5\xb0\x28\xc2\xa9\xd9\x07\xa6\xf7\x04\x78\xa7\x23\x44\x49\x56\x6f\xcb\x42\xc9\x96\xb8\xb8\x9d\x6f\xe9\x7e\x6e\x52\x31\x1e\xaa\x15\x76\xa8\xa2\x84\x04\xbd\x20\x28\xf8\x55\x12\x96\xd2\xc0\x60\x50\x78\xe9\xc6\xdc\xa3\x4a\x6d\x57\xbb\x05\x01\x55\x3a\x3b\x75\x6f\xbd\xb9\xb5\x0e\x1b\x80\x00\x61\x03\x6a\x5b\x35\xf9\xab\x7c\xb4\x63\x88\x96\x08\xfd\xc4\xc8\x24\xb1\x72\xb9\x96\x8a\xb6\xbc\xf3\x5a\x73\x0b\x81\x66\x1a\xbe\xdd\xda\x85\xd1\x9b\x05\x67\x4a\x92\x7b\x29\xdf\x25\x3a\x24\x31\x93\x56\x46\x24\x20\x32\xbe\x0c\x13\x98\x64\x96\x03\x61\x36\xdb\x24\x89\x7f\x77\x0a\x49\x0a\x27\x1c\x95\xdf\x9d\x02\x8d\xaf\xc2\x34\x89\xad\x3d\x24\x70\x3a\x46\x56\xf9\x9f\xb8\xe6\xfc\x6a\xc7\x13\x97\x01\x85\x0a\x9c\xcd\x7a\x68\xae\x29\x14\xd6\x9b\x7c\xcd\x73\x1d\x06\x74\x93\xd5\xfb\xf1\x1a\x7d\xb3\x95\x2f\xa8\x69\x44\x60\x16\xdc\x87\x0e\x6c\xc0\xfa\xf4\xe6\xe0\x76\x1d\x36\x2c\xa6\xf4\x24\x38\x7e\xff\x72\x45\x80\x12\x58\xbd\x0a\x1a\xea\xe1\x27\x10\x84\x57\x3f\x8e\x69\x38\x1a\xe7\x6e\x68\x3c\x4f\x83\xab\x74\xa1\x90\x12\x51\x79\xb8\x8e\xb7\x57\x6d\x85\x62\xed\x48\xe2\x59\x02\xea\x84\xed\x8e\x30\x4c\x25\x9c\x8c\xc6\xc1\x33\x3c\x7a\x2b\x9c\x2f\x30\xb8\xfc\x4c\xae\x01\xd3\xc4\xf0\x89\x92\x07\x75\x30\xa2\xb9\xae\xa9\xf3\xa7\x09\x1b\x6a\x11\x35\x85\x29\xa8\x13\x72\xfd\x6c\x9e\xd3\xc3\x24\x49\x83\xcc\xa3\x57\x1c\xb9\x82\x55\xc3\x43\x7a\x68\xea\xc8\x14\xbc\x24\x2e\xcb\x67\x05\xef\x8c\x7b\xd3\x24\xab\x5b\x63\x50\x3c\x74\x62\xdd\xe3\xe7\x3f\x46\x5f\x0c\x28\xd2\xa9\x91\x5e\x35\x93\x2b\x9a\xa6\x61\x40\xcf\x98\x7a\xfb\xf0\x01\xe8\x15\x6a\xba\xa2\x22\xe3\xee\x7a\xfa\x3c\xda\xf6\xd5\x43\x02\x28\x6a\xf3\x36\x0f\x4a\x25\x0a\x1e\x80\x05\xb0\xb3\xe9\x42\xa0\x72\x08\x57\x02\x78\x3d\xa6\x34\x72\x80\x2b\x54\xb8\x35\x14\x8a\xc5\x1a\xaf\x92\x2b\x5a\xc9\x18\xd0\x95\x68\x15\x58\xe4\x57\xc5\x02\x02\xd7\x0d\x9b\x72\x8b\x18\xa3\x40\x07\x1a\xfb\x49\x40\xd1\x04\x6e\x80\x3f\x2e\x1d\x39\xf2\x55\x8e\xb8\x81\xed\x3a\xe0\xf6\x79\x68\x8a\xce\xee\x6e\xbd\x34\x10\x42\xa7\xa2\x4d\x8d\xc7\x16\x45\x8f\x65\x01\xe0\x09\xb4\x3b\x0f\xca\xd5\x19\x68\x96\x63\xd7\xd1\xd0\xfc\xb1\xd3\xf5\xa8\x30\x69\x14\x11\x6d\xed\x38\x9a\x5a\x15\xd3\xc7\x88\xa9\xe3\x04\xbf\x02\x2b\x28\x39\x2c\x3b\xb0\xb3\x28\xe1\xc6\x4f\x91\x83\x65\x97\x45\xc4\xc0\xfb\xe6\xb0\x05\x1f\x38\xac\x27\xa0\x62\xa1\x54\x15\x7e\x28\x0b\x7f\x0d\xad\x9b\xed\xe3\x62\xf1\x62\xb4\x19\x87\x10\x95\xf9\xac\xc0\x42\xc8\x41\x3a\x30\x40\x91\x78\x82\x83\xbf\xee\xc2\xb6\xdd\xf6\x34\xc9\x9a\x37\xb0\x59\xd6\x09\x2c\x63\xee\xca\xc0\x50\x55\x24\x27\xd0\x2d\xc7\x0d\x33\x5d\xd6\x3a\x3b\xb5\xf2\xe0\x1a\x2e\x1a\xad\x32\xfd\x11\x2c\x33\xb3\xdb\x85\xaa\xca\x34\xb2\x5c\x3c\xaa\xeb\x6f\xaf\x50\xbf\xb3\xa0\xfe\xee\x0a\xf5\xb7\xab\xf8\xbb\x5c\xb5\xba\xa1\x56\xad\x2c\x76\x98\xf1\xd3\x39\x33\xdb\xf8\xe8\x6c\x40\xad\x21\x7f\xe1\x2d\x9c\x8b\x1f\xd2\x42\x3d\x1c\x7e\x74\x23\xc4\x65\xf9\xc1\x42\x75\x76\x5b\xe6\x1c\x1d\x8f\xe2\x0b\x72\xce\x72\x06\x50\x93\x42\xe7\xa3\xc6\x5f\x55\xdf\xf9\xa8\xe1\x57\xd5\xf7\x3e\x6a\xf4\x55\xf5\xed\xaa\xb1\x59\x28\x2f\xb5\x12\xc0\x0d\x01\xd2\x91\x51\x3b\x70\x15\xb7\x10\x84\xa7\xb0\x03\xfb\x2e\x2a\x57\x55\xc7\x81\xbb\x53\xe9\x9b\xd5\x51\x63\xc5\xa7\x6c\x19\xfd\xe1\x43\x05\x4e\x5f\x5f\x17\xaf\x39\xac\xc0\xb8\x3a\x20\x49\x91\x71\xef\xce\x9f\x58\x63\x63\xc3\x51\xba\x98\xb8\xea\x90\xaa\x21\xe4\x74\x31\x25\xfa\xc0\x92\xe8\x57\x1f\xd1\x75\x19\x9e\xe5\xd3\x3b\xbe\x62\x77\x1e\x3b\x07\xd6\x93\x5c\xf7\x35\x6c\xd7\x15\xeb\xa9\xb4\x9f\xb6\x61\x5f\xfc\xaa\xc3\x26\x6c\x3b\xe4\xee\xf3\x70\x58\x15\xf7\xba\xf1\xab\x4d\x6a\xb0\x8f\x74\x5f\x99\xf0\xc6\xc4\x77\x6e\xc4\x8b\xb3\x6c\x3b\xd1\xd1\x8a\x5c\xec\xd0\xa2\x4c\xd3\x77\x7c\xc5\x41\x79\xc5\xf8\x88\x5f\xd4\x6f\x0e\xd3\x64\xc2\x56\xcc\x87\x49\x40\x85\x2b\x37\xcf\xe1\x3b\xae\x15\xd7\xff\xad\x45\x58\xc5\xf2\x2d\x1b\x87\xc3\xbc\x01\x13\x8a\x06\x6c\x9e\x46\x18\x06\xfd\xcb\x2e\x82\x94\x3e\xa5\x57\xd2\xb5\xf3\x1e\xf7\x3d\x77\x1a\x6e\x4f\x61\x43\x15\x74\x16\xd8\x67\x80\xae\xc7\xa1\x3f\x5e\x08\x87\xc3\x52\x45\x37\xa1\x5d\x59\x6c\xbf\xe0\x09\x2f\x3f\x4a\x44\xb5\xcb\xeb\xab\xd3\x17\x47\x55\x37\x04\x55\x47\xcd\xd9\x0d\x9e\x42\x4b\x49\x0e\x26\xed\xc0\x53\x68\xab\xa4\x72\xab\xe5\xeb\x81\x1f\xb1\x48\xac\x9a\xc4\x16\x82\xeb\xbf\x79\x85\x9a\x88\x1f\x89\x2c\x19\xca\x80\xe6\x24\x8c\xe0\x31\xb4\x2a\x86\x71\x6f\xa7\x62\xf8\xf6\x76\x3f\xc7\xb2\xd5\x40\x05\xcb\xf4\x69\x94\x93\x3f\xc2\x93\x2f\x82\x8f\x11\x3e\x92\x49\x10\x6f\x16\xbf\x7e\x4b\xe7\x72\x86\x36\xb7\x9a\x51\xbd\xd0\xab\x26\xfb\xc6\x8b\x3c\xb4\x8b\x30\xe1\xe3\x45\xd8\x37\x5e\xa4\xbd\x57\x00\x93\xe0\xe6\x2d\xb6\xf8\x81\x03\xfd\x80\x15\x0f\x5c\x6b\x86\x4e\xc5\x9a\x81\x41\xf9\xba\x5b\xa8\x57\x58\x00\xea\xd5\xab\x11\x7f\xcc\x05\xa8\x6b\xe2\xa7\x81\xa8\xd1\xf0\xb6\x3b\x4c\x57\xb3\xa2\x8f\x1f\x43\xa7\x5e\x57\x53\x67\x69\xf3\xd0\x4c\x56\x7b\xe1\x34\x5a\xe0\xe2\xef\x5e\x6f\x9b\x57\x32\x16\x4e\x01\xf6\x06\x57\x41\x43\x97\x36\xa4\x57\xa0\x6c\x51\x4b\x76\xb5\x44\x16\x27\x66\x77\xcb\x06\x35\x8c\x40\xb6\x76\x19\x87\xc5\x60\x8e\x91\x05\x2b\x89\xc5\x32\x40\x9d\xe7\x72\x84\x26\xc9\x15\xad\x35\xd4\x36\x4e\x71\xe3\x04\xeb\xc8\xa8\x75\xa5\xf8\xae\x15\x30\x6d\x07\xec\xd9\xb4\x30\x3e\xab\x74\x7d\xb5\x4e\x29\x44\x86\xc3\xbb\xf6\x6e\x69\x55\xec\xc4\x6c\xea\xa8\xb2\x6c\x58\xc0\x38\xad\xb0\x87\x69\x51\xcd\x5b\xed\x90\x8c\x9c\xce\xb5\xdb\x67\xe5\x72\x45\x50\x39\xa0\x56\xe9\x0f\x1f\xa0\xb0\xc5\xe0\xcc\x36\xd6\x91\x1f\x25\x52\x9f\x9b\x06\x77\x15\x74\xd6\x43\x79\x41\x3e\x89\xbf\x67\x2d\x7c\x3c\x82\x79\x32\xf3\xc7\xd2\x11\xfe\xcb\x61\x79\xc6\x9a\xe1\x81\x14\x3e\x0d\x55\x21\x0f\x5f\x18\x53\xb9\x1f\xbc\x3a\xa2\xee\x33\x8d\x80\x66\x79\x9a\xcc\xab\xcf\x84\x8c\x78\x90\xae\xa8\x7d\x15\x59\x97\x78\xf9\x47\xc6\xe4\x51\xc9\x63\x15\x6c\xd1\x3e\x76\xbf\x2d\x40\x2d\x9d\xb0\xc8\x12\xea\x8e\xb3\xf4\x4b\xfe\xfa\x6b\xdb\x0b\x90\xbb\xe8\xbc\x4e\x02\x5a\x3a\xfe\x2d\x17\x11\x57\x3c\x2b\x3d\x79\xaa\xaf\xf1\xcb\xe8\x1d\x1a\x49\xe1\x93\x41\xe3\xc0\x3a\xe3\x34\xbd\x39\x4a\x18\x29\x37\x0f\xbc\x1b\x20\x22\x60\x98\x90\x16\xa3\x51\xbe\x51\xb0\x2a\x46\xca\xbf\xd3\x44\x09\x7d\xa4\x64\x38\x44\xac\x8c\x0e\x53\x5d\x06\xa1\xe4\x2b\x05\x65\x57\x51\xfe\x6d\x7e\x92\x5c\x7b\x61\xf9\x68\xb9\x2a\x3e\x81\xba\x41\xed\x64\x41\xed\x89\x6f\xc4\xfd\x2d\xd1\xd1\x8e\x09\xdc\x3e\x28\x52\x59\xdc\x2f\x66\x3f\xe6\xc2\x45\x63\xbe\x84\xb6\xdc\x3f\xc4\xc2\x29\xcc\xf8\x15\xca\xc0\x3c\xf1\xc3\xbb\x0c\x45\xda\x52\x2b\x12\xb6\x91\xaa\xc2\x8b\x54\x04\x95\xd4\xc1\x5c\xda\xc5\x6b\x44\x18\x9f\x65\x73\xd3\x9e\x69\x78\x0e\x06\x5c\xb9\x87\x7b\x81\xae\x11\xc2\x7c\xb3\xa6\xb9\x3f\xae\x61\xcb\xdd\x19\x4d\x72\x2b\x72\x64\x09\x63\x19\xfd\x45\x43\x30\x8d\x49\x7e\xbd\x44\xe7\x59\x21\x82\x54\xbc\x64\x56\x6a\xb3\x10\x49\x19\x36\x85\x07\x93\x11\x6d\x59\x63\x86\x70\xbb\x8e\xc0\x3b\x77\x08\xd3\xa9\x7c\x6c\x1a\xa0\xc7\x74\xd1\x59\xbe\x01\x2f\x9b\x62\x50\xbd\x34\xb9\x6e\x80\x74\xf7\xb9\x0b\x64\x1d\x14\x54\x05\x99\x2e\x8d\x9c\x1e\x59\xa4\xdc\x82\x91\x2d\xf2\xc4\x8a\xe3\xb7\xd2\x38\xda\xdc\x62\x7f\x2b\x13\xa4\x3c\xd2\xaa\x83\x0d\xe5\x08\x65\xb0\x1c\x77\x4c\x40\x0f\x95\x02\x3d\x4c\x6f\x93\x8a\x52\x9c\x29\xca\x6e\x29\xca\xa9\x4b\x77\xac\x3a\x30\x0a\x96\xed\xf3\xbe\x1b\xfe\x78\x61\x36\x6d\x40\x36\x9b\xe2\x81\x2a\xa7\xde\x91\x79\x61\x16\xef\x5f\xb2\x5a\x8f\xab\x06\x8d\xd3\xd3\x35\x68\x0b\x6e\x62\x96\xc6\xcb\xe1\xd9\xa4\xd6\x8a\xd8\xc2\x86\x39\x7c\x4f\xcc\xf1\x2b\x89\x42\x45\x08\xd8\xa2\x16\xe0\x60\xbb\xc0\xfe\x2d\x28\x35\xd1\xca\xa2\x46\x16\xeb\x03\xed\x96\xa3\xcb\x16\x28\x68\x41\x69\x15\x85\xe6\xde\x82\x31\x59\x89\x0d\x0a\xbd\x5d\xe0\xb3\xb7\x88\x61\xde\x92\x51\xc1\x83\x66\x4a\x46\xf4\x30\x99\x69\x6c\x0c\x46\x65\xec\xa5\x0b\xc0\x7d\xf0\xec\xb6\x96\x34\x76\x96\xf0\x20\xf4\x55\xe1\x81\x74\x1b\x9b\x2b\x73\xfc\x59\xa2\x02\xd8\x2f\x07\x6b\x48\xf5\xe6\x2a\x42\x55\xb6\xdd\x4c\xff\x56\x6d\xde\xf1\xe0\xc6\x5c\x39\x1b\x47\x6d\xc5\x40\x6e\x4d\x3b\x22\x24\x33\xf6\xb8\x66\x2b\xc7\x94\x96\x76\xa0\x09\x5e\x46\x75\xeb\x2e\x7c\xcc\xc7\x11\x8d\xb9\x6a\xb7\xb8\x7f\xb8\x5d\x9c\x96\x5d\xd1\xad\x5d\x1e\x89\xf7\x34\x76\x46\xb4\xec\x45\x58\x3b\x84\xa3\x1c\x6c\x5b\x37\x05\x8b\xc2\x27\x65\x34\x3f\x0b\x27\x34\x99\xe5\xcb\x42\x24\x85\x71\x4c\xd3\xef\x59\x3b\x96\x7b\xe0\x12\x6b\x49\xd7\xaa\x74\x8d\xe2\x5d\x64\x34\x92\x3a\xc2\xec\xb4\x98\x45\x5a\x8d\xd2\x8b\x4a\xa2\x65\x11\x8f\x5b\x43\xa9\xa0\x93\x71\xbc\x60\x94\xc5\x4d\x3c\xb3\x43\xac\x18\xb3\xee\xd0\xbf\x80\x43\x52\xf7\x45\xdf\x35\xc0\xcf\x1a\xe0\x8f\x1b\xe0\x27\x01\x6d\x40\xc4\x26\x7b\x7f\x7c\x89\x5e\x67\x0d\x6d\xf2\x59\x2c\xeb\x64\xc9\x32\xba\x38\x2f\x2c\x1a\x77\xe7\xc4\xb1\x94\x2f\x8b\xe1\xef\x2a\x79\xb3\x10\x4c\xf1\xd6\x69\x2a\xa3\x09\xaa\x54\xb9\xdb\x9c\x3e\x8a\x03\x47\x09\xe4\x40\x61\x87\x63\x1e\x0f\x92\xcf\xff\x29\x9e\xaa\x9b\x05\x32\x9a\xa3\xfd\xee\x61\xed\x62\xa1\x92\x1d\x30\x2f\x96\xb0\x8c\x7c\xb3\x1b\x8d\x22\xd6\x6e\x73\x6c\xb9\x04\x7e\x39\xe1\xd2\xb7\x48\xab\xad\xcf\x85\x71\xf6\xab\xc4\x12\x2b\x45\xf1\x0a\x0a\xd9\xe3\x2e\x13\x50\xfb\x21\xfd\xa1\xe4\xd9\xab\x01\xf2\xdb\x80\x87\xf2\x81\x93\x20\xb9\x8e\x9f\x3b\x96\xf4\xbe\xa3\x80\xa9\x0b\x0c\x57\xf6\x6a\x88\x1e\x46\x11\xed\x1f\xbd\x3d\x39\x3a\xec\x9d\x1d\xf5\xf1\x35\x46\x74\x1b\x1f\x50\xe0\x0b\xf7\x00\xb2\x24\x89\x9b\xf0\x36\xa2\x6c\x8a\x9a\x65\x14\x0a\xf0\xcc\x27\x58\x18\xc0\x38\xcb\x29\x09\xa4\x97\xf9\x02\x0f\x73\x24\xcd\x22\x60\xce\x3e\xae\x48\xb7\xc2\xc3\x30\x0e\xc2\x99\x25\x6c\x17\xdd\x0a\x18\xce\xf4\x05\x41\x01\x9f\xcf\xa7\x34\xcd\xe9\x4d\xfe\x32\x8c\xdf\xbb\x50\x29\xbc\xf9\xa3\xe7\x30\xe7\xde\x41\xe9\x56\xbc\xf0\x77\xe6\x1d\x07\x02\x63\xd9\x1e\xb0\xfa\xf2\x99\x35\x18\xd0\x61\x92\x52\x33\x7c\x32\x8d\xd9\xb0\xfb\xf8\xee\xb0\xe3\xde\xbc\xde\x6e\xa8\xe8\x84\x67\xbf\x40\xf4\x91\xb6\x9e\x01\xfb\xf7\x24\x0a\x03\xfe\xba\x8e\x70\xfb\xb6\x87\xcc\xe1\xd9\xfe\x79\x08\x75\xa5\x1a\x56\x0e\xe7\x9f\x8b\x5e\xe5\x3e\x79\x05\x9f\xf6\x8f\xa3\x5b\x4a\x47\x61\x96\xd3\x94\x8d\xc7\x2b\x36\xe7\x14\x98\x2a\xa5\x23\x7a\xd3\x90\xa3\xaf\x5e\x8d\x5a\x6d\x7f\x0a\x35\x07\x07\xfa\x22\x28\xbd\x66\xe2\x6a\xbb\xb2\xbd\x8a\xc9\x63\x41\x4c\x59\xf9\x64\xaf\x6c\x7f\xb1\xe2\x0d\xe8\x32\x4a\x28\x40\xab\xf5\xbd\x9c\xeb\x6e\xc3\x80\xeb\xb4\x21\x56\xe8\xe9\xe2\xfd\xba\x31\xc9\x4e\x8d\xfb\x2f\x8b\xc3\x09\x96\x2e\x50\x99\xb5\x17\x44\x2d\xff\x84\x16\x54\xc2\x19\xde\x55\x5b\x10\x95\x73\x71\x23\x6e\xe8\x76\xc5\xea\xc8\xeb\xbc\x62\x2f\x5a\x10\xe4\xb3\x02\xf3\x5e\x14\x55\x83\x15\xf1\x8b\x0a\xf1\xe6\x4a\x1c\xe4\x9e\x23\xa4\xcd\xe9\xcc\x45\x30\xcc\xf4\x44\xab\xc2\x71\x3f\xc6\xbd\x65\xe0\x0c\x72\x69\xde\x6f\x13\x7b\xb7\xa5\xd8\x3b\x22\x60\x93\x88\xb4\xe3\x2c\x53\x2f\x46\x8a\x72\x6c\x8b\x19\x4b\x52\xa7\xc5\x6c\xad\x78\xcb\xf7\x9d\x16\xf5\xcf\x69\xee\xe1\x8e\x2f\xcd\x66\x91\xb2\x8e\xe9\x15\x89\x66\x24\xa7\x8c\x9e\x96\x69\xae\x0f\x5f\x70\xdb\x12\x2b\xb1\x6e\x23\x95\x2b\x57\x97\x4e\xb3\x4f\x3f\x8c\x54\xb9\x23\xb4\x1a\xfc\xf6\x32\xf8\x25\x2a\x18\xb0\xf5\xb6\x40\x79\xc5\xac\x77\x0c\xca\x85\x4b\x3a\x94\x0f\xb7\x3c\xa1\xb2\xa2\x61\xe9\x46\xc3\xec\x6c\x1c\xa6\xc1\x4b\x7a\x45\xa3\x53\x5c\xbd\xe5\x78\x83\xa6\xc0\x13\x12\xa4\x63\xc5\x2d\x30\xe1\x0d\x95\x8f\x0c\x96\xb4\x7f\x4f\x53\x74\x85\xf6\x8c\xcd\x27\x1d\x8a\x4c\x31\x80\x9d\x5b\x6b\x80\x86\x5d\x2c\x55\x0e\x28\x8b\xc9\x62\x02\x33\x86\x59\xe4\x2e\x26\xa9\x5b\x8b\x54\xb2\x6c\x85\x5e\xb1\x98\xde\xb8\xe0\x86\xcd\x59\xaf\x74\xb0\xcf\x7b\x3a\xdf\x07\xbd\x0f\xae\x57\x49\x8a\x23\x8c\x6c\x4e\x42\x2d\x5b\x93\x84\x07\x8c\xcb\x0a\x2e\x3e\x8f\x1f\x43\x0b\xd0\x09\x8e\x44\x32\xa1\xcd\x13\xa4\xff\xce\xe3\xc7\xd0\xe1\x29\xd2\xe9\xe7\xf1\x63\xe9\x7e\x65\xf8\xd5\xbd\xa7\xf3\xc3\xc2\xe1\x20\x7a\x3a\x3d\x2c\x3f\xae\x60\x20\xe0\xda\x3c\x37\x45\xce\x2d\x70\xcf\x4e\x57\xf2\xb4\xb2\x3d\xce\x96\x83\xed\x1f\xbd\xb4\x01\xb8\xe2\x98\x3f\xfa\x02\xfd\x91\xce\x92\xff\xd2\xf1\x18\xc4\x67\xe8\xd7\xf3\xb3\xa2\x6b\x8e\x21\xc0\xa5\xbd\xae\xaa\x8e\xb7\xb7\xf7\xef\xd8\xee\xe1\xc9\xe7\x68\xb7\xf3\xe0\xae\xed\x1e\x9d\x1e\x7e\x8e\x86\xb7\x1f\x94\x87\x5a\xc9\xd1\xa7\x0d\x74\x1b\xdd\xab\x35\x34\xd8\x80\x76\x9d\xe5\xf4\x1d\x1c\x50\x9a\x86\x96\xc1\xde\xee\xd7\xaa\x7c\x39\x2d\x14\xc5\xf1\x9d\x76\x02\x25\x7e\x1d\x9e\x2e\x84\x3e\xa8\xc1\xfe\xb2\xe6\x77\x5d\x9d\xb8\x5d\xc0\xc1\xf6\x11\x46\xe9\xd5\xd5\x4f\x22\xf5\x9b\x22\x32\x2b\x5d\xc4\x5a\x7d\x24\x17\x83\x77\xb2\x95\x43\x83\x7c\x69\xb6\x3a\xfc\x2c\x6c\x75\xf8\xc5\xd8\x6a\xb8\x0a\x5b\xb9\x3a\xf1\x8b\xb1\x55\x11\x99\xcf\xcc\x56\x8b\xc1\x3b\xd9\xca\x31\xd1\x7e\x69\xb6\xea\x7d\x16\xb6\xea\xad\xc6\x56\xcb\xd8\xc3\x85\xcc\x2f\xc6\x1e\x45\x64\x3e\x33\x7b\x2c\x06\xef\x62\x8f\x9d\xd6\xdf\x9e\x3d\x9e\x7d\x16\xf6\x78\xf6\x79\xd8\xc3\x85\xcc\x2f\xc6\x1e\x45\x64\x3e\x33\x7b\x2c\x06\xef\x64\x8f\xdd\x32\x7b\xdc\x33\x17\x0a\x5f\x7f\x0d\xf7\xf4\xa2\xe0\xd3\x18\xa6\xf3\xd3\xdd\xf1\xdb\xfb\x62\xec\xbb\x5d\xc5\xbe\x8b\xb1\xfc\xe4\x41\xda\xbe\x3b\x15\xb6\x17\x52\xe1\x4b\x88\xf0\xf3\xaa\x9b\xc6\x15\x52\xf1\x09\x32\xe1\x6a\xea\x13\xba\x54\x04\xe7\xa4\xa7\x83\xeb\xbf\x2c\x3d\x8f\xff\x76\xf4\x74\x35\xf5\x09\x5d\x2a\x82\x73\xd2\x73\xfb\x63\x17\xc7\x96\xd3\xd8\xa6\x57\xb5\x85\x0e\x9f\x5f\x0c\x77\x3f\x42\x0c\x77\x3e\x4b\x37\x1d\x6e\x9b\x5f\xa8\x8f\x7b\x77\xef\x63\xbb\xdd\xf9\xdb\x1b\x0c\x6f\xbf\xa8\xc6\x7d\xb3\x18\xbc\x9b\x0a\x0e\x8e\xfe\xd2\x54\xf8\x17\x5f\x96\x0a\x8b\xc1\xbb\xa9\xe0\x60\xf8\x2f\x4d\x85\x93\x2f\x4b\x85\xc5\xe0\xdd\x54\x58\x38\x5b\x7c\x19\x2a\x9c\x7e\x59\x2a\x2c\x06\xef\xa6\xc2\x97\xb3\xc4\xda\xbb\xbf\x90\x29\xd6\xfe\x88\x49\xa0\xdd\xfe\x82\xdb\x83\x0f\x7e\x29\x42\x3c\xf8\x18\x42\x7c\xc1\x9d\x87\x87\xbf\x14\x21\x1e\x7e\x0c\x21\xbe\xe0\xce\xde\xa3\x5f\x8a\x10\x8f\x3e\x82\x10\x9d\x2f\xb7\xd9\xd0\x69\xfd\x42\x84\xe8\xb4\x3e\x86\x10\xed\x2f\x47\x88\xca\x39\xe3\x4b\x13\xa2\xfd\x31\x84\xf8\x72\xd6\x64\xe7\x97\x5a\xc0\x77\x3e\x62\x05\xdf\xee\x7c\x39\x83\xb2\xb3\xf3\x4b\x11\x62\xe7\x4e\x84\x10\xc1\x89\x9d\x6b\x28\x79\xe8\x2c\xb6\x9b\x8a\xdb\x4f\xe2\x90\x5a\xfc\x12\xe7\xd1\x2e\xaa\x09\x70\xe2\x50\x1a\x9e\x74\x61\x6f\x97\x55\x33\xd2\x1e\x77\xe1\x51\xc9\x1f\xdc\xd9\x79\x47\xf8\x1a\x13\xf8\x26\xec\xed\x38\x6e\xda\x97\xe3\x9d\xa8\xc5\xbe\x51\x19\x03\xfe\x38\x1f\x6f\x5c\x09\x0d\xd7\xeb\xef\xab\x35\xfc\xa4\x0b\xbb\xed\x32\x49\x76\x77\x3f\x0f\x49\x76\xdb\xb0\x01\x9d\x07\x9f\x44\x97\xdd\xbd\x8f\xc6\xa5\xfd\x89\x4d\x77\xda\x8f\x3e\xba\xed\x4f\x6d\xba\xf3\xf1\x5c\xd9\x79\xf8\x89\x4d\x3b\x1f\xa6\x5c\xad\xe9\x47\x4b\x9b\xae\xd8\x60\xbf\x57\x3e\x2f\x14\x7c\x69\x8b\x7b\x41\x37\xfc\xad\xa4\x7f\x81\xea\x5b\x22\x05\x1b\x4c\xb2\x3f\x65\x3c\xda\x8f\x56\xd3\x0c\x8b\xb4\xf3\x9f\x96\x9e\x7b\x54\x61\xf0\xa4\x0b\x3b\x0f\x1d\x1a\xc2\x19\xfa\xf4\x2e\x38\xd9\x9a\x62\x67\x39\xcf\x2e\x3a\x99\x29\xf1\x4d\x79\x9e\x30\x18\xe7\x4e\x7c\xc3\x86\x60\xaf\x52\x1f\x1a\xce\xa6\xc2\xb7\xf4\x2e\x9d\x30\xe6\x44\x71\xaf\x5b\x86\x4b\x67\x34\x5c\xe0\x3e\x3f\x42\xcf\x3d\xcb\xa3\x6c\x64\xf9\xbf\x8e\x22\x51\x60\x64\xf8\xb9\xe1\x7b\x26\x54\x39\x57\x8a\x9f\xd9\xf9\xe8\x62\x51\x53\x87\xaa\x96\xd1\x58\x03\x44\x6d\xfb\xfa\x84\x86\x08\x5d\x59\x42\xbb\x69\x5a\x98\x75\xbb\x50\xbe\xf5\xae\x31\xb4\x2a\x57\xb9\x4b\xcb\x77\x41\x17\xb8\xd6\xbd\xa7\xf3\x02\x02\x7f\x3b\xff\xdd\x62\x9c\x10\x69\xde\x08\x2d\x61\xc2\xe1\xe2\x62\x64\x3a\xfd\x50\x55\xc0\xb7\x2e\x8f\x0d\xe7\x84\x20\x18\x77\x31\x80\x7b\xf2\xa2\x9c\xd1\x64\xf9\x2a\xbc\x82\x89\x95\x4a\x10\x97\x93\x01\x35\x3b\x83\xf2\xe1\x03\x78\x9e\x96\xc9\x0f\x96\x73\xe1\x87\x0f\x96\x48\x32\x81\x5d\xe4\xa0\xba\x0a\xfd\xab\xa7\x28\xed\xdd\x69\x3b\x8e\xca\x87\x68\x1d\x6e\xa3\xa6\x73\xe9\xdd\xbd\x4a\xcb\xee\xa4\xe8\x78\x56\x25\x70\x78\xf1\xcf\x7d\xa1\xcc\xe9\x34\xad\x27\x4f\x0c\x58\x62\x12\x67\xf5\xab\x73\x12\x57\xfc\xc1\xe1\x1c\x94\x4b\x61\x86\xf1\xd6\x2e\xf0\xeb\x75\x8e\xf8\x03\xbc\xe4\x06\xbf\x01\x5a\x19\xf0\x9f\x56\x78\xf0\xeb\x2e\x5d\x85\xd9\x8c\x44\xcf\x68\x14\xd5\x0b\x43\x7e\x50\x4d\x11\x3e\x66\xf2\x69\xc9\x7c\x1e\xd1\xe6\x20\x49\x03\x9a\x1e\x26\x11\x06\x42\xa9\x5d\x8f\xc3\x5c\xbe\xe8\xb1\x94\x48\xfc\xad\xb3\x45\xe0\xf4\xd3\xc3\xed\x56\xf1\xae\xf5\x34\x99\xbe\x89\xed\x0e\x60\xba\x0a\xc9\xe6\xa6\x4d\x94\x8c\x96\x90\x26\xa0\x83\xd9\xc8\x4d\x15\xf3\x6a\x00\xbe\x83\xda\x14\x57\xf1\x98\xa4\x39\x33\x58\x7b\xd5\x14\x26\xe9\x88\xa9\xd8\x5e\x9a\x92\xb9\xc9\xab\x51\xe8\xd3\xa6\x4f\xa2\xc8\x93\x0f\xd9\x58\x2f\x44\x39\xda\x10\x01\x3f\x5d\xd9\x0d\x6c\xa6\xda\xad\x3a\x4d\x97\x06\xb1\xf9\xbc\x24\xc1\x16\xbf\x38\x51\xb0\x95\x8f\x27\x4b\x4a\xb3\xf0\x2f\xb6\x6b\xf9\x4d\x03\xe6\x26\x6d\xc2\xec\x35\x79\xed\xdd\xd4\x59\x4f\xf9\xf7\xb9\x43\x85\x16\xb5\xf6\x5c\x86\xa3\x18\xd1\xfc\x0d\xde\xeb\x92\x91\x1f\x06\xc4\x7f\x5f\xab\x3b\xee\xf5\xbb\xca\x31\x5c\x4c\xd0\x78\x33\x3c\x8c\x69\x03\x68\xd4\x80\x90\x5f\x07\x1f\x37\x80\x04\xc1\x59\xf2\x47\x3d\x56\x37\x3a\x0c\x8d\x9f\x44\x78\x95\x7f\xae\x93\xf0\x81\x84\xa5\x5d\xb8\x81\xc7\x66\x00\xee\x1b\x1d\xbc\x88\x77\xd0\xca\x9d\xeb\xdc\x77\x60\xb4\xac\x2b\xbc\x83\xc7\x70\x63\x79\xb6\x8f\xa1\x0b\xe7\x82\xf3\x86\xbd\x3c\x4f\x1b\x50\x83\x5a\x03\xda\x46\xe4\xdd\x10\x1c\xd1\x74\x74\xb6\xb8\x78\x1f\x6e\x6e\x16\xf5\xb2\xc8\x31\xea\x8e\x68\xee\x85\x75\x79\x7f\xba\x80\x8c\x35\x16\x56\xf9\x65\x4f\x11\x94\xe2\x15\x21\xc1\xbb\x70\x63\x4e\x71\x34\x9f\x4d\x4f\xf3\x64\x9a\x79\xaa\x48\xbd\x40\x2d\x7c\xf4\x0f\x93\xf8\x60\xea\x30\x23\x92\x7a\x96\xb9\x5d\x7a\xcc\xa5\x44\x94\x77\x1b\x1b\xc5\x4a\x50\x19\x0a\xea\x31\xcc\x55\xcc\x96\x62\x00\x95\x52\x4d\x7e\xc5\xe9\x89\x11\x2a\xc0\x86\xe5\x0a\xad\x34\xe7\x2f\x14\xb1\x8e\xe1\x8e\xda\x82\xf5\x80\x33\x70\x90\xfc\x70\x18\xc5\x60\xdd\x65\x14\x45\x48\x98\xca\xe5\x29\x54\x06\xa0\x32\x3f\xe5\x45\x5e\xc5\xb2\x6f\x41\x77\xaa\x43\x3d\xb9\xde\x94\x58\xb4\xde\xd1\x36\xb8\x7c\xc2\x5c\x8f\x5e\x25\x33\x97\x9e\x8c\x2c\xc3\xbe\xad\xb6\x4c\x25\x2f\x6d\x6e\xc2\x93\x55\x79\xe9\xc9\x5d\x78\xa9\x50\xd3\xcd\x38\x8b\xf9\x45\x10\x38\x99\x2e\x5f\x3f\x3a\x7a\x58\x02\x67\xc5\x1b\x73\x97\x60\x2c\xe3\x2a\xf1\x51\x83\xe7\xa0\x2b\x58\x02\xae\x2a\x94\x02\x85\x98\xb0\xef\xd1\xa8\xe2\xb5\x93\x24\xce\xc3\xb8\x78\x59\x83\x37\x51\x15\x6e\x90\x46\xab\xeb\x3b\xf4\xbe\xe9\x42\x71\x9d\x38\x87\x27\x5d\xbb\x67\x22\xb9\x0b\x73\xed\xac\xa3\xa7\x1b\x2e\xd8\x8e\xf2\x1b\x5d\x6b\x7a\x2b\x84\xc6\xb8\x61\xcd\xdc\x94\xaa\xb1\xd9\xea\xa6\xd8\x8c\x75\xed\x72\x5a\x78\x3d\xd8\x0c\xde\x65\xe3\xa8\x96\xd6\x8b\x9e\x1d\x5d\xe5\x95\x45\x1e\xc6\x16\xba\x46\x48\x71\x61\x23\x24\x13\x9a\xa7\x73\x35\x1f\xf2\xc7\x8c\x14\x9c\x8b\xd2\x62\x8a\xdb\x2d\x85\x77\x83\xf9\x12\x8f\xd5\xdd\x87\x1b\x8c\x04\x93\xed\xc3\x7c\x41\x78\x4d\x23\x70\x89\x65\x02\x59\xf6\xcf\x5c\xbd\x4a\x6b\xc4\x2d\x29\x58\xe3\x85\xc8\x2c\xf3\x83\xb2\x1d\x64\x84\x38\x71\xd6\xe5\x11\x5b\xe6\x55\xa8\x4e\xc8\x4d\x19\x4f\x6b\xf3\xa4\x80\x43\xab\x3c\x36\x46\x50\x18\xed\x31\x56\xb9\x71\x23\x26\x6c\x3b\xc8\xa2\x65\x18\xca\x10\xf3\xc5\x6b\xc0\xdc\x1e\xce\xc9\x20\x3b\x0f\x2f\x4a\x2a\x53\xc5\x9e\x49\xe9\x15\x6b\xc1\x19\x8e\x12\x2a\x02\xad\x30\xa0\x46\xd8\x52\x09\xd0\x8a\x47\x56\x7c\x4d\x18\xcd\x30\x08\x99\x1c\x15\x2d\xd2\x9c\x0c\x18\x0a\xdf\x87\x41\x3e\x76\xd8\xa4\xa2\x0b\x85\xab\xbd\x6e\x8a\xc9\xee\xd8\xb6\xb4\x49\xaf\x1b\xb5\xed\x62\xd9\x94\x5c\x5c\x39\x70\x31\xdb\x18\x04\xdc\xdc\xbc\xb9\x60\x56\xc6\x0d\xce\xe5\xaa\xa2\xb5\x21\x70\xa3\x02\xcc\xb1\xae\xaa\x32\x4f\x0d\x73\xcc\x8c\xf0\xbf\x0f\xcc\xb2\x6d\x89\xe0\xfb\x37\x55\x2c\x10\xd3\x9b\xfc\x0b\x74\x68\x63\x43\x76\xc8\x18\x9e\xbf\x69\xc7\x68\x4a\x32\x7a\x82\x8f\x0a\x56\xad\x7b\xe4\x32\xc3\x36\xbe\x99\x41\x6c\xcd\xcf\x73\xf3\x2e\x3d\x2b\xb3\x78\x51\xc1\xa0\x1a\x46\x3f\xe2\xc1\xcc\x7e\xaf\x5e\x30\xfc\x05\x07\xdf\xd8\x1c\x7c\x63\xc7\x78\x65\xed\x9d\xdf\xf0\x8d\xd2\x92\x92\x37\x43\x32\xcd\x17\x2c\x8a\x49\x46\x5f\xd2\xe1\xaf\x96\x10\xea\xa5\x1a\xc1\x47\x37\xf6\x3a\xe7\x33\x90\x00\x63\x46\x54\xee\x0b\x18\x9d\xb4\x43\x83\xcd\xcb\x91\xc0\xca\xdd\x34\x28\x96\xd1\x5c\xcd\x8c\x15\x34\xe4\x3f\xea\xe6\x7c\x69\x07\xab\xb5\xa6\xe3\x42\x24\x46\x13\x51\x3b\x4d\xff\xb6\x22\x08\xb7\x57\x7a\x6e\x7d\xb9\xe9\xbe\x5a\xcc\x46\xf8\xf8\x48\xa0\x9c\x47\x39\x0b\x3a\x66\x68\xcd\x40\x28\xd1\xac\xf1\xea\xc1\x56\xe8\x17\xc2\x3a\xa5\x66\x40\x58\x83\xf3\x49\x9e\xf3\xe8\x4d\x69\x51\xf7\x18\x2c\x6b\xa8\x1f\x73\x2d\x7f\x50\xe0\x74\x62\xae\xef\x1b\x52\xa8\xce\x2f\x1a\xe6\x04\xc6\xf7\x5b\x0a\x98\x48\x4e\x6f\xaa\x1c\xe8\x6a\x7c\x57\x98\xf9\x1c\x7a\x23\x2c\x0b\x8d\xd0\xb9\x2c\xbb\x52\x58\xc6\x45\xc2\x15\xa2\xbe\xd8\x94\xaa\x96\x6e\x83\x66\x55\x1b\x20\x15\xa1\x0c\x6d\x7b\x84\xd9\x7e\xe6\x80\xc5\x64\xa2\x54\x15\xcb\x7b\x4d\x26\xd4\x9a\x51\x3c\x2c\xb1\x01\xb5\x5a\xbd\x19\xc6\x01\xbd\x79\x33\x14\x40\x50\x9e\xab\x9a\x75\x45\x46\x37\x77\xd6\x4b\xa1\x31\x83\x30\x23\x83\x88\x9e\xe6\x41\x18\x2f\xdf\x69\x32\xa4\xb7\x3a\x6e\x8a\x65\xbc\xdb\x31\x53\x4a\x61\x2e\x18\x6e\x35\xf1\x20\xd2\xe2\x3e\x9d\x85\x79\x64\x8b\x43\xce\x52\x6c\xf1\x42\x98\x98\xce\x64\x16\xf3\x2b\x07\x88\x11\xb5\xda\x48\x9d\x9b\x71\xac\xe5\x32\xa9\xbc\xfe\x28\xaf\x82\xcc\x0d\x0a\xa3\xb8\xe7\x8e\x17\x68\x1b\x0e\xe5\xc5\x91\x84\x56\x1d\x42\xfe\x8a\xa6\x19\x7d\x51\xd9\x19\xc6\x6c\xef\x4a\x3d\x51\x1b\x8c\x3a\x5c\xb2\x5b\xa3\xe2\x42\x56\x3c\xe1\x9c\x79\x6a\x99\xaf\xf9\xa0\xa0\x42\x1b\x50\x8a\x38\xae\xe7\x95\xea\xea\x5a\x5d\x63\xc8\x91\xa5\x71\x1b\x8b\x51\x9e\x97\x95\xb4\x22\x3d\x57\x1b\xed\xf3\xe5\xe4\x2e\x1e\x10\x5b\x4c\x23\x85\x4a\x2c\xb4\x0b\xbb\x85\x56\x11\xb1\xf7\xa8\xb5\x9f\xd6\xc2\x15\xa1\xf9\x78\x51\x77\x7c\x3e\x5d\x57\x45\x50\x7a\x11\xe7\x34\xbd\x22\x7a\x6f\xa2\x9c\xc5\xeb\xa9\x6e\xe2\x5e\x3e\x5f\x9a\x9a\xa8\x5a\x9b\xfa\x77\x0b\x1b\x68\xd4\x73\xe1\x55\x89\xd2\xca\xb3\xb4\x7a\xce\x22\x9b\xc7\x3e\x8f\xe8\xdc\x4b\x29\xa9\x3e\x6e\x62\xeb\xa8\x45\x23\x88\x96\x3f\x17\x3d\xbd\x9a\xba\x3d\x58\x53\xc5\xc5\x1b\x1d\x0c\x98\x11\x10\xce\x27\xd3\x7c\x96\x52\xeb\xa4\x86\x1f\x98\x84\x19\xfe\xeb\xd1\xa8\x5e\xda\x14\x3e\xa7\xd1\x85\xcd\x92\xcd\x61\x92\x1e\x11\x7f\x6c\x9c\xd0\xc9\xa7\x24\xac\xca\xfc\x8c\x8e\x04\xfc\x29\xda\x97\x61\x96\xd3\x98\xa6\x9e\x1b\x2b\xf8\xf0\x41\x9c\xe7\x8b\xc6\x18\x75\x8c\x1e\x0d\x87\x2b\x74\x89\x46\x62\xdb\xe9\xae\x2d\x1a\x2d\x19\x91\x85\x86\x49\xea\xd3\xf2\xc1\x16\x2f\xc1\x5f\x33\xc1\xe3\x71\xab\x9c\x7b\x5e\xa2\x57\xb8\xa4\xa5\x71\xde\xe7\xae\x96\x52\xd5\xd2\xab\x66\x96\x27\xd3\xb7\x69\x32\x25\x23\x22\x23\xad\x41\xe9\x30\xdd\xc0\x30\x8c\xc7\x34\x0d\xf3\xcc\xc3\x9d\xbc\x06\xf0\x4d\x37\xd9\xbe\x2a\x36\xf4\xca\x0e\x1d\x49\x9c\xe5\xe9\xcc\xcf\xf1\xf0\x0e\xab\x5b\x06\x8f\xe6\x41\xe8\x0a\xb0\x3a\x89\x97\xc4\x4a\x56\xb9\x98\x5e\xc3\xb0\x80\x20\x37\x05\x92\xc1\xbb\x06\xe8\x78\x54\xd2\x58\x4e\x06\xef\xac\x93\x17\xf7\xa9\x0b\xa3\x77\x32\x78\x87\xb6\x55\xb7\x0b\xc5\xed\x48\x41\x9d\xd0\x61\x73\x6d\xb6\x6d\x6c\xca\xce\x0b\x34\x9d\xa0\xdb\x80\x81\x58\xae\xca\x7c\x2b\x22\x66\xd0\x74\xf2\x09\x1e\x70\x1f\x3e\x28\x74\x4b\xa0\x4e\xbf\x0f\xe3\x80\x29\x8a\x22\xc0\x6a\x78\x96\xcb\x0a\x27\x7c\x17\xb4\xa3\x84\x2b\x6c\x97\xd9\x21\x07\x95\xec\x0e\x7f\xfd\x35\xbf\x5c\x2e\xfd\xac\xb8\x13\x88\x72\x3b\x83\x9d\x07\x28\x25\xce\xad\xb4\xdc\x1f\xcb\xc3\x77\xfd\xc3\xd0\x46\x3a\xd1\x4b\xdb\x0d\x18\xb5\x1b\x30\x68\x9b\xb4\x1f\x13\x7c\x5f\xc6\x4b\xdb\x18\xeb\x6a\xaf\x0e\x1f\xc0\x1b\xe1\x8f\x87\xec\xfb\xc0\x38\x28\xd4\xc0\x9a\x97\x3e\xf1\xc7\xf4\x9c\xd5\xbe\x70\x6d\x9e\x99\x61\x2c\xcb\x35\x4a\xe7\xa0\x41\x38\x1c\x42\x17\x5e\xc4\xc3\x30\x0e\xf3\x39\x5b\x54\x40\x17\x36\xdb\x2a\x56\xb6\xdf\x80\xb4\xd3\x80\x51\xa7\x01\x83\x4e\x03\x58\xf9\x83\xe2\x42\x41\x11\xe8\xca\x67\x2d\xaa\x23\xc6\xe2\xb2\xc1\x87\x6e\xa9\xec\x79\x68\x9c\x54\xa6\x1d\x26\xa1\xe7\x2d\x23\x69\xc4\x93\xcc\xf3\xcc\x01\x4f\xea\x18\x49\xa2\x1b\x46\xaf\x83\x30\xcb\x99\xca\x32\xa8\x6f\xf6\xa4\xf0\x44\x1b\xaf\xef\x0a\xcc\x8d\xf4\x08\xed\x8d\xfc\xca\xc7\x0b\x15\xa8\xc7\x9c\xb2\x25\x60\x02\x4f\x4d\xc5\xaa\x66\x6e\xcb\xbc\x5b\xc5\x04\x5d\x88\x42\xc6\xa6\xa5\x7c\xb1\xc9\xe9\x20\x8a\x1d\xb2\xd5\x4d\x20\x7b\x55\xf6\x8a\xe4\xe3\xe6\x34\xb9\xf6\xb6\x5b\x70\x1f\x99\x76\x13\xd2\x4e\xbd\x61\xbe\x0f\xbd\xa1\x4b\xed\x3e\x62\xa5\x46\xac\xd4\xa8\xba\x54\xbb\xcd\x4a\x0d\x58\xa9\x01\x2f\x65\xcf\xe8\x94\xcd\xb7\xa8\x4f\xc3\x1c\xe7\xb0\x24\x36\x27\x26\xa6\x52\xc5\xac\x5c\xf4\x91\x00\x23\xcf\xd3\x95\x1d\x9b\x18\x2d\xce\xc2\x86\x7a\x2e\x72\x2d\xab\xce\x2d\x30\x3f\x89\x1b\xc0\xd5\x33\x3a\x0e\x24\x83\x77\x3a\x6c\xbe\x46\xfb\x9a\x64\xaf\x92\x98\xdf\x7d\xf8\x96\xce\xdf\xc4\x11\x37\xbe\x0c\xb7\x40\x81\x65\xd1\xcd\x76\xcf\xd4\xa0\xc5\xcc\x07\x8b\x32\x1f\x5a\xda\xff\x3d\x9d\x67\x8c\x3c\x26\xb5\xde\x0c\xde\x51\x1f\x9d\x62\xb3\x12\xb5\x8c\x3c\x4f\x77\x4a\xf8\x2e\xa2\xc3\x59\x66\xbc\xe6\x8b\xf4\x7b\x4f\xe7\x10\x22\x9d\x8b\xf3\x97\x00\x66\x45\x94\x7d\x73\x1d\xb3\xc9\x9e\xa6\xf9\x9c\x93\x12\x47\xf5\x3d\x9d\x97\x82\xd8\xb2\xb6\xf8\x6e\x91\x76\x5a\xab\x10\x08\x56\xd4\xd2\xcf\x48\xe5\xa3\x49\x98\xe7\x68\xfa\x9a\x3f\x2f\xdb\x56\xae\x61\x81\x4a\xc3\x82\xc9\x9f\xf8\x6a\xe4\x62\xf0\xd8\x24\x36\x53\x50\x82\x13\x26\xc0\x86\x7d\x2e\x02\xba\xf1\x2f\x07\x6b\x93\x24\x98\x45\xb4\x49\x6f\x98\x09\x9c\x19\x6a\xef\x60\x6d\x6d\x6b\xeb\x2b\xc8\x92\x59\xea\xd3\x57\x64\x3a\x0d\xe3\xd1\x77\x27\x2f\xbb\x37\x38\x5d\xbe\xcb\x9a\x13\x32\x5d\x5b\x5b\xdb\xba\x7f\xff\xfe\x16\xdc\xd6\x1b\x6b\x5b\xf7\xa1\x0d\xf7\xb7\x44\x8a\xb2\x3e\x3d\xde\x42\x03\x44\x13\x0d\xb8\xbc\xbc\xa6\x83\x29\xf1\xdf\x5f\xa6\xf4\xcf\xb3\x30\xa5\x97\x97\x8c\xb6\x6b\xeb\xb3\x8c\x42\x96\xa7\xa1\x9f\xaf\x1f\xac\xad\x89\xd1\xe1\xe1\x19\xe5\x98\x78\x0a\xca\xfa\xe5\x25\xcd\x5e\x21\xec\xf5\x06\xfc\x08\x57\x24\x9a\xd1\x7d\xb4\xb6\xd1\x3a\x3d\x58\x63\x5c\x51\x20\xb4\xc3\x6b\x4d\xa5\x98\x45\xcb\xb6\x99\x7e\x45\xce\xfa\xf9\xe1\x83\x3a\x9e\xe1\x23\x6e\x42\x31\x38\xab\x10\xda\x97\x9b\xbc\x91\xb0\x80\xab\x1a\x3b\x67\xc5\x2e\x0a\x4d\x8a\xc4\x0f\x1f\xac\x37\xab\xcb\x25\x38\x6b\xaa\x26\x04\x8e\x07\x0b\x91\x44\x86\x59\x05\x4b\x6d\x6d\x5b\x6d\x16\x45\x64\xf1\xd3\xdb\xc9\xe0\x9d\xb3\x6f\x07\x56\x29\x97\x49\x0a\x0b\x9d\x81\x0a\xa6\xa9\xc4\x9f\x91\x8c\x27\x37\x55\x92\x99\xef\x3a\x96\x67\x0d\x8b\xf7\x40\xc2\x46\x29\xae\x86\xab\x8b\xe0\x3a\x3e\x5f\x48\x75\xbe\x24\xea\x45\x91\x5c\x10\x65\xa5\x41\x28\x92\x7e\x39\xe5\x03\x1a\xd1\x9c\x2e\x24\xee\x2a\xb8\x25\xc5\x29\xb8\x9a\x25\xcc\xd5\x6d\x11\x9b\x8f\x73\x01\x94\x1f\xbe\x91\x30\x1c\x8a\xc6\xad\xd7\xd8\xc1\xdc\xcb\xe5\x48\x19\xfe\x81\xca\x1f\xb0\x3c\x32\x49\x6c\x70\x81\xaa\x7b\xe0\x30\xd3\xb3\x66\x12\x17\x9b\x5e\x4c\x35\x3a\x09\xf3\x85\x63\x68\xd0\xc3\x14\x62\x35\xdd\x5f\x8a\x43\x8b\x4b\x36\xe1\x2b\xb2\xa8\x69\xff\xd2\xf1\x00\x22\x03\x77\x7e\x19\xc2\x26\xb4\x99\xc6\x50\x95\xce\x2f\xc3\xd2\x98\xc3\xdf\x4e\x82\xef\x68\xc1\x00\x97\x39\x26\xa3\x4b\x47\x71\xf1\x18\x44\x2b\x09\x93\x39\xca\x95\xfa\xf5\xd6\x5a\xf0\xdb\x93\xf3\x2d\x9e\x0d\x89\x49\x69\xd1\xb4\x5e\x35\x9d\x5a\xe8\xbb\x67\xd5\xce\xaf\x68\x56\x65\x43\x79\xd8\x3a\x58\x33\x26\xd2\x43\xb5\x12\x39\x6c\x35\x5f\x7f\xf7\x12\xba\x50\xfb\xe1\xa6\xd5\x12\x8e\xde\x87\xad\xe6\xe9\x9b\xe7\x22\xb1\x6d\x24\x9e\xfd\x41\x24\x76\x74\xe2\x91\x4a\xdc\x36\x12\xdf\x9c\x89\xc4\x1d\x23\xf1\xf5\xbf\x10\x89\xbb\x3a\xb1\x77\xf8\xad\x48\xdc\xd3\x89\xcf\x8e\x24\x4a\x0f\x8c\xc4\x53\x91\xf6\x50\xa7\x3d\x97\xcd\x3c\xd2\x69\x2f\x8f\x45\x1a\xd1\x69\xbf\x97\xe5\x06\x3a\xed\x58\x96\xf3\x75\xda\xe1\x89\x48\x0b\x4c\x52\x88\x34\x6a\xa4\xbd\x10\x69\x43\x9d\xd6\x7f\x79\xc4\x13\xdb\x06\x1d\xfb\x87\x6d\x91\xd8\x36\x13\x3b\x22\xb1\x63\x26\x6e\x8b\xc4\x6d\x33\x71\x47\x24\x1a\x74\x7c\xdd\x13\x24\x6b\x1b\x74\x3c\xfd\xe3\x6b\x91\xb8\x67\x8e\xcd\x33\x91\x68\xd0\xf1\xb0\x27\x4b\x1a\x84\x3c\x7a\x25\xd2\x0c\x42\x9e\x7e\x27\x6b\x1b\x94\x3c\x3a\x3d\x14\x89\x26\x29\xc5\xd0\xb4\x0d\x52\x7e\x23\xd3\x0c\x52\x9e\xc8\x34\x83\x94\xdf\xc9\x34\x83\x94\xa7\x6f\x79\x5a\xc7\xa4\xa4\xe4\x89\x07\xac\xe0\x6d\xdd\x3b\x6c\x41\x57\xca\x52\xf3\xb0\x85\x57\x70\x8c\x9f\x6c\x7d\x5a\x47\xa3\xb2\x42\x8a\xed\xab\x7b\x15\x82\xbc\xfd\x2b\x12\x64\xd5\xb9\xe7\xbd\x93\xd3\xa3\xb3\x53\xb1\x04\x97\xc9\xfd\xa3\xe3\xde\x77\x2f\xcf\x2e\x45\xb6\x49\x1c\x51\xe1\xbc\xf6\xac\x76\x51\x86\x73\x5e\x6b\xd5\x2e\x54\x70\xf6\xda\x9f\x6a\xfb\x50\xfb\x61\xd6\xd9\xf5\xf7\x6a\x3c\x00\x7b\x8d\xc8\xa4\x47\x1d\x99\x34\xe0\x49\xad\x56\xeb\x91\x4c\xf2\x55\x92\x2f\x93\x02\x95\x14\xc8\x24\xaa\x92\x88\x4c\x1a\xca\xa4\x41\x4b\x26\x8d\x54\x52\x5b\x26\x8d\x05\x12\x3b\x9d\x1d\x99\x14\x2a\x58\x03\x99\xf4\x4e\xa2\xda\x7e\x28\x93\xde\xab\x24\x05\x3e\x92\x49\x1a\xd5\x89\x2a\xa5\xc0\xc7\x32\x69\x5b\x95\x4a\x44\xd2\xf6\x40\x61\x3f\x55\x49\x0a\x89\x3f\x2b\xf0\xaa\xc5\x54\x95\x52\xb0\x32\x95\xa4\x88\x93\x2b\x24\x54\xa9\x99\x4c\xd2\xdd\xbe\x52\x78\xa9\xa4\x6b\x55\x4a\x55\xbc\x51\x48\xa8\x41\x9b\x8b\xa4\xce\x9e\xaa\xf8\x17\x95\xb4\x2b\x93\x7e\x14\x54\xdd\xf6\x15\xf6\x1f\x54\x29\x95\x74\x2b\x69\x4f\xb6\x65\xd2\x4f\x6a\xd0\x1e\xd4\xd6\x6e\x5d\x8c\xd6\x33\x19\xed\x2b\x56\xfc\xaf\xff\x63\x45\xd1\x67\x58\x94\x3b\x62\x96\x73\x77\x5c\x80\x04\x1a\xbf\xc5\x9f\xff\xaf\xfc\x79\xce\x7e\x86\xef\xe4\xcf\x1f\x7e\xc0\xec\xff\x47\xfe\xbe\x60\x3f\x3f\x58\x7d\xff\xeb\xbf\xb1\xfa\x3d\xb4\xba\xfc\xd7\xff\x68\x75\xf7\xaf\xff\xbe\x02\xff\x43\x86\x21\x16\x2c\xe7\xed\x1a\xd8\x6b\x1c\x7f\xfe\xcf\x6a\xfa\xc1\x03\x81\xe7\xcf\xff\xb5\x99\x86\xb8\xfe\xfc\x9f\x9b\x49\xff\x80\x49\xff\xca\x4c\x42\x01\xfe\xf9\xdf\x9a\x49\xd8\xad\x9f\xff\xb5\x99\x84\x5d\xfb\xf9\x3f\x98\x49\xd8\xbf\x9f\xff\x27\x33\x09\xfb\xf8\xf3\x7f\xac\x49\xab\xaa\xdc\x97\x93\x65\x23\xf1\xf3\x7f\x67\x8d\xc4\x5f\xff\x9d\x3d\x12\x3f\xff\xa3\x35\x12\x7f\xfd\x47\x6b\x28\x54\x37\x04\xbe\xff\x97\x35\x16\x3f\xff\x1b\x7b\x2c\xfe\x4d\xc5\x58\xfc\x0b\x13\x47\x17\x52\x3f\xff\x0f\x0b\x91\xfa\xf9\x7f\x91\x3f\x39\xb9\xff\x37\xf9\x93\x93\xfa\xdf\x7f\x3c\xca\x3f\xff\xdf\x15\x28\x7f\x5b\x42\x59\x53\xc6\xe6\x96\x22\xa7\x08\x94\xff\x95\x8d\xd4\xbf\xb6\x91\xfa\x0f\x36\x52\x36\x4f\xff\xfc\xdf\x56\x20\xf5\xc7\xa5\x52\xf7\x8f\x77\x19\x6b\x4d\xa9\x3f\xd9\x94\xfa\xd1\x1e\x22\x8e\xf2\xff\xb1\x90\x8e\xff\x6b\x05\xca\x47\x0b\xc4\x70\xaf\x28\x86\xbf\x2d\x8b\x21\xa7\xf5\x7f\xe1\x90\xcc\xff\xe6\x63\x25\xf3\x5f\x97\x25\xf3\x7f\x2e\x4b\xe6\xff\xf9\xc9\x92\xf9\x2f\xef\x3a\x5a\xff\x7d\x61\xb4\xfe\x2b\x5b\x32\xff\x3f\x5b\x49\xfe\x3b\x7b\x78\xfe\x77\x7b\x78\xfe\xb1\x62\x3c\x9e\x2f\x18\x8f\x07\xee\xf1\xf8\x2f\xcb\xe3\xf1\x4f\x52\x53\x76\x4b\xe3\xa1\x39\xde\xa9\x94\xfe\xed\xc7\x29\xa5\x4b\x5b\x3e\x9c\x3a\xea\x4e\xea\x80\xeb\x28\xb7\x19\x2d\xa2\x27\x54\xd9\xcf\x3b\x9f\x64\x3f\x6f\xdd\xbf\xbf\x06\xf7\xe1\xc5\x64\x2a\x5c\x91\x20\x1f\xcb\x47\x3a\x61\x42\xf3\x71\x12\x34\x20\x1f\x13\xf9\x00\x22\xe5\x05\xe4\x8d\x0b\xc8\x13\x20\xf0\x3d\x1d\x9c\x26\xfe\x7b\x9a\x33\x4b\x9c\x92\x49\x93\x81\xfc\x2d\xc7\x01\x70\x6b\x7c\x8b\x04\x41\x12\x67\x5b\x1c\x88\xf8\x07\x4b\x45\xa1\x4f\xe3\x8c\xc2\xab\x17\x67\x6b\xac\x27\xe6\x22\x9a\x17\xe3\x0b\x69\xdc\xe1\x4b\xf5\xed\xf4\xad\xfb\x9c\x31\xee\xc3\x61\x32\x99\x24\xf1\xef\x4e\x81\xc6\x57\x61\x9a\xc4\xac\x1b\x22\x6f\x0b\xff\x2d\xed\xe6\x73\xb8\x9e\x83\x26\x5e\x8b\xbb\x48\xdd\x1a\xd1\x41\xe6\x53\x9a\x0c\x81\x2f\x29\xf0\x04\x5b\x22\x58\x2b\xe3\x72\xc2\x01\x35\xdf\x65\x10\x66\x40\xae\x48\x18\x91\x41\x44\x2d\x74\x38\x24\xef\xbc\xd6\x6c\x6e\x35\x9b\x5b\x48\x9f\xda\x45\x43\x60\x65\x36\x5f\x84\xfe\x36\x22\x61\x0c\xe2\x50\xbe\xb2\xbb\xa2\x77\xd7\x78\x5e\xdf\x94\x27\x17\x1c\x2e\x5b\xd5\x69\xfa\xfe\x41\x3b\x4f\xd6\xf4\x3a\xaa\x76\xb0\xb6\xc6\x77\xb2\x34\xc5\xd8\x2a\x68\x8d\xa1\x82\xb8\xdc\x87\x9e\xc9\x0c\xa3\xf0\x8a\xc6\x16\x4b\xe8\xd4\x0c\xf9\xa2\x89\xb5\x78\xd5\xdf\x4e\x49\x4a\x26\xf0\x23\x36\x7e\x8b\xd5\x60\x13\xce\x0a\x4c\x35\x90\x4c\x48\x83\x6a\x80\x0a\x96\x62\xc0\x5b\x91\x2f\x20\x8a\x1f\x8c\x49\x39\x47\x33\x38\xfe\x2c\x4d\x69\x9c\xab\xe6\x0a\xb0\x06\x49\x12\x51\x12\xdf\xc2\x20\x0c\xc2\x94\x3f\x01\x48\x22\xd8\x84\xef\xc7\x34\x1f\xd3\xd4\xe6\xff\x6c\x9c\xcc\xa2\x00\x30\xe8\x42\x40\x72\xc2\x61\x2d\xfd\x88\x2e\x09\xfc\x48\x06\xd7\x34\xaa\x46\x04\x5f\x3d\xa6\x41\x01\x87\x94\xc6\x01\x4d\xc3\x78\x04\xc9\x10\xc2\xd8\x4f\x26\xec\xfb\x6a\x48\x08\xb4\xc7\x64\x8a\xef\x93\xc6\x59\x4e\xe2\x3c\x9a\x43\x92\x02\x13\x75\x98\x90\x9b\x70\x32\x9b\x2c\x07\x34\x4c\xf9\xf2\x7e\xce\x90\x68\x1b\x38\x4d\x69\x0a\xed\xd6\x24\xe3\x9d\x62\x9c\x29\xd5\xb5\x18\x8a\xa2\x13\x6f\x43\x50\xa3\x61\x13\xbe\xa1\xba\x2f\xa5\xcd\x1e\x97\xae\x92\xd0\x42\x7a\x17\x6a\xea\x19\xb3\x5a\x1d\x9e\xf2\x55\xfe\xbe\x5d\x4c\x78\xbc\xd1\x74\xd2\x14\x63\xd1\x15\x68\x20\xbf\x8b\xac\xcb\x61\x34\xcb\xc6\xfc\xf1\x69\xa7\x87\x9b\x28\xc7\x5f\x6a\xe6\x55\x78\x2f\x39\x57\xf2\x9a\x6a\xaf\xb6\xaa\x80\x75\x2b\x0e\x00\xef\x25\xc8\xc0\x12\x55\x75\x58\xfe\x72\xc8\x58\xca\x02\x7f\x6b\xf5\x6f\x3a\xcb\xc6\x67\x89\xa3\x83\xa6\x87\xb3\xd0\xc1\x55\xbd\x33\x8f\xeb\xaa\x3a\xa8\xc2\x79\xf0\x72\xb7\x25\x5f\xd1\x6a\xca\x98\xf5\xac\x90\x1b\xa5\x11\x32\x62\x68\x18\xbb\xe2\x46\x6f\x47\x34\x7f\xa5\x1e\xb8\x76\x45\xfd\xe1\x3d\x2d\xf2\x9d\x9b\x5c\x1e\xbd\x6a\x5a\xcf\xa6\xbb\x3b\xc5\x59\xa3\x54\xd6\x81\x1d\x53\x25\x7d\xfe\x40\x7e\xd5\x38\x08\x1d\x88\xef\xcd\x1b\xf0\x24\x1c\x91\x5d\x72\x62\xac\x89\x17\xb4\x6b\x8d\x12\x21\xea\xa2\x2a\xf6\xdb\x14\x90\x02\x87\x27\xb1\xf2\x2c\xb7\xb1\x55\x8e\x14\x8b\x31\xf0\xa3\x24\x53\xed\x07\x94\x8d\xb3\x78\x62\xd4\xd0\x00\xd2\x4b\xb9\x12\x0a\x46\xbc\x58\x0d\x4a\x61\xde\xea\xd3\xea\x79\x6b\x98\x26\x93\xd2\x44\xf3\x31\x13\x17\xc7\x88\x06\x6e\x88\x77\x9b\xba\x10\x04\x0f\xb8\x94\x27\x02\xb2\x39\x8b\x2d\xd7\xd0\xf6\x34\x67\x2a\x62\x01\xad\x4a\x11\x2b\xf7\x5d\x1c\xf8\xe1\xb0\x7a\xe4\x8d\xd1\x32\xf4\xb1\x4c\x28\x2b\x62\x43\xdd\xee\xdb\xea\x96\xf1\x9f\xdd\xba\x62\x03\x97\x93\xec\x62\x8e\x36\x18\x52\x9e\xfc\xea\x96\x1d\xcc\x61\x19\x35\x45\x2b\xc1\x65\x85\x38\x98\xe3\xef\x96\xc8\x3f\x01\x4b\x04\x25\xb8\xf4\xfa\xbf\x25\x08\x2b\xda\x22\xd2\x11\xcc\x32\x6d\xc4\xf9\xec\x32\x10\xcb\xd4\x53\x89\x03\x17\xa8\x93\x5f\x5c\xa7\x14\x49\xea\xd0\x2d\xb6\x5c\x17\x28\xc7\xcb\x5b\x94\x33\x08\x64\x17\x3e\x58\xbb\x65\x4a\xc7\x5e\x06\xef\x7e\x8e\x65\xf0\x71\x68\x90\xdb\x4f\xa2\xd9\x24\xce\x80\xc4\x01\x06\x12\x90\xa2\x12\x84\x13\x1a\x67\x61\x12\x67\xc8\xee\x79\x06\xfd\x37\xaf\xd4\xd5\x81\x35\x40\x48\x5f\x7d\x05\xbd\xe9\x34\x4d\xc4\x32\x77\x13\x4e\x30\x14\xc1\x59\x3a\x8b\x7d\x82\x3e\x28\x0c\xd0\x55\x98\xf1\x8b\x02\xb6\x28\x73\x2f\x76\x09\x12\xc6\x14\x6f\x2a\x0f\xe6\x76\xa9\x34\xb9\x16\x59\xb2\xd1\x4d\x38\xe4\x38\x7f\x64\x43\xd7\x61\x90\x8f\x4b\xed\xf8\x63\x92\x12\x3f\xa7\x29\x6b\x82\x17\xf1\xd0\x0f\x01\x82\x30\x9b\x46\x64\xbe\x0f\x61\x8c\x97\x19\x49\x5e\xc6\x90\x51\x2f\x97\xc8\x30\x62\x71\x08\xd7\x61\x5e\xe0\xb9\xfb\x10\xcf\x26\x03\x9a\x32\x24\x05\xe9\xeb\xd5\x1b\x09\xc3\x30\x67\xff\x2f\xdd\x42\x18\x86\xf9\xe7\xdf\x3f\x18\x86\xf9\xaf\x6d\xf3\x80\xf5\xf3\x93\x77\x0e\x58\xbf\xee\xb6\x6d\xe0\xdc\x25\x90\x32\x3d\x4d\x93\x69\x92\xd1\x6f\x74\x68\x0f\xf7\xb5\x4d\xee\x75\xc3\xf4\x87\x14\x22\xce\x97\x47\xc5\x0b\x3a\x42\x0d\x18\xab\x18\xfc\x9b\x21\x61\xd5\x38\xcd\xe7\x78\xa3\x51\xf4\x65\x44\xf3\xc3\x64\x32\x9d\xe5\x34\xc0\x1c\x6f\x41\x5b\x7a\xbb\xd1\x4a\x7f\x4e\x45\xb0\x80\x29\xc1\x4b\x81\xb9\x57\x6e\x90\xb5\x23\x8f\x9c\x7f\x4f\xa2\x19\xf5\x6a\x5c\x3c\x6b\xf5\x2a\xb0\x18\x75\x02\xba\xdc\xa5\x7a\x42\x6e\xbc\x56\xe3\x8e\x2d\x5c\xcb\xb8\x15\x9b\xd0\x7e\x60\x34\x43\xef\x4e\x89\x72\xed\xb7\x24\x08\xc2\x78\xf4\x7b\x5c\x80\x29\xbc\xe8\x62\x8c\xa6\xbc\xd2\x66\x9e\x4c\x19\x5e\x1b\x77\xae\x38\xc0\x2b\x85\x16\xd1\x6c\x7c\x9e\x27\x1f\x83\x4f\x2a\x86\xe2\x23\x30\x8a\xe8\xd0\x1e\x44\x25\x9b\x26\x5f\x94\xb8\x65\xb3\x4c\x47\x07\x08\xc9\x03\x0e\xc6\x28\x02\x78\x9e\x18\x00\xfc\x24\xce\x49\xc8\x3d\xf5\x70\x18\xd3\xe4\xfa\x50\xa6\x19\xcf\xba\xcf\xd0\x25\xe2\x24\xb9\x76\x95\x6b\x0e\xc3\x34\x93\x8d\x62\xdc\x23\xbb\x01\x1a\xeb\x15\xb8\x86\xd4\x0c\xe3\x98\xa6\xcf\xcf\x5e\xbd\x34\x4a\xcb\x59\x82\x77\x5e\x67\x30\x9d\xe3\x28\x86\x3d\x34\x1b\x8b\x8c\x52\x32\x1a\x90\x5c\x5a\xe8\x96\x79\xf4\x4c\x31\xf1\x40\x17\x6a\x7c\xea\x91\x91\x38\x1d\x28\xb2\x42\xdf\xd7\x0e\x60\x6b\x4b\x68\x7a\x8d\x03\x3a\xe2\xf1\x48\x46\xcc\x50\x44\x59\x6a\x00\x89\xf2\x71\x32\x1b\x8d\x21\x89\x61\x92\xc4\x49\x36\x25\x3e\x57\xc2\x36\xf2\x36\x49\x46\x34\x7f\x96\xcc\x62\x36\x4c\x87\x51\x48\xe3\xfc\x84\xfa\xb9\x57\x6f\x22\xd0\x12\x76\xa5\x6e\x70\x04\x4f\xe8\x15\x4d\x73\xc0\x5c\x18\xd0\x61\x92\x52\xf0\x49\xe4\xcf\x22\x92\x33\x0c\xb9\x3e\x69\x40\x16\xc6\x3e\x4e\xed\x73\xbc\x8b\x42\xd3\xe6\x9a\x63\x0c\x56\x43\x90\xc3\x5c\x48\x3f\x8b\x13\xc4\x98\x88\x9b\xb8\x4a\x94\x8a\x22\xb1\x55\xc4\x46\x2c\xc8\xc4\xf5\xdc\x72\x3d\x4e\xd3\xad\x02\x91\xe5\xea\xd2\x88\x0f\xf5\x23\x0f\xef\xc4\x03\x44\xf1\x08\x4f\xec\x6f\xdb\x21\x51\x73\x90\xb4\x21\xe5\xac\x34\x2c\xba\xa1\x16\x02\x08\x18\x2d\x55\x4c\x64\xbc\x8a\xb1\x62\x95\x55\x0a\x9b\x25\x3c\x42\x95\xca\x15\x21\xad\xd4\x4f\x0c\x41\xa9\xe7\x31\x8e\x65\xd1\x8e\x5e\x34\x87\x56\x98\xd2\x25\x6c\xc7\x61\x66\xd8\xd2\xc5\x16\x8a\xf4\xa8\x80\xca\x6c\x83\x02\xa4\x15\xac\xf2\xbd\xcf\x62\x95\xcf\xa2\x28\xf3\x53\x4a\x63\x40\xeb\x0f\xc5\x56\xde\xb8\xa8\xb6\x10\x55\x2d\xe3\xab\xd3\x5e\x34\xcd\x45\x55\xf2\x0b\x58\x8d\x0a\xf6\xaf\xce\x78\xd4\xbd\xfe\x74\x1b\x52\xf7\xf2\x33\x98\x92\x6a\x65\x7c\x96\x8c\x46\x11\x75\x6c\xdb\xd5\x32\xa3\x49\x46\x74\xda\xbc\xcb\x76\x5d\xce\xe1\x32\x10\x60\xc0\xa8\xd8\xff\x30\x5a\xda\x94\x28\x19\x69\xa8\x4e\x90\x5b\x12\xb6\x8c\x19\x82\xc7\xef\x6a\x97\x76\xde\x78\xab\x8c\xaf\x4f\x79\xcd\xf2\x1e\x5c\x91\x13\x39\x81\x86\xb1\xa1\x76\x04\x7f\x18\x08\x14\xf7\xda\xa4\x3a\x1a\xc6\xea\x76\xb0\x34\x7b\xfd\x88\x64\xd9\xcb\x30\xc3\x30\xc1\xcc\x18\xc8\xbc\x9a\x86\xc4\xec\xa4\xa7\x50\xe3\x7b\x6e\x35\xd8\x87\x1a\x09\xa4\x97\xa9\xc1\xa1\xf7\xca\x58\x8a\xc6\x64\x55\xab\x8a\x5d\xc2\x80\x68\xec\x7f\x97\xf0\x3b\x1f\xc6\x17\x36\x6a\xd5\xba\x4c\xd3\x35\x2b\xd3\xb5\x8c\x6b\xd5\x70\x88\x6d\x88\xa2\x58\xac\xaa\xf4\x1e\x7c\x0e\xa5\x77\x36\x0e\x33\xa1\x43\x60\x9a\x26\x57\x61\x40\x33\x71\x20\x9f\xa1\x02\xe4\x7b\x4d\xcc\x2a\x20\x85\xe3\x78\xf1\x2b\x48\x9c\x07\xf3\x95\x0a\x53\x55\xd3\xdf\xfe\x7e\x42\xff\xf7\x13\xfa\xbf\x9f\xd0\xff\x27\xb3\x2f\xae\xf4\xa1\x94\xff\xde\xdf\x8f\xea\xff\x7e\x54\x8f\x9f\x5f\xef\x51\x3d\x53\x83\x01\x3f\x2f\xff\xdd\xe9\x9b\xd7\x4d\x5c\x59\xaa\x93\x76\x45\x0e\x0f\x0b\x9d\xb7\x2e\x18\xbb\xad\x67\x79\x90\xcc\xf2\x75\x28\xde\x21\x75\x9d\xf9\x3b\x4f\xfd\x11\x58\xfb\xc2\xbc\x7f\x57\x8e\xaa\x6d\x70\x9a\xa3\xfc\x82\x6e\xdf\xd1\x07\x00\xfb\x9d\xe1\x4b\x35\xe1\x70\xee\x9d\xd7\xb2\x3c\x08\x63\x11\xfd\xed\xa2\x5e\x77\xf1\x51\x46\xf3\xd3\xe2\xbb\x0f\x6c\xb9\xba\x6a\x0b\x34\xbf\x14\xf1\x97\xd9\x3f\xb8\x98\x15\x5f\xd9\x32\xb7\xd4\xe8\x2f\xea\x93\x60\x15\x55\x71\xa3\x2d\x3a\xd4\x97\xe1\x69\x79\x2e\x28\x05\xd9\xff\x2c\x2e\x0c\x2b\x82\xfb\xbb\x2f\x43\xb5\x2f\x43\x81\x84\x7f\x77\x6a\xf8\xbb\x53\xc3\x7f\x62\xc6\x5b\x69\x2d\xbc\xc0\x88\xfb\x38\xef\x86\x02\xc4\xbf\xbb\x39\xd0\x85\x6a\x67\xa1\xbf\x43\xa1\xe2\x27\x38\x3e\x3c\xfc\x15\xdd\x9f\x65\xb6\xd8\x37\x4c\x89\x85\xfe\x65\x1b\xba\xae\x56\xbd\xed\x1d\x51\x30\xcc\x5e\x63\xfc\x23\xa5\x5b\x63\x72\x15\x8e\x08\xc6\xf9\xab\x5c\x12\x88\xc8\x82\xac\xfe\x2c\xa3\x69\x6f\xc4\x58\xa7\x8b\x4f\x54\xe1\x7b\x88\x4f\xa1\x16\x27\x01\x6e\x59\x29\x70\x4d\x55\x92\x57\x9c\x46\x24\x1f\x26\xe9\x64\x69\x3d\x59\x50\x5f\x35\x09\xb3\xe3\x30\xa5\xc3\xe4\x06\xba\x70\xef\xde\x4f\x0a\xb0\x8a\x24\x5c\x13\xf9\xb5\xba\x59\xe9\xd5\xe9\x8b\xa3\xca\x1a\x2c\xb3\x86\x6f\x6b\xb9\xf3\xcf\xd2\x30\xa0\x71\x5e\x80\x48\x7c\xe8\x6a\x5a\xeb\x4d\xbc\xf3\xda\x2b\xe2\x87\x71\x9e\x64\xe3\x5a\x03\xd8\x8f\x17\x71\x4e\x23\xf1\xfd\xed\xdb\x43\xf1\x6d\xef\xe1\xb7\xb5\x8b\x86\xa2\x85\x05\xfc\xc5\x94\x04\xd0\x35\xe8\xc4\x86\x23\x7c\x4b\x82\x9a\x5d\x6a\x9c\x60\x04\xeb\x62\x39\x96\x5c\xb3\xbb\x2f\x83\x07\x56\xa0\x2c\xb2\x19\x6a\xdf\x87\x71\x7b\x4f\x7c\xd9\xee\x88\x2f\x87\x47\x95\xb8\xbe\x0c\xe3\xd9\x8d\x81\x84\xa6\x1b\xe6\xd4\xea\xf0\x04\xa3\x3a\xbb\xef\xd6\x3c\x13\x01\x0e\xdd\x57\x6b\x1e\xfd\x8a\x44\x4b\xe9\x15\x3c\xc3\x4f\xd2\x20\x3b\xa1\x11\xc9\xc3\x2b\x7a\x96\x88\xf3\x5b\x0f\x63\x75\x34\xa0\x10\xd8\x94\x07\x60\xe4\xae\x0e\x23\xfa\x07\xd7\xcb\x9f\x0b\x1c\x2b\x6e\xf0\xf9\x4e\x55\x5b\x87\x16\x9b\x5b\x19\xe2\x65\x1a\x11\x7f\x48\x3a\x14\x7d\xfd\xb5\xf2\x2d\xba\xd7\xed\xf2\x77\x10\x83\xc4\xc7\x20\x2c\xea\x4b\xc9\xcd\x03\xe0\x06\x36\xbb\xca\xa3\x2a\x19\x0e\x33\x9a\xbf\xa4\x43\xe3\x7d\xaf\x79\xb9\xc0\x59\x32\xd5\xf9\xb2\xd5\x2e\xd4\x78\xee\x5b\x3c\x5d\xaf\x41\x18\xab\xbc\xa7\x05\x00\xbc\x08\xec\x83\xd3\x33\xc4\xa4\x8b\x20\xd7\xf9\x4d\x03\xe6\x17\x07\x6b\xb7\x8a\x1d\xab\xc7\x06\xba\x0b\x06\xce\x35\xba\x72\x30\xad\x53\x7d\x30\x9e\xe0\xc1\x67\x6e\x0e\x93\x99\x2a\x84\xdf\xc2\xec\x14\x9f\x12\x0e\x13\xeb\xdc\xc0\x47\x98\x0b\x91\x70\x35\xa8\xce\x6c\x59\x0d\x5c\x3b\x73\x57\x15\x9f\x86\x91\xe7\xe9\xe4\x0d\xa6\x48\x55\xc3\xf0\xd4\xc4\x93\x9f\x80\xc3\x16\x74\x60\x1f\x5a\xf5\xba\x38\xe2\xb5\x72\xed\x76\xda\x76\x3b\x3a\xd5\xae\x39\xb6\x8f\x95\x0b\x28\x4e\xc2\xd8\x53\x6e\x35\x2a\xb7\x01\xed\xba\x26\x1c\x3e\xab\x55\xd1\xb4\xab\x7e\x5b\xd4\x97\xe4\x36\xea\xcb\xe8\xf7\x58\xd0\xc9\x12\x26\xf1\xed\x01\x3f\x21\xd7\xcf\xe6\x39\xfd\x84\x71\x5f\x3c\xd4\x1f\x07\xf2\xc0\x52\x01\x8a\x82\xb6\x02\x50\x84\xe1\xc9\x37\xb0\xd1\x85\xed\x0e\xff\x31\x37\x7f\x08\xfa\xfc\x08\x37\xf8\x30\xd3\x1c\x5f\x65\x2a\xd0\xc9\xa2\x03\xef\x80\x95\x54\xa5\xc4\x5f\x25\xb3\x8c\x56\x05\xdf\x6b\xfd\x8a\x74\x38\xa3\xda\x80\xa4\xb4\xc2\x32\x6a\x4b\xcb\xe8\x39\xae\xc7\x17\x07\xe6\xc3\x32\xa8\x68\x4b\x81\xf2\x58\x22\x70\xf5\xa8\x35\x22\x6b\xb7\x39\x16\x37\x26\x30\x9a\xf3\x69\x9e\xa4\x7c\x63\x2d\xa6\xd7\x3c\x3f\x0a\x07\x4d\x91\xdc\x7c\x45\x27\x49\x3a\xf7\x8a\x71\xe0\x05\x6a\xaa\x0a\x07\x29\xcf\x30\x9c\xc5\xb9\x67\x15\x1d\x66\x5e\x1d\xa3\xd5\xaf\xb3\xe5\xdc\x26\x8d\xfd\x24\x08\xe3\xd1\x7a\x03\xd6\x53\x72\xbd\xee\xac\x19\x50\x3f\x49\x49\x2e\x42\xce\x63\x6f\x0b\xc5\xc2\xc4\x7c\xed\xa1\x19\x26\x3c\xc4\x9f\x13\x1a\x2e\xc4\xa2\xe8\x5b\x3a\x1f\x24\x24\x0d\xec\x97\x03\xf8\xf7\xe7\x05\x03\x3f\x8c\x87\x49\xc5\x3e\xb2\xc1\xd4\xbe\x74\xbb\x95\x51\xe7\xd9\x2f\xe9\x9c\xa2\x63\xac\xdf\x5a\xa1\xb3\xdc\x0d\x26\xb3\x7c\x3a\xcb\x17\x6c\xfc\x19\xc1\xee\x44\x8f\x5d\x71\x84\x0b\x1d\x4f\xf8\x36\xe4\x77\x67\xc7\xed\x3d\xcf\xba\x82\x54\x08\x1c\xe6\x46\x2a\x1b\x27\xd7\xae\x7d\x58\xb1\x53\xd1\x80\x9c\xef\xf0\x96\x58\x71\xa2\x2a\x89\x6f\x07\x76\x2f\x78\x35\xd7\x23\x95\x16\xf2\xac\xfd\x37\x57\x34\x8d\xc8\xbc\xdc\x66\x79\x4b\xd5\xf9\xc0\xe1\x72\x80\x48\xc3\x3b\xd1\x85\x6f\xdf\xb8\x28\x63\x76\x67\x6b\x8b\x2d\x3b\x53\x0a\x61\x06\x71\x02\xe3\x30\xa0\xb2\xed\x3a\x5b\xf3\x01\xc3\x86\x6f\x58\x90\x09\x95\x94\xe2\x2e\xd2\x2d\xc8\xa8\xef\x62\x65\xbb\x0f\x26\xb1\x1b\xd0\xb2\x03\xf2\x95\x46\x93\xe6\xdc\xe0\x5e\xf2\xf2\x87\xdd\xa2\x5d\xcb\x93\x6f\x80\x2c\xe7\x1d\x2e\xfc\x34\xc5\x20\x50\x56\x6b\xa8\x1f\x8b\x21\x00\x2f\x59\x93\xd6\x6b\xdc\xec\x63\x86\xb8\xe5\xd5\x1c\x11\xfd\xdf\xd3\xd2\x33\x92\x97\x95\x5a\x08\x43\xe3\x22\xa8\xf3\xf7\x74\x6e\xed\xcc\xaf\xd2\xad\x24\x7e\x11\x17\x05\xd5\x27\xfc\xcd\xe2\x12\x01\xc3\xa4\x99\xc4\xbf\x3f\xfb\x96\xce\xb3\x3c\x4d\xde\xd3\x85\xe2\xcd\x3e\x12\x52\x49\x56\x4b\xda\x0f\xf7\xe7\xf9\x2b\xf5\x9f\x0a\x75\x49\x7f\x4f\xca\x0f\x45\xbb\x3a\x5c\x3d\x86\x9a\x14\x72\xba\x70\x81\x34\x95\xa7\x7b\x34\xe5\xc5\x8c\xae\xd4\xbb\x07\x8e\x42\xc2\x3f\x51\x3f\x12\x52\x22\x82\xdd\xd2\xdd\xa8\x11\x50\xe2\xe7\xe1\x15\xc9\xab\xa5\xbe\x6a\xe0\xcd\x73\xc3\x8a\x51\x74\x17\x71\x90\xcd\x51\x10\x11\x9d\xc5\x55\x53\x5d\x95\x1e\xab\x7a\x7d\x05\xf4\xa3\x21\x86\xaa\xbb\xdb\xf4\xea\x6e\x13\x0f\x54\x16\xb7\xb9\x52\x5f\xc4\x24\x8c\xe0\x8b\xa1\x27\xa5\x21\x25\x32\x8b\xb6\xe1\xaf\x29\x32\x33\xc6\x90\x4c\xe2\x98\x2f\xa1\x8e\x89\x9f\x27\xe8\xee\xb9\xc8\x06\x2c\x95\xf7\x66\x69\xd4\x00\xa4\xb1\xf3\xd5\xa3\x59\x1a\x41\x17\x66\x69\x91\x69\x54\x0d\xe8\xea\xda\x65\xe3\xa8\xd4\x9e\x39\x9c\x29\x5d\x24\x0d\x72\x87\x81\x5e\x1b\x50\x3c\x89\x54\xa3\x80\x86\x4b\x01\x0b\x08\x25\x1c\x8a\x63\xee\x22\xa2\xa3\x92\x4d\xef\x95\x09\xbd\x8c\xc2\xc2\xbc\x67\xfd\x54\xdb\xd3\xc5\x3a\x26\x61\x35\x64\x53\xd7\x4e\x0b\xae\x6b\x05\x6b\x22\x4e\x72\x74\xfc\xca\x93\x20\x41\x5f\xb0\x6b\x3a\xd0\x87\x37\x36\xd9\x9c\x0d\xac\x20\x7b\x68\xdc\x63\x39\xcf\x35\x1a\x4e\xb0\x78\x4c\xb3\x68\x12\xd2\x90\x1d\x77\xd7\x97\x00\x0f\xb3\x37\x8b\xc8\xa2\x8c\x62\x04\x9f\x52\x12\xcc\x4f\x73\xe4\xc8\xae\x1e\x89\xe6\xe1\x9b\xd7\xaf\x8f\x0e\xcf\x5e\xbc\xfe\xc6\x8c\xc6\x6f\xa3\x56\x55\xf7\xcd\xdb\xa3\xd7\xee\x48\xc0\xc6\xdb\xb0\x60\x99\xa1\xf6\x73\x38\x46\x3f\xdd\xc3\x1e\x97\x7a\x58\x69\x51\x20\xa6\x49\x5c\xe2\x14\x5c\xea\x57\xce\xfb\x4b\x66\xb9\x0a\xac\x4e\xa8\x4f\xc3\xab\xe5\x33\xbf\x89\xd8\xc4\xe9\xb5\xb1\x08\x37\xbe\x97\xb8\x82\x65\x52\x81\xe5\x61\x89\xa7\x97\xe1\x58\x96\x82\x4f\xa2\x5e\x49\x41\x55\x6b\x26\x4b\x25\x95\xe7\xa5\x5f\x53\x6c\x63\xe3\x56\x81\x9a\x22\xce\xd7\xaf\xe9\x20\xcf\xe7\xeb\x46\xa8\xd3\x49\x36\x42\x83\xf8\xbb\xf8\x7d\x9c\x5c\xa3\x83\x6f\xab\x56\xce\x66\xe9\x6d\x3b\xfd\x2d\x37\x7a\x6a\x1d\x3b\x99\x1b\x39\xd2\xe4\x61\x05\xb6\xed\x02\xa2\xa5\x37\x72\xc1\x5c\x6c\x4f\x67\x14\x1b\x4c\x9c\x0d\x9e\x16\x97\x45\xc5\x06\x4f\x8b\x2b\x99\xda\x4e\xa9\xc0\x09\xf5\xf9\xc0\xb2\xec\xdd\x1a\x9f\x67\xbe\xa7\x83\xb3\xb3\x3f\x2e\x99\x63\x78\x21\xe1\xac\xe0\x17\x27\x2c\x1e\xee\xbb\x01\x64\x96\x8f\xcf\x92\xf7\x34\x76\x1a\x4b\xe2\x8a\x57\x61\x76\x2f\x01\xe3\x57\x7a\x8a\x33\xa2\x55\x47\x04\x62\x67\xff\x14\x73\x24\x06\x2c\x5b\x7e\x3f\x28\x1a\x8b\x9a\x0a\x9b\xed\xb2\x21\xc1\xfb\xba\xea\x8c\x57\xbd\xa2\xe0\xfb\x9d\x86\x54\xb9\xfb\x2b\x8c\x13\x53\x80\xf1\x1c\x30\x8c\x47\xe8\x6e\x67\x27\x2b\xe4\x85\xdb\x9a\x9d\x8b\xcf\xa2\x57\xa2\x0a\xfc\xde\x9c\xd4\x4f\x5c\xa3\x3b\x46\xdd\xfc\xe0\x4b\x5e\x34\x9d\xbc\xe0\x5b\x4d\x97\xa6\x41\x3d\x4c\x3c\xc7\xf3\x0a\x46\x0b\x2e\xef\xac\x72\x13\xec\xd3\x93\xc1\xef\xf7\x45\x13\xc8\x50\xee\xa2\x72\x58\x55\x51\x99\x50\x2e\x7f\x5b\x77\x20\xc8\xc9\xc8\xe4\xf7\xb9\xe3\xd9\x54\x3f\x89\x26\xb3\xaa\x25\x5e\x55\x1f\xab\x35\xc3\x06\xac\xd4\x7f\x0e\x54\xec\xd3\x49\x14\x2a\x4b\xea\x7b\x65\xce\x22\xce\x5e\xdf\x96\x93\x8c\xc1\x94\x0b\x68\xcf\x22\x8c\xf3\xf1\x0c\x23\xdf\x93\x9c\xa1\x77\x15\x55\x4a\x61\xdd\xea\x6c\x13\x95\xae\xc1\x80\x21\xfb\xfd\x11\x34\xe7\xca\x7b\x03\x78\x7d\x47\xdf\x1d\x69\x4a\xbe\xa0\xcb\xc4\x46\xbe\x44\xb9\x44\x1c\x96\x20\xc2\x66\x0b\x57\xfb\x0d\xc0\xa7\xad\xda\xad\x56\xab\x90\x5d\x44\xcd\x92\x4f\x61\xdb\x78\x8b\x37\x4e\x40\xdd\x32\x9f\x47\x09\x9e\x8d\xb3\x52\xfc\x99\x0e\xcf\xf5\x00\x4a\x76\x1d\xe6\xfe\x98\x03\x3b\x6f\x95\x1e\x90\x50\xa8\x90\x8c\x42\x69\xca\xda\xaf\xe4\x4a\x73\x68\xb1\xa8\x17\x50\x3f\x09\xe8\x77\x27\x2f\x0e\x93\xc9\x34\x89\x69\x9c\x7b\xc5\xc7\x44\x26\x64\x2a\x9e\x12\xc9\x93\x81\x27\xba\x50\x6f\x98\x02\x59\x85\x9f\xfc\x08\xd3\xa6\xf6\xcf\x6b\xb0\x01\x5e\xad\xd5\x62\xff\xfa\x4d\x7f\x4c\xd2\xc3\x24\xa0\xbd\xdc\x6b\xd5\x9b\x79\xc2\x37\x30\xbc\xf6\x5e\xbd\x2e\x68\xb3\xd9\x71\x10\x47\x0f\x4c\xf3\x5d\x12\xc6\x5e\xad\x56\x77\x89\x93\xfc\x14\x9e\x6b\x5b\x44\x3f\x36\xb3\x57\x53\xef\x0e\x80\x6c\x5b\x60\xa5\x01\x29\xec\x8f\x4a\x3a\x7f\x96\x7e\xd9\x96\x47\x35\x3a\xc8\xa3\x96\x89\x62\xb8\x44\x2f\xc7\xc8\xee\x8d\xd1\xa2\x67\x00\xfd\x6c\x3d\x52\xa6\xd2\xe2\xfe\x90\x59\x9e\x98\x56\xd5\x9d\x7a\xe4\x27\x71\x96\x44\xb4\x19\x25\x23\x6f\xfd\x28\x26\x83\x88\x19\x9b\x6a\x86\xdf\x87\x75\xd8\x28\xb4\xb0\x01\xeb\x90\xb1\x5f\x41\xb6\xbe\x94\x56\xa6\xa1\x63\x81\xb9\x33\x91\x6e\x57\xd7\x59\xb8\xd2\x59\xa2\x45\xf1\x46\x82\xd2\xb8\x4a\x13\x2f\x9e\x2e\xf4\xae\xa6\xcb\xea\x30\xb9\x43\x9f\x07\x79\xeb\xc6\xb2\x06\x31\x0b\xd6\xf5\x09\x84\xf9\x61\x2b\xf4\x22\xd5\x1c\x07\x3f\xf2\x53\x34\xc3\xf8\x24\x22\xaf\x12\x2c\x9f\x43\x6c\xb2\x29\xc3\x6a\x15\xe3\x70\x41\xcf\x71\xa7\x74\x51\x59\xb4\x0f\xab\x0a\xdc\x36\x4a\x7c\xe3\x9c\xb2\xe0\x4e\x0c\xc1\x4c\x4c\xf7\x19\x41\x09\x19\xb9\x21\x51\x6d\xbc\x9a\x37\x59\x8a\x43\x50\x8d\x83\xb5\x51\x04\x8b\x17\xc8\xdc\xf8\x2f\x2e\x8e\xd5\x1a\x49\x66\x97\x97\xc5\xbf\xa6\x97\x42\x96\x1c\xe5\xb3\x01\xe5\x27\xea\x09\x09\x7a\x41\x90\xc4\xde\xfa\x30\xcc\xd7\x45\xcd\x3f\xac\x70\xc0\xff\x07\xe7\x01\xff\x92\xd3\x15\xe7\xd1\xbf\xeb\xdc\xbe\xb4\x83\xaf\x37\x6c\x58\xe5\x66\x72\x1d\xd3\xb4\x2f\x5d\xb5\xb8\x88\x48\x47\xa1\xf5\x20\xbc\x2a\x1d\xd7\x8b\xfa\xfc\xde\xee\x6b\x32\x61\x90\xd6\xf1\xe6\xe4\x66\xc2\x0f\x29\xd7\xdd\x35\xb4\x78\x77\x5a\xad\x56\x69\x21\xc9\x6c\xe1\x97\xfa\x4d\xb2\x6a\xce\x35\x84\x74\x18\x96\x44\xd4\x54\x5e\xe2\x89\x7b\xfe\x74\xbd\xbb\xa0\xa9\xe0\x84\x55\x63\x40\xe0\x3b\xbf\x1b\xb0\x7e\xc3\xa6\x8f\x72\x3e\x1a\xe6\x52\xd4\xed\x6e\x2e\x38\xcb\x93\x37\x54\xd6\x99\x40\xaf\x37\x96\x76\xd5\xa6\x4d\xb1\x1f\xe2\x72\x69\xe9\xe6\xc9\x3a\xaf\x56\x84\x5f\x05\xd3\x52\x3c\xb7\xce\x63\x1f\xd4\x3f\x8c\x69\x1a\x28\x1e\x0e\xa7\x8a\xa2\xd7\xf4\xc7\x38\x55\x28\xc2\x5b\x6e\x15\x8a\xdc\x4e\x85\x53\x6c\x77\x05\xdf\x0a\x0d\x55\xdf\xdb\x72\x6d\x51\x17\x41\x7f\x8c\x87\xc4\x12\x59\x96\x12\x95\xd3\x9b\xfc\x90\x47\x60\x71\xf9\x51\x28\xb9\x6f\xe2\x6d\x83\x00\xa3\xf8\x58\x0e\x01\xc6\xa8\xa9\x5d\x72\x83\x2b\x4b\x6f\x3c\xda\xb7\x19\x4b\xa5\x5d\x1b\xdd\xab\x38\x73\x98\x40\xee\x32\x99\x5f\xea\x1e\xf2\x43\x48\xde\xc3\xcb\x8a\x2e\x02\x9f\x67\xab\xbc\x43\x16\x8e\xe2\x6a\xfe\x1c\x45\x22\x0a\x47\x51\xee\xcd\xde\xd5\x03\xe2\xa4\x42\xa9\x1f\x15\xdd\xb0\xb0\x2d\x71\xdb\x1d\x3c\x38\x94\xbf\x6d\x2e\xca\xe2\xbf\xab\xb0\xf4\x8a\x8e\x1b\x8b\x45\xee\x2e\x6e\x12\x4a\x03\x32\xa9\xb3\x34\xd4\x9d\xbc\x19\x56\x91\xd7\x95\xdd\x19\x6c\xc4\x1c\xca\x73\x29\x6a\x42\x6b\xe1\xd7\xa2\xab\xc1\x2a\xa8\xae\xea\x6b\xa0\xae\xb4\x71\xf2\xb9\x75\x35\xcb\x16\x9d\x70\x16\x18\x44\xb3\xb4\x70\xe0\x57\x16\x92\xcf\xe1\x2c\x80\x4a\x66\x49\x4b\x8b\x8f\x29\xc5\x0c\xe7\xba\x42\xa7\xc7\xc9\x31\xab\x55\x38\x1a\x66\x79\x9a\xcc\xdd\xbe\x05\x7f\x70\xf9\x16\x48\x1b\xee\x0f\x6e\xdf\x82\x4f\x7b\x96\xc3\x36\x56\xb7\xb6\x78\x38\x90\x61\x18\x51\xb8\x26\x19\x8c\x58\x3f\x48\x4e\x03\x18\xcc\x21\x0a\x07\x41\x92\x6f\x0d\xc2\x78\xcb\x4f\x62\x9f\xe4\xcd\x6c\xdc\x64\x75\x5e\xe4\x30\x26\x19\x0c\x30\xa8\x0d\x49\xdf\xd3\x00\x52\x4a\x82\xcd\x24\x8e\xe6\x78\x6c\x3c\x4f\x66\x29\x64\x64\x48\xf3\x79\x13\xe0\x84\xe4\x63\x9a\xae\xa1\xb7\x1a\x89\x81\x06\x61\x0e\x61\x0e\xfc\x56\x57\x34\x6f\xc0\x34\xa2\x6c\x15\x3f\x49\x82\x70\x38\x87\x24\xa6\x22\x9e\x28\x43\x15\x7d\x72\x59\x5d\x86\x63\xd6\x6c\x32\x04\xd8\x4f\x81\xdc\xbb\x6c\x2b\x0a\x07\xcd\x77\x59\x29\xed\x72\x9a\x44\xf3\x61\x18\x45\xce\x4c\x3f\x89\x92\x34\x73\x66\x0d\x9d\xa9\x42\x91\x5e\x4e\x48\x4c\x46\x78\xb1\xc3\xd1\xa2\xd2\x6a\x0b\x8b\xa5\x94\xf7\xca\x99\x99\x09\x2f\xd9\x05\x79\x97\xfe\x38\x4d\x26\x8b\x8b\x44\x89\x4f\xdc\x3d\x97\x25\x26\xe8\x86\xeb\x2c\x92\xd3\x2c\x5f\xd8\x83\x59\x3e\x7c\x68\x67\xe4\xe3\x30\x0d\x2e\xa7\x24\xcd\xe7\x5b\xd7\x3e\xfa\xde\x63\xc9\x6b\x5f\x94\x43\x77\x5e\x56\x9f\xfb\xf5\xba\x12\x2f\x87\x29\x51\xdd\x2a\x64\xbd\x17\x3e\x3a\x8b\x73\x2f\x07\x21\xc6\xa1\xcb\x96\x14\x7b\x4f\xe7\x13\x32\x5d\x5e\x68\x4a\xf2\x9c\xa6\xb1\xbb\x60\x32\x65\xa2\x57\xd1\x14\xee\x23\xa5\x8b\xf2\x2e\xf1\xf2\x55\x38\x0c\x69\x5a\x05\xa3\x8a\x9d\x8a\xe5\x66\x83\x6c\x36\x70\xe7\xf1\x30\x43\x95\x79\x49\x14\x31\x85\xe1\xce\x57\xb7\x14\x17\xe6\x5e\x86\x49\x55\x81\x9b\xfc\x92\xe4\x79\x1a\x0e\x66\x39\xad\xe8\xe3\x55\x45\xdb\x57\xf9\xa5\x8a\xd7\x77\x59\x39\x56\x5c\xdd\xf1\xbc\x35\x96\x7f\xfa\xe6\xbb\x93\xc3\x23\x38\x7e\xf1\xf2\x68\xdf\xa9\x22\x0e\x93\xe9\x1c\x03\x76\xe2\xe6\x74\xa7\xd5\xee\xe0\xcd\xce\x43\x26\x51\xe1\x6c\x02\x6f\x4e\xf1\x90\x8a\xe9\x06\xe8\x45\x11\x60\xd9\x0c\xd8\xd4\x94\x5e\xd1\x00\xd5\xdf\x77\x99\x50\x50\x61\x26\xf4\x13\xf8\xcc\x44\x0b\x33\x18\xb1\x25\x69\xcc\xd5\x27\x81\x67\xa7\xfd\x4d\x1e\x72\x51\x86\x3a\xc2\x07\x8f\x7c\x12\xc3\x80\xeb\xb4\x64\x16\x07\x10\xc6\xe8\xa3\xfb\xf2\xc5\xe1\xd1\xeb\xd3\x23\x54\x74\xcd\xb5\xb5\xb5\x35\x23\x04\x51\x14\x0e\xe0\x9e\x7d\x75\x71\x8d\xcd\x32\x69\x72\x8d\x2b\xef\xa3\x34\x4d\x52\xaf\xf6\x4d\x94\x0c\x48\x04\xeb\x51\x38\x58\x87\x04\x37\x22\x80\x44\xe8\x77\x02\xf4\x26\xcc\xf2\xac\x59\xab\x1f\xac\xe1\x56\x01\x03\x29\xa2\xfb\x88\xc8\x50\xaf\xc8\x94\xf5\x6b\x3d\xa0\xcc\xdc\xa7\xb1\x3f\x5f\x87\x3c\x81\xf3\x75\xde\xc9\xf5\x06\x34\x9b\xcd\x0b\x19\xea\xe9\x88\xf8\x63\xd0\x45\x31\xe8\x91\x6c\x33\x26\x13\x7c\xb7\xfc\x3d\x45\x5c\x9a\xc3\x6c\xbd\x01\x12\x0c\x2b\xc9\xfa\x3b\x4b\x23\xa4\x07\x03\xc6\xe1\x64\x90\x70\x52\x70\x30\x4d\x8c\x0a\xc5\xea\xa7\xb3\x98\x99\xdd\x7d\xd9\x5a\x48\xb3\xcb\x02\xf2\x6c\x12\x06\x0c\x5a\xc6\xa7\xc4\x8c\xd3\x3a\xa6\x3c\x8a\xd0\x80\x42\x18\x5f\x25\x6c\xaa\x0a\x78\x50\xce\x28\x1c\xa4\x24\x9d\x43\x18\x87\x79\x48\xa2\xf0\x2f\x04\x37\x9c\xcc\xde\xc9\x0b\x5d\x62\x80\x58\xc9\x43\x61\x80\x65\x97\x40\xd2\x94\x60\xb7\xc3\x3c\xa3\xd1\x10\x08\xe4\xd7\xc9\xa6\xac\x83\xb9\x18\x66\x5a\x5e\xd4\x6a\x71\x12\x65\xe3\x04\x23\x71\x22\x12\x01\xcd\xfc\x34\x1c\xa0\xcf\x15\xeb\xf7\x75\xcc\xe3\x54\xcb\xe6\x20\x4d\x66\x79\x18\xd3\x06\xcc\x32\x3a\x9c\x45\x0c\x1e\x9b\x60\x03\x3a\x98\x8d\x46\x61\x3c\x6a\x82\x82\xdf\x96\x84\x95\x46\xa2\xa2\x85\x26\x64\xa1\x0b\xfc\x41\x74\x49\xc2\x13\xea\xe3\x05\x19\x02\x82\xde\xc6\xf0\x4a\xba\xa0\xb9\xc0\x19\x58\xa0\x04\xd7\x63\x1a\xb3\x19\x1f\xae\x49\x8c\x77\xf6\xe9\xcd\x34\xa5\x99\x80\xb3\x59\x00\x04\x7c\xc0\xfd\x64\x32\x65\x46\x07\xcb\x6d\x02\xb3\x28\xd0\x87\x9d\xd1\x3a\x67\x25\xe5\xa0\x11\x0c\x96\xb6\x39\x8c\x68\x30\xa2\x81\x1a\xb4\x6c\x9e\xe5\x74\x02\x49\xaa\x99\x07\x81\xe7\x29\xf1\xdf\xd3\x14\x21\xd6\x32\x78\x37\xcb\x72\xe1\x22\x9f\x27\x30\x21\xef\x29\x33\x3c\xa6\x49\x96\x85\x83\x88\xf2\xdb\xdb\x83\x19\xd2\x5e\x00\xca\xd0\x3b\x9e\xad\x36\xd3\x59\x1c\x63\x10\xb4\x28\xe2\x54\xe5\x11\x00\x91\x0a\x6f\x34\x9b\x67\x40\x52\x0a\xd9\x94\xfa\x4c\x95\x07\x40\x32\x31\xb6\x59\x13\xe0\x38\x49\x81\xde\x90\xc9\x34\xa2\xcc\x72\xe1\x95\xd9\x07\x99\x3a\x0f\xe8\xd4\xab\xb1\xaf\xdc\x1a\xa9\x35\x00\x7f\xe9\xc5\xd1\x2b\xae\xf6\x31\x32\x5d\xb9\x61\xe4\x6d\x46\xb3\x01\x85\x34\x49\x84\xd5\xc6\x40\xd4\x9a\x00\x7f\x4c\x66\x30\x21\x73\x36\x4a\x5c\x55\x61\x6f\xfd\x88\xa1\x4b\x0a\x64\x4b\x62\x20\xf1\xdc\x10\x3b\x3e\xd4\x14\x7c\x0c\xe8\x0a\xd3\x34\x19\xa5\x64\x82\xf0\x18\x77\x21\xfe\x34\xce\x66\x29\x3d\x29\x8b\xa6\x57\x07\xc2\x38\x9c\xa4\xf9\x6c\x0a\x21\xc6\xc6\x4c\xd2\x80\xa6\xc8\x1c\x58\x4b\xbc\xfc\xc6\x14\x6c\x91\xd5\x42\x9a\xc1\x98\x5c\x51\x61\x5e\x52\x85\x8f\xbc\x9d\xcf\xc9\x7b\x0b\x57\x24\xbd\x44\x6f\x92\x37\xcc\x60\x4c\x61\x92\xa4\x52\x73\x64\xee\x01\xd1\xfa\x84\x91\xde\xb0\xff\x3d\x09\x4b\x47\x8c\xe4\xca\x0a\xef\xca\xe7\xe9\x5c\x06\xf7\x28\x28\x5c\x11\xb1\xcd\x27\x78\x26\x4b\x6f\xcc\xeb\x72\x59\x4e\xfc\xf7\x78\x64\x8a\x01\x5f\x9b\xf8\xbb\x99\x4d\xa3\x30\xf7\x6a\x3f\x88\x68\x83\xe8\x75\xf9\x22\x86\x53\x32\x24\x69\xd8\x10\xf1\x21\xb2\x59\x84\x51\x79\x0d\x10\xd7\x61\x14\x01\xda\xd7\x48\x9b\x8e\xd4\x4d\xfc\x15\x01\xe4\x5f\x0e\x8c\x19\x40\x57\x61\x30\x23\x91\xec\x36\x32\xe8\x30\x49\x27\xcc\x98\x09\x44\x5c\x5f\x1a\xe7\xd1\x9c\x07\xf7\xc5\x28\x22\xaa\xa5\x66\x44\xe3\x51\x3e\x86\x27\x5d\xd8\x36\xa3\x8a\xe0\x34\xd7\x35\x50\x3a\xef\x5c\x34\x53\x3a\x8d\x88\x4f\xbd\xad\x7f\xf8\x21\xbb\x4f\xf2\x1f\xb2\x8d\xad\x06\xd4\x64\xd7\x0a\x81\x8b\x5c\x30\xda\x05\x18\x23\x3e\x81\x31\x59\xfb\xad\x05\x6a\x4d\x04\x27\x61\xca\xcf\xc3\x4b\xfe\xd0\x85\xd6\x01\x84\xf0\x18\x88\x74\x40\x11\xb8\x1f\x40\xb8\xb1\x61\x0e\xc5\x94\x60\x50\x65\x55\xee\x3c\x14\xd7\x0a\x59\xd7\x31\x93\x47\xd2\xf0\xd9\x54\x8b\x88\xe9\x9e\x2b\x76\x69\xe2\xd3\x04\x5e\x14\x0e\x1a\x08\xd0\xdd\x49\x3c\x58\x44\x47\x28\xbe\x40\x74\x4c\x5c\xe7\xac\xf6\x85\x5c\x2b\x62\xb4\x4b\x92\xce\xeb\x6a\xed\xb8\x52\x75\xa1\xba\x55\x0d\x7e\x39\x8d\x93\xd8\xa2\x99\x31\x45\x1e\xa1\xe8\x65\x4b\x64\x8f\x71\xcb\x84\xe6\x0d\x8c\x29\x12\x03\xbd\xf1\x29\x1a\xba\x7c\x76\x49\x93\x6b\x3d\x47\x5e\xd1\x74\x0e\xb3\x78\x42\x73\xc7\x8c\xc1\x59\x76\x40\x21\x4a\x46\x23\x1d\xca\xef\x77\xa7\xea\xec\x14\xe0\xc5\x50\x4c\x07\x6c\x01\x98\xe3\xca\xcf\xb6\x28\x38\x70\x54\x5f\x08\x2e\x25\x61\x46\x2d\xb4\xb4\x50\x57\xea\xa3\x4b\x53\xd2\xb5\x84\x4f\x49\x96\xd1\x80\x91\x1a\x9d\x6c\x4d\xe6\x12\x3c\x01\x55\xb6\x87\x25\xe7\x48\x73\x34\x3f\xba\x95\x15\xcc\x31\x67\x95\xb8\x02\xef\x62\x43\x52\x27\x70\xd3\x4c\xeb\x04\xa2\x76\xd8\x78\x9c\xec\x9b\x1c\x6a\x7c\x6b\xa2\x26\x67\x7a\x21\x2e\x42\x6f\x03\xaf\x75\x9d\xa4\xef\x69\x0a\x61\x5e\xcb\x24\x34\xa6\xb3\x69\x00\x35\x66\xa7\xd4\x9a\x0a\x8b\x64\xf0\x0e\xba\x20\xc2\x45\xc2\x87\x0f\x78\x8f\x5e\x70\x8f\x4b\xd0\x10\x6b\x97\x90\x09\x36\xf6\xb0\xc0\x79\x78\xc1\x68\x97\x0c\xde\xd5\xcd\x5d\x15\x39\xea\xd7\x24\x8d\xbd\xda\xab\x30\xcb\x98\x8a\x5b\xaf\x61\xd8\xfc\x7c\x0c\x1b\x50\x43\xd3\x90\xcd\x6a\x38\x93\xd5\x1a\x06\x6d\x8d\xbd\x15\x35\x6e\x86\xf7\x33\x14\xcf\xbf\x45\x24\x23\x10\x7d\x4c\x06\xef\xce\x25\x72\x17\x05\x95\x82\xa8\x73\xa0\x75\xa7\x96\xaf\x1d\x93\x90\x91\xcf\xc1\xe3\xfe\x98\xfa\xef\xd9\xb8\xdd\x9a\x66\xd4\x28\xcc\x72\x8a\xd2\x63\x1b\x97\x96\x41\x26\xa7\xd8\x8a\x22\x5c\x10\xa5\xcd\x1a\xc6\x90\x22\xd8\x94\x97\xe2\xd3\x29\xb3\xbc\x50\x7a\x84\x65\xe7\xd5\xd1\x1c\xe5\x75\x98\x65\xc8\x8c\x58\xb5\xc7\xc5\x05\x48\xb8\x5c\x13\x60\xe4\x8f\x28\xe0\xa4\x4a\x73\x9a\x36\x78\x48\x1b\x06\x0f\xed\x54\x55\xcf\xb6\x9e\xd1\xda\x0b\x73\x34\xe0\x22\x9a\x53\x34\x7f\x19\x94\xdc\xb4\x5b\xcb\x06\x75\x71\xf6\x66\xa3\x01\x3d\x61\x0d\x73\x33\x78\x9a\x33\xcc\x30\xc3\x61\x02\x4b\x73\x73\xc8\x8d\x3e\xc0\x38\x55\xd2\x0a\x36\x5b\x50\xa2\x2e\xbf\xd4\x6f\xb5\x49\xbc\x80\xe2\xac\xa3\xa9\x18\x3b\x0e\x50\x9e\x18\xc9\x12\xb7\xdc\x26\x92\xb0\x14\xe9\x0c\xc3\x42\xd4\x7f\x11\x5b\xc1\xcf\x3d\xbe\x20\xb2\xb7\x81\xcb\xf6\x38\x57\xe2\xe7\x76\x61\x7e\x81\x50\x86\x01\x10\x89\x16\xc3\xbd\x90\xfd\xe1\x61\xac\x85\x8d\x6c\x59\xec\x38\xf6\x25\xd3\x4b\x20\xeb\x62\x6d\x6b\x26\x20\x71\x80\x6c\x81\x2c\x80\x96\xa2\x51\xb5\x8a\x7f\x65\xfb\x2f\xec\x7c\xc6\x5b\xd9\x3c\xf6\xc7\x69\x12\x27\x33\x66\x24\x9f\x69\x9c\xe5\x22\x80\xaf\x58\x99\x0a\x62\xd6\x2b\xc3\x0d\x57\x3e\xb8\x44\x8a\x91\xb6\x6a\xd0\x0c\x86\x2f\x70\x9a\x56\xf9\xb7\xb2\x16\x6b\xca\x1c\x6e\xd1\x23\xce\xd3\x45\x3c\x25\x97\x49\x4e\x77\x33\xd9\x7d\x06\x7d\x9a\x5f\x46\xc9\xe8\x58\x42\xee\xc5\xc0\x37\x87\x48\x64\x35\x97\x51\x4e\x48\x54\x98\x76\x73\x29\x8d\x70\xdb\x35\x4a\x46\xf2\x24\x8e\x59\xec\xf6\xca\xcd\xe4\x28\xde\xa3\x46\xb1\x6d\x3d\xbd\x71\x33\xa2\xcc\x64\x2a\xc4\x2f\x4b\x7e\xcd\x66\x95\xd2\xec\xc8\x75\x22\xe3\x21\xae\xeb\xed\x98\x98\x29\xf5\xd1\x98\x9a\x37\xb3\x71\x38\x34\x0e\xc4\x59\xa5\x22\x3a\x4a\x3b\x17\x32\xbc\x1a\x6b\x7e\x1f\x98\xfa\x4f\xa9\x7f\xde\xd2\xf7\x64\xd9\xcf\xf6\x85\x87\xfb\x06\x4d\x12\x91\x74\xe2\x49\x54\xeb\x6e\xa3\x8b\xd3\xc2\x2b\xbd\x79\x60\x6c\xa0\x08\x06\xb8\x67\xc5\x70\x76\x6b\x7b\x39\x35\x25\x8c\x44\x57\x24\x0a\x03\x65\x39\xee\x0b\x38\x62\xa6\x5e\x6c\x75\x78\xbc\x90\x71\x1c\x29\xbb\xc1\xdd\x98\x6e\x0f\x16\xef\x58\x15\x37\xb0\xf5\xd6\x55\xa7\xd5\x7e\xf0\x6b\xdd\xb6\x2a\x44\x93\x16\x2a\xea\xb7\x2c\x97\x35\x72\x15\xd2\x6b\x78\x2b\x3a\xc6\xe3\x8d\x1f\x9d\x76\x5a\xed\xbd\x0d\x18\x52\x92\xa3\x7d\x7a\x4d\xd5\x56\xc2\x2c\xa3\x5c\x04\xf8\xe6\x5f\x3e\xcd\xf6\xb7\xb6\x02\x7a\x45\xa3\x64\x4a\xd3\xe6\x24\xf9\x4b\x18\x45\xa4\x99\xa4\xa3\x2d\x1a\x6f\x7e\x77\xba\x15\x24\x7e\xb6\xf5\x3d\x1d\x6c\xfd\x8e\x5c\x91\x53\x9c\x54\xb6\x4e\xe4\x72\x7a\x8b\xef\x8f\x5d\xf2\x55\x74\xb6\xc5\x1d\x2c\xb6\xa6\x24\x38\x65\x8b\x55\xdc\x70\xbb\xc7\x13\xcd\x97\x32\x44\x36\x97\x82\xca\x6c\x53\x8c\x72\x92\x8e\x68\xfe\x12\x85\x87\xad\x16\xc4\x0d\x5c\x15\x34\x7c\x8b\x59\xbe\x78\x2f\x9f\x6f\x03\x31\xa5\x28\xb6\xe9\xa2\x24\x1e\x01\x8d\x93\xd9\x68\xdc\x30\xee\xe3\x41\x90\xdc\xe3\xec\x6a\x80\x86\x4d\xb1\x4e\x10\x26\x99\x12\x5d\xab\xd0\xe3\x2e\xb4\xea\x4a\xb6\x70\x1a\x11\x9e\x25\xe2\xd9\x0d\x63\x29\xa4\xae\x0a\x77\xbb\xa0\xf6\x1a\x65\x65\x23\x1b\x6a\x50\xb3\x8c\x55\x74\xc3\x64\x3d\x9a\x92\x80\x75\x67\xc2\x96\xb0\xd3\x88\x62\x34\x98\x0c\x7b\xd5\x74\xa3\xf7\x44\xc3\x95\xea\xc6\xd1\x9e\x2e\x93\xd2\x29\x25\xb9\x67\x03\xd9\x2a\x03\x11\x31\x74\xcc\xe3\x36\x5d\x86\x3b\x11\xb7\x1a\x16\x39\xeb\xda\xe7\xc6\x7c\x90\xe4\xf6\x4b\x33\xdf\x51\x1c\x54\xb3\xde\x51\x1c\x54\x33\xde\x91\x75\x2d\xf2\xef\x6c\xf7\xeb\x64\x3b\xb3\xdb\xb8\xda\x59\xcc\x85\x8a\xed\x16\xcf\x0e\xd6\x09\xe6\x3f\x9d\x63\x0d\xf7\xfc\xf0\x9a\xad\xcd\xa6\xc4\xc7\x8d\x2a\xc0\xae\xc1\x2c\x0f\xa3\x30\x0f\xa9\xb1\x6f\xc7\xfb\x5c\xd8\xf9\x3f\x0e\xd3\x2c\x67\x6b\xc5\x09\xb3\xcd\xe3\x18\x4f\xa3\x47\xb3\x88\xbf\x62\x90\xd2\x8c\x3f\xa9\x79\x4d\x6b\x29\x85\x51\x22\x18\x9b\xa1\x81\x18\x8a\xe3\x6f\x61\x3d\xae\x2d\x8b\x02\xfb\xec\xa4\x77\x78\x04\x7f\x7c\xf3\xdd\xc9\xe9\xd1\xcb\xe3\x55\x6a\x00\x40\xe3\xa7\x9f\x7e\xfa\xa9\xb9\x4a\xc9\x0f\x4f\x2e\x1f\xc3\x4f\x3f\xad\x50\x74\xfb\x4f\x9b\x9b\x9b\xb5\xcd\xad\x55\xc0\x6e\xef\xb3\xcf\x0f\x57\x3f\x2c\x2f\xdb\x4d\xba\xbc\x70\x63\x85\xc2\xf0\x01\x44\x61\x2c\xbd\xa0\xc2\xd9\xf3\x23\x38\x39\xfa\xe6\xbb\x97\xbd\x13\x38\xfa\xc3\xdb\x93\xa3\xd3\xd3\x17\x6f\x5e\x9f\x2e\x6f\xa2\x77\x72\x04\x87\x6f\x5e\xbd\x78\xfd\x8d\xb1\x68\x4e\x69\x0d\x23\xde\x5c\x93\x39\x2e\x4f\xd9\xca\x9f\xab\xb0\x93\x23\x88\xc2\x9c\xa6\x24\x62\xeb\x02\xd0\x8a\xb8\x09\x70\x1c\xde\x70\x4e\xbd\x1e\xcf\x21\x48\xe2\x1a\x6e\x3d\xcd\x93\xd9\x53\x80\x37\x63\x5c\xe6\x00\x89\xb2\x84\x9f\x18\x58\x2d\xa0\xcf\x1e\x5b\x34\x73\xc5\x80\x50\x82\x84\x66\x71\x8d\x9f\x58\xa4\xd3\x94\x22\x34\x9a\xf9\x64\x4a\x8d\xc5\x4f\x96\x53\x12\x34\x98\x4d\x93\xe5\x49\x32\xe5\xdb\x60\x61\x06\x6a\xdf\xb3\x0e\x4c\x18\xde\x17\x99\xbc\x99\x52\x3c\xe2\x5a\x43\x55\x77\x78\x7a\x0a\x63\x7a\xc3\x25\xa3\x01\x5f\x9d\x7c\xf3\x8c\xe9\xb5\x31\xbd\x69\xef\xed\xc3\xd6\x57\xde\x39\xd9\x1c\xb6\x36\x1f\x5d\xd4\x5d\xdf\xb6\xc2\xc6\x5a\x05\x9c\x93\x6f\xbe\x79\x26\x41\x75\x76\x2c\x50\x3f\x76\x6e\xeb\xd5\x3f\x6c\x98\xe9\x68\x20\x61\xa6\xa3\x81\x97\xa6\x69\x63\x34\x1a\x35\x06\x83\x41\x9d\x01\x4f\x47\x83\x7d\x34\xb1\x4f\xe8\xe8\xe8\x66\xea\x09\x4d\xeb\xd5\xfe\x61\x2b\xbb\x9f\x8e\x06\x5b\xd9\xfd\x2d\x6f\x2b\xbb\xef\x6d\x05\x3f\xb6\x1b\xdb\xb7\xf5\xad\xec\x7e\xa3\xf8\xbb\x06\x1b\x72\x35\x51\x2b\xe4\x6d\xb1\xbf\xfe\x59\x4d\x66\xd7\xf5\xa6\xf2\x0f\x5b\x5b\xa3\x06\xd4\x7e\xf8\xa1\x56\x6f\x40\x2d\xac\xd5\x57\xc3\xba\x41\x08\x91\x98\x93\x85\xa8\x93\xad\xec\xbe\x85\xd9\xd2\x7e\x14\x7e\x9b\x95\xbd\xa7\xfb\x22\x7b\xc3\x7b\xba\xbf\xd5\xdc\x0a\x36\xea\x4f\x59\xa1\xfa\x47\xf4\xf0\x28\xc4\x90\xd3\x27\xdf\x3c\x63\x4b\x99\x93\x6f\x9e\xf5\x44\x87\x6e\x16\x77\xe8\xe9\xdf\xa6\x47\x4f\x3f\xa2\x4b\xbd\x18\xfe\xd0\x6e\xc3\x3a\xe3\xa7\x20\x08\x82\x2d\xf5\xd7\x3a\x77\xa4\x67\x3d\xbc\x69\xb7\x91\xdf\xf0\x40\x81\x7d\xd3\x7c\xdb\x6e\xec\xdc\xd6\x7f\xd8\x5a\x9a\x90\xdd\xff\x67\x9a\xbf\x8f\xe2\x51\x14\x66\x63\x31\x2b\xc5\x64\x82\xad\xb0\x7f\xf7\x61\xeb\x9c\x6c\xfe\xe5\x82\xfd\xd5\xda\x7c\xf4\x43\x76\xb1\xb1\xd5\x30\x77\x66\x0e\x93\x18\xdf\x5d\x24\x92\xdd\xbc\x20\x08\x1a\xe2\xff\xba\x80\x88\x88\x33\x2d\x92\x00\xe1\xfd\x33\xd2\xd5\x89\x23\x8e\x25\x83\x62\x64\x8a\x3d\xc2\x51\x9c\xa4\x7c\x83\x5d\xec\xf0\x64\x24\x0e\x73\xb6\xfe\xc7\xe7\x2b\xc6\x24\x0e\x22\xb1\x49\xa6\x8e\xb6\x6b\x41\x10\xd4\x70\x6b\x03\xef\xf6\x89\xd3\xfb\x98\xc2\x60\x9e\x53\x81\x92\x3e\x43\x0b\x63\x08\xa8\x1f\x4e\x30\x62\x75\xc5\x61\x1c\xab\x81\x36\x87\x8d\x23\x43\xcb\xe7\x64\xb0\x37\xd5\x64\x4d\x56\xa7\xd0\x69\xc6\xaf\xf1\x2c\x8a\x98\xd5\xc6\x4c\x08\x9e\xe8\x63\xe8\x73\x7e\xde\xa9\xf7\x66\x10\x32\xdf\xfc\xb1\xd5\xe7\x68\x70\x96\x30\xb8\xd6\x29\x9f\xf2\x2e\x55\xdb\x32\x99\x4f\x22\xea\xa9\x67\x3f\xae\xa0\x0b\x9e\x8a\xd3\x79\xd5\x80\xce\xee\x6e\x1d\xee\x43\x67\xf7\x81\x7d\x11\xd1\xf2\xe3\xe3\x7b\x15\x7f\x99\x92\x80\x55\xd9\x11\x0f\x2e\x59\x1b\x31\x7c\x34\x27\x24\xf7\xc7\x9e\xad\xe5\x19\xaa\x37\x58\xc5\x3e\x0b\xb2\x62\xe7\xea\x2d\xc0\x1a\x63\xe9\x1a\x6c\x08\xcc\x49\x3a\x3f\x6f\x5f\x30\xbb\xb2\xb6\x65\xa7\x76\x9c\xa9\xdb\x17\xf6\x6e\xb5\x66\xd1\x88\x8e\x88\x3f\x57\x63\x71\x45\x8b\xac\x29\x79\xb8\xd9\x6c\xd6\x5d\x3c\x7a\x36\xa6\x73\xc8\xc9\x7b\x6e\x91\x0f\x93\x74\xb2\xcf\x92\xdb\x1d\x18\x84\xf9\x3e\x4e\x5a\x7a\x5e\xdf\x7c\x02\x5f\x9d\xb4\x5a\xad\x6f\x5a\xad\xd6\xb3\x56\xab\xc5\x4a\x76\x76\x64\x49\x9c\x96\xcc\x92\x27\xad\xd6\x37\xdf\xb4\x5a\xcf\x9e\xf1\x92\xdb\x7b\xaa\xe4\xc9\x37\xac\xec\x33\x5d\xf2\xa4\xf5\xcd\x37\xdf\xb4\x9e\x3d\x7b\x86\x25\x77\x1e\xea\x92\xac\x28\x2b\xfb\x4c\x60\x9b\x51\x14\x20\x86\xed\x24\xc9\x72\xc8\xc2\x51\x1c\x0e\x43\x9f\xc4\x39\xab\xa4\x66\x71\xf5\xe6\xb9\x90\x3a\xdc\xfd\x0d\x92\x6b\xdc\xd4\xe3\x48\xab\x97\x53\x49\x5e\xcb\x70\x77\x95\x51\x2b\x9b\x4d\xb9\x4f\x67\x91\x3b\x6f\xda\xed\xe7\xf4\xe6\x2c\x61\x85\x4c\x06\xd5\x0f\x9e\xdd\xbb\x6a\xe2\x09\x7a\xf6\x7d\x98\x8f\xbd\xda\x57\xb5\xba\x83\x2b\x50\x3f\x31\x9e\x9c\xf2\x9d\x5f\x4a\x02\x66\x9e\x7c\x05\xc9\x70\xc8\x94\x14\xe3\xe6\xab\x66\x36\x1b\x64\x79\xea\x89\x65\x09\xbe\x06\x8b\x5e\x04\x33\x11\x51\x23\x0b\xff\x82\x16\x0b\xb6\x7b\xbe\xdd\x80\xbd\x06\x3c\x6a\x40\xbb\x73\xa1\x62\x5e\x5f\xa9\xe5\x4d\xb7\x0b\x9b\x6d\x37\x83\x6a\xc8\x71\x12\x6f\x32\x33\x83\xd3\x4b\x82\xbe\x12\xec\xbf\x75\xfe\x0f\x42\xdd\x6e\x85\xae\x5e\x89\x6e\x4d\xa3\x30\x17\x9e\x17\x68\xf5\x27\x33\x0c\xd6\x8f\x67\x6e\xdc\xc1\x5a\x62\x05\x5b\xb0\x7d\x20\xb2\x52\xb3\xcb\x2d\xfe\x72\x4c\x5d\x66\x8e\xcc\x4c\x96\x53\xc8\x1f\x14\xf3\x99\xe8\x98\xc5\x38\x6a\xaf\x93\x74\x22\xf6\xdb\x13\x68\xef\x49\x5e\xd1\x4a\x25\x4e\xd2\x49\x7b\xcf\xd6\x2a\xea\x61\xda\xab\x06\x14\xf5\x07\xef\x4f\x17\x3a\xf0\x14\xae\x60\x5f\x09\xc9\xd6\x96\x00\x6f\x3a\x81\xcb\xc2\x6d\x2c\xfc\xf8\x31\xec\xf0\x1a\x5b\x5b\xf0\xb0\x58\xf6\x0a\x9e\x3c\x01\x6f\x07\xee\xf3\x37\x78\x60\x13\x3a\xf5\xfa\x01\x96\xed\xec\x30\x35\xbb\xdd\x11\x55\x6e\xd7\x2c\x6d\x26\xf8\x14\xbd\x98\xce\x12\x66\x3c\x78\xe7\x69\x03\x46\x0d\x18\x5c\x34\x27\x64\xea\xf1\x2e\xd6\x2b\x94\x49\x69\x1e\xbb\x8b\x12\xc1\xba\xbc\xd6\x84\xcc\xd1\x0b\xc8\x84\xc7\x8f\x47\xf8\xe9\x34\x53\x29\x62\xca\x18\x2a\xad\xc3\xc0\x30\x25\x39\x1e\x8f\xc7\x5b\xea\x2f\x71\xdc\x6c\xcc\x79\x02\xb1\x0c\x22\x9a\x65\xdc\x37\x79\x07\x82\x70\x14\xe6\x19\x84\xb9\x38\x01\x98\x92\x20\xa0\x01\x63\x3e\x36\xd8\x3b\xe8\xa2\x21\x66\x8d\x40\xe9\x80\x61\x88\x4e\x62\xea\x50\x8d\x4d\xa2\xcb\x67\xca\x22\x89\x56\x99\x29\x8b\xb3\xeb\x67\x98\x29\x6f\xda\xed\x2a\x45\x54\x35\x4b\x6e\x6d\xc1\x5b\xc2\x89\x22\x54\x22\xc6\x14\xd5\x74\x1c\x26\xb3\x54\x90\x12\x4f\x78\xc2\x0c\xc4\x9b\xe7\xe0\x4d\xd3\x64\x40\x06\x91\x98\xe5\xb6\xb6\x00\xb5\x02\xcd\xc4\xcb\xbb\xc2\x75\x2b\x08\x87\xc3\xd0\x9f\x45\x48\xf6\x8c\xf0\xd3\x20\x6e\xdd\xa0\xa6\xc5\xc2\x90\x51\x3a\xc9\x20\x4f\x24\x28\x92\xa6\x78\xba\xc9\xe6\x33\x31\x72\x9c\x24\xc2\x4b\x26\x86\x29\x4d\xf1\x49\x01\xbe\x5d\x90\x4c\x06\x61\x2c\x8e\x54\x87\x12\xc8\x88\x4c\x26\x8c\x4f\x52\xf1\xea\x48\x43\x50\x9c\x6f\x50\xe4\x29\x89\x33\xee\x4e\x83\x79\x0c\xf2\x9f\x67\x24\xce\xd5\x81\xa7\xda\x70\x52\xfa\x89\x49\xab\x3e\x44\x61\xca\x8d\xf3\x89\x60\xb6\x29\x51\x0c\x86\x84\x1b\xcc\x81\x6f\x37\x49\xbf\x40\xe5\x0a\xdb\x04\x58\x1f\xae\xc3\x80\xfa\xc9\x84\x66\x1a\xde\xfa\x70\x38\x1c\xae\x37\x01\x4e\x7d\x82\x37\xd1\x91\x33\x09\x28\x25\xac\x76\x76\x84\x4b\x33\x6b\xa3\xb3\xfb\x40\x3a\x12\x64\x64\x42\x35\x34\x92\x81\x3f\xcb\x73\xfe\x44\xcd\x50\x99\x85\x4d\x80\xef\x29\x64\xef\xc5\x6c\x33\x09\x83\x20\x62\xcb\x5a\x3a\x45\x22\xa0\xb3\x5d\x90\xcc\xd4\xa3\x97\x22\x3e\xad\x81\xbd\xbd\x1d\xa8\x35\x22\x6c\x80\xa9\x15\x6f\xdd\x24\xec\x14\x48\x38\x09\x23\x92\x42\x40\x49\x04\x6c\xc1\xde\x04\x94\xa8\x29\x09\x32\xc8\xaf\x13\x4e\x5c\x35\x65\x17\x48\xaa\xe1\xa0\xc1\xeb\xb1\xe1\x65\x3c\x0e\xb3\xa9\x20\x4d\x9d\x51\x13\x59\xad\xb0\x73\xc4\xcb\x85\x39\x9a\x01\x1a\x0e\xa7\x78\x3c\xbf\x26\x73\x5c\xee\xfb\x24\xe6\x24\x91\xa1\xdc\xc6\x4c\x5a\xc3\x11\x86\x96\x51\x8b\x15\x27\x39\x96\x93\x62\xdb\x22\xc5\xd9\x38\xa5\xd4\xee\x2f\x13\x0c\x71\x72\x2f\xe4\xa0\xc4\x54\x43\xc4\x04\x6b\x35\x35\x2c\xda\x1c\x35\xa1\xdd\x1a\x4a\x1e\x63\xdf\x87\x32\x1f\xed\x09\x36\x58\x72\x8e\xec\xd8\x68\xb2\x61\x41\xea\x70\xc5\x38\xa6\xd0\x31\x16\x14\x4d\x73\xca\x43\x1b\x3b\x4d\x66\x71\xe0\x15\x3a\x0e\x5b\x48\x7e\x97\x0d\xed\xb6\x9f\xf9\x82\xcf\xb6\xa0\xb5\xa2\xe2\xf1\x6e\x84\x7d\x84\x16\x2e\x17\xde\xa6\x41\x58\xa7\xa5\xe5\x9a\x0f\x0d\xbb\xcd\xbb\x12\x7d\xa7\x51\x46\x2b\x2b\xb0\xc9\x0a\xe7\x4f\x51\x1c\x7b\x84\x67\xa7\x53\xb9\xf9\xdb\x36\x0f\xf8\x2b\xe6\x5e\x56\x83\xcd\xba\xc8\x7b\xee\x49\x37\xe3\x17\x67\x84\x1f\x24\xd3\xe7\x35\x61\x47\xd7\xec\x35\x23\xce\xc4\xf9\x98\x86\xa9\x9a\x88\x85\x5b\xb1\x7a\xc6\x17\x7d\xe0\xf8\xea\x52\xcd\x1b\x6c\x82\xc3\xf5\x79\x93\xcf\xa3\x62\xaa\x21\xb1\xf0\x40\x55\x05\x1b\x7a\xf2\x14\x2b\xfa\x80\x4f\x0f\x6c\xa2\x72\xcf\x8a\x1f\xb8\xeb\xe1\x63\xfe\xeb\xc9\x2d\xf4\xe4\x4c\x6a\x4c\xf0\xa9\xf0\xb8\x4e\x86\x3a\x95\xeb\x7e\x6b\x86\x73\xcd\x9d\x25\xf8\xe8\xc7\xa1\x7a\xa6\x1a\x50\xf6\xaa\x3d\x43\x8e\xd9\x90\xb3\x36\x8d\x19\x92\xa4\x23\x7d\xd6\x8e\xfb\x70\xe2\xb4\xdd\x60\x4c\x4c\x3e\xd0\x65\x3a\x3b\xce\x32\x9d\x1d\xee\x7d\x26\x27\x5b\x81\x98\x37\xd6\x0e\xa5\x8c\x4d\xc7\xf4\xc6\xd0\x00\x3b\x5a\x03\x30\x25\xdf\x65\x7f\xab\x1d\x14\x6c\x58\xdf\x25\xf4\xc6\x0d\x10\xc6\x9b\xe3\x42\xf4\xfa\x57\xeb\xb0\x01\xa9\xf8\x7f\x24\xfe\x1f\xb0\xff\x95\x37\x95\x75\xf7\x5a\x0b\x24\x6b\x93\x8b\x24\x76\xa3\xae\x8f\x82\x4c\x97\xc6\xa2\x71\x6f\x2d\x65\x3d\xee\x00\x26\x34\x00\x5f\xcd\x72\x35\xb0\x01\xb5\x06\x18\x7b\x49\x76\xa9\xce\x4a\xa5\xb6\x75\xa9\x7a\xed\xc0\xf4\xf8\x22\xe9\xa8\xd2\xeb\xb3\xc2\xc9\xd4\xed\xf9\x46\xd2\xd1\x79\x78\xc1\x23\xdf\xe1\xb0\xf1\x04\xd3\x19\xc1\xf4\x56\x60\xed\x5a\x65\xb5\x5a\x10\x54\x21\xe9\x68\x35\xf9\x56\x66\x34\x13\x5d\x4b\xae\xdd\x92\xaf\x36\xa5\x87\xe2\x05\x34\x12\xe3\xfe\xa6\x06\xc2\x1d\x90\x49\x34\x1d\x13\x18\x86\x34\x0a\xb4\xd3\x27\x90\x6b\x32\xff\xf5\xe9\x07\x45\x83\xb2\x92\x30\x95\x1b\x67\x5b\xa1\x30\xbe\xa0\xa6\xc0\x5d\xa7\xe7\x28\x8f\x65\x4d\x51\x12\x70\x36\x6b\x19\x9e\xa4\xda\x63\x47\x40\xf3\x53\xe2\xbf\x67\x73\x87\x9c\xde\x96\xc8\x96\x29\x5a\x5f\x31\xb9\x32\xf6\xa5\x3c\xcf\x12\x8c\xd6\x45\x9d\x2d\x1d\x99\x6c\xd8\xe1\x6a\x4b\x1f\xaf\x20\x9c\x58\x0f\x1e\xde\xb1\x5e\x47\xd4\x6b\xd5\xed\x6d\xb4\x06\xec\xd5\xff\x89\xca\xe5\x19\x11\xce\x70\xdc\x47\xc8\xcf\x32\x21\x6d\x78\x7e\x1d\xe2\x48\xe3\xb2\x83\x55\xc6\x05\x22\x5f\x01\xa7\xa3\x01\xe3\x20\x26\x79\xf6\xd2\xf7\x04\xdb\xc9\x96\x2c\xe8\x70\x73\x01\x77\x1f\xca\x4b\x39\x95\x55\x58\xce\x05\x74\xa8\x77\x96\x02\x3a\x5c\xb8\xb5\xe4\x98\xf8\x10\x80\x72\xa9\x72\x6c\x5f\x36\x73\x9a\xe5\x58\xca\x02\x15\xd0\xa1\xb9\x75\xe9\xb4\x8b\x38\x68\xe7\x8e\xe4\x36\xa3\xd3\x0e\x58\x57\xaa\x4c\x32\x0a\xcd\xc5\x65\xb5\x44\x0c\xc3\x7e\xb2\xc5\x71\x6e\x38\xc9\xa1\xaa\xeb\x9a\xce\x6e\xf0\x84\x59\xd7\x4f\x81\x4f\x1f\xb0\x0f\xed\x03\x7b\xf3\x95\xe0\x94\xc5\x85\x48\x4d\x3f\xc0\x85\xc3\xfe\xdd\x31\x7f\x63\x4b\x62\x1e\x32\x7a\xfb\xe6\x8a\xa6\xfc\x74\x51\xab\x5e\x7f\x4c\xe2\x98\x46\x4c\x89\xf1\x8e\x6e\x21\xb3\x60\xbf\x4a\xdd\xcc\x68\xde\x13\xbd\x50\x7d\x4c\x47\x83\x06\x87\xe5\xf2\x07\xac\xd2\x2e\xa2\xc7\x5d\x5e\x73\x25\xa3\xd4\x1e\xb9\x57\xe1\x0d\x5b\x77\xd3\xd4\xa7\x71\x4e\x46\xb8\xe8\x24\x90\x87\xe8\xc1\x1e\xa1\x3f\x1d\x1b\x3b\x18\x90\x8c\x56\xf4\x66\x12\x5a\xba\x93\x95\x6c\x20\x84\x86\x84\x6b\xf5\xa8\x5d\xd1\x25\x56\x4f\xed\xea\x91\x74\xde\xa9\x28\xc7\x20\xd7\x0f\xaa\x2e\x96\xec\x1c\xc0\xc6\x46\x68\xaa\xe8\x20\x1c\x0e\xb9\xf3\x63\x87\x29\x97\x4d\xc4\x41\x5d\x27\x11\x3f\xe4\x4b\x5f\x85\xd5\x8d\xc8\x65\xc6\x08\x82\xb9\xaf\x7a\x54\xd4\x34\xd5\xf4\x6e\xdb\x04\xe7\x7b\xa4\x25\x1e\x51\x32\xa2\xe6\xc2\x30\xcf\xf4\xc6\x97\x32\x04\xde\xc4\x90\xcd\x7c\x9f\x66\x59\x03\x48\x49\xd0\xe4\xfd\x0d\x8e\x14\x3a\x94\x1f\x73\xbd\x25\x66\x3f\xc3\x5a\x60\xd0\x64\xf9\x8c\xbf\xdc\xdb\x2e\x8d\xad\xa4\xba\x39\xc0\x98\xa5\x75\x13\x67\x0a\x53\x3b\xb1\x5e\xd5\xea\xe5\x69\x92\x97\xac\x3a\x4f\x21\xc6\x74\x69\x2c\x07\xc1\xe5\xb6\xaa\xd4\xfb\xbc\x62\x6a\x58\xb5\xd1\x3b\xb4\xa9\x6e\xec\xb4\x17\xa3\xc1\x98\x42\x5e\x9c\xa0\xdc\x3d\xf5\x90\xcd\x05\xf1\x0f\xb5\x1c\x90\x9e\xdc\x85\x96\x93\xd1\x10\x59\x6e\x10\x2c\xdb\x9a\x45\x5f\x7b\x21\x94\x96\x45\x69\xcd\x4b\xaf\xf5\x35\xc7\x3c\x0d\xa7\x53\x1a\x30\x96\xc2\xdd\x30\x7e\xfd\x4c\xdb\x47\x79\x02\x51\x72\x4d\x53\x9f\x64\xe2\x7e\x0f\x63\x11\xde\x0c\x5a\x7c\xe2\xcc\xa1\x21\x26\xb9\x4c\x73\x97\xe9\xae\x1e\x89\xcb\xbc\x06\x96\x79\x82\xab\xbe\x09\x7f\x9d\x8d\xd5\x0c\x68\x1a\x5e\x99\x0f\x88\x67\x79\xe2\xbf\x67\xbd\x13\x1b\xc0\xcd\xfc\x26\x37\x7d\x7b\xdc\x77\x10\xce\xe4\x09\x83\x6a\x67\xe9\x26\x2c\x6e\x0d\x66\xd3\x04\x63\x0d\x54\x10\xce\x9e\x97\xe5\x6c\x57\xbc\x13\xa0\x39\x5f\x0c\x85\xa5\xa5\xd8\x3f\x48\xfc\xaa\xf9\x59\x97\xc0\x4b\x03\x17\xa8\xc9\x62\x1e\x23\x0d\x0f\xaa\xf3\xe4\x25\x1b\x8e\x43\x22\x83\xe8\x7d\xb9\xa6\xf4\xe9\x7d\xb6\x81\xc7\xf7\xb5\x2f\xd0\x60\x15\x77\x9f\xa9\xe1\xe7\x43\x39\x25\x11\xcd\xf3\xf2\x40\x60\x99\x43\xf6\xfd\x2d\x2f\x61\xcf\x0b\xd2\xde\x59\x03\xf0\xce\x71\x63\x8d\xc2\x7a\xef\xf5\xe9\x0b\x68\xef\xad\xe3\x0d\x5e\x00\xa8\x7d\xd5\xc2\x0f\x9b\xd8\xbf\x3a\x3c\x54\x5f\x77\x8e\x1e\xf5\x5a\x7b\x3c\x75\xa7\x87\xa9\xa2\xfc\xf6\xce\xde\x6e\x6f\x07\x73\x1e\xec\xee\xb6\x1e\x3c\xc3\xaf\xad\xbd\x47\x0f\x1f\xf5\xf0\x6b\x7f\xbb\xff\xe0\xf0\x58\x95\xdf\xdd\xdd\x7d\xb0\xbb\x8d\x39\x47\xc7\x9d\x47\x9d\x47\xbc\x7c\xeb\x59\xaf\xcd\x53\x8f\x0f\x8f\x1e\xed\xe8\xf2\x0f\x3a\x8f\x8e\x59\x75\x96\xd3\x69\xb5\x0e\x9f\xc9\xf2\xbb\xcf\xfa\x1c\x0a\xfb\x1c\xd6\x1a\x6a\x97\x8e\x75\x6c\xef\x66\x4f\x50\xcb\x9f\x0d\x78\x68\x95\x52\xf7\xd8\x97\xdd\x63\xf5\xf5\xe1\x03\xf5\xb5\xa7\x53\xfb\x3a\xf5\x58\x23\xc5\x2a\x2a\x28\xbb\xc7\x0a\xca\xee\xb1\x82\xb2\x7b\xdc\xd3\xa9\x7d\x9d\x6a\x41\x79\xf8\x40\x41\x79\xf8\x40\x41\x79\xf8\x40\x41\x79\xf8\xa0\xa7\x53\xfb\x3a\xd5\x82\xd2\xd3\xb8\xf4\x34\x2e\x3d\x8d\x4b\x4f\xe3\xd2\xd3\xb8\xf4\x6c\x5c\xfa\x1a\x97\xbe\xc6\xa5\xaf\x71\xe9\x6b\x5c\xfa\x1a\x97\xbe\x8d\xcb\xb1\xc6\xe5\x58\xe3\x72\xac\x71\x39\xd6\xb8\x1c\x6b\x5c\x8e\x39\x2e\x92\x47\x8e\xd5\x20\xb1\xaf\x02\x0c\xfb\x2a\xc0\xb0\xaf\x3d\x9d\xda\xd7\xa9\x06\x32\x6c\x5c\x14\x14\x35\x48\xec\x8b\x82\xa2\x06\x89\x7d\xed\xeb\x54\x0b\x8a\x1a\x24\xf6\x55\x41\x51\x83\xc4\xbe\xf6\x74\x6a\x5f\xa7\x5a\x50\x7a\x1a\x97\x9e\xc6\xa5\xa7\x71\xe9\x69\x5c\x7a\x1a\x97\x9e\x8d\x4b\x5f\xe3\xd2\xd7\xb8\xf4\x35\x2e\x7d\x8d\x4b\x5f\xe3\xd2\xb7\x71\x39\xd6\xb8\x1c\x6b\x5c\x8e\x35\x2e\xc7\x1a\x97\x63\x8d\x8b\x3d\x48\x8c\x2c\x02\x0c\xfb\x2a\xc0\xb0\xaf\x02\x0c\xfb\xda\xd3\xa9\x7d\x9d\x6a\x20\xc3\x28\xaa\xa0\xa8\x41\x62\x5f\x15\x14\x35\x48\xec\x6b\x5f\xa7\x5a\x50\xd4\x20\xb1\xaf\x0a\x8a\x1a\x24\xf6\xa5\xa7\x53\xfb\x3a\xd5\x82\xd2\xd3\xb8\xf4\x34\x2e\x3d\x8d\x4b\x4f\xe3\xd2\xd3\xb8\xf4\x6c\x5c\xfa\x1a\x97\xbe\xc6\xa5\xaf\x71\xe9\x6b\x5c\xfa\x1a\x97\xbe\x8d\xcb\xb1\xc6\xe5\x58\xe3\x72\xac\x71\x39\xd6\xb8\x1c\x6b\x5c\xec\x41\xea\x69\x49\xea\x69\x49\xea\x69\x49\xea\x69\x49\xea\x69\x49\xea\xd9\x92\xd4\xd3\x92\xd4\xd3\x92\xd4\xd3\x92\xd4\xd3\x92\xd4\xd3\x92\xd4\xb3\x25\xa9\xa7\x25\xa9\xa7\x25\xa9\xa7\x25\xa9\xa7\x25\xa9\xa7\x25\xa9\x67\x4b\x52\x4f\x4b\x52\x4f\x4b\x52\x4f\x4b\x52\x4f\x4b\x52\x4f\x4b\x52\xcf\x96\xa4\x9e\x96\xa4\x9e\x96\xa4\x9e\x96\xa4\x9e\x96\xa4\x9e\x96\xa4\x9e\x2d\x49\x3d\x2d\x49\x3d\x2d\x49\x3d\x2d\x49\x3d\x2d\x49\x3d\x2d\x49\xbd\x82\x24\xf5\xb5\x24\xf5\xb5\x24\xf5\xb5\x24\xf5\xb5\x24\xf5\xb5\x24\xf5\x6d\x49\xea\x6b\x49\xea\x6b\x49\xea\x6b\x49\xea\x6b\x49\xea\x6b\x49\xea\xdb\x92\xd4\xd7\x92\xd4\xd7\x92\xd4\xd7\x92\xd4\xd7\x92\xd4\xd7\x92\xd4\xb7\x25\xa9\xaf\x25\xa9\xaf\x25\xa9\xaf\x25\xa9\xaf\x25\xa9\xaf\x25\xa9\x6f\x4b\x52\x5f\x4b\x52\x5f\x4b\x52\x5f\x4b\x52\x5f\x4b\x52\x5f\x4b\x52\xdf\x96\xa4\xbe\x96\xa4\xbe\x96\xa4\xbe\x96\xa4\xbe\x96\xa4\xbe\x96\xa4\x7e\x41\x92\x8e\xb5\x24\x1d\x6b\x49\x3a\xd6\x92\x74\xac\x25\xe9\x58\x4b\xd2\xb1\x2d\x49\xc7\x5a\x92\x8e\xb5\x24\x1d\x6b\x49\x3a\xd6\x92\x74\xac\x25\xe9\xd8\x96\xa4\x63\x2d\x49\xc7\x5a\x92\x8e\xb5\x24\x1d\x6b\x49\x3a\xd6\x92\x74\x6c\x4b\xd2\xb1\x96\xa4\x63\x2d\x49\xc7\x5a\x92\x8e\xb5\x24\x1d\x6b\x49\x3a\xb6\x25\xe9\x58\x4b\xd2\xb1\x96\xa4\x63\x2d\x49\xc7\x5a\x92\x8e\xb5\x24\x1d\xdb\x92\x74\xac\x25\xe9\x58\x4b\xd2\xb1\x96\xa4\x63\x2d\x49\xc7\x5a\x92\x8e\x2d\x49\x12\xb6\xdf\x28\xa5\x73\x7e\x8e\x9d\x92\xc9\xd4\x30\xfd\x1e\xb2\x3f\x58\xaf\xdd\x61\x7f\xf8\xd7\x43\xf6\x07\xbf\x76\xf6\xd8\x1f\xfc\xba\xdd\x62\x7f\xf8\xd7\x1e\xfb\xa3\x30\xdd\xc1\x0f\xe6\xec\x1c\xb1\x3f\x7c\x72\x7c\xc8\xfe\xe0\x57\x04\xc2\x61\xef\x1d\xb2\x3f\xf8\xf5\xc1\x1e\xfb\xa3\xd5\x3b\x22\xc3\x55\x76\x8f\xfd\xc1\xaf\x8f\x76\xd8\x1f\xfe\xf5\x88\xfd\xe1\xea\x02\x4b\xe0\xd7\x67\x1d\xf6\x47\x41\x79\x76\xc8\xfe\x60\x0e\xb6\xc4\x71\xef\xb7\xd8\x1f\xfe\xb5\xc7\xfe\xe0\x57\xc4\x95\xc3\x46\x8b\xf9\x08\x9d\x93\x2f\xea\xf6\x3a\xc3\x9f\xa5\x29\x55\x5b\x5a\x62\xa5\xd1\x90\x51\x85\xe6\xfc\x2c\x63\x96\xd1\x14\xf7\xf1\x46\x8e\x53\x02\xbf\x72\x01\x52\x5a\x9f\xd8\x57\x64\x02\xe9\x0b\x47\x7c\x3f\x49\x03\xe1\x90\x60\xad\x7d\x4b\x0b\xdf\x72\xcb\xaf\x45\xf0\x09\xb6\xf4\x5c\x27\x51\xe8\xd3\x41\x34\xa3\xeb\xfb\xe8\x57\xed\x75\x76\x5a\x0d\xe8\xec\x3c\xe4\xae\xaf\xeb\x0d\x2c\x14\xe7\xe1\x9f\x67\xf4\x7a\x1c\xe6\xba\xdc\x2e\x2b\xb7\xbd\xdb\x80\x4e\xdb\x55\xae\xad\x0b\xb2\x32\xdb\x8f\x58\xc1\x47\x8e\x82\x1d\x55\x70\x9b\x35\xda\xd9\x6e\x40\xa7\xb5\xe3\x28\xb8\xad\x0a\xb6\x76\x1b\xd0\x7e\xd4\x69\x40\xfb\xc1\x9e\xa3\xe0\x8e\x2c\xd8\x66\xad\xb6\xb7\xdb\x0d\x68\x77\x5a\xb2\xe0\x9f\x67\x64\x42\xd2\x30\x56\x3d\x69\x77\x1e\x60\x67\x19\x82\x9d\x52\xa9\xf6\x6a\xc5\x54\x2f\xda\x6d\xd6\x0b\xd6\x95\xf6\xa3\x87\xa5\x62\xaa\x0f\xed\x56\x87\xf5\x93\x75\xe4\x41\x19\x35\xd5\x83\x3d\xec\x00\xfb\xab\xad\x7a\xfa\x97\x59\x5a\x18\x2d\x44\x4a\x8f\x16\x2b\xd0\x5e\x5a\x42\xd3\xbd\xb3\x23\x30\xee\x6c\x3f\x34\x4b\x68\x64\x1f\x6d\x0b\x64\x3b\x2d\x0b\x86\x41\xe9\xb6\x44\x74\x5b\x0e\xf2\x80\x86\x23\x03\x51\x56\x1b\xff\x52\x43\x31\x08\xb3\x3f\x1b\x8c\x87\x38\x76\x90\x70\x7b\x56\x89\xf6\xf2\x22\x05\x26\x6a\x6f\x37\xa0\xfd\x70\xdb\x2a\x52\x60\x9f\x87\xac\xc8\xee\x43\xab\x48\x81\x71\x3a\xac\x5c\xeb\x81\x2c\x12\x11\xff\xbd\x2c\xd0\x6a\x00\xfb\x4f\x67\xc5\xfe\x98\x06\x24\x9a\x24\x71\x50\x60\x7c\x8b\x6a\xa6\xa4\x71\x18\x7a\x54\x58\x5e\x7b\x51\x66\xa7\x90\xa9\x46\x8b\x65\x6e\x17\x32\xad\x26\x77\xec\x4c\x63\x8c\xa2\x19\xbd\x0a\x93\x88\xe6\xba\xeb\x0f\x1b\xb0\xc3\xc6\xbb\xa3\x48\x9c\x26\xd7\xb1\xca\xdf\xdb\x6d\xc0\x4e\x87\xfd\x6f\x66\xdb\x63\xb4\xb7\xc3\xfe\x37\xf3\xed\x01\xda\x7d\xc4\xfe\x37\xf3\xed\xd1\xd9\x6d\xb3\xff\xcd\x7c\x7b\x68\x18\x51\xb7\x55\x07\x67\x69\x34\xbf\x4e\x12\x4d\xf8\x0e\x53\x0d\x0f\x77\x58\x47\x4b\x85\x0a\xcc\xd4\x66\x7c\xbb\x5b\x2a\x65\xa3\xdb\x7e\xf4\xe0\xff\x67\xef\xdf\xbb\xdb\xb8\x91\x84\x71\xf8\x7f\x7f\x0a\xd8\x4f\x36\x24\x6d\x8a\x12\x65\x59\xbe\x64\x94\x79\x34\x8e\x33\xeb\x3d\x8e\x93\x8d\x9d\xcd\xbb\x47\xd1\x78\x41\x36\x48\x76\xd4\x6c\x30\x8d\x6e\x49\x9c\xd8\xef\x67\xff\x1d\x54\x15\x80\x02\xba\x79\x71\x92\x99\x9d\x99\x27\x73\xc6\x8a\xd4\x5d\x8d\x46\x17\x0a\x85\xba\xd7\x50\x8c\x4f\x5a\x50\x09\x49\x3d\x3e\x02\xa2\x49\xa1\x12\xaa\x1a\x3f\x1a\x8a\x27\x0e\x68\x2a\x33\x55\x73\xa2\x78\xfa\x08\xc8\x72\x28\xc6\xa7\x47\x29\x4c\x60\x45\x8f\x8e\xdd\x66\x7a\xd4\x1a\x29\x70\x22\xbb\x4a\xc7\xc7\x4f\x39\xa5\x78\xa8\xb0\xb7\x01\x59\xf6\x03\x03\xc9\x78\x28\x3f\x75\xd8\x2d\x0f\x4f\x38\xe9\x4c\x17\xb2\xaa\x2b\xd5\x98\x0e\x46\x7a\xd4\x82\xe9\x60\xa3\x6d\xa0\x0e\x26\xda\x06\xea\x60\xa1\x6d\xa0\x36\x03\x0d\x30\x7a\xaa\x0b\xc9\x0e\xb2\xb1\x5d\x36\x3b\xcc\xc3\x16\x4c\x4c\x2c\x30\xf5\x87\xa7\x29\x50\x42\x2b\x76\xea\x0f\x1f\xa6\x40\x09\xa9\xc0\xd4\x9f\xa6\x40\x31\xa5\xc0\xd4\x3d\x8c\xae\x64\xd1\x9e\xcd\x93\x23\x7e\x3f\x99\xee\xf8\x64\x28\x9e\x9c\x72\x80\x64\xaa\x47\xa7\xe9\x08\xf1\x34\x9f\x8e\xed\x2c\xf8\xfd\x64\x86\x96\x0d\x3c\x0e\xf7\xcb\x19\x58\xff\x39\x3d\x8f\x8f\x2c\x76\x4f\x80\x08\x39\xa4\xc9\x8b\xab\x78\x27\x82\xc8\x71\x7c\x94\xc0\x8c\xf7\x01\x4a\xb8\xff\xc3\xe3\x88\x98\x09\x28\xfe\xb4\x63\x98\xd7\xe3\x74\x4a\xa9\xe8\x70\xca\x45\x87\xe9\x5a\x96\x8c\x91\x26\x87\xaa\xbd\x3b\xde\x7e\x9b\x33\xf0\xe4\xc0\xb5\xb7\x39\x0b\x4f\x4e\x5b\x7b\x9b\x33\xf1\xe4\xa8\xcd\x64\x75\xd5\x3e\x5a\xe2\xfb\xc9\xec\x3b\x46\x98\xeb\x22\x53\x65\x15\x18\x29\xf1\x50\xfb\x63\xdc\x05\x97\xd0\xdb\x13\xe0\x5d\x5d\x80\x09\xdd\x3d\xb6\xdc\xe4\xa4\x0b\x30\xd9\x26\x27\x70\x0c\x77\x01\x26\x0b\x75\x34\x1e\x8a\x27\x1c\xae\x92\xeb\x70\x62\x59\x08\xfa\x11\xc1\x28\x15\x61\xe4\x88\x1d\xe9\x04\xb0\x73\x90\xab\x85\xbc\xca\x03\xbe\x9e\x3a\xc9\xc2\x8b\x0d\x16\x68\x29\xe7\xaa\xac\x65\x34\xe5\xd6\xfa\xe8\x22\xbf\x56\xd1\x9c\x9e\xa0\xfc\xc1\xf6\x58\x0c\x17\xd0\x0f\xec\x04\xf7\xfc\x71\x27\x68\xe0\xac\x4f\xbc\x78\x7a\x74\xd2\x09\x1a\xf8\xeb\xa9\xe3\xaf\x4f\x8f\x3a\x21\xc3\x1a\x8c\x1d\x41\x9d\x72\x3a\xd1\x95\xd5\x7f\x62\x1a\x39\x49\x70\x8c\x30\x1d\x7c\xb6\x0d\xd4\xc1\x67\xdb\x40\x1d\x7c\xb6\x0d\xd4\xe6\xb3\x31\xcc\x74\x91\x87\x3d\xf0\xe8\xe1\x50\x80\xae\x13\xe3\x0b\x80\xc2\xa9\x06\xac\xf2\x98\x6f\xf8\x00\x15\x90\xff\xd8\xca\x3e\xd1\xbe\x0f\x50\x01\xef\x8f\x4e\xdc\x1b\xdb\x63\x85\xa9\x1f\x9d\x0c\x45\x7c\x22\x5b\xa8\x4a\x65\x29\x99\xf1\x6f\x33\x20\xa2\x06\x44\x82\x10\x0c\x62\x0b\xa7\x1b\xa3\x64\x44\x88\xe3\x13\x90\xa7\x2d\xd6\x4f\x1e\x76\xc0\x8d\x63\x45\x01\xd6\xf0\x69\x17\x20\x23\x43\xc7\x02\xc7\x4f\x8e\x3a\x00\x19\x32\x1e\x39\x3d\x29\xc2\xac\x03\x64\xf8\x78\xe4\x98\x5a\x84\x36\x63\x0f\x56\xce\x1b\x1f\x1f\x5b\x32\x4d\xf1\x06\x60\x9c\x6b\x9c\x3c\x1e\x8a\xc7\x4f\xed\xbf\x2e\x28\x26\x8a\x8d\x5b\xac\x3e\x82\x64\xe2\xd8\xb8\xc5\xf5\x23\x48\x26\x92\x8d\x5b\x07\x40\x04\x19\xc4\xb2\xe3\x4e\x46\x4e\x80\x6a\xfb\xc7\xd4\x4d\xf5\x53\xa3\x73\xa3\xa2\x63\xe7\xd4\xfe\xe0\x60\x89\x7a\x60\x4f\xe0\x23\x10\x9c\x1d\x8c\x9a\xe4\xb2\x64\x74\x77\x6c\x25\x5c\x2b\x9b\x04\x08\xb5\x5a\xe5\x65\x72\xde\x83\x5c\xf0\x38\x01\x19\xef\x01\x93\xf0\x01\xfb\xef\x61\x0a\x93\xb0\x81\x53\xe0\x17\x09\x4c\x7a\x84\x30\x59\xc8\x82\x98\xab\x75\x72\xa4\xc2\x26\x67\xcb\x1c\x80\xc6\x7b\x41\xf1\xe3\x1f\x58\x01\x23\x84\x00\xc5\xa5\x00\x60\x05\x8c\x08\x02\x54\x24\x0c\x1c\xc5\x6c\x20\x5f\x46\xc7\x1f\x32\xc2\x47\xd1\xc6\xb0\x20\x6a\x3b\x88\xce\xe6\xb1\x28\xf7\x10\x56\xe3\x24\xfa\x38\x0f\x34\xde\x0b\x2a\x2c\xdd\x13\x12\x2c\x18\x0a\x3c\x54\x58\x3c\x90\x3c\x4e\x23\x14\x78\xa8\xb0\x7c\xa7\x43\xf1\xf8\x09\xc7\xc0\x2c\xaf\xd4\xa4\xca\x83\xba\x0e\xd8\x7e\x08\x0c\x33\x05\x89\x29\xce\x52\xf7\xc9\x93\x14\x26\xa6\x38\xfb\x71\x27\xad\x71\x62\x8a\xb3\x70\x0f\x5b\xe3\xc4\x14\x77\x6c\x3f\xcc\x89\xe7\xb3\xc2\x8a\xd7\x89\x85\x0d\xb8\x0a\x98\xe3\x1c\x61\xce\x74\xa5\x4c\x1d\x31\x67\x3a\x03\xd8\xb7\xcd\x65\x5e\x9a\x89\xae\x74\x50\x88\x8f\x40\x6c\xe6\xb2\xf3\x7c\xa1\x4d\x1d\xbf\x0f\x84\xeb\xd8\xf2\x67\xe5\xad\x44\x61\x66\xfa\x96\xbd\x9b\xea\xd3\xc9\xed\x44\x34\xb7\x72\x1a\xbf\x9d\x6a\xd0\x0f\xe3\xdb\xa9\xea\xfc\x38\xbe\x1d\x09\xab\xc7\xc0\x09\x4e\x2d\xf2\x8f\x53\x98\x44\xbe\xb0\xa7\x94\x67\x19\x9b\x84\x54\x7b\x42\x05\x94\x6e\x10\x50\xe1\x9b\x9f\xa6\x40\x29\x67\x01\x56\xe6\x80\xf8\xd6\x7c\x0a\xfc\x02\x7f\xb0\xfb\x47\xb1\x1c\xcf\x6f\x85\x7d\x36\x14\xf6\xff\xfc\x96\x7f\x0c\x29\x8b\x51\x17\xde\x3e\x4a\x28\x2b\x3a\xb4\x00\x64\xcc\xf7\x27\xfe\xe3\xb7\x3d\x86\x1e\x8e\x87\x02\xff\xf1\xdb\x1e\x37\x56\xac\xc0\x7f\xfc\xb6\xc7\x8a\xd5\xaa\xf0\x1f\xbf\xfd\xc8\xdf\x7e\x92\xec\x1f\xb8\x7d\xea\xcf\xb2\xf1\x50\xe0\x3f\x7e\xfb\xb1\xbf\xfd\x10\xcd\x57\x27\xd1\xbb\x9f\xf8\xdb\xa7\x43\x81\xff\xf8\xed\xa7\xfe\xf6\x93\x84\x07\x44\x47\xf8\xa3\xa1\xb0\xff\xe7\xb7\x3c\x4e\xd1\x64\xc5\xcc\x56\x70\xdb\x23\x14\x64\x3a\xf8\xc7\x6f\x87\x91\x4f\x87\x02\xff\xf1\xdb\x1e\xa1\x68\x2f\x63\x36\x33\xb8\x1d\x8c\x1c\x63\x14\x69\x4e\xa3\x77\x7b\x84\xa2\x35\x8e\x59\xe4\xe0\xb6\x47\xe8\xe9\xe9\x50\xe0\x3f\x7e\xfb\x31\xb7\xa0\xe0\x3f\x7e\xdb\x23\xf4\xf1\x78\x28\xf0\x1f\xbf\xed\x11\xfa\xf8\x64\x28\xf0\x1f\xbb\xed\xbf\xeb\xc9\x50\x3c\x09\x8a\x1b\xdc\xf2\x08\x7d\x6c\x65\x16\xf8\xc7\x6f\x7b\x84\xa2\x38\xc3\x44\x1a\xb8\x7d\xcc\x25\x23\xfc\xc7\x6f\x87\x17\x9f\x0c\x05\xfe\xe3\xb7\x83\x5c\x65\xc5\x17\xf8\xc7\x6f\x7b\x84\x5a\x35\x0f\xff\xf1\xdb\x1e\xa1\x4f\x8f\x87\x02\xff\xf1\xdb\x1e\xa1\x4f\x4f\x86\x02\xff\xf1\xdb\x1e\xa1\x4f\x1f\x0f\x05\xfe\xe3\xb7\x3d\x42\x9f\x3e\x1d\x0a\xfc\xc7\x6e\x33\x29\x18\x25\x99\x31\xe7\x19\x27\x47\xe1\xf6\x31\x29\x45\xe3\x23\x3e\xb9\x93\xf1\x36\x51\x00\x20\x82\x1c\x6b\x35\x52\xf7\x83\x43\x3c\x8c\xd5\x41\xfa\xc1\x21\x98\xc2\x78\x0c\xba\x2a\x57\x58\x01\xe2\x51\x80\x78\x44\xb6\xd2\xf1\x38\x9a\xc7\x69\x80\x78\x4c\x47\xc2\x78\x1c\xcd\xe3\x71\x90\xa3\x41\xb3\x39\xe2\x36\x1c\x80\x78\x12\x20\x8e\x41\xf7\xe1\x0a\x10\x40\x3c\x0d\x10\x8f\x9c\x27\xe0\x98\xcf\x23\x4c\x14\x2c\xa3\xf6\x1f\xbf\x1b\x30\x6e\x75\x59\xf7\x83\x43\x04\x8c\x83\xc4\x44\x3f\x38\x44\xc0\x38\xa8\x69\xf4\x83\x43\x04\x8c\x3f\x04\xe5\xe7\x11\xb7\x78\x03\x04\x3b\x89\x40\x42\xc2\x1f\x1c\x22\x7c\xc8\xc9\x11\xe9\xe7\xe3\x93\x68\x1e\xa7\xb1\x1a\x48\x3f\x38\x44\xc0\xf8\x09\xe8\xf8\x8f\xb8\xb5\x1c\x20\x9e\x44\xfa\x83\xfb\xc1\x21\x02\xc6\x41\x1f\xa5\x1f\x0c\x22\x4c\x03\x0e\x5e\x66\x6a\x82\xbb\x47\x91\xc2\xee\x7e\x70\x08\xa6\xb3\x59\x7d\x80\x7e\x70\x88\x80\x71\xb0\xc0\xd3\x0f\x0e\xc1\x8c\x23\x56\x85\xa4\x1f\x1c\x82\x89\xa5\x76\x0a\xf4\x83\x43\x04\x8c\x5b\xae\xeb\x7e\x70\x88\xf0\xa9\xa7\x20\xd3\xe0\x0f\x0e\x11\x30\x6e\x79\xaf\xfb\xc1\x21\x02\xc6\xc1\xda\x46\x3f\x38\x44\xc0\xf8\xe3\x53\x70\xa5\x72\x7f\xaa\x85\x08\x2f\x71\x7a\x16\x9f\xc3\xe3\x80\x71\xcb\x87\xdd\x0f\x0e\x11\x30\xfe\xc4\x4e\x90\x7e\x70\x08\x66\x10\x38\x71\x3e\x9b\x88\x27\x3f\x0e\x18\x7f\x62\x27\x48\x3f\x38\x44\xc0\x38\x9a\xdf\xf0\x07\x87\x08\x18\xb7\xba\x99\xfb\xc1\x21\x02\xc6\x2d\x67\x76\x3f\x38\x44\x40\xc6\xd3\x53\xf0\x3f\x72\x27\x24\x40\x04\x8c\x3f\x05\xcb\x3d\xfe\xe0\x10\x4f\x83\xf0\x38\x26\x61\xf8\xf8\x88\xcf\xe3\x49\x00\x40\xed\x37\xe2\x5b\x4f\x82\x00\x77\x04\x7a\xe1\x09\xb7\x4a\x01\x04\x33\x09\x82\x47\x07\x7f\x70\x88\x20\xe5\x1e\x3d\x05\x55\x9f\xeb\xfb\x00\x11\x44\x5c\xcb\xa0\xdd\x0f\x0e\x71\x12\x20\xec\x14\xe8\x07\x87\x78\x14\x20\xec\x14\xe8\x07\x87\x38\x0d\x10\x18\x1a\xc0\xe3\x03\x00\xe2\x71\x50\x5f\xc0\x91\x85\x3f\x38\x44\x40\x17\xb8\xb0\xe9\x07\x87\x08\x18\x07\xb7\x13\xfd\x60\x10\x01\xe0\xa1\x55\x46\xed\x3f\x7e\x37\x60\x1c\xfc\x68\xf4\x83\x43\x04\x8c\x83\xdb\x81\x7e\x70\x08\xa6\x57\x78\x87\x70\xc4\xa5\x9f\x06\x8c\x3f\x7c\x0c\x8e\x12\xee\x2d\x01\x88\x80\x71\x0c\xcf\x88\x94\x42\x80\x08\x18\x07\xb7\x1f\xfd\xe0\x10\x01\xe3\xc1\x17\x1f\x71\xe9\xa7\x01\xe3\x27\x76\x0a\xf4\x83\x43\x04\x8c\x83\x5e\x4a\x3f\x38\x44\x40\x28\x38\x29\xe9\x87\x87\x88\x4d\xee\x91\x1f\x30\x36\x25\x76\xde\x6d\x39\x50\xa2\xbb\x2d\xff\x49\x74\xb7\xe5\x3e\x89\xee\xae\x55\x51\xe8\x9b\x88\x67\xa2\x41\x20\x7c\xbe\xda\xa1\xb7\xa9\xcd\x7a\x9b\xda\xac\xb7\xa9\xed\x7a\x9b\xda\xad\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xac\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xcd\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xaa\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\xad\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xaa\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\xad\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xaa\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\xad\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x1d\x7a\xdb\x42\x97\x6a\x9d\xa9\x9b\xf8\x6b\x30\x22\xef\x28\x81\xe9\x8a\x3c\x6f\x01\x75\x05\x9f\x7b\x0a\x70\x40\x1d\xf1\xe7\x21\xac\xc4\x01\x75\x86\xa0\x8f\x3d\x50\xdd\x0a\x3c\x40\x21\xe9\xc9\x51\x0c\x92\x86\x4e\x1e\x75\xc0\x74\x44\x4f\x8e\x4f\x1f\xc7\x30\x49\x00\xe5\x29\x38\xc3\x63\x90\xd8\x3b\x68\x0f\x2b\x9f\x28\x90\x97\x59\x12\x4b\x01\xa3\x70\x99\xd4\x83\x24\x33\x86\xd9\x1c\x9d\xa6\x50\xf1\x9c\x23\x01\xd4\xc3\xc4\x73\x7e\xc2\xe3\x93\x3d\x4c\x7b\xd2\xfe\x80\xcd\xaf\x75\xb5\xee\x50\x51\xfd\xa2\x03\xc0\x78\x27\x44\x1a\xc5\x19\xd1\x04\x40\xa4\x21\x9c\x11\x41\x00\x44\x1a\xbf\x19\x51\x43\x14\xab\x87\xd4\xf9\x30\x12\x9b\x00\x20\x8d\x38\x3d\xe5\x62\x13\x40\xa4\x13\x3d\xe2\x02\x1e\x40\xa4\xa9\x2a\x4f\xb8\x38\x0c\x10\xe9\x44\xad\xaa\xe5\x10\x5a\xc8\x6b\x55\x66\xaa\x0a\xaf\x71\x53\x0d\x7b\xd6\xc1\x4c\x8a\xc6\x2c\x92\x19\x1f\x71\x06\x11\x01\xa6\xdf\xb6\x19\x32\xcd\xca\x39\xe1\x0c\x34\x82\x4c\xbf\xf5\x21\x84\x93\x77\x41\x76\xe5\xe5\x78\x0f\x7b\x21\x6f\xca\x38\xe8\x0c\xde\xf9\x88\x05\xf0\x15\x6a\xa9\xcb\xe9\x22\x9f\xcd\x58\x08\x5b\x08\x92\xf0\x7a\x0f\x87\x4b\xc9\x6e\x23\x60\xba\xa8\x0f\xb9\xac\xc1\x01\x53\x22\x04\x51\xb2\x6b\xc4\xf4\x73\x1f\x73\xad\xa9\xc8\xe7\x8b\x28\xf0\x1f\x4d\x4e\x10\xec\xe2\xd5\x09\x0f\x14\xc7\x19\x62\x32\x95\xb7\x00\x79\xa8\x38\xce\x10\x33\xa9\xbc\xd2\xe0\xa1\xe2\x38\x43\x48\xa3\x62\x18\x71\x50\x71\x9c\xa1\xe3\xad\x1c\x2a\x8e\x48\x07\xfd\x03\xa2\x7a\x8e\xa3\x37\xf2\xa8\x63\xa4\xa2\xd8\x7c\xe5\x81\xc6\x7b\x41\x25\x52\x50\x1c\x4d\xe7\xa1\x98\xec\xd9\x0e\xa5\xf6\x50\x27\xb1\x36\x19\x87\xd1\x01\x54\x3b\xc6\x04\x37\xc3\x98\xeb\x7c\x31\x64\x9a\xf6\x76\xba\x79\xd0\x74\x8b\x1d\x6d\x1e\x35\xdd\x63\x47\x2d\x52\xda\x14\x7b\x62\x25\x1f\xaf\x1c\xc4\x90\xb1\xc9\x93\x09\x06\xe3\x78\x12\x2c\x60\x05\xd2\x65\xdc\x8f\x18\x28\x0a\x17\x75\x67\x7a\x38\xfb\x1c\xd4\xee\xa1\xda\x07\x36\x44\x39\x7a\x3e\xef\x81\x92\x03\xf0\x31\xe8\x20\x8f\x52\xa8\xe4\xd0\x3e\x3d\xe6\xfa\x94\x87\x4a\xe3\xce\x31\x69\x21\x85\x8a\x71\x0b\xa9\x3a\x47\xd1\xdc\x93\xf0\x5a\x98\xd7\x69\x14\x5e\xcb\xc0\xc6\x7b\xc2\x25\x5f\x00\x31\xf1\xe3\x93\x36\x5c\xf2\x0d\x76\xe5\x9f\x3e\x69\x83\xc5\x1f\xf1\xe4\x31\x33\x20\x22\x54\x12\xfc\xfb\xf0\x98\xa2\x15\x43\xa2\x22\xc2\xc5\xf1\x91\x63\x4c\x74\x3b\x8d\x0e\x29\x06\x37\x8e\xb4\xd6\x63\x30\x73\xc7\xfb\x3b\x8d\x92\x1c\x9f\x9e\x38\x0a\x89\xb7\x78\x1a\x28\x09\x91\xb5\x40\x25\xc9\x2e\x4f\x63\x25\x41\x1c\x3b\x7e\xd8\xda\x92\xad\x18\xe1\xf1\x43\x67\xe7\x4a\xe7\x98\x86\x09\x8f\xc7\x3e\x4f\xe4\xd1\xc3\x0e\x48\xb5\x07\x64\xad\x54\x11\x1f\x05\x4e\x53\x3d\x4e\xe8\xc1\x41\x26\x91\xff\xc7\x6d\x66\xe9\x41\x93\xc8\xff\xf1\x51\x1b\x9d\x0e\x34\x8e\xfc\x07\xb5\x3f\x45\xa8\x03\x4d\x42\xff\x3b\x70\x9a\x72\x17\x2f\xf4\x1d\x9f\xb4\xc1\xba\x84\xc3\x2e\xb8\x2e\x11\xf1\xa8\xe3\xb5\x5d\x82\xe2\x93\xa3\x36\x5c\x97\xb8\xc8\x50\xbe\x8c\xf3\x31\x1e\xb9\xc3\x84\x11\x78\xa9\xca\x98\x83\x92\x58\x49\x00\x49\xe6\x07\x7a\xb4\xf8\x62\x11\xc0\x78\x27\x44\xfc\xe9\xd1\x2a\x12\x44\xfc\xd1\x91\xa0\x43\x10\xf1\xe7\x46\x19\x28\x4b\x59\xe9\xc0\xb9\x80\x02\x4f\xac\xc2\x70\x1a\xdd\x8f\xa7\xf9\xe8\x98\x5b\x8e\x10\x22\x09\x95\x7d\xc2\x55\x24\x84\x88\xa7\x09\x5b\xd7\x9f\x12\x08\x91\x84\xc9\x72\x05\x69\xa9\xb2\xbc\x59\x76\xe4\x70\x77\xa4\x53\x23\x6c\x47\xc6\x6d\x40\x0b\x40\x24\xf9\x1e\x4f\x4e\x51\x07\x0a\xc7\x12\x07\x8b\xc5\x94\xf1\x51\xc4\x22\x38\x60\x2c\xa9\x3c\x7d\x14\x2d\x18\x83\x8b\x65\x95\x98\x89\x71\xb8\x58\x5a\x79\xf4\x28\x5a\x3c\x80\x5b\x35\xd5\xaa\x08\x18\x39\x79\xec\x58\xd8\xb8\x0b\x8e\xf1\xe3\x31\xd9\xb1\xd3\x0f\x41\x40\x66\x5c\x85\xed\x31\x6e\x7f\x09\x02\x32\xab\xf6\x63\x0a\x4a\x4f\x3f\x05\x01\x03\x3f\x7e\x88\x3e\xa8\xf4\x4b\xd2\x23\x08\x8e\x46\xb0\x53\x7a\x6b\x3d\x01\xb6\x18\x37\x70\xa2\xa3\x93\xf6\x1c\xcd\xaa\xca\xcb\x79\xdb\x01\x8d\x51\xf6\x11\x68\x2b\x31\xe2\xf1\xb1\xb7\xb8\xc5\x90\x98\x1b\xc1\x73\x6e\x9e\x82\x3d\x8c\x2b\x84\xcb\x3c\x2b\x53\x61\x1f\x19\x36\x17\xe2\x96\x79\x59\x4f\x2b\x25\x97\xb1\xb1\x87\x94\x16\x0f\x64\xea\x75\xa5\x4d\x47\xce\xfc\xb1\xf7\x72\x78\xa0\x8e\xb4\xf9\x0e\xa8\x8e\xcc\xf9\x20\x00\x7a\xa8\xae\xe4\x79\x6f\x11\xf6\x50\x5d\xf9\xf3\xde\x2e\xb7\xd4\xd3\xa9\x34\x79\xd9\x9e\x55\x18\xa9\x94\xd7\xf2\x47\xdd\x11\x05\x7f\x1c\x89\x6d\x0c\x2c\xfd\xc8\x4d\x70\x69\x1c\xfa\x63\xee\x00\x60\x70\x69\x40\x7a\xa4\x14\x30\xb8\xf4\x53\xc7\xcc\x2f\x58\xca\xeb\x75\xcc\x72\x82\x52\x64\xef\x75\x64\x6a\xfa\xfb\xba\xc8\x0a\x39\x65\x5f\xff\xd0\x99\xfc\xfc\x99\x02\x09\x78\x59\x25\x27\x81\xf9\x41\x7a\xfa\x31\xcb\x89\xf7\x30\x4c\x73\x74\x39\x82\xa7\xc7\x29\x10\x53\x1c\x9d\x56\xf5\xe8\x49\x0a\x14\xeb\x8d\xf1\x39\xe8\x81\x3a\xd2\xb1\xbc\x86\xdf\x95\x0e\x78\xca\xa2\x34\x3a\x53\x01\xdb\x00\x89\x38\x6c\x27\x13\x03\x24\x4b\xf8\xf0\x61\x0a\x90\x88\xf1\x47\xe9\x7d\x6e\x7f\x03\x84\x3d\xed\x80\x18\xef\x06\x89\x67\x7a\xda\x9a\x68\xcb\xf4\xf6\xa8\xf5\xb1\x2d\xcb\xdb\xc3\xc7\x1c\x84\x1f\x5c\x98\xff\x80\x0c\xff\x24\x82\x48\x50\xfa\x70\xcc\x79\x4a\x7a\x5a\x01\x52\xc1\x66\xef\x39\x58\x72\x50\x1d\x7b\x57\x73\x70\x82\xa4\x67\x94\x9d\x2a\x72\x76\x77\xf8\xaf\x64\xa1\x36\xe8\xd3\xa8\x61\x1c\x71\xc0\x48\x9d\x44\x5b\x34\x14\x6a\x38\x4e\x81\xc6\x31\x55\xc2\x07\x7a\x76\xee\xa1\x8e\xb7\xa9\xa6\x1e\xea\x61\x6c\x7a\x42\x2d\xaa\x05\x15\x82\x0d\x5c\xe2\xcd\x13\x0e\xd3\x3a\x3c\xc6\x8f\x1f\xb5\x2c\x15\x11\x20\xf3\xb6\x3d\x6e\x59\x3e\x22\x48\xb6\x4f\xdb\x25\x5b\x22\x48\xb6\x59\xdb\x16\x90\x08\xf2\x24\x12\xa1\x12\x2b\x88\x85\x6c\x9d\x71\xe0\xf3\xc1\x20\x80\x93\xc7\x5d\x80\x29\xbd\x1d\x71\x27\x67\x04\x99\x92\x1d\xac\x71\xe7\xcb\x53\xea\x3b\x49\x69\xcb\x43\xb6\x89\xd0\x9b\x0e\x56\x72\x25\xd7\xf2\x66\x91\xaf\x12\x2b\x0d\x1c\xda\x1e\x4a\xc9\xe9\x62\xd5\xcc\x66\x31\x10\x3a\x52\x1f\xa5\x40\x69\xfe\x53\x37\x54\x7a\xfc\x44\x5e\x5d\x0f\x95\x1e\x3e\x8f\xb8\x15\xc2\x43\xa5\x49\x51\x4f\xb9\x19\x62\xa5\xaa\xa6\xcd\xff\xbc\x23\xbb\x6d\x5c\x41\xfb\x1f\xbf\x9f\x66\xf5\x8f\xb9\x41\xb7\xcb\xa4\xf2\x94\x3b\x7f\xbb\xac\x29\x8f\xb8\x3f\xbe\xc3\x90\x02\x5f\xe0\xef\x17\x4d\x10\x82\x80\x22\x4e\x21\x71\x6d\xcc\xee\xa7\x53\x7c\x1c\x6d\x99\xa2\x59\xa6\x05\x07\x22\x81\xd0\x02\xa4\x79\x5c\x91\x5e\x60\x01\xd2\x1c\xae\xe3\x68\x5f\xe8\x9b\x2c\xa9\x73\x81\x56\x8d\x13\x7e\x50\x27\x02\xb9\xfd\x0c\x70\x33\x9e\xc4\x00\x8c\x85\x51\x06\x22\xfb\x96\x44\x04\xb7\xa8\x3c\x89\x3f\x26\x91\xbd\x8f\x29\xfb\x90\x7d\x4d\x2c\x74\x83\x6e\x13\x99\x25\xd3\xf3\x8e\x1d\x88\xad\xdd\x1c\xdf\x6b\x29\xa5\xec\x5e\x4b\x1d\x65\xf7\x5a\x8a\xa8\xbf\xa7\xcd\x3a\x2e\x37\x44\x59\xe7\xdc\x09\xe3\x81\x3a\xd2\xfa\x82\x9d\xd0\x43\x75\xe4\xf5\x05\x63\x80\x87\xea\x48\xec\x0b\x19\xe7\x1e\xaa\x23\xb3\x2f\xc4\x5b\x55\x7a\x2d\x23\x43\xce\xa9\x3f\x28\x8f\x5b\x30\x63\xae\x5c\x60\xbd\x9b\x47\x2d\x20\x3f\xf5\xd3\xc7\xe4\x94\x0c\x0b\xef\x81\x42\xb4\xe1\x13\x52\x34\xdb\x33\x0a\x31\x9c\x4f\x51\x12\x09\xab\x6f\x64\x96\x15\x2a\x46\x7a\xab\xfc\x4c\x6a\xd8\xf4\xd6\x7e\x2f\x6a\x74\xda\x34\x4f\x8e\x38\x7e\x3a\xcd\x99\xf6\x74\xf0\xea\x7d\xa7\x21\xd3\x9e\x34\x4f\xe2\xd7\x24\x3c\xfe\x74\x28\x1e\x3d\xf6\x00\x65\x16\x93\xd0\xb1\xdd\x30\x60\x4c\xf4\xd6\x8c\x54\xc1\x3c\x39\x75\x47\xf9\xe3\x04\x62\xcc\x4f\x7b\x12\x2f\x9e\x26\x30\xfe\x8b\x1e\xfb\xda\x1a\x3e\x46\xaa\x55\xd0\xe0\xf4\xb1\x17\x2d\x52\x98\x93\xad\xd3\x31\x0b\x55\xc4\x15\x80\x48\x2f\x78\x92\xc0\xa4\x4e\xbe\x4e\xa0\xd4\xf9\xf0\x94\x1b\x1b\x1d\x50\xea\x76\x78\xcc\x7d\x62\x0e\xa8\xc3\x93\x19\xdc\x18\x26\x57\x65\x29\x23\x16\xf8\xe4\x78\x28\xbc\xcf\x11\xef\x77\x08\x0c\x5e\x5e\x40\x88\x0e\x41\xc1\x5b\xad\x11\xa2\x43\x40\x08\x34\x01\x10\x6d\xc1\x20\x60\x65\xa3\x2d\xdb\x6b\x54\x2d\x33\x36\xb3\x77\x27\x30\x81\x5d\x03\x9f\x85\x13\x36\x7d\x15\xab\x62\xf5\x84\x82\xc9\xc2\xb6\x4d\xed\xd6\xe0\xda\x18\x47\x27\x50\xdb\xf2\x61\xa7\xf2\x34\x3a\xc6\x3c\x0c\x9b\xb4\x3d\x4f\xc7\x51\x81\x02\x0f\xc5\xa6\x0d\x81\xa6\x91\xfb\xd0\x43\x3d\x8c\x34\xbc\x27\x4f\x3b\x5f\x18\x66\x6e\x17\xea\xa8\x35\xf1\xd8\x82\x7e\xec\x98\x89\x17\xc9\x3b\xea\x6c\x3c\x7d\xd2\xf2\x1a\x74\xd4\xd8\x78\xf2\xa8\xe5\x32\xe8\xa8\xaf\x01\x86\xac\xd8\xd4\xd6\xae\xad\x81\x0b\x13\x5b\xb6\x3b\x8c\xfa\x1d\x93\x2f\x5b\x76\xef\xc8\x75\x6f\xef\x77\xb9\xa5\x23\x80\x0e\x77\x74\x50\xc8\x2c\x40\x87\x1b\x3a\xa8\x63\x16\xa0\xcb\xfd\xec\x25\xe6\x4d\xd6\xb0\x47\x3c\xde\x95\x01\xb5\xd2\x32\x3a\xa1\x5a\xe9\x19\xa1\xe8\x06\x83\x6a\xa5\x69\x84\x98\x66\x06\xd5\x4a\xd7\xf0\x71\xec\x2d\x7f\xc9\x63\x1f\x88\xeb\x8f\xf5\xb6\xa7\xe4\xe9\x53\x8a\x53\x64\xf4\xd3\xf2\x91\x60\x4d\xd1\x78\xbf\xb6\xbc\x23\x60\x13\x3a\x89\x44\xac\xb6\x5f\x04\x7c\xeb\x47\x11\xe5\xd7\xcc\x13\x4e\xf1\x45\x3c\xf8\xa4\x96\x2d\x8f\xe0\x23\x16\x26\x5f\xcb\xf4\xe4\xb4\xaf\xf0\x3a\x44\x2d\xd3\x63\x33\x92\xfb\x6b\x59\xb6\xad\x1e\x5e\xa0\xaa\x17\xb9\xa9\x0b\x56\x11\xef\xd4\x95\x31\xf1\x55\x47\x09\x24\x35\xb7\x45\xba\x2a\xc1\xa4\x16\xc5\x48\x6a\x21\x98\xd4\x9e\x18\xb9\x9a\x08\x26\x35\xb1\x45\x3b\xb1\xd6\x4b\x59\xeb\x68\x36\x4f\x9f\xb2\x63\x03\xef\x8f\x77\x01\x24\xe1\x51\xc7\xec\x58\x41\x80\x78\xa2\x76\xe9\xfd\xa9\x82\x00\x49\x60\xd4\x09\x3b\x55\x5a\xa6\x80\x53\x1f\xed\x78\xd4\x82\x89\x76\x58\x5c\xda\xb1\xad\xff\x1f\xb5\x0a\x3b\xb6\x35\xff\xa3\x56\x59\xc7\xb6\xce\x7f\xd4\xaa\xea\x18\x57\xfb\x09\x22\x5a\x78\x53\xdb\x1e\x60\x19\x25\xd8\x70\x3c\x0b\xdc\x60\x0a\x00\xb7\xa2\x67\x73\x1b\xac\x00\x10\xbd\x7d\xd2\x02\x4a\x2c\x65\x51\x72\xc0\x06\xdd\xdf\x7e\x99\xcf\x23\xb9\x59\x28\x19\xbe\xeb\x24\x18\x8b\x9f\x72\x80\x34\x7c\x63\xcc\xa3\x96\x01\x22\xa5\x6e\x88\xbe\x3e\xe1\x10\x29\x6d\x9f\xf2\x8f\x06\x88\x94\xb2\x4f\x39\x0f\xec\xaa\x01\x13\x91\x03\x00\x98\xa5\xbe\xea\x2a\xae\xeb\x25\xab\x4d\xfe\xd7\xa3\xe8\x7e\x87\xe3\x35\x06\xe8\xf0\xb8\xc6\x00\x1d\xae\xd6\x18\xa0\xc3\xc7\x1a\x03\x24\xc6\x3e\x6e\x5c\xbe\xf3\xe1\xb3\x3b\x87\x87\xe2\xcd\xd7\xdf\x7d\xfb\xfc\x85\xf8\xf2\xe5\xab\x17\xcf\x44\x91\x4f\x32\x5d\x1f\xfe\x68\x0e\x8b\x7c\xf2\x6e\x36\xfa\xd1\x58\x90\xe7\x7a\xb5\xae\xf2\xf9\xa2\x16\xfd\xe9\xc0\x9e\x84\xc7\x50\xac\xfb\xf9\xa2\xd2\xcb\xbc\x59\x8a\xaf\xdf\x88\xf3\xa6\x5e\xe8\xca\x8c\xc4\x79\x51\x08\x80\x35\xa2\x52\x46\x55\xd7\x2a\x1b\xd9\x31\xbe\x33\xa1\x4f\xba\xd1\x4d\x35\x55\x62\xaa\x33\x25\x72\x23\xe6\xfa\x5a\x55\x25\xb6\xd1\x96\xe2\x4f\x6f\xbe\x38\x30\xf5\xba\x50\xa2\xc8\xa7\xaa\x34\x4a\xd4\x0b\x59\x43\xcb\xef\x89\xb2\x23\xcd\x74\x53\x42\x47\xd4\x7a\xa1\xc4\xab\x97\xcf\x5f\xbc\x7e\xf3\x82\x2a\x72\xdf\xe9\x35\x06\x3b\x69\x4d\xeb\x5e\x28\xef\xfd\xe7\x4a\x4e\xc4\x44\xce\xed\x04\x9a\x3a\x2f\xf2\x7a\xed\x5b\x45\xb1\x0a\xe2\x33\x71\x26\x7e\xe6\x6d\xbd\x2a\x25\x6b\x25\xa4\x68\xca\xfc\xa7\x46\x09\x55\x36\xcb\xb8\x7b\xd7\xff\x35\xcd\x6a\x55\x29\x63\xc4\xcf\x45\x5e\xd6\xcf\x17\x6a\x7a\x65\x3e\x6c\x6c\x87\x75\x2e\x16\xcd\x52\x96\x62\x56\xe5\xaa\xcc\x8a\x35\x5e\x9d\x41\x5b\xcb\x49\x33\x9f\x53\xa7\xc5\xd0\x18\xeb\xeb\xc9\x8f\x6a\x5a\x7f\x10\xe7\xd1\x14\x00\x1f\x37\xba\xec\xd5\xd0\x77\x4e\x56\x4a\xa8\x9f\x1a\x59\x08\x68\x4c\xb7\xae\x17\x79\x39\x87\x1e\x6b\xec\xd3\x46\x53\xf8\x98\x17\xf6\xf9\xce\x3e\x59\x87\x87\xe2\x7b\x25\x2c\xfa\xa4\xc0\x16\xa2\x42\xc3\xdb\x85\x34\xa2\xd4\x61\x50\x61\x16\xd0\x31\x73\x62\xa1\xa9\xdf\xf9\x52\x1c\x1c\x88\x1b\x25\x6e\x64\x59\x43\xd7\x68\x3b\x9c\x5b\x8a\x72\x2e\x56\x55\xbe\xcc\xeb\xfc\x5a\x19\xea\xb0\x59\xac\x47\x42\xfc\xa9\xa9\xe9\xc3\x55\x65\xb0\xc5\x5d\x5e\x4e\x8b\x26\x53\x42\x37\xd8\x32\x6c\xc4\xfa\x52\xa9\x1b\x9a\x18\xce\x3a\xea\x51\xf5\x2d\x36\xc8\x12\xd7\xb2\xca\xe5\xa4\x50\xa2\x52\x33\x55\xa9\x72\x0a\x3d\xb9\x85\x64\x7d\x2c\x2d\xf8\x7f\x11\x18\x76\x5e\xd3\xd8\x49\x6d\xa6\xab\xa5\xf8\xb7\x2f\xbf\x7b\xfd\xfc\xed\xcb\xaf\x5f\xf7\xff\xeb\xfc\xdb\xd7\xe7\x5f\xbd\x18\x8c\x84\x70\xd7\x2c\xb1\xca\x52\xe8\x95\xc5\x9d\x2c\xec\x48\xca\x4c\xe5\x4a\x85\xf6\xb3\x76\x09\x56\xab\x62\xed\x6a\xc7\x47\xe4\xf2\xa5\xae\x84\xba\x95\xcb\x55\xa1\xb0\x71\x2e\x2e\x0d\x75\xf7\xfa\x2f\x59\x99\xfe\xbd\x7f\xeb\xdb\x2d\x5b\xe7\xe5\x7c\x30\x14\xff\xa6\x4a\xbb\x49\xbe\xfb\xf6\xe5\x73\xd7\x60\x10\x3f\xde\x6e\xf1\xfb\x9d\xad\x61\x7f\x16\xee\xf9\x67\xe2\xde\xbf\x5b\x1e\xb0\x19\x16\x9b\x8c\x3d\x13\xf7\xfe\xac\xf5\xbc\x50\x0f\xee\x61\x33\x6a\x98\xeb\xf7\x76\x39\x2a\x65\x9a\xa2\xb6\x18\xc4\xa1\x86\x02\x21\xff\xed\xf8\x4f\xf7\x38\x71\xb1\x2f\xe0\xd4\x65\xea\x6a\x68\x97\xc4\x20\x89\xd1\x42\x9a\xba\x0a\x0d\xcd\xfe\xad\x7f\x21\x0f\xfe\x7a\x79\x7f\xf0\x43\xbf\x7f\xf1\x97\x1f\x06\x97\x0f\x06\x3f\x0c\x0e\xe7\x39\x6b\xb0\x0d\x2d\x01\x87\x62\x56\xc2\x58\x81\x62\x5d\x3f\xc0\x7a\xbd\x52\x7a\x06\xef\xb9\x20\x80\x4b\x71\x76\x26\x7a\x4d\x09\xdd\x62\x55\xd6\x1b\xf8\x76\xba\xd0\x70\x59\xf4\xbe\xc3\x56\x79\x9e\x5e\xb0\xd3\x1f\x3d\x4d\x8d\xb4\xb1\x39\x61\x05\x7d\xf9\xf9\xd8\xfe\xb6\x7d\xf9\xac\x74\xcd\xd7\x22\x2c\x8c\x3c\x7b\x89\x9a\x82\x5f\x53\x47\x82\x0d\xb0\x17\xb3\xf2\xb2\x5f\x5d\xfb\xb6\x85\xd4\x29\x11\xdf\xc3\x07\x4a\xbe\x22\x21\x42\xfc\x98\x59\xe9\x87\xb9\x13\xb7\x41\xac\xae\xa9\x0b\x62\xbc\x87\xbe\x74\xd3\xe0\x0c\xd7\xee\x62\x6a\x21\xcd\xa7\x4c\x44\xf2\xbc\xc8\x55\x59\x1b\x80\x95\x59\x86\x44\xef\x7a\x0c\xd6\x5a\xa8\xdb\x5a\x95\x59\x07\x99\x0f\x36\x50\x4f\xc0\x05\xf5\x50\xf0\x1b\xe0\x59\xf8\x75\xc8\xaf\xfb\x8d\xf1\xac\xe3\x1a\x40\x02\x72\xfe\xfd\xed\x57\xaf\x9e\x45\x94\xc9\xdb\x5e\x2e\xe5\x8a\xde\x07\x8d\x2d\xfe\xd0\x7b\x26\x7a\x9f\x16\xf5\x67\xd4\xe9\x42\x88\xde\xe7\x70\x69\xce\x2f\x7d\x0a\x97\xe4\x72\xc5\xae\xdd\x83\x6b\x3f\x35\x9a\x01\xde\xeb\xdd\xb3\x17\xff\xcf\xc3\xa7\x9f\xf5\x10\xef\x71\xa7\xf6\x68\x3f\x5c\xfc\xe1\xf3\x4f\x7f\xb8\xf7\x43\xef\xf2\x70\xce\xb7\xc0\x40\xfc\xec\xc0\x97\x72\x75\xb1\xbc\xa4\xb6\xf1\x1f\xf8\x02\xfe\x59\xd5\xc0\x73\x5c\x87\x47\x39\x9d\xaa\x55\xad\x32\xf1\xdd\x4b\x51\xc8\x72\xde\xc8\x79\x68\x54\xee\x0e\x28\xff\x0e\xec\x06\xfd\x41\x4c\x65\x51\x4c\xe4\xf4\xca\xd3\x83\x5d\xc8\xbc\xbc\xd6\x57\x0a\xe9\xc0\xbe\x02\x19\x83\x19\x09\x2b\x08\x38\xf6\x02\x23\xaa\x5a\x55\xc0\x27\xfd\x34\x0a\x0d\xcd\x50\xec\xde\xe1\x87\xed\x68\xae\xea\x73\x98\xe1\x2b\x37\xb7\xa8\x79\x29\x4d\x23\x74\x71\xdc\xf4\xd4\x68\x6a\xe5\x10\xf5\xa6\x59\xad\x74\x55\xab\xac\xef\x3b\x9a\xe2\x8d\x51\x3e\x7e\x52\x76\x3c\x17\x5e\xf1\x59\xda\x95\xd4\xa8\xfa\x6d\xbe\x54\xba\xa9\xfb\x7e\x42\x7c\xff\xb9\x27\xfb\x17\xa5\xbc\xce\xe7\xb2\xd6\xd5\xc8\x61\x38\xac\xe5\x01\xb4\x6a\x7c\xd7\x1b\x5c\x86\x1d\x6d\xe5\xb3\xb0\x70\xfb\x7e\x12\x47\x4c\xc4\x4b\x6f\xf2\x32\xd3\x37\x04\x2e\x3e\xfd\x94\x7f\x72\xb4\xb9\xbf\x91\x15\x1c\xed\x3f\x35\xaa\x5a\xbb\x63\x99\xba\x93\x2e\xa4\x59\x44\x2d\x42\x6b\x79\x65\x8f\x46\xd1\x54\x45\xfa\x40\x38\x29\x7b\x76\x41\xc7\x67\x70\xc0\x7d\x6a\x7f\x3f\xc6\xdf\x7b\x42\x96\x99\x1d\x6a\xea\x7a\xeb\xb3\xfe\xdc\x24\x52\xf0\x13\xf7\x67\xa0\x8c\xf1\x33\xd1\xc3\xc7\x87\xf0\xf7\xb1\xff\x5b\x7c\x18\x51\x63\x7d\x49\xad\xf5\x41\x6a\x92\xab\x95\xb2\xc7\xcd\xb2\x29\xea\x7c\x55\x28\x51\xe7\x4b\x3c\xec\xed\xc8\x7c\xd6\x43\xa1\x4b\x7b\x20\x23\xa1\x16\xd2\xd4\xd4\xf9\x1b\x24\x0e\x1c\xc7\x3d\x87\x74\x9d\x34\x67\x2d\x33\xd7\xdf\xde\x4a\x0b\x2b\x69\x2c\x4b\xb4\x2c\xb8\x99\x2f\x44\xa6\x52\xa6\x23\x26\x6a\xa6\x2b\x25\x26\xca\xa2\x4c\x66\x99\x02\x74\x90\x40\x40\x47\x2a\x22\x62\x53\xf3\x54\x98\x3e\x49\x61\xd8\x7e\xb3\xa2\x7e\x34\xd0\xf1\x18\xbb\xbf\xe6\xb5\xc0\x66\xbe\xb8\x2d\xa5\xdb\x86\x85\x92\xd0\xbd\xa6\xf7\xc7\x1e\x76\x11\xee\xfd\xb1\xe7\x1b\x08\xe7\xf3\x52\x57\xbc\xbb\xf9\x6c\x04\x43\xfe\x27\x20\x8c\x91\x19\x9b\x42\xd8\x82\xec\x62\xd4\x48\xf8\x8f\xae\xcd\x39\x9f\xf8\x99\x88\xc0\x9b\x89\xa9\x2b\xe8\xc9\x7b\x87\x9d\xac\x3f\x7f\xf0\x7f\xaf\x64\x0e\xe2\x43\xf4\xd4\xaa\xc8\xeb\x7e\xef\x53\xec\x77\xda\xd5\x47\x1a\x9e\xea\xea\x52\xef\x86\x14\x67\x08\x73\x91\x5f\xba\xe1\xce\x7a\xb4\x21\xab\xeb\x8b\xf6\xfa\xf5\x2d\xf8\xc5\xd1\xe5\xe0\x52\x9c\x75\x2c\x2f\xde\x1e\x5f\xb6\x3a\x4b\xdb\x63\x35\xda\xd4\xdf\x7d\xfb\x8a\x63\x74\x25\xeb\x45\x07\x37\xfb\xee\xdb\x57\x1d\x1c\x8c\x1f\x10\xb4\xa7\xab\xa6\xb4\x34\x4e\xcf\xe0\x70\xbc\x71\xab\xbd\xd0\x9e\xc1\xaf\x66\x25\xf4\xda\xf6\x15\x7a\x41\xdc\x09\xb9\x90\xcb\x95\xdf\xa8\x79\x59\xab\xb9\xaa\x40\x28\x16\x66\xa5\xa6\xf9\x2c\x57\x99\x80\xe0\x9b\x94\xf4\x09\xf6\x83\xb8\x06\x8a\xc7\x1d\x5a\x6b\x4b\xb3\x53\x3b\x28\xd2\x6c\x1b\x7c\x99\x97\xf0\xc0\x32\x2f\xf3\x65\xb3\xa4\x43\x0f\x74\x00\x2f\x7b\x77\x3c\x25\x6f\xf1\x29\x79\xbb\xf1\x29\xaf\x39\xc1\x37\x31\xb4\x5d\x0f\xed\xdb\x86\xf6\xe1\xb0\x9e\xd7\xe2\x0f\xf6\x6a\xb4\x70\xcb\xbc\xfc\xcc\xdf\xfe\x1c\xe0\xa3\xdb\xf2\x96\x75\x95\xbe\x8e\x10\xf9\x4a\xcd\x6a\xb1\x92\x99\x90\xa2\x6c\x96\x13\x87\x44\xc4\x2b\x35\xd3\x87\x6d\xef\x76\xfb\x5f\x55\xa5\x5b\x87\x3b\xf2\x8d\xf7\xfe\xb3\x69\x28\xfb\xe5\x61\xd4\x95\xdc\x80\x5a\x7a\x8d\x85\xce\x94\xc9\x2b\x95\xd1\xa5\xcd\xdd\x9b\x57\xc0\xee\xdc\xe0\xd2\x44\x9a\x97\x43\xe8\x5f\xed\x77\x71\x25\x14\xa0\x87\x34\x78\x44\x94\x4e\xe1\x03\x88\xc1\x68\x25\xb3\x37\x96\xed\xf4\x11\x74\x28\x7a\x47\xbd\x54\x11\xc4\x4e\xdf\x8e\x65\x4e\x75\x59\xcb\xbc\x04\x4e\xec\x8e\x0f\x9c\x9c\x6b\xb3\x2d\xa6\x0b\x59\xc9\x69\xad\x82\x58\x0b\x87\xe0\x52\xd5\x0b\x9d\x89\xa5\xcc\x61\x04\xfc\x14\x59\xe7\x53\x31\x95\xd3\x85\xd7\x1a\x0b\x59\xcd\x95\xa9\x85\x5c\xea\xa6\x84\x93\x0d\x4d\x48\x76\x68\x50\x10\xaf\x55\x25\x2a\xf5\x53\xa3\x4c\x0d\x7d\xde\x5f\xd6\xa4\x41\x5b\xfd\xdd\x09\xd8\xb5\x16\x73\x55\xaa\x0a\xec\x0d\x76\xe3\x18\x59\xaa\x62\x2d\x16\xcd\x5c\x85\xa1\xa1\x13\xbc\x1f\x7d\xe3\x0e\xea\x58\xb7\xae\xd9\x8d\xba\x4e\x9e\x73\x87\xb8\xd0\x85\x9c\x3e\xd4\x7f\x03\x23\x02\x26\xca\x7d\xef\xc7\xe5\x4b\xcb\x97\x14\xb8\x1e\x4e\xed\x0f\x67\xe2\x28\xda\x0a\xbd\x9e\x3f\x06\x66\xe2\x0c\x94\x88\x78\x50\xb7\x8f\xee\xce\x46\xe1\x0b\x70\x08\x7e\x45\x9c\x89\x5e\xd0\x6e\x71\xd0\x9b\x45\x5e\x28\xff\xea\xcf\x23\xf8\x11\x9f\x60\x32\xd4\x83\xb3\xe8\xef\x94\xdd\x47\xc3\xd0\xe9\x76\xe4\x89\x18\x89\x52\x10\x55\xbe\x28\x4d\x53\x91\x21\x4b\x06\x63\x41\x6e\x40\x92\x24\x05\x0b\xec\x14\x53\x55\x59\x6a\x03\x69\x46\x14\xf9\x32\xf7\x32\xc2\x9b\x7c\x69\xc5\x9c\xc6\xc8\xb9\x12\x85\xd6\x57\x56\xcd\xba\x52\x88\xab\x91\x83\x02\x5d\xab\x52\xf3\xdc\xd4\xaa\x7a\x59\xe6\x35\x1d\x34\xb2\x90\xd5\xb2\xaf\x4b\x7b\x69\xe0\x95\x7c\x20\x74\x10\x0d\x0a\x6d\x37\xc8\x8d\xac\x4a\xd6\xf8\x8e\xba\xe3\x5b\xc4\xe3\x93\xfd\x81\x9d\x73\xa9\x6b\x52\x08\xdc\xc4\xed\x58\x8f\x84\x51\x53\x5d\x66\x7e\x17\xbd\x9c\x89\xb5\x6e\x7a\x56\x64\x52\x95\x15\xf5\xec\xc8\xc6\x1e\x2e\x7a\x65\x29\x1d\x54\x0b\x8b\x91\xa5\x5c\x83\xc8\x29\x0a\x5d\xc2\x71\xb1\x90\x65\x18\xce\x0e\x02\xe2\xa4\x2c\x41\xf6\x12\x52\x64\x0d\x3d\x9e\x5b\x1e\x5b\x14\xb9\x03\x95\x06\xe6\xed\x0c\x34\x34\x44\x50\x4c\xe2\xa9\xb9\xe1\x9c\x70\x9b\xa9\xb2\xb6\x27\x94\x95\x06\x4d\xad\x24\xb4\xe2\x97\x41\x21\x72\xeb\x36\x84\xef\x2a\x0a\x31\x57\x35\x8a\x5d\x37\x95\x15\x23\x2b\xb7\x87\x75\x25\x2a\x59\x2f\xdc\xa7\x48\x61\xf2\x72\x5e\x28\x07\x36\x12\xe2\x85\x9c\x2e\x60\x60\x42\xb5\x1d\x24\x3c\x7c\x83\xb6\x17\xe2\x64\xf8\x54\x26\xae\x55\x65\xec\x47\xd3\x7e\xf4\xd3\xba\x81\x1d\x5e\x6b\x3b\x86\x14\x66\x21\xe1\x4f\x54\x5f\x40\x41\xcb\x8d\x5d\x35\x2b\x3c\x4d\xa5\x51\x46\xdc\x2c\x54\xa5\x00\x01\x64\xaf\x13\x8a\xd3\x67\x6d\xcf\x14\x53\xdb\xe1\x74\xa9\x10\x07\x46\x01\xf3\x70\xef\x84\x01\x1d\x09\x90\xb8\x2b\xdd\x3b\x85\xba\x5d\xe5\x55\xd0\x34\x71\x5b\x03\x01\x7a\xf3\x07\x92\x63\x6f\xa6\xea\xe9\x82\x64\x61\x90\xc9\xbc\x51\x4c\xeb\x11\xdc\x44\x0b\x68\xdf\x91\xef\x9b\x66\x3a\x55\xc6\x0c\x86\xc2\x5d\xf9\x52\xe6\x45\x53\xa9\x40\xd3\x2d\xc5\xf6\x3e\x57\x6a\x2d\x53\xe4\xc6\x3a\x8b\x5c\xb0\x10\x96\x38\x62\x7a\x12\x7e\xb0\xc4\xf4\x6e\x69\xc4\xd7\x8e\xa6\xc2\xf1\x11\x91\x9e\x1d\x4b\xe6\x5e\xf8\xaf\x64\x6e\x17\xdd\xc9\xe4\x7e\x78\x21\xbe\x50\x33\x09\x46\x35\x23\x1e\x1d\x1d\x1d\x89\xbe\xa7\xf4\x41\x7c\xae\xba\x69\x7e\xb0\xe4\xea\x3f\x00\x54\xeb\xf0\x05\x0b\xe5\x14\x17\x14\x22\x82\x62\x33\xf1\x7a\xb9\xbd\xef\x88\xc8\x8d\x83\x2a\x44\x3c\xaa\xd3\x32\x36\x8e\xe9\x06\x9c\xa8\x78\x0e\xb2\xf6\xa7\x97\x01\x3b\x6d\xfa\xb6\x48\xef\x77\x94\xd0\x52\xf5\x87\x84\x6b\xe4\xc6\x60\x97\xb1\xfa\x00\x2d\xc0\xfb\xf7\xe2\x91\xb8\x2f\xc6\x47\x47\x47\x9f\xd1\x6d\x53\xdb\xb9\x3b\x9a\x9a\xab\xfa\x8d\xbd\xe0\x74\x0c\x9a\x7e\x5b\x83\x87\x3e\xad\xb9\x11\xba\xa9\x55\xd5\xc5\x8d\xf3\xe5\x52\x65\xb9\xac\x15\x98\xa9\x5f\xd6\x3d\x23\x60\xcb\xd4\x5a\x4c\xe5\xaa\x6e\x80\xda\x4b\x75\xe3\x46\x33\x53\xbd\x42\x3b\xbe\x45\x9b\xdb\x06\xce\xb6\x38\x8a\xba\xc3\xf6\xe8\x76\x2f\xd8\xaa\x73\xe3\x76\xed\x64\x8d\xf6\x33\x37\x44\xe0\x38\x56\x09\x05\x3e\x81\x23\x85\xcd\x4f\x2c\xc5\xab\x3c\xee\xd1\xb3\x1d\x46\x0c\x0b\x0b\x8a\xf4\x99\xb7\xa0\xfa\x41\xcf\xce\x44\x0f\x89\xa1\x37\x10\x7f\x44\xb0\x67\x81\x74\xd0\x46\x1a\x0c\xc8\xe2\x0c\xff\xf3\x47\xd1\xef\xa1\xed\x11\x8d\xb4\xcf\xe0\x58\x27\x8b\x09\x1e\x25\x23\x7b\xc2\xf4\x7b\x8c\x10\x9e\x25\x6c\x23\xc3\x11\xfa\x4b\x23\x0e\x61\xb1\x07\xe2\x81\xe8\x19\x3f\x6a\x3a\x60\xa1\xe7\x7d\xa0\x03\x7f\x27\x60\xa0\x6c\x8a\x82\x4c\x9d\x43\xb1\x34\x03\xb2\xbb\xd9\x4f\x27\xbc\xfd\xd9\xf3\xdc\x8d\xa6\x27\x26\xa5\x74\xda\x82\xc0\x04\x8d\xaf\xe4\x97\x85\x98\x16\x4a\x56\x6e\x05\x1c\xc4\x67\x0c\xa0\x6b\xa2\x91\xbd\x36\x68\x80\x0e\xf5\xe0\x5b\xe8\x5b\xf0\xa1\x90\xd5\xbc\x59\xaa\xb2\x36\xc1\xba\x14\x99\x17\x99\x6d\xbc\x73\x65\xe3\x6f\x4b\x11\x12\xdb\x28\xd3\xbb\x89\xed\x6c\xd0\xef\x94\xc2\x6b\xde\xd1\xd7\x1e\x76\xb8\x61\xe5\xcc\xee\x3b\x73\x95\xaf\x56\xdd\x72\xf9\xac\x72\xb6\xc2\x54\x1a\x87\x63\xa7\x56\x65\x86\x32\xb3\x13\x9f\x23\x17\x1a\x98\x7b\x50\xd0\xc6\xd9\x1b\x21\x41\x42\xc1\xb3\x24\x3a\xdc\x4b\x01\x66\xcf\xa1\x98\xa8\xa9\x6c\xc0\xd7\x18\xc4\x1e\x44\x94\x95\x08\x8c\x90\x16\xcc\x88\xc9\xda\x0e\x94\x11\x0b\xc7\x4d\x29\x2d\x7f\xb0\x32\xd1\x0d\xf8\xe5\xd0\x0b\xe6\x26\x7f\x2e\xea\xf5\x2a\x9f\xca\x02\x11\xb0\x04\x2f\xaa\x95\xde\x40\x78\x63\x72\x5b\x4c\xd1\xbd\x37\xda\x7e\xb1\xfd\x9a\x9b\x7c\x7a\x05\xf6\x26\x2b\xaa\xc9\xb5\x98\xca\xa5\xea\x0d\x53\x9e\x37\x70\xa7\xa7\xe5\x0e\x9b\xfe\xf7\x5a\xd7\xf9\xd4\x7d\xe3\x72\x29\xc5\x5f\x22\x39\x10\xdc\x7a\xab\x2a\x2f\xd1\x8c\xbc\x54\x06\x64\x4d\x12\x06\x7f\x34\x6e\x86\x43\x31\xd3\x45\xa1\x6f\xc8\x63\xeb\xac\x7a\xa4\x9d\x80\x60\x53\xa2\xde\x4e\x53\xd7\xa2\x52\xd7\x4a\x16\xd4\x4d\xd9\x12\x72\x72\x58\xe3\xda\xe3\x61\x8b\x26\xaa\x2f\x81\x06\x80\x65\xea\xf6\xd1\x8b\x84\x84\x74\x42\xa2\x0f\x90\x3c\x3c\x8a\x56\x69\x21\xa7\x75\x23\x0b\xd1\x73\x38\xea\xe1\x12\xd8\xa3\xae\xb8\xb1\x8b\xd9\x61\x0b\x73\xb0\x9c\x1d\xa4\x73\x0a\xc7\x53\x34\xd3\xb3\xf6\xe4\xff\xd8\xbe\xf4\x40\x1c\x8b\x67\xe2\xd8\x6b\x3b\xf0\x21\x40\x83\x70\xa9\xae\xd6\xc4\x43\xd0\xc5\x63\x0f\xd3\x17\x55\xa5\xab\x3e\x19\xa9\xa7\xd2\x4a\x4c\x7d\x75\xeb\x78\x4d\x18\x40\x9c\x09\x75\x3b\x42\xf4\x92\xa1\xeb\x87\xb2\x17\xcc\x54\xfe\x75\xb4\x0f\xd0\xf8\x96\x58\xd5\xf8\x64\xd1\xc0\x16\x5e\xd0\x65\x65\x63\x03\x5e\xe4\xe2\x20\x7a\xfe\xd2\x1e\x42\xfe\xe9\x8b\xfc\x32\x98\xc6\xff\xf2\x83\xb9\x2f\xeb\x1f\xcc\x83\xc3\xa1\xe8\xf5\x5a\xa6\x34\x36\x6a\xc4\x57\xbe\xc8\xaf\xf3\x4c\xa1\x90\x5f\xdf\x68\x22\x08\x34\xd1\xce\x0a\xad\x2b\xc3\xbd\x13\x43\xd1\x94\x85\x32\xee\x9a\xd5\xe4\x33\x74\x4e\xd8\xab\x60\x93\x05\xf1\xdc\xea\x11\xd3\x4a\x65\xd0\x61\xdc\x2c\x2d\x91\x80\xcc\x33\xb4\x82\xa1\xa3\x68\xa3\x44\x1e\x18\x0a\x6c\x21\x95\x17\xce\x63\xef\x84\xec\xc6\xa8\x59\x53\x58\x09\x1b\xb9\x9f\x33\x84\x58\xe1\xa1\x6a\xca\xa9\xb4\xfa\xb3\x5c\xad\x2a\x7d\x9b\x2f\x25\x3a\xba\xc0\x45\x62\x15\x1f\x3b\x10\x1a\x9a\xf1\xbc\x37\x5a\x64\xda\xb2\x80\x2c\xbf\xce\x41\xf4\x77\xfe\x17\xa3\xfc\xa7\xaf\x73\x55\x58\xcd\x27\xf8\x6a\xdd\xa7\x80\xd2\x54\x68\xa3\xd0\x74\x74\xb3\xb0\x3c\x0d\x1f\xdb\xb4\xfd\xca\x66\x89\xfc\xbd\xeb\x66\xa6\x4a\xbd\xcc\x4b\x7f\xdb\xc9\xa9\x74\x9f\xed\x22\xb3\x94\x55\xfd\xa5\x5d\x0f\x5c\xb0\xc4\xd8\x83\xaf\x18\x0a\x3e\x62\xd8\x54\xd7\xb2\x80\x13\x91\xc0\xc4\x21\x07\x73\x92\x1f\xe1\x5e\x9c\x89\xaf\x64\xbd\x18\xd9\x3f\xfb\xd7\xb2\x18\x38\x33\x81\xbb\x7f\x00\xc3\xfd\x41\x8c\x8e\x8e\x8e\xc6\x8e\x66\xdd\xa1\x8a\x30\x2d\xe7\x0f\xdd\x86\x81\x81\xa8\xfc\xc8\x2d\x6f\x9b\x14\x95\x2c\x33\xbd\xf4\x96\x4e\xd0\xe1\xc1\xbe\x29\xfa\x10\xcb\x60\xf2\x6b\x35\xd8\x84\x6e\x67\xbb\xb4\xbc\xd4\xd4\x7c\x10\xa0\x58\x67\x26\x6d\x3f\x47\xd6\xcb\x45\x3e\x5f\x6c\x7f\x30\x59\x23\x71\xee\x26\x4c\x84\x39\x51\xf5\x8d\x52\x60\xa9\x14\x9f\xda\x71\x23\xbf\x2c\x80\xbe\x2c\x6b\xbe\x7e\xb1\xe5\xb3\x8d\x2b\xf8\x15\x9f\xec\x0f\xc4\x7d\xd1\xb7\x93\x3d\x80\x17\x3c\x10\xe3\x81\x95\xe6\xc0\x2c\xba\x33\xf8\x88\x8e\x9f\x77\x4b\x59\xca\xb9\xaa\xfe\x45\x42\x91\xbe\xc2\xaf\xfa\x0a\x3f\x4a\x4c\x0b\x69\x8c\x58\xc8\x32\x2b\x14\x8a\x36\x55\x29\xf1\xb4\xcb\xff\xaa\x32\x12\x41\xbc\x28\xf4\x5a\xd7\xea\x19\xf7\xf1\x89\xdc\x94\xbd\x5a\x98\x66\x36\xcb\xa7\x39\x3a\x9f\x40\x90\x41\xc9\x02\x0e\xc5\xf1\xc8\xa2\xa8\x52\x3d\xcb\x25\x26\x0d\x78\xf1\xc8\xca\x4f\xe6\x97\x2b\x05\x4e\xba\xa6\x94\xd7\x32\x2f\x50\x27\x29\x45\x8e\xc7\xeb\x33\x16\x3d\xb2\xa8\xeb\x95\x79\x76\x78\x38\xad\x26\xcd\x7c\x34\xd5\xcb\xc3\xf1\xc3\xa3\xe3\xa3\x23\x07\x72\x0c\xaf\xb2\x07\x3f\x88\x7c\x16\xa9\x4b\xb9\x06\xe1\x68\xa2\xc4\x4a\x4e\xaf\xe4\x5c\x65\xb8\x4b\x9e\xe3\x14\x20\x44\xc0\x32\x37\x3f\xdf\x87\xdd\x83\xc0\x00\x15\x3a\xb6\x2d\xa9\x54\xb2\x5a\x27\x43\xd6\x8b\xbc\xca\x0e\x2c\xd4\x9a\x4d\xba\xeb\x45\x7c\x57\xc1\xe9\xf4\x21\x78\xc8\xc5\x2b\xe7\xb8\xf6\x57\x6a\x2d\x0a\x2d\xb3\xa1\x5b\x6a\x5d\x65\x60\xdc\x51\xfe\x3d\x21\x28\xca\x02\x82\xa1\xf7\xb5\xba\x51\x95\x93\xa2\x8c\x0b\x9f\x10\xba\xb0\xcf\xea\x52\x99\x91\x10\x3d\x55\xf6\x44\x6e\xbc\x99\xa0\x81\xb8\x57\x2b\x2f\x16\x6b\x74\x1d\x3a\x9b\xd6\x2c\xaf\x4c\xed\xa7\x64\x99\x5c\x5e\x3b\x63\x9c\x2c\x2a\x25\xb3\xb5\x58\x59\x32\x47\xd9\x13\xf7\x70\x42\x6d\xdc\x30\xeb\xbe\x0d\xf7\x31\x18\x11\xfd\xb5\x77\x56\xa7\xf6\xbe\xe8\xa5\x5c\xf5\x49\x57\xf0\x8f\xab\x82\x45\x24\xa8\xa2\xc3\xe7\x0d\x01\x0a\xc4\x8d\x93\xd1\x47\xf6\x1c\xbe\xfd\x7a\xd6\xb7\x5f\x3f\xb0\x3a\xc9\xc1\x78\x40\x42\x4f\x0c\xd8\x94\x66\x91\xcf\x6a\x04\x44\x01\xc9\x42\x78\x9c\xa2\x08\xc3\x98\xf2\x79\x96\x79\xb9\x15\x82\x7f\x72\x8a\x68\xd1\x91\x48\xeb\x78\x4a\x87\xd3\x3b\xf5\x51\x1b\x0a\xd1\x5b\x4a\x22\x3d\x22\x27\x37\x87\xd1\x8f\x46\x97\xb8\xe7\x85\x78\xa3\xc0\xe8\xf2\x07\xb7\x4f\x32\x75\xad\x0a\x6d\xf5\x73\xda\xb3\x76\xcb\x78\x42\x34\x87\x76\x0b\x1f\xb8\x91\x3e\xdf\xb4\x6e\xa3\x55\xa5\x6b\x6d\x55\xb9\x91\xcc\xb2\xaf\xc2\xc7\xfb\xe5\xc8\xd4\x8c\x16\xd2\x0b\x73\x57\x6a\x6d\xa9\x35\xdc\xc1\x83\x33\x53\x33\xf0\x6a\xce\xcc\xc5\x95\x5a\x5f\x32\x55\xf1\x6e\xa6\x66\x23\x58\xc5\x05\x90\x28\x8b\x5c\x8a\x90\x0e\xcf\xe1\x18\xee\x1a\xe9\xd8\xfc\x10\x05\x3d\xc4\x45\xe5\xdd\xfb\xe4\xf5\xf9\x57\x2f\x3e\xb9\x27\xf8\xf0\x28\xcc\xdc\xfb\x64\x7c\x6f\x28\x54\x3d\x1d\xed\xf9\x2e\x4f\x6a\x4c\x91\x3e\xfc\xe1\x13\x0c\x23\xbb\xf8\xcb\x0f\xe6\x87\x4f\x2e\x1f\x0c\x7e\xf8\xe4\x30\x9f\x0f\x19\x48\x38\xbf\x86\x22\x0e\x21\x8b\xb4\x60\x8f\x98\x08\x13\x17\x10\x8a\x58\xeb\x57\xfa\x46\x55\xcf\xa5\x51\xfd\xc1\xe5\x68\xaa\xad\x22\x5a\x73\x85\xfe\x03\x69\xe2\x1f\x52\x59\xe1\x95\x96\x19\xdb\xc5\x81\xcd\xfa\xfd\xec\x28\x73\xd2\xd8\xa3\x60\x53\x5c\xc0\x4a\xd6\xf6\x84\x10\xe7\x10\x9a\xe1\xfe\x8a\x7c\x5c\x16\xa1\x64\xe1\x05\xf7\x14\x04\xdf\x38\xfe\x02\x66\x1a\x62\x55\x73\x3d\xda\x1c\x07\x34\x74\xd1\x40\xba\x7c\xae\x97\xab\x42\xd5\x2a\x8a\x07\x9a\x28\xef\xb9\xb0\xa2\xae\xe5\x79\xcc\xda\x99\x1b\x08\x4c\xb5\x4f\x91\x2e\x66\x85\x75\x52\xa1\xa5\x9b\x19\x71\x59\x83\x26\x5d\x2b\x36\x83\x18\x2f\xf3\x02\x03\x26\xec\xff\xa2\xd8\x21\x30\x59\x06\x2c\x46\xe1\x46\xe4\xdd\x39\x1a\x8a\x52\xd3\x53\x46\xdc\xa8\x4a\x85\x91\x80\x2d\xef\xde\x62\xb3\xbc\xcc\xce\xcb\xcc\x2e\x59\xd7\x56\x83\x05\x26\xcc\x0f\x19\x7a\x82\x00\x5b\xb0\x70\xa6\x94\xa1\x4d\xb5\xd5\x01\x50\x99\x03\x58\x98\x95\x38\x13\x17\x97\xee\x12\x22\x80\x2e\xdd\x09\x94\x2b\x74\xe9\xe2\x83\xdc\x3b\xfb\xa6\x96\xb5\x27\x65\xbb\x89\xa3\x0b\x22\x0c\x1f\xb8\x39\x32\xd4\x41\xe7\x96\xf5\xaf\xde\x04\x1e\xb8\x45\x80\x88\x3d\x68\xa0\xc2\xbe\x56\xb7\x3e\x96\x69\xc3\xab\x02\xe2\xfa\x38\xc9\x21\xbd\x3d\xda\x42\x84\x92\x64\xc8\x76\x08\x83\x3b\x39\xd8\x9a\xe1\xa1\x43\xcc\xe2\x5b\x1f\x0d\xdc\xf7\x4b\x17\x4e\xc0\xe1\x9d\x6e\x73\x49\x1b\xe1\xa3\x49\x5e\x66\x30\xf2\xd0\xea\x73\xea\x17\x3e\x3a\x93\x85\x41\x8f\x85\xf8\x10\xae\x0f\x9c\x05\x20\x45\x5f\xca\x48\xfc\xf1\x37\xab\xf4\x52\xc8\xae\xa3\x68\x37\x99\x17\xdb\xe8\xbb\xa9\x0a\x4b\xdb\xe4\x6d\x41\xbb\xbc\x2e\xc1\x10\x11\xe8\xfc\x76\x61\x25\x8a\x52\xdd\x88\xff\xdf\x57\xaf\xfe\xbd\xae\x57\xdf\xa2\x87\xb8\x8f\x1f\x72\xbb\xa8\x46\xba\x84\xc5\x2d\x3b\xa2\x4e\x90\x8c\x2c\x90\xa5\xd9\xc6\x88\xbb\x67\xe2\xf8\xe8\x28\x0e\xed\xe5\xef\xf5\x98\x66\x17\xd9\xf3\x83\xcf\xe2\x28\xd7\x88\x62\x81\x16\xd8\xd9\xd9\xff\x8f\x37\x5f\xbf\xc6\xc0\x27\x18\xa2\x52\x66\xa5\x4b\xa3\xde\xaa\x5b\xf4\x8e\xc2\x12\xd2\xe7\xf7\xbb\x17\x0a\xbe\x6f\xa5\xca\x7e\xef\xcf\x2f\xde\xf6\x86\x16\x67\x00\x08\x53\x52\x65\xd6\x32\x89\xe2\x59\xf8\xc9\x78\x34\x1a\x7d\x52\xf2\x00\x75\x1f\x55\xa9\x0a\x05\x06\x5d\x27\x7b\xc8\x6a\x4e\x96\xc7\x4d\x07\xc2\xd2\xcc\x5d\xb4\x3e\x3b\x05\xb8\xa8\x63\x79\xaa\xb3\x14\xb3\x97\x8e\x3a\x24\x60\x78\x1d\x9a\x92\x92\xc1\xfc\x00\x68\x9e\xd8\x48\x5e\xad\xed\x16\x69\x8e\x66\x0e\x46\xeb\x38\x1a\x7c\x69\xe6\x41\x7a\xfc\xe1\x93\xfe\x0f\xd9\x83\x01\x8f\x7d\x15\xf6\xc4\x06\x81\xb1\x65\x8e\xb7\x63\x5d\xc0\x2d\x71\x20\xc6\x97\x9d\x41\xcd\xdf\xa8\xea\x20\x2f\x4d\x2d\x4b\xd0\xf2\x56\x6b\x8b\xdb\xd6\x34\xf7\xd8\x2f\x1d\x9f\x06\xef\xdb\x07\x0b\xa9\xd1\xc0\x1f\xf6\x98\x01\x32\xf4\x16\xce\x62\x4d\x73\x83\xb3\xdc\xd9\xf7\x45\xad\xf5\x16\x02\x80\x43\xbd\x9b\x08\xe0\x16\x11\x13\x33\xe7\xce\x55\xdd\xb5\xfe\x76\x63\x01\x0d\x78\x5f\xa7\xdc\x93\x18\x5a\xd3\xb2\x43\x39\x2b\xb9\x1f\xcd\xc7\x74\xd1\xfa\xe5\x34\x31\xfa\x04\x54\x66\xdc\x79\x0d\xaa\xf5\x48\x90\x2b\xc1\x44\x9f\x00\xe0\x93\xb5\xb3\xc3\xef\xb1\x7a\x73\x55\x27\xa4\xe8\x11\x0f\x9f\x3c\xe4\x33\x66\xfe\x47\x27\xdf\x92\x22\xe3\xa7\x5a\xc6\x72\xaa\x23\x4d\x37\xc1\xb3\x44\x8c\xa5\xe7\xf0\x40\x8f\x4e\x42\x3b\x6a\x14\x79\x07\x6a\xbd\x63\x76\x61\xbc\x24\x94\x99\x3e\xd4\x4d\x68\xc0\xe5\x78\x7a\x28\x6c\x97\xd8\xf7\xe6\x92\x06\x08\x0c\xdd\x6d\x61\x9c\x68\x87\x39\xff\x11\x5f\xce\x24\xb3\x42\xfc\xd1\x2f\xe0\x33\x0e\x97\x1c\xe3\x30\x33\x87\xed\x38\x0a\x2e\xc1\xf1\xdd\xbe\xa7\x43\xb7\x71\xf5\x0c\xd9\x12\x85\x45\xfa\xfb\x67\xe2\xc2\xfd\x7e\xc9\x5d\xbe\x1b\x8e\x7e\x7a\x53\x58\xf5\x84\x55\x54\xda\xb2\x7b\x21\x8b\xc2\xed\x99\x7b\x16\xdf\xf7\xc4\xa2\x5e\x16\x42\xd6\x75\x95\x4f\x9a\xda\x9e\xbb\xce\xec\xe3\x5c\x57\x99\x5e\x8a\x59\x25\xe7\x4b\x15\x3c\x3f\x6f\xc1\xe8\x2c\x0b\x71\xa3\xab\x2b\xb1\x90\xab\x95\x2a\x21\x3e\x79\x85\xef\x79\x39\x7e\x52\x9e\xbb\x31\xf7\x20\xe1\xae\xc7\x62\x25\x50\x2f\x03\xe5\x96\x3a\x83\xbb\x99\x5e\x8e\x30\xa0\x56\x15\x6a\x5a\xeb\xea\xbc\x28\xfa\xbd\x0b\xfb\x5d\x97\xa4\x52\x77\x45\xd5\xc2\xe3\x91\xbd\x3f\x9c\xa3\x5d\x13\xe9\xc3\x03\x17\xf9\x65\x37\x4a\x19\x2e\x3d\x1a\x9d\x2d\x25\xc4\x85\xda\x31\x38\xf6\xc0\xc0\x15\xe0\x49\x6f\x21\x6e\x24\xa4\xb0\x87\xb8\x0b\xa4\x46\x35\xe3\x4a\x39\x05\x43\x5e\xa9\x92\x1c\x43\x13\xc5\x06\x01\x4d\xc2\xbb\xd3\x79\x5c\x37\x67\x2e\x3c\x86\xc9\x82\xb1\x37\x89\x05\x44\x35\xde\x7b\x77\x4f\xf4\xed\x36\xa8\xcc\x54\x57\x6a\x60\x5f\x3d\x14\x79\x6d\x88\xcb\xa1\x2f\xc0\x59\x6f\xc0\xd7\xa0\x6e\xeb\xe7\xa8\x33\x3a\xf2\xa2\xf3\xde\xbd\xec\x2b\x3e\x03\xb0\x32\xc2\x79\x6d\x39\xa6\x86\x68\x22\x46\x82\xba\x0c\xd6\x09\x1a\x06\xe5\x08\xf4\x50\xae\x2a\x35\xcb\x6f\xd1\x7d\x58\x2f\x84\x14\x99\x2e\x0a\x59\x09\x93\xcf\xcb\x91\xe0\x89\x68\xdc\x05\xf9\x87\x49\x53\xd7\xba\x14\x79\x76\xd6\xb3\x22\xcc\x01\xfe\xdd\x8b\xf3\xc7\xec\xb2\x9c\xf5\x7e\xbe\x27\xab\x5c\x1e\x14\x72\xa2\xa0\x70\xca\x27\x79\x76\x6f\x68\xd1\xf2\x4c\xdc\x7b\xf3\xe2\xf5\x17\xef\xfe\xf4\xdd\xdb\xb7\x5f\xbf\x7e\xf7\xea\xfc\x4f\x2f\x5e\xdd\xfb\x90\x8c\xf1\xf9\x1f\x0e\x71\xec\xcf\xd9\x7a\x87\x01\x63\x4e\xef\x62\xd7\xad\x4e\xd9\xd4\x88\xd4\xe8\x1d\xe7\xdf\xbe\x3c\xa7\x17\x8d\xc8\x4c\x8a\x7e\x4e\x59\x13\xe9\x65\x9c\xf0\x6e\xec\x0a\xda\xed\x48\x5e\x64\xf0\x26\xc9\x0a\xa2\xb9\x1c\xd0\xd0\x65\x31\xb0\x98\x7d\x4a\x68\xc0\x87\xbe\xfb\xe6\x9b\x17\xdf\xbe\x3b\x7f\xfd\xc5\xbb\xef\x5e\x7f\xf1\xe2\x5b\x01\x76\xe2\x5f\xb8\x8d\x23\xff\x88\xce\x42\x46\xe6\x73\x7c\x23\x7e\x44\xa1\x6f\x54\x75\x20\xcb\xec\x20\x93\x66\xa1\xcc\xbd\x94\xac\x21\xcb\x02\x1f\xbc\x97\x4c\xef\x9e\x9f\x1f\x8f\xdb\x69\xca\x2b\xca\x84\xea\xcc\x45\xf2\xb6\xbc\x51\xad\xbf\x5b\xad\x9c\xe9\x23\xe8\x65\xb0\x41\xcf\x70\xdf\xce\x55\x1d\xb8\x41\xcf\xde\xe9\x79\x6f\xcc\xdd\x70\xa6\x39\xe1\x3c\xf2\x75\xd2\x38\x4c\x28\x87\x07\x36\x78\x3c\xdd\x71\xa6\x40\x03\xe8\x3d\x97\xe5\x0f\xbd\x1a\x13\x23\x30\xf8\xc4\x4e\xa7\x96\xf3\xd7\x96\x76\x1e\x88\xde\xff\xf1\x17\xf3\xcc\xfe\x8d\x27\x9e\x7f\x83\x73\xb5\xaa\x5b\xef\x85\x3c\x3c\x44\x45\x0b\xe2\xf3\x82\xdc\x61\x18\xaf\x22\xe6\x15\xb3\x28\x33\xea\xb0\xc0\xc1\x8b\x78\xe4\x91\x82\xc9\x70\x7a\x54\x3d\x24\x70\xa3\xea\x1a\x3d\x8a\x2e\x68\xae\xae\xad\x8e\x75\xa5\xd6\x2c\x74\xc5\x1d\xb7\x67\x30\x34\x99\xf1\x68\x74\xbb\xb1\xef\x9d\xcd\xb4\xbe\x37\x14\x95\x3a\x70\x11\x0d\x5e\xee\xcf\xa2\x9d\x35\xf2\x42\x03\x8d\x19\x25\x75\x9c\xf5\x06\x41\x86\xb0\x1f\x73\x26\x3c\x58\x48\xe6\x20\x41\x65\xd3\x9c\x3e\xdc\x89\xa6\xf6\x09\x4e\x6d\x2a\x8b\x69\x53\xc8\x5a\xb5\xc4\xba\xed\x53\xfa\xc4\xe5\x99\xf0\x37\x22\x1d\xb7\x89\xb0\x35\x59\x88\x24\x7a\x67\x17\xff\x4a\xad\x9d\xc8\x64\x67\x96\xa3\xe8\x5d\x38\x2b\x9d\x33\x35\x72\x94\xb3\xa8\xe4\x7e\x2c\x2d\xd9\xc9\xe2\x42\x9d\xc1\x6e\x71\x91\x51\x40\x86\x8c\xe9\x03\xfa\xf0\x11\x2b\x00\x72\x30\xc3\xe7\x6d\xc7\x1a\x5a\xd8\xe0\x73\xdc\xee\x29\x5b\xf9\xe5\xfd\x17\x73\x96\x3d\xd7\xa5\xa9\xab\xc6\x8a\x2d\xb0\xad\x2c\x63\xfd\xc6\x7f\xac\xf3\x6a\xe0\xb9\xcc\xc2\x85\x94\x9d\x32\x5e\x14\x19\x48\x60\xf6\x0c\x5c\xa9\xca\xe4\xa6\x06\x2d\x69\x21\x4b\x72\xeb\x18\x4c\xfa\x30\xb5\xae\x9c\xb6\x5c\xea\x3a\x9f\xad\xc9\x9c\x69\x99\x4d\xb3\x04\x73\xf5\x42\x95\x62\xc5\xd4\x76\x1c\xc5\x4b\x0a\x75\x1c\x9c\xe4\xce\x9e\x89\x9c\x5e\x41\xe0\x73\xad\x2b\x8b\x3a\xf2\x12\x19\x1f\xdf\xa3\x43\xa0\xf0\xbf\xbf\xfd\xea\xd5\x23\x3b\x18\x4d\x67\x28\x26\x0d\x8c\x52\xd9\xc3\x51\x95\xbd\x5a\xc8\x72\x0d\x89\xf5\x18\xc9\x4b\xef\x58\x6a\x10\x23\x84\x78\x49\xf9\x79\x4d\x8d\xe1\xbc\x64\xff\x24\xf7\x99\x74\x6e\x3f\xb9\xca\xf1\xdb\xed\x94\xcc\xba\x9c\x1e\x00\x12\x2c\x4d\x1f\xa2\xf8\x02\x19\x53\x28\x26\xdd\xa8\x5e\x06\x21\x4d\x14\x30\xd1\x4a\x5a\xb3\xab\xf2\x06\x27\x3c\xba\xff\xc1\xa3\x12\xf3\xd6\xf0\x77\x12\x9d\x6a\x8d\x05\x06\xc0\x11\x89\x78\xf1\xfe\x33\x3b\x97\x8d\xaa\x24\x8a\x33\x71\x30\x10\x5d\x4b\xa2\xc0\x2c\xcb\x0e\x8b\xc4\xed\xde\x94\xac\x2a\x7a\x87\xbd\x90\xf2\x11\x15\x33\xc0\x83\xdd\x28\x3b\x81\x5a\x89\x42\x5d\xab\x02\x6c\x31\x8b\x5c\x55\xb2\x9a\x2e\xd6\x3e\x93\x3e\xf7\xb1\xed\x73\x4d\x01\xf3\x0b\x79\x4d\x24\x7f\x95\x97\x19\xed\x99\x72\x8e\x56\xeb\x55\xa5\xaf\x73\xb0\x72\xda\xf5\xc1\xa9\x27\xae\x43\xe0\x73\x4e\x5c\xeb\x1d\xf6\xf0\xc1\x52\xd7\xec\xe1\xbc\x76\x3a\x2f\x10\xaf\x85\xf2\x12\x47\x7b\x63\x44\x99\xf8\x44\x50\x01\x9b\xcc\xf1\xe7\x96\xe9\xcc\x2d\xd8\x67\xc9\x9d\xaf\x27\xc0\x11\xaa\x77\x8e\x0b\xea\x92\x56\xfc\x39\x6c\x82\x77\x2d\x2b\xa6\x05\xca\xcd\xf9\xb4\xce\xaf\x95\x7d\x0a\x4c\x9e\x7e\x58\x69\xaf\xcb\x5a\xf5\x19\x74\x5d\x51\xee\x08\x42\xba\xa4\x40\x5c\xe5\x33\x4e\x06\xef\xdf\xdb\x2f\xf7\xc2\x05\x5e\x1d\xa9\x32\xa3\x53\xe2\xd0\x9d\x12\x04\xff\xe0\x0c\xe1\xef\x78\x05\x86\xc6\xc4\x5f\xe2\x1b\xdf\xaa\xa9\xae\x32\x70\x81\x62\x78\x14\x72\xfd\x42\x4f\x64\xe1\xd0\x00\x77\xc9\x3c\x0f\xb7\xa7\x8b\xbc\xc8\xbe\x94\x96\x51\xe5\xca\x3f\x8b\x92\xc4\x57\x72\x05\xce\xe4\xdc\xd4\x07\x70\x62\xd5\x5a\xfc\xbc\xc4\x8b\xf0\x1c\x4c\xc3\xb9\x24\xcd\x07\x7c\xea\xdc\xf2\x12\x90\xcd\xc5\xe1\x21\x5e\x62\xaf\x7a\x95\x9b\x1a\x5f\x73\xc7\x05\xfc\xf5\x56\x95\xb6\xcc\xf4\x20\xcf\x4c\xef\x19\xbb\x21\x44\x4f\x97\xaa\xf7\x4c\xb4\x08\x64\xc8\x61\xea\x1b\xbd\x0b\xc6\x4d\x07\xce\xf5\x21\x9f\x99\x10\xbd\x59\xa5\x27\x1d\xef\x8e\x9e\xa1\xdf\x3e\xdc\xe9\xfe\x96\xd8\x95\xfb\x9d\x01\x31\x0b\x22\x22\x0a\x2c\xa8\x91\x97\x59\x3e\x45\xa9\x81\x38\x9f\x8b\x2e\x45\xae\x45\x6a\x55\xd8\xff\xb4\xb7\x48\x0b\x44\xa5\x10\x8c\xe6\x35\xe4\x46\xa1\x41\x03\x9f\x25\x83\x46\x30\xc6\x86\x51\x1c\xc3\x7b\xf1\x53\x23\xa1\x76\x4c\xad\x4c\x6d\x84\x9c\xcb\xbc\x34\x35\x1e\x8d\x38\xc8\x57\xdf\xbd\x79\x0b\x2c\xae\x77\x76\x76\xd6\x13\xba\x12\xbd\xbb\xf6\x17\x64\x52\x72\x3a\x6d\x2c\x67\xd9\xb2\x67\x99\xa2\xf0\xc5\x8b\x2f\xcf\xbf\x7b\xf5\xf6\xdd\x7f\x9d\xbf\xfa\xee\x85\x0f\x72\x0f\x65\x5c\xfa\x3d\x82\x00\x35\xde\xf9\xbf\x4b\x40\xd2\x75\x9e\x35\xb2\xe8\xf8\x84\xf8\x70\x04\xb5\x17\x5e\x4c\xa1\xe7\xaa\x83\x00\x20\x51\x24\x64\xac\x95\xca\x27\x9b\x60\xd8\x0a\xd6\x7f\xc9\xf2\x4a\x4d\xeb\x62\xbd\xed\xdb\x70\x6b\xa5\xe5\x67\x86\x6e\x21\xfe\xcb\xa2\x90\x71\x25\x16\x5a\xee\xf7\x21\x07\x45\xbf\xb0\xff\xd3\xc3\x10\x4d\x38\x18\xb8\x16\x21\xd3\x43\x6a\xb7\x9f\x69\x3b\xf3\x40\x02\x74\x22\x7a\x93\xb1\xc5\x4d\xbc\x22\x56\x32\xa8\x29\x7f\x66\x29\xaf\x20\x3c\x10\xa2\x0d\xaf\x55\x35\xd1\x66\xeb\x2a\x23\x26\x36\x2f\xb6\xb7\x2c\xef\x4d\x20\xdc\xd1\x80\xc9\x5f\x3c\x73\x09\xe9\xcf\xe7\x6c\x61\x74\x62\x6e\xf8\x4e\x21\x99\x68\x63\x79\x08\x8a\x88\x74\x29\xf5\x9d\x93\xfb\x20\x1c\x46\xa3\x3c\x1b\x9f\x87\xe2\xea\x48\x60\x70\x36\x65\x39\x4d\x55\x7e\x8d\x7a\x40\xa9\x6e\x5c\xe0\x65\x6a\xbc\x0e\x13\x1d\x86\x94\x9a\x0c\xa2\x1e\xdd\x07\x90\x22\xdf\x3e\x06\xa5\x09\xae\x62\xf3\x51\xab\x22\xb3\xcc\xb1\xfc\x28\x20\x98\xae\x31\x5a\xf5\x94\x34\x5a\x35\x66\x11\x20\x62\x8e\x56\x56\x7e\x6d\xca\x80\x2a\x1f\xdc\xbf\x01\xf5\x0c\xab\xe7\x16\x11\xd7\xb9\x6e\x0c\x78\x0a\x70\x30\x9e\xd5\xf3\x31\x5f\x57\xa9\xa5\xbe\x56\xbb\x3f\xd0\x99\x06\x93\x0f\x75\x41\x3c\xec\x5b\xf1\x40\xce\xc5\xe7\x3e\xbd\x33\x79\xc6\xac\xac\x6e\xd0\xcf\x87\x62\x9c\xd4\x9e\x81\x44\x30\x6f\x91\xf3\x1a\x47\xcc\xc1\xf6\xfe\xb4\xc4\xdc\x1f\xf2\x4f\x3b\x18\xc4\x59\x17\x8b\xe0\x3e\xca\xc3\xbf\xf4\x29\x8f\x9a\xd2\x90\x3f\x39\x1c\xd9\x13\xc0\x19\xc7\x5b\x8c\x69\x90\xa4\x56\xb4\x00\xda\x09\x1a\x1d\xcc\xed\x4c\xf4\x5c\x62\x1c\x8f\xa9\xf9\xde\x57\xd9\x0a\x19\x82\xcf\xbf\xfe\xe6\xbf\xdd\x4e\x89\x4f\x35\xa3\xf1\xac\x6c\x8c\xe5\x72\x53\x59\x86\x81\x96\x3a\xcb\x67\x6b\xf2\xe8\x54\x72\x6d\x4f\x2b\x92\xd3\xed\x19\xa8\x9b\x1a\x79\x82\x73\xfb\x44\x03\x8f\xe2\x2f\x64\x96\x1b\xf8\xd5\x65\x4e\xac\xfb\x1d\xc8\x89\x0c\x03\x9b\x51\x14\x47\x84\xb7\x16\x2e\x22\x9f\x37\xb5\x5e\xb5\x38\x1a\x49\x54\x74\xe0\x57\x4c\x0f\xb3\xb2\x6e\xc2\xef\x9e\xa3\xad\xc7\xaa\x70\x6d\xd1\xde\xdc\x58\x71\xad\xa9\x21\x1f\xb2\xeb\x0d\x56\xf1\x28\x51\x91\x33\xda\xe9\x49\x70\x70\x66\x50\xa6\xcd\xd2\x23\xa8\x95\xb9\xca\x84\x9c\xd8\xa1\xf2\xaa\x52\x85\xba\xb6\x4b\xc9\xa6\xb2\x5b\x2c\xc8\x94\x13\x9e\xbb\x29\xfc\x6e\x2c\x7a\x0f\x3a\x93\x09\x7a\xaf\x75\x2d\xdc\x38\x59\x6f\x2f\x99\x9d\x10\x97\xb0\x8d\x7e\xa7\x9a\x30\x48\x56\xc7\x6a\x36\xbb\x56\xc0\xe5\xe4\x06\x06\x17\x3e\x35\xdb\xb4\xb8\x28\x9d\xa0\xa9\xdc\xe3\x25\xc7\x54\x14\x14\xe4\x7c\xee\xd0\x48\x88\xff\xf6\x0b\x42\x52\x0c\xa5\xe0\x5a\x20\x59\x0b\x88\x16\x94\x45\xfe\x57\xca\x4d\xce\xad\x70\x22\x21\x38\x33\xaf\x7b\x26\x89\xce\xa4\xf8\x27\x3c\x5d\xbc\x49\x7f\x1a\x4c\x16\xfb\xad\xe7\xf6\xd5\xdc\x6b\x31\xcf\x29\xfc\x73\xe7\x82\xd6\x55\xd3\x5e\x4f\x76\xc8\xed\xb3\x98\xdf\x2a\x32\x92\x4d\x92\xe5\xa4\xf4\x47\xc3\x77\x88\x5f\xdc\xff\xf6\x32\xa4\xc8\xa8\x46\x98\xb6\xcb\xd8\x8d\x75\xa8\x4a\x51\xc1\x2f\x2e\x84\x0d\x8b\x2e\x40\x4e\xf2\x8c\xd3\x01\xf9\xa0\x51\xb5\xef\xd8\x9a\x20\x64\x2c\x75\x99\xd7\x94\x9d\xc9\xec\x0e\x7c\xe6\x44\x8c\x43\xcb\x31\x83\xc0\x0b\xea\x77\x9b\x56\x96\x1a\x93\xa5\x4b\xf8\x88\x28\x8a\xd4\x5b\xd7\x2b\x35\x6d\x2a\x93\x5f\x2b\x38\xa9\x65\x66\xa2\xd7\xd9\xa1\x82\xf2\x17\xcf\xd9\x10\xcd\xdd\xa8\xa2\xe8\x1e\xdb\x92\xab\x59\x97\xd3\x45\xa5\x4b\xdd\x98\x21\xf1\x2c\x3f\x53\xfb\xbe\x36\x92\x86\x2e\x93\xfe\xfe\xb2\x31\xf5\x7d\x4c\x57\x76\x49\xab\xbb\x84\x90\xfe\x00\x2d\x31\x5e\xa4\xf4\x5e\xfd\x59\x47\x99\xb0\x90\x41\x2c\x7d\x28\xdf\x42\x86\xa8\xc0\x6c\xbf\xbd\x61\x1f\x7f\xe3\x6d\x13\x51\x42\x56\x9c\xa3\x09\x96\x02\x55\x66\x79\x39\x7f\x6e\xb1\x5a\xa9\x12\x7c\x99\x49\xfc\x1c\xdc\xf3\x71\x67\xfc\x8c\x3f\x38\x68\x3d\x7e\x26\x8e\xc4\xa7\x9f\x46\x1f\xed\xce\x75\x7e\xad\x1f\x27\x58\x81\x07\xf2\x8c\x52\x0d\x47\xf6\xaf\x7e\xcb\xb4\x30\xd8\x1d\x52\xcd\xed\x14\x0f\x84\x2a\xa2\xf0\xa3\x24\xb0\x1a\x0c\x27\x83\xc8\x35\x02\x29\x84\xdf\x30\x5b\xa5\xc5\x24\xfa\x3d\xd8\xc8\x8c\x4b\x38\x66\x30\x57\xf5\xcb\x5a\x2d\x4d\xdf\xce\x9c\x15\xa0\xcb\xed\xc5\x38\x79\x18\xc7\x78\x85\x71\x97\x67\x7c\x5c\xe7\x37\x76\x01\x59\x2d\x8f\x48\x3c\x98\x4f\xfb\x01\x75\x0d\x6e\x32\x07\x82\x88\x73\x95\xaf\xd4\xda\x19\xf4\xf9\x04\x06\x09\xb0\x52\xd9\x9b\x75\x39\x15\x67\xa2\x1f\x05\x6c\x70\x8b\xc3\xa7\x9f\x6e\x08\xde\x13\x22\x95\x62\xae\x51\x35\xbd\x7b\xb6\xf1\x09\xd1\x25\xf7\xf0\x45\x87\x18\xe2\xcb\x48\x84\x19\x0c\x42\xd0\x5a\x87\x05\xaa\xe3\x09\x28\x45\x19\x04\x48\x47\xbd\xee\x73\xe3\xa0\xe6\x84\xa2\x1f\x3c\x88\x72\x8f\x61\xd5\xd7\xe5\xf4\xb9\xc3\x08\x29\xe3\xc9\x2e\x19\xf0\xb4\x64\xf7\x5f\x16\xa1\xf7\x31\xdb\x26\xaa\xab\x17\x01\x90\x48\x18\xd3\x38\xcf\xfb\x03\xe3\x8c\x90\x9d\x16\x8d\xdc\x78\x55\xc8\x08\x29\x22\x9b\x82\xd3\x27\xad\xb2\x68\xbf\x0c\x32\xb3\xd0\x6e\x41\x62\x5b\xc7\x90\x9d\xb5\x7b\xdf\x6e\xd4\x48\x5d\x8d\x0d\xe7\xa6\x46\xba\x04\x93\x0a\xaf\xc0\x40\xbb\xd9\x69\x36\x6d\x3d\x95\x2a\x47\xdc\x54\x79\x5d\x43\xf0\x02\x9d\x7c\x6e\x6f\xb6\xa7\x46\x0a\xc9\xfb\x89\xd6\x85\x92\xe5\x7b\xe4\x3a\xef\x21\x56\xe6\x7d\xd9\x14\xc5\x07\xda\x56\x6f\x5b\x8a\x01\x16\x13\x72\x94\x10\x7f\xcd\xb9\xab\x21\xcc\xeb\x80\x56\x8a\xb2\x4b\xd0\xf9\x09\x11\x11\x50\x35\xe2\x5a\x16\xb9\x67\xf2\xa9\x92\xf0\xcb\x0d\x09\xab\xfa\x5d\x50\x7b\x7d\x50\xd8\x96\xb3\xa6\xc3\x96\xb1\xd1\xcc\xe0\xc6\xdb\x6d\x6d\xd8\x60\x66\x70\x03\xfc\x0a\x6b\x03\x17\xe9\x2d\x75\x07\x88\x56\x38\x2e\x92\x34\x4d\x16\xc3\x5f\x91\x94\xed\x86\x77\xd5\xf4\x9c\x71\x6d\x03\x1f\x71\xda\x39\xc2\x45\x61\xd3\x88\x2e\xaa\x4b\xd2\x67\x2f\x6b\x17\xc6\xdc\xf5\x16\x11\x38\xa4\x15\x50\xb7\xa9\xeb\xed\x17\xb9\x53\x2d\xfa\x42\xf6\xda\x48\x54\x8d\x80\xba\x98\x85\x2f\x0c\xb9\x4a\x43\x6d\x7d\x3d\x1e\x4f\x4e\x96\x11\x6d\x48\x0b\xf3\xfe\x96\xf3\xd2\xe9\xc9\x33\xf1\xf0\xc0\xc5\xdc\x60\x52\x83\xab\xe8\x53\x2f\x2a\xe5\xe3\x71\xbc\xa1\x0a\x9e\x4a\xa2\x97\x2c\x99\x5d\x40\xcc\x90\x5b\x56\xfa\x96\x4b\x46\x3e\xc8\xa1\xdc\x38\xfb\xd9\x42\x36\x93\x55\x9a\x31\x04\x9f\x95\x64\x0d\xb1\x10\x30\x07\xd1\x95\xf5\xed\xd4\xf5\x68\x7c\x3f\xe6\x45\x7e\x79\x71\x74\xe9\x79\x30\xfc\x3d\x4e\xfe\x3e\xbe\x6c\x67\xd4\x3a\x2e\x5f\x62\x7e\x9d\xca\x7c\x8e\x48\x2a\x2a\x07\xb5\x3d\xbd\x01\x36\xed\x2c\x9f\xc1\xdf\x35\xea\xfe\x3f\x36\xa6\x06\x2e\x0a\x51\xb5\x6c\x19\x59\x58\x17\x6a\x79\x54\xcc\x46\x41\x75\x26\x18\x1a\x2b\x7e\xfb\x08\x62\xc8\x00\x6b\x8b\xec\xee\x08\x58\x2a\x59\x46\x05\xab\x88\x85\x71\x8f\x33\xb3\xcf\xb7\x3e\x0b\xd9\xcd\x5c\xd5\x58\x27\x0b\x58\xab\x74\x26\x54\x67\x53\xe8\x55\x0a\xf4\x92\x8a\x2a\xff\xe9\x0a\xce\x0c\xb2\x55\xc8\x52\xf8\xe8\xcc\xb6\x8a\x11\x57\xaf\x4f\xce\x39\x8b\xed\xd7\x58\xa7\xde\x17\xa6\xe7\x99\x3a\x53\x3a\xe4\xfd\xd7\x5a\xbc\x86\x32\x43\x54\xa2\x3e\x6f\xdb\x96\x39\x96\x54\x78\x0d\x1d\x98\x53\x70\x49\xb7\xa9\x1c\x63\xdc\x3a\x8f\x4a\xef\xab\xad\x35\x65\x13\x25\x14\xe3\x46\xa3\x45\xcc\xe8\x2c\x80\xda\x0f\x46\xe3\xf3\x79\x69\x31\x7d\x28\xb3\xec\x10\x6d\x1a\xa1\x2e\x19\x2e\x14\xd6\x03\x5b\x73\x7e\x9f\xa2\x02\x62\xf3\x56\x58\xb7\x8f\x52\x58\xdb\xe6\x5b\xe6\x1d\x5c\x8b\xf3\xa4\x70\x92\x93\x1a\xd2\x32\x80\xde\xd3\x4c\xa4\xe7\x92\x02\x8c\x8a\xd7\x41\x89\x19\x8d\xec\xc7\x4d\x4f\xbc\x3b\xa1\x3e\xb3\xdd\x13\xdb\xa2\x28\xe8\xb8\x73\x4b\x99\x79\x1a\xb0\xdc\x1c\xde\xdb\x5e\xa7\x8f\x3a\xe5\x98\x7a\x16\x9f\x71\x8e\x2a\x86\x11\xba\xe8\x80\x3b\x3c\xec\x12\x01\xc1\xeb\xae\x8b\xac\x8b\x00\xd8\xca\xdf\xd9\xc4\xaf\xc2\x2b\x2f\x2e\x37\x25\xf2\x38\x13\x76\xe9\xe5\xe4\x96\xc7\x7b\xe8\xe7\x8e\xb6\xcd\x2e\x8f\xf0\x85\x03\xb9\x84\x58\xee\xf0\x81\x9f\x75\xf8\x42\x23\xe0\xc4\x2b\xea\xbd\x3b\x96\xf0\x88\xb9\xec\xf6\xe2\x7c\xe9\x69\x11\x1d\xd9\xe2\x9c\xf9\x86\x3c\x15\x62\x8c\x32\x2c\xb9\xba\x56\xd5\x3a\x39\x71\x50\xe0\x91\xc6\x40\xb9\x22\x67\x73\x60\xf6\x34\x5d\xc6\x22\x9f\xeb\x5e\xb1\x94\x2b\x71\x2e\xc8\xe5\xcd\x9d\xb3\x18\x4d\x37\x65\x65\xc2\xe2\x17\xb8\x97\x26\xef\x91\xe5\x56\x37\x63\xa7\xff\x26\x3a\xfc\x10\x09\x43\x3b\xa5\x60\x6a\x23\xcc\x7c\xfa\xa9\x20\x9b\x3c\x5d\xb8\x7b\x26\x7a\xee\xc9\xde\x06\x0b\xdc\xcb\x12\x58\x35\x1e\xdd\xcf\xe8\x49\xd3\x0b\x8a\x3a\x5e\x61\x3e\x91\x34\xa0\x00\xfd\x46\x04\x16\x62\xe1\xed\x0c\xd3\xb8\x49\x7f\x58\x3b\xcd\xd6\x7f\x86\x0b\xa0\x8f\x54\xde\xc8\xf2\x30\xf0\x59\xb6\xc9\x17\xb8\xac\x80\xb0\x3c\xac\x92\xd7\x67\x77\xee\x6c\xd3\x50\xb9\x58\xb6\x94\x2b\xbc\xda\x71\xbc\xe7\x66\x25\x9d\x9b\x07\x09\x55\x04\x0f\xac\xb3\x8a\xa5\xd3\x30\x2c\xc0\x8a\xe2\x98\xa8\xc8\x4a\x6c\xbe\x85\x9a\x52\xdc\x60\xe4\x6c\x4d\x06\xb2\xf6\x29\x63\x1f\x8c\xf3\x10\xe8\xbb\x5a\x15\xf9\x14\x4d\x8e\x90\x34\x69\x81\xac\x3e\x8c\x22\x62\x63\x54\xd5\x35\x09\x38\xf7\x78\x67\x04\xf2\x16\xf8\x23\x3e\xeb\x94\x0f\xc0\x79\x00\xb2\x08\x84\x8c\xdf\x81\x4a\x8d\x85\x65\xcf\xc8\x76\x87\xb8\xe9\x30\x22\x1b\x55\x1a\x73\x93\xd7\xd3\x85\x3b\xd4\x99\x48\x43\x36\x96\xbd\x36\x00\x86\xb2\x9d\x17\x45\xdb\xba\xdc\xa2\xa2\x36\xb1\x70\x61\x0f\x47\x22\xde\xd7\xf7\xd1\x8f\xd1\x02\xbf\xd6\xee\xb8\xdc\xb0\xbc\x94\x2d\xf1\xab\x35\x6e\x52\x4c\x11\xe1\x1f\x83\x09\x9a\x7f\x77\x07\x9c\x8f\xd1\xa2\xee\x92\x1a\xd5\xcd\x0e\x76\x6f\x26\xa8\x61\x13\x1b\x76\x48\xc7\x99\x2b\x97\x40\xd9\x25\x94\x77\xf3\x8e\xee\x3c\x8d\x14\xec\x22\xbf\x24\x9d\x2b\x32\x42\x6d\x7c\x17\x4d\x28\x78\x6f\x3b\x14\x81\x14\xc6\xbe\x83\x8f\x3e\x24\xdd\x95\x22\xc3\x12\x82\xf1\x0d\x96\xbc\x74\xd1\x21\xeb\x39\x09\x04\x69\x07\xa1\xec\x01\xc9\x33\x45\x7c\x50\xe0\x22\x2f\x93\xc4\x70\xe8\xd7\x23\xad\x34\x43\x06\x18\xac\xaa\x41\xd1\x02\xb2\xa9\xf5\x81\x13\xb9\x40\xb6\x49\x45\x1f\xbb\xdf\xed\x3b\xd1\x7d\x54\xd1\x04\x9c\xcc\x85\x45\x69\x2b\xa3\x60\x87\xc7\xb1\x7d\x56\x94\x6a\xa0\x6c\xd4\x4e\x81\x1b\xea\x9d\xf8\x2f\x03\xce\x86\xa8\x71\xa2\x97\x57\x40\x2c\x13\xd9\x18\x26\x09\x5f\xff\x75\x84\x0b\x50\x38\xb0\xa7\x12\x69\x9d\x4e\x30\xda\x38\x4a\x9e\x85\x31\x72\xc0\x94\xbe\x56\x55\x95\x67\x38\x1d\x8f\x2d\x1a\x63\xf7\xde\xc3\x6f\x41\x55\x8d\x97\x20\xf1\xe2\x97\x9b\xfb\x66\x21\x6c\xc7\xff\x70\xda\x2c\x5c\x21\x33\x3c\x5e\xdb\xcb\x67\x9f\xf9\xfb\x9f\x71\x63\x43\xee\xed\x21\x79\xe6\xea\xb8\x65\x21\xb8\xdb\x0a\x91\x2e\xda\xc1\x82\xde\x0d\x05\x4b\x3a\x36\xff\x17\x0d\x9e\x2c\x84\x69\xdc\xf9\x7e\xa5\x43\xfe\x41\x36\x68\x67\x03\x1e\x1e\x8a\x6f\xf2\xe9\x95\xaf\x2b\x35\x74\xe4\x78\x72\x90\xe5\xf3\xbc\x16\x0b\x75\xcb\xeb\x14\x73\xe9\x9c\xe2\xff\xd0\x33\x4f\x35\xaf\xef\xe6\x99\x78\xff\x5e\x74\x7f\x40\xc8\xb4\xce\x42\x5b\x22\x57\xf2\xa9\x3f\x1e\x8a\xa3\xdb\xd9\x6c\x36\x1b\x8c\x6a\x4d\x65\xd8\xc7\xa7\xde\x1c\xcc\x9e\xf9\xeb\x4a\x66\xfd\x3c\x1b\x8a\x93\x70\x97\x10\x6b\x17\x35\x58\x7f\x3d\x72\x81\x32\x2d\x26\x10\x11\x1d\x19\xff\x80\xba\x10\xc7\xba\x5d\xa4\x26\x29\x3c\xc7\xda\x01\xfc\x51\x1f\x54\x1a\x1c\x25\x2d\x90\x4a\x19\x55\x9f\x17\x05\x8f\x45\xed\x14\xc6\x2f\xf2\xcc\x4b\xef\xf4\x30\x52\x51\x46\x51\x3f\x34\x01\x34\xad\x33\xb2\xb3\x53\x33\x51\x4d\xda\x78\x8c\x48\xbc\x07\x45\x54\xb6\x4d\x03\x9e\x05\x38\x66\x82\xa0\xa6\x03\xd6\x4b\x1d\x96\x03\x41\x15\x52\x03\x71\xe3\x7c\x34\xd0\x9c\x33\xf4\xc6\xec\xc5\x9e\xf8\x49\xcc\x58\x55\x92\x1b\x8c\x77\x42\x41\x46\x54\xac\x3b\x59\x4d\x9e\x31\xb6\xf7\xf2\x8b\x7d\x3d\x82\x76\xbc\x2d\xac\x84\x73\x01\xfb\xbd\x9c\x0f\xc0\x63\x31\xac\x5d\x2f\x00\x4b\xc9\x60\x2f\x2e\x22\xce\xd2\xad\x15\x62\xa0\xa2\x3d\x66\xa1\xe2\xd8\x27\x7f\x4a\x77\x11\x0a\x6d\x84\x4c\x41\xdd\x95\xed\x14\xd9\xdd\xfd\x60\xd3\x61\x1a\xce\x11\x26\x8f\x21\x1f\x67\xe9\x8e\x6c\x7d\x75\xe5\x0f\x0c\x57\x6d\x0a\x65\x9b\xda\xbb\x3c\xaa\x50\xec\xd5\xe7\x47\xdd\x61\x55\x52\xc9\xe1\x50\x11\xab\x94\xa5\x50\xb7\x53\xb5\x42\x4f\xf6\x4c\x94\x3a\x81\x04\xdb\x11\x46\xbc\xff\x82\x83\x13\x6a\xab\xe6\xe5\xbe\x24\xe7\x61\xee\xc7\x49\xeb\x91\x54\x11\xcf\xaf\x95\xc0\x1e\xd9\x45\x08\x49\x98\xbe\xbe\x17\x4d\x3b\xca\xdc\x44\xd0\x1d\xb9\xe9\xa8\xe6\x79\x2c\x74\x78\x37\x07\x3b\x44\xd3\x80\xb4\xf8\x80\x62\xe2\xa9\x1b\x2c\xe2\xbf\x29\x09\x7a\x81\xb8\x9f\x67\x58\x58\x8e\x80\x06\x5c\x25\xdd\x9d\x46\xbe\x4b\x2f\xbd\x97\x9e\xa2\xf7\xf8\xf1\xea\x0e\x53\xcf\x60\x93\x44\xf4\x0f\x29\xef\xb5\x33\x6c\xed\x9e\xe7\x51\x56\x9a\xd3\xb8\xa6\xca\x57\x49\xac\x6f\x34\xcc\xc1\xa4\x06\x26\xac\xed\x00\x9b\x89\x55\x3a\xe2\x40\x28\x02\xb7\x6c\x74\xb8\x5d\xa3\x0a\xba\x50\x15\x0b\x84\xd4\x7b\x43\x71\x0f\x19\x9e\xfd\xd5\x32\xf3\x7b\x53\xbd\x5c\xea\xf2\x9e\xdd\x20\x2b\x55\xd5\xb9\xf2\xae\x07\xba\xb2\xa6\x6a\x72\x52\xf0\x14\x83\x03\x94\xe3\xfe\xa7\xae\x1a\xf5\x3f\x71\xfe\xef\x10\x99\x40\x54\x89\x58\x8a\x33\x71\xd1\xc3\x27\x6f\x7b\x43\x41\xbf\xae\x7b\x97\x04\x30\x61\x00\x78\x95\x6e\x58\xa4\x79\x4b\x99\xe9\xcb\xa1\x98\x0c\xc4\xd9\xe7\x3e\xf9\xf7\x67\x14\xbf\x9f\x89\x9f\x85\x1f\xff\x19\xc4\x25\x89\x0f\x43\x3a\x2d\xec\xdd\x0f\x43\x81\x9f\xca\x20\xd7\x1e\xd2\xca\x0a\x21\x6b\xd8\x0e\x48\x16\xdc\x8c\x21\x46\x48\x63\x1a\x57\xe3\xf0\x7f\xe4\xff\xd8\x9d\xc9\x53\x06\xb8\x0e\x11\xf9\x7c\x2e\x90\x5d\x5c\x7e\x10\x12\x7b\x04\x69\x53\x83\x39\x95\x1e\x6a\x2d\xfe\xa6\xc7\x27\xe2\xbc\xa4\x72\x7f\x1b\x9e\x6b\xf5\x79\x2d\x79\x08\x66\xfc\x69\x87\x88\x10\xbe\xf4\x5b\xd8\x4b\xbc\x10\x9c\xb5\xe0\x9a\xfc\x1c\x35\xe1\x82\xad\xe3\x56\xe6\xc3\xf0\x4e\x38\xba\xd9\x05\xbf\x20\xf0\xf7\x87\x8d\x7a\xa3\xec\x52\x14\x2d\x17\x98\xf8\x93\x52\x5e\xe4\x97\x2d\x31\xb4\xba\x1e\xe1\x2b\x2e\xec\xed\x4b\x16\xaf\xd6\xaa\x1e\x55\x5d\x8f\x60\xb6\x5d\x90\x6e\xbb\x77\x4d\x6d\xb2\x69\x6a\xfd\xc9\x45\x7e\x69\xf9\x97\x1b\x79\x60\xe5\x66\x7e\x15\xa7\xe6\x0d\x68\x56\xee\xc9\x4b\x1f\x89\x51\x5d\x93\x68\x92\x5d\x4c\x92\x29\x75\xb5\x08\x73\x81\x91\x14\xc3\x95\xff\x55\xb1\x7e\x89\x1b\xce\x6e\xc3\x5c\x01\x3e\x49\x85\x88\xd9\x0e\x06\x8f\x07\xb1\x0e\xa5\x9a\x56\x9f\x17\x1c\xa3\xce\xb1\xd1\xd0\x5a\x2c\x73\x03\x4d\x7c\x43\xec\x59\x99\x61\xfc\x98\xdb\x27\xad\x38\x32\x3b\x20\xd8\xb2\x5c\x60\x02\x44\x0c\x60\xf4\x21\x0b\x62\x83\x7d\x07\xc5\xd8\xa0\xa9\x4b\xe8\xb3\x17\xfb\x63\xb1\xab\xc4\x44\x91\xb4\xf3\x4b\x8e\x7c\x13\xd0\xd8\x1d\x72\xf0\x8b\x62\xd7\xec\xa8\x77\x3a\x0a\xda\xed\x75\xa6\x47\x91\x35\x5b\x7c\x1d\x69\x28\xdb\xb6\x58\xb6\x76\x28\x1b\x99\x3a\x7f\xfb\x48\x36\xca\x53\x6f\x71\x2d\x72\x16\x28\x71\x1f\xdd\xd9\xf7\x31\xeb\x51\xf2\x48\xe8\x51\x6c\xde\x7a\xb9\x51\x88\x0e\xef\xa1\x82\x34\x9e\x04\x6b\x57\x28\x3e\xc4\xd5\x5a\x84\x12\xa1\xb9\x77\x99\x1a\x09\x1a\x06\xc7\xc1\x60\xc2\xf4\xb8\x2a\x33\x96\xdd\x99\xe5\x66\x2a\x2b\x14\x29\x61\x7a\xba\xc8\x70\x6a\xad\x50\xbd\x4e\x39\x27\x69\x5b\xb8\x0f\xd3\xed\x07\x0c\x0c\xe9\x75\x9b\x8d\x6d\x01\x76\x53\x2f\x43\xd0\x9e\x03\xd8\x45\x7e\xc9\x6b\x02\xe0\x0c\x5e\x42\x31\xac\x33\x7a\x5b\xaa\x98\x50\x5e\x3d\x07\x0d\x99\x1a\xc2\x3d\x44\x7a\x0a\x07\x43\x95\x25\x38\x18\xb6\x6b\x24\x71\x98\xe0\xaf\xd0\xe4\xfd\xfb\xf8\x18\x51\x1b\xd6\xa4\xb0\x11\x64\x31\x83\x78\x4e\xd9\xd6\x3b\x0d\x30\x6c\x24\x62\xe7\xf8\xb7\x8f\x71\xdb\xc3\x9a\x20\xc4\x47\x5b\x0d\xf0\xa1\x8d\x01\x7a\x89\x7d\xc2\xfb\x34\xfa\xf1\xbe\x4f\x4b\x25\x76\xd1\x15\x2d\x6a\x07\x4d\xed\xd6\x2e\xf1\x59\x7b\x9c\x45\xe1\x39\x77\x53\x06\xd3\xc9\x5b\x36\x87\xfa\x45\xfa\xaa\x81\x82\x68\xb1\x4f\x37\x87\xbc\x7d\x54\x13\xc0\x37\xd3\x3e\xc6\x32\xee\x4b\x6a\x05\xf6\xe5\x2d\x87\x01\x6a\x6e\xd8\x11\x82\x2a\xe3\x77\x7b\x4a\x5b\x1e\x88\x78\x6a\x60\x25\xd8\xd7\x54\x61\xe2\x2c\xa4\xff\x1d\x4f\x43\x47\xee\xc6\xcb\x5a\x2d\xfb\x71\x84\x71\x80\x0f\x31\x62\x71\xe4\xe9\xdd\xad\x79\x52\x5d\x4f\x6c\x4a\xbd\xfc\x08\x8f\x12\xd1\x47\x94\xd3\x6f\x84\x4b\x69\xac\x17\x2a\xaf\xda\x94\xb2\xe7\xd2\x74\x7a\xc5\x90\x63\xa1\x23\x2f\x54\x60\x75\xfb\x6a\xab\xc2\xcd\x58\xf5\xfe\xaa\x33\xdf\xb4\x89\xfe\x1c\xca\xb7\x71\x85\x35\xb2\x53\x75\xef\xfe\x9d\x0e\x3d\x1f\x39\xbe\x2b\xda\x78\xfb\x9a\xef\x1d\xb2\xbc\x89\x0c\x84\x77\xe1\x81\xf9\x94\x95\x54\xf9\xf0\xcb\x42\xea\xe3\x58\xfa\x8e\x24\x3c\x16\x51\x9f\xd6\xf4\xdc\xba\x5b\x30\x1e\x1e\x41\xdc\x9c\x67\xba\xb2\x8a\x77\xbf\x4d\xcc\x1b\xc3\x98\x5d\x5b\x24\xab\xc4\x5a\x1e\x75\xa3\x5d\x01\xb2\x20\xa8\xd8\x33\x2d\xc7\x50\x96\x52\xd7\x07\xea\xa7\x46\x16\xcc\x3c\x37\xd1\xf5\x82\x57\x2d\xf3\x45\xc0\xcc\x54\x16\xb2\x82\xd8\x05\xb4\xfb\xea\xe5\xca\x02\xc0\x00\xb1\xf1\xc1\x0e\xe5\x1a\x99\x40\x8e\x97\xe8\x97\x9a\xd9\x3b\x06\x43\x2c\x4a\x72\x93\x1b\xdf\x04\xce\xce\x39\x62\xc3\xae\xc0\x99\x15\xe8\x0b\xe8\x13\x8a\x45\xa7\x6f\x42\x7e\xe2\x74\xa1\xa6\x57\xf6\x43\x23\x06\x0f\x79\x20\xc1\x75\x2b\xbe\x65\x9d\x12\xa1\x0b\xa4\xeb\xa1\x06\x43\xd0\x57\xa0\xf4\x7d\xeb\xbe\xfc\x46\x61\x50\x9f\x43\x16\xe4\xa0\xdf\xc1\x26\xdb\xd4\xdc\x67\xc2\xc2\x00\x53\x26\x7f\xdf\xaa\xf6\xe7\xc1\x9c\x47\x6f\x49\xed\x81\x93\x0d\x30\x7b\xc4\x3a\xe5\xb3\x59\xb7\xce\x7d\x78\xe8\x8c\xac\x16\x30\x09\x57\x1c\x0a\xd7\x42\xce\xae\xa2\x2b\xee\x2f\x0c\x76\xfe\x5c\x55\xf9\x32\x07\x1d\x0b\x03\x6d\x50\x71\x25\xd3\x9a\x1c\xc0\x6e\x75\x7f\x4e\xac\xfe\x4a\x1b\xe0\x6e\xff\xf0\x2f\x7d\x6f\x6a\xf3\xc1\xe2\x14\x3b\x8e\x07\x5e\x9a\xd3\x2a\x07\x83\xa4\x5b\x4a\x97\x3a\x2b\xe1\x9d\x93\xd8\x88\x86\x47\x71\x3b\x15\x35\x09\x9d\xec\x20\x26\xdf\x39\xc7\x34\x13\x68\x8c\x61\x15\xd3\x8e\xfc\x28\xee\xf9\xf5\x2a\x51\xa6\x95\x6b\x86\x50\xab\x6a\x9f\xe2\x10\xae\x3d\x10\xe6\xf7\x01\x5d\x82\x34\x51\x64\x49\x18\xbb\x10\xdf\xa3\x52\x28\x6b\x57\xc7\x71\xd8\x19\xe5\x80\xf6\x3b\x8c\xe7\x73\xe9\x9e\x1f\x17\xe2\xe0\x3d\xd7\xb0\x7d\x5a\x0d\x60\xee\x7f\xb0\x87\xff\x7f\xf9\x98\x7e\x2b\x09\xc4\x58\x76\x1e\xc1\x8f\x0d\x16\x8e\x62\xc0\xdb\x25\x1a\xdc\x5b\xff\xfe\xf2\x4b\x50\x38\xec\x36\x71\xa2\x09\x4f\x15\x66\xb3\x63\x75\xd6\xbe\x88\xd0\xb2\x90\xd0\x27\x25\xf0\x9d\xa8\x4e\xf4\x87\x5f\x2e\xf8\xb8\x5e\x92\x50\xc3\x05\x4b\x43\xfa\xb0\x36\x8a\xec\x46\x4e\xd5\xde\x16\x54\x5c\xc9\x32\x00\xda\xd0\x5e\x8e\x4a\xca\x5c\xb8\xef\xfb\xac\x6b\xde\xbb\x1e\xb9\xb3\x4d\xde\xda\x73\xe3\x76\xc5\xd2\xa7\x84\xdd\x19\xed\x07\xc4\x7d\xf0\xb9\x60\x55\xa5\x08\x3f\x6b\x5f\xa3\x38\xd0\x70\x94\x96\xb1\x67\x58\x69\x44\xb8\x71\xbd\x69\x17\x16\x97\xe6\x9f\xb1\x78\xb9\x8e\xfc\x07\x08\xca\x5f\xca\x15\xe4\xa0\xb5\x45\xd2\x37\x1d\x0a\x4b\xba\xe6\xff\x0b\xfa\x8a\xfd\xb4\xb6\xba\x62\x92\x42\xcf\xf7\x79\x42\x90\x3f\xda\x2c\xd4\x5e\x59\x3f\x6e\x7d\x92\xe4\x9f\xb4\x65\xfe\x56\xc3\x58\x5b\x27\xfa\xdf\xe4\x2e\x64\x09\xda\x18\x83\x95\x70\x1f\x07\xca\x59\x4e\x1a\x9e\xe9\xa5\xeb\x8f\xe0\x57\xdd\xea\x53\xbc\xed\x23\xd1\xd4\x60\x9e\x66\x87\x16\xc7\x46\xdf\x90\xbd\xf3\x51\x5a\xda\xbe\x9a\x63\x30\x1c\x7e\xaf\x7c\x1e\xf2\x52\x96\x40\xbf\xc2\xa8\x32\xf3\x11\x52\x78\x32\x52\xec\xa5\x8b\xf1\xf7\xd1\x0d\x50\xf5\xec\x46\x05\xe3\xa0\x4b\x9b\x56\xd7\x50\xe3\x16\xc2\x80\x67\x39\xb6\xe0\xe5\x23\xb9\x0e\x9e\x37\xaa\x77\xad\x7c\x4b\x24\xe2\xf8\x38\x1c\x13\x0a\x68\x25\x8c\xb6\x47\x3f\x0e\x6a\x94\x62\x81\x96\x61\x2a\x22\x53\x85\x5c\x43\x36\x05\x96\xc3\xc0\xc1\x22\x2c\x36\x65\x9d\xbb\xf6\x96\x6c\xba\x43\x62\x15\x68\x51\x67\x6d\x85\x29\x5e\x55\x42\xe6\x06\x7d\x2c\xf6\xdf\x64\xde\x74\x57\x0a\x21\x94\xdc\x70\x05\xb7\xde\xa6\x68\x04\x0c\xb2\x16\xdc\x46\x53\xff\x2c\x43\x81\xd3\x72\x3a\x85\xb8\x21\x58\x8e\x4c\xad\x60\x41\x4a\x1c\x4d\x0a\x96\x4c\x1e\x8d\x6b\xdf\xc9\x0c\x39\xdb\x54\x1d\x6a\xab\x33\x14\x47\xf1\xb1\xf2\x67\x55\xc7\x75\x5d\xf6\xc9\xb8\xec\xe6\x66\xf3\x7d\x4d\x2f\xf3\x7f\x04\xc3\x8b\x73\xf9\x44\x2c\xa5\x23\x56\xa3\x28\x44\xa9\xcb\x03\x77\xe6\x46\xb9\x4c\x26\xa9\x72\x1d\xc9\xcc\x18\xd6\x87\xa1\x3d\xa5\x32\xb5\xda\x54\x4c\xc0\x57\x12\xd8\x8d\x39\x75\xbb\xd2\x55\x7d\x6e\xfe\xc3\xe8\xb2\xdb\x3a\x82\x0e\xc3\x0f\xdd\x91\xe8\x5b\x4d\x0e\x9b\x12\xb1\xb9\x07\xd0\x65\x11\x52\x3f\x9c\xc8\xa0\x92\x78\x12\xa2\x7a\xf5\x9d\x26\x75\x7a\xa8\xcb\xf8\x19\x1b\xd5\x09\x10\x4c\xea\xee\xae\x9b\x0b\xda\x26\x7e\xce\xb3\x67\x10\x8a\xf1\xa3\xd1\xe5\xb3\x24\xa2\xa8\x74\xd1\x44\x11\xfa\xfa\x83\x0f\x83\xc4\x9c\x9c\x78\x31\xf7\xa5\x46\x87\xc0\x6e\xe9\xb4\x4b\x38\x6d\x7d\x45\x38\xdb\xe2\x1a\x3a\x91\xb1\xa5\xdb\x49\xf9\x72\x69\xbf\xc9\x11\xe2\xa4\xd0\x93\x38\x8d\xc3\xf0\x92\x2d\x21\x38\x14\x5c\x94\x1c\x1f\x6d\xa1\x88\x62\x5c\x7f\x2b\xda\xcd\x61\xa2\x5f\x56\x7a\x99\x52\xaf\x5d\xb4\x0d\x51\xef\xe1\xd6\xbe\x44\x9a\x1a\xf8\xec\x08\xf1\x5a\x6d\x24\x46\xfb\xc4\x7e\xd4\x88\xe6\xbe\xcb\x11\x05\xaa\x26\x6f\xb6\x58\xe8\x72\xa9\x90\x85\xb1\x0c\xb1\x61\xee\xd1\xe0\x46\x61\xcf\x0e\x58\xb8\xed\xc6\x71\x43\xec\xae\x13\xd6\xa0\xf9\x78\x88\xb8\xe9\x7a\x3a\x59\x8b\x7e\xf4\x4d\x80\xf2\xed\x3b\xc3\x47\xc6\xe1\x2b\x03\x8a\x37\x35\x58\x7b\xce\x9a\x91\xe9\xb2\x2b\x50\xb1\x5d\xb9\x77\x4f\x05\xa3\x9d\xfa\xd5\x15\xa8\xc5\xab\xa9\x46\x55\x15\x98\xc3\x73\xc3\x7c\xa5\xd3\x4b\xb8\xf8\xf0\x91\x53\x8c\xab\xb1\x7e\xac\x16\x14\x19\x84\xf3\xdb\xb8\x07\xd3\x95\x5a\x8f\x0a\x69\xea\x97\xe4\x4c\x64\x80\xf6\xb0\xb7\x1c\xe8\x68\xb0\xc1\x91\xf6\x21\x78\x28\xdb\xf5\x3b\xda\x15\x43\x22\x27\xe3\xb6\x2c\x26\x5e\x10\x0d\x3a\xa5\xe7\x4b\xb0\x0a\xf6\x8a\xa2\xab\xd6\x16\x06\x82\x82\x5e\x23\x21\x79\xd6\x05\x25\x90\x4d\x6c\xd4\x0a\xea\x48\x26\xbf\x9b\x4b\x87\xef\x74\xf6\x99\x33\xaf\x44\x8e\x62\x41\x7e\x73\xee\x47\x9b\x37\x43\x2f\xe3\xb4\x5c\x1d\x41\x77\xb2\xfc\x64\xe0\xfe\xb5\xce\x33\x10\xc9\xe2\x85\x06\xdd\x24\x49\xd4\x48\x95\x92\x28\x74\x2f\x7c\x56\x14\xb7\x27\xde\xbf\xe7\xb7\xce\x80\x3b\x70\xb6\xd6\xad\x72\x74\x7d\x81\xe7\x08\x31\x2b\xd8\x4f\x39\x62\x1e\xdb\x6d\xce\x25\xc6\x39\xb6\x97\x54\xaf\x14\xd6\x3a\xff\x17\x29\xa4\xfe\x86\x57\xba\x92\xa5\x7d\x95\xfb\xc2\xa4\x6e\xba\xdd\x1f\x8d\x41\xad\xcd\x8a\xa5\xff\x21\xaf\xe5\x9b\x69\x95\xaf\xa0\xce\x6d\x39\x67\xdb\x68\xaa\x8b\x42\x4d\xed\xd1\x9d\x35\x98\x5a\x2f\x26\x0d\x45\xc2\x9a\x5a\xad\xc8\x0d\xe1\x7a\x66\xe4\x25\x5a\x4a\x54\x95\x63\x32\x73\xcf\xb2\x35\x8f\x68\x99\x65\xfd\xd1\x68\x34\xc0\x2e\xfd\x26\x34\x53\x85\xde\x17\xff\xd7\xc1\xdd\xa3\x4a\xb3\xf9\x35\xe6\xc2\xb8\x75\x9b\xe4\xe5\x21\x36\x57\x1c\x99\x05\xab\x6a\x55\xea\x32\x9f\xca\x42\x34\x46\x61\x4e\xbe\x69\x59\x9e\x29\xcf\xd3\x97\xc8\x8e\x2b\x80\x91\xa2\xbb\xd6\x4d\xe5\x71\x46\xed\x36\xec\xf7\xd8\xfd\x05\x03\xeb\xa2\x80\x1e\xed\x8c\x65\x7b\xf0\x33\x6a\x78\x46\x18\x7f\xf7\x4c\xfc\xfc\x21\xed\x5a\x2b\xfd\xfd\xad\x16\xe3\x24\x35\xdf\x3f\x23\x78\x89\x35\x57\x1a\x1d\xda\xda\x52\x2c\x3e\xcc\x94\x4d\x13\x05\x34\x3f\x27\xd7\x4b\xd0\x2c\x24\x66\x51\x43\x7f\xe5\xce\x28\x6a\x70\x4e\x9c\x8b\x25\xb8\x68\xec\xef\xe9\x64\xc0\x8d\x71\xaf\x92\x37\xf7\x30\xbe\x9b\xec\x7a\x94\x72\x39\x29\x5a\x36\xed\x4c\xd6\x92\x99\xa4\xe8\xf0\xe6\xf8\x88\x11\x6a\x89\xa5\x6d\x45\xb2\x73\x19\xc2\x58\xc8\x80\xa2\x27\x02\xf2\xbd\x40\x4c\x16\xc0\xf5\x4a\x3d\xc3\x67\xe1\x6f\x7b\xf7\x19\x5a\x52\x30\x4c\x42\xd6\xf2\x19\xfc\xc4\xa0\xc7\x58\x83\xab\x72\x05\xf1\x4f\x7e\xa9\x89\x59\x45\x3d\xa0\xe8\x16\x7c\x65\xee\x53\x2f\xa8\x83\xcf\x3d\x7b\xf9\x5e\x08\xdf\xf5\x1f\x6f\x65\x71\x0b\x16\x69\x7e\x7b\x79\x11\xfc\x1b\x3b\x5a\xbd\xc5\x61\xee\xc1\x93\xa0\x77\x34\x69\xf3\x63\xba\x66\xd5\xa5\xae\xd9\xf1\xc9\x62\x59\x75\x77\x2c\xeb\x3d\x8b\xe2\x7b\x43\x71\xcf\xce\xd4\x85\x33\x47\xdf\x1e\x45\xb4\xfa\x85\xeb\xd0\xe5\x87\xad\x4f\xe0\x51\xf1\x4e\x6c\xd8\xb0\xfc\x3b\xe2\xd2\xbb\x0e\xb9\x38\x38\xdd\xab\xfe\x6e\xcc\xa0\xf8\x6f\x8c\x41\xef\x2c\x69\xba\x95\x3e\xbb\x09\x2d\xa2\xa5\x7f\x22\x9a\xb8\xff\xa1\xbd\x15\xba\xd7\xfa\x0b\xbb\x49\xfe\x1f\x5c\xef\x91\x45\xc9\x8e\x45\x07\x73\x10\xf2\xa3\xa6\x6a\xd5\x2b\xfa\xc7\x5e\xfe\xf3\x30\x71\xa1\x4a\x2b\xf8\x64\xe2\x5a\x55\x06\x6c\xc0\x3b\xf9\x3d\x11\xc6\x77\x55\xb1\x2f\x6d\xa0\xd4\xee\xcf\xdf\x74\xb4\x4d\xcf\x7e\x16\x96\xab\x07\x13\xb6\x4b\xed\x1f\x84\xd3\xee\x81\xe8\x0d\xa3\xab\x7e\xe5\xb6\x8b\x94\xce\x92\xfe\xaf\x21\x51\x5a\x95\xd6\xac\x24\x65\x92\x41\x80\xc2\x52\x95\x35\x55\xcf\xd1\x33\xd7\x6e\x07\x8c\xe0\x2b\x6d\x4c\x3e\x29\xd6\x62\x5a\xe8\x26\x3b\x98\xc8\xe9\x95\x22\x31\xd1\x97\xb6\xc3\x15\x0f\xd5\x3e\x4b\x75\x43\x21\x3f\xfd\xc1\x9e\xa8\x7d\x47\x4d\x32\xff\x35\x30\x4c\x1f\xe3\x0c\x02\x13\x69\x54\x26\x20\x2c\x82\x92\x43\x4a\x2c\x02\x8b\x3d\x32\x66\xd2\x95\x45\xa0\x2e\x44\x15\x5a\x10\xac\xb8\xe5\xd3\x8a\xb0\x42\x75\xd4\xaf\x27\x5d\xba\xd6\x52\x8c\x9e\x63\xcf\xa0\x76\x33\x99\x76\x03\x99\x77\x1d\x1d\x64\x74\x47\xcf\x94\xf8\xd3\x46\xce\x1f\x0a\x05\xde\x5e\x01\xd1\xb8\x5a\xc4\xfe\xd6\xe6\xa0\x2a\x32\xa5\x50\xff\x0a\x87\xae\xf8\xb3\x58\x54\xbf\xbb\x6f\xb0\x00\x7a\xce\x0b\x48\xc4\x9f\x9c\xd8\x80\x70\x1a\x1c\x0f\xbe\x66\xb0\xac\x94\x0c\x4e\x06\xd0\xd9\xa3\x2f\xbc\x70\x00\x97\xde\x5e\xeb\x30\xb6\xb9\xba\x4b\x5a\xf5\x41\x77\xd7\x7b\xe0\x8e\x6c\x1d\xd5\x7a\xa0\xe9\x75\x45\x55\xfa\x0e\x11\x3c\x01\xc2\x95\x13\xda\x50\x9f\xbb\x95\x55\xb1\x94\xab\xc1\x87\x50\x47\x28\x8a\xc6\xe9\xca\xa7\xc0\x61\xef\xf8\xca\x5c\x89\x81\x6b\x23\xf2\x37\x74\x61\x88\x2b\x00\xa7\x28\x02\xab\x7d\x77\xd0\x31\x6f\xc3\x90\x86\xf0\xfc\xa6\x3d\x18\x36\x7e\xd1\xe6\xce\x0b\xed\xb2\xc6\xed\xce\x0b\xef\x7c\x5c\x7f\x54\x3f\x95\xa7\x1d\x77\x91\xc4\xe6\xe6\x0b\x5f\x60\x24\x38\xd4\x7c\xc2\x10\x00\x57\xc3\x8d\xf1\xe7\xdf\x82\x04\x30\xe4\xfc\xce\xf6\x82\xd0\x1b\xb1\x06\x99\xec\xdb\xeb\x40\x47\x5b\x0b\x1f\x60\x8e\xfc\xbd\x83\xd4\x5b\x4e\xcc\x6f\x83\x53\xb6\x15\x54\x26\x03\x4f\xa9\xd5\x72\x97\x47\xd3\xfe\xd7\x65\x29\x37\xab\x2d\x15\x52\x07\xfb\xa3\xd5\x87\x38\x39\xcc\x4e\x94\xb2\xe2\x2a\xca\x8f\xfb\xa0\x96\xca\x3e\x73\xe4\x42\x18\xcc\x36\xec\x5a\x29\x2a\x06\x42\x21\xa8\xb3\xa1\x87\x89\xa2\x88\x38\xc2\x5a\xfc\x85\xea\x6e\x42\xd4\xaf\xef\xe9\xbb\x0b\x65\x60\xcc\xfe\x38\x84\x19\xc8\x5d\xda\x86\xb2\xbd\x70\x66\x12\xa4\x99\xbd\xb0\x66\x52\xb4\xc5\xe1\x45\x94\x08\x5f\x6e\xda\x80\x5d\x54\xe5\xac\x30\x5e\x5a\x9f\x28\x32\x35\xec\x11\x02\x14\x60\x37\x04\x02\x19\x55\x41\x91\x7e\xe5\x13\xdd\x41\xa2\xf0\x91\x40\xd3\xa9\x5a\xd5\x2d\xdb\xce\xaf\xca\xc0\x73\x2f\x32\xaa\x8e\x12\xf0\x78\x1f\x07\x6c\xba\xa7\xe3\x5a\xf6\xf6\x01\x8a\xd8\x05\xc6\xe6\xca\x7f\xdd\x09\x7d\x88\x2a\xd7\xc5\xc0\x55\x23\xce\xb1\xac\x54\xd4\x6d\x00\xc2\x52\x57\x19\xb8\x33\x59\x84\x04\x6f\x72\xb5\x91\x3a\xcc\x86\x1d\xc5\x8a\xf8\xb6\x79\xbd\x9e\xfc\xe8\xdb\xce\xe9\xc9\x8f\xe0\x3c\x08\x25\xbf\x53\x52\x32\xaa\xee\xeb\xc9\x8f\xc9\x60\x2d\x6a\xf2\xbb\x8e\xa8\x7e\x33\x55\x75\x46\xf0\x5d\xa9\xf5\x21\x3d\x89\xa1\x62\xc9\x00\xbf\xaf\xb5\x5b\x6b\x13\xb7\x50\x4a\x17\xa6\x83\x19\xec\xb1\x82\xae\x20\x0c\x56\xcd\x8f\xf3\x6e\xf7\x3b\x6a\x20\x8a\x0f\x52\x93\x7f\xfb\xe5\xa2\xba\xa9\xbf\x72\xc5\xdc\x68\xae\x46\xdf\xdf\x7e\xc5\x42\x34\x5b\x6b\x83\xee\x5a\x33\x7c\xb4\x03\xb6\x6b\xd9\xfc\xde\x83\x93\x6e\xeb\xea\x6d\x3a\xf6\x7e\x5f\xbe\x6d\xcb\xd7\x71\xfa\xee\xbf\x80\x29\xf0\xfe\x46\x9c\x77\xf0\x21\xff\x22\x86\x86\x9b\xbc\xcc\xf4\xcd\x08\x3e\xe9\xcd\xc7\x5b\x1b\x20\x7d\x22\x36\x38\xfc\x0a\x6b\xc3\x2b\xa0\x90\x56\xe4\x59\xb7\x29\xa1\x6d\x7d\xe8\xf8\x16\x0b\x46\x97\x65\x96\xbd\xb8\x56\x65\xed\x6d\x0c\x3d\x7a\xb4\x37\x74\x65\x7e\xdf\x38\x32\xf9\x3b\x9a\x1b\xe0\x9b\xbb\xc2\x39\x22\x6b\x03\xb3\x2e\x78\xc3\xc2\x79\xa5\xe4\x6e\x93\xc2\xe1\xa1\xf8\x8f\x37\x68\xcd\x36\xad\xf2\x4b\xa1\x75\x1b\x10\x1b\xd4\xb0\xb1\x30\xcb\x55\xbd\xa6\x26\x0d\x23\xf1\x46\x0b\x4a\xee\xc2\xe1\x74\x59\xac\xa9\xee\x21\x19\x83\x7d\xe9\xa6\xba\x6a\xea\xc5\x7a\x14\xea\xa1\x63\x32\x3e\x1b\x6e\x18\x0a\x94\x53\xfc\x69\x99\x61\xc5\x5f\x88\x0a\x2b\x75\x0d\x5d\x34\xec\xe8\x3e\x5b\xdf\xaa\xdc\xce\xf3\xaf\x46\x3e\x62\xfb\x8f\xbc\xf3\x5c\xb8\x3e\x10\xcf\x18\xd4\x67\xa1\x20\x41\x18\xc2\x07\x2d\x24\x43\x84\x50\xf4\x67\x0c\xca\x0d\xa1\x83\x78\x76\xa1\x46\x24\x9e\xa1\x01\xc6\xbd\xed\x59\x98\x2b\x39\x14\x69\x8c\x67\x7e\x02\x5b\xab\xa7\xfc\x32\x5b\x8f\xfe\x67\xb3\xf2\xa4\x34\xff\x4f\x6f\xe4\x49\x3f\xe8\x77\x1b\xcf\x1e\x36\x9e\x14\x69\xbf\x9b\x78\x7e\x2b\x13\x4f\x8a\xd9\xfd\x2c\x3c\xbc\x11\x57\xcb\x6e\x01\xc9\x1f\x57\x6a\xcd\xda\x8f\xa1\x3b\xf5\xda\xfb\x50\x11\x15\xbe\x61\x69\x5d\xad\x59\xd8\x2c\x0e\xcb\xb8\x6d\x68\xfd\x22\x84\xa5\xb0\x7a\xba\x10\xee\x98\xa3\xe0\x3e\x4c\xc0\x98\x4a\x2b\x8e\xe2\x79\xc3\xe4\x4a\x48\xac\x73\x3e\xc9\x5a\x34\x65\x38\x33\x58\x54\x33\x23\x00\xbf\x7b\xe1\x70\xc7\x40\x56\x9c\x44\x8b\x1c\xfe\x15\xec\x57\x7b\xd0\xc3\x4e\xeb\xd5\xc6\x90\xff\x1c\x83\x39\x5d\x74\xbd\x38\x10\x63\x7b\x80\x7d\x8e\x07\xd9\xc1\x01\xaf\x87\x60\x77\x04\x42\xfb\x10\xfb\x7d\x29\x2d\xf1\xdc\x6f\x24\xb5\x98\xd8\x20\xf0\x9d\x8e\xe7\x0d\x04\xd7\x4d\x72\xbf\x92\xe8\xe2\x37\x5f\xc7\xf1\x89\x1d\xc1\x8d\x80\xc0\x76\x61\xd0\x7d\x69\xb7\xba\x6e\x13\xee\xef\x06\xc4\x7f\x4a\xa3\x52\xba\x3f\x3f\xda\x7e\xd8\xb2\x2c\xb9\x4d\x34\x4c\x5b\x13\xe2\x2e\xd8\x7c\x66\xee\x7b\x62\xfe\x6e\x5c\xfc\xfb\xd1\xc1\x3e\xb6\xc5\x34\xc0\x5f\x4f\x7e\x8c\x34\x86\xbd\x88\xc3\x99\x9d\x07\xed\x96\x6c\xbf\x84\x46\x7e\x37\x5f\xfe\x0d\x68\xe2\x57\x5b\x2f\xdb\x92\xdc\xaf\x5c\xdf\xdf\xed\x9c\x7f\xdb\x75\x8e\x0b\xb8\x56\x9d\x0b\xdd\x59\x8a\xb5\x5a\x6f\x34\x20\x74\xd1\x84\xac\xd6\x17\xf9\xe5\xaf\xdb\xfa\xfb\x19\x50\x97\x6a\xa9\xab\xf5\xbf\x88\x05\xf5\x65\x79\x80\xdf\x13\xac\x2a\xbf\x24\x4e\x0b\xe0\xed\x78\xbf\xc8\x72\xfa\x15\xce\xe0\x17\x9b\x4e\x37\x35\x1a\xfb\x87\x34\x1f\xe1\xc7\xfe\x2b\xd9\x8f\x5a\x5f\xf4\xbb\x01\x69\x0f\x03\x52\x0b\x6b\x7b\x58\x90\x2c\xc2\x94\x37\xe4\xa6\x52\x53\x6c\x4a\x27\x86\xa9\x9c\x4a\xf7\x73\x30\xf3\x46\x80\x70\x7f\xc8\x6c\xbd\x2e\xf1\xee\x83\xe7\xa5\x5d\xfb\x2d\x66\xa7\xc9\xc6\xfd\xc5\xf6\xe1\x4e\x0b\x71\x94\x00\xc7\xbc\x1b\x43\x97\x1d\xf8\xbb\xf9\x6c\x1b\x5d\xfd\x4a\xfb\x19\x35\xb4\xff\xdd\x6e\xf6\xcf\x66\x37\xdb\x44\x08\xff\x78\x86\x33\x22\xb1\xdf\x0d\x66\xbf\x1b\xcc\xfe\x5f\x30\x94\xb4\x36\xe6\x2f\x8b\xb8\x0b\xb5\xbf\xba\x37\x53\xfb\xaa\xdb\x21\xa9\x41\xcd\xd7\x13\x0b\xb2\x45\x97\xd8\xd0\x2e\x21\xf6\x0c\xa7\xf8\x4f\x20\x0e\xfc\x6e\x19\xfc\x07\x24\xf8\x7d\x4c\x83\x9c\x2c\xb7\x5b\x0a\x3f\x5e\xd2\x75\x16\xc3\x0f\xed\xaa\x71\x9b\x36\x8c\x37\x32\x7e\xd6\xc1\xb7\xff\x57\xc8\xfe\x37\xb3\x84\xfd\x6e\xe9\xfc\x4d\x69\xfc\xa3\x4c\x9d\xbc\xa3\x41\xb7\xe0\xfd\xbb\x99\xf3\x1f\x7b\x91\x7f\x63\x3b\x67\x27\x41\xa0\x8d\xf3\xf2\x6f\x68\xe3\xac\x95\xa9\xdf\x51\x0d\xb3\x7f\x11\x0b\xe7\xff\xb5\x77\xed\x4b\xae\x73\x75\x23\x58\x51\x98\xa6\xcc\x6b\x61\x3f\xd8\x8a\xaf\xb3\x4a\x2e\xd5\x8d\xae\xae\x60\x91\x78\x51\x49\x59\x7a\x29\x56\xf2\xeb\xf6\xc9\xb8\x4b\x95\x7d\x91\xeb\x2a\x8a\x05\xb9\x2d\xed\xbc\x55\xa6\xfe\x8a\x75\x35\xad\x54\x01\xa4\x06\x76\x56\x68\x82\x77\x8e\x65\x26\x97\x7a\x49\xfd\xb0\xf2\xba\x67\xa0\xba\x62\xa8\x53\x03\x25\x32\x4d\x5e\xce\x0b\x85\xef\x41\x52\x06\xc8\x4a\x49\xa3\x4b\x39\x29\xd6\xc2\x2c\x25\x76\xa5\xea\x9f\xfd\xff\xc7\x57\xa2\xc8\x4b\x65\x05\x23\xfb\x5e\x1c\x54\x14\xba\x16\x4a\x9a\x1c\x37\x88\x6b\xb0\xac\x4b\x1a\x16\x4a\xdd\x40\xc5\x18\xfb\x7d\x76\xa4\x85\xac\x4a\x65\x0c\x56\xb9\xcf\x41\xd8\x60\x0f\x1a\x75\xad\xca\xa8\xaa\xb9\x2e\x0a\x7d\x63\x51\x4a\x1f\x88\x75\xe2\x29\xb7\x9e\xb5\xea\x4b\x71\x73\x80\x75\x16\xb4\xae\xc9\x04\x6d\x27\xad\xca\xba\x5a\xaf\x74\x5e\xe2\xb6\x87\x92\x6e\xa0\x6d\x28\xab\x99\x35\x68\x4c\x6e\x0f\x36\x7a\xa5\xe7\xe2\x40\xbc\xd2\xf3\xb9\x85\xb6\x94\x98\x63\x76\x7e\x07\xec\x9b\x26\xaf\x95\x38\x10\xe7\x0e\xdd\x2e\xb1\xdf\x2d\x70\xc7\x33\xf6\x77\x78\x84\x96\xc4\xc2\x6e\x01\xfd\xb6\x29\xc5\x81\xc0\x2b\x48\x19\xea\x56\x4d\x1b\xf7\x26\x09\xbc\x6c\xc7\x2b\xbf\x55\xa6\x29\x5a\x2f\xb5\xfb\xac\x29\xa8\xb8\xa8\xe7\xf9\x16\x89\x54\xc1\x84\xb6\x8a\x27\x76\xb1\xc8\x55\x25\xab\xe9\x62\x8d\x64\x71\xa5\xd4\x4a\x55\xae\x90\x41\xa1\xe7\x1b\xca\xb6\x74\x60\x18\xf9\xbd\x7d\xc4\xb3\xfa\xae\x75\x08\xe3\xc1\x26\x7a\xa5\xe7\xc6\xf5\x30\x67\xbb\x91\x1a\x22\x59\x9e\xa6\x97\x79\x1d\x99\x4c\x39\x99\x24\xf6\xd1\x42\xcf\x99\x81\xdc\xce\xe5\xcc\xcf\x0a\x0b\x7c\x75\xcd\x09\xea\x99\x76\xf7\x72\x77\x94\xe5\xf0\xe7\x5b\xa9\xc3\x0d\xc7\x1a\x37\xe8\x01\xc0\x71\x6f\x59\xfd\x18\x3c\x36\x57\x76\x23\x60\xe3\x76\x3b\x88\x01\x82\x33\xaa\x6e\x56\xfd\xc1\xd0\xe1\x65\x55\x29\xb9\x9c\x14\xaa\x4f\xfb\x15\x40\xa7\xd2\xee\x20\x2a\x52\x15\xa6\x51\x35\xe5\x48\x20\xd3\x71\xcb\x6c\xa8\x57\x3c\x13\xe3\xd3\x0f\xbf\x0f\x4c\x77\x24\xc4\x4b\xcb\x0a\x54\x59\xe7\x95\x2a\xd6\xa2\x59\xb9\xe5\x60\xb3\xbb\x01\x3f\x4f\xdd\xf3\x66\x47\xe8\x98\x81\x3d\xd2\xda\xab\xd2\xea\x98\xee\x88\x3e\xb5\x66\x53\x81\x3e\xb2\xa9\x74\xad\x0e\x3d\x49\x85\x79\xe9\xa1\x2d\x05\x08\xfd\x7a\x49\x63\xf4\x34\x0f\x05\x3c\x5b\x8b\xe6\x25\x05\xcf\xb5\x9f\x53\x9d\xe1\xa5\x5c\xf3\x46\xf1\xc8\xe1\xec\xc9\x09\x1e\xb0\xd5\xaa\xd2\xab\x0a\xda\x0e\xba\x8f\xd9\x85\x04\x5d\xd2\x67\x3c\x77\xc2\x09\x43\x44\x8d\xb7\x06\xa8\xd2\x24\xb1\xf9\x6a\xa6\xa1\x3e\x34\x4c\x7c\xf7\x27\xe5\x06\x68\x61\xc7\x5e\x45\xd6\xf1\x81\x78\x85\xab\x67\x63\x7f\x8d\x88\x5c\x89\x66\x35\xd5\x4b\x28\x13\x4d\x44\xe4\xd8\x5a\x4a\xe8\xd3\x5b\x6c\x66\xa8\xcb\x5a\xdd\x46\xc3\x84\x15\xd9\x85\x24\x0b\xf7\x0d\x11\x3d\xc7\x0f\x4e\x6d\x28\x80\x58\xda\x28\x72\xe5\xa7\xf7\xc4\xd0\x2c\x2f\x73\xb3\x68\xbb\xf9\x7e\x31\x8e\x68\xc0\xec\xef\x87\x23\x6d\xea\xbd\x91\xf4\x05\xc8\x33\x98\xca\x01\x33\x76\x5c\x44\xe8\xa6\x5e\x35\xac\x0e\xf3\x8d\x38\xff\xe6\xa5\xef\xf9\xe1\x9b\xf1\x50\x2b\x11\xc7\x8e\x89\x79\x0b\xa1\x46\xf3\x91\xf8\x5e\x09\xd3\xac\xa0\xa8\x6e\x5e\xce\x34\x71\x2f\xe8\x61\x37\x18\x0a\x05\xf5\xa5\xed\x2f\xf5\x74\x34\x1a\xa1\xf9\xb4\xc8\xaf\xfc\x68\x23\x7a\x88\x00\xb6\x31\x51\x7a\xfd\xdb\xd6\x54\x40\xac\xd7\x8d\xe5\xd7\x45\x61\xcf\xab\x39\xb2\xc6\x4a\x37\xf3\x85\x3f\x64\xde\xb8\x6a\x72\xd0\x8c\x5b\x18\xa9\x97\x0a\xbe\x97\x3e\xcf\xd4\xb2\xcc\x64\x95\xf9\xc1\xcf\xbf\x79\xd9\xbd\x16\xaf\xe0\x48\x89\xb9\x18\x3e\x73\x46\xff\xe5\xc1\x2a\x56\x4f\x39\xc3\xce\x44\xde\x04\x97\x61\x5d\xa8\x5e\xcf\x5f\xc1\x22\x77\xef\xba\x2e\xbe\xa9\xe5\xf4\xea\x1d\x76\xcd\xc4\x14\x93\xe7\x72\x55\x37\x15\x7e\x2e\x5f\x19\x10\x8d\x04\xc8\x46\x60\xa2\x82\x45\x06\xa9\x5a\x02\x69\x41\x1f\x22\x28\x48\x68\x1f\x33\x94\xfe\x82\x25\x08\x8b\xf5\x48\xd8\xc5\x74\xed\x8e\x26\x4a\xb8\x06\x84\xd8\x9a\xd2\x28\x45\x45\x13\x47\xbe\x34\xbe\x2c\x8c\x86\xb2\xc8\xc6\x75\x99\xb6\x43\x01\x56\x6b\x2d\xac\xc8\x68\xdf\xa6\x2a\x23\xfa\x40\x2c\x37\xca\xe3\x1f\x29\x64\x30\x72\xdf\x4a\xdf\xf0\x8e\x0e\x6b\xfa\xd3\xa2\xe2\xa2\x57\xe8\x79\x6f\x28\x7a\x99\x9a\x34\xf0\x8b\xa5\x19\xfb\x5f\x3b\x86\xfd\x2f\x50\x59\xef\xd2\x37\xb1\xea\x17\xea\x5a\x15\x03\x71\xf6\x39\xa9\x4e\x85\xaa\xc5\xd2\xcc\xbf\xc1\x4a\x82\x0e\xc7\x42\x98\x9b\x1c\x5c\x00\x04\xef\x7b\x94\x59\xbc\xd1\xeb\x9e\x45\xd7\xe0\x8d\xf1\x25\x7c\xf9\x33\xef\x00\xe0\xef\x81\x71\x47\xb5\xfe\x6e\xb5\x52\xd5\x73\x69\x54\x7f\x40\x2d\x1b\x43\x31\xe3\x49\xa5\xe4\x55\x54\xa3\xd5\x7e\x7b\x2d\x34\x92\x59\x84\x9c\x0b\x18\xf0\x32\xd8\xa6\xe8\xc2\x06\x38\x71\x26\xfa\xa3\xd1\x48\x56\x73\xc3\x90\xc1\x0a\xa7\x5a\xe2\x0c\xd5\x6e\x03\x69\x3e\x38\x8b\xa9\xf2\x01\xfb\xaa\x07\xc2\x8e\x37\xfa\x51\xe7\x65\xbf\x27\x7a\xf0\x41\x3f\x94\xfe\x83\xec\xb4\x47\x72\xb5\x2a\xd6\xfd\x68\x4a\x43\x78\xcc\x19\xac\x40\x5f\xf5\x5d\x53\xbf\xaf\xe4\xea\x70\x92\x97\xa8\x98\xcf\x2b\xdd\xac\xfc\xf6\x02\x6a\xbb\xe8\xc1\x45\xbb\xd6\xf0\xcb\x73\x5d\x14\x72\x65\x54\xc6\x17\x1d\xee\xb0\xef\x24\x34\xfe\x19\x86\x4b\x11\x04\xc0\x1c\x91\x78\x61\x03\x9c\x45\x64\x21\x27\xaa\x38\xeb\xf5\x22\x4c\xe2\xe8\x78\x2f\xea\xf2\xf9\x91\xe8\x85\x01\x12\x4c\xa6\x7c\x41\x88\xde\xa8\x52\x2b\x25\xeb\xfe\x83\x07\x2d\xfe\xd0\x81\x59\x8e\x80\x17\x65\x96\x7e\xdb\x68\x4e\x37\x3c\xbf\x99\xef\x82\xb4\x78\x60\xdf\xef\x87\x76\xed\xfb\xb6\x4c\xf9\xe0\xa0\x7b\xca\xad\x22\x94\xd0\xc8\x0d\x05\x6f\xf8\x80\xaa\x99\xd6\xba\x62\x16\x23\x68\xda\x8b\xcd\x72\x17\xaa\xca\x6b\xb0\x5c\xdd\x81\x9e\xd1\x1d\x5a\x9c\x3b\x52\xbe\x33\x2a\xee\x1b\x07\x02\x5d\x4b\xcc\x27\x41\x9c\x5a\x76\x81\x60\x1c\x77\xb7\xb7\x63\x61\x89\xc7\x62\x2d\xf2\x32\xaf\xc9\xad\xd5\x3d\x59\x6f\x98\x0a\x03\xfe\xb7\x6e\xc0\x78\x51\x2f\x14\x58\xa7\x98\x94\xe9\x35\x00\x90\xf6\x83\xf4\x2f\x96\xaa\x5e\xe8\xcc\x40\x01\x52\x35\x55\xc6\xc8\x6a\x0d\x30\x32\xe3\x5a\xc1\x1d\xec\x19\x17\xbd\xd0\x2b\xd7\xd7\xb2\x12\x5f\xad\x2d\x7e\x0c\x15\x24\xeb\xc4\x57\xbf\x47\x40\x3d\xbb\x3c\xf4\x2c\x5d\x8a\xcd\xf5\xb0\xab\x42\x18\x0f\xca\xf1\xf7\x9d\x17\xf5\x8d\xaa\x0d\x9d\x80\xf9\x5f\xb1\xe7\xdc\x2d\xfe\x9a\xcf\x44\x5e\x0b\x75\x9b\x9b\xda\xf8\x1e\x71\xad\x26\x4d\xe3\x23\x36\x18\x16\x5e\xf5\x47\xb9\x2b\xa8\xee\x9a\x1c\x4d\x6f\x87\xe2\x67\x3b\xf6\x33\x31\x3e\x82\x3e\x05\xf7\x69\x2b\x6c\x9c\xff\x6a\x97\x94\xc9\x3f\xc5\x4a\x0a\xa0\x87\x8b\xbe\xba\x86\x8e\x6e\x53\xbb\x08\xb3\xa6\x10\xba\x54\x66\x00\xda\x82\xc9\x33\x75\xa0\x66\x33\x10\x48\x2c\xa1\x15\xb9\xa9\x87\xc2\x68\x36\x52\xa5\x88\xe2\xf2\xda\xc9\xf5\x10\x82\xc4\x8d\x05\x4e\x6f\xc5\x7a\xfc\x10\xdd\x86\x97\x37\x7a\x0e\xec\x97\x07\x4b\xe1\x7d\xce\x6e\x0a\xac\x52\x2f\xce\x44\xee\xc7\xf9\xd0\x42\xcf\xe1\xa1\xf8\x93\x34\xf9\x54\xa4\xc6\x2c\x5f\x61\x98\xe1\x50\x66\x99\xfd\xa5\xdf\x5b\xe9\xd5\x01\x9a\x29\x7b\xc3\x1d\x48\x64\xb3\x19\xad\xf4\xaa\xcf\x48\x4b\x88\xd0\x46\x30\x37\x56\x7a\x57\x15\x6e\x1d\x99\x17\xd4\x99\xce\x4e\x05\x0e\x5b\xd8\x89\xa6\xd6\x2b\x48\xe0\x1d\x85\x11\xc8\xe4\x81\x4f\xbf\xf8\xcf\x7e\x78\x1d\xce\x70\xc8\x48\xf1\x00\x1d\xed\xf1\xfb\xcf\x49\x45\xb0\xf2\x69\x5e\x66\xf9\x94\x56\x69\x21\x8d\xd3\xd5\x27\x6b\x90\x66\xbc\xda\x8d\x9b\xb2\x3d\x09\x0b\xde\x1f\x04\x74\x0f\x22\x44\xbf\x91\xd0\xfe\xb0\x65\x37\xdc\x8a\x6a\x80\x3e\xf8\x28\x84\x5b\x42\x31\xaa\x98\x11\x2f\x8f\x3f\x18\x12\x88\x9d\x51\x3e\x8d\xb1\x74\x40\x5d\x78\xb5\x23\xc6\x78\x85\x2b\x11\x5e\xdb\x8f\x27\x18\x89\x68\x8f\xf0\xff\xbd\xcc\x6b\x31\x3e\x3a\x5a\x9a\xd0\x6b\xd3\x2e\xbd\xac\x2a\xb9\x16\x14\x5c\xe2\xb9\xa9\xbc\x0a\xc6\x63\x75\x0b\x18\x65\xeb\xd0\x11\x36\x31\xb4\x63\x27\xab\xbe\x93\x24\x1d\x19\xc0\x89\x13\xd4\xc8\x52\xa9\xcc\x08\x59\x62\x5c\xeb\xb1\x9f\x33\x6b\xa9\x9f\xd0\x35\x99\x51\x7c\x53\xc7\x4a\x81\xbe\x64\xd1\x72\x68\xc9\x9c\xf2\xef\xcb\x21\x19\x53\x59\xd7\xd4\x5a\x47\xc3\xa1\xd7\x23\x5f\x2a\x68\x40\xd5\xa6\xbd\x4a\xfd\xd4\x28\x03\x9f\xdf\x3f\xa6\x2f\x6e\x51\x61\x5b\xcf\x72\x3e\x3c\x38\xfd\x5e\x77\x95\x5c\x0d\x87\x63\xb7\x4e\x84\x16\x53\x5e\x56\xd1\x0d\x45\x7e\x0e\x77\x22\xda\xf3\x11\xec\x1d\xf4\xa4\x27\x5c\xb7\x22\xec\x9e\x95\x21\xd8\x9f\xdc\x25\xeb\x27\x7a\x16\x26\x4d\x05\x6c\xdd\xe9\xd0\xac\xfa\x60\x27\x22\xb9\xda\xbe\x78\xd3\x73\x74\x97\xf6\x1b\x55\x58\x6d\x8b\x12\x74\xdf\xc3\x67\xb9\xb1\x3a\xd2\xd6\x67\x18\x8c\x7f\x6e\xae\xea\xad\xcf\xd0\xfd\x14\x9e\x5a\xb4\x6c\x7d\xc6\xc2\xf8\xe7\x6a\xba\x10\xc2\xa4\xfd\xe5\xaf\xe4\xea\x9d\x8f\xec\x80\xab\xfe\x6c\x0c\xdd\x89\xf1\xb0\xea\x77\xbf\xd0\xc3\x0f\xfc\x10\x5c\x04\xda\x30\x4f\x58\xa3\xee\x01\x9d\xc8\xa2\x0c\x85\x32\xd7\xba\x8a\x9a\x4f\xd9\x0b\x91\xb4\x08\x08\xd1\xb3\x0d\xe6\xfb\x30\xde\xd0\x99\xbc\xc9\x0b\xb8\x50\x6b\x71\xa3\x98\x0f\x62\x33\x49\xb3\x59\xb9\x8a\x9f\x51\x99\x7b\xd8\x17\xd0\x0a\x60\xab\xf4\xf9\x36\x1c\x18\xb8\xc1\x57\x39\x5a\x7f\xad\x1c\xc6\x5e\xe1\x9c\xa0\x6b\xec\x49\x00\xf8\xdf\x3a\xbd\x40\xb2\x91\x31\xf1\x35\xd6\x90\x57\xa6\xfe\x92\x2e\x87\x7a\x1b\xee\xbe\x8f\x0f\x76\xf4\xc0\x9b\x83\xf5\xbe\x68\xa0\xbe\x7d\x4d\x5b\x1f\x0b\xc9\xf7\xc4\x03\xe1\x1e\xf7\x11\x42\x35\xbe\x7f\x93\xe5\x96\xcc\xb6\x1b\x66\xe5\x75\x0f\x37\x89\x0b\x07\x78\x49\x9b\x3f\x82\x00\x6a\x46\xf2\xb0\x7f\xa6\x41\xdd\x76\x35\xa1\xac\x34\x6e\xba\xcc\xcb\x55\x9b\xd0\x17\xef\xe0\x7f\x5e\x14\x3a\x6b\x5a\xa1\xe7\xfd\xde\x17\xfc\xeb\xc3\x1b\x47\xb3\xa6\x28\xda\xcd\x7b\xfe\x0c\x11\x83\x9d\xde\x2c\xd7\xc6\xd0\x9e\x4f\x76\xf6\xbf\x19\x35\x77\x9d\x3d\x1e\xa7\xe9\xd1\x93\x29\x93\x57\x6c\x2d\x43\x25\xee\xae\x49\xbb\xda\xec\x70\x0e\xd2\x53\xa0\x65\xf8\x32\x2d\xa4\x80\xdc\x48\x13\xba\x39\x08\xf4\x22\x6f\x23\x95\xc0\xb4\x5b\x64\x12\x79\x30\x36\x50\x73\x1b\xe7\x25\x09\x37\x1d\x0c\x0c\xb5\xb4\x4e\x4b\xf6\xdf\x87\xad\xc4\x27\x4e\x12\xc4\x94\x7e\x28\x6c\xca\x56\xc8\x5c\xe8\x83\x20\xb4\xf7\xca\xa0\x7a\xed\xe8\x6a\x28\x56\x8d\x13\xa8\x55\x68\x1a\x41\xbd\x9f\x49\xab\xaf\x99\xc1\x9c\xab\x8e\xa0\xff\x42\xd0\x0a\xd3\x1f\x8d\xc8\x72\x98\xaa\x55\x90\x83\xd6\x78\x87\x35\x48\xc9\xcb\x5a\x95\x19\xa2\x69\xa2\x7c\xdb\x77\xef\xe0\xc6\x39\xf6\x8c\xd7\xc5\x09\xbf\x28\x89\x21\x0d\x85\xd6\xd6\xc6\x0b\xa5\x91\xa7\x2c\x9f\x2e\x40\x29\x9c\x28\xa7\xdf\x67\xb0\x02\x60\x92\x76\x51\x2e\xb1\x1b\x60\x24\xc4\x97\xba\xf2\xe2\x2c\x73\x8b\x7f\xb5\x4e\x4e\xdc\x1d\xda\x77\xa2\x1e\x9b\x5d\xfa\x31\xc9\xa8\x89\x57\x02\xdb\x3f\xf7\xec\x63\xbd\xb0\x36\x35\x52\x92\xd3\xa5\x9c\xaf\x00\x03\x6f\xdc\x72\x79\x25\x9e\x54\x7e\xde\x81\x3f\x79\x76\x0e\xdc\xa7\x43\xfb\xdf\xe4\x0a\xd8\xd7\x85\xd2\x7a\xd0\x53\x48\x70\xc5\x52\x60\x86\x25\x40\xcb\x70\x0e\x79\x5f\x67\x8a\xd3\xd4\x25\xc7\x6a\x17\x11\x83\xd7\xd5\x7d\xb3\x55\x27\x54\x46\xe5\xa5\x08\x37\x48\x61\x33\x1e\xdb\x84\x5d\x1e\x0c\xef\x31\xe0\x3a\xa8\x24\x44\xb1\x65\x8f\x46\xe4\xd0\xd5\x32\xda\x2e\xbb\xfb\xea\x34\xa9\xda\x92\x7c\x7c\x8f\xec\xa0\x57\x60\xec\x84\xfb\x96\xa8\xfe\x28\xa6\xb7\xf6\xda\x33\x0f\x7d\x71\x75\xd9\x6e\x23\x4d\xac\x06\x3c\x06\xb4\x5f\xa6\xe8\x9b\x23\x3c\x36\xab\x0e\x35\xc2\x05\x88\xb8\xe5\x4f\xea\x8e\x39\x0d\x2f\x30\x38\x29\x4a\x7d\xa0\x57\xd8\xcb\x36\xd9\xb1\x76\x30\xcb\xf6\xf3\x4a\x19\x61\xf4\x52\x89\xab\xbc\xcc\xec\x20\x70\xfb\xe0\x06\xbc\x3e\x76\xe3\xa0\x31\x00\xa2\x56\x2c\xdb\x29\x24\x76\x92\xc8\xb4\xc8\x3d\xb7\x00\x7f\x38\x6c\x75\x70\x80\xe8\x0a\x1c\x44\xb5\x72\xcb\xd4\xc9\xcd\x40\x51\x44\x30\x5a\x7c\x3b\x94\x04\x63\x51\x4e\xce\x14\xf0\xd9\x00\x7b\x77\x3d\xf2\x00\x1b\xf0\x45\xb2\x5c\x33\xef\x1c\x33\x80\xa0\x63\x1e\xb6\x57\x78\xaf\xef\x47\x83\x64\x96\xe5\x66\x2a\x2b\xcb\xd8\xc0\x30\x08\x47\x80\x2e\x03\x19\x12\xd7\xb7\x34\xe0\xf6\x69\xa5\x96\x44\xfe\x51\xe4\xd2\x79\x89\xd6\x2c\x81\xd6\x2c\x63\x55\x4d\xf8\xdb\x2d\x48\xc7\xc7\xa3\xe5\x64\xa2\x44\x9e\xa9\xe5\x4a\xd7\xaa\xc4\xb3\x9a\xb1\xb4\xa1\xdd\x04\x6b\xdd\xf4\x2a\x25\x64\x96\xd9\xd7\x7e\xf1\xf5\x57\xa2\xd4\x19\x75\x9f\x12\x99\x9e\x36\x4b\xe8\xb1\xb0\xb4\x1a\xbe\x69\x2a\x40\xd9\x2c\xaf\x30\xee\x08\x85\x6d\xd4\xc6\xd5\xba\x07\xcd\xef\x6a\xdf\x1c\xb9\x06\x9b\x90\x20\x76\x06\x47\xdd\xd0\x45\x11\xd6\x0b\xb5\x14\x95\x04\x8d\xbd\x5e\xc8\x12\x89\xa5\x41\xb7\xd5\x32\xee\x37\x65\xc7\x9c\xea\xa6\xac\x69\xad\xf3\x0a\xd7\x94\xc5\x0a\x92\xfa\xb0\xaa\xf4\x44\x4e\xb0\xa3\x79\xa1\x66\xf6\xfb\x17\x96\xe6\x20\x6e\xcd\x2e\x1f\xc9\x1f\xbc\x4f\x97\x45\x6e\x28\x59\x17\x18\x85\x9c\xe8\xaa\x66\xab\x92\x85\x08\x1c\xce\xd6\x7e\x5b\xaf\xf2\x7e\xe7\xca\xde\x1b\x3d\xd3\x62\x55\xa9\x03\x24\x0f\xd8\xf4\x7f\xc7\x5d\xce\xdf\xbc\xdf\x1e\x07\x89\x80\xf2\x53\x1a\x8a\xc6\xc1\xc6\x62\x52\x4c\x9a\x72\xba\xb0\xc3\x4e\x74\x5e\xa8\x6a\x55\x48\x17\x9f\x73\x58\x2b\x59\x65\xfa\xa6\xa4\x78\xc5\x12\x77\x53\x6e\xbc\xe0\xe0\x96\xdc\xfc\x0d\xd6\xfc\x1f\x39\x8e\x23\xa5\xa6\x9d\x36\xf6\x8f\x22\x2c\x6d\x6a\x5c\x5f\x8b\xff\x03\xbb\x00\xbf\x13\xd7\x3f\x0a\x71\xfd\x1d\x02\x60\x5a\xc4\xf5\x31\x21\x30\xf8\x7a\x51\xa9\x55\xa5\x8c\x3d\x4c\xa1\xbf\x23\x8f\x99\xcc\x63\x15\x65\xd4\x6a\x23\xe9\x8e\x4f\xf0\x07\x54\xb5\x8f\x8e\xdc\x66\x95\xf1\xca\x03\xe0\x82\x1f\x31\xea\x5a\x55\x3e\x84\xdd\x9b\xcd\xe0\xbc\x9e\xac\xc5\x42\x96\x2d\x35\xb9\xf3\x45\x64\xb1\x7d\x0e\xc1\xb1\x6f\x63\xb1\x04\x23\x66\x83\x88\xdb\x92\x63\x47\x3b\xb5\x70\x8c\x88\x0f\xba\x78\xce\x5c\x15\x43\x38\x27\x31\xe6\x97\x34\x38\xbe\xfa\x34\x09\x67\x35\x68\xa7\x06\x74\xd3\xda\x90\x96\x6a\xf0\x21\xb2\x71\x44\xb9\xb0\x2c\x9c\x91\x52\x07\xe2\x80\x4c\x38\x6d\x85\xd7\xf7\xc8\x7b\x23\x05\x45\xcb\x7a\x89\x45\x62\xbc\x81\x1b\x2e\xa1\xc9\xb6\xf2\xdd\xda\x37\x6d\x22\x4d\x0d\x04\x61\x75\x36\x5a\x6f\x40\xf6\x06\x32\x15\xc4\xca\xb6\xac\x61\xec\xc1\x86\xa4\xd3\xfb\x87\x77\xb8\x4d\x1c\x49\xe1\x8c\xd1\x05\x06\x59\xf0\x17\x6c\x58\xd6\x8e\x15\xed\x58\x4a\xfe\x46\x4f\x2c\x67\xb1\x49\x2b\x7a\x1b\x35\x24\xed\x78\xdd\xc7\xbc\xca\xd9\xae\xa2\x4f\x63\xe6\xfc\x07\xa2\x77\xc1\x4d\x6b\xf6\xc2\x65\xcf\x05\x98\xa4\xa9\xd4\x10\xc8\x19\x51\xcd\x88\x7f\x93\x5b\x1c\xe7\x7f\x70\x7f\x47\x36\x8e\x17\x10\xae\xad\xe2\xfd\xc4\x0d\x0d\x53\x5f\x5b\xb9\x6d\x5e\x4b\x68\x71\xc8\xd9\x8a\xec\x8a\x65\xa0\xe0\xd1\x0e\x49\xd5\x7e\x4a\x5e\xef\xcb\x36\xf6\x66\xe9\x9b\x2d\xa7\xf6\x77\x9e\xef\x12\xc7\xf4\xe2\x68\x14\x00\xe7\x73\xb2\xed\x1a\xa0\x4d\xcb\x0a\xff\xab\x55\x41\x76\x2a\x38\x3f\x25\x14\x58\xd8\x6e\xc4\x1f\xc5\x0e\x22\xbf\x42\x14\x6a\x44\xee\x2f\xa0\x87\xe1\x1d\xb1\xed\x7f\x17\xee\x90\xa0\x67\x28\xf6\x76\x34\xbd\xa5\x0c\x3e\x9f\x17\x7e\xcb\x9b\x2d\xaa\x5b\xbf\x5a\x1d\x06\x3b\x44\x2b\x5c\x72\xf1\xbd\x2e\xf0\x87\x95\xae\x0e\x0e\xd1\x2a\x2f\xeb\xa2\xec\xf7\x80\x61\x54\x32\x07\x0e\xc5\x6a\x59\xa3\xd5\x56\xdd\xf2\x56\xd7\xea\x76\x64\x6a\x9f\x38\x94\x5e\xe5\xb3\x83\x74\xad\xb8\x6f\x75\xf4\x5a\xf7\x0c\x05\x71\xfd\x50\xf6\x06\x83\x2d\x0d\xab\x3b\x9f\x1d\x24\x99\xed\xd1\xf7\x39\x5f\xa8\xfd\xbc\x77\x6e\x71\xbe\x3c\x7f\xf9\xea\xc5\x17\x43\x0c\x85\x6c\x57\x78\xfe\x8e\x84\xa4\xe9\x42\x6b\x7b\xe6\x46\x09\x10\x98\x26\xd3\x94\xa8\xae\x71\x1d\xdd\x14\xf9\x7c\x51\x17\x6b\xb1\xd4\xd0\xc5\xb9\xbc\x56\x65\xae\xca\xba\x7d\xb0\xe2\x89\x6d\xd4\xc6\x78\xa1\x0d\x11\xeb\xfd\xc1\x8e\x4d\xf5\x81\x3b\x29\x3d\x0b\xf7\x09\x3e\x1d\x56\x5c\x77\xe6\xb8\x5d\xbd\x41\x54\x3a\xf7\x87\x52\x94\x34\x00\x09\x39\x6e\x8f\x1a\x77\xd4\x31\x59\x93\x9d\x90\x16\x89\xdb\x8d\x95\xba\x82\x80\x87\xeb\x3c\x6b\x64\xc1\x82\x89\x36\x6f\xfe\x24\x8a\xbf\xd3\x99\x1b\x1d\x01\x0c\x05\x69\xee\x86\xb7\xa2\xb5\x4f\x96\x90\xde\x11\xf9\x80\xf9\xe0\x6f\x16\xba\xaa\xa7\x4d\xed\x58\x49\x32\x7a\xcf\x88\x42\xcf\x93\xa1\x31\x21\x84\x0d\x69\xaf\xb4\x8f\x2d\x77\xd6\xbb\x25\xd8\x2f\x47\x22\xce\xd2\xc0\xd1\x16\xfa\xc6\xeb\x0b\x76\x75\x30\xa8\xcc\x67\x67\x6c\x48\xcb\x20\x4f\x68\x3c\xf7\xe9\xad\x38\xb3\x84\xf1\xfe\xbd\x4b\x7e\x8e\x0f\x76\xf2\x87\x86\x19\xa0\xb5\x44\x95\x60\xcf\x80\x80\x82\x99\xcc\x8b\xa6\x6a\x8d\xec\x2e\x87\xb6\x86\x7b\x8d\x8c\x14\x99\x8c\xb5\x8a\xdc\xa5\x29\x5e\xa1\xd1\x36\x47\xb0\xa9\x65\x55\xab\x0c\x9c\x34\x50\x38\x1f\xad\xfc\x0b\x69\xca\x5e\x8d\x25\x4d\x08\x44\xac\xa1\xd9\x6b\x24\xf4\xd8\x3b\x5f\x48\x88\x3d\xb0\x0f\x6f\x78\x61\x5e\x8a\x65\x5e\x14\xb9\x51\x53\x5d\x66\xc6\x1b\x91\xc2\x2c\x6a\xad\xaf\x78\x18\x07\x9f\x0e\x0e\x16\xe6\xe4\x4b\x38\x75\x4c\x28\x6b\x2a\x54\x3d\x37\xcd\x67\xa9\x21\x45\x6b\x6a\x79\x54\x74\xf4\x46\x08\x88\xe6\x46\xaf\x25\x2c\xe0\x50\xf6\xcd\x42\xbc\x2c\x43\x66\x6b\xa6\x6a\x7b\x80\x83\x32\xe9\x96\x33\x68\xaa\x20\x2b\x14\x0a\xfa\xa1\xfb\x12\x32\x35\x24\xf4\x09\xf0\x45\x84\x44\x98\x88\xe2\xb0\xfc\x11\xc9\x2b\x5d\xdf\xf4\xba\x59\x4e\x50\xb5\x5c\xca\xdb\x7c\xd9\x2c\x03\x89\x89\x78\x27\x85\xe8\xad\x1b\xe7\x45\x10\x25\x3e\x9d\xd3\x5e\xa9\x94\x9c\x2e\x70\x8b\xcc\xc4\x91\x45\x08\x65\x7e\x71\x3b\xa8\x3b\x19\x8c\xa2\x4c\x48\xb2\xa7\x42\xe2\xcb\x50\xa8\x6b\x55\xd2\x8a\xcd\x50\x8b\xb7\x13\x4a\xbe\x6b\x29\x6f\xbf\x0c\x24\x7f\x94\x2c\x53\xd5\x50\x2b\x08\x96\x5d\x25\xd0\x6b\xa4\x64\x55\xac\xc5\x44\x4d\x65\x83\x19\xac\xb2\x14\x4d\xa9\x6e\x57\x38\x15\x4b\x5e\x79\x87\x70\xbe\x92\x65\x3e\x0d\x79\x00\x28\x96\xba\xf8\x85\x95\x2a\x33\x9f\xc2\xe8\x98\x6f\x60\x84\xff\xd9\xa8\x46\xf9\x86\xa3\xec\xc8\x04\xbe\x8f\x8e\x07\xe2\xfe\x21\xad\x0c\x91\xd3\x1f\xa0\x9a\xc4\x23\x99\x82\x05\x1a\xc5\x48\x3b\x12\xb8\x70\x10\x9b\x5b\xf9\x3e\x3b\x23\xcf\x5f\xbd\x7a\xf7\xf6\xc5\x9b\xb7\x6f\x28\xd4\x63\x46\xa7\xe6\x8b\xb2\x59\xf6\x7b\x7f\x90\x45\x01\x16\x13\xf3\x79\x6f\x90\x06\x4d\x70\xc5\x9b\xf3\xd0\x8d\xca\x7f\xfb\xed\x38\xdb\x2e\x87\x2c\xcb\xbd\x08\xc8\x6b\x85\x0c\xec\xfb\x86\x56\x5c\x13\xe6\x0d\x30\xbd\x4e\xaf\xea\x77\x2b\x59\xd7\xaa\x2a\x43\x79\x0a\xba\x40\xc9\x0c\xee\xaf\xf7\xef\x71\x5e\x1e\x75\xae\x13\x07\xbe\xeb\x39\x18\x9d\x81\x1a\x43\x58\x00\xb9\x60\x99\xd2\xc3\x7c\xb3\xd4\x2b\xc0\xbb\x75\x7e\xc4\xc8\xd0\x1f\xc5\x1f\xfc\xb3\x3e\x93\xfc\xc7\x90\x49\xce\x42\x0e\x1c\xd8\xc5\x8f\x14\x0c\x7f\x78\x28\x5e\x6b\x47\x2a\x37\xaa\x57\x59\x91\xc2\x12\xe7\xbd\xbb\x67\x67\xf7\xb8\x0d\xdd\x5e\xb9\x27\x8c\xe6\xa0\x4b\x2b\x3a\x83\xb1\x01\x87\xb2\x4b\x1b\x08\xe5\x0d\x18\x19\x3c\xbb\xe3\x63\x79\xd7\x57\x59\x1b\x67\x5b\xa1\x7e\x2d\x5e\x00\x76\x68\xbc\x7b\x76\x96\xe0\x31\x16\x89\x1d\x1c\x93\x88\xbf\x55\xf3\x17\xb7\x2b\x2e\x12\x43\xbb\x75\x82\x04\x42\x01\xea\xf0\x2a\xed\x60\xc0\xb4\x08\x3b\xb1\xbc\x64\xc5\x9c\x50\x46\x76\x91\x20\x41\x0f\xbe\x7b\x26\x22\x52\xd8\xf0\x38\x97\x98\xc9\x59\xeb\xa8\xd9\xd1\x28\x50\x59\xa0\x8a\x07\x0f\xd2\xfe\xeb\xec\x66\xe2\x7a\x2f\xd0\x67\x53\x82\x68\x07\x52\x31\xee\xf6\x5a\x8b\x39\x62\x1c\x8f\x1d\xe3\x72\x37\xc3\x63\x4e\x17\x87\xb4\x2f\xa0\x10\x7c\xde\xae\x90\x86\xe4\x72\x48\x42\xd7\x37\x9b\xc2\x38\xde\x23\xa2\x3f\xf8\x0d\xf0\x0d\xfd\xb7\x89\xd8\x52\xf0\x37\x01\x42\x5e\xce\xc4\x16\xfe\x32\x64\x1c\x4b\x56\x31\xa3\x72\x8f\x4b\xdf\x8d\x07\x9a\xf9\x78\x8e\x82\xe2\xcf\xad\x9c\x82\x86\x60\x89\x53\xc1\x41\xd1\x3d\x06\x4e\xde\x8d\x01\x2f\x74\x04\x0d\x43\xe2\x7d\xd4\x61\xb3\x8c\xe1\xc0\x05\xa4\xe4\x25\xc5\x9f\x94\xfe\x50\x94\x19\x9e\x07\xd2\x7d\x02\x4c\x09\x4c\x7f\x28\xda\x28\x9f\xce\x1f\x62\x3d\xe1\xe0\x61\xca\xc1\xfe\x1c\xf1\x1b\xcf\x78\x3c\xc7\x6a\x31\xa7\x16\xb7\xd9\x50\x87\x62\x67\x98\x5e\x47\x91\x0a\x3e\xb6\x4b\x73\x61\x9c\x74\x43\x2c\x61\x18\xf3\x22\xbf\xdc\xa1\xbf\xd3\xff\xdc\x57\x45\x95\x2f\xee\xb2\xd7\x47\x41\xa5\x56\x0d\x80\x8c\xb3\xde\x6b\xcd\x57\x56\x65\x34\x63\x08\x4d\xad\xf2\x5a\x55\xb9\x44\xe5\xbb\xf5\x82\x1d\x1b\xef\xdf\xb5\xbe\x52\x19\xa9\x05\xd4\xa2\x4b\x97\x90\x1d\xe6\xb2\xb5\x59\x6a\x72\xce\x04\x37\xb4\x37\x78\xdd\x1f\xd3\x38\x80\xa7\x82\x95\x27\xc4\x4e\xcc\xb5\x68\xca\xa9\x6c\xe6\x8b\x2d\xa6\x99\x98\x2a\x74\xf9\x1d\x3d\xf1\xc2\x8d\xff\xae\x75\x9c\x2d\x95\x31\x72\xae\x86\x50\xef\x61\x08\x25\x22\x2c\xf6\x08\xa9\x74\xd7\x97\x60\xed\xb9\x11\xf7\xb1\x82\xf4\x06\xe2\xec\x4c\x1c\x89\xf7\xef\x69\x55\x5b\xa3\x99\x5a\xd6\x8d\x79\x46\xa2\x4b\x6f\x40\xf5\x5c\x99\xe1\x88\x24\x58\x19\x87\x93\x5b\xee\x46\x17\xac\x7c\xd7\x1f\x90\x55\xaf\xd2\x4b\x21\x43\x69\x5a\x21\xbe\xb7\x27\x93\x1b\xcc\x39\x8b\xe7\x1a\x36\xb5\x95\x9a\x65\x81\x8a\x79\x5e\xa7\xc6\xfd\xd8\x8c\x81\x2f\x08\x27\x9b\xf4\x96\x9b\xbc\xc6\xdc\x49\x2b\x84\x19\x39\xb3\xda\xa1\xf9\xa9\x51\xc5\x94\x62\xb6\x90\x08\xdc\x97\xdf\x09\x56\x21\x51\x57\x78\x2c\x04\x0a\x6e\x4b\xdd\xad\x0e\x68\x6c\x51\xa0\x16\xa2\x5f\x0f\x30\x80\xb6\x9e\x1f\x39\xe1\xf4\x85\x9d\xc6\x57\xf8\xe0\xbb\x41\x6c\x99\x23\xa5\x6e\x29\xd7\x10\xdf\x0e\x29\xb5\xf6\xe3\x50\xbc\x5d\xc8\x32\x2b\xac\xf0\xeb\xfd\x4c\x09\xa6\x9c\x09\x35\xcc\x93\xbe\xc9\xb2\x14\x90\xf6\xcf\x44\x0f\x77\x41\x2f\x14\x0e\x6d\x4f\x15\x89\xc1\x37\x81\x8b\x6f\x7e\xf3\xe2\xf5\x17\x2f\x5f\xff\x19\xf1\xe1\x06\x85\xdc\x6f\x1c\xd3\xef\x74\xcc\x3a\x0e\x78\x09\xd3\xb6\x18\x82\x27\x1f\x88\x5e\x10\xb7\x61\xc3\xb7\xb9\x4e\xc7\x14\xd2\x38\xca\xd6\x4b\xdd\xba\x3c\x10\xbd\x21\xbc\x0d\x4a\xa8\x3c\x10\xbd\x67\xf6\x0f\xd8\x59\x61\xae\xf1\xd8\x31\xb5\x75\x00\xa4\x06\xb4\xc0\x93\x48\xab\x68\x67\xc6\x5b\x56\xe4\x75\x2d\xae\x4f\xc6\x65\x88\xd3\x58\xc2\x7a\xbd\xca\x2d\xb1\xaf\x45\xa5\x0e\xaa\xa6\x34\x22\xaf\x21\x99\x44\x46\xd5\x90\x86\x11\x1b\x2b\x54\xed\xfc\x29\x5f\x7c\xfd\x95\xd5\x56\x27\x79\x91\xff\x15\x8d\x22\x66\xa1\xab\xfa\xa0\x56\xd5\x12\x14\x72\xdd\xd4\x51\xd2\x84\xcb\x86\xca\xd4\xb4\x90\x15\xf3\x27\x31\x33\x4c\x48\xaf\xe0\x72\xc7\x44\xeb\x42\xc9\x12\x73\xc4\xcd\x55\xbe\xa2\xd4\x0f\x08\x03\xa9\x1a\x45\x19\x44\x74\xd1\x1e\xfd\x57\xf9\x6a\x45\x51\x32\xa9\xd3\x0a\x38\x33\xc3\x8d\xc8\x97\x4b\x95\xe5\xb2\x56\x90\x1e\x0d\x28\x22\xdb\x3b\xc8\x08\xce\xb7\x0b\x4c\xc7\x32\x91\x3c\x0e\x17\xdb\x5e\x1c\xa2\x8b\x5b\x27\x45\x22\xda\xbc\x3a\xf9\xcc\x10\x93\x7c\xb7\xf3\x4e\x70\x7f\xe4\x4e\x04\x81\x4d\x0e\x02\x08\xc4\xac\x48\x4b\x95\x73\x55\x61\x55\x1c\x9f\x39\x33\x1a\x8d\x86\xe2\x68\x00\x46\x89\xa5\x5c\x4f\x3c\x07\x5d\xc1\x31\x47\xe6\x13\xbb\xd0\xe0\x3a\xbd\x91\x6b\x96\x99\x59\x57\xf9\x1c\x6c\x9f\xa0\x8c\xd7\x14\xc4\xa3\xdc\x53\xaa\xcc\xdc\x68\xbe\x04\x54\x0d\x59\x3a\x46\x8b\x1b\x05\x7d\x1b\x29\xd7\x9c\xea\x95\xa3\x83\xdd\xa8\xba\x2e\x94\x00\xff\x38\x11\x8c\x6e\x2a\x37\x14\x7e\xe1\xd4\x52\x43\xb3\x82\xf8\xc9\x38\x17\xa8\xc6\x9e\x98\x29\x86\xe3\x72\x91\x43\x20\x1a\x12\xc0\x13\x5e\x96\xda\x77\xfa\xa5\xba\x11\x5f\xc8\x5a\xf5\x07\x03\x71\x90\xd8\xa3\x62\x8e\x34\x8f\x12\x65\xfd\x65\x28\x7e\xc0\x6c\x66\xae\x8a\xae\xe5\x4e\x78\x1e\x0e\x3b\x59\x53\x64\xb2\xe3\x0f\x61\xd0\x91\x7d\x68\xd3\x53\x4b\xf3\x56\xbf\x41\x2b\x18\x31\x19\xf7\x45\x03\xc6\x99\x4c\xb3\x5c\xca\x2a\xff\xab\x22\x0d\x33\x91\x67\x98\x1d\x28\x35\xd7\xb6\x31\x8c\xb8\xdd\xd2\x76\x74\x83\x73\xcc\xc5\xb7\xb1\xa2\x2e\xad\x72\x2d\xbf\xd8\xcd\x85\x21\xba\x96\x11\xfe\xd8\x98\x3a\xf8\x80\x5b\xb5\xd9\x77\x6d\x58\x7c\x53\x57\x51\x97\x6e\x4f\x58\x0b\x5f\x35\xaf\xe7\xe1\x23\x18\xc8\xdc\xeb\x09\x31\xb8\xb7\x42\xe4\x43\x02\x5c\xdf\x6e\xf2\x5f\xb5\x0f\x46\x6f\xaf\x62\xdd\x53\x4b\xe1\x47\xde\x70\x20\x0a\xe6\x6e\xfa\xa3\xf0\xbf\x3e\x13\xea\x76\x10\x65\x80\x93\xb1\xab\x25\xdd\x54\xe9\x29\x4f\x17\xbe\x39\x7f\xf3\xe6\xc5\x17\x83\xae\xc9\x46\x8f\xc0\x4b\xbc\xee\x4d\xb7\xfc\x8e\xfc\x5c\x3c\x3a\x3a\x1a\x74\x09\xfd\x6f\x0a\x7d\xe3\xcc\x4d\xfa\x2a\xc8\x49\xd1\x66\x48\x86\x1b\xc4\x5b\x95\xef\xe0\xce\xaf\x39\xf3\x5f\x83\xe7\x74\x84\x7c\xbf\x57\xc1\x0e\x45\x94\xc1\x30\x46\x07\xbd\xb3\x36\xe1\xee\x8a\x0c\x0d\x9b\x5e\x46\xa8\xe3\x2f\x5b\xb1\x24\x2a\xf6\xaa\xc8\xb3\xd7\x26\x89\xab\xd2\xb2\x55\xda\x25\x4e\x28\xb7\x98\xaa\x3a\x44\x1f\xaa\x62\xd1\x4d\x24\xed\x25\x8b\x73\x06\x3a\xc9\x03\xee\x54\x4d\xf9\x5a\xdd\xd6\x24\x6f\xff\x26\x2c\x23\x6c\x74\x12\xfd\xef\x30\x6b\x77\x46\xa9\x98\x21\x9d\x93\xee\xd0\x99\xcd\xdd\xf9\x8d\x69\x40\x22\x22\x63\xaa\x3d\xa2\xa0\x4e\xdb\xa4\x99\xcf\xd7\x21\xcc\xd3\x39\x77\x5c\x6c\x28\xbd\x01\xd4\x3f\x8c\x2f\xc3\x99\x96\x42\xdd\x5a\x8d\x03\xa5\x90\x52\xc8\xb9\xcc\x4b\xd2\x5e\xca\x38\x3d\x98\xb7\xd9\x40\xbf\x27\x1c\xe1\x50\x7c\x85\xea\xf4\x40\xc0\xb0\x77\x6a\x14\xd2\xd4\x42\x4e\x23\xe9\x1c\x6b\xc1\xc8\x06\xca\xef\xc1\xb9\x8d\x7d\x40\xec\x80\x88\x23\x3a\xb4\x29\xf2\xcd\x1f\xdc\x50\x48\x0b\x0a\x2c\x05\x3b\x2d\x56\x69\xf0\xb1\xb6\x08\x7c\x07\x2a\x03\x5a\x45\xa1\x0a\x68\x75\xce\x00\xd0\xd6\xac\x42\x61\x50\xa3\x48\x25\xf3\x90\xe8\x0d\x12\x84\x1d\x0b\x32\x63\x21\xdf\xbe\x5e\x40\xda\x04\xa5\x63\x3b\x15\xae\x25\xc1\xbe\x2c\x21\x82\x1a\xa3\x93\x2a\x75\xe0\xd6\x32\x68\xde\xe7\xaf\xbe\x3f\xff\xef\x37\x62\xa9\xaf\x95\x81\x5c\x5b\xe7\x49\x75\xb3\x5c\xe5\x45\x4b\xc2\xfc\x5b\x9c\x2d\xad\xb8\xab\x42\xd6\xea\x0d\xee\xed\xb7\x58\x8c\xc8\xfe\x1a\xbb\xa9\x64\x5d\xab\xe5\xaa\x26\xed\x4c\x4d\x75\x95\x45\xde\x64\xf0\x74\xc9\x6a\x73\x22\xd3\xe6\xf3\xeb\x5b\xd5\x75\x82\xb1\xb3\x67\xc8\x66\x18\x57\xd7\x73\x1c\xe4\x95\xac\x83\xc6\xec\x0b\x4d\xfd\x22\x16\xc2\x5e\xe5\x4b\x1e\x51\x4a\x34\xac\x70\xc1\x5e\x05\xca\xa8\x5b\x3f\x74\xfe\xa0\x03\x11\x4a\x5b\x66\xba\x99\x14\xea\x60\x05\x96\x7a\x08\xdf\xc6\xe1\xe8\xf6\x32\x37\x8d\x89\x72\x9c\x2d\xb1\x60\xe1\x27\x6c\x45\x53\x66\xea\xd6\x95\x43\x21\xbe\xea\x2c\x17\x8c\xb5\x42\x23\x1a\x00\xfd\xfc\x4c\x1c\x75\x31\x63\x57\xe5\xdf\x02\x85\x4a\xff\xdb\xcf\x86\xb8\x01\x36\x06\x3f\x88\x12\xc2\x01\x28\x64\xd1\x5e\xf8\xa9\x51\xcd\x86\xa4\xec\xf6\x7a\x73\x06\xdb\x4e\xec\xf2\x4a\x39\x72\xe8\xf7\xef\xc5\xdd\xd4\x8f\x82\xb2\xe6\xa0\xc5\xd3\xdb\x72\x35\x3b\x28\x5b\x1e\xb7\x4f\x3f\xed\x16\x61\x3f\x3f\x6b\x79\xe7\x36\xc9\x30\x5f\xc5\xce\x46\x8a\xd8\x27\xff\xe1\x10\xa3\x5f\x79\x59\xd0\x51\xaf\xe3\x24\xea\x9e\x35\x9d\x48\x87\x87\xe2\x1b\xa5\xae\x9c\xd2\x52\xeb\x15\x0e\x06\xe9\x08\x68\xf0\x71\x35\x8a\xd1\xeb\x5a\x61\x79\x33\xd2\x4c\x90\xc4\x26\xba\xa9\x71\x2c\x64\xa5\x43\xe6\x30\xa1\x4a\xc6\x59\x6e\xea\xa6\x9a\xc0\x4b\xf2\xd2\xef\x20\x12\x78\xed\x57\xe5\x54\x18\xd9\x0e\x43\x7c\x99\x46\xc0\xea\x01\xf8\xc2\xaa\x29\x21\x46\x10\x62\x90\x23\x1f\x4f\xbc\x86\x17\x47\x97\xde\xef\x44\xf2\x46\x87\xab\xf7\x8f\x5d\x26\x0a\x84\x7f\xc6\xa4\x7f\x2f\xd7\xa2\xf9\x15\xee\x5b\xba\xe9\xc7\xe9\x21\x14\x3a\xc0\x62\x14\x07\xb1\xcf\x06\x6e\x24\xb5\x92\xda\x8a\x53\xfb\x56\x3f\x19\x36\x84\x04\xfa\x07\xdc\x47\xba\x1a\x3f\x0c\xba\x9f\x4a\xe3\xa9\xe0\xfd\xa1\x5b\xa0\xa6\xc2\x0e\x49\xe5\x4e\xcc\xd8\x21\x4f\x58\xa9\x6b\x64\x46\xde\xd2\x68\x71\x45\xe7\x69\x08\xde\xe9\xa4\x6d\x6f\xaa\x75\x86\x63\x18\x1e\x59\xe9\x2f\x93\xc0\xc5\x76\x7a\x6f\xab\xba\xb1\xbe\x92\xa0\xdb\x3b\xc9\x78\xc5\x85\x56\xa4\x40\x47\x32\x33\xde\xa4\x74\x66\x0c\xd6\x13\xcc\xe1\xd5\xad\x1b\xb9\x32\x48\xed\xb7\xa4\xab\x45\xfa\xd1\x7e\x0f\xc4\x6f\x24\xf6\x66\x16\xf9\xac\xee\xff\x2a\x3d\xca\x55\x66\xb5\xc4\xe1\xa6\xf2\x2b\xf5\xa9\x0e\xfd\xe3\x6f\xb3\xce\xf1\x6e\xaf\x9a\x72\x23\x2a\x0e\x0f\x05\x87\x72\x56\x31\x84\x83\x6f\x0f\xfe\x0c\x14\x72\xa9\xa1\xd6\x12\x85\xae\x28\x0c\x29\x74\xdd\x99\xeb\x1a\x52\x18\xa0\x12\xca\x52\x49\x2c\x9a\x5d\x81\xe3\xb1\xae\xe0\x30\x77\xe7\x5e\x9d\x96\xe9\xee\xde\x4b\x3b\xd7\xa8\x6a\xca\xdf\x5c\xdd\xed\x38\xb7\xbd\x9f\x8f\x87\x52\x79\x3b\x06\x2b\x31\x15\x99\xe0\x9b\xb2\x65\x72\x35\x50\x8c\x5b\x4c\x65\x09\xc9\x6f\xc6\x34\x14\x50\x85\xc6\x4b\xae\xde\x30\xdb\xaf\x8f\x7e\x66\xb2\x7b\x69\x6a\x25\xb3\x21\x58\x9a\xd0\x8a\xc7\x63\xa4\x31\x79\xd1\x05\x31\xdb\x0f\xf7\x61\x43\xdb\x6d\xc8\x7e\x10\x30\x05\x16\x7a\x4e\x49\x28\xe8\x73\x4e\x52\x50\xa8\xfa\xe6\x5a\x2c\xe4\x6a\x65\x45\x37\x92\xc8\x21\x3e\x53\xcf\x7d\x76\x2c\xe9\x7d\x9b\x23\x09\x47\x42\xfc\x69\xed\xd3\x80\x28\xea\x89\xb2\xac\x5d\x69\x84\x21\x89\xe6\x14\x2c\x73\x9d\xab\x1b\xe5\x2b\xc7\x77\x14\x9e\xd6\x33\x8c\xd6\x9a\x54\xfa\xc6\xa8\xca\xf0\x84\x23\xba\x46\xe9\x9e\xb9\x81\xf0\xab\x6a\xc9\x27\x0b\x6a\x98\x0b\x72\xc1\xfa\xcc\xdf\x2b\xcc\x3f\x47\x8f\x30\x66\x0e\x92\x14\xa0\x51\x79\x41\xf3\xa5\x97\x12\x68\xa9\xed\x41\xba\xc2\xca\x62\x3e\x11\x75\x16\x27\x19\x0e\x05\x26\x76\x16\x4a\x62\xc2\xa3\x9f\x22\xaa\x4b\x33\x30\xe4\x96\x2e\xc8\x13\x23\x2b\x7c\x06\x91\x8f\xff\xcb\xcb\x0d\x45\xa2\x85\xae\xda\x27\x1e\x2f\x27\x7b\x07\x2a\xe3\x51\xca\x17\xac\x3d\xc6\x48\x25\x61\x76\x28\x9a\x7d\x84\xc0\xba\xa1\x09\xa8\xb7\x9f\xf6\xbe\x25\xc1\xc7\x9b\x75\x5a\xf2\xaa\x77\xf7\xf4\xcd\xa0\xb7\xc1\xa2\x49\x8c\xb3\xed\x2e\x65\x06\xe2\xcf\x3a\xc3\x0e\xbd\x15\xf8\xb3\x3d\xec\x18\x5f\xea\x6a\x29\xeb\x38\x1a\x51\x1a\xcb\xc5\xa6\x14\x26\x40\x57\xf7\xc5\x10\xb7\x61\x71\x54\x2d\x0d\xf7\xf8\x4f\x8d\x38\x13\xfd\xa5\x11\x87\x62\x7c\x74\x74\x34\x18\xd5\xfa\xcb\xfc\x56\x65\xfd\x63\x98\xb5\xf7\x6d\x4f\x8d\xc5\x95\xe9\xc5\x75\x76\x68\x0f\xbb\x5e\x88\xce\x48\x04\x46\xe2\xf5\xde\x01\x0a\xce\xa6\xbc\x45\xf1\x48\x14\x82\x9d\x4d\x73\x12\xf8\xae\x96\x39\xec\x2c\x40\xc3\xdc\xb3\x40\x28\xee\xf1\x8b\xfc\xb2\xc3\xb5\xc7\x3a\xb1\xf9\x09\xb6\x55\xa1\xee\x30\x83\xb7\xc1\xd1\xef\xb8\xe4\xb3\xad\x04\xda\x71\xfc\x78\x92\xc5\x6c\x63\xa8\x1c\xe6\x15\x99\xf8\x90\x41\x63\x00\xf1\x56\x67\x8d\x98\xc5\xa1\x76\x1d\x39\x6d\x2e\x3e\x5e\x65\xed\x10\x85\x21\xf0\x1e\x3c\xd7\x79\xc3\x15\x48\xcd\xd6\x25\x6c\x77\x4d\x75\x33\x58\x32\xe6\x79\x88\xbb\xf2\xce\x1d\x4c\x63\x0a\xb9\x58\x39\xf0\x01\xab\xaa\x91\x46\xe5\xdc\x64\x60\x3c\xa3\xce\x1e\xe2\x7e\xc8\x9b\xcc\x32\xe7\x3d\x37\x51\xc0\x20\xf0\xf4\x60\x0c\xa1\xc9\x87\xba\x6a\x94\xb7\x4d\x95\x29\xa8\x3a\x38\xd6\x17\xa4\xd2\x93\xbe\x06\xa8\x17\x0e\x0e\x56\x95\xd6\x33\x71\x53\xd9\x03\x89\x42\xe6\x9d\x05\x0e\xcc\x52\xac\x30\xed\x56\x3b\x11\xed\x00\xcc\x0e\xb0\x62\x80\x3d\x36\x5c\xfc\x7c\xc8\x42\x8b\xd3\x03\x22\xf7\x61\x68\xe4\xb0\x35\x0d\x90\xb2\x00\x61\x7c\xb4\x20\x47\x19\x63\xce\xac\x86\x61\x10\xce\x18\x55\x84\x78\x2f\xff\x26\x17\x10\xb6\xf5\x93\xf0\x7b\x42\x64\x2f\xaa\x3b\xdb\x07\x6c\xb3\x07\xaf\x26\xa4\x35\xf0\x63\xbd\xa0\x9d\x4b\xb0\x0b\x81\x09\xe6\xd2\xa4\x02\xcc\x5d\xa0\xdf\xda\xc1\xd9\x3b\xd0\xb7\xfd\x33\x5b\xc9\x78\x2e\x6e\x73\x43\x76\xc1\x47\x0e\xc9\x22\x36\x37\x44\xb9\xdf\x28\x1f\x29\x0f\xbe\xf5\xa2\xf0\xc5\x48\x9d\x15\x8f\x85\x98\xdf\x28\xd8\xd3\x2c\xb2\xfc\x6f\x11\x5b\xff\x77\x8b\xab\x77\x87\x13\x99\x4e\xa3\x84\xd5\x4e\x72\x70\xae\x14\xfc\x8b\x82\x4b\x9c\xbd\xf1\xbc\x8c\xa3\x76\x92\xaf\x02\x6b\x3a\x14\x9f\x24\xdd\xa2\xd6\x62\xae\x4a\x55\x49\x88\x50\xc0\x21\x3b\xe3\x6e\xfc\xfc\x19\xfb\xfe\x46\x53\x7d\x10\xea\x11\xe8\x32\x13\x69\x8a\xdb\x76\x10\x3b\x5f\xe9\x0b\xc4\x99\xe8\x51\x40\x79\xef\xb3\xdd\x4f\xe1\x99\x28\xec\x53\xf8\xeb\x3e\x0f\xa1\xd3\x09\x1e\xa2\xb0\x2d\x9e\x17\xe9\xb4\x2c\x28\x83\x56\x76\x3b\x70\x45\x1f\xb4\x0e\x5d\x81\xe4\x39\x00\x2e\xae\x4a\xa8\xf8\x51\x6a\x8c\x3a\xd5\x33\x57\xa7\x04\xcd\x9d\x66\x73\x7c\x78\x47\xe0\xd9\x46\x4f\x2c\xc8\x67\x8e\xfb\xe0\x2f\xdd\x21\xe1\x1d\x83\xf2\x36\x0c\x9a\xa2\x99\x37\x95\xc7\xea\xed\x31\x1e\x13\x09\xba\x4d\xe4\x24\x15\xf4\x86\x91\x47\x8e\x3f\x80\xd7\x79\xef\x9a\x37\x76\xdb\x32\xaf\xc1\x56\xfe\xb8\x0f\x61\x75\xca\xe0\xad\xfa\xb2\x7b\x8a\xc6\xf0\x81\x15\x75\x73\x49\x4c\xc4\xc1\xb9\xc9\xb7\xa4\xf8\xf4\x53\x67\x87\xc6\x48\x8e\x77\xb1\x81\x3d\xca\xa5\xcc\xf2\x8c\x4a\xac\x62\xb9\x6e\x4a\x8f\x90\x65\xc6\x6e\x41\x6d\x38\x0a\x6d\xce\x97\xca\x9b\x86\xd1\x06\xd2\x0e\xc3\xda\x95\xb9\x18\xe2\xe3\x12\x96\xe1\xf8\x0f\x72\x02\x93\x70\x09\x16\x76\x45\xc5\x73\xb0\x0d\x94\x9c\xd6\x14\xce\xcc\xc3\x40\xad\x38\x02\x1e\x89\x0d\xda\x2a\xf4\xdd\x58\xe6\x65\x83\x55\x29\x78\x54\x20\x16\x5d\xe7\xda\x6b\x60\x62\x50\x94\xf6\x7e\xa9\xeb\xfb\x42\x36\xb5\x5e\xca\x9a\x22\xbf\x40\x80\xa2\x4c\xa4\xf8\xbb\x72\x5f\x38\x8f\x25\x96\xed\x49\x4b\x88\x09\xce\x11\xa3\x7c\xf9\xba\x62\xbb\x74\x13\xff\x34\x75\x5c\x06\xd4\x57\x09\x98\xb6\xdb\x00\xd9\xf5\x35\xae\x56\xee\x1e\xf3\xd3\x25\x85\x0b\x75\xb8\x47\x22\x1a\xe4\xe7\x50\x4a\xc0\x77\x63\x02\x6e\x05\x70\x76\xd0\x6d\xa8\xe9\xdb\x0b\x7b\x65\x0f\x52\x64\x68\x88\xeb\x15\x4b\xb6\xc6\x58\xb1\xd8\xd3\x7b\x5a\xad\xd8\x3e\xfc\xa7\xa8\xcb\x10\x3c\x45\x96\x22\xb0\xc4\x61\xd7\x6b\xa8\x5a\x2c\x99\x7c\xcd\xa4\x0a\xbe\xab\x80\x6f\xd3\x8b\x32\x2d\x8c\x1e\x85\x4a\x73\xf4\x86\x2d\xb5\x90\x71\x26\x2e\x6a\xcf\xee\x1d\xa8\xc7\x92\x07\xcf\x30\xb4\x9d\xb4\x8f\x61\x3d\x0e\xe9\xc3\xfb\x48\x9f\xc3\x26\xd4\xe8\x26\xf4\x03\x1b\x5f\x09\xab\xd4\xb5\x37\xfb\x78\xc5\x00\x54\x89\x49\x43\x01\x6c\x60\x5a\x73\xb5\xdc\x5d\xf0\x5c\xd0\xab\x78\x82\x3c\x6c\xa9\x38\x82\x16\x02\x91\x59\x29\xe6\x24\x8b\xc2\xd7\x9e\x41\x9d\x4a\x8a\x99\xba\x11\x85\x5c\xab\x0a\x0c\x56\x3a\x0e\xb3\x74\xdd\x54\xe6\xda\xd5\x0f\xe4\x9a\x19\xbe\x0b\x38\x0d\x24\x68\xac\x54\x85\x43\x79\x6d\x42\x96\x42\x99\x3a\x5f\x92\xcd\x68\xa1\x6f\x44\xa1\xcb\x39\xaa\x5f\xbe\x08\x38\x86\xed\x59\xd5\xae\x83\x38\x9c\x3a\x00\xe9\x0d\x4b\xc3\x53\xfe\xb8\xe0\xe7\x8b\x6e\xee\x7b\xae\x30\x0c\x75\x18\x2e\x82\xce\xed\xd8\x3e\xec\x23\x48\x62\x8c\x62\xfa\xfc\x7d\x16\x90\x16\x76\x69\x47\x04\x20\xdd\x8c\x22\xff\x96\x26\x6d\x92\xba\x72\xf5\x73\x98\xa7\x59\x3b\x02\xde\x58\x41\xbb\xe5\xc3\xe7\x06\x4f\x5f\xe3\xbd\x33\x7a\x15\xcb\xc6\xfa\xc6\x79\x74\xcf\x07\x9c\x94\x73\xcb\xd9\x20\x4a\xc5\x8a\xd0\xa1\x74\x69\xad\xa9\xe2\x6c\x4d\xfa\x91\x97\x81\xbc\x52\xbb\xe7\x8a\x44\x0c\x27\x66\xcc\xf6\x5b\x86\x61\x9a\xc9\x12\x75\x9f\xdc\xd1\x39\xbd\x7f\xe0\xa4\x10\xa9\x84\xee\x84\x9c\xd8\x67\xf3\x6d\x53\xb6\x02\xf0\x82\x9d\xae\x1d\xee\x94\x3e\x13\x82\x1e\x9c\x47\x2a\x44\x2c\x79\xab\x8f\xac\xe6\x50\x93\xce\xfb\xa8\xff\x20\x8e\xc5\xfb\xf7\x0c\x13\xf4\x02\xbb\x00\x9b\x7d\x5e\x91\xd8\xd7\x15\x11\x49\x15\xef\xad\x92\x71\xa3\xb1\x32\x2c\xa6\x3b\xa9\x9f\x1a\x59\xec\xb9\x7e\xf0\xd8\x8b\xff\x8c\x96\x4e\x4e\xeb\x46\x16\x43\xaf\xaa\xb0\x88\x61\xbc\x05\xfe\x5a\x7f\x97\xfb\xc8\x3d\x84\x95\xc0\x3c\x84\x3f\xf2\xf0\xa6\xc3\xcb\xdd\x33\xff\x8a\xae\x28\x81\x90\xf8\xda\xd9\xf2\x96\x0f\xf5\x99\x78\xf0\x20\x1f\x78\xaf\x32\xde\xbb\xc8\x2f\xf9\x2b\x2e\xf2\xcb\xb8\xc0\x06\x7b\x41\x94\x5b\xc1\x70\x7c\x0e\xb6\x1f\x3a\x1e\x4b\x7a\x27\x09\x88\xd8\x48\x00\xd2\xc4\x00\xe1\xce\xcc\xe4\x15\x3c\x00\x8b\x84\xb6\xc6\x50\xe3\x4e\x26\x8b\xf5\xce\xce\xce\x7a\x42\xaf\xac\x88\x07\x85\x15\x42\x78\x3c\x16\xff\x82\x02\xeb\x53\xad\xaa\x29\x0b\x31\xa3\x28\xaa\x8d\xbd\x2f\xec\xec\x96\xb2\xba\x72\xc7\x9d\x8b\x79\xc0\x42\x8f\x9c\xb2\x20\x99\x97\xc5\x74\x1a\x52\xc2\x52\x76\x75\xff\x83\xfb\x7c\xa8\xcf\x80\xbf\xfe\x7f\xe4\xbd\x69\x7f\xdb\x38\x92\x38\xfc\x3e\x9f\x02\xc9\x7f\xb7\x29\x25\x92\x2c\xca\xb6\x7c\x64\xdc\xbd\x92\x2c\x75\x3c\x39\x37\x76\x92\xdd\x71\xa7\xb3\x10\x05\x59\x6c\x53\xa4\x86\xa4\x2c\xab\x27\x99\xcf\xfe\xfc\x50\x55\xb8\x48\xca\x47\x92\x9e\x99\xdd\x27\x2f\x62\x1b\x04\x0a\x40\xa1\x50\x28\x14\xea\x98\x0b\x2e\x2f\x60\xd6\x5c\xed\xfa\x1a\x13\x26\xda\xa9\x5e\xef\x2a\x4e\x28\x37\x08\x04\xfd\xe9\xc5\xf2\x77\xe4\x69\x50\xa0\xd4\x7a\xe1\x44\xc4\x79\x38\x5d\x3b\x46\x4c\x06\x09\xd6\x3b\x1f\x84\x71\x80\x53\x93\xdc\xc1\x95\x34\xa0\x84\xe6\x69\x18\x89\xc3\x28\x8c\xb5\x82\x4b\x79\xf0\x40\xfa\xb1\xbb\xee\x1e\xca\x72\x51\x32\x81\x2a\x6e\xa1\x86\x9e\x1c\x29\xa8\xb6\xd8\xbb\x3c\x8c\xc2\x7c\xed\xbc\xa0\x2d\x52\x91\xe7\x6b\x15\xfa\x94\x22\x51\xd8\xa9\x81\xe6\x3c\xaf\x01\x26\xed\x40\x33\x72\x28\xc9\x94\x30\x7c\x74\xc4\x3c\xf4\x25\xf4\x0a\xe4\x0e\xdf\x89\x23\xc2\x5d\x2c\x4f\xd9\x11\x79\xd8\x12\xd0\xa7\xfa\x23\x4f\xd7\x28\x37\x83\x1d\x52\x8e\x21\x5f\x5a\x73\xbe\xd0\xf9\xe9\x59\x4d\x0e\x42\x01\x2f\x64\xb8\x17\x75\xcc\x1f\xa1\x36\xa4\xce\x4f\xcd\x7e\x64\xbe\x51\xb7\x9b\x74\x17\x74\x7b\x99\xf1\x4c\xb2\x44\x48\x39\xdc\x40\x25\x93\x5c\xb8\x64\x3a\x65\x72\x7d\xf3\x8c\x25\xab\x18\x9c\x62\xd4\x7b\x97\x81\x04\xe6\x33\x26\x2b\xb1\x3c\x99\xc0\xef\xf2\x82\x87\xb1\xbc\xd5\x92\xbd\x26\xf5\x04\x37\x5b\xd5\x55\xcb\xc5\x94\x9c\x2c\x64\x2d\x5b\x5b\xf1\x6e\x48\xbf\xef\x06\xbb\x51\x97\xc6\xaa\x9a\xce\x99\x80\xfb\xe5\xe8\xc8\xf0\xa3\x92\x8c\xbf\xb5\xc5\x8e\xb5\x6b\x59\x90\xcc\xe7\x89\xc9\x00\xbb\x5e\x88\x8c\x82\x89\xda\xf7\x38\x1e\x7b\xa0\xa3\xc2\xb0\x3e\x0b\xe5\x16\x5a\x08\xeb\x63\x08\x45\x9e\x69\x8a\xe3\x97\xd9\x7c\x45\xfc\x21\x49\x0a\x31\x06\xd1\xd2\xbb\xf3\x27\x0a\x9c\xa5\x0b\x20\x70\x16\x3b\x84\x1c\x79\x76\x74\x90\x9a\xa7\xf6\x87\xac\x1e\xdb\x16\x7c\x58\xe9\x42\xe4\x60\xa4\x9b\xbe\x48\x02\x38\xe9\x3f\xd5\xfc\x7a\xb5\x95\x1f\xd1\x3e\x8e\x19\xea\x80\x53\x37\xf8\x4b\xe1\x27\x33\x8d\xcd\x2c\xdc\xb0\x6e\xc9\xea\xff\x00\xde\x8c\xf1\x3a\xac\xbb\xb9\x12\xc9\xb0\xe3\xff\x91\xdd\xfe\x0f\x86\x4d\x03\xcb\x2f\x30\x9c\x7d\x94\xa7\xcb\x30\x9b\x3d\x72\x4f\x8c\x7f\x3c\x8b\xd7\xa2\xe5\xbd\x18\xfd\xff\x76\xee\x5d\x25\xf9\xb8\xcc\xba\xb0\x81\xc1\xdd\xa7\xb8\x79\xbf\xcb\x46\xf9\xf6\x6d\x42\xdc\x9c\xb6\x49\xf1\x7e\xa2\x2c\x6a\x00\x7d\x90\x5c\x02\x38\x29\x5c\x51\x54\xa2\x2a\xb4\x58\x01\x13\x99\xf2\xfe\xe0\x6c\x12\xa6\xf9\x9a\xcd\xd0\x4f\xf6\x24\x47\x4a\xca\x9c\x48\x64\x0d\xb4\xe9\x81\x0b\x38\x66\xa1\x16\xd7\x7c\x2e\xd9\xac\xd2\xce\x62\x1f\x3a\x42\xbc\x5e\x3b\xd7\xc0\xbb\xf2\x2e\x09\x03\x3b\x01\xc3\xd9\x33\x0d\x09\x0a\xf1\x55\x4f\x4e\xb1\xc5\x58\x5b\x85\x5a\xa5\x4f\x70\x50\xd0\x43\x16\xf9\x39\x1a\xe7\xc5\x06\xf3\x21\xcc\x7f\x4e\x11\xf8\x52\x1c\x75\x96\x30\xda\xd4\xda\x5b\x5f\xd1\x7a\x4f\x9d\x22\x34\x74\x64\x41\xec\x91\x83\x57\x3c\x85\x1f\xdd\x91\x18\xcb\x8b\x6c\x13\xa6\x99\x76\xd9\x3b\x48\x5d\x23\x86\x98\x39\x77\x83\xf9\x95\x24\x50\x44\xc6\x91\x36\x4c\xb2\xcf\xf6\x73\x0b\xb3\x4f\x58\xe7\x63\x51\x14\x40\x8a\x00\x17\xf8\xda\x56\xed\xfc\xd7\xad\x8f\x4f\x0e\x7f\x99\x3c\xa9\xcb\xff\x7e\xa9\xff\xf4\x6f\x5b\xae\xb1\xac\x6c\xf4\x93\xfc\xff\xdc\xff\x28\x29\xfe\xa7\x9f\x7e\xf2\x4a\x6a\xd0\x0f\x29\x44\xc0\x32\xea\xcf\xc4\x7e\x8d\x46\xf1\xe7\x2e\xb8\x23\xc5\x98\xa3\x12\x40\x90\x85\xd0\x2e\xf2\x2e\xa7\xad\x40\x54\x15\x67\x93\xbc\xe4\xe9\xa5\x6b\x25\x43\x14\x2c\xa5\x90\x65\x6e\x3d\x98\x57\xab\x75\x24\x55\xa1\x66\x04\xd6\xa5\xc0\x88\xdd\x4d\x82\x51\x52\x6c\x33\x09\x65\xfa\x93\xe5\xc9\x62\x93\xbe\x40\x72\x13\x85\x30\x7d\xf3\xb7\x30\x08\x09\x1e\x13\x4b\x80\xbc\x0b\x06\x41\x8f\x56\xc8\x50\xec\xa0\xb0\xea\x62\x5b\x2f\xab\xd4\xed\x76\x96\xd7\xf2\x66\xad\x24\xf9\x4e\x96\x57\x40\xc5\x25\xfa\x27\xaf\xc0\x5d\xa8\x0f\xe3\xa7\x56\xa9\x7e\x2b\x26\x8e\x0f\x61\xf6\xc4\xb7\xb6\xd8\xe9\xeb\x77\x6f\x07\x43\x36\x3a\x79\x31\x3c\x64\x51\x38\x9e\x24\xf9\xd6\x6f\xd9\x56\x14\x8e\x3f\x2d\xf3\xe9\x7e\xeb\xb7\xec\x01\x78\x34\x2c\xd6\x69\x28\x79\x64\x2d\xa8\xb3\x4e\xdb\xef\x00\x0f\x1c\xcc\xd2\x64\x1e\x2e\xe7\xec\xf5\x29\xeb\x2d\xf3\x59\x92\x66\x2d\xd6\x8b\x22\x06\x75\xe1\xe5\x46\xa4\x57\xf2\xce\x25\x6f\x1d\x99\x31\xb2\xc8\x92\x65\x1a\x50\xba\xe7\x30\x63\x17\xc9\x95\x48\x63\x15\x7f\xb4\x7f\x7a\xdc\xcc\xf2\x75\x24\x58\x14\x06\x22\x56\xce\x42\x64\x6a\xb1\xb5\x85\xe9\x6f\xd4\xa1\xfd\xe2\x64\x30\x7c\x75\x3a\x84\x83\xa5\xf5\xe0\x81\xb7\xcc\x50\xa4\x0f\x72\x78\xe7\xdb\x62\x67\xaf\x8f\x5f\xd7\x26\xfc\x2a\x9c\x8c\x45\x5c\x3f\x64\x1f\x94\x65\x20\x31\x52\x11\x07\xc9\x84\x5c\x29\x80\x19\xab\xa8\xdc\x62\xd2\x78\x00\x79\x30\x29\x68\x36\x2e\x2f\x85\xd7\x8d\xd1\xab\x2a\x8c\x9b\xca\x72\xcd\x8d\xe6\x2d\xa7\x2c\x5b\xcf\xf2\x7c\x91\x1d\x6e\x6d\xad\xc2\xcb\xb0\xb5\x9a\xf1\x7c\x75\xd1\x4a\xd2\x0b\xf8\x7b\x0b\xcf\xcc\x21\x0d\xc0\xae\xae\x06\xd5\xca\x16\x22\xb0\xdb\x19\xe9\x12\x0d\x46\xa6\xcb\x88\xbd\x3b\x1b\x35\xf7\xd9\x44\x48\x74\x5a\x12\xc8\xbb\xb3\xd1\xfe\x31\x16\x96\x89\x84\x3c\xad\x4d\xec\x97\xf1\x3a\x17\x19\x7a\x59\x13\x66\xf5\x23\xb5\xf8\xeb\x52\x50\xd8\x43\x20\x24\xa8\xfa\x42\xd6\xa4\xf8\x4f\x04\x2c\x04\x7b\x94\x8b\x54\x40\x1c\xe0\x89\xc0\xec\xde\x6c\x2c\x24\x76\x71\x78\x13\x48\xac\x60\x00\xfc\xc8\xda\x56\x56\xed\x89\x78\x03\x2d\x5c\xb0\x51\xb2\x12\x29\x1b\xc3\xa2\x27\xb1\xa5\xe3\x36\x7d\xdc\x00\x15\x5a\xf7\xa1\x31\x80\x75\x72\x70\x05\x90\xcf\x81\xa3\x30\x4c\x68\xe4\x39\x6f\xb0\x9c\x5f\x82\x7b\x42\x2c\xd9\x5a\x80\x9e\x0d\x68\xca\x08\x5e\x6f\x8b\x54\x5c\x85\xc9\x12\xc4\x0a\xc8\x92\x9c\xe5\xa9\xe0\x73\x38\xdc\x75\xda\x1c\xa4\x2c\x91\x16\xd9\xe9\xa9\x56\xbf\xa6\xd8\x18\x22\x7b\xc8\xaa\x0d\x13\xf5\x5b\xc9\xd6\xe6\x4e\xa0\xa4\x88\x53\xeb\x16\x89\x7a\x71\x89\x86\x65\x1c\x96\x62\x86\x4b\x84\xb0\xb1\xc8\x57\x42\xc4\xac\x7d\xdd\x6e\x5b\x19\x1a\xdb\xd7\xa3\x91\x2b\x61\xa8\x61\x41\x84\x7a\x39\x2c\x5a\x31\x42\x82\x7d\x3b\x91\x98\xf2\xbb\x26\xe6\x55\x99\xe0\x2c\x26\x85\x60\x2a\x5f\xce\xe4\x19\x9f\x8a\x5c\x27\x39\xaf\xd2\xb6\x65\x79\x5a\x65\x30\x07\x59\x41\x49\x4f\x10\xcc\x78\x3a\x48\x26\xa2\x97\xd7\x42\xeb\xea\x5f\xa4\x55\xcb\xdb\x09\x2b\x04\xec\x4f\x47\xac\x7d\xbd\x37\x72\xc3\xcf\x42\x30\x20\x05\xd7\x82\xe9\xb8\xb8\xb6\xaf\x07\x6d\xd9\x3c\x60\x3f\xfc\xc0\x08\xd0\xb1\x03\xa8\x44\xd3\x01\x6b\x32\xd9\xec\xa9\x5b\xc5\xde\x4d\xfe\xd3\xa2\x57\x89\x4d\xbc\xd7\xfb\xed\xca\x91\x0c\x4b\x23\x19\xde\x65\x24\xc3\x9b\x46\xd2\xb9\x6d\x24\xd5\x43\x19\x95\x86\x32\xda\xbb\xc3\x50\x46\x37\x0d\x65\xfb\xe6\xa1\xf8\xed\xf6\xa6\xc1\xec\x97\x06\xd3\xbf\xcb\x60\xf6\x6f\x18\xcc\xce\xcd\x83\xe9\xb4\x37\x8f\x66\x50\x1a\xcd\xf1\x5d\x46\x33\xb8\x61\x34\xbb\x37\x8f\x66\xa7\x5d\x35\x9c\x12\xad\x7b\xbf\x2c\xa7\xd3\xe9\xc4\x2b\xc4\x7c\x73\x6b\xe3\x24\xf6\x4b\xeb\xdb\x2f\x93\x9a\x1e\x61\xb3\xf9\x74\xf3\xf4\x6a\x85\x92\x3f\xfd\x89\x75\xe5\xdd\xb2\x86\xf3\xde\x6f\xd7\x4d\xe3\x5b\xb7\x33\x43\x45\xdc\xcf\x49\x0e\x9e\x01\x51\x64\x4e\x2d\x7a\xae\x50\x7e\x96\x18\xf9\x04\x8f\x13\xf0\xf6\x70\x21\x4c\xc3\x28\x97\x07\xe2\x32\x67\xd9\x32\x4d\x93\x0b\x7c\x97\x0d\x53\xad\xa9\x63\x8a\xfb\x58\x73\x71\xa7\xf2\xd4\xaa\x09\x7c\xc6\xcc\xb1\xb8\x4c\x05\x4b\xda\xcf\x9f\x25\x92\x8f\xf7\xdb\x88\x66\xdd\x4e\xa2\xdb\x00\x41\x5e\x33\x1a\xd5\xcb\xad\x4d\xad\x1f\x61\x6b\x8c\x64\x35\x07\x4b\x1b\x57\xbd\x92\x42\x08\x2b\x20\xa2\x08\x79\x22\x11\xeb\x57\x39\x4a\x97\xf9\x62\x99\xb7\x9c\xea\xc5\x19\xd3\x0e\x2d\x8e\x42\x8f\x03\xcf\x9d\x96\x3c\x57\x07\xc4\xc8\x4d\xfb\xfa\x53\xa7\x51\xe5\xf8\x30\x55\xb5\xb3\x58\xad\x42\x05\x33\x9e\x66\x89\x65\xdc\x61\x38\x25\x7b\x67\x5a\xa3\x27\xac\x66\x4d\xf5\xc7\x1f\x7f\x64\x7e\xbb\xce\x7e\x60\xed\xeb\xed\xd1\xa8\x5e\x8e\x0d\xd7\xbe\x3e\x1e\x60\x33\x6b\x69\xa9\x76\x71\xa6\x0f\xaa\x7e\xff\xb2\x69\x27\x4b\x51\x29\x49\xe0\x71\x1e\x05\xb9\x30\x66\xf3\x65\x94\x87\x4d\x10\x02\xcc\x66\x78\x2b\x56\x61\x3c\x21\x79\x05\x43\xd8\xd8\x40\xd0\xbf\x23\x4a\xc8\x15\x02\x1c\x78\x25\x84\xd6\x6d\x3c\x63\x93\x68\x48\x34\x61\x38\xc1\x17\x4b\x45\xad\xef\xec\xa9\xc8\x2b\x25\x33\x23\x92\xb5\xac\xd0\x6a\x3a\x70\x7a\x20\x9c\x27\x0a\x32\xa6\x81\x0b\x98\xd0\xa2\x59\x68\xbc\xf0\x21\x6c\xc4\xff\x6f\xc4\x31\x6c\x20\x85\x32\x5b\xf8\x92\xb7\x3a\xc7\xf6\xaf\xa6\x1e\x82\x2d\xf1\xad\x56\xaf\x53\x73\xac\xef\x26\x93\x88\x95\xd8\xec\x74\x8c\x03\x83\x15\xd3\x37\xe2\xc2\xd5\xeb\x18\x22\x26\x81\xc3\x18\x37\xd7\x97\x2b\x91\x66\x76\xfe\x23\x75\xdb\x33\x31\x1a\x64\x6d\x67\x7f\x33\x50\x1f\x01\x17\x5a\x61\x86\x8c\xec\x27\xf6\x01\x83\x55\x2e\x16\x22\xce\x24\x17\x82\x10\x16\x97\x62\xbd\x80\x0b\x09\xfa\x22\xa3\x79\x1a\x98\xb2\x90\xe1\x34\x8c\x45\x4a\x7a\x3c\x20\xc6\x0f\xe9\xe3\x24\xf5\xf7\x5f\xbe\xf9\xe9\x06\x62\x39\x33\x77\x48\x30\x08\x95\x58\xd9\xbc\x86\xf6\x6d\x13\xa9\x09\x50\xd5\xd8\x44\x57\xf6\x63\x11\x6e\xe9\x02\x31\x6a\x3a\xcb\xf0\x4e\x42\x14\xa5\x49\x09\x89\x00\xfb\x2b\x12\xc1\xf7\x90\xc0\xe5\x71\x0b\x09\x31\x97\x71\x08\x63\xb1\xae\x7c\xa4\x2d\x91\x2d\xef\x2a\xad\x13\x6f\x2c\x89\xd4\xf6\xf9\x15\x80\x54\x33\x1a\x8d\x8e\x9d\x27\x31\x6a\xbe\x5f\xd1\xbc\x6f\x37\x87\xc8\x07\x4f\x7c\x67\x4a\xf6\xb1\x24\x47\x39\xa9\x18\xe5\x13\xbf\x20\x8a\x98\xb1\x4e\x64\x67\x93\xaa\xb1\x12\x8a\x4e\x57\x10\x83\xb6\x44\xc1\xf6\x09\x15\x18\x39\x16\x8f\x14\x7d\x28\x48\xa1\x48\x1e\x29\x4f\x58\x6d\xa2\x0b\x1d\xf1\x02\x83\xed\x6e\x38\x15\xca\x18\xbb\xf1\x10\x29\x57\x76\xa2\xff\x1a\x39\x20\x90\x3b\x4f\xed\x74\x42\x9c\xe6\xfc\x66\x49\x2b\xee\x57\x37\xdd\xae\xdc\xd0\xc3\xd6\xda\x6a\x38\x65\x40\x55\xa7\x35\x5c\xcd\x3e\xcb\x66\xf2\x44\xee\x9a\x93\xb5\xe2\xa6\x55\xee\xc5\x95\x98\x6e\xec\x66\x68\x75\xe3\x77\xaa\xfb\xe9\x38\xfd\x6c\x3d\xb6\xbb\x52\xe2\xd9\xe3\xad\xbb\xf5\x37\xb2\xfb\xdb\xaf\xee\x6f\xfb\xa9\xbd\x64\xab\x59\x18\x09\x56\x73\x34\x23\x66\x72\x15\x72\xfa\x8d\xfd\xef\x43\xff\x34\x80\x5a\x97\x3d\x36\x10\xea\x4a\xec\xa9\x3b\x6f\xd0\xa5\x03\x7e\x83\xc6\x31\x9f\x85\xe9\xe4\xd3\x82\xa7\xf9\x7a\x6b\x15\xac\xc2\x49\x3e\x03\x15\xe4\x2a\xd8\xa4\x80\xdc\xf9\x6a\x05\xa4\xe4\x8a\xab\xe0\x1f\xa8\x82\xb4\xe2\xdf\x5b\x87\x76\x14\x8e\x53\x48\xfc\x9c\x31\xb2\x0e\xd5\xf9\xa1\x09\x03\xad\xdf\x32\x36\x4f\x26\x4b\x74\xee\x8d\xe5\xe9\xf2\x5b\xa6\x9f\x7a\x93\x34\xbc\x00\x2d\x58\x21\x8b\x20\xf9\x0b\xe3\x00\x79\x7e\x08\xa7\x28\x69\x15\xe3\xc5\xfc\xb7\x0c\xd4\x88\x0b\x1e\x5c\xf2\x0b\xb1\x65\xba\x82\x13\x43\x0d\xd6\x1a\xa7\x0a\x08\x95\x4c\x41\x3f\xbe\xcc\xd8\xf3\xe5\x2c\x96\x17\x29\x6c\x5a\xab\x17\x46\x60\x59\x6e\x4f\x13\xc9\xfb\xe0\xd8\xbb\x5e\x44\x3c\xa6\x11\x26\x73\x91\x99\xd9\xea\x89\x0c\x0a\x80\x0e\x0b\x41\xad\x78\x5c\x91\x31\xd1\x8c\x82\xc7\x13\xb6\x0a\x32\xf5\x67\x4d\x67\x50\x07\x41\xe2\x64\x38\x1c\xb2\xd3\x7c\xc2\xfc\x76\xbb\xd3\xf2\x9b\x9d\x76\xdb\xaf\xc3\x71\xf7\x0e\x8f\x2f\x25\xb3\x48\x5c\x1d\x6e\x6d\xad\x56\xab\x56\xb2\x10\x31\x84\x32\x00\x94\x25\x71\x14\xc6\x62\xb1\x1c\x67\x5b\xed\xf6\xde\x41\x7b\xe7\x60\x6f\x77\x4b\x3b\xd8\x69\x4c\xce\xf2\x79\xf4\x6d\x70\x32\x07\x10\x05\x8b\x9a\x86\xd7\x62\xd2\x84\x2f\x74\xeb\x62\x13\x71\x15\x06\x22\x6b\xb0\x17\x3c\x0f\x63\x23\xc3\x40\xd8\x73\x96\x04\xc1\x72\xb1\xd6\x5e\x95\x12\xcc\xa3\x40\x44\xd1\x23\xb6\x48\xb2\x50\xa1\x0f\xed\xc7\x00\x6c\x43\x8a\xcf\xa9\xe0\x19\x0b\x27\x22\xb9\x48\xf9\x62\x16\x06\x6c\xf0\xe7\xe7\x16\x64\x30\xf9\x45\xc0\x52\xf0\xca\x96\x52\xde\x15\x51\x94\xb5\xd8\x49\x9c\x0b\x78\x56\x85\x48\xaa\xf9\x5a\x4b\xba\xe8\x69\xce\xa3\xa6\x7a\x34\x87\x94\x5a\xf8\xd2\x88\xe1\x16\x6a\xb9\x88\x44\xbe\x5e\x08\xdc\x73\x75\x4b\x1c\x53\x8d\x33\xa6\x1f\x4c\xc0\x8b\x01\xee\x05\x5a\x73\xaf\xf3\x60\xf2\x8b\x54\x00\x7d\xb0\x24\x56\xfe\xf3\x1a\x16\x19\x21\xf3\xc9\x15\x87\xd8\x4a\x8f\x95\x96\x3b\x4b\x52\x48\x49\x96\xac\xd8\x1c\xfc\xda\x45\x14\x69\x2c\x65\x2d\xf6\x2a\x61\x22\xcb\xf9\x38\x82\xbc\x91\xf8\xe4\x0a\x6b\x9c\xe5\x3c\x9e\xf0\x74\x92\x61\x9a\x77\xc6\x21\x8a\x46\xe6\xf4\xff\x4e\x49\x47\xd6\x38\xcc\xfa\x3c\xa0\x9c\x3b\x15\xfd\x4a\x10\x15\x88\x68\x91\x4f\x6c\x9a\x2c\xf3\x30\x16\x60\x77\x09\x58\xc5\x58\x3f\x2a\xf0\x96\x5c\x5c\xd8\x01\xf0\xb2\x2e\xd7\x69\x2c\x66\xfc\x2a\x94\x53\xe5\x19\xa6\xf0\xce\x60\x3b\xb1\x74\x19\xe1\x03\xb9\x95\xeb\x0c\x6e\x1c\x8b\x34\xb9\x0a\x27\x26\x46\x80\x9a\xca\x20\x89\x33\xc9\x15\x96\x3a\xbb\xd5\x28\x49\x51\x87\x4e\x64\xc3\x23\x8b\x68\x1a\x4e\x63\x85\x33\x60\x09\x61\x10\xe6\x14\x58\x00\x76\x6b\x66\xcb\xe2\x4d\xc0\x07\x92\xfc\x55\xc8\x01\x0a\x4e\xc9\xa4\x4b\x15\x6c\xc8\xb3\x9c\xf5\xb2\x10\xef\x0b\xa3\x65\x14\x7d\x80\x16\xb5\x51\xbd\xc1\x3e\x48\x51\xbe\xf6\xa1\xde\x60\xcf\x78\x34\xa5\xed\x53\x7b\x56\xc7\x67\xf6\x57\x3c\x4d\x93\x15\xab\xbd\xe2\x75\x2b\x87\x11\xc6\x66\xc3\x4b\x64\x86\xd1\xea\x70\x0a\x29\x79\x93\x30\x3e\x1f\x87\x17\x4b\x49\xe3\x10\x32\x89\x16\x1a\x81\x73\x34\xd2\xc7\xc5\xa2\xa5\x5e\x66\xa2\x05\x28\xb2\xb6\x28\x1d\x1d\x66\xf4\xac\x07\x50\x93\x65\xc6\x6a\xbd\x3a\x04\x83\xa0\x5c\x8c\xf2\x44\x00\xd8\xc1\x2c\x09\x03\x89\x83\x85\x88\x27\x19\x5b\x2c\x21\xb7\x13\xc4\x14\x5b\xa4\x62\x2a\x52\x41\x8e\xcc\x63\x1e\x5c\xae\x78\x3a\x51\xf1\x35\x78\x1e\xd2\xa6\xc4\x6b\x6a\x08\xe6\x68\xb3\x30\xcb\x93\x94\xf6\x78\x92\xb2\x0f\x22\x83\x70\xfc\x0b\x70\xef\x0f\xf0\x2e\x33\x98\x25\x09\xec\x3c\x64\x23\x84\x42\x4a\xcd\x95\x09\x67\x4a\x60\x03\x07\x71\x83\x7e\x5b\x66\x60\x6e\xc3\xb5\xe1\x05\x5f\x2c\xd2\x64\x91\x86\x52\xfe\x8d\x92\xf8\x02\xc3\x2b\x67\x49\xb4\xc4\x17\x51\x0c\xad\x01\x43\x51\xfd\x93\x53\xdd\x24\xcc\x16\x11\x5f\xd3\xee\x77\xbb\xe4\x99\x8a\x9a\x46\x18\x32\x47\x8b\x9a\x9d\x04\x51\x38\x36\x80\xee\x25\xe9\xad\x59\x6d\xbf\x39\x0e\x73\x7d\x2b\xb3\x40\x83\x1b\x3b\xf5\x8d\x76\x4c\x0e\x06\x24\xfd\xf8\x5d\x68\x9c\x48\xba\xb5\x87\x41\x91\xdd\x24\x92\x7e\x4e\x85\xb8\x04\x6f\xa7\xc1\x3a\x0d\xa3\x28\x0c\x1a\x4c\xe4\x41\x0b\x8f\x2b\xf0\xdc\x88\xd7\x2c\x5f\x2f\x34\xc3\x0d\x28\x78\x1c\x77\xfc\xb6\x5f\xca\x1d\x1c\xc1\xc3\x5a\x04\x9e\x55\x88\x2e\xa2\x08\x79\x0e\xda\xeb\xc2\x5e\x25\x79\x61\x63\xd4\x5e\x89\x65\x9e\xf2\x88\x28\xbd\xc5\x86\x92\x63\x49\xa4\x6a\x74\x6b\x37\x97\x49\x18\xc0\x53\x17\xb7\xa0\xf2\x78\x4d\xfe\x1e\xc5\x45\x68\xb1\x13\x75\xaf\x86\x54\xb1\xf9\x4c\xc0\x40\x31\x2d\xba\x14\x9e\x80\x06\xcc\x14\xc1\x63\x0b\xb3\xcb\x27\xe8\x03\x24\xef\xf0\x9a\xd3\xc1\x79\x82\xc9\xf5\xf4\x62\x48\x06\x06\x1c\x0a\xfd\x4d\xb5\x3f\xf5\xf0\x25\x3b\x7d\xd3\x1b\x0c\x25\xf9\xbe\x7f\xfd\xe2\xdd\xcb\x21\x3b\x79\x75\x36\xfc\xf9\x6d\xef\x85\x15\x3f\x45\xce\x69\x4c\x09\x93\xad\x2b\xf4\x44\x1e\x7e\xb9\xdc\x42\xb0\x2b\xb8\xbb\xc0\x17\xd1\x7a\x31\x6b\xb9\x62\x0c\x80\xd0\x7c\xd7\x30\xfb\xb9\x80\x9d\xc8\xb3\x2c\xbc\x88\x0d\x20\x8b\x7f\xe1\x74\x65\xfb\x18\xd7\xc1\xe1\x8f\xc4\x0c\x42\xf0\x4e\x43\xe3\x02\x43\xa3\x46\xf3\xa5\x1d\xd9\x28\xab\x5b\xc6\xf3\x30\x9b\xf2\x20\x4f\xd2\xb5\x0a\x5c\x2e\x97\x01\x5c\x8e\x14\x1d\x49\xf6\x0d\x5e\x4a\xd0\x54\x1d\x63\xa8\x91\xc2\x93\xcc\xb0\x64\x8a\xa7\xb2\x0a\xe4\xa1\xc2\x5b\xac\x87\x3e\x25\xf3\x04\x13\xdd\x2b\xad\x9a\x08\x42\x50\xd8\x20\x82\x5d\x5a\xb3\x09\xcd\x5a\x3f\x35\xb0\xe2\x22\x8c\xd7\xee\x06\x06\xac\x67\x6a\xd1\xd6\x02\xac\x19\x79\x9c\xad\x70\x22\x6b\x75\x4c\xad\x55\x56\x64\x7d\x82\x19\x81\x52\x9d\x34\xf2\x0c\x1b\x43\x24\x51\xcc\xd5\xd3\x62\xa7\x22\xcf\x69\x19\x97\x0b\xe0\x9a\x52\x60\x31\xf3\x57\xdb\x47\x1f\x95\xc9\x94\x44\x8d\x8a\x83\x58\x42\x01\x6b\x0f\x92\x3e\xc0\x92\x2d\x05\x8d\x16\x8f\x79\xb4\xce\x28\x91\x19\x04\x5f\x97\xa2\x16\xaf\x92\x06\x80\x37\x8c\x97\x39\x46\x48\x55\xd5\x08\x41\x5c\x1b\x5f\x37\xe0\x78\xcd\x75\x76\x17\x0e\x97\x1d\xbd\x1d\x1d\xc2\x84\xb8\xa3\x57\x09\x9c\xdc\xca\xa9\x8d\x4d\x79\x5a\x21\xe1\x92\xea\x06\xe4\x52\xfa\x7d\x8b\xc2\xa1\x6e\xe5\xa9\xef\x6f\x29\xf6\x63\x24\x7f\xd6\x6c\xb2\x4e\xbb\xbd\xd7\x6c\xef\x36\x3b\x5d\x56\x53\x33\xda\x6d\xb5\xeb\x54\xfb\x8d\x44\x51\x96\x91\x65\xf9\x32\x13\x0d\x16\x24\x8b\x75\x43\xde\x66\xc2\xe9\xba\x41\x1e\xae\xf2\x8a\x34\x5e\xe6\xc2\xdc\xc8\xa6\xf9\x8a\xa4\x19\x62\x39\xf2\x8c\x5b\x40\x86\xcd\x18\x3d\x82\xc1\x71\x4e\xc0\x41\x2c\x0f\xe4\xf1\x5a\x4a\x1c\x92\x92\x70\xa7\x22\x5a\xe8\xd4\x08\x22\x1e\xce\x51\x18\x5e\xf1\x54\x56\x0b\x05\x59\x70\xa4\xe2\x42\xae\x37\x65\x33\xb4\xfa\x56\x38\x7a\xc1\xc1\x1c\x87\x54\x93\x87\x36\xce\x82\xa8\x15\xf0\x79\x8b\x07\xad\xe5\xe5\xd6\xdf\xe7\x17\x97\x9d\xdd\xad\x65\x60\x2e\x00\x81\x73\x93\x72\xaf\x41\x5a\x5b\xad\xc4\x1d\x74\xd9\x8a\x96\xf3\x98\x18\x05\x26\x69\x3b\x39\x7d\xcd\xfc\x76\x77\xa7\x6b\x08\x45\xb3\x3f\x09\x2b\x53\x77\x23\xd6\x24\x33\x8e\xc8\xe2\x28\xac\xf6\xee\x09\x3e\xb9\x00\x29\x94\x3a\x68\xb7\xa8\xe9\x6b\x90\x03\x06\xed\xad\x81\x0f\x9b\x24\x4d\x22\xe7\x74\x8d\x27\xec\x78\xf8\x82\x62\x63\x09\x8e\xf1\x4d\x1c\xa3\x7e\x09\xae\xe9\x2b\x78\xaf\x92\xb8\x99\x2d\x78\x00\x9b\x33\x9e\xc8\x63\x35\x42\xe9\x21\x48\xe6\x63\x94\x45\x2d\xf8\x35\xf4\x2f\x8e\x98\x3c\x05\x2e\x24\x13\x03\x4a\x7a\xa9\xf2\x12\x24\x29\x7b\xa9\x43\xa8\x15\x77\x75\x5d\x39\x24\x6e\x9c\xdd\xe9\xeb\xd1\x19\x7b\xf6\xdf\x6f\x9e\x0d\x5f\x21\x46\x7a\xc7\x9b\x30\xe2\xbb\x18\x21\xa3\xca\xdb\x87\x3a\x98\x6e\x1c\x1e\xcd\x41\xa2\xe1\x2f\xc3\xb7\xaf\xd9\x87\x93\xe3\xb3\x67\x74\x5a\xd5\xde\x3d\xe9\xb4\xdb\xfd\xdb\xa7\xf0\x8c\xc7\x17\xcb\x88\xfd\x99\xcf\x13\x06\xc9\x1d\x22\x76\x95\xac\x44\x84\x6b\xa3\xac\x60\xe2\x2c\x89\x79\x9c\x67\x12\xae\xef\x77\xdb\x4d\xf9\x63\x34\x52\xe0\x69\x24\x9b\xf1\x44\x2b\x76\xa3\x74\xaa\x24\x69\xb9\x28\x56\xb1\x94\xb7\x95\x58\x3d\x52\x73\xd6\x38\x92\xe2\x99\xbe\x85\x6b\x14\x9d\x89\x60\x16\xc3\x1d\x81\xfc\x16\xff\x9f\xef\x6f\xc0\x04\x01\xec\xa8\xa1\x56\x8a\xcb\x36\xc5\xa6\x02\x1c\x43\x63\xd7\x72\x27\x54\x80\x70\xdf\x0f\x7e\xbb\x34\xad\xa7\x11\xbf\x00\xd1\x35\xe6\xe3\x88\xf8\xc8\x7a\xd3\xc2\xe8\x81\x80\x8e\x49\xcc\x79\x99\xa6\x4d\xa2\x70\xc9\x78\xc0\x3a\x51\x02\x86\x2d\xbd\xbf\xbf\x7b\xd0\xf4\x61\xed\x3e\xfc\xfc\x62\x47\xa1\xcb\x92\x04\xf4\xf9\x50\xda\x8d\x4a\x6e\xdc\x30\x32\xdf\x0d\x01\xee\x0a\xbc\x18\x78\x4f\xbd\xac\xb8\xe8\x52\xa2\x6f\x68\x71\x1d\x7c\x3e\x78\x40\xbc\xf1\x08\xf3\xb7\x6e\x6d\xb1\x0f\x9a\x45\x49\x8e\x63\x20\xb5\xa8\x6a\x2b\x5e\xd2\xed\x0b\x53\x75\xb9\x4d\x4a\x73\xd2\xcd\xe8\x4b\xa1\xe9\x48\xae\x8c\xf2\x22\xa5\x0c\xc9\x10\x56\xf9\x16\x2a\xd0\x60\x2b\x56\xdb\x24\xb5\x74\xc6\x16\xdf\x02\xd3\x8c\xd4\x02\xa6\x86\xdb\x41\x68\xa7\xa8\xc5\x53\x21\x13\xe3\x24\x6e\x26\x57\x22\x8d\xf8\x62\x41\xaf\x63\x22\xbd\xe2\x51\xa6\x3e\x66\xa5\x6d\x27\xa1\xa8\x90\x0b\x20\x1a\x3d\x5a\xc6\x61\x26\x72\xf6\x24\xe0\xf9\xd1\x4b\x41\x3f\x63\xfc\x39\x98\xb2\xa6\xe4\x69\x0c\xf7\xbc\xdc\xf1\x0c\xd8\x0a\x0b\x1e\x19\xc4\x2a\xb6\x7b\xc4\xce\x41\x2f\x7b\xce\xda\xd7\xed\xed\x76\xbb\x01\x3f\xbb\x23\xf6\xb1\x81\x65\x3b\xfb\xdb\x0d\xfc\xd9\xb5\xca\xf6\xa9\xec\x80\x51\xaa\x33\x28\xdf\x3d\xf0\xa1\x7c\xb7\x7f\xac\xeb\xee\xf6\x47\x54\x66\x60\xee\x0e\xa8\xde\xa0\xe3\xb6\x1f\xec\x50\xf9\xae\x55\x77\x8f\xca\xf6\x74\x59\x97\xc6\xd9\x6d\x6f\x3b\xed\xbb\x3e\x95\xfb\xa6\x7d\x77\xa7\x8f\x65\xbb\x43\x53\xb6\x47\xf5\xf6\xda\x6e\xfb\xe3\x2e\x96\x0f\x77\x4c\xdd\xe1\x1e\x95\xed\x5b\x65\x3d\x2a\x3b\x76\xda\xef\xb5\x71\xae\x7b\x6d\x33\xd7\x3d\x1f\xe7\xba\xe7\xfb\xa6\x6c\x1b\xfb\xdf\xdb\xe9\xb9\xed\x7b\xd8\xff\x5e\xbf\x6d\xea\x0e\x71\xfc\x7b\xa3\x6d\x5d\x76\xd0\x46\x98\x07\x6d\x17\x7f\x07\xdb\x83\x06\xfd\x34\x75\x77\xa8\xee\xce\xbe\x55\x76\x4c\x65\xee\xf8\x0f\x76\xa9\xee\xae\x99\xff\x41\xb7\x83\x65\x5d\xab\xff\x7d\xaa\xb7\xef\xbb\xed\xfb\xd4\x7f\xdf\xea\x9f\xd6\xfa\x60\x60\xc1\x1c\x50\xff\x83\x42\xff\x43\xea\x6b\x68\xfa\xea\xd1\x5c\x7b\x30\x57\x2a\xa3\x79\xf6\x60\x9e\xa6\x7d\x8f\xe6\xda\xdb\xb1\xea\xee\xec\x51\xd9\xbe\x55\xd6\xa7\x32\xb7\xff\x1e\xd1\x45\x6f\xcf\xac\x55\x8f\xe6\xda\xdb\xb7\x60\xd2\x3c\x7b\xfd\x42\xff\x34\xd7\x9e\x45\xbf\x3d\xa2\xdf\xde\xc0\xea\x9f\xe6\xdf\x2b\xcc\xbf\x47\xf3\xef\x59\xf3\xef\xd3\xfc\xfb\x6d\x33\xa6\x3e\xcd\xbf\x5f\x98\x7f\x7f\x7b\x44\xe5\x86\xfe\xfa\x84\x93\xfe\x8e\x05\x93\xd6\xbf\x5f\x98\x7f\x7f\x17\xe9\xaf\xbf\x6b\xf6\x7a\x7f\x1f\xc7\xd4\xb7\xe6\xdf\x1f\x20\x9e\xfa\x03\x77\xff\xf4\x69\x5e\xfd\x81\xd9\xff\x83\xed\x21\x94\x0d\x76\x0c\x4d\x0f\x76\xba\x54\xb6\xef\xb4\x1f\xec\xf4\xa8\xdc\x6a\xbf\xbb\x8b\x65\xd6\x98\x06\x84\xff\x41\x01\xff\x03\xe2\x35\x03\x8b\xd7\x0c\x06\xd4\xd7\xc0\x6a\x3f\xa0\xf6\x05\xfc\x0f\x08\xff\x03\x0b\xff\xc7\x84\xbf\xe3\x1d\xbb\xec\x98\xca\xdc\xf6\xc7\x03\x1c\xff\xf1\xa0\x67\xea\x1e\x23\xcc\xe3\xe3\x1d\xab\xac\x4b\x65\x5d\xa7\xfd\x70\x1b\xfb\x1a\x6e\x9b\xb5\x1e\x6e\xef\x50\x99\x81\x39\x24\x9a\x1e\xee\x0c\xdd\xf6\x7d\x6a\xdf\xb7\xda\xf7\xa9\x7d\xff\xc0\x2a\xeb\x53\x99\x8b\xbf\xe1\x00\xf9\xfa\xd0\x5a\xbf\x91\x8f\x65\x23\xdf\xb4\x1f\x6d\xe3\x9a\x8c\xb6\x77\x9d\xf6\xa3\xed\x3d\x2a\xdf\xb3\xea\x1e\x50\x99\xd5\x7e\x0f\xc7\x39\xda\x73\xc7\x3f\xda\x47\xba\x1a\xed\x1b\x5c\x8d\xf6\xbb\x54\x66\xc1\x3c\xa0\x7a\x07\x7b\x6e\xfb\x03\xea\xcb\xe2\x3f\x23\x5a\xff\x91\x59\x7f\xbf\xdd\x81\xf5\xf3\xdb\xdb\x0e\xfd\xfa\xed\xed\x0e\x95\x77\x4c\xdd\xed\x2e\x95\xed\x59\x65\x07\x54\x76\xe0\xb6\xdf\xdd\xc7\xf2\x5d\x3d\x57\x79\x06\x43\x99\x3c\x86\x55\xd9\xf6\x2e\xd0\xa9\xfc\xe9\xb4\xdf\xf3\xb1\xff\x3d\x5f\xcf\xdf\xdf\xa3\x31\xed\x6d\x5b\x65\xbb\x54\xb6\xbb\xed\xb6\xdf\xa3\xf2\xbd\x6d\x53\x17\xd7\xdf\xdf\xeb\xef\x5a\x65\x7b\x54\x76\xec\xb6\x47\x5c\xc9\x9f\xa6\xee\x00\xe7\xba\x77\x6c\xc1\x3c\x3e\xa6\x32\xb7\xfd\x7e\x1b\xe8\xca\xdf\x6f\x6b\xfa\xf1\xf7\x7b\xd8\x7e\xbf\x67\x70\x72\xd0\x41\x9c\x1c\x74\x9c\xf3\xcb\x3f\xe8\xec\x51\xf9\xbe\xa9\x4b\xf3\x3f\xb0\xd6\xe4\x80\xf0\x7f\xb0\xdd\x77\xda\xf7\x7c\x6c\xdf\xf3\x4d\xfb\x3e\xca\x0a\x7e\xbf\x6d\xc6\xdf\xc7\x3d\x25\x7f\x3a\xed\xfb\xb4\xd6\x7d\xb3\xd7\x7c\xe2\xb5\x7e\xdf\x9c\xa9\x7e\x7f\x07\xc7\xd4\xdf\x71\xc7\xdf\xef\xe2\xfc\xfb\x16\xfe\x8f\x91\x57\xfa\x16\x4f\xf0\x8f\x47\x43\x2c\x1b\x39\xeb\x2f\x85\xb4\x06\xfe\xd4\xb4\xd2\x69\x77\x7a\x58\xd6\x19\x9a\x32\xa4\xa9\x4e\xbb\xbb\xed\xb6\xef\x52\xdd\xae\xd5\xfe\x98\xea\x0e\x75\xd9\x36\xc1\xdc\x6e\x77\x9c\xfe\xb7\xdb\xb8\x7f\xb6\xdb\x07\x7a\xac\xbd\xfd\x36\xe0\x44\xfe\xb4\xca\xfa\x54\xe6\xe0\xbf\xb7\xdf\xd9\xc5\xf2\x8e\xae\x3b\xea\xfb\x30\x57\xf9\x53\x97\x0d\x71\x4d\x46\xc3\xb6\xd3\xff\x68\xd8\xa1\xf2\xce\xb6\xa9\x3b\x1a\x35\xe8\xa7\x2e\x1b\x8d\x60\x9c\xa3\xd1\xc8\x5d\x7f\x25\x2c\xc8\x5f\xcc\x0a\xb4\x7b\xed\x5d\x55\xda\xb5\x4b\x07\xaa\x74\x54\x80\xb2\x4d\xdb\xb8\x67\xd1\x41\xbb\x87\x87\x2b\xfc\x62\x56\xd2\xef\x22\xc9\x1d\xfb\x5d\x97\x17\x1c\xfb\x7b\xdb\xf4\xc5\x9c\x9c\xf2\x8f\x5d\x55\xda\xb7\x4a\x7b\x3d\x2a\xed\xb9\x3b\xea\xb8\x43\xa4\x76\xdc\xd9\xd1\xfb\x7f\xd8\x6e\xe3\x3c\xe1\x17\xab\x14\xd1\x37\x6c\xb7\xf7\x9c\x19\x0d\xdb\x7e\x9b\xbe\xf8\x92\x0a\x1e\x7c\xbc\xff\xcd\xe4\x96\xbb\xd5\xe6\x2b\x0a\xe8\x37\x9a\x3d\xd6\xa4\xbb\x4a\x93\xee\x2a\x4d\xba\xab\x98\x4b\x09\xb7\x6e\x63\xd6\xa5\xa4\xdd\xc3\xc3\xa2\xdd\x33\x87\x5a\xbb\xb7\x43\x65\x3b\x56\xd9\x1e\x95\xb9\x42\x45\x1b\x71\x2b\x7f\x5a\x75\x87\x54\x66\x2e\x05\xed\x3e\x1e\x2a\xed\xfe\x8e\xdb\xbe\xdf\xa5\x72\xab\x3d\x09\x20\x6d\x4b\xd0\x68\xd3\x41\xd3\x1e\xb8\x87\x3a\x6d\x40\xf9\xd3\xd4\x3d\xa6\xb1\x1e\xef\x5b\x65\x34\xa6\xa1\x2b\x54\xb7\x87\x04\x77\x68\x04\x98\xf6\x70\x9f\xca\xac\x31\x0d\x69\x4c\x85\x4b\x49\x7b\x44\xfd\x8f\xac\xfe\x47\x1d\x2a\xdb\xb6\xca\x68\x4c\xa3\x5e\xa1\x3d\xc1\x1d\x0d\xac\xba\x34\xd6\x91\xc1\x9f\x4f\x82\xaa\xdf\x76\xc7\xef\xd3\x05\xc8\xb7\x2e\x40\xbe\xbf\x4d\x65\xdb\x56\x59\x9f\xca\xfa\x6e\xfb\x0e\xce\xdf\xef\x18\x01\xc0\xef\x50\xdd\x4e\xdf\x94\x91\xf0\xe4\x6f\xbb\x97\x42\x1f\x77\xb3\xfc\x69\xd5\x45\x41\xd1\xb7\x2e\x0a\xfe\xce\x0e\x95\xb9\xeb\xef\xef\x50\xfb\x1d\xab\x2f\x12\x00\x7d\x4b\x50\xf5\xf1\x50\x6e\xfb\xbb\x85\xfe\xbb\x34\xfe\xae\x35\xfe\x2e\x8d\xbf\x6b\xc1\x1c\x20\x4e\xfd\x81\x2b\x14\xf9\x44\x3f\xbe\x45\x3f\x3e\x09\x95\xfe\xb1\x35\xfe\x63\x1a\xff\x71\x61\xfc\x24\x6c\xfa\xc7\x5d\xab\x2e\xcd\xc9\xa2\x3f\xff\xb8\x47\x65\xbd\x42\xfb\x01\x95\x9b\xf5\xef\xd0\x45\xb1\xb3\x6b\xd6\xb4\xd3\xa5\xb2\xae\xbb\xfe\x1d\xba\xd4\x77\xac\x0b\x60\x87\x2e\x45\x1d\xeb\x52\xdf\x41\x41\xa3\xdd\x19\xf4\x0b\xed\x8f\xa9\xdc\xe0\xba\x43\x38\xe9\x58\x38\xe9\xd0\x9c\x3a\xc7\x85\xf6\xc7\xd4\xfe\xd8\x6e\x3f\xa2\x32\xb3\x7f\xb7\x49\x79\xb1\xdd\x73\xc7\xbf\xdd\xdb\xa6\x72\x23\xc0\x6e\x93\xa0\xbd\x3d\x30\xf3\xdf\x1e\x50\xbd\x81\xab\x14\xd9\xa1\x7d\xb1\x63\x5d\xe0\x76\x48\x51\xb1\xb3\x63\x29\x5a\x08\xa7\x3b\xbb\xbe\x7b\xa8\xfb\x74\x80\xfb\x6d\x73\xa8\xe3\xfe\xe9\xb4\xfd\xae\x55\xb6\x4f\x65\x07\x85\xf6\x03\x2a\x3f\xb6\x84\x0a\x82\xd9\xe9\x58\x65\x3b\x54\xb6\xe7\xb6\xdf\xa6\xba\xdb\x56\xff\x28\x94\x75\xda\xdb\xdb\x56\xd9\x2e\x95\xed\x16\xda\x93\x50\xb3\xdd\xb7\xea\x0e\xa9\xcc\x12\x6a\xf6\xa8\xff\xbd\x1d\xb7\xfd\xde\x88\xca\x2d\xa1\x06\x2f\xe5\x9d\xb6\xb9\x28\x74\xda\x3d\x9a\x67\xcf\xb9\xd4\x74\xfc\x36\xe2\xca\x37\x22\x41\xc7\x47\x89\x40\xfe\xb4\xca\x0e\xa8\xcc\xc5\x1f\xf1\xaa\x8e\xc5\xab\x3a\xbe\xdf\xa5\x32\x83\x7f\xbf\x83\x63\xf2\x5d\xa1\xb6\x43\xfc\x4b\xfe\xb4\xea\xf6\xa9\xcc\xe0\xc4\xdf\xa5\x7e\x76\xdd\xf9\xfb\xbb\x54\xd7\x28\xb0\x3a\x74\xa9\xe8\x58\xfc\xa3\xe3\xef\x51\xd9\x5e\x61\xfc\x07\x54\x7e\x70\x60\xea\xf6\x91\x56\xfc\xbe\x55\x86\x3c\xa5\x83\x3c\xc5\x6a\x8f\x7c\xa5\xe3\x9b\x0b\x6c\xc7\x47\xa5\x98\xfc\xa9\xcb\x3a\x28\x63\xc8\x9f\x4e\xfb\x4e\xbb\x43\xe5\xdb\x56\xdd\x3d\x2a\xdb\xb7\xca\xfa\x54\xd6\x2f\xb4\x1f\x51\xb9\x59\xff\x0e\x9e\x29\xf2\xa7\x55\xb6\x4b\x65\x2e\xfd\x75\xfc\x1e\x95\xf7\xac\xba\xc7\x58\xd6\x31\x34\xdd\xe9\x6c\x53\x99\x2b\x54\x77\x3a\x04\xb7\xb3\x6b\xd5\xa5\xf1\x77\x06\x56\xd9\x90\xca\x86\x6e\x7b\xbc\x6c\x74\x3a\xdb\x16\xae\xf0\x52\xd1\xe9\x6c\x9b\x3d\xd9\xc1\x73\x46\xfe\x74\xdb\xef\x50\xdd\x1d\xab\xaf\x5d\xc2\xe9\xae\xd9\xbf\x1d\xa2\x89\x02\xff\xed\x74\xba\xd4\x7f\xd7\xea\x9f\x2e\x0a\x1d\x8b\x7e\x3a\x5d\x1a\x7f\xd7\xbd\x94\x74\xf6\xa9\xaf\x7d\x6b\xfd\xf0\x52\xde\xe9\xec\x5b\x30\x0f\x08\x4f\x07\x05\xfc\xe3\xa5\x42\xfe\x34\x75\x7b\x54\xb7\x67\xe1\xb4\x4f\xeb\xdc\x77\xfb\xdf\xc6\x4b\xb1\xfc\xa9\xeb\xee\xd0\x5c\x77\x86\x06\xe6\x0e\x2a\x4a\x3b\xbb\x3b\x2e\xfd\xec\xee\x62\xdd\x5d\x73\x29\xeb\xec\xee\x53\xd9\xbe\xa1\xa9\xdd\x03\xec\x67\xb7\x30\xfe\xdd\x1e\xd5\x35\xf2\x67\x67\x17\xcf\x84\xce\xae\x39\x13\x3a\xbb\x7d\x6a\xdf\x77\xe9\x67\x17\xe5\xc7\xce\x6e\x7f\xcf\xaa\x3b\xa0\x32\xb3\xfe\xbb\x03\xea\x67\xe0\xae\xdf\xee\x80\xda\x1b\x05\x62\x67\x77\x40\x73\x1d\xf4\xad\x32\x5c\xbf\xdd\xe3\x42\xfb\x21\x8d\x6b\x68\x70\xbd\x3b\x1c\x51\x99\x99\x7f\x97\x78\x62\xb7\xed\xc8\xaf\x9d\x2e\xf1\xc5\x6e\xfb\xc0\xaa\x3b\xa4\x32\xab\xbd\x8f\x74\xd6\x2d\xec\xbf\x2e\x9d\x3f\x5d\x7f\x60\xd5\xa5\xf6\xe6\x52\xd8\xe9\xee\xe0\xfc\xbb\x3b\x2e\xff\xe8\xe2\x0d\x48\xfe\x34\x75\x69\xfd\xbb\x5d\xdf\x2a\xdb\xa6\xb2\x42\xff\x78\x43\xeb\x74\xbb\x3d\xab\x2e\x8d\xa9\x7b\x6c\x95\x8d\xa8\xcc\xa5\xbf\xbd\x6d\xe4\x15\x7b\xd6\x5e\xdd\xdb\xc3\x35\xd9\x33\x67\x92\xbc\x8b\x35\xc0\x4b\xd8\xbd\xd4\x8f\x46\x23\x68\x2f\x7f\xea\x0b\x6c\x5b\x55\xb6\x4b\xc1\xd1\x03\x95\x05\x6d\x2c\xc7\x8b\x1a\x1a\x0c\xf4\xc3\x98\xa7\x6b\x96\x09\x9e\x06\x33\x34\x83\x22\xf7\xd5\x7c\x86\xd9\xe6\x63\xe3\x71\xa3\x5f\xfc\xc1\x2f\x2e\x5b\xf0\x40\xd8\x8f\x56\xa5\x28\x46\xe2\x42\xa4\x5f\xd8\x32\xc8\x58\xaf\x02\x88\x6d\x06\xad\x7d\x98\x74\x68\xae\xb3\x74\x29\xdc\x61\xdc\xdc\xfd\x53\x7c\x6a\xd3\x61\xb2\xf2\x99\x48\x57\x61\x66\xa5\xff\x5c\x05\xad\x30\x3b\x85\x56\xb6\x83\x5a\x90\xe9\x10\x15\xbd\xe5\x75\x18\x85\x12\x1f\x8e\x9f\xdf\xd8\xc1\x51\x18\xeb\x2b\x2c\x83\xb7\x56\x95\x52\x72\x1e\xc6\xec\x88\xb5\x1b\x6c\xce\xaf\xd9\x11\x2b\xbe\x89\xa9\xb8\x80\x4d\x74\x06\xc1\x16\x13\x1d\x31\x54\x62\xe9\x4f\xa5\x46\xe7\xed\x8f\xe7\xed\x8f\xec\xf3\x67\xc0\xe2\x8f\xe5\xef\x73\x7e\xfd\xf1\xdc\xff\x58\x15\x4f\x54\xfb\x63\xc8\xf1\xfc\x78\x24\xc7\xa7\x9c\x31\xe6\xe1\x84\x1d\xb1\x97\x3c\x9f\xb5\xa6\x51\x92\xa4\xb5\x9a\x1c\xfc\x13\x39\xf2\x3a\xdb\x62\x1d\xcb\x51\x6a\x53\xbf\xe1\x04\xfa\xd5\xde\x1d\x38\x7b\x09\xf8\x49\x85\xb7\xcb\x86\xd9\x01\x94\xb6\x0d\x05\x50\x27\xa1\x34\x0b\x50\x0a\x81\x08\x4d\x56\x3f\x1d\x7e\xd0\x9d\xbd\x1d\x19\xaf\x7a\x59\x81\xd2\x41\x23\x71\x07\x62\x1f\x72\x4c\x57\x7c\xc3\x9b\xed\x3f\x96\xfc\xab\x34\x27\x60\x80\x6b\x0f\xc8\x22\xfc\xe2\xbb\x74\x89\xfe\x37\x93\xb0\xd6\xa0\xdc\x87\x84\x75\xa3\x0d\x24\x6c\xbe\xff\x63\x49\xd8\xea\xf7\x1b\x48\xb8\x00\xe5\x0f\x27\xe1\x63\x95\x41\xaf\xd2\x84\xab\x82\x48\xbe\x0f\x39\xea\x56\x67\x77\xef\x55\xd3\x9c\x2c\x55\x46\x0b\x65\x72\x93\x28\xdd\x68\x38\xa1\xb0\x49\xe3\x28\x02\x7c\x0b\x0d\x74\x6d\x00\x5a\x8a\x6b\xbd\xa1\xed\x71\x98\xa5\x9b\x9a\x7f\x13\xc6\xb5\xc1\xa0\x32\x1c\x91\xac\xe5\x56\xb6\x51\x4a\x95\xf5\xcf\x5c\xa8\x32\x6e\x36\x9d\x94\x10\xd5\x5f\x32\x51\x34\x68\x2f\xdb\x0f\xb5\x2c\x9e\x70\x04\xc1\x33\x2a\x16\x45\xd9\xef\x3c\x75\x18\xc8\x36\x04\x11\xc7\x5d\x0b\x8e\x98\x53\xf6\xc3\x0f\x0c\xbf\xb5\xaf\x79\xbb\x5e\x05\xca\xb6\xe9\x51\x41\x66\x5f\x2f\xf2\x70\x1e\xfe\x8e\x19\xd7\x7b\xa7\x83\x93\x93\x0d\x03\xfc\x13\xf4\xe2\x80\xf5\x15\x90\x7e\xf1\xf0\x47\xfb\xaa\x8d\x56\x35\x2d\x97\xb6\x49\xe2\x00\xe4\x39\x1d\xb4\x55\x07\x98\xdd\x95\xa7\x69\x78\x25\x28\xc1\xab\x1c\x13\x99\xf3\x72\xcb\x96\x31\xd9\x68\x3c\xd9\x32\xbc\xc3\xa7\x40\x99\x06\x7f\xbe\xdf\x6e\xb3\x1f\x7e\x40\xe6\x83\xf3\xc5\xe2\xdd\xa9\x44\xb4\xfd\x6f\x6b\xcb\xb1\x01\x0c\xe3\x30\x6f\x59\x16\x7f\xc4\xbf\x70\x4d\xe1\xf2\xd4\x39\x50\x8c\x5d\x15\x70\xf6\xf9\x33\xd5\x33\x43\xe8\x88\xfd\xb6\x5e\x44\x59\xc0\x77\x82\xa9\x1e\x13\x42\x7c\x78\x04\x6f\x44\xdb\xd3\xba\x3b\xaa\xad\x2d\x70\xd3\x68\xb5\x5a\xec\xbf\xc3\x12\x64\x1e\xb4\x5d\xc8\x93\x3d\xbe\x8d\x10\xcc\x64\x4e\xd7\x51\x24\x57\x2d\x2b\x35\x9f\x1e\x14\x9a\x4f\xf9\x74\xaa\x9b\xcb\x7e\x07\x8e\x43\xcb\x89\xf2\x55\xab\x00\x25\xfc\x02\x28\xe1\x1f\x68\x50\xef\x45\x0a\xd9\x63\xc0\xd8\xb3\xaa\xf1\x76\xb1\x71\xf7\xa6\x71\x8c\xaa\xa1\x4c\x8b\xb3\x99\x76\xdb\x1a\xca\x68\x19\x45\xc8\x13\x36\xb5\x16\xc5\xd6\xa2\x5b\xaf\x5c\x4e\xf0\x1d\xb7\xab\x76\xa6\xd3\xe9\xa4\xb2\xee\x76\xa9\xee\x36\xd4\x45\xcf\x5d\x0a\x98\x77\xc8\xc4\x3c\xf9\x2d\xb4\x8d\x05\x97\xd9\x12\x3c\x37\x94\xb9\x3b\x8a\xfb\x10\x76\x23\x9c\xb8\x5e\x39\x91\xe4\xbb\x17\x33\x04\x67\xc9\x45\x38\xd9\x6c\x21\x02\x96\xf1\x35\xec\xa7\x99\x14\xc4\xd9\x29\xfa\x07\xc8\x6d\x37\x99\x40\x85\x10\x6c\x6d\x33\x9d\x60\x4c\xcc\x7f\xfa\xb6\xc3\xa0\x78\x08\x18\xd7\x98\x7f\xf5\x43\xe0\xed\x1d\x4e\x00\x87\xc1\xd9\x07\x77\x99\xcf\x6d\xb2\x64\xb4\xd3\x11\xdc\xf9\x8c\xfe\x8a\x25\x31\x61\x4a\xaa\x62\x8c\x66\x79\xaa\x63\xdc\x7e\x2d\x3e\x8b\x81\x50\x56\x41\x2b\xcb\xcb\x92\x8f\x13\x04\x83\x1c\xb7\xd2\x2b\xb2\x3f\xbd\x35\x14\x86\x13\x88\xce\x0a\x05\x05\xa1\x0d\xd4\xdf\x56\x7c\x83\x15\x75\x5f\x44\x6d\x29\xd6\x91\x5c\x4a\xac\xfc\x27\x75\x48\xeb\x75\x69\x92\xfc\x9a\x5e\xb1\x27\x47\x08\x92\x1a\xc9\xbf\x6b\x85\x18\x51\xd3\xa9\x64\x9d\x3f\x31\x9f\x1d\x62\x1c\x02\x5b\xa4\x4d\xaf\x9c\xd5\xfb\x59\x50\xbe\xe6\xe5\x98\x22\x8f\x50\x0a\x41\x22\x51\x44\x76\x32\x9d\x66\x22\x2f\x50\xaf\xb5\x0e\x37\xad\xaa\x1b\x2e\xe5\x42\xe4\x56\x5f\xd3\x34\x99\xb7\x2a\xf7\x1b\x06\xe2\xa7\x80\xcb\xe8\x89\xee\x8e\xa5\x08\xab\x1a\x4c\xb2\xc8\x3f\x21\x52\x37\x91\x8e\x03\xe0\x41\x55\xe8\xe5\xb3\x62\x2d\x43\x5d\x50\x5a\xa0\x2d\x4a\x22\xd0\x30\x7d\x5b\xc9\xe8\xe4\x17\x88\x78\xdc\x60\x22\x9e\xd0\x6f\x2b\xbd\x0d\x81\xf6\x4c\x25\xbc\x02\xae\xb4\x79\xb4\xd5\xbe\x10\x9f\xc5\x7c\x30\x81\x5a\xb0\xdd\x93\x0a\xd2\x2b\x04\x3a\x31\x8d\xeb\x25\x5a\xfc\x11\x41\x2b\x7a\x1c\xa7\x82\x5f\x3a\xb9\x67\x0c\x86\x1f\x1e\xb1\x65\x4c\x76\xff\x4e\x52\x64\x35\x53\x4c\x92\xa3\x11\x60\xe6\xf5\x40\xcb\x18\xba\xaa\x3d\x3d\x79\x68\xd1\xce\x38\x32\x58\xb5\x5a\xdd\x79\xa6\x0a\x7c\xbd\x6e\xf0\xff\xe4\x49\xc5\xa4\xcd\xda\x3d\x70\x07\xa6\x42\x66\xa8\x64\xd4\x79\xda\xd2\xb4\x51\xab\x5a\xde\x7a\x71\x03\x9a\x26\x36\xe2\x4b\x9b\x72\xc3\x86\xc4\x7d\x81\x4e\x36\x13\x77\x4b\xfc\xe3\x37\x61\x75\x2b\x39\xb0\x33\x08\x83\x3a\xa9\x6c\xf1\x55\x9b\xac\x90\xc5\xd2\xde\x67\x22\x9e\x38\x81\xad\x9c\x76\xc5\x9a\xac\x49\x04\x0d\x08\x97\x55\x53\x81\x21\x41\x5a\x7c\x32\xa9\x79\x14\x98\x24\x98\xf1\xf8\x42\x44\xc9\xc5\x16\xb9\x82\x79\x0d\xe6\xe5\xe2\x3a\xdf\x5a\x44\x3c\x8c\xbd\xc6\x03\xcf\x6f\xf9\x5d\x8f\x3d\x79\xe0\x79\x0f\xea\x94\x99\xf3\x16\x50\x13\x9e\x8b\x32\x9c\x4e\xdb\xdf\x6b\xb6\xf7\x9b\x0e\xb4\x62\xbc\x94\x99\x3c\x63\xb7\x7e\xcb\xb6\xe0\x97\xff\xed\xd1\x99\x01\x57\xf9\x44\x2c\x00\x49\xad\xd3\x3c\x49\xf9\x85\x80\xa4\xf7\xb4\x03\xfe\x43\x36\x94\xfd\x5f\x85\x62\xc5\x8e\x45\x10\xf1\x94\xdc\xe6\x10\x03\x8f\x21\x6d\x01\xca\xa2\x18\x3a\x7f\x2e\xd8\x98\x67\x61\xc0\xb2\x19\x4f\xc5\x84\x2d\x21\xdb\x4d\xa8\x72\x00\xf0\x1c\xbd\x84\x92\x84\x65\x73\x70\xf3\x4f\xd8\x04\x31\xc1\x26\x02\xb3\x12\x4e\x60\xbc\x94\xcb\x56\xf2\x6b\xe8\x4b\x3b\xc2\x18\xcf\x3e\xc8\xc2\x01\xde\xd7\xf1\x24\x59\xb1\x59\x82\x2e\xd5\x38\xb4\x42\xf8\x12\x79\x58\xf1\x8c\x2d\xe4\x56\x4a\xa6\x54\x47\x5e\xe8\x6a\xf5\x16\xb3\x12\x15\xc9\xda\xf1\x15\x8f\xc2\x09\x5b\xc6\x79\x08\x4e\xc3\x10\xf3\x80\x47\xe1\xef\x3a\x82\x0a\x66\xa6\xc5\x11\x22\x28\x1c\xc3\x99\x1c\x91\x4e\xf7\xa8\xa2\xdd\xf3\x14\xee\xab\x56\xac\x76\xf2\x6c\x37\xa9\x2f\x28\x62\x01\x84\xd0\x53\x21\xad\x7f\x4f\x92\xb9\xed\x1b\x45\x33\xfa\xef\x64\x09\xeb\xad\x22\x63\x43\x86\x8c\x7c\xa6\xd3\xab\xb3\x28\x09\xe4\x60\x85\xce\x84\x6e\x8f\x53\x02\xa5\x01\x99\xac\x9a\xde\x5f\x5e\xbf\x7e\x29\x4f\x0e\xbf\xdd\xfe\x77\x2b\x6a\x4e\x3f\x0d\xc5\x94\xa1\xb5\xda\x5a\x8f\x5f\xbb\xe5\xe3\x70\xe5\x3e\x92\xc3\x0c\x92\x05\x85\xaf\x00\x09\x34\x0a\x17\xe3\x84\xa7\x7a\xd8\xfd\x35\x9b\x88\x29\x5f\x46\x90\xd8\x87\x3c\xe8\x95\x24\xdf\x7f\xd1\x1b\x3c\x67\xa7\x83\x93\xd3\xd3\xd7\x6f\x4f\x2d\xff\x5c\x70\xce\x5d\xe3\x8c\xc9\x7b\xf9\x1e\x93\xb6\x09\x00\x1c\x81\x8b\x43\x9f\x09\xe6\x21\x7a\x9b\x7a\xc0\xcd\x38\xc9\xc3\x40\x78\x56\x54\x07\x20\x02\x67\x21\x14\x3a\x65\xdd\xe9\x5a\xb2\x00\x0b\x9b\xbf\x2c\x3b\x7b\xed\x8e\xc4\xa3\xa6\x56\x89\xa3\x6c\x26\x07\x1a\xc6\x8c\x4b\x92\xbf\xcc\x93\x05\x83\xe6\x14\x8d\x45\xfb\x3f\x2b\x6a\x00\xdf\x64\x11\x45\x2d\xc6\x7e\x59\x76\x3a\x5d\x0c\xa6\xa8\x71\x36\x3c\xf9\xf9\xd9\xd9\x33\xf6\xea\xf5\xd9\xb0\xc1\xfe\xbd\x96\x87\x79\x24\xea\x85\xc4\x97\x12\x57\x3a\x80\x88\xa6\x32\xa8\x6a\xcf\x82\x86\xf3\xca\x1a\xcd\x99\xac\x43\x93\xe9\x76\x7b\xa6\x03\xfc\xdb\x22\x92\x17\x64\xd8\x08\xe1\x1d\x69\xaf\x82\xfb\x2e\x24\x34\xd7\x77\xb9\x1e\x16\xce\x78\x1a\x8b\x4c\xfb\xa4\x53\x22\x67\x95\x32\x7b\x0d\x6e\x7b\x18\xce\x85\xb2\x7b\xa6\xcb\x38\xd6\x87\x11\x0e\x57\x02\x3a\x16\x0b\xb0\x60\xf4\xb0\xe8\x34\x48\x93\x28\x7a\x93\xa4\x98\x3e\x2f\x93\x0c\x5e\x7f\x11\x22\x56\xa5\x0f\x58\xe9\x1f\xd5\x3b\x23\xec\x14\xdb\xbf\x3f\xbb\xbd\xed\xfb\xb3\xd6\x80\xc7\xb1\x98\x60\xcd\x8f\x2e\x9b\x42\x94\x48\x26\xa2\x4f\xce\x06\x4b\xc5\x45\x98\x41\x3a\x5c\x24\x64\x3c\xb8\xb0\xec\x04\xd9\x52\x81\x80\x29\x7f\xc9\x64\x09\xa7\xb0\xac\x1f\x3a\xf5\x94\x04\xa0\xfa\xf8\xc2\x92\x58\x42\x42\x27\x68\xf5\xd2\x63\xda\xb1\x15\x78\xad\x2e\x21\xda\x43\x18\x5f\x25\x97\x02\x76\x85\x7a\x32\x2c\x70\x3d\xd8\xe1\x26\xd9\xe7\xd6\x83\xd2\x88\x11\x19\x5e\xc3\xca\x26\x01\x03\x40\xb1\x40\x8f\x20\x89\x3f\x00\xaf\xac\x21\xcb\x54\x32\x6a\x05\x1b\xc5\x3f\x5a\x92\xcd\xa3\xb8\x67\x25\xe8\x44\xd0\x0d\xd6\x36\x92\x9d\xd5\xc3\x19\x1f\xd7\x72\x3e\x76\x92\xa5\xf1\x31\x4a\xb0\x00\x33\x90\xa7\xb3\xb0\x62\x1b\xc2\xdf\xd4\x3d\x64\xde\x91\x0d\xe8\xef\x93\x49\x03\x58\x7a\x43\x8f\xbd\x3a\x29\x98\x4a\x77\x90\x5e\x84\xf1\x84\xd7\x0f\xf5\xd2\x41\x68\x27\xb6\x02\x61\x8c\x2d\x17\xe8\x5f\xcf\xae\x7c\xc6\x17\x0b\x2f\x83\x80\x31\x17\x29\x1c\xdc\x0b\xe4\x5c\x0a\xdc\x4b\xbe\x1e\x0b\xe6\x20\xc5\x8b\x93\x58\x78\x14\xf2\x63\x4c\x09\x63\xad\xf8\x2e\x90\x62\x57\x87\x2b\x50\xb0\x2a\xb0\xeb\xc5\x10\x7f\x42\xc7\x90\xdd\x88\xdc\x42\x4a\xb3\x87\x8a\x67\x00\x33\x27\xa9\xc1\xc6\xb4\x83\x62\x08\x07\x89\xc8\xcd\xb0\x6a\xb9\xa4\x95\xad\xe3\xc0\xac\x45\x15\x7c\xca\x10\x6e\xc9\x29\x2d\x10\xb0\x44\xad\x0a\x54\xe5\xea\xdc\x11\xec\x0b\x79\x90\xd4\x8a\x13\xa7\x64\x08\xd4\x59\xce\xc7\x99\x4a\x58\x11\x27\x92\xd3\x2d\x28\x8a\x5c\x18\x33\x0a\xee\x06\x69\xb8\x33\x8a\xb6\x20\x72\x11\xe4\xf8\xb6\x8a\xc0\xd6\xc9\xd2\x83\xa0\x15\x76\x6d\xe4\xef\x51\x98\x4b\xd6\xcb\x57\x10\x44\x48\xbd\xa6\x87\xd9\x1b\xaa\xd9\x5b\x2c\x8c\x23\xed\xcd\x18\x4f\xa5\x08\x53\x55\x22\x09\xfc\x25\x8f\xc3\xa9\xc8\x72\x5b\x95\x32\xa7\x32\x76\x74\x43\x03\x85\x9c\xe2\x90\x54\xe3\x96\x9c\xca\x0f\x3f\x38\x7f\xb7\x0c\x8d\x3b\xf7\x56\x07\x86\x15\xdb\xf4\x8d\x8d\x44\x10\x19\x21\xba\x8d\x75\x80\x87\x46\x50\x92\xcb\xd1\x2a\x33\x08\xdc\xaa\x98\xba\x17\xb7\xef\xdf\x24\x2b\x39\x64\xde\x22\x59\x2c\x17\xde\x97\xba\x66\x1f\x36\xa5\xdc\x84\x50\xd9\x93\x93\xc5\x50\x12\xc5\x85\xc8\x07\x94\xac\x03\xf3\x4a\xc9\x12\x94\x6f\x24\xd3\x81\xb3\x2d\xcc\xd8\x23\xca\xe8\x11\xad\xd5\x99\xf6\x08\x13\xc2\x41\x60\x17\x05\x30\x4f\x16\xf3\x44\x1e\xa8\x29\x9b\x26\x01\x66\x50\xe3\xe3\x96\xcb\xa6\x60\xc2\xa6\xdb\x1a\x30\xbc\x6a\xaa\xbf\x23\x46\x88\x17\x18\x94\x28\xda\xff\x52\x2f\x25\x12\x9b\x88\x20\x9c\xf3\x88\xfd\x4d\xa9\xed\x66\x02\xae\x3f\x5f\x88\xaf\xe1\x15\x79\x92\xcc\x31\x6a\xa2\x75\x70\xcb\x21\x47\xa1\x88\xf3\xd3\xf0\x77\xc7\xea\x64\x92\xcc\x9d\xcb\xe3\x24\x81\xca\x10\xa4\x3d\x8c\x2f\xb0\xd1\x5b\x11\x00\xed\x95\x53\x9b\xa9\x11\x59\x01\x93\xee\x32\x8a\x92\x4e\xf2\x1e\xc3\x68\x91\xf6\x63\xf3\x60\x08\x2b\x77\x1e\xcd\x33\xac\xff\x95\xc3\xc1\xde\xdc\x44\xc1\xc9\x62\x5d\x48\x25\x13\x09\x9d\x72\x14\xb4\x6e\xeb\x2c\x17\xf3\xb2\xac\xae\x44\x89\x67\x67\x2f\x5f\x1c\x27\x01\x24\x7f\xa2\x58\xd8\xf4\x97\x49\xc5\xe3\x00\x0d\x92\xc5\xda\x9e\x9c\xfc\xfb\x54\x55\x38\x4b\x06\xaa\x23\x77\x96\x08\xb2\x98\xe0\x4c\x95\xb7\xc4\xb5\x08\x06\xc9\x7c\xce\xe3\x49\xcd\x93\x10\x3d\x37\xd7\xd9\x34\x4c\xc5\x34\xb9\x1e\xaa\x04\x4f\x16\x1b\x39\xb9\x88\x31\x9f\x7a\x98\xb5\xd8\x68\x54\x95\xb5\x8e\xac\x4a\xe4\xf9\xcc\xf1\x4b\x9a\x26\x29\x05\x11\xd3\x2f\x29\xb8\x37\xe5\x74\xf5\xf3\xc9\x6f\x98\xe9\xde\x58\x28\xb4\x8a\x6f\xe6\x6f\x78\x96\x8b\x4a\x44\x63\x80\x0c\xc8\x52\x83\x91\x22\x10\x9f\xb0\xe3\xd5\x22\xbc\x4a\x72\x71\xc8\x4e\x62\xd4\x24\x88\xad\x11\x4e\x53\x72\xc4\x2d\x71\x9d\x8b\x18\x42\xfc\x88\xf8\x2a\x4c\x93\x18\xd2\x73\x41\xb6\x77\x2f\x8a\x30\xc6\x37\xc5\x8b\x7a\xa4\x3b\x7d\x2b\xf8\xe4\x11\x5b\xe8\xf0\x40\x2d\x26\xa1\x63\x72\x54\x17\x0c\xe6\xc8\x03\x72\xe4\xd1\x8a\xaf\xe1\xf2\x0e\xa9\xc2\x28\x50\x9c\xe2\xbc\x53\x48\xcc\x0e\x3c\x6d\x1c\x25\xc1\x65\xc6\x78\x10\x48\xf1\x5e\x52\x7d\x26\x82\x65\x1a\xe6\x6b\x96\x0a\x9e\x59\xd1\xd4\xee\x40\x5d\x79\xc2\x16\x80\x3c\x89\xa7\xd6\xed\x26\x41\x58\x39\x5b\x06\x81\x10\x13\xf7\x86\x06\x9f\x46\x69\x32\xbf\x17\xf1\xe9\x1d\x57\x45\x83\x00\xf2\x2b\x89\x50\x52\xe1\x4e\x1b\xa4\x82\x24\x9a\x88\x94\x04\xb9\x30\x0e\x92\x34\x15\x90\x55\x9a\xf2\x97\xb9\x34\x6a\xd1\x60\x81\x54\x21\x1e\x9b\xe0\x13\x79\x07\xc3\x61\x83\x3a\x51\x51\x64\xd9\x86\xc8\xa1\xd1\x41\x2a\x30\xd8\x9c\x94\x83\xec\xeb\x68\x71\xb5\x5e\x43\x46\xda\x2f\x0c\xfe\xcc\xd8\x7b\x9e\x86\xc9\x32\xc3\x3f\x05\x3c\x3c\xaa\xfb\x6b\x11\x4a\x49\x15\x8a\x20\x5a\x70\xa1\x44\x45\x0e\xfc\x56\x23\xd9\x2c\x53\xec\x09\x4f\x61\x2f\xc3\xef\xf5\x9b\x60\x8d\x93\xc9\x1a\x73\xb0\xd2\x35\x1c\x0a\x6a\x73\x1e\xa2\x82\xa2\x5e\xbe\xb4\xdb\x64\x80\x50\xcc\x0b\xc1\x44\x4c\xd9\x11\xab\x49\xc6\xd9\x90\x88\x8b\xa4\xf8\x52\x67\x47\x3f\x02\x2f\x85\x0c\xb4\x5a\xc9\xce\x7e\xc2\xc2\x43\x5d\x51\x89\x65\x84\xaa\x23\xa7\xf6\xe7\xcf\xcc\x2a\x97\xa7\x30\x2a\xb7\x55\x21\x6a\xb9\x50\xfa\x17\xe9\x05\xf2\x8f\x65\x26\x52\x2f\xa3\x80\x83\x56\x1e\x34\xa5\x51\xc9\x30\xb4\x9a\xa4\xaf\x0f\x82\xd2\x48\xe4\xfc\x52\xb0\x30\x47\x50\x93\x90\x88\x2b\x8c\xe1\x61\x17\x14\x28\x3c\x63\x59\xbe\x9c\x4e\xd5\x1d\x54\xd2\x5b\x26\x19\x5b\x7c\xa9\xc4\x4e\x4c\xe8\x0a\xc3\x22\x81\xc2\x93\x98\xf5\x0e\x6d\xc4\xab\x9b\xb1\x17\x06\x49\xec\x1d\xca\x51\xd1\xdc\x5b\xb2\xa4\xc1\x1c\xad\xec\x85\xc8\x8f\x79\xce\xdf\xa5\x11\xdd\x18\xb7\xc2\x39\xbf\x10\xd9\x96\xac\xdb\x3c\xe8\x7a\x75\xc8\xdd\xf1\x45\x65\x57\xcd\x49\x13\x61\x41\x85\xa2\x86\xba\xcb\xe9\x4d\x8a\x64\xa2\xb0\xff\x10\xff\x84\xb1\x29\x18\x74\x45\x95\x55\x54\x91\x1c\xdb\xb4\x45\xba\x92\xf7\x3c\xcd\x6a\x37\xeb\x44\x1a\xec\x6f\x1e\xb4\xf5\x0e\x11\xc6\x97\xba\x49\x04\x4b\xf7\x09\xbb\x51\x8d\x06\x4b\x98\x84\xe1\xc5\xad\x24\x0e\xa2\x30\xb8\x2c\x67\x86\x63\x6a\x56\x70\x16\x28\x51\x1b\x33\xdc\x44\x49\x26\x28\xcf\xe7\x53\x23\x15\xc4\x85\x43\x3f\xce\xf2\x74\x19\xe4\x20\x40\x4a\xd1\x83\xd4\x20\x52\xe2\x4a\x45\x90\x98\x53\xfe\x84\xe2\x38\x66\x5a\xf5\x0c\xc1\x29\x31\xc6\xd1\x62\x39\x8e\xc2\x40\xb2\xee\xc9\xd6\x0a\xd2\x75\xce\xc5\x7c\xac\xb6\xb9\x89\xc2\x89\x72\xc7\xc6\x07\x7b\xf3\xea\x67\x3d\xf7\x85\x99\x35\x92\x72\x1b\x12\x9c\x40\x75\x82\xbf\x96\x5b\xa9\xad\x5c\x14\x24\x1d\x89\xd4\x4a\xc8\xa8\x5e\xb9\xf4\x9b\x15\x94\xce\x94\xc8\x55\x21\x3d\xf5\x26\x70\xc0\x9b\xf8\xaf\x66\xb6\x15\xe3\xb9\x65\xf2\x92\x28\xbe\x0a\x01\xb2\xe1\x9d\x90\x60\xa5\x7c\x4b\x45\xf6\x87\x61\x85\x64\x5c\x0e\x92\xde\x26\x3c\xa8\xa3\xda\x8c\xee\x0b\xeb\xe1\x54\xcc\xa2\xe9\x28\xa2\x46\x92\xe4\x73\x0b\xd7\x10\x2b\x51\x13\xd7\x86\xa9\x06\x51\x12\x8b\xf2\x26\x52\x3b\xc3\xe9\xb1\x66\xa6\xdc\xb0\x27\xea\xde\x28\x4e\xe9\x25\x9e\x90\x80\x91\x0f\xed\x85\xd3\xe3\xd6\x81\x9c\x55\x82\x79\x6b\x84\x05\x8a\xb0\x11\x01\xd7\x41\x08\x21\x4f\x29\xde\x51\x6a\xd6\xef\x7f\x1b\x66\x2a\xef\x71\x89\x3d\x53\x09\xa7\x62\x29\x65\x71\x6b\xc3\x7a\xc2\xb7\x8a\x45\x05\xeb\xc5\x70\x5a\x31\x11\x33\xdb\x30\xa3\x68\xe5\x70\x36\x83\x3e\xfd\x8e\xd3\xdc\x04\xf2\x16\xb1\x6e\x9c\xe4\x33\x5d\x97\x98\x92\x4b\x25\x5b\x38\x95\xc6\x8d\x9e\x0e\x95\xc8\x84\x99\x64\xd5\xd8\x54\xd6\xc8\x16\x52\x6d\xac\xb2\x1f\x7e\x70\xb1\xba\x19\xad\x7a\xaf\xd0\xc3\xa9\x8e\xbc\xca\x73\x3b\xe1\x8e\x8d\x8f\xca\x47\x59\x9d\x74\x1a\x35\x09\x98\x4c\x3d\xa4\x77\xb8\x4d\xbc\xc9\x68\x71\x0d\xf4\x0d\xd8\xc8\x93\xd3\xd2\xcb\xae\x83\x0b\xef\xdc\xb4\xb3\xd2\x93\xd3\x7b\x3f\xf3\x1a\xa6\x8c\x06\x01\x09\xcf\xef\x74\x2e\xbd\x4d\x56\x83\x24\xfa\x7e\x27\x13\x8a\xce\xea\x4d\xde\xd1\xa1\x23\x0c\x8c\x10\x28\x40\x7e\xf6\x92\x2b\x91\x4e\xa3\x64\xe5\xb1\x71\xa8\x22\x89\x63\xce\x73\x54\x8a\xe3\x83\x24\xbd\x5b\x82\x66\x5c\x05\x78\x9f\xf1\x8c\x8d\x85\x88\xd9\x9c\x4f\xa0\xf2\x3c\x21\x02\xa5\x90\xf6\xf4\xe0\xae\xd2\x19\xe3\x4b\x3c\x99\xbb\x48\x40\x19\xbe\x4b\x30\x95\x11\x37\xcc\x74\xf6\xa4\x95\x60\x91\xe0\x95\xe0\xc8\xe6\x06\x92\x3c\xf3\x2c\xa7\xe2\x07\x3a\x36\x34\x81\x85\x67\xb3\x8c\x58\x99\x9a\xa4\x9c\x23\xde\xf9\xf0\x9d\x19\xa2\x4c\x13\x78\x39\x7a\x29\x43\x01\xd7\xa5\x61\xa0\x4e\x28\x5a\xe3\x23\x1c\x8f\xd7\x7a\xf2\xf2\x7a\x96\x86\x71\x0e\x1c\xd6\x32\x3d\x0c\x38\x65\x8b\x0f\xd2\xad\x08\xa2\x3e\x42\x54\xfc\x8d\x07\xa4\x5c\x2c\xc9\x23\xe4\xcf\xbb\x1c\x8c\x84\x04\xcb\x88\xe8\x86\x56\x9a\xa3\x24\x8b\xfc\x93\xc6\x81\xce\x9c\x4d\x9f\xd5\x22\xeb\xfd\x25\x31\x86\x44\xa9\xb6\x90\x5c\x6a\xd5\xde\xbd\x5b\x12\xf1\x5a\xfb\x26\x4d\x56\x0d\x1a\x5b\xc3\xe9\xd8\x62\xd5\x72\xb6\x47\x72\xce\x4f\x4d\xee\x5d\x98\xcc\x11\xb5\xd4\xe5\x7a\xd4\x47\xec\xe1\x43\x1b\xda\x26\x49\xc5\xa5\xfe\xbb\xca\x29\x6a\x19\xe4\x6a\x7e\xc5\x52\x00\x11\xfc\xeb\x2c\x87\xc5\xd9\x60\x4f\xfe\x93\x57\xe7\x2b\x24\x26\x9c\x87\x2b\x33\x11\xa9\x6d\x90\x9a\x68\xdd\xc1\xe1\x49\x33\xbe\x8d\x68\xb9\xab\xd4\x84\x0d\x6b\x0a\x2d\x0d\x1b\x1d\x0d\x17\x07\xd5\x42\xd4\x06\x72\xbc\x4d\x84\xa2\x01\x57\x4a\x17\x0a\x37\x77\x15\xa3\x4a\x93\xbf\x4d\x90\xc2\xf5\x87\x33\xbd\x92\x08\xe0\xcb\x66\x4a\x80\xcf\x95\x84\x50\x2d\x65\x15\xd7\xf5\xee\x72\x56\x19\x13\x9b\xc1\x7e\x8b\xac\x95\x26\xab\x2d\xb5\xe6\xb7\x4b\x5a\x25\x7c\xdf\x41\xd6\xaa\x19\xc4\x1b\xcc\x6b\x41\x4b\x61\xde\x41\xbd\xe5\x2c\xc1\x4a\x8b\x50\x58\x85\xca\x27\x83\x3f\x56\x2a\xab\x26\xfc\x9b\x64\xb2\x12\xde\x6e\x95\xca\x6a\x4a\x2c\xc3\xa6\x96\x60\x26\x7b\x77\xc5\x32\x1a\x87\x2a\xdc\x88\x3a\x90\xdb\xea\x95\xb9\xc2\x5c\xdb\xb7\x4f\xd3\x94\xcf\xc5\xff\x31\x0b\xb8\xa9\x6d\xfb\x36\x82\x7c\x3e\x93\x94\x4f\xb5\xc5\x35\xf8\x39\x4f\x79\x60\xf2\x88\x3a\x66\x35\x72\xc1\x39\x83\x64\x6a\x60\x67\xb6\x66\x93\x90\x47\xc9\x45\xd1\x90\x03\x52\xd4\x4b\x41\x2c\xf7\xe8\x15\xc1\x06\xd3\xfc\x11\x5b\xb1\x88\xaf\x45\xda\x62\xec\x2c\xd1\x86\x17\x0c\xde\xf4\x31\xf7\x81\xf0\xa2\x08\xd3\x16\x50\x46\xcf\x00\xd5\xd3\xcd\x1f\xf5\x80\x34\x04\x89\x20\x08\x23\x8f\x3b\x3b\x61\x53\x1e\x84\x51\x28\x05\x40\x3c\x32\x0a\x2d\xf5\x18\x92\x94\x34\x87\xa6\x0e\x7d\x91\x7f\x2f\xe3\x82\xae\xf8\x84\x85\x73\x7e\x81\x4e\x08\x5a\xe0\x86\x8e\xd1\xfc\x92\x65\xe1\x45\x0c\x9a\x31\x78\x32\x20\x1b\x2c\x93\x37\xb4\xe5\x04\xef\xd7\x57\x06\xd2\x4e\x03\xc9\x69\x2d\x33\xbe\xa8\xa9\x11\x17\x58\xa4\x46\xc1\xdf\x5c\xe3\x1e\x7c\x66\x58\x70\x78\x0e\xd3\x95\xf0\x08\xb1\xa5\x95\x65\x1a\xb9\xf9\x43\x65\x41\x9e\xb0\x28\xe1\x9a\xb4\x70\x07\x58\x8d\x40\x04\x20\x7d\xa9\x56\x97\x6b\x01\x47\x7d\x51\xe3\xc7\xe6\x0c\x12\x78\xe8\x80\xe1\xae\x3c\x33\x82\x09\xdb\x9c\x93\x46\xdc\x90\xe3\x69\xd8\x1d\x5a\x07\x98\xaa\xf4\x49\x9e\x46\xf4\xbb\x3e\xa9\x26\xe1\x95\x5d\x0e\x7f\xeb\x8f\x72\x92\x47\x12\xb4\x39\xd8\xb4\xfa\xd7\x9e\xdc\xe7\xcf\xa0\xa4\xa6\x3a\x21\xcc\xe4\x93\x36\x7b\xd4\x07\x26\x26\x78\x4d\x4b\x5f\x48\x45\x3f\x98\xf1\x38\x16\x91\xf9\x6c\x31\xe9\x67\x98\x78\x96\x6a\x5a\xe9\xea\x42\x8d\x75\x07\x49\x16\xdf\x4c\x62\xb2\xc4\xfb\x64\x63\x8e\x0c\x54\xb2\x55\x08\xaf\x35\xa2\x05\x59\x8d\x63\x6e\x6c\x80\x40\x2b\xee\x85\x8b\xa0\x19\xc6\x61\xde\x4c\x2e\xbd\x43\xf3\x2a\xff\x01\x5e\xf9\x95\xe8\x96\x2d\x12\xc9\x77\xf8\x14\xdc\x5c\x21\xcd\x0e\xdc\xf0\xe6\x4c\x35\x07\x5e\x00\xf6\x6c\xd3\x30\x0e\xb3\x99\x7a\xbf\x87\xf9\xcb\xea\x8a\x20\x4f\xe2\x69\xf2\xa9\x56\x7f\xea\x38\x9a\x3c\xb5\x06\xa4\xb7\x64\x18\x4f\x93\xaf\x1c\x95\x03\x63\xd3\xd0\x24\xbf\x9f\x25\x2b\xa4\x4d\xf8\x02\x49\x11\xf9\x5c\x34\x54\x93\x98\xa5\x62\x1c\xca\x5b\xec\x32\xd5\x0f\x2d\x98\x23\x38\xa5\x5b\xa9\x01\x16\xd0\x63\x08\x1b\x8b\x28\x59\x39\x08\x30\xa4\xd1\x02\x4e\xde\x52\xe6\xb0\x47\xcc\x9b\x46\xe2\x5a\x9b\x24\x55\x91\x4b\x6b\x91\xa4\xb9\xdf\x4a\xe2\xb9\x36\xb8\x44\x52\x55\xeb\x8e\xe6\x0d\xb2\xac\xee\xc0\x49\xe2\x17\x09\x9f\x54\xe3\x9a\xde\x51\x14\x6e\xc1\xc5\x33\x12\xad\x28\xb9\xa8\x79\xef\x62\xb4\x6c\x54\xfd\x01\x2d\x02\x62\x0e\xbd\x06\x43\x4a\xaa\x00\xea\xbe\xb2\xc1\x53\x7d\xc6\x02\x78\xec\x93\xe7\x59\x8a\x69\x8e\xc3\xac\xc1\x4e\xd8\xc5\x52\x64\xfa\x79\xf4\x24\x87\x5c\x50\xb1\xa7\xed\x8a\x30\x97\xf8\x02\x8e\xbc\x2c\x17\x31\xe4\x23\x90\x77\xf2\x13\x6f\x4e\xf6\x47\xca\x86\x12\x5f\x13\xdd\xe4\x4f\x33\x91\x0a\x75\xdc\x2c\xd2\x64\xcc\xc7\x11\xe4\x07\xcc\x71\xd5\xb2\x85\xe0\x97\xe6\x81\x28\x4f\x60\x79\x91\x47\x66\x77\xda\x69\x05\x11\xa5\xbc\x8f\x71\xd7\x32\x5c\x01\xcc\x05\x7d\x33\x60\x59\xef\x53\x59\xf2\xd9\xc4\x3e\xc4\x8a\xbd\x74\x4a\x71\x95\xbf\x8a\x7c\x3e\x15\xe8\xe7\x06\x20\xe0\xc2\x60\x75\x45\x9c\xb0\x45\x19\x8f\xc8\xda\x66\x91\x64\x39\xc1\x56\xa9\xec\xff\x26\x19\xcf\xa1\xe1\x36\x5e\x83\xf1\xf4\xe2\xea\x90\x9d\xff\x8d\x7a\x7a\x93\xa4\xf9\xe1\xe6\xbe\x3b\x5f\x3e\x7e\x69\xd8\xc4\x0d\xe7\xc1\xf9\xe6\xfa\x1f\x5d\x21\x58\xd1\xe3\x9c\xaf\x5d\x6a\xbc\x7d\x59\x36\x2f\xf6\x29\xe4\xc5\x73\x64\x19\x60\x38\x96\xdd\xfb\xdd\x58\x78\x89\x41\x96\x29\x01\x5f\xed\x2e\x44\xde\x0b\x02\xb1\xc8\x5f\xf0\xf8\x62\x29\x4f\x8a\x9a\xae\x17\xa9\x22\x63\xaf\x05\x13\xb4\x97\xc3\xe5\xae\x5e\x83\x9d\x5b\xd9\x9b\xb9\x0b\xf9\x90\x69\x88\x96\x25\xf0\x34\x49\x05\x9a\xb5\x0d\x92\x28\x49\x0f\x0b\x47\xb0\x1c\xe1\xc8\xad\x52\xab\x5b\xcd\x8d\x55\xdc\xc6\xe6\x7d\xb7\x8a\xd3\x1c\x95\x77\x1b\x9b\x0e\xcc\x67\xa7\xd9\x34\x41\x0b\xac\xea\xd1\xe2\xb7\x52\x83\x11\x9f\x87\xd1\x7a\x53\x13\xfc\x5a\x98\x5b\x26\xde\xbd\x7d\x71\x68\xd6\xea\xdd\xdb\x17\x35\x6f\xcb\xab\x5b\xd7\x8f\x2f\x1f\xf5\x1f\xca\xec\xcc\xda\x7f\x2e\xd1\xbe\xcb\x44\xca\xe0\xd9\x94\x14\xaa\xf0\x20\x2a\x19\x61\x0e\x46\xbf\x46\xac\x82\x6c\xfd\xa9\x16\x4d\x37\x13\xf4\x40\x42\x18\x20\xc8\x4d\xfc\x46\x3f\xbb\x3a\xfb\x27\xc9\x48\xc8\xbd\x95\x9a\x71\x94\x25\xd8\xf8\x44\x5d\x90\x94\x3e\x7f\x66\xc5\xb2\x16\x72\xe2\x57\xc9\x44\xd4\x0b\x87\x4c\x59\xd4\xb2\x2a\xb7\x52\x31\x4f\xae\xc4\x60\x16\x46\x88\x4d\xab\x9a\x61\x59\x84\x02\x35\xbd\x6f\xe4\x0f\x83\x8a\xa9\x16\x18\x04\xe3\xf7\xe7\x07\xd6\x96\xb5\x81\xc7\x28\x9b\xa4\x17\x57\x45\x8c\x16\x58\x20\xd9\x00\x80\x59\x8d\x3c\x2b\x86\x69\x9a\xa4\x35\x4f\x81\x0c\xb0\x9a\x36\xe6\x15\x39\x5b\x2e\x5a\x5e\xdd\x20\xb8\x9a\xfd\xdb\x9c\x84\x38\xba\x19\xd2\x21\xfc\xff\xa5\xa0\x17\x53\x02\xd6\xbb\x13\xba\x07\xd8\x04\xa4\xfc\x05\xe8\xb4\xcc\xd2\x40\x0d\x49\x5e\x3b\x04\x39\x24\x91\x71\x16\x1a\x9a\x6a\xb7\x80\x1b\xd9\xe9\x0c\x34\x53\x05\xfa\x03\x47\x58\x11\x4d\xe9\x00\x7c\xea\x5a\xd0\x2f\x72\x42\x2f\x49\x46\xef\x79\xb4\x74\x8c\xbc\xe5\x57\x79\x13\x92\x20\xd4\x35\xa1\xe0\x2e\x6d\x7f\x3a\x97\xf5\x3f\x3e\x7d\xe0\x18\x57\x59\xa0\x9f\xda\x16\x1f\xc5\x61\x81\xf9\x7e\x61\xa7\x18\xed\x50\xd5\x46\x51\x32\x3d\xc9\x71\x02\x17\x1c\xef\x53\x3c\x4a\x05\x9f\xac\xd9\x55\x98\x85\xe3\x88\xec\xb8\x5c\xc9\x8d\xc6\x31\x13\x7c\x22\x52\x6d\x97\xe9\xf9\xdd\x85\x94\x4d\x95\x8d\x50\x78\x45\xd6\x07\x15\xc6\xad\x35\x7d\xdb\x32\xd6\x21\xea\x89\x56\x22\xd7\x83\x3f\xbc\x06\xeb\xee\xa0\xbd\x2d\xf6\x47\x3d\x41\x0d\xfc\xcb\x6b\xb0\x9d\x7d\x53\x25\xc2\x3c\xf3\x35\xea\x9c\xde\xe0\x9a\x8c\x3c\x9c\xb7\xd0\xd3\x1c\xcc\x66\x92\x85\x5d\x91\x60\x37\xb5\x11\x00\x54\x55\x53\x51\x76\x77\x47\x45\xf6\xae\xbe\x7c\xd2\x75\x35\xc2\x55\x65\xe7\xa2\xa7\x6d\x71\x02\xb0\x2b\x1b\xe2\xb5\xb6\xe6\x4d\xc2\x2b\x44\xb4\xae\x4d\xa2\x7f\x90\x65\xe0\x1c\x75\xc4\x94\x70\xe4\xa9\x1c\xcc\x87\x8c\x8f\x21\x45\xad\x78\x6a\x74\x56\x1e\xdd\x15\x0e\x59\x9c\xc4\xce\x07\x79\x73\x68\xa2\x18\x0b\x8d\x49\x47\x6b\xd5\xc8\x93\xc5\x21\xf3\xdb\xff\x6e\x97\x49\x84\x1e\xb2\x1d\xa7\x0c\x90\x79\xc8\x0e\xdc\x9a\x88\xb8\x43\xb6\xef\x16\xcf\xc3\xb8\xa9\x3e\x75\x0a\x9f\xf8\x75\x73\x43\xab\x71\x72\xdd\xcc\x66\x7c\x92\xac\x0e\x59\x9b\xb5\x59\x67\x71\x6d\xb4\x75\x37\x8b\x0f\xec\x09\xf3\x5c\x50\xe9\x44\xa4\x87\xf7\x05\xc1\xb2\x24\x0a\x27\x4f\x89\xcd\xc9\x2d\x06\xca\x5d\xcb\x6e\xf1\x15\x64\x8f\xd4\x0a\x0b\xfb\xb4\x6d\xb0\x2c\x61\xb1\xfb\x5d\x79\x61\xc2\xa6\xa1\x2c\xc7\x2d\xed\x59\x40\xc5\x77\xa0\x10\x46\x75\x37\x12\x88\x4d\x04\x72\xd1\x9f\xda\x1a\x4d\x8f\x92\x1f\x37\x49\x08\xc7\x2a\x4d\x11\x4f\xdc\x6a\x6a\x5d\x24\xc6\x9c\x7d\xee\x62\x57\xe2\x57\x0b\x60\xcd\x00\x25\xad\xaf\x5b\x28\xc6\xbc\x1b\xdb\x97\x04\xbd\x72\x7b\x29\x87\x35\x33\x90\xdc\x24\x2f\xaa\xf8\x38\x25\x29\x6d\xd3\x10\x8d\xa4\x46\xb8\x36\xfb\x11\x54\x70\x13\x94\x17\x10\x23\x75\xe2\xd7\x72\xfd\x48\xca\xba\xd3\xfa\x61\xdd\x56\x26\xf2\x5e\x4e\x59\x46\x6b\x5e\x9a\x44\xe0\x76\x8d\x1f\x8b\x55\x37\x2f\xf5\x9c\xa7\x17\x61\xdc\x84\xbd\xdb\xdc\x2e\x4e\x9a\xbe\xa6\xb8\x98\xa5\xcf\x28\x20\x1f\xb2\x45\x02\xba\xdb\xa7\x85\x6e\x73\x71\x9d\x0f\x90\x4e\xc8\xd5\x91\x77\xa6\x9e\x53\x85\x4f\x26\x43\x79\x5f\x7d\x41\x37\xef\x9a\x07\x12\xa8\xd7\x70\xe4\x27\x25\x42\xba\xb2\xab\x45\xcb\x36\x72\x11\x72\xdd\x39\x6a\xe8\xcc\x3f\x2a\xaa\xd4\x36\x61\x1b\x6b\x78\x64\xec\x08\x07\x7e\x12\x47\x78\x3d\xb3\xb4\x1d\xc5\xcb\x2c\x55\xdd\xc8\x7a\x37\xed\x2b\x60\xae\x87\xcc\xaf\xe0\x92\xe0\x32\xec\x00\x77\x96\x3d\x4b\x03\x85\xab\x65\x1a\xdd\x50\x4f\xf0\x79\x24\xb2\x4c\x56\x4e\x97\xa2\x70\x56\xd8\xe8\xc3\xe6\x96\x74\x26\x4f\x59\xa7\x86\x6e\x77\xa7\x97\x8c\x4b\xb1\x46\xe7\x87\xff\x3b\x8f\x19\x28\x90\x3c\x57\x13\x7b\x2e\xd6\x2f\xf9\xc2\x7e\xdc\x50\x9f\x94\xf6\x4e\x89\x9f\x83\x24\xc6\x5c\x95\x49\xfc\x5c\xac\x1f\xa3\xaa\x06\xd3\x9d\xa2\x87\xa8\xfc\xf2\xfe\xec\xb9\x58\x67\x79\x9a\x5c\x0a\x75\xeb\xe2\x59\x96\x04\x21\xcf\x31\x55\xbb\xab\x73\xb7\xd4\xeb\x78\x09\x10\xf0\x6c\x71\xc8\xce\xff\xeb\x6c\xf8\xf6\xe5\x47\xc6\x25\xf6\xc8\xd3\x1a\xe6\x7a\x95\xb7\x7e\x2b\x79\x0b\x54\x29\xf2\x0b\x5d\x58\xc3\x50\xef\xe3\x61\xc6\xf4\xfa\x5a\x22\xb2\x9e\x7f\x85\x72\xdd\x04\xf5\x33\x4f\x05\x57\x39\x3e\xfe\x2c\x52\x41\xe1\xe5\x1c\xe6\xea\x68\xda\x4d\x63\xed\xdb\x21\xbc\x54\x7b\xe1\x44\x6b\x16\xf0\x45\x8e\x5e\xbc\x6a\x6c\x0a\xd1\xd3\xc4\x00\x57\xdf\x68\xcf\x1b\x3d\xb9\xd5\x81\x6c\xa5\xd6\x30\xc3\xb8\x79\x26\x91\x39\x20\x53\x2b\x6f\xc3\x94\x8d\x81\x98\x94\x62\x36\x6b\xb0\x8c\x5f\xc9\x15\x93\xe0\xb2\x04\x95\xc2\x48\x7a\x6c\x19\xc3\x23\x25\x78\x1c\x53\xce\x66\x79\x9b\x74\x58\x61\x03\x1f\x70\x28\x22\xd9\x44\x0f\x5c\x8d\xe7\x93\xce\x30\xc3\xd8\xb9\x07\xf6\xcc\xc9\x32\x37\x9c\x73\x24\x4b\x5e\x2f\x73\x9b\x49\x7d\x6c\xe8\x06\x97\x62\x3d\x49\x56\xb1\xa9\xff\x5c\xac\x8f\x93\x55\xbc\xb9\xfa\x22\x25\x06\xa2\xeb\xbf\x91\x25\x9b\x1b\x2c\x17\x4e\xed\x77\x8b\x0d\x55\xe5\x39\x71\x12\x2f\xec\xc1\x9f\xa9\x22\xa7\xc9\x03\xc6\xf0\x92\x03\xfb\x8c\xd1\x85\x4e\xf9\x5f\x5d\x8a\x35\x9b\xf3\x05\x08\x45\x8f\xb7\xac\x75\x7e\xc9\x17\xa4\xc6\xac\xdc\xb9\x8a\x7f\xab\x16\xb2\xc3\x30\xbe\xc8\xaa\xdb\xf4\xe9\xab\xd5\x4a\x8f\x46\xca\xcc\x87\xec\x38\xcc\x20\x68\x23\x8f\xd7\xac\x17\xe5\x3f\xa7\x2c\x15\x11\xec\x9a\xf9\x32\xbe\x50\x5e\xc3\x8f\x59\x90\xa7\x51\x93\x47\xf9\x21\xeb\x41\x0a\x5b\x36\xc8\xd3\xe8\x49\x2f\xca\xd9\x5c\xf0\x38\xc3\xb6\x54\x57\xca\xd1\x4e\x5d\xb8\xa9\x54\xd7\x05\x96\xe9\x54\x46\x86\x5b\x59\x5b\xe3\x89\xcb\xb2\x97\x92\x8d\x2a\x27\x68\x77\x6e\x27\x53\x38\x39\x1a\xec\x74\x16\x4e\xf3\xe6\x49\x9c\x89\x94\x9e\x3d\xa7\x10\x69\x64\x06\x0f\xaf\x4a\xed\xa0\x5c\x98\x20\x23\x35\x78\xf4\xb4\x34\x1c\x90\x84\x21\xe3\xbe\x5c\x33\x62\x75\x00\x69\x0c\x7a\x75\x6d\x83\x37\x4b\xc0\xba\xcd\x1e\x66\x26\x7b\xc7\xce\xd1\xff\xeb\x88\x22\xdb\x56\x8e\x75\x96\xcc\xc5\x96\x00\x23\xe3\x28\xd2\x81\x2c\x9d\x67\xe5\x0c\x42\x1b\x8c\x79\x8a\x11\x56\x24\x78\xdd\x0c\xa1\x41\x5b\xf5\xdc\xc3\xde\x9f\xc9\x41\xcb\xf3\x26\x6b\x31\x3d\x1b\x7c\xbf\xd1\xdd\x65\xa0\xab\x7d\x7f\x06\xe7\x52\x86\xb6\x43\x12\x94\x0b\x9e\xfa\xce\x0a\x53\x94\x9f\xe5\x11\x80\x41\x17\xac\xac\xbe\xd6\x0c\x4f\xe1\xaa\x9d\x31\x3e\x4e\xae\x44\x83\x5c\x99\xe0\xae\xb0\xe0\x17\x82\x2d\x17\x5b\xf0\x53\xee\xf0\x02\x74\x59\x7e\x1b\x74\x8d\x3f\x49\x91\xcd\x37\xd1\x32\xdb\x7a\x19\xc6\xcb\x6c\xeb\x2f\x22\x4d\x14\x1a\x33\x88\xa0\x52\x5a\x55\x68\x82\x34\x72\x63\x43\xaa\x09\x9f\x09\x5f\xbf\x7e\x6a\x20\x34\xd3\x2d\xb4\x9b\x24\x3a\x98\xa2\x3b\x17\xb9\x83\x64\x35\x00\x22\xab\xfe\x25\x49\xe6\x95\x14\x01\x5b\x6b\x80\x41\x54\x32\x70\x6b\x83\xf9\x51\xbf\x03\x49\x70\x92\xd8\xe4\x17\xe3\xda\x45\xcd\x60\x32\x4f\x06\x95\x95\x11\x8c\x01\x6b\x35\x76\x46\x39\x00\x6f\xd1\x4a\x64\x43\x1f\xef\x71\x8f\x94\x87\xf6\xfe\x0e\x43\x7b\x5f\x59\x19\xc1\x18\xb0\x9b\x86\xf6\x5e\xed\xa3\x8a\xb1\x0d\x21\x24\xcb\xd6\x44\x71\xb4\xc5\x22\x52\xe1\x54\xe4\x81\xc0\x27\x08\x4f\xf1\xe2\x30\x23\x4b\x04\x32\x9e\xe6\x6b\x16\x2f\xe7\x22\x0d\x03\xd8\xe8\x70\x7c\xc2\xfe\xd6\x0f\xce\x96\xf4\xe0\x30\x23\xd3\xd1\x73\xe8\xe7\x4e\xc3\x03\x51\xc9\x1a\xa2\x36\xbe\x9d\x88\x5b\xc7\x49\x75\xbf\x7a\x98\xf8\x18\x70\xcb\x76\x02\xc6\x28\x65\x03\x88\xe8\x44\x31\x5a\x80\xb3\xf4\x4f\x59\xcd\xfb\xe5\xba\xbd\xef\x35\x18\xbf\xe4\xec\xd7\x67\xf5\x16\xc3\x84\xfd\xab\x30\x13\x08\xc7\x6d\x2e\x8f\x3b\x1b\x84\xf7\xcb\xf5\xde\xd4\x2b\x8c\x50\x57\x87\xd7\xa3\xbe\x6e\x5c\x39\x4e\x8c\x67\x16\x24\x13\x0c\xa7\x04\x2a\x50\xc9\x52\x26\x3c\xe7\xb7\xf1\x65\x6d\xa6\x3c\x54\x00\x8e\x98\xb7\xcc\xa7\xcd\xfd\xc2\x39\x72\x2a\x72\x93\xf7\x1c\x3c\x0a\x73\x8e\x73\x01\x1a\xe6\x2c\x12\x1c\xda\x8b\x2c\xe0\x0b\xc1\x92\x54\x6e\xfe\x42\x6f\xb2\x11\xcc\x68\x88\x95\xaa\xb6\xbc\xdd\x91\xac\xdf\x7c\x8f\x81\x03\x94\xc9\x78\x52\x35\x0d\xf9\xf1\xa5\xc8\xf9\xfb\x6a\x2e\xa2\x18\x98\x52\x34\xf3\x08\xc5\x0e\xb0\x2e\x97\x62\x99\xb3\x21\x68\x0a\x2d\xfc\x47\xfa\xf9\x98\x0d\x4f\x07\x10\xfc\x28\xbc\xa6\xad\x8c\x61\xad\x5b\xaa\x5e\x6f\x32\x61\x7e\x67\x5f\x21\x7b\x19\xc3\xa9\x21\x26\x56\x40\x56\x9e\x49\x41\xfe\x9a\x22\x71\x01\x0c\x3a\x70\x9b\x97\x62\xdd\x6a\xb1\x0f\x3c\xcc\xb5\xea\x48\xc9\x6e\x24\xd0\xc2\x39\x27\x04\x5b\x29\x03\x60\x75\x56\x67\x7c\x9d\x29\x70\xee\xbf\x1a\xec\x99\x15\x38\x3e\xae\x92\xf4\x92\xad\x44\x14\xc9\xdb\xc9\x22\xe2\x39\xc4\x18\xa6\x20\x2c\x16\xb8\x4a\x40\x6c\x21\x52\xac\xcf\xb5\x77\x25\x37\x49\x12\x20\xc0\x19\x07\x8f\xcb\xbf\x2e\xe5\x85\x25\x6b\xd5\x8b\x3b\x97\x9c\x31\x31\xe2\xd4\x9c\xe7\x60\x1a\x0f\xa2\xb2\x6c\x18\x66\x6c\x12\x66\x79\x18\x07\xb4\x7d\x81\xbe\x6a\x3c\xca\x4f\x60\x61\x59\x98\x21\x2c\x64\x87\xf5\x92\x10\x04\x64\xf5\x41\xa2\xe6\x88\x79\xb8\x80\xb7\x50\xb0\x22\x02\x1e\xc8\xbb\x5c\x06\x4f\x30\x48\xd3\x0d\xdb\x79\x78\x91\x26\x93\x25\x84\xef\x86\xe5\x26\x19\xd0\x89\xe4\xad\xe7\x99\x2e\xe1\xfd\x06\x23\x62\x35\x94\x88\x01\x81\xcd\xb0\x44\x5e\x55\x64\x01\x5f\xe6\x09\x86\x3f\x31\xd6\xbe\x6a\x4d\xca\x02\x1e\xa1\xe0\x16\x26\x95\x82\x99\x65\x42\x61\x55\xd8\xf1\xf0\x05\x4c\x8f\xee\x50\x3a\xc8\x1c\x60\x97\x47\x79\xd3\xb0\xa4\x24\xa6\x7d\x82\x81\x3d\x5e\x9f\xb2\x2b\x32\x2e\xe2\x00\x5c\xc3\x02\x72\xb4\x67\x6c\xb4\x73\x87\xac\x47\x16\x7b\xe1\x1c\xc3\xcf\xa5\xa1\x5c\xef\x86\x9c\x9a\x06\xdc\x28\xf4\x1c\x66\x52\xf4\x5f\x08\x92\xb3\xf2\x44\x76\xd5\x62\xa7\xb2\xf6\x32\x93\x14\x32\xe7\x6b\x29\x5e\xce\xf8\x62\xb1\x36\xd7\x57\x34\xf4\x00\x53\x5b\x5d\x65\x9a\x2e\xb3\x3c\xc5\xdb\x36\x53\x61\xf5\xc2\xdc\xcb\x58\x38\x5f\x24\x19\x3c\x6b\x00\x7e\x12\xe4\x2b\x7a\x14\x2d\x40\x22\xf9\x13\xd3\xe2\x65\x78\x4b\x96\xfb\x9d\x84\x9b\x15\x7c\x07\x8c\x84\xc1\x25\xec\x72\xb9\x99\x5c\x0c\xe1\x7e\x2d\xa3\xf8\x50\xe3\xd8\x29\x6e\x48\xa8\x24\xa7\x0a\x87\x28\x2f\x12\x10\x02\x1b\x28\xa0\x5e\x88\x9c\x71\xd5\x07\x0a\xde\xf6\x1c\xc9\x21\x47\x2d\x32\x6e\xa7\x38\xc9\x71\xbd\xc4\xa4\x05\xea\x85\x59\x9e\x2f\xb2\xc3\xad\xad\x20\x1d\x2f\x2f\x5a\x41\x32\xdf\xf2\xf7\x76\x76\xfc\x36\x2b\x13\x9c\x3e\x70\x90\xf2\x6e\x39\x7f\xde\x11\x5f\xbe\x14\x62\xc1\xf2\x94\x07\x97\xca\x34\x54\x5d\xf1\xe4\xa4\xe1\xac\xc8\x21\x14\x93\xf6\x28\x8a\x45\x20\xb2\x0c\x72\xae\x24\xa9\x39\x2c\x6f\x1a\x81\x09\x3f\x87\x42\x34\xb0\x45\xc5\x31\xf5\x65\x08\x61\x99\xba\x60\xee\x89\x76\xa6\x9c\x8d\xc3\x7c\xce\x17\x48\x4c\xc8\xfe\xc6\x61\xce\xd4\xfb\x4a\xc6\x20\xe6\x40\xb6\x48\xe2\x89\x65\xbe\xf5\x98\x3d\x8a\x12\x94\x19\x1e\x49\x9e\xb0\x10\x69\xbe\x56\xf3\xd4\xfb\xac\x8c\x4a\x75\xdd\x16\x13\x1d\xc4\xb9\x42\x5e\xd7\x1b\x6f\x2e\x26\x21\x47\x71\x46\xdd\xac\x70\x83\xd0\x50\xc2\x94\x8d\x00\x95\xe2\xaf\xcb\xf0\x8a\x47\xba\x4f\x36\x6c\x5d\xb4\xd8\x23\x89\xa8\x47\x15\x4d\x47\x7e\xcb\x16\xf6\xb1\x3f\x32\x7e\x05\x63\x24\x75\xab\x2b\x9d\xd8\x93\x90\xcb\x7b\x47\x2f\x15\x23\xf9\xb3\x9a\x04\x9e\x25\x11\x19\xb9\x2c\x52\x71\x05\x21\x10\x34\xbf\x9f\x32\x87\x3d\x03\xcb\x3f\x1e\x0e\x4e\x87\x67\x0c\x92\x98\xa3\x67\xd9\xa4\x05\x2e\x5f\x08\xee\x78\x38\x78\x7b\xea\x7e\x6e\xb8\x50\xb4\x28\x38\x01\xd1\x4a\xfb\x05\xa0\x5a\x07\x56\x9a\xee\xf6\x4b\xd0\xd6\x24\xcb\x92\xc8\x40\x03\xed\x59\x60\x2b\xad\x2e\x4f\x29\xf2\x3b\x20\x0a\x82\x48\xa0\xc0\x39\x80\x3b\x22\x04\x2e\xd4\x0a\xab\x88\xaf\xb1\xa7\x92\x4e\x4d\xfe\xd2\x0b\xec\xb0\x01\x46\x3c\x91\xf7\x70\x39\x1c\x11\xe7\xc7\xea\x70\x95\x87\x7d\x9e\x2c\xde\xa4\xc9\x82\x5f\xd8\x91\x10\x51\x77\x67\xc9\x04\x74\xc7\x42\x58\xc2\xb9\x2c\x0c\x7a\xaf\x06\x43\x6d\x6b\x42\xca\xf2\x78\x39\xaf\x79\xf8\xc5\xab\x37\x0a\x92\xa4\xe4\x79\xea\xa8\xb7\x43\x29\x18\x73\xee\xc0\x89\xca\x28\xc5\x16\xb8\x4e\x43\x4c\x26\xd4\xc8\x22\x2c\x15\x3c\x49\xb5\x20\x85\x5b\x41\x7d\xa0\xfd\x0c\x40\xdf\x90\x86\x31\x26\xce\x80\x43\x58\x83\xb2\xb3\xa7\x6c\xd0\x36\x38\x63\x48\x62\xa1\x76\xe6\x3c\x99\x84\xd3\x50\x49\x35\x38\x94\xac\x51\x08\x2f\x2a\x81\xd2\xac\x29\x54\x87\x1c\xb9\x1e\x38\x98\x8e\xd6\xe8\x08\x59\xd7\x35\x1f\xc7\xb8\xfd\x61\xee\xc8\x8e\x4d\x75\x98\x10\x10\x25\x11\x61\x64\x5f\x0a\x52\x31\x38\x3d\x69\x50\x98\x20\xfa\xaa\x26\xc6\xc1\x6b\x4d\x1d\x61\x8c\xa1\xc3\x25\xf8\x66\x3a\xf3\x31\x11\x46\xa4\xe8\x32\x11\x59\x90\x86\x63\x9c\xbd\x52\x20\x2b\x83\x6c\x0c\x9a\xa9\xc0\xa9\xbc\x24\xf2\xd3\xa3\x37\x83\xe6\x29\xe8\xd9\x47\xca\xc4\x41\x6e\xf1\x47\x2c\xc3\xd7\xe2\xea\x89\x29\x75\x0c\x09\xd0\xf2\x98\xd2\x8b\x2b\xcb\x36\x2c\xa9\x89\x5e\xaa\x07\xa3\x5a\x2d\x17\x0b\x91\x82\x61\x2f\x05\x34\x56\x03\x34\x32\xf4\xa5\x58\x07\x1c\x42\xc1\x91\x93\x81\x06\xd2\xdd\x61\x35\x4c\xdb\xe2\xfd\x87\x57\x07\x98\x07\xbb\xba\xe8\x93\x57\xa7\x33\xf4\xa6\x8e\x34\xb0\x52\x87\x73\xd0\x73\x74\x77\x30\x58\x6e\x9c\xab\x83\x64\xce\x2f\x45\xc6\xbc\x5f\xff\xc3\xd3\xb7\xb8\x76\xdb\x33\x1a\x23\xc6\x98\xf7\xeb\x27\xf3\xd1\x9f\x7a\x2d\xc6\x6a\xaf\x12\xe5\x37\x2b\x69\x74\x16\x5e\xa0\x30\xca\x73\xd6\xbe\xf6\xa7\xb2\x93\xf6\x75\xa7\x6d\x4e\x48\xb3\x6e\xb0\x92\x69\x96\x5b\x18\xc5\x29\x42\x80\x5e\x47\xdc\x36\x4b\x65\xdd\x73\xee\xbd\x4c\x80\x35\xa7\x7f\x0c\x05\xac\x8e\x76\x3b\xd1\x98\x42\xda\x72\xc1\xc6\x6b\x79\x09\x2a\x53\xce\x1c\x85\x78\x33\x8e\x20\x89\xa7\xe1\xc5\x32\xc5\xf3\x29\xa3\x4b\x16\x4a\xee\x0d\x40\xd9\xd8\x73\xf6\xbb\x1e\x0b\x85\x40\x2d\xef\x54\xc3\xbc\x84\x75\xe5\x3f\x1e\x8e\x7a\xef\x5e\x9c\x55\x71\x41\xfa\x54\x64\x83\x03\x74\xd8\x75\xa3\xc3\x26\x2c\x59\xe4\xf2\x1c\x81\x40\xc9\xea\x2c\x70\x4e\x7f\x73\x6f\x88\xf0\xf0\xb3\xee\xff\x74\x57\x9b\x08\x60\x38\xf9\x4c\xf3\x0d\x39\xc4\x37\xbd\xd3\xd3\xaa\xf1\xc9\xf2\xe2\xe0\x48\x83\x6b\x08\x02\x63\x4a\x49\x69\xc5\xac\x89\x91\x4b\x06\x7c\xd1\x30\x77\x0c\x81\x8a\xd8\xe7\x62\xdd\x32\xba\x03\x39\x7e\x85\x68\xba\x0e\x23\x17\xa5\xa7\x05\x7c\x2c\x11\x2d\xf7\x88\xaa\xd5\x55\x23\x62\xd2\xca\xe2\x4a\x2f\xfc\x49\x4e\x87\xf7\x74\x19\x91\x77\x3b\xb1\xaf\x89\xba\x78\x41\xd0\x57\x94\xc1\xc2\x9c\x49\x31\x29\xce\x43\xc8\xe8\x92\xe5\x69\xb8\xc8\xcc\xe6\xd4\x8c\x0f\x73\xbd\xd1\x58\xd4\x12\x98\xc8\x5b\xc9\x9c\xa5\x82\x63\x58\x49\x3a\x20\x2e\xd5\x6c\x25\xaa\x4f\xcf\xde\x9e\xbc\xa9\xc2\x35\x7c\xf0\xea\xf6\xc9\x0f\x3a\x11\x61\x9c\xe2\x78\x10\x24\xe9\xc4\x82\xec\x49\xb2\x6d\x2a\xdd\x8b\x1d\x1b\xb9\x52\x04\xb0\xdc\xff\x10\x72\x55\xe2\x0f\x63\xd6\x55\x56\xcd\x68\xdd\x8c\x93\x3c\xc5\x79\x74\x6b\x5d\xe5\x04\xfd\xdd\xd9\x68\x1f\xc0\x3e\x75\x03\xfc\xbb\x26\x9b\xf0\xe8\x26\x4a\x4f\x6e\xf6\x01\x6b\xbd\x1f\xd2\xdb\x9d\xe3\xbb\x65\x2e\x4c\x96\xc2\x8d\x29\xc8\x1a\xa2\xbc\x7b\x06\xf8\x90\x4a\xb1\x97\x95\x2f\x14\x04\x10\x50\xca\x7e\xb8\xb6\x98\xb3\x38\x4c\x8b\xfa\x86\x24\x65\xe3\xe5\x98\xee\x72\x14\xa6\x0d\x47\xa5\x1f\x47\xdf\xf0\x2c\x83\xf5\xc2\xfb\xb6\x09\x26\x17\x45\xe6\x09\xcf\x19\xaf\x7e\x2d\xac\x8a\xc6\x46\x4f\x8d\x5f\x34\x20\xe7\x15\x73\x96\x64\x42\x63\x6d\xa6\xe2\xcf\x06\x34\xfb\x06\x93\x17\x1b\xd4\xa7\xa8\xcb\xbf\xad\xf7\xbc\xe9\x19\xd6\xa2\x17\x1a\x73\xd5\x03\x2d\x0d\xc4\x10\x8f\x1a\xd9\xd1\x51\xf5\x8b\xa9\x4d\x3b\xda\xca\x49\x35\x52\x06\x84\xd5\x8d\xd0\x0c\xc3\x1d\x0b\x84\xcc\xac\x6f\xcc\x4e\xe3\xbe\x7d\xea\x9c\x20\xa1\x49\x05\x02\x76\x50\xe4\x2e\x73\x54\xa8\x7f\x1e\x7e\x34\xf9\x2f\x9c\x99\xca\x7f\x8a\x1a\x4b\xd6\x28\xd4\xfe\xbc\xfd\xb1\xa1\x40\x9f\xfb\x1f\xab\x43\x81\x56\x4e\xb7\x55\xf1\xb0\x7b\x0b\x54\x65\xb7\xb2\xe9\x95\x9a\x06\xeb\xa6\x27\x22\x4a\x70\x77\x9f\x22\x1e\x67\x97\x01\xf1\xf2\x28\x22\x0d\xa6\x0e\xf2\x9a\xc8\xcb\x28\x04\x28\xb3\x94\x3d\x2a\x46\xc5\x2d\x54\xa5\xf7\x42\x15\x5d\x59\xb6\xde\x1b\x56\xbc\xec\xd1\x62\x3d\x00\xd3\x50\xd4\x1c\x3e\xc0\x63\x3f\xe4\xaa\x0b\x72\xcc\xd9\x05\x6e\x3c\xa4\x3a\x40\x87\x2d\x21\xef\xa6\xe3\x65\xce\x56\x82\x4d\x12\x65\x45\xf1\x92\x07\x4a\x96\x95\xa2\x1b\xb8\x79\xc2\x89\xe1\x7a\x95\xf2\xc5\x82\x74\xd1\xd9\x3a\xce\x67\x22\xa7\xd7\x0b\xb8\x67\x80\x62\x0c\x6f\xbd\xb7\xe0\xc4\x7e\xc3\xae\x70\x95\x03\x6b\x6a\xf2\x6e\x2a\xee\x23\x72\x9f\xcb\x16\x51\x98\xd7\x3c\xaf\xde\x9a\x26\xe9\x90\x07\xb3\x9a\xcb\xa0\x1d\x53\x11\xf3\x4c\xae\x2b\xd4\x37\xa0\x56\x69\x12\x2c\xcc\xde\x38\x0f\xfd\xd0\x5f\x31\x0d\x95\x20\x4a\xdb\xaf\x4a\xe2\x39\x62\xe8\xdb\xd9\x92\xa7\xe8\x80\x12\xd3\xd4\x44\x0b\x84\x51\x63\x6b\x9b\xac\x44\xfa\x1c\xaa\xcb\x83\x35\x4f\x5e\xc8\x82\x01\x57\x41\xd8\x24\x86\x6a\x02\x9e\xa8\x64\xad\xcf\x9f\x99\x00\xbd\xff\x73\xb1\xae\x4b\xf6\x52\x33\x00\x8e\x98\x17\x78\xb2\x86\x53\x74\xe5\xd5\x2d\x73\xcb\xd7\x31\x46\x28\x15\x46\x01\xc9\x6a\x92\x8e\xe4\x9f\x52\x98\xac\xd3\xa6\x81\x47\x82\x69\x28\x4f\x1c\xc8\xdb\x9b\x2c\xd6\x5b\xe6\x01\x5b\x82\x7a\x21\x20\xc9\x82\xf3\xec\xad\xee\xb1\xea\x90\x51\xfb\x6a\x2c\x66\xfc\x2a\x4c\xd2\x96\xb3\xc8\x56\x88\x66\x41\xca\x1d\xcd\x31\x5d\x1d\xf4\x11\xf3\x2c\xcd\xbe\x27\x6b\x09\x9d\xec\x07\xd2\x20\xda\xa1\x30\x21\xb9\xe3\x45\x92\x33\xd4\x46\x09\x88\x18\x03\xba\x41\xf9\xb7\xb8\x5e\x50\x9c\xec\xc2\xce\x27\xd5\x0d\x8f\x15\x20\x5b\x05\x0f\x1b\x29\xcc\xd9\x24\x9c\xc4\x5e\x2e\xf7\x53\x98\xd3\x55\x68\x25\x28\x8c\xe9\x58\x60\x98\x09\xf6\xfa\x54\x25\x26\xd5\xa0\x62\x95\xd8\x81\x9d\xbc\x1c\x52\xa8\x56\x15\x27\x07\x8c\xb1\x70\x84\x80\x4d\xa5\x82\x81\x97\x8d\x66\x14\xa2\x7a\x52\x82\x71\xf1\xb8\xb5\xa5\xca\xcf\xec\xc8\x3e\x30\x6b\x78\x17\x00\x35\xbc\x0a\x18\x29\xef\x5a\xeb\x45\x18\x00\xb7\x00\xee\x60\xbd\x5b\xe0\x51\xab\xc0\x41\x1e\x13\x7b\x01\xf2\x84\x6c\x6d\xf5\x63\x80\x14\x1c\x3c\x50\xe1\x7b\xc6\xfe\x36\x98\x6d\xa4\x7a\xd2\xf0\x58\xf9\x97\x1e\x1a\xe9\x59\xd9\xf4\x43\xfb\x60\x56\xde\x05\x8c\x91\x80\x17\xcc\xec\x1c\x4f\xed\x3a\x7b\x22\xef\x47\xb0\xef\xac\xb4\xc1\x16\x6d\xfc\x78\xc4\xb6\x3b\xda\x54\x5f\xc2\x37\x1f\x1d\x0a\x0c\x66\xd6\xa1\x5c\xcd\x5d\x6a\x55\x53\x0b\x66\xf5\x3a\xf1\xab\xa2\x44\xff\x14\x4a\x0b\x7a\xa7\x82\x93\xcf\x1b\x6c\xa3\x77\x8c\xa3\x16\x8b\x93\xb8\x09\xf6\x31\xea\x46\xa8\xbd\x1a\xe1\x10\x98\x41\x6a\xb6\xf9\x18\x42\x7e\xa2\x26\x04\x35\x91\x26\xfc\x2e\xf3\xf8\x62\xd1\x52\xd1\x1e\x97\x51\x44\x11\xa1\x94\xbf\xcd\x30\x0b\xbc\x86\x92\x18\x29\xf9\x03\xa4\x5f\x4f\xf2\x99\xe6\x09\xf0\x51\xfe\xb1\x5c\x10\xb7\x6c\x3c\xa0\x8b\xd8\xf0\x74\x40\xd7\xdf\x39\x0f\x63\x79\x3d\x81\x13\x58\x0e\x26\x8c\x99\xe9\x50\x8d\x4c\x1e\x2b\x2a\xff\xc1\xcd\x1c\x97\x90\x89\xed\x7a\x8b\xc5\xab\x24\x1e\xe4\x69\x04\x6f\xfd\x84\xe1\x8d\x27\x8a\x1b\x59\xfd\xf3\x67\xe6\x96\x40\xec\xf8\xca\x52\xc2\x54\xbd\xc0\xa6\x88\x5c\x2d\x26\x5c\x22\xde\xaa\xd5\x97\xcb\x7c\xc3\x89\xa2\x4d\xd3\x2a\xa6\xb1\x49\xdf\x7d\x0b\x48\xb4\x2f\xdb\x80\x16\xbd\x09\x25\xc3\xf4\xf7\x2d\x72\x2f\x76\x54\x51\xf8\x03\xfb\x7b\xcd\x67\x7f\xfa\x93\x04\xa3\x34\xf7\xac\xc9\xfc\xba\x31\xed\x77\xe0\x77\xf6\x2c\xf8\x77\x59\xcb\x9a\xd8\x7c\x50\xcb\x6b\xf3\x3d\xce\x69\x30\xe0\xfb\x23\x90\xf0\x99\xfd\x03\x70\x60\x44\x88\x63\xa1\x3c\x94\xc8\x7e\xaf\x85\x85\xd9\xb9\xee\xe6\xa3\x26\x4f\xfc\x54\x74\x4a\x5a\xf1\x34\xae\x79\xaf\x12\x06\x91\x81\x43\xad\x6c\xa6\xe6\x68\xc3\x5f\xe4\xce\x85\xf3\x99\xec\x40\x55\x22\x2c\xba\x38\xa2\xbd\xe9\x45\x42\xf7\xf7\x25\x2a\xca\xe5\xc8\x53\x91\x25\xd1\x95\x98\xa0\x7e\xde\xcd\x56\x55\xe1\x7b\x65\x79\x84\x81\xab\xad\x76\xbb\xb3\x8e\x74\x95\xba\xd2\xe8\x39\x0a\x21\x3a\xa8\x30\xc6\x70\x17\x4a\x5f\xa7\xf5\x58\x5c\x01\x32\xb9\x71\x26\x61\xb6\x80\xa8\xda\x61\x5e\x6a\x31\x11\x53\x91\xea\x08\xd1\x8e\x56\xac\xa1\x20\xd1\x2c\xd5\x9b\x21\x28\xaa\x5a\xca\xf5\xac\x0a\x01\x7c\x2e\x2c\x57\x07\xea\xe9\x88\xd6\x59\xb9\xae\xa9\xc3\x51\x22\xdb\xe0\x5a\xca\x3f\x6a\xe4\xda\xb3\x55\x43\xc0\x5f\xc0\x0c\x67\x5d\x03\x7f\x38\xa4\x96\x06\x3b\x17\x0d\x82\xff\x51\xb9\x59\x48\xe0\x1a\xea\x91\xd2\xe6\x49\x81\x0a\x9c\xed\x1e\x9a\x94\x2d\xa5\x7e\xcc\xea\xe8\x2a\xae\xaf\x1d\xd6\xb4\xe9\xc6\x28\x68\xe9\xbd\x17\x94\x80\x69\xb8\x88\x44\x93\x62\x36\xd5\xbc\xa3\xa3\x23\xaf\xce\x92\x85\x48\x79\x9e\x60\x8c\x07\x91\xe5\x18\xa1\x2a\xcc\xd5\x63\x26\x86\x25\xcf\x50\xeb\x91\x73\x08\x21\x1f\xc6\x0c\xfc\x92\x48\x0d\x20\x85\xba\x65\x98\xcd\xe4\x29\x74\x61\x54\xab\x54\x1f\xb5\x59\xf0\x09\xc1\x49\xfc\xb2\x28\xcc\x45\xca\x23\x27\xce\x92\x12\xa4\xf2\x44\x79\x07\x98\x40\x55\xe3\x35\xa6\x9b\x82\x45\xc4\x67\x1f\xed\x9c\x57\xf1\x38\xd5\xc2\x2a\x4a\xda\x57\xe8\xbe\xa9\x05\xd5\x51\x4d\xde\xf4\x4e\x4f\x6f\xac\x2f\x2b\xa8\xca\xa0\x75\xbb\xb1\x36\xd4\x70\xfc\xec\x52\x08\x2e\xa8\x4f\x37\x05\x4a\x0a\xbf\x47\x45\x9b\x89\x9f\xc8\x08\xe3\x90\x29\x81\x5d\x55\x9f\xa3\x49\x45\xa9\xbe\x91\xec\xdd\xab\xcb\xa1\xf9\x43\x27\x65\x8f\xd5\x1e\x6f\xce\x25\xf5\xae\x04\xcb\x96\x29\xa6\x2c\x32\xea\x57\x2d\x18\x69\x25\x3b\xbc\x1a\x3e\x3a\x6f\xb5\x5a\x1f\x1f\x99\x44\x36\x5a\x05\x7f\xc4\x1e\xd6\xb6\x7e\xfd\xe5\xfc\x97\xd5\x93\x5f\x3e\xfe\xdb\x16\x24\xf6\xaa\xe1\xae\x68\x21\x48\xe2\xdf\x2a\x6e\x8b\x6b\x08\xec\x86\x6e\x51\xd6\xca\x14\x21\x85\xb2\xcb\xe8\xbe\x7e\xf8\x41\xa3\xf4\x87\x1f\x24\x0a\x9d\x3c\x2e\xaa\xb1\x19\x3a\x59\x22\x43\x67\x18\x56\x3d\x88\x04\x4f\x41\x2f\x6e\x3f\x0e\xd1\x43\x88\xb9\x96\x28\xfd\x2d\x3e\xd1\xae\x78\x98\xa3\xda\x5f\xe8\xd7\x04\x38\x84\x42\x8d\xd2\x89\x3e\x42\x75\x9a\x17\xbd\xf6\x3a\x68\x3f\x6c\x77\x58\x77\xab\xe8\x0b\xfc\x4f\xd9\x60\x2d\x54\x68\x03\xeb\xcd\xb8\x28\x5c\xd5\xb5\x76\xae\x28\x5a\x74\xea\x56\x92\xac\x6f\x1c\x96\xb2\x11\xff\xf6\x51\xf9\xdf\x3a\x2a\xcb\xf5\x4a\xb1\x46\x75\xd9\x40\x70\x0a\x7e\x15\x8b\xa5\x2a\x9e\x9d\x3b\x08\x98\xb7\x21\xaa\xaa\x66\x72\xe6\xc5\x26\x72\x9f\xdd\xd4\x46\x7e\xf7\xca\x39\x8a\x6e\x66\xfc\x86\xc9\x9f\x4c\xe5\x5e\xe6\xd9\xe5\x29\x49\xc4\x18\xf4\x5f\xe4\xac\x46\x79\xe4\x34\x80\xba\xbc\x42\x23\xcd\x03\x47\x05\x43\x70\x7c\x52\x7b\x40\xb4\x8d\x7e\xd3\x3c\x08\x92\x65\x9c\xd3\x6d\x84\xc8\x58\xbd\x70\x00\xc9\x6b\xcb\x51\xd2\x82\xc9\xab\x37\xc4\x44\x5a\x3f\xa0\x93\x3e\x05\xe7\x50\x93\xda\x4e\xbb\xc6\xc0\xdd\x18\x5e\xb7\x25\x70\xcb\x54\xfb\x8c\x8f\xd5\x63\xa1\x65\x53\x8a\xf0\x1e\x0d\x4e\x4f\xd8\x5f\x28\x9b\x12\xfc\xe1\xb3\xa7\xac\xc3\xfe\xf2\x48\x9d\x06\x38\x9b\x23\x79\x37\x70\xb0\x01\xca\x0a\x75\x5b\x70\xe4\x3b\xb9\x27\x55\xd2\x03\x2d\x91\x69\x69\x0c\x45\x0d\x68\x78\x68\x41\x68\xc8\xd1\xc8\x41\xfc\x8f\xee\xf4\x7f\xc8\x46\x6a\x9c\x5c\x91\x7e\x46\xb2\x9a\x43\x45\xb5\x08\x08\x5c\x21\x78\x94\xe3\x5f\x72\xcd\x0f\xe1\x7f\x8c\xf4\x4f\xa3\x22\xaf\x0f\xc5\xc9\x95\x13\x08\xb8\x8e\xe2\xef\x35\x1a\xb8\x91\x79\xa9\x92\x25\xae\x0d\x1c\x26\xa6\xdf\x9a\xc6\x61\x9e\xb1\x2c\x41\x7d\x24\x64\x8f\x48\x21\x14\xd0\x7c\x19\x53\x0a\x0a\xa5\x6d\x31\xe2\x5a\x6a\x3c\x7c\x15\x7e\xcd\x5e\xc4\xed\x37\x77\xac\xf9\x36\x0a\x60\x6e\x2a\x3a\x4d\xdc\x34\xfa\x96\xb5\x43\xbf\x5a\x04\x93\x17\xe8\x1a\x1a\xd4\x39\x3c\xa6\xc1\x0c\xd2\x2c\x95\x83\x1c\xfe\x9d\xf5\x5d\x66\x1c\x24\x20\x58\xf8\xfe\x40\x76\x9f\x8e\x41\x8f\x03\x01\x4d\xe3\x36\x9b\xc3\x6a\xad\xde\x49\xac\xbf\x34\x5c\xb3\x58\xdc\x10\x10\xdc\x4f\x05\x7d\xc6\xa6\xfa\xb4\xb1\xa2\x73\xc9\xad\x6c\xd2\x05\x9a\xa7\x54\xdd\x8f\x9b\xc3\x70\xa0\x9f\x5a\x83\x64\x6e\x4c\xc7\xf0\x09\x4b\x08\x95\xf3\x37\xe2\xc1\x25\x9b\xf3\x8b\x30\x68\xb9\x8b\xa8\x64\x20\x83\x5a\x23\xe2\x82\x00\xf5\xf9\xf3\x26\xb1\xf7\xa1\x62\xc6\xb2\x8e\x5c\x91\xcf\x9f\x81\xa2\xea\x75\x57\xa5\xa8\x4d\x85\xc2\xcc\xd1\xb5\x5b\xaf\xbc\x94\x02\x95\x30\x06\x39\x12\x31\x0b\xad\x51\x29\x2e\x63\xe7\xcd\xb6\x94\x63\x45\xb1\x38\x50\x2c\x8a\xeb\x90\x02\xaf\x39\x3e\x78\x2d\x6b\x54\x60\x90\xc9\xe3\x02\xdc\x86\x2c\xaf\x7e\x81\x46\x9d\xb7\xca\x15\xa9\x20\x05\x3c\x46\xfb\x4b\x30\x3f\x5e\xca\x6f\xc0\x05\xd1\x26\x22\xa0\xc5\x0d\xe1\xad\xbc\x52\xf7\x08\x89\x99\x60\xa9\x48\x6c\x96\xcb\x65\x0c\x0b\x50\x2e\x95\x92\x57\xc3\x44\x74\xa5\xf0\x92\xf0\x34\xad\x80\x39\xfc\x82\xac\xcf\xe2\x4b\x9c\x66\x02\x4a\xd1\x48\xb8\xe6\xda\xae\xc1\x9d\x31\xa9\x55\xd7\x56\x55\x0f\xcd\xb6\x2f\xe3\x64\x45\x57\xd7\x3c\x5d\xd3\xdd\x35\x54\xb9\x93\x44\x41\xae\x02\xb5\xae\x02\xa6\x9e\x51\x81\x14\xdd\xf5\xda\xa8\xd6\xb6\x48\x0e\x50\xa0\x4f\xe1\xc8\x65\x64\x16\xef\x2a\x5c\x0c\x5b\xc8\xb5\xbe\xc3\xcd\xd0\xd2\x23\xdc\x7e\x33\xb4\x77\x88\x23\x2b\xab\x3c\xfd\x47\x47\xac\x53\xea\xcf\xad\x49\x59\xd9\x6b\xc8\xb7\x7f\x62\x3e\x3b\x64\xed\x7a\x83\xf9\x86\x0b\xde\x43\x67\x5a\xc6\x28\x5e\xad\x2a\xdf\x5f\xa9\xd6\x43\x77\x22\x2e\xea\xe4\x55\x17\x6f\x7d\x5e\xb5\xd6\xe4\x84\x52\x74\x73\x8a\xf5\xe1\xb1\x27\xec\xcf\xa7\xaf\x5f\xb5\xb0\x55\x38\x5d\x53\x3f\xf5\x8d\x7a\x93\x53\x49\xdb\x2e\x51\xab\x4c\x8d\x65\x37\x62\x23\xe0\x64\x21\x18\xb1\x81\xad\xc0\x72\x8e\x37\x68\x04\xa8\xc1\xcc\x78\xa6\x85\x25\x48\x11\x70\x83\xc4\xd4\x22\xac\x54\x1d\x8b\x47\xcc\x48\x9a\x06\x0b\x45\xb2\xb4\x84\xc9\x0d\x40\x40\xee\x74\xa8\xfb\x1e\x8d\x51\x00\xa5\xd6\xc5\xe3\xbc\xb0\x99\x14\x59\xb5\x1b\xac\x53\x87\xd6\xbf\x5c\xfb\xe3\x73\x38\x23\x6b\xc4\xbf\x2d\x8e\x0e\xc4\x67\xb3\xf2\x33\x57\x31\xa4\x6c\xa4\xcc\x43\x0f\xe5\x61\x98\xa8\xec\x55\x79\x1a\x5e\x5c\x40\x0e\x65\x63\x8f\x09\xfc\x00\xec\xbd\x02\xd4\x89\x99\x37\x67\xb5\x42\x70\xe2\xce\xf9\x9a\xf2\xe4\x25\x68\xe2\x68\x6b\x99\xf2\x44\x81\xaa\x34\x49\x24\xf6\x29\x25\x50\x65\x18\xa9\xb5\x47\xf3\x64\x62\xed\x5a\xdc\x60\x70\x96\xb9\x08\xb0\x2e\x30\xf3\x64\x22\x65\xa0\xa7\x1d\xcf\x79\xb6\xb7\xc4\x90\x87\x04\xe7\xc6\xe6\xdb\xe5\xe6\xba\x77\x05\xa7\x70\xb9\x31\x8d\x77\xca\x8d\xad\xdb\xb2\xd5\xbf\xbc\xe3\x94\x9b\xef\xde\xd0\xb7\x0d\xc7\xb9\x76\xab\xc6\xdd\x8d\xf3\xb6\x9b\x22\xb5\x94\x1a\xef\xdd\x3e\xeb\x8d\x93\xde\x57\x6d\x8b\x5c\xd6\xe2\xa4\xdb\x8e\x9a\x00\xdc\x35\x48\x79\x25\xef\x19\xda\x0b\x08\x85\xaf\xdf\x45\x9a\xd8\x19\xf1\x96\x71\x24\x8f\x74\x75\xfe\xb7\x8a\x4c\x19\xf7\x87\x2f\xb9\x97\x1c\xd3\x13\xe6\xee\xa3\x8e\x62\xc8\x55\x99\xa6\x5f\xa3\x4b\x08\xe6\x67\xc4\xee\x79\xce\x22\xc1\x33\x34\xb9\xd4\xc3\x28\xf5\x5a\xda\xac\xee\xa4\x9b\xcc\xaf\xab\x01\x51\x53\xd3\x5c\xb5\x2a\x37\xb1\x50\x59\x4a\xa7\x5b\x16\xef\x0c\x56\xbf\xe2\x84\xa2\x96\x15\xb7\x75\xb5\x09\x8d\x75\xeb\x06\xb8\x6d\x83\x5a\xd5\x86\x9e\x31\x75\x53\xf7\x35\xd3\xd4\xc5\x6e\xf1\xfd\xb2\xbb\x83\x04\x36\x11\xec\x4f\x47\xec\x60\xd7\x1e\x87\x35\xb5\xca\xc7\x49\xd9\xa8\xc9\xba\x3b\x16\xe8\x2f\x0f\xec\x9f\x36\x59\xde\x74\x1d\xc1\xa7\x5e\x73\x11\xb1\xa8\xd7\x37\x03\xb2\xa6\xa8\xae\x44\x55\xaf\xb5\x77\x1c\x79\xdd\xd9\x39\x18\x8b\x38\x15\xd9\x02\xa2\x70\x44\xf9\x56\xd1\xff\x11\xb2\xa9\x86\xda\x56\x73\xce\x17\xfa\xb1\x82\x67\x46\xd7\xab\xa0\xe1\x31\x6e\x3b\x98\x42\x42\xd6\x54\x47\x23\x9c\xe0\xad\x0a\xfa\xd1\x90\xcc\x2d\xc8\xf0\xef\x60\x26\x82\xcb\xaa\x21\xb5\x34\x72\x6f\xc6\x2e\x3d\xaa\xd7\xd9\xe7\xcf\x7a\x9d\x40\x6d\xa3\x9b\x14\x00\xd7\x2b\x68\x9b\x8c\x7c\x9f\x58\x7a\xf8\xa2\x21\xd5\x86\x77\x6d\x12\x63\xee\x13\xc8\xe6\x93\x56\x0d\x6c\x88\x68\xb3\xfb\xbf\x24\xa2\x8d\xca\x6f\x03\xde\x3d\xf0\xf0\x9e\x26\xf3\x0a\x05\xfa\x1b\xf0\xb1\x84\x04\xc4\x3c\x36\x82\x15\x9a\x94\x39\x97\xd9\x11\x28\xa8\x57\x38\x0f\x1d\x46\x43\xcd\xc4\x55\x3e\x81\x8f\x9c\x7a\x8c\x87\xc7\xcd\xea\xe8\x1c\x2c\xcb\x8d\x77\x91\x64\xc8\x91\x3a\x21\xc6\xcb\x30\xca\x9b\x61\xac\x02\x7f\x2c\x60\x51\x30\xc6\xb3\x07\xc6\x93\x71\x18\xc0\x99\x85\x76\x2a\xe0\xd2\x47\x46\xf3\x57\xf8\x74\x22\xaf\x89\xd5\xe1\x3d\xd0\xd4\xb9\xf2\xcd\xb5\x6f\xe2\x83\x54\x19\xb9\xa9\x79\x7f\xa2\x64\xa3\x4e\x72\x0c\x48\x99\x03\x96\x2e\x8a\x88\x6e\xea\xc1\x09\x73\x2a\x78\x6a\xf5\xc8\xee\xd8\x65\x6f\x32\xa1\xf8\xfe\x4a\xdd\xa3\x93\x80\xc9\x45\xe5\x11\x24\xda\x47\xc9\x2f\xc3\xe0\x44\x0b\x9e\x82\x95\x37\x04\xfd\xc9\xd0\xd7\x78\xb1\xc4\x07\x68\x70\x00\x04\xf7\x2c\x4c\x13\xc6\x27\x13\x1a\x2c\x2c\xea\x5c\xca\x6d\x13\x91\xf3\x30\xda\x10\x61\xa8\x82\xb0\xbe\xc8\x05\xa4\xdf\xcb\x39\x68\x3f\xab\x19\x7f\xde\xf4\xb4\xf3\x85\x68\xf2\x8e\x98\x34\x43\x76\x5e\xca\xcd\x18\xd4\x89\x6d\x2c\xdc\x8c\x6e\x50\x45\xda\x07\x03\xb6\x30\xcb\x8b\xea\xc2\x4f\xe7\x06\x4e\xe9\xa5\x5a\x36\x50\xdc\xab\xca\xc4\x55\x7e\xaf\x32\x6c\x35\xad\xcf\xc3\x8f\x2d\xab\x83\x39\xcf\x83\x99\x41\xa4\x35\x87\xba\x7d\x54\x9a\xe1\x13\x0c\x73\x24\x6a\x7d\xbd\x7d\x2e\x5a\x37\x8f\x82\x86\xd3\x55\x19\xea\xb3\xae\xa4\x40\x37\x3d\xfe\xcd\x8c\xe9\x90\x95\x71\x7c\x48\x3f\xbf\x58\x42\xfd\x43\x1b\x4f\x45\x0a\xaf\xc2\x2f\x3b\x62\xe7\x54\xe1\xe3\x66\xd3\xdc\x1b\x41\xb4\x16\xcb\x6c\xa6\x67\xab\x65\x20\x58\x91\x2c\x49\x73\x13\xf8\x9a\x37\xd8\xd8\x46\x2e\xbd\x00\x6f\xa4\x6e\x68\x3e\x48\xe6\x0b\x9e\x8a\x9a\x25\xbd\x30\xc6\x5b\x36\x3e\xc6\xd6\x5f\x5a\x66\xf9\xe2\x18\x05\xdf\x69\x5b\x4f\xc1\x31\xd5\x6c\x49\x12\x09\x14\x13\x57\x37\x67\x71\x1d\x66\x79\x06\x37\x3d\xf2\xd8\x30\x47\xbf\x82\xf5\x12\x6e\x61\x0b\x11\x84\x53\xb4\x81\x25\x20\x19\x26\x3f\x5e\xa4\x22\x10\x13\xbc\x08\x02\x3f\x05\x0b\x76\xf4\x86\x0d\xa3\x49\xc0\xd3\x49\xd6\x62\xec\xe7\xf0\x4a\xc0\xbe\xd6\x07\x82\x1c\xd6\x23\x78\x7c\xe8\x3d\x82\xfb\x26\xfe\xf1\xb8\xd9\x7b\xd4\xa0\x34\x2f\xfa\x33\x3d\xe0\xa1\x46\x56\x95\x5a\xd0\x70\xf8\xb0\x11\xb4\x14\x64\xc0\x81\xf8\x83\xce\x19\x13\xc8\xe8\x67\xa3\xc9\x5c\x85\x49\x20\x6a\xd8\xe8\xd0\x99\x05\xd1\xbe\x13\xd7\xf7\x8d\x64\x8d\x69\x0b\x38\xa4\xe6\x3f\x0a\xa6\x3c\xfd\xc4\x35\x9f\x2f\x22\x71\x88\xa6\xfa\x52\x70\x93\xe0\x28\xfd\x31\xc5\xb5\xb1\xad\x89\x4d\x9e\x31\x7c\x85\x7f\x34\x0b\xd7\xfc\xe1\xa3\x16\xb6\x37\xac\xaa\xe6\x61\x5b\xaf\xc1\x1e\x79\x50\xc7\x7b\x24\x69\xc3\xee\x25\xe0\x71\x20\xa2\x82\x5f\xa4\x88\xf3\x30\x15\x11\x24\xeb\x86\x84\xd5\x56\x34\x9d\x7a\x45\x37\xbd\x28\x6f\x1e\x7b\x8d\x5b\xdf\xf5\x8b\x9d\x8b\x6b\x11\x2c\x29\x1d\x3f\x3a\xbb\xc4\x13\xe3\x57\x62\xe9\x63\x2a\xe7\x75\xe6\x35\x0a\x67\x29\x7a\x3a\x38\x99\x22\x7e\x4e\x72\xc6\xd9\xd9\x43\x4f\xf5\x7d\xc3\xe6\x2b\x98\x08\x3c\x56\x7b\xe9\x71\xc5\x01\xf3\xaf\x77\x30\x15\xce\x25\xf7\x40\x52\x76\xbe\x60\x84\x84\x26\x40\x37\x08\x6d\x78\x8a\x43\x1c\xa0\x0c\x57\x7f\xa5\xb5\x62\xa4\x15\x94\xe2\x53\x85\x4a\x10\xe5\x75\x73\x58\x3a\x23\xd9\xa4\xf6\x7b\x86\xda\x75\x96\xcb\x3d\x87\x46\x4b\x66\x7f\xa9\xe7\x42\x37\x1a\x1b\xee\x29\x52\x74\x2e\x5a\x52\x2e\x06\x2b\x05\x6d\x28\xae\xb4\x00\x18\xa1\x2d\x5d\xd3\xf8\xb4\xda\xea\x88\x2d\xf4\x8e\x3c\xa5\x42\xca\xe3\xcd\x02\x8e\x09\x69\xae\xab\x63\x56\x8b\xeb\xea\x99\xc0\x31\xb4\x68\x85\xd9\x80\x52\x43\xd5\xea\xd5\x00\x16\x2a\xf8\xf5\x10\x6c\xab\xc5\x44\xa5\x21\x55\xa3\x43\xe5\xa9\xfa\x6b\xb3\xbe\x74\x03\x43\x82\x79\xa1\xa1\x96\xbe\xab\x29\xdd\x28\x3c\x0d\x04\x3c\x8a\xf8\x38\x12\x85\x35\xb5\x94\xe4\x85\x65\x55\x18\x76\x16\xd2\x60\xd5\xba\x55\x2d\x0a\x7c\xae\xa6\x95\x25\x25\xac\x6e\xc4\xab\x9b\x07\xe6\xcb\x3f\x09\xbf\x25\x52\xae\x8e\x05\xa8\xc4\x28\x0d\xcd\x22\xf7\xc2\xd9\xab\x53\xc6\xe8\x43\x4d\x0a\xd0\x18\xb3\x64\x49\x3e\x63\xf2\x16\x9e\x4c\x15\xbb\x38\xd4\x6b\xda\x6a\xb5\xbe\xd8\x1e\x39\xe0\x23\x6a\xef\x05\x70\xc6\x81\x85\x07\xb5\x28\x5f\xd0\xf3\x5b\x9c\x27\xcc\x0c\x33\xd3\xb1\x27\x25\x24\xd9\x19\xf8\xd5\x66\x58\xaf\xc4\xa4\x0c\x57\xda\x78\x5e\x29\xb6\xfb\xad\xc7\x16\x53\x87\xd5\xa1\x39\xac\x1a\x05\xd8\x5f\x7d\x58\x31\x3a\xa2\x0e\x6f\x3d\xa2\xb0\xcb\x2f\x05\xa6\xaf\x32\x87\xcd\xf9\xe2\xde\x7c\xd9\xb9\xf2\xcd\xf9\x02\x69\x56\x8b\xf2\xb8\x48\x4c\x7f\x28\x11\x1e\xb2\xd0\x39\x5f\x48\x11\xf4\x63\xbd\x94\xc7\xe8\xad\x39\x2f\x95\x78\xa3\x1e\x4d\xa0\x4c\x64\x39\x89\x3a\xae\x0d\xa8\xb2\xa8\xc0\xb4\xa7\x30\x6f\x79\x13\x5f\x46\x11\x29\x85\x52\x81\x91\x5c\xb0\x75\xf1\x66\xa6\x50\xa2\xc0\xf4\xd4\xb1\x81\xeb\xcc\x95\x85\x86\x09\x57\x22\x09\x0f\xb4\xb1\xca\x29\x11\x2e\x7e\x2a\xc9\x2c\x55\x0b\x45\x66\x9c\xc3\x29\x1c\xab\x79\x66\x04\x07\x78\x70\xc5\x50\x40\x63\x3e\x17\x94\xc4\x71\xbe\xd4\x33\x45\xa9\x12\x8c\x78\xf1\x21\x62\xb3\xa4\x6d\x60\xdf\x71\x65\x8d\x6d\x47\xe1\xc4\x05\x8b\x05\x7d\xfd\xdb\x78\xd1\x93\xd5\xca\xf6\xc8\x70\x7d\xb1\xd8\x90\xb1\x00\xbe\xcf\xa5\xcf\xbd\x77\x3a\x17\x37\xeb\x62\x56\x75\x1b\x94\xa3\xd2\x93\x28\x24\x8d\xa0\x66\x9a\x33\x3a\x23\xbc\x87\x0e\x0c\x95\x8c\xff\xa7\x63\x3a\x13\x33\xb1\xe3\x3a\x9f\x59\xf6\x0a\xa4\x74\x82\x35\x9d\x51\x20\x36\x15\xe4\x39\x07\x8f\x10\xae\x15\x6b\x28\x64\x61\x9c\x17\x88\x6f\x04\xb6\xec\xac\xc6\x2f\x31\xf4\x9d\x31\x51\xcf\xea\xb8\x2f\x64\xb1\x04\x66\x19\xaf\xe7\x22\x8a\x90\x0f\x14\x82\x2c\x53\xf2\xf6\x64\x65\xb9\x72\xe9\x10\xa5\xf6\x41\x43\x86\x2c\x10\xc0\x0d\xb5\x35\x19\xfa\x5f\xc9\xa3\x44\x45\xdd\x29\xc5\x6f\xc8\xc0\xa9\x92\xac\x29\x24\x2c\x63\x5a\x69\x9b\xd1\xb8\x1e\x5d\x8d\xa2\x4a\x9a\x82\x6e\xac\xd2\x24\xbe\xd0\xcf\x89\x8f\x15\x16\x1b\x74\x6f\x48\x31\x19\xa6\xb6\x89\x31\x7e\xd0\x99\xe5\xfe\x73\x1c\x4e\xc1\x3b\x3e\xa7\x30\x39\x59\x83\x65\xcb\x60\x26\xe7\x70\x7c\x95\xa4\xfc\xd2\x99\xa9\x13\xaa\x1a\xfa\x82\xb9\x26\xe8\x01\x4a\x10\x58\xae\x1d\xc4\x40\x45\xa7\xf0\xc7\x38\x5a\xe1\x26\xb1\xeb\xe6\x4d\x4e\x6e\x60\x7b\xbd\x4c\xc7\x10\xa2\xe1\xb1\xba\xe8\x2c\x79\x44\x53\xb6\xf0\x2f\x79\x30\x05\x18\x0b\xb3\x6c\xa9\x0e\x51\x2b\x08\x4a\x26\x7b\x89\x93\xb8\xf9\xee\x54\x77\x94\x49\x46\x0e\x15\x75\xc9\x03\x15\xae\x0b\x14\xf6\x6e\xca\x4f\x1d\xb0\x12\x5d\xfd\x38\x1a\x13\xc9\xbe\xc1\x64\x1c\x4d\x5b\x94\xc7\xdd\x9c\xaf\x31\x1f\xfd\x15\xd9\xb8\x80\xa9\x8d\x14\x8d\x68\x55\xec\xd1\x5b\x6f\x71\x16\x2f\xd6\xa6\x41\x72\x27\x80\xe9\x0b\x8c\x60\x53\xe8\x71\x09\x0b\xa2\x8f\x37\x30\x8a\x0d\xde\xdf\x95\x28\x21\xe8\x71\x38\xcc\x23\x31\x61\x8f\x7a\x14\xbd\x08\xcc\xa9\x21\x9c\xcc\xa6\x70\x48\x18\xdf\xd9\xe6\xdf\xf0\xc9\x52\x90\x5e\x1a\xbf\x64\xf5\xeb\x53\xeb\x1b\xec\xc6\x23\x3b\xeb\x26\xca\xc8\x65\xb9\x8f\x33\x29\xdc\xe1\x06\xb3\x36\xa7\x8d\x28\x6b\xcb\x82\x28\x3f\xe3\xd9\x4c\x59\xd3\x2b\xdf\xcb\x69\x12\x45\xc9\x8a\xce\xc4\xec\x90\x79\xf8\x7c\xe6\x35\xb4\xad\x1e\x1c\xe2\xda\x40\x01\x45\x3d\x30\x35\x50\x5d\xb1\xa6\x32\x0b\xb7\x2e\x0c\x2a\x51\xf2\xda\x0a\x29\xd2\x62\x20\xe9\xe9\x9d\x4d\x62\x94\xec\x58\xc7\x60\x66\x72\x7b\x9a\xcd\x26\xae\x39\x26\x2b\x5c\x25\x16\x1f\xa8\x58\xb4\x07\xc5\x68\x37\x14\x0e\x87\xfa\x24\xe9\xb2\xc1\x3c\xde\x83\xe4\x14\x7d\xf9\xbf\xff\xd0\xc3\xe9\x1c\x3d\xf1\xb0\x22\x81\x71\x6c\xdb\x37\x0c\x4d\xd9\xc5\x23\xfd\x65\x7f\x5d\x72\x29\x78\xa4\x3c\x20\x26\x86\x44\x26\xc5\xc4\xf3\x93\x57\xa7\x1f\x65\x7f\xe7\x2f\x86\xa3\xb3\x8f\xb2\xab\xfe\x5a\x2e\x04\xc4\xfb\x48\xe2\x46\xa1\x3f\xda\xb1\x14\xe3\xdd\x84\xf8\x21\x78\xe3\x65\xae\x02\x82\xa1\xe1\x2d\x9d\x23\x2a\x40\xbb\x1d\xce\x82\x35\xd9\x2b\x74\x9d\x21\xc9\x4d\xd9\x3d\xc8\x6d\x6b\xe6\xa2\x63\xcc\xa8\x54\xbd\x62\xad\xec\xec\x28\xe0\x1e\xf5\xad\x6c\x5a\xc6\xc6\xec\x22\x36\xa2\x54\x8b\x81\x56\x1e\x12\x81\x6a\xc1\x90\x72\x5b\x0a\x65\xc4\x93\x59\x63\xa3\x30\xa6\xdf\x69\x70\x3c\x4a\xec\x6d\xac\x18\xda\x57\x8f\xae\x17\xe5\x7f\xcc\xc8\x6c\xef\x81\x7b\x8f\x8a\x62\x87\xfe\x01\xc3\x82\xc7\xce\xaf\x1b\x97\x8a\x03\x47\x59\x05\xac\x70\x65\x9b\x63\xc6\xf1\x4c\x67\x3d\x91\x22\x95\xec\x08\xdd\x60\x0b\x0e\x41\x60\xc4\xc9\x63\xc6\xd3\x94\xaf\x2b\x3d\xcb\xca\x1e\x44\xa8\xe7\xb5\xee\x85\x14\xec\xca\x49\x7f\xea\x86\x5a\xcb\x8b\x46\x49\xd0\x1f\x0b\x73\x90\x34\x50\xd3\x1c\xd3\x53\xdd\x26\x93\x25\x3a\x56\xc1\xcc\x08\xc5\x44\x6d\x4a\x44\x91\x08\xd5\x11\x16\x24\xf1\xa4\x99\x27\xcd\x88\x67\xb9\x8e\xbc\x42\x28\xc3\x8e\x6d\x6d\xf8\x2a\x0d\xf3\x5c\xc4\x0e\xb7\x83\xc8\x93\xc5\xa0\x70\xc4\x4c\x79\xa6\xb4\xe5\x62\xe2\x44\x4d\x33\xd1\xd2\x74\xa4\x34\xb8\x80\xbb\xc1\xd2\xec\xa3\xf3\x86\xa3\xce\xbd\x99\x3e\x57\xce\x92\xf6\xf1\x07\x36\xf4\xf2\x20\x32\xde\x9f\xea\x0a\x47\x87\xb6\x3a\xf5\xea\x15\xd6\x7f\xc7\x4b\x8c\x6a\x2d\x5c\x5f\x49\xe3\x29\x59\x38\x39\xcf\xad\x77\x98\x89\x98\x6e\xd6\x95\x14\x44\x5d\x0c\x79\x48\xe7\xa9\x94\xbd\x1c\x61\x55\x3f\x74\xe6\x10\x21\x4d\x9d\x06\x76\x7b\x9e\xc9\x5b\x52\x88\xa1\xc9\xd3\x0b\xcc\xb1\x06\xf7\x29\xc6\x86\x3c\x98\x01\x59\xab\xf2\xb0\x0a\x86\xb5\x5e\xdc\x50\x9f\x1a\x47\x8d\xe8\xd3\x0c\x25\x49\x2e\xd1\x50\x02\x54\x12\xb2\x8d\xdc\x73\xe3\xf0\x02\x4f\xf9\x95\xc0\x14\xc4\x10\x27\x01\xa2\xe7\x82\x0c\xaf\xf0\x69\x34\x36\xa9\x20\x73\x0a\x49\xb6\x2c\x4a\x72\xbc\x40\x4b\x21\x14\xc4\xe3\x2b\xb0\x15\x6c\xd5\x69\x20\x72\x32\xa5\x91\x5b\x56\xe9\x5d\x1d\xb9\xe8\x90\x99\xf5\x57\x41\xbb\x8a\x5e\x9c\x8f\x8d\x73\x95\x72\x2b\x31\x51\x91\xc0\xf8\xd7\x58\x7d\xd4\x89\x21\x11\xe9\x19\x82\x23\xde\x04\xaa\x27\xc1\x63\xba\xe5\xa0\x9f\xa2\x1d\x46\xe9\x1e\x44\xec\x68\x57\xae\x78\xfa\x89\xa7\x17\x59\x41\xc5\x62\x5d\x9c\xd5\xca\x66\x55\xb7\x67\xa5\x78\x41\xc8\x35\x5d\xf7\x3c\xfc\x78\xde\xfe\xd8\x70\xde\xe1\xe8\xdf\xdf\x08\x61\x87\xcc\xa9\xed\x57\xd7\x66\x84\xd6\x42\xed\xce\xa6\xda\x84\xf2\x42\xf5\xed\x4d\xd5\xd1\x65\xc5\xae\xba\xb3\xa9\x2a\xfa\xb3\x38\x75\x77\x3f\x56\x55\xfd\x52\x56\x38\x9d\x42\x32\x4e\xc7\x0e\x1f\x19\x9c\x1d\x22\x14\x73\xaa\xdc\x61\x25\x41\x68\xde\x60\x15\xe1\x4a\xd9\x1b\x32\x51\x2a\x9b\x7a\xbd\xe1\x28\x66\xab\xf2\x2f\x78\x34\xe7\x41\x9a\x3c\xd2\xdf\x33\xca\x7e\xce\xd8\x49\x4e\x91\x14\x43\x32\x17\xb6\x03\x35\x2b\xf7\x5b\x70\x52\xa9\x33\x00\xa2\xf7\x3b\xb1\x07\x30\x6e\x59\x53\x1c\x30\xa8\xd1\xb2\xfd\xb3\xc9\x7c\xb7\xa6\x76\x8c\xdc\x5e\x76\xbe\xce\x3b\xd8\xa6\x3b\xae\xc2\x96\xcf\x32\x99\xa4\x7f\xbc\xd5\xa5\xf8\x64\x8a\x82\x67\x29\x09\x03\xe3\x0d\x7c\xef\x1e\x1b\xe5\x41\xa6\xee\xe2\x29\xc4\x37\x5e\x12\x5a\x2a\x1a\x93\x0f\x40\x98\x6b\xb9\x45\x89\x2d\xb6\x61\xa5\xc6\x04\xbf\x74\x9e\xc0\x69\xb4\x26\xe0\x80\x85\x98\x82\xbf\x77\xcd\x78\x72\xa1\x4b\xac\x13\xda\xa7\xc2\x57\xd6\xb6\x09\xb3\xff\x3d\x54\xae\xde\xe4\xbd\x58\x4c\x16\x51\x67\x3f\x31\xce\x0e\xd9\xd8\x7d\x83\xa8\x5e\x44\x7a\x99\x28\x20\x7a\x9e\x4c\x28\xf3\x40\x55\x46\x89\xaf\xc3\x37\x35\xbe\x2f\xbe\x83\x7f\x61\x7c\x63\xd6\x8b\xef\x80\x6f\x89\x68\x1d\xcd\xbc\x09\xe1\xb7\x9a\x4e\xaa\x0b\x97\xcc\x6d\x04\x8d\xb3\xaf\x45\x50\x61\x5e\x9b\x72\x65\x7c\x97\xc9\x59\x6b\x51\x3d\x8d\x6c\xf6\xd5\xd3\xb0\x60\x17\xc6\x5a\xf0\xc7\x54\x39\x2d\xbe\x6d\x22\x44\x39\xd5\xd3\xe0\x51\xfe\x0d\xf3\x20\xd0\xdf\x01\xe3\xb6\x3f\x53\xe5\x40\xe7\xc9\xe4\xab\x07\x7a\xef\x9d\xf5\xad\x3b\x64\x90\xcc\x17\xcb\x5c\xca\x8a\x4a\x74\x33\x3a\x52\x0c\x88\x8a\x0f\x41\x8e\xb7\xa1\x9e\x6a\x90\x47\xb5\x60\x56\x67\x7f\x53\xdd\x56\x47\x73\x2a\x58\x2c\x83\xf1\xb4\x19\x01\x87\x1c\x05\x94\x15\xc6\xa8\x43\xe7\x7c\x01\x31\x40\x38\xc6\x2a\xb5\x3a\xad\xcd\xad\x1e\x8d\xd9\x22\xe1\xd5\x8e\x39\x7a\x3e\xff\x48\xc5\x5f\xcc\x22\x12\x97\x44\xa2\xcb\x53\xd2\xa4\x9b\xb0\xf6\xee\x62\x8a\x49\x6d\x1a\xdf\x6d\x29\xe1\x8d\xc6\xdd\xf9\xa5\xe0\xf4\xb6\x81\xd7\xd6\x16\xeb\x83\x8f\x9f\xe4\x08\x0d\x36\x4a\xd2\x15\x4f\x27\x28\xca\xbf\x15\x90\x14\x14\xf9\x7f\xc2\xf8\x55\x12\x4e\x58\xcc\xaf\xc2\x0b\x0e\x7a\x32\xbe\xe2\xa8\x94\xb5\xa1\xe5\x56\x42\x83\x05\xbf\x10\xad\xa2\x2d\x59\x21\x54\x4f\xb7\x8b\xb4\xe4\x94\xed\x55\x94\xed\xd7\xd9\x4f\x0e\x03\xbf\xed\x85\x94\x1d\xde\xb1\xba\xf2\x32\x65\x96\x15\x7d\x81\x84\xa7\x9b\xc8\x57\x6e\x9d\xe1\xe9\x40\x9b\x69\x2b\xb3\x8e\xc1\xe9\x89\xf6\xd1\xd0\x85\xa7\xa7\xdb\xaa\xf0\xb5\xc9\x05\xfe\xbf\x3a\xda\x88\x7b\x15\xc9\x6a\xca\x74\x1e\x5f\x3f\xa7\xa1\x88\x26\xa0\x74\x3c\x64\xe7\xf4\xea\xd0\x20\x5d\xa4\xba\xba\x35\xb4\x3b\x3b\x78\xb1\x83\xc4\xff\xf1\x81\x05\xc7\xb8\x2a\x43\xdc\x4a\xf5\xe4\x22\x09\xa3\x6d\xf2\xea\xc0\xae\x61\xec\x03\xf8\x9e\xfe\xb6\xcc\x72\xdb\x90\x44\x41\xd3\x61\x8d\x26\xa8\xa9\xc1\x77\x3d\xbc\xee\x8e\xd7\xfa\x96\x80\xf7\x83\x24\xb3\x72\x3d\xb0\xf3\x76\x03\xf4\xae\xef\x5e\x3d\x7f\xf5\xfa\xc3\xab\x8f\x5e\x03\x90\x5a\xfe\xff\x63\x43\x0f\x7e\x04\x91\xa7\xd3\x64\x45\x20\x3a\x7b\x0d\x09\x62\x78\x3a\x90\xcd\x87\xa7\x83\x46\x95\x40\xc2\x74\x30\xee\x86\xf9\xc5\x2a\xa5\xab\xd2\xb9\xef\x77\x1a\xcc\x3b\x1f\xf9\x12\x18\x70\x7c\x49\x5f\x4f\x98\xf7\xc6\x6b\x00\xfd\xc1\xaf\x75\x0b\x08\x16\x3e\xea\x6c\xff\xfd\x51\xa3\x0c\x6d\x1b\xa0\x75\x8a\xd0\xfe\xd3\x40\xfb\xcf\x4a\x68\x3b\x95\xd0\x76\x00\xda\x76\x11\xda\x5b\x03\xed\x6d\x25\xb4\xdd\x4a\x68\xbb\x00\x6d\xa7\x08\xed\xd4\x40\x3b\xad\x84\xd6\xad\x84\xd6\x05\x68\xbb\x00\x8d\x9a\xfb\xbb\x7f\xf7\x8a\xab\x51\x82\xb6\x5f\x09\x6d\x0f\xa0\x75\x1d\x68\x7b\x77\x80\x76\x50\x09\x6d\x1f\xa0\xed\x39\xd0\xf6\x6f\x87\xb6\xed\x57\x42\x3b\x00\x68\xfb\x0e\xb4\x83\x3b\x40\xeb\x54\x41\xeb\xb4\x01\xda\x81\x0d\xad\xd3\xbe\x03\xb4\x4a\x7a\xeb\xf8\x48\xbd\xed\x8f\x66\x11\x3b\xfe\x1d\xa0\x55\xd2\x5b\x87\xf6\x82\x6f\x43\xdb\xbe\x1d\xda\x4e\xf5\x4c\x71\x2f\xf8\x1d\x1b\xda\xce\x1d\xa0\x15\x66\xaa\x18\xc1\x29\x46\x9e\x37\x9c\xc0\x3f\x90\xe3\xfd\x1f\x09\x51\xc3\xc8\x66\x35\x29\xcb\x78\xff\x21\x29\x19\x7e\xfb\xd5\xab\xd7\x1b\x6e\x47\xe6\x1f\xf1\x1a\x00\xb7\x73\x20\x19\x8b\xff\xd0\x06\x17\xd4\x3c\x0c\x45\xf7\x6a\x39\x87\xfc\x0e\x8c\x61\x59\x2f\xca\x55\x11\xfc\xfd\x52\xe4\x1c\x0b\x14\xb8\x5d\xc9\xeb\xbc\xce\x7f\x7c\x2f\x70\xbe\x04\xb7\xfd\xff\xbe\x17\xb8\x8e\x04\xb7\xf3\x6f\xdf\x0b\xdc\xb6\x04\xb7\xfb\xef\xdf\x0b\xdc\x8e\x04\xd7\xfd\xf5\x7b\x81\xdb\x95\xe0\xf6\x7e\xf8\x5e\xe0\xba\x12\xdc\xfe\xe3\xef\x05\x0e\x0e\xb4\x83\xda\x77\x02\xb7\xb3\x2f\xc1\xb5\xeb\x25\x70\x4e\x1a\x54\x09\xa1\x00\xb0\xb2\x92\xde\xcd\xfb\x92\x0b\x36\x3f\xdd\x0e\xf5\x96\xef\x06\xa0\x64\xf9\x47\x4f\xbe\x17\x40\x94\x14\xc4\x34\xb9\x66\xcd\x4f\x20\x79\x1f\x3d\xa1\x9e\xf6\xb6\xbf\xef\xd0\xbb\xfe\x1f\x35\xf2\x93\x9c\x47\x21\x8f\xd9\x93\xc7\x6a\xe8\xb2\xab\x27\x65\x4a\xfb\x8a\xae\x10\xe2\x3e\x0a\x60\xfd\xe7\xa7\x6f\x24\x5b\x1e\x67\x35\x4c\x0a\xda\x60\xde\x2f\x63\x09\x07\x4a\xc6\xf0\xb7\x2c\xaf\x6f\x14\x9f\x8c\x70\x19\xa6\x36\x57\x3e\xc0\x1e\xce\x7a\x7d\xd9\x41\x36\xab\x79\xbf\xe4\xe6\x00\xf8\x8b\x84\x08\x92\x6f\x43\x33\xe0\x06\x2b\xcb\x65\xfb\xc0\xee\xfe\xfa\x9f\x5e\x63\x03\xe7\x66\xc8\xdd\x41\x9a\x2a\x89\x7a\x1a\x0a\x6c\xad\xd5\x87\xdb\xa0\x7c\xb8\x11\x4a\x17\x0e\x06\x31\xbc\x0d\xca\xf0\xe6\xb1\x00\xc7\x4d\xdf\xde\x06\xe5\xed\xcd\x50\x80\x33\xe6\x67\xb7\x41\x39\xbb\x19\x0a\xcc\x68\xfd\xdf\xb7\x41\xf9\xef\x9b\xa1\x00\x5b\x5d\xbe\xbb\x0d\xca\xbb\x1b\xa1\xec\xc1\xd1\x11\x9e\xdc\x06\xe5\xe4\x66\x28\x30\xa3\xe4\xf5\x6d\x50\x5e\xdf\x3c\x23\x38\xb3\x17\x6f\x6e\x83\xf2\xe6\x46\x28\x1d\x94\x18\xff\x76\x1b\x94\xf3\x9b\xa1\x80\x6c\xf7\xf1\xcb\x6d\x50\x3e\xde\x02\x45\xca\x9b\xbf\xfc\xf2\x19\xc0\x6c\x86\xf2\xcb\x2f\xce\x56\x2f\x6f\xf3\x51\xb2\x4c\xf3\x19\xec\x73\x56\xfb\x20\x20\xd4\x90\x15\x1d\xee\xcf\xe8\x3e\x02\x31\xe3\x30\xb2\xf4\xb1\xb8\x3a\x4b\x92\x88\xd2\xb3\xb2\xf3\x0e\xe0\xf6\x7c\xd0\x7b\x03\x36\x37\x66\xe7\xeb\x5f\x36\xfc\xdb\xc4\x22\xba\x40\x7e\x60\x36\xc4\x1c\x14\xc1\x84\x7a\x74\x6a\x56\xfc\xdb\xb8\xfa\x40\x89\xd9\x69\x35\xc0\xd3\xfb\x03\xec\xc2\x51\x3c\x39\xae\x06\x78\x7c\x7f\x80\x7b\x80\xc3\xe9\xa8\x1a\xe0\xe8\x2b\x00\x02\x9b\xbd\xf8\xb9\x1a\xe0\xcf\x5f\x01\x10\xb8\xdc\xec\x59\x35\xc0\x67\x5f\x01\x10\x18\xde\x6f\x7f\x2e\x01\x54\x92\xfe\x9f\x25\x4c\x49\x23\x05\xd0\x1b\x01\x02\xd9\x5c\x3e\xdf\x08\xf0\xb9\x16\xae\x20\x54\xdf\x27\x75\x7f\xd8\x08\x10\xc4\xc1\xe8\xc5\x46\x80\x2f\xee\x39\x42\x7f\x5f\xde\xad\x9f\x1e\x96\x00\x5a\xe7\xe6\xbd\x70\xd8\x81\x8b\xdd\x2f\xde\x23\xaf\xf1\x7d\x00\xfa\xdb\xa8\x83\x79\x75\x36\x7c\x0b\x06\x74\xbf\xa4\x08\x9a\xdc\x2a\x36\x02\xd4\xdf\x2b\x18\x4c\x38\x55\xfc\x85\xc2\x52\x62\xe0\x9f\x8c\x6c\xc6\x54\x8e\x0d\x96\xcd\x92\x34\x0f\x96\x79\xd6\x62\xec\x75\x0c\x8a\x2b\x05\xc3\xe4\x6c\x00\xcf\x27\xe0\x4f\x83\xad\xf7\x90\x18\x98\x32\xf8\xc2\x07\x29\x35\xcb\x0f\x18\x56\x96\x74\x5c\x98\xc4\x41\x81\xa2\xb6\x58\x53\x99\x52\x00\x8f\x23\x03\x25\x1d\x3b\x8d\x9e\xe8\xd0\x81\x82\xb3\x4c\x44\x42\xd9\x51\xa8\xfc\x16\x13\x9b\x55\xbe\x47\xa0\x8f\x9b\xef\x15\x58\x0a\x21\x53\x05\xbd\x06\xe1\xae\x14\x24\x34\x9e\xc8\x84\x98\x93\xbd\x53\x2a\x82\xe4\x22\x0e\x7f\x47\xeb\x14\xc4\x4f\x9e\x24\x75\x75\x43\x06\xd2\x3c\x3f\x7d\x76\x32\x3a\x2b\x2a\xdb\xca\xff\x36\x31\xda\x03\xe0\x3a\xbf\xff\xc5\x3d\x42\x80\xb4\xff\x52\xde\xd0\x1b\xb9\x2b\x30\xc3\xeb\xff\xaa\x80\xf2\x5f\x77\x87\xd2\x05\x89\x2e\x18\x14\xa0\xa8\xeb\xd2\xe0\x93\x03\xca\xad\x20\xd1\x3e\xb0\xe4\xf8\x7d\xc0\xce\xd5\xfb\x0d\xb0\xde\xdf\x06\xeb\xbd\x7d\x27\x00\x58\x60\xbd\x5a\xc1\x01\xfa\x05\x0e\x60\x57\xd0\xbf\xc3\x77\xcd\x54\x00\x5b\xf1\xab\x0d\x63\x7b\x75\xdb\xd8\x5e\x59\x63\xdb\x03\x9c\xcd\x5f\x56\x60\xfe\xe5\xdd\x31\xef\xcb\x05\xf4\x1a\x7f\x72\xa1\xf0\x28\xaf\x11\x17\x71\x38\xdc\x46\x28\x92\x98\xbc\xd6\x8f\xdf\x0a\x45\xca\x46\x5b\x3f\x55\x63\xfb\x93\xd6\xfd\xfc\x04\xbc\xfb\x06\xa9\xe6\x34\xbc\xce\x67\x98\xd7\x19\xac\xf0\x2c\xe5\x12\xaa\x99\x07\x67\x6f\x5f\x6c\x12\x57\x9c\x22\x83\x26\x68\xd7\x7b\x01\x1b\xee\xee\xed\x0e\xe0\x24\x3e\x7f\xd1\x7b\x73\xbf\xfe\xb6\xe1\xc0\x65\x5e\x09\x65\x46\x0d\xb6\x09\x8b\x07\xd0\xf4\xfc\xed\x7d\xbb\x3c\x40\xee\xff\xf6\xe5\xf0\xd5\x3b\xc3\x55\x6e\x6c\xe7\xbe\x68\xc0\x5b\x81\x7a\x12\xd8\xc1\x51\xbc\x79\x7b\x76\x3a\x78\x7b\xe3\x8b\x00\xe2\x77\x07\xd4\xd8\xa7\x83\xb7\x2f\x9e\x5b\xa3\xde\x58\x1d\xee\x05\xe7\xfd\xb7\xc3\xde\x2d\xd5\x9d\xc7\x12\x78\xcd\x4b\xa6\x2c\x0b\xaf\xf1\xe9\x0e\x13\x80\x93\x11\x28\x26\x68\x81\xc1\x83\x30\x71\x7e\xf2\xea\x74\xf8\x16\x16\x1c\x36\xe0\x73\xb1\xc6\xd4\x99\xb4\x4b\x8b\x0b\x50\x5a\x89\x6d\xe4\xd3\xcf\x5e\xbf\x1c\x22\xd5\x28\x30\xcf\x92\xb9\xd0\x5b\xfd\x76\x30\xb8\x30\x6f\x7e\x7e\xf7\xc6\x05\xf3\x86\x5f\x88\x77\x8b\xbb\x8e\x66\x07\x47\x73\x3c\x44\xb2\x30\x60\x8e\x45\x64\xf8\xce\xed\xa3\xd9\x25\x21\xe1\xb8\x00\x66\x18\x4f\xee\x03\x66\x87\x26\x75\x4c\x2f\x46\xf6\xa4\x20\x9b\x49\x15\x8d\x57\x6d\xf6\x9e\x5c\x39\xfd\xc6\x25\x8f\x6d\x2b\x32\x2c\x18\x63\xab\x00\x5a\xb0\xce\x65\xbb\x1c\xcc\x29\xaf\xc0\x99\x58\xad\xd0\x96\x0e\x71\xc8\x2e\xab\xa2\xd3\x29\x07\x2b\x98\x07\x3c\x4a\xa8\x95\xd1\xb3\x80\x41\xd1\xda\xdc\xbe\x32\xf0\x78\xa0\x10\xe1\xc2\xb8\x13\x2a\x70\x24\x70\x3d\x7d\x7b\xf2\xf3\x33\x20\x59\x1e\xd4\x48\x39\x23\x4f\x55\x7a\x14\x1a\xdc\x0d\xd2\x9e\x71\x9e\x68\x30\x0b\xd2\xb1\x81\x74\x7c\xa7\xe5\x39\xf7\x77\xe0\xb1\xeb\xd5\xbb\x97\x2f\x5e\x0f\x9e\xdf\xe9\x65\xf0\x43\x98\xcf\x58\xbc\x9c\xd3\x66\x9d\x6a\x5f\x95\x05\x9f\xb0\x0b\x11\x8b\x94\xe7\x24\x3e\x42\x7a\x0a\x70\x15\x41\x97\xad\xcc\xda\xca\xb6\x98\xe6\xd9\x3b\xdf\x73\x1f\x46\xf1\x3d\x1f\x5c\x66\x0d\x24\x65\x80\x9f\x8a\x4c\xc5\xa0\xdc\xda\x62\x68\x64\x86\x56\xe1\x7a\x80\xb1\x35\xa6\x65\x1c\xfe\x75\x69\x8d\xa8\xd5\x52\xda\x33\xdc\x7b\xcf\xdf\xc0\x8b\xce\x46\xb4\x95\x79\xf9\x1e\xb5\xf3\xef\xd9\x6e\x9f\xda\x75\xee\xd9\xee\x80\xda\x6d\xdf\xaf\x9d\xdf\x06\x12\x7e\xfe\x66\xe7\xbe\xed\x7c\x6c\xb7\x7b\xdf\x76\x1d\x6c\xd7\xbd\x6f\xbb\x6d\x6c\xb7\x77\xdf\x76\x3b\xd8\x6e\xff\xbe\xed\x76\xb1\xdd\xc1\x7d\xdb\xed\x61\xbb\x27\x1f\xbf\x9f\x6a\xbe\x7d\x80\x30\x9b\xdf\x13\x66\x17\x61\x3e\xbe\xe7\xfc\x7c\x5a\xf7\xad\xfb\xb6\x23\x3a\x6b\xdd\xb9\x9d\xbe\xf9\xa1\xfe\xea\xb5\x71\xb1\x64\x79\xb2\xb0\x45\xc3\x2e\xcc\xa5\xdf\x43\x3e\xc5\xc0\xb6\x88\x1e\xd4\x9f\x28\xc3\x01\xf9\x4b\xbd\xf0\x9a\xfe\x64\x83\xd5\x40\x17\x5f\xbf\x3f\xa8\x83\xd2\x81\xf7\x9f\x0a\xde\x7f\x56\xc1\xab\x7c\xc7\xed\xc2\x51\xf3\x76\xf8\xe2\x75\x0f\x40\x3a\xf0\xde\x2a\x78\x6f\xab\xe0\x55\x5a\x0e\xec\xe3\x4b\x2e\xc9\x67\x85\xf1\x9d\x2a\x78\xa7\x55\xf0\x2a\x6d\x07\xf6\x61\x4f\x7e\x20\xef\x3b\x84\x67\x99\x10\x38\x57\x92\x02\xbc\x2a\xeb\x81\x0e\xda\x22\xf4\xdf\x9e\x9c\x35\xd1\xb8\xc1\x82\xb7\x77\x33\xbc\x2a\xfb\x81\x0e\x5a\x23\x48\x78\x4f\x4a\xf0\xf6\x6f\x84\xe7\x5a\x10\x68\x92\xf2\xf7\xb6\xd9\xf9\xcb\x77\x67\xc3\x8f\x0d\xe6\xef\xed\xb0\xf3\xf7\xaf\x5f\x34\x3f\xc2\x79\xe2\xef\xed\xc2\x9f\x4f\x3e\x82\x5b\x21\x98\xb1\x19\x73\x76\x4d\x8b\x0a\x12\xe6\xe0\x63\x73\x1e\xf3\x0b\x91\x36\x30\x63\x84\x07\x99\x00\xae\xc0\xba\x07\xa4\x91\x79\xcb\xca\x2e\x25\x3b\x0f\x33\xc6\xa3\x2c\x29\xbc\x37\x79\x19\x6b\x7e\x52\x76\x40\x92\xb8\x5d\x6f\xd6\x21\x66\xb5\x34\x99\x80\x51\xbf\x90\xa4\x94\x42\x1f\x8e\x2f\xe5\x67\x75\x37\xfb\x7f\x5b\x36\xde\x90\x84\xce\xf1\xc6\x45\x23\x4a\x6c\xf0\x06\x7a\x77\x12\x86\x38\x31\x14\x6e\xb3\xcb\x32\xb1\x0c\xd0\xa2\xac\xf3\x77\xaf\x6a\xba\x59\x90\x26\x94\xb2\x1b\x7f\x85\x8c\xa3\xe3\xe5\x74\x2a\xd2\x6f\x9f\x3b\x08\xf4\x9b\x52\x33\xba\x53\x9f\x25\x73\xf1\x5c\xac\xb3\x53\x1c\xd0\xaf\xf6\xbc\x2d\xbf\x02\x4c\x22\x55\x69\x66\x6a\xaa\x5b\x66\xdb\x85\x5e\x2a\x4c\xb5\x95\x61\xa3\x83\xad\x67\x6e\xa8\x66\xfb\xdb\x6b\xfc\x56\x4e\x49\x6d\x42\xaa\x22\x26\xe5\xe4\x31\x44\xd0\xad\x4b\xa6\x8c\xf5\xfe\xd1\xeb\x23\xef\x26\x7f\xc0\xf2\x54\x9b\x01\x7f\xcf\xf5\x19\xdd\xb0\x3e\xa3\x3b\xae\xcf\x30\x9e\xfc\x8b\x2f\x0f\x5d\x64\xef\xb6\x42\x0b\x7e\xb1\x71\x85\x4a\x48\x3a\xdf\xfd\xbb\xf7\xf4\x56\x0c\x61\xff\xdf\x8e\x24\x44\x42\x9e\x2e\x05\x3b\x1e\xbe\x00\x47\xda\x6c\x39\x86\xd0\x40\x22\xe7\xc6\xaf\x41\xf9\x19\xbe\x8e\xcd\x51\xd0\xa0\x78\xb5\x97\x31\xb1\x65\x1e\xa9\x3c\x51\x0c\x03\x21\x52\x5e\xf3\x0b\x91\x33\x2e\xe1\x53\x8a\x14\xcc\x94\xf0\x98\x05\x11\x0f\xe7\xe4\x8d\x52\x68\x1f\x27\xb9\x72\x45\x6e\x38\x7d\x48\x28\x18\x28\x5a\xa7\x3c\x87\x18\x42\x31\xc5\x73\xe0\x18\xad\x17\x53\x04\x86\x10\x82\xda\x9a\x05\xeb\x73\x88\x17\x1b\xab\x7a\x8b\x54\x4c\xa1\x83\x80\xc7\x72\xe6\x14\x34\xc4\x9d\xbc\x0e\x1f\x11\xf0\xec\x3e\x44\x72\x2c\xa2\xbb\x1d\x2e\x3c\xca\xb5\x0f\x07\x26\xe5\x33\x2e\x1d\x3f\xfc\x40\xbb\xac\xd4\xc4\xce\x83\xf6\x83\x71\x49\x28\x93\x14\x18\x50\x3c\x2d\x1e\x3b\xdb\xff\x8c\x63\x47\xeb\x4a\xfe\x88\x9d\xd3\xbd\xeb\xce\x81\xb0\x43\xff\xda\x0c\x46\xa9\x63\xee\x86\xa7\x12\x73\x2e\x88\x27\xb6\xab\xe9\x26\xc4\xbc\x08\x63\xcd\x52\xee\x81\x18\x37\x3a\xd3\x37\x3a\x72\xdd\x7e\xe6\xfc\x44\x6b\xdd\xf3\xd8\x21\x9d\x2a\xbd\x7f\x02\x1d\x1b\x4d\xd7\x3f\x76\x81\x0c\xe5\xfe\xeb\x2f\x51\xdf\x2c\x51\xdf\x5d\x22\x4c\x3d\x47\x41\x9c\xe6\x3c\x5d\x6f\x41\x40\x84\x98\xe7\xb0\x58\x42\xc4\x99\x72\x3f\x2f\x2f\xde\x5d\x57\x09\x1f\xcd\x9d\xe5\x51\xe9\x94\x2a\xc2\xed\x18\x64\xaf\xc2\x85\x18\x24\x71\x2e\xe2\x3c\xfb\x66\x26\x01\x4f\xa9\xf0\xe6\xea\xb7\x5a\x07\xc5\x47\x55\x45\x86\xf2\xa6\xe4\xc4\x9b\xa0\xd3\xd6\xdc\x9d\x10\x84\x79\xc1\x3d\xa0\xe4\x7c\x18\xc2\x29\x5a\x53\xca\xb7\x85\x08\x42\x1e\x59\x01\x90\xe6\x70\x8b\x83\x50\x17\x09\x76\x13\xc6\xec\x5a\x4e\x44\x76\x7e\x11\x27\x73\xd1\xd4\x33\x47\x0f\xd1\x94\xc7\x17\xf0\x84\x9c\x0a\x80\x0c\xfd\x75\x5a\xad\x7d\x38\xcf\x25\xa8\x95\xca\x58\xc6\x60\x52\x98\x08\x89\xc4\x02\x88\xa6\x8a\x5a\xcd\xd5\x2c\x89\x14\x38\x1a\xd9\x9d\xd7\x8e\x2c\x4e\x6f\x58\xbd\x7f\xbe\xab\x59\xf9\x1c\xd7\x98\x94\xcb\x4e\x73\x18\x8b\x94\x8e\xe7\xaf\xbd\x2c\xaa\x94\xb7\x9b\xd3\x97\xb8\xe9\x6f\x7d\xef\x50\x9f\x8b\x3e\x49\xe3\xf8\xa5\x63\xbe\xa8\x57\x39\xfb\xf3\x76\xe1\xf3\xb9\xfb\x79\xa7\xf0\xf9\x97\x5f\xdc\xef\xbb\x85\xef\x1f\xdd\xcf\xdd\xc2\xe7\x5f\xdd\xcf\x7b\x85\xcf\x9f\xdc\xcf\xfb\xd6\xa4\xb4\x3c\xa3\x3e\x1e\x58\x1f\x0f\xbc\x52\xe8\x00\x7b\x2f\xf6\xa2\xfc\xde\x5b\xf1\x2e\x14\x4b\xe6\xcb\x37\x10\xec\x2d\xe4\x82\x00\xbe\x9d\x5a\x6e\xad\x49\x4a\xa1\x8d\xdc\x0a\x8c\x42\xfe\x08\x14\x29\x13\xf1\xaf\xc7\x11\x41\xf8\xe7\x22\x89\x04\x87\x5f\x07\x90\x3a\x32\xce\x45\xba\x48\x4d\xe6\x7b\x0a\x0f\x0b\x37\x94\x20\x59\xac\x59\x90\xcc\xe7\x3c\xae\x4e\xcf\xb1\x81\xf3\x0d\x6e\x42\x11\x05\xa3\x10\xca\xc3\x77\x03\xba\x2e\x44\x7e\x4c\xb1\x93\x6a\x75\xf9\xd7\xa9\x6a\x63\xe5\xe9\x7b\xa8\x01\x41\x7c\xe3\x28\xe2\x8b\x4c\x4c\x9c\x60\x11\x0e\x74\x29\x29\x0c\x06\x72\x56\x05\xf4\xdb\xe9\xa8\xd0\x60\x49\x99\x14\x01\x0e\xec\xc8\xae\xb6\x61\x12\xe2\x52\x62\x52\x3d\x61\xb6\x0c\x9c\x37\x94\xca\x51\x59\x5d\xb1\xf1\x9a\x45\x22\xcf\x55\xbc\xb8\x42\x6e\x49\xec\x16\x4d\xb1\xe6\x49\x96\x1b\x40\x54\x91\xf2\xbd\xaa\xe8\x3a\x8f\x93\x38\x5a\x3f\x66\x2b\x0e\x91\x9e\x30\x7a\x70\x2e\xae\x73\xe5\x30\x1c\x44\xe1\x02\x95\xee\x96\x53\x2c\xb9\xc4\x7a\x93\x34\xbc\x12\xcd\xf1\xda\x63\x2b\x31\x56\x63\xbe\x81\x78\x21\x25\x8a\x5e\x81\xde\x34\x17\xa9\x44\xa3\xed\xbb\x9b\x89\xfc\x2c\x9c\x8b\x64\x99\xd7\xcc\xaa\x04\xb4\x26\x67\xc9\x30\x9e\x40\x40\x57\xf3\xb1\xde\x60\xbb\x26\x1b\x55\xc1\xd5\xf5\x2e\xfe\xb1\x56\x56\xa9\x87\x37\xac\xf3\x4d\xcb\x8c\x86\x64\x7f\xc4\x62\xcf\x79\x0c\x82\x8d\x32\xc2\x83\x8c\x3c\xab\x24\xbd\x84\x58\x4c\x59\x98\x2f\x29\x62\x24\x64\x49\x35\x80\x54\xc0\xb0\x96\xb8\x16\xc1\x00\xf7\x5e\xcd\x93\x20\xbd\x3a\x6a\x9f\xa3\x64\x65\x12\xb0\xfd\x4b\xac\xd9\xa6\x01\x24\x8b\xb5\xee\xff\x2c\x19\x28\x82\xac\x15\x02\x96\xdf\xe9\x06\x60\x45\x34\x37\xc7\x68\x7b\xbb\xfa\xea\x44\x1c\xee\x95\xe4\x70\xc9\x02\xc2\xf6\xc7\x62\xa5\x74\xfe\xc4\xfa\xe1\x29\x3b\x4a\x50\xf6\xbf\x97\x60\x77\xdb\x09\x50\xa6\x38\xec\xb9\x25\xc7\x52\xd3\x2b\xac\xfb\x9e\x81\x12\xc7\xf3\xca\x51\x87\xbc\x00\xa4\xd2\xa3\x38\x69\x04\x51\x92\x89\xa3\xb5\xc8\x1a\xa9\xc8\xc2\xdf\xf1\x57\x75\xb9\x48\x33\xf8\xd3\x73\xf2\xdc\x11\x88\x79\x18\x87\xf3\xf0\x77\x3e\x8e\xb0\xcd\x2a\x9c\xe4\xb3\x23\x8f\x3d\x51\xa3\x0a\xe3\x58\xa4\x1f\x64\x69\x55\xf3\xc6\x4c\x84\x17\xb3\xbc\xd4\xe0\x19\x14\x7f\xdb\x55\x4e\x2e\xa1\xb8\x71\x09\xdf\xc3\x21\x95\x65\x4b\x29\x25\xe3\xb3\x89\x75\x20\x15\x03\x05\x8f\xc5\x8c\x5f\x85\xd0\x02\x03\xbb\xcb\xfa\x14\x18\x57\xa9\xcb\xb2\x4c\x64\x8e\x15\x29\x9a\x23\x60\x0e\xf6\xc7\xd8\xe7\xc6\x26\xef\x29\xd3\x3b\x45\x01\x9c\x46\x21\x3c\x32\xd9\x51\xeb\x3c\xc9\x7c\x9a\x57\x4d\xe8\xdc\x03\x05\x1d\x46\x65\xa5\x01\xdf\x95\xca\xde\xdf\x46\x65\x35\x3b\x18\x89\xca\xe0\xe6\xb0\xc0\xf7\xf0\xd2\x63\x29\xc5\x6b\x6e\x8b\x0a\xae\x49\x4d\xec\xb4\xdf\x42\x65\x50\x27\x37\x75\x39\x31\x88\x41\xb6\x4c\x33\x11\x5d\xa1\x15\x08\x44\xef\x89\x22\x7d\x56\x6d\xbd\x3e\xc5\xb4\x64\x84\x37\x2b\x8f\x1d\xb5\x6f\x31\x79\x3d\xe4\xe3\x68\x0d\x56\xc5\x73\x1e\xbc\x3e\x6d\x50\xed\x2d\x7b\x7d\xac\xc0\xf4\x3a\xe7\xf2\xb3\x64\x25\xae\x44\x4a\x27\x22\x64\x50\x66\xe9\x32\xc6\x78\xfc\x2b\x31\x06\x33\x92\x34\x44\xe2\x83\xc7\xbd\x70\xca\xc2\x9c\x4d\x79\x18\x65\xa0\x2f\x85\x54\x67\x0a\xdc\x94\xd3\x0d\x9d\x58\x83\x7d\x4c\xc7\x3c\x0f\xaf\x84\x21\xad\xda\x2c\x59\x88\xe9\x32\x8a\xd6\x75\x96\xc9\x4b\xeb\x32\x6b\x6d\x10\x37\x6c\xd9\x0f\xf2\x2e\x7c\x0d\xdb\x13\x51\x26\xee\x7b\x36\x16\xf6\x98\xdf\xad\xdc\x63\xe5\x94\xe0\xdf\x9f\x5f\xa2\x09\xed\xff\x2d\x7e\x99\x2c\xf3\xfb\xf1\x4b\x68\xf0\x3d\xf8\xe5\xb7\xc8\xfb\x64\x80\x9f\xd8\xef\xd0\x4a\x04\x85\x90\xd4\x9b\x2f\x02\x18\xc7\xd0\xbd\x0b\x50\x66\x27\x3b\xe1\x81\x25\x2a\x49\x16\x5c\xc1\x43\x61\x0c\x24\x73\x51\xfa\x79\x78\x74\x07\xfd\x4e\xca\xe3\x6c\x1e\xe6\x8c\xc7\x2a\xc9\x64\x2d\x9c\xb2\x62\xfa\x4d\x10\xa5\xea\x14\xd5\x19\xdf\xf7\xbd\xc0\x93\x1d\x7a\x03\xaf\x6a\x60\x8e\x08\xb7\x02\x8a\xc7\x19\x5b\x08\x50\x11\xd5\xe9\x89\x04\xde\x53\x40\xc5\x97\xa0\xc2\x08\x63\x66\xab\x3b\x4b\x96\x98\x99\x5d\xc6\xc9\x2a\x03\x85\x92\x00\xfb\x96\x99\x98\x53\x5e\xad\x48\x56\x4b\x40\x83\x83\x37\x4e\x44\xe3\x8c\x43\x2c\xd5\xa4\xb0\x2c\xe3\x35\x86\x09\x99\x85\x86\xf3\x40\x4a\x9f\x0b\x1e\xde\x6b\xb3\xdd\x7a\xf7\x52\xdb\xe9\x8e\x57\xaf\xa7\xa5\x3d\xca\x3e\x7f\x36\x52\xaa\x7b\x31\xab\xba\x85\x61\x94\x28\xc0\x20\x24\xc0\xa5\x07\xb2\xb1\x90\xd3\x9c\x89\x68\x02\xd4\x62\xd3\x91\x1e\x61\x41\xf6\xd6\xf6\x85\x84\x34\x13\x11\x8e\x82\xf3\x27\x13\x81\x41\x65\xf9\x04\x75\xaf\xc3\xd3\x01\xab\xa6\xa1\x3c\x5d\x1a\x03\xd4\x95\x20\xe4\x53\x78\xf6\x89\x08\xc2\x89\x64\xf9\xf9\x4a\x88\x18\xe8\x0b\x6c\x1a\x81\xc0\xcc\xee\xad\xd4\x67\x39\x01\xc2\x20\xd5\xaf\x93\x8b\x5e\xa5\x3b\x06\x73\xd7\x88\x76\x5b\xe1\x26\x28\xf7\x40\xc5\xf5\xfb\x1b\x64\x7d\x4b\xce\xb7\x03\x46\x6e\x5c\x46\xe7\x0a\x50\xab\xb3\x2f\x5a\xec\xff\x72\x17\x66\x84\xc7\x50\x99\x13\x41\xdc\x9f\xc4\x84\x0c\x82\x65\x7c\xdf\x60\x13\xb1\xa0\xfc\xe3\x49\x5c\x16\x98\x58\x0f\x0d\x82\xa1\xb5\xc5\x41\xde\x63\xbe\x73\xc9\xcb\xee\xc4\xc7\x50\xba\x2b\xc9\x90\x77\xdd\x58\xb7\xca\x63\xdf\xac\xcd\x29\x3e\x1d\xa2\xbe\xe8\xbd\x0e\x34\x75\x33\x24\x1d\x60\xea\x7e\x87\xc4\x33\xa4\xb9\x69\x12\xe7\xec\xf7\x24\x99\x5b\xf9\x0d\xad\x68\x47\x5e\x66\x52\xc0\xca\x5a\x6c\x06\x14\x3a\x0e\x73\x8c\x90\xae\x44\xf4\x9c\x05\x22\xcd\xb9\xaa\x15\x89\x2b\x81\xd9\x49\x59\x2f\x47\x03\xe0\x39\xa7\x24\x0a\x24\x9a\x61\x58\x6e\x9e\x2d\x53\x31\x61\x78\x74\x62\xae\xfb\x34\x59\x41\x98\x5b\x71\x9d\xb3\x09\x64\xa1\xc8\x48\x93\x81\xfc\x98\xea\xc2\xeb\xc2\x8a\x67\x4c\x5c\x2f\xa2\x30\x08\xf3\x68\x2d\xc9\x5d\xcd\xe1\x83\x4e\xb6\x28\x9c\xad\x06\xc3\x53\xb1\xc4\x24\x53\xbe\xc0\xef\xf8\x50\xfb\x26\x49\x73\x2f\x43\xa4\x48\xd9\x01\xa4\xd7\xc7\x14\x73\x4c\x56\x83\xe9\xde\x95\x7a\x5c\x53\xce\x5b\xa8\xe8\x61\x85\xca\xca\x01\xf0\x17\x39\x72\xe7\x21\xd9\xe5\xb4\x70\xfd\x78\xf3\xf2\x2f\xea\x4d\x21\xc3\xb9\xea\xe7\x28\x9b\x09\x6b\x0b\x85\x44\xbb\xeb\x41\x73\xa8\xb4\x11\x08\xa4\x37\xb1\xa0\xd8\xb6\x0e\x0a\x0c\x9d\xed\x6c\xc5\x31\xe0\xab\xb6\xe6\xd7\x2f\x1d\x18\x21\x3b\xcb\x05\x87\x24\x63\x7c\x3a\x95\xec\x27\xbe\x80\x9e\x8c\x44\xed\x30\x59\x88\xf6\xda\xfc\x54\x8c\xf3\x2a\xc5\x85\xa9\xf7\x14\x3a\xfe\xf5\x93\x36\x16\x7c\x1d\x47\x6b\xf6\xeb\x27\x39\xc4\x2b\x1e\x85\x13\x24\xb6\x84\x84\x22\x27\xdd\x7d\x9c\xa8\xd0\xca\xad\xaf\x92\xcf\x6e\x60\xcd\x17\x22\x97\x4b\x36\xe2\x41\x9e\xa4\xb5\x3a\x7b\x68\xe5\x32\xb7\xf3\x0b\xc2\x0d\x2a\x67\xfe\xa1\x8f\xb8\x9e\x42\x83\x86\x3e\x24\xe4\x95\x88\x3d\xd9\x6a\x6e\xb5\x91\x6e\x15\x22\xe1\xda\xe9\x28\x0a\xa1\x3d\x5e\x7a\x24\x15\x0b\x9e\x85\xc8\x1b\x95\x8d\xfd\x92\x78\xe5\x85\xc0\x48\xa0\xf2\x77\xbf\xdd\xfe\xf7\x3b\xce\xdd\xb9\x65\x40\x32\x76\x48\x0a\x72\x73\x76\x7a\xc8\x35\x4f\x2b\xd8\xf6\x0a\x29\x67\x2b\x5e\x8c\x45\x3e\x4a\xe2\xfc\x34\xfc\x5d\x50\xca\x7a\x27\xcf\x2c\x28\x91\xe5\xc6\xbc\x49\x88\xd1\x00\xea\x56\xc6\x5b\x35\x86\xa6\x27\xe5\x98\x32\x75\xa1\xb5\xb6\x19\x1f\xf4\xd2\x3c\x62\x7e\x65\xb6\x5b\xf8\xfa\xc4\x7c\x7d\x70\xe3\x2b\xb8\x35\x24\xd9\xb0\x7e\x77\xf1\xde\x7a\xa0\xbd\x47\xda\xa8\x05\x65\xab\xfa\xbf\x92\x3c\x1d\x73\xae\xc9\x01\xe8\x6c\x00\xe3\x30\xc7\xa7\x76\x15\x84\x0f\x62\x58\x83\x0c\x37\x0d\x63\x41\x06\x12\x85\xc4\xbd\x67\x76\x3e\x01\x48\x85\x06\x26\xc3\x22\x5e\xce\x05\x66\x2e\xa7\x71\x65\x39\xcf\xc3\x80\x55\xe5\x3d\x93\x70\x74\x3a\x35\x15\x1a\x1b\x82\xc7\x6b\xc8\xa4\x24\x02\x51\x93\xfd\x7f\xec\xbd\x7b\x7f\x1b\x37\x92\x28\xfa\xbf\x3f\x05\xa2\x3d\x1b\x92\x63\x92\x92\x9c\x38\x0f\x3a\xca\xae\x2c\x2b\x89\x6f\xfc\xba\x92\x6c\x67\xd7\xf2\xf8\x82\xdd\x20\xd9\xa3\x66\x83\xd3\x00\x45\x31\x13\x9f\xcf\x7e\x7f\xa8\x2a\xbc\xfa\x41\x52\x8a\x93\xb3\xb3\x7b\xfc\xdb\xcd\x50\x24\x50\x00\x0a\x85\x42\xa1\x9e\x13\x9e\x2b\x01\xa2\xee\xde\x5f\xf6\x8c\xe4\x5a\x2e\xe1\xe2\x2b\x94\xbd\xd0\xc2\x0a\x07\x58\x95\x6d\x0c\x85\x7f\x95\x28\x34\xf5\xc7\x0e\x46\x40\x84\xdf\x0b\xa9\xf1\xb1\xb1\xf7\x97\x3d\x0f\x0b\x4a\xf9\x09\x55\x74\xa0\xac\x9b\x6e\x77\x38\xb0\x75\x4b\x83\x0b\x49\x2d\x44\x12\x38\x17\xd8\xda\xc2\x27\x72\x09\x0f\x86\x83\xb0\x92\x0f\x26\xc3\x04\xcb\xb8\xfd\x13\xce\xd9\x2e\x45\xe3\x26\xb2\x34\xb8\xf2\xd2\xe8\x5c\xa6\xa1\x0f\xc9\xbb\xb9\x4c\xdf\x13\x70\xfc\xfc\xdb\x6f\x88\x82\x47\x91\xae\x85\xda\x1d\xb1\xce\x5f\xdc\xa5\x50\x9f\xf9\xfd\xfb\x70\xd2\x50\x97\x6d\x7e\xee\xc5\xfe\xd9\x6f\xcc\xed\x50\xa1\x88\x2d\x48\xf3\x6b\x61\x47\xec\xdd\x3d\xc6\x3a\x70\x25\x76\xfa\xa8\xff\x33\xff\xcb\x73\xf8\xd3\x3c\x3e\x3a\xf7\xde\x87\x74\x9c\x60\x89\x6a\x48\x92\x0e\xfc\xd7\x30\xe6\x63\x28\x87\xe0\xe5\x06\x28\x85\xdd\x8b\x64\xb1\xa8\xca\xbf\xb9\x59\x15\x45\xaf\x1b\xe9\x09\x6f\x59\x5e\x42\x1d\x3f\x2c\xa4\x6c\xab\x83\x24\x5a\x28\x6d\xcb\x9c\x2d\x6c\x61\xe9\x49\x56\x2a\xdd\xc7\xd7\x2c\xd7\x2c\x97\x52\x89\x7c\xed\x4a\x4e\xb9\x76\x70\x41\x72\x66\x9e\xdb\x50\xda\x48\x96\x99\x5e\x9b\x3e\x50\x81\x04\xea\x17\xb9\xc6\xb7\x28\x44\xcf\x77\x6c\x37\xde\xb2\x11\x41\xcd\xef\x90\x92\x7d\xbe\x61\x43\x2b\xbc\x42\xca\xdf\xb1\x71\xfc\x4d\x24\xb2\x0f\x0e\x9d\x85\xb1\xda\xf1\xfb\x8d\x1d\x0f\x43\x71\xfe\x20\xa2\xb1\x57\x65\x76\xcd\xb5\xb0\x59\x7d\x2d\x9b\xb2\x85\x17\xa9\xb6\xd7\xc2\x96\x0e\x37\xcf\x7e\xa5\x49\x58\x09\x7e\x51\x54\x70\x12\x2a\x54\xc8\x55\x81\x1e\xa9\x35\xbc\xdb\x32\x93\x86\x6c\xa8\xbe\xa4\x0e\x2a\x52\xba\x76\x54\x46\xf2\x23\xb2\x23\x74\x87\x25\x5b\x18\xe5\x4e\x0f\xcb\x8b\xbf\x56\x62\xb2\xcc\x31\x51\xc3\x5a\x2e\x81\x04\xb1\xd0\x8e\x96\xb6\x26\x0f\xf0\x23\x24\x0a\x5c\x9b\x5d\x0a\x2f\x6a\x8b\xd9\x76\xc6\xfc\x61\x00\x50\x91\xe8\x2c\xc7\x7f\xeb\xe3\x38\xcf\xcd\x6f\x75\xf3\x3b\xb0\xa7\xcf\x8e\xcc\xf2\xed\x9f\xd1\x5e\x11\x37\x21\x11\xa6\xbc\x76\x19\xbb\x3f\x01\x0b\x33\x10\xe7\x32\x7d\xc3\xf3\xa5\x21\x4a\xf3\x93\xb9\x52\xe4\xf8\x6f\x3d\xf6\x6f\xe6\x7f\x90\x6f\x8d\xaa\x2c\xed\xb3\xf2\xda\x30\xba\xee\x67\x7e\x61\x56\xb3\x1f\x71\x3a\xd3\x28\xfa\xd2\x0e\x16\x0b\xc6\xb6\xca\x81\x59\x9b\x1b\xa9\xc2\x06\x3d\xbd\x96\xd7\x8f\x9a\x0a\xa4\x12\x61\xd4\x2b\xa0\x12\x5d\x65\x58\x7d\xd1\x57\x4a\x8d\x49\xf9\x7f\x66\x01\xd4\x76\x22\xa6\xa2\xa1\xad\x45\x50\x43\x5d\x00\x52\xbd\xfd\x9d\x64\x80\xde\x6e\xbb\xd4\x7e\xdd\x67\xca\x17\x9d\xb3\x6a\x7d\x4e\x52\x08\x68\x57\xc5\xee\x5c\xfc\xd6\x6b\x6f\x90\x39\x7c\x59\xd5\x4d\x18\xa0\x26\x7d\x58\x6a\x6f\x17\x49\x58\x2e\x50\x76\xfe\x27\x2f\x9c\x4a\x1b\xfd\xef\xe6\x57\x33\xc8\x75\x26\x56\x54\xba\x25\xcb\x05\xcb\xe6\x0b\x2a\x01\x14\x14\x23\x7b\x89\x4b\xc7\x72\xa5\x50\x86\x08\xcb\x51\x2a\x2d\x4b\xa1\x5c\x46\x74\x73\x16\x30\x79\x7a\x22\x8b\x94\x2a\x3d\xd9\x47\x62\xe4\x55\x69\xe8\xc2\x1e\x77\x03\x0e\xae\xaf\xf0\xf5\xce\x94\x28\xcd\x19\x94\x13\x06\x44\x23\xa0\x9a\xa9\x53\xd0\x29\x7e\x9d\x15\xd3\xfd\x52\x98\x19\x50\x01\x23\xcc\x05\x40\x35\x92\xec\xe8\xe6\xb1\x9a\xaf\xa9\x78\x93\x34\xe7\xf5\x3a\x4b\xb1\x1c\x19\x57\x6b\x72\x73\x31\x53\x4c\xe4\x7c\x2e\x0b\xd3\x75\x92\x4d\x97\x25\xa8\x93\xe0\x6e\xa4\x5d\xb7\xf1\x1e\x65\x36\x85\x84\x24\xb0\x51\xe3\x35\x3b\x91\xe5\x9a\x3d\xe7\x49\xc2\xcb\x92\x48\x7d\xdf\xfb\xf5\xca\x42\xe9\x72\x69\x1e\xde\x0e\x0f\x4d\x18\xa5\x51\xc0\xbd\x94\xa3\xd6\xc2\x69\x6c\x69\x41\x16\x4e\x83\x99\x1a\x5f\x1b\x5c\xc5\x8c\x46\x2f\x46\xfb\xfb\xab\xd5\x6a\x78\xad\x0f\x0f\x0e\x86\x85\xd0\xfb\xa9\x4c\xd4\xfe\xb5\x7e\x78\x78\x30\x28\xe7\xfb\x4f\x4e\x4f\xce\x2f\xce\x50\xe6\x4a\xc4\xc2\xaa\xbe\xcc\xbb\x05\xcb\x72\x2d\xb5\x5c\x95\x7c\xc1\xba\xe6\xbf\x58\x4c\xb5\x17\x26\x12\x47\x3f\x57\x2c\xa5\x27\xc4\x5c\x91\x56\x6b\x2c\xd8\xca\x7c\x87\x5e\xb5\xe6\xe9\xd0\x7c\xfe\x09\x05\x47\x1f\xcd\xea\x3f\x80\x72\xfa\x25\xa1\xc1\x95\x25\x00\x6d\x9a\x5c\xac\x51\xc8\x08\xd0\x10\x30\x0a\x8b\xca\xf0\x32\x27\x80\xce\x33\xd6\x9c\x40\xae\x75\x99\x8d\x97\x1a\xca\xac\x93\x71\x06\xca\xef\x1a\xec\x2d\x96\xe3\x3c\x4b\x3c\x81\x01\x75\xf0\x24\x11\x4a\x51\xc8\x27\x02\x72\x54\xec\xe2\x2a\x3c\x72\xd8\x91\x5f\xc9\xbf\xb9\x8f\x61\x83\x91\x2b\xe2\x41\x95\x4a\xaf\x45\xa9\xc4\xdb\x6d\x10\xea\xed\x82\x9b\x1e\x20\x49\x20\xcb\xe7\xf8\x82\x6a\x02\x11\x34\xa8\xf6\x35\xfb\x7c\xc2\xcb\x32\xe3\x53\x41\xec\xbf\x19\x46\x43\xc3\x2a\x2c\x3c\x83\x6f\x32\xac\xdf\xd4\x0c\x26\x6e\xd3\x0c\xe1\x71\x9e\x15\x57\x1b\xfb\x63\x8b\x6a\xef\x0c\x02\x52\x37\xe0\x21\x68\x50\xed\x4b\x58\x7e\x93\xa5\x42\x6e\xde\x08\x6c\x52\xed\x3f\x2e\x79\x72\x25\xb4\x48\x31\x1e\xb6\x19\x42\xa5\x91\x83\xb1\xfd\xfa\x59\xf0\x52\x89\xf2\x9f\x5d\xf7\x72\xdb\xb2\xdd\x95\x33\xcf\x5e\x19\x2c\x34\x97\x03\x5c\x17\x9a\xdf\xe0\x4d\x62\x78\x2d\x9a\x53\x9d\x2d\x6f\xa9\xb4\x9c\x67\xbf\x72\xc7\xcd\x2d\xfb\x00\x88\x65\xbd\xf4\x19\x4c\x80\x99\x29\x18\x81\x83\xfd\x03\xcb\x62\xe2\x13\x88\xd0\x85\x5f\x81\x96\xf3\x2f\xfb\x96\x0c\xe8\xb7\x23\xd6\xc1\xe0\xab\x2a\x9c\x02\xfc\x75\x11\x8e\x2b\x25\x22\x95\xad\x45\x1c\x82\x5a\x48\x85\x4a\x92\xd6\xe9\xfc\x1b\xc1\x71\x6e\xfe\x14\x39\xb8\x05\x70\x32\x63\x47\xbe\x70\x7c\x84\x88\x40\xc6\x12\x65\x29\x23\xc4\xcc\x85\x52\x7c\x2a\x22\xb1\xaa\x10\x2b\x76\x6a\x1a\x76\x3b\x00\x80\x61\x2f\xae\xa1\xf0\xa4\x5b\xc6\x7d\xd6\xc1\x52\x94\x16\xc6\xc6\x91\x33\x65\x5e\xe0\xb9\xd0\xa2\xbe\x2f\xa1\x38\x07\x08\x3a\x0a\xf1\x6e\x0b\x0a\x6e\x82\x5e\xab\x75\x87\x5d\xe1\x16\xfe\xb0\x90\x2a\x50\x58\xb9\xcd\xc4\x0f\x8f\xe2\x9d\xa1\xf6\xe6\xf5\xe4\x35\x59\x80\x5b\x9a\x4c\xac\xb4\x0e\x5f\xef\x80\xaa\x7a\xb4\x15\xea\x73\xc2\x6f\xcd\x71\xa4\xd7\x0a\x3e\x54\xa4\xab\xcb\x1e\xd4\x49\xf2\x37\x3f\x94\x05\x0f\xd7\x4d\x65\xa5\xe1\x69\x61\x3b\xfc\x2c\xd6\x2a\x72\x79\xe0\x2e\xe3\xcd\x90\xb1\x9f\x05\x09\x1d\xa9\x70\x9e\x69\x1c\x7c\xa1\xc4\x14\xdd\xde\xcd\x5f\x0e\xac\xb3\xa2\xb5\x0e\x6b\x0b\xe8\x0f\x19\x7b\xee\x4b\x3b\xa1\x92\x15\x2b\xeb\xfb\x52\xbc\x7f\x93\x66\x21\x20\x47\xe0\x7b\x22\x85\x1a\xdc\x41\xc4\x0a\x22\xa9\x60\x86\x81\x96\x99\xba\x02\x6d\x25\x4d\xd3\xaa\x41\xb2\x22\xc5\x32\xa8\x2e\x96\x76\x59\xf8\x7a\xa1\x91\xd2\xd5\xdc\xfe\x56\xfc\xb2\xd0\x83\x02\xd8\x23\x7c\xd4\x1d\x8f\x18\x3c\x9f\x05\x79\xde\xf2\x28\x47\xd5\xde\xf1\x5e\x3c\x45\xc6\xd8\x57\x0f\x47\xec\x1c\xdf\x42\x98\xa4\x8c\xbe\x3f\xb8\xf9\xf2\xb0\xf9\x17\x70\x52\xab\x0e\x84\x5f\x86\x2d\xda\x00\xc3\x8f\x5b\xa0\xa3\xa5\xbb\x71\x0c\xfa\x29\x6c\xfd\x97\xb0\x25\x4e\x04\x2a\xe5\xae\x84\x11\xa7\x54\x50\x75\x31\xa2\x58\xc0\xb9\x4d\x12\x4a\x85\x93\x0d\x43\xc8\x05\x57\x81\xed\xc9\x10\xc0\xb1\xab\xf2\x0b\xcc\x9e\xce\xb6\x7b\xd4\x57\x1e\xf3\xa0\x12\xed\x83\x49\x31\x28\xa7\xd3\xb7\x64\x84\x43\xf9\x07\x7c\x9d\xcb\x07\x4c\x00\xae\xd3\x9f\xc5\xfa\xdc\xce\xba\xc6\x68\x9c\x1a\x07\x75\x30\xae\xa0\xae\xe1\x9b\xf7\xa0\x4a\x52\x58\xdd\xf4\xca\x3f\xef\xb7\x1c\x3c\x57\xea\xea\xfa\xdd\x4e\xed\xdf\x5d\xbd\x7f\x1f\x29\x5c\xcc\xb8\xab\x99\x79\xac\x75\x1d\x33\xfa\xae\x81\x09\x46\x41\x94\xea\x2a\x5b\x9c\x2f\x78\xe2\xad\x57\x66\xd6\x5a\x5e\x09\x17\x34\x01\x28\xb9\x30\xdf\x58\x8f\x6a\xd0\x7f\x99\x2f\x86\x70\xe9\x1c\x1d\xb1\x0e\x71\x81\xc0\xa2\x55\x5e\x07\xda\x7b\x6c\x7d\xcd\x73\xd2\x7c\x39\x0b\x57\x13\x28\xb7\xe0\x4e\x5c\xad\x6d\x99\x58\x4d\x57\x00\x6e\xa8\xe5\xeb\xc5\x42\x94\x27\x5c\x09\xef\xf1\x6d\xc0\xda\xe6\xbb\x6e\x80\x0f\x21\xf7\xee\x0d\x5b\xba\x0c\x67\x5c\xbd\x5c\x15\xaf\x48\xdd\x63\x87\xec\x85\xce\xef\xa4\xa4\x73\xa5\xa5\xb6\x6d\x2b\xc1\x78\xff\xc8\x41\x30\x8b\x29\xaf\x51\x09\xf7\xf9\xe7\xcc\x7e\xfc\x2c\x32\x47\xe0\x8e\x96\xe0\x71\x97\x29\xbc\xa4\xc3\xc2\xcf\x76\x0c\xbc\x6e\x03\x04\xf6\xfc\x40\x16\x72\xa0\xa2\xac\x6c\xd5\x2e\x38\x75\xdc\x3b\xc2\xe7\x36\xb4\xba\xcb\x60\x07\x94\x46\xa4\xb5\x15\x62\x80\xd1\x78\x41\x1e\x60\x1d\x71\xaf\x8b\xab\x42\xae\x40\x0b\xd9\x8e\xb1\x8f\xdb\x48\x59\xad\xe7\x63\x99\x77\xe2\x4a\x75\x01\x24\xa7\x68\xf5\x53\xf1\x75\x91\xd3\x5b\xb3\x0e\x4f\x70\x8b\x9d\xc9\x2d\x4b\x03\x4a\x73\xea\xe1\x77\x8b\xf7\xbd\x68\xf3\xe0\x2b\x76\xc4\xcc\x74\x7d\xfb\x8f\xb7\x41\xa8\xb8\x59\x88\x44\x8b\x94\x21\x56\x36\xa1\xb5\x01\x66\x1d\xe2\xa9\x85\x17\x48\x20\x21\xef\xa8\xdb\xca\xeb\xcc\xce\x69\xf2\x93\x19\x9c\xa7\x81\x3b\x4f\xe3\x52\xf0\xab\xa0\x55\x40\x73\x9f\xa1\x90\xdc\xdb\x30\x33\x5d\xf2\xf0\x11\xc2\x27\x46\x08\xd7\xbc\x9c\x0a\x30\x90\x75\xec\xf8\x54\x49\xee\x9a\x17\x89\xe8\x06\xfe\x7b\x95\x11\x8f\xc2\x11\xeb\xe3\x3d\xcf\x94\x02\x6f\xce\xea\x00\x15\x95\xfb\x96\x3b\xef\xd8\xc6\xca\x35\x55\x7b\xae\xe2\x6e\xcb\x35\x71\xaf\xf1\x96\xc0\xd7\x49\x27\x32\x90\x54\xaf\x86\xdd\x6e\x84\xea\x41\xda\x74\x54\x38\x55\x96\x0e\xf8\xd1\xb6\xb6\x55\x2e\x14\x92\x69\xa3\x7b\x7d\x3b\xa8\x77\x41\xdf\xf7\x6e\xdb\x37\xf0\x1b\x72\x92\x6f\x3e\x1f\x94\x14\xa8\xf5\x2c\x20\x86\xeb\x47\x61\xe3\xfe\x0b\x71\x85\x41\xdd\x9b\x9f\x55\xe6\x09\x73\xc4\x3a\x97\x9d\x8e\x35\x0c\xd9\xaf\xf6\x3a\x9b\x09\x4c\x88\xab\xa7\xfe\x61\xb0\x65\x10\xd4\xc6\x77\xf7\xdf\xf1\xc1\xaf\x1f\xde\xef\x67\x9b\xdf\x84\x00\x9b\x18\xc0\xae\x80\x0f\x06\xdf\xbe\xdf\xdf\x02\xd6\x51\x73\x1d\x6a\xc8\x34\x62\x06\xee\x65\x43\x03\x64\xe4\x2e\x80\x3e\x83\x1d\x1c\xd9\x99\x7c\x7c\xd4\x76\xfa\xa3\x33\x5b\xf5\xfa\x8a\xf1\x68\x03\x3d\xac\x74\x4c\x43\x06\xfb\x1e\x0f\x0b\x4b\x0a\xbb\x7f\x7c\x54\x83\x8e\x64\xd0\x02\x99\x4e\x6f\x03\x54\xdb\xad\x01\x22\xed\x4d\xdb\x64\x49\x6c\x6c\x9a\xa9\xed\x68\x80\x36\x12\x7d\x70\xa5\xc0\x31\xe9\xec\xb0\xa5\x9b\xc8\xd0\x47\x78\x36\x23\x7a\xd3\x15\x14\x1f\xb6\x8a\x3a\xc2\x0c\x4c\x86\x25\x24\xeb\x83\xc1\xb7\x1f\xde\xdf\xdf\xcf\xa6\xbb\xcc\xb8\x8d\xb8\x0d\xb1\x8d\xb9\x32\x32\xd0\xe1\x41\x8c\x78\x22\xcc\x83\x8e\x0b\xd8\x6a\x7b\x0c\xb0\x01\x3b\xac\xe4\x4e\x8a\x95\x14\x81\xaa\xe6\xb0\xcf\x0e\x7b\x00\xf8\xa6\x53\x29\xcc\x6b\x67\xda\x6d\x58\xf0\xc1\x8d\x39\x70\x7c\x30\x79\x7f\x7f\x7f\x9a\xf5\x6a\xee\x68\x9b\xfa\x5e\xa6\xf7\xf7\xa7\xbd\x66\x25\x89\xb9\xf2\x72\x48\x6f\x98\xca\xe5\x38\x17\xec\xef\x4b\xe9\x59\x60\x68\x10\xa9\xaa\xbd\x5c\x79\x08\x99\x15\xda\xea\xc6\xe0\xae\xe6\x39\x42\x09\x9e\xed\x8c\x9d\xc3\x40\x06\x58\x34\x82\xc2\x20\x80\x31\x25\xf3\x10\x29\xcb\x33\x2d\x4a\x9e\xe7\xeb\x7e\x65\x4a\xd0\x70\x51\x4a\xb0\x1b\x08\x88\x0e\x70\xaf\xdb\x8b\x97\x4f\x5e\x76\xcb\x69\x56\xa4\xbc\x37\x62\x6f\x78\x99\x81\x99\x05\x1d\xcc\x65\xee\xc2\xa0\x42\x4b\xc9\x2b\x3c\x74\x5c\x8b\x8f\x6c\xe1\x3e\x87\x2d\xac\x5a\x12\x57\x73\x5c\x43\xd6\xa0\xba\xcc\xe8\xa1\x4d\xbd\xb7\x3e\x94\xdb\x6e\x0d\xe0\x83\x42\x2d\x73\xed\x15\x9e\xe6\x3b\x1c\xf4\xc8\xb2\x41\xeb\xb0\x89\x5f\x7f\x06\x17\x89\xa1\x58\xff\xf7\x65\xa7\xd3\x76\xf6\x68\x6c\xcb\x02\xe8\xdc\xd5\x58\xaa\x9b\x0d\x3b\x02\xa5\xe4\x99\x98\x9e\xde\x2c\xba\x9d\x77\x97\x97\x97\x97\xe6\x86\xc5\xc1\xee\xb3\x0e\x14\x46\x99\x12\x9c\xdb\x3c\xa4\x4b\x31\xcc\xb9\xd2\x4f\x8b\x54\xdc\x38\x69\x48\xaa\xd0\xdf\x42\x40\x9c\x75\x37\x80\xd1\x6b\x17\x1f\x5f\x17\x64\x4e\x0a\x2e\x74\x22\x2d\x27\x38\x12\x76\xef\x1f\x35\x9c\x59\xc3\x8a\xed\x24\xfa\xf1\xec\x06\xec\xb0\x51\xf4\xac\x34\x72\xcb\x0e\xda\xfb\x8d\x3a\x72\x1b\x15\x89\x05\x97\x55\x77\xdb\xea\xcd\x56\x9b\x35\xd0\x10\x06\xcb\xf8\xa7\x7b\x22\x0b\x9d\x15\xb6\xa6\xfd\xc7\xa6\xc1\x8d\x04\xb2\x69\xf4\xca\x30\x48\x68\x1b\xa6\xd5\x3a\x64\x30\x02\x8c\xbe\xc3\x02\x6d\x05\xed\x65\xae\x2b\xf1\xe4\xb7\xde\x68\xb8\xf8\x62\xa6\x57\x10\xf7\x40\x93\x0c\x64\xf2\x6b\xd2\xeb\xb3\x2e\x19\xe2\x43\x3e\x87\x66\x58\xd3\x1c\x5c\xf2\x02\xeb\xc0\xf1\x0f\x17\xa7\x67\x14\x91\xca\x21\x40\x06\x72\xfa\xe5\x5c\xcd\x86\xbd\xaa\x12\x6e\x57\xde\x40\x41\x50\x8d\xbc\x61\x0e\x9e\xdc\x88\xcb\xce\x5e\x67\x64\xfe\x83\x3e\xfd\x66\x6f\x47\xf0\x5f\xfb\xf7\x25\xfc\x7d\x69\xff\xe6\xf0\xe7\xcd\xc1\xd7\xf6\x8b\x31\x7d\xf1\x8d\xfd\x42\x74\x28\x9d\x96\xfd\x62\x42\x2d\x12\xfb\x45\x41\x5f\x70\xfb\x45\x49\x5f\xa4\xf6\x0b\x4d\x5f\x7c\x6b\xbf\xb8\xa6\x2f\x1c\xd0\x9b\xce\xa8\xba\x32\x2b\x01\x5e\x5b\x2d\x55\xeb\xe5\xff\xfe\x1f\x0f\x3e\xe2\xed\x1f\x91\x4d\x53\x66\x25\x77\x3b\x02\xd4\x3e\x3b\xfc\xaa\x67\x5f\xb6\x34\x93\xe5\xef\x9b\xc9\x97\x9f\x60\x26\x4e\xef\x19\x84\x96\x24\x33\xc8\x10\xc9\x17\xe6\xa8\xce\xf9\xa2\xf6\xa4\xc2\x46\xbd\x56\xe1\xca\x3e\x89\x90\xe2\x47\xde\x70\x94\xcc\x3c\x5f\xb7\x2b\x9c\xf3\xc5\x3b\xfa\xf1\xfd\xa3\x96\x7b\x00\x4e\xf4\x7a\x21\xe4\x84\x79\xed\x8b\xc5\x1c\xdd\x33\x16\x1e\xea\x16\x13\x9e\xe7\xe8\xc2\x16\x0a\x75\xf4\x56\xad\x89\x24\xde\x2b\xca\xfa\x57\x2a\xcd\x4b\x70\xdb\x68\x3d\xa9\xd5\x9b\x1d\xaf\xa7\x8f\x0e\xc2\xb1\xfb\x14\xb9\x9d\xe9\xd0\xba\x07\x0e\x30\x6a\xc1\x8b\x21\x63\xcf\x5f\x9f\x5f\xa0\xc2\x9b\x34\xed\xd0\x74\x6f\x9a\xcb\x31\xcf\xf7\xe8\xf6\x63\x93\x9c\x4f\xef\x76\xe3\x37\x38\x56\x2d\x42\xaf\x2a\x20\x00\xeb\x93\x87\xa3\xb6\xed\xaf\x11\x6c\xcb\x82\xe7\x68\x1a\x1c\xb1\xf3\x05\x2f\xbc\x3b\xb0\xf5\x4c\x47\x18\x74\xef\x59\xc0\x6d\xd7\xad\xa1\x08\x5e\xae\xd9\x91\x6b\x59\xbb\x76\x3d\x99\x9a\x86\xbf\xfd\xd6\x00\x73\x60\x60\xbc\x3b\x78\x6f\x45\xe4\xcf\xfc\x20\x5b\x1f\x02\xce\x43\x11\xe9\xd5\xe2\xc6\xcb\x26\x68\x22\x6c\x1a\xf4\xb0\x8d\x6e\x69\x8f\x70\x52\xf1\xb5\x70\x8c\x2d\x77\x22\x2d\x6b\x61\x4e\xe4\x12\xfc\x69\x5b\x37\x9a\x86\x0f\xf7\x18\xfa\x04\xda\x20\x78\x10\x1c\x21\xa8\xd8\xc4\xb9\xe1\x09\x51\x33\x77\xc6\xc2\x2a\x79\xfc\xa0\x40\xc7\x8e\x59\x9e\x29\x88\xd1\x83\xa0\x2a\x56\xc8\x62\xb0\x9a\x65\x5a\x60\xba\xd7\x88\xf8\xc9\x39\xd8\xde\xa5\x0c\xd7\xee\x89\xfb\x5a\x66\xe9\x46\xd2\x76\xca\xad\xaa\xb7\x10\x4e\x26\x20\xed\xfd\x4b\xb5\x3f\xd4\x42\x69\xcf\xbf\x82\x77\x50\x2c\x6e\xee\x5f\xaa\xfb\xfb\xd3\x39\xa6\x46\x6c\xa1\x59\x9b\xa9\xca\x1a\x94\x03\xf4\x59\xe9\xd8\x0a\x8f\x91\xdc\x18\xd0\x52\x08\xdb\xd3\xd9\x6e\x9b\x41\x43\x54\x97\x1a\x49\x3f\xc3\xcc\x40\x7e\x39\x89\x5a\x1d\x1d\xb1\xc1\x61\x6f\x17\xed\xac\x2c\xc0\x38\x6d\x4e\x43\xb0\xbd\xf7\x59\xa7\x8f\x0e\x22\x70\x50\x22\x23\x86\x65\xf1\x5e\x7a\xda\xd5\x0d\xe6\x43\xa8\x7f\xfb\x27\x77\x89\x71\xbe\x82\x39\x05\x4c\x83\xd7\x63\x68\x5f\x97\x65\xac\x7c\xac\x53\x78\x80\x0e\x23\x6f\x05\x47\xef\x79\x18\x05\x84\xb1\x49\x60\x24\x07\xa7\x7b\xd4\x5c\x93\x77\xb3\x0b\x61\x0c\x5e\xd4\x46\x14\x2d\x05\x5b\x2e\x16\x10\x7f\x64\xe6\x2d\x6d\x76\xe8\x42\x96\x73\x9e\x43\x34\xab\x8d\x01\xcc\x8a\xc5\x52\x83\x61\x77\x0c\x5e\x95\xd3\xec\x9a\x5e\xe8\x6c\xef\xe4\xe2\xec\xd9\xe0\x78\x0f\xe3\x8b\xd0\x98\x4c\x7f\x40\x88\x28\xdf\x43\x2f\xc6\x3c\x07\xb7\xbb\x85\x16\x69\x98\xf5\x73\xc4\x5e\xc0\xdc\x21\xac\x3f\xe1\x45\x21\x35\x04\xe2\xe6\x7c\x81\xb6\xe1\xed\xf6\xa6\x8d\x58\x8b\x0d\x84\x28\xb2\x42\x75\xc6\x91\x8b\xc4\xb9\xc7\x98\x59\xc3\xc8\x46\xe4\xb8\x9c\x9b\x73\x59\x30\x9e\x67\x1c\xf2\xb6\x9c\xbc\x7c\x71\x71\xf6\x32\x6a\x75\xfc\xcc\x40\x81\xf0\x9d\x7b\x8c\x3d\x3f\xbd\x38\x1e\xd9\x30\x9e\x60\xa3\x7e\x76\xa5\x8b\x96\x41\x58\xc4\xe6\x1d\x7a\x65\x58\x18\x26\xfe\x32\x34\x3a\x97\x4a\xe7\x6b\x96\x8b\x89\x66\x72\xa9\x1d\x29\x03\x83\x1d\x8b\x84\x2f\x6d\x4d\x2c\xb3\x7f\x73\x79\x6d\x76\xd7\x10\x2a\xb8\x5b\xd8\x4c\xe0\xce\x67\x2a\x97\x09\xcf\x05\x6e\x27\xe5\xb5\xb0\xf9\x30\x8a\x8a\xef\x0a\xcb\xb3\x2b\x41\xdb\x7a\x7a\x7e\xb2\xd7\x77\xe9\x12\x12\x69\xb6\x8d\xc4\x22\x3b\x17\x39\x81\xc0\xb2\x00\xfd\x8c\x3d\x05\xd7\x7f\xf1\xf7\x65\x76\xcd\x73\x81\x51\xbe\x08\xf0\xc1\xd7\x21\xd5\x1c\xdc\x1c\x8e\xf7\xfe\x20\x12\xb5\xd3\x0f\x86\x3b\x55\x89\xf9\x93\xfe\x12\xf0\x57\x0b\x9d\xbe\x15\x98\xa5\xc3\x0a\x64\x49\x40\x1a\x41\x45\x2a\x5b\xf2\x6a\xc8\xd8\x1e\x41\x4f\xe1\x13\x5f\x08\x04\x4e\x99\x9f\x5c\xc3\x4f\x72\x0e\x22\x73\xf6\xe6\xb3\xe0\x0c\xbb\x47\xd6\x7f\xf6\xc2\xd7\xd9\x39\x3d\x3f\x39\x7e\x75\x3a\x62\x0f\xbe\xee\xe3\x5f\xf6\xe3\x0f\x87\x23\x76\x78\xf8\x00\x3e\x3e\x30\x1f\xbf\x80\x8f\x5f\x98\x8f\x5f\xc2\xc7\x2f\xcd\xc7\x87\xf0\xf1\xa1\xf9\xf8\x15\x7c\xfc\xca\x7c\x44\x08\x5f\x9b\x8f\xdf\xc0\xc7\x6f\xcc\xc7\x6f\xe1\xe3\xb7\x23\x76\xf8\xe0\x00\x87\x38\x30\x9f\x0f\xf1\xb3\x19\xef\x01\x8e\x77\x68\x06\x7c\xf0\x45\x9f\x52\x62\x9c\x99\x3b\x6a\x25\xcd\x74\x5f\xbe\x38\x1d\xb1\x2f\x01\xd0\xc5\xdb\x97\x23\xf6\x10\x00\x5d\xfc\x74\x76\x7a\x3a\x62\x0f\x11\xd2\xcb\xd7\x67\x23\xf6\x10\x21\x3d\x7d\x63\xbe\x87\xa9\x9f\x3f\xfd\x65\xc4\x1e\xc2\xd4\xcf\x4f\xdf\x9c\xbe\x18\xb1\x87\x30\xf9\xd3\xa7\x3f\xfe\x74\x31\x62\x0f\x61\xfa\x2f\x9e\x9a\x01\x1e\xc2\xfc\xff\xf3\xf4\xec\xe5\x88\x7d\x09\x0b\x78\x7c\x7c\xf2\xf3\xf9\xab\xe3\x93\xd3\x11\xc3\xbf\x7f\x3e\x7f\x65\x3f\x9e\xc3\x87\x60\xaa\xb3\x52\x40\xf2\xbf\x8b\xe3\xc7\x23\x06\x73\xfd\x7f\x47\xec\x1b\x98\xdc\xdb\x11\xfb\x06\x31\x3d\x62\x5f\xc1\x4f\x67\x23\xf6\x0d\xcc\xf5\x62\xc4\xbe\x81\xd9\xfd\xc7\x88\x7d\x03\x3f\xbd\x1e\xb1\x6f\x60\x8a\x4f\x47\xec\x6b\x58\xc3\xcb\x11\xfb\x1a\x7e\x32\x83\x1f\x84\x83\x4e\xe4\x12\xf2\xff\x9e\x1c\xbf\x3a\xff\xf0\xec\xe5\xc9\xcf\x23\x86\x48\x36\x5f\x54\xff\xb6\x9f\x8f\x47\xec\x2b\x18\xc0\x2c\x01\x06\x78\x32\x62\x5f\xe1\x8e\x8d\xd8\xd7\xd0\xe6\xc7\x11\xfb\x1a\xa6\xfe\xd3\x88\x7d\x0d\x13\xfd\x7f\x46\xec\x6b\x98\xe8\xcf\x23\xf6\x35\x74\x7f\x36\x62\x5f\x7f\x45\x1c\xf4\xad\x80\xc7\xa3\x28\xc0\x7f\xb1\x48\xbd\xbd\x70\x2a\xc0\xb9\x48\x5c\x43\x21\x5f\x08\x41\xc4\x56\xa4\xee\xa0\x84\xcc\x63\xc1\x0e\x0f\x10\x96\x65\x72\x86\x13\xb2\x85\x90\x8b\x5c\x50\x62\x68\x28\x98\x20\x0d\x87\x30\xa7\x77\x6c\xd8\x23\x78\xe3\x67\x4a\xcb\x72\x0d\xe7\x69\xc8\xd8\xab\x7c\xa9\x68\x5a\x00\xc2\xf2\x42\xb5\xbf\x28\xe5\xb4\xe4\x73\xc8\x20\x6d\x33\xbe\xd2\xfc\x78\x5e\x0a\x9e\x9a\xf3\x8c\x89\x69\xd6\x76\x62\x18\xcf\x06\x6e\xe3\x12\x93\x97\x41\x47\xcc\x3e\x21\x0a\x9d\xaf\xfb\x9e\x1d\x03\xeb\x20\x06\xcd\x20\x72\x38\x4b\xe8\x75\x6a\x76\xff\xc5\xc5\xe9\xd9\x88\xe1\x99\x3a\x7d\x71\x61\x3f\x9e\x9d\x5e\xbc\x3e\x7b\x11\xfc\x85\x1f\x83\x6d\xce\xc0\x03\x8c\xfd\xe7\x88\x7d\x0b\xdb\xf3\xcb\x88\x7d\x03\x1b\x76\x32\x62\x5f\x01\x65\xbd\x19\xb1\x6f\x60\x33\x1e\x8f\xd8\x57\x48\xd4\x23\xf6\x35\xb4\x79\x3e\x62\x5f\x7f\x6d\xc1\x9d\xea\xc4\x40\x22\xaa\xfe\x02\xb6\xd6\x10\x35\x7e\x7a\x75\xf6\xf4\xc5\xc5\x87\xf3\x93\xb3\x53\x73\x52\xbe\xa4\xef\x2e\x0c\x7f\xc0\x3f\xce\x4f\xce\x5e\x3e\x7b\x46\xa4\x76\xf8\xe5\x43\xfa\xee\x99\xff\x0b\x8a\x81\x8e\x18\x1e\xfb\xc7\x67\xee\x23\x56\xf1\x1c\x31\x6c\xf5\xf4\xc5\xb9\xfd\xf8\xd3\xcb\xe7\x66\x26\x30\xe7\x57\xc7\x3f\x9e\x7e\x78\x6d\xa6\x03\xa8\x78\xf5\xa3\xff\xfc\xe4\xf4\xd9\xe9\x85\x61\x03\x5f\xd1\x5f\xf6\xe3\xe9\x8b\x27\x23\xf6\xc5\x43\xd7\xfd\xc9\xcb\xb7\x2f\x46\xec\x8b\x2f\x11\x40\xe5\x2f\xf7\x19\x00\x03\x7a\xb0\xc5\x97\x80\xd7\x33\xe4\x0a\x5f\xc0\x8c\x9f\x9d\x1a\xc9\xe1\x0b\x40\x2f\x55\x4e\x34\xab\xfc\xd2\xa2\x12\xeb\x10\x9a\x13\xf1\xea\x60\xc4\xbe\x85\xc9\xfc\xfc\xea\x70\xc4\xbe\xfd\x1a\x3f\x3e\x18\xb1\x6f\xbf\xc1\x8f\x5f\x8c\xd8\xb7\xdf\xe2\x47\xc3\x40\x0f\x0e\xf0\xb3\xe1\xa0\x07\x87\xf8\xd9\xb0\xd0\x83\x07\xf8\xd9\xf0\xd0\x83\x2f\xf0\xb3\x61\xa2\x07\x78\xf2\x5e\x19\x2e\x7a\xf0\x10\x3f\x7f\x78\xf5\xec\xf5\xb9\xf9\x9b\x46\xfb\x70\xfc\xe4\x49\xf8\xe7\xf3\xa7\x2f\xf0\x77\x1a\xf7\xc3\xf9\xeb\xc7\x17\x67\xc7\x27\x17\xd1\x77\x17\xc7\x86\x22\x0f\xbe\xb2\x9d\x5e\x3f\xbb\x78\xfa\xea\xd9\x7f\x84\xdf\x3d\x79\xfa\xe6\xe9\x93\x53\xc3\xca\x0f\xed\x37\xa7\x27\x4f\x9f\x1f\x3f\x33\x5f\x1d\xd8\xc9\x9c\x9e\x3d\x7d\xf9\x84\xbe\xb9\x57\x29\xf5\x36\x17\x69\x06\xb2\x86\x32\xa8\x3c\x7e\xf3\xf4\xc7\xe3\x8b\xd3\x0f\x86\xbb\x8e\xd8\x21\x51\xab\xfd\xf6\x87\x97\x67\x6f\x8f\xcf\x0c\x24\x24\x6c\x2c\xb4\x66\xfe\x44\x0e\xf5\xfa\xd9\x33\x47\xa0\x87\xc8\xbe\xde\x3e\x7d\xf1\xe4\xe5\xdb\x0f\x2f\xdf\x9c\x9e\xbd\x79\x7a\xfa\xd6\x7c\xff\x00\xa9\xcf\x6c\xe7\x8b\xd3\xf3\x73\xa0\xa9\x07\x78\x57\x05\xdf\xe2\xd6\x3f\x38\xfc\x3a\x94\xe1\x9e\x06\x62\x38\xf9\xa0\x9b\x37\x80\xb7\xf5\x6f\xbb\x79\xad\x07\xc3\x51\xec\x82\xfe\xaa\xb4\x85\x62\x7c\xc6\x19\xc3\x29\x7d\xc0\x95\x5a\x2b\x2d\xe6\x28\x67\x41\xda\x27\xab\x3c\x82\x8e\xde\xfd\x1b\x13\x3f\x8c\xb6\xa6\x86\xe8\x47\x3e\xe7\x6f\x79\xa6\x29\x83\xfc\xde\x95\x58\x43\x72\x96\x3d\x04\xdd\xf7\xa9\x58\xec\x2f\xcc\x66\x88\xaf\x24\xc5\xa6\x29\x50\xd6\xa0\x4d\x73\xb0\xb5\xdb\xa2\x49\x3c\xab\x64\xb7\xc2\xdc\x82\xf1\xfa\x29\xe3\x15\xcd\xc6\x8f\xf9\xea\xf8\xfc\x7c\xd3\x80\x50\xc6\x34\x1a\xed\xdc\x97\xcb\xb0\x31\x3f\xf0\xc2\x5d\xf0\xa9\x11\x36\x3d\xe8\xb0\xfe\x50\xa0\x9f\xb5\x9d\x9c\x13\x66\x7b\xbd\xa2\xdb\xa5\x87\xb9\xc5\x34\x53\xb9\x2a\x9a\x26\xfa\x44\xae\x8a\xdb\x4d\xf5\xae\x65\x36\xb6\x4f\x96\x48\x44\xcb\x1a\x4a\x2f\xe4\x85\xbc\x05\x46\x5d\x8d\xac\x3f\x68\x86\x63\xa9\x35\x25\x12\x8a\x26\xf9\x18\xbe\xff\x93\xe7\xe9\x0b\x86\xb8\x69\x42\xd2\xd9\x86\xda\x20\x34\x5d\xcc\xe8\xe6\x7e\xdf\x65\xbe\xf5\xc2\x1f\xb7\x4c\x64\xb4\x83\x36\xc7\x25\x67\xfb\x40\x95\x13\xff\xd9\xc3\x6b\x83\x00\x27\xf3\x71\xd2\xe9\x33\xf8\x70\xae\x65\xc9\xa7\x22\x8c\x6d\x7a\xe5\x16\xff\x1c\xd7\xce\xd4\x72\x8c\x21\x89\x80\x0c\xc3\xd7\x50\x2b\xce\x5e\xf0\xf3\xf3\x9f\x82\x54\x76\x81\x8e\x06\x33\xb8\x93\x4e\x38\xa7\xb4\x8f\xbc\x60\xb2\x4c\x45\x09\xbe\x0a\xa8\x5d\x45\x1b\x4b\x22\x8b\x82\xd2\x4e\x2e\x4a\x69\x96\x10\x5f\x49\xb5\x29\x85\xfa\x7f\xec\xf0\x94\xd2\x12\x98\x55\xd5\xda\x7b\x4b\x4a\x9f\x88\x84\xa2\x45\x69\xfd\xf5\x14\xab\xd1\xbf\x0e\xd2\xc5\xbe\x9d\xdb\x3e\xe8\xd6\xdd\xb8\x56\xf5\x9f\x8a\x89\xf2\x8e\xaf\xb5\x39\xd0\x90\xfe\x07\xb0\x19\x60\x50\x81\x79\xdc\xaa\xae\x01\xd0\xab\xa7\x5c\xb8\xaa\x54\x1e\xc2\xb0\x1a\x0f\xc7\x34\xe8\xc3\xe8\xef\xae\xc4\xfa\xfd\xbb\xc3\xf7\xbd\x96\x4c\x30\x6d\x53\x4b\xb8\x16\x53\x09\xa1\xcd\xa8\xa7\xdb\xde\xd0\x1d\x33\x76\xc4\x3a\xf6\x73\x67\xa7\x9e\xc7\x8b\x85\xe0\x25\xe9\xf8\x3b\xfe\xaf\xdd\x7a\x9b\x33\x68\x63\x19\x3b\xee\x8f\xdd\xfa\x9e\x9b\x13\x63\xd6\xd8\xc1\x4f\x3b\xf6\x02\xfe\x84\x9e\x26\x1d\xf7\xc7\x6e\x7d\x4f\x8b\x44\xa6\xd4\xd5\x7e\xde\xad\xe7\xf3\x4c\x25\x22\xcf\x79\x21\xe4\x12\xa6\x1c\x7d\x11\xa8\x68\x9f\xd1\x51\xf2\x7d\xfb\xee\x98\x8d\xd7\x2c\xcd\xd4\x22\xe7\x6b\xfc\x8a\x75\xb5\x5c\xc0\xbb\x0f\xee\x87\xde\xa6\x43\x66\x27\xb3\x7e\xe2\x3c\x89\x6d\x1a\xa0\x7f\xb0\x2c\x1d\xb5\x12\x7a\xe3\x56\xf7\x89\x8b\xdf\xe8\x51\xb8\xe7\xac\x3b\x91\x85\x56\x7d\x96\xc8\x5c\x96\xaa\xcf\xb2\x39\x9f\x0a\xd5\xeb\x80\x79\x79\xe7\x71\x1c\x1d\x44\xc3\x60\x6d\x04\x86\x04\x72\x3b\x80\x76\xaf\x22\x78\x6e\x03\x6f\x07\xcb\x9e\x8e\x08\x96\x3b\x32\xb7\x83\xe5\xc8\x2f\x02\xe6\x89\xf2\x96\xd0\xe0\x14\xc4\xa0\xf0\x60\xdc\x0e\x4e\x44\x9a\x11\x38\xf3\xcb\xb0\xf3\x11\x32\x43\xb5\x12\x5a\x9d\x33\xd2\x53\xa3\xc3\x73\x3d\x98\x96\x83\xb9\x4c\x45\x67\x74\x8f\xb1\x77\xb7\x41\x37\x38\xad\xc3\x6c\xde\xc1\x27\xd6\x29\x64\x21\x6c\xf2\xaa\x01\x65\xae\xca\xc5\x44\xdb\xcf\x70\x5f\xc3\x1f\x58\xdc\xb9\x83\xe9\x62\xcd\xc5\x75\x9c\xeb\x1f\x0d\x8b\xd7\x74\x4f\xcd\x78\x72\xf5\xd7\xb7\x33\xb1\x2c\x33\xa5\xb3\x64\x78\x59\x90\x1d\xa9\x13\x7c\xea\x98\x71\x2f\x3b\x23\x23\x15\x48\xec\xeb\x35\xda\x05\xbf\xce\xa6\x5c\xcb\x72\x98\xf3\x62\xba\xe4\x53\x31\xf2\x5d\xf1\xe2\xb9\xec\x88\x62\xb0\x54\x97\x1d\x76\xf4\x3d\xbb\x84\xe9\x5f\x76\xfa\x18\x99\x00\xdf\xb8\x09\x5f\xc6\xc3\x42\xc3\x11\x7b\x92\x29\x4c\x9a\x50\xac\x69\x01\xa5\xc8\xc1\xdd\x67\xbe\x2c\xcc\x4d\x1e\x4e\xdb\x61\x05\x26\xac\xd4\x72\x8e\x21\x71\xf7\x8f\x73\x4d\x29\xd9\x00\x46\xd4\xc7\x62\x2f\xe8\x03\x8a\xfe\x4d\x7d\x82\x49\xbb\x4e\x28\x55\x35\xf4\xc2\x4a\xeb\x9d\xa8\x40\xe8\x20\x53\x83\xb8\xf6\xe7\x1d\x88\x83\x52\xd5\x75\xc6\x52\xa2\x41\x84\x75\x9e\x4e\x98\x12\xba\xcf\x96\x45\x2a\x29\x9c\xdb\x3f\xf9\x8f\x73\x3d\x70\xf5\x3e\x07\xdf\x3f\x39\x7d\xc6\x4a\x31\xe7\x0b\x9f\x5b\xcc\xae\x30\x9a\x2b\xcb\x8a\x54\x88\x14\x8b\x9a\x84\x45\x4e\xc3\x95\xd1\x7a\x3e\xcd\x2a\xce\x85\x66\xab\x99\x70\xc9\xef\x6d\xbd\x56\x9e\x68\x85\x09\x3c\xcc\x58\xf0\x95\x79\x3b\x9b\x2f\x52\x43\xc3\x45\xa2\x6d\xdb\x68\x72\xe6\x25\xad\x06\xab\x19\xd7\x77\x98\x5f\x07\xdd\x67\x70\x6a\xef\xdc\x5f\xac\xf3\xcd\x60\x9c\xc1\x99\xa3\x87\xf3\xe0\x4a\xac\xed\xa9\x3b\xb1\xe9\x58\x67\xf5\x92\xb5\xf8\x96\x4e\x1b\xcf\x1b\x23\x67\x9d\x21\xfe\x63\xe7\x90\x7c\xbc\x00\x8b\x8f\x91\x52\xb3\x9b\x61\xd8\x18\xa6\x30\xb4\x8d\x8f\xd3\x94\x1d\x3e\xf8\xc6\x3e\xac\x96\x05\x18\xd8\x44\x1a\x86\xb1\x2b\x57\x97\x2f\x02\x14\x2c\x61\x38\xf4\x6a\x89\x48\xfb\x80\xaa\x12\xac\xc1\x41\xa9\x48\x42\xb5\x41\xf5\xe4\xfb\x7f\x8a\xaf\xd5\x90\xb1\x2e\xc8\xd4\x2b\x59\x5c\x76\x34\x54\xd8\xc1\x78\x57\x23\x31\xe7\x5c\x4f\x64\x39\xa7\x22\x3b\x00\xb6\x1d\x9c\x1d\x90\x12\x99\xc1\xee\xc7\xd5\x11\xcc\xd4\x21\x89\xb1\xc1\xba\x37\xee\xf5\x3a\xf7\x18\xb3\x64\xb1\x4c\xb3\x71\x2e\x06\x63\x91\xe7\x03\x65\x6e\x8c\x9d\x49\x83\xae\x1c\x78\x7e\x0c\x4a\x81\x2f\xa0\x11\xca\xd7\x06\xac\xdc\x37\x40\x89\x94\x97\xa5\xfd\xf4\xfa\xec\x99\x8d\x31\x77\x6f\x4b\xd3\x90\xc1\xe8\x43\xc6\x4e\xe7\x0b\xbd\xb6\x5e\x8c\x66\x09\x85\x64\x34\x4d\x68\xe8\x48\x3a\x15\xea\x4a\xcb\xc5\xa0\x90\xda\x65\x68\x86\x85\xdc\x7a\x09\xcd\x1c\x04\x13\x61\x46\x93\x54\xf6\x91\x66\x4e\xff\x14\x73\xa5\x80\x4f\x76\x02\x9e\xdb\x8c\xb3\xb7\x62\xec\xd8\xc7\x8b\x60\x62\x43\x48\x99\xa3\x28\x67\xce\xea\x8b\xa1\x2c\xa7\xfb\x17\x67\xfb\xe1\xe4\xd5\x7e\x74\x16\xf0\xc3\x13\x94\xfa\x0c\x32\xa2\xb6\xac\x14\x7f\x5f\x66\xa5\x50\x86\x00\xe6\x99\x52\xb0\xe3\xd6\x3d\x6c\x09\x55\x02\xde\xce\x04\x65\xa2\xb1\x60\x31\x12\xdd\x1c\x3f\x25\xc0\x04\x8a\x8b\x04\x5c\x51\x2e\x7a\xad\xc5\x7c\x01\xbf\x71\x75\xe5\x0d\x9b\x66\x27\x82\x91\x2c\xc0\x6c\xc2\x0a\x91\x08\xa5\x78\xb9\x1e\x62\x01\x4d\x5b\x53\x85\xcd\xf9\x1a\xd2\x04\xab\x19\xf9\x74\x84\x00\xcc\xf4\x85\xd2\x54\xe8\xc4\x82\x4b\xc1\x43\x47\x33\xcc\x27\x63\x50\x1a\x56\x99\x46\xba\x6e\xe4\x18\xc4\xde\xc5\x8d\x16\x85\xc2\x42\x55\x54\xe4\x86\xed\x45\x78\xdb\x0b\x27\x01\xb9\x22\x83\xbf\xb5\x0c\x66\x82\xd2\x76\xd4\xd9\xd1\x9e\xdf\xff\x01\xc8\xbb\x3b\x93\x5c\x20\x47\xb3\x4e\x39\x1d\x77\x0f\xbf\xea\x33\xfc\xff\x1e\x08\x34\x00\x0d\x69\xf0\x22\x26\x34\xf8\x09\xf9\x91\xb8\xa1\x90\xf5\x42\x52\x84\x3c\xfe\xe8\x73\x10\x35\xcd\x14\x24\xf2\xbb\xcd\xd4\x4c\xcd\x86\xed\x20\xbe\xcf\xcf\xc9\xc7\x91\x0e\x73\x30\x51\x18\xa7\xe5\x24\xe3\x6f\x4d\x3b\x18\x26\x45\x08\xb9\xde\xb2\xcc\xbb\xf6\xec\x4c\xa5\x1c\x4e\xf3\x7d\x5e\x88\xf4\xe2\xe7\x5e\xd8\x2a\xcf\x0a\xc1\xcb\xc1\xb4\xe4\x69\x26\x0a\x0d\xaf\x23\x7c\x1a\xf5\xd9\x18\xdc\x4c\x4b\x91\xf6\x1a\x90\xa2\xb2\x5f\xff\x34\x9c\x40\xfe\xe5\x21\x63\x4f\x6c\x62\x2d\x2d\x99\x91\xf0\x9a\x36\xcb\x7a\xdf\xfd\x69\x73\x73\xee\x7e\xb7\xd9\x9c\xc3\x83\x7f\x35\xff\x1f\x7e\x95\x80\x0d\x35\x5c\x11\x0a\x5a\x28\x7d\x7c\x7a\x41\x8f\xd8\x34\x2d\x09\x45\x35\x32\xe0\x82\xe9\xe0\xf1\x39\xeb\x5e\x76\x2e\x2f\x6f\x0e\xbe\x31\x22\x37\xbf\xe2\xec\xaf\x3f\xf5\x86\x2c\x28\x6c\x61\x27\x1f\x03\x01\x07\x94\x00\x10\x00\xf9\x7a\x72\xd9\x71\xdb\xe5\x04\x8a\xc1\x9c\x2f\x06\x36\x71\xbf\xba\xd3\x96\xd1\xc3\x06\xf6\xc8\xfa\x86\x5b\xed\x9b\x4f\x2d\x02\x59\x31\x28\x69\xc5\x90\x7c\x5a\x38\x53\x0b\xf4\xea\x2f\x4b\xbe\xee\x93\xf0\x20\x78\x32\x33\xdb\x81\x2e\x71\x1d\x97\x49\x92\xca\x31\x7a\x59\xc8\x5c\x04\xa0\xb7\xb4\x29\xf7\x29\x10\x36\x18\x89\x52\x6e\xb8\x6b\x84\x75\xe2\x31\x59\xa6\x95\xc8\x27\x43\xac\x4a\xc3\x75\x65\x42\x30\x95\xea\x04\x1c\xa8\x52\x24\x22\xbb\x8e\xc5\xb3\xea\x4c\x20\x51\x0b\x32\xe4\xb0\xa1\x27\xd5\x80\x56\x5b\x88\xd5\xe0\xe2\x1f\x7b\x07\x7b\xa3\x7f\xec\xdd\xdf\x1b\xed\x5d\x5e\x2e\x1f\x1c\x7e\xfb\x60\xaf\xbf\xd7\x77\x7f\x1d\xec\xf5\xf7\x06\xee\xaf\xc3\xbd\xfe\xde\xd0\xfd\xf5\xc5\x5e\xdf\x4f\xd9\x80\x81\xef\x1f\x7e\xf3\xcd\xde\xc7\x8f\x81\x3c\x05\x55\x9c\x06\xb2\x18\x88\x9b\x6c\x77\x29\x3b\x7e\x75\x13\x45\x87\x64\xfe\x96\x5e\x01\xc0\x43\xe1\x6e\x86\x81\x00\x2f\x54\xf5\x6a\x85\x77\xbd\xab\x15\xc2\xcc\x0c\xfc\x35\x80\x59\xcd\x06\xe3\x3c\x2b\xae\xee\x44\x9f\x0d\x87\xaf\x3e\x2b\x00\x6f\x9d\x88\x95\x2c\x83\x74\x7e\x8d\x33\x19\x24\xeb\x24\xbf\x1b\xfb\x7d\x77\x78\x70\x70\xd0\x67\x0f\x0f\x0e\xde\xc7\xc7\xa6\x73\x11\x0c\x0f\xf3\x29\x8d\x1c\x91\x15\x6c\x9e\xe5\x79\xa6\x44\x22\x8b\x54\x35\x72\xb9\x63\xa6\x57\x92\x09\x4c\x50\x69\xa9\xd7\x07\xba\xc8\x09\xe5\xa5\xcc\xf0\x41\x93\x4b\xeb\x41\x8f\xa3\xf9\x2c\x43\x4e\xdc\x82\x52\x40\x66\xc0\xa8\x4f\xa6\x83\xb6\x72\x32\xa9\xe2\xe6\xf7\x89\x14\xbc\xfb\xe0\xe1\xc3\x3e\x3b\xc0\xff\x1b\x3e\xec\x11\x5e\xaa\xa2\x05\x8a\x0c\x74\x1d\x5c\x53\xbe\x3c\x9c\x81\x9f\x90\x69\x33\x58\xf0\x5c\x68\x2d\x3e\x39\x87\xeb\xbc\xb4\xb5\x4e\x50\x69\x68\xa5\x6b\xfb\x8e\xa1\x71\x1b\xf7\x2a\xac\x6b\x58\xe5\x8f\xc8\x94\x30\x91\x94\xe5\x95\xec\xe9\xa4\xd6\xce\x6d\x13\xe5\x0a\x45\x76\x0a\x7a\x8c\x94\x52\x95\x6f\x60\xae\x8e\xa3\x39\x59\xd8\xf0\x62\xeb\x5a\x03\xce\xce\x58\xe0\x4f\x3b\x64\x6f\x5a\x10\xe4\x16\x69\x59\x52\x0e\xde\x42\xbc\x58\xb3\x44\x29\x82\x85\xbe\x3b\x94\xed\xd4\x4d\x81\xd2\x22\xb1\x7f\x39\xfb\xf1\x71\x9f\xfd\xcb\xd9\xd9\x8f\x3f\x3e\x7e\xdc\x67\x46\xd2\x1c\x0e\x87\x3d\xf8\xc4\xe9\x23\xd4\xfd\x32\x30\x01\x1e\x3a\xef\xfa\xab\x90\x6b\xf2\x44\x54\x92\x2d\x78\xa9\x2d\xa5\x28\x2d\x93\x2b\xf6\xcb\xe1\xa1\x01\x35\xd4\x37\x1a\x2d\x55\x4d\x4b\xfa\x0f\xb9\x84\xf5\x2c\x95\x60\x56\x85\x86\x31\x26\x66\x71\x6b\x9f\x3d\xcb\x6e\x38\x32\x7c\x7f\x36\x0c\x5b\xb1\xc0\xc6\x82\x0a\xdf\xa4\x76\xd1\x99\xf3\x65\x85\x97\xee\x55\xb6\x58\x40\x6a\x53\xa6\xe6\x3c\xcf\x19\xc6\x29\x80\xb3\x73\x91\x66\x49\xb0\x38\xc7\x2b\xdd\x05\xd3\x48\x41\xc1\x29\x58\xac\x0d\x53\xc7\x02\x5f\x3b\x13\xbf\xd7\x65\x37\xb0\xf4\xe3\xa5\x96\x73\xae\xb3\x04\x5c\xb9\xb0\x06\xaf\x04\x5b\x9f\x2b\xdc\x66\x49\xc7\x16\xa2\x75\xf3\x59\x2a\x31\x20\x94\x0d\x90\xfd\x0f\xa0\xe2\xee\x1d\x26\xb6\x81\xad\x6b\xef\x2f\x66\xf7\x87\xee\x1a\x2c\x0f\x4d\x15\x26\x1d\x92\x72\x23\x80\xbb\xd9\x0f\x20\x57\xc9\x9d\xe7\xd5\x7e\x07\xc2\xe5\x67\xcd\xd3\x1e\x59\x98\x1a\xc5\x0c\x97\x15\x53\xbf\x73\xba\xcc\x07\x8b\x7c\xa9\x06\xf3\xac\x58\xaa\xc1\xaf\xa2\x94\x83\x5f\xa5\x9c\xdf\x41\xfc\xac\x4f\xc9\x49\x9f\xe0\xbc\xfb\x2a\x5f\xaa\x7d\xa8\x7b\xb4\xff\x9f\xa2\x94\x71\x2d\xa2\xe0\x7c\x3c\x9d\x58\xac\x07\x89\xd1\x36\x76\xa6\x96\xf0\x33\xc8\xa2\x8a\xfd\xf5\x83\x93\x47\x3a\x7e\x74\xe8\x1a\xd4\x1f\x8d\xd0\x90\xdc\x6e\x33\x36\xca\xdd\xa0\x4e\x3e\x31\xe8\xce\x84\x82\x4c\xde\x80\x07\x5b\x72\x5a\x4b\x70\xca\x31\x3f\x40\xe7\x60\xf5\xd0\x13\xd6\x7c\xff\xc4\xae\x25\xea\x80\x90\x3c\x64\x04\x10\xad\xc4\x56\xab\xfd\x74\x4b\x79\x83\x85\xd6\x6a\x4b\x79\xb3\xe3\x52\xde\xd8\xa5\xbc\xa9\x2f\xc5\x43\x8e\x97\x22\xb8\xd2\x03\xae\x32\x5e\x0c\xf8\x7c\x9c\x4d\x97\x72\xa9\x06\x5c\x0d\xf4\x4a\x1a\x09\x60\x39\xdf\xfd\xed\xb7\xb3\x1a\xf9\x94\x2b\xcd\x8e\xcd\x98\xec\xd8\x8e\x19\xc6\x40\x61\x49\xc1\x95\xa1\x3f\x33\x01\x06\xc5\x44\xfd\x8c\x21\x73\xf3\x00\xd4\xad\x03\xa2\xd0\x4f\x33\x47\xa8\xe7\xa0\xa5\xcd\x0d\x0d\x23\xf8\xda\x5b\x6e\x7e\xb6\xae\x8c\x96\xb6\xde\x83\x9e\x89\x79\xe3\xdd\xf3\x56\x5c\x76\xf2\x9c\x95\x42\x2d\xf0\x05\x03\xeb\x1a\x8c\xd7\x5a\xb0\x6b\x51\x2a\x1b\x08\xa3\xc1\xc5\xbf\x3e\x94\x3b\x5d\xa5\x98\xf2\x32\xcd\x85\x52\xde\xdb\x03\xeb\xed\x56\xf1\x32\x96\xf9\xee\xea\xd3\x06\xc9\x48\x97\x99\xd2\x5c\x8b\x10\x27\x51\x8d\x0b\xc3\x8e\xcd\x20\x6c\x85\xc5\xe4\xa0\xe0\x5b\xac\x10\x42\x57\xa2\x3c\xdd\x1f\xa3\x21\xc6\x99\x32\xac\x66\x68\xc8\xd8\x0f\x16\x87\xce\x1d\x18\xe2\x18\x42\xa8\x43\xc6\x5e\x2c\x73\x70\x4e\xe2\xce\xe2\xd5\xb4\x5e\x43\xb0\x38\xd4\x9d\x56\x5e\xe7\xa9\x2d\xab\xc6\xd5\x90\x98\xd8\xfd\x66\x70\xf8\x90\x19\xa6\xcf\x0e\xbf\x8a\x45\xab\x9e\x5b\x31\xf8\x13\x16\xeb\x06\xdc\xb0\x3a\x32\x7c\x8d\xfc\xea\x1a\xef\xfc\x60\xda\x65\x69\x21\x75\xe2\x5b\xa5\x71\x9f\x88\xd6\x33\xb3\x2d\x95\xf9\x39\xe1\x00\xd4\xe0\xb7\x50\xab\x6c\xbc\x6b\xcf\xcd\x53\x85\xdb\x64\xba\x56\x2c\x77\xaa\x70\x27\x3f\x01\xa3\x5b\x95\x99\xe1\x6f\xad\xd2\x4a\x6d\xa6\xd0\xe1\x13\x49\x51\xae\x36\x30\x4c\x45\x4b\x9c\x0d\x4b\xb3\x52\x60\xc9\x08\x2a\x06\x8d\xfe\x9b\xad\x93\x4b\x45\x72\xf8\xe0\xae\xef\xf5\x06\x7e\x76\x16\x6c\xac\x99\xd9\x65\x47\x85\x9a\xf5\xa0\x82\x63\xf4\x52\x35\xc7\x7f\x69\xa4\x5a\x23\xc7\x5a\x42\x7e\x72\x7a\xe2\xca\xf1\x40\x66\xf1\xc3\x07\xc1\xf4\xaf\xb3\x52\x16\xe6\xbd\x7a\xd7\xd9\xff\xa3\x73\x71\x7a\xf6\xbc\x33\x62\x1d\xb0\x87\x0d\x1e\x3c\xfc\x0a\x5f\x8a\x98\x17\xa0\xf6\xb4\xb6\xb2\x60\x30\x34\xbb\xa6\x6c\x33\xaa\x1f\x6b\xa8\xec\x34\x0d\x4b\x19\x4c\xf8\x3c\xcb\x77\x97\x3f\x2a\x1e\x27\x9d\xbd\x27\xe2\x6f\xfc\xcd\x92\x9d\xf3\x42\xb1\xe7\xb2\x90\x7b\x7d\xb6\x77\x6a\x58\xb9\x2c\xec\xdf\x3f\x94\x42\x98\x8f\x7d\xb6\xf7\x5c\x14\x39\x34\xb9\x20\xaa\xf5\x0a\x9c\xce\x5c\x16\x12\x95\x90\x55\x35\x29\x69\x66\x89\xb3\xc2\x84\x6b\x15\x26\x80\xa3\xc4\x4b\xbb\xb3\x12\xf9\xf0\x61\x1f\x92\x57\x35\xe0\xd7\x57\xf3\xcc\x0a\xb6\xc8\x6e\x44\xae\x2a\x83\xce\x25\x8a\x79\x77\xd3\x14\xf0\x42\x67\x18\x3b\x96\x36\x6a\x8b\xe3\x31\xdc\x6b\x37\x98\x43\x29\x3e\x8d\x09\xe4\xc1\x97\x07\x7d\x66\xff\xd3\x68\x05\xf1\x63\xdd\xd1\x0a\x32\x93\x73\x31\xb8\x12\x6b\x35\x40\x1f\xd6\x4f\xac\x7d\x36\xe0\xf7\x85\x33\x06\xfa\x52\x97\x9e\x68\x5c\x29\x77\x34\x1d\x43\x41\x52\xd7\xcd\x3d\x4c\x4d\x77\xe7\xf0\xfe\xe6\xc2\x96\x09\x54\xa8\xbf\x20\xe1\xc7\x70\x5f\xd7\x15\xe5\xce\x37\x17\x14\xdc\xc9\x03\x68\x95\x41\x70\x06\x1e\x27\x57\x62\x6d\x4b\xb4\xdd\xd5\x25\x27\xe6\x0e\xc7\x10\xbc\x24\x27\x95\x74\xcd\x32\x0a\x50\x80\xfc\xdf\x41\x3d\x53\x1b\xcd\x68\x93\x90\xfb\x33\x5a\xc6\x35\x06\x37\x67\x14\x8f\xd3\x89\xa7\x22\xc9\x8c\x44\x13\xc0\x9b\x89\x1b\x6e\xbf\x46\xcd\x00\x78\xd7\x11\x20\x1f\x24\x41\xe0\x6c\xa4\x44\x4d\x1d\xe3\x04\x2a\x6b\xd8\x72\xd5\x62\x7d\x30\x42\x9f\x74\x4f\x64\x87\x8f\x80\xff\x00\x63\x4e\x8c\x70\x65\x41\x89\x9b\x45\xce\x0b\x0c\xb3\x25\x25\xcb\xc4\x48\x64\x10\xfc\x20\x58\xc5\xf8\xf5\xec\xed\x59\x91\x96\x8d\x32\xef\x39\xe8\xbc\x59\xb0\xb1\x81\xb1\xe6\x1f\xa1\x91\x86\x22\xa4\x73\x3d\xf8\x79\x6f\xc4\xf6\x2a\xde\xdb\x7b\xfd\x7a\x5b\x7c\xa6\x3e\x33\xad\x5f\x1d\x9f\x9f\x37\x35\xf9\xc9\xfc\x78\xd9\xf9\xe9\xf4\xd9\xb3\x97\x97\x97\xc5\x65\x67\xcf\xb7\xf9\x68\xa9\x6e\xce\x6f\x06\x88\xb9\x81\x25\x82\x9d\xa9\xcf\xf9\xf2\xb1\xc3\x83\x03\x50\xff\x06\xbc\xf3\x39\xbf\x61\x94\x68\x03\x2a\xfc\x3c\x39\x39\xef\xb3\x97\xe7\x27\x7d\xf6\xea\x39\x6c\xc8\xf1\xab\x73\x4f\x95\x63\x31\x81\x72\x71\x98\x69\x85\x2d\x17\xd1\xc9\xf1\x8f\x0b\x24\x31\x37\x79\x91\x66\x1c\xf9\x08\x2f\xc5\x60\x62\x3e\x7d\x62\x56\x92\xc8\xe2\x5a\x94\x3a\x08\x4c\x22\xca\xca\x4a\xf6\x83\x21\x55\x1f\xc2\x3c\x64\x5e\x95\x90\x0b\x1d\x9b\xb1\xe2\x1a\xed\xb6\xb8\x78\xb0\x12\xcd\xc9\x24\x47\xae\x3c\x9f\x42\x21\x52\xf5\x58\x72\xfe\x49\xc8\xa5\xb8\xcb\x0b\x45\xd9\xa7\xd0\x72\xe0\x27\x25\x97\x4a\x0c\xd0\xab\x2c\xc9\xb3\xe4\xea\x96\xef\xfc\x8d\xa2\x22\xba\x1a\xcb\x82\x3c\xd4\x50\xd9\x36\x5e\x6a\x2d\x0b\x06\x83\x35\xdb\x04\xb0\x98\x94\x73\x9b\x30\x47\xfa\x1a\xed\x09\x58\x06\x1e\x0a\x53\xe1\xa1\xdd\xc3\xf9\xc3\x9c\x07\x08\x79\xcf\x33\x63\x7a\x33\x36\x8d\x81\x91\xd7\xe8\x17\x64\x6e\x00\xda\x34\xf0\xbf\xfb\x9c\xe6\x6b\xbe\x13\x29\x9b\x67\x10\x66\x50\xa2\x78\x5b\xc1\x5c\x38\xf2\x5d\x90\x56\x75\xb3\x3c\xe8\xb3\xc3\x3e\x7b\xd0\x67\x5f\xf4\xd9\x97\x7d\xf6\xb0\xcf\xbe\x22\xc7\xae\xe7\x80\x3d\x2c\x4e\x8f\xe3\xc1\x11\x2b\xea\x6f\xc6\x36\x6b\xb2\x6f\xd2\x67\x2b\x7c\xab\xdb\xe7\xe8\x3c\x4b\xcd\xf2\xa3\x1d\x42\xf7\x81\x62\xf0\xcb\xe1\xa1\x43\xa9\xf7\x97\xea\xe2\x2d\x62\x28\xcb\xf9\xf9\x81\x89\xb7\x60\xbf\x1c\x1e\xd6\x06\x08\x29\xc0\xa9\x97\x71\x9c\xae\xad\x3a\x25\x98\xe1\xc8\xd7\xce\xbe\x36\xb7\x31\x14\x94\x0a\x0d\x96\x7e\x9d\xf1\x70\xc6\xfe\xee\xf2\x33\xef\x35\x62\xe0\x80\x1d\x1d\xe1\xfe\x76\x17\x65\x36\xe7\xe5\xba\x47\xed\x83\xe6\x87\x50\x2a\x11\x41\x77\xf9\xf2\x26\xcb\xb3\xe6\x86\x0f\x4c\x43\x0a\x67\x41\x73\x53\x73\xbb\xdf\x43\xd5\xb5\x53\xf9\x67\x91\xf6\x4a\x96\xe9\x00\xb2\x68\x0f\x20\x29\xd2\xc0\xf4\xbd\x03\x75\xc3\x74\xde\xfd\xf5\xf2\x52\x5d\x5e\xbe\xbb\xbc\x7c\xdf\xed\xfd\xe3\xe3\x77\xdf\xef\x5d\x76\x2e\x2f\xff\xfa\xd9\xbf\xff\xcb\xff\xfa\xd7\xcf\xff\xd2\x7f\x34\xfa\xff\xde\xd7\x84\xe1\x33\x31\x5d\xe6\xbc\x64\xe2\x06\x1c\x00\x49\x33\x3f\xe3\x39\x95\x61\x24\x21\x00\xd3\xde\x99\x1d\x85\x6c\x5d\x3d\x5b\x67\x8e\x14\xd4\x2d\xd8\x29\xe7\xa0\xff\xd7\x64\xcf\xe0\x81\x15\x1c\x43\x75\xb4\x64\xa5\x00\xf3\x14\xc9\x20\x49\xa0\xa4\x1a\x86\xfa\x2e\x2a\x2d\xb6\xf7\xbf\x29\xe5\xc3\x70\x2f\xac\xa6\xc6\x15\x5b\x70\x3d\x53\x6c\x02\x9e\x57\x10\xcb\x03\x13\xb5\xba\x11\x19\x28\x3f\x6a\x38\xbf\x9d\x86\xe7\xb6\x48\xff\xdf\xc3\xdf\x87\x76\x22\x7d\x51\xa4\x7f\x0e\xd6\x5b\xd1\x84\x87\xf5\x13\xe3\xe9\xfd\x5f\x76\xc4\x0d\x15\xb0\xa5\x00\xc3\x40\x95\x49\xfa\x1b\x9c\xdd\x1f\x4d\x88\xfe\xd3\x6b\xaa\x96\x23\x6e\x16\xd6\xa3\xc3\xdb\x6b\xd4\xb2\x84\x07\x9d\x0d\x24\x76\x29\xee\x20\xc9\xa4\x43\xf1\x82\x4f\xff\xc8\x87\x1b\x85\xdb\xee\x43\x6d\xe2\xdb\x3d\xde\xdc\x2d\x54\x03\xb1\xd3\x03\x2e\xea\xe6\x39\x69\xed\x31\x87\x83\x45\xad\xab\x0f\xb9\x05\x57\x6a\xc0\x73\x3d\xc0\x77\xcd\xdd\x1f\x73\x15\x05\x74\x28\xcd\x79\x9d\xa5\x19\x0d\x7c\xe8\x0f\x87\xc3\x6f\x5d\xf4\x2a\x25\xf0\x69\xbd\x6b\xc8\xe1\x7b\x8d\xba\xc3\x72\x59\x40\xd6\x21\xf4\x3b\xcd\x0a\xc6\x9d\xc0\xaa\xf9\xd8\x3b\xe2\xaf\xe5\x92\xa5\xe8\x29\x6d\xa1\x81\xdf\x0b\x5e\xf2\x97\x1d\xc5\xf6\xd4\x2a\x83\x52\xb8\xd2\xf4\xdc\xf3\xd9\x85\x78\x92\x88\x5c\x94\x5c\x43\x0c\x27\xba\xc2\x16\x52\xbb\xa1\xbd\xc5\x9c\x71\xd3\x95\x65\xa0\xa4\x1b\x0b\xad\xd1\xc8\x68\x77\x51\x89\x50\x0a\x47\x3d\x23\xcc\x8f\x12\x6b\x04\xee\x1e\x54\x66\x94\x5d\x67\x73\x23\x0d\x89\x39\x4f\x9a\x4f\x86\xa3\x3f\x87\x47\x9b\x02\x9a\xbc\xe2\x6d\x75\x2a\x8b\x57\x16\x88\xfa\xae\x4f\xa4\x35\x30\x8f\x54\x4a\x6b\xe4\x62\xe2\xa1\x17\xee\x2d\x6f\x88\x5b\x71\x1e\xe4\x24\x47\xf9\xb7\x2d\x68\x32\x40\xec\x81\xb4\x76\x11\xa1\x81\x05\xee\xcf\xa3\x34\x78\x59\xfe\x5f\x52\xfb\xfd\xa4\xe6\x11\x79\x0b\x5a\xf3\x9d\xfe\x6c\x62\x23\x6a\x83\x77\xea\x9f\x47\x6d\xcf\xcd\x70\xff\x97\xda\x7e\x3f\xb5\x79\x44\xde\x82\xda\x7c\xa7\xff\x33\xac\x0d\x88\xed\xfa\x93\x6b\x42\x00\xec\x1b\x36\x15\x5a\x01\x95\xa1\x54\x04\xcb\xb0\xc3\x93\x13\xec\x40\xd8\xc0\xd4\xdb\xab\xc4\x3a\x4b\x3d\x19\x7c\xd3\xe9\xb3\x77\xee\x53\xa7\xe4\x2b\x1f\x00\x89\xd6\x28\x57\xea\xc2\x0e\x05\x4f\xeb\x94\x6b\xce\x9c\x27\xae\x0b\x23\x81\x39\xb6\x38\xab\x65\x29\xba\x4f\x61\x81\xe3\x4b\x1c\xf4\xb2\x03\x42\xcb\xa5\x19\x39\x70\x94\x46\x89\x65\x20\x0b\x10\xe5\x74\x29\xaf\x76\x17\x92\x7d\xa0\xec\x26\x0f\x1c\x45\x99\x35\xc2\x64\x1a\x60\x21\x2e\xd6\xcc\x8d\xd9\x30\x1f\xb9\xd4\x8b\xe5\xee\x2f\x9b\x60\x32\x9b\xc4\xca\xb6\xd9\xf8\x1c\x2a\x30\x6c\x65\x3e\x63\x5e\x0e\xc8\x0f\xf3\xd3\x60\xe7\x62\x06\xbe\x0e\xe0\x64\x16\xc8\xb0\xf3\x50\xa5\x49\xa8\x58\xcd\x84\xc8\x07\x73\xbe\x06\xa5\xe0\x80\x97\xa5\x5c\x0d\x6e\xa5\xde\xdc\x8c\x1a\x60\x53\x68\xd7\xa4\x38\x40\x51\x92\x82\x45\x25\xa5\x10\x05\x65\x14\x41\xaf\xc4\x27\xa7\x27\x27\x3f\x3f\x67\xdd\xe3\x05\x96\x9d\x33\x0f\x86\x13\x34\x94\x5a\x0a\xc4\x7a\x65\x56\x77\x21\xfa\xa4\xce\x81\x75\x58\xfc\x43\xa8\x1e\x29\x1e\xc4\x7c\x99\x43\x88\x96\x59\x19\xea\x42\x1b\x19\x98\xcd\xcb\xc1\xb4\x98\x2f\x64\xc9\xcb\x2c\x87\xd0\x7b\x3e\x26\xe6\x35\x93\xb9\x7f\xb4\x80\x70\x7e\x25\xd6\xed\xf7\x43\xf0\xdc\xc6\x5c\x95\xcb\x05\x5e\x15\x88\x0c\x23\xd8\x97\x8a\x75\x73\xa1\x54\xcf\xf0\xd6\x92\x34\xa4\x73\x8e\x6f\x84\x20\x76\x8b\x4c\x5e\x22\xcd\x34\x78\x41\x5c\x67\xfb\x05\x2f\x24\x74\x43\x68\x88\xca\x7d\x3d\x5f\xde\xb4\x6c\xb0\xbc\x16\x83\xf9\x32\xd7\xd9\x22\xcf\x6e\x71\xa5\x06\x9b\x7b\x58\xb3\x58\x7a\x78\xce\x56\x0a\xf6\x4a\x96\x8a\x5c\x73\x73\x6f\xe0\xae\xd0\x76\x40\x0a\x3d\x77\x0f\xb8\xa7\x0f\x6e\x19\xb4\x1c\x1a\x19\x17\xdc\x91\xe4\x8a\x4d\x6c\x55\x4f\x78\x03\x55\xdf\x3e\x40\xad\x7f\x02\xd7\xac\x31\x4b\x7b\x23\x45\x6c\xdc\x9e\xef\xdf\x35\xa3\x4c\xc9\xc1\x83\x83\x07\x0f\x6c\xa8\xad\xff\xdb\xcf\x16\x3f\x0c\x72\x99\x5c\x89\xd4\x4e\x36\xb4\x1e\x3b\x4e\xe3\x66\xde\x7d\xf2\xf2\xe4\xbc\x59\x1b\xf9\xf4\xfc\x25\x8c\x40\xee\x57\x81\x47\x18\xa6\x23\x2c\x79\xa1\x72\x0a\x3b\xec\x42\x2a\xd6\x69\xc9\x17\xb3\x2c\x81\x74\x85\x2a\x04\xfa\xfa\xe2\x87\xc1\x37\xf6\xbc\x28\xa6\x96\x8b\x85\x2c\x6d\x14\xad\x54\x6d\xbe\xdc\x82\xe1\x52\xd0\x93\xa0\xb0\xc1\xe3\x11\xea\x29\x1d\xa9\xf7\x03\x66\x1c\xa4\x1e\x9d\xcd\x3d\x19\x81\x46\xd6\xad\x1d\xad\x0c\x3e\xf4\xb5\xcd\x49\xd9\x86\xf9\xe8\x2c\xb9\x42\x7d\x18\xae\x63\x59\x80\xdf\x97\x91\xd6\xd0\xbd\xc6\x08\x16\x57\x46\xce\x13\x45\x2a\xc0\xfc\x07\xad\x9d\x0c\x27\xa6\x3c\x59\x33\xee\xd9\x56\x40\xa9\x60\x40\xc3\x02\xf1\x77\xf6\x5f\x6c\x72\xd5\x31\x2c\xe8\x3e\x7b\x0a\x80\x9b\xdc\x18\x75\xdd\x87\x31\x70\x24\x2e\x07\x89\xba\x9b\x3f\x3f\x04\x99\xd5\x02\x7b\x21\x50\x13\xb2\x1d\xa9\x99\xc0\x18\x53\x6b\xe2\xad\xba\x11\xa5\x32\x59\xce\x45\xa0\xec\xb1\xd3\x19\x18\x3e\x77\xf7\x39\x01\x3f\xca\xb3\x42\x0c\x62\xa7\x06\xa8\xd1\xce\x4e\xce\xcf\x91\x8f\x82\xd3\xb8\x5e\xbb\x54\x76\x2e\x31\x95\x99\xce\xa6\x24\x3b\x2e\xdf\x3b\x3b\x32\x80\x6d\xe6\x1f\x8c\x01\xee\x36\xe7\x2d\x72\x7d\x7a\x1b\x72\xc6\xf8\x5a\xf4\xed\xd9\x87\xb6\xe7\xbc\x5a\x8e\xd5\x72\xfc\xcf\x9e\xe7\x8a\x52\xe2\xbc\x36\x1b\xa9\xd7\xa4\x82\xb4\xe5\xb7\x79\x9a\xb2\xc5\x72\x9c\x67\x6a\xb6\xaf\x96\x63\x95\x94\xd9\x58\xec\x2f\x0b\xf7\xd9\x25\x95\xe2\xd0\x1b\x33\xfb\xf3\x82\x89\x1b\xc8\x8f\x30\xb5\xfe\x49\x61\xd6\x9c\xe5\xf8\x7c\x39\x6e\x29\x5a\x29\xc7\x80\x8f\x52\x7d\xa0\xb4\x4a\x41\x52\xc6\x63\x3f\x99\x3e\x73\x33\x40\x39\x26\x9c\xd2\x5c\xe8\x99\x4c\xe1\xb9\xd5\x3c\x13\xcc\xc1\x4c\x9e\x2c\xbe\xcc\xb4\xb5\xc3\x50\x90\x0a\x24\x70\x96\xcb\x64\x26\x52\x7a\x4e\x8a\x12\xf6\xa2\x90\xac\x10\x80\x1f\x03\x68\x25\xcb\x72\x4d\x89\x68\x0d\xf2\xc8\x87\x07\xad\x3c\x71\x0d\xeb\xb0\x82\x82\xad\x8c\x2d\xc7\x7f\x03\x42\xb1\xf1\x7f\x88\x73\x20\x01\xeb\xf7\xcf\xb4\xac\xe3\x6f\xc8\xd3\xf4\xb1\x6d\x10\xd6\x40\x18\xff\xcd\x57\xed\x41\x0a\xa5\x3a\x5a\x61\x6f\xcc\x02\xe7\x2a\xd7\xce\x83\x6a\x9c\x08\xdd\x9f\x22\x4a\xa3\x25\xc7\x7f\x7b\x37\x7f\xef\x4f\x4b\xa5\xd9\xbb\xf9\x7b\xcc\x9d\x85\x43\xf6\x5c\xde\x38\xbb\x79\xe7\x6e\x7b\x30\xdc\x07\xa3\xbd\xcd\x1b\x72\x62\xbd\x1f\x15\x61\x91\x9b\xcd\x0d\xf7\xaa\x5a\x22\x8d\x7e\x06\xbc\xd9\xcf\xe6\xb9\x1d\x0c\x31\x0c\xfb\x39\xe4\x20\xd2\x7b\x1f\x59\xc2\x29\xbb\x1e\xf8\x3c\xd1\xcf\xc8\x41\xaf\xe5\x95\x20\x23\x68\x18\x8f\x5e\xdf\x80\xa0\x18\x85\x1b\x38\xd8\x08\x9a\x58\xdf\x8d\x15\xd4\xa4\xb0\x3f\xe2\x09\x8d\xc8\x3e\xac\x16\xe1\xbf\x7d\x47\x1d\xcc\x06\xbc\x7b\xef\x6b\x46\x34\xb4\x18\x2e\x96\x6a\xd6\x75\x83\x46\x27\xe8\x75\x78\x70\x31\xdc\xff\x6e\xa8\x5e\x56\x00\xed\x8a\xee\x63\xff\x71\x51\x8a\xeb\x4c\x2e\x55\xbe\x66\xa5\x98\x66\x4a\x43\xf6\xad\xeb\x8c\xdb\x42\xf3\x6e\x84\x6e\x6f\x23\xf6\xc3\xb9\x6c\xc7\xbf\x21\x77\xc8\xa4\x77\xd4\x8a\x41\x5b\xc6\xe3\x33\xd3\x2e\xac\x1f\xd3\x79\x5a\x60\x69\x13\x6a\x89\x15\x63\xe8\x0f\x57\x19\x24\x63\x47\x30\x82\xab\xc2\x11\xec\x05\x02\xce\xd8\x77\xec\x20\x02\xfc\x42\x6a\xbf\xde\xb4\x0e\x17\xe0\x29\x23\xeb\x88\x6e\x56\xab\xca\xf2\x0a\x99\x62\xe0\x47\xdc\x72\x90\xdc\x21\x34\x8f\x1a\x6b\x29\x42\xe3\x34\xcf\xd9\x04\x64\x05\x8f\x2e\xc3\x00\xf1\x3c\xa4\x8c\xab\x75\x91\xcc\x4a\x59\xc0\x8e\x0d\x5d\xc6\x42\xe4\xb5\xf8\xf0\xa3\x94\x92\xe4\xf0\xc3\x8b\xb5\x2c\x04\xbd\x1b\x97\x60\xf2\xb2\x67\xfe\x96\xc4\xb6\xb0\xcb\x33\x8b\x1a\x36\x31\x51\xc1\x8e\x0b\xc6\xcb\x71\xa6\x4b\x5e\xae\x1d\x03\x57\x4a\x26\x19\xc7\x72\x8e\x60\x79\x05\xe6\x1d\xa4\x0a\xd9\x4c\xb5\x72\xa1\x3f\xe4\x5c\xe9\x13\x47\xbd\x45\x80\xac\x80\x69\x24\x50\x44\x60\xa2\x45\x69\x69\xd7\x7c\xa1\x02\x64\x43\xb4\xc7\x58\xa0\x02\xd1\xe1\xa0\x95\xa4\xed\x8a\x9b\xc8\x59\xf4\x6b\x13\x43\xca\x76\x33\x82\x21\xd6\xcf\x32\xa5\xbb\x99\x65\xdf\x46\x94\x81\x17\x56\xa6\x98\x11\xe3\x0d\x79\xd0\x46\xc1\x16\xbb\x12\x55\x04\xb2\x4f\xc5\x17\x30\xe7\x3a\x06\xab\x48\x0b\x29\x91\x45\x22\xca\x82\xc9\x65\xa9\x44\x7e\x2d\x28\x05\x88\xb8\x49\xc4\xc2\x72\x4b\xe6\x49\x1d\x88\xd7\x17\x2f\xb5\x65\x14\x95\xd0\x17\x38\x93\xae\x9f\x31\xb8\xc2\x64\xec\xbe\xaf\x62\x68\x7a\xbf\xcb\xde\x77\x83\x6a\xca\xb7\x38\xc3\x70\x84\x3d\x0e\x20\xbd\x1d\xf8\x0f\xc0\x58\x59\x81\x85\x26\x32\x4d\x2f\x1d\x45\x65\x24\x57\xa2\x53\xd2\x1d\xb5\xc6\xaa\x12\x34\x13\xe0\xbf\x46\x7e\x4c\xb8\x46\xe0\x51\xd1\xdf\xe6\x9d\xa9\x4f\x85\x4e\x34\xb0\xea\x5a\x1f\xaa\xa3\x13\x57\x53\xb7\x83\x57\x5b\xbf\xaf\xd4\x2c\x74\x23\xdd\xdb\x8c\xe3\x03\x64\x21\x5b\x44\x5c\x54\x73\xfc\xb3\x8b\xb8\x6d\xa9\x5c\x57\xb6\xbe\x20\xe5\x2c\xc5\xd3\x78\x26\x57\x27\x50\x01\x9a\xfe\x3e\xcf\x7e\x15\xfe\xaf\x0b\x71\xa3\x8f\x9d\xdb\x73\x98\x05\xf6\xdf\xcd\xe0\x66\x0d\xd7\x99\x58\x21\x77\x44\x61\xda\xd5\x81\x53\xbe\x06\x6e\x68\xf0\x36\x6c\x01\xdc\x54\x0d\x62\xc4\x8d\xe3\xd6\x4f\x35\x9b\xf3\xac\xd0\x3c\xa3\x07\xba\xad\x17\x46\x91\x0c\xae\x76\xa4\xe1\xe4\x33\xae\xd8\x98\xab\x2c\x71\xe2\xaf\xf5\xdc\x86\x0a\x2d\xf8\x66\x85\x54\xe3\xd7\xa2\x84\xd0\x0d\x0a\x4b\x4e\x53\x2a\x3f\x5e\x8a\xb9\xbc\x36\x9f\x4b\xb9\x52\x5e\x33\x4d\x24\x10\xa6\xa9\xc5\x65\x99\x11\x0b\x09\xe9\x68\x73\x91\x4e\x5d\xbe\x93\xa6\xdc\xc5\xae\xb0\xaf\x0f\x15\x86\x51\x64\x11\x8c\x61\x88\x20\x15\x88\x19\x30\x2e\xe4\x6b\xab\xbb\x8a\xbb\x61\x55\x4c\x8a\x68\x36\x1c\x0b\xca\xc1\x98\x15\x2a\x1f\x07\x4e\xf3\x06\xf3\x05\xb7\xad\x56\xbc\xc0\x64\x30\xa2\x50\x4b\x73\x49\x19\x50\xf0\x1a\xe4\x85\xde\x38\xb9\x3e\xcb\x74\x47\x91\x7b\x68\x29\xd4\x42\x16\x2a\x1b\x67\xf4\xea\x41\xe4\x11\xbc\x12\x8a\x72\x94\x18\xbb\x6e\xfe\xc0\xb9\xf9\x7b\xef\xc2\x2f\x19\xc2\xfe\x90\x11\xc9\x42\x97\x1c\xb8\x92\x62\xa2\x98\xc8\x32\x11\x54\xba\x27\xb7\x95\x63\xa8\x64\xcf\xa2\xe4\x89\xce\x12\x31\x1c\xc2\x0d\x36\x00\x80\x96\x3c\x89\xae\x68\x8f\x64\x6e\x1e\x42\x2b\x49\x3f\x9f\x13\xa2\x61\xc1\x09\x38\x4b\xbc\x2c\x84\x55\x26\x1a\x60\xe4\x24\x67\xe7\x07\x14\xe3\x5b\x38\x75\x72\x95\x2e\xec\x1c\xe6\xb9\x1d\x03\x27\x00\x9b\x98\xf0\x12\x72\x03\x72\x8d\x88\x35\x82\xc5\x4f\x17\xcf\x9f\x9d\x62\xfe\x07\x70\xd9\x28\xec\x04\x72\x5e\x4e\x21\xc0\xa0\x00\xdd\x81\x9c\xe0\xd4\xfb\x6c\x26\x57\xe2\x5a\x94\x98\x27\x02\xe0\xcc\xf8\x62\x21\x0a\x7a\x50\xf8\xac\x25\x86\x7f\x14\x06\x94\x5b\xb3\xcc\xf3\x57\x92\xe8\x9f\xee\x32\xf2\x71\x67\x9c\x4d\xc4\x8a\x95\xcb\x5c\x50\xa6\x3f\xac\x04\x3b\x64\xec\x94\x27\x33\xbb\x9d\xb6\xb6\x61\x29\xa1\x3a\x34\x51\x65\x82\x7a\x0e\xb3\x14\xa6\xf9\x94\x75\x6e\x06\xa5\x5c\x75\xf0\x60\xc1\xee\x43\x3f\x18\xd1\x52\x06\x16\x94\x73\x19\x0d\x90\xa9\xc9\x12\x29\x2a\x75\x36\x42\x4c\x6a\x40\x27\x0a\x69\x88\x9c\xa4\x0b\x7b\xa6\x5b\x8f\x1b\xa3\x6a\x4a\x59\x41\x3a\x3e\xc4\xb8\xa3\xa9\xf1\xba\x42\x2c\x50\x35\xca\x55\x95\xc2\x04\x34\x18\x61\x86\xba\x00\x2b\x1c\x54\x68\x28\x9c\x10\x78\x83\x35\x22\x1d\x05\x1d\x57\x1c\xcd\xa6\x6f\x33\x2f\x52\x15\x53\x63\xc3\xf1\xa0\x12\xdf\xf9\xda\x72\x1b\xa4\x1f\xc3\xb7\xd8\x9c\xdf\x64\xf3\xe5\xdc\x06\xd0\x42\x65\x43\x33\x8d\x83\xaa\x78\x49\x25\xeb\x51\xa0\xc3\xd6\x27\xd0\x18\x54\xea\x04\xc5\x9f\x7d\x6c\x61\xcb\x3c\x65\x8a\x64\x3a\xc7\x4f\xce\x85\xa0\x13\x6d\x8b\xe8\xc7\x7c\xd5\x7d\x6b\x00\x64\x05\x06\x18\x00\x9b\x36\xf2\x2b\x41\x83\x6c\x86\x48\xbf\x8a\xa2\xfc\xa4\x64\x73\x48\x12\xe1\xdd\xc9\x20\x2d\x44\x9a\x82\xae\x41\x1a\xda\x94\xab\x38\xa9\x15\x41\x3b\x30\xd7\x7e\x21\xb5\xa1\xab\xeb\x2c\x8d\xa5\x4b\xda\xaf\x4a\x9d\xc4\x00\x0f\xbd\x4a\x8d\x0a\x23\x7c\x26\x7d\xb0\x8f\x0c\xe0\xfc\xf2\x04\xca\xa0\x5b\x1f\x40\xb3\x05\xf4\x70\xf5\x5c\x80\xb2\xd3\x83\x3c\x66\x5a\x1c\x43\x66\x10\xf7\x5a\xdd\xdf\xb7\xd8\x8e\x02\x9e\x1d\x92\x03\x40\x58\x4e\xd0\x4f\xef\x03\x3b\xaa\xed\xdc\x6f\xbf\xb1\x6f\x0e\x42\xc0\xee\x6a\x94\xb9\x2c\xfb\x10\x7c\x0a\x49\x49\x45\x99\x67\x05\x95\x3e\x8b\xc3\x3e\x95\x1b\x4b\x47\x57\x7a\xa4\x2d\x89\x6f\xfb\x2e\xda\xb3\x87\x56\x9d\xda\xb3\x33\x38\xa1\xd1\x21\xe9\x01\x9a\xc6\xe9\x8e\x4e\xa4\x2c\x53\xc8\xaf\xe7\xc7\xc3\x9f\x5e\xd9\xdb\x3b\x1c\x0f\x65\x8f\x2e\xc9\x67\x7e\x79\x85\x4c\xf1\xa8\x71\x2c\x22\x67\xb9\x82\xbf\x05\x71\xb8\x4c\x39\xa9\x00\x6e\xd0\xca\x98\x67\x72\xf5\x42\xa6\xc2\x60\xb4\x58\xe6\xf9\xb6\x11\xd4\x82\x17\x56\x28\xb9\xed\x50\x6d\xe3\xc8\xc9\x44\x09\x8d\x17\x5e\x40\x07\x70\x6d\x87\x3d\x7d\x62\xce\xa6\xf1\x2a\x83\xbd\x04\xa0\xd5\xe1\xce\xc4\x54\xdc\x50\xbd\x36\xf4\x8c\x04\x33\x82\x2c\x53\xef\x1d\xe9\x77\xc5\x7c\xff\xb8\x14\xfc\xea\x39\xd7\xc9\xec\x99\x98\x68\x07\xae\xb1\xc5\x19\x48\xc2\x1b\x9b\x3c\x47\x8f\x72\xdb\x26\x78\xb1\x9f\x51\x65\x2c\xcf\xe9\x20\xfe\x10\x43\x3a\xbd\xd8\x59\xd1\x59\xba\xf2\xa8\xbe\xc5\xc7\x7a\xeb\x86\xba\xc3\x44\x9e\xc8\xe3\xec\x1b\xd5\x8a\x39\x1c\x63\xfd\x80\xe7\xd5\x8e\x75\x85\x8b\x04\x6f\xd4\xa9\xd0\x30\x68\x4d\x8f\x4b\x93\xf4\x44\x6d\x9a\x75\x6b\xa7\xba\x5f\xe1\x15\xb6\x44\x7f\x1b\x9e\xe2\x45\xb8\xd9\xd7\x67\x1c\x61\xca\xf1\xfe\x06\xe1\xf3\x76\x8b\xfd\x49\xd0\x86\x37\x2f\xb7\x71\x31\xbb\xaf\xa5\x7d\x03\x76\x59\xce\xdd\xb6\xef\x2d\x9c\xbc\x8d\x0b\x0a\x37\x2c\x5a\x8c\x35\xd7\xb6\x5f\x9f\x0b\x51\x52\xa5\xc1\xe6\xcb\x38\xd9\xe1\x0a\x0e\x60\xb4\x2e\x44\x09\x7d\x12\xdc\x0c\x1b\x4a\x20\x57\xee\x14\x2a\x85\x7c\x2f\x2c\x9d\x1b\x71\x66\xea\xc0\xbe\xa7\xb6\x81\x66\xd6\x0c\x1a\xb5\x6d\xec\x5f\xca\x55\x9f\xd6\x39\xa8\xea\xec\xce\xf0\xc1\xe0\x73\x9e\xc1\xab\x21\x7e\x74\x85\x45\xf4\xb2\x3a\x17\x08\x44\x68\x24\x08\x0f\xe8\x16\x84\x00\xd6\xd2\x33\xb9\xda\x4c\x08\xb6\x95\xea\x1e\xf6\x5c\x4d\xeb\x78\x29\xf1\xb3\x51\xcb\x45\x20\xa1\x56\x16\x03\xd5\xf3\xc2\xfc\x4f\xdb\x89\xa4\x72\x76\xdd\x93\x2b\xae\x1b\x8d\x87\xef\xbb\x00\x33\xdf\x23\x6a\x90\xe1\x8b\x14\x7a\xef\x84\x0f\xd5\x42\x4a\xcd\xe7\x9d\x74\xb3\x07\xb4\xdf\xf1\x5e\x93\xc5\x18\xe4\x37\x46\xb7\x68\x0d\x3f\x55\x1c\x44\xbb\x6b\x3a\x5e\xd8\x3b\x5f\x92\xf8\xb9\x71\x19\x94\x8c\xbb\xb2\xb1\xa5\x5c\x05\x07\xa2\x69\xfa\x07\x7d\x33\x48\xe3\xfc\xf1\xb6\xd8\x71\xfa\x8d\x3b\x01\x10\x2e\xac\x0c\x79\xdb\x85\xa8\xca\x4a\x54\xe3\x52\xa8\xfd\x90\x2f\x16\xf9\xba\x1b\xff\x08\x6b\x53\xad\x07\x31\xe7\x9f\xe6\x1c\x3a\x38\xb7\x38\x86\x0b\xb9\xd8\x7a\x08\xb1\xcd\xce\x47\xd0\x7a\xc3\xfd\x33\x9e\x42\x5a\xea\x5d\xce\x60\xe3\x4d\xcc\x06\xb8\x8a\x9d\xcf\x67\x13\xf2\x3e\xf1\x11\x5d\x2c\xd5\x6c\xc7\xf3\x09\x8a\xe2\x5d\xce\xe5\x2e\xd3\xfe\x64\x47\x93\x16\xd0\x72\x2e\x61\x8f\x4d\x93\x9d\x8f\x62\xd3\x3e\xf8\x7c\x00\xe6\xcb\x8d\xeb\x72\xf4\x8a\xca\x93\x0b\xa7\x46\x71\xab\xb1\xef\xa6\xe1\x27\xdc\x45\x6c\x52\xd9\x47\x18\x17\x39\xe9\x06\x76\x4b\xad\x76\x64\xb9\x7f\x08\x26\xd4\xf0\x0f\xa1\x0c\x87\x14\xd5\x8c\x15\x22\x11\xe7\x80\x90\xb1\x23\x76\xf0\x88\x65\xec\x3b\x9c\x14\x89\xcf\x2c\xbb\x7f\x3f\xaa\xe3\xd5\x8c\x42\x76\x9f\x65\x16\x8d\xea\x5d\xf6\xbe\xee\x7d\x40\xfc\x91\xdf\x82\xbb\x6f\x43\x65\xa0\x9b\x6b\x61\x83\xb5\x7b\x21\x64\x7f\x1b\xd1\x87\xd0\x9a\x68\x6a\x07\xfe\x47\x58\xfe\xb3\x2f\x89\x06\x52\xc3\xa8\xd7\xc8\xae\x30\xfc\xaf\x72\xc1\x38\x14\x37\x51\xe8\xae\x57\x4d\xd4\xbc\x72\x7e\xc1\x53\x80\x6b\xb1\xc9\x72\x13\x59\x55\x94\xd0\xaa\x51\x41\xa4\x25\x43\x8d\x10\x3e\xd5\x73\xc1\x4b\xc5\xe4\x52\x63\xc9\x11\x83\xc4\x92\x94\xb8\x29\xd7\xdc\xc2\x3c\xc6\x24\x58\x14\xbc\x4b\xa7\x5e\x96\x5e\x4f\x49\x69\x7d\xc0\xde\x19\xe8\x59\x9c\x55\x29\x53\xa0\x41\xce\xb3\x14\xdc\x9c\xc0\xc2\xcf\x33\x25\x30\xeb\x94\x4a\x96\xa5\xf0\x26\xdf\x2d\xdc\xc0\x22\xe3\xa4\xaa\xfa\x6a\xf2\x01\xab\xbc\xa2\xcc\x3e\x59\x8d\xd8\x66\x6d\xd6\x06\x05\xd4\x46\x75\x51\xb0\x6f\xbe\x1e\x67\x42\x05\x33\xed\xd1\x20\xf4\x6c\x3b\xba\xb0\x3d\x27\x76\x7e\x1b\x57\x68\xe7\x3f\xcc\x8a\x42\x94\x60\x45\x38\x62\x9d\x4e\xcb\x2a\x89\x62\x9d\x36\xb2\xdb\x01\xc7\x4b\xb3\x9d\x93\x5c\xae\x3a\x55\xec\xf8\x45\x1e\x3c\x6a\xc1\x2c\xbd\x6f\x37\xb4\xb0\xd0\xcd\x3a\x78\xae\x84\x73\x72\x31\xb4\xf3\x28\x7c\x3a\xc7\x4a\xd4\x61\xa6\x48\x4b\xdd\xed\xf9\x72\xa4\x37\xda\x2d\x30\xb2\x6e\xd3\x2f\x60\x9b\x05\xc5\xc4\x2c\xd3\x02\xd2\x86\xd5\xd5\x46\xde\xde\x8e\x15\xe7\xd1\xa1\x18\x9c\x14\x64\x01\x0a\xf7\x6b\x51\x2a\x97\xe7\x1a\x54\xeb\xb0\x27\x90\xb0\xd8\x30\x31\xc1\xfb\x2e\x86\x1b\xc1\x40\x3a\xb6\x8e\x82\x8a\x04\x94\xd9\x4a\x94\x5c\x09\xe7\x81\x37\xb4\xae\x3d\x04\xfc\xa8\x49\x71\x3c\xa4\x5f\x1f\x35\xeb\x95\x87\xbe\x33\xa1\xb2\xb9\x99\x5a\x17\xc9\x09\x4c\xbe\xdb\x73\xe8\x06\xed\x6c\xf3\xa8\xe8\x0c\x7b\x82\x9a\x5b\x51\x76\xcd\xcf\x6d\x27\x65\x08\x06\x87\xf4\x64\x96\xe5\x69\xd7\xc0\xac\x36\x74\x87\x46\xa6\xc2\x7b\x99\xb5\x2e\x64\xcb\x8a\xe3\xa5\x04\xa7\xec\x39\x2f\xaf\x22\xbe\x08\x02\x1f\xb8\xc9\x80\x31\x9a\xa8\x4e\xb8\x5c\x4f\x85\xa1\x10\x43\xef\xa1\x8d\x08\x34\xfb\x8e\x42\x21\xee\x90\x32\x55\xa7\xb4\xef\x98\xe1\x07\x53\x55\x97\x90\x08\xd0\xeb\xfe\x0c\x64\x32\xb6\xa3\xa5\xfd\x4a\x28\x96\x69\xc3\xff\x30\x41\x3b\xdc\x3d\x89\x9c\x8f\xcd\x30\x7a\x05\x39\xb3\x20\x57\x96\x1b\xd2\x19\xf1\x1d\x48\xf0\x7e\xb5\x36\xfe\x78\xbe\x18\xc1\xe8\xca\x86\xb9\x0b\xd8\xa6\x25\x14\x66\x9a\x64\x54\x8b\x17\x35\x64\x14\x92\x03\x56\x3f\xfb\x13\xa4\xda\xe6\xda\x1a\x56\x17\x65\x86\x0a\xdf\x58\x4b\xef\xb8\x39\x85\xdc\xcf\xe7\x99\x46\x5b\x64\x84\xbd\xbe\x75\xc0\xc7\xcc\xec\x8b\x52\x24\x22\xb5\xae\x18\xa5\xb0\x50\x60\x73\x42\x76\x08\x96\x78\xc9\x38\x64\x8c\xa9\xcc\x7a\x23\x97\x84\x89\x3c\xcb\x0a\xf1\x32\xe0\x30\xdb\x39\xa5\x12\xba\x95\x01\xa2\xcf\x7e\xf5\x71\x9f\xcb\x24\xb8\x84\x15\x78\xd3\x32\x8e\xb9\xa8\x80\xea\x9c\xf6\xbb\x55\xb2\xb1\x6f\x02\x48\x9c\x86\xd6\x9d\xea\x1b\x22\x90\x64\x80\xa5\x56\x9a\xfb\x01\x36\xaa\x31\x5b\x2f\x47\x52\x24\x1a\x20\x81\x17\x69\xb3\xfe\x9c\x78\x6a\x22\x0b\x25\x73\x31\x5c\xf1\xb2\xe8\x76\x8e\x7d\x46\x4c\xa8\x42\x52\x21\x0e\x59\x30\x81\x25\x84\x70\x5a\x9d\xa8\x48\x74\xe4\xe1\x64\x90\xf1\xfd\x51\x8b\xee\xbe\x32\xb6\x28\x4b\x59\x76\x3b\xe6\x1e\x34\xe2\x8a\x9c\xb0\x31\xd4\x01\x43\xff\x46\x7c\xf3\xc0\x30\xb0\xfd\x6d\xef\xf6\xc3\xe0\xbe\xb0\x33\xf8\xce\x48\x43\xbf\x67\xb0\x83\x68\x51\x5e\xd1\x5b\xbf\x6f\x9a\x87\x41\x95\x73\xd3\x48\xb4\x4d\x8f\xa8\x17\xdd\xb0\x75\x05\x74\x7d\x61\xd4\xb8\x7d\x6d\xb7\x1d\xd4\x2f\xf2\x56\x77\x7b\x89\xa7\xad\xb6\x25\xef\x4a\xb9\x7a\xff\x28\xbe\x91\xa8\xed\x10\x54\xcf\x70\xaf\x38\x8d\xfa\x67\x70\xc1\xd0\x4a\x2a\xcd\xe5\xaa\x10\xe5\x13\x1b\x95\x82\x57\xd8\x85\xb8\xd1\xe6\xc7\x6e\xa7\xe3\xb7\x0a\x5a\x37\xde\x5a\xce\x13\x90\xee\x90\x93\x60\xd5\x9e\x56\x71\x21\x47\x4d\xcc\x24\xf4\xcd\xab\x12\x40\xa3\x9c\x34\x68\x10\xaf\xbc\x43\x5f\x78\x45\x07\x97\xe9\x23\xfa\xb9\x3a\xcb\x5b\x8e\x13\x78\xf9\x45\x92\x53\xa3\x34\x4c\xeb\xde\xb8\xfb\x20\x55\x87\x7c\x05\xb0\x86\xaf\x81\x6e\xb8\x73\x06\xc5\x64\xb4\x3d\x62\x6e\x86\xd1\x72\x1e\xb9\x86\x2b\x32\x29\x35\x59\xcf\x87\x06\x2a\xd8\x9c\xfc\x26\x06\x94\x32\x34\x77\xfc\x79\x36\x86\x28\xa1\xdf\x7e\x23\x50\xdf\xd3\xd8\x1e\xcf\xad\xd2\x4a\xed\x67\x2f\x01\x23\x0c\xdb\xc4\x73\x35\xc2\x4f\x75\x77\xee\x1f\xe1\xe8\x8f\x42\xd2\xad\xce\xb1\x1e\xe1\x40\x26\x31\xeb\x83\x11\xa4\xe0\xf1\xc1\x1d\x50\xe8\x24\xe1\xa5\xd0\x61\x45\x05\x1d\x0a\x43\xe0\x92\x56\x7f\x27\xb6\xdf\x1c\xeb\x22\x39\xb7\xb0\x4e\x00\x74\xe8\x37\x6c\x7f\xa1\x4b\xb5\x5c\x13\x26\x7d\xe6\xa6\x44\xe6\x39\x5f\x28\xd1\xad\xa2\xb6\xdf\x44\xf0\xc8\xb4\x12\xc8\x80\xd4\x9d\x64\xa5\x98\xc8\x9b\xa7\x90\xc5\x31\x3d\xb5\xaf\xc1\xc0\xe3\xf6\x87\x1f\xc0\x67\x13\xfd\xdc\x21\x1c\x87\xda\x40\xe4\xdc\x4c\x90\x5c\x96\x99\x77\xd6\xa4\xcf\x4a\x4e\x29\x0d\x79\x81\x05\xf0\x0b\xa9\x2d\x28\xaa\xbf\xe9\xac\xda\x34\xed\x61\x6d\x23\x16\x79\xa6\xbd\x18\x06\xfb\x87\xf2\xde\x4a\xc2\x5f\x4e\xa5\x66\xa4\x80\x82\xa8\xc3\x5e\xff\x61\x4d\x2b\xf3\xf7\x8f\xd0\xc6\xb4\x7e\xf2\xf2\x39\x9b\x94\x7c\x0a\x89\x98\x3b\xdf\xa5\xd9\xf5\xf7\xdf\xa9\x05\x2f\xbe\xff\x49\xe4\xb9\x64\x6f\x65\x99\xa7\xdf\xed\xc3\x37\xdf\xed\x9b\x5f\x3b\x18\x7c\xc0\x94\x99\x10\x60\x14\x3c\xec\xb8\x52\x91\x87\x05\x56\x87\xb1\x87\x4c\x4e\xd8\x57\xb6\xee\xca\x0a\x82\x25\x21\x37\x2b\x7a\x9c\xb9\xe1\x51\xd4\x1c\x1b\xf9\x54\x8c\x1a\x26\x63\xe7\x01\xff\x6d\x98\x19\xfa\x45\xda\x29\x80\xdf\x16\xc7\x1a\x35\xde\x41\x06\x13\x54\xe0\x1c\xbc\x03\x3b\xd4\x8b\x08\x04\xf3\x15\x2d\x42\x41\x75\xd5\x50\x3e\xd7\x72\x30\x16\x03\x58\x3c\x6e\x42\xe0\x0d\x67\x5d\x4d\x44\xe9\x53\x75\x58\x78\xe8\x8a\x82\x8e\xbe\x06\x5f\x39\x4f\x44\x8a\x4f\x00\x2d\x1b\x54\x74\xe6\xe5\x6c\xb0\xfb\x11\x7b\x3a\x6f\x16\xa8\x7f\x93\x67\xba\x59\x52\x23\x74\x47\x3e\x29\x76\x51\xa6\xb7\x77\x40\xc1\x15\xe0\x43\xd3\x39\x4f\x24\xc9\xb2\xdc\x7c\x2c\xdd\xa6\x87\xc7\xd1\x80\xee\x47\x3c\xcd\xb0\x4d\x88\x1d\x78\x11\xf0\x99\x24\x97\x85\x80\xcb\x10\xae\xe6\x5e\xf4\xee\x3e\x41\xcd\x84\x6d\x1b\x7c\x65\xce\x66\xf5\xbb\x4d\xdc\xf8\x7c\x39\x56\xba\xa4\x49\x1d\xb8\x79\x19\x30\x6e\x4a\x15\x58\xe8\x37\x0d\x21\x4f\x1a\x1f\x9b\xf4\x5b\xd0\x9b\xae\xdf\x46\x10\x3d\xc7\x53\x87\x0b\x6e\xd8\x1d\x34\x40\xf5\xd4\x63\x08\x48\xf0\xfd\xfa\x35\xa6\xeb\x42\x68\x3e\xab\x2e\xb3\x19\x2e\xea\x4c\x22\xc9\x21\x60\x14\xa7\xe8\x04\x8c\xc4\x67\xc8\x0b\x7c\x9b\xb3\xc5\x42\xa4\xae\x32\x9e\xf7\x3e\x4a\x72\x3e\x5f\x78\xca\x0f\xdd\x0e\x37\x12\xc2\x9c\xaf\xc7\xe2\x24\xcf\x16\xe4\x25\xd6\xa8\x16\xba\xc5\xe5\xd9\x24\xca\x38\x9c\x23\x8c\xef\x36\x08\xb2\x81\xbb\x9a\x61\xc9\x50\xb6\xbb\x90\x1a\x43\x1a\x61\xf5\x10\x1c\x3f\x5e\x6a\x2c\x2b\x8b\x5f\xf3\xf9\xc2\xc5\x41\x6c\x77\x97\x68\x1d\xfc\xf6\xee\x13\x8d\x82\x73\xaf\xe1\xb6\x6f\x92\x6b\xcd\x83\x30\xba\xe7\x2b\x0f\x9a\xfd\x7d\x76\x6e\xd8\x91\x9c\x4c\x62\x35\x2d\xae\x04\x43\x60\x0c\x27\x82\x3d\x64\xa5\x50\x1a\xcb\x43\xb0\x9c\x6b\xe1\xd4\x42\xbb\xcb\x76\xd6\x35\xed\xb9\x35\x39\xfb\x37\x29\x7a\x82\x80\xeb\xb6\x7d\x2d\x7e\x32\x64\x59\x7f\x38\x34\x82\xd8\x52\x1d\xa8\x37\xe0\x25\x79\xd8\x5a\xbc\x81\x4b\xdc\xed\x69\xb1\x42\x88\x0d\x72\xd8\x77\x04\xd5\xcc\xa9\x2e\xbf\xe2\x03\xff\x76\x8c\xcb\x05\x6f\xd4\x25\x97\x83\x26\xe1\x85\xe2\x8a\xfc\xee\x5b\x94\xe4\xb9\x15\x0c\xa0\xb8\x95\xdf\x99\x61\xf3\x9b\x28\x3e\x7e\x8f\x1a\xb4\x74\xe1\xa2\x22\xa9\xb1\x59\xca\xb6\x4f\x9d\x06\x86\xb5\xe1\x71\x51\x97\x47\xed\x83\x36\xa2\xc8\xef\x36\x72\x83\xa7\x91\x7e\x7b\xc5\x31\x9a\x2b\x8b\xbc\x13\x7d\x12\x6f\xb0\xe9\x08\xe0\x8d\x45\x70\x20\x94\x13\xd2\xbc\xc8\x7a\x17\x67\xa9\x70\xde\xbd\x9a\xa2\x78\x7f\x3f\xa8\x25\x9b\x0b\x73\x74\x8d\xa4\x47\x2e\x29\xd6\xf3\x82\x4e\x6f\xb3\x2e\xad\x4a\x76\x9b\xd8\xc6\xc7\x46\xe3\x34\x65\xa3\x8f\x85\xf6\x20\x91\x87\xd3\xaa\x78\xc7\xf9\x40\xb2\x87\x93\x17\x39\x21\x03\xf4\xff\x90\x4b\x14\x8f\x40\x60\x6c\xb8\x32\xba\x3d\xa2\xcd\xac\x60\xb2\x4c\x6d\x79\xb6\x6c\x11\x68\x4b\x3d\xfc\x82\x78\x76\x4c\xc9\x36\xaa\x28\x53\x58\x6c\x70\xb9\x70\x97\x19\x86\xc7\x68\x49\x91\x09\xf9\xda\x85\x1e\x51\xb8\x5c\x4d\xd5\x6a\x60\xe1\x0a\xa3\x7b\xaf\x41\xb5\x17\xc7\xef\xb6\xd8\x8a\xd1\x6b\x3e\x7a\xb9\xe8\xd2\xdf\x8d\x9e\xe8\x5b\xde\xd8\x71\xa3\x0b\xb4\x28\xf8\x2f\x62\x29\xe9\xce\x16\x16\x67\x76\x30\x57\x23\xc4\xc2\x00\x7a\x90\xaf\xb9\xb2\x8d\xb0\x92\xf1\x9a\x2d\x4a\x48\xf1\x0c\xf9\x82\xe4\x5c\x30\x28\x7e\x5e\x4c\x11\xc8\xca\x19\x39\x94\x0d\xb6\xa4\xac\x02\xa0\x76\x2e\xd3\x10\x18\x0e\xc0\x67\x82\x43\xc0\xbc\xce\xe6\xc2\x72\x26\xa5\x4b\xeb\xc8\x69\x65\x33\xfa\x06\x30\x68\xe7\xfc\x02\x2c\x1e\x66\xc2\xab\x19\xd7\x7d\x7b\xa2\xc1\x3d\xc9\x45\x8e\x42\x25\xdb\x90\x1b\x38\x1f\x6d\x48\x28\x7d\x2d\x10\x96\xc1\x12\xe5\x28\x98\x2f\x93\x59\x8b\x63\xbb\x95\x07\xee\x1f\xb9\x39\xda\xc9\x3c\x93\x09\x44\x1a\x27\x33\x51\x31\xaf\xb9\xb7\x58\xac\x77\x68\x52\x88\x58\x0e\x8e\xc6\x08\x2b\xc3\xe3\xf4\xe9\xaf\xb9\xe0\x46\xc2\x0b\xf2\xac\x89\x22\x8d\xf7\x69\x88\x60\xa0\x9e\x5f\x36\x5f\xe4\x99\x55\xa8\xc7\xc2\x1f\xd7\xd5\xee\xf4\x1b\x48\x9c\xf6\x92\xc0\xb9\xbc\xb4\xb3\xde\x72\x79\x7a\xea\xec\xb1\x81\xd3\x51\x58\xdd\x55\x04\x2b\xd0\x09\xee\xef\xb3\x63\x56\x88\x29\xa6\xf4\x2a\xe3\xe5\xfb\x64\x3e\x8d\x5e\xfa\x0b\x9b\xe1\x49\x14\xa9\x05\x66\x97\xe3\xa3\x4e\x24\x79\xad\x81\xfd\x82\xb1\xb7\xa2\x63\xae\x47\xa2\xcd\xc0\x7d\xc4\x93\x73\x85\xa0\x87\x5e\x1f\xa4\x5a\xec\x7a\x83\x68\x7d\x36\xd6\x17\x62\x04\x32\x15\x80\x0a\x4a\x94\x26\xd2\xbc\xc9\xb5\xc8\xd7\x6c\x59\x40\x68\x68\x3a\x64\xec\xb5\x8d\xf1\xe8\x07\x85\xd6\x7d\xa0\x32\x44\x83\x40\x76\x5f\x5d\x66\x57\x42\xcf\x4a\xb9\x9c\xce\xe8\x51\x3b\xf6\xd5\x78\x65\x11\x0c\xda\xf7\x92\x5f\x47\xb3\xa5\x12\x0e\x57\x05\xd1\xab\x54\xf8\x70\x56\x98\xf1\x27\x4f\x29\xaf\x0d\xd8\x93\xac\x56\xab\xd1\x30\xea\x63\x52\x7e\xfb\x2d\x88\x3d\x6d\x34\x9f\x45\x53\xde\xda\x3c\xa8\x33\xbf\xb5\xed\x2a\x01\x56\x1a\xb5\xfb\xac\xa9\x21\x57\x49\x96\xd5\xdb\x36\x35\xd5\x59\x2e\x9e\x70\xcd\xd9\x67\x68\x57\xef\x79\xa1\x7f\x7f\x9f\x3d\x16\x70\xb9\x19\xbc\x25\xa2\xe0\x65\x26\xfb\x56\xb8\x06\x3d\xcf\xa2\x14\xda\x66\x73\x46\xae\xc8\x56\xe6\x01\x1e\x14\xc4\xf5\xc0\x64\x99\x4d\x31\x7a\xd6\x9d\x61\x50\x69\xe9\x92\x1d\x19\x9a\xbb\x6f\x3e\x46\x61\xd4\x24\x14\xd9\xdb\xc0\x1c\xc2\x0b\xc8\x2b\x74\xc4\xbe\x88\x97\x86\xb8\x08\x1b\x37\x21\xcb\xb6\x0b\x9a\xb5\xa0\x8a\xfe\x85\x57\x51\x96\x8b\x5d\xda\x01\x8d\x03\x96\x9f\x98\x0b\x01\x83\xc8\x76\xea\xe3\x49\x01\xcc\xaf\xf1\x4e\x9c\x63\x99\xec\xb1\xdd\x90\x7e\x1c\x92\x40\xd1\xd8\x9c\x4c\xa0\x8e\xb8\xab\xc7\x9b\xb5\xdc\xae\xec\x28\xc4\x34\x5c\xc4\xf7\xcd\xa6\x34\x87\xb5\x9b\xdb\x54\x96\x6e\x26\x2b\xe1\xe2\x33\x93\x30\x52\xd0\xea\x73\x36\xcc\x06\xd9\x0d\x49\x08\xc1\xd4\x36\x9a\x1a\xdc\xb4\xda\x1c\x33\x02\xb5\x04\x02\xef\x87\xb0\xab\x9a\x09\xd6\xac\x9f\x8e\x84\x17\x04\xb3\x83\xba\x9a\x1d\xb1\x98\x4b\x3e\xaa\xe1\x9d\xc4\x9c\x95\x8a\x1e\xb9\x28\xa1\x14\x72\x05\xb1\xd9\x98\x7d\xcb\xe9\x39\x30\xb3\x01\x5d\x67\x28\x2e\x3b\xc9\xb5\xf9\x66\x63\xb5\x7b\x2d\x36\x9e\x35\xf1\x02\x70\xae\x10\xca\x7b\x25\x04\x77\x5d\x70\x91\x5d\x90\xc6\x0f\x84\x56\xca\x06\x49\xea\x3e\x57\x57\x30\x2b\x9a\x27\x55\xbf\x24\x8f\x8e\xfc\x2d\xb9\x81\x3a\xab\xc4\xd9\xc8\x2b\xe4\xad\x40\x1a\xc6\x73\xbf\x02\xb8\x91\xdc\xdb\x20\x04\x67\x7a\xdb\x9b\xd7\x83\x08\x55\x76\x98\x16\x8f\x79\x3e\x78\xff\x56\x80\x02\xc5\x9f\x23\xa3\xa6\xe7\x73\x28\xca\xb1\x46\x7d\xca\x45\xbc\x57\x56\x20\x5b\x95\xd2\x48\xc1\x90\xd0\xc1\xc6\x92\xdb\x9d\x47\x5d\x74\x48\x98\x08\x6a\x2c\xa6\x19\x66\x5a\x96\x65\x8b\xe4\xd5\xc7\x77\x28\x44\xa6\xa7\x7f\xe3\x49\xc4\xc1\xcc\x13\x87\xdf\xa3\x57\xa9\xc1\x73\x06\x42\x67\x91\x82\x2b\xda\xd0\xe5\xec\xa8\x6f\xb5\x91\xb1\xc8\x9f\xda\xcf\xa1\x79\x70\x96\xcc\x44\x72\x45\x86\x1f\xcc\x68\xc4\x14\xb2\x04\x2f\x06\xd9\x5f\xac\x79\x2b\x62\x50\x95\x1f\xbd\x59\xac\xda\xeb\xf3\xcf\x63\x7d\xc7\xb6\x33\x57\xe9\x1f\xdc\x02\x95\x5f\x22\x5a\xc4\x3d\xde\xc0\xcd\x1a\xe7\xdb\xc2\xc9\xaa\x2f\x92\x0d\x03\xf7\x36\x98\xe7\x40\xb9\x22\x22\x0d\xcc\x16\x2f\x28\x7c\xfa\xec\xc4\xd7\x09\x70\xc8\xd8\xeb\x5d\x9d\xa9\x51\xac\x3c\xfb\x6e\x5c\xf2\xc6\x03\xb2\x99\x69\x79\xb2\xdb\x40\xed\x01\xc1\x81\x49\xa4\x46\x6c\xa1\x1d\xf5\xa8\xe5\xb6\xf2\x44\x16\xb6\xbe\x2d\x81\x85\xd7\x5f\x60\x08\xf7\xdf\x36\xb2\xc9\x96\xdf\x37\x50\x5c\x6d\xe2\x3b\x52\x9b\x27\x82\xff\x83\x54\x55\x97\x11\xb6\x91\x15\x39\x36\x52\xed\x17\xcc\x9c\xe5\x5e\x5f\x98\xe0\x93\x17\x6b\xfb\xfc\x0a\x1f\x4b\x33\x51\x9a\xc7\x0b\x14\xd6\xca\x74\xc7\x29\xe5\xa6\x92\x9c\xcb\xbc\x34\x55\x53\x84\x79\x34\x6e\x33\xde\xe3\x5c\x9b\x5d\x84\x6a\xf2\x9c\x61\xea\x4a\xce\x05\x9a\xd3\xa2\xfa\x38\x4d\xf2\x06\x3d\x37\x11\x92\x15\x05\xd1\x00\x97\xe9\x9a\x15\x17\x12\x00\xa1\x63\xf3\x12\xf6\xd2\x9b\x15\xcd\x50\x63\xa1\x57\x61\x52\x01\x6f\x92\x6b\xbb\xfc\xee\x4e\x12\x77\x61\x33\x35\xf9\x71\x33\x65\x6c\x61\x37\x81\xae\xf2\xa5\xf7\xf1\xa6\x67\x69\x4d\x5d\xd9\xec\x88\xfe\x3f\x58\x0d\x59\xc9\xdf\xd1\xaa\x89\x9c\xf3\x9b\x67\xe8\x9a\xd6\xec\xd5\xb5\xc9\xf8\x43\x8a\x01\x07\xa2\x17\x1c\x21\xf6\x4e\xe9\xf2\xbd\x33\xf4\xae\x36\xea\xf4\x6e\x21\x79\xd7\x4c\x34\x9e\xcd\x6f\xb2\xbe\x38\x0b\x6f\x83\xcb\xd3\x11\x90\x5d\x24\xc7\x67\x2a\x08\x2c\x70\xda\x15\xce\x0a\x39\x90\x8b\x3e\x3e\xf1\xe7\x15\xa3\x97\x8f\x32\x69\x65\x46\xb1\x27\xce\x66\x25\xe3\xaa\xf5\xd6\x85\x7e\xa9\xc8\x85\x16\x27\x33\x5e\xaa\xee\x73\xae\x67\xc3\x79\x56\x74\x29\xfd\x92\xdf\x10\x7f\x0c\xa3\x14\x2f\x88\xf5\xe0\x84\xfd\x20\xcb\x15\x2f\xd3\x01\x42\x45\xc5\x10\xb9\x07\x87\xf9\x5b\x76\x3a\x74\x17\xe4\xd9\xa0\x5d\x81\x35\x62\x8c\x08\x3c\x8d\x0a\x8c\x29\x4c\x85\x2f\x52\x28\x81\x07\xf9\x9b\xf2\x35\xe3\x93\x89\x48\x34\xa4\xaa\xa9\x2a\xf2\x04\x53\x7c\x2e\xac\x87\x75\xfd\x20\x6e\x08\xc6\x89\x32\x74\xc8\x49\x08\x5a\x4b\x9a\x9d\x75\x55\x71\x79\x72\x5a\xec\xe4\x08\x64\x9e\x15\xcb\x06\x05\xf3\xb0\x3d\xc9\x41\x75\x0e\x15\x5d\xa5\xcb\x2d\x49\xb8\xda\x78\xc4\x03\x12\x68\x09\x2c\xdd\x60\xc5\x7b\xb4\xa3\x4e\x3a\x34\x08\xc3\x8f\x3b\x99\x85\x19\xa1\xfd\x88\x39\xda\xa4\x78\xd5\x26\x1e\xd3\x00\xdf\x7b\x46\x04\xb9\x0a\x08\xa3\x07\xde\xb5\xf3\xda\x27\x3e\xb0\xe6\x03\x5e\x6a\x24\xfe\xbe\x11\x3b\x9f\x51\xe2\x8a\xd8\x4c\xc9\x3e\xff\x3c\x0c\x8a\x62\x61\xb7\x5b\xb9\xfb\x7d\x02\xef\x94\xe0\xa9\xbb\x5b\x57\xda\xb1\xfb\x2e\x4e\xcb\x74\x75\x4b\xbd\xd5\xf4\x29\x99\xc3\x51\xb4\xfe\x41\x88\x37\x2b\x57\x4b\xab\xb8\x0f\x5b\x7e\xfe\x79\x30\xee\xe7\x9f\xc7\x58\x3c\xf2\xbf\x45\xfa\xba\x17\x32\x24\x78\x50\x8a\x5a\xc6\xb0\xa2\xc7\x6f\x19\xe8\xc9\x51\x84\x2a\xc1\x0f\x71\xcc\xc7\xf9\x9a\xe9\x72\x6d\xd5\xf4\x00\xd0\x9d\x5d\x60\x5b\x71\x3a\x26\x4c\x0a\xbc\xca\xd2\xe0\x94\x79\xc9\xcc\xa6\xb9\x8b\x94\xb1\x0d\x8d\x41\x10\x25\xfe\x0e\xfa\x1c\x23\xbc\x41\x8e\x50\xe7\x95\x57\xd3\xdd\xc1\x17\xb7\x10\xbc\x3a\xac\xe3\x84\xfb\x8d\xee\x44\x0e\x70\x8b\x3b\x51\x0b\x59\x62\x9c\x52\x95\x54\x0e\x9c\x12\xce\x52\xc2\x61\xc3\x9b\x02\xb5\x8b\x2d\x4e\xa3\x48\x1f\x01\xd0\x23\x76\x60\x88\x01\x10\xf7\x59\x9d\xf1\xc4\x2e\xc6\x5b\xbc\x9b\x18\x79\x09\x7b\xb7\x55\x9a\x0c\xfe\x24\xeb\x2a\x3c\xef\x05\x51\x93\x3e\xb3\x09\xc5\x83\x70\x1b\x1f\x50\xc8\x02\x4a\x06\xb8\x27\x44\xc5\xd5\x83\xbc\x12\xac\x76\xfd\xb3\x23\xf6\x85\x59\xda\x67\x9b\x24\x8d\xd0\xd1\x78\xab\x99\x97\x55\x35\xf9\x55\x25\xc7\x26\x3f\xe1\x6d\x4a\x97\xbb\xbd\x87\x02\xc5\xdb\x86\x79\x6d\xb4\x46\x04\x14\xb9\xe3\xfc\x77\x7d\x12\x1f\x34\xaa\x21\x0d\xaa\x61\x43\xdb\x7d\x5a\x76\x74\xd1\xdf\x1e\x66\xe6\xc6\xd9\xa4\x21\x77\x8d\x76\x5a\x4c\xeb\x0b\x3c\x3c\x10\x15\x6d\x0e\xd0\x3a\xdd\x87\xe5\x75\x2c\xcb\x65\x45\xaa\x28\x79\xce\x2f\x83\xb3\x97\x6f\xb1\xb4\x2d\x3c\x36\x82\x8c\x68\x3e\xfe\x1e\x1a\x81\xcc\x62\x0b\xaf\xda\xea\x2b\xd1\x03\xa5\x2a\x61\xa1\x8f\xaa\x11\xc4\x70\x14\x70\x07\x9f\x66\x05\x53\x82\x97\x09\xe6\xc2\xf3\x29\x7c\xe4\xc4\x05\x90\x79\xd1\x08\x41\x18\xb9\x88\x40\x50\xb6\x46\xde\xa2\xad\xb4\x10\x36\xe6\x81\x32\x8f\xa4\x73\x73\x13\x9d\xc9\xd5\x87\xc6\x6c\x14\x24\x09\x94\x72\x55\xa5\xeb\x50\x67\xc4\x1a\x7e\x1f\xce\xb8\x6a\x77\xa8\x08\xbc\x9f\x30\x6c\xa1\xe9\x5c\x7e\x0c\x36\x4e\xae\xa2\x9d\xfb\x11\x42\xa6\x6d\xfa\x49\xc4\xbe\xc7\x01\x5c\x38\x36\x52\xeb\x1c\x77\x48\xed\xba\x45\x3f\xc4\xe4\x50\xdf\x0a\x9b\xb4\x1c\xa4\x77\x0a\x16\x0e\x5b\x6e\x45\xb9\xe9\xd8\x8c\x6e\x72\x38\x23\xeb\xce\xde\xde\xa3\x68\x0b\x02\xa4\x59\xeb\x9a\x59\x64\x4d\x95\x46\x11\x30\xbb\xed\x40\xb8\x07\x35\xde\x52\xe1\x1e\x50\x87\x39\x08\x48\x89\xf6\x07\x4d\x1f\xb5\xb4\x67\xaa\x4a\xb0\x45\x02\xbe\x63\x96\x50\xe9\x3e\x69\xd8\x0c\xb8\xc7\x5e\x90\xfd\x6f\x2a\xec\x9e\x38\x00\x13\x7c\xca\x54\xcf\x48\xa5\x95\x9c\x90\x06\xd5\xd6\xce\xa7\x84\x99\x90\x45\x7a\xeb\x76\xfd\x72\x26\x57\xc7\x04\xaa\xe6\xce\x1d\x1d\x91\xd0\xa7\x0f\xd4\xab\xd6\xda\xfc\xc2\x3c\xc2\x8e\x8e\x8e\x58\x07\x66\xd6\xe9\xd5\x91\x19\x06\x9a\xf8\x5b\xbe\x72\x04\x30\xd6\xa5\x01\xbf\x41\xa4\x27\x78\xef\x21\x9d\x07\x8f\x36\xc3\x24\xe8\xfe\xa7\x26\x16\xe9\xb7\x3e\x1c\x84\x5c\x1d\x33\x1c\x7f\x46\x36\x6f\xa0\x0f\x3b\x9c\x6c\x74\xcd\x7f\x19\xb8\xe5\x47\xf4\x51\x7b\x28\xbe\xba\xfb\xda\x37\xee\xbb\x85\xfb\x36\xd3\x33\xab\x46\xaa\x1e\xd9\x3e\xab\xfb\xf4\xfb\xf0\xb7\xf0\x19\x36\x38\xb4\x8f\x2e\x4b\x96\x67\x3e\xf0\xb1\x4a\x65\x5e\xa0\x03\x60\x41\x8f\x16\x98\x0b\x1f\x37\x7a\x10\x30\x8c\x70\xa8\xcf\x8e\x58\xc0\x3f\x5c\x87\xfb\x5b\x45\x1c\x1f\x3d\xb9\x13\x53\x31\x22\x5f\x85\x91\xdc\x85\xcf\x44\x4b\xac\xf1\x1a\x3f\x7d\x87\xc0\x70\xbb\xb2\xc2\xdc\x66\x0d\x1b\xb4\xd3\xe1\xa1\x0b\x78\x97\xb3\xf3\xc4\x3a\xd0\xdf\x55\x06\x88\x8e\x04\x42\xbf\xd5\x29\x72\x0c\x70\xf3\x31\x0a\xe6\xdd\x0e\x62\xeb\xc9\xda\x1d\x31\x3b\x1f\x2c\xdc\xa9\x1d\x4f\x55\x85\x39\x56\x48\x1a\xbd\x99\x57\x82\xe9\x92\x83\x91\xcd\x69\xa1\xb4\x5c\x54\x0c\xc6\xa5\xe8\xc0\xbe\xcd\x28\x43\xca\x24\x2b\x52\x78\xb7\x0e\x63\xe6\x1d\x0c\x76\x44\x8e\x4d\x75\xfa\x0c\x8f\xe4\x06\x6a\xac\x00\xac\x2e\x32\xb4\xe1\xef\x44\xd4\x11\xac\x83\x9e\xbd\x2a\x9a\xd8\x41\x4b\xaa\xa5\x61\x62\x84\xe5\x17\x50\x38\xbf\x21\xe9\x52\xa0\xcc\x7a\xe1\x22\x78\x83\x3e\xef\xb2\xf7\xd1\xab\x2c\x42\x95\xe3\x7f\x4d\x67\x36\x0c\xc9\xbc\x05\x27\x0a\xc6\xe8\x55\x6e\x46\xb3\x0f\x0d\x47\xdb\x05\x74\x41\x92\x6e\x24\x55\x9f\x70\x9d\x36\xbf\xe9\xf2\xfc\x23\x6f\x46\x77\xbe\xdc\xc0\x8d\x57\x18\xf8\x02\xeb\x32\x13\xd7\xb5\x35\x34\x24\x44\xfa\xc8\x2e\x56\x92\x09\x4c\x88\x84\xd9\x9a\xc2\xf7\x4b\x15\x09\x06\x03\x02\x4a\xba\x62\x7d\x81\x8d\x07\xd6\xac\xf0\xb8\x48\x91\x97\x6c\xbe\x0e\xed\x92\xaa\x4f\x07\x73\x2b\xb8\xe5\x7e\xbf\xcb\x95\x13\x0a\x52\xbf\xef\xd2\x71\xe3\x0e\x6e\x71\xd7\x7d\xba\xbb\xca\x9e\xe5\x1a\x16\xc3\x03\xed\xf0\xf6\xe9\xc8\xd8\x3e\x7e\xfe\xf0\x3b\x6a\x3b\x3d\xbb\x3c\x69\xff\x35\xc9\xb9\xe5\x12\x8a\x69\xf9\xee\x3c\xb4\xd8\xc8\x3c\x6d\x0b\x43\x93\x6f\xef\x14\x41\xef\xd0\xfe\xdd\x51\x0c\xc9\x1f\x81\x96\xd7\xc8\xf9\xab\xe3\x17\x1d\xdf\x0a\xea\x00\xb0\x27\x65\x96\xe7\x2c\x95\x2b\x48\x3e\x56\x04\xa9\xe1\x31\x27\x8c\xe9\x34\x04\x14\xbb\xa7\xff\x6e\x84\x8e\xf7\x5d\x40\xe9\xd8\xbb\x72\x98\xbc\x49\x34\x6e\xff\xde\xb5\x0f\xf4\x40\xe1\xd1\x8e\x96\x5e\x7d\x38\x35\xe7\x60\xff\xaf\x7e\x41\x60\x0e\x3d\x50\xcf\x84\x0f\x27\x0a\x9b\xaf\xce\xa6\xd6\x5d\x14\x29\x3b\x2d\xd2\x5b\x74\x3d\x33\xbf\x7e\xa4\x46\xf0\x07\x64\xcb\x82\x18\xf4\xcd\xe7\x4a\x09\x0d\xed\xeb\xc7\x08\x16\x01\xe6\xa5\x3e\x02\xf6\x7a\x0e\xf8\x29\x22\x97\xe0\x45\xd4\x7e\xeb\x04\x70\xdd\x23\xa9\x09\x54\x28\xb1\x79\xab\x30\xe8\x3f\x8b\xf4\xae\xc3\x8a\x22\x75\x83\xd6\xc1\x34\x0f\x09\xcb\x36\x28\x82\xad\x6c\x98\xeb\xbb\x83\xf7\xfd\x06\x6c\xbc\x3b\xc4\x74\x96\xae\xff\x69\x91\xd6\x06\x85\xbe\xb5\x2f\xa1\x67\x18\xee\x0c\x35\x10\x54\x90\x78\x02\x34\x97\x25\xc6\x0c\xbc\x3e\x7b\x56\x2b\x52\xea\xd2\x4a\x7c\x0c\x3a\x9d\x87\xdd\xb1\xae\xc2\x66\xba\xc0\x36\xbe\x5b\x7b\x76\x0a\x78\xea\xfa\xef\x22\x14\x5a\xbd\x18\x50\xe4\x51\x90\xbe\x62\x4a\x64\x77\xac\xbb\x07\xfe\xc1\x8c\xed\x7e\xfb\x8d\x10\xa7\xa5\x2d\xcb\x82\x1e\x12\xdd\xfd\x4b\xb5\xdf\x6b\x1e\x21\x7a\x94\x47\xca\xd1\x6e\xf3\x53\x9d\xf6\xc6\xb4\x72\xf6\xa9\x5e\x30\x95\xf8\xcd\xee\x06\x82\x0e\x41\xba\xa7\x26\x89\x3f\xa6\xbc\xf0\x7d\xb0\xf3\xbf\xa6\xd9\xfd\x6e\x48\x2f\xbd\xcf\x94\x3b\x7a\x7e\x29\x47\x6c\x70\xd8\x72\xe6\xfe\xe8\xf5\xe2\x1c\x45\x91\xfe\xae\xb5\x3a\x28\x95\x75\x46\x0b\xa8\xaf\x12\xcd\x69\xaf\x15\xba\xb9\x40\x81\xee\x44\x16\x93\x6c\xba\x2c\x21\x9e\x02\x48\x8f\x29\xa1\x75\x56\x4c\x95\x0d\x1b\xcb\xc5\x44\x43\xbd\x10\xc6\x2c\x56\xea\xc5\x48\x2c\x0a\xc1\x41\x84\x5a\x37\x36\x86\xba\x24\x8f\x5c\xc2\x42\x95\xa5\x02\x9b\x37\xb6\xc6\x12\x25\x34\x73\x88\x4a\xc7\x0b\x87\x9e\xcd\xe0\x63\x52\xd3\x48\x87\x67\x03\xb4\xd8\x4e\x68\xc6\xca\x8c\x85\x78\xbd\xb8\x90\x67\x74\x52\xa3\x8c\x11\xe6\x08\x12\x20\xb0\xe9\x07\x08\xf5\x00\xc4\x44\x9f\x89\xe9\x32\xe7\xe5\xe9\xcd\xa2\x14\x4a\xf9\x32\x39\x67\x62\x7a\x7a\xb3\xe8\x7a\x94\xdd\x8f\xd6\x78\x9f\xed\xfd\xaf\x3d\x07\x08\x19\x8f\x48\xf1\xf6\x3c\x8a\x67\x36\x44\xab\x4b\xb7\x71\x34\xbf\xe1\x31\x08\xb3\xe5\x86\xa9\xc4\x5f\x7f\x1f\x1f\xe5\x06\x9a\x00\xcc\x42\x78\x53\xe0\xe6\x33\x0c\x10\xf6\x43\x29\xe7\xdb\x11\x16\x0d\xb3\x33\x5d\x57\x5d\xc8\x08\x5c\xaf\x17\xd1\xd4\x16\x8c\xef\xfd\x75\xaf\x86\x6b\x4f\x8b\x0e\x14\x56\x65\x3c\x8a\xd7\x44\x2c\xb7\x79\x18\xcf\x27\xa1\x6f\x23\xdb\x20\x6c\x9f\x02\xe8\x98\xd7\xdc\xaf\x2d\x0f\xc0\xbc\x3b\x78\x5f\xdb\x43\xe8\x5e\xdd\x41\xf3\xe5\x77\x11\x19\x56\x77\xcf\xc6\xb0\xa3\x6c\x43\x12\x40\xb8\xff\xfd\x10\x98\x15\x70\xcc\xe0\xfe\x8e\xe2\x69\x0a\xdd\xbb\xf6\xc7\x9d\x4a\x6f\xca\x3c\x37\xb2\xe5\x7f\xc7\xf2\x9b\x61\xe1\xdb\x4a\xa9\xcd\xa0\xa4\xe6\x31\xeb\x5c\x67\x62\x65\x90\xd0\x61\x50\x56\x53\x4e\xd8\x24\xbb\x11\xe9\x60\x86\xe5\x78\x20\xf3\x26\x18\xfa\xec\xd3\x16\xc2\x9d\x7c\x6a\xad\x02\xdc\x51\x13\xb9\x58\x0f\xb4\x1c\x24\x79\xb6\x18\x4b\x5e\xba\x52\x8c\x9d\x37\x0e\xbe\x2d\xd6\x00\x41\x8a\x36\x90\x96\x6b\x2c\x61\x68\x56\x69\x63\x45\x5d\x0d\xc3\xcc\xe5\x85\xc2\x2c\xa2\x2e\x23\xf8\x2b\x4c\x01\x56\x42\xd5\xba\xc3\x83\x83\xfe\xc1\xc1\x01\x74\xc3\xbc\x2a\xa6\x55\x50\x95\x30\xa3\x32\x89\x0f\x1e\xfa\xea\x96\x3c\xcf\x49\x55\x69\x7f\x4a\xe5\xdc\xba\x3d\x97\x82\xa2\xe3\x52\xac\xf5\x17\x02\x83\x50\x6d\xae\xae\x18\x95\x53\x3c\x0b\x66\xe3\xa3\xea\xcc\xc1\x8e\x96\x23\x0b\x96\x8a\x39\x64\xa2\xa2\xbc\x4f\x66\x14\xa4\x41\x61\xf6\x99\x32\x7d\x86\x78\xe0\xa5\xe0\x51\x7e\x53\xbb\x57\x58\xc8\x53\x65\x53\x43\x4e\x36\xbb\x13\xee\x09\xe5\xdb\xac\xec\x06\x53\xda\x4c\x7b\x25\xcb\x2b\xd5\x37\xe0\xc4\xb5\x28\xd0\xbb\x89\xe7\x39\x93\x65\x18\x06\x1a\xec\x2e\x96\xd6\xc0\x29\xca\xc9\xa4\x92\x0d\xff\x85\xd4\xc2\xc7\x72\xff\x72\x78\xc8\xe6\xd2\x50\xa6\x1f\xd6\x25\xbf\x31\x23\x7b\x9f\xe3\xea\xc0\xf7\x82\x6a\x8b\xe1\xd8\xc1\x90\x8c\x3d\xd5\xde\xef\x35\xcd\x26\x93\x2c\x59\xe6\x1a\x15\xcb\x37\x48\x58\x86\x4c\xa9\x02\x20\x55\x5d\x35\x28\x02\x1f\xff\x42\xc3\xd3\x11\xe2\xfb\xcd\x6b\x93\xeb\x99\xcc\xe5\x94\xbc\xff\xa1\x24\x66\x30\xb4\xa1\x50\x15\x66\xda\x0a\x37\x99\x1c\xc1\xbc\x45\x56\x35\x57\xad\xd4\x7c\xca\x0a\x3e\x17\xb6\x6a\xe5\xd0\x6d\x23\xd6\x46\x55\x36\x5e\x10\x0e\xfd\xdf\x97\x59\x72\x95\xaf\x19\x57\x66\xce\xe4\xd8\x59\x96\x66\x47\xa9\xf0\x26\xc3\x13\x19\xd0\x89\x3f\x9b\x89\xaa\x3d\x2d\x82\x29\x7f\x8c\x8e\xcc\xb1\x4b\x97\x97\xf0\x05\x48\x4d\x72\x42\x39\xf5\x5c\x71\x5a\xee\x9c\x4d\x4b\x4e\xd1\x83\x98\x9a\x1b\x4f\x48\xc5\x09\xd4\x1e\x8d\xf8\x55\x6a\x07\xc4\x97\x47\x54\x88\x9b\xa7\xe9\x63\xca\xfc\x0c\x12\x7f\xcf\xdf\x03\x41\x47\xca\xb4\x68\xff\xb4\xd2\xdf\xf9\xdb\xe3\x1f\x63\x2f\x55\xac\xed\xb6\x2c\x74\x96\xbb\x7c\x42\x98\x98\x00\x93\x99\x91\x2b\x8b\x6d\x4e\x55\xd5\x2a\xf5\xd3\x0e\x0f\xfa\xec\xd0\x17\x05\x7c\xf2\xf2\x39\x2a\x2d\x20\xdb\xb1\xe1\x79\x7e\x38\x02\x0e\x7e\x3b\x6e\xde\xcb\x1c\x67\xec\x0a\xe4\xd1\xb5\xe6\x1f\x65\xc1\x80\xbe\x78\xa7\x7b\xb5\x05\x88\x80\x0c\x04\x73\xbe\xa0\x64\xca\x58\xd1\xf4\xe8\x7b\x97\x23\x27\xaa\x7d\x6b\x0d\xfe\x69\xc9\x57\x90\x25\xce\x9e\x64\x1b\x99\x47\x09\x32\x4a\x61\x5a\x7c\xe8\xf6\x20\x08\x60\xc8\xd8\x0b\xb2\xd2\xa3\x7b\x23\x54\x6e\xaf\x36\xc6\xa6\x41\x64\x04\x05\x29\x98\x59\x9c\xf0\x64\x56\x2b\x40\x78\xcb\x69\xaf\x78\xc3\xbc\x5d\x78\xa2\x0b\xf7\xab\x4c\xdd\xce\xc7\xfe\x5e\x9d\xd0\x3f\x3e\x06\x0f\x85\x94\xa5\x4b\x08\x37\x40\x3e\x06\x8c\x4f\x93\x7b\xb5\x36\x87\xc0\xba\x78\x52\x31\xcb\xb5\x69\x8b\x95\x5a\x33\xaa\x56\x9b\xfd\x2a\xdc\x98\x39\x57\x1a\xdf\xdf\x20\x0b\xd5\xf2\xdf\xfb\xdf\xb1\x9c\x5d\xad\x42\x63\xb9\x14\x36\x31\x23\x3c\x5f\x7c\xfa\x05\x9e\xbb\x8c\xdc\xc4\xca\x31\x65\x5a\x41\x31\x26\x98\x0a\x7b\x78\xcf\x07\x04\x60\xba\x6b\x73\x84\xbd\xa7\x2a\x9b\x49\xa5\x59\x29\xfe\xbe\x14\x4a\x2b\x62\xc8\x69\xc9\xa7\x76\xe5\xf6\xba\xb0\xb5\xe7\x11\x9e\x11\x9d\x97\x0b\x2a\xe3\x0f\xf1\x3f\x86\x26\x21\x37\xbf\x17\xb2\x6a\x44\x7d\x5a\xc0\xe0\x1f\x5c\x4a\x1f\x1f\xa2\xea\x4a\x34\xa1\x1f\x27\x72\x4b\xcf\x23\xcd\x2f\x94\xc7\xb3\xec\xb3\x52\x0c\x16\x72\xb1\xcc\xcd\x8d\x4b\xfb\x85\x90\x20\xf5\x26\x6c\x1c\xa2\x13\x42\x4c\x3c\xa6\xa1\x9a\x27\x55\x9b\x8b\xaa\x95\xd2\x66\xaf\x66\x42\xe4\x6c\x91\xdd\x88\x9c\xa5\x22\xd7\x9c\xcd\x97\xb9\xce\x16\x79\x86\x97\x75\x56\x98\xeb\x5a\x89\xfd\x54\xe0\x07\x84\xa0\x3d\x04\xb5\x10\x70\xf5\x11\x22\x11\x20\x62\x72\xc8\xce\x85\x30\x52\xa5\x5e\xa8\xd1\xfe\xfe\x54\xca\xe1\x34\xdf\x57\xbf\x88\xbc\xf8\xbb\xc3\x14\x40\x79\x6b\x7a\x3d\x77\x23\x9b\xd9\x1e\xd6\x70\xa5\xe5\x32\x99\xd9\x4d\x5a\x09\xa6\xf8\x2a\x74\x7c\xc3\x9f\x31\xdb\x35\x42\xcd\x8a\x29\xd4\x75\x4e\xc5\x8d\x48\x29\xa0\x77\x4d\xed\xb2\x54\x14\x3a\x9b\x64\xc0\x1b\x8b\x44\x58\xb6\x08\x01\x5f\x73\xcc\x4b\xc3\x0b\x70\x4f\xc6\x0e\x1c\x14\xfb\x11\x72\x2f\xcc\x0f\xe1\x79\xb2\xf5\x6b\x43\x1a\x86\xa9\x13\xae\xe0\xd4\xa4\x01\xf6\x68\xe2\x86\xc6\x57\x41\xfa\x35\x34\x9a\x84\xf5\x6c\x33\x75\x4e\x52\x06\xbe\x40\x3c\x31\xd9\x31\x8f\xd9\x74\x29\x54\x2d\xe0\xc3\xd6\x66\x2e\x6d\x9d\x6f\x90\x5d\xcd\x99\xc1\x73\x8b\xf4\x12\x8c\x44\x1d\xcf\x6d\x3f\x38\xc5\xaf\x6e\xcc\x8e\x7c\x15\x8f\xf8\x76\x26\x28\x53\xaa\x60\x89\x2e\xf3\xc1\x35\xbb\x12\xeb\x4a\x41\x75\x3a\xbd\x0b\xae\x28\xf3\x55\x30\x92\x2e\xf3\x37\xaf\xcc\x0f\x51\xfe\x67\x0c\x95\xc9\xae\x6b\x9c\xc3\xd6\xbc\xad\x72\x8c\x13\x83\x97\xc4\xaa\x96\x71\x9f\x20\x3f\x91\x5c\x6a\x36\xe3\x45\x9a\x87\x95\x76\xf1\x7b\x15\x6c\x1b\x7c\x2f\xc7\xf0\x46\x29\x6b\x3f\x3c\x39\x7d\xfc\xfa\xc7\x0f\x7e\x86\x1f\xdd\xd3\xe0\x55\x29\x6f\xd6\x3e\x94\x1c\xb3\xe1\xd4\x32\xee\xae\x66\x59\x32\x43\xd6\xa9\x34\x28\x3f\x67\x68\x87\x5a\xf1\xfc\x0a\x02\xcf\x50\x4a\x36\xd7\xa9\xf5\x01\xb0\xc5\x3f\xc8\xce\x64\xa5\x0a\xcc\x22\x23\x21\xd6\xd0\x02\x4e\xe4\x5c\x90\xe7\x68\x55\xbe\xa9\xde\xa4\x1f\x89\x18\x40\x12\x31\xa7\x0a\x4d\xf7\xf5\x1a\xe5\x61\x35\xec\xba\x10\x33\x6c\x56\xa3\xba\xdf\x83\xd4\xf9\xfe\x4b\x88\x13\x74\x7f\x55\x4e\x0b\x71\xbb\x6a\xe9\x5f\xdd\x24\x70\x23\x0d\xd9\x8e\x99\x82\x34\x58\x63\x11\x26\x11\x2c\xd9\x64\x69\x3e\xd8\x4a\x3c\x28\x19\x53\xbb\x58\x82\xe6\x45\x32\x93\x25\x42\xa3\x7d\x9c\xc8\x64\x49\x8f\xa4\xcc\xbc\x5d\xed\x35\x6d\xde\xa7\x4b\x5e\xf2\x42\x53\x20\xec\x58\xb0\x5c\x28\x35\x30\x7c\x62\x20\xcb\x81\xf8\xfb\x92\xe7\x03\x2d\x11\x1a\xbe\xdb\x26\x36\x94\xfa\xcc\x9e\x68\xfc\xf5\xe9\x04\x1f\x55\x86\xbd\x40\x95\x3e\xe5\xeb\x06\xc1\x93\x4b\x91\xbe\x97\x62\x32\xce\xa0\xea\xf6\xd3\x48\x14\x41\x48\x01\xbd\x95\xf5\xe7\x81\x4d\x50\xdc\x00\xd5\x9c\xa0\xca\x81\xf4\x3f\x07\xe7\x6b\xcb\x2e\x85\xd9\xac\xfe\x4b\xee\xd1\x14\x9e\x9b\xe5\x0e\xdb\x64\x97\xff\x5f\x7f\xa3\x70\xa0\xe6\x6d\xa2\xab\xc7\x41\xf8\xec\x28\xa2\xbf\xe0\x46\x81\xfb\x16\x6c\x86\x9b\x00\xd5\xa6\x0a\x81\x94\x9c\x2d\x64\x66\xa4\x96\x20\x59\x36\x15\x38\xa9\x8d\x73\xe2\xd6\xd6\x50\xed\x08\x73\x5b\x73\x96\x67\x0a\x36\xc2\xbe\x2a\x6c\x89\xfd\x20\x49\xb3\x2f\x07\xe6\xdf\x1e\x66\xff\x0c\x98\xcc\x7a\xcf\xf3\x24\x81\x72\xe7\x53\x2c\xb2\x91\x8a\x85\x9e\x0d\xf0\x27\xd4\xb6\x5a\x2e\x69\x6d\xaf\xde\x15\xb7\xf0\xe1\xe0\xb3\x2c\x4f\x4b\x01\xa5\x7a\xbc\x7f\xee\x26\x56\x18\xd8\x9a\x0c\x07\xff\xc1\xd5\x22\x08\x79\x24\x1a\x8b\x81\xe9\xf6\x71\x8c\xe3\x72\x5d\x8b\xfa\xc3\x06\xd5\x72\x06\x2d\xce\xbd\x16\xca\x10\xea\x80\xbd\x9c\x50\x83\xcf\xbc\x61\xa0\xe2\xb6\x1b\x7b\x96\xd5\xdc\x06\x7a\x51\x80\x06\xc4\xea\xc1\x2e\xc6\x8b\x22\x23\xba\x5b\xc2\xa3\xc0\xc0\x5f\x5e\xf7\xaa\x36\xf4\xf2\x3a\x0a\x50\x2a\x36\x65\xb3\xdf\x60\x2d\x3f\x5f\x17\xc9\xac\x94\x85\x79\x9c\x82\x36\xc3\xde\xb0\x20\x92\x07\x32\x8f\xa1\x8e\x90\x19\x45\xe5\x6f\xb8\x39\xcb\x83\x15\x5f\x83\xe8\x8c\xf0\x20\xaf\x55\xdf\x51\x56\xe5\x64\xfa\x64\xe3\x18\x61\x8a\xc3\xf6\x41\x6b\x03\x99\xfe\xe0\x08\x18\x88\xbc\xbc\x25\xad\x98\x29\x34\x67\x62\x56\x22\x9f\x10\xf2\x43\x41\x38\x95\xf3\xba\x88\x31\xe3\xf0\x34\x35\x33\x80\x92\x42\x20\xd7\x1b\xe1\x00\x0f\x92\x11\x11\xe8\x74\x64\x85\x97\xdf\xad\x38\x65\x53\xcd\xd9\x54\x07\x60\x2b\x22\xad\x95\x5c\x6a\x7c\x4e\x05\x6f\x2a\x97\xaa\x31\x2a\x74\x64\x1e\x4b\xf8\x5c\x74\xea\xae\x3d\xe4\xdc\x7b\x2e\x1d\x8e\x95\x52\x3c\x08\x6c\x01\x84\xd5\xed\xf9\xaa\x00\x93\xf0\x2a\xc2\x36\x67\x72\xf5\xa8\xf2\x33\xb9\x03\x06\x2a\x6e\x68\xe9\x63\x78\x7c\x53\x67\x5f\xaf\x36\x0e\xd3\x5a\x41\x73\xc7\x5a\xe1\x8e\x89\x47\x25\xf3\x76\x04\x06\x9a\x55\x86\x14\x81\x41\xbf\xd2\xd2\x8f\xe7\xb3\x15\xdd\x0a\xa7\x00\x65\x13\x4a\xa1\xc1\x66\x8c\x36\x2c\xad\x19\xa1\x4d\x8b\x6b\xc3\x67\x65\x79\x55\x74\x36\xed\x62\x13\x3e\x1b\xf7\xb0\x19\xa1\xd5\x1d\x74\xe5\x58\x42\x95\x52\x55\x0e\x1d\x4e\x85\xb6\x21\x65\xdd\x9e\xf9\xcb\xeb\x97\x02\x25\x5b\x4d\x14\x6a\xbe\x79\x37\xdc\xa5\x8d\xd7\x9f\xf7\x2c\x60\xbf\xfd\x16\x2c\x25\x68\x15\xa7\xaf\x0e\x7e\x68\x34\xe0\x3b\xb4\x6e\x40\xa2\x77\xc3\xa7\xa6\x9f\x7f\xce\x3e\xeb\x76\xac\xd4\x04\x66\x07\xf7\xa3\xf3\x78\x0c\x21\xbb\xcf\xb5\xa0\x90\x20\x38\x80\xfa\x37\xd7\x0d\x3a\xaf\x88\x73\x28\x19\x69\xab\x17\x86\xbc\x30\xf6\x99\x03\xf5\x84\x1a\x2c\x8b\x4d\xeb\x73\xae\x64\xcd\xb9\x60\xd0\x1e\x88\xd4\xde\x4e\xd9\x84\x20\xd7\xb0\x01\x3f\xf6\x37\x87\x9e\x00\xaa\xfd\xd8\x8a\x1c\xd7\x79\x1b\x6e\xa0\xe1\xef\x43\x8d\x5b\xd8\x16\xcc\x40\x75\x04\xb7\xad\x4e\x82\xfe\xce\xaf\xc6\x7e\x17\x13\x04\x71\x16\x20\xc0\x20\x94\xb4\x01\xd4\xf7\xed\xa0\x42\x1e\x55\x85\xd4\xb0\x14\xc8\xf6\xd1\xb0\xf9\xa1\x20\xd4\xcc\x16\xd8\x77\xcd\x1c\xca\x8b\x39\x95\x55\xb1\xba\x2b\x60\x3c\x59\x27\xc7\x54\xb3\x82\x5f\x44\x72\x32\xf0\x0f\x94\x61\x85\x79\xf3\x67\x71\x1e\x0c\x7a\xbb\xa8\xa2\xa3\x03\xb7\x46\x0e\x59\x87\x00\x1a\xec\x7a\x50\x3d\xc6\xe7\xd6\x02\x8e\x1f\x06\xcd\x56\x44\x33\x47\x1d\x6e\x4b\xfa\xec\x5d\x13\xf6\xfa\x4d\x54\xf3\xbe\x17\x88\x88\x9f\xb9\xb1\xac\x48\x87\x35\x74\x0a\xb1\x62\xa7\x48\xbb\xaf\x0b\x71\xb3\xc0\xe7\x10\x50\x33\x08\x55\xa0\x4c\x76\xb0\x3b\x21\xc8\x60\xf6\x9b\xf7\xf4\xae\x3b\x13\xe6\x5b\x89\xd9\x72\x03\x89\x7e\x76\x54\xa7\x51\x14\x39\xad\xcc\x79\x61\x24\x51\xce\xd2\xec\xda\xd6\x66\xc9\x54\xdd\x44\xd1\x2c\xf0\x85\x59\x3f\x20\x79\xaa\x08\x45\xbd\x34\xbb\x0e\x34\x25\xa4\xef\x4a\xb3\x6b\x7f\x07\x65\x93\x92\xcf\x05\x7d\xdd\x18\x0c\x4d\x95\x87\xbb\x1d\x6c\x1a\x14\x60\xa5\xbe\x94\x8c\x35\x51\x8a\xfc\x66\x2c\x79\x74\xc6\x90\x3a\x69\xc4\x0e\x1e\x79\x8e\xd2\x41\xfb\xd9\x88\x1d\x1e\x1c\xfc\x6b\xf8\xbd\x75\xdd\x1c\x31\x3e\x56\x32\x5f\x6a\x11\xfe\x0a\x8a\x45\xec\xe4\x13\x94\xdb\x52\x54\x38\x11\xa6\xca\xc4\xc8\x96\xff\x62\x08\xfb\x87\x1f\x86\x2c\x48\xa2\xef\xf4\xf2\xb8\x06\x85\xfd\x73\xc9\x53\xd4\xf5\x1a\x8a\x17\x0a\x3b\xb2\x4c\x87\xd5\x87\xb5\x2f\x92\x6b\x9f\x6e\x38\x9e\xcd\x0b\xd0\x99\xcb\x5f\x9f\x16\x85\x28\xd1\xe2\xf0\x0b\xf0\xf2\x55\x56\xa4\x86\x19\x9b\x61\x48\xbe\xe2\x06\x36\x3c\xf4\xd1\x02\xab\xd7\xf7\x18\xab\xa2\xb2\x34\xa2\x7a\xe7\x5f\x3a\xb0\x44\xb3\x25\x61\x8c\x79\xd8\xb4\x57\xdb\xc3\x21\xcd\xf2\x2d\x0c\x3d\xe4\x69\x7a\x6a\x96\xf6\x2c\x53\x5a\x40\x26\x09\x54\xc6\x76\x6e\xeb\x28\x86\xaa\xcb\xe2\x0c\x7a\x7f\x18\x8e\xb3\x02\x67\xd2\xf3\xe5\x7a\x52\x99\x58\x4e\x11\x2a\x50\x9b\x66\x67\xa9\xcb\x50\x51\x2a\x93\xe1\x58\xa6\xeb\x76\x0a\x9a\xf3\x72\x9a\x15\x23\x76\xb0\xb8\x89\x68\x05\x0d\xcb\xb5\xef\xdb\x68\x2b\xa0\x9e\xf0\x6b\xeb\xc6\x3c\x62\xb3\x2c\x4d\x45\x11\xfe\x86\x71\xf5\x23\xb3\xbc\xee\x60\x00\xe7\x6e\x00\xd6\x87\x01\xfe\x82\x6e\x23\xbd\xb0\xcb\x60\x25\xc6\x57\x99\x1e\x2c\x95\x28\x07\xc8\x77\x46\xf0\xe4\x8f\x1a\xcd\xe5\xaf\x4d\x2d\x2a\x25\x45\x50\x23\x1c\x04\x7c\xbd\x45\x61\xbd\x03\x69\x51\xc6\xcb\xe9\x14\x42\xbf\x05\xe3\x69\xca\x08\x1d\xd6\x20\x6d\x50\x1a\x55\x9b\x92\x93\x09\x6a\xca\x2d\x30\x8a\x36\x40\x1f\x0b\xf2\x73\x08\x92\x53\xb9\x3d\x0c\x77\x87\x06\xb9\x90\x8b\x20\x8f\xeb\xd6\xe6\x8f\xb1\xee\xba\xef\xd1\x49\x78\x9e\x74\x43\xac\x26\x33\x5e\x1a\xd2\x22\x5f\x97\x1e\xfb\x0b\xfb\xa2\xd7\x89\x85\x6d\x70\xd1\x39\x02\x82\xa9\x70\x25\xf8\x09\x99\x92\x4f\x24\x1d\xe4\x68\xb6\x78\x07\xeb\x3f\xfb\x47\xb0\x13\xcc\x9a\xf4\x47\x6c\x9c\xcb\xe4\xea\x51\xf4\x9b\x25\xa5\x4d\x33\x8d\x7b\x40\xa0\xce\x6d\xbb\x7d\xc4\xa9\x9b\x85\xcd\x04\x4f\xa3\xe3\x4e\x14\xe6\xce\xb9\xa1\x9a\x13\xa5\x9e\x65\xc5\xd5\x87\x66\x64\xe4\x59\x71\x15\x30\xe8\xb0\x43\xa5\xa6\x6c\x29\xf2\x4e\x9f\x21\xf6\xd4\x4c\x08\xdd\xa9\x0f\x64\x23\xf7\x37\x63\xbd\x71\xea\x35\x30\x8e\x67\x5f\xbc\x7c\xf2\xb2\x6b\x0e\x75\xca\x7b\x23\x76\x2e\xcb\x72\x8d\xc9\x9f\x58\x07\x69\xf4\x43\x87\x64\x16\x27\xcb\x60\xec\x22\x57\x51\xea\x3b\x84\x06\x89\x7c\xc8\x37\xe5\x6f\x6a\xc8\xd8\x53\x97\x43\x72\x91\x25\x57\x8c\xb3\xb1\x80\x6a\x10\xe0\x02\x32\x91\xa5\xcf\x6d\x2f\xe6\xa0\xbd\xbb\x96\x59\xea\xf5\x15\x89\xcc\xf3\x4c\x91\x7a\xd9\x96\xc0\xb8\xb2\xf5\x23\x32\x91\xa7\x4c\xa4\x99\x06\x7f\x0d\x81\x05\xf3\x30\xd1\x3e\x99\x71\x7d\xa2\x2e\xb0\x23\x33\x5e\xac\x61\xf6\xf7\x6c\x46\xa2\xb1\x00\x00\x02\x63\x30\xdd\x29\x05\xef\x36\x81\x5e\x4d\x69\x98\x22\x0d\xd7\x0e\xda\xa7\xeb\xac\x34\xb0\x11\xd4\x95\x58\x83\x6f\x0f\x8a\x7f\x4f\x9f\x9f\x9a\xc5\x3f\x5e\x62\x81\x67\xcc\x83\xbd\x12\x0c\x74\x5c\x72\x32\x01\x2f\x1f\xb8\xb9\x8a\xc5\x52\xb3\x99\xc8\x17\xa2\x64\xe0\x79\x63\xd7\xce\x35\xb8\x09\x99\x35\x20\x08\xf0\x86\xc3\x4c\x9b\x66\x88\x39\x4c\x27\x2b\x78\x7a\x2d\x4a\x73\xb8\xf2\x35\x9b\x2f\x31\x69\xb1\x82\x0a\x35\x06\x34\xa1\xed\xdc\x2c\x06\xb1\xac\x44\x58\x6a\x0f\xbc\xad\x34\x2f\x52\x5e\xa6\xf4\x24\x02\xcd\x16\xfe\x32\x2e\xe5\x0a\xac\xf1\x94\x13\xb4\x4f\xf6\xd4\xa5\x0e\x0c\xf4\x8a\x4f\x44\xbe\x66\x19\xd6\x62\x64\xe3\x35\xe9\xc6\xa8\xb3\xb7\xc2\x11\x39\x35\x13\xf0\xcd\x00\x7f\x0e\x4e\x0b\xb5\xaf\x1c\x14\xba\xb6\xec\xae\x9b\x43\xa3\xcb\xa5\xd8\xda\x4f\x2d\x44\x9e\x43\x0e\x5b\xd3\x05\xec\x7a\x5b\xfb\xf0\xa5\x96\xb6\xfc\x83\xe9\x25\x27\x93\x1d\xfb\x80\x8b\xd2\xad\xba\xf0\x85\xe6\x39\x88\x03\xac\x63\x6e\xa0\xad\xbd\x4a\x49\xab\x17\x37\x7a\x2c\x6f\xb6\xb6\xd7\x7c\x0c\xfa\x62\xd3\x67\x70\xd8\xd4\xbc\xed\xd2\x87\xba\xa1\x03\x28\x6a\x31\x62\xba\xe4\x85\xc2\x47\x6f\xc8\x37\xdb\x59\xf7\x44\x16\x7a\x30\xe1\xf3\x2c\x5f\x8f\xd8\x5c\x16\x12\x12\x63\xd5\x5a\x18\x86\x3c\x62\x87\x0f\x63\x01\x02\x7e\xba\xe6\x65\xc6\x0b\x3d\xc8\xb3\x29\xd7\xcb\x52\xa8\xfa\x2d\xde\x26\x68\x58\x89\x62\xb0\x1e\x91\x29\xf2\x91\x0b\x96\x1a\xdc\x34\xc9\x19\x90\xd6\x76\x00\x73\x1c\xb1\x45\xd9\x26\xf4\x46\x83\x2c\xb5\xb9\x6b\x70\x56\xec\xb3\x6c\xbe\x90\xa5\xe6\x85\x65\xe1\x4e\xaa\xaa\x31\x64\xc2\x7c\xa8\x82\xa2\xbd\xa8\x0b\x8b\x38\xfb\x4e\xdf\x8a\x7f\xf8\xe6\xa8\x88\x7f\x5b\xa1\x80\xa7\x46\x15\x08\x38\x62\xdc\x16\x12\x38\x48\xc0\x8b\xd7\x83\x43\xdf\x88\xbb\x00\x9a\xcb\x6b\xf1\x29\xe0\x88\x22\xfd\x14\x60\x12\x5e\x24\x21\x9e\xee\x04\x29\x91\x8b\xb5\x07\x71\x22\x17\xeb\xdb\x42\x00\x07\x0a\x0f\x02\xdc\x26\x6a\x30\xf6\xf7\xd9\x13\x74\x77\x42\x87\xa6\xcf\x59\x5a\x4a\xf0\x36\x33\x9c\x61\x9f\xf8\x25\xe6\xd1\xc3\x3b\x11\xdd\x23\xa8\x84\x99\xb9\x89\xba\x6b\xa1\xff\xad\x47\xdc\xdd\x56\xa0\x4c\xc5\x84\x2f\x73\xcd\xc6\xe4\x92\x88\x36\xc0\x44\x16\x93\xa5\x12\xf6\xee\xdf\xbe\x06\x33\x99\x4e\xdf\x3f\x81\xdd\x63\x1f\x73\x95\x99\x17\x08\x0e\xd4\x8d\x74\x56\xd6\xf3\x82\xb1\x8f\xd5\x53\x54\x1b\xe2\x4a\xac\x53\xb9\x2a\x3c\xa2\x1e\xcb\x74\xfd\xb3\x58\x3f\x91\xab\xa2\xfe\x3e\x0a\xdc\xc4\x20\x27\x34\xcf\x8a\x20\x7d\xb3\xf5\xec\x40\x8f\x99\x92\xca\x12\x5a\x1f\x4c\xb0\x9a\xb5\xdc\x60\x69\x76\x1d\x30\x55\xd7\x78\x98\xa5\xe6\x05\x09\xe8\x1a\x95\x72\x35\x00\xfb\x4c\xa7\xa1\x61\x2b\xff\x6d\xe7\xad\xfe\x8d\x0e\xf3\xdd\xf5\x2d\xd5\xf8\x30\x32\xd4\xb2\xf9\x61\x84\x2d\x1a\x08\xb7\xca\xd7\xdc\x9a\x3c\xc6\x5d\xf2\x6c\x5b\x4d\xc5\xbd\x81\xd0\x9f\x8f\xdc\x11\x51\xe6\x5b\xac\x51\x0b\xe0\x1d\x78\xe4\x02\x15\xa6\x8f\xf9\xb4\x5d\x80\x80\x16\x83\x31\x9f\x06\x73\x8c\x7a\xde\x05\xc5\x9b\xf0\x78\xdb\xc7\x45\xfd\x6e\x09\x58\xff\x18\x5e\x66\xd1\x32\x1b\x56\xe0\x2b\xf4\x06\x25\xd6\xc0\x72\x3e\xb6\x69\x8e\xb5\x5c\xb0\x89\x41\x31\x87\x72\x3b\x39\x79\x99\x21\x7c\xfa\xa5\x14\xb4\x1c\xf4\xe4\x07\xb7\xfb\x7b\x54\x6b\x2a\x5f\xa3\x39\xca\xee\x14\xb8\x3e\x83\x40\xca\xe3\xc2\x48\x81\xea\xd3\x88\x84\x10\x1f\x80\xd6\xd8\x7c\x4d\x8e\x8a\xa1\x97\xbc\x9d\x9b\x2c\xed\x5c\x08\x8c\x8b\x08\xb0\x9e\x04\x76\xdd\x3f\xc8\x3c\x6d\xdd\x6e\xb3\x90\x78\xa3\xa1\x79\x74\xde\xb4\x5c\x40\xbb\xc1\x44\x96\xe6\xbd\x39\x70\x33\xee\xd4\x3b\x56\x89\xa3\x46\x14\x0d\x67\xb6\x46\xfa\x16\x5a\x6d\x63\xed\x5a\xe2\x31\xa3\xed\xac\xb7\x8f\x16\x83\xdf\x6f\x5d\xcf\x86\xc9\x05\x90\x63\x5e\x88\xb4\x00\x1a\x4f\x9e\x80\x6b\xaa\x72\x9c\xd0\x3c\x2f\xb2\x84\xe7\x98\x29\x95\xbc\x64\x7d\x71\xb4\x42\x2d\xe7\x20\xf6\xd3\xed\x41\x0f\x1b\x20\x1a\x52\x80\x8f\x97\x93\x89\x28\xc9\xaf\x64\x8d\xa9\x64\xad\x92\x83\xb1\xa7\xba\xa3\xa0\x38\x20\x7a\x4a\x2a\xef\xe9\xec\xdd\x18\xcd\xc3\x70\xb1\x10\xbc\xb4\x8e\x86\xfe\xbd\x80\xaf\xa1\x0c\xd3\x7c\x37\xd5\x10\x5d\xcd\x44\x51\x75\x60\x35\x30\x33\x85\x05\x05\x43\x5b\x37\x66\x87\x57\x42\xb3\x0e\x4c\x30\xcb\x33\xbd\xb6\x27\xbf\x63\xa6\x71\x25\x04\xa6\x95\xb7\x6f\x23\x2c\xf1\x07\xa9\x6e\x83\x4a\x09\x08\x2e\x73\x7e\xca\xfe\xa4\x60\x90\x07\x7a\x39\x77\xe0\xc2\xc6\xdf\x54\x87\x2d\x17\x2b\x78\x41\x76\xe1\x6b\xb8\x9c\xc0\xbd\x16\xfc\x96\x0c\x3e\x7c\x28\x0b\xf9\x96\xf2\xf0\x55\x9e\xcd\x45\xcf\x5c\xf3\x18\xee\x01\xc4\xd0\xaf\x0c\x3e\x15\x9a\x54\xad\xa6\x85\x9c\x18\xbc\x27\x57\xc3\xd8\x75\xef\xb8\x14\x7c\xa7\x3b\x2e\x68\x1e\x11\x2a\x7e\xcf\x4b\xc1\x3b\x8d\x6d\x6b\x07\xad\x01\xd7\xdb\x2f\x99\x00\x62\x4c\xcc\xea\x7a\xea\xd2\x77\x58\xd3\x7a\x83\x63\xbb\xdd\xc0\x4c\xb1\x5f\xa5\x9c\x3b\x77\x34\x23\xe5\x8c\xad\xaf\x3d\x16\x85\xb2\x25\x5d\x97\x66\x79\x52\x69\xe7\x46\x81\x11\x10\xd6\x79\x96\x63\xe9\xb2\xb1\x8b\x51\x19\x36\xa9\x58\xd0\x39\xce\xc7\x79\x01\xce\x58\x21\x94\x35\xfc\x15\x56\x7f\x0e\xda\x87\x42\x6a\x0b\xce\x72\x55\x5a\x89\x5d\x80\x99\x3d\xcb\xc5\xb5\xc8\x51\xc8\xa3\xa7\x39\x78\x80\x58\xe7\x75\xa7\x77\x01\x4d\xbe\xd7\xa7\xbc\x90\x5a\xd8\x29\xe1\xc2\xc1\x73\x7b\x04\x3a\x49\x25\xac\x1e\x24\xe1\x05\xcc\x03\xa3\xb8\xc0\x05\x90\x10\xec\xa6\x66\xa3\x4a\x6f\xe6\x79\xa1\x90\x16\x00\xce\x6a\xb5\x1a\xae\xbe\x18\xca\x72\xba\xff\xe0\xe0\xe0\x60\x5f\x5d\x4f\x83\xcd\xbd\xf6\xf7\x5c\x9a\x5d\x37\x67\x7f\x25\xea\x7b\x71\xde\x05\xd8\x7d\xd6\x31\x30\x7a\x11\x90\x88\xfe\x0c\x42\x06\x88\x24\x59\xc6\x83\x55\xde\xc4\x00\xb0\xd3\xc7\x49\xf7\x36\xb5\xbc\x16\xa5\x32\x6c\xb6\xcf\x3a\x87\xc3\xc3\xea\xe8\xad\x72\xc5\x66\x23\x8a\x96\x8b\x8a\x31\x26\x17\x13\x5d\xf9\xaa\xe1\x70\x18\x7a\x77\xfa\x30\x25\x8a\x94\x8c\xc8\xd6\x56\x65\x37\xe7\x6f\xb8\xa5\x50\x71\x95\xa3\x3b\x36\x9b\xc1\x41\x52\x41\xad\x49\x84\x94\xf0\x85\x46\x17\x20\x81\x2d\x53\x5f\x4c\x63\x82\x55\x07\x0c\x3f\xa3\xec\x0d\x72\x2e\xcc\x5b\x77\x35\x93\x2c\xe1\x65\xe0\x6a\x0d\x5d\x2f\x78\x39\x15\x6d\xaa\x4a\x03\x15\x78\x83\xc7\x61\xd8\x29\xda\x49\xf4\x30\x1f\xc0\xef\x03\x0d\x0d\x3a\xcd\xbd\x76\xd4\x75\xc4\x7d\x1a\x77\x6d\xd3\x9e\x79\x3d\x43\xa0\xa6\x70\x6a\x81\xf0\x3b\xda\xc8\xc5\xcd\x23\x67\xbd\xef\xe0\xf5\x1b\x1b\x49\x3a\x72\xc1\x13\xd8\xdb\x83\xb6\x69\xd2\x0b\xee\xd4\xea\x39\x83\x40\x80\xcd\x1c\x32\x84\xd2\x02\xbb\xf6\x98\x72\xa4\x29\x6e\xf4\xd3\x62\xb1\x74\xaf\x7b\x7c\x34\xbe\xf2\x9d\x2f\x6c\x8b\xfa\x13\x0b\xe5\x10\x0a\x35\x88\xdd\xf9\x28\x84\x07\xfc\x79\x9d\x5e\x88\x88\xac\xd0\x03\x35\x97\x94\x1a\x0f\xc5\x0f\x17\x69\xb9\x20\x93\x6b\xe8\xeb\x6e\x53\xe1\x9a\x9e\x3f\x20\xa0\x37\x3c\x5f\x3a\x8f\xce\x93\xf3\xf3\x48\xfd\x04\x17\xb8\xb9\x50\x2d\x6c\x1b\xcd\x17\x0c\xc1\xd8\xb9\x0f\x3d\xf2\xea\x2a\x18\x63\xd8\x34\xb8\x5c\xe8\x0f\x7e\xd6\x2f\x17\x86\x72\x78\xce\xae\x61\x22\x66\x20\xf7\xda\x8a\x17\x88\x81\x8f\xe6\x1f\xbd\x7f\xe1\xf8\xba\x8c\xe7\x54\x80\x99\xd2\xc5\xba\x1c\xd0\x5b\xad\xce\x4a\xe8\x1f\x3c\x3a\x02\xd3\xb3\x47\x52\x3f\x9e\x73\xec\xba\x1f\x68\x02\x27\x11\x1c\xf7\x87\x0d\x6f\x6f\x00\xd2\x08\x06\x57\x6f\x26\x75\xee\xd0\x74\x14\x4f\xe1\x51\xd5\xb5\x62\x67\x30\x1d\x6f\x97\xc2\x3e\xeb\x22\x39\x09\x23\x1a\x2d\xfd\x6d\x40\xd9\xb4\x0d\x65\xb8\xa8\x30\xc5\x54\x1b\x82\x2a\x34\xae\x19\xb7\xe1\xae\xde\xa0\x13\xd6\xd1\xf2\x12\x6a\x85\xb4\x43\x5a\x28\x96\x79\xde\x07\x49\x01\xf3\x8e\x59\x90\x89\x02\xe5\x45\x2e\x79\x0a\x42\x8b\x19\x2f\xd3\x50\x86\xd8\x76\x63\xb2\x84\x80\x58\x73\x51\x87\xe4\x04\x99\xd0\x20\xe9\x3e\x77\x71\x84\xe6\xf8\x2d\x16\x79\x26\xd2\x60\x80\x5d\xe8\xec\x35\x9a\x93\x5e\x97\x79\x88\xb4\x65\x99\xfb\xa4\x3a\xee\x8f\xed\x06\xb0\x59\x29\x26\x9d\x3e\x33\x3d\x42\x6f\x94\x7a\x37\xef\x70\xe5\x1d\x54\x22\xa3\xe7\x46\xe3\x17\xc0\x08\x2b\xfc\x3b\x0b\x6f\xdb\x20\xe1\xfc\x2b\x83\x84\x79\xdf\x5b\x06\xd9\x46\x7c\x1e\x8f\x74\x09\x39\x44\x1a\x0e\x1c\x9c\xcd\xd0\x78\x57\xb1\xa9\x6a\x97\xfb\x7a\xc3\x40\x28\x21\xd4\xa8\x3b\x72\x09\x80\x36\xdd\xba\x82\xc7\x7d\xbf\xcb\x49\x2a\x45\x50\x02\xf8\x36\xc7\x09\x0c\x0c\x5b\xc7\x50\x1b\xc7\x00\x18\xad\x1c\x2d\xa1\xe6\xbb\x8d\x34\x15\xfa\x71\x5c\xd0\xf8\x36\xab\xa9\xd4\x42\xde\x65\x5d\x1b\x46\xdb\xbc\xae\x71\xad\xe3\xce\xb8\xf4\x63\x3e\x9d\xf3\x69\xe4\xac\x94\x99\x2f\x76\x18\xd3\x76\x84\xf6\xb7\x1b\x93\x62\xce\x7d\x40\x59\xf6\xeb\x2e\x23\x52\x37\xd3\xfa\x76\xe3\x05\x59\xa0\xdc\x98\x71\xae\xc5\x8d\xe3\x06\xdd\x6d\xaf\x5d\xc6\x3f\x89\x62\x1e\xdd\x96\xba\x6f\x83\x91\xa3\xf0\x48\xff\x47\xb5\xfa\x00\x05\x4a\x83\x38\x08\x51\xfe\x56\x21\xe7\x03\x4c\xe3\x9c\x14\x17\x33\x41\xa5\x76\xdc\xa3\xd2\xde\x45\xb1\x56\x04\x1a\x6d\xe5\xfe\x53\x41\xe1\xdc\xd5\x0d\x0c\x62\x19\xf0\x17\x04\x32\x15\xfa\x24\xcf\xcc\x23\xd9\x5c\xc9\x15\xdb\x97\x3b\x45\xc8\x68\xad\x88\x0d\x01\xe6\xf8\x07\x7a\x48\x91\x98\x0d\xdf\xe3\x5a\x06\x1b\xa3\x57\x0d\xfb\xdd\x84\xb8\xa8\xb6\xd7\x06\xcc\xd9\x52\xc2\x59\x3a\x85\x74\xd3\xbe\xa0\xd8\x9d\xd1\x66\xb3\x6d\x6e\xe0\x26\x11\x8a\xbb\x3d\x5a\xf1\xa6\xf5\x50\x6a\x9a\x4d\x0b\xda\x6d\x76\x18\x54\x7e\xbb\xe9\xe1\xe0\x0d\x89\x2e\xa3\xb0\x13\xd2\x78\xc8\x3c\x55\xf5\xd4\x36\x36\x41\xd0\xad\x3d\x2d\x03\xef\xfe\xcd\x93\x76\xd7\x77\x6b\x42\x4e\xab\x56\x74\x4f\xe8\xca\x84\x7f\xf7\x44\x11\x69\xe4\xca\xbb\xfd\x32\x89\x26\x7a\x92\x83\x06\x74\xa9\xa1\x0e\x6b\xc2\x93\x19\x9a\xa8\x5e\xb4\x27\x1f\x09\x06\x2f\x85\x61\x45\xa6\x53\x8b\x14\xb0\x31\x91\xc5\x0e\xc9\x25\xc2\x99\xce\x30\x81\x67\x10\x9f\x15\xa4\x2c\x89\x8e\x16\xf0\x23\x70\xef\x74\x19\x10\x60\x65\x98\xb1\x07\x32\x4e\x70\x4a\x75\x51\x7d\xff\xbd\x84\x48\xa8\x5b\xa5\x71\xb1\x7b\x68\xdf\x5e\x36\xf9\xd2\xad\xb7\x52\x09\x1d\x66\xbf\xd9\x94\xe3\xc5\xbe\x86\x09\xfb\xdd\xc8\x48\xd8\x9a\xd5\xc5\x5d\x45\x33\x91\x2e\x73\x71\x06\x18\xa8\xbc\xa6\x9f\x16\x13\x59\xce\xab\x79\x9d\x9c\x9b\x61\x29\xa5\x0e\x62\x2b\x21\x43\x15\x38\x02\x95\x98\x65\x28\xb2\xbe\x18\x78\x2e\xc3\x54\x21\x59\x2e\x8b\xa9\x28\xcd\x3b\x36\x73\x59\xab\xce\x83\xda\xc0\xe4\x24\xe6\xfd\x80\xa0\x88\x6a\x8a\x5a\xfe\xca\xda\x20\x57\x26\x52\x4c\xb7\xc7\x0a\xb9\x82\xc1\xe8\xd8\x99\x27\x6f\xa1\xb3\x52\xe4\x6b\x48\x60\x24\x4a\x57\x4d\x1d\x22\x4c\x33\xcd\xd2\x2c\x25\x35\x16\xea\x68\x6d\xfe\x24\x03\xa6\xf0\x51\xbf\xe1\x0c\x22\x1f\x61\x1f\x4b\x61\xad\xbe\x94\x5c\x0b\x49\x02\xa3\x49\x13\xa0\xd9\x34\x22\x4e\x75\x95\x2d\x14\x21\x0d\xa1\xba\x74\x49\x00\x76\x62\xde\x5a\x48\x9c\xfd\xd0\x2d\xca\xdc\xaf\x63\x4c\x92\x03\x81\xaa\x94\x3b\x89\x61\x35\xe2\x0a\x7b\x9e\x71\xc5\xc6\x90\x36\x81\xac\x65\x50\x2d\xc6\xe9\xa9\x7d\xb6\x90\x19\x57\x95\x89\x6e\x24\xd1\xac\x80\xcd\xab\xb8\xa0\x37\x17\x9c\x74\x06\xa9\x4a\x6c\x66\x58\x8b\xd1\xd6\x88\x0b\xad\x48\x61\xae\xe9\xa8\xfe\x77\x73\x05\xba\xa0\x78\x00\xe9\x03\xdb\x8a\xc9\x05\x65\xe4\xaa\xa1\xa2\x1b\x19\x91\xe5\x56\xd7\x60\x35\x5a\x9c\xb9\x84\x3b\xee\xda\xba\xf0\xdf\x76\x5d\xfe\x40\x5c\x53\x43\xeb\xc7\xd1\x0f\xdd\x00\x64\xa0\xea\x32\xfb\xff\x06\x8f\xd1\x99\x5c\xa9\x0f\x61\xb3\x7e\x05\xf6\xf6\x57\x94\x3d\xf2\x4f\x37\xec\x9f\x2f\xc3\x6b\x53\x5b\x04\xdb\xdd\x9c\xf5\x35\x8c\x2d\xad\xe6\xc5\x88\x69\x45\x09\x7d\x81\xbf\x74\x5d\x84\x61\xd7\xc7\x68\x50\x11\x47\x08\xd2\x6b\x82\x60\x03\x83\xa1\x81\xff\xda\x85\x6b\x60\xc9\x88\x8a\xc2\xc4\x6a\x04\x23\x71\xf6\x76\xfc\x18\x74\x43\x15\x79\x74\x71\xb3\x51\xbd\x45\xcd\x17\x37\xec\x3e\xeb\x2c\x6e\x02\x5b\x41\x9b\x1e\xa9\x2e\xdb\xd8\x0b\xee\xf7\xcc\x7e\xda\x3c\xfb\x48\x2c\x58\xf0\x52\x89\xa7\x85\xee\x6e\x58\x4b\x3c\xc9\xe7\x94\xed\x0b\xf8\x0d\x4d\xcc\x05\x18\xf9\xbc\x5d\x59\x81\xb9\x80\x6a\xb9\xd2\x42\x15\xe7\x0a\x65\xc2\x0b\xbb\x4d\xf4\xb7\x96\x36\xed\x17\x30\xad\x4e\x21\xcb\x39\xcf\x3b\x2c\x9b\xd8\x1b\x56\xce\x33\x4d\x05\x72\x7d\xa2\x7d\x9f\x60\xec\x23\x3b\xae\xa4\x1c\xa3\xfb\x7b\x2b\xce\x68\xdc\x93\x4a\xfe\x32\x87\x3c\x3f\x6b\x44\xe3\xfe\x3e\x7b\xb1\x9c\x8f\x45\x69\x13\x9f\x7b\xd3\x20\xbf\x16\x25\x27\x79\xc5\x4b\xd1\x75\x54\x59\x1b\x57\x01\x70\x5e\x4e\x9e\x01\x94\x23\x76\x78\x70\xf0\xa8\x3a\x02\xf8\x81\x30\x70\xeb\xcd\x0a\xd1\x38\x94\x7b\x80\xb4\x8f\x64\xfa\xba\x22\xa0\x30\xcc\xbd\x50\x31\x86\xe9\xd5\x22\x15\x95\xcb\xb8\x56\x51\x58\xb5\x59\x72\xa3\x6e\xb1\xb3\x92\xf9\x6a\xe0\xa6\x04\x1e\x9a\x9d\x7a\x97\x36\xdb\xd7\x36\xeb\x57\x93\xfd\xab\xd1\x02\xd6\x68\x03\x8b\x7f\xb7\x6f\x46\xbe\xd4\x32\x70\xc0\x8c\x1b\xd1\xfb\xb1\xd6\xc6\xea\x1b\xd1\x9c\xe6\xdc\xd5\x29\xd4\xc8\x66\x1b\xe3\x4c\x2d\x38\x18\xbf\xc8\x01\x9d\xce\x54\xc2\xf3\x64\x99\x43\x32\x01\x0b\x25\xce\xea\x98\x15\xec\x87\xac\x14\x13\x79\x53\x41\xdd\xf9\x82\x17\xdb\x37\xca\x8c\x5a\xdf\x29\xe8\xdb\xb0\x5b\xa6\xf5\xc0\x8c\x8f\x59\x09\x6a\xdb\x45\xfd\x8a\x42\x94\x3f\x5d\x3c\x7f\x16\xc4\x81\x74\x3b\xbf\x74\x86\xa5\x58\x08\xae\xbb\x9e\xea\x7a\x86\x31\x5e\x96\x9d\x9e\xfd\x29\x22\xfd\x06\x02\xaa\xfb\x82\xb9\x61\x2d\x9e\xfd\xd7\x8f\xb9\x12\x66\xac\x4f\x8d\x85\x31\xc1\xa5\xe5\xe3\xc6\xae\x78\x01\xfc\xca\x66\x5d\xb1\xd6\xcc\x99\x60\xb6\x7d\xdb\xf4\xea\x37\x46\xe7\x80\x6e\x8b\xe6\xf6\x95\x92\xbe\xbf\x54\xac\x14\xc1\xe4\x3d\xe4\xb7\xf6\xd5\x1d\xb0\xdb\xdf\x7e\x03\x0b\xc7\x0e\xae\x3d\xc4\x09\x5c\x6a\x65\x18\x61\x8b\x0a\xa6\xba\x35\x81\xda\xa6\x92\x05\xd2\x81\x23\x35\xc4\x7e\xc0\x98\x36\x87\xaf\xf9\x9e\xc4\x58\xf7\x59\x95\x84\xee\xed\x42\x41\x0e\xb7\x18\x59\x64\x00\xda\x5d\xb3\xc4\x53\xd9\x03\x2c\xa9\x71\x21\x17\x8f\x2a\x03\xd4\xb4\xf6\xb5\x01\xea\xf8\x6e\xee\x13\xb6\x6d\x70\x5f\x68\x71\xfa\xbe\x9e\x06\x8b\xf8\x55\xca\xf9\x0f\x3c\xd1\xa0\xb5\xf5\x0e\x05\xa1\x4f\xc9\xa3\x6d\x43\xd4\x26\x47\x43\x78\xd9\xc1\x6b\x4a\x1b\xd3\xaa\x54\x93\x86\xd6\x1f\xe8\xa5\x18\xcc\x03\x69\xc2\xca\x3c\x95\x5c\xa3\x90\xbd\x27\x05\xaf\x03\x7f\x95\x52\x16\x5b\x5e\x30\x0c\xf9\x02\x0e\xaa\x93\xed\xda\xb2\x9a\x0c\xd6\xa6\xb7\xa8\xb4\x81\x2f\x9b\xa4\x83\xee\x36\xeb\xf4\x99\x79\xa4\xb3\x34\x9b\x8b\x42\x41\x9e\x47\xb3\xa0\x40\x47\x45\xef\x30\x73\x8d\xa3\x97\x1c\xbc\xa9\x39\xbd\xc8\xc8\xaa\x67\x00\x05\x20\x48\x18\xf4\x0e\x6b\xbb\x28\x6a\x36\x2c\xb6\x35\x53\x5f\xe5\x98\x63\x52\xf2\x48\xd5\xca\x06\x75\xe3\x6a\xe2\x1b\x3f\x8a\xac\xa8\x71\x7e\xc9\x48\x30\xa6\x37\x97\x7a\xe2\x56\xf9\xa1\xdb\xdb\xf8\xd0\x58\x2c\xc7\x79\xa6\x5c\xcd\x6a\x17\xf9\xca\xfe\x11\x24\x88\x1b\xa1\x46\xe1\xa3\x65\x28\x95\xe5\x07\x8f\x0a\xec\x73\x26\x57\x17\x12\xdf\x67\x5d\xf8\xba\x41\xe5\x00\x79\x30\xbb\x3d\x97\xac\xc8\x01\xa8\x6a\x55\xf0\xc7\x8f\xcd\x0f\x13\x57\xc5\x06\x5c\xef\x02\x11\xdf\xa5\xfe\xb5\xfa\xc2\x9d\x88\xba\x01\x7f\x2d\x3a\xf4\x50\xc7\xde\xa4\x76\xf5\x5b\xd6\x90\x81\xd5\xf7\x46\xae\xbd\x31\x1b\x6b\xd0\xd8\xaa\x72\x9d\x87\x11\x46\x0d\xd8\xfb\x13\xd2\x56\x72\x9b\xd7\x0d\x50\x30\x16\x94\x1a\x36\xca\x45\xad\xb4\x39\x7a\x2e\xd8\x0e\x64\x28\x9b\xaf\xd5\xba\x1f\x4d\x72\x69\x4e\x50\xb1\x66\x13\x68\x2c\x29\x13\x26\x9e\x34\xe7\x55\x74\xed\x1e\xd7\xb0\xa1\x54\xac\x60\x32\x54\x73\x5e\xea\x1f\x0c\x8c\x27\x99\xd9\x77\x4b\x60\xb5\xd5\xf4\x1b\x58\xc5\xd0\x7a\x68\xfb\x54\x4b\x05\x4b\xe4\x7c\xb1\xd4\xd5\xa7\x80\x5c\x9a\x67\x92\x16\xd3\x92\xe7\x74\x7f\x51\x3a\x5f\x57\x4d\xc3\x4f\x51\x39\xfd\x79\xe3\xdc\xff\xd2\x3e\x95\x68\x26\xa0\x37\x27\x7d\x58\x22\xd8\x58\xe8\x95\x10\x91\x67\x2b\xcd\x0f\x02\x36\xa4\x26\xc4\xd1\x97\x46\x8c\x55\xce\x73\x74\x2c\xd8\x9c\xa7\xe0\x0e\x08\x1c\x4b\x81\x23\x36\x06\x73\xa3\xd3\xa0\x15\x7b\x4b\x91\xc8\x32\xc5\x93\x88\x3e\x2c\x4a\xb2\x4c\x5b\x1f\xb1\xc2\xaa\xb5\x58\xce\x35\x66\x8b\x4d\x05\x6e\xaa\x73\x3e\xb7\x9a\x8e\x86\xdd\xbb\x90\x8b\xe7\x30\xa8\x2d\x0f\x59\xf9\x1d\x4f\xb3\x6b\x52\xdb\x46\x36\xa8\xe3\xd9\x9f\x81\x8a\x27\x37\x2e\xcf\x06\x3c\xb7\x4f\xc5\x3e\xfd\xef\x79\xb5\x91\x01\xe3\x92\x0f\x1d\x3c\xda\xa4\x30\x6b\xa8\x1c\xde\x90\xb6\x2d\x86\x79\xbf\xc6\xad\x89\xcf\x36\x28\xc0\x1a\x8a\xfa\x87\x99\xa4\x2c\x8b\xaa\xdf\x38\x91\x6d\xc5\x05\xb8\xd4\xa3\x59\xac\x7f\x0d\x99\xa4\xaa\x5c\xa3\xaa\x19\xa9\xf6\x9b\x59\x62\xaf\x1f\x80\xfb\xd5\x65\x6f\x86\x64\x5e\x7e\x41\xf2\x26\xb8\x9e\x50\x88\x7b\x66\x7e\xd9\xd2\xdb\x10\x74\x63\xe7\x0b\xb9\x60\x83\x96\x99\x6c\xd3\xc4\x55\xee\xc1\x3a\x97\xde\xdf\x67\x98\x87\x21\xcc\x8e\xcc\x4b\xc1\x03\x97\x75\xa8\x6c\x00\x51\xc9\x99\x4b\xfc\xa2\x98\xb8\x16\xe5\xda\x26\xfd\x75\x6c\x39\x4c\xdd\xdc\xa6\x46\xa7\x3b\x6d\x83\x6b\xb5\xdb\x93\x6e\x2b\xab\xc1\x5c\x97\xdb\xfe\x35\xcc\xab\x29\x13\x51\x73\xbf\xc6\xb3\x76\x87\xde\x11\x53\xd8\x09\x80\xd9\xdc\xca\x4d\x4e\x17\xbe\xb3\x25\x41\x74\x0b\xc8\xe6\x8c\xdb\x9c\x80\xe0\x0c\x65\x65\xdf\xa7\x64\xe4\x9b\x0b\x3d\x93\x29\x24\x05\x44\xf3\x02\xe5\xca\x46\x87\x7b\x65\xdd\x6b\x41\x1a\x40\xc8\x33\xae\x48\x26\x4c\xd0\x77\xff\x2f\xac\x5c\x16\x41\x4a\x51\x6c\x26\x93\x64\x59\xee\xe0\x68\x15\x89\x2a\x3b\x69\x82\x71\x80\x3b\x68\x81\x4b\x3b\xc6\x9d\x34\xc0\xd8\x3b\xd2\xfe\xba\x14\xf5\x6d\xaa\x5f\x5a\x55\xf8\xa6\xa8\x65\x26\xc6\xec\xde\xb2\x68\x49\x71\x6d\x85\x33\xbb\x71\x90\x98\x03\x07\xce\x8a\x69\x1f\x72\x72\x94\x02\xdc\x94\x27\xcb\xdc\x29\x70\x94\xcb\x77\xe8\xec\xba\x58\x2f\x04\x33\x10\x43\xd1\x30\xeb\x43\xe7\x06\xf5\x09\xcd\xc0\x48\x46\xf9\xc7\xad\xdf\xfe\x9a\xad\xf8\x7a\xc8\xd8\x13\x09\xc9\x90\x24\x09\x43\x46\x12\x5a\x96\x63\x0b\xcc\x01\xc1\xc8\x95\x24\x27\x07\xbf\xe5\x82\xf1\x89\xc6\xbc\xaa\x56\x8e\x42\xb1\x6a\x92\x73\x35\x13\x0a\xab\x37\x2a\x6d\x8b\xcb\x64\x85\x2d\x85\x11\xcc\x0b\x6a\x8a\x28\x0d\x29\xd0\x95\x16\x3c\x05\x04\x60\x19\x45\x97\xeb\x12\x95\x43\x94\x0d\xc0\x95\xae\x30\x62\x00\xe4\x50\x50\x9a\xab\x59\x25\x72\x04\xd0\xb2\x0f\x89\x7f\x97\x5a\x65\xa9\xa8\x5e\x33\xc0\xf4\x50\xed\xeb\xea\xb8\xb8\xd2\xaf\xca\xd9\xe8\x6c\x73\xf2\x80\xbc\xb5\xdd\xd5\x96\x60\x68\x7e\x1d\x81\x95\xd5\x45\xcb\xa9\x0f\x21\x97\x74\x79\xa7\xcc\x71\x8f\xd2\xfe\x35\xbc\x76\xb6\xd8\xc4\x29\x57\xf8\x9f\x6e\x64\xba\x20\xa9\xa3\xd2\x24\x68\xf1\xd8\x1b\xe7\xba\x35\xc3\xd3\xdd\xcc\x55\xbb\x3d\xfd\x36\x5a\xe5\x5a\x71\xf9\x68\x27\xe7\x03\x9f\xdb\x2b\x4e\x88\xdf\xf5\xef\xd9\x2a\xce\x6d\x79\xfe\xaa\xf4\xfd\xfd\x51\xc3\xa5\x56\xa9\x57\x59\xc4\xbc\xa1\x68\x8d\xaf\x2c\x85\x2b\x5b\xe4\xec\xe0\xd1\xfd\x51\x3b\x41\xe6\xec\xee\x23\x73\x09\xaa\x2a\x79\xd8\x51\x28\xa4\xab\xff\xd3\xe0\xa0\xc0\xb4\x7b\x23\xc8\x39\xea\x68\xc6\x82\x94\x2f\x41\xf5\x23\x3c\x8a\x20\x87\x18\x68\xc1\x65\xe5\x56\xd1\xc5\x70\xe7\x52\x69\x86\x41\x95\xf6\x2d\xdb\x67\xfc\x8a\x47\xd2\x6e\x2f\x58\x5c\x21\x75\x3f\x06\x64\x27\xe1\xe1\x05\x8f\x62\xe8\x05\xf1\x58\x49\x99\x61\x3c\x21\x4d\xd0\xdf\xb1\xae\x2c\xd2\xdc\xa2\xc3\x63\x0f\xb9\x14\xf1\x56\x03\xcc\xb1\x57\xef\x3b\x52\x63\xd3\x21\x17\xc4\x0b\x5a\x39\xff\x28\xc3\x07\x31\x02\xc0\x21\xcd\xb3\xc5\xf9\xf6\xec\x6e\xc1\x69\x8c\xbc\x76\x83\x83\xe9\x6b\x8b\x56\x39\x90\x4d\x34\xfa\xdb\x6f\xa1\x0b\x73\xbd\x41\x90\x58\xf1\x88\xd5\x40\xd3\x03\x20\xc8\x5b\xec\x1c\x29\x7c\xd8\xaf\xdd\x9e\x3e\x46\x03\x85\x77\x9f\xc0\x7d\x33\x58\x60\x2e\x40\x12\x77\x0e\xb2\x3c\x0f\x9d\x1b\x76\x45\xe2\xf6\x69\xaa\x9d\x53\x80\x8b\x7b\x0d\x17\x14\x04\xc1\x17\x4a\x94\xfa\x31\x90\x5f\x1c\x28\xdb\xaf\x36\xf5\xc0\xad\xc1\xa0\x21\x8b\x65\x15\xa3\x61\xd6\xbf\x36\xa4\x52\x46\xf4\xed\x28\x7d\x69\x2b\xaf\xb9\x7d\xca\xc2\xf3\x6f\x90\x56\x41\x4d\xc3\xce\x85\xee\x10\xbf\x1f\x49\x3b\x48\xbd\x3b\x4c\xa4\x57\x0b\xb4\xd8\xdf\x67\x8f\xa5\x9e\x79\xcf\x9f\x1d\x97\x49\xb8\xdc\xb8\x48\x27\x2e\xfe\x91\xcb\xac\x4f\x24\xcc\xd7\x49\xc5\x85\xb2\x39\x48\x67\x59\x61\xce\xb3\x48\x33\xae\x05\x5a\x80\x71\x7d\xf4\x5e\xdf\x6d\x27\xef\x6d\x9b\x4b\xeb\xba\xeb\x6a\xfa\xed\x9b\x15\x64\xb7\x84\x59\xee\x70\x12\xeb\x50\x63\xfb\xf0\x06\x9b\x46\xf3\x19\xb4\x51\x0c\x1b\xaf\xc7\xf6\x3c\x03\x9f\xe4\x86\xf4\xe0\xff\xe0\x1b\xd2\x8a\xe0\xf1\x3a\xba\x38\xd1\x44\x16\x69\xfb\x25\xe9\xfd\xa2\x1a\xef\xc9\x10\x5e\x78\x55\x42\xad\xa0\xff\xe6\x37\xe5\xe3\x28\x05\x82\xbb\x2c\x2b\xa2\x66\xeb\x7d\x49\x09\xb8\x77\x65\xec\xdf\x1d\x55\x85\xd8\x6d\xd7\xa5\xe7\x7a\xc1\x2e\xed\x7a\x63\xc2\x06\x6e\xbe\x30\x4d\x93\xf8\x94\x86\x4e\x74\xcd\xec\x62\x7b\xf6\x86\x4f\x76\x33\xd6\xc5\x8d\x4d\x28\x74\xd7\x23\x6d\x4b\x16\x9e\xfe\x86\x5b\x23\xcc\x67\xd1\x74\x61\xd4\x18\xe8\xae\xd7\x46\x00\xf8\xce\x37\xc7\x0e\x57\xe2\x27\x5a\x5c\x95\x1b\xff\xe1\x0b\x74\x03\xfe\x4f\xba\x10\xeb\x27\xad\x6d\x3a\xbb\xdf\x86\x0e\xe6\xf6\xcb\x10\x88\x26\x34\xd5\x18\xf1\x1b\xf2\xf0\x78\xbe\xa2\x36\x5f\x8b\x17\x01\x9f\xe7\x4a\x2d\xe7\xb6\x24\x6a\xa4\x00\xe8\x01\xd4\xea\x8b\xbf\x87\x05\x3d\x78\x5e\x0a\x9e\xae\x49\xf3\xd8\xa7\x94\x5e\xf6\xb2\x83\x26\xa0\x6c\x37\x34\x60\xef\x53\x7f\x81\x94\x72\x15\xa4\x56\xc7\x5b\xf9\x1e\xd6\x61\xf2\xdf\x8a\x22\xed\x45\x0b\x85\x95\x05\xf7\x57\x29\x92\x75\x92\x0b\x15\x3a\xa0\x43\xaa\x94\x99\xa8\x96\xb0\x24\xb7\xe8\x85\x54\x30\x15\xf4\xa4\xb6\x05\x85\xad\xda\xac\x94\xab\x73\xac\x1c\x6d\x35\x78\x85\xb0\xc6\xd7\x6c\xc2\x0a\x91\x08\xa5\x78\xb9\xfe\xef\x7a\x85\x86\x0a\x9b\x5a\x7d\xa1\x4d\x0a\x9c\x4d\xd5\x65\x7e\x16\x62\x81\x11\xc1\x18\x62\x9c\x0a\x45\xd5\xde\x5d\x96\x53\x5a\x27\x26\x8f\x77\xc5\x64\x45\x01\x06\x5a\x51\x52\x66\x1d\xc8\x08\x00\x15\x08\x18\xbb\x98\xd9\xd2\xce\x13\x9e\xe5\xcb\x52\x44\xa5\x4a\xf0\x9c\xbd\x36\x80\x20\x1e\x20\x82\xef\xe1\xd8\x53\x4a\xac\x28\x68\x05\x07\xbb\xd6\x8e\x2e\xbf\xa0\x9d\xaf\x48\x84\x09\xec\x3b\x4f\x32\x74\xcc\x77\x73\x27\x30\xb0\xee\x0e\xdd\xa8\x54\x61\x29\x18\x0e\x73\xd6\x4f\x9a\x6e\x6c\x07\xfa\xd4\x82\x14\xd1\x49\x77\xfa\x96\xa6\x71\x20\x4f\xb7\xe0\xb6\x1a\x4a\x30\xa4\x55\xa1\x47\xb3\x08\xff\xaa\x3b\xd6\x33\x07\x2a\x08\x5d\x8e\x78\x9a\xfd\xbd\xca\x45\x8d\x4c\x34\x93\xa5\x9e\x51\xa2\x0f\x8c\x8a\x50\x94\xda\x7a\x2a\x29\x6c\x1c\xe3\x70\x72\xa9\x87\xd5\x7a\x2b\xe7\xbe\x6a\x4a\x0b\x13\x7f\x54\xed\x72\x6a\x0b\xaa\x34\x32\xe8\x58\x5d\x6a\x10\xce\xea\x42\x53\x58\x1f\x09\x4c\xa5\x38\x5f\x71\xc3\xe7\x58\xa7\x2e\x4c\x28\x47\x47\x35\xd3\xa2\xe4\x36\xf9\xcd\x6e\x11\x10\x56\xc9\x0b\x1b\xf8\xa4\xe4\xce\xff\xe0\x39\xd7\xb3\xe1\x3c\xc3\xfa\xc4\x55\x2d\xe3\x0e\x97\xf5\x16\xe3\x1e\x0a\x78\x66\x3b\xba\x40\x27\xc1\xc8\x07\x8f\x82\x3f\xbf\xab\x4e\x2d\xf8\xf1\xfe\xfd\x30\x3c\xa3\x0c\xd4\xce\x81\xca\xfa\xbe\x6f\x5f\xa9\x13\x66\x08\x3f\x78\xd2\xb8\x73\x06\x3e\x21\x9d\x6b\xc1\x66\x99\xae\x8b\xcc\x2b\xef\x4a\x80\xf2\x0c\xe3\xc0\xa8\x6d\x75\x53\x17\x2c\xb2\x8a\xca\x59\x08\x9d\xcc\x48\xf7\xfb\xa1\x5b\x86\x1a\x6b\x77\xb4\xa9\x4b\xe8\x0c\x64\x6b\xaa\xe4\x72\xda\xdd\x3b\x31\x0c\xba\xe8\x68\x06\xc0\xb0\x70\x9f\x81\x32\x62\x7b\xec\x3e\xab\xc1\x64\x6c\x5c\x0a\x7e\xe5\x3c\x7f\xee\xed\x20\x94\xd1\x14\xfa\x2c\xb0\xd3\xc3\x2c\x74\x56\x2c\x45\x24\x66\xb9\x6a\x6b\x1e\xef\x47\xac\x5a\x12\xc5\xe7\xac\xb2\xb1\x49\x64\x16\xc1\x5c\xd3\x90\x7d\xaa\x8f\x17\x14\xcf\x65\x31\xb5\x18\xdc\x50\x4c\x6d\xe3\x84\xea\x67\xf6\xf3\xcf\xeb\x07\x79\x97\x29\xd7\x9f\xed\xb6\x50\x62\x6c\xee\xc1\x7c\xd5\x94\x73\x02\x2f\x6b\xb8\x43\x3c\xac\x95\xc0\xf2\xa7\x58\x92\x9c\xc1\xa3\x26\xbe\x21\x8a\xb8\x6e\xc9\x79\x2c\xd6\x3a\x6c\xd4\xd7\x71\x27\xd4\x10\x6f\x0a\x11\x73\x5a\x79\x5f\xee\x86\x16\x51\xa4\x7f\x1e\x52\x4e\xfd\x63\xa6\x09\x25\xa7\x35\x2d\xd9\x4e\xc4\x1b\xd5\x6b\x39\xf7\x4a\x6b\x56\xfb\xf1\xb4\x22\xe9\xa3\xe3\x98\x08\xae\x45\xa7\x4f\xdd\x6f\xaa\x1e\x4a\x32\x5f\xe4\x6b\x06\x5e\x47\x04\x6c\x2d\xc8\xa4\x19\x71\x14\x28\x5a\x2b\x78\xfa\x3f\x8a\xb3\x20\xa1\xd9\x3a\xa3\x18\xc3\x08\xf9\x81\x78\xce\xf8\xd8\x66\xfe\x63\x48\x20\x58\x2d\xb5\x03\x8c\x45\x2e\x4b\x32\x50\x9f\x09\x60\x2d\x16\x5c\x16\x94\x53\x74\x05\x36\x83\xc8\x4e\x33\x9a\xaf\x45\x74\x1b\x04\x37\xa3\xf7\xf7\x20\x37\x40\x6d\x03\xb1\xd6\x86\xba\x0b\xa7\xbc\xed\x3e\x85\x8b\x8c\xde\xab\x4e\x32\x1b\x2f\xa7\x53\x8c\xe9\xdd\xf8\xec\x6c\x0a\x7f\xac\x41\x8d\x94\x3d\xad\x71\x99\xf7\xda\x79\x46\x70\xa7\xc7\x66\x4f\x48\x14\x64\xe8\x67\x2c\xf5\xcc\x26\x9b\x1c\xf3\x29\xba\x41\x13\xbb\x82\x3a\x0d\xee\x21\x67\xe3\x35\x82\x34\x13\xd6\xa3\x00\x73\xc7\xba\x08\x9a\xc8\x7d\xd1\xea\x79\x1b\x0b\x09\x1b\x38\x14\xfc\xca\x6d\xb1\x7f\x85\x35\x05\xa0\x74\x90\x9c\x4c\x6c\x46\x03\x9f\xbb\x96\x4d\x32\xcc\x33\xbb\xd4\x81\x1b\x36\x65\xdd\x76\xc9\x84\x77\x08\x90\x0f\x9c\x07\x36\xf9\xda\x44\x39\x79\x5b\x92\x05\xc5\x8d\x2a\x21\x21\x61\xf0\x48\x1b\xb4\xba\x4e\x22\x6a\xd9\x8b\x48\x21\x20\x81\xed\x53\xab\xb5\xdb\x30\xbb\x0d\x30\xeb\x13\xac\x36\xae\x6b\x4c\x5e\x19\xce\x13\x45\x64\x93\x63\x0f\x04\xfd\xcb\x89\x53\x48\x38\xbf\x94\xaa\x52\x64\xce\xd7\xe8\x4c\x65\x5d\x51\x49\xd4\xb7\xae\x5d\x1f\xb6\xee\x34\x8c\x65\x79\x56\x25\x76\xdf\xe3\xaa\xd5\x2f\xe1\x1d\x35\x73\x12\xc1\x7b\x0c\xde\xc7\xb7\x5b\xb0\xd6\x1f\x80\xa5\x85\x8e\xe2\x2e\xab\xee\x14\x4a\x20\x67\xe4\x27\x5b\x8b\xb6\xd0\x58\x82\x0c\xbb\xd8\xd3\x86\x28\xca\x26\x81\xa6\x44\x96\xb6\xc7\xdf\x97\xa0\x6f\x28\x80\xf0\x5d\x97\x30\x47\x01\xe6\x92\x0b\x4c\x13\x0e\x61\x24\x79\x2e\x4a\x39\x2d\x85\x72\x99\x2e\x02\xa3\x49\x6a\xab\xe1\x06\xb1\x1f\x66\x36\x5b\x51\x1d\x5d\x0f\x15\x54\x57\xf4\x13\xae\x56\xb1\x23\xe7\x66\x77\x92\xcf\x3f\x0f\x8a\x7f\x17\x1b\x1c\x4f\x2c\xc9\x87\xcf\xbc\xc6\x86\xef\xdc\x46\xd6\xb4\xc1\x61\xdf\xb6\x94\x06\xd1\x25\x15\x1f\xc8\x26\xf2\xe9\xf9\xb3\x15\x11\xa2\xe5\xff\xf7\x2a\xd5\x9b\xeb\xe9\x13\x79\x9e\x47\x09\x96\xaf\x33\xb1\x5a\xec\x16\x25\x6d\xfa\x1f\xe7\x79\x73\xbc\x01\x98\xfd\xe0\x05\x5e\x61\x76\xb5\x97\x71\x54\x4e\xef\xa0\xa2\xac\xd9\xe8\x20\xbd\xbb\x36\xb8\x15\x42\x74\x5b\xdb\x39\x37\xcb\x23\x07\xbd\xc6\x5b\x37\xba\xd3\x2d\x84\x7e\xc5\x7e\x1d\xf4\xdc\xe0\xfa\x54\xa1\x97\xea\x74\xda\x12\x2b\xb8\x52\x5a\xe4\x88\x14\xb9\x84\xb5\xeb\x05\xd8\x80\x1d\x3e\x8a\x7b\x3e\x6a\xb8\x01\x1a\xf1\x16\xed\x59\x38\xec\xff\xcf\xde\xdf\x77\xb7\x71\x63\x79\xe2\xf8\xff\x7e\x15\x70\x76\xc6\x24\x63\x92\x92\xbd\x9b\x9d\x6e\x29\xea\xfe\xc9\xb2\x3c\xed\x8d\x1d\xf9\x48\x72\xd2\x33\x8e\xc7\x01\xab\x40\x0a\xad\x62\xa1\xb6\x00\x92\x62\xda\xde\xd7\xfe\x3b\xb8\x17\x8f\x55\x28\xb2\xe4\x38\xfd\x30\xe7\xdb\x67\xce\xc4\x62\xe1\x19\x17\xc0\x7d\xfc\xdc\xd4\xf6\x75\xd8\x35\xfa\xef\x5e\x57\x03\xd1\xe6\x99\x51\xa4\xf7\x2e\x1a\x62\x72\x1b\x43\x13\x99\x29\xdd\xde\x91\x46\x1f\x7d\x16\xe8\x78\x67\x62\x61\x1f\xa4\xda\x4c\x24\x1c\xe6\x64\xb5\x61\xa6\x01\x79\x1d\x36\x8a\xb0\x3b\xc5\x4a\x37\xf2\xb1\x1d\x69\x22\x41\x7b\xe0\x84\xd7\x72\x63\x4c\xa3\x12\x2c\xe9\x1d\x5f\xae\x96\xd6\x25\xdd\x45\x30\x45\xc1\xfe\x3d\xc0\x8a\x44\x51\xbc\xa6\x77\xd1\xcd\xcd\x22\x58\x82\x61\x3a\x92\x41\x35\x3c\xd3\x47\x91\xe7\xb6\xea\xf4\x0f\xdf\xe9\xfc\x3d\x09\x9a\xd8\xdd\x2d\xc4\xbb\x35\x5d\xc0\x61\x25\xfc\xe3\xeb\x8e\x83\x79\xd8\x94\xc9\x9a\xd2\xe1\x96\x1a\x22\x23\x40\x2c\x10\xab\x3f\xf9\x36\xf0\xff\x9b\xea\x46\xdf\x8b\x3a\xaf\x7d\xee\xdd\x2e\x94\x0d\x32\xf9\x75\x3d\x90\x6a\x9f\xa7\x6a\xda\x37\xb2\xf6\x7a\xbe\x7b\xb9\x43\xfa\x00\x34\x51\x14\x38\x30\xd7\xd4\x8e\x00\x26\xb7\xc9\x5d\x1b\xdc\x68\xf9\x35\xbd\x8b\x23\xdb\x0c\xb9\xe1\x61\x02\xbd\x8c\x1b\xc1\x1f\x7c\x1d\x7c\x41\xc3\xc1\xb9\x4f\xf1\x6d\xe8\x50\x32\x7c\xd1\x13\x5f\xaf\xe5\x21\xdf\x55\xc7\x57\xe9\x87\xcb\xb4\x97\xd4\xe2\xfc\x17\x7f\x17\x6a\x73\x71\x51\xff\xbd\x09\x6e\xf7\x8d\x02\xf7\xb1\xeb\x72\xf2\x99\x11\x7b\x31\x9d\x7e\x4b\x0e\xdb\xf4\x79\xf8\x9b\xd3\x65\xfa\x19\x70\xea\x14\x4b\x2c\xe8\xde\x19\xc4\x86\x45\xd2\x07\x97\x71\xb4\x45\xe3\xf5\x98\x92\x3d\x62\x03\xda\x38\xeb\x00\x50\x0f\x22\xbe\xb5\x20\xff\x35\xea\x93\xbe\x06\x79\x42\xd9\x0b\xb7\xcf\x2b\x74\x1d\x79\xd8\xa7\xc1\x71\xc0\x1c\x03\x16\xd5\xae\x05\x3e\xe8\xde\xc4\xce\x47\xb4\xb5\x7a\xe0\xea\xf3\x8f\xb1\x78\x78\x85\xf4\x59\xbf\x67\xcd\xb0\x83\x6e\x67\x65\x8b\x40\x18\x19\x88\x92\x67\x02\xf8\xd0\x60\xd5\xfe\x04\xf0\xf0\x98\x3f\xcb\x4c\x1c\xb4\x2e\x32\x44\x20\xb5\x09\xe7\xa2\x1c\xcf\xa0\xeb\xf1\x9c\xc2\x40\x06\x07\xc7\x26\x66\x36\x11\xf6\x12\x34\x3e\xb8\x4e\x4b\x0a\x0a\x80\x7c\xc5\xec\xa5\x0a\x29\x55\x96\xb4\xc4\x7c\x9f\xde\xac\x6f\x23\x85\x40\x5a\xa6\xb8\xe2\x74\xb9\xa4\x8a\x67\xa6\xdd\xbd\xab\xe8\xd2\xed\x25\xf8\xa0\x9e\x81\xda\xee\x9a\x88\xa3\x2b\x1f\x06\xf7\x61\x14\xbf\xed\x7c\xb5\xda\x41\xb0\xed\x3a\x26\x8e\x7b\x14\x66\xa6\xe7\xd2\x2c\xb3\x5e\x29\x5a\x48\x01\xeb\x1d\x2a\x4b\x20\x6e\x71\x38\x5b\xa9\x38\x88\x0d\x7e\x86\xaa\x0f\x47\xd3\xa8\x3d\x93\x3b\xa2\x9d\x43\x05\x73\xef\x44\xab\x4d\xa8\x8c\x72\x45\x61\xbb\xae\xbd\x97\xa5\x09\x3f\x02\x60\x3c\xb0\x1b\xda\x00\x73\xcc\x24\x1a\x1e\x21\x9c\x07\x2d\x73\x52\x30\x45\x6c\xea\x6b\xdb\x94\x49\x67\x87\x76\x6b\x3c\x65\xd6\x90\x30\x46\x27\x50\x70\x58\xc8\xc9\xaa\x32\x0d\x06\xb9\x99\x37\xb5\x80\x00\x75\x4c\xf7\xe2\xe2\xfc\xc1\x0b\x94\x46\x83\x46\xd9\xc3\xc1\x46\x90\xb6\xfb\x9d\x29\x11\x84\xbc\xa1\xca\xc1\x80\x1f\xf8\x14\x8e\x29\xd4\x83\x51\x03\xea\x93\x43\x3e\xe8\x8c\x96\x00\x39\x58\xf3\xdc\x24\xbd\x75\x59\x94\xcc\x6a\xdd\x30\xf7\x6c\x42\x72\xc7\xc6\xb1\xb3\x0d\x69\x22\xc8\xa8\x5d\xcb\x56\xea\xbd\x56\xb3\x2e\xcf\x91\x07\x2a\x74\x8a\x25\x20\x26\x58\x75\x6b\x61\xf7\x7d\xf6\x3a\x46\x90\x70\xb2\x79\x94\x76\x5e\x26\x93\xd4\xdc\xc2\x2b\xe5\x47\xff\x3d\xbc\x57\xfc\xbd\x60\x29\x94\xc7\xab\xa5\x17\xd7\xdd\xbd\xad\xa1\x13\xf2\xcc\x40\x1b\xc0\xdb\x59\x8b\x52\x41\xfe\x1f\x97\x5e\x28\x1d\xc5\x66\x7d\x7d\x4c\x16\x41\x47\x56\xcf\x5f\xfe\x30\x0e\xe9\x1a\x87\x60\x3d\x91\xc0\x92\x33\xdb\xda\xc4\x8b\x71\x08\x1f\x0c\x8f\xae\x19\xc6\xad\xda\xfc\x8d\xf6\xb6\xbb\xdf\xca\xa7\x6e\x31\xa0\xd4\xa8\xd4\x90\xf9\x14\xe8\x6c\x6a\x06\xf5\x06\xe9\x86\xe5\x2d\x1e\xe5\xe0\x80\xbc\xe0\x8b\x55\x0d\x69\x92\xc8\x8d\xd8\x90\x39\x35\x19\x3c\x70\x57\x34\x65\x49\x82\x59\x6a\x70\xfe\xd6\x0d\x23\x67\x85\xa2\x41\xf0\xb6\x1d\xc1\x73\xfd\xbb\x1d\x86\x89\xb5\x6b\xc6\x78\x07\xdc\x1b\xb6\x63\x6f\x5a\x15\xb2\x62\x2a\x60\xc2\xee\x23\x7d\xa8\x94\xdc\xa1\xba\x24\x0e\x51\x79\xa7\xc3\xe6\xf0\x82\xab\xf9\x35\x7a\x5b\xf9\x91\x9b\xbc\x67\x34\xba\xee\xc6\x64\x73\xc3\xb3\x1b\xa2\x6a\xbe\x58\xb0\x5a\x06\x11\xc6\xc1\x7d\x94\x62\x0a\x95\x66\x07\x23\x67\xdd\xf8\xb4\xe3\xc9\xd8\x80\x0f\x87\x4b\x8f\x6d\xb1\x47\xf1\xfe\x54\x37\xac\x66\x03\x47\x95\xb6\x31\xb7\x73\xe1\x75\x5d\x51\xa3\x31\xc6\x6d\x56\x37\x35\xc4\xba\x4b\x11\x24\x8f\xb2\x29\xab\x30\xb5\x1b\x26\x20\x5b\xb3\xda\x93\x41\x57\x3a\xd0\xc8\x74\x70\x66\xa0\xd6\x98\x23\x2f\x4a\x82\x7b\xc1\x5a\x2c\x5d\xab\x91\x10\x05\x14\x05\xb9\x6e\x3e\x11\x06\x57\x07\x26\x57\x0b\x1b\xd0\xb3\xa9\x45\xc6\x30\xff\x85\x87\x2b\x44\xc4\x8f\x4f\xe4\x4f\xa6\xdb\xa1\xd3\xa2\x8c\x22\x6a\xee\x23\x7c\x79\xca\xee\xe0\x25\x0c\x15\x6b\xc9\x64\xc3\x55\x76\x83\xa7\xaf\x50\xf4\x75\x60\xc5\xd1\xaf\x26\xf1\x53\x9a\x3e\xbf\x78\xfd\xe1\xf9\xf9\xab\xeb\xd3\x0f\x6f\x5e\xfe\xf9\xfc\xd5\x91\x33\x3d\x62\x3f\xa6\x85\xff\xb0\xa2\x4c\x30\x94\xd7\x18\xce\xce\x59\xfd\x21\x61\x63\xed\xee\xe7\xd5\xcb\xef\xcf\xf7\x75\x93\x96\x98\xee\xd1\xc9\x9b\xd3\x7f\xff\xac\x4e\x82\x79\xc2\xf1\x58\x30\x15\x22\x19\x45\xfd\x7f\x0a\x3c\xc9\x24\x5f\x94\xc8\x98\x43\x52\xf5\x1c\xdf\x3b\x48\x4e\xa8\x29\x1e\xc8\x8b\xdd\x55\x26\xb5\x9b\x21\x0f\x1c\xd8\xd7\x64\x62\x38\xe2\xcf\x7c\xc3\x21\x94\xfc\x1f\xfb\xf5\x86\x34\xc8\x3d\xdf\xed\xe6\x74\xfa\x34\xbd\xe3\x61\x82\xef\xf7\x7f\x92\xce\xef\x00\x84\xc8\x88\xbe\xac\xc8\x03\x2f\xe4\x6b\x3f\x42\x13\x73\x8f\xbe\x6b\x8e\x85\x94\x74\x8d\x8e\x2b\xd8\x16\x96\xcc\x39\xe6\xbb\x1b\xeb\xf7\xf7\x86\x4a\x52\x33\x03\xd1\x03\x2f\x1b\xe6\xbe\x47\x08\x53\x49\x86\x05\xbf\x65\x88\x7b\x36\x32\x40\xd3\xba\x25\xcc\xdd\x2f\x15\xcf\x6e\xad\x1f\x30\x02\x89\x15\x42\x6f\x09\x5f\x32\x23\xe8\x90\x0d\xdd\xea\x91\x80\xb9\x13\x9e\x7f\xb9\x04\xe8\x6e\x6c\xdf\x01\x2b\x89\x15\x9a\x03\xcc\x2a\x4a\x45\x15\x9b\xfa\xb7\x6e\x35\x6b\xed\x9c\xb2\x37\x49\x94\x7b\x81\x10\x9e\x1f\x11\x35\xe5\x39\x2b\x15\x9f\x73\x56\x5b\x57\xc6\xad\xfe\x19\xc1\xc2\xfe\xc3\xfe\x76\xe7\x7f\xfb\x33\xfe\xf6\xe9\x18\x93\x2e\x98\xae\xf9\x18\xc9\xe0\x38\xba\xcc\xf4\x8e\x47\xf7\x58\x98\x4b\xfc\xc8\xfb\xfc\x5c\xd1\x35\x6b\xb8\x5a\xa3\x34\x01\x98\x0b\xd2\x3a\xfd\x80\x93\x24\x47\xc7\x48\x4e\xbe\x25\x6c\x6a\x00\xb2\xaf\x4d\x39\xd4\xa1\x1f\x93\xc7\x8f\x79\xe8\xe2\xa3\xcc\x92\xf8\xf5\x19\x36\xab\xbe\xe3\xef\x03\xaf\x1e\x27\x73\xe1\x2a\xbf\x83\x06\xa6\x3c\x7f\x0f\x6f\xae\x99\x26\x31\xbe\xb5\xc1\x15\xd3\x9c\xa8\x49\x2e\x7e\xd4\xfc\x9d\x95\x79\x38\x7d\x70\xa3\x26\x54\x53\x00\xbb\xe3\x52\xa1\xd0\x02\xe3\xb2\xe4\x3a\x00\xc7\x87\x92\xcb\x1b\x96\x83\x0b\xcf\x67\xad\x89\x9b\xa0\x81\xf5\x68\xce\x33\xb1\x2a\x01\x81\xbc\x3f\xde\x3d\x5b\xc8\xec\x1e\x4c\xeb\x47\x5a\xdc\x86\xf0\xf3\x76\x4a\x16\x89\x5f\x94\x2c\x90\xf7\x96\xac\x5e\xb0\xa0\x38\xaf\x7d\x4b\x46\x27\x40\x78\xa9\xcf\x5d\xc9\xf0\x22\xb6\x27\xa7\x60\xfa\xde\xb4\x58\x2d\x73\x5e\x02\x13\x65\xd8\x97\x39\x95\x06\x64\x97\x90\x98\x07\x3d\x3c\xfe\x5b\x93\x15\xf6\xfc\xd8\x82\xf5\xa4\x08\x6c\xba\x05\x04\x23\xfd\xd7\xf6\xf3\x08\xd2\xaf\xda\x4b\x78\xda\x1c\x0a\xa3\xdf\x03\x03\x2a\xe6\x25\x64\xbc\xe9\xb4\xdc\x22\xe6\x4e\xd2\xdf\xf0\x32\x37\xa8\x67\x7e\xf0\x5f\x9f\xc0\xe3\x17\x2c\x67\x5f\x4e\x9d\x90\x04\xb7\xde\xe4\xd8\x6d\xa3\x7d\xb8\xf6\xb0\xc1\x16\xe7\x4e\x3a\xb8\xf7\xb0\xd2\x5e\x0e\x9e\x7c\x51\x2e\x9e\xec\xe5\xe4\x93\x77\x4a\xc0\xb6\x08\x92\x9b\xf4\xff\x0b\x26\xd5\x4a\x8b\xbe\x08\xa9\x87\x02\x25\x26\x39\x2b\x15\xab\xe7\xac\x76\x51\x1d\xfa\xc1\x70\x3b\xad\x47\x92\x62\xbf\x3b\x5e\xf6\x50\x43\x14\xc9\xe2\x9e\x46\xc0\x23\x05\x4a\xad\x24\x91\x2b\x20\x33\xaf\xf4\x05\xbd\xa6\x54\x74\x2b\x03\x4d\xb0\xf5\x00\xd5\x8d\x55\xf0\xa6\x36\x8c\x25\x06\x3b\x54\xd7\xbb\xa7\x0e\xd4\x2a\x8c\x52\xec\x05\x00\x78\x4d\x1c\x86\xb9\xe4\x65\xc6\x9c\x86\xc9\xf2\x4a\xa8\xf5\xd2\x73\x8f\x72\xee\x5a\xa5\xe4\x4e\xd0\xf8\x5d\x78\xa3\xf7\xe4\x10\x7d\x62\xfc\x7f\x54\x06\xf1\x4c\x8f\xb0\xb1\xc8\xa4\x83\x8c\xf4\x6c\x26\x4a\x4c\xb2\x82\x57\x33\x41\xeb\xbc\x31\xb5\x97\xf3\x54\xb6\x12\xb4\x7f\xb3\xdc\x87\x67\x7a\x7f\x40\x40\x3a\xa2\x5b\x17\x80\x30\xd7\x74\xc8\xcb\x20\x82\xcc\xc7\xe6\x25\xa2\xce\x63\xdf\x6d\xfb\x8e\xdc\x98\x21\x3b\x98\x43\x50\xed\xf0\xb9\x79\x7e\x97\x5c\x4a\x44\x7b\xf2\x39\x42\xdc\x18\x15\xbb\x53\x26\x3f\xb9\x9e\x0c\xa9\x44\x05\xf2\x2b\xbe\x72\x98\x07\xff\xc6\xc5\xb0\x33\xf2\x55\xe0\x74\xf9\x95\xf7\xc9\xb5\x7d\xe8\xe6\x7a\x6e\xc2\x0e\x4e\x5a\x7f\xbe\x27\x23\x6d\x29\xf8\x5e\xd8\x4a\x9f\x05\x7c\xd2\x0c\xe5\x9e\xf4\x08\x55\x26\x4f\x63\x5e\x36\xf2\xde\xf8\x5b\xc0\x33\xed\x82\x01\x09\x86\xd9\x81\xdf\xa2\x8c\x92\x5c\x86\x91\xe9\x6d\xb4\x21\xef\x80\xcd\xca\xfc\x19\xcd\x6e\x35\x75\x1b\x6f\x15\xe7\x86\xbc\x67\x35\x93\x63\x40\x39\x09\x22\xe1\xfb\x8d\x81\xb4\x46\xd0\x15\xc9\x15\x39\xd4\x34\xdc\x72\x1a\xd1\xf8\xe8\x0b\x23\x13\xc0\x35\xfb\x3a\xdd\xe9\x9e\xd6\x76\xec\xde\xe5\x95\xdb\xe5\x7c\x05\xa9\x0d\x86\x8d\xf7\x7a\xc7\x5e\x3f\x26\x4f\xc6\xad\xf1\xf6\xf0\x44\x6b\x0f\x70\x7f\x24\x59\xd7\x60\xda\x3e\x57\x3d\x3c\xd9\x3a\xa8\xb9\x85\x9c\xd3\x07\x5f\xa1\xb1\x9d\x41\x94\x98\x27\x65\x18\x6d\x4f\x62\x4e\x60\x22\x75\x0c\xa3\x93\xa2\x77\x8c\x86\x24\xc6\xd2\x1d\xd1\x18\x6d\xf5\x7e\xe2\x86\x6a\x32\x8d\x32\xb1\xbf\xfb\x5e\x2e\x7d\x7e\x1c\x0f\x7a\xbb\x79\xf7\x24\xf7\xf6\xc8\xc6\x7b\x8e\x7b\x5f\x52\x6f\x8e\xaf\xa3\xdd\xb6\x26\xf8\x85\xc8\x80\xd9\x36\x96\x76\xcc\x6c\x6f\xfc\x60\x44\x49\x28\xc1\xc4\xf1\xe4\x96\x6d\x73\xb1\x29\x2d\x2f\x4e\xa5\x61\x07\x5e\xbc\xd0\x65\xcc\x42\x30\x9b\x58\xdd\x5a\x75\x96\x98\x36\x1f\x93\xea\xb3\x3c\xb4\x8e\x62\x4f\xfd\xe2\x09\x44\xf9\x4c\xe4\xdb\xef\xd8\xf6\xb9\xd8\x94\xa9\x07\xd9\xbf\x90\x41\x2e\xd0\xe6\xdb\xab\x8f\xc9\x2d\xd3\x5c\xd5\x15\xa4\xe3\x99\x6a\x1e\x4d\x73\x99\x67\x22\x67\x43\x36\x05\xf9\xc2\xbd\x61\x85\xd8\xb0\xfa\x3b\x28\x7e\xcb\xb6\x53\x25\x5e\xe9\x1f\xce\xa8\x0c\x6c\xd0\x5a\x1e\x55\x75\xa1\x4b\x7d\xfc\x48\xd8\x74\xc9\x14\xfd\x8e\x6d\x47\xe4\xd1\xa3\xa0\xfe\x09\xf9\x6a\xfd\x55\xe0\xaa\x1c\xa5\x8d\x8f\x12\x02\x47\xbc\x1d\x20\x83\xbb\x35\xb2\x1b\xa4\xa2\x74\x48\x68\xe2\x0f\xb2\x2c\xf6\x58\x4a\x58\x9c\x4e\xae\x26\x3d\xb8\x34\xe6\x69\x02\xdb\x34\x80\x36\x85\x50\x6f\x67\xb1\x85\x76\xc1\x60\xab\x4f\xce\x91\xf9\x1a\x76\x86\x18\xd9\x9f\x46\x11\xec\x69\xa2\x84\x0f\xaa\xf0\x18\xf6\x71\x6e\x65\x92\x04\x48\xc5\x55\x95\x00\x9d\x6e\xf2\xed\xc7\x4b\x1b\xd2\xfe\x94\x5c\x29\x51\xa1\x2f\x09\xf0\xf2\x28\x4c\x89\x8a\x2e\x28\xe8\x8f\xa8\xf4\x96\x1b\xc8\x6b\x8a\xf1\x88\xd0\x47\x6e\xad\x99\x6e\xb1\x31\xde\x62\xef\xe6\x60\xf5\x37\x7e\xce\xd7\x76\xa4\xa9\xfd\x62\x53\xa9\x44\xf5\xc6\x0e\x0a\x1d\x67\x13\x98\xfb\x6b\x56\x23\x72\x83\xf7\x28\x58\x8a\xfc\x33\x53\x83\xb9\x74\x09\x06\x45\x21\xca\x39\xac\xa8\xea\x4e\x3a\xac\xc5\xb2\x79\x21\x36\xff\x41\x4e\x50\xad\x4a\xfe\x48\xac\x21\x9f\x1c\x91\x01\x66\x23\x1a\xb4\xa6\x10\x59\x78\x97\xce\xc6\x32\x45\xa1\x82\x16\x8a\xd5\x12\xcc\x58\xcb\x95\x51\xc2\x44\xfa\x17\x7d\xb5\x81\x97\x4b\xd3\x46\xd5\x2b\x33\x7b\x60\xc5\x7d\x2d\xd6\xcc\x98\x78\xe2\x34\x95\x7e\x4c\xf1\xdc\x13\x76\x21\x72\x12\xcc\x00\x66\xaa\x5f\xb7\x8b\xb7\x97\x67\xe7\xe4\xc5\xcb\x57\xe7\x47\x68\x00\x3f\xf8\x8b\x3c\x80\x7f\x7c\xb0\x28\xff\xd3\xbf\x48\x5d\x54\x4b\x1c\x18\xd1\x3c\xcc\x46\xe4\xe9\xe1\x93\xa7\xa0\x2e\x00\xf3\x20\x5f\x2d\xc9\xc5\x15\x39\x5d\xa9\x1b\x51\xcb\x29\x39\x2d\x0a\x8c\x7e\x96\x44\x0b\x1c\xf5\x9a\xe5\x53\xdd\xc6\x5b\xc9\x1c\xd2\x97\x44\x1c\x90\xcc\xc4\x4c\x2f\xf4\x1e\x95\xfa\x9e\xde\x12\x4a\x9e\x5d\x3d\x9f\xc0\xd6\x91\x82\x67\xac\x94\x26\x9a\x11\xa1\xeb\x75\x4b\x73\xd0\xb7\x1b\x5a\x7f\xf5\xf2\xec\xfc\xfb\xab\x73\x2d\x2a\xb2\xe9\x83\x07\x03\xbd\xda\x52\xd5\x3c\x53\x83\xe3\x07\x0f\x0a\x3e\x9b\xd6\x2a\x67\xd5\x70\xa0\xff\x09\x49\xb5\xe5\x60\x4c\xe0\xaf\x37\x4e\xf1\xff\x9a\x96\x74\xc1\x6a\xfb\xa1\x66\x38\x40\xfb\xf7\x26\x1b\x84\x6c\x1c\xfc\x36\xd7\x1f\x71\x13\xbf\x63\x5b\x10\x7f\xfd\x2f\x17\x95\xde\x21\xe9\x7f\x48\x74\x15\x36\xe8\x88\x81\xb1\xd2\x57\x0a\xee\x5b\xff\x1b\x64\xdd\x68\xd7\xd5\x27\xd6\xe5\xe2\x0f\x3a\xfe\xe1\x1a\xb2\x63\x59\x75\x85\x28\xa5\xaa\x57\x90\xac\xc6\xc6\x31\x5d\x9b\xad\x26\x59\x41\xa5\x93\xdd\x4f\xfd\xef\xd5\x4a\x53\xb3\x12\x0b\x06\x96\x91\x94\xbb\xc4\x98\x84\x33\x00\x79\xd9\x76\xff\xe4\xf0\x10\x52\x5e\xea\xc6\xd1\xc0\x82\xb9\x5c\x8d\x61\x40\x2c\x2b\x54\x59\xdb\xde\x2c\x79\xd3\x82\xab\x6d\xa0\x9b\xaa\x11\x04\x9a\x06\xc9\x1b\xe0\xa9\x9b\x14\x6c\xcd\x0a\x3f\x5a\xbc\xf2\x64\x48\x33\x06\xf7\x1b\xd3\xba\xa0\xed\x07\xb5\xa7\x25\x47\x69\xde\xda\x28\xa4\xa8\xc7\x46\xe4\x37\xa7\xbf\x66\x0b\x87\xf3\x8c\x86\x21\x3b\x50\x70\x0f\x71\x0b\x3e\x25\xe4\x4f\x62\xc3\xd6\xac\x1e\x1b\x7c\x1c\xbe\xa4\xf5\x36\xc0\x1e\x07\x05\x5e\x55\x33\x35\x1c\x59\x95\x22\xe4\x03\x94\xe4\x87\x6b\xdd\x16\x93\x19\xad\x34\xb7\xfb\x7f\x57\x68\x8a\x02\xa5\x43\xb9\x16\xb7\xc6\x2f\x8b\x56\xfa\x1d\xa8\x01\xe9\xa9\x39\xdb\xc8\x8b\x11\x96\x9a\x6c\xa8\x24\x37\x8c\xae\x39\x24\x30\x9b\x17\xd0\x2a\x9c\xb0\x33\x51\x6f\xc9\x6b\x9a\x65\xb4\xae\x45\xc9\x06\x92\xbc\xa8\xe9\x92\xcd\x56\xf3\x39\xab\x63\x2a\xb8\xbe\x78\x7e\x31\xac\x17\xbc\xcc\xe9\xe8\x88\x80\x6d\x17\x9d\x0d\x1a\xd8\x22\x56\x5f\x03\x61\xf2\x75\x90\x55\x48\x9a\xa9\xd2\xda\x64\xd5\x91\x55\x41\xb7\xba\xf0\x86\x67\x00\xa1\xb4\xd1\xa4\x40\xa5\xbe\x9a\xcb\x9c\xd6\x90\x96\x82\x97\x41\x0b\x56\x8d\x83\x8f\x9d\xe9\x01\x88\xf9\xff\x7c\x47\x86\x7a\x95\x4c\x30\xdd\xd6\xec\x50\x90\xd2\x88\x29\x39\xda\x95\x13\xb1\xaa\x85\xbe\x37\x5e\xe6\x04\x4f\xac\xa6\x76\x77\x52\x89\xf9\x4a\x4a\x0a\xe6\x3c\x84\x02\xb4\x59\x11\x0d\x15\xe7\x63\xeb\xed\x03\xc3\x1b\x98\x3f\xa2\x1c\x41\x6e\xb7\x1a\xb9\x0d\x5d\xef\x21\x1f\x64\x7f\x8b\xb0\x93\x0f\x0e\xc8\xf5\x46\xd8\x07\x86\x97\x7a\xb1\xb2\x40\x6f\x69\xc8\x0d\x8f\xdf\x87\x38\xfb\x17\xfc\x16\xa8\x7a\xe0\xe5\x2a\xa9\x62\xbb\x4b\x7b\x93\xfa\x57\xc6\x7a\xf7\x95\x4f\x43\x1e\xbd\xb3\x3e\x30\x2f\x1c\x44\xd8\x42\x21\x34\x1b\x50\x0a\x6b\x8a\x08\x1f\x4b\xfe\x8b\x5e\x5b\xac\xf4\x0c\x48\x50\x5a\xfd\xe5\x9a\x41\x5e\xc5\x5f\x18\x12\x91\xb5\x95\xe6\x3c\x03\x0d\x1c\xba\x82\x55\xfa\x91\x31\x79\x3b\xa7\x84\x3c\x47\xe7\x48\x4c\xec\x87\xda\x5d\x03\x72\xbc\x11\xa0\x5a\xcc\xb9\xa4\x8b\x9a\x81\x71\xf5\xe0\x80\x9c\x16\x52\x60\x01\x5e\xd2\x4c\xf1\xb5\x1d\x99\x66\x71\x75\x23\x18\xa3\x8f\xef\x3d\xcb\x0d\x7e\x12\x87\x88\x66\x48\xc8\x02\x47\x13\x2a\x62\x83\xc9\x35\xba\x4a\xe6\x64\x3b\x44\x5e\x31\x70\x5e\xb0\xfe\xc6\x35\xd8\x06\x31\x74\x73\x25\xcd\x21\x33\x87\x87\xa8\x46\x6a\x90\x69\xfc\xf6\xeb\xfb\xb8\xb5\xa9\xe6\x77\x10\xda\x9a\x79\x27\xa0\xc2\x54\xae\x66\x32\xab\xf9\x8c\x0d\x7d\x6e\x27\xa3\x6f\x34\xba\xf7\xe9\x8c\x1b\xe7\xec\xd1\xde\x26\x9c\xa3\x64\xe4\x95\x76\xaf\x26\x2c\xe7\x6e\x5a\x40\x8e\x76\x6f\x03\x4e\x83\x1d\xe8\x4a\xc3\x5a\xe1\x72\xe7\x7c\x6d\x9e\x09\x9b\xd2\x03\x59\x6a\xcb\xfb\x84\x59\xdb\x9a\xa7\xb1\x95\x12\x3f\x68\x83\x05\xce\xa1\x9a\x24\xf1\x4a\xf0\xf1\xb7\x8b\x42\xcc\xf4\x03\xa2\x1b\x72\x8d\xc0\x0b\x17\x40\x9a\xfa\x17\x51\x4b\x02\xee\x51\x44\x7c\x7f\x3e\x37\xbe\x0b\xe5\x40\x41\xe6\x69\x7b\x36\x24\x3a\xbd\x80\x41\x95\xfa\xc6\xb7\x4c\xa1\x75\xa6\x66\x13\xc9\xc0\xeb\x31\x67\x99\xa8\x21\xa9\xaf\x9f\xa7\x0d\x8b\x23\x27\xc6\x4a\xe8\x7e\x0a\xe7\xed\x33\x2d\xa0\x3f\x83\xf1\x3b\x0b\xd5\xf8\x90\x46\x2e\xca\x42\x4e\xf3\xbc\x66\x12\xac\x5c\x0d\x7a\x9d\xd1\xec\xd6\x62\xa2\xbd\x7b\x6f\x3b\xba\x42\xcf\x0d\x3a\x23\x5a\xd8\xf0\x34\xae\xe8\x0c\x24\xa4\xb8\x34\xa0\xa0\xa9\x9a\x66\xb7\xfa\x7a\xd9\xdc\x20\xa7\x62\xee\x62\xdf\x0a\x0e\x18\x32\x75\xb3\x9a\x4a\x96\x1f\x3b\x3f\xe1\xeb\x67\x67\x26\x43\x52\xc1\x28\x5c\x41\x85\xaf\x17\xdc\xf1\xb4\x66\x7a\xcd\x6b\x26\x95\xa8\x31\x52\xc0\xda\xc9\xe0\x66\x00\x8f\x63\xe6\xf3\x5e\x99\x8a\xd7\x66\xd8\x9a\x30\xeb\x15\x0b\x97\xf3\x87\x6b\x74\xd3\x0b\xee\xc6\x06\xe4\x20\x1c\x72\xa2\x19\x68\x17\x29\x0f\xc6\x0a\xcd\x38\xc0\x90\x81\x73\x71\x4e\xaa\x20\x26\x96\x79\x60\x07\xce\xc4\x72\x49\xcb\xdc\xaf\xe2\xda\x08\x18\xd7\xa2\x0a\x53\x6e\x47\xdf\x50\x67\x9e\x22\xfc\xe7\x2f\x7f\x70\x9a\x16\xcb\x45\xda\x0b\x09\xc7\x32\x0d\x82\xef\xa5\xa8\x6d\xe8\x78\xb3\x21\x17\x88\x8e\x13\x90\x37\x9a\x03\xb2\x6b\xd0\x3c\x85\x58\xe8\x4a\x97\xf9\xe0\x92\xe5\xd9\xa7\x35\xfc\x3a\x7d\xf6\xea\xe2\xec\xbb\x64\x3f\x9a\xfd\xb7\x1d\x24\x47\x7a\xa6\x4b\x34\x87\x7a\x86\xc3\x9b\x15\xbc\xbc\x25\xa2\x3c\xd0\x84\x0e\xd0\x88\xfa\x1c\x2d\xe5\x18\x2c\x7f\x9b\x9a\x2b\xc5\x4a\xcd\x60\x69\x16\x42\x8b\x7f\x19\xbc\x0e\x5b\xcd\x29\x15\x82\xe6\x90\x42\x39\xec\xec\x99\x6e\xf0\x4c\x37\x04\xd4\xfc\xe4\xf0\x70\x4c\x9e\x1c\x1e\x3a\xaa\x7e\x53\xb3\xc9\x0c\x64\x1d\x51\x9e\xf9\x1a\x1f\xac\x45\xcb\xa6\x60\x43\xc4\x1d\xeb\x5b\x9c\x0b\xa3\x3d\x10\x35\x61\xd4\x3e\x9b\x66\x89\xcd\xe8\xb5\x58\xc6\x33\x63\x38\x86\x11\x2d\xb7\x17\x71\x1f\xfe\x06\x0d\x7e\x4d\x5f\xa4\x92\x99\x29\x63\x96\x16\x48\xa7\x92\x1a\x59\xcd\xa8\xf1\xc7\x43\x86\x40\x1f\x21\xba\x60\x60\x26\x33\x0e\x5a\x34\xbb\x21\x62\xa5\xaa\x15\xda\xf3\x6e\xd9\x56\xaa\x5a\xdc\xb2\x10\x28\x84\x97\x5c\x71\x5a\xf0\x5f\x90\x9d\x35\x70\x94\x96\x69\x5b\xa2\x7c\xe5\x26\xa6\xaf\x97\x05\x78\x68\x35\xf6\xd6\x7c\x9f\x8b\x9a\xed\xfa\x8e\xa7\xe8\xa2\xbc\x80\x51\x75\x7e\xfe\xce\x8e\xb4\xa3\x04\x48\xe4\xa7\x75\x2d\x36\xba\x64\xeb\x30\xd4\x2b\x86\x16\x49\xeb\x02\xeb\x8c\xc9\xa8\x3f\x40\x85\x51\xcd\x34\x6b\x60\xd8\x01\x5a\x14\x62\x63\x57\xd2\xe9\x5b\x83\x7b\x87\x51\xf5\x5a\x57\xbe\x84\x5a\x88\x86\x42\x0b\xe9\x2f\x1f\xfb\xc0\xcc\x58\x51\x68\x91\xbc\xf4\x04\xaa\x7f\x3a\x5d\xe5\x5c\xec\x4f\xec\x4b\x75\xb1\x81\x7f\x8d\x7d\xd5\x28\xaf\xaf\xfe\x79\x82\x65\x53\x45\x25\xf3\xe2\xeb\x70\x50\xd5\x4c\x9f\x18\x2d\xc6\xd2\x95\x12\x03\x47\x6d\xa7\xfa\x5a\x8e\xc6\xad\x6f\xce\xb9\xe6\x08\x21\x73\x9a\x7f\x96\xe0\x96\x5f\xb0\x92\xe9\x47\x2e\x27\x43\xcd\xc4\x59\x88\x51\x5e\x6c\x0d\xb3\x76\x23\x36\xe5\x28\x9a\xf5\xf7\x41\x7b\xaf\xb8\x54\xf1\x43\xf3\xa3\x79\x5a\x36\x0c\x7b\xa9\xf4\x58\xa4\xd4\x77\x77\xc0\xa1\x45\x63\x0a\xb6\x44\xde\x2a\x51\x85\x1d\x3c\x63\x26\x22\x29\xdc\x97\xb3\xf8\x3a\xc7\xc7\xd4\x49\x9a\xc6\xa7\x11\x4c\xcb\xcf\xcf\xcf\xae\xce\xfc\x73\xaa\x3f\x18\xcd\x43\x90\xe2\xa6\x71\x07\x82\x0a\x6e\xc6\x95\x74\x57\x77\xeb\xa6\x15\xbe\x0d\xcf\x44\x9a\x86\x03\xd1\xc0\xa4\x8d\x02\x9b\xbd\xcb\x58\x08\xf9\x99\xf5\x13\x3a\x6d\x25\xa7\x6a\x0d\xe9\x87\xeb\xa6\xd4\xeb\xa5\xe4\xe0\x04\xaf\x55\x34\x90\x1f\xae\xdb\x9c\xdc\xad\xd1\xc0\xd8\x9b\xd1\xd5\x75\x1f\xc2\x16\xac\xbe\x26\x6e\xe7\xdf\x81\x56\x0a\xf2\xf2\xc2\x38\xdb\xd0\x2c\xd2\x3c\x99\x40\x60\xe0\xe1\x78\x9d\x63\xfa\x4c\x26\x61\x27\xc4\x4a\x11\x76\xa7\x77\xcc\xe6\xca\x44\x74\x6d\x30\x60\x39\x7a\x75\x69\xf1\x4d\xf8\xad\x88\x46\xe5\x9e\xb2\x97\x17\x8d\x09\x9a\xcb\x01\x6e\x82\x49\x56\xf0\xec\x76\x92\xd7\x74\x11\x7b\xcb\xa7\xb7\x92\x95\x9a\xe3\x82\x6b\xe0\x79\x4d\x17\x26\x78\x2f\x60\x42\xf0\x39\x12\xd5\xf6\xa2\x34\xd0\x24\x8d\xeb\x0b\x7a\xbd\xd4\xfb\x7b\xa6\x7b\x06\x36\x3c\x59\x06\xbe\x3c\x5b\x29\x05\x38\x0b\xe1\xed\x66\x0f\x8d\x01\x21\x05\xd8\x29\x1b\xc8\x00\x6c\x26\xfa\xc5\xcc\xd8\x0d\x5d\xf3\xe0\x49\xd6\x83\xc6\x72\x3f\x42\x31\xeb\x9b\xe2\x0e\x0b\x0e\x5e\x53\x9b\xb3\xd4\x9d\x6a\x7e\xce\x8a\x00\xd1\x24\x6b\x06\x6f\x86\x96\xbc\x3e\x0c\x7f\x77\x38\x26\x4f\xff\x57\xe8\xff\x60\x5d\x6d\x2c\xa7\x16\xe5\x97\x62\xea\x0d\xca\xe5\xb1\xdc\x0e\xd9\xbd\xad\xc4\x9f\x32\xf4\x86\xe6\x09\xe7\x07\x6d\xf6\xe8\x92\xd1\x7c\x3b\x1c\x1d\x93\x4f\xb1\x50\x13\x22\x2d\x19\x94\xa0\x88\x41\x92\x29\xd5\x42\xc8\xff\xe8\x73\xf6\x80\x10\xe0\x82\x8e\xc8\x00\xfe\x0b\xa3\x7b\x76\x7e\xfa\x5a\xff\x70\x7e\xfa\x1a\xfe\x7e\xfb\xfd\xf3\xf3\x4b\x88\x02\x20\x03\xf7\xef\x41\xca\xbd\xa9\xf9\x28\x05\xa6\x07\xbc\xeb\xf4\x8d\x64\xa3\xb5\x42\xc1\xc5\xa1\x58\xeb\xcb\x66\x25\x59\xe8\x6c\xe6\xcb\xd9\x07\x9d\x3a\xc7\x85\x20\xa1\x1f\x2a\xdf\x70\x04\x28\xee\x90\xc0\xa6\xf7\xc0\x04\x0a\xb4\xb2\xfc\x25\x57\x29\xf2\x57\x0f\xf7\xa1\x11\x96\x1c\x7a\x3c\x3d\x0f\xa4\x08\xf4\xbc\x9b\x93\xdf\x79\xef\xcb\x3b\xe8\x61\x77\x67\x8a\xce\x7e\x34\xc9\x39\x7f\xd7\x86\x02\x4a\xa8\x9c\xda\x80\x52\xfa\x39\x8c\x57\xb7\x0a\xdc\xd6\x63\x4c\xaa\x50\x6f\x65\x53\xcd\x51\x29\x45\x06\xba\x43\x2d\x62\xc3\x75\xab\xc2\x8e\xad\x2b\xae\x87\x11\x64\x9b\x1d\x03\x6b\x2a\xd3\xfc\x91\x00\x38\x5f\xea\x5d\xa9\x12\x6d\x10\xf2\x42\xd4\x1b\x7d\x2b\xcb\x82\xca\x1b\xab\x51\x0b\x95\x86\x06\xb6\x0a\x31\x69\x72\xef\xf1\x0f\xaa\xb8\x70\x00\x76\xd7\x50\x9f\xa7\xb7\x5e\x33\x7c\x5e\x9d\xe7\x7e\x01\x38\xdb\xb5\xb8\x65\x9e\x50\xcd\x78\x6c\xff\xaa\xa6\xa5\xc5\x58\x91\x4e\x33\xbd\x67\x6b\xfd\xd5\x10\x92\x90\x5b\x8e\x71\x34\xac\x2e\x3d\x9f\xfb\x63\x5a\x23\xae\xe3\xf0\xe0\xa7\x83\x83\xc5\x98\x0c\x06\x41\xe8\x9c\xd7\x22\x2a\x0b\x00\x1e\xe2\x6c\xcd\x65\x88\x4b\x85\x3f\x4c\x73\x06\xba\x29\x90\xf3\xa3\x24\x6f\xf3\xc6\xf3\xde\x32\x50\x0c\x1b\xc3\x0c\xa2\x61\xb1\x69\x9a\xe7\x17\x33\xb0\xef\xd4\x72\xa8\xaf\xfb\xb1\x31\xc1\x0e\x68\xa1\x26\x8b\x7a\xa2\x39\x8d\xc1\x91\x5f\x94\x75\x8c\xf4\xbd\x06\xb8\xc7\x55\x51\x84\x6e\xb9\x00\x89\x48\xd7\x7c\x41\x95\xa8\xa7\x05\x2d\x17\x2b\xba\x60\xb1\x15\x5c\xd7\x1b\xb0\x72\xb2\x92\x83\xb0\x2a\x21\x6b\xcd\x6d\x96\xa2\x64\x03\xef\x61\xdd\x70\xea\x70\xc5\xc0\x42\x35\xa1\x85\x0a\xcb\x3e\x88\xea\xc0\xe2\x6e\x2b\x26\xe6\x04\xc6\x3a\x40\x62\x8f\x3a\xd5\x6d\xad\xdb\x46\xfa\x64\xcf\xed\xe1\x7d\x0a\x5d\x97\x1f\x1e\xfc\xd7\x50\x7f\xfd\x08\x9e\x0f\xb4\x50\x1f\x0b\x36\x87\x21\x7e\x74\x83\x1d\xfd\xcb\xc1\x54\x31\xa9\x86\xeb\xd1\x28\xd9\xae\xf5\xc9\xb3\x84\x6a\xf9\x9f\x29\x2d\xd4\xbf\xd7\xaf\x11\x0a\x6d\x6d\x4d\xd5\x0f\xfc\x7e\x69\xf2\x94\x15\xcd\xd8\x84\xcb\xc9\x92\x29\xea\x7f\xe9\xd8\xc3\x64\x1f\xcf\x6c\xa5\x97\xf2\x35\x53\xd4\xfd\xd9\xd1\xab\xe9\xeb\x3e\x3d\x60\xc3\x1d\xed\x49\x56\xe6\x72\xb2\xb9\xa1\x6a\x07\xe1\xe9\x85\x46\xbe\xf3\xe3\xef\x26\x33\xae\x3e\x1a\x97\xe0\xc9\x2d\xdb\x76\x2f\x30\xd6\xd8\xb3\xc4\x57\xba\xff\x1f\x35\xcf\x98\x18\xdf\x2a\xd7\x6f\xf9\x04\x04\x21\x90\xb6\x3a\xc6\xa8\x0f\x3b\xad\xb7\x40\x59\xf0\xc6\x0c\x0f\xfe\xab\xe0\xb3\x89\xb5\x4a\x1e\x0d\x7f\xba\x7a\x3c\x3a\x88\x9c\xe5\x69\xbd\x8d\x42\x18\xec\xe0\x3a\x25\x2c\x59\x67\x49\x8e\xa5\xe3\x7f\xa1\x55\x74\xba\x60\xea\x39\x55\xf4\x6d\x5d\xe8\x7e\xdf\x3d\x79\x3f\xea\x26\xfa\x9e\x23\x21\xeb\x51\xec\x27\xef\x96\xcd\x48\x4d\x93\x50\xa6\x82\x35\xdc\x79\xb5\x3c\x7a\x44\x42\x39\x2b\xb9\x36\xdd\xf2\x58\xb4\x2e\xe1\xf7\x69\x20\xef\x9d\xe8\x2b\x61\x51\xd3\x52\xb1\x3c\xb8\x44\xd0\x25\x68\x5f\x1f\xf1\xc5\x75\x70\xa0\x7b\x61\x47\x3e\x55\x3f\x78\x82\x47\x3d\x1b\x7c\xc8\x37\x7e\x00\xa0\x31\x36\x89\xfb\xe3\xc6\x4c\xd8\xae\xae\x02\x81\xf4\x08\x3d\xe9\x13\x56\xd5\x4c\x6a\x8e\x46\xcc\x09\xc5\xd8\x7a\x4c\xdc\x4f\x86\xe0\xe8\x4f\x25\xa1\x65\xdc\xa0\x28\x41\xec\xb0\xe2\xd5\x08\x79\x32\xfd\x10\x90\x82\x4b\xa5\x25\x27\xd4\xfe\xd4\xab\x44\x36\xe6\xa0\xa5\xb8\xd9\x53\x88\x8e\x13\x73\xb2\x11\xf5\x2d\xa8\x2d\x6d\x4a\x0d\xcd\xf6\x58\xf0\xe2\x40\xb0\xa6\x24\xe7\xb4\x10\x0b\x87\x10\x1b\xb6\xe6\x1e\x48\xe0\x61\x28\xf9\x0a\x45\x25\x25\x26\x66\xed\x26\x7e\xf7\xbe\x22\x33\x90\x54\xc2\xd1\x59\x50\xe3\x0d\xad\xcb\x61\x37\xdd\x81\x21\x52\x8b\x64\x0e\xef\x1a\x0c\x44\xa0\x0e\x18\x74\x67\xb7\x1e\xf4\x51\x15\x0c\x46\x9d\xaf\xd1\xbd\x08\xd8\xca\x48\xc9\x13\xe5\x35\x62\x13\x50\x88\xee\xbb\x7d\x25\x83\x6b\x3d\x50\x92\x0d\xd7\xa3\xe3\xce\x36\xf9\x92\x2e\xf6\xbe\x19\x91\xcd\x27\x6c\xff\xa5\xae\xbd\xb3\x7d\xb0\x4d\x7d\x6e\xf3\x60\x77\xdb\xd5\xba\xd5\xba\x7c\x76\x0f\x6f\x4c\x03\xe9\x5e\xf0\x89\xc5\x67\xea\xfe\x0f\xac\xab\x01\xef\xcc\xae\xc7\xd5\xf1\xd2\x93\x25\xad\x26\x56\x6e\x93\xbb\x5e\x45\xcf\x90\x69\xb1\x76\xed\xac\xcc\x62\x4e\x2e\x40\x71\x31\x4a\xc1\xab\xe3\x61\x79\x13\x09\x12\x41\xcf\x90\xb6\xda\x69\xe7\xac\x2d\xb5\xec\x3e\x28\x03\x54\x92\x1c\xe9\x12\xc1\xa3\x10\x46\x06\x90\x08\x92\xdd\x2e\xd2\x5a\xf9\x38\xf2\xd7\xb4\x32\xd1\x0e\x9e\x1d\xeb\x2e\x28\x99\xba\xb0\x0b\xd4\xde\x35\x14\xac\x27\xa0\xfc\xef\x71\x52\x02\x6d\xf9\xf0\xe1\xc3\x9d\xad\x4d\xc0\x86\xd0\xd1\xa6\x7d\xc8\x82\x5d\x38\xad\x6b\xba\x25\x8f\x1e\x45\x0b\x67\x19\xd4\x77\x87\xef\x81\x47\x45\xef\x98\x41\x67\xb1\x27\x51\xb1\xf8\x19\x52\xb1\x32\x21\x36\x4f\xac\x5b\x3c\x75\x8b\x3f\xbe\x7f\xa3\xef\xd6\x63\xb2\x7e\xbf\x93\x5b\x3f\x38\x20\x2f\xa8\x54\xc6\xfa\xe2\xad\xff\xb4\x24\xac\xae\x45\x3d\xed\xdd\x57\x60\x5f\x71\xfd\x25\x77\xa7\xef\xad\x78\xe6\x4d\x46\x09\xba\xd1\x3f\x4f\x2a\x5a\x30\xa5\xd8\x17\x3a\x81\xad\x9f\x81\x24\x7a\x9e\xcb\xf4\x78\x82\x33\x49\x81\xbe\x44\xfd\xe5\x0e\xa7\x77\xb9\xc3\xff\xbc\xc1\xde\xc9\x49\xf8\x45\x2a\x91\xdd\x9e\x05\x9f\xa7\x99\x28\x33\x6a\x91\x0a\xdd\x51\x08\x67\xe9\xd2\xea\xdc\xb2\xad\xe6\x05\xd6\x0d\x41\x90\xd6\x84\x6b\xb9\x9a\xd6\x92\xbd\x2c\xd5\x50\x73\xf6\xc7\x41\x01\xdd\x20\x97\xdf\xd3\xef\x87\x7c\xa4\x17\x95\x93\x6f\xc9\x21\xfe\xe3\x0f\xe4\xe9\x37\xdf\xc4\xcd\xc5\xf9\x0e\x06\x2f\xcb\x35\x2d\x78\x4e\xd0\x2d\x98\x97\xc4\x2c\x2a\x2e\x8b\x1e\xd1\x63\x32\x30\x6b\xf4\xee\x96\x6d\xdf\x47\x5d\x37\x53\x16\x34\x96\xcc\x4d\xf7\x1d\x7f\xdf\x1c\x05\x24\x01\x5a\xcc\xe2\xe5\x2b\x45\xbd\x04\xc5\xe6\xd9\xd5\x15\xd6\x8a\x7b\xd3\x8d\xd5\x8b\xd9\xa8\xb1\xa3\x1d\x5b\xf3\x8e\x03\x12\xfa\x62\x16\x0f\xae\xf9\xaf\xf6\xf5\x1b\x3b\xff\x40\x98\x82\x77\x47\xc4\xbb\x38\xdc\xe3\xc4\xbd\xdc\xf4\x4b\xea\xdd\x46\x70\xe4\xaa\xed\x44\x94\x13\xb4\x86\xed\x3b\xc0\x0d\xa5\xf7\xc3\x87\xcd\x37\x74\x25\xd9\xc4\x28\x77\x27\xa8\xa7\x9e\xe8\x3a\xfb\xda\xed\xd0\x5a\xb7\xdb\x07\xc5\xf5\xc4\x99\xee\x26\xe0\x8a\xd0\xab\x8b\x6e\x95\x77\xa2\x17\x55\x17\x93\xaa\x58\xc9\xc9\x92\x97\x2b\x39\xf9\x85\xd5\x62\xf2\x8b\x10\xcb\xde\x5c\x87\x6e\xe1\x4d\xb1\x92\xaf\x75\xfd\xff\x64\xb5\xf8\x4f\x01\xb0\xa3\xc9\x9e\xb2\x5e\x13\x88\xda\x3e\x33\x63\x4f\xb6\xb7\x9e\xa0\x1f\xd0\x7d\x1a\xfc\xc1\x1a\x29\xd6\x2d\x22\x6b\xb0\x6d\x67\xae\x74\xfb\x02\x67\x54\xaa\x09\x95\x9c\x96\x13\xba\x9c\xf1\xc5\x4a\xac\xe4\x84\xca\x89\xda\x08\xfd\x42\xac\x96\x5d\x3c\x22\x7a\x0c\x4f\x6b\xb6\xa0\x75\x7e\xf6\x97\xdb\x53\x5b\x3b\x31\x47\xb4\xcf\x4c\x40\x0f\x31\xd1\x17\x43\x2d\xba\x04\xdb\x90\x81\xc1\x6a\xbf\x7b\xc6\x21\x16\xa8\x16\x45\x72\xeb\x4d\xe3\x33\x51\x74\xa9\x1a\xfc\xba\x6c\xcb\xec\x99\x28\xf2\x2b\x3a\x67\x57\x8a\x26\x0e\x57\xd0\x98\x5e\x85\x19\xe8\xa4\xf6\x35\xbb\xfb\x56\xc0\x26\x75\xb7\xa7\xf2\x19\xba\x97\x07\xd3\xb8\xc7\xd5\xb0\xbb\xa1\xd6\x14\x7a\xb1\x72\x7a\x41\x74\xc1\x9d\xab\xe1\x22\x9f\x27\x9b\x9a\xef\xa7\x52\xb7\x73\x67\xb6\xde\x8f\xba\xda\xae\xc1\xe6\x2c\x7b\xf2\xb4\x77\xbb\xcf\x75\xe9\x64\x73\x73\x51\xaa\xc9\x9c\x2e\x79\xb1\xf7\x70\xea\xa9\xbf\x10\xa5\x7a\x01\xa5\x5b\x53\x87\x96\x7a\x09\x61\x4c\xe9\x66\xd2\x22\x17\xb6\xb2\x14\x08\x4f\xf6\xab\x87\x64\x7d\x38\x7a\xf3\x6e\x2f\x62\xb7\x8f\xf6\x00\x6f\xc4\x92\x4d\x6e\xd9\x56\x4e\x8c\x2f\x63\xdf\x1b\x48\x57\xfc\x8e\x6d\xa5\xb3\xb5\x36\xb7\x42\x97\xd4\x7c\x6c\xb9\xe8\xe2\x06\x13\x92\x9f\xa9\x80\x57\x7f\x83\x35\x7a\xb8\x1e\xb5\x38\xb1\x06\x5f\xd9\x4f\x98\x03\x86\x7a\x38\x38\xd7\xff\xd1\x8c\x4d\x30\xd2\xc0\x8e\x73\x44\xce\x01\x40\x8b\xe5\xc6\xa2\x3d\xe8\x21\xa6\xd5\xdb\x94\x06\xa3\x3d\x3f\x9a\xe7\xcf\xcc\xbf\x87\x81\x4e\x90\x64\x14\xb1\x87\xee\x7e\xcd\xb8\x35\x4b\x16\x64\xa2\x6a\x70\xff\x4b\x7a\x37\x41\x15\xff\xc4\xfa\x23\xf4\x38\x78\x4b\x7a\x87\x61\x7d\x57\xd6\x87\xa1\xbd\xe3\x90\xa0\x19\x89\x89\xd6\x6c\x32\xd7\xff\xea\xbd\xf5\x50\x59\x13\xd4\x69\xcd\x5e\xe8\xff\x26\x3b\x50\xd4\x68\x15\x8c\x9e\xba\x7f\xeb\x8a\x82\x36\xe1\x1c\x3d\x31\x12\x6d\x83\xdb\x01\x9a\x20\x50\xa3\xd6\xeb\x45\xee\xf0\x1b\x48\xb7\x0e\x2d\x4e\x50\x25\xd7\xe7\x2e\x78\xdd\x70\x38\x68\xdd\x08\x15\x5d\x7c\xde\xe9\xd5\x15\x77\x9e\xde\x8a\x4a\x39\xa1\x85\x9a\x18\x69\xf7\x9e\x06\x2e\xcd\xc3\x0b\x79\xe7\x3d\x6c\xbd\xb5\x6b\x25\x59\x7d\xba\x60\xa5\xb2\x5a\xff\xd7\x34\x23\x17\x57\xe4\xcf\x07\xfe\xb8\x83\x3c\xfc\x8a\x29\x72\x5a\xa8\xc9\x93\xe9\xf4\xf7\x06\xbc\x51\x44\x60\xbe\x43\x25\x88\x61\x26\xd0\x89\x15\x90\xbb\x20\xf9\x87\x28\xc3\x96\x4a\x51\x4e\x74\x0f\x44\x6e\xa5\x62\xe0\xca\x08\x59\x86\xc0\x26\x68\x45\x43\x51\xb1\x12\x63\x0b\xb5\x90\x58\x55\x76\xe4\x7e\x4e\xe4\x84\x0c\x1f\xea\x59\x3d\x7a\x64\xcc\x89\x58\xe4\x7a\x5b\x41\x72\xb3\x41\x25\xaa\x55\x35\x18\x75\x6b\x6f\xf4\x2c\x4e\x0b\xf5\x3d\xc6\xf6\x74\xac\x3a\x30\x84\x7f\xdf\x65\xd7\x0c\xe3\x7f\xb7\x75\xd7\x73\xda\xbd\xf0\x70\xbd\xfc\x7d\x17\xfe\xb5\x1e\xc2\xaf\x5f\xf8\x2f\xb4\xe8\xbf\x7a\xcd\xf5\x74\x7a\xac\xf9\xfa\x1e\xf7\x16\x36\xfa\x43\xa2\xbd\x9a\x65\x8c\xaf\xd9\x84\x95\x99\xc8\xbb\xb9\x2d\xc3\x2c\x1c\xfc\xd7\x70\xa5\xe6\x93\xdf\x7d\xac\xe9\x66\xf4\x2f\x07\x23\x67\x0f\x0d\xb5\x11\xb1\x9a\x29\xd6\x88\xcc\x45\x4d\xbe\x6a\xf6\xf9\x55\x5b\x69\x84\x76\x55\xe8\xcb\xdb\xcf\xbc\x22\x24\xa9\xb0\x3d\x37\xcd\x25\x66\x69\x60\xa6\x45\x39\x71\x5e\xc3\xfd\x94\xf8\x0d\xe7\xdd\xee\x76\xd1\x31\xb9\x6f\xa3\xde\x61\x38\xdd\xe2\x8c\xd6\x13\xe3\x35\xdf\x83\x5f\x6d\xc6\x3f\xb7\x19\xd6\x10\x66\x7b\xb2\xa4\x5b\xe0\x07\x26\xb4\xae\xc5\x66\xd2\x87\xe1\xe8\xf2\x53\xee\x58\x0f\xd3\x8f\x58\xb3\x89\x0f\x2d\xee\x3d\x91\x76\x64\x73\x62\x42\x7a\xfc\x7f\x4b\x9a\x8d\x3a\xfc\x15\x04\xeb\x95\x11\x7d\xc8\xf6\x86\xcf\xd5\x04\x23\x77\xee\xa9\xeb\x80\xaa\x98\x51\xb7\x8b\xbd\xb2\x95\xf6\xad\x63\x78\xd8\x24\x53\x76\xbc\xed\x4d\xd1\x97\xf6\x24\x93\x3d\xa9\xc9\x29\x5a\xde\x4a\x56\x9f\x49\xf9\xb6\x2e\xba\x9b\x9c\x68\xa9\xfe\xf3\xda\x05\xb8\x93\x56\xc3\x1b\x51\xe7\x13\x80\xdb\x9b\xc0\x0b\x33\x29\xd8\xfc\xbe\x2a\x0b\xdd\xc6\x33\xdd\xc4\x6b\xdd\xc2\x2b\x36\x57\x49\xbd\x52\x4b\x43\xb1\xab\x5e\xf7\x00\x3f\x47\xa9\x12\xf7\x74\x69\xb4\x1f\xf7\x1e\x62\xa3\x62\xf7\x18\x97\x3c\xcf\xf7\x5f\x59\x3b\x07\xf9\x1a\x9a\xf8\x9c\x51\x36\x6b\x7e\x1a\x3f\x20\x80\xdd\xd1\x70\x4e\xab\x19\xcd\xaf\x30\xbc\xa4\x8d\x11\x12\x16\x04\xfb\xfb\xf6\xb4\x28\x9c\x4c\xad\x6f\x94\xc8\x69\xcf\x0c\x31\xfc\xcd\x80\x2d\xb5\x1d\x77\xe3\x14\x34\xb2\xe1\x01\x29\x6d\x74\x0a\x7a\xb0\x22\x86\x5e\x39\xe7\x0b\x0c\xea\x6a\x46\x1f\x7e\x1d\x41\x98\x77\xf8\xe9\x7d\xda\xed\x9f\xb8\x60\xea\x0d\xc4\xe6\x74\xe5\xdd\x09\x16\x23\x4e\x26\x0c\x0a\x25\xcd\x22\x59\x70\xca\x59\x4d\xb3\x5b\xa6\xc5\x7e\x44\x2c\x59\x8a\xbc\xe5\x0f\x3a\x13\xa2\x60\xb4\xfc\x64\x90\x36\xae\x6f\x98\xb9\x60\x95\x20\x18\x16\xb7\xc7\x99\xf2\x99\xed\xc4\xde\x68\x9d\x28\x1f\x36\x4a\x61\x3a\x6b\x56\x81\x92\x49\x48\x12\x0c\x00\xb3\xde\xb2\x2e\x02\xcc\xa2\x15\x6e\xc5\x2a\x80\x56\x91\x4c\xd9\x58\x9b\x8a\xd5\x92\x4b\x35\x06\x00\x63\xee\x21\xf2\x71\xdd\xc6\xa4\xa6\x06\x1a\x81\x62\xf2\x63\x74\xa2\x75\x5e\xc9\x5d\x5e\xb3\x38\x9c\x6b\x37\xb0\xbe\x8b\x14\x18\x1e\xc3\x15\x82\x46\xe2\xcc\xb7\x61\x48\x1b\x7c\x3e\x4e\x44\xe6\x19\xa0\x94\x46\xa4\x54\x9f\x1a\xa2\xce\x59\xdd\x28\x9d\x4e\xc4\xd4\x08\xf5\xc3\xf9\x52\x00\x5b\x45\x50\xa4\x88\xd6\xcd\x02\xed\x25\xed\x8e\x85\x68\x13\x78\xb8\x14\x7b\xc8\x1c\x03\xae\x30\x0f\x14\xe4\xae\x0e\x00\xc8\xca\x66\x94\xc5\x97\x25\xfe\x2b\x9f\x8c\x5f\x0f\x25\xdf\x45\xfe\x5d\x91\x1d\xdd\xc4\xef\xf7\x17\x97\xff\x9f\x90\xf0\x9f\xb5\x48\xb4\x93\xf8\x13\x71\x7f\x5d\x56\x53\xac\x7a\x9c\x06\x53\x68\xda\x1a\x7c\xa4\x88\xb4\x00\x6b\xc9\x38\xc2\x71\x7a\x18\xdd\x38\x0c\xbf\x59\x47\x9d\xae\x4a\xa8\xf9\xb6\xb3\xdf\x7d\x6e\x7d\xd0\x5d\x17\x15\x95\x8a\x95\xb9\x79\xd5\xe0\x04\x39\x3c\x0e\x84\x7e\x49\x47\xab\x42\xd4\x14\x0b\xc2\xa5\x2c\x7a\xb0\xfc\xe0\xe3\xa5\xbe\xfe\xac\xcb\x61\x07\xb1\xb4\x2f\x88\xe6\xf2\x25\x4f\x90\x5f\xfa\x7f\xda\x13\xd4\xb0\x7b\xec\x3a\x41\x89\xc8\xd8\xff\xef\x04\xa5\x6c\x47\xf7\x3c\x41\x9d\x54\xf4\x0f\x77\x82\x76\x10\x4b\xfb\x04\x35\x57\x35\xc6\xc9\x86\x98\x61\x42\x21\xe2\xc4\x1a\xa3\xd0\x01\xd9\xad\x8b\x41\x29\x00\xd7\xe2\x7a\x55\xea\xc3\x62\x3c\x79\x21\xac\x09\xa2\x98\xea\x05\x02\x5a\x78\xa6\x21\x1d\x0c\x64\xda\x3a\x03\x28\x24\x3c\x25\x31\xf2\x55\xbb\xdf\x69\xea\x98\xd1\x7a\x81\xd6\x1d\x68\xa4\xd1\xbd\xcf\x9d\x24\x2c\x98\x95\x6d\x68\xc7\xba\xd6\xab\xf2\x2c\x1c\x5d\x74\x02\xfd\xef\x63\xdf\xb7\xcf\x2c\xc4\xca\x35\xaf\x45\xb9\x0c\xd0\x3f\x8d\x1c\xb3\x60\x6a\x38\x08\x3e\x0f\x7c\x06\x2c\x74\xd1\x0b\xab\x3e\x3c\xb1\xae\x5c\x03\x00\x90\x0c\x5b\x35\x2a\x5c\x38\x2f\x71\x77\x7f\xfd\xd4\x05\xc8\x68\x82\x48\x71\xfb\x30\xaa\x28\x9c\x8a\x3d\x7c\x7f\xf5\x53\x3a\x0a\x56\xf6\xe3\x47\x32\x08\x62\x11\xb8\x38\xb2\xf1\xb1\xd3\x6a\x25\x6f\x86\x23\xff\x2d\x18\xd0\x51\xf8\x87\x2f\x21\xca\xf3\x3b\xae\x8e\xc2\x35\xf5\x39\x97\xf0\x7f\x00\xde\xa8\x1b\x17\xd5\x30\x72\x96\x82\x0f\xab\x12\xc8\xb3\x28\x5c\x94\x70\xcb\x73\x0c\x11\x22\x83\x75\xcf\x0a\x21\xd9\x44\x94\x13\x76\xc7\xd5\x60\xd4\xf4\xb5\x32\x2a\x64\x28\x35\x4c\x79\x78\x87\x39\x79\x53\x9d\x87\xeb\xab\xe9\x27\x99\x34\xdc\x78\xa5\xf3\x79\x9c\x71\xc5\x40\x46\xc9\x08\x96\x0c\x7f\x1d\xa3\x9b\x38\x5e\x32\x1b\xee\xa3\x33\xdd\x45\x61\x39\xda\xdd\x14\xcd\xe5\x9b\xf0\xc2\xdf\x7d\x4d\x38\xd0\xa8\x0e\xd4\xa8\x60\x5e\x2f\x71\x2d\x60\xe4\xcd\x08\x6f\x23\xc4\x25\x04\x66\x1f\x33\x69\x30\xf4\x23\x4b\x01\x44\x12\x4a\xc6\x10\x24\x65\xeb\x11\x26\xf4\xa3\x8d\xc8\xfa\x10\x58\xf0\x75\xd4\xee\xae\xc9\xc7\x1b\xd6\x9e\x7c\x14\x87\xde\xda\xdf\xd6\xfb\xb2\x60\xea\xb9\x81\x5a\x18\x8e\xa6\x33\x91\x6f\xf5\x66\xbb\x35\x79\x6b\xc9\xf3\x1e\xab\xb2\x63\xf4\x2d\x6a\xbf\xef\xf8\xe1\xb2\x08\x07\xa8\x79\x25\x4a\xce\xae\xae\xf4\x45\xc1\x0d\xde\x0f\x7c\xf9\x1e\x38\x86\x62\x8b\x03\xe4\x12\x95\x20\xc8\xb8\xb8\xc2\x32\xca\xc8\x08\xf1\x9e\xe0\xe3\xde\xc5\x07\x41\xa8\x29\x4a\x5a\xd8\x40\xc0\x09\xb5\x0a\xa3\x34\x16\xc9\x65\x54\x42\xc6\x30\x73\x83\x87\x43\x6e\xd4\xfe\xa3\x45\x8c\x63\x73\x7e\x17\xf7\xe8\x06\x79\x60\xbe\x62\xa0\x7b\x0f\x39\x5e\xca\x1f\x68\xf4\xac\xea\xa6\xc6\x38\xba\x7b\x44\x67\x39\xfd\x14\xf6\x7f\x32\x98\x4c\xa0\xdb\xc9\x20\xd8\x42\x0f\xe0\x61\xff\x65\x20\x3c\x8c\x30\x8f\x91\xac\x90\xac\xd7\x5e\xd8\x3f\xff\xcb\x5f\x7d\xab\x9f\xfe\xe5\xaf\x7a\x74\x9f\x7e\x36\xe3\x4b\x83\xbe\xce\x85\xc1\x62\xeb\x3e\xa0\x67\x9a\x7a\x43\xe7\xa0\xc3\x11\xa2\xc3\x68\x3a\x30\x1b\x61\xf1\x01\x5c\x73\xd1\xe9\xb6\xcb\xe5\x12\x6f\x12\x88\x33\xd8\xba\x11\x80\x7f\x52\xa0\x78\x6b\x52\x8f\x4d\x07\x58\xe1\x4e\xe6\x4c\xf2\x1a\x18\x2f\xd3\xdb\x98\xb8\xfc\x80\x7d\x58\x6a\x9c\x47\x14\x00\x7c\xe7\x01\xa2\xab\x3b\x88\x15\x33\xa9\x71\xaa\xbb\xd4\xcb\xed\x9d\xaa\x46\x51\xbe\xf0\x98\xed\x34\xeb\x55\xdd\x45\xc0\x05\x48\x45\x43\x88\xf9\xd0\x4d\x4c\x20\x2f\xb1\x45\x4e\x0b\x1b\x89\x13\xed\x61\xfa\xe2\xc7\x64\x50\xdd\x0d\x76\x37\x88\x29\xf9\x52\xf1\x82\x7b\xba\xb0\x29\xde\x6d\x1f\x01\xc1\xfc\xbb\x55\xc9\x99\x87\xaa\xb5\xd3\xcd\xdc\x8d\x3d\xb8\xd5\xf6\x3e\x24\xdf\x9f\xf0\xae\x75\x8b\xda\x63\x74\xe8\x3e\xf7\x2b\xb8\x69\xeb\xc0\x76\xef\x11\x7a\xbf\xb7\xc4\x91\xd3\x77\xed\x57\x81\x7f\xdf\x57\xf7\x7e\x05\x62\xf7\xba\x8e\x27\x20\x41\x8d\x66\x58\x69\x6a\x36\xce\x86\xa3\x1e\xf7\x58\xc7\x71\x70\xde\x81\x21\xd6\x5f\xca\x51\xb5\xb5\x28\x29\x4c\x92\x28\xb3\x7b\xdb\xed\x08\x6e\x8b\x31\x08\x19\x2b\x25\x30\xdb\xa9\x66\x12\xf8\xdc\xc1\x06\x6d\x7b\x2c\x63\xd3\x33\xa9\xbd\x98\x90\xa8\xc4\x7e\x6b\xcd\x3c\xe1\x0f\xd5\xe4\xe4\x6d\xe5\x76\xc4\x4d\x17\x18\x0b\xd6\x40\xc6\x33\x91\x61\x05\x83\x8d\x77\x38\x66\xfc\x34\xfc\xf3\x93\x27\xc7\x3f\xc9\xc7\x41\xe4\x31\x18\x5e\x75\xcd\x8f\x1f\x09\x46\x01\xc3\x88\xce\xea\x8b\xab\xbd\xe3\x79\x72\x8c\x09\xb8\xd0\x98\x63\x14\xae\x2e\x1e\x33\x0a\x02\xea\x6a\xe2\x29\x36\x81\x56\xab\x56\x0b\x7b\x0c\x19\xa2\xc8\x63\x72\x08\x9c\x9b\x91\x0e\x5a\x44\xa0\x5b\xba\x0f\x1d\x44\x34\x9a\x26\x02\xef\xb5\x9c\x96\xe5\xbc\xf3\xb6\x5b\xf0\xa0\xca\xc3\x86\xb3\x4d\x0f\xc5\x4b\xd4\xa1\xff\xe3\xd8\xd7\xef\xef\x68\x9d\x68\x21\x41\x59\xa8\x24\x0a\xb3\xea\x87\xb7\x88\xc9\xd9\x95\x48\xb8\x85\xc9\x7c\x8a\xfc\x5e\x35\x07\x76\xad\x6c\xee\x4a\x69\x37\x41\x53\xb7\x1b\xc9\x94\xfd\xdf\x15\x2d\xe4\xd0\xb6\xef\xa9\xd9\x57\x70\xc9\x2d\x23\x97\x01\x98\x77\x80\x52\x62\xe8\x29\x3f\x22\x30\x4e\x7d\x34\x75\x89\x0d\x3e\x7a\x39\x47\x30\xdb\x64\x34\xd5\x00\xe4\x10\x1c\x14\xe0\xa1\xb8\xe7\x85\x70\x79\x94\xae\xb3\xef\x71\xf0\x09\x60\xee\x4b\x0b\x7e\xe2\xbd\x75\x6b\x9d\xf5\x77\x9f\x3c\x08\xe2\x4b\x1e\x3d\xf8\xa2\x0f\x40\x9f\xc3\xe5\x1c\xf3\xbb\xde\x2a\xcf\xc4\x94\x22\x67\x93\x7c\x55\x43\x08\x6a\x27\x0b\x93\x3a\x79\x10\x26\x30\x22\x7f\x24\x83\xc3\xe9\xbf\x49\xc8\x15\x70\x38\x48\x3f\xc1\x78\x01\x59\x94\x26\xc0\xae\x8f\x26\xd9\xd2\x01\x5a\xdb\x69\x9f\xd7\xe4\x0a\xda\xdb\x3b\x51\x03\x0f\x86\x21\x8c\x30\x86\xce\xd9\xae\x95\x71\xcf\x05\x64\x40\x27\x8a\xaf\xd5\xf4\xf5\xc5\xdb\xab\xf3\x0f\x97\xe7\x6f\x2e\x2e\xaf\x3f\x3c\x7f\x79\x75\xfa\xec\xd5\xf9\x73\xf2\xc7\xf4\x13\x3e\x58\xd3\x7a\x68\x45\x8d\xa8\x7b\x4d\x2c\xa3\x01\x39\xba\x6f\xbd\x4a\x00\xf4\xda\x68\x90\xd4\xa6\x52\xc4\x09\x13\xf3\x94\x45\xd1\x06\x6e\x77\xd8\xcd\x2f\xc5\xe6\x4c\x14\x9f\x80\xdd\xc7\x7f\x1b\xe5\x28\xa9\x99\x81\x90\xb6\xb9\xf2\x6c\xc3\x61\x8b\xbb\xf6\x89\xae\x99\x81\xec\xeb\xa3\xf8\x30\xa6\x48\x1b\x26\x3e\xcd\x0a\x51\x36\x99\x98\xa4\xf6\xf8\x4e\x85\x78\xf3\x9f\xcb\x84\xc6\x79\x02\xfa\x8d\x38\x3e\xfa\xc9\x03\xd0\x35\xbc\x86\x00\x1e\xb7\x84\x3a\x55\xff\x67\x5f\x1b\x46\xf7\x1c\xe2\xf6\x13\x29\x41\x54\xb3\xea\x8e\xb9\x25\x76\x21\x4a\x1e\x39\xa7\xa0\x4d\xa6\x55\x55\x70\x0f\xee\xdc\xe9\xbf\x61\x65\xce\xeb\xdd\xed\xed\x99\xfe\x82\xa9\xff\x14\x62\xf9\x02\xfb\xee\x2d\x47\xc4\x62\xd9\x2f\xae\x85\x58\x49\x0f\x18\x60\x38\x0b\xae\x0a\x9f\xae\xc3\xce\x69\x20\xbd\x3b\x6c\x7a\x7f\xa1\xda\xb5\x6b\xa0\xef\x8e\x62\xa4\xe4\x35\xd4\x09\xb7\x53\xff\x80\x13\x6b\xe0\x51\x4f\x95\x29\x0b\xff\x6d\x6c\x1b\x40\x33\x23\xae\x1a\xa4\xda\x2a\xb6\x06\x34\xb3\xeb\xaa\x30\xb3\x88\x6f\x0a\x53\x58\x4f\xc6\x41\x71\xa2\x9a\x42\x37\xbf\x4f\xc9\x8f\xa5\xda\xf7\x02\xb6\xea\x99\xc0\x5a\x6c\x8c\x5d\x6d\x3e\xcd\x0a\xba\xac\x4c\x89\x69\x2d\x36\x63\x72\x38\x0e\xc9\x37\x14\xa9\x27\xe4\x89\xe3\x94\x30\x1a\x31\xdd\x0c\x7e\x4b\xb6\x84\xf2\xbf\x6d\x28\x3a\x26\xce\xc7\xc4\xa1\x59\xc0\x70\xb0\x31\xc7\x30\x45\x5d\x90\x3f\xd8\x71\xb8\xcc\x90\xf1\xf7\x93\x13\x5b\xe0\xd1\x23\xfb\xc9\xe6\xe6\x89\x98\xd8\x8e\x8b\xd2\x96\x75\xc0\x8e\x0d\x3e\xff\xac\x80\x1c\xfc\xce\xaf\x67\x20\x89\xab\x32\x2f\xe8\x62\xcf\x8e\x41\x60\x15\x4e\xfa\xc2\xf7\xd4\x21\x08\xef\x19\x9f\x41\x5f\x89\xef\x49\x19\x8c\x0d\x91\x1c\x3b\x0e\x11\xc2\x60\x43\x3e\x00\xf8\xd7\xfd\xbc\x82\x2c\x04\xa4\x77\x1c\xd1\x3f\xb4\xbc\x82\x1c\x8e\x36\x7c\x3e\x0e\x52\x84\x6a\xce\x01\x9b\x82\x9c\x82\x9f\x52\x3a\x91\xd6\x14\x3e\xcf\x71\xa7\x35\xd6\x2e\xc7\x1d\x1c\x6d\x53\xcd\xac\x07\x83\x44\xdc\xc0\x0c\x1f\x23\x26\xbb\x7d\xd0\xdf\xbe\x74\x70\x8d\x5d\x8a\x40\xa4\xcc\x33\xb1\x2a\x55\x8f\xcb\x0a\xa1\x1c\x43\xc3\xb9\xad\xec\xb5\x7e\xc1\x8f\xcd\xb8\x08\x65\x93\x0a\x18\xcd\xeb\xc6\x34\x38\x78\x72\x78\xf8\xaf\x83\xa4\x30\xd5\x55\xe5\x35\x55\x37\xd3\x8c\xf1\x22\x32\x70\xef\xd3\xf9\x7d\x6d\x0f\x68\x30\xc6\xc7\x89\xaa\xf8\x4a\x39\xd7\x73\x98\xf8\x9b\xbb\x91\xd1\xe7\x1d\x27\x91\x55\x83\x36\xbb\x2e\xaf\xf0\xbe\xb9\x61\xf9\xaa\x60\x57\xdb\x32\x8b\x2f\x9c\x0f\x1d\xca\x2e\x73\xfd\xfd\xea\x0d\xaf\xf5\x2d\xaf\xe7\x7d\xed\x1b\xe5\xa5\xcd\xa7\xb1\x87\x02\xfe\xc4\x8c\xb3\xac\x23\x01\xdb\x9c\xdf\x7f\xd7\xc1\x9e\xcd\xbf\xb1\x6d\xdd\x63\xf7\x6d\x9d\x7e\x7b\x6e\x4a\x7f\xed\xe7\xbc\x6b\xff\x92\xaf\xc4\xd8\xd5\xfd\x9c\xbd\x7b\xce\x2c\x28\x97\x93\x7f\xc2\xfc\x2c\x3d\xce\x24\xa2\x8a\xba\xc4\x4f\xf8\x45\x4e\xf7\x6e\xac\xaf\xd2\x63\x63\xc3\x65\xe8\x38\xde\xc1\x3a\x24\x0f\x7a\x9c\x7a\xde\xaf\x5f\x00\xcc\x69\x7a\x81\xb3\x14\x9d\x16\x9f\x89\xd8\x4d\x21\xd1\x9c\x39\x41\xad\xf6\x90\x24\x3f\x0c\x83\x7d\x32\x89\x34\x58\x99\x83\x45\x3e\x5e\x7b\x25\x48\x55\xac\x16\xbc\x0c\xe0\xa8\x23\x50\x5c\xd9\x3e\xcd\x41\xdb\xbb\x77\x17\x6f\x99\xc6\xf6\x26\x2c\x37\x9b\x1b\x8a\xa8\xe1\x16\x4c\x38\x17\x25\x4b\x00\x09\x47\xed\x41\xb6\xed\x95\x42\x4b\xee\xaa\xcc\xc1\x9b\x7a\x4a\xc8\x4b\xe5\xf2\xbc\x03\x32\x5e\xe0\x58\xa5\x4f\xb6\x4b\x63\x33\x1c\x59\xd0\x3c\x98\x37\x24\x27\x13\x79\x9c\x77\xbc\x5e\x95\x24\x42\xb1\x83\x0c\xee\x98\x1e\xb3\xaa\xc5\xa2\xa6\xcb\x25\x55\x3c\x73\xb0\xb9\x62\x1e\x9a\x8c\x71\xc0\x76\xe2\x97\xac\xd8\xea\x9b\xc9\xe8\x02\x2c\xcf\x0f\xcf\x7a\x99\x93\x15\x60\x19\x01\x68\x5e\x94\x98\x9f\x2c\x19\x2d\xa5\xcb\x88\x2e\x14\x99\x81\x5d\xda\xd8\x47\x33\x51\xd7\x5a\x7c\x45\x5f\xd3\x2d\x53\x7e\xdd\x4a\x2d\x8c\x35\x91\xd5\x6f\xb8\xfa\x75\x27\x6d\xff\xc9\x41\x9a\xbe\xd7\xcb\xf8\xad\xb3\x8b\xa9\x1b\xcd\x0a\x6b\x42\x3d\xc7\x68\xee\x53\xa5\xd8\xb2\x52\x26\x71\x84\x6e\x9f\xcc\x68\x8e\x4b\x8b\xb1\x39\xad\xc3\xa3\x99\xe1\x9c\x15\x8a\x9e\xe1\xb0\xc9\x49\x34\xb5\x49\xcc\xbf\x2d\xcc\x53\x3e\x8c\x4d\x6e\x31\x7b\x1c\xb5\x90\xe4\x93\xfd\xe7\xf4\x69\x8e\x06\xf4\x07\x72\x68\x1f\x02\x87\xdd\xdb\x48\x11\x33\x8a\x6e\xf5\x36\x2e\x79\x17\x1b\x1f\xf6\x83\xaa\xc0\x50\x8f\xee\x10\x93\xb8\xcb\xba\x6d\x33\xe9\x4c\x0b\x56\x2e\x50\x12\x38\x26\x9c\xfc\xe1\x84\x1c\x1e\x13\x3e\x99\xc4\xd1\x9d\x71\x9d\x77\xfc\x3d\xf9\x36\xda\x00\xa7\xea\x81\x58\x11\x0f\x93\x1a\x77\x15\xf8\xdc\x7c\x8a\x5e\xb7\x8e\x15\x4d\xdf\xa6\xfb\xee\x1f\xf3\xe2\x7d\xb9\x0b\x28\x6e\xf0\x9f\xe1\x06\xc2\x11\xff\xf3\x5c\x41\xbf\xfa\xd9\x36\x0f\x60\x4f\xa6\xec\xfe\xf7\x0e\x2e\x28\x5e\x3c\xf1\x23\xeb\x6e\x9d\x4b\xb1\xd1\x57\x8e\xeb\xa4\x7d\xdf\xe0\x20\x3b\x2e\x1c\xc7\x09\xda\x06\x5c\xeb\x99\x55\x23\x60\x15\xa7\x70\x1c\x36\x6e\x19\x18\xc0\xb7\xfe\x8a\xd1\xcf\x3f\xba\x64\x2d\x84\x22\x72\x49\x0b\x93\x1b\x83\x04\x03\xfe\xfa\x84\x4c\x4c\xe6\xf1\xcd\x0d\x2f\x58\xd0\x56\x8c\x49\x5c\x50\xa9\x2e\x51\xfe\xd6\xc3\xc0\x4c\xe3\x78\x4c\x47\x70\x79\x04\xb7\x85\x2d\x3b\x09\x99\x53\x97\xe9\xcb\xde\x38\x27\x27\xc4\x6b\x3b\xba\x6e\x10\x77\xf9\x60\x87\x10\xea\x67\x9a\x1f\xed\xbc\x75\xec\xba\x57\xa2\xba\x14\x1b\xef\x78\xe7\xa6\x37\x99\xd8\x9b\xe8\x01\x89\x70\x97\xe3\x1b\xe9\x86\xcf\x21\xa7\x7a\xb0\x2e\xc7\x0f\x1a\x7c\xb7\x9f\x5a\xb5\x92\x37\x53\x5a\x55\xd6\x2e\xde\xf8\x3e\xd6\x5d\xd8\x50\xb3\x83\x03\xf2\x23\x23\x7f\x59\x49\xe5\x90\xee\x21\xb9\x9a\x83\xbb\x57\xa2\x8a\xf3\x25\x8e\xf5\x61\xb4\x77\xc4\xaa\xca\xa9\x62\xb6\xa5\x40\x34\x0f\x84\x1f\xaf\x86\x41\x4d\x13\x08\x8c\x4b\x7a\x17\xa8\x99\xec\xdb\xa1\xc7\x87\x19\x09\x23\x88\x47\x4f\x29\x7f\xe8\xa2\xac\x82\xd6\x90\x72\xc9\xbd\x6b\x01\x35\x9e\xec\xa2\x80\x98\xc0\x7c\x19\x23\x39\x99\xd1\xf2\x72\x18\x0c\x70\x57\x73\xc7\x41\x6b\x35\x9e\xc6\x64\x71\x59\x15\x3c\x63\xc3\x07\x0d\xbb\x48\x07\x99\x4e\x9a\x23\x1b\x37\x7f\xf0\x68\x76\x21\xe5\xac\x4a\x4f\x3b\xb5\x27\x9b\xf0\xf0\x4d\x4e\x9a\x4d\x1d\xc7\xca\x33\xbd\x3f\x8f\x3b\x0a\x7d\x4a\x2c\x78\xc4\x3d\xc0\x63\x94\xc3\x5c\x1a\xc4\xfb\x29\xcc\x6d\xf2\xc3\x35\x8a\xf8\x97\x90\xec\xd6\x60\xf9\x1b\xc7\xbe\x40\x2f\xe4\xf4\x99\x56\x89\x19\x0b\xe8\xed\x2c\x34\x4e\x25\x1e\x51\xb1\x99\x07\xc1\x7c\xb3\xfb\x84\x6d\x28\xff\x27\xb1\xec\x34\x80\x85\x5e\x29\x38\x0b\xb1\xb9\x16\xd7\xa2\x1a\x1e\xf6\x1e\x20\xdb\xeb\xb4\x8d\x4d\x9f\x97\x5d\xfe\x91\x1d\xc3\xc0\x1c\x7a\xc3\xf6\x7d\xb9\x7f\x68\x9a\x11\xa9\xe8\x82\x91\x55\x45\x86\x00\xdd\x07\x3f\x15\xbc\x64\x23\x52\xb3\x82\x42\xae\x52\xeb\x79\x8e\x9a\x1a\xf0\xfc\xef\x69\xb5\xc2\x01\xd3\x05\x7b\x5b\xa5\xdd\x13\x78\xca\xf0\xbe\x60\xea\x1a\xae\xd3\x97\x65\xce\xee\x86\x1d\x21\x12\xf1\x3e\xf0\xf8\x21\x8c\x1d\xc3\x9e\xdc\x63\x25\x72\xb1\x29\x7f\xdb\xb5\x78\xae\x7b\xf8\xad\x57\xe3\xf1\x6e\x9d\x7e\x8f\xd5\xd0\x13\xd7\x74\xd1\x31\xf5\xfb\xcd\xfb\x15\x2f\xff\x36\x34\x70\x9f\xc9\xc1\x56\x7f\xb1\xe9\xfd\x8d\xb6\xb5\x31\x41\x34\x48\x34\x5d\xee\x25\xcb\x44\x99\x87\xbf\xd0\x32\xff\xac\xbb\x71\xc3\x2b\x76\x26\x4a\x05\x19\x9a\x76\x5d\x4b\x6d\xbe\x8b\x1c\x26\xe7\x84\x10\xab\x34\xbb\xb1\xd9\x62\xde\x25\x3c\x49\xc6\x69\x07\x91\xf7\xd3\xb9\xa8\xcf\x69\x76\xe3\xe3\xed\x71\x82\xf6\x8d\x47\x9f\x1e\x48\x68\x7a\x62\xb3\x24\x47\x2c\xb1\x7d\xcb\x4c\xa1\x80\xdb\x70\x8f\x10\x0a\x06\xf8\xa0\x1d\x8e\x4d\x73\xf1\xe3\x0b\x76\x1c\xfd\x60\xd8\xee\x03\x69\x33\x8e\xd7\x0f\x5d\x0a\x13\x0a\xcc\xc4\xfa\x70\xc4\x0c\x69\x7b\x1d\xbe\x58\x85\x79\x09\x6d\x06\xd8\x3d\x06\x42\xa6\x3a\x76\x0d\xa6\x70\x5a\x14\x61\x2a\xb2\x5e\x79\xca\xfc\xdc\x13\xfb\xd6\x37\x3c\xcf\xe1\xa6\x77\xb4\xda\xdc\xf8\xfe\xf1\x78\xad\x96\x5b\x78\xe9\x2d\x5f\x9c\x08\x7d\x3d\xdc\xb4\xb5\x4a\x34\x27\xe6\xea\xd2\xfe\x18\xde\x34\x62\xae\x12\xbb\x03\x19\xd6\x58\x3d\x17\xf5\x92\x50\xa2\x2b\xa7\x7d\xd0\xc1\xdb\x5d\x62\xa2\x8b\x9c\x70\x08\x44\xbb\x51\xaa\x3a\x3a\x38\xd8\x6c\x36\xd3\xb5\x7a\x72\x78\x38\x2d\x99\x3a\xc8\x45\x26\x0f\xd6\xea\x9b\x27\x87\x93\x7a\x79\xf0\xfc\xfc\xec\xea\xfa\xf2\x7f\x5c\x7f\x33\xf9\xfd\x9e\x7b\xca\x0e\xbb\x4d\x0e\x07\x07\x04\xbf\xf8\x1b\x12\x51\x0f\xcc\x18\x79\xdd\x18\xe5\x3d\x73\x38\xfe\x08\xf9\x46\x37\xa1\xec\x20\xca\x70\x29\x66\x2b\x65\x13\x5c\xc0\xee\xa2\xfa\x00\x7c\xb5\x40\xea\x6f\xf5\x17\x42\xaf\x03\x10\x29\x2a\x80\x6c\x0e\xc8\xf0\xb3\x1d\xc4\x9f\x21\xd2\x03\x72\xbe\x43\xa7\x32\x80\x6a\x30\xd0\xda\xf1\xa8\xc6\x98\x04\x5b\xdd\x40\x20\x2d\x57\xa0\xcb\x29\x07\xca\xe4\xf4\x64\x6c\xe9\xb4\x39\xe8\x2d\xc0\x72\x42\xcb\xed\xe6\x86\xd5\xac\x23\x65\x7e\x4f\xb0\xe9\xfe\x64\xde\xac\xeb\x73\x55\x42\xc2\x38\xb2\xa4\x25\x32\x35\xec\x4e\xcb\x22\x5c\x81\x93\xc2\xd6\xa4\x20\x87\xf0\x25\xd4\x25\xc5\x53\x9f\xf6\x64\xdb\x5b\x2b\xab\xb7\x59\x76\xee\xf3\xd8\x6c\x34\x93\xa9\xad\x36\xeb\x1a\xed\xb7\x3b\xba\x16\x8f\x4a\xd5\xcd\x90\x90\xd7\x62\xcd\xc2\x1e\xe7\x26\xe9\x9b\x39\x5e\xa0\x22\xb2\x29\xb6\x01\x8b\xcd\x7c\xd0\xc2\xbd\x51\x2d\x82\xb2\x69\x4e\x4a\x41\x96\xa2\x66\x41\x22\x6f\x5a\xb3\x1e\x46\x71\xd3\xa3\xb9\x2a\xd3\x1c\x80\x73\x9e\xd8\xe9\xa4\x05\x85\x60\x59\x23\x45\xea\xe1\x31\x40\xc7\x27\xf5\xa9\xc7\x84\x3f\x7e\xdc\x52\xf6\x46\x1a\x54\xeb\x32\xd1\x78\xe7\x42\x84\x8f\xd5\xb2\x6c\x57\x74\x2f\x5e\x88\xb6\xea\xf4\xa9\x07\x07\x86\xc6\xdc\x7e\x66\xce\x35\x22\xf2\x88\xd0\x34\xf0\xa7\x6b\xbd\xf2\x67\x7f\xba\x9e\x9a\xf5\x08\xdd\x2c\x7a\x78\x3b\x1c\xb7\x08\x22\x1c\x74\x3f\x6f\x93\x6e\x47\x0a\xdf\xcb\x0e\xba\xd2\xec\x4d\x48\x58\xd6\xed\x27\x49\x5c\x73\x5e\x27\xa8\xab\x55\xa5\x2f\x85\xd9\xbe\x7f\x3b\x12\xbb\x9f\xae\x7e\xb7\xa6\xfe\xcb\xd2\x59\xb2\x8d\x26\x93\x0f\xd1\x80\x76\x55\x09\x55\x41\x9a\x4a\x1c\x53\x53\x21\xcc\x4b\xc5\x16\xde\x28\x45\xfe\x93\xd5\xc2\x38\xd3\xfa\x0a\x7b\xfc\x03\xdb\x9b\x11\xce\xff\x8b\x2f\xaf\xf3\x6c\x1a\x35\x96\xeb\xfe\x5b\xe2\x47\x62\x54\x54\x20\x57\x80\xfb\x56\xe0\x7c\xb5\x7b\x4b\x5a\x6d\x1c\xc6\xf5\x93\x3e\x53\xcd\x2d\xda\xe3\x5d\xfb\xbd\x20\x6c\x3e\x67\x99\x32\xf1\xc6\x35\x43\x00\xcd\xfb\xb4\xb3\xcf\x19\xcb\x6c\xe3\xa9\xea\xf2\xae\xfd\x9c\xb3\xd5\xb1\xef\x5c\x4b\x7a\x17\xf3\x61\xc3\xc3\x8d\xeb\xbd\x9d\x3c\x19\x3d\x68\xec\x6a\xc7\x5e\x8d\xd3\x22\x20\x44\xeb\xda\x8b\xa5\xcf\xcc\x03\xde\xbf\x43\x44\x68\x51\x6c\x28\xd2\x35\x0c\x8a\x5d\x0e\x69\x64\x55\x45\x7c\xae\x1b\xe2\x58\xbf\xf5\x98\x67\x1e\x34\xd1\x34\x79\x60\xaf\x0d\xd0\x89\xc4\x03\x0e\x9b\xce\xd6\xac\xde\x5a\x0b\x2f\xf9\x57\x37\x56\xb0\xb3\x8e\x88\x75\x46\xb4\xcd\xeb\x66\x9c\xae\x5b\x56\x2c\xc3\x4c\xc2\xb6\x98\xa8\xc9\xa1\xb9\xa0\x4d\x8b\x5c\x92\xaa\x16\x6b\x9e\xb3\x1c\xed\x6d\xc0\xdb\xe8\xb7\x0c\xac\x68\xf3\x95\x5a\xd5\xcc\x98\xb0\xac\x3f\xb1\x6e\x7c\x49\x56\x55\x34\xee\xc4\xd3\xc8\xee\xb8\x44\x1f\x70\xf7\x06\xc0\x63\x31\x06\x2c\x8e\xe6\xbe\x3c\x30\x39\x8d\xd5\x0d\x55\x9d\x57\x98\xa8\xd4\x07\x98\xab\xcf\x47\xeb\x56\xf6\x17\x7f\xaf\xb9\xdf\xec\xc4\x57\x92\xcd\x57\x85\xcd\x4b\xab\xbb\x99\xf3\xa2\x00\x03\xde\x4a\x11\xc8\x22\x17\x8d\xb3\x23\xf5\xb2\x5e\x85\xbd\x8a\xcd\x96\x40\x19\x52\x9c\x9b\x80\x3f\x70\x38\x9f\x93\x60\x6e\x1f\x3f\x22\xed\xe9\xaf\x9b\xe0\x68\xc1\xa6\x1f\x1b\x29\x06\xe0\x4e\xb0\xbc\x26\x3b\x41\x68\x8b\xee\x34\x07\x62\x5b\xc7\xff\x4e\xc8\x13\x32\x21\xc3\xa1\xfb\x6b\x44\xfe\x95\x6c\x46\xe4\x31\x01\xbe\x23\xba\xc8\xa1\x4c\xc0\x8e\x35\x59\x0f\xfd\xe9\xf1\x09\x69\xb8\x9a\xba\xc7\x62\xc8\x1b\x7a\xf1\xf6\x21\x42\xaf\xd3\x08\x9f\xc0\x24\xab\xd7\xe2\xa3\x35\x72\x8a\x79\x10\x22\xe4\xa1\x5d\x6c\x3a\xe1\xa6\x51\x14\x19\x0d\xd4\xf7\xb0\x9c\xac\x4a\xc5\x0b\xcf\x1e\x67\xb4\x68\xa1\x8c\x39\x37\x51\x55\x93\xab\x64\xaf\x98\xeb\xd8\x8e\x0d\xa4\x28\x29\x2d\xf0\xd0\x5e\x38\x03\x5b\x2f\xc2\x1e\x0b\x71\x81\xd6\xca\x97\x82\x4f\x9f\xe1\x12\x76\x4d\x6f\x91\x19\x0d\xf8\x81\xe7\x2f\x7f\x70\xd0\x37\x54\xc6\xf4\x6c\xd2\x25\x36\xd7\xe2\x4f\xd7\xaf\x5f\x3d\xe7\x6b\x13\xc8\xfe\x89\xe4\x7c\x8d\x01\xdd\x7c\x6d\xb3\xcd\xef\x68\x69\xc7\x32\xe4\x2c\x13\x75\x23\xbe\x28\xe7\xeb\x30\x9c\x9e\xaf\xb5\x70\x9d\xf3\x75\x3a\x60\xdb\xb6\x00\xd5\xf6\x63\x71\x61\xde\xc3\x96\xfe\xa3\x95\x57\x71\xd4\xa3\x2d\x88\x86\xdb\xd5\x14\x06\x9a\xf7\x68\xc9\xb9\x7f\x87\x3c\x4a\x47\xa3\x2e\x73\x62\x77\xc3\x01\x0a\x6c\xab\x25\x07\x2c\xbb\xb7\x3a\x58\x80\x3b\xeb\x23\x8a\x6c\xa8\x2a\x02\xc7\xc9\xb9\xc8\x56\xce\x1c\x08\x7f\x04\xca\xc0\x48\x23\xe5\x22\xc2\x5b\x5d\x04\x41\xfa\x71\x40\x72\x1c\xa2\x1d\xb4\xd5\x42\x6d\x6e\xb5\xd9\xc6\x82\x1e\x45\xda\xbe\x4e\xb8\xe4\xae\x1d\xd9\x09\xcf\x1c\x2d\x8b\xc5\x83\xe8\x50\x81\x7b\x14\x92\x44\x1d\x00\x26\x99\x8a\x32\x13\xa5\x5e\xef\x25\x2b\x57\xcd\x14\xfa\xc6\x8b\x1b\x59\x0f\xe2\xb1\x83\x44\x09\x51\x6d\xb6\x57\xf3\xe7\x87\x68\x3b\x9c\x3d\x98\xb1\xf2\x7b\x4c\x5a\x9d\x1a\xe2\x95\x2b\x80\xea\x19\x5f\x61\x4a\xf3\xfc\x7c\xcd\x4a\xf5\xca\xa4\xa7\x35\xf1\x71\xb9\xd8\x94\x83\xb1\x1d\x43\xcf\x4a\xab\xea\xde\x55\xf4\xc2\x37\x2a\xb5\x26\x20\xca\x60\x73\xf5\x8b\x8a\x85\x61\xa1\x76\xf5\x60\x76\x7e\x00\x54\x6c\x61\x1e\x44\xf9\x42\xff\x89\x21\x3c\xc1\x62\x8e\xe1\xd9\x42\x9a\x3a\x38\x20\xd8\x08\x5c\xb3\x6e\x3d\xd0\xd7\x47\x5a\xe7\xa0\x60\xd5\x29\xa0\xb1\xbc\x78\x61\x70\x35\xb2\x95\xc4\x56\x4c\x05\xc4\x21\x9b\xad\x66\x88\x98\xd2\x7f\xf9\x5b\x88\xbc\xfa\x1d\x46\x15\xe1\xb0\xf7\x6c\xda\xda\xfc\x3e\x8b\x36\x2b\x56\xf5\xfe\x35\x03\xa2\x1d\x79\xf7\x1e\x69\x42\x30\x1b\x87\x20\x03\x54\x33\xf3\xfa\x0c\x07\x18\x74\x89\x14\x02\x7e\xda\xfa\x68\x18\x0b\x8d\x73\xd6\x1e\x0e\x8c\x74\x32\x29\x45\xce\xde\xc1\xaa\x9e\x7c\x05\x1d\x7e\xf5\x9e\xfc\x35\x88\xfc\x1d\x10\x32\x13\x77\x13\xf4\x6b\x3f\x22\x08\xb6\x3a\x99\x89\xbb\xe3\x46\xa1\x46\x3e\xdf\x23\xa2\x6a\x5a\xca\x8a\x82\xe0\xf5\x90\x2f\x2b\x51\x2b\x5a\xaa\x66\x35\x6c\xcf\xf8\x53\x3e\xad\x5a\xcd\xe2\x77\x98\xc9\x11\x91\xa2\xe0\x79\x54\xe2\x53\xf8\xc7\x74\x93\xc1\x7c\x9a\x13\x30\xaf\xed\x11\xe1\x65\xc1\x4b\x36\x99\x15\x22\xbb\x6d\x74\xa4\x57\x69\x42\x0b\xbe\x28\x8f\x48\xc6\x34\x67\xd1\x28\x60\x86\x98\xd1\x22\x1b\x86\xa1\xa3\x31\xe0\xc9\x88\x7c\x4d\x9e\x8e\x1a\x55\xa1\x53\xeb\xba\x95\xac\x6b\x43\x12\x3a\xa7\x76\x54\x0b\xa1\x9a\xf3\x4a\x0f\x01\xbd\xc3\x5a\x07\xbd\x13\x76\xe5\x78\x4f\xa3\xa1\xcf\xd9\x9e\x56\x43\xa4\x95\xae\x66\x91\xec\xc4\x7c\x2e\x99\xd2\xa4\x72\x44\x0e\x7b\x15\xad\xc5\xa6\xbb\x28\xa6\xb2\x8d\xa2\xac\x8f\xc8\xe1\xf4\xdf\x64\x47\xf9\x56\x9c\xf0\x11\x10\x40\x9f\xd2\x26\x3a\xf8\xc8\x4a\x0e\x7d\xea\x18\xf2\xdd\x1d\xa9\xdc\xbd\xf9\xff\xbf\x5b\xb6\x9d\xd7\x74\xc9\xa4\xb1\x7a\x34\xe8\x00\xa4\xd7\xbf\x12\x51\xd1\x8c\xab\xed\x11\x79\x32\x3d\x3c\x26\x9f\x1a\xf4\x2d\xc2\x12\x87\xad\x12\xf1\x41\xf2\xeb\xd9\xec\x8b\x96\x7c\x89\x69\xc8\x4b\xba\x64\x47\x38\xa0\xe3\xae\x32\x7e\x33\xc2\xb9\x27\x76\xab\x79\x64\x7c\x13\x5c\x31\x2c\x32\xc9\xc4\xaa\x54\xfa\x10\xcf\x79\xc9\x15\xeb\xac\xa1\xf8\x92\x97\x8b\x89\xbd\xdf\x8f\x08\xa3\x92\x4d\x38\xa4\xce\xe8\x1e\x29\xaf\x99\x29\xee\x4c\x2b\x8d\x1d\xf1\x0f\xa8\xbf\x7c\x6f\x18\xcd\x8d\x87\xd3\xd9\x0d\x2f\xf2\x21\x6c\x75\x68\xb7\xf4\x78\xd5\x7b\xaf\xee\x9c\xaf\x83\x4e\x42\xa4\x6b\x9e\x93\x13\x32\x80\xd5\x3b\x72\xd9\x14\x4c\x84\x61\xb2\x02\x80\x75\x7e\x4f\xc1\x63\x69\x10\x5c\xf5\xe9\xd2\xf8\x50\x64\xc8\xd5\x06\x8f\x84\xe5\xa6\x8f\x08\x9d\x49\x51\xac\x1a\x4b\x52\xb0\xb9\xea\x75\x23\x46\x5f\x9b\x17\xc0\x28\xde\x7b\x25\xaa\x5d\x6d\x9a\x9b\x72\x67\xa3\xb5\xd8\x34\x1a\x75\x2f\x40\xfb\xea\x37\x77\xe6\x8e\x09\x44\xc5\xef\x7d\x8d\x4f\x36\x6c\x76\xcb\xd5\x04\x9e\x43\xb3\x9a\xe6\x1c\x8e\x5b\xaf\x26\x79\x72\x78\xb8\x94\xf0\x60\xd0\xf8\x01\x9a\x2c\xc5\x2f\x9f\xd5\x46\xca\xd2\x8d\x88\xb1\x5d\x76\x6e\xcc\x5e\x18\x4b\x00\xf7\xb5\x90\x77\x46\x72\x76\x30\xf1\xe1\x11\x6a\x92\xa7\x37\x14\xdf\xb0\xd2\xe6\xa4\x6c\x60\x8e\x0f\x08\x97\x44\xcc\xe7\x64\xc3\x48\xcd\x7c\xa8\xf4\x0d\x97\x84\xe1\xf9\x22\x78\xc4\x8b\x2d\x36\x86\x2e\xf3\x2d\xdc\x0c\xc8\x7f\x4b\x28\x81\x24\x73\x53\x82\x8a\xba\x25\xbd\x65\x92\x9c\xdd\xd4\x62\xa9\xf9\x51\x29\x32\x8e\x3e\xaf\x07\x07\x44\xae\x66\xa8\x46\x31\x08\x40\x9a\xe9\xb6\xbc\xa9\xc1\x51\xb6\x5e\x35\xc8\x78\xb0\x7a\x4a\xc8\x15\x2f\x33\x86\x20\x8f\xd0\x48\xf4\x5d\xcf\x85\x92\x8a\xb1\x9a\x0c\xc1\x12\x4a\x32\xbd\x30\xa3\xd8\x7f\x51\x33\x54\x63\x3f\x01\xdd\x6f\x83\x31\x46\xdd\xa2\x71\xf1\x0f\xab\x81\x52\x12\xfe\x9a\x42\x15\xac\xf7\x52\x0d\x74\xbf\x37\x34\xbb\x45\x53\x2c\xd7\x3f\x80\xfe\xbc\x60\xb4\x64\x52\x91\x0d\xdd\x92\x97\x24\x13\xab\x22\x27\x73\x0e\x0e\x8b\x21\x4f\xf0\x0c\xc7\xff\x39\xb7\x5d\xbb\x81\xe8\xd2\xc3\xe7\x32\xaf\xe9\x62\x12\xaf\xd5\x60\x57\x0b\x9f\x79\xaf\xc1\x15\x34\xf9\xfd\xef\x1b\x4c\xcc\xfe\x4b\xe4\xc9\x61\xa3\x8a\xbd\x2d\xf0\x43\xea\x01\x49\x53\x7f\x7b\x2e\x1d\x88\x7c\x9d\xe2\x1b\x21\xef\x22\x69\x27\x10\x22\x23\xe1\x70\x00\x84\xae\xff\x91\xcf\x0a\xf3\x6f\x3d\xfc\x84\x27\x15\xd0\x55\x80\x62\xdb\xb5\xea\x2d\xb1\x07\x2a\xc6\x72\xa8\x6f\x20\x7c\x87\xee\x57\xd3\x2f\x62\xcf\x7a\x1d\xae\x57\x3b\x47\xb0\x5b\x64\x6c\x0b\x8d\x4d\xad\x8e\xf5\xfc\xea\xf0\xfa\x62\xea\x92\xad\x59\x2d\xd9\x0f\x3c\x67\x62\x88\x22\x5f\x7a\xab\xa1\xe5\x4e\x3f\x40\xd4\x79\x5e\xb2\xbc\xa6\x9b\x6e\x20\x97\x3f\x5d\xbf\x7e\xe5\x1c\x52\xc0\x6c\x00\x19\xeb\x28\x2f\x1b\x0a\xca\xe7\x17\xaf\x89\xe6\x17\xda\x18\x2f\xa0\xed\x34\x2d\xec\x0f\xb1\xb7\x25\x77\xc7\xd7\xbb\x9d\x8c\xfd\xd9\x40\x5b\xd6\x84\x33\xd9\xe9\x69\x81\xea\xb5\x7d\xbe\xd1\x6e\x25\x77\x2c\x92\xb9\xa6\x0c\x4c\x37\xea\x86\x6b\xb1\x21\x60\xa3\x8b\xac\x38\x70\x59\x23\x4e\xbe\xb7\x23\x5d\x8a\xcd\x1b\xb4\x11\xd5\xa8\x05\x9f\xd3\x8c\xc1\x73\xc2\x8c\xcf\xa9\x1e\x0a\x59\x49\x0c\xe4\xe2\x70\x25\xcf\x99\xca\x6e\x30\x64\x40\x94\x24\x67\x08\x44\x0e\x4b\xb0\x45\x57\x00\xa8\x09\xfe\x5f\x4a\x90\x35\x67\x0e\x03\xe5\xfa\xe2\xf9\xc5\xb0\x5e\xf0\x32\xa7\xa3\x23\x72\x26\x4a\x09\x5d\x4b\xba\xe6\xe5\x22\x74\xea\x84\xd6\xa9\x24\x43\x98\xa5\x14\xab\x3a\x63\x63\x44\xce\xc9\x50\x49\x30\x02\xa7\x65\xca\x51\x85\x9f\x89\x52\xb2\x7a\xcd\xc8\x92\x2d\x45\xdd\xd2\x7d\x3b\x2b\x13\xac\x0b\x4c\x0f\x72\xbb\xa3\x4d\xc9\x2d\xd8\x98\x18\xb0\xb4\xbc\xe9\x4f\x6b\xed\x4b\x68\x5d\xe9\x74\xd0\x27\xe4\xa2\x9c\x18\x18\x69\x98\x02\x38\x27\xd1\x62\x43\xb7\xd2\x80\xd0\xfb\xb6\x20\x12\x44\x2a\xdd\x35\xcf\x98\x9c\xb6\xe8\xd7\xa9\xea\xf5\x78\x07\x77\x9a\x61\x1c\x38\x36\xc1\x1c\x08\x30\x3c\x9a\x1c\x3d\xb5\x7e\xe0\xc1\xf1\xae\x46\xd8\x99\xdd\x44\x7f\x29\x36\x46\x5f\xe8\x28\x11\x56\xc1\x87\x80\xe1\x6a\x7d\xbb\x33\x8c\x24\x30\xf7\x26\xcb\xbd\x83\x46\xde\x7b\xf5\x10\xac\x0e\x78\x0b\x93\x13\xb3\x1f\x3b\x23\x9f\x8e\x3b\x90\x96\xf4\xfa\x9e\xd6\x35\xdd\xbe\x0b\x9a\x7c\xdf\x75\x5a\x42\xd2\x89\x4f\x0b\xe0\xf8\x04\xe1\x73\xbf\xd9\x89\x89\x86\xe0\x4f\x8e\x33\x48\xae\xa4\x66\xe9\x30\xa2\xce\x10\x75\xb5\x45\xcf\x45\xdd\x94\x4f\xad\x63\x5d\xbc\x6d\x62\xf4\x4e\x6a\x47\x6a\xed\xa2\x76\x60\xaf\xa0\x84\x9e\x9d\xa7\x7d\x4b\x9f\x4d\x97\xf2\xcf\xa1\x7d\xdb\x56\xe3\x08\xa4\x69\xbf\x39\x7c\x56\xe6\x3b\x07\xaf\xbf\x8b\xf2\x57\x0f\x3c\x05\xca\x42\x4e\x89\xe4\xe5\xa2\x60\x36\x7d\x41\x70\xdc\x1c\x39\x21\x30\xb6\x69\xd7\xd2\x91\x1b\x84\x26\x27\x42\x5e\xf1\x92\x99\x6b\x60\xc6\x48\xc9\x36\xe8\xb2\xcf\x0a\xbe\xe4\x8a\xe5\x63\x64\xbe\x4b\x41\x54\x4d\x39\x98\xad\x4d\x99\x5e\xe7\xd7\x70\x8c\x51\xe6\x23\xcd\x6e\xb3\x32\xf7\x56\x68\x8c\xd3\x7b\xf7\x7e\x97\x19\x98\x95\x79\xe4\x83\x87\x80\x94\xde\x98\xe0\xaf\x0b\x63\xfc\x25\xba\x59\xcc\x39\xa0\xcb\x85\xea\xdb\xc0\x3d\xdd\x34\x0d\xc6\xe9\x47\x8f\xc8\x43\x28\xba\x60\xde\x03\x74\x38\x00\xad\xa3\xf5\x5d\xf3\xf9\x00\x5c\xeb\x83\x9f\x0c\xaa\x2b\x98\x9b\xcd\x36\xe9\xaf\x7f\x11\xbc\x1c\x0e\xd2\xe8\x77\xbb\x4f\xbc\xc7\xe4\xfa\x6f\x72\xce\x77\xbf\x6a\x18\x9d\xab\xd7\xe5\x1f\xe0\x8c\x27\xce\x59\xcf\x03\x86\xeb\x72\x8f\xc7\xad\x79\x36\x82\xc7\x6d\x17\x79\x43\xa9\xe0\xd1\x69\x92\x77\x27\xbd\x09\x45\x8b\x46\x38\xb6\x8d\xfe\xa6\x79\x5e\x33\x89\xb8\x9e\x66\xf9\x34\x49\xe0\x57\xd8\xf4\xe6\x52\xb7\xf0\xe4\x7e\x23\x92\xcd\xc4\xb2\x5a\x29\x23\x79\x1b\x64\xd6\x70\xef\xeb\x16\x67\xed\xa8\xae\x1d\x7d\x8e\x13\xea\x8f\xa5\x1d\x84\xf9\xf5\x81\xe7\x6b\xc5\xe6\x3c\xee\xe0\x08\x1c\xe7\xd0\xce\xaa\xe3\x24\x06\xb8\x12\x4a\xb6\x31\xac\xa6\x66\x61\x41\xbc\x45\x17\x28\x1f\xec\xd8\x84\x4f\x6a\xee\x03\x78\x0a\x97\xc5\xd6\x45\xf8\x6f\x28\xe0\x0f\xd0\x3c\x37\x29\x7c\x6c\x97\xe6\x12\xd2\xe4\x4b\xc8\xf7\x42\x71\x50\xad\x50\x88\xbe\x43\x2f\x96\x0d\x1e\x5a\x69\x86\xe2\x81\x12\x4d\x98\x8f\x19\x4a\xc1\xa5\xb2\x4b\x8e\x21\x51\xd6\x45\x4b\x37\xa5\xb9\x40\x0e\x9e\x5d\xb8\x39\xfa\x44\x0d\xed\x23\x65\xe2\xb4\x48\x65\xb2\x17\x80\xb2\xc6\x79\xf4\x86\x2c\x90\xc9\xd3\xa5\x6e\x78\x79\xeb\x33\x76\xe1\x8c\x66\x05\x2d\x81\x47\x27\x52\x2c\xd9\x06\x5d\x1a\x0d\x58\x38\xe2\x54\x63\x7f\x21\xca\xc2\x98\x14\x42\xdc\xa2\x48\xa0\x85\x7a\x0c\x4c\x1a\x45\xcb\x69\x28\xda\x39\x9c\x55\x74\x0b\x17\x65\x69\xaf\xc3\xb5\xb1\xf1\x5f\x8b\xea\x00\xe3\x45\xc7\xfa\x9d\xce\x18\x8c\x50\xde\x88\x55\x01\x57\xdb\x4c\xdf\xb2\x7a\xe2\xb6\xa7\xe1\x48\x0f\x30\xa3\x12\x80\x2c\xf4\x78\x41\x5a\xd9\x80\x8a\x68\xa9\xfb\xa8\xfd\x48\x9c\x96\xcd\x3e\xdb\x56\x11\xc3\x72\x42\xad\x43\x34\x39\xb4\xdb\x81\x6e\xd2\x98\x95\x98\xe5\xc4\x3e\xde\x69\xf0\x98\x34\x6c\x03\x9c\x44\x20\xd0\x7d\x3e\x68\x41\x98\x72\xec\xb3\xeb\xb0\x1b\x3c\x08\xc2\x65\xdb\x33\xbd\x7d\x44\x8c\xa3\x01\xa8\xa4\xbb\x42\xc0\xdd\x71\x73\xed\xb6\x78\x09\xe3\xdd\x0f\xe3\x68\x71\x12\xb5\x1f\x48\xa7\x9e\x0d\xc5\x1b\xc3\x3b\xe8\x33\xd2\xd2\x36\x35\xab\xea\xfb\x1d\xae\xec\xc1\x60\x14\xd4\x73\x34\x7e\x62\x67\xf5\x98\xf0\x18\x84\x00\xa1\x0e\x56\xf2\xe6\x52\x6c\x86\xb5\xd8\x8c\x22\x20\x6e\x76\xa7\x6a\x8b\x4f\xb1\x73\xf1\x3a\x63\x75\x1d\x04\xb9\x6b\x29\x08\xd0\xdb\x0b\x9d\xe0\x6a\x99\x49\x61\x97\x9e\x04\x7a\xa2\x26\x90\xd0\x9f\x3a\x8a\xcc\x93\x57\x46\x40\x3f\x2f\xf3\x18\x41\xc7\xfa\xa4\xc1\xf7\xe7\x62\x63\xa3\xfb\x3e\x3d\x88\x60\x2c\x35\x61\xfd\x61\xcf\xe2\x8c\x02\x3c\x85\x1e\x84\x88\xa0\x18\x81\xc2\xe9\xd4\xa8\x3c\x1b\xd8\x9a\xae\x41\x44\x5f\x88\x9e\xe2\x42\x64\xfa\x8a\xf7\xb0\x10\x18\x0d\xed\x19\x9a\xc4\x33\xac\x6f\xea\x12\x92\x3a\x35\x2f\x76\x9b\x71\xa7\x66\xd9\x36\x2b\x4c\xb3\x39\x66\x1f\xfe\xe1\xda\x3c\x90\x52\xaf\xaf\x90\x8c\x6c\x6e\x78\x76\x03\xda\x8f\xbc\xb6\x19\xd8\x66\x5b\x5d\xd0\xe4\xa2\x92\x51\xfa\x42\xfd\xcd\xf1\x82\x4b\x5a\xf2\x6a\xa5\x19\x31\xc3\xfc\xf8\xc7\x77\xe4\x9c\x22\xf1\x61\xd5\x37\xd8\xd8\x44\x1b\xe9\x3b\xb8\x00\xf1\x22\x56\xb8\xf8\x16\x48\x0d\xe1\x4e\x30\xac\x25\xcd\xad\x78\x02\x8f\x0d\xbc\x81\x9b\x40\x59\x23\xe6\x73\x64\x16\x24\x73\x3c\x1c\xaf\x5b\x4f\x06\x67\x7a\x14\x35\x9b\xaf\x8a\x62\x8b\xef\x0d\xde\x65\x2c\x27\x52\x10\x8a\x37\x37\xaa\x64\xe6\x56\xa7\xef\xd9\x8f\xae\x9b\x51\xef\xd7\x4b\xc7\xc6\x22\x1b\xea\x94\x58\xf7\xba\x47\xf5\x95\x9f\xac\xa4\x84\xef\x20\x67\x52\xf1\x92\x9a\x4c\xb5\xa6\x9b\x1d\xd7\xae\x7b\xb1\xc2\x4b\xd7\x8d\x79\x8c\x03\x1a\xdb\x2e\x9a\xb2\x57\x4c\xf9\xcc\x3d\x4a\xcd\x06\xda\xe1\x3e\xf8\xaa\x40\x61\xd3\x76\x00\x8a\xe2\x5c\x8c\x41\xe0\xb3\x97\x8e\x5f\xc9\x6f\xe3\xf1\x78\x8f\x61\x57\x04\x6f\x09\x06\x50\x0d\x76\x79\x1e\x9b\x4b\xbc\x89\x8a\x65\x2b\x9b\x72\x61\x55\xdf\x65\x58\xf9\xc1\x83\x64\x2c\x72\x20\xa2\xee\x54\x12\xbf\xec\x0a\x20\xbe\x34\xcd\xa5\x39\x1a\x7b\xd6\x77\x6a\x77\x2c\x85\x69\xde\x89\x01\x23\x0e\x22\x0a\x1c\x94\x96\x48\x64\x42\xcf\x81\xac\x23\xa9\x08\xa8\xec\x32\x60\xf3\xdb\x5c\x7c\x46\x4b\x84\x82\x0a\x8e\x49\x68\x57\x43\x85\xa9\xe1\xdc\xc2\xeb\x69\xa8\x19\x9a\x8c\x96\x03\x45\x72\x06\xce\xd0\x9a\x2f\xb5\x60\x2a\xe6\x0f\xa6\xb2\xd1\x38\x60\x7d\xe0\xdc\xea\x96\x4a\xe1\xc1\xb1\xec\x6a\x35\xb4\xab\x5d\x07\xd1\xeb\x8c\xf6\x1d\x42\xab\x9e\x31\x0b\xd8\x28\x85\x47\x09\xbd\x0e\x8d\x77\x3f\xde\xb8\xd7\x37\xe1\xe5\x6b\x87\xb7\x37\x04\x3c\x20\xa1\xb4\xc2\x63\x1c\x74\x12\xb8\xe0\xdb\x34\x7b\xc1\x08\x3e\x7e\x8c\x0e\x99\xf7\xb6\xec\xc1\x04\xdd\x47\x89\x62\x02\xf7\xbd\xa2\x92\xbf\xef\xe6\x4e\x22\x7c\xe6\x37\x35\x07\x66\xdb\xe7\xce\xec\x14\x41\x6a\x26\x2b\x96\x79\xc4\x64\x70\x64\xc3\x6b\x03\xc8\x7b\x53\xd3\x8a\x62\x06\xd5\x25\x58\x4a\x20\x16\x04\xf5\xd2\x39\xa2\x5d\xc2\x23\x02\x0f\x43\xa7\xd4\x63\x09\x0f\xe2\x2a\xe6\x73\x07\x55\xd3\x78\x70\x02\xd2\xb7\x01\x83\x61\x1e\x18\x7f\xf8\x60\x5a\x5c\x92\xaf\x4b\xa1\xbe\xd6\x6f\xb4\xcd\xf1\x6f\x5c\xfe\x33\x33\xd4\xb7\xe6\x01\xf1\x4e\xf4\x23\x2b\x25\x70\xf3\x96\x51\x35\x30\xe0\x74\x5b\xb1\x1a\xd4\x0c\x6d\xe3\x31\x79\x47\x81\x00\xc1\x08\x94\x20\x95\x5e\xea\x3d\xd4\x07\x65\x92\x4e\xfe\xee\x0a\xbe\xb0\xb4\x73\x18\x5c\xcd\xb5\x85\x3f\x2e\xf8\x6c\xba\xc9\xa6\xf6\x17\x13\x09\xf0\xc0\xa1\x88\x85\x4d\x7c\xeb\x2a\xb6\x22\xe9\x5c\xe0\x78\xb0\xa9\x8f\x1e\xf5\x0a\x10\x6d\x86\x33\xda\xd2\x62\xb9\xe4\xea\x15\x2f\x99\x05\xf2\x1e\xc6\x10\x11\x25\xdb\xe8\xaf\x1e\x88\xd0\xf1\xb0\x99\x11\xdb\xdd\x34\x27\xe1\x4a\x1c\xbb\x72\x39\xcf\x2f\x5a\x70\xdf\xf6\xa3\x5c\xcd\xa4\xaa\x9b\xd1\x7f\x3b\x43\xd3\xec\x1b\xd3\xe0\x40\x03\xc8\x43\x37\xd5\xb8\x6b\x8b\x84\x0e\x7c\xa9\x19\x7c\xb2\x81\x26\x18\x5d\x47\x84\x1c\x69\xc0\x4a\x05\x9d\x3d\x7a\x44\x1e\x76\xed\x98\x1f\xde\xc1\x81\x96\xb2\x95\x27\x47\xbb\x59\x2c\x37\x72\x7e\x09\x99\x9a\xc2\x33\x8c\xfe\x23\xc0\x02\x1a\xe5\x91\x6d\x0a\x42\xc1\x81\x52\x59\x90\x79\xc7\xbe\x0c\x33\xe6\xe3\xc5\x45\xd8\xe9\xd4\xb7\x70\x7d\xf1\xfc\xe2\x28\xc8\x09\xaa\xef\x07\x25\x88\x58\xd5\xfa\x75\x9d\x15\x6c\x69\x7c\x45\xc0\x4b\x7e\xb6\x55\x8c\xbc\xbd\x7e\x31\x79\xf2\xbf\xe3\x28\x1e\x34\x94\xc1\xc6\x06\xa4\x0f\x7f\x6b\xc2\x1f\x87\x64\x62\x18\x1f\x8c\x57\x0a\xf3\xf8\x24\xab\x39\x42\x7b\x32\x6a\x6e\xa4\xfd\x68\xb6\x25\x64\x5c\xee\x3b\x98\x36\xa9\x2b\x71\xcb\x00\x21\xd5\xde\x10\x71\xea\xec\xaa\xe0\xea\x47\x9e\x33\xbd\x0a\x98\xa7\x77\x88\x3d\x98\x96\x92\x61\xf0\xd0\x64\x2a\xfc\x7d\x67\x16\x8e\xe9\x26\xb3\x3e\xfe\xd0\x80\x7e\x52\xf0\xa7\x24\xaa\x5a\xa3\x32\x95\x19\xe7\xad\xfa\xee\xd7\x36\x8c\xa0\x23\x5f\x7c\x50\x5e\xb7\xf2\x03\x27\x98\x55\xb3\x02\xbe\x7d\xbf\x10\xad\x8d\x69\x34\xa0\xe9\x7f\x53\x73\xc5\x76\xb7\x71\x9f\x65\x0a\xee\x9b\x7b\xac\x8d\xbb\x29\x0c\x11\x44\x15\x97\x74\x3b\x63\x67\x05\xaf\xce\xf0\xb5\x0d\x00\x13\xc3\x7b\xfc\xf1\x49\x8a\x17\xde\x13\xf6\xf5\xa0\x25\xb3\x5f\x94\x17\x2b\x55\xad\xd4\x87\x51\x34\x92\x5f\x83\xa0\x66\xe0\xe1\x9d\x10\x6b\xc4\xc4\x88\xad\x68\x41\x8c\xc4\x31\xc9\x96\x55\xb0\x8e\x49\x04\x02\xa7\x47\xee\xbb\x51\xcb\x35\x5f\x68\xc4\x5a\xa0\x55\xc5\x28\xda\xed\x73\x61\x7b\xbd\x62\xaa\x21\xff\x5a\xe9\xd5\xa2\x11\xac\x8a\xa2\x03\xd2\x1e\xaf\x2b\x08\x3b\xb5\xf2\x6d\x3c\x33\xe2\xa4\xfa\xaf\xbf\xbf\xb8\xfe\x1a\x07\xb3\x14\xd2\x83\xc5\x48\x3d\x14\x42\x7e\x64\x9a\x83\xf0\x38\x23\xba\xb9\x85\xd0\xe3\xfa\x4a\xcc\xe7\x13\xcd\x6a\x7d\x85\x80\xb5\x16\x95\x96\x2b\xe3\x77\xf7\x33\xd2\xc7\xcf\xc0\x75\xfd\xac\x96\xab\xbb\x9f\x3d\x40\x84\xe5\x93\x74\x7b\x85\xc8\x68\xd1\x66\x98\xc6\x46\x87\x80\x38\xb2\x91\x1a\x00\xf5\xd3\xa0\x21\x9a\x54\x8b\x55\x75\x50\x2d\xf2\x12\xa1\x70\x4b\xc5\x4b\xcc\xce\xbb\x11\xf5\xad\x16\xbf\x61\x5a\x2b\xc9\x6a\x69\xd4\x9b\xec\xae\x0a\x13\xdb\xb7\x8c\xc4\x56\xa3\xda\x34\x20\xb5\xa0\x08\x03\x3a\xe9\x6a\x06\x49\xb0\xd9\x52\xac\xbe\x8e\x1a\x1b\x5b\xeb\x11\x2f\xb3\x62\x25\xf9\xba\x47\x2a\xe0\x18\xcc\x25\xe2\xcb\xec\x5c\xc6\xd1\x78\xbc\x47\x83\x9f\xec\xc9\x09\x39\xd4\xef\x74\x34\xee\x93\x2e\x10\x79\x7c\xa0\x82\x68\xd8\x40\x13\x0d\xb8\x41\xab\xa2\x38\x6e\x7f\xc5\x66\xc3\x02\xed\x84\x8d\x8d\x96\xdc\x08\x77\x36\x17\x8e\xba\x25\x3d\x44\x46\xa9\x2a\x30\x04\xd2\x2c\x13\x75\x1e\x48\x14\x3f\x5c\xb7\x33\x81\x1b\xbb\xcb\x21\x59\x95\x05\x93\x0d\x87\xab\x1b\x2a\xc9\x0c\x45\xb7\x22\xb7\x29\x7e\x6a\x9e\x29\x2f\x1f\x18\x41\x42\x8a\x25\x23\x9a\x97\xa9\x8d\xc5\xe3\xa5\x72\x5a\x35\xfd\x20\xc2\xf7\x1f\xae\x9b\x17\x0b\xe6\x1a\xcf\xe3\xe6\xac\x0a\x6d\xb7\x2d\x4a\x89\x0a\x68\x1f\xe7\x1b\x8d\x7b\x20\xdb\x24\xbc\xdb\x2e\x65\x69\xec\x3a\x05\x54\xe2\xae\xe8\x68\xef\x1e\x9a\xe4\x15\x2d\x8f\x98\xb0\xd4\x71\x60\xc5\x3e\xec\x32\x25\x9a\xf3\xf2\x79\x1b\xa7\x3a\x33\x7f\x84\x3b\xca\x55\x6b\x2f\x51\x99\xd7\xdc\x4e\xb7\x97\x37\x7c\x71\xd3\x6f\x33\x43\x38\xc9\xd6\x7e\xf6\xdc\x4c\xb3\x04\x5f\x7e\x43\xed\x49\xdf\xbb\xa7\xf6\xb0\xed\xdd\x56\x53\x30\xdc\xd9\xee\x4b\x24\xcc\xcb\xf3\xa6\x16\x5a\x38\x26\x94\x0c\x7e\x2a\x07\x9e\x89\x0e\x4c\x70\xc1\xd3\xcb\x5d\xd4\xe1\x1c\xb1\xd9\xc4\xa6\xb5\xc1\xca\xf3\xee\x68\xcc\x04\x7b\x1d\xe8\xa2\x9d\xc9\x2e\x52\x6b\x05\x7b\x63\xef\x8b\x60\xc9\x5b\xb2\x3d\xb4\xe4\xbc\x66\xf4\x5f\x17\xea\x86\xd5\x1b\x8e\x5a\x69\x2e\x41\xfb\x1a\x71\x0c\xca\x01\x52\x00\x8a\x83\x19\x31\x44\xec\xef\x37\xe4\x1b\xe9\xb3\x03\xce\x04\x3a\x38\x55\xe7\x65\x7e\x31\xbf\xb2\x7a\x9e\x9d\x12\x24\x18\xa2\x4e\x02\xfe\x35\xf1\xbf\xbd\x66\x8a\x06\x9b\xd6\x45\x2f\x1e\xfd\xf9\x54\x1f\x8d\xab\x88\xa7\xd1\x1c\x56\xa6\xf8\x9a\x19\x90\xea\x35\xab\xed\x96\x59\x9b\xf4\xb4\x97\x4c\x8c\x33\x4a\x12\x64\x24\x68\x22\x63\x63\x80\x66\x02\x05\x8f\x1f\x19\xbe\xa6\x63\x52\x39\x98\x3f\xc7\x20\x4e\x43\xfe\xd9\xf6\xf2\xb6\x1a\x3e\x69\x60\x39\x77\x5a\x6d\xf6\xcc\xc0\x22\x69\x47\x58\xda\x89\xed\xed\x35\x23\xab\xaf\x75\x86\x79\xc8\x8b\x8d\xcc\x26\x80\xa2\xac\x54\x2c\x38\xb7\x08\xf5\x70\xfa\xdb\xcc\x2a\x18\xfc\xa9\x81\xd8\x83\x0f\x63\x42\xf3\x35\x35\x1a\x61\x3b\x1c\x68\x40\x9f\x4e\x83\xb3\x88\x30\x7f\x88\x29\xf3\x05\x06\x67\xa0\x92\x42\xc4\xcf\x5e\x4b\xbf\x77\xe1\xa7\x84\x9c\x06\x77\x4f\x78\xe5\x38\x65\xa2\x6d\x09\x38\x5a\xe7\xf1\xe3\x58\x95\xd6\xb5\x33\xf5\xac\x50\x08\xd3\xfd\xa4\x9d\xba\xa3\xb9\xb4\x81\x66\x5e\x5f\x0f\x00\x1f\xdf\xbc\xa2\x82\xd6\xbf\xc8\x72\x46\xbc\xd8\x2b\x7e\x0b\x9e\x1d\xa8\x44\x1b\x13\x76\x97\xb1\x4a\x8b\x0c\x1c\xdc\x9d\xc2\x1d\xef\x05\xd9\x55\xf0\x92\xbd\x60\x2c\x81\xad\x7d\x6f\x84\xa7\x94\x86\xaf\x15\x80\xb5\x5a\x96\xc3\x14\x1a\xd6\xcb\x39\xa4\xfd\x3e\xa3\x75\xcd\xe9\x82\x19\xe6\x05\x51\x8e\x50\x39\x15\x4e\x5a\xef\x84\x1d\x39\xfa\x7c\xec\x46\x22\x5c\xa6\xa7\xd8\xd6\x4b\xb4\xc7\x10\x71\xe9\xd1\xdc\xda\xac\xb7\x1f\x52\x6b\xdf\x9a\xc0\x79\xab\x0a\xac\xc9\x70\x2a\x2b\x21\x25\x9f\x15\x5b\xa3\x66\x07\x16\x27\xb0\xc7\x26\x1c\x49\x3c\x24\x13\xc4\x3a\x41\x10\xfd\x3e\x4f\x8f\x1a\x23\x2e\x5e\xed\xdc\xf0\x40\x9e\x71\x9e\x6c\x01\xeb\xea\x33\x84\x67\x4e\x57\xb1\x87\x3a\x6a\xb1\x39\x0e\xac\xfd\xae\x52\x20\x99\x44\x4b\x8c\x6b\x00\x6e\xae\xa9\x03\x99\x3e\x56\x97\x62\x13\x36\x6e\x15\x7a\x0d\x29\xa6\x2a\x68\xc6\x00\x11\x2c\xc6\xeb\x01\x45\x26\x9b\xab\x8e\xec\xc6\x3e\x9c\xad\xa2\xa8\x82\x68\x71\x56\x71\x1c\x02\xa2\x73\xa1\x9e\xb4\xaa\xc5\x8c\xea\xbd\xfd\x1a\xed\xb4\xa8\x4d\x08\xfa\x87\x50\x37\x93\x86\x02\x06\xa8\xdb\x83\x2e\x29\x76\x38\xf2\x30\x6f\x68\xdb\x0b\x6b\x53\xc0\x18\x9a\xb1\xad\x30\x40\xd6\xf1\xd8\x1f\xf4\x07\x62\x67\x35\x95\xec\x5a\xbc\xd2\xeb\xb0\x83\x3d\x4a\x27\x42\xe9\x38\xe8\x87\x6d\x03\x74\x53\x25\x87\x69\x53\x17\x4c\xfd\x78\xc3\x15\x83\x09\x37\x72\x9b\x3e\x26\x4f\x46\xf7\x49\x86\x70\xae\x27\xe2\x9c\x73\x83\x74\x5a\xad\x3d\xaf\x43\xa1\xc6\xdd\xdd\xcd\xb3\xe6\x54\x54\x5a\x40\x29\x83\xb3\x16\xb3\xd4\x98\x53\xd8\x05\xa5\x1a\x0c\x5d\x73\x42\x55\x00\xf5\xd6\x2a\xa3\x4c\x1e\x22\xe0\xb3\x8d\xa5\x0d\x16\x42\x46\x1e\x1e\x68\xb6\x0d\x54\x4f\xab\x72\x2e\x6a\xb5\x2a\xa9\x62\x41\x4e\x23\xd4\x91\x59\xe7\x6f\x68\xc7\x70\xf0\x88\x19\x08\x8e\xb0\xce\x27\x38\x88\x78\xcc\xf9\x7c\xce\x33\x00\x05\x03\x37\x4e\x46\x56\x55\x40\x8b\xc6\x0d\x11\xd1\x38\xd8\xb2\x52\x5b\xd3\x38\x84\x53\x81\x66\xa8\x1c\x28\xa2\x6a\x5e\x59\x70\xbb\xd0\x64\xfb\xc0\x24\x5a\xb2\x0b\x67\xc8\xed\x12\x93\x3f\x4a\xc2\x17\xa5\xa8\x99\x75\x61\x25\x98\x16\x1c\xc1\xb5\xa8\x83\xcd\x35\xda\x2f\xbb\x06\x39\x5b\x73\xaa\xd0\xd4\x08\xfe\x39\xa0\x0e\xc4\x29\xd1\x45\xcd\x98\x31\x2f\x2c\x4a\xb1\x64\x13\x27\xd4\x68\x26\xe8\x56\x94\x52\x14\x6c\x4c\xee\xe6\x19\xfb\x5f\xee\xdb\x94\x90\x2b\x86\x47\xbc\x9e\xad\x16\xd3\x4c\x2c\x0f\x9e\xfe\xcf\xa7\xff\xf3\xf7\x87\x20\x96\xe6\x4c\x51\x5e\x74\x9a\xba\x45\xa5\x3e\xa4\x3c\x49\x62\xca\x83\x99\xf7\x3b\x8c\x97\xcd\x54\x97\xae\x87\xc6\xfb\xb5\xcf\x58\x17\xc8\x9a\xce\x9c\xb8\xa4\x77\x67\x5f\xc4\x6a\x15\x1a\xef\xfc\x12\xfc\xd1\x27\x90\x71\x3f\x8e\x5d\xa7\x23\x72\xe4\xfe\xdd\xd2\x52\xa7\xd4\xe9\xc1\xa9\x39\x39\x69\x26\xdf\x4c\x55\x78\x7e\xfe\xe2\xf4\xed\xab\xeb\x0f\x67\x17\xaf\x2e\x2e\x43\x5f\xb9\xfd\x2e\x64\xef\xf6\xbc\x67\xef\xbd\x33\x5c\xd2\x80\x53\x8a\x1c\xf3\xf1\x79\xef\xb2\x11\xf9\xf6\x24\x6d\xa3\xd8\x69\x93\xec\xb0\xe1\xe0\x55\x70\x76\x43\x6b\x39\xcc\xda\x39\x70\x12\xe9\x94\x87\xbb\xb1\x4b\xfb\xde\xef\xf7\xb9\xc4\x61\x5c\x7b\x2f\xee\xdd\x43\x6e\x5d\xeb\xe1\x65\xdb\xc1\x1b\x75\xde\xd7\xfb\xce\xdb\x3e\xcd\x40\xaf\xa5\x09\x26\xe2\xec\x38\x5f\x70\xfe\x0d\xe6\xc5\x03\x78\x36\xe2\x2c\x8c\x37\xcc\x6e\x8e\x60\x4c\x6a\xb6\xa0\x75\x0e\x4a\x3c\x31\xef\xb2\xde\xfc\xfa\x95\x3d\x9d\x69\xee\xf7\xde\x4b\x6b\x17\x27\x60\x4d\xcc\xcf\x49\x57\x61\x97\xb4\x29\x32\x7f\xee\x91\xc3\xb8\x17\x5a\xf7\xee\x63\xe8\x81\xf6\x5b\x6e\x66\x07\x6e\x6f\xdb\x9d\xc6\x44\x7a\x80\x7a\xe2\x6f\xb4\x95\xcf\x58\x32\x39\xfb\x3d\xb7\xf2\x32\x48\xc5\x17\xe5\x26\xd9\xa5\xe8\x6c\x6c\x7b\x98\xa4\x0b\x21\xa3\xbf\x3d\x31\x0d\xfd\xe3\x13\xc0\x0b\xde\x4c\xbf\x63\xd8\x2c\x83\xf6\xdb\x12\x30\x7c\x38\x43\x00\xa0\x6b\x7c\xb5\x76\x5a\x5f\x9b\xd0\xa5\xd9\x0d\xd2\x81\x73\xe8\x30\x58\x9d\x36\xe8\x77\xce\x8b\xbd\x01\xe7\x7a\xf0\x61\xb0\xc0\xcd\xfd\x88\xa0\x7b\x33\x0e\xed\x66\xb8\x9d\x46\x57\xff\xc3\x63\xf8\x47\x1b\x5e\xd6\xf8\xc7\xeb\xaf\x7e\xc7\x5d\xe5\x4c\x14\x58\x59\xff\xa3\x13\x9b\x36\x13\x45\xdb\x5b\xa2\x73\x88\x20\xb1\x67\xa2\x48\xa7\x9d\x6b\xbe\x8c\xd9\x4d\x32\xe3\x6a\x5f\x29\x06\x8f\xbb\xe2\x35\xb3\x68\x6e\xc0\xbd\x16\x8c\xc6\xda\x04\xaa\x8c\xc1\x3c\x0d\xb4\x1c\xd2\xc9\x4e\x22\xe9\x74\xb2\xf4\x18\xca\xee\x6d\x11\x15\x03\x94\x56\x30\x87\x1b\x1c\x63\x69\xad\xaf\x8d\xb7\xc7\xa8\xf2\x7a\xc0\x6f\x37\xd3\xcd\x7d\xb6\x0f\x66\x8f\xa4\x47\x0f\xa2\x9c\x47\x27\x27\x51\x8a\xc5\x73\x14\x71\xbc\xb3\xae\xd7\xfa\x4e\x1f\x90\x76\x9e\xf8\xd4\x93\x94\xb8\x8d\xcc\x38\x9c\xa4\x9c\xba\x87\x4c\x99\xce\x1b\xa8\xb3\x8d\xc3\x56\x10\x43\x27\x19\xe9\xeb\x46\xac\x8c\xee\xc8\xaa\x4c\x3b\x00\xe7\xf7\xbe\x1b\x64\x2f\xbd\xa1\x2d\xf0\x1f\x93\xe4\xbe\x20\xb9\xb9\xdb\xcf\x6e\x61\x83\xb9\x2f\x44\xa4\x18\x4d\xe6\xcb\xea\xdc\x5d\xff\xe0\x8d\x49\xa4\x22\x89\xb7\xdc\x87\x88\x20\x16\x35\xe8\x13\x30\xae\x23\x9d\x17\xa0\x19\xbf\x9c\xf4\x00\x6e\xfa\xbf\x80\x9b\x7a\xb5\x92\x37\x18\xe9\x11\x9a\x99\x69\x6d\xdc\x52\xa4\xd2\x32\x1d\x84\xc5\x95\x03\x85\xd9\x8e\x56\x55\xa7\x73\xfb\x68\x47\x3a\x8a\xb6\x50\x8d\x33\x72\x33\xdc\x0b\xad\xed\xb4\x8a\x9f\x13\xe6\xd6\xa1\xd3\x6c\xb3\x2e\x2d\xc3\x30\xee\x76\xd6\xcc\xa9\x6a\xc4\x61\x53\x79\xe2\x7b\x8e\xd2\x15\x2d\xc5\x9a\xa1\x8c\x6e\x02\x43\x1b\xd1\x29\x41\x3e\xda\xda\x46\x2b\x41\xfe\xd9\x5b\x46\x6a\x21\x96\xfa\x52\x7a\xe0\x12\xd4\x1a\xeb\xc9\x50\x8e\x4c\x10\x6f\x16\x36\x9d\x73\xa9\xd0\x66\x84\x21\x2f\x10\x12\x60\x13\xd3\xf8\x81\x9c\x24\xc6\xac\xff\x0d\x1f\x1f\x23\x9b\xa6\x2f\x55\x57\x23\x70\x33\xf3\x61\x9a\x41\xd4\x95\x2b\x38\x0e\x1a\x7c\xec\x3c\x27\x5b\x5c\x9f\x75\xef\x4c\xe6\x08\xe9\x1b\xec\x45\x1e\x93\xfb\xf1\x7d\x9d\xe7\xcb\x04\x53\xf4\x3c\x5f\xdf\xbb\xf8\xe0\x1a\xa2\xc7\x52\x11\xb9\x6d\x67\x35\xbd\x9d\x18\x3c\x05\x0a\xe2\x29\xd1\xed\xc0\x8d\x6a\x9b\x42\x27\x0b\xb0\x4d\x42\x2c\xaa\xa9\xb4\xaa\x8c\x8e\x4e\x0f\x16\x62\xb0\x20\x9d\x83\x41\x12\x30\xd0\xba\xf7\x89\x2d\x75\x87\xce\x28\x23\xf7\x01\xb9\xeb\x42\xfd\x0e\x5d\x27\xc7\x88\xfe\xb2\x55\xc4\xf0\xb7\x5e\xf7\xee\xb3\xd7\x56\x76\x39\xfa\xd5\xad\x1a\x8a\xed\x3a\x9f\x4e\x5d\xe5\x1b\x12\x6b\x76\x65\x22\x97\xfc\x49\x68\x52\x3f\xfe\xf0\xf0\xc4\x37\x90\x3a\x05\x90\x1e\xc9\xf6\x64\xdb\xdd\x21\xe0\xb6\x62\x61\xf7\x90\xbb\x1f\xeb\x7d\xc9\xfd\x4b\x89\x39\x2f\xe1\xda\x95\x41\x00\x95\xa7\x25\xa3\xe2\xee\x97\xf3\xa6\x83\x05\x69\x58\xbf\xfa\x92\xb1\xe9\xfa\x7e\x8f\xc7\x15\x9c\xa4\x5f\x45\xc7\x10\x02\xdc\xa9\x2c\xd3\x4c\x45\x22\x43\x57\xe4\x05\x6d\x82\x78\xfb\xf8\x0f\x7f\x31\x51\x15\x13\xb9\x4d\x7c\xd8\x58\x90\x2e\x26\xa9\xe4\x76\x39\x55\xfc\xde\x26\x6c\x51\xbd\x5f\xfa\x58\x7d\x7e\x8f\x9b\x07\x14\xa4\x3b\x76\x0c\x4b\xe5\xcd\xc7\x3e\xad\x5d\x35\x99\xbe\xa1\x82\x0b\xc7\xe8\xd0\x3d\x73\x69\x98\xd3\xe1\xa8\xad\x79\xee\x52\x23\xde\x33\x97\x9b\x19\x4b\xea\x4c\x47\x14\x93\x22\x37\x5b\x37\xac\xdc\x49\x26\x9f\x1e\xf4\xa7\x95\xab\x1b\x3e\x57\x11\x52\x49\xfc\x9a\xad\x2a\x4d\x4a\x92\xcc\xb6\x09\x03\x1d\x3c\x2e\xc9\x97\xd2\x61\x21\x18\x82\xda\xe1\xff\x0b\xb0\x39\x46\xb9\xf2\x00\xe0\x72\x35\x57\x94\x5b\xf8\xa4\x6b\xcf\x07\xe1\xed\xa1\xcb\x6a\x16\x76\xa5\xbc\x9d\xd7\xde\x45\x60\x2a\xa3\x7e\x5b\x43\x26\xd9\xd2\x54\x90\xb8\xd1\xd8\xd7\x62\xd6\x16\xe7\xa0\x08\x2d\x0a\xcb\x35\x83\x97\x0a\x42\xe6\x84\xa1\x6f\x7a\xa2\x9a\x67\xee\x71\xe5\x01\x54\x73\xfb\xca\xdb\x79\x8a\x6c\x38\xb3\xf3\xc0\xda\x75\x7e\xbc\x4f\xd6\xe7\x5f\x78\xdd\x96\xfa\xa4\x63\x41\x80\x12\xea\xd9\x86\x61\xc0\x06\xf6\x54\x9c\x04\x24\x38\x03\x5d\x65\x20\xd8\x42\xc6\x85\xfd\xb4\x17\x6f\x70\x0f\x71\xa8\x0f\xcd\x76\x79\xbf\xff\x73\x12\xac\x17\xf5\x22\x9a\xfd\xed\x28\xb1\x99\x46\xbc\x61\x09\xfd\xf5\xaa\xc7\x24\x51\x5a\xa6\xa9\xe5\x99\xe2\xbb\xef\x45\x9b\xcd\x50\x99\xfd\x5c\x8e\x01\xee\x49\x04\x8f\x87\x5e\x9f\xf3\x96\x37\xbd\x6e\x66\x20\x6a\xbe\xe0\x25\xc4\xe7\x0e\x08\x02\x47\xe7\x90\xd2\xad\xd9\x5c\x02\xc0\x42\x58\x07\xdc\xce\x3d\xd5\x43\xb3\x64\x19\x04\x65\xc4\xd2\xce\x7d\xab\xf5\xcd\x2f\x19\xef\x5a\x48\x11\x56\x31\xeb\x12\x3b\xb6\xbd\xbb\x70\x5d\xc2\xa8\x33\x4b\x14\x97\x66\x61\x3a\x94\xbd\x36\x2f\x61\x0f\x57\xa4\xee\xba\xbb\xdc\xc1\xc2\x8d\xe1\x4a\x26\xd3\xed\xa7\xb8\xdb\x5a\x6c\xd2\x4c\xaf\xc9\xb1\xba\x7b\x31\xd3\xb3\xde\xb9\xa8\xbd\x9d\xc4\x50\x71\x8f\xdc\x47\x56\xd0\x65\x35\x44\x4b\x4d\x2b\xa4\x06\xfe\xd9\x25\xc0\x19\xed\x89\xf1\x42\x0c\x5b\xb3\xf9\xfa\x0e\xc7\x9d\xee\x0b\x09\x66\xba\xad\x55\x8b\xb7\x69\xc7\x16\xd9\x13\xe8\x78\xdf\xdf\x76\x6f\xd2\x54\xb5\x73\x6f\x92\x4b\x9e\x5c\xa1\x20\x08\xe9\xef\xb7\xc0\x8d\xcb\xb0\x5f\x4a\xda\x2f\x75\x83\x9c\xd9\x29\x27\xd3\xd4\xfe\x5a\x47\xed\xd4\x74\x83\x78\x9c\xf4\x8c\x93\x71\x2b\x9f\x39\xcf\x45\xf7\x3c\x93\x68\x78\xbb\x3c\x7c\xba\xb7\x2c\xd2\x1c\xff\xb3\x3d\x5d\xf1\x1c\xee\x73\x18\x2f\x63\x0b\x78\x6d\xd1\x10\xfa\x3c\x08\xfb\x17\x7c\x1f\xd5\x04\x8b\xde\x97\x64\x7a\x21\x5c\x26\xe7\xd6\x9b\x58\xea\x46\xa2\xf0\x4b\xc4\x8e\x46\xef\x40\x15\x23\x46\xd6\x00\xd7\xae\xdf\x39\x56\xcc\x89\x14\x31\x03\x64\xbe\x86\x69\xf8\xa9\xdc\x96\xd9\x4d\x2d\x4a\xb1\x92\xc5\x76\x0c\x55\x4c\xca\x0a\x58\x18\x5a\x40\x72\xd7\xec\x96\x6c\x78\x09\x06\xf2\x0d\x46\x95\xda\x94\x7d\x50\xc4\xc3\xe6\x66\x82\x16\x4c\x66\x16\xe0\x8a\x5a\x6c\x5e\xec\x7a\x1f\x39\x44\xa0\xf3\x1f\x76\x78\x95\x2b\x44\xc8\x97\x1f\xa6\xd8\x70\xd2\x0d\x0f\xd6\x00\xdf\x51\x77\x99\x36\x2b\x92\x93\x10\x70\x3f\x01\xc7\x6f\x74\x33\xba\xad\x56\xe5\x63\x07\xd9\x5f\xcc\xa3\x48\x6f\xfc\xfc\xc1\x41\x71\x24\x10\xd0\xba\xf7\x70\x16\x20\x7d\x45\x2a\xec\x08\x97\x05\x8f\xfc\xdf\x63\x2b\xbd\x70\xe1\x43\xd0\x41\xde\x69\x84\x42\x7b\xd9\xda\x08\x67\x7e\x8e\x63\xa3\x36\x97\x81\xf5\x57\x37\x96\x0b\x2f\x79\x79\xaf\x8b\x30\x0c\xb1\x07\xf5\x04\x90\x78\xbd\x28\x48\xba\xf2\x9f\x41\x45\x32\x14\xa1\x3e\x87\x92\x7c\x03\x9d\xd4\xd4\xc6\x0d\x80\x22\x4d\xdc\x00\x43\x69\x4f\x0e\x77\x33\x5b\xab\x0a\xdc\xdf\xdb\x6a\xc6\x14\xd4\x54\x2f\x69\x73\x19\xf7\xb0\xcf\x30\x0c\x85\x3a\xd5\x1f\xe1\x85\x88\x45\xf5\xda\x0c\x27\xa1\x22\x77\xf7\x04\x41\x15\xf1\x0f\x30\xc5\xa6\x5c\x1d\x4c\xd2\x1a\x45\xfc\x9c\xac\xdd\x65\xc9\x4b\xf4\xa2\x70\xf1\x91\x09\x11\x8b\xfc\x31\x2d\x1c\x90\x23\x23\x54\x1b\xbb\xcc\x67\xb5\x64\xe5\x03\x72\x94\x0a\xbe\xdc\xc9\xee\x3e\x08\x31\x44\x43\x86\x77\x7f\x48\x16\xda\x6a\x3a\xc3\x3d\xdd\xb2\x8c\xfd\xbc\xa2\xe0\x88\xb6\x2a\x0c\xc1\x42\x77\xd0\x09\xc4\xa5\xa4\xe9\x04\xd9\x85\x10\x60\xd7\x84\xf8\x34\x31\xba\x34\x37\x66\x58\x29\xb8\xd2\x8c\x83\xbd\xc3\xe8\x85\xf2\x95\xb9\x42\x2d\xe0\x85\x95\x40\x6b\x54\xa1\x95\x64\xc3\x20\x74\x01\x9d\xfb\x21\x9d\x35\x94\x0b\xfa\xa2\x92\x6c\x58\x3b\x69\xf6\x6e\xe5\x3e\x4e\xe2\x73\xc9\xb7\x19\xae\xb2\x87\x7c\x23\xf3\xdc\xb7\xe4\x49\xf2\x2e\x35\x33\x3f\xbb\x5f\xec\x5b\x5b\xdb\x60\x76\xe3\xc7\x16\x52\x53\x6f\xb7\xfd\x16\xb2\x13\x97\x41\xf4\xb6\xd1\xb0\x63\x14\xcb\x92\xd6\x0b\x5e\x8e\x21\x71\xc9\x6a\xc9\x20\xb8\x0c\xa7\xa9\x04\x59\x30\x45\xb8\xf2\x6d\xc1\x3e\xda\xc0\x27\x2a\x2d\x04\xb1\xf5\xe3\x81\x28\x57\x5a\x55\x05\x67\x26\xbf\xfd\x06\x42\x34\x79\x69\x29\xcc\x37\xd5\x20\xb5\x69\x08\xa3\x34\x99\xf4\x71\x4b\x0f\x30\x82\x1e\x66\xde\x56\xda\xf6\x55\x77\x76\x94\x92\x6d\x7a\xfa\x68\x04\x35\xdc\x76\xc6\xdb\x3b\xf1\xa0\x3a\x38\x06\x5f\xf4\x5b\xef\x0f\x46\x7c\x9f\xe6\x1f\x13\xb4\x15\xcf\x0b\x21\x6a\x43\x4f\x07\x69\x39\x79\x64\xbd\x57\x83\x1e\x2e\xc1\x99\xf1\x30\xc4\x3e\x3a\x38\xb0\x68\x36\x85\x14\xb0\xac\xc6\x23\x58\x1f\xc0\xc3\x68\xb7\x90\x9d\x27\x8d\x81\x75\x5c\x7a\x8f\x6d\x89\x7f\xed\x72\x9e\x6c\xc0\x20\x85\x6b\x95\x16\xfc\x1f\x07\x65\xda\xad\x6e\x02\xd8\xac\x07\x09\xbb\x96\x93\x87\xd0\xd8\x4e\xef\xcc\x82\x68\xf6\x73\xec\x5b\x46\xca\x88\x14\x6e\xcd\x9d\x74\x0d\x24\xb7\xb4\x69\xf0\x6e\xd8\xd5\xc2\x8e\xf6\x29\xe7\x60\x21\x7b\x5d\xc2\x7f\x8b\x3b\xaf\x15\x15\xf4\x45\x2e\xbd\x94\x0a\xa8\x7f\xa0\x4a\xf7\xa3\x48\x48\x5f\x0d\x52\x8f\x28\x61\x93\x35\x0c\x1d\x95\x45\xcd\x4c\x44\x90\x7e\xd4\x9a\x61\x75\x72\x27\xd0\x3e\x5e\x71\x56\x20\x60\x77\x46\xc8\xd9\x50\x49\xb4\x50\x54\xba\x34\x2a\x09\x6b\x4a\x1c\xeb\xa9\x05\x24\x3c\xb8\x4a\x10\xc9\x20\xe0\xdd\xbe\xc3\xde\x99\xce\xe0\x9a\xf8\x9e\x8c\xbe\x03\xf0\x52\x82\x1e\x7d\x77\xb6\x18\x48\x4d\x10\x91\xc7\xcb\x8c\xe7\xcc\xcb\x1e\x26\xa0\x10\xd4\x26\xa5\x98\xb8\xaa\x03\xb3\x00\x53\x42\x5e\x6f\xc9\x62\xc5\x24\x84\x0b\xba\x48\xd4\x52\xb4\xec\x35\x33\x21\x0a\x46\x4b\x40\x6b\x55\xcc\xa2\xb5\xa2\x37\x99\x64\xfb\xfc\x23\x1a\xe9\xdc\x1a\x70\xaa\x8a\x05\xda\x91\xe6\xe3\x68\x2b\x40\x39\xfb\x8c\x06\x95\x52\x00\x65\x4c\xbd\x70\x5b\xdf\x91\xd2\xb3\x99\x1c\x74\x30\x6a\xd8\xc9\xc3\xd6\x9e\xb9\xc2\x1d\xad\x79\x4a\x8b\x5a\x4b\x18\x03\xee\x39\xcc\x8e\x86\x3f\x73\x98\x1d\x93\x8e\x83\xa0\x7d\x3e\x14\xa3\x78\x9b\xb1\x86\x98\x0c\x92\x35\x64\x4b\x28\x28\x82\x8a\xeb\x22\x84\xae\x72\xae\xef\x2b\x48\x75\x40\x4b\x22\xca\x8c\x91\x8a\x69\xd1\x33\x13\xe5\xde\xe0\x73\x5e\x2e\x9e\xb1\x38\x6c\x20\x20\x0b\xbc\x5b\xc2\xec\x95\xb3\x78\xb6\xa4\x19\xf2\xe7\x56\x66\xd1\x5e\xe7\x51\x97\x58\xbc\x5b\xf4\x05\x79\xb5\xc7\x48\xb0\x60\x77\x06\x59\x27\xe4\x3e\x3d\x3c\x74\xee\x9c\x7a\x0d\xaf\xfe\xef\x8a\x15\xd9\x8d\x19\xc2\x07\x77\xff\xcc\x84\x3e\xf9\xb0\xbe\xfa\x26\x2b\x85\xe2\x73\x9e\x21\x98\xb8\xae\x07\xd0\x2d\x8e\x69\x4c\xb4\xd4\xba\xd1\xa3\xc2\xa7\xba\xe5\x0f\x8d\x34\x49\xb2\xce\x06\xa3\xe8\x8c\x05\x45\xf5\xce\x47\x4e\x29\xd0\x27\x6b\x0c\x7f\x9f\x2a\x81\x78\xa4\xe9\xf4\xb0\x1d\xe7\x11\x64\x89\x1c\x93\x6f\x0e\x0f\xdb\xc7\xab\x47\x4b\x9f\xa2\x89\xe7\x4c\xde\x2a\x51\x7d\x1f\xac\xa5\xa6\xbf\x0f\xde\x77\x27\xc8\x66\x4d\xe5\x0b\xcc\x8d\x18\xa5\xab\x72\xf8\x9c\xb0\x21\xed\x05\x09\xdb\x7e\xc5\xa5\xfa\x60\xd2\x57\x99\x72\x0e\x00\xf5\x0a\x91\x00\x36\x8c\xa8\x1a\x62\xa8\x6b\xca\xcd\x1b\xb6\xe1\x65\x2e\x36\x00\x00\xf8\x47\xa8\x54\x4e\x45\x09\xe9\x48\x1b\x07\xc5\x10\x67\x21\x20\x02\x2b\xea\x5a\x7e\x18\x8e\x8e\xc9\xa7\xd6\x51\xb7\xba\xfa\x40\xa3\x4e\x66\x5c\x05\xe2\x62\xf8\x05\xde\xc4\x31\xc9\x58\x0d\x30\x22\x1e\x48\x2d\x0d\xb6\x65\x13\x3f\x11\x97\x66\x4a\xb3\xa9\xf0\x9a\x30\xc5\xda\xda\xfa\x56\x74\x12\x09\x91\x9e\x90\xc5\x85\x84\x37\xb2\x12\x65\x1e\x82\x47\x07\x7e\x13\x6d\x95\xbf\x9d\x8c\x8d\x05\x80\x20\x81\xf9\x7c\xdf\xf3\x56\xaf\xec\xcb\x16\xae\xc1\x18\xc1\x3d\x21\x20\xaa\xec\xf5\xea\x5d\x78\x15\x45\x9f\x37\x4f\x84\xc5\xdd\x8b\xd7\xc1\x1d\xb7\x63\x39\xec\x86\x1a\x97\xfe\xc4\x86\x86\x5f\xcc\x86\xb2\x3b\x2e\x11\x12\x47\xb3\x1e\x31\x50\x44\xe4\x5a\x64\x14\xaa\x10\x52\x88\xfe\x1e\x86\xef\x6d\x3a\x94\x83\xf1\x44\xb7\x16\xef\xa1\xfd\x95\xb8\x10\x28\xd8\x45\x5a\x6e\xe3\x31\xfc\xfa\x2d\x0b\x66\x79\xff\x2d\x7b\xe9\x80\x67\x7b\x6d\x19\x0f\x8b\x9b\x2d\x4b\x6c\x09\x5d\x69\x0e\xcd\xe0\xc6\x58\xed\x60\xbc\x37\xc9\x22\x0e\x83\xad\x24\x54\xaf\xed\x72\xce\x22\xb0\x65\x90\xf2\x0d\x52\x39\x3a\xe0\x50\x89\x38\x48\x05\x2f\xd9\xd8\x5b\xbc\x7c\xd2\x6a\x49\x21\x59\x37\xa1\xe0\xd3\xa4\xdb\x33\x5e\x44\x39\x9f\xcf\x59\x0d\xa0\x0a\x33\xc1\x0b\x89\xaa\xec\x0d\x30\x97\x9b\x1b\x06\x40\x13\x7a\x77\x45\xc2\x2a\x6b\x38\x59\xf6\xe5\x19\xc7\xd3\x36\xe8\x4f\x9f\x7d\x49\x60\x05\xed\xda\x9f\xa6\x42\x2c\xde\x9a\x84\xba\xac\x79\x17\xda\x6b\xcf\xe4\x5f\x6d\xf8\x95\x29\x14\xd8\x83\x5b\x2b\x8a\xc7\x9e\x0b\x5d\x41\x1f\x00\x04\x3b\x8c\x30\xee\x42\x3c\x3e\x90\xba\x9c\x41\x05\x60\x32\x9a\x70\x58\x98\x59\x2c\x48\xf6\x07\x47\x8d\x54\x54\x2a\xc2\x15\x7a\x9e\x21\x94\x46\xf2\xa0\xb5\xec\xeb\x3b\xce\x59\x63\x59\xee\x7f\xd6\xbc\xe6\xab\xd7\x9e\x6e\xc2\xe2\xdd\x7b\x69\x24\x87\xc9\xfd\xf7\x74\x3e\xff\x75\x9b\x1a\x6c\x46\xa8\x3e\xed\xb9\xa3\xce\xef\x03\xf0\xe0\x7e\xe5\x1d\xd8\xb1\x08\xf7\xdf\xa3\xcb\xa6\x92\xf2\x3e\xd2\xdb\x8f\xfb\x76\xac\x40\xfe\x96\xa9\x0d\x63\x16\xd8\x85\x2f\x69\x8d\x61\xac\xe0\xc6\x0a\xf0\x35\x48\xdb\xa1\x2a\xdb\x7f\x0b\x8f\x24\xdc\xb5\x8d\x5a\x1e\xfb\x30\xdc\x08\x7b\x80\x6c\x7f\xad\xb2\x16\x26\x7a\x43\xab\xca\x24\x8b\xd6\x43\x30\xf6\x3e\xc2\xd0\x39\x52\x74\xc4\xaa\xd9\xea\xe7\x34\xbb\xb1\x6d\x5b\x0c\x36\x09\x1e\x5c\xfa\x66\xed\x70\xf3\xfb\xfc\x6d\x8f\x57\xe5\xfe\xbb\x7d\x6a\xeb\xef\x78\x00\xef\x07\x78\x61\x37\xde\xda\x68\xdc\x08\xaf\xcc\xf7\x23\x62\x04\x55\xd8\x87\xab\x20\x45\x4a\x4b\x0d\xde\x02\xc7\x7c\xf4\x28\x15\x63\xed\x71\x5a\x0e\x83\xfc\x27\x0f\x77\xa6\x59\x09\x02\x7b\x5f\x46\xd7\xa9\x89\x1e\x81\x5c\x95\xd2\xa4\xcf\xd8\xe8\xff\xab\x19\xa1\x1b\xba\x1d\x43\xba\x02\xdb\x0b\x93\x64\x49\xb7\xb6\xa5\x99\xe6\xc5\x4c\x9a\xc6\xa9\x93\x1b\xfa\x66\x7d\xe9\x4e\xe8\x64\xe7\xd7\x8d\xf6\x4f\xeb\x6d\x1a\xea\x9f\xd6\xbb\xb3\xc2\xb4\x03\xd1\x69\xc1\x7f\x41\xb4\x9a\x0f\xe9\x58\x83\x10\xc2\x04\x0a\xa3\x61\xab\x5d\xfa\xa6\x69\xf0\x0a\xf5\x17\xdb\x32\x43\xcb\x9d\x0f\xbf\x4e\x14\xe3\x51\x8e\xa6\x7e\x11\x2c\xb1\x4b\x83\xde\xc7\x66\x50\x42\xe4\xb4\x34\x99\x15\xbc\xbc\x4d\x3d\x19\xd1\xf7\xe0\xc2\x71\x30\x70\x9a\x41\x86\x8f\x60\x13\xe1\x10\x3a\xb9\xe6\x92\xcf\x8a\xe8\xea\x01\x36\xcd\x7e\xf0\xf6\x5e\xe3\x75\x0d\x2d\xd8\x5e\xff\xc3\xa7\x5a\x02\x1e\x1b\x45\x2a\x41\x90\x7f\xd4\x25\x6d\x82\x1c\x3e\xb7\xe9\x68\x10\x3e\x5e\x09\x08\xe5\x16\x12\x21\xb2\x1e\x44\x99\x31\x3d\x5b\xa8\xeb\x14\x05\x29\x18\xbd\x25\x94\x18\x83\xfe\xaf\xe6\x0c\x5a\x2b\x79\xff\x9b\x08\x37\xf3\x19\xb4\xd0\xe7\xc5\xc9\xa2\xf2\xe6\xad\x31\x97\xc8\x43\x1c\xa1\xcd\x5c\xe3\xdd\x16\x82\x4a\xf6\x88\x80\x11\xca\x2a\x2d\x76\x14\x3f\x6e\xa9\x1d\x92\xe5\xda\x8a\x87\xc6\x88\x7f\x40\x32\x18\x25\x0c\x11\xe6\xd3\x50\xd5\x2b\xb6\x93\x62\x2d\x29\x75\xd3\xac\x2d\xd1\x45\xb5\x2c\x45\xa7\x9a\x82\xad\xb2\xef\x4b\x91\x44\x38\xd4\xcf\x25\x0a\xb3\x2e\xf7\x20\x0b\x5f\x23\x45\x18\x2d\xb3\xeb\x4e\x02\xb9\x2f\x89\xf4\x24\x12\x6b\x5f\xeb\x50\x77\x8a\x8a\x66\x5c\xe9\xa7\x60\x70\x38\x38\x4e\xe1\x4b\x20\xed\x74\x66\xf9\xd8\xdf\xee\x93\xc1\xf1\x2e\x42\x8d\x16\x61\xcf\x52\x35\xa0\xc4\xfc\xc4\x44\x19\x9c\xeb\x0f\x09\x98\xd4\x7f\x80\x3d\x88\x95\x64\xc6\x1b\x0d\x5e\x7f\x7d\x6c\x1a\xd7\x36\x26\x43\x46\x45\x61\x90\x49\xbd\x19\x79\xa3\x9b\x72\x02\x33\x20\xeb\x53\x63\x31\xda\x45\xf0\xed\xcd\x4c\x03\x2b\x29\x51\x5d\xfa\x07\x3d\xa5\x01\xbf\xf6\x25\x3c\x44\x2b\xfa\xe3\xed\xa9\xf9\x2c\x2a\x34\x0c\xba\x1a\x1d\x37\x51\x11\x12\xed\xb4\x73\xfa\xa6\x38\xb6\x0e\xf8\x84\x28\x01\x2c\x36\xfe\x87\xc6\xa8\x03\xbe\xed\xcc\x09\x55\x61\x8a\x51\x87\xd0\x02\x96\x54\xae\x88\xde\x79\x9e\xbb\xbc\xe3\x76\x3f\x69\xcd\x68\x0c\xcc\x7c\x26\xe5\x0f\xb4\x76\xca\x7b\xe4\x93\x20\x69\xf0\x98\x0c\x26\x4f\x5c\xea\xe0\xf8\x18\xee\xb9\xe7\x1b\x2c\x6b\xfb\x40\x5a\xfc\x95\x93\x13\x32\x28\x45\xc9\x06\xc1\x0c\x2f\xd9\xc4\x7e\x8e\x4c\x34\x56\x9c\x9c\xc3\x8d\x4d\x25\xb9\xe1\x79\xce\x5c\xce\xd7\xa5\x58\xc9\x04\xf6\xf4\x8e\xbe\xc9\x60\xe0\x26\x74\x70\x40\x5c\x70\x41\xe8\x80\x07\xe9\xae\xcf\xae\xae\x34\x09\x70\x50\xb9\x2e\xa9\xba\x99\x12\x10\xae\x19\xc9\x51\x24\xd6\xbf\x11\x5e\x92\xff\x73\x35\xf6\x40\x13\xf3\x42\x50\x85\x9f\xe0\x7d\xd1\x72\xf3\xaa\x22\x33\x86\x19\xb4\x6b\x10\x9f\x33\x14\xd2\x28\xf6\xaa\x3b\xc2\x74\x35\xba\x06\x36\xe5\x10\x4d\x9d\x44\x5e\xd3\xec\xd6\x30\x3f\x33\x66\x44\xa7\xe6\x7e\x9a\xe5\x4f\x6d\xab\xf9\xf4\xf3\xbf\xfc\xb5\x41\x75\x93\xf0\x88\x7d\x22\x8f\xc9\xcf\x8e\x8e\x7f\xfe\x97\xbf\xb6\x8e\x8d\xa1\x29\xf0\x75\xac\x5e\x83\xe3\xcd\xa7\xea\xee\xe7\xd8\x94\x9d\xa4\xae\x4c\x14\x83\x9e\x3e\xe0\xc9\x3b\x3d\x32\xe1\x28\xae\x0a\x36\xd8\x69\x79\xc7\xa5\x18\x0e\x9a\x99\xed\x3b\x6c\xf9\xfb\x9b\x1a\x93\x7d\x6d\x81\xa7\xdc\xfe\x86\x46\x03\x67\x1a\x7b\x5b\xe5\xd4\x04\x96\x67\xb4\x66\x0a\xf3\xda\x3f\x79\xb2\x25\xd5\xaa\xd6\x1c\xae\x9c\x7a\x73\x9e\xb9\x80\x5b\xd9\xbf\x17\x4c\x5d\xd9\xaf\x43\x17\xb0\xed\x2b\x3c\x7a\xe4\x6b\x4f\xb9\x3c\x13\x45\x41\x2b\xc9\xf2\x51\x3b\x7c\x1a\x64\x15\x5b\xf6\x4c\x8f\xc8\xb7\x13\xf3\x69\xa7\xf9\x5f\x56\xd2\x7a\x14\x03\x30\xae\x98\xb7\x76\xad\x9d\x6c\xa5\x81\x75\x20\x6f\x68\x85\x42\x43\x19\xea\x7e\x33\x56\x14\x24\xe7\x4b\x56\x4a\x7d\xd1\xec\x45\xf7\x86\x01\xe0\x25\xd9\xf1\x8e\x40\x47\x76\xe9\xb0\xf3\x2b\xfd\x53\x43\x1c\x0f\x29\x2e\x36\x1a\xce\x45\xb6\x92\x83\x11\x5c\x5e\xc0\xdb\x85\xb7\xd7\x69\xb1\xa1\x5b\x89\x28\x3f\x94\xcc\x0a\x91\xdd\x3a\x26\x54\xcb\x4b\xab\x12\xaa\x83\x62\x92\x10\x37\x98\xc6\x8c\x82\x61\x4d\x9f\xbd\xba\x38\xfb\xee\x38\xc4\x28\xc5\x45\x3e\xe9\xb8\xe0\x60\x1a\x72\xc3\x55\x76\x43\x86\xd0\xbe\xe3\xfa\xa9\x64\x3b\x7b\x3a\x3f\x7d\x6d\x3d\x49\xf1\xae\xbc\xb1\x5e\xa9\x83\x35\xad\x87\x93\x09\x54\x9e\xe8\xdd\xd1\x12\xe6\xc4\xc8\xba\x83\xe3\xa8\x52\xdb\x54\x3c\x50\x35\x2d\x65\x45\xf5\x7e\x37\x0b\x8b\x3a\x67\x35\xbe\xbf\x57\x66\x5e\x3e\xed\x53\x5c\xea\x15\x9b\x2b\x5b\x66\x20\x45\xc1\x73\xd7\xd8\xac\x66\xf4\xd6\xf0\x60\xfb\xa6\xf9\xf6\xfb\xe7\xe7\x97\xaf\x5e\x7e\x7f\xde\x31\xd7\xd6\x4d\xe7\xa8\x11\x04\xfc\x19\x95\x0c\x72\x48\x3e\x26\x83\xea\xee\x4b\xcf\xbd\x31\x2f\xfd\x00\xa0\x6a\x05\x8f\x17\xff\x05\x24\x89\x0a\xe0\xaa\x09\xbb\xa3\x80\x77\x63\x01\x01\xcc\xc8\xf6\x2c\x5d\xb8\xbc\xe1\xba\x19\x4f\x9a\xdf\x84\x02\x02\x52\x85\x9f\x3e\x7c\x19\x2a\x48\x4c\xe5\x9e\xac\x6d\x2b\x7a\x3c\xcd\xc0\xba\x58\x8e\x6d\x99\xfd\x7d\x22\x39\xb6\x65\xd6\x37\xa8\xa2\x0f\x47\x9d\x0a\xae\x70\xf5\x3e\x27\xb8\xc2\x55\xde\xeb\x11\x81\x41\x13\x69\x19\x0e\x4b\x74\x84\x5f\xb8\x2a\x5d\xa1\x3a\x57\xfa\xd6\x15\xb5\xe6\x0c\xf1\x25\xfd\x45\x88\x25\xd9\xd0\xba\xc4\x94\xac\x6e\x1b\xc3\xdf\x41\x1b\x4e\x96\x4c\x4a\xba\x60\xee\x47\x5d\x7b\x25\x11\x75\x5e\x19\xdc\xa9\x59\x2d\x36\xfa\x27\xa8\xbd\x5c\x49\x85\xbe\x6b\x98\x9c\x43\x90\x27\x87\x87\xff\xaa\xb9\x40\xa0\x52\x78\xbe\x6f\xac\x47\x9c\x83\x1d\xc0\x7c\xea\xc5\xb6\xaf\x4e\xe1\xc6\x58\x63\xcc\xf0\x02\x65\x02\xcc\x91\xef\x55\x27\xdc\x88\xcd\x7f\x0a\xb1\xfc\x11\xa7\xd5\x4c\xf2\x6d\xd5\x02\xa0\x26\x80\x1d\xfd\xc5\x17\x86\x37\x25\x94\x85\x8d\x22\xa1\x53\xee\x6d\xd6\x6d\xf3\x27\x59\xcd\xa8\x62\xe7\x05\xd3\x7f\x0e\x07\x39\x5f\x0f\x42\x7f\x92\x66\x03\x53\x9e\xeb\x9b\x07\x66\x77\xa4\x3f\x4e\xcc\xf6\x0c\x76\x55\xc2\xcb\x22\x93\xf2\x9a\xdd\x41\x44\x85\xe3\xc3\x06\xe0\x9b\x74\x44\x66\x05\xcd\x6e\x8f\x07\x01\x87\xd6\x72\x1b\x3b\x22\xff\x63\x3e\x7f\xfa\xf4\xe9\xd3\xb8\xd8\x5c\x94\x6a\xa2\x6f\xbe\x23\x52\xd0\x7a\xc1\x1a\x8d\xc0\xd6\x4f\x6a\x9a\xf3\x95\x3c\x22\xbf\xab\xee\xe2\xef\x46\x0f\x71\x44\x0e\xa7\xff\xf6\x4d\xfc\xa9\xa2\xb9\x66\x8e\xf4\xa7\xa7\x6c\x49\x0e\xa7\xdf\xc0\xff\x77\xff\x8e\x4b\x2b\x51\x1d\xa5\x7e\x07\x5f\x85\x23\xf2\x44\xd7\x6b\xb4\x6f\x4e\xd9\x91\x4b\x2e\x1a\x7f\x9f\x6c\xd8\xec\x96\xab\x89\x62\x77\x38\xc1\x09\x05\xb6\xee\x88\x68\xf9\x2c\x5d\x56\x9f\x8f\x09\x32\x85\xc9\x62\x4b\xf1\x4b\xbf\xf6\x74\xc1\x44\x63\xa3\x5d\xc4\x35\xa5\x79\x7e\xbe\x66\xa5\x7a\xc5\xa5\x62\x25\xd3\x52\x46\xc1\xb3\xdb\xc1\xd8\x53\x38\x6b\xe0\xd9\xe2\x2b\xac\xab\x4f\x31\x0f\xc9\xd9\x0d\x2f\x8c\xcb\x95\xb9\x53\x1a\x60\x3f\xad\x5e\xf5\x7c\xce\x0c\x76\x1c\xba\x09\xbf\xc6\xa3\xf9\x9a\x96\x74\xc1\xea\xa9\xc9\x5f\x72\xc9\x8c\x9b\x81\xb4\xe4\x87\x67\x34\x68\xd0\x54\xb4\xa2\xcb\x3b\xc8\xd7\xfe\xb2\x54\xc3\x3d\x0c\x88\x6e\xe2\x05\xcd\x94\xa8\xc9\xd7\xfa\xd2\x19\xbd\x0f\x04\xa5\x8e\xd3\xa0\xe9\xf6\x05\x5d\xf2\xc2\xd9\x59\x62\x0f\xcc\x52\x4d\xe6\xf0\x79\xe0\x11\x61\x5b\x6a\xc3\xf4\x0d\x11\xac\xea\x28\x5c\xec\x9c\xaf\xc3\x6f\x26\xc7\x94\x5f\xf1\xf6\x55\x73\x1c\xe7\xcb\xda\xdb\x5b\xe8\xb7\xb7\xa3\x5c\x6b\xaf\x3b\x7a\x6e\xbd\x24\x91\xfa\x41\xac\x59\x5d\xd0\x2d\x8a\x65\x06\x39\x87\x2e\xc1\x9b\x5c\x8b\x3b\x7c\x19\xa1\xf0\xb7\xaa\xd9\xec\xbc\xbc\x24\xbc\x44\xbf\xe8\x35\x78\xfd\xf2\x92\x50\xbc\x4b\x88\xde\x86\x31\xc9\x58\x09\xb8\x46\x00\x34\xb3\x36\x7c\x44\x90\x9a\x23\xb0\x96\x38\x67\xe6\x5b\xc6\x30\xd9\x88\xed\xce\x3e\x67\xb3\x9a\xb3\x39\x64\x83\x85\xcc\xc1\xe8\x20\xd3\xe8\x12\x24\xae\xad\x58\xf9\xe6\xf4\xd2\x0d\x94\xb7\xb1\x64\x37\x2c\xbb\x75\x0c\x28\x22\xe0\xc4\xab\x33\xe7\x75\x1b\xff\xc6\x82\x6d\x2f\xe5\xc2\x2c\xca\x9d\xc2\x4c\x3f\x7f\xba\x7e\xfd\x6a\xe4\x06\x69\xac\x38\x7a\xdc\x26\x9a\xc7\x4c\x63\x9a\x42\x8e\x10\x95\xfa\x60\x98\x02\x68\x35\xde\x04\x70\x58\xa0\x5c\x91\x19\x9b\x8b\x9a\x91\x39\x05\x99\x53\xac\xe0\xb1\x46\x72\xf1\xed\x93\x48\xd5\xff\x64\xfa\x8d\xf1\xe3\x95\x53\x42\xde\x50\x29\x81\xc1\x84\xd7\xd6\x42\x4d\x9b\x9a\xb6\x31\xa9\xe8\x96\xac\x2a\x70\xc3\xd7\x7b\x35\x14\x35\x59\x95\x8a\x23\xac\x79\x69\x3d\xc1\x0a\xba\xdd\x97\x9f\x4b\xbf\xd4\x17\x66\xf7\x82\x47\x7a\x29\x17\xe3\x70\xca\xcd\xf7\xda\xb4\xde\x7e\xab\xdd\x19\xdc\xa1\xa7\x0e\xea\xde\xfb\xad\x0e\x2b\xef\x7a\x72\x1b\x6f\xe2\x93\x6f\x9a\x8f\x62\xf0\xa4\xde\xdd\x4d\x12\xaf\xea\x17\x7b\x35\xfb\xbe\x81\xfb\xde\x35\xfb\x54\x6a\xc1\xce\x34\x68\x2d\x0c\x4f\x7e\x77\xb8\x94\x84\x51\xc9\x26\xbc\xec\xf7\xca\xb5\x9f\xcc\xfd\xed\x8e\xba\xb6\x31\xf1\x2a\x82\x62\x54\x8b\x1d\x1d\x2f\x23\xd3\x4f\x81\xae\xe2\xd0\xfa\x8e\xdd\x17\xa9\x44\xf5\xa6\x16\x15\x5d\x50\xaf\x52\x02\xce\xdb\x98\xeb\xc2\xb7\x32\x45\x11\xa1\xf8\xb7\xdb\x4b\xff\x78\x47\x33\x1d\xf2\xe4\xee\x20\x82\x5d\x0d\xde\xf7\x39\x6c\xb7\x13\xf3\x01\x4b\xb9\xd8\xd5\x5d\x68\xd7\x9a\xfe\xdb\x37\xde\x04\xd5\x3e\xc3\xad\xd7\xd4\xbf\xa5\xad\x07\x34\x3a\xfb\x4e\x4e\xcb\xf9\x5a\xb3\x09\x4e\xa9\xb4\x60\xea\xac\xe0\xac\x54\xfa\xd7\xa1\xbf\x16\xac\x61\xc3\xb4\xb2\xaf\x4e\xbb\xb3\xae\xd9\x02\x4e\xad\x21\xa1\xa1\x19\x8d\x0f\x3e\x0e\xba\xb3\xbe\x12\xe4\x80\x3c\x0d\xb4\x29\x5d\xed\x16\x18\xe5\xea\x9a\xb4\xd1\x53\x61\x8b\xe6\xb7\xae\x30\x09\x23\xe4\x5f\x59\xdc\x03\xf0\xf8\x78\x73\x17\x8f\x20\x25\xef\x46\x36\x0f\xec\x2f\x0e\x3b\x68\x9b\xea\x9a\xc5\x5c\x23\xe1\x03\x76\x72\xd2\xce\x83\xdc\x5a\xdc\xde\xb1\x06\x20\x30\xef\xa1\xbf\xc1\x71\xa2\xf0\x3d\xa2\x19\x9c\x4a\x79\xbe\x9b\x6e\xed\xff\x76\x95\x8c\x38\xb3\x56\x41\x77\x0f\xed\x18\x6d\xa8\x00\xea\xbb\x02\x78\x02\x6d\x0d\x17\xa1\x62\xfe\x08\x77\xe7\xe3\x47\xf2\x04\x03\x31\x02\xd6\xf0\x0d\x95\x8a\x05\x39\x87\xb6\x52\xb1\x25\xc9\x0a\x5e\xcd\x04\xad\xf3\x66\x5a\xd6\x3d\xcf\x7e\x05\xad\x75\x61\xcd\x60\x35\x28\xf3\xa2\x16\xcb\x33\xdb\xc9\x30\x7e\xab\xe3\x01\x9e\x89\x6a\x4b\x28\x41\xee\xcb\xb9\xe2\x36\x86\xe9\xd0\x1a\x85\x62\x47\xc6\x1b\xac\x66\xa8\x0b\xc1\xf7\x89\xe5\xa4\xa6\xe5\x82\x35\x93\x84\x8f\x35\x13\x69\x94\x55\x9a\xe8\xdb\x08\x9c\x96\xef\x93\xaa\x36\xbe\xd0\x76\x24\x99\xa8\xb6\xfb\xa2\x3b\x45\xb5\x45\xd0\xd6\x6b\xe1\xe6\x1b\xab\x2d\xea\x86\x0a\x2b\xbc\xbb\x31\xc2\x7f\xe2\xe6\x39\x29\x85\xe2\x19\x1b\x8c\x90\x2a\x03\xea\xc6\xcb\xc1\x73\x5d\x3e\xfc\x66\x1c\x45\xbc\xe8\xe5\xb4\xa2\x1a\x84\xe5\x04\x21\x4d\x18\x33\x5a\x6d\xaf\xc4\xaa\xce\xd8\x5e\x1e\xaa\xaa\xd9\xc0\x40\x8d\xd9\x3a\x91\x8a\x43\xff\x3c\x51\x22\x18\xbd\x84\x42\x83\x46\x9d\xf8\xf1\x91\xaa\x6e\x7c\xef\x62\xc7\xd2\x1c\x8e\x6e\x2d\x60\x43\x12\x8c\x4a\xb3\xc4\x4e\x46\x0a\x95\x13\x93\xdf\xff\xbe\xba\x0b\x5f\x4f\xbf\x28\x33\x91\x6f\xa3\xc7\xcc\x8f\x3c\x8a\x59\xeb\x6f\xe4\x02\x17\xc2\x32\xbb\x41\x3b\x08\xc6\xa6\x19\x23\x97\xff\x39\x2e\x78\x61\xfd\x13\x9b\x45\xf1\x83\x2d\x0c\xc6\x9a\x56\xa3\xee\xd7\xa8\x58\xa2\xc9\xe0\x77\x34\xcb\xb8\x2f\xf8\xaf\xd3\xa2\x80\x25\xa8\x59\xd9\x5a\x05\xa4\x41\xf8\xd5\xd6\x0a\x4e\x44\xfb\x06\x40\x33\xe2\xcb\x73\x70\xb2\x83\x4c\x13\xab\xaa\x12\x75\xe0\xb0\x31\x65\x77\x8a\x95\xf9\xd4\xe6\x51\xa2\xa5\xf4\xa8\x46\xae\x14\xb6\x83\xc9\x2a\xcc\x35\x24\x4a\xf2\xf2\x7c\xda\xb4\x26\x9a\xe6\x5c\x4e\x17\xf7\x7b\x66\xcc\x8a\x43\xbf\xf8\xe3\x68\xd9\x6d\x86\x97\x46\x4b\x43\xb7\xae\xe3\x70\x45\x3d\x9b\x19\x90\x78\xc7\x23\x12\x2d\x62\x0b\x40\x4c\x06\x33\x65\x39\x90\x35\xa0\xaa\x81\x94\xc7\xe7\xa4\x14\x28\xa3\x42\xc2\x65\x2c\xd4\x02\x19\xc3\xcb\xec\xa3\xae\xf2\x69\x2f\x9a\x98\xdf\x39\x3c\x88\x29\x73\x64\x93\xd0\xe3\x80\x57\xf3\xf1\x38\x26\x9e\x6d\x99\x05\xa9\x7b\x76\x98\x74\xcd\xa8\xf1\x99\x34\x24\x72\x65\xa2\x32\x80\x5a\x4d\x04\x5b\x90\x77\x6d\xc6\x16\xbc\x2c\xd1\xe3\x12\xd1\x16\x30\xc3\xa0\x31\x3d\xd2\x5a\x25\x08\x3d\xf8\xdd\x9e\x89\xb2\x79\x6a\xa0\x0c\x9e\x1a\x33\x70\x5d\x04\xf2\x44\x7e\x4f\x97\x8c\x3c\x3c\x21\x83\x3f\x4f\x2e\x2f\x7e\x1c\x24\xfc\x94\xdd\x2a\x39\xea\xc6\x59\x94\x84\x96\xe4\x6e\x52\x8b\x0d\x74\x38\xc6\x30\x22\xae\x40\x3f\x0f\x91\x5c\x26\x29\xba\x58\x32\x4c\x60\xce\x4b\x69\xcd\x03\x50\x6f\x4a\xc8\x69\x9e\x43\x88\x56\x33\x0d\x9d\x8b\x6f\x90\x7c\x56\xf0\x72\x21\x6d\x6b\x3e\x9b\x7a\xb0\x96\xd3\x07\x4e\xfa\x8e\x27\x76\x72\x42\x06\xff\x43\x13\xd6\x80\x3c\x7a\x04\xc3\x0c\xc9\x37\x2a\x76\xf5\xe6\xf4\xfb\x41\x13\xf1\xa4\x34\xbe\xff\xca\xea\x50\xf0\x07\x40\x4e\xd2\x37\x7d\x4e\x64\x45\xad\xf3\xcf\xaa\xf2\x18\x9d\xb4\xc4\xde\x4c\x6b\x66\x47\x1a\x03\x88\x40\x2a\xd0\xf5\x1b\xc7\x6f\x67\x7f\x85\x93\x0f\x50\x40\xc2\x76\xe2\x42\xde\x60\xe7\xe9\xe4\xb1\x37\x6f\x77\x24\x08\xd5\xff\x6a\x66\x08\x3b\x38\x20\xe7\x10\x69\xd2\x41\xa6\x41\x18\x4a\x48\xa0\xac\xcc\x1d\x79\xee\xcb\x4b\x1a\xdc\x3f\x65\x8e\x1a\xc5\x49\xca\x67\x23\x2a\x17\xdc\x49\x2d\x0a\x37\xcd\x7c\x11\xfa\x86\xf9\xfd\xa6\xd4\xed\x03\xb2\x3a\xc9\x9b\xb9\x1d\xf8\xef\x46\xdc\x25\xbb\x53\x3b\x09\x3b\x28\xe0\xf4\x21\x8e\xb6\x3e\x8f\xa4\x01\x70\x6b\x1d\xc0\x05\x5f\x8a\x0d\xb0\x68\xc3\xc6\x25\x79\x29\x36\x2e\x78\x61\xb7\x67\x53\x44\x7b\x61\x35\x48\x18\x7e\xec\x25\x89\x82\xcf\xa6\x9b\x6c\x2a\x57\x33\x7c\xc0\x86\xf5\x7a\x1c\x9e\xd2\xb1\x2b\xa1\x50\x2a\x1e\xd6\xeb\x11\x99\x90\x90\xe2\x9b\x32\x46\x04\x05\xef\x08\xb8\x43\xe0\x30\xb4\x8b\xb9\xc6\xb8\x32\x36\x72\x8a\x91\xb6\x9a\x4d\xc9\x99\xd1\xf8\xee\x13\x0e\x12\xdc\x50\x87\xc7\x28\x3e\xba\x76\xb5\xa3\xc7\xd8\x7b\x47\x41\xa9\x87\xa1\x18\x8e\xce\x0a\x29\x39\x04\x0a\x9b\x95\xe8\x1c\x64\xac\x50\x49\x01\x3d\x04\x52\x47\x47\x66\x8b\xc7\x64\x70\xd7\xf0\x31\x8b\xa3\x4b\xa2\xf4\x32\x6b\x71\xcb\x72\x32\xdb\x36\xbd\x5e\xbe\x63\x5b\x5c\x9e\x0d\xc6\xd6\xfe\x70\x4d\x6e\xd9\x56\xaa\x5a\xdc\xc2\x99\xcb\x99\x8a\x99\x9c\xb6\x00\xa7\xaf\x87\x6b\x13\xba\x8e\x7f\xd5\x0c\xd3\x92\x2b\x6b\x26\x77\x4d\x8e\xf5\xb1\x7d\x7b\xfd\x62\xf2\xe4\x7f\xef\xd9\x47\x51\xfe\x70\xfd\x9d\x1b\x49\x2c\xdc\xb9\x13\x19\x46\x46\x89\xa2\xb8\x28\x5d\x8d\x0f\xb1\xbf\xda\x0e\xf4\xc5\xe0\xa4\x79\xf4\x45\x07\x65\x2f\xe2\x81\x60\xe9\x5b\xb3\x68\x53\x56\x66\x22\x67\x76\x48\xf1\x9a\xbf\xa2\xab\x32\xbb\x61\x92\xac\xea\x02\x2f\x2b\x88\xfc\xa6\xb3\xae\xa5\xd4\xe5\xde\x5e\xbe\xd2\xa7\xa3\x80\xba\xad\x5a\xbb\x96\xab\x62\xe5\xdb\x3a\x82\x0d\x59\xd5\x85\x5f\x25\x04\x50\x98\x66\x37\xb5\x58\x42\x04\x48\xf4\xc3\xd4\xf8\x2d\x04\xaf\xce\x0b\x51\x93\x33\x2c\xbd\x7e\x4a\x68\x55\xc9\x71\x98\x46\x0d\x3d\x4e\xb9\x24\xa7\x6f\x5e\x82\xbb\x91\xf1\x5a\x20\x7a\x20\xa6\x71\x89\x17\x6f\xdc\x05\x8c\xf4\x9a\xce\x86\x7f\x1d\xac\xea\x62\x70\xa4\xa7\xfd\xa9\xed\xff\x0e\x59\x80\xb8\xe6\x78\xcd\x40\x75\x35\x3d\xa5\x31\x19\x7c\x98\x15\xb4\xbc\xb5\xa6\x86\x0d\x37\x42\x94\x4b\x41\xe6\xb6\xe0\xa2\x32\xc1\x94\x8e\x9f\x5f\xd5\xfb\xb4\x2d\xba\x9f\x2b\x53\xfc\x6d\x5d\x74\x79\x08\xaa\x7a\xd7\xb5\xf1\x20\x78\xb8\x51\x65\x52\x0a\x7f\xff\x8d\x01\xdf\x82\x96\x39\x61\x77\x95\xfe\x0f\xbc\xcb\xc6\x8e\xb7\x25\x60\xa3\x46\xef\x3f\xb4\xb1\xd6\xc4\xaa\x00\x1b\x18\x3a\xe0\x85\x89\x6d\x78\x71\x77\xa7\x28\x6c\xc5\xaa\xbd\xc3\xb7\x13\x80\xc1\x80\x0b\x4c\x49\x18\x66\xfa\xac\x68\xc6\xc6\xe6\xd1\x98\xba\x27\x3f\x1c\x66\xc3\x9c\xe4\xd9\xb5\xd7\x2e\x76\x4b\x13\x3a\x97\x04\xa2\xd8\xac\x21\x4e\x2f\x3d\x7a\xe1\xd8\x16\xad\xb3\xfc\x1f\xc8\xd3\xc3\xff\xf5\x3b\xf2\xf1\xa3\x1e\xf9\x54\x32\x5a\x67\x37\xc3\x83\x77\x3f\xc9\x9f\xde\xfd\xf4\x7e\x38\xfa\xeb\xa7\x6f\xff\xf0\xd5\xe0\xa7\x9f\xfe\xeb\xe7\xf7\x07\x23\x48\x76\xd7\x52\x96\x7a\x3e\xea\xed\xe5\x4b\xc2\x81\x7f\x42\x79\x93\xe5\x56\x5d\x05\xa4\xdb\x04\xe4\x00\xb9\x53\x62\x50\xaa\x6e\xe5\x47\xe6\x12\xc4\x6d\xe8\x56\xf3\x97\xb7\x25\xb2\x48\xf0\xd6\x19\x4f\x3c\x99\xdd\xb0\x25\x1d\x13\x29\x08\x95\x80\x33\x78\xa3\x54\x15\xce\xcc\x4c\x62\xf0\x5f\xef\xe8\xe4\x97\xd3\xc9\x7f\xbe\x37\xff\x3d\x9c\xfc\xfe\xf1\x74\xf2\xfe\xeb\xa3\x83\x83\xc1\x28\xc4\xbe\x0b\xfa\x06\x20\x02\xae\x58\xc1\xa5\x22\x94\xcc\xd9\x86\x00\x01\x67\xa2\x30\xe2\x7a\x41\xb3\x5b\x42\x57\xea\x46\xd4\x5c\x71\x26\x0d\x9c\xe5\xca\xf1\x6f\x25\xd0\x9b\xf5\x1b\x3f\x38\x98\x12\xf2\x8a\xdf\x32\xb2\xa4\xbc\x50\x26\x71\xab\xf3\x10\xd5\xc3\xad\x0a\xae\x86\x83\xa3\xc1\x98\x3c\x19\xbd\x3b\x7c\x1f\x44\xa0\x50\xc9\xc8\x00\xeb\x0d\x3c\xca\xa8\xf3\xb5\x23\x6d\xbf\x41\x4b\x80\x03\xbd\x28\x7a\xa2\xe4\xb1\x55\x51\xb5\x2a\xc7\x61\x98\xe6\x9a\x03\x0d\xdf\xb1\x3e\xe9\xde\xc3\x38\x8f\x54\x90\x97\x62\x83\x73\x36\x7f\x1b\xc8\x3b\xbc\xa6\x60\x45\x00\x54\x4e\x2f\x00\x58\xb6\x60\x85\x0c\xa4\x67\x49\xe6\x98\xca\x8b\x20\xaf\x22\xca\xd7\xba\xe0\x70\x94\x32\xdf\xef\xef\x28\x13\x10\xed\x0c\xc3\x8b\x40\xfe\x21\x18\xc6\x3b\x11\xba\xcc\xd2\xc1\xb0\x9a\x6f\x05\x18\xee\x3e\x11\x66\xb2\x5e\xba\x72\x68\x80\x2e\xf3\x62\x5f\xc2\x2f\x33\x97\xe8\x5a\x0b\x3c\xbc\xb4\xb4\x26\x32\x26\x25\xcb\x9f\x6d\x6d\xf5\x3f\x41\xc3\xf5\x87\x98\x12\x6b\xb6\xe0\x52\x33\x68\x62\x55\x9b\x41\xe0\x08\x6a\x8b\xd5\xe1\x02\x82\xc6\x16\xf1\x54\xff\x57\x05\x89\xce\xb0\x31\x0b\xb5\x6a\x80\x6f\xc0\x23\x9a\xd5\x53\x42\x5e\x87\xfb\x03\x74\x2d\xb2\x6c\x55\x93\x38\x02\xc3\x37\x14\x37\x60\xe1\x0a\xf4\x19\x04\xd7\x8a\xf6\xb0\x66\x2b\x85\x31\x1a\xfa\x3a\xd8\x50\x58\x47\xdb\x98\x59\x08\x5d\x63\x49\xd4\x86\x67\x46\x8e\x38\x38\x08\x16\x21\xa3\xba\xe6\x5f\xb4\xa8\x65\x4c\xa4\x64\xb6\x9a\x81\x48\x40\x66\xcc\x06\x66\x20\x8c\x1d\x46\x9b\x12\x10\xbe\x30\x6a\x5e\xea\x0b\xc2\xb6\xa6\xc7\xc1\x32\x51\x5b\x17\x7f\x6c\x4d\xcc\xfe\xa2\xef\x13\xe3\x83\x8a\xe8\x74\x9a\xb0\xb6\x5a\x8c\x53\x8c\xe6\xc9\x1c\xcb\x20\x46\xb0\x4a\xd4\x0a\x96\xf0\x1c\x57\xf0\xc4\xd9\xfc\xd9\x9c\x51\xfc\x74\x09\xa5\xe4\x87\x46\x3c\xce\x5a\x4d\x97\xfe\xb3\x8b\x19\x5f\xab\xe9\xeb\x8b\xb7\x57\xe7\x1f\x2e\xcf\xdf\x5c\x5c\x5e\x7f\x78\xfe\xf2\xea\xf4\xd9\xab\xf3\xe7\xf8\x66\xec\x24\x1e\xfd\xde\xd4\x2b\x66\x2f\xe3\x8b\x12\x9d\x91\x21\x7f\xd3\x81\x89\xab\x80\xe8\xe5\xdc\x6e\x53\x7c\x0c\x08\x9b\x86\x47\xee\x84\x38\x5f\xa8\x21\x9b\x66\x60\x89\xfc\x0f\x32\x69\x33\x7c\x89\x18\x94\x11\x39\xd8\x25\x31\xed\xf1\xad\xb2\x16\x49\x93\xc5\xd2\x0f\xcb\xc1\x6d\xba\x91\xd9\x81\xfd\x79\x77\x87\xfb\xfb\x34\xf8\xa8\x8f\x03\x94\x4a\x36\xd5\xe7\x19\x84\x66\x6f\xbe\xd7\x8c\x5d\x6b\x40\x7f\xe8\x82\x5b\x75\xa7\xf9\xb5\x6d\xa0\x99\x72\xb8\x0e\xc2\xc1\xee\x1d\xdf\x45\x1e\xb6\x48\xb0\xad\xd5\xf0\x08\x20\x2e\x00\x4d\x33\x44\x00\xa3\x5b\x0a\x2d\x34\x96\x39\x46\x43\x85\x57\x81\x81\x7d\xc1\x96\x6e\x84\x7e\x05\xab\x6a\xec\xe0\x97\xcd\x49\xf6\x4e\xbe\xcd\x08\x31\x10\x76\x1c\x8d\xd9\x86\xfc\x58\xd0\xa9\x4a\x54\x16\xe8\xf7\x96\xb1\x4a\x26\x5b\x02\x35\x09\x40\x0f\xcd\x99\x66\xe3\xdd\x69\xd6\x07\xb6\x10\x19\x2d\x50\xc6\xf4\x52\xb8\xe3\x98\x62\x82\x9e\x90\x27\x7a\x33\xf7\x45\x0c\xb9\x63\x9a\xa0\xbc\x1e\x4d\x84\xb9\x5b\x48\xaf\x00\x38\x88\xbd\x33\x4f\x71\xc3\xf1\xee\x1e\x41\x7b\xbd\x43\xed\x82\x07\xbf\x93\xca\x43\x27\x26\x36\xa5\x85\xfa\x8e\x6d\x35\x6f\xd8\x4d\x6f\x96\xe2\x7e\xb8\x36\x84\x84\x25\x8d\x6b\x77\xce\xa5\x4f\x9f\xa2\x2f\x6a\x04\x1b\x85\x4b\x92\xe5\xb0\x95\xbe\x15\x5a\xa8\x89\x1b\x8a\x21\x39\x7f\x5b\xe1\x93\xe3\xf1\x50\x90\x02\x1a\x9b\xef\xd2\xf7\xb5\x6f\x61\x7b\x49\x86\xb7\x42\xc0\xa0\x9f\x23\x38\xf9\xd0\xb9\xd6\x34\xa4\x26\xbc\x5a\x5d\xdc\x3a\x3c\x29\x73\xfd\x44\x6f\x4a\x56\xcb\x1b\xee\x10\xe2\x70\xb4\x0e\x73\xae\xc7\xb8\xc0\xab\x3c\x1a\x58\x97\x8c\xe1\x8c\x3b\xd7\xe2\xbc\xcc\xbd\xaf\x50\xe7\x6c\xa0\xe9\xc0\xa5\x28\xed\x6c\x14\xd1\x45\xf7\x56\x37\xa8\x26\x9f\x15\xe8\xf3\xeb\x50\x0f\x32\x51\x6d\x2f\x8c\x88\xd7\x20\xcf\x5f\x23\x52\x85\x3a\xa1\x5e\xc6\x38\xe2\xb5\x8e\x8d\x31\xfb\x01\x3f\x64\x53\xc0\x98\xd3\x04\xfe\xe8\x91\x2e\x94\xa9\xba\x30\xe4\xce\xa6\x4b\xa6\xe8\x77\x6c\x3b\x8a\xc8\xfc\x39\x9b\x89\x15\xe4\x27\xd7\x37\x17\x72\x11\x1e\x0a\xd7\x2c\x87\x79\x56\x21\x48\x75\x2b\x56\x16\x70\x31\x17\xab\x59\xc1\xa0\x44\x40\xf1\x56\x2b\x01\xf2\x11\x57\x63\xab\x17\x00\x62\x9f\xf3\x9a\xa1\x94\x88\x67\xc1\xf6\xe0\x98\x2b\x30\x13\xfa\xd6\x40\x80\xc1\x05\x66\x79\x43\xb1\x6d\xd2\x32\x62\x6c\x2c\xaf\xa5\x22\xe1\x60\xad\xbc\xb1\x23\xe2\xdd\x88\x07\xf1\x96\xb4\x3e\xc7\x2e\x2c\x4e\xae\x08\xa5\xfe\x10\x68\x73\xcf\xd3\x1d\xfe\xef\x1b\xe7\x26\x92\xc4\x64\xdf\x7b\xa3\x61\x11\x1c\x12\xf2\x5f\x9a\xd7\x38\xd3\x8b\x80\x3e\x25\xf0\xbe\xcf\x56\x4a\x89\x52\x37\xf1\x94\x1c\x7c\x6d\xd0\x07\xcd\x8f\x5f\x1f\x8c\xc8\xc7\x8f\xc1\x90\xc3\xe2\xbe\x5d\x68\xed\x19\x7c\x08\x3d\x77\xbc\xc3\x19\x38\x94\x0c\x47\xa1\xa3\x4e\x26\x4a\x29\x0a\x36\x35\x01\x16\xc3\xc1\x19\x78\x18\x03\x02\x2e\x0c\x6e\x49\xcb\x15\x2d\x8a\x2d\xc9\x31\x34\x65\xc3\x66\xa4\x66\x98\x72\x5d\xb3\x08\x83\xd1\x71\x8c\xa1\xbe\x63\x59\x56\xd5\xa0\x39\xd9\xc3\xe4\x11\x0e\x5f\xc4\x26\x5e\x69\xe3\x5e\x0a\x4d\x9f\x8d\x77\xe9\x73\x4f\x6d\x6b\xdc\x4b\xb1\x66\x03\x3c\x9d\xad\x09\x8d\xc2\xb1\x06\x1c\xdf\x33\x94\x57\xf0\x59\x64\xe5\x82\x2e\xc2\x01\xea\x23\xcd\x25\xfe\x1c\x30\x67\x13\x2b\xe5\xa0\x96\x5c\x94\x36\x92\xdf\xb1\x49\xd3\xb6\x8b\x5b\xaa\xa7\xe4\xdd\x9e\x28\x1e\x78\xee\x91\x01\xfa\x6e\x44\xcb\x71\x70\x40\xce\x97\xab\x42\x8b\x2f\xb4\xd6\xac\xca\x2d\xdb\x6a\xa1\x48\x4a\xa6\x99\x3b\xea\x92\x1c\xdd\x30\x56\x44\x43\x6c\x68\x71\x7f\xd4\x05\x4e\x75\x13\xdf\xb1\xad\xfc\xd0\xbe\x07\xe3\x35\x74\xca\x58\x48\xc4\x80\x50\xaf\x26\xcc\xcc\x41\xd8\x72\xf9\x26\x84\xd5\x1a\x8e\xe2\x03\x17\xec\x15\x8c\x6e\x10\x9e\x09\x93\x00\x5b\xd1\xa4\xf5\xdd\x8f\xf8\xb9\x2e\x33\x64\x81\x4b\x9a\xae\x59\x98\xa4\xfe\x88\x16\x2f\x97\xb4\x56\x2f\x0a\x21\xea\xe7\x7c\xcd\x73\x36\x8c\xee\x16\x80\xe9\xa7\x33\x39\x84\xee\x46\xe3\x9e\x92\x88\xcb\x0c\x61\xc6\x4a\x61\xa8\x83\x9f\xee\x9e\xcc\x2e\x06\xe4\x31\xc1\xe6\xc8\xb7\xe4\x90\xfc\x91\x0c\x9e\x0d\xc8\x11\x19\x9c\x0e\x82\x71\x5a\x4d\xb7\xe6\xb5\x4d\x32\x6c\xdd\xc8\xb4\x66\x15\xa3\x6a\x08\x53\x18\x85\xdd\x74\xfb\x03\x7f\xf2\x4f\x35\xf2\x25\x07\x5f\xfb\xed\x4d\xbc\xd9\x5f\x1f\xb4\x1c\xd2\xfb\x9c\x89\x1e\x17\xa9\x11\x6c\xd6\xc9\x33\x03\xd6\x4b\x08\xc2\xd1\x4d\x05\x12\x83\x8b\x92\xc0\x0a\x7a\xbc\x61\x7b\xc0\xed\x3b\x90\xdf\x69\xdf\xc3\xdc\x60\xeb\xfa\x9d\xb1\x48\xac\xfd\x66\xd4\x88\x25\xde\xd7\x86\xf5\x84\xf5\x22\x68\xa2\x91\x80\xa1\x4f\xde\x63\x8d\xd5\xbc\xb8\xb1\xf2\x50\xe0\x18\x94\xd7\x74\x31\xb1\x47\x9b\x7a\x66\x9a\x9c\xbe\xb8\x3e\xbf\x0c\x98\x4d\xe0\x97\xc3\xe6\x78\x69\x90\x2c\x40\x83\x88\xb8\xac\x42\x90\xc2\xa0\xa2\x76\xde\x78\x8d\x65\xbf\x2f\x1b\xda\x87\x7c\xbd\x96\xdd\xea\xfe\x02\x4f\xf6\x1d\xcf\xd5\xbd\xdf\x1f\x00\x33\x01\xb5\x07\xb2\x6b\xa2\x24\xa6\x3d\xbd\x3c\x66\x61\x60\x5d\x15\x5b\x56\xa2\xa6\x35\xd7\xef\x6b\x28\x9a\x10\xea\xf4\x68\xa1\x68\x32\x25\xe4\xa2\xd4\x65\x05\xb6\xec\x44\x5e\xcf\x6e\x69\xf6\x10\x55\xfa\x02\xf6\x32\xd4\x44\x81\x46\x8c\x2f\x97\x2c\xe7\x54\xb1\x62\x4b\x6e\x4d\xea\x6d\x08\x79\x95\x4d\x91\xa6\x8f\xe0\x10\x45\x4f\xa1\xef\xb8\xb4\x61\x4a\x5a\xe0\xae\x51\x5a\xe7\xd2\xe4\xbc\xdc\x02\xca\x05\x9c\xca\x52\x6c\x08\x9d\x89\x95\x8a\xf4\x00\xa1\x3a\x16\xf9\x5c\x8f\xab\x6d\x83\xa5\x29\x29\x45\xbd\xa4\x05\x79\x7e\xf1\xda\x02\xc0\x78\x9e\xd2\x2c\x60\x9e\x83\x74\x4c\x0b\x48\x11\x11\x48\xe5\x03\xd0\x46\x0c\x62\x39\x7b\x10\x28\x77\x7f\x2b\xfd\x6c\x53\x3d\x4b\x22\x47\x35\x2d\x60\x6e\x50\x4f\x9d\xad\xa4\x81\x66\x6c\x8d\xc5\x05\x0c\x1b\x38\x09\x0c\x19\xe6\x73\xfb\xb7\x8d\x14\x8e\xb2\x81\xee\x1c\x1a\x80\xbf\x9f\x41\x6f\x91\x02\xd9\x34\xd8\x95\xa7\x20\x01\x8d\x31\xb6\x83\x08\x41\x13\x43\x60\x0e\x6f\x7c\xb7\xa3\x3f\x39\xc1\x5b\x34\x34\xc0\x77\xc2\xbc\x3f\x48\xaf\x97\x8a\x73\x33\x06\x10\x49\x7b\xe7\x8e\xd5\x12\xe6\x40\x73\x0f\x77\x06\xd6\xef\x18\x8d\x71\x24\x04\xee\x39\x0f\x3c\xc6\xdc\x08\x77\x92\x97\xa6\x68\x64\xbc\xef\x4b\x62\xc0\xfd\xa7\x4c\x00\x01\xff\x80\x2e\xc4\x36\x56\x75\x78\xf0\x53\x79\xb0\x5c\x8c\xc9\xe0\x27\x13\x37\x63\x8a\x25\xed\xe1\xfa\x9b\x77\x9e\x88\x94\x84\xb3\x9a\x66\xb7\x4c\xb1\x1c\xc6\x80\x7b\x19\x72\x2c\xef\x9e\x1e\x1e\xfe\x3f\xcd\xb5\xc0\x8f\x8f\xdd\x8f\x4f\xfe\xdf\x20\xb2\xca\x37\x78\x95\x9d\x3b\x8e\x41\xfa\xb5\x31\xfa\x68\x5e\x3f\xf0\xcd\xef\xbf\xd6\x50\xd1\x59\x65\x76\x2e\xf0\x99\xa8\xb6\x5d\x26\x16\xe4\x72\x56\x92\x99\xd7\xe7\x47\xb0\x6f\xeb\x1a\xf6\x51\xe8\x7a\x9f\x9a\x42\x6b\x97\xd4\x12\x65\x89\x38\x4c\xe4\x36\xd9\x75\x20\x10\x19\xb4\xe1\xfc\x0f\x8f\xbe\x43\x28\x30\x77\xb6\x16\xfc\x72\x5e\x33\xc0\x17\xb1\x46\x2e\xbd\xff\xc8\x18\x00\xc0\x2d\x2a\x4d\x41\x3f\x6a\xae\x57\x44\x2f\x68\xa6\x1c\xd2\x7c\x05\x55\xe4\x96\xa3\xcb\x1e\xb4\x32\x63\x85\x28\x17\x12\xb3\xa9\x79\xf4\x55\xb0\xf7\x7c\x4d\x22\x8c\xd5\xb1\x7d\xc2\xf4\x6b\x99\xd1\x52\xdf\xfc\xec\x8e\x65\x2b\x7d\xae\x22\xf8\x0d\xab\xe1\x86\xa7\xd5\x02\x82\x56\xb5\x58\xd4\x74\xb9\xa4\x8a\x67\x04\xbd\x6b\xf0\x4e\xdd\xbb\xd1\x97\xb0\x5a\x1d\x4e\x02\xa8\x6c\x3d\x33\x99\xa6\x82\x34\x68\x2d\xbe\x5e\x33\x0a\x20\x99\xa0\x5f\xd5\x1e\x03\x05\xe9\x6d\x30\xf8\xf8\x91\x1c\x1e\xfb\x3c\x8e\x76\x28\x1d\xc2\x48\xf7\xb0\x2c\x16\xed\x6e\x5d\x48\x4f\xc3\x09\x0e\xca\x25\xdb\xf2\x6b\xf4\xad\x96\xf1\x3f\x7e\xf4\x23\xd5\x3f\xc4\x46\x47\xba\x16\x3c\x37\x52\xae\xe4\x6a\x85\x37\xbe\x89\x5c\x06\x9e\xc1\x80\xae\x48\xb1\x64\x8a\x2f\x59\xc0\xf8\x58\x62\xb3\xcd\x2d\x98\xd2\xe4\xae\x39\xdd\xdc\x5f\x08\x0e\xc4\x50\xd4\x24\x5f\xd5\xd6\xb0\xcf\x4b\xae\x38\x2d\x48\x21\x68\x3e\x36\x36\x0a\xb4\xfe\xd9\xe6\x72\x46\x0b\xab\x68\xa3\xca\xda\x0a\xf1\xe8\x68\x92\x04\x43\xa4\x19\x1d\x9f\x03\xa6\x0b\x73\xae\x0f\xf1\x55\xa4\x3f\x66\x20\x4a\xcb\xd0\xd0\xe1\x21\xaf\x34\xd1\x8d\x81\x0b\xd7\xe3\xd3\xfc\x1a\x5f\xa3\x7b\xd7\xa1\xe6\x93\xd6\x68\x45\x31\x56\x77\x7d\xe9\x1d\x92\x35\x2d\x56\x4c\x76\x5a\x0b\xb9\xfc\x9e\x6d\x8c\x3f\x5a\xb4\x29\x0f\xbb\x92\xdb\x45\x5a\x26\xf7\x3f\xb7\x77\x89\x7a\xa1\xbc\x8a\xdb\x69\x99\x53\x7d\xdb\xd9\x4c\xe7\x00\x60\x94\xf3\x5c\x33\xa0\x78\x0a\xc7\x68\x60\x45\x30\x3b\xf0\x1e\x61\x6b\x56\x6f\x31\xd5\x30\x97\x0f\xac\x34\x61\x00\x70\x2c\x3b\x01\xf7\x83\xee\xf8\x43\x38\xa1\xb1\x1b\x62\x00\x43\xd7\x80\x40\xb9\x07\xbc\xc2\xc3\x13\x9b\x2b\x55\x53\xb3\x5b\xc5\x80\x49\x09\x7c\xfd\x9a\x58\xcd\x4d\x76\xe7\x9e\xac\xc4\x15\xab\xd7\x3c\x8b\x90\xff\x10\x69\x38\x80\x2f\xde\xfd\x4c\x05\x18\xa4\x69\xfc\x9f\x87\x29\x13\x5f\x04\x41\xda\x13\x50\xb4\xcb\x7a\x78\x1f\x0c\x35\x4f\x72\x1d\xc6\x24\x17\xc2\x07\x51\x8c\x91\xb7\xd4\x5e\xc4\x57\xd2\x56\x17\x37\xa0\x94\x1b\xaf\xef\x72\x7b\x11\x2d\xe0\x7d\xf4\xc4\xd1\xa0\xa0\xfa\xd9\x36\x2b\xd8\x87\x77\x87\xef\x3b\x32\xa6\xf5\x42\xc2\xfd\xfb\x8f\xff\xc9\xfb\x04\x50\x86\x01\x69\x76\x46\xe5\x5d\x38\xcd\xed\x42\x01\x54\xf3\x5a\x0b\x5d\x60\x50\x73\xf6\xe9\x26\x6c\x33\xb8\xfd\xfd\x26\xc0\xcd\xe9\xe1\xdf\x1f\xbb\xd9\x45\x16\xf7\x80\x6f\x6e\x64\xb6\x6b\x56\x35\xe5\x93\x90\xd8\x91\xb6\x15\x3c\xe3\x97\x08\x27\xc6\xc1\xb5\xc6\x67\xb0\xc3\xe4\x6a\xe4\x46\x6c\xc8\x9c\x4a\xac\x5c\xd1\x05\x26\x38\x82\x46\x40\x2d\xd1\x50\xdb\xb6\xd6\xf2\x49\x73\x29\x2d\x18\x87\xef\x16\x85\x62\xff\x67\xdf\xd4\x37\x57\x5e\xc9\xfa\x5a\xac\x99\x85\x45\xab\x23\x10\x0c\xd7\xec\xbe\xe5\x6b\xb7\x13\x56\x8e\x5d\xd8\xb5\x7c\x49\xa8\x5e\x46\x36\x8b\xd2\xcd\x49\x82\x71\x9b\xf0\xe6\x46\x29\x02\xf7\xe1\x4f\x76\xc8\xac\x1d\x72\x65\x3a\x7d\xda\x5c\xd4\xe7\x34\xbb\xf1\xd1\xd7\x81\x11\xa7\xc4\x1e\x86\x11\x5a\xd1\x8e\xb6\x8c\x87\xe5\x89\xe6\xc9\x3e\x1d\x3f\x38\x38\x20\x57\x17\x6f\x2f\xcf\xce\xc9\x8b\x97\xaf\xce\x8f\xd0\x5d\xfc\xe0\x2f\xf2\x00\xfe\xf1\xc1\x4e\xf5\x03\x17\xd3\xbf\x48\x5d\x5a\x0b\x2e\x68\x81\x1a\x66\x23\xf2\xf4\xf0\xc9\x53\xd8\x66\x30\x11\xf2\xd5\x92\x5c\x5c\x91\x53\xf0\x43\x94\x53\x72\x5a\x14\x68\xad\xc2\x24\x49\xf5\x5a\xcb\x19\x07\x07\xe4\xad\x74\x80\xa0\x04\xc3\x59\x51\x02\xe0\x92\x2c\xf4\xf3\x59\xe2\x3a\x53\xf2\xec\xea\xf9\x04\xa1\x2d\x0b\x9e\xb1\xd2\x3a\x57\x21\xc7\xaf\x5b\x9a\x43\x8e\x15\xc3\xe3\xbf\x7a\x79\x76\xfe\xfd\xd5\x39\x99\x73\x7d\x31\x3c\x18\xac\x24\x06\x1a\x67\x4a\xcb\x92\x9a\x09\xae\x55\xce\xaa\xe1\x40\xff\x13\x45\xd7\xb7\xd7\x2f\x7e\x07\x21\xa9\xce\x71\xbe\x5a\xa9\x83\x8b\x95\x02\x38\x45\x70\xf3\xa0\x19\x48\x94\x30\x22\x97\x19\x07\xe4\xca\xe5\x72\x55\xea\xb5\x0d\x52\x8f\x36\x73\xaa\x9e\xd9\x0a\x05\xbf\x65\xe4\xe7\x92\x4a\x79\xf3\x33\x30\x6b\x3f\x67\xb5\xd0\xff\xae\x59\xc6\x38\x30\x70\xe0\xe1\x45\x35\x63\x6b\xd7\x26\x2b\xa8\x94\x04\x13\xa2\x56\x3e\x6f\x12\xaf\x09\xad\x17\x6b\xe3\x2b\x66\x0f\x37\xe4\xe9\xb1\xee\x6b\x36\xfd\x91\xc2\xcc\x89\x35\xa3\x9e\xe5\x0d\x53\x22\xc0\xc8\xc5\x4a\x11\x76\x57\x09\x69\x98\xdf\x25\x56\x23\xac\x54\xbc\x6e\xe2\x66\xba\x51\x86\xda\x38\x4c\x1d\xf3\xff\x67\xef\xef\xdb\xd3\xc8\x91\xfd\x71\xf8\xff\xbc\x0a\x65\xce\xf9\x2d\x30\xc1\x18\xf0\x43\x9c\x78\x3c\x59\x8c\xb1\x83\x9f\x03\xd8\x49\x9c\x64\x73\x9a\x6e\x01\x1d\x37\xdd\xa4\xbb\x31\xc6\x3b\x39\xaf\xfd\xbe\x54\x25\xa9\xa5\x6e\x35\x60\x67\xe6\xec\x7e\xcf\x7d\x7c\x6d\x76\x6c\x90\x4a\x52\xa9\x24\x95\x4a\x55\x9f\x12\xec\xc1\x50\x24\xc5\xc4\x47\x89\xee\x54\x5f\xc2\xe4\x79\xc9\x95\xbe\x44\xc6\x34\x1e\x05\x98\xdf\x4e\x1f\xbd\x44\xcf\x8b\x03\xc9\x2b\x19\x5e\x10\x49\x42\x24\xc0\x39\x13\x48\xb2\xe8\x97\x0b\xa9\xbc\x68\x14\xbb\xbe\x15\x2b\x79\x66\xda\x51\xe0\x59\xb1\x96\xb6\x4f\xde\x07\x24\x67\x26\x61\xc0\x6e\x49\x78\xa3\x4d\x02\xa3\xfa\xd4\xa7\x03\x37\x8e\x5e\x33\x42\x6b\xe4\x52\x94\xb2\xc8\x98\x32\xf5\xd5\x8d\x30\xe1\xad\xc5\x95\x72\x9e\xa3\x43\xe7\x40\x6a\xfc\x08\x1d\x24\xbd\x29\x31\x8b\x86\x7f\x17\x80\x23\x76\x34\xed\xcb\x5e\x16\x23\x8a\xfc\x84\x84\x8a\xc8\xc6\x49\x30\x49\xf8\x07\x2e\xab\x64\x0d\x26\xc5\xc5\x51\x06\x3e\xa4\xd0\x88\x00\x1d\xd4\x8a\xf8\x46\x0c\x59\x35\xb8\x21\x91\xf1\x58\x4e\x2f\xf4\x0c\xc3\x84\x65\xcf\x60\x26\xd8\xd5\x8a\x0b\x0b\x1e\x21\x2a\xff\x78\xb3\x6d\x1f\x5a\x3e\x9c\xc6\x4c\x6b\x4f\x72\x22\x5a\x73\x12\x4e\xc1\xdb\x8c\x6d\xac\xb3\x20\xbc\xe5\xe3\x0c\xf9\x2d\x6e\x86\x56\x61\xdf\x9b\x83\x11\xb7\xef\x51\x6c\x99\x4d\xa7\xe5\x41\x4e\x76\x8b\x64\x44\x50\xe6\xdb\xb7\x7c\xd2\xbe\x6c\x26\x33\x90\x3e\x9b\x74\x11\x36\x06\xe9\xb6\x2f\xd4\x2d\x59\x48\x81\xb2\x35\xcb\xad\x90\xec\x49\x21\x11\x57\x1b\x36\xe8\xf6\x85\x70\xde\x04\x49\x15\xb3\x4e\xda\x17\x15\x98\x22\x79\x53\x11\xf1\x91\xed\x8b\x04\xae\xe2\xff\x70\xc6\xfe\x0f\x67\xec\x7f\x18\x67\x8c\xc9\xe5\x52\xa8\x31\x01\x72\x91\x81\x1b\xd3\x97\x84\x16\xbe\x66\xac\xa4\x89\x38\xc4\xe9\x58\x3e\x19\x84\xd6\x58\x82\x89\x88\xb0\x41\xe5\x68\xf2\x9d\x60\x56\x26\x93\x80\x1d\xc4\x4e\x12\xe6\xc9\x93\xcd\x33\x4a\x3c\xbe\x07\x32\x8e\x31\x55\x15\xfd\x51\x66\xb4\xe0\x79\x4a\x5e\x6f\xca\xf3\x58\xad\x0b\x94\x8a\x75\xee\x79\xcd\x36\x47\x7e\xd9\xad\x88\xf5\x03\xd6\x63\x2e\xe5\x60\xc3\xe1\x1b\x92\xc8\x4a\xbf\x8e\x16\x53\x3c\x16\xd8\x00\x16\xc5\x77\xf5\x46\x54\xc6\x78\x05\x96\xd4\x54\x64\x3d\x59\xe9\x02\xb6\x0e\x14\x31\xde\x23\x72\x31\xc1\x57\x2a\xce\x27\xd1\x51\x42\xce\x83\x98\xb8\xe3\x09\x62\x88\xe4\xbc\x65\x68\xd3\x8b\xca\xeb\x21\x90\xd1\x23\xc6\xca\x6a\x8b\x1a\xd0\x8c\x4f\x67\xfc\xe8\x87\x7a\x45\x7d\xc6\xcb\x24\x53\x59\x57\xa5\xe1\x68\xc1\xb3\x2a\x14\xc0\x97\x6c\x4a\x98\x72\x26\x23\x1f\xd2\xea\x12\xe7\x06\x2f\x06\x51\xc2\x92\x9d\x8c\x95\x3e\xf0\x61\x90\x47\x96\x9d\x12\x4c\x13\xb1\x62\xb3\x25\x57\x17\x79\x1a\x8b\x2f\x2e\x79\x7d\x85\x35\x4a\x17\xcc\x02\x4f\x63\x5e\x4b\x2b\xaa\xf3\x00\xb8\xce\x43\xfa\xb2\xc7\x8d\x3c\xc5\x40\x65\x62\xe7\xb1\x1b\x0b\x4d\x8a\xbb\x93\xf6\xa4\x09\xf3\x57\x71\xb8\x58\x51\x14\xd8\x6e\xf2\x1a\x8c\x0f\xa8\x19\x9d\xcc\x85\xd4\xf6\xa0\xb7\xc6\x01\x99\xb0\x0d\xc5\x0e\xfc\x38\x0c\xbc\xcc\x06\xca\x0e\xae\xc1\x00\x8f\xd8\x44\xd9\xc0\xe4\xa8\xa0\x2d\xf1\x03\x8c\xeb\x18\xc2\xde\x2e\x68\x8b\xa3\x4e\x90\x4f\x1e\x9e\x25\x2d\xa6\x09\x4c\x3c\x9a\x97\xf9\x45\x9b\x16\xa6\xd9\x98\xcd\xeb\x6e\xc0\x8e\x4b\x13\x2b\x53\xb2\x89\x4f\x51\x81\x7c\xa6\x6a\x5a\x13\xa6\x8f\x38\x5f\xd3\xef\x57\xf2\x0b\x34\xe8\x05\x15\xdd\x82\xcf\x1f\x5d\xe4\x47\x9c\xac\x62\x58\x47\xcb\x1e\xff\x5b\x10\xd1\xcf\xf7\x94\xdc\xb8\xc1\x6e\x56\x98\x60\x64\xec\x9b\x64\xf5\xb1\xbf\xb4\x27\x1c\xe1\x34\x90\x08\x45\x21\x4a\xd0\x28\xa4\xf2\xb1\x02\x83\xc1\xdb\xc4\x74\xf9\x4c\x75\x28\xad\xac\xe8\xb2\x8d\xe6\x6c\x98\x6c\x78\xba\x63\x9b\x6c\x24\x6c\xb6\xfc\x79\x52\x03\x51\xe7\x62\x25\x2e\x46\x8b\xfc\x01\x14\x55\x5f\xcb\xf9\x1e\x0c\xc8\x84\xc7\x07\x80\xc3\xd2\xf2\x18\x65\xe8\x1a\xd8\x1d\x72\x32\xf1\xa7\xb6\x04\xa1\x91\xe7\x05\x20\xaf\xaf\x93\x0b\xb5\xab\x95\x67\x89\x9f\xa4\x17\x0c\x8b\x85\x2b\x1f\xd5\x78\x55\xbd\x7f\x4d\x78\xc0\x1b\x23\x93\xcb\x45\x2b\x59\x91\x0b\x23\xb2\x9f\xca\xb9\xe4\xd2\xa4\x6a\x8b\x49\x53\xc0\x2a\x61\x5e\xc3\xdb\xb1\x93\x4d\xd1\x51\x60\xc3\x5a\x83\xaf\x5d\x7f\x58\xc0\xd7\x34\xb1\x11\xaf\x16\x34\x7e\x4b\xe7\x24\xa2\xdf\xa7\xa2\xc6\xe2\x39\x59\x29\x2e\x7c\x85\x69\x09\xfa\x60\x80\x08\x1d\x2d\xe4\x1d\xa7\xe6\xb8\x7b\x71\x5e\x41\x7a\xee\x60\x9e\x0a\xef\x5e\xdc\x39\xf1\xb9\xe1\x61\x10\x9e\x4d\xca\x44\x3c\x83\x89\x6d\x2c\xe8\x7f\x53\x30\xf3\x39\x00\x45\xd0\xff\x26\x4c\x3a\x41\xff\x5b\x6a\x1f\x02\x42\xbb\xf2\x4b\x65\xff\x41\xda\xf2\x2b\xb2\x07\x05\xb4\x35\xab\x45\x53\xa6\xba\x9b\xea\x62\xae\x68\x4a\xc1\x04\xc5\xc7\x15\x1e\x28\x3f\x2d\x92\xa8\x49\x99\xa5\xe6\x0f\xa6\xf4\x0d\x99\xd6\xad\x28\x84\x4e\x3c\xaa\xac\x54\x14\x47\xb4\x8a\x74\xe9\x1c\x59\x32\x7f\x59\x39\x53\x38\xf6\x1e\x2c\x2e\x16\xc0\x1d\xec\xc8\x15\xd4\x9f\xc7\x34\x05\xbc\x97\xa3\xf5\x98\x96\x8b\x4e\x2b\x21\x33\x09\xdd\x1c\xb7\x04\x6d\x78\x60\x04\xba\xea\x1d\xee\x2c\x05\x54\xd0\xf6\x7e\xfe\x96\x27\x1e\xb5\xc2\x60\x46\x0a\x0d\x4c\xad\x2d\x1b\x17\x91\x50\x5c\x61\x49\x0e\x20\xc5\x6f\x43\x21\x2a\x92\xb5\x17\x4d\xdb\xe0\xa3\x39\xc7\xed\x31\xdc\x28\x17\x7a\x99\x54\xc1\x7f\x11\x2b\x3d\xff\xdf\x91\x99\xe0\x36\x13\x7e\xf6\x0b\xf9\x5c\xad\x6d\x93\x63\xeb\xce\xea\xda\xa1\x3b\x89\x9f\x2e\x8e\x8f\xe6\x1a\x8e\x6e\x6f\x25\x21\xad\x6d\xe7\x31\x16\xc6\x2f\x65\xb9\xa8\x9b\x6f\xcd\x68\x1c\x97\xd0\xf0\xea\x83\xd7\x24\x0a\x34\x76\x0e\x21\xf5\xd7\xb0\xc4\xf3\x57\x61\x0a\x88\xdb\x2a\x6c\x41\xb9\x5c\xc8\x98\xa5\x86\xfe\xfb\xf8\xab\x95\xc0\x16\xfd\xef\x32\xf6\x03\xfe\x73\xa4\x1a\xfa\x9b\x81\x1f\xc5\xe1\x14\xde\xf4\xd9\x6d\x54\x43\x6d\xe2\xab\x4f\x55\x94\x22\xf9\x21\x19\x43\x5a\x07\x00\x45\x45\xdb\x0f\x46\x31\x09\xd6\x91\x68\x6a\x8f\x88\x05\xe1\xfd\x1c\x7f\x7a\x1d\xb2\xc2\x48\xc4\x6a\x02\xdd\x29\x93\x7e\xe0\x81\x53\xa6\xeb\xc7\x65\xe2\xc6\x96\xe7\xda\x65\x7c\xd1\x2f\x93\xa9\xef\xd0\x90\x89\x20\x3a\x9f\xb0\x91\xdd\x52\x6e\xee\x94\xdd\xd2\xfa\x2c\xee\x80\x51\xfa\x82\x66\x8b\xa1\x12\x8b\xfb\xb5\x81\xeb\x16\x0d\x13\x1b\x02\xb7\xf4\xaa\xfa\x7a\x32\x20\x08\x93\x64\xcb\x85\x46\x31\x3c\x0b\xdc\xbb\x11\x18\x7f\x75\x62\x03\xf4\xd3\x62\x57\x3d\x2b\x76\xfb\xae\xe7\xc6\xf3\x6c\x2e\x25\x45\xc4\xc4\xda\xb2\x93\xa9\x50\xd7\xda\xdb\xde\xd9\xe9\x01\x77\xce\xf9\x91\xb8\xe9\xf4\xe0\xb9\x12\x68\xc9\xcf\x38\x3e\x0d\xe8\x2a\x60\xea\x90\x96\x6b\x02\x17\x46\xad\xa3\xa9\x3b\xa8\x0a\xd6\xa5\x2e\x34\x41\x5c\x59\x6a\xd2\xd1\x9b\xec\xc9\xb6\x77\xa5\x01\x38\xa2\x32\x23\xa4\x8e\x01\xc1\x85\x9e\x5f\xbb\x11\xff\xdc\x8a\x08\x75\xe3\x11\x0d\x5f\x73\x00\xc6\x4e\xf3\xeb\x41\xeb\xb0\x71\x75\xda\x23\xa4\x08\x5e\xcb\x81\x0f\x82\xc5\x9d\x7a\x4a\x49\xb9\xce\xd1\x3e\x3e\xfd\x15\xa5\x29\x8c\x2d\x8a\x42\x38\xec\x17\x49\x58\x26\xc3\x32\xe9\x97\x0a\x6c\x3e\xc6\xbc\x16\xda\x2f\xf9\x4b\x7e\x31\x83\xd6\xe4\x02\x3a\x18\x1c\x41\xd8\xbb\x89\xe5\xd1\x18\x5f\x8f\xa6\x11\xf8\xb6\xc0\xf8\x13\x81\xd6\xc1\x6d\x95\xce\x27\x8f\x8f\x52\xda\x17\x94\x55\x79\xa7\x02\x68\x58\xf6\x08\xaf\xba\xe0\xc4\x24\x0d\x84\xd0\xb7\x98\x31\x18\x83\x0d\xd3\xfd\x79\x26\xd1\x25\x32\xad\xab\xf3\x61\x5b\x7e\xe0\x83\x5b\x41\xe2\x23\x95\x1a\x9f\xe8\x2d\xef\xe9\xd7\xe6\xc5\xe9\x45\xc7\x30\xb6\x9c\x72\xcf\x12\x07\x79\x36\x77\x87\x2a\x5d\x98\xa6\xfa\xd6\x56\x99\x88\xff\x2b\x25\x10\xe7\xbc\xc2\xbe\xda\x00\x54\xa8\x96\x09\xfb\x5f\x49\xd1\x07\xd8\xee\xa1\xba\xdb\xe3\x10\x2c\x38\x6f\x53\x9f\xe2\xde\x92\xf9\xb8\x2f\x92\x8c\x6b\x9f\xca\x9d\x27\xf3\x8d\xb6\x09\x65\x1b\xe1\x6f\x0b\x86\xcf\x13\xc7\x07\xed\x9b\x99\xcd\x61\x74\xf5\x8f\xad\xc8\x76\x5d\xfe\x8d\x08\xa3\xe1\x9e\x2e\x1e\x3d\x40\xdf\x61\x8e\x5e\x2a\xc3\xf9\xbc\x20\xbc\xe4\x42\x9b\x20\x80\x0b\xbf\x2b\x1a\x37\x95\x02\x29\xa7\xaa\xf6\x00\x9b\x07\xb4\x2b\x77\xe8\x0b\x2b\x0b\xb0\x57\xee\x56\x46\xc3\xda\x00\xce\x0e\x89\x55\x02\x86\x7a\x0b\x2b\x32\x56\x60\xe2\x58\x2b\x46\x04\x6d\xc7\x1d\xc0\x2d\x39\x96\x0f\x19\x32\xc7\x2b\x8f\x58\x98\x21\x1e\x3e\xaf\x9a\xbf\x4b\x29\x5a\x02\x42\x5b\xef\xa3\x24\x70\xb8\x8d\x64\x5c\xec\x83\x32\xec\x8c\x7d\x3c\xc4\xf1\x18\x24\x45\x77\x40\xac\x3b\xcb\xf5\x58\xe5\x12\x0c\x03\x3a\x0d\x0e\xe0\xea\x40\x23\x1a\x8b\x98\x79\xb6\x47\x4c\xa8\xef\x50\x5f\xbc\x42\x13\xa5\x71\x5e\xf0\x91\x7d\x6e\x44\xfb\xa1\x48\xb0\xa8\xf5\xbd\x41\x70\x7b\xa2\x1e\x1e\x5e\x96\x1f\x4b\xe7\xc7\x5f\x66\x23\x2b\x16\xe0\x59\xd2\xe5\x11\xf7\x06\xe8\x27\x7f\x3c\xc6\xed\xf3\x97\x95\xba\xa4\x2d\x5f\xe9\x2f\xcb\x91\xba\xfd\xe9\xb8\x58\x50\x55\x87\x46\xd2\x29\xae\xfc\x89\x93\x16\xf7\xe3\x39\xce\xba\xd4\x75\x78\xcf\x52\x1b\xfa\x4a\x1d\x53\x8f\x85\x3d\x52\xe0\x55\xd9\x26\xf0\xc8\xce\xe8\xe7\x90\x95\xf4\xca\x42\x48\x2e\xf0\xb0\x56\xcf\x0f\xf9\xcc\x12\xae\xdc\x51\x76\x2e\xe1\x76\x55\x48\x98\xd5\xd3\x5c\x6c\x39\xb8\x0d\x44\x81\x09\x63\xc1\x0c\x17\x01\x3b\xa3\xfd\xc0\xa1\xba\xa7\x8d\xc9\xb8\xfd\x78\x05\x61\xa5\x21\x44\x34\x16\xd4\x9e\xa4\x07\x98\x0c\xff\x0e\xa5\x13\x8c\x23\x10\x1a\x70\x62\xa5\xd5\x20\xa4\x4d\x7d\xfb\x41\x1a\x0b\x09\x2c\x1d\x91\xed\x05\xbe\x01\x6f\x52\x62\x8e\xaa\xb6\x74\x95\x44\x11\x40\xdd\x60\x7b\x65\x7b\x43\x91\x55\xb8\xa5\x73\xb1\xb6\x84\xa1\x2a\xbc\xfb\x74\x4b\xe7\x5f\xf8\x19\x08\xbf\x4b\x73\x53\x78\x97\xde\x94\x33\x1b\x75\xc5\x0e\x7c\xdb\xe2\xc1\x0e\x9c\x0f\xe1\x5d\xda\xea\xcd\xbd\xdb\x12\x4c\x51\xd8\x7e\xb2\x5a\x24\xec\x57\x4e\x40\x23\x08\x53\xe0\x3e\x6e\xe8\xda\x86\xad\x11\xb8\x88\x18\x4e\x03\xfe\x18\x05\x2e\xdc\xbf\x92\x76\x8c\x8f\x7e\x02\x73\x57\xa1\xc4\x8e\x1f\xb0\x92\x96\xf1\x2d\x9b\x35\xc4\x76\x25\xa6\x7f\xae\x34\x1f\xd0\x78\x8e\xed\xfd\x4f\xd7\xad\xfe\x6c\x9d\xe6\xff\xff\xb4\x0e\xb3\x20\xa6\x15\x64\xf5\x14\x02\xf7\xcc\xd5\x45\xa1\xa9\xaf\x10\x93\x58\xa4\x16\x51\x72\x97\xcd\x5f\x4a\xc8\xb4\xb9\x6f\x03\xf9\x28\xa5\xee\xf4\xd8\x25\xce\x1d\xe4\xdc\xc9\x88\x43\x23\x3b\x74\xd9\xe5\xd1\xe7\x50\xcb\xaa\x52\x20\xb7\x2b\xe9\x36\x2b\x42\x0c\x1f\x4d\x6e\x29\x87\xdc\x88\xfb\x47\xe4\x66\x42\x29\xe6\x2c\x9c\xec\x6a\x50\x31\x04\x72\xd7\xd0\xb2\x6a\xcf\x13\xf9\x37\x7c\x8e\x4b\xc0\xf0\x05\x5f\x05\x26\x52\xb0\x10\x0c\x5f\x24\x6b\xc1\xf0\xa5\xbe\x1c\x4c\x0d\xf2\x15\x61\xfe\x4a\xa2\x75\x65\xbe\xe4\xeb\x22\xcb\xaa\x64\x65\x64\xbf\x4b\x54\x72\x0e\x05\x6a\x3e\x07\x75\x4b\x41\xd1\x42\xac\x6e\x70\x67\x92\x00\xdf\x25\x1e\x9c\xcb\x73\x99\x83\x8f\x5a\x6c\x8f\x84\xc7\xe2\x6a\x27\x00\x7f\xa2\x86\x67\x2c\x5b\xb4\x3e\xf1\xe0\xea\x97\x20\x89\x8b\x07\x70\x0c\xc7\x14\xb2\x59\xe6\x91\x66\x96\x0f\x4e\x42\xd8\xc7\x54\x59\x2c\x59\x21\xe4\x00\x1d\xc5\x01\x77\x33\x18\x90\x71\xe0\x07\x00\x94\x4a\x66\xae\x43\x93\xc8\x1d\x46\x0f\xaf\x08\x81\x4f\x6c\x1a\xc2\x25\x14\x71\xb0\x23\x52\xa4\x95\x61\x45\x80\xeb\x5c\x74\x4b\x1a\xe0\xee\x64\x1a\x13\x6a\xd9\x23\x03\x41\x44\x42\x07\x0e\x0e\x48\xb3\xdb\xe5\x9e\x92\x85\xca\xcc\x5e\x63\x03\x2c\x70\x0d\x6b\x64\x45\x1c\xe1\x87\x87\xa6\x29\x2f\x28\x2d\x46\xfa\x2e\xfe\xca\x26\x10\x1f\x49\x5d\xf4\xbd\x87\xd3\x4f\x9a\x08\x84\x6d\x0e\x5a\x13\xf3\x03\xe9\xa7\x61\x4e\x44\xaf\xca\xf8\x9d\xec\x0b\x65\xbd\x61\x14\x79\x40\x35\xfc\xfe\xf5\xb7\xa1\x37\x9f\x8c\xb8\x35\xe2\xf7\x42\x9e\x71\x15\xdc\x86\x94\x74\x36\xd2\x0d\x06\x26\xc1\xe6\x9f\x0a\x17\x12\xa6\xc4\x48\xd1\xaa\x68\xbb\x14\x9b\x45\x26\xb7\x3f\x48\x43\x9d\xd2\x20\x4c\x64\x41\xcc\xa8\x26\x6e\x42\xd6\x84\x09\x49\x97\xb5\xe5\x6a\x17\xc8\x5d\x53\x8a\xbb\xb2\x7f\xa5\x86\x96\x7a\x36\x90\x5b\x9e\xc0\xe1\xe1\x03\xd1\x95\x4e\x4e\x9f\x35\xcf\x06\x97\xa1\x99\xe4\xcb\x61\x83\x5d\x96\x7f\x88\x15\x2a\xc8\x8c\x39\x11\x4f\xa2\xce\x3e\xc5\xb0\x13\xf1\x8d\x98\xd6\x3d\xf2\xe9\x8b\x9e\xfb\x4c\xd1\x30\x9e\x9b\x54\x07\x9e\x65\x29\x9b\xfc\x2f\xa9\xa8\x13\x54\x54\x91\xa5\x04\x73\xd2\x00\x26\x1f\xeb\xa4\x95\x2b\xab\x40\x6f\x60\x1b\xba\x4a\x91\xad\xd6\xf7\x32\xc3\x3d\xfb\xb6\x90\x1a\x2f\xdb\xe9\x79\x0d\xc6\x26\xa1\xfc\x48\xb4\xcb\x64\x3e\x61\xeb\x4f\x13\x97\x69\xfd\xf1\xeb\x14\xf5\xbe\x1a\x6b\xc5\x99\x0e\x3e\x31\xc5\x02\x7c\x85\x0b\x5c\x04\x08\xb3\xf6\xe1\xe3\x94\xb9\x44\x86\xf9\x31\xc1\x38\x48\x7c\xdd\x04\xea\x9e\x6c\x4e\x1e\x35\x32\x78\x4a\xaf\xf0\x62\x8f\x14\x12\x5b\x74\x41\x69\x56\x55\xd8\x92\x66\x55\x70\x1f\xf5\xa0\x5a\x44\x9e\x11\x59\xe3\xe5\xd4\x16\xd2\x8a\x5f\xa6\x15\x8d\x96\xcc\x39\x84\x90\x2a\xe9\x71\xeb\x1f\x64\xe3\xd2\xf0\xf4\x33\x33\x5e\x6c\xab\x2a\xd7\xa5\x16\x99\x00\xbd\xc0\xe7\xaa\x1a\xa9\x20\x61\xe8\xe9\xf5\xf9\x99\xf9\x5c\x47\xf9\xd6\x1b\x85\xdd\x93\xb7\x98\xfd\xe6\xab\xcc\x04\x20\xa8\xa9\x9d\x63\x9f\x99\x24\x42\xa6\x1a\x54\xb6\x0b\xa5\x96\x96\x42\x2c\x55\x2e\x09\xe0\xe5\x7d\xc1\x38\x12\xa5\x3a\x7c\x81\x89\x3d\x64\x87\xbf\x05\xae\x5f\x2c\x10\x9e\xf4\x8b\x6f\x67\xac\x74\x46\x27\x15\x20\x20\xc2\xed\xde\x11\xc6\x02\xfe\x8a\x55\xce\xee\xdd\x25\x38\xe0\xc0\xb2\x61\x8d\x31\x7c\x09\x96\x16\x7c\xe8\x46\x24\x65\xdb\x37\xfb\xc8\xf9\x0e\x44\x70\x88\xac\x57\x8c\xb6\x78\xb3\x88\xa8\xaa\xca\xda\x60\xad\xe8\xc3\x3b\x0b\x0d\xd9\xc1\x28\x62\xe1\xf1\x48\x16\xef\x89\x56\x38\xa4\xb1\xb4\x66\x88\xc6\x0e\xf9\x69\x35\x99\x86\x93\x80\xed\xa3\xe2\x3a\x8f\x0a\x4b\x39\x49\xce\x87\x96\xa2\xc8\x75\x68\x48\x1d\x55\x3f\xca\x71\x93\x48\x0e\xb9\xa0\xff\x0d\x8c\x1f\x89\x17\x7a\x4c\xd1\x33\x7a\x89\xe2\x2e\x59\x9e\xa8\x68\x2a\x67\x25\x5b\x13\x37\x66\xa6\x27\x98\x39\xbb\xf4\x74\x84\x53\x96\x46\xe6\xe3\x51\x78\xc1\xc0\x5a\x99\x4f\x68\x30\x40\xb7\x96\x3d\x52\xc0\xe1\x02\xd4\x5a\xd0\xff\x06\x69\x55\x7a\x1c\x92\x67\x23\x7b\x5a\x2a\x47\x69\x72\x1e\xf2\x8d\x97\x55\xe7\x67\x9b\x12\x98\xac\x20\x42\x83\xee\xc5\x63\xc4\xa8\x9a\x23\x07\x14\x2f\xbe\xf2\x51\x79\x85\xc7\x47\x7c\x99\xe1\x91\x19\x76\x30\x1e\x83\x33\x8c\xcb\xdf\xa2\x12\x4d\xa0\xa2\xdc\x5d\x9e\xab\xdb\x8e\x18\x94\xd8\x84\x16\xe9\xe0\xe2\x9e\x92\xa3\x95\x3f\x37\xef\x31\xa2\x05\xb1\x33\x98\xda\x50\x4d\x05\x7b\xda\x81\xbd\xe8\xfa\x94\x94\x4d\x9f\xc5\x5a\xad\xc5\xe7\x2f\x23\xf2\xfc\x79\xe6\x00\x36\xb4\x8b\xc6\x03\x9c\xc4\xe4\xe4\xcb\x16\x14\xc6\x07\x9d\x2e\x9e\xbd\x3a\xc3\xd2\x77\x2e\xa8\xc2\xc8\xe7\x5d\xc3\x4c\xf7\x30\x59\x49\x3f\xf5\x74\x0f\xb2\x05\x86\x47\x11\x0a\xa0\x81\xec\x88\xe9\x28\x2b\xef\x59\xaa\x19\xd2\xf0\xba\xa4\xea\x54\x0b\xde\x94\x52\xfa\xd1\x62\x93\xc1\xd5\xc4\x11\x70\xf5\xa2\x21\xfd\x8d\x4d\x7d\xbb\x43\x8c\x6f\x76\xd9\xe1\xf7\x35\xd8\x61\xa9\x84\xdb\xe7\x98\xe8\xc2\x50\x62\xd2\xff\x85\x4b\x86\x32\xb0\x9e\xee\xa9\x21\x3f\x47\xf1\x64\x57\x81\x69\xa4\xee\x50\xe2\x0e\x0c\x9b\x67\xd2\x51\x83\xef\x58\xd2\x9c\xc2\x20\xad\xb9\xf4\xbb\xfd\xb2\xe6\x92\xee\xf1\x01\x2e\xb7\x3c\x4b\xce\x67\x6d\x1d\x12\x84\x65\x48\x63\x7c\x2d\x81\x5c\x4e\x45\x57\xc5\xbf\x75\xc9\x6f\x64\x27\x8d\x7d\x9c\x58\xab\x5c\x25\xbc\xcd\x0b\x66\xb0\xbd\x7b\x03\xf1\x8c\xd3\x38\xef\xb6\x49\x6d\xbb\x4c\x2c\xc7\x21\x3b\x15\x0d\xcd\x94\xb8\xe4\x05\xd9\x49\xc3\x3e\xb6\x07\x89\x01\x54\x12\xae\x6d\xeb\xb6\xb1\xb2\x78\x4c\x03\x8b\x49\x48\xbf\x4f\xd9\x29\xcf\x83\x15\x05\x25\x7e\x18\xe0\x83\x1b\x1d\x59\x77\x6e\x10\xb2\x7e\x0d\xfd\x60\x4c\xd7\x14\xc7\x24\xa5\x47\x9a\x7e\x9b\x67\x36\x4d\x7f\x2e\xae\x31\x79\xa6\xd3\xf4\xe7\xa2\xbc\x69\x8d\x99\xad\xa3\x4a\xe9\xfd\x15\xde\x87\x93\x4b\x02\xca\x8e\x98\xbd\xbc\x01\x99\x3a\x48\x72\x87\x63\x1a\xbe\x9e\xc2\xc0\xf5\x47\x34\x74\x85\x4d\x93\x1f\x50\x85\x48\xb8\x27\xf8\xf3\x71\x10\xf2\x04\x08\xb9\x3c\xc8\x0c\x77\x57\x2d\x9f\xe5\x42\x86\x50\x56\x37\x36\x3c\x0e\xea\x07\x45\x22\xf4\x19\x4e\x3d\x5f\x6c\xc1\x5b\x58\xbe\x73\xb4\x9f\xac\x1f\xc3\x1c\xa4\x56\x5f\xba\x84\x09\xb2\x5a\xb7\xb8\x2d\x98\x5f\xf3\xd4\x3e\x8e\xeb\x22\xe1\x4e\x97\xe2\x06\xb4\x9e\xde\xb5\x22\x32\xf5\x3d\x1a\x45\xc4\xf2\x42\x6a\x39\x73\xa2\xf9\x8e\x84\xc3\x7e\x51\xbe\xfc\x0d\x82\x70\x5c\x79\xb6\x02\x93\x15\xa6\x65\xdf\x1a\x8a\xd9\xba\x06\x13\x6b\x89\xbc\xc9\x83\xa1\xc8\x32\xe0\x75\xd6\x26\xfe\x29\xdd\xc8\x97\x52\x56\xa8\x84\x6d\x36\x6d\x05\x2d\x29\xb9\xa7\x80\x68\x2f\x38\xb3\x6e\xe9\x21\xbf\xd0\x17\x33\xf6\x8d\x3d\xa3\x39\x22\x7f\x08\x89\x3a\x92\x3b\x98\x84\x7a\x69\x37\x87\x93\x8a\xd1\x7f\xec\xde\x17\xd3\x3d\x2d\xa7\x3c\x44\xca\xa4\x5a\xd9\xd8\xd8\xd8\xd0\x19\x91\xd9\x29\x16\x4d\xa4\xf6\x18\x54\xcc\xd6\x7d\xd2\x44\x2a\xfb\x81\x69\x22\xd3\x8d\x98\x80\x45\x62\x00\xec\xe2\x36\x5e\xf1\xce\x1d\x2b\x2f\x1a\xa9\xcb\x63\x24\x6e\x8f\x11\x5e\x1f\x23\x6e\xe1\x4d\xcc\x7f\xa5\x24\xbc\x32\xb9\xea\xfc\x0f\x5f\xda\x6a\xa4\xe1\x1b\x2f\x6d\x0b\xea\xd4\x49\xc3\x47\x55\xea\xd1\xb7\xbd\xc4\x11\x2e\x6f\xec\x39\x0a\x4b\x52\xf1\x0c\x2c\xa5\xfa\xc5\xad\x56\x86\x7e\x99\xee\x6f\x35\xf5\x02\xa7\xdd\xd5\x16\xb7\xd3\x96\x97\x38\xa0\x2c\xcf\x4d\x46\x32\xb9\x00\x3e\x87\xcb\x40\x5d\x7e\xa0\x35\xc0\x4d\x30\xc6\x8a\xd9\x9b\xa3\xb0\xe0\xc9\xdb\x62\x0d\xaf\x8b\x35\xdd\x16\x0a\x7f\xd4\x09\x6f\x37\xb9\x4a\x8a\xbb\x1d\x56\x15\xc6\x4e\x7e\x3d\xaa\x9b\xee\x52\xbc\x64\xc6\x8a\x29\xeb\x2c\xbc\x53\xf1\xda\xaa\xc5\x52\x56\xcc\xbb\x45\x29\x75\xb8\x21\x52\xab\x62\xb8\x20\xf1\x1a\x69\x8b\x9a\xac\x96\x32\xc3\xed\xe6\xaf\x58\x65\xb1\x8a\x30\x76\xfd\x61\x48\x3e\x3b\x44\xe6\xf7\xc7\x7f\xf5\x82\x5c\xb8\xae\x78\x05\xe5\x41\x69\x95\xb5\xd4\x36\x3d\x73\x4a\x3b\x88\x10\x4c\xb3\x29\xc4\x68\x0b\x59\xcc\xff\x61\xf2\x8c\x2d\xdf\x83\xd0\x23\x08\x2c\x9c\x11\x51\x4c\x7e\x26\x7f\x1b\xfe\x6e\xf0\x03\x1f\xd2\xd8\x3d\x09\xde\x55\x28\x7e\xac\xb6\x20\x49\x2b\x14\xc5\x7d\x89\x5d\x1a\x74\x8e\xca\x08\x9e\x9e\xa1\x73\xe8\x23\x67\xea\x5e\x0e\x77\x65\xce\x5d\x95\xa9\xbe\xb4\xef\x02\xd0\x19\x08\x83\x34\xa2\x48\x9f\x16\x3d\x35\xae\x48\x7c\x0b\x85\xf5\x47\x96\x14\x68\x97\x08\x9a\x4e\x15\xe4\x66\xd2\x74\xa2\xca\xdc\x79\xc1\x64\xbc\xb9\x33\x42\x78\xc8\x81\x15\xc6\xe8\xb5\x8b\xef\x95\x8e\xa8\x87\x2c\xb3\x10\x7b\x63\x32\x45\x94\xd9\xcc\xe3\xdf\xd3\x27\x35\xe9\xde\xc2\x59\xe5\xb4\xe5\xa4\x62\x87\x65\xd7\x31\x91\x3c\x64\x4d\x36\xf4\x2e\x5b\x1d\x47\xd5\x93\x42\x15\x07\xc4\xc6\xc8\x5d\x73\x7d\xa3\x50\xd1\xfb\x18\xcc\x78\x8e\x3a\x88\xa7\x08\x56\x17\xab\xa7\x24\x8b\x67\x4e\x2e\x13\x25\xd7\xd6\xea\x72\x06\x24\x33\x52\x96\xa2\xb9\xb2\xcc\x71\x72\xd9\xca\xab\x4b\x20\x20\xdd\xa0\x29\x67\x91\x28\xa2\xd1\x5d\x4a\x23\x2b\x4c\x21\x44\x83\xfd\xf1\xbf\x4d\x0c\x29\xb7\x0c\xf1\x08\xe4\x45\x55\x57\x92\x40\x24\xf2\x33\x42\x98\x0a\x54\xd6\xe4\x90\x0a\x5b\xe1\x23\xa5\xd0\xf5\x87\xf9\x82\x48\xf9\x35\xe5\x11\x62\xc8\xe8\xa5\x6b\x2f\x3c\xa2\x20\xf3\xa8\x72\x92\xfb\x18\xc2\x12\xbb\xc3\x69\x30\x8d\x48\x38\xf5\xe1\xdc\x47\x2f\x84\x35\x60\xba\xe6\x8b\x80\x98\x50\xa2\x18\xfa\x3f\xac\x49\x90\x5f\x5e\x66\x41\x60\x57\x2a\xaa\x0b\xba\xa3\xcf\x6a\x23\x0c\xad\x39\x38\x15\x58\xec\x37\x82\x47\x33\xdc\x37\x30\x62\x89\x07\x1b\x48\x06\x60\x87\xe3\xb0\x8c\x90\x47\x42\x52\xc1\xbd\x23\x91\x05\x57\xc4\x84\x80\x7f\xee\xc2\x01\x2b\x23\x11\xc4\xe0\x3d\xc2\x3c\xda\x0a\x01\xcd\xc9\xd8\x47\xbd\x8e\x20\xa6\x38\x76\xb8\x71\x24\x9e\x3c\x92\x54\x94\xe0\x1a\x0e\xba\x51\x38\xa5\x0b\xc8\xcb\xce\xf9\xde\x9c\x34\xba\xcd\x76\x5b\xf8\x6f\x20\xe1\xe4\x11\x23\x8f\x76\xfe\x32\x80\x89\x79\xef\x3a\x94\x75\xd6\x18\xb5\x9f\x72\x77\xfd\xf4\x25\xb1\x02\x82\xc7\x60\xb5\x4c\x54\x34\x3c\xfc\x2e\xeb\x07\xa8\xba\xc1\xba\x50\x94\xb8\xe4\x37\x92\xa4\x2b\xde\xd5\x0c\x09\x64\x0f\xbe\xb2\x03\x87\x5e\x06\xae\x1f\x37\xe2\xa2\xcb\xef\xf6\x40\xc1\xb7\x43\xca\x9d\x8c\x8b\x36\x40\x1e\xdf\x0f\x06\x83\x41\x89\xbc\x21\x35\xf2\x9a\xd4\x77\xa5\x85\xcb\x26\xbf\x91\x5a\x5d\x31\xec\xf2\xde\xbe\xd8\x4b\xa8\x64\x32\xf5\xf1\xc5\xcc\x98\x82\xba\x8b\x5d\x62\x8d\xd4\x56\xa0\x42\x88\xf1\xf5\x3a\x93\x73\x0e\x9a\xc1\xe7\x5f\x25\x61\x48\x78\x87\xef\xd3\xff\xd4\xee\x0e\xe1\x6b\x4c\xe1\x8c\x47\x12\x63\xbc\x60\xba\x06\x2e\x2d\x1b\x7e\x9d\xfc\x9a\x7c\xff\x43\x49\xe6\x61\x8a\x0e\x21\x32\x95\x87\xa9\x1b\xe9\x4e\xb8\xe5\x64\xe0\x4a\x27\x50\xc8\x5f\x63\xd4\x44\xb6\xb9\xd7\x3c\x4c\xe4\x59\xba\x4b\x5c\x98\x5c\xf2\x22\xcb\x4f\x5d\xbc\x44\x27\xdd\x0c\xef\xa5\x99\x46\x67\x6b\x7a\x2c\x2b\xb1\x33\x9f\x95\x3f\x12\x93\x90\xee\x6f\xbd\x24\x36\xf4\x2e\xfe\xdf\x19\x0e\x5a\x26\xf0\xd7\x40\xfc\x72\xd5\x3b\xdc\x61\x37\x59\x87\x86\x05\x55\x38\x0b\xb8\xff\x5c\xf7\x2a\x4d\xb1\x2f\x9e\x59\x93\x45\xd1\xa4\x98\x65\x91\xd0\xc8\xb6\x26\x54\x82\x5d\x10\x19\xb8\x8d\x9e\x6a\x22\x3e\x42\xf9\x98\xb0\x5d\x10\x5e\xdb\x02\x0d\x11\x84\x5f\x2e\x6d\x6b\x02\x50\x54\x00\x84\x12\x0e\x02\xf6\xed\x50\x66\x57\xfe\x15\x71\x5f\x91\x84\x1b\xf8\x51\x99\x4c\x2c\x17\xe3\xfc\x92\x03\xa3\x4c\x68\x6c\xa7\x9c\x20\x92\xf6\xf9\x9f\x98\xac\x0f\xc0\x5c\x44\x40\xa7\xc7\x61\x2e\xef\x59\xa7\xca\x24\x1e\xc1\xc3\xa7\x0b\x7a\x17\x3e\xf5\x44\x80\xc2\x9e\xa4\x9c\x0c\x29\xa1\x51\x10\xd3\xd0\xb5\xd3\xac\x88\x12\x80\x4c\x44\x0d\x92\x5f\x80\xda\x28\xdc\xd5\x50\x71\x44\x71\x74\x02\x7b\x9d\x97\xee\x4a\x2a\x63\x67\x09\xd4\x5f\xc2\x42\x89\x1e\x28\xa2\x45\x45\x68\x6a\x6a\x56\xc4\x71\x73\xdd\xcb\x07\x04\x84\x69\x27\x22\xbc\x85\x03\xc8\xa5\x27\xcb\x88\xd4\x74\xe7\x86\xf1\x14\x7c\x19\x95\xb7\xad\x5f\xd7\xd3\x41\xfe\x69\x8c\x41\x59\x3c\xc9\x17\x03\xe5\x13\xfc\x0a\x4c\xf3\xad\xa4\x82\x90\x0f\xc0\x6a\x62\x67\x5e\xcd\x98\xd4\x59\xb8\x43\x5c\x5a\x21\x2c\x1e\x2b\xa6\x04\xd2\x4a\x01\x14\x60\xf2\x82\x68\x45\x31\xa6\x3c\xd6\x11\x01\x45\x6e\x79\xf8\x8a\x69\x75\x54\x00\xb5\x73\x98\xab\x89\x15\x45\x22\xed\xc9\x3c\x98\x86\x58\x92\x84\xc1\x34\x86\x38\xe7\xd0\x02\xe5\x07\xc2\xe2\x42\x0a\xe0\x79\x48\x01\xba\x9c\x90\xfd\x2a\x3d\x6f\x12\x48\x45\xe5\x4b\x35\xae\xe5\xba\x57\xb9\x94\x5f\x15\x93\xa2\x57\xfe\xad\x1f\xcc\xfc\xaf\x12\x9b\xbe\xe1\xcf\xc9\x2f\x1e\x36\x4a\xc6\x81\x03\x91\x4f\xd1\x2f\x72\x31\xa7\xc4\xb7\x2c\x83\xbc\x0b\x6f\xd8\xee\x41\x0a\x18\x24\x3d\xe2\x63\x46\xd3\xac\xa4\x43\x04\x26\x10\x8f\xa0\xc1\x4e\x34\xbb\xed\xaf\x72\x04\xbc\xed\x33\x5e\xe5\x2b\x77\xd5\x53\x7a\x17\x87\x96\xeb\xe9\xdd\xab\x10\xd2\xb5\xc6\x54\x4d\x14\x40\x99\xdc\x11\x8b\xa4\xc7\x52\x46\x4a\xf4\xde\xa6\x93\x58\x78\x37\x85\x94\x6f\xa2\x98\x53\x10\x6e\x22\xd3\x31\xac\x57\x2b\x1c\xc2\x0a\x4c\xa2\x63\x45\xfb\xe6\x2e\xbe\x1f\x51\x34\x47\x87\xf0\x2c\x8c\xb8\x60\x13\x11\x3a\xc3\xd9\x67\x83\xc7\x2d\xe3\xa9\x88\x2c\xcc\x60\xbb\x70\xe7\x16\xcf\x0b\x66\x98\x7d\x09\x94\x18\x44\x93\x53\xd3\x4b\x25\xb8\x9b\x29\x10\x46\x4c\x25\x3d\x73\x21\x63\x9b\x84\x64\x94\xf3\x88\xf9\x46\x2c\x9f\x5c\x74\x9b\x2a\x0a\x11\x5f\x4e\x91\xdd\x73\xc7\xf4\xd4\x1d\xbb\x10\xdd\x55\xaf\x56\xab\x55\xd1\x18\x3f\x1a\xd0\x55\xd8\x45\xf5\x19\x41\x45\x1c\xf8\x46\x7a\x35\xf0\x88\x96\x78\x20\x4e\x13\x21\x94\xa9\x43\x86\xfb\x26\xc9\xcd\x44\xf0\x10\x60\xec\xc4\x3c\x91\x9d\xb5\xbe\x1b\x4b\x74\x35\xed\x0a\x43\x08\xaf\xd9\xf0\xf3\x8a\x21\x9c\xba\xb2\xdb\x81\x4d\x78\x44\x58\xe1\x88\xf2\x6b\x3c\xa6\xc4\xfe\x55\x64\x61\x98\x05\xe1\x2d\x3b\x7f\x5e\x02\x49\x31\x45\x11\xe6\x5c\xa1\x73\x00\xc8\xc6\xa7\x83\x59\x80\x28\x2d\xf4\xfb\xd4\xbd\xb3\x3c\x99\xe2\xf1\x57\x72\x16\x44\x31\x64\xea\x8e\x48\x14\xbb\x9e\x87\x57\x00\xb1\x47\xc4\xb3\x60\x0d\x2a\xf2\x60\x57\x6d\x30\xef\x65\x1c\x6e\x6a\x4c\x20\x3d\xfd\xb9\x8c\xa0\x24\x32\x1c\x57\x05\x09\x86\x94\x21\x48\xc9\x8d\xa2\x29\x87\xad\x25\xbf\x58\xb6\xed\x3a\xd4\x8f\x2d\xef\x17\x32\x05\xf0\x4f\x9e\x78\x86\x5f\x59\x84\xe3\x7d\x5f\xfa\x7e\x20\xe8\x96\xd8\xe6\x25\x01\x56\x1d\x71\x26\x5d\xff\x2e\xf0\xee\x20\x62\x3d\x2e\x80\xc9\xc4\xf5\xad\x70\x2e\xc0\xc9\xd4\x8d\x1d\x1f\xb6\x77\xf6\xdd\x58\x9c\x78\x9a\x28\x9b\x44\x80\xad\x01\xe0\x16\x13\xd5\xad\x7a\xa2\x46\xa8\xe8\xce\x60\x0e\x81\x78\x02\x62\xcb\x7c\x40\xa6\xa6\x65\xb6\x20\x84\x85\x51\xb3\xf3\x8b\xc6\x3b\xca\x8a\x65\x53\x57\x00\x2f\x3f\x01\x54\x63\x27\x88\x8e\x5a\xf2\x09\x26\xf5\xd3\x88\x4c\x23\x9e\x0d\x1d\x61\x24\x0e\x5a\x4d\x72\x19\x02\x14\x23\xc2\xfe\xd7\xea\xc6\x6e\x1d\x50\xbb\x56\x37\xf3\x02\x6d\x26\x13\x00\x3f\x23\x02\x71\x4c\x18\x0a\xd8\x82\x86\xb8\x05\x8e\x2d\xa5\x64\x74\x61\x5d\x4f\xb5\x25\x97\x43\x4b\x90\xd9\x23\x85\x69\x3c\x58\xdb\x29\xe8\x6d\x9e\x59\xf7\x42\x69\xc7\x6d\x62\xea\x27\xc2\x40\x0e\x9a\xdd\x32\x9b\x8d\x32\xb9\x3c\x63\x3b\x5d\xe3\x32\xd9\x43\x04\xea\xeb\x8c\xc2\xd3\x06\x92\x9b\x4e\xc0\x18\xa1\x84\x95\xdb\xf8\x06\x21\x85\x1d\xc1\x0f\xd8\x8a\x62\x5b\x13\x8f\xb0\xe0\xb7\x59\x7e\xb4\x33\xa5\xb2\xd8\xed\x95\x49\xe1\xf3\xfd\x2b\xbb\x50\x26\xad\x6e\x93\x14\x3e\x7f\x2e\x94\xe0\x39\x93\x51\x29\xee\xb7\x4e\xe1\xfb\xea\xcb\x42\x49\xbd\xbd\x8f\x28\x4f\x94\x43\x7e\xe1\x56\x06\xd1\xdf\x5f\xc8\x38\xf0\x5d\x91\x5e\x31\x61\xd5\xd8\xba\xc7\xe6\x85\x92\x45\xf6\x48\xad\x5a\xdf\xd4\xf9\x24\xa3\xcb\xe9\x18\xf2\x15\x42\x1e\x15\x8e\x5c\x3d\x43\xf8\x38\xe0\x1c\x37\x65\xe8\x5b\x52\x10\xf2\x03\x01\x69\x25\x72\xcd\x96\xa1\x4c\x46\x18\x52\x3b\x18\xfa\xee\x03\xb8\x5a\xd2\xfb\x89\xe7\xda\x6e\xcc\x16\x1d\x30\x33\xd5\x6b\xd6\x83\x2b\x5f\xc1\x44\x35\x0a\x38\x58\x76\x78\xfc\x90\x88\x7f\x57\xfa\x35\xb6\x26\x11\x80\x6f\xc0\x0d\xe4\xa8\x5a\xa9\x54\x8e\x36\x20\x2d\xd5\xac\x94\x27\x50\x67\xac\x4e\x4a\xe5\x50\x6f\x09\x51\x7a\x93\xef\x29\xf1\x82\xa2\x09\xbd\x0b\x15\xb9\x0d\x2a\x09\x7d\xd8\x14\x5e\x75\xd7\xd1\x86\x32\xb6\x26\x98\x12\x07\x11\xb4\xad\x48\x64\xe0\x72\x87\x3e\xdf\xee\x40\x03\xe1\xcb\x51\x6c\xe0\x08\x25\xe3\xc6\x09\x1e\xf8\xc8\x92\xbb\xa6\xdc\x1d\xbd\x39\x89\x66\x2e\x84\xc2\x60\xb3\xc3\xd0\x9a\x8c\x5c\x3b\x42\x6a\x5a\x5f\x49\xb1\x19\x87\xde\xda\x79\xa9\x42\x40\x49\xe1\x89\xb5\xf8\x4c\x5a\x3e\x82\x1b\x8b\x5d\x5f\x10\x62\x35\x91\x18\xc4\x69\x89\xdd\x14\x53\x4c\x02\x08\xaa\x3f\x9f\x59\x73\x25\xcd\x53\x48\xc1\xdd\x8c\x0c\xa7\x56\x68\xf9\x31\xa5\x64\x06\x21\xf6\xa0\xa3\x5a\xfe\x1c\xa9\x89\x8b\x07\x9b\x12\x0b\x1f\x07\x2c\x20\x06\xe0\xf9\xae\x3d\xf5\xac\x50\xc0\x65\xab\x93\x79\x54\x15\x7a\xf1\x51\x4d\xfe\x56\x97\xbf\x6d\x90\x3d\x7e\x19\xcc\x4e\x7d\x65\x48\xe3\x33\x6b\x52\x2c\xec\x17\x0c\xf3\x8c\x07\xa8\x88\xb9\xd3\xb4\x34\x7d\x0f\xc0\x53\xcc\x62\x5d\x9f\xb0\x45\xca\xe1\xc0\xfa\xa0\x9c\x09\x0c\x4b\x71\xcf\x80\x28\x2a\xfe\x14\x74\x74\xca\x88\xf1\x99\x41\x9b\x1b\x7a\xd3\xbd\xda\x84\x93\x99\x7b\xfe\x55\xef\xeb\x35\x48\x0b\x75\xff\x32\xbd\xfb\x24\xc2\x08\xa4\x58\x3f\x0a\xfb\x85\x32\xb9\xea\xa2\xc1\x2e\xcd\xab\x53\xb6\x75\x1e\x55\x0b\xd9\xd1\xee\xfc\xf5\xa3\xed\xac\x38\x5a\x8b\x8f\x76\x90\x99\xea\x4e\x6e\xf7\x85\xc3\xaa\x3c\x69\xd2\x39\xeb\x74\x15\x05\xf4\x19\x0e\x94\x4f\x5a\xcd\xb3\xc6\xda\xc6\x16\xac\x2f\x50\x09\x21\x41\xdd\x30\x10\x1b\x3a\x7f\x30\x26\x4c\x92\x15\x95\x42\x36\xc5\x11\x9b\x20\xdf\x2d\x53\x42\x82\xf4\x76\x03\xc5\xba\x70\xce\x5f\xc5\x83\x9d\xaf\x99\xf0\x65\xb5\xc4\x29\x90\xc9\x28\xcb\x4d\x05\x07\x2a\xa4\x43\x58\x0d\xf4\x1e\x32\x76\x03\x54\x89\x1a\x01\x07\xd7\x23\xa6\x38\xa2\x9a\xa6\xee\xe1\x51\xe5\x59\x92\xe8\x4c\x40\xa1\xb8\x3e\xd1\x2e\x56\x8c\xda\xf7\xa9\x6b\xdf\x32\x26\x41\x36\x34\x61\x52\x4f\xe2\xf6\xee\x63\x24\x94\x39\x20\xa4\x0a\x6d\xdb\xb5\x4b\xa6\x81\x84\xfe\xd7\x34\xac\xcb\x14\x9c\x92\xc5\x71\x8e\x57\xbf\xa2\xbc\xce\x75\xad\x3b\xc0\xf8\x63\xdb\x83\xe8\xdf\x41\xab\xd9\x6d\x62\xdf\xf5\x01\x58\x3c\x33\x74\x1c\x10\x04\xd9\xb5\x10\x71\xe1\xba\x87\x14\xca\x6c\x4b\x72\x23\xf2\xab\x1f\xc4\xa8\xdc\x70\x98\x3e\x5d\xdf\x8f\x58\x9b\xe6\x3b\x28\xa6\x5d\x4a\x2e\xa1\xba\x93\xc4\x79\x90\xc9\x72\x9b\xd8\x20\x14\x37\x61\xe3\xa5\x1d\x6d\x8b\x82\x14\x1b\x63\xab\xc7\x15\xae\x6a\xb5\x2a\x8c\x23\xfc\xf6\x9f\x24\x66\x5e\x9f\x4e\x78\x73\x20\xc8\xab\xb5\xd9\x3c\x6d\x37\x4f\x98\x3a\x90\xdb\x60\x7d\x61\x83\x80\x73\x1d\xdc\xa1\xf5\x1b\x81\x4f\x2d\xc2\xf3\xfd\x03\x7a\xc3\xcc\x5f\x71\xf0\x9d\xc6\x11\x01\x5f\x07\x09\xf7\x27\x6f\xf9\x44\x81\x13\xd3\xac\x5c\xc2\xa1\x23\xb4\xec\xdb\x48\x07\x95\x50\x53\x54\x0a\xcb\x46\x3b\x86\x20\x98\x81\x4b\x3d\x27\x12\x52\xab\x06\x22\xf7\xa7\x83\x01\x53\xb1\x04\xa6\xbc\xb0\x44\x8a\xcf\xd9\x68\x25\x41\x69\x48\x4a\x9b\xab\xc4\xe7\x3f\xa4\xbf\xe3\xd4\xb7\xb5\x7d\x19\xea\x87\x1a\x01\x63\xc8\x6c\x7f\x3a\x48\x42\x65\x93\xf7\x2b\xf4\x54\xd7\xc6\x8b\x3d\x4c\xb1\x5a\xe1\xa0\x8a\x7e\x92\x74\x8a\xfd\x5d\x16\x2d\x19\xc2\x10\x84\xa3\xfa\x1e\x49\x7d\x92\x20\x3f\x4c\x07\x3c\xb0\x8c\xfd\xf6\xc7\x1f\xfa\x8a\x9e\x04\x91\x30\x94\xa3\x0f\x24\x63\x44\x3e\x31\x2b\x1c\x8a\x68\x54\x23\x50\x43\x8a\x6d\x65\x6d\x5e\xc4\x9c\xe5\xf2\x60\x11\x6a\x47\x96\x05\x50\x04\x2a\x1f\x4a\xef\x7d\x1d\x80\x6a\x7f\x3a\x28\x2a\x03\x2f\x14\x52\xdf\x37\x84\xb9\x25\x93\x3d\x38\x67\x3c\xa6\x65\x9b\xdf\x7d\xad\x6f\x79\x08\x24\xc8\x6f\xd3\x9c\xe6\x74\x09\x39\xaa\x31\x54\x76\xcb\x24\xa5\x9a\x84\xb2\x0d\x12\xe1\xdd\x00\x7f\x6a\x3a\x28\x8b\xa9\x06\x9d\x91\x89\xc6\xca\xc3\xdb\x07\xc1\x5a\x30\x41\x28\x79\xd2\x25\x91\x4f\x84\xea\x95\x48\xde\xc8\x8f\x5f\xe7\xc8\xa5\x91\x07\xd2\x4e\x46\x3c\x37\x8a\x17\x0e\x9f\xd1\xb7\xc2\xe1\xd7\x07\x1a\x06\x09\x1f\x44\xa2\xd1\x84\x17\x4c\xb2\x3f\x55\xbf\xac\x3c\x7a\x29\x3b\x69\x1e\x88\xc6\x14\x46\x30\xda\x15\xfd\x55\x4a\xf5\xd5\x54\x7b\xf8\x9c\x5d\x91\x7d\x87\x0e\x5c\x9f\x3a\x05\x25\xc1\x25\xef\x1f\x5f\xca\xa2\xbc\xc6\x9f\x23\x0a\x48\x91\x82\x39\x60\x92\xf4\x09\xf7\x86\xc8\x4b\x1c\x67\x85\x43\x7f\x3a\x46\x9b\x9e\xa8\xc8\x91\x0b\xc1\x9c\x18\x87\x2e\xbd\xa3\xab\xb0\xc5\xb5\x42\xed\x2d\x18\x29\x4b\x01\xbb\x66\xac\x4e\x1e\x87\xd1\x9b\x27\x19\x1a\x96\xfe\x22\x78\x23\x1f\x92\xf9\x53\x32\x6c\x06\xb0\x1a\xdb\x3e\x20\xf0\x96\x49\xad\x5a\x92\x11\x16\x0d\x65\xd8\xc1\x80\x00\x2b\xdd\x88\xc4\x1c\xd4\x8a\x6f\xc5\x62\x73\x87\x59\xaf\xc8\x17\x5f\x20\xbe\x47\xaa\xa5\x24\x0a\x27\xd9\x02\xa1\xdb\x6a\x76\x4d\xf6\x1f\x11\x10\xcd\x3f\xd1\x8b\x2a\x33\xd2\x70\xee\x2c\x61\x0a\xc0\x13\x49\xdd\x03\x8d\xfe\x2e\x70\x85\xc7\xb4\x1b\x38\x0b\xc1\x80\x6b\xd9\xec\xbe\x88\xf4\x56\x99\x0d\x5e\x54\x9d\x10\x20\xad\x88\x25\x5b\x63\x2f\xf6\xb0\xc5\xd4\x42\xe3\x31\x9d\x94\x84\x74\x6c\xb9\x00\x01\x07\xb9\xa9\x10\x41\x5c\xd9\x86\xb2\xc9\xa9\xe4\x58\x19\xa5\xcc\x70\x85\x37\x87\x9a\x5f\x64\x49\x1b\xab\x8c\x76\x42\xe9\x6d\x47\x90\x49\x6d\x4c\xba\x53\x27\xdf\x98\xc4\x63\xae\x60\x44\xfa\x00\x90\x0c\x80\x94\x3e\xe8\x05\xa2\xda\x77\xfd\x3f\x9b\x09\xd0\x4e\x4e\x03\xab\x72\xa0\x39\xb2\xc2\x47\x8f\xbc\x0c\xa9\x75\x9f\x3e\x78\x76\x10\x59\x69\x39\x57\x87\x0d\x96\x70\x26\xc2\x7f\xe9\xf8\x99\x02\x3a\x1d\xd3\x27\xb1\xe0\xc5\x8b\x5c\x26\x28\xae\xc6\x7c\xbc\x6e\x44\xe8\x78\x12\xcf\xc5\xdb\x93\xa2\x8a\x46\x64\x22\x72\x7b\xa6\x32\x5f\xe4\xee\x99\x51\x93\x27\x69\x59\xda\x69\x01\xf6\xc3\x34\x19\x39\x10\x7e\xa8\xfc\xb6\x27\x57\xb4\x1a\xfc\xaa\x5f\x82\xd4\x16\xee\xd4\x7d\xe0\x0e\x5e\x5d\xee\xe2\x5d\xf5\x52\x55\x2c\xe5\x53\x52\xa3\x28\xad\xbb\x5c\x14\x2d\xb4\x57\xef\xc9\x46\xe4\x3b\x2b\xd4\x42\x7a\x6a\xb2\xe6\x38\x0d\x0b\x9c\xad\x38\xa4\x71\x0a\x35\xaf\x84\x80\x7b\x2a\x1d\xb0\x96\xc8\xba\x47\xa7\xbb\x9a\x1d\x22\xf9\x42\xc1\x8c\x4d\x8c\x51\xf0\x4d\xa2\x0f\x27\xb6\x29\xf8\xa2\x96\x7c\x51\xd7\xbe\xa8\x27\x5f\x6c\x68\x5f\x6c\xac\xc4\x46\x91\xce\xc7\xcc\x49\x8d\x05\xbc\x28\x67\x9f\xc2\x69\x85\x03\x3a\xb3\x33\x3c\x33\x70\x5b\x70\x31\x45\x24\x61\xa5\xc2\x46\x64\x9e\xfc\xa2\x93\xaa\x92\xd8\xf5\xaa\x7a\x95\xc4\xcc\x57\xd3\xbf\x48\xac\x7e\x75\xfd\x8b\x8d\xc4\x1c\x98\x62\xe3\x6a\xf8\x7e\x49\x5f\x16\xd8\x0f\x33\x33\x6d\x2e\x5b\x55\xcb\xd6\x1f\x41\x77\x63\x85\xb2\x06\x43\x9f\xd1\x76\xf6\x04\x9b\xc7\xe3\x1d\x12\x94\x6d\xf0\x2d\x3c\xa1\x27\x0f\xc6\x69\x93\x09\xf8\x92\x72\x0c\x86\x5f\xd0\x47\xa2\xc7\xae\xfa\xae\x3f\xfc\x85\x44\xd4\x16\xa7\xf9\x27\xf0\x5f\x49\x6b\xd7\xa6\x8c\x20\xe8\x51\xa1\xce\x27\x4d\x01\x36\x69\x03\x59\x34\x12\x35\xcc\x48\xbe\x5d\xd3\xf1\x24\x08\xad\x70\x0e\x56\x27\x6b\x88\xca\x7f\x30\x0d\xe1\xe5\x3c\xf0\x23\xd0\x0b\x51\xe5\xc4\xbf\x45\x4d\xf1\x02\x8f\x99\x74\x84\x11\x8a\x95\x1c\x07\x8e\xaa\xd6\xd3\x4a\x34\x72\x07\xf1\x09\x9d\x63\x07\xd8\xd7\x7f\xec\x91\xcd\xe4\xfb\x31\x8d\xad\x13\x3a\x67\x3b\xb9\x9e\xba\x42\xe6\xc8\xaa\x58\x5e\xdc\x8e\xce\x68\x6c\x91\xbf\xfd\x8d\x50\xf6\x27\xa3\xa7\x11\xdc\x49\x08\xda\x71\xe8\xa5\xdb\xab\x6d\xcb\x31\x5f\x1c\x5c\x14\xc3\xa1\xeb\x3b\x56\xe9\x35\x79\x4f\xb5\x3c\x7b\xc2\x98\x2a\x8c\x49\x60\x4e\x5d\x0f\x42\xf6\xfb\x36\xd3\x39\xe9\x7d\x4c\xd1\xa8\x22\x0c\x87\x90\x9b\x88\x1d\x28\x80\xbd\x06\x56\xe2\x60\x3a\x1c\x95\xb9\x43\xc3\x04\x33\xa8\x5a\x18\x75\xf8\x6d\x1a\xc5\xc4\x22\x9e\x1b\xc7\x1e\x2d\x93\x36\x99\x59\x91\x5f\xe0\x46\x48\x91\xe1\x6f\x48\x63\x72\xe7\xc2\x93\xd3\xd8\xb2\xe5\xf3\x05\x77\xcc\x45\x6d\x30\xc2\x27\xcd\x48\x70\xfd\x9e\xec\xf1\x27\xbb\xca\x20\x0c\xc6\xec\xe0\x6f\x06\x0e\x2d\x72\x18\x61\xcf\x1a\x4f\x8a\x54\x72\x16\xdd\x1a\xc8\x0b\xb2\x51\x2f\xc3\xbf\xfa\xd6\x56\x49\x22\x70\xcd\x1f\x45\xab\x13\xcc\xb2\x84\x9e\x11\xf1\x80\xc3\x4a\xce\x27\x09\xaa\x91\x15\x51\x52\x80\xc4\xde\x85\xd7\xfc\x86\x01\xe2\xc4\xc1\xf3\xa9\x97\xba\xa9\x70\xdb\x5c\x8d\xb1\xa3\x4e\x26\xde\x14\xae\x71\x96\xe3\xb8\xfc\xf2\xba\xbd\x29\xf0\x02\xfa\x10\x29\x5a\xa4\x15\x87\x7a\xb1\xf5\x91\xfc\x4a\xd6\x6a\x25\xf2\x3b\xa9\xb2\x9b\x75\x95\xbc\x26\xb5\x12\x79\x41\x5e\x6d\x4b\xaf\x49\x26\x18\xe3\xc0\xd9\x95\x37\x1d\x94\x71\xb6\xc5\x7c\xbe\xaf\xf5\x3f\x9d\x15\xc8\x0b\x23\x27\xfa\x8c\xd0\x3d\x79\x41\xe6\xbb\xcf\x92\x41\x9c\x88\x34\xa4\x09\x4c\x44\x18\x8c\x79\x42\x73\x84\xa6\x86\x1f\x0a\xd9\x91\xa8\x1f\x2b\xf8\x30\xbc\x47\x21\xb5\x6e\x39\x49\xe4\x14\x2c\x6f\x27\x98\xf9\x2a\xb7\xf6\x81\x27\xf8\xc0\x24\xb3\x64\x49\x56\xf1\x9b\x12\xb0\x6a\xa3\x2e\x1a\x05\x9f\x63\xb2\x47\xce\xac\x78\x54\x19\xbb\x7e\x91\x56\xb0\x7c\x99\xd4\x4b\x30\x81\xea\x50\x1a\xbe\x43\xc6\xee\xbd\x50\x3c\xc7\xca\x6a\x8f\x2a\x19\xf6\xfd\x14\xff\x16\x8e\x7c\x3a\xc9\x4a\xc9\x74\x02\x56\x51\x3f\x10\xc8\x49\x7c\x57\x45\xc0\x41\xce\x84\x99\x15\x91\x90\x7a\xd4\x8a\xb8\x03\x85\xb1\x7f\x9f\xef\xeb\x1b\x85\x15\xbb\x32\x0e\xee\xa8\xec\xcc\x23\xb6\xdf\x4e\xe3\x08\x77\x2d\xec\x59\xa4\xfa\x2b\xaf\xaf\x93\x6e\x6c\xf9\x8e\x15\x3a\xa2\xe3\x7d\x97\x23\x54\x50\xf2\x81\x9d\x02\x04\x8e\x05\x3b\xe0\xde\x2b\x21\x34\xc5\x13\x42\xbb\x61\x14\xab\xb4\x38\x09\x78\x4e\xe1\xc8\x8e\xee\x00\xfd\xe7\xfe\x86\x8e\xb0\x20\x32\xf0\x3d\x75\xca\xfc\x23\x37\xe2\xef\xd9\x8e\xe2\x89\xcc\x93\x18\xb8\xb1\xf6\xc8\xa4\xb4\x4b\xe2\x51\x48\x29\x6f\x92\xf5\xb8\x3d\x20\x3e\xbb\xdb\xe0\xfe\x34\x66\x2d\xa9\xd4\x64\xa3\xf1\x88\xfa\x7c\x68\x03\xcf\x1a\xc2\x1b\x30\xb8\x8b\xf1\xe9\xaa\x10\xf2\x1e\x72\xa7\x3a\x81\x8c\x0b\xae\x48\x4a\x4c\x84\x15\x51\x45\x67\xc1\xd0\x0d\x42\x37\x9e\xc3\xd3\x96\xc4\xf3\x80\x26\x5e\xc3\xe8\xcb\x64\xec\x3a\x0e\xdb\x70\x43\x9e\x92\x8b\x24\xd3\x28\x27\x86\xfc\x8d\x54\xef\x6b\xea\xf4\x00\x75\x3e\xb9\xc0\x45\x2c\x59\x51\x0a\xf4\xc9\x0b\xe9\x59\x4d\x74\x2f\x78\x9d\xf0\x66\x1e\x61\xec\x5a\x1e\xe9\xda\x0a\xa4\xeb\x79\xa4\x71\x7e\x73\x28\xd7\x33\x94\x33\x44\x60\x3e\xc8\xc8\x1d\xb2\x73\x47\xcc\x74\x9a\xce\x86\x42\x47\x9b\x96\x86\xe3\x90\x8d\x3a\x3b\xbd\x04\xc2\x19\x57\x98\xc6\x01\xbf\xff\x6b\x64\x52\x93\xba\xca\x0e\x64\xd8\x83\x7e\x6e\x17\x92\x03\xc8\xee\x01\xb6\xe7\xda\xb7\x7c\xfd\xe3\x27\x4e\xdf\x53\x3f\xd4\x2b\x71\x23\x98\xf8\x4a\x24\x02\xa4\x61\x18\x84\xc5\x02\x7f\xa2\x54\x15\x48\xcc\x02\x88\x87\x65\x99\xd0\xf4\x91\xa0\xf8\xe7\x8b\x01\x2a\xe6\x50\xa9\x31\xb9\x81\x92\x40\x32\x29\xa9\x67\x9b\x10\xbe\xc6\xc9\x83\x68\x30\xd0\x9c\xb3\xf9\xbb\xb7\x30\xdd\x84\x34\x02\x93\x38\x4f\x08\x9b\xf8\x14\x3f\x53\xb3\xf8\xeb\xa8\xf2\x3d\xd5\x1e\x84\xf9\x1c\xd1\x43\xd1\x94\xcf\x91\xfb\x4f\x25\x29\x1d\x53\xf9\x1c\x8d\x4a\xb2\x74\x99\x56\xb5\x63\xdd\xe4\xae\xb8\xe4\x26\x4f\x20\xfc\x71\xc1\x06\x09\x98\x0e\xb8\xb6\xc2\x73\x20\x3e\xcf\xd4\x4b\x6c\x12\xc5\x92\x6a\x83\x55\x9f\x2a\xd4\xf2\xec\xf3\x24\xd2\x06\x0d\xf7\x99\x42\x60\x99\x10\x65\xf0\x61\x20\x53\xa6\x3f\x1d\x70\x59\x32\xb6\x51\xb1\x2d\xcf\x83\xc1\x94\x33\x05\x4a\xbc\xa2\x3c\xa5\xd2\x95\xd9\x51\x05\xff\x15\xc0\x36\xa9\xce\xb1\xef\xd9\x7f\x94\x20\x7c\x53\xff\x58\x31\xc9\x71\x92\xa4\x96\xbb\xc4\x77\x22\xc7\x75\x10\x09\xdf\x13\x9e\xbd\x70\x51\x78\x5e\x50\x91\x6a\x14\xc1\x44\x97\xd4\x44\x2a\xff\x24\x41\xe1\x9e\xb1\xa6\xb8\x2c\xc9\x20\x83\x73\x9e\xf4\xce\x33\xe0\xe0\x52\x35\xbf\x99\x0e\x2c\x19\x87\xda\x62\x03\x7a\x4a\x06\x3c\x31\xb4\x08\x7d\x34\xd4\x5b\x23\xbb\x80\xbc\x26\xa3\x38\x9e\x44\xaf\xd7\xd7\xa9\x5f\x99\xb9\xb7\xee\x84\x3a\xae\x55\x09\xc2\xe1\x3a\xfb\x6b\x1d\xa9\xe4\x8d\x34\xc9\xbb\x66\x1c\xad\x12\x6a\xa9\x67\x68\xd3\xf7\x07\x39\x0d\xe8\x58\xac\xc6\x40\x62\xf3\x4b\x38\xbd\xac\xfd\x8c\x67\xb2\x58\x8d\x99\x9e\x74\xa9\x30\x1f\xe6\xba\xc3\x18\x5f\xb9\x64\xf9\x74\xbe\x6e\xf9\x05\xa4\xe3\x8d\x73\x07\x12\xd1\x58\xf1\xd2\x4c\xee\xde\xfc\x33\x1c\x8e\xbc\xe0\x68\x9f\xe6\x6e\xfd\x33\x2b\xf4\x8b\x85\xb6\x0f\xb9\x4e\x94\xa7\xb6\x5f\xc4\x68\xa4\x54\xff\xc2\xcf\x02\x41\x77\x37\xd1\x80\x0f\x2d\xcf\x23\x49\x0a\x36\x79\x16\xb9\x51\xb0\x56\xaf\xd6\xeb\xf2\x2c\x5a\xee\xb2\x63\x2c\x95\x71\xdb\x49\x1d\x42\xa2\x3d\x58\x19\x6b\xe8\x2b\xb4\xbc\x4d\x35\x46\x6e\x41\x93\x6a\x31\x73\x8b\x7f\x5a\x53\xe6\xd1\x25\x59\x6a\xf3\x5c\x7b\x34\x9b\xf8\x20\xa4\xd1\x08\x43\x77\xd0\xdf\x81\xa9\x38\x32\xf5\x78\xe2\x58\x85\x81\x03\xb9\xc2\x66\x6a\x2b\x6b\xc1\x43\xcc\x3b\x8c\x2c\x40\xa7\xff\x1d\xb0\x00\x94\xb9\xab\x6a\x34\x05\x95\x0f\x1d\xe0\xd2\x91\x4e\x6c\xbf\x99\x81\x52\xed\xd3\x3b\xf0\xc9\x5c\x5f\x27\x11\x58\xaa\x82\x88\x92\xb5\x35\x74\xe5\x8c\x47\xe0\x9d\x3b\x12\x30\xb3\xac\x91\xe7\x02\x7c\xdb\xae\x91\x3d\x72\x81\x87\x3c\x53\xc2\x8a\x89\x99\xad\x59\x13\x8f\x85\x95\x81\xcb\x36\xfb\x62\x91\x96\xc8\xde\xef\x1c\xec\x2a\x3b\x4f\x7f\xfc\x41\x28\xec\xb9\x4c\x0f\x6b\xc4\xc5\x12\xf9\x8d\x54\xef\x77\xe4\x9b\x63\x65\x6c\x4d\x04\x8d\xc2\xe7\xcf\xf7\x6c\x39\xa0\xf5\xe1\x61\x62\x39\x45\xbd\x6e\x25\x0e\xb8\xbe\x53\xdb\x2e\xb1\xdb\xac\xa4\x82\xd0\xbf\x8a\xf5\x31\xe5\xcc\x45\x67\xa4\x43\x87\xad\xfb\x49\xf1\xbf\x3e\xfd\xe7\x3f\x6d\xbb\xf6\xe3\xcb\x7f\xa5\x52\x55\xa4\x9d\x60\x32\x4e\x34\xe0\xd7\x03\x2a\x0e\xf8\x98\xc5\x49\xe0\xb6\xf0\x32\xc3\xeb\x52\x2d\xeb\xc5\x86\x6f\x3b\xc5\x66\x75\xbd\x59\x4b\x85\x8f\x83\xe1\xe0\x53\xb3\xd7\x39\xfd\x22\xfd\x5a\x93\x0c\x02\x76\x00\x31\x77\xdc\xdb\x5b\xb8\x74\x0b\x45\x0b\x5e\x9b\x42\x17\x3c\x90\x53\x19\x46\xf9\xed\x4b\x40\x30\xe9\x1d\x91\x7a\x9a\x1b\x4d\xe0\x0e\x95\x7e\xb3\x51\x9e\xd7\x34\x3f\x3b\x45\x56\x13\x05\x41\x79\xdb\xa6\xde\x40\x66\x9b\x56\xe1\x24\xa1\x93\xea\xdb\x36\xc0\x04\xb0\xe2\x06\x91\xf9\xdb\xdf\x80\xd0\x27\xf8\xfa\xe8\xf4\x4b\xe5\xe8\x54\xcc\x33\x3e\x9e\xa7\xbf\x4d\x8e\x66\x02\xdf\x25\x4a\x72\xd2\x2e\x2c\x7a\xe9\xb0\x47\xad\xd0\x1e\x69\xce\x81\x6a\x0c\x7c\x9f\xed\x76\x10\xf5\x28\x27\x42\x18\xdf\x50\x83\x9b\x28\x4f\x5a\xa9\x07\xd8\xa2\xb4\xad\xf9\x1c\x9c\x00\xa3\x2f\xe0\xf5\x0d\x9a\x2d\xa6\xe5\x33\x81\x9a\xd2\xaa\xec\x91\xaa\xe0\x16\x40\x29\x16\xc0\x07\x70\x3a\xee\x7b\xd4\x11\xf7\x79\x76\x52\x1b\x7c\xde\x2b\x89\x32\x29\xa6\xb8\x58\x68\x36\x6b\x85\x32\x51\x5e\x01\xab\x65\x52\x2b\x95\x95\xc1\xf0\xe3\x47\x19\x1d\x7f\xdf\x2c\xd6\x4a\xbb\x9a\x4d\x59\xb9\xa3\xa4\xfa\xbc\x56\x53\x3a\xdd\x43\x87\xf1\x90\x12\x3f\x30\xc4\x14\xc9\xf4\x69\xb8\x8c\xb0\xd7\x38\x65\x4c\xd7\xcc\xf4\x06\x14\xfb\xa2\xb9\x2b\xb2\x9a\x32\x3a\xa5\x6b\xa5\x64\x67\x58\xc0\x11\xa5\x82\x91\x37\x06\xce\xa8\xc3\x7f\x91\x7e\x4c\xc5\xd8\x46\x4b\x86\x9d\xca\x20\x87\x36\xfb\xdb\x99\xda\x34\xc4\xf5\x6c\xf9\x8e\x5c\x8c\xc4\x8d\x55\x5d\xf1\x53\xb3\xdb\xfe\x82\x51\x6c\xc1\x18\xfc\x4b\x07\x53\x8f\xb8\xfe\x20\x08\xc7\x68\x10\xb3\xfa\xc1\x54\x04\xd9\xd9\xdc\x52\xbc\x60\x31\x37\xbb\xed\xa5\x0b\x19\xf0\xd6\x52\x52\xce\x2e\xd3\x89\x74\x73\x87\x38\x95\x23\xe1\x30\x4a\x70\xdb\x47\xe4\xf7\x3d\x52\xf8\x7b\x81\xad\x66\x1b\x1e\x6a\x0b\xff\x5d\xd0\x44\x03\xdd\x61\x71\xdb\x64\x87\xea\x12\xe9\xed\xb6\x0b\xe5\x9c\xe0\xc5\x17\x79\x21\x83\x2f\x88\x3d\x52\x43\xab\xc5\xcf\x22\x91\x37\x7b\xd7\x3d\xd3\x8c\x32\x36\x40\x30\x17\x76\xd5\x01\x5d\x32\xc5\x14\x82\x9a\x1d\xea\xb9\x63\x57\x0e\x24\x41\xe2\x4f\xf7\x4f\xc3\xd0\x35\xd4\x57\x02\x25\x33\xe1\x98\x60\x38\xb4\x20\x68\x8a\x4c\x2c\xc7\xf1\x5c\xbf\x20\x8c\x25\xab\x8c\xc6\x08\xb3\xf0\x5c\x71\xd8\x4a\x19\x2f\x7b\x23\x3a\x27\xc1\xd8\x8d\xe1\xac\x91\x67\x1d\xa8\xe3\x5a\x26\x99\x68\x3a\x99\x78\x73\x14\x62\xfe\x03\x54\x31\x9b\x40\xa1\x94\x31\xc0\x18\xbe\xfd\x91\xe5\x37\x93\xa6\xaa\x2a\x4d\xaf\x54\xe6\x9f\x03\xf2\xf2\x3c\x4e\xb2\xb7\x72\xe7\xd3\x89\xe0\x6a\xe5\xd9\x63\x26\xe3\x9c\xc7\xa5\xca\xea\x7f\xd9\x54\x3c\x72\x26\x12\x6f\x38\x7b\x24\x39\x99\xb6\xe9\x09\xbf\x32\xe9\x7b\xb7\x46\x6a\x5f\xc0\xe3\x69\xa4\xe3\x57\xe4\xf0\x99\xa8\x7c\x7e\x23\xfe\x78\xbe\x47\x0a\xaf\x55\xa6\xcb\x87\xc1\xd4\xca\xcd\xef\x7f\xce\xf2\x4d\x3a\x96\x1a\x4a\xde\xb2\x56\x2a\xa4\x46\x90\x3e\x5b\x2b\x31\x8d\xe2\xa2\x3d\x2a\x29\xfd\x6e\x3e\xe2\xb8\xb4\x47\xa9\x43\x20\x0d\x47\xb4\xbe\x4e\xae\x7c\x19\x37\xa8\xf9\xf1\x24\xe1\xdb\x7d\xcb\xf5\x48\x30\xe5\x4b\x62\x05\x99\xc0\x23\xcd\x7c\x0e\xab\xb7\xe6\x5b\x77\x82\xf1\xf2\x8a\x32\x3a\xf5\x63\xd7\x4b\xf4\x9a\xbc\xe8\xbe\x56\xb7\x49\x44\x50\xdf\xaf\x64\x9f\x7a\x9e\x1e\xd7\xa7\x9a\xf7\x12\xc8\x20\xcb\xb6\xa7\xe3\xa9\x67\xc5\x4a\x14\x46\xb2\xfd\x7f\xaa\x7e\xa9\x10\x72\x66\xdd\x52\x12\x4d\x43\xca\xe3\xb2\xf1\x6a\x0f\xd8\x71\xd2\x77\xb4\x08\xa1\x2a\x69\x4e\x48\xdf\xd2\x92\xd0\x78\x25\x74\x56\xe2\x2c\xcf\xfb\xf5\x31\x98\x42\x20\x8b\x43\x63\x8c\x22\xb5\x50\x6f\x47\x0b\x06\xe0\x48\x80\x7b\x51\x7f\x4e\xec\x11\x85\x97\xf9\x24\x39\xa9\xf4\xd5\x92\x1a\xea\xc8\x8a\xf8\xf5\x0d\xb1\xe6\xd3\xc9\xf6\xcc\x57\x02\xb8\xa7\x29\xf1\x87\x63\xd4\xd2\x2d\x9f\x64\x03\x1b\x55\xb3\xeb\x8c\xdd\xd8\x38\xaa\xfd\x33\x1e\xc3\xaa\xc5\x7e\xaa\xd1\xb7\x7d\x4a\x42\xba\x06\x1d\x70\x92\xc8\xea\x05\x0e\xfb\x66\xf4\x48\x19\x44\x29\xb9\x14\x91\xc0\x1f\x06\x60\x6d\x09\x25\xc3\xf0\x7d\x47\x26\x29\x2e\xdc\x25\x00\x52\xf7\x36\xa5\x0e\xdf\xfe\xc7\xd6\x3d\x49\xc5\x78\x2e\xbb\x43\xc4\xae\x87\x2c\x49\x64\x71\xa9\x22\xf2\x48\x7d\x5b\x91\x72\x4d\xe5\x5e\x2f\x7e\xbe\xaf\xf5\x3f\x7f\xfe\x83\xc9\x76\x69\x7d\x55\x2d\xc6\xb4\x8b\x25\x3b\x70\x81\x5b\x37\xe1\x93\xda\x17\x7e\xcd\x3c\xb0\x30\xe9\x73\x4a\x45\x56\x7b\x96\xd2\x92\xcf\x03\x19\x02\x1e\x84\xf0\xb2\x55\xe6\x01\xef\x29\x38\x01\xf4\x4a\xe4\xba\xb2\xd6\x99\x17\x30\x5a\x7e\xb0\xc3\xc0\xfa\x41\x18\x77\xa8\x15\x05\xbe\x62\x21\x16\x6b\x94\x1f\x0b\xbf\xe7\xc4\xe0\x8a\xdb\x96\x42\x84\x0d\x37\x0e\x02\xe2\x05\xfe\x10\x6d\x56\x3a\x2d\x43\x23\x00\xcb\x77\x31\x28\xc2\xd3\x4c\xa1\xc4\xce\x8f\xb5\x5a\x0e\x69\x3a\xee\x53\x87\x89\x16\x9a\x33\xf4\x16\x52\x84\x94\xa6\x12\x7e\x93\x35\x39\x0d\xbf\x1b\xc0\x15\xf2\x46\xe4\x8e\x29\xd3\x9d\xe9\xfd\xc4\x0d\xa9\x83\xcd\x9a\x88\xaa\xc3\x4b\x48\x24\x07\x9b\xb0\xfc\x79\xc1\xb0\x58\x58\x20\xee\xaf\xb1\x07\xae\x64\x62\x42\xcc\xa4\xa7\x72\x0e\x48\x9d\x29\x73\x17\x4a\x17\xd0\x71\x88\x15\x35\xcb\x70\x96\x24\x6e\x94\xda\x8d\x2a\x9b\xc3\x29\x25\x35\x2f\xd2\x2b\x2d\x57\x8c\xd4\xdb\x2b\x87\xfe\x50\x50\x31\xe0\xc8\x4a\x8e\xc8\x29\x04\x63\x23\x7a\x43\x3c\x72\xfd\x5b\xcc\xfa\x20\x84\xce\x7c\x74\x16\xe5\x02\x20\xc9\x8d\x31\xcd\x04\x18\x88\xbe\x52\x52\x97\xc4\x64\x30\x28\x5d\x2b\x9c\xd0\x39\x57\x41\x85\x2d\x2f\x0c\x13\x4a\x08\x29\xa6\xee\x9b\x49\x0d\x76\xe5\x84\x7b\x05\xc8\x39\x79\x43\xea\xe0\xc8\xa2\x3d\x3a\x64\x72\xc5\x1e\x88\x5b\x23\x3f\xaf\xe4\x81\xc6\x93\xc4\xfb\x8e\x47\x23\x09\x80\xdc\x6c\xd6\x20\xa0\x1f\x7c\x78\x9b\xdd\x36\xfb\xcf\x75\x6f\xab\x2e\x80\x02\x72\x8c\xfd\xa2\x0d\x15\xa1\x08\x1e\x2f\x6d\x30\x4b\x9a\x36\x6e\x6c\x99\x6d\xc3\x82\xe0\x27\x56\xe5\xcb\x27\x56\x45\x46\x3b\x3c\xe7\xc5\x54\xb3\x10\x08\x53\x26\xc2\xbe\x64\xb4\xb1\x8b\xd7\x55\xc8\x4f\x36\x9f\x50\xf2\x82\x14\xa0\x53\xb8\xbc\x8e\xbb\x17\xe7\x15\xdc\x30\xdd\xc1\xbc\xc8\xbe\x28\xe5\x5b\x32\x64\x97\x93\x3e\x57\xd0\x5d\xe2\xa9\xdd\x6b\xa3\xb3\xc5\x9f\xd3\xbd\x98\x63\x2e\x83\x66\x0a\x3a\x79\xe0\x50\xf2\x3b\x13\x97\x97\x83\x42\x92\x70\x20\x83\xfd\xa1\xac\xc3\x36\x5b\x52\xb7\x2e\x87\xa5\x21\x23\xae\xe8\x4c\xc0\x7e\xe0\x46\xfc\xf0\xe9\x4f\xe3\x4a\xa5\xc2\xeb\xc8\xaa\xc2\x24\x2d\xa4\x01\x1e\xb7\x78\x6f\x50\x0e\xd0\x8d\xa4\x10\x91\x61\x10\x1b\xd0\x5f\xca\x82\x14\xae\xf5\x02\x98\x85\x62\x74\x38\xe1\xe8\xfa\x38\x05\x12\x89\xc5\xa1\xd1\x1b\x42\x8e\xa7\x51\x2c\x40\x2d\xc4\xb5\x32\xe9\x17\x18\x12\xb8\x97\x15\x38\x8c\xd1\x30\xb4\xfc\x98\x14\x01\x3e\xa3\xf0\xf9\xfe\x55\xb5\x50\x2a\x93\x22\x00\x69\xb0\x3f\x1d\xf8\xf3\xf2\x0c\xff\xa2\x12\xd7\x82\x11\x2b\x36\x2e\x79\xa9\x41\xa1\x84\xa6\x59\x2f\x40\xdd\x71\x9a\x72\xf8\x62\x27\xb3\xb0\xfd\xba\x71\x24\xb1\x43\x24\xa9\x04\x43\x83\xb5\x90\x51\xae\xcd\xc2\xc2\x28\x66\x71\x68\x5e\x93\xea\x7d\xc1\xb4\xa1\xc0\xb2\x55\x2c\xe4\x55\xdd\x44\x6e\x16\x26\x2e\xe7\x15\x8b\x5d\xd4\xf9\xbb\xf2\xa7\x64\x0d\xe3\xaa\xfe\x92\x7d\x9f\x4b\x5c\x7e\x30\x8b\x0f\x0f\xd6\x52\x9d\x64\x1d\x8a\x5e\x4d\x42\x3d\xf6\xef\x82\x5b\x9e\xf3\x43\xf8\x6a\xc4\x01\xe9\x9e\xad\x77\xce\x44\x19\xe5\xf6\xc4\xe4\x67\xaa\xc1\x6a\xc0\xdb\x19\x7a\xbf\x45\xae\x47\xfd\x04\x91\x23\xdf\x62\xcd\xee\x11\xe7\xdd\xf6\x59\xea\x25\xd8\x16\x70\xb5\xb1\xe2\x57\x6b\xf3\x1c\x67\x9b\x25\xf2\x4f\x94\x72\x48\xb7\x47\xa0\x72\xb1\xdd\x39\x33\x79\x5e\x44\x34\xc6\x62\x67\xf8\x94\x29\xcc\x48\xea\x45\x9a\xd3\xad\x57\x05\xe1\xc6\x34\x0e\xc6\x80\x3d\x7b\x4e\x67\x90\xe6\xab\x78\x7a\x9e\x47\x9e\x15\x6e\x5a\x61\xe8\x5a\x43\x8a\x01\x19\xe6\x66\x72\xf6\x22\xe1\x80\x99\xda\x2a\x55\xc6\xc2\x04\x9e\xc9\x9d\x08\xb6\x9e\x2c\x58\x2e\x9b\xf4\x90\x5f\xe1\x94\xd9\x4f\xa3\xed\x2c\x9b\x6f\x0c\xdb\x5e\x3f\x68\x35\x3b\xdd\xde\xa2\x79\x3b\x68\x35\x97\x4e\x9b\x78\x8b\x95\x31\x71\x58\xa2\x56\x2d\x69\x8e\xa7\xb5\xd7\x88\xa2\xd5\x6a\x36\x4f\xce\x34\x73\x42\xd6\xe5\x78\x32\xf1\xb8\x73\x61\x53\x84\x6e\x40\x83\xb9\x6e\x82\x1b\x09\xf1\x8b\xd3\x33\xc5\x6c\x83\x61\x7d\x39\x70\x62\xaa\x1d\x27\x33\xe5\x88\x9e\x8a\x0f\x8b\x6f\x48\x6d\x83\x9d\xfd\x3b\xd5\x92\xe2\xed\xa4\x57\xb1\x3d\x6a\x85\x6f\x83\x31\x2d\x2a\x68\xa5\x19\xaa\xd7\xbd\x2e\xb8\xa4\x76\xe8\x10\x20\x9b\xa7\x9e\x57\x16\x99\xb3\xb1\xca\x8f\xbc\x31\x6e\xc9\x31\x76\x9b\xe7\x66\x0e\x46\x34\xee\x50\xc8\x27\x75\xed\x3a\x34\x50\x64\xd4\x48\x71\x5b\x52\xbc\xc8\xa5\x77\x11\xba\x43\xd7\x4f\x2d\x2c\x23\xb5\x97\x92\x5a\xe3\x7d\x2e\xb9\xf7\xa1\x35\x41\x7f\xec\x65\xe4\x6a\xf5\xd7\xc2\x49\x33\x8c\x11\x6b\x4a\x05\xbb\xd4\x67\x58\x01\x93\x2a\xe5\x33\x1f\x85\x69\x9f\x91\x5a\xd6\x7a\x3d\xe1\x76\xaf\xd9\xca\x1d\x0e\x52\xbc\x46\xcc\x93\x65\x34\x37\xaa\x7c\x44\xa3\x60\xc6\x3d\x93\xfb\x56\x98\x47\xba\x2b\x0a\xac\x48\x7d\x93\x53\x6f\x00\x6e\xd8\x4e\x95\xac\x81\xd0\x16\xf9\x9a\x28\xc1\xe6\x62\x6c\x6c\x01\xda\xde\xe2\x55\xb7\xc9\x99\xc4\x65\x6e\x6d\x26\x27\x37\xbf\xb1\x44\x44\x57\x17\x85\x6d\x2e\x5a\xfb\x96\x7d\x6b\x85\x61\x30\xc3\xc8\x07\xea\x3b\x11\x18\x6c\x30\xf3\x3a\x1b\xe9\xfe\xc9\x59\x69\xf1\xde\x22\xcb\x77\x59\xf5\x7d\x59\x7b\xd9\x58\x6b\xd5\x6a\xf5\xb5\xea\xe0\x19\x08\x17\x42\x70\x44\x94\x38\x1a\x49\xdb\x7a\x98\x4b\x51\xd1\x15\xc4\xa6\x92\xf5\x58\x46\x88\x8d\xd7\x8b\x42\x49\x76\xcd\x6c\x9d\xfb\x36\xb8\x68\x43\x06\x97\x05\x5e\xed\xb5\x6a\xb5\xbe\x70\x1c\xf0\xf2\x15\x5a\xc3\xe8\x67\xc7\x02\xde\xd7\x7f\xed\x50\x6a\x62\x45\xc1\x5a\x01\xd3\x5c\x10\xc7\xc1\x18\xdc\x25\xe3\x39\x09\xa6\xf1\x64\x1a\x9b\x5b\x81\x2a\x17\xfe\x05\x14\x59\x61\xfa\x6b\xb5\xfc\xb6\x98\x38\x82\x93\xf5\xc2\xa6\x4e\xe8\x3c\x8a\xc3\xe0\x76\x15\x61\xdb\xe0\x7b\x33\x93\x52\x00\x7c\x03\xdf\x16\x08\xc3\xe1\xaf\x1c\xec\x0e\x79\x4b\xe7\x8b\xa5\x7d\x4c\x63\x0b\x04\xbd\x85\x5e\x29\x2b\x34\xfc\xca\xd4\x70\xc3\x8b\xcd\xed\x62\x84\xbc\xd4\x05\x92\x0f\x9f\xe7\xf4\x88\x5d\x0c\xdc\x60\x1a\x35\xbc\x18\x3a\xf6\x7e\x64\xc5\x5f\x75\x27\xea\xc7\xd4\x94\xd8\x5c\x4b\x2a\x5b\x4a\xa5\xdd\xe5\x6d\xa9\xc5\xc1\x1c\x06\xec\x2b\xa8\xee\xd6\xfc\xbf\x29\xdd\xef\x09\x03\x5e\xa9\x0b\xcf\x56\x18\xa3\xb1\xa5\x3c\x5d\x64\x19\x5b\x25\x08\x06\x59\xa4\x93\x6c\xf2\x9d\xf9\x2a\xa2\x4c\x46\x68\x08\xd1\x58\x5d\x3b\xa4\xd4\x27\xfb\xe0\x83\xac\x0a\xd7\xe6\xcb\xd7\x79\x87\x82\xac\xbd\x8a\xaa\x51\xab\x6e\xee\xbc\x96\x48\x4f\x02\x8f\xd2\x8a\x34\x9c\x27\xd9\x8c\x12\xa5\x28\x03\x8a\x35\x5a\x5c\xe4\x59\xff\xc8\x0b\x20\xce\x34\x70\xa6\xcf\x55\x16\x89\x79\x2e\x71\x33\xc7\x97\x0c\xd2\xa8\x4f\x26\xd4\x32\x6f\x8a\x4f\x21\xae\x76\x96\x47\xef\x16\xb3\xef\xbf\x59\x65\xa8\x5a\xdd\xe4\x27\x70\x68\xd9\xb7\x94\xdd\x57\x26\x56\xc4\x2f\x1b\x95\xbc\x29\x95\x85\x2f\x59\xd9\x05\x73\x9a\xf2\xda\x5c\x6e\xd4\x59\x7c\x95\x52\x6f\x43\x86\x1b\x15\xd1\xdd\x0e\x95\xeb\x95\x44\xc8\x89\x46\x56\x88\x28\x90\x06\x1f\x19\x76\x40\x66\x9c\xfc\x10\x80\x11\x73\x7b\x98\xef\xc3\xdc\x5e\xa2\x3b\x17\xfe\x50\x31\xe4\x3d\x2f\x09\x53\x35\xb4\xcb\xb1\xda\xf0\x36\x67\x09\x30\x04\x15\xce\x80\xa3\xb9\xdb\xde\xd4\xe1\x49\x75\xd3\x6e\x6d\xec\xb3\x66\x15\x86\xd0\xac\x91\x88\x42\x8a\x44\xf0\x69\x01\x77\x37\x01\xc1\x09\x1e\x71\xec\x8e\x0f\x9e\x2c\x15\x42\x7a\x02\xe9\x57\x00\xf6\x8a\x9b\x67\xb3\xc6\x31\x74\x01\xb6\x9d\xdb\x1f\xf0\xc9\x9f\x11\x91\xa3\x67\x27\x89\x2d\x47\xa8\x3e\x65\xa2\xbd\x6a\xec\xd3\x71\xe0\xbb\x36\xc6\x11\x81\x63\x79\x24\x2d\xa8\x96\x78\x4e\x4c\x70\xab\x25\x34\x1d\x37\xa9\x21\x07\xd9\xcd\x97\xa0\x4d\x4d\xe0\x0d\x3b\x89\x4f\x13\x66\x1b\x18\x00\xee\x98\x8f\xee\xf1\x4a\x8f\x2d\x7f\xce\x07\xc5\x68\x49\xd7\x76\x47\x82\xd1\xa7\xbd\x78\x9a\xcd\x1a\xd9\x5b\x30\x85\x12\xe4\x18\x91\xc0\x42\xca\x7b\x9c\x08\x8d\x7c\x4b\x85\x37\xc4\x16\x6c\x5b\x6a\x0b\x8c\x69\x8b\x5a\x68\x76\xdb\xa4\xb8\xc0\x95\xa9\x94\xc5\xdb\x47\xbc\xd9\xa4\x0b\x7d\x3a\x74\x7d\x6c\x1f\x1e\xa0\x3f\x15\xd0\x6a\x38\xb6\xe6\x24\xb6\x6e\x29\x02\xd8\x04\xfc\x21\x55\x45\x05\xd7\x58\xd1\x6d\x2f\xec\xe8\x45\xb7\x49\x8a\x17\x98\x97\xc0\x1f\x12\xf4\x2d\x24\xd2\x1a\xfa\xe8\x5e\x7e\x29\x94\xc9\x20\x60\xd7\x16\x91\x2d\x42\x5a\xd9\x79\x04\x26\x60\x81\x60\x7a\xaa\x50\x01\x1a\x8f\xb1\x3c\x0f\xe7\xed\xf6\xd8\xc8\xf6\x5b\xa7\xa9\xe1\x5c\x2c\xe1\x3b\x18\xe8\x33\x9d\x7e\xcf\x14\x25\xd7\xc7\x6f\xd1\x3d\x98\x67\x3b\xd7\x73\x1b\xb8\x11\xbb\xab\xa6\xb7\x07\xa8\xa5\x37\x7a\x3e\xf5\x3c\x52\x3c\xbf\x3a\x95\x4f\xff\xdd\xc5\x26\xb7\x66\xb3\xf6\xa9\xf0\xf9\xbe\x5a\x2d\x7c\x21\x19\x93\xb9\x1a\x17\xf1\x7d\xea\x86\x73\x52\x6c\x9d\xbf\x4b\xbc\x0a\x42\xcb\x8f\xc6\x00\xbe\x1a\xcd\x68\x08\x2f\xee\x63\x1a\x45\xd6\x90\xaa\xab\x55\x3c\x72\x67\x4b\xb1\xa1\x43\x6c\x3d\x78\x25\xf8\x08\x4d\xc2\xd9\x0f\x70\x98\x33\x0a\x21\xd8\xc9\x0e\x89\x27\x86\x79\x08\x5b\x8b\x87\xd0\x61\x73\x2a\x5d\x24\x4a\x39\x44\x5e\x02\x11\x13\x1c\x43\x82\x61\xe1\xfa\x43\x46\x27\xe5\x60\x9e\xdc\x0b\x8b\xfb\x5d\xc9\xa3\xb3\xe0\x4e\x03\xc0\xe6\xfb\x13\x26\x49\xf0\x55\x60\x1a\x81\xc4\x52\x16\x69\x97\x11\x42\xd2\x92\x8e\x17\x50\x67\x6c\x85\x43\xd7\x2f\x33\xce\x61\x00\x2d\x9c\xb6\x7e\x00\x00\x93\x4c\xd4\x6c\xd6\x50\xce\xe0\x76\x96\x0f\x0e\xbb\x79\x4a\x07\x71\xda\x4f\xe5\x6d\x10\xba\x0f\x81\x1f\x5b\x1e\xe9\x59\x7d\x52\x7c\xdb\x5b\x36\x48\x78\xea\x8e\xad\x3e\x89\xe2\x60\x82\x88\x33\xf8\x05\x3a\xbe\xe2\x50\xd8\xd1\xed\x07\x64\x30\x0d\x11\x7e\xf8\x57\x59\x23\x92\xd1\xaf\x00\x8c\x85\x3e\x61\x9e\xeb\xa7\xdf\xb8\xc4\xe8\x5e\x2d\x1f\xdd\x20\x08\x67\x56\xe8\xf4\xac\x7e\x37\x0e\x26\xa9\x09\x3c\x75\x7d\x4a\x0e\x29\x75\x48\xf1\xf4\xb0\xa4\x1d\x90\x60\x0a\xb6\xad\x69\x04\x57\x19\xb0\xfc\x0e\x58\x41\xc8\xa0\x85\x30\xfd\xbe\x92\x45\xa5\x42\xc0\xeb\x53\x9a\x8b\x61\x65\xaa\x16\xe3\x9c\x11\x58\x2b\x8d\x60\xcc\xfa\x98\xea\xfb\x35\x0d\x63\xd7\x16\x53\x73\x9d\x4c\x8d\x8c\x1e\xc4\x98\xf3\xd3\xc3\x9c\xa6\xfb\xfa\xe2\x51\x7a\xa4\xe8\x3a\x41\x38\xe6\x0c\x3a\x3c\x7c\x74\x0b\xf6\x0a\x2d\x08\x7b\xb9\x40\x30\x2a\x36\x3b\xba\x90\x19\x56\x11\x17\xa3\x40\xf7\x19\x5c\x20\x27\xce\x72\x2e\x4b\x33\x1d\x9a\xb8\x8a\xd5\xd4\x43\xca\xc8\x1d\xc4\xe4\x62\x1a\x93\x62\xf7\xa2\x54\x26\xd6\xad\x45\x4e\x03\xfb\x96\x7f\x51\x25\xc5\xd3\x6e\xad\xa4\x1b\xd4\xc9\x51\x2d\x95\x74\xc3\xf5\xc9\x51\xfa\x18\x11\x7d\xa4\xb9\x7d\xe4\x20\x2b\xb5\x82\xa1\x47\x6d\x9f\x14\xbb\xed\x9c\x0e\x55\x33\x1d\xaa\x3e\xa2\x43\x83\x65\x1d\xaa\xea\x1d\x92\x67\xc3\x85\x4f\x8a\x1f\x2e\xce\x65\xe3\xe7\x41\x2c\x26\x89\x1d\x4a\x89\x0e\x2e\x17\x9c\x06\xf8\xd1\x16\x05\xde\x18\xfb\x55\xab\x2d\xde\xf4\x93\x6e\x0c\x06\xac\x1f\x8a\xdc\xfe\xc9\x1d\xd9\x58\xdc\x91\xa6\xe5\xdb\xd4\x23\xc5\x66\x23\x61\x45\x7b\x40\x60\x6b\x73\xa6\x18\x64\x28\x35\xf8\xc4\xa3\x42\xf5\xaf\x80\xc8\xff\xf1\x98\x3a\xae\x15\x53\x6f\xae\xe8\x27\xcf\x78\x4a\x57\xa6\x9e\xd2\x7b\x6a\x4f\x95\x51\xb4\x63\x84\x4a\xe1\xbb\x17\xbc\xe8\x86\x61\xa0\x38\x7c\x72\xf7\x34\x1e\x45\x9c\xa7\x21\xd4\x52\x87\x47\xda\x5f\x40\xbe\x2e\xdf\x51\x02\x10\x32\x52\xa9\xcf\x48\x7e\x19\x0b\xb0\x03\x0e\xb4\x01\xf0\x7c\x0f\x44\xe2\x9e\x44\x61\xc8\xe0\x81\xcb\x5b\x1e\x93\x39\x5c\x05\x5a\x12\x7a\x0d\x80\xe8\xc7\x6a\x3e\x20\xfa\xc2\xc7\x08\x84\xc2\x9b\x42\x6a\xc1\x4f\xfb\x51\xec\xc6\xd3\x98\x92\x62\xf7\x6a\x3f\x6f\xef\x6b\x36\xce\x73\x98\x67\x19\x37\x3f\xc6\x53\x45\xc7\xc2\x0b\x62\xb1\xd5\x6d\xe6\x1c\x10\xb5\xfe\xe2\x39\x48\x42\x75\xd8\x17\xad\x6e\x33\x53\xc2\x1c\x19\xa0\xc0\xcf\x15\x55\xd7\x2c\xee\x22\x8f\x2e\x5b\x9a\x77\x92\x1a\xea\x9c\xb8\xdb\xb6\xba\xcd\x1c\x77\x5b\xa4\xa7\x34\x29\xc2\x9a\x45\x4f\x4b\x39\xde\x51\x26\xbf\xda\xb4\x7b\x0f\x8f\xed\x16\xa4\x52\xd1\xb1\xe0\x40\x5a\x3c\xc8\x55\xf9\x5e\x0e\xf2\x56\xee\x3a\xd9\x21\xe6\x44\x3a\x02\xa9\xd9\x0d\x8d\x09\x6d\xca\x98\x01\xa2\x52\xa9\x28\x51\xfc\x0e\xbd\x27\xc5\xf6\xf9\x81\x14\x9e\x53\xf7\x96\xe9\x48\xa0\x16\x94\xf1\xf2\x79\x2b\x20\x69\x3e\x48\x75\xd0\xd8\xe7\x9d\x4d\xd6\x67\xed\xd6\xf7\xa9\x70\xb0\xfc\x5c\x63\x4d\x19\xb4\x07\xf0\xbc\x07\xf5\xa7\x78\xde\x3a\xcd\xe9\x60\x7f\x1a\x13\x27\xa0\x91\x5f\x88\x89\xe5\x38\x70\xc2\xe6\x28\x9a\x3b\x5b\x86\xee\xb5\x9e\x76\xec\x9a\x15\xd4\x83\x60\xe6\x2f\x56\x50\xa7\x1e\x06\xd6\x74\x69\xcc\x74\xd5\x6e\xce\xec\xef\xec\x18\xba\xfa\x76\xa5\xae\x0a\x2d\x52\xff\x62\x98\x1a\x43\x29\x1d\x86\x0a\x0f\x59\x42\x1e\x3a\x6d\x5d\xbf\x99\x4e\xe0\x56\x90\xaf\xbd\xec\x38\x86\xfe\x9e\xad\x70\x69\xc1\x76\x4f\xcd\x02\xd0\x45\xc3\x10\x6a\x0b\x75\x52\xec\x76\xeb\xc9\x05\x12\x73\x6c\x04\x03\x72\x54\x27\x32\x4f\x09\xf0\x55\x8f\xbd\x4b\x92\xb5\x28\x88\xc6\x0b\x4f\x59\xc3\xf0\xa8\x61\x78\xe7\x8b\x8f\x56\xad\xf3\x1b\xac\xf3\x1b\xa6\xce\x6f\xfc\xf5\x9d\x1f\x18\x3a\x7f\xb1\xb8\xf3\x07\xf4\xce\xb5\x69\x12\x5c\x86\xa6\x87\xe2\x41\xb3\xab\x1c\x32\x1c\x8e\xc5\x22\x07\xcd\x6e\xe2\xa9\x8d\x97\x0c\x24\xb0\x26\x08\x08\x21\x00\xbb\xf6\xa7\x0f\xbd\x56\xe7\x0c\x80\xeb\x1e\xab\xee\x34\x03\x3f\x72\x1d\x1a\x26\x25\x59\xbf\x0e\x5a\xcd\xce\xbb\x6e\xb7\x2c\x70\x46\x62\x11\xcd\x4c\xe9\x98\x70\x17\x8c\xbe\x97\x23\xba\xaf\xaa\x06\xf6\x5c\x2e\x3e\xd1\x72\x83\x0b\x32\x0e\x9c\x19\x80\x0f\xb3\xf3\xee\x6e\x2a\x91\x74\x88\xc2\x31\xb5\x42\x87\x3a\xa4\x11\x52\x8b\x14\xbb\x97\x0d\xc9\xfc\xf7\xae\xe7\x81\x5e\x25\xf9\x90\x33\xb8\x6d\xc3\xe0\xae\x97\x19\x55\x9c\x6c\xe3\xad\xa7\x34\xfe\xd2\xd0\xf8\xfb\x25\xab\x46\x8c\x5d\x88\x5c\xf7\xa2\xfb\xf8\x86\x4d\xbb\xe7\x87\x95\x96\x6b\xb2\x18\x95\x38\xca\x62\xb7\xd9\x2e\xa3\xbe\x7a\xd0\x6a\xb6\x93\xb3\x92\xdf\x07\x65\x42\xce\xf6\x41\x85\x90\x8b\x7e\x14\xc0\xe9\xce\x2e\xc5\x6c\x28\x68\x8e\x24\x76\x81\x14\x0f\x1a\x39\x1b\xfe\x2b\xcb\xd0\xe5\x9b\xe5\x1b\xa8\x0e\xd5\x83\x50\x45\x6f\x6a\xbb\x75\x3b\xa5\x2a\x2e\x0a\x13\x2d\x36\xbb\x6d\x2d\x26\xc7\xa3\x16\xcf\x6e\x39\x0e\xa2\x2c\x0e\x00\x5f\xe2\x10\x3d\x9a\x33\x9a\xbe\x61\x34\x9f\x7e\x6a\x4d\x99\xe3\xbb\x44\xa4\x44\x4e\x34\x97\xf8\x7a\xd1\x82\x6c\x76\xdb\xe9\xe5\x67\x88\x6a\x92\xfc\xb9\xe2\xee\xa4\xf2\x9a\xc3\x76\xbf\xf5\x8b\x6e\x73\xfd\xf2\x6c\xbd\x71\xd9\x24\x76\x30\x1e\x5b\xbe\x13\x71\x43\x98\x34\x3f\x0b\xcc\x16\xd5\xf0\xfc\x8c\x67\xc7\x82\xdd\x4a\xe4\x02\x15\x9e\xaa\x6e\xcc\x7d\x66\xad\x08\x5d\x5f\x93\x87\x00\xad\xfd\x40\x58\xa8\xd2\x13\x04\x60\x37\x0b\x36\x9d\x02\x4f\x41\x97\x33\x87\xb6\x61\x0e\x3f\x7f\x5e\xbc\x8a\x0c\x96\x71\xe0\x06\xf8\xc8\x96\x92\x54\xb9\x9c\x45\x21\xf5\xb0\x34\xb7\x9c\x04\xb2\x3a\x66\x02\xcc\xe9\x99\x49\xd9\xf8\xf2\x13\xd2\x95\xb9\xa3\x5c\x18\xef\x28\x89\x33\xc0\x02\xa6\xaa\xf5\xb4\xb8\x4f\x25\xd8\x4d\x5e\x9d\x67\x56\x3a\x0a\x41\xf5\xa8\x95\x0f\x99\x8b\x2e\x29\x8c\xaf\x6a\x33\xef\xa5\xf3\xb3\xc3\x54\x36\x11\x90\xa5\x04\xf1\xcd\x69\xbc\xa0\x2d\x49\x82\x55\xaf\xc8\xbb\x99\x15\xce\xb3\xc1\x4c\x9f\xaa\x5f\x2a\x00\x94\x57\x5c\xff\x47\xf1\xb3\xf3\xa2\xb4\x5b\xac\xfc\x5a\xfa\xcf\x75\xfe\x38\x89\x01\x1e\xf3\xa4\x7b\xd9\xea\x64\x8f\x51\xfe\x54\xff\xa2\x39\xd0\x24\x57\xb7\x0b\xb8\xba\xb1\x22\xb5\x2f\x06\x38\x81\xd4\x53\xb2\x19\x24\xe7\xa2\xdb\x34\xfa\xc4\x67\x7b\x53\x2a\x29\x98\x52\x8b\xae\x73\x17\xa9\xeb\x1c\xbc\xd1\xda\x73\x72\xc6\x1f\x10\x8a\x97\x67\x8f\x3f\xb4\x4c\x3a\xe6\x3f\xfe\x95\x7a\x48\x23\x71\x5e\x25\x97\x3c\x1f\x9e\x38\x47\x8a\x8d\xcb\xe6\xe3\x87\x68\xd2\x44\xbf\xfe\x2b\x87\x08\x91\xaa\xf7\xf5\x2a\x59\x23\x57\x3e\xf8\x29\x40\xf6\x30\x00\xe0\x41\x50\x94\x88\x92\x00\x1c\x47\xad\x98\x3a\x90\x23\x29\x72\xfb\x90\x31\x15\xdf\x88\x96\x2a\xe5\xaf\x31\xc6\x51\xb6\x74\x48\xd6\x84\xfe\xff\x92\x28\x30\x3b\xf8\xf8\xac\xb8\x37\x47\xa4\xd8\x7d\xd9\xac\xe1\xd1\xa3\x52\x38\x4a\x28\xec\x2c\xa5\xb0\xa3\x50\xd0\x7e\xce\xf7\x01\xb7\x38\xe9\xb3\x15\x45\xd3\x31\x25\xd0\x26\xb1\xbc\x99\x35\x8f\xf2\x27\x38\x3d\xaa\x53\xe8\x53\x8c\xce\xdf\x76\x80\x10\x12\x6c\x8b\xf3\xe8\x1d\xf5\x48\x2d\x3d\x86\xb3\xc5\xe5\xeb\xe9\xf2\xe7\x8b\xcb\x6f\x64\xdf\x9b\x99\xc0\xd5\xab\x2b\x0b\x17\x97\x9e\xdc\xa2\x2b\x99\xa8\x56\xf3\xf9\x58\xe4\xf1\x21\x8e\x86\xd7\x30\xf4\x2a\x1b\x3a\xb8\x7c\x8c\x56\x45\x93\x80\x9d\xeb\x87\x96\xd7\x0c\x15\xd0\xff\x28\xe8\x0f\xbd\x69\x6e\xfd\xc7\xbf\x86\x55\xdc\x98\xb7\x53\x28\x09\x2f\x65\xe1\x74\xd5\xf0\xdc\xa1\x0f\xd9\x67\x7a\xec\x4a\x57\x3c\x68\x35\x1b\xa7\xe7\x66\xa7\xd8\x81\xeb\x79\xc5\x42\x4b\x46\x70\x3e\x9e\x4d\x34\x72\x87\xa0\x4e\x5d\xc0\x4b\x77\x13\x51\xb7\xb8\x16\x53\x3c\xb8\x68\x66\x4c\x35\xc0\xb5\xff\xef\x7f\x96\x6b\xe2\x88\x96\x36\x6d\x91\x68\x51\x81\x0a\xe3\xf0\x4c\x00\x12\x4e\x79\x50\x3a\x66\xbb\x61\x8a\x18\x1e\xf9\x29\xf8\x10\x03\xbc\x59\x49\xc3\x8c\xe0\xb3\xb4\x5e\x48\xfc\x96\x16\x4f\xed\x8a\xf0\x14\x79\x2a\xc8\x65\x18\xd8\x34\x8a\x74\x08\xb4\x90\x89\x6f\xc4\x13\x73\xcb\x60\x0d\x5b\x01\x81\x40\x90\xb7\xbf\x4b\x80\x37\x74\xac\x93\x39\x60\x5b\xcd\xb3\x06\xd9\xd8\xaa\xa4\x5c\xc9\x12\x98\xbe\x62\x02\x81\xa7\x38\x9c\xa9\x0e\x5e\xa2\x8d\xa3\xbc\x36\x04\x20\x63\x6e\x0b\x1c\x0e\x72\x31\xf9\x75\x9d\xfc\x85\xcf\x74\xc5\x39\x89\x43\xcb\xe7\x89\x51\xe2\x00\x40\x7b\x10\x6c\x8d\x69\x41\x49\x9b\x2b\xac\xbc\x3c\x06\x6a\x03\x44\x7f\x48\x80\x6f\x3c\x95\xbb\x78\xaa\xd8\x5b\x43\xb1\x7a\xb6\x58\xdb\x50\x6c\xa3\xa2\xb9\x82\x62\x28\x2f\x60\xb6\x43\x16\x69\x2c\x0a\xdb\x7b\x64\x80\x70\x5e\xc0\x5c\x81\x28\x58\xda\xd5\x4a\xeb\x7c\x26\x59\x6f\x3d\xfc\x59\xc5\x67\x8f\x0f\xcd\x18\x2f\xca\xf6\xda\xff\x8f\xac\xcb\x8b\x9e\x39\x1e\x73\x54\x32\xf7\x4e\xfc\xf9\x23\x47\x3c\x32\x5d\x5e\xad\xbb\x8b\xba\xfa\x88\x8e\x2a\x9d\xcc\x06\x7f\xaf\xb6\xd1\xea\xd6\x4e\x54\x63\x98\x3c\x17\xbb\x8a\x6d\x11\x0f\xfe\x22\xb9\x8c\xf8\xb1\x9f\x79\x14\x2e\x5e\xf7\x6a\xd5\xaa\xaa\x1a\x95\x94\xd2\xe9\x37\xed\xe2\x75\xaf\x5e\xd7\x4a\xff\xaa\x94\xae\x2f\x2d\xfd\x42\x29\xbd\xb1\xb4\xf4\xda\xe2\x9e\x6c\xe8\xfd\xae\x2c\xee\x49\xaa\xf4\xfa\xe2\x9e\x88\xd2\xa0\xbe\x7b\x9e\xd1\x6d\x8b\xda\xa3\x20\x0b\xea\x67\x3a\xdc\x8a\x06\x75\xbd\x64\xf8\xec\x57\xc3\x67\x2f\x0c\x9f\xad\x19\x3e\xab\x18\x3e\x5b\xcf\x3b\x54\x31\x7e\xf4\x7f\x44\x21\xe1\xc8\x12\x86\xab\xeb\xa2\xd3\x2c\xd5\xa9\x85\xc7\x1c\xa4\x39\xb1\x26\x0b\x33\xd9\x48\xbd\x8f\xf5\x8c\x15\x7e\xbe\xb7\x47\x64\x2e\xc3\xd4\x19\xcd\x03\x43\x0b\xc5\x42\xc6\xb7\x1b\x92\xf6\x8c\xad\xc9\x6e\xd6\xd9\x5f\x56\x2b\x15\xc8\x1f\x7f\x10\xf9\xe7\x9a\x81\x4a\x6d\x39\x95\x5f\x75\x2a\x15\x03\x95\xfa\x72\x2a\x2f\x74\x2a\xeb\x06\x2a\x1b\x29\x2a\xcf\x88\x21\x88\x21\x37\x80\x35\x85\xab\x21\x6c\x05\xfa\x82\x02\x60\x5d\xe1\x71\x4d\x5e\x90\x02\xc7\xd4\x95\xb3\xf2\xd4\x4d\x70\xdf\xb2\x6f\xc5\x5b\xdb\x41\xab\xb9\x9f\x98\x5f\xaf\x7b\x9b\x75\xf4\x6a\x9e\x4e\x2a\x64\xe5\xa7\x1e\x58\x36\xdb\x4b\x2c\xdc\xd6\x1d\x25\x3c\x0a\xb5\x08\xb1\x05\x46\x8d\x36\xdf\xd5\xd0\x14\x20\xa0\xa7\x12\x85\x7c\x5b\x4a\x13\x1d\x73\x13\xf9\x0e\x7f\x39\x6e\xfd\x3f\x34\x6f\xaf\x99\x15\x3a\x0a\xf7\x0e\x55\xee\xd5\x6b\x4f\xe5\xde\xab\xc5\xdc\x53\x8d\x21\xb7\x74\x3e\xb1\x1c\x68\xfc\xe4\xb2\x91\xf1\x9b\x03\x72\x7b\xcb\x6d\xf7\xa6\x28\xe1\x13\x24\xbd\x97\x45\xe3\x38\x67\x37\x5e\x4f\x6f\x3b\xeb\xb3\x07\x6d\xff\xfe\x93\x6d\x73\x78\x13\xf5\xd4\x96\x0e\x6e\x5e\x30\xa3\x21\xba\xb8\xd9\x41\xe8\x63\x2a\xa1\x08\x6e\x6c\x8b\xcd\x41\xcf\x94\x8c\xf9\x3c\x09\x89\x1d\x0c\x7d\xf7\x01\x1d\x99\xd1\xe1\x56\xe2\x1e\x8f\x26\xa7\xac\x21\xd6\xce\xfe\x74\xd8\x0c\xc6\x13\x2b\x26\x21\xe5\x9e\xef\x6e\x84\xf6\xee\xb4\x9d\x09\x46\x7f\xb8\x78\x22\x0f\xa7\x9e\xc7\xd3\xde\x16\x3b\x6d\xf3\xad\xce\xce\x65\xa0\x82\x13\x9a\x7e\xc9\xe6\x5f\x28\x5c\x3b\xa3\xe3\x20\x9c\xc3\x1d\x6d\x7d\xea\xb3\xff\xac\x6c\x31\x83\x6e\x78\x86\xb3\x71\xbc\x78\x74\x8a\x7b\x5d\x9d\x14\x4f\xbb\xf5\x92\xee\x5d\x07\x8e\x4f\xe9\x07\x73\x2b\xca\x7a\xd8\x41\x63\xfe\x32\xf7\xba\xba\xee\x5e\xa7\xb4\xbe\xc1\x5a\xdf\x30\xb5\x9e\x7e\xf1\xce\x6d\x3d\x58\xd6\xfa\x46\x6e\xeb\xf5\x32\xe9\x80\x37\x2f\xeb\x44\x67\xd5\x5e\x74\x4c\xbd\xf8\x23\xbf\x17\x9d\x47\xf4\xa2\x6e\xec\x85\x69\x26\x8c\xbd\xf8\xb1\xac\x17\xf9\x33\x51\x53\x7a\x51\x33\xf6\xa2\xb6\x6a\x2f\xfe\x7b\x59\x2f\x52\xfe\x9f\x18\x7f\x4d\x5c\x3b\xf0\x11\x41\x9f\x6d\xcd\x33\xd7\x77\x82\x19\x89\xdd\xd8\xa3\xca\x23\x18\xec\x09\x08\x93\x07\xbd\x4a\x17\xd3\xa3\x1a\x3e\x15\x96\x98\xf6\x0c\x28\x08\x8c\x5e\x8f\x91\x33\x99\xfe\x4d\xfd\x5e\xd6\x85\xba\xbe\x16\x45\xb7\x34\x94\x8b\xf5\x90\x5a\x0e\xb1\x03\x2f\x08\xc9\xc4\xf2\x68\x1c\x1b\x49\x6d\x2e\x75\x63\x6c\x84\xc3\x88\xd8\xc1\x18\xc2\x13\x20\xd5\x11\x8f\x9b\x2a\x00\x88\x59\x6d\x37\x1c\xf6\x6b\xa4\x52\xa9\x90\x5d\xf8\xe0\x9c\x7d\x70\x5e\x50\x00\x90\xf1\x86\x1d\x4d\x3c\x57\xfa\xad\x47\x74\xec\xb2\xbe\xf9\x1c\x60\x87\x86\x56\x4c\x45\x6a\x00\x0e\x67\xe8\x86\x32\x3f\x9c\x19\xd3\xee\x53\xf5\x4b\x05\xa8\x16\x0b\xbb\xdc\x02\x07\x59\x4b\x2c\x37\x6c\x42\xe6\x65\x25\xcb\xb4\x0a\x1d\xba\x4e\xea\x12\x2d\x0f\x18\x74\x89\xfc\x11\x1a\x71\xbc\x30\x43\xa9\x52\x61\x37\x95\x5e\xb0\x11\x86\xd6\x9c\xa7\xd4\x7f\x46\x40\x8d\x2b\x8a\x1e\x9d\x63\x54\xcd\x1e\xa9\xee\xaa\x7f\xff\x96\x74\x77\x97\xbc\x78\x91\x7c\xa3\xdd\x20\x58\x9b\xa8\x78\xa4\x86\xf4\x49\x21\xf5\x2b\xa9\x0b\xd4\x34\x59\x09\xd2\x58\xc3\x63\x57\xa6\x2c\x79\x41\x34\x10\x38\xa5\x91\xdf\xf7\x34\xbe\x08\x48\xb5\x44\x81\x8d\x5d\x7f\x4a\xd3\x75\x79\x5b\x80\xaf\xaa\x3d\x0d\x16\xde\x14\xc8\x98\x5a\x7e\x04\x68\x68\x88\xcf\x8f\x99\xc0\x38\x2c\xa5\xe2\xa8\x8e\x02\xab\x24\xf5\x26\xfa\x40\x3c\xb7\x8f\x53\x10\x55\xc2\x61\xbf\x17\x7c\xa8\xd5\x8a\x6a\x5f\x3f\x25\xc3\x48\x20\xe4\xf4\x2e\x26\xf6\x09\x6d\xde\x10\xaf\x57\xe1\xc2\x0b\x52\xd8\x45\x25\x5c\xd6\x4c\xac\x65\x92\x07\x8a\x3a\x9e\xd7\xd1\xfb\x5a\xad\x17\x34\xbb\xdd\xa2\x46\x29\xbf\x63\x79\xe3\x21\x7b\x4a\x13\xbb\xa6\xa4\x4a\x38\x10\x75\xba\x96\x7a\x6d\x7c\xd9\x84\x41\xea\x14\x30\xf5\xc0\x6e\xa1\xc4\x98\x80\xf0\x4e\xda\x3e\xe5\xf6\x68\x38\xae\x93\x61\x18\xcc\x40\x9d\x70\x07\x5c\x95\x4b\x5b\xf8\x2f\x12\x0d\x77\xd1\x1e\x03\xfa\x19\x18\x8e\x9d\xe9\x78\x22\xcc\xaf\xb1\x1b\x52\x25\xe5\x0c\x40\x74\xca\x78\x2a\xbe\xfd\x41\xe3\xf3\xe2\x3f\x0b\xfd\xc0\x99\x17\x5e\x1b\xb6\x88\x1f\xc6\x2d\x16\xcc\x38\x98\x8f\x60\x10\x84\x74\x88\x98\x1b\xc0\x5e\xd3\x10\x6a\x4b\x76\xfd\x45\xfb\xa4\x08\xe0\xea\x03\x2a\x63\x1c\x5a\xb8\x9d\x41\xc2\x02\x7b\x04\x68\xfc\x3c\x4a\x13\xe2\xf1\x5c\x7f\x88\x04\x2f\xba\x4d\xed\xe5\xe4\x11\x3b\xa1\x02\xf5\x99\x49\x9c\x2a\xf7\x86\x46\x38\xd4\x76\xc1\x0f\xb5\x5a\x8e\xdc\xc2\xe6\x09\x4e\xea\xc5\x92\xa4\x2e\xea\xe4\xe0\x3d\x1d\x4a\xae\x36\x59\xc1\xa4\xf8\xae\x8a\xc1\x98\xc0\x76\xca\xc4\x00\x39\x8f\xf5\xc3\x28\x91\x4a\x5c\x3c\xa9\x19\xaa\x15\xbe\xe4\xc1\x7f\x7d\xc9\xe2\x40\x65\xc5\x80\x6d\x45\x4b\xc5\xa0\xf6\x7f\x62\xf0\x38\x31\xd8\x97\x5c\x35\x89\xc1\x3a\xbc\x5f\xd3\xd7\x1c\x74\x58\xe4\xaf\x65\x43\xae\xd5\x5f\x00\x56\xaf\xc3\x99\xc3\xbd\x92\x2a\x7f\x8d\xf0\xd4\x97\x0b\x0f\x61\xe2\x60\x48\xef\xc4\x63\xb0\xa2\x91\x35\x91\x6a\x65\x02\x7c\xef\x26\x28\x7a\x3c\xb0\x84\x47\x81\x80\x93\xde\x2f\x3c\xc7\x33\xab\xbb\x87\x71\xb7\xbf\x94\xb9\x0f\x00\x0f\xc3\xc5\x2b\x27\x22\x95\xbd\x96\x66\xea\x2a\x59\x23\xfb\xec\x62\x87\x7f\xd6\xc8\x1a\x69\xaf\xed\x53\x6b\x8c\x7f\xd7\xc1\xaf\xc0\xa1\xa1\xe7\xfa\x34\x75\x07\xb6\xe0\xe9\x1e\xb0\x12\x1d\xba\x36\xb0\xec\x38\x20\x91\x48\xe3\xc9\x67\x00\xaf\xc6\xb0\xcb\x93\x3a\xa8\x68\x27\xdc\x6a\x05\x1e\x5e\x10\x60\x03\xf9\xbe\xc0\x9c\x73\xd5\xed\x28\xb1\x54\x60\xcf\xc2\xce\x73\xe9\x16\x09\xd1\xb3\x21\x91\x98\x95\x44\xb2\x2e\xbd\xdc\xb6\x96\xec\xba\x8b\x57\x02\xf7\x10\x52\x59\x5c\xac\x94\xd6\xdd\xd4\xc2\x30\x22\xcb\x35\x41\x49\x61\x17\x65\x04\xc9\x66\x12\xb9\x55\x85\xc6\xd0\x14\x67\xd4\xe4\x49\x16\x98\x50\x3c\x76\x71\xd0\x5d\x3d\x91\x70\x8d\xbf\x4e\xa9\x5d\xac\xbd\xe6\x33\x99\x0b\x0a\xa1\x94\xe6\x59\x8c\x7a\x7a\x34\x00\x7c\x55\xd9\x6f\x35\xce\x16\xa4\xe6\xad\x1b\xda\xae\xbf\x4e\xa4\xe6\x67\x9b\xbf\x3a\x3f\x68\x75\x4e\xdb\xe7\xad\x85\x78\x15\x99\x2e\x54\x5f\xa3\x5c\xff\xf4\xe8\x4f\x2f\x9a\x27\x46\xf8\x3f\xbc\x18\xa1\x9f\x1f\xb1\x3d\x77\x82\xf6\x28\xe9\x59\x6b\x39\x6c\x95\x68\x36\x12\xea\x10\x67\x4a\x31\xed\x9a\x3d\x85\x64\xad\x36\x77\x08\xe7\x5a\x0f\x21\x0d\x12\xd2\x71\x10\x53\x62\x4d\x26\x10\xb6\x3b\xb2\x30\x60\x99\xa7\xc5\xee\x07\xf1\x88\xcc\x42\x97\xa3\x19\x40\x27\xf8\x2a\x90\x9d\x20\x36\x88\x1d\x8d\x22\xa6\xfc\x58\x9e\x37\x07\x4a\xd6\x2d\x45\x44\xfc\x79\x30\x0d\x49\x44\xa3\x28\x05\x00\x91\x10\x70\xac\xd8\x7a\x4a\xca\xca\x67\x90\x75\x29\x27\x19\x21\xae\xc5\xfa\x4f\xdc\x14\x65\x07\x77\xfb\xdb\x9b\x6b\xac\x93\xf2\x7e\x48\xf4\x11\x20\xa5\x89\xba\x7f\x0a\xcf\xd3\x08\x5d\x8f\xd0\xbd\x95\x83\x67\x7c\x48\x6a\x02\xd8\x85\xe5\x38\x21\x8d\xc0\x11\xd5\xf5\x6d\x9e\xe5\x3c\xc1\x65\x75\xfd\x98\x0e\xb9\xa7\x27\x60\x21\x7c\x00\xdc\x7a\x7c\xfc\xc5\xbc\xbf\x9e\xa7\x3d\xfa\xae\xb4\xc5\xfc\xe3\x93\x3d\x89\xaa\xb5\xfa\xc6\xe6\xd6\xf6\xcb\x2f\xbf\x82\x37\xe2\xfa\x0a\xe7\x2f\xcc\xd6\x1e\xbf\xee\x57\xac\x38\xe8\xcb\x7d\x42\x54\x66\x45\x4c\x47\xab\x1d\x4c\xe6\xdc\xc5\x2c\x68\x0a\x16\x68\xd9\x41\xa1\xa6\xae\xfb\x5e\x75\xee\xef\x62\x32\xa1\x21\xe0\x9a\x4e\x3d\x15\x2e\x22\x49\x5d\x23\xdc\xae\x71\x85\x00\xf7\xfb\x73\x12\xde\xdf\xc5\x6b\x53\xdf\x95\xb9\x7d\xdc\x38\xca\x90\x22\x17\x7d\x40\x42\xf2\xe6\x8c\xad\x32\xb5\x1b\x1c\xea\x50\x36\x08\x89\x3d\x8d\xe2\x60\x2c\x6a\x09\x5c\x03\xcf\x85\xd4\xf2\x03\x3a\x03\x47\x66\x08\xf4\x62\xa7\x5e\x24\x00\x55\xc8\xc0\xf5\x1d\x9e\x2a\x48\xf6\x9a\xda\x23\xdf\xb5\xd9\x42\x61\x3d\x0f\x29\xae\x5c\x82\x79\x84\x12\xe4\x5f\x74\x27\xe7\x2d\x92\xa0\x4f\xe7\xe0\x46\xf6\x1b\x7e\x02\x16\xa2\xdf\x77\xc5\x5f\x6c\x06\xca\x64\x1a\x4d\x81\xec\xae\x4c\x5d\xe3\xfc\x6e\x58\x15\x2f\x5f\xbe\x5c\xe5\x88\x9a\x0b\x0d\x6b\xca\xd8\x78\x16\x38\x4b\x74\xb7\x32\xa9\x95\x3e\x55\xbf\x68\x99\xe8\x45\x55\xfd\x08\xc1\xfb\x8f\x9a\x66\xfc\x10\x06\xaf\x7c\x80\x45\x76\xc1\x9a\xb4\xcb\x2f\x50\xfc\x5b\xd6\x25\xf8\xbc\x2c\x6e\x56\x62\xb3\x5e\xea\x77\xfb\xe9\x1f\xbb\x5f\x5e\xec\x16\xd9\x7f\x7e\x2d\x15\x77\x8b\x9f\x3e\x47\x9f\xbb\x5f\x7e\x2d\x95\xde\x48\x3f\x5c\x83\x27\x2e\xc1\xe6\xb8\xfb\x6d\xed\x4b\xf2\xc4\x2f\x30\x30\xf0\x9b\x8d\x2f\x69\xe0\xac\xd4\x75\x0f\xc8\x14\x5e\x8b\xde\x8b\xeb\x1f\xa7\xf2\x63\x15\x90\x24\xb3\x6f\x02\xb0\x99\xcb\xca\x92\xa3\x3e\x0f\x04\x89\x03\xee\x16\xfb\x9e\xe5\xdf\x96\xd4\x38\xc9\x62\xbb\xf9\x36\x13\x88\xd1\x6d\x7f\x2a\xfc\xfd\x31\x46\x45\x17\xe8\x77\x27\x96\xad\x59\x14\x5d\x2b\x1c\x62\x02\xb4\x92\xe9\x0d\xe5\x6a\x42\x8a\xcd\xab\x2b\x63\xf3\x8d\xc7\x34\x8f\xc7\xec\xd5\xe4\x11\x6d\x1f\x30\xce\x16\x9b\x57\x07\xc6\xd6\xf7\x1f\xdf\x3a\x04\x3c\xae\xde\xbe\x78\xbc\x2b\x36\xaf\x0e\x8d\x5d\x68\x3e\xbe\x0b\x60\xdb\x7e\x44\x1f\xd8\x4d\x48\x74\x62\xdf\xd8\x89\x83\xc7\x77\x02\x90\x49\x56\xef\x83\x12\xd9\xda\x3c\x3f\x2d\xa5\x77\x7f\xcf\xbd\xa5\xea\x94\x95\x21\x3f\xca\x44\xbb\xe7\x8c\x83\x3b\x2a\x71\xa5\x00\x55\xc8\x4f\x72\xdb\x32\x62\x00\xeb\x01\x19\x3b\xbd\xb4\x73\x07\x8c\xb2\xf5\x27\xcf\xf6\x23\xc1\x2a\xf8\xf0\x2e\x99\x0a\x04\x3a\x11\x67\xc7\xe5\x62\x76\x5c\x4d\xfe\x12\x66\x1c\xfe\xa9\x0b\xef\x69\xac\x48\xde\x60\x1a\xfd\x28\xf0\x20\xaa\xbf\xf9\x36\x1b\x30\xc6\xfa\x7b\xf4\xc8\xc7\x0f\xad\x79\x63\xb7\xc9\x5a\x3a\xc3\xa0\x98\x21\x1e\xf1\xcd\xd6\xcb\xa5\xb1\x33\x6f\x9f\xd4\x19\x41\x37\xbf\x3b\xa6\xb4\x25\xe9\x9f\x74\xe5\xda\xc2\xb1\x88\xfd\x47\x09\xc4\x2e\x36\x39\x62\x50\x7a\x54\xed\xe5\x0a\x85\xad\xbe\x6e\xa4\x47\xc0\xc4\x40\x14\xc0\xac\xb3\xb6\x67\x8d\x27\x45\xf8\xac\x4c\x6a\xe5\x2c\xb6\x2a\xa5\x7e\xd7\x7d\xa0\x95\x99\xeb\xf0\xcc\x29\xf2\xe9\xc2\xc5\x17\x0b\x97\xfc\x86\x44\x77\x89\xfb\xe2\x85\x86\x32\x11\xe7\xa3\x09\xa5\xce\xc5\x56\xc8\x54\x16\xd7\x87\x04\x1f\x9e\x35\x27\xc5\xd6\x41\x19\x91\xd4\xcd\x07\xc3\xb1\xfe\x0e\x0d\x9f\xbd\x39\x5e\xc5\x49\x8b\xab\xed\x46\x15\x46\x4b\x85\x44\xfe\xf8\x03\x0b\x2a\xa9\x49\xf5\x61\x51\xd6\xeb\x7d\xea\x05\xb3\x62\x1a\xab\x9e\x57\xac\x2d\xa8\xd8\xe8\x07\x02\xd1\x32\x5b\xb1\x6e\xae\xa8\xe0\x56\x66\xeb\x6c\xe8\xb9\x48\xb9\xff\x82\x13\xd8\x11\x89\xac\x39\xe2\xf4\xe1\x63\xcb\x2f\xc8\x6f\x70\x6d\x41\x78\x82\x5f\x44\x4e\x9a\x82\xe7\xa1\xb9\x1d\x9a\x12\xe4\x00\x6c\x84\x4f\x4d\xc4\xae\x4f\xe4\xd6\xf5\x3c\x19\xc5\xc5\xd1\xb4\xed\x5b\x88\x6f\x8e\x48\x38\x15\xc8\x95\xf9\xdd\x37\x4e\x3f\x02\x3f\xb5\x4e\xf9\xdc\x67\x91\x28\xd8\x3c\x9f\x98\xe6\xfe\xe4\x5f\x31\xf7\xbd\x00\x8f\xfa\x27\xcc\x7e\x2f\x80\x03\xfa\x71\xd3\x0f\x35\xd9\xa9\x64\xe0\x21\x57\x2d\xd9\xb7\x4c\x9b\x34\xb3\xee\xf4\xf1\xca\x24\x10\x5c\x45\x91\xe0\x00\x22\xbc\x03\x07\xe6\x0e\x9c\x3d\xa6\x03\x0e\x50\x7c\x6c\x07\x9a\x8a\x52\x7d\xc0\x95\xea\x67\x09\x3e\x19\x06\x7f\x82\xad\x3a\x92\x40\x69\xf0\x6a\x07\x29\x55\x3c\x3a\x88\xcb\x09\x78\xa4\xa5\x1d\xea\x02\x6a\xc4\x34\xb2\x25\xf1\xf9\xa6\x91\xb1\x9e\xae\x34\x32\x0e\x8b\xcd\xf4\xf4\xae\x59\x4d\xef\x3e\xa6\xf5\x3b\x8e\x7f\xbf\x9a\xa2\xce\x1b\x47\x45\xbd\x8b\xdb\x31\x69\x78\x51\x40\x0a\x6d\xdf\x8d\x5d\x2b\xa6\x64\xe4\x0e\x47\x1e\x62\xd5\x01\xdc\x79\x1c\x5a\x90\x47\xa6\x50\x21\x06\xc7\x22\xdc\x8a\x26\x56\x98\x09\xca\x63\x43\xe9\x2d\x1e\x4a\x2a\xf2\x54\xb5\xf6\xff\xc6\x96\x9c\x61\xd9\x88\xf1\xae\x7a\x35\xe8\x24\x29\x40\x38\x36\xe7\x80\x5a\xf1\x34\xa4\x12\x99\x15\xaf\xaa\x90\x0d\x24\x9d\x3a\x51\x3c\x50\x2b\x5e\xe3\x9f\xc8\xef\xe4\x32\x22\x3d\x19\x97\x17\x8e\x2d\xcf\x9b\x97\xc9\x2f\xe0\xa2\xf5\x8b\x80\xad\xe4\xf9\x81\xb1\xad\x0a\x69\x83\x95\x90\x87\xf7\x81\xa5\x90\x97\x93\x09\x26\xfb\xae\xe7\xc6\xf3\x24\xf1\xa4\xec\x26\x80\xeb\x8e\x27\x98\xb9\xd5\x22\x8e\x3b\x00\xfb\x5d\x2c\x7b\x29\x30\x3d\x60\x20\x8c\xd6\x98\x47\xea\xc5\x81\x1e\x44\x78\x19\xf1\xb4\x34\xaf\x93\xe7\x85\x83\x00\x53\x19\xd1\x98\x1b\xa8\xd6\xc1\x9d\xc6\xb3\xfa\xd4\x8b\xc8\x14\xa2\x7b\x47\xf4\xde\x72\xa8\xed\x8e\xd1\x8f\x9b\xbf\x44\xf0\x9a\xdf\xa7\x34\x9c\x3f\xa6\x6e\x7d\xc5\x56\x45\xa8\x0b\xab\xb3\xb1\x72\x7b\xb2\xd6\x6a\x91\xa3\x4c\x48\x7f\xef\x2d\x41\xac\x80\x13\x4d\xdd\x8a\x5a\x39\xf7\xfb\x0f\x8f\x59\xb9\xda\xa9\xf3\x84\x0b\xa6\xa6\x65\xee\x9b\xb5\xcc\x9b\xff\x57\xb5\xcc\x3e\x1f\x65\xbe\x9a\x99\xdc\x67\xe4\x15\x22\xb9\xd8\xbc\x55\xf0\x44\xba\xe0\x19\x16\x3d\xe5\x1e\xf4\x5f\x29\x00\x33\x7e\x37\x5a\xd8\x89\x0e\x80\x0e\xdc\x41\x27\x3a\x46\xaa\xd6\xcf\xdc\xae\x96\xe0\x2e\xe5\xe5\xee\x5b\x70\xa7\x31\x6e\x9a\x13\x11\xda\x37\x91\x37\xe8\x61\x68\x4d\x46\xae\xad\x25\x1f\x7e\x1c\x60\x10\x1b\x7c\x7f\x89\x17\x39\xf5\x1d\x01\x0f\x94\x38\x64\x91\xe2\x65\xe8\x8e\xad\x70\x4e\x0e\x92\x79\xd5\xa1\x7b\xc4\x6d\x7e\x64\x85\x0e\xbe\x87\xc0\x5b\x02\xcf\x54\x4b\x0a\xe8\x02\x00\xaf\x01\x0d\xcc\x7a\xe8\x10\xc8\xfd\x83\xb8\x12\x6c\x26\x0a\xa8\x37\xbb\x31\xa0\x6a\xf4\x29\x1e\x17\x76\x10\x86\x90\xa6\x97\x93\xb3\x08\x44\xe4\x24\x69\xa2\x02\x78\x81\xf8\x15\x8d\xd7\x9e\x47\x78\x4a\x7b\x52\xc8\xe5\x4b\x01\xce\x4b\x03\x36\x74\xc6\x35\xd8\x74\x60\x3e\x37\xbc\x7e\xff\xf1\x87\xf1\x4d\x3c\x57\xe3\x5d\x88\xeb\x92\x79\x4c\x33\x4f\x49\x97\xda\x81\xef\xfc\xfc\xa4\x14\x0c\x5c\x67\xa4\x56\x62\xbc\xc6\x75\x98\x2f\x9d\xed\xe0\xc6\xb4\x12\xe7\x7f\x5f\xc2\xfa\xe5\x0c\xfc\xbd\xba\x5b\xdf\xda\xde\xad\xa6\xc1\x71\xc0\xf4\x64\xd8\xa4\xae\x2f\xcd\xbb\x8e\xf3\xc8\xfd\x41\x50\xc4\x9d\xa0\x13\xcc\x56\x35\xc1\x28\xd8\x71\x4c\x8f\x96\x70\xba\x89\x4d\xe6\xed\xf5\x65\xde\x3e\xba\xdc\x70\x33\x30\xec\x9e\x6f\xd5\xdd\xb3\x67\xf5\x49\x13\x50\x11\x8a\xbd\xfd\x2c\xfc\x23\x2b\x3f\xfc\xab\xd6\xc3\xfa\x3a\x6f\x5a\x00\x2f\xb3\xeb\x01\x5e\x0d\x72\x6f\xbb\xfc\x30\x6a\xf0\x3d\xb7\x08\x81\x0c\xe9\x5b\x9f\xb9\xdd\x8d\x4c\xbb\xf0\x04\x29\x40\x9f\x73\x9b\x6c\x78\x1e\x6f\x35\x32\x9c\x81\x5d\x2a\x12\xfe\x75\xb3\xf0\xca\x8c\x7d\xa3\x25\xd0\x99\x86\x93\xd9\xac\x8f\x67\x8f\x6a\x25\x59\x61\x66\xcc\xee\x97\x32\x44\x98\x64\x7b\x9c\x4e\x39\x81\x48\x85\x98\x66\xcf\x38\x82\x37\x7f\xed\x10\x78\xde\xbe\x47\x8c\xe0\x8c\x3a\xae\x45\x9a\xc1\x64\x4e\x8a\x67\x28\xb4\xa9\xcf\xca\x08\x33\x30\xa1\xb6\x3b\x70\x6d\x15\xfa\x2a\xa2\x09\x7e\x93\xc0\xd7\xc4\x43\xd6\xf5\xd9\x81\x6a\xba\x60\x99\x98\xe2\x9a\xac\x26\xee\x12\x24\x78\xb8\x55\xa0\xb4\x74\xcc\xd2\xe2\xfd\xeb\xa4\x45\x59\x4a\x0b\xc5\x85\x47\xd6\x60\x42\x46\xb3\xc0\xfc\xb5\xa3\x58\x24\x30\x39\x83\x50\x34\x4e\xf5\xf8\x3c\x4a\x50\xbe\xdb\x06\xcf\x78\x78\x2a\x0f\x06\x09\xa2\x57\x19\xb0\x06\xe7\xc2\x50\x67\x09\x5a\x3c\xaa\x21\x22\x7d\x2b\x42\x54\x64\xee\x7d\x2f\x6a\xf2\x6b\x6c\xc5\xc4\xad\xf1\x8a\xd8\xba\x43\x1a\xd7\xb7\xb6\x8b\xae\x0a\x56\x95\x77\x73\x27\x2e\x79\x41\xea\xa6\x3d\xd8\x05\x6f\x74\xf2\x7c\x8f\x6c\xe9\xc8\xba\x3c\x89\x92\xe2\x3d\x91\x51\x53\x81\x68\x99\x54\x93\x04\xf5\x6a\xe7\x7a\xe1\x94\xa2\xeb\xe1\xea\x5d\xdc\x5a\xdc\xc5\xba\xb1\x8b\xe2\x3d\x3d\x34\x5c\x99\xb4\x2e\x62\xb1\x61\x4e\xb1\x0d\xbd\x58\x3f\xa7\xd8\x26\x16\x53\xf9\x52\x08\x87\xfd\x22\xf8\x72\x43\x4e\xe6\x32\xfb\x75\x98\xfc\xda\x67\xbf\x96\x0a\x92\x49\x60\x26\x8d\xe3\x30\x5a\x25\xec\x21\xb1\x9b\x9a\x19\x27\x58\x0b\x04\xd5\x60\xb5\x8c\x43\xdc\x13\x57\x99\xd1\xa8\x8b\xdc\x50\x38\x21\x8c\xab\xbf\x91\x8d\xaa\x1e\xa4\xac\xd8\x79\xe1\xa8\xe5\x51\x8d\x45\x6e\x2a\x29\x25\x00\x0f\x86\x21\xe4\x99\x7d\x31\xa1\x53\xe0\x39\xe9\xda\xfd\xc0\x4b\x62\x29\xf3\x28\xd4\x05\x85\x43\xcb\xf5\xe3\x34\x89\x01\xfb\x70\x29\x8d\x0d\x99\xe4\x37\xb6\x3c\xd7\x4e\x13\x71\xe1\xd3\xa5\x54\x64\xaa\xe0\x8c\xf7\x9f\x20\x34\x15\x5f\x2c\xa5\xb5\x25\xf9\xe2\xb9\xfe\x6d\x86\x31\xec\xc3\xa5\x34\x5e\x26\xa9\x8b\x01\xa6\x37\x33\x2c\xfc\x78\x29\x9d\x1d\x85\x0e\xa6\x00\x35\x50\xc2\x2f\x96\xd2\x7a\x25\x68\x35\xc3\x00\x52\x48\x05\xd3\xcc\x9c\x45\x71\xe8\xde\x52\xb1\x57\x2f\x9d\xff\x7a\x22\x8c\x31\x01\x91\xf9\x1b\x9c\xf0\x03\x93\x3c\x70\x91\xe2\x21\xb2\x66\x59\xd1\xbe\x34\x34\xb8\xa1\x36\xe8\x2e\x96\x98\x65\xb4\x36\x55\x5a\x52\x3c\x32\x2b\x41\x15\x9c\x65\x24\xb7\x34\x7e\x2c\x12\x9f\x65\x94\xa4\x00\x75\x63\x6a\x39\xf3\x7c\xf9\x59\x46\x48\x4a\xd0\xf5\x72\xf9\x59\x46\xeb\x95\x3a\x3c\x7b\x75\x29\xd2\xe9\x3e\x4b\xe3\x0d\xe0\x7e\xb7\x55\xd5\x42\xae\x38\x4c\xdb\x20\x08\xe9\x7a\x3a\xb0\x01\xf3\x98\xf1\xd4\x9b\x23\xcb\x1b\x30\x65\xa2\xb6\xad\xc7\x0a\x26\xa4\x44\x05\xa6\x38\xd4\xb7\x52\xc5\x20\xe5\x0b\xcf\x9a\xe7\xde\x51\x12\x81\x6e\x3b\xe7\x85\x5c\x9f\x0c\xa6\xe0\xc5\x2a\x88\x7d\x9f\x5a\x9e\x3b\x70\xa9\x43\xd8\x61\x15\x96\xc9\xb0\x4c\xfa\x25\x70\xd8\xab\xa4\x76\xeb\xdf\xc8\xc6\x8e\xea\x38\xc6\x45\x5d\x86\x95\x74\x31\x24\x1b\xdc\xfb\xc9\x1a\xd9\xa8\xca\xe0\x2c\xc3\x36\xa9\x51\x62\x5b\xae\x1b\x46\x31\xb1\x47\xd4\xbe\x45\x2b\x79\x38\xa5\xbc\xd3\x80\x71\xc1\xb1\xe6\xf9\x0f\xb8\xc9\x09\x3d\x82\xec\xa5\xd5\x8a\x64\x39\x02\xfe\x83\x2c\xf8\x1c\x53\x40\xea\x28\x47\xf9\xc3\x80\x2f\xba\x9d\xe6\xd7\xce\xd1\xfe\xee\x82\x1a\x7c\x63\x81\x36\x34\x58\x21\x97\xbc\xd8\x23\x5b\x0a\x96\x4f\x3a\xe1\x21\xee\x5f\x72\xd0\x72\x36\x95\x02\x60\xf8\xc5\x21\xa2\x5a\xa7\xf6\x04\xe2\x3d\x18\x3f\x61\x58\x9a\x3d\x31\x0b\x72\x04\xbd\xa9\xeb\x1f\x41\xfd\xdf\xc5\x58\x17\xc4\x18\xe2\x4f\x2a\xd2\x70\x09\x03\x6d\x15\xc5\x28\x5f\x14\x5e\xad\x26\x54\x72\x36\x0e\x5a\x87\x8d\xab\xd3\x5e\x9e\x74\xfd\x46\x36\x0d\x62\x9a\xac\xb9\x94\x98\x6e\x2e\x12\xd3\xcd\x7f\x37\x31\x35\x0d\x63\xb1\x98\x2a\x9b\xcd\xff\x89\xa9\x91\x81\x76\x16\x6c\x2b\xc3\x81\x15\xb8\x2f\xc5\x52\x90\x32\x9d\x0b\xbf\xef\x91\x57\x55\xf2\xb7\xbf\x81\xf0\xfd\xb6\x47\x5e\xbd\x4c\x66\x79\xc9\x7e\xfa\xaa\x4a\x5e\x90\x9d\xdd\x3c\xb2\xb5\xaa\x4a\xb7\x56\xcd\x10\xce\x5d\x01\xac\x26\x50\x16\x1c\x80\xae\xf3\xa3\x8f\xc6\x07\xa8\x90\x47\xd9\xf7\x8c\x74\x44\x61\xc9\xec\xa7\x95\xa9\x97\x0e\x41\x4b\xbf\x7c\xd3\x18\x1f\x43\xd7\x22\x6e\x98\x21\x02\xa4\x04\xdf\x4b\x1f\xf9\x66\xb8\x04\x28\x83\xdb\xcb\xd9\x05\x66\x1a\x89\x0c\xe2\xc5\x83\x6e\x27\xc7\x38\xb4\x45\xd6\xf4\xc2\x15\xd2\xa1\xd1\xd4\x8b\x49\xf1\xe2\xa4\x44\xdc\x08\x72\x58\x56\x09\x38\xcc\x6f\x93\x35\x41\x32\x6b\x8c\xbd\xec\x94\xc8\xa7\x30\x98\xed\xda\xf0\x24\xf4\x45\x12\xe2\x34\x42\xb2\x4b\x6c\xd2\x31\x8c\xc9\x7f\xf4\x63\x3d\x37\x6e\x6e\xad\xfc\xc8\x50\xf5\x0b\xab\xd9\x4b\xb7\xd5\x1b\x61\x18\xcc\x4c\xb7\xd7\xc4\xde\x5d\x62\x97\x76\x2d\x26\x3e\xbf\x7c\xf2\x52\x26\xaa\x2c\xb7\xec\xc3\x75\x3b\x98\xa9\xb1\xe2\xec\xf7\x8e\xe1\xb5\xe4\x80\x3f\xeb\xf3\x24\xe0\xa1\x0a\xd4\xde\xa7\x84\xfa\x90\xd3\x92\xdc\xb9\x16\x91\x82\xf4\x48\xd1\xf3\xff\x5c\xd1\xdb\x26\x8f\x11\x27\x78\x01\xe8\xb6\xc9\x1b\x45\x90\x48\x6d\x2b\x21\x71\x89\xb6\x4c\xc8\x9f\x3e\x8d\x92\xe2\x35\x26\xbd\xa4\x18\x32\x4d\xbd\x44\x82\xf0\x99\xc0\x0c\x16\x5f\xd7\xd8\xd7\x6c\xf4\x58\x04\x0c\xab\x75\x85\xf0\xd5\xc1\x49\x86\x68\x1d\x89\x22\xfa\x0d\x75\x18\x5d\xf9\x0d\xd0\xe3\x9f\x23\x31\x65\xdd\x9c\x88\xb5\x9f\xa5\xf8\x92\xec\x92\x1a\xd9\x25\x55\xf8\xe7\x93\xe2\x79\x10\xc6\x23\xd2\x18\xd3\xd0\xb5\x2d\x5f\x41\x3b\x86\x64\x06\x56\x14\x43\x3a\x24\x19\xcc\x14\xa1\x9d\x8e\xc4\x01\xb9\xee\x6d\xb2\x0d\x94\x4c\x27\x98\x2c\xd6\xa1\x7e\x10\xd3\x64\xe3\x81\x91\x4a\x72\xac\xc4\xe9\x49\xb5\x06\x2f\x5c\xd4\x66\x9a\x36\x66\x65\x21\x5b\x1b\x49\xcf\x4f\x03\x1b\xb2\x06\xa4\x3b\xbe\x45\x36\x88\x2f\xbf\xb5\xee\x2c\xd7\x63\xa2\x56\x66\x8b\x0c\xfd\x47\xa8\xb3\xe6\xfa\x65\xd9\x9c\x64\xd5\x16\x0c\xf3\x3c\x10\x95\xcb\x98\x9d\xd2\x28\x7c\x6f\x9e\xbc\x49\xfc\x3f\xb5\xa2\x97\x6d\x4f\xb5\xd5\xb7\xbc\x4f\x6f\x6a\xb5\x55\x77\xbd\xfa\x63\xc8\xd6\x57\x27\xbb\xfd\x98\xde\xd6\x77\x6b\xbb\xd5\xdd\x95\x77\xea\xad\x8d\x47\x10\xdf\x92\x64\xb5\xb4\x89\xfc\x99\x58\x04\xa1\xa1\xb3\x6b\x1c\x10\x87\xda\xae\x03\x68\xe9\x00\x34\x19\x07\x64\xc4\xfe\x86\x27\x93\x00\xb7\x99\x24\xa5\x3d\x77\xa4\x9a\x46\xac\xe4\x7c\x92\x9c\xe8\xd7\x10\xab\x8c\x9e\x4f\xd2\x59\x4a\x2e\x57\xc5\x17\xea\x9c\xde\xd1\x30\xd3\x84\xe2\xf2\xf4\x96\x7d\xe5\xa2\xdb\x98\xee\x1c\x07\x3a\x84\x88\x28\xe5\x9b\xbc\xe2\xef\xd4\x00\xbc\x73\x23\xe9\x67\x98\x13\xd1\x0f\xf4\x70\xc8\xa1\x7b\x47\xfd\x32\x67\x85\x4c\x62\xc8\xed\x98\x65\x7e\xa8\xb8\x11\x42\x9f\x3f\xda\x0b\xe3\xf7\xc9\x12\x37\x8c\x60\x10\x4b\xec\x4e\xee\x90\x06\xaf\x74\x3d\xb3\x4b\xcb\xf3\xc9\xe3\x21\xcd\xa2\x60\x10\x77\x0c\xb0\x66\x1d\xc4\x61\x46\x2c\x76\x7c\xaf\x82\x0c\x4c\x67\xab\x25\xb1\x4c\x77\xed\x3f\x73\x86\x9a\xda\xd7\xf2\x8a\xa9\xfa\x63\x16\x18\x1e\x81\x0e\x4f\x9f\xd6\xb3\x5f\x96\x34\x79\x1a\x58\x0e\x39\x6d\x1d\x44\xd0\xcc\xe9\x2a\xad\x10\x82\x21\xed\x7d\xaa\x85\x35\x5b\x11\xb9\x73\xc3\x78\x6a\x79\x48\x2f\xb8\xa3\xa1\x67\xcd\x01\x7c\xe2\x57\x0d\xa7\x95\x49\xb7\xe5\xcf\x21\x49\xb3\x15\x66\x53\xdd\xb1\x7e\x7f\x5f\x81\x53\x1c\x2d\x21\x9e\x7b\x94\x33\xe9\x8a\x29\x20\xd7\xbd\x2d\x0e\x66\x9b\x26\x4a\xbe\xaf\x04\x02\xb0\xd8\xdd\x5b\x98\xff\x15\x97\xef\x1c\xbf\xed\xa7\x84\x98\xe7\xd2\x00\x1b\x78\x31\x79\x2e\x5e\xd5\x05\xfc\x2f\xe8\x84\xd1\x25\x21\x1d\x53\xf0\x67\x05\xfb\x3f\x95\x1d\x9b\xff\xa3\x1d\x59\xc4\x92\x9c\xf3\xf6\x49\xf0\x0b\x4f\xe5\x46\xce\xe1\xfc\xe7\xf7\x21\xc3\x08\x13\x24\x86\x08\x90\x55\x57\x30\x06\xc8\x5a\xe1\xd0\xe4\x81\x02\x16\x68\x25\xa1\x7b\x18\xc4\x1c\x73\x3b\x79\xa1\xc6\x1d\xe0\x31\x29\xde\x60\x7f\x5c\x61\xa3\x41\x67\x70\x76\x00\x77\xe8\x10\x6e\x2c\x70\x4a\xed\x9b\x1d\x1c\xc2\xa7\x02\x8d\x88\xc0\x6e\x8c\x8e\xe9\x05\x13\x01\xb6\x56\xfd\x42\xde\xa4\xb0\xda\xaa\x5f\xca\xa4\x56\x2d\x91\xb5\x1a\x79\x2d\x1f\x8d\x93\xca\xfb\x68\x91\xe7\xf5\x6b\xd9\xfa\x35\x51\x9f\xa8\x04\x32\x33\x7b\xdd\xc3\xb1\xe3\xb8\x8b\xb2\x67\x65\xad\x9d\x45\xe1\x82\x32\x44\xae\x8a\x6f\xab\x06\xb0\xdd\x8c\xff\x05\x80\x92\x3d\xd2\x56\xf2\x26\x5c\x92\x25\x1a\x41\x9a\x14\xe7\x08\xd7\x27\x1d\x6a\xc7\x96\x3f\x9c\x7a\x56\xc8\x73\x04\x1e\xb4\x9a\xcd\x46\xa7\x51\x7a\x54\xdb\xff\xb9\xa4\x6d\x40\x2d\xe6\xb2\x5e\x64\x1a\x47\xa5\xfb\xb1\x5b\x32\x10\x8a\x9e\x8a\x5b\x0c\x2d\xfc\x39\x7c\x8c\x16\x8f\x05\x21\x28\xc9\xd8\xf2\xdd\x89\xf4\x0c\x87\x47\x1d\x27\x66\x75\xca\x22\x44\x95\xfd\x97\xde\xc7\xd4\x8f\xdc\xc0\x8f\x1e\xb9\x2a\xe3\x65\x6e\x46\xf8\xe8\xb6\xc2\x6c\x76\xd8\x6c\x3e\xae\xf1\xff\x5c\xd2\x7a\x77\xf5\x58\x8f\x47\x1a\x5d\x56\x68\x98\x6d\xa0\xae\x3f\x5c\xeb\x33\x16\xdf\xb1\x4b\x29\xdf\xf9\xde\xef\x5f\xab\xaa\xcf\xea\xad\x92\xa5\xcc\xc6\x65\x9a\x11\x60\x13\xb1\xe9\x4f\xc0\x62\xb3\xe1\x8d\xad\x70\xe8\xfa\xd9\xd1\x9d\x3d\x79\x74\xd3\x25\xfb\x42\x30\x99\xe7\xec\x03\x9d\x46\x99\x1b\x57\x10\x8d\xfb\xb1\x62\x74\xb7\x2c\x47\x29\xd8\xf0\x0e\x5d\x8f\x1d\x69\xbc\x0b\x5c\x93\x6d\x1d\x76\x1e\xd9\xda\xe7\xc2\x6c\xd9\x34\xe2\x8d\x47\x26\xfa\xbc\x4c\x6c\x49\xb0\x50\x5a\xef\x7a\x97\x8d\xce\x13\x2f\x40\xf7\xcb\x24\x17\x4e\x70\xb9\x5e\xc5\x76\xdc\x62\x1b\x04\xbf\xf5\x35\x9a\xad\x47\x8e\xf9\xd7\x25\xad\x1e\xba\x00\x93\x6d\x98\xdb\xc3\x4e\xa3\x54\xd6\x81\xea\x1f\x37\xb7\x4b\x5a\xbe\x8b\xbf\xc6\xae\x47\x01\x94\xa7\x68\x25\x46\x87\xf3\xc6\xc5\xc8\xb2\x6f\xa1\xcd\x2b\xff\x9c\xc6\x6f\x2d\xfb\x96\x9d\x04\xa4\x18\x51\x4a\x46\x71\x3c\x89\x5e\xaf\xaf\xfb\x34\x66\xc5\x66\xee\xad\x5b\xb1\x83\xf1\x3a\xfb\x65\xfd\x5a\xa1\x39\x10\x7b\x8f\xeb\x0f\x02\x09\x87\xac\x5f\xc6\x06\x56\x88\x7b\x31\x5c\xb2\x48\x11\x42\x14\x89\x45\x86\xde\x7c\x32\x82\x1e\xa0\xc3\x3b\xfc\x6d\x5c\xcc\x0f\x4f\x0f\xac\x13\x71\x75\x89\xc7\xd6\xe2\xbb\x55\xc6\xb3\x0a\x6a\x83\xd7\x85\xda\xeb\x22\xcf\x07\x89\x82\x8b\xc9\x92\xf1\x1b\x44\x89\x2b\x55\x96\x7b\xe5\xd5\xd3\xf9\xf6\x8d\x2f\x3d\x19\xb0\x5e\xc6\xfb\x03\x04\x59\x4a\x0f\x00\xb1\x67\x16\x84\xf3\xae\xaf\x43\x46\x62\x3e\x0a\x93\x1f\xf6\x92\x16\x85\x82\xa6\x07\x41\xe3\x06\x22\xac\xb1\x68\xba\xc5\x1c\xd7\xad\x66\xeb\xb4\xf3\xb4\x95\xfc\x99\x4f\xfb\x92\x48\x35\xe3\xb2\x6a\x89\x65\x55\x7d\xe2\xb2\x5a\xd2\x34\xdf\x46\xc4\x88\x5b\x77\x10\x81\x0b\xbb\xc7\x69\xeb\xa9\xc3\xfd\xe7\x6a\xfb\xa6\x68\x34\x79\xb6\x00\x83\xd1\xe9\xe5\x53\xdb\xfd\x63\x71\xbb\x3c\x3c\x1b\xed\xce\x38\xc8\x76\xf3\xa7\x36\xad\xcf\x1c\x81\x7d\xc1\xa3\x0e\xc4\x43\x5f\x92\x48\x6b\xf6\xe0\x67\x9b\xfd\x6f\x73\xb3\x6c\x75\x5f\x5c\x75\x9a\x2d\x72\xd8\x3e\x6d\xbd\xc6\x02\xeb\xdf\xa2\x75\xf8\xe5\xeb\x5d\xfc\x55\xde\xf8\xbe\x8e\xad\x49\xe5\x5b\xc4\xaa\xb0\x03\x3b\x44\x2c\x78\xbb\x44\xea\xd5\x5a\x1d\x9e\x48\x9a\xa3\x30\x18\xbb\xd3\x31\xb9\xe8\x92\xc6\x34\x1e\x05\x61\x54\x81\xf4\x41\x50\x36\x02\xf3\x62\x78\xc7\xe6\x62\x7d\x9d\x5c\x45\x14\x95\x35\x37\x22\x3c\x1d\x83\xcd\x4d\xab\xc3\xe0\x8e\x86\x3e\xee\xd6\x16\xd9\xef\x1e\xac\xa1\x7d\xc9\x73\x6d\xea\x47\x14\x21\xc4\x6c\xcb\x27\x7d\xca\x28\x0d\xc0\x3d\x81\xe3\x70\x9e\xb6\x9b\xad\xf3\x6e\x8b\x0c\x5c\x8f\x56\x9e\x3d\x2b\x4c\x23\x84\x6a\xb5\xe3\xc2\xee\xb3\x67\x9e\xdb\xaf\x84\xb1\x43\x27\xc5\x02\x44\x39\x02\xcc\x78\xc6\x7b\x7b\x6c\x4d\x48\xd0\xff\x46\x6d\x99\x70\xe2\xcc\x9a\x4c\xd8\xaa\x06\x25\x9b\xa3\xed\x39\x3c\xb8\x17\xf0\x15\x24\x97\xca\x78\xce\x38\x74\x42\x7d\x88\xa6\x13\x3e\xda\xf0\xcc\x03\x56\xea\x9e\x9e\x1e\x46\xb4\x71\xd4\x61\x0d\x63\x6e\x25\x5f\x13\x63\x89\xe2\x29\x8a\xfe\x1d\xb6\x5f\xf2\x4f\xc4\xdc\xfb\x41\x1c\x1a\xd9\xa1\x3b\xc1\xb0\x23\x32\x9a\x8e\x2d\x1f\x9e\x9c\x60\x6f\x52\xbf\x14\x0c\x67\x53\xa9\x12\xba\x80\xd1\xfe\x20\x43\x8f\x8d\x9d\xcd\xe5\xd1\x29\x2b\x94\x0c\xda\xf5\x27\x53\x08\xd1\x0a\xa6\x31\xfb\x2d\x41\xc1\x4a\xcb\x9b\x92\x7f\x48\x3d\xb9\x94\x6e\x94\xb1\x1d\x0e\x34\xc8\xb8\x4f\xd8\xc6\x32\x0a\xc2\x58\xeb\x2d\x9a\xf0\xdd\x48\xe7\x57\x99\xa3\xc6\xc1\xd7\x0e\xed\x4f\x87\x43\x0e\x4c\xcf\xfa\x21\x52\xff\x2a\x64\xf6\x54\xa2\x1c\xa7\x96\xb7\xc9\x46\x2a\xbd\xcb\xe3\x80\xd8\x10\xac\x13\x88\xfc\x21\xc8\x29\x26\x92\xae\x1f\xc5\x96\xe7\x51\x90\x33\x48\x33\xa1\xb6\x06\x79\x24\xa4\x67\xfb\xfa\xba\x78\x06\xb8\xa5\x74\x42\x2c\x9f\x4c\x7d\xfe\x4a\xec\x10\x09\xca\x28\x42\xd0\x71\x2a\x24\x6a\xb6\xe5\x79\xc1\x8c\x29\x2b\x10\x0e\x67\xf9\x14\x32\x9c\x44\x54\x60\xab\xf3\x04\xd7\x98\x4a\xd6\x83\xc7\x41\xf0\x62\x84\x7e\x00\x5b\xf7\xad\x88\x7e\x25\x7b\xc8\x63\xd1\xa1\xf3\x60\x46\xa2\xb9\x6f\x43\x6d\x78\x92\x90\xb5\x99\x82\xe2\x53\xea\xa0\xb3\x27\xde\x13\xe6\xbe\xfd\x35\x75\x33\x68\x8b\x4a\x23\xea\x4d\x68\x08\xdc\x0f\x29\x2b\xc9\x64\x44\x27\x59\x51\x93\x9c\xcb\x5c\x2c\x5c\x9e\x22\x1e\xc7\x90\x16\x66\x94\xc1\x37\x3f\x48\x30\x89\xbf\xa2\x20\x36\x1c\x07\xf6\x79\xcb\x4b\x2a\x33\x11\x44\xab\x36\x2c\xad\x60\xa2\xc0\x33\x81\x4b\x10\x3b\x19\x79\xe9\x05\xa2\x59\x99\x84\x41\x1c\xc4\xf3\x09\xc5\xd1\xaa\xa2\x2a\x3b\x20\xa1\x30\xdb\x03\x0e\x48\x88\x8b\x13\x16\x2a\xcf\x8f\x89\x93\x83\x79\xb1\x19\x37\xd9\x34\x09\x54\xe3\xe7\xe9\x59\xf9\xdb\xdf\xc8\xf3\x14\xf5\xac\x08\x11\xc0\xb6\x83\x63\x20\xa9\xff\xd5\xf4\x79\x48\xbf\x1a\x9d\xf2\xc1\x63\x14\x3b\x15\x6b\x6b\xb9\x42\x78\xca\xcf\x90\xe2\xc3\x13\xb1\x24\x80\x23\x96\xe0\xa3\xb2\x43\x0a\xa2\x81\xc4\x7c\x3a\xe3\x1b\x22\x3c\xcd\x05\x9e\xc3\xd1\xdb\xc3\x21\x75\x40\x82\x09\x4a\xef\xcc\x9a\xa3\xb2\xeb\x03\x14\x8d\xaf\x09\xaf\xe0\x4a\xc2\x80\x64\xf8\x38\x46\xb2\x47\x50\x0a\x2a\x56\x14\xb9\x43\xbf\xf8\xcf\x1f\xe5\xb4\x64\x97\x13\xf9\x00\x9b\x17\x53\xf8\x0c\x74\x52\xb5\x24\x46\xe7\xd0\x63\x9b\x49\x94\xb4\x74\x4b\xe7\xdc\x39\x09\xeb\x96\x2a\x63\x6b\x52\x2c\xde\xd2\x79\x89\xec\xfd\xce\xd5\xd4\xc2\xe7\xcf\xf7\x05\xf2\x82\x87\xc6\x3f\x4c\x2c\x87\x15\x80\x5c\x6b\xcd\xc0\xa1\x8d\xb8\x58\x2d\x55\xe2\x80\xbf\x81\xd6\xb6\x4b\x0a\x7c\x17\x4c\x13\x9b\x5c\x3a\x23\x1d\x3a\x6c\xdd\x4f\x8a\x05\x78\x96\xe6\x5d\xe1\x50\xd6\x08\xce\xff\xa5\x50\x26\x85\x21\xcf\x7e\x91\x08\x46\x31\x8a\x43\xd6\x1d\x76\x94\x55\x42\x3a\xf1\x2c\x9b\x16\x13\xea\x65\xcc\xbe\xb9\xf7\xbb\xca\x84\x4f\xf6\xe8\x8b\x09\x22\x83\x2d\x2c\xb1\x97\xc8\x7d\x44\x2e\xaf\xa2\xe3\x46\xb6\x85\xf0\xb2\xe1\xd4\x8f\xdd\x31\x25\xd3\x89\x63\xc5\x34\xb1\x1f\x09\xcf\x12\xc4\xc3\xb0\xfc\x39\xec\x9b\xb8\x63\xd1\xf8\xe2\x8e\x86\xa1\xeb\xd0\x28\x01\xae\x45\x92\x59\x25\xcc\xbc\x1e\x51\x62\x32\x16\x0c\x91\xae\x96\x8c\xac\x3b\xea\x17\x62\xd2\xa7\xd4\x5f\x2c\xc5\xb0\x66\x0b\xf0\x56\x3b\xe2\x78\xb9\x40\x5c\x48\xa2\x2a\x32\xcf\xf7\x32\x42\xa3\xc8\xa7\x69\x47\x3c\x63\xe2\x2f\x1a\x16\xb1\x59\xb0\x41\x27\x27\x2c\x8f\x07\xe4\xc7\x27\x63\x3d\xdb\x6a\x31\xaf\xfe\x14\x33\x66\xe1\x1a\xa5\xf7\x6e\x04\x17\x07\x39\x13\x56\x44\x5c\x70\xe6\xe2\xcb\x6c\xe6\xc6\x23\xf1\x8a\x27\x4b\x8b\xdd\x8e\x14\x67\x80\xab\x6a\x45\x7c\xe9\x62\xf9\x52\x85\x90\xee\xb4\x8f\x78\xf3\x71\x32\x4d\xac\x8b\x10\xca\xee\x02\x3e\x6e\x18\xcc\x88\xc5\xd6\xee\x24\xa4\x00\xf8\x0a\x5b\x2c\x9b\x44\x36\xa1\xac\xa1\xc8\xbc\x5b\xab\x1a\x43\x32\x03\x62\x8f\x06\x02\x99\x81\xad\xb8\x29\xab\x82\xa4\xc8\x82\xb2\x73\x2a\x13\x23\xb6\x03\x4d\xd8\x21\x8a\xca\x22\x76\x30\x99\xab\x8a\x8f\x38\x18\x60\x34\x3c\xd6\xea\x9f\xc6\xee\xfc\x20\x0d\x58\xb5\x66\xdd\x06\x54\x82\x2c\xba\x72\xce\x78\x6c\x2f\xc0\xa0\x09\x5d\xa8\x93\xe4\x8d\xb9\x0d\x15\xd3\x0a\x4d\x66\x4b\x94\xe8\xc2\x2b\xc9\x33\x93\x4c\x95\xbb\xda\xe6\xc7\x28\x71\x9e\x80\xf6\xf0\x43\x0b\xe2\xf6\x40\x65\xb7\x55\x45\x79\xd1\x74\x46\x39\x66\x48\x56\xed\xab\x16\x31\xae\xe5\xac\xe4\x2e\xa3\xec\xf7\x7f\xb1\x3e\xc5\x3a\x2a\xd4\xa9\xa4\xe7\xa9\x04\x59\xc1\x2d\x99\x4e\x88\x25\xd7\x0e\x34\x30\x74\xa3\x98\x86\xfc\x70\x4c\x2d\x9d\x2e\xd7\xda\x21\x93\x15\x5b\x39\xf0\x0b\x37\x5c\xf3\xe5\xe3\x05\xc1\xed\x94\xeb\xe8\x4b\x64\xb4\x87\xb5\xc0\x99\xcb\x8d\x0b\x11\xee\x8b\x49\x17\x16\x4d\x90\x22\xa0\x98\x29\x54\x9d\x31\xd6\xad\xc4\xca\x94\x8c\xbf\x32\xb2\xa2\x8b\x99\x7f\x19\x06\x13\x1a\xc6\x73\x2c\xa7\x9a\x9a\x14\x5e\x7d\x62\x5f\x7e\xd1\xce\x69\x5e\x46\x66\x1f\x4d\xad\x5a\xec\x36\xb1\x60\x41\x28\xdc\x6b\xf8\xf3\x7c\x16\x03\x78\x12\x2c\x70\xe0\xa5\xf1\xe0\x79\xcc\x14\x68\x97\xa3\x1c\xbe\x8b\x7d\x8f\xcf\x98\xe8\xd0\x8a\xec\xb6\x1c\xc7\xc0\xee\x32\x91\xbb\x9b\xce\x73\xb2\xb7\xb7\x97\x92\x49\xe5\x74\x12\x0b\x2a\x47\x79\x4a\xaa\xec\x6a\x4b\x10\x27\x47\xe4\x3f\xcd\x28\x0a\xa0\x3e\xc2\xa2\xb7\x7c\x07\x60\x0c\xdc\x38\xe2\xdc\x4e\xeb\x0f\x52\xed\x5f\x61\xe8\x39\xe7\x7b\x6a\xc0\x6c\xff\x5a\xbe\x41\x18\x98\xb0\xca\xae\xb2\xea\x29\x0e\xc3\xcf\x3b\xfa\x80\x13\x0d\xc0\xb6\x0a\x06\x39\x87\x04\x6a\xcd\x0b\x37\xc9\x15\x0e\x3d\xd6\xd2\x5f\x2a\x15\x6a\x20\x2f\x2c\x05\x17\xf6\xff\x48\x75\xe5\x54\x72\x0c\xf3\xac\xc2\xb0\xf0\x77\xa5\xb5\x77\x41\x5e\x61\xb3\xcc\xe1\xa1\x98\x44\xe5\xa6\x4b\xe9\xc7\x14\xfb\x02\x3f\x17\x59\x73\x93\x3d\x85\xd7\xc5\x45\xc5\x57\x52\xfe\x81\x5a\x00\xd7\x41\xa6\x82\xcb\x35\x27\x28\x9b\x7c\x16\x13\x98\x38\x3e\xd5\x49\x56\x95\xd5\x8f\x42\x55\xfe\xc8\x1e\xf9\xa7\xd2\x02\x22\x16\x1d\xa5\x51\x97\xe4\x3e\x34\x8a\xe3\xc9\xeb\xf5\xf5\xbb\xb8\x56\xad\x56\x7c\x1a\xaf\x3b\x81\x1d\xad\xdf\xc5\xf5\x7a\x75\x2d\x1c\xaf\x83\x8c\xd6\xd7\x36\x2b\xa3\x78\xec\xad\xd8\x03\x91\xf6\x30\x9f\x47\xc0\xd6\x02\x87\x82\x2a\x94\xe5\x4c\x16\x3e\xdf\x6f\x57\x0b\xaf\x0b\x9f\xa7\xf5\x2d\x7b\xbb\x50\x86\x93\xf6\xbf\xc8\xda\xef\xc4\x71\xad\x71\xe0\x3b\x4a\xb9\x1a\x2f\xf7\xaa\xce\xcb\x59\xac\xdc\x30\xa4\xf3\xb5\x7e\x70\xaf\x14\xac\x63\xc1\xcd\xea\x2b\x5e\xb0\xcf\x0a\x8e\xd6\x63\xa5\xcc\x86\x28\x63\xf3\x32\x36\x2b\x33\x58\x1f\x28\x65\x36\x45\x19\x87\x97\x71\x58\x19\x7b\x3d\x54\xca\x6c\x89\x32\x16\x2f\x43\x59\x19\x4f\xa3\xb3\x0d\x65\xaa\xd5\x7e\x95\x97\x19\xc0\x00\xe9\x30\xa4\x54\x29\xf6\x52\x14\xab\xf1\x62\x43\x56\xec\xc5\xfa\x9a\x52\x66\x87\x37\x57\xdf\xe4\x65\x46\xac\x8c\xbf\xee\x29\x65\x5e\x89\x2e\xf5\x79\x19\x97\x95\xb9\xd3\x86\x6f\x71\x5e\xd6\x76\x78\x99\x6f\xac\x0c\x46\x7d\xae\x81\x7d\x55\x29\xdc\x17\x85\x45\xff\x6f\x59\xe1\x38\x98\x64\x4a\xda\xbc\xa4\xe4\xaa\x27\x4a\x7a\x74\xa0\x16\x74\x04\x49\x31\x8e\xb1\xd2\x7e\xaa\x2c\xe5\x65\x37\x04\x51\x1f\x58\xec\xfa\x74\x0d\xe2\x64\x95\xa2\x03\x2c\xba\xd1\x17\xb3\x11\xb0\xa2\x91\x6d\xf9\xb5\xa4\xd4\xcb\xaa\x28\x25\x18\x34\x11\xa5\x36\x94\x52\x42\xdc\xaa\x62\xd4\xdf\x45\xa9\x2d\xa5\x54\x5d\xd0\x12\x9d\x0b\x45\xa9\x97\x4a\xa9\x0d\x51\x4a\x48\x52\x24\x4a\xbd\x52\x4a\x6d\x0a\xa6\x08\x5a\x31\x0c\x94\x0e\xe2\xb5\x58\x95\x94\x97\x5c\xe8\xb6\xa4\x14\x4c\x59\x41\x98\x8c\x54\xc9\x6d\xc1\x3b\x51\xf2\x4e\xe1\xb3\x5e\xf4\xa5\x20\x2a\x5a\x9f\x89\xb9\xd3\xcb\xed\x08\xbe\x88\x65\x78\x0f\xe2\xc5\x41\xa0\xd6\x30\xa7\x94\x2c\xcd\x85\xb1\xbe\x2d\x3a\x30\xc7\x31\x45\xd1\x1a\xfd\x3e\xb5\x14\xb9\x7d\x69\x89\xa2\x5b\xbc\xe8\x03\x5f\xdf\x56\x4c\xc3\x4c\x69\x14\xca\xea\x86\x2d\xa6\xe7\x9f\xac\xf4\xc4\x55\x8a\xd8\x82\xa0\x28\xf2\x07\x2c\x96\x20\xce\x10\x73\xf8\xd2\xb3\x36\x78\xc9\x1f\xc0\xa6\xd0\x8d\xdd\x68\xb4\x36\x09\xa6\xea\x46\xf4\x92\x8a\x85\xfa\x92\x97\xfe\x6f\x58\xcf\x01\x0a\xed\x0f\xe5\x11\x60\x1f\x29\x3c\x79\x17\xde\x7a\xdc\x2e\xdc\x58\x69\x17\xe6\xc3\xd2\x77\xe1\xfa\x46\xe1\x35\xd1\x79\xf0\x1f\x66\x1e\xa8\xe3\xbb\xea\x92\x46\xb7\xd9\x6e\xe3\x8d\xc1\x0f\x84\xc6\xb3\xea\xd1\x25\xb2\x3b\x2c\xeb\xf2\x34\x2a\x94\x31\x5e\x53\x79\xda\x9a\xc6\xf6\xd3\x39\xbb\xfd\x38\xce\x6e\xae\xd4\x4d\x87\x75\xe9\x29\x7c\x4d\xca\x6f\x56\x45\xf9\x3e\xe5\xe5\xff\xce\xca\x6f\xac\x6f\x2a\xa5\xb6\xfa\xbc\x54\x6d\x43\xac\xc2\x4f\xac\x54\xc1\xfd\x56\x20\x9e\x3b\x04\xef\x25\x52\xc4\x28\x80\x61\x00\xc6\xb3\x78\x44\x18\xd9\xc1\xe0\x4d\x49\x21\x64\xcb\xe6\xc4\xd6\xf4\x99\x11\xaa\xad\xd7\x95\x42\x8e\x28\xf4\x52\xec\x0d\x5f\xd4\x35\x4f\xfa\x56\xf8\x4c\x5f\x9a\x7c\xc8\x3b\xea\xda\x8c\x67\x01\x5b\x24\x91\xbe\x42\xb1\xe4\xf6\xb6\xba\x44\x07\xfa\xd2\xe4\x1d\xb4\xd5\xb5\x59\x5b\xdf\xd4\x57\x24\x2f\xb4\xa9\x2e\x49\xcb\x9e\x72\xac\x02\x55\x68\x0f\x5d\xdf\xff\x99\x45\xf9\xf2\x71\xa2\xd3\x4c\x81\x6e\xe5\x97\xdc\x5a\x49\xc8\x06\xd8\x7d\x5d\xcc\xa4\x40\x54\xed\x4d\x4d\x20\x1a\x05\x32\x1d\x7b\xd6\x34\x36\xcd\xb9\xb3\xad\xce\x79\xe1\xc2\x50\x56\xb2\xdf\xde\x52\xa7\x9e\xd1\x0d\x31\x09\xa5\x28\x29\xe7\xc0\xb1\xd5\x39\x28\x4c\x25\x55\x5d\xe7\xc3\xc2\xf4\x95\xaa\xf4\x15\x68\x81\x4f\x9a\x49\x9c\xe8\xa6\x2a\x4e\x05\x2b\xdb\xdd\x44\xa0\x06\x9a\x40\x15\x02\x43\x59\x39\x34\xba\xa5\x4a\x16\xa3\xab\x0f\x2d\x11\xaf\x41\xde\xd0\x32\x32\x16\x52\xff\x27\x76\xa7\x9d\xc7\x89\x58\x67\x35\xc1\x81\x3e\xfd\x59\xdb\x13\xad\xaa\xdb\x13\x63\xda\x30\xb4\xee\xa8\x69\x93\x4a\x14\xdf\x4f\xa8\xa7\x68\x72\x23\xa7\x8c\xbe\xd4\xa4\xd1\x2e\x10\x9b\x3a\xae\xe7\x59\x26\x71\xb4\x5e\xaa\xe2\x18\x71\xd7\xf1\x68\x3e\xee\x07\x1e\x29\x3a\xc1\xb4\xef\x51\x12\x95\xcc\x72\xf4\x4a\x93\x23\x29\x73\x26\x31\x7a\xa5\x89\xd1\x54\x8c\xd2\x24\x45\x3b\x9a\x14\xd1\x6c\x51\x9a\xd9\x17\x41\x8c\x16\x8b\x50\xd3\xf2\x2d\xc7\xb5\xfc\x27\xcb\xd2\xab\xc7\xc9\xd2\xbb\x47\xc8\x12\xb1\x79\xe7\x74\xa1\x7a\x9a\x90\x50\xfd\x24\xb3\x0a\xc4\x76\x43\x7b\x3a\x1e\x78\xf4\xfe\xa7\xc5\x85\x5a\xda\xee\x45\x73\x88\xcb\x19\xa2\xe2\xf0\xfd\x07\x1e\xab\x5a\x79\xd3\x3e\x36\xd8\xd4\xf6\xb1\x20\xa7\xc2\xbf\x91\x10\x0e\xfa\xe9\xbd\x2c\xc5\x12\x55\x18\x8f\x68\x38\xfe\x09\x19\xac\x55\x1f\x27\x84\x27\xab\x99\x13\xa0\x53\x79\xb2\x27\x77\x88\xbf\xaf\xba\x43\xfc\xf5\x87\xa8\xa3\xe9\x4f\x85\x2b\xc3\xd1\xf8\xd7\x1f\x77\x03\x4d\x91\x4a\x1d\x62\x29\x21\x71\x06\xaa\x90\xd0\xe8\x81\xc6\xd9\x9d\x0a\xd0\xe5\x7e\x46\x3a\x6a\x8f\x93\x8e\x8f\x2b\x49\x87\x8b\xbd\xfa\xb3\xce\xbb\x9f\x11\xa7\xbf\xe0\xfc\x93\xdb\xc7\x97\x3c\xbd\x49\xd9\x9b\x74\x1d\x6b\x9a\xdd\x85\x15\xa1\xab\xa6\x85\x2e\xbd\x81\x24\x32\x57\x4f\xcb\xdc\x9f\xb1\x2d\x51\x5d\xc5\x72\xd5\xa2\xaa\xd0\x9d\x07\xe1\x8c\x0e\x5d\xcb\x5f\x3f\xb0\x7e\x4a\x9d\xaf\xd5\x1f\x27\x7d\xad\x95\xf5\xf9\xed\x95\xe4\xd4\x97\x03\x71\xac\xac\x62\x9f\x08\xa0\xdc\x93\xfe\x9e\xda\x93\x8c\x1b\xd8\xb6\xbe\x81\xb5\x92\x6b\xa1\x71\x0f\xdb\x49\xef\x61\x51\x1c\x06\xb7\xf4\x4f\xba\x08\xfc\x23\x77\xb7\x53\x2e\x02\xfa\x01\x6a\x2d\xde\x1a\xb7\x75\x29\xa5\xa6\xe1\x29\x92\xba\x93\x96\xd4\xf4\xf0\xfe\xd2\xcb\x40\x77\xf2\x93\x12\xba\xf1\x38\x09\xbd\x59\x49\xee\xa2\x89\x41\xdc\xfe\x35\xfb\xa3\x55\xd3\xa4\xf5\x79\x81\x00\x06\x63\x4c\x1d\xa3\xb0\xd6\x34\x61\x3d\x2f\x90\xd8\xf5\x1c\xa3\xac\xf6\x07\x9a\xac\xbe\x51\x08\x9b\xc4\xaa\xaf\x6d\x7e\xa9\x79\x4f\xa4\xa9\xa6\x49\x93\x9f\x69\x5f\x11\xa6\x97\x9a\x30\xa5\xb6\x74\x4d\x46\x66\xd4\xf9\x29\x19\x79\xe4\x83\xcd\xcb\x95\x77\xb1\xb7\xab\x49\x13\xf6\x3f\x77\xf3\x7a\xa5\x6d\x5e\xad\xec\x71\xf5\x6f\x69\xc1\x58\x69\xe3\xfa\xdf\x69\xc1\xe8\xce\xdc\x28\x7a\xba\x38\x3e\xd2\x72\xbd\xb7\xa2\x90\xb9\x51\x94\xb7\x61\x49\x2d\xe7\x3f\xf2\xb4\x9c\x27\xde\x4b\x5f\x69\xe2\x98\xbd\xa8\xfd\x3b\x5c\x49\x93\xf2\x83\x8c\xce\xf5\x55\xd7\xb9\xfe\x9c\xdb\xeb\xbf\xc1\xdd\x64\xa5\x0b\x2c\x84\x68\x50\x8c\x08\xa9\x58\x8e\x53\x2c\x60\x4c\x8a\x35\x75\xdc\x60\xbd\x4f\x3d\xaf\x50\x26\x05\xfc\x2b\x18\x0e\x77\xfb\x56\x44\xb7\x37\x0b\xe5\x67\x85\x5e\xdd\xf1\xaf\x66\x8d\x66\x43\xfe\x1c\x8c\xbe\xbf\xdf\x3a\x81\x5f\xcf\x0e\xef\x5a\xdf\x3e\xee\xbf\x1d\x1e\xd6\xfb\x1b\xc7\xae\xf5\xe1\x0c\x8b\x7c\x6c\xbe\x94\xc5\xdf\xda\xfb\xf8\x4b\x73\xb3\x40\x5e\x3c\x2b\x34\xae\x5e\xf9\x37\xb5\xb3\x86\xfa\xb3\x69\x79\xd3\xee\xb0\x05\xbf\xd3\xa8\xbd\xd1\x6a\x6e\xac\x67\x7e\x76\x6e\x0f\x9c\xf1\xab\xf9\xc7\xb1\xf7\xf0\xf6\x5d\xa3\xd1\x38\x1c\x4d\x80\xa0\x7d\x34\x9c\xf6\x36\x8e\xfd\xf6\xd1\xfd\xe4\xa3\x77\x73\x67\x8f\x8f\x27\xf6\x7c\xff\xb8\x7d\xd0\x9e\x9d\x1d\xdc\xce\xce\x1f\x1a\x5b\xd8\x4c\xeb\x50\x10\x38\xb9\x3a\x3e\xb8\x1e\xb6\x70\x58\x07\x87\x67\xed\xb3\xf7\x8d\xea\xf1\xfe\x35\xf6\xb0\xd1\x78\xd7\x68\xec\x0f\x8f\x9b\xb7\x17\xb7\xf5\x9b\xe3\x13\xeb\xfd\x55\xd0\x1d\x6d\x8d\x8f\x3b\xed\x6e\x77\xec\x79\x67\x57\x33\xf7\xc6\xbd\x72\xed\xab\x8f\x1f\x37\x67\xf7\xf7\xa3\xd1\xb7\x6f\x07\x6f\x8f\x8e\x8e\x2e\xce\xda\x07\x9d\xdb\x43\x56\xbb\xd1\x6c\x9c\x34\xc6\x17\x40\x30\x78\x71\x73\x6c\x45\x9b\x5b\x37\xf7\x43\xff\x9b\x7f\x32\xbc\x78\xef\x5d\x5c\x9c\xd8\xc3\xfd\xcd\x49\x67\xf3\xe0\xf6\x78\x76\x77\x35\xfe\x58\xdf\x1e\xc7\x27\x37\x61\x3f\xda\x9c\x1c\xbf\x1b\x9e\xbf\x7f\x77\xd5\x68\x34\xda\x8d\x77\xad\xe1\x68\xd4\xe9\x74\xbb\xcd\xa3\xc3\xc3\xa3\x93\x36\x10\x6c\x7f\xfc\xf8\xf1\x63\x30\x1c\x8d\xee\xef\xe7\xf3\xe6\x91\xef\xbf\x6d\x9f\x9c\x7c\x77\x87\xc3\x61\x30\x9f\x37\x9b\x07\xbd\x83\xd3\xc9\xe4\xf8\xfc\xe2\x62\x3a\x0e\x82\xcd\xcd\xed\x6d\xd7\xad\x56\x5b\xed\xd3\xd3\x7e\xaf\xdb\xbd\x9d\xdd\xd7\xae\x6f\xbe\x85\x61\xf5\xe8\xc3\x87\xfb\x07\x20\xf8\xf0\xcd\xf7\xfd\xb7\x97\x17\x17\x94\xda\xf6\xce\xe6\xf1\xbb\xdb\xf3\xf7\x8d\x77\x8d\x21\x63\xda\xbb\xe1\xc7\x9b\x9b\xfd\xfd\x66\x93\xf5\xe0\xf0\xa4\x7d\x62\x59\x1f\x6d\xd6\x50\xfb\xe0\xdd\xed\xe1\x55\x83\x31\x71\x08\xfc\xdd\x7f\x7b\xdb\xe9\x1c\x03\xc1\xa8\xd3\x3b\x8d\x3a\x0f\xe7\xd5\x6e\xe7\x72\xc7\xbd\xef\xb4\x1e\x3e\x74\xce\xaa\xd7\xbd\xeb\x56\xed\x9a\xfd\x38\xd7\xb5\x0f\xce\xf8\xc3\x07\xc7\x67\xff\x6a\x37\xe3\xf6\x75\x7f\xfa\xb6\x76\x33\x6d\x5f\xf7\xeb\xed\x6b\xe7\xd5\xe6\xf5\xe8\xa8\x7d\x03\xff\x80\x20\xfb\xe5\xc5\xdb\x8d\xc1\xab\x0d\xf6\xaf\x3a\x3c\x3f\x7a\x77\xdd\x68\x36\xf6\x1b\x27\x8d\x6f\x17\x37\xfd\x6f\x27\x56\xdb\x3d\xfa\x7e\xea\x5e\x58\xed\x83\x51\xdb\x8a\x1a\xc3\xfd\x5b\xd6\xfb\x46\xb3\x71\x7c\xeb\xb6\x27\xb7\xdf\xcf\x8f\x27\xe3\x9b\xef\xe1\x78\xdc\x07\x82\xf1\xd8\x0d\xe3\xf1\xc6\x69\xe4\x3e\x9c\x46\xc3\x79\x6b\xf4\x7d\xc6\xa4\x61\x1f\x26\x9f\xfd\x9c\xec\x4f\xc6\xdf\x6f\xcc\xff\xc6\x37\x37\xde\xf8\x5a\xfe\x03\x82\xea\x07\x79\xff\xde\x1d\x7d\x6b\x9f\x0c\xf7\x1b\x8d\xe1\x7e\xe3\x7e\xa3\x65\xdf\x6f\xb4\x6e\x3b\xd7\xed\xdb\xfb\x8d\x76\xb4\x3f\xc3\x59\x9f\x37\x1a\x0d\x20\xc8\x46\x77\xe5\x3e\x1c\xda\xdf\x3a\x6f\xed\x87\xde\x5b\xfb\xe1\xe1\xad\xfd\x70\xff\xd6\x69\xf5\x8e\xbd\xd6\xc3\xf9\xab\xd6\xec\xb2\xd9\xa8\xdd\xec\xb3\x0e\x0f\x1b\x6d\xec\xf6\x7e\xe3\xac\xf3\x70\x68\x77\x1e\x8e\x19\xef\xaf\xdc\x8d\x9e\xfd\xed\xfa\x03\xae\x94\x87\x8d\x0f\x76\x75\xe3\x03\x63\xfe\xf5\x63\x7e\x3e\xbe\xc5\x99\x66\xac\x69\x1e\x39\x37\x93\x9b\xef\x40\x70\xd8\x18\x3e\xdc\x1e\xb5\x70\x32\xb0\xfd\x8f\xc1\xbb\xd1\xc1\x41\x43\x08\xf0\xbb\x46\xa3\xed\x8e\xb6\x9a\x4d\xab\x7a\x1c\x3e\x3c\xf4\x6e\x2f\xc6\xd3\xf7\xc3\xef\x9d\x6e\xbf\xba\x73\x74\x7c\x7d\x1c\xf9\x53\x6b\xfc\x71\xbc\x71\x89\x2b\x85\xc9\x5f\xff\x6c\xf3\x66\x73\xeb\xfe\xe1\xc1\xf5\x4f\xc6\xf6\xfb\xe1\xd8\x69\x5a\xf6\xce\xd6\xf1\xc1\xf1\x77\x2f\x38\xf6\xdf\x8d\xfd\xcb\x0b\xda\x39\xe9\xef\x6f\xd7\x27\xd5\xc9\xe4\xe1\x61\xe4\xfb\x7e\xe3\xe5\xd1\xd1\xfb\x23\xdb\xde\xd9\x9a\x54\x27\xc1\xdb\xef\x8e\xf7\x11\x08\x32\xca\xef\x9d\xa6\xb5\xf5\xdd\xdd\x3a\x3c\x8e\x1f\x1e\x82\xf1\xd5\x78\x4e\x6b\xd3\xeb\x6e\xdf\xde\xd9\xdc\xda\x62\x0d\x71\xe1\xff\x7e\xbd\x6d\x3f\x44\xad\xad\xcd\x9b\xfb\x87\x87\xc0\xb7\xc6\xf5\xe9\x56\xf3\xba\x6e\xdb\x3b\x2f\xb7\x6e\x8e\x1f\xa6\xb8\x52\xde\xf9\x23\x65\xa5\x20\x81\xa1\xd7\x7c\x57\xfb\xb8\xdf\x80\x1d\xac\x33\xaa\xef\x7f\x3b\xf2\x3f\xb6\x87\x83\x8f\x9b\x47\x1f\x47\xef\x46\x13\xf7\xa8\xf7\xd6\xef\x5e\x1e\x4c\x2e\x86\x67\xf6\x70\x32\xd9\xdf\x3e\xff\x76\x7b\x73\x02\x04\xbf\x7f\x3c\x7f\x77\x35\xba\xf5\x27\x1f\xba\x4d\xb6\x05\xc1\x5c\x36\x9a\xad\xd6\xe1\x71\xbb\xfd\xf1\xea\xea\xea\x56\x6e\x00\x47\x47\x47\x27\xed\xb6\x45\x6d\x7b\x18\x7c\xff\x7e\xd2\xed\xba\x6e\x78\x72\x72\x7a\x79\x76\x16\x45\x51\xb4\x33\x9b\x03\xc1\xf9\xf6\xc3\xc1\xc3\xb7\x30\x8c\xce\xce\xde\xbd\x9b\xcd\xee\xe3\xf3\xe3\x93\xd3\x83\x0f\xd7\xd7\xe3\x8b\xf3\x98\x5a\xd4\xde\xde\xdc\xea\x1e\x4d\xbd\xd8\xb9\xb1\x4e\xb6\xdf\x5f\x5d\xdd\x06\x93\x49\xb7\x51\xbd\xd9\xe7\x3b\x4e\x73\xff\xf6\xb6\xd5\x3a\x3a\xfa\x78\x75\x05\x04\xa1\x07\x93\xd1\x7c\xee\x8e\xfd\xa0\xdd\x3e\x49\xcb\xdc\x4e\xb3\x77\xd9\xea\x6c\x74\x52\xff\x2e\x77\x3a\xf7\x9d\x96\x7b\xdd\x69\xb9\x1f\x3a\x67\x6e\xad\x77\xf6\x50\xc3\x0d\xf6\xfa\xf0\xfa\x83\x33\xae\xdd\x78\x1b\x1f\xfa\xf1\xe6\xb5\x53\x7f\xfb\x61\x50\xdb\xd8\x18\xd4\x36\x6b\x83\xc3\xcd\x1b\xef\xfd\x4d\xf6\x5f\x93\xef\xd8\xd0\x62\xab\xdd\x6e\x7f\x7c\x07\xac\x01\x82\xa3\x9b\x8e\xfb\xed\xe0\xed\x5b\xbf\x7d\x7e\xf1\x6e\x38\xde\x97\x7c\xe4\x6b\xa2\xb3\xd1\xba\xba\xdf\x6a\xd9\xf3\x9b\xd6\x6d\xf7\x65\xfb\xb6\xe7\xb4\xa3\x87\x41\xbb\xda\x5b\x3f\xab\x56\x3b\xe7\x87\x57\xbd\xce\xf9\xd5\xfd\xb5\x53\xed\x5c\xd7\x80\x60\xf5\xfe\xc6\xbb\x7a\xb8\x71\xaa\x0f\xd7\x5e\xb5\x76\xed\xd5\x3e\xdc\x78\xf5\xfe\x8d\xf7\xfe\xa5\xf3\xea\x7d\xff\xe6\xd5\xc6\xba\xa3\xff\x7b\xe5\xd4\xf8\xd6\x3f\x6c\xbc\x6b\x0e\xdb\x0f\xe3\x6e\xdb\x1d\x77\xdb\xdf\xf8\x11\xb0\x59\x75\xbb\xfb\xed\xee\x51\xd8\x68\x37\x6e\x60\x95\x36\x87\x27\xed\x97\xee\x45\x7b\xf3\x5b\xf7\xa6\x7d\xfb\xfe\xa6\x3d\xa6\x37\x37\xbe\x7b\xf3\x7d\x32\xbe\x79\x39\xf9\x6e\xb5\x4f\x70\x1b\x83\x45\xd4\xe2\x47\xe8\xd0\x6a\x7f\xf7\x51\xb0\xdb\xdf\x7d\xb7\x1d\xfa\x6e\x7b\x33\x70\x6f\x6e\x26\xee\xcd\xf7\xef\x53\xeb\x38\x9a\x7f\x7f\x19\x4e\x1f\xf3\xef\x76\x3f\x40\xb1\x69\x06\x8d\x77\x70\xe0\x38\xf3\x63\xf8\x77\xdd\x3d\x6e\x5d\xcf\x8f\x1b\x76\xfb\xe0\xfa\xf6\xb0\x71\x36\x04\x96\xce\x0e\x5a\xf6\xbb\x5a\xfb\xf6\xfe\x65\x3b\xea\x0d\xce\x38\x0f\xcf\x5e\x55\x7b\x67\xaf\xae\x3f\x74\x0e\x0f\x67\xc3\x73\x20\x28\x4e\x30\xa1\x3a\xcc\x8e\x1b\x67\xdd\x97\x2d\xfb\xc1\x69\xdd\x5e\x5d\xb7\xe3\xda\x75\xbb\x56\xbb\x6e\xc7\xd7\xd7\xef\x5e\x2d\xdb\x80\x50\x6c\x94\x9f\x5a\xaf\x73\x5e\x7d\xe8\xee\x57\x8f\x9b\x6c\xa6\x19\x4b\xbf\xbd\x7b\xf7\xf1\x66\xb4\xdf\x3c\xb1\x27\xfb\xcd\xfe\xb7\xda\xc7\xe6\xc1\xdb\xf1\x71\xe3\xfd\xe8\xe2\x9d\x35\xba\xdf\x77\x5b\x93\xfb\xc6\xc3\xc1\xc1\xed\x79\xdb\xef\xbe\x03\x82\xef\xba\xf6\xab\xe9\x71\x7b\x6b\x36\x7b\x78\xd8\x3c\x6c\x07\x87\x57\x9d\xb3\xe1\x66\xd5\x3b\xdf\xdc\x1c\x1e\xd8\x27\xe3\x0f\x2d\xdf\xbb\x68\x8c\xd8\xda\x6e\x35\x0e\x5b\x6c\x30\xf7\xf3\x83\xb7\xad\xa3\xb7\xa7\x17\x5d\x7b\x3c\xec\x9c\x6d\xde\x37\x6f\xea\x57\xf3\x83\x5b\x9c\x94\xc9\xcd\x65\xb7\xdb\xbd\x8d\xbd\xd1\xf0\xe1\xa4\xfb\x7e\xdc\x1a\x5f\x7e\xf3\x4f\x2e\xbb\x5d\x7b\x7c\xeb\xed\x8f\x4e\xdd\x49\xfd\xb6\x35\xbe\x38\x0e\xdf\xc1\x22\x7f\xcb\xe4\xb3\xb9\xfd\xf6\xdd\xed\xfe\xd5\xfe\x3b\xb6\xa4\x8e\xda\x67\x57\xc3\x60\x32\xba\xe9\x74\x71\xb7\x71\xfd\xf1\xed\xe1\xe9\xc9\x19\xbd\xb2\xaf\x6e\x83\xad\xc9\xd6\x7d\xef\xe1\xdb\x6d\xfb\xed\xc7\xde\xc9\xd9\x3b\xcb\x19\xde\x37\x26\x93\xce\x7d\xef\xc1\xf5\xdf\xbe\x6d\xf7\xce\xde\xd1\xf7\xf6\xf0\xd5\xfe\x3e\x53\xcf\xda\x67\x4c\xca\x0e\x1a\xef\xdc\x61\xf5\xa6\x75\x85\x67\x4a\xab\x69\x37\x36\xdf\x36\x6e\x1f\xb6\xce\xaa\xdd\xfb\x77\x5e\xf7\xfe\xfc\xf0\xe1\xbe\xe3\xd5\xee\xcf\xcf\x6b\x5b\x57\xd5\x87\xde\xbb\xda\xd5\x75\xe7\x7a\x7e\x7f\x7e\x5d\xbb\xee\x5c\xd7\xef\x6f\xce\xaf\xfb\x1f\xbd\x5e\xe7\xfc\xbc\x37\xe8\x5c\x5d\x77\xce\x0f\xaf\x3b\xd7\xd7\xd5\xad\x1b\x9c\xe5\xeb\xfe\x75\xfc\xf0\xd0\xf1\xea\xd7\x9d\xeb\x8d\xce\xcd\x75\xad\x7f\xe3\xd5\xef\x6f\x5e\x5c\x6f\xdd\xd4\x36\x1e\xce\xcf\xdf\xb3\xcf\x1c\x46\xe4\xba\x56\xdb\xba\x79\xf5\xe1\xd5\x4d\xfc\xe1\x66\x28\x1b\xea\x75\x3a\xd8\xd0\xc3\x0d\xce\x72\xed\xe5\xc7\xda\xd5\x87\xce\xf5\xd5\xf5\xb5\xf7\xfe\xba\x73\xfd\xfe\xc3\x8d\xf7\x7e\xe0\x5c\x5f\xff\xff\xd8\xfb\xf3\x66\x37\x91\x34\x51\x1c\xfe\xbf\x3e\x85\xa6\xdf\x88\x6b\xd7\xc8\x65\x10\x68\xed\x1a\xf7\x44\xb2\x89\x45\x08\xb1\x0b\x3a\x3a\x2a\xd8\x04\x88\x7d\x47\xcc\xf4\x77\x7f\x43\xe2\x1c\x2f\xe7\xe8\xd8\xc7\xae\x9a\xe9\xba\x37\x7e\x8e\xa8\xb2\x0c\x99\x4f\x3e\xf9\xec\x4b\x4a\xb9\x31\x37\x72\x7f\x1d\xbc\xdf\x23\x92\xa6\x69\xb6\xa9\x21\x27\xad\xd6\x4c\x73\x33\x3f\x4a\xda\x51\x73\x63\xe4\xe4\x6a\xba\x64\x4e\xf5\x8d\x47\xcd\x4f\xe6\x66\x54\x3d\x29\xb8\x61\x30\xdb\x68\xb3\xeb\x60\xc3\x35\x63\xc3\x76\x67\xe8\x25\xc8\x93\x24\x2e\xb2\x22\x2c\x92\x30\x2c\x8a\x22\x29\xea\x04\x29\xca\x62\x66\x67\x4d\x58\x64\x45\xc9\x55\x89\x57\x94\xc5\xc0\x55\xc5\xb4\x2c\x93\xa1\x1c\x55\x2f\x0c\x8b\xb2\x08\x8b\x2a\xbc\x14\x45\x78\x29\xab\x62\x58\x15\xe1\x50\xd6\x45\x58\x34\x05\xca\x55\x25\x6e\x97\x45\x5b\xd6\xcd\x7a\xd7\x5d\x86\xb2\x49\xf1\xa2\x2c\x96\x65\xd5\x8c\xe3\x9a\x02\x2d\xfb\x94\x2e\x9b\x33\xb6\x1e\xc5\x26\x4c\x77\x79\xd1\x16\x4d\x91\x2c\x9b\x64\x55\x36\x29\xcd\xd7\x09\xec\x64\xcb\xb2\x68\xc3\x72\xd7\x95\x04\x57\x35\x50\xd9\x84\x53\xd8\x95\x29\x49\x3b\x1e\xdd\x98\x42\xcf\x1a\xa2\x99\x1b\x64\x76\x72\x17\x0b\x7b\x33\xd7\x2f\xb6\xd2\x40\x37\x80\xe5\xa9\xe5\x1c\xaf\x59\xc2\xad\xbf\x18\x90\xb5\xd3\xd8\x66\x4d\xef\xf6\xcd\x76\x35\xad\xa7\x6b\x7b\xe0\x86\x4d\x20\x30\xcb\xd8\x5c\x14\x88\x6d\x15\x45\x69\x36\x45\x31\x6d\x2e\x76\xd8\x12\xa5\x50\xe3\xaa\xa6\x6d\x8e\xa6\x16\xa3\x83\xeb\x8e\xba\x2c\xb9\x0d\x3a\x78\x82\xbe\xf1\xf6\x59\x51\x16\x4d\x58\xee\xda\x2b\x56\x67\xda\xe9\x93\xb5\xd3\x0c\xc0\x39\xba\x15\x72\x8e\xdb\x63\x6a\x73\x35\x8e\xce\xce\x97\x83\xc3\x0e\x48\x6b\xf7\x29\xbd\x12\x9a\x03\xe2\x5a\x42\x4b\x80\x94\xbe\x01\x3c\x77\x57\x0d\x20\x6f\x1a\x40\xae\x73\x90\xc9\x64\x09\x32\x30\x07\x22\xd8\x32\x9e\xa3\xaa\x3d\x28\x7a\x19\x83\x49\x6a\x57\x30\x9c\xa4\xf2\xa2\x11\x38\xf0\x82\xeb\xa5\x8b\xaa\x92\x79\xc1\x98\x8a\xca\x55\x86\xaf\x31\x8b\x31\xe0\xbc\xb0\x17\x85\x8c\xf2\x8c\x33\x15\x59\xf5\xbd\x20\xd7\x30\xce\x5a\x6e\xd5\x59\xcc\x96\x95\x65\xab\x46\x03\xfb\x39\x66\x72\x96\x8c\xa8\x70\x9c\x17\x85\x63\xab\x7a\xd6\x49\x46\x0f\x2e\x8b\xa5\x14\x0d\x51\xc4\xe6\xb6\xa8\xcb\x49\x54\x8f\xc1\x12\xbc\xe0\x16\x4b\x3c\x22\x22\x96\xcb\x2d\x51\x95\xe1\xac\xd6\xaa\x9e\xbd\x58\xf8\x19\x8e\x28\xa6\xb0\x44\x59\x85\x93\xbc\xbe\x2d\xa4\x47\x54\x54\x73\xbc\x6d\xa8\x3a\x32\xef\x67\x41\x7f\x5d\x28\x22\xe3\x9a\xe5\x1c\xe3\xc1\x8d\x22\x70\xdd\xe7\xd9\xb9\x0f\xb1\x68\x88\x52\x36\x65\x79\xf9\xba\x5a\xbc\x67\xad\x85\x19\xaa\xd7\x85\x12\x43\x90\xe5\xa8\xa8\x63\x93\x95\x07\xf6\xa2\xdc\x16\x32\x04\x41\x8e\xa2\xbc\xce\x59\x4e\xe1\xb6\xea\x2c\xca\xc7\xc8\xa1\x32\x34\x59\x4f\xba\x7e\x96\xf7\xb2\x4d\xe8\xd7\x6d\xb1\x9c\x63\xc9\x72\xd2\xd5\x7d\x9c\xdb\xca\x4e\x9b\x91\x54\xb6\x1b\xb7\x95\xd4\xb5\x66\x96\x56\x81\x6e\x55\x32\x2f\x59\x4b\x35\x64\xb8\xe8\x6b\xc9\x2c\xed\x33\x9d\x8c\x31\x76\x94\xe7\xa5\x25\xca\x3a\x9c\xe4\xbd\x64\xda\xe7\x10\xdd\x26\xf1\xbe\xdc\x5b\xb6\x6e\x25\xf3\x7e\x11\xe4\xb6\xad\xa0\x7a\x92\xee\xb9\xd2\xb5\x55\x35\xbb\xee\x28\x3f\xdb\x36\xaa\x25\x69\xdb\x32\xdc\x48\xbf\x78\xcf\x86\x37\x80\x56\x88\x6e\x67\x09\x57\x67\xa6\xa2\xcb\x61\xd1\xc7\x26\x6b\xd9\x04\x9d\x20\x71\xc1\x0b\xa6\x22\x1b\x51\x92\xf7\x26\x2b\x9f\xf1\xeb\x42\x75\xd5\x58\x96\x6e\x25\x5d\xbf\xc8\x73\x39\x5c\x1d\x13\x24\xdd\x57\xfb\x93\xad\xea\x45\x37\x32\xa5\xcf\x73\x45\x5e\x1d\x75\x3d\x15\x0e\xcd\x49\xd3\x01\x20\x80\x0f\x78\x20\x32\x80\x35\x2d\x42\x8c\x58\x15\xdc\x0c\x29\xb9\x65\xd4\x6a\xc1\x5a\x12\x76\x19\x88\xa8\xc0\xd5\x1d\x2f\xc8\x5e\xee\x44\x3d\xce\xc9\xb1\x36\x90\xe4\x98\x49\xb1\xf6\xf1\x4a\xdd\xbc\x77\x8d\x05\x8e\xeb\x31\x15\x55\xc5\xce\xd1\x74\xeb\x12\xe5\x57\xda\xec\x44\x00\xb2\x07\x43\x8a\x45\x08\xdb\x8b\x24\x47\x68\x11\x0b\x48\xf1\xfa\x6c\xcb\x5c\x05\x13\x18\x66\x2e\x85\xc4\x18\x39\x60\x61\x44\x6d\x79\x91\x29\x54\xe3\x2a\x42\xb9\x24\x9d\xaf\xdc\xde\xd2\xbc\x20\x86\x99\x69\xac\x17\x18\x87\x27\xa4\x4a\x66\x05\x67\xa8\xa2\x1c\x45\x71\x2e\x5e\xe3\x94\xcc\xb9\x7a\x78\x7b\x8f\xab\x3a\x76\xf1\x61\x16\x3c\x64\xa3\x2a\x50\xaf\xd9\xe8\x75\x2d\xde\x30\x7c\x97\x12\x2f\x5c\xb0\x25\x15\x32\x4b\x0b\x83\x14\x75\xbf\xa9\x5d\xd7\x94\xad\xe5\x91\x1a\xa8\xbc\x28\x6d\xc5\x10\x41\x58\x07\xae\x71\x91\x2f\xc7\xed\x8c\xca\x93\xd2\x91\x0d\x3d\xac\x46\x17\x00\x84\x01\x00\x91\xa8\x3a\x92\xc9\xf6\x5b\x31\x06\x2c\xa0\x01\x09\x8c\xac\x97\xce\xc3\x39\x4e\xc9\xed\x8e\x17\x3c\xdf\xd9\x03\xbf\x5f\x04\x17\x92\x08\xcb\x6d\xca\xf0\x82\xe8\xfb\xda\x15\x7b\x1c\xdf\x92\x03\x11\x5d\x23\xb0\x07\x37\xda\x18\x4e\x70\x4d\x10\xb9\x2d\x41\x92\x0c\x93\x9b\x8a\x2c\x8a\x7e\x10\x50\x2c\xb7\x94\x71\x92\x24\x99\x3c\x3f\x8a\xa2\xe8\x87\x41\x4c\x31\x57\xdf\x54\xdc\xf6\xba\xc3\x24\x93\x16\xf0\xc8\xc2\xae\x2e\x16\x07\x74\xf4\x80\x21\x03\x7a\xf9\x1c\xd1\x99\x29\x6d\x39\xc7\xf0\x63\x96\x95\xaf\xd8\x91\x64\xce\x16\x47\x86\x17\xc3\x28\xef\x35\x63\x81\x2d\xb7\x6a\x4c\x95\x15\xc3\x2a\x57\x45\x98\xb9\x01\xc6\x59\x32\xba\xd5\xa3\x3d\x57\x3a\x9a\x61\x2d\xe7\x63\x7c\x98\xbb\x66\x58\x12\xc7\xe3\x8c\x2a\xf8\xda\xb3\x2c\x0b\xce\xae\x1a\x52\x0e\x76\x04\xc0\xbe\xa3\xb0\x0e\xef\x40\x5f\x53\xfb\xd0\x31\x70\x39\x83\x4d\x5c\x05\x11\x70\x80\x8f\xe3\x11\xb5\x15\xae\x74\x57\x8d\x2c\xeb\x17\x8b\x7e\xe4\x32\x8e\xa7\x54\x42\x1f\x04\xce\x32\x8c\x31\x0b\xb8\x06\xa0\xd7\x34\x42\xe0\xf9\x87\xcc\xa0\xcf\x83\x5b\x6a\x41\x3f\x66\x0b\xf3\x2f\xd3\x8d\xc7\x0c\xe2\x06\x70\x4c\x23\x22\x00\xf0\xbc\xbb\xfa\xee\x8a\xa2\x22\x67\xce\x49\x19\x79\x0d\x7b\x19\x50\x5c\xe3\x6d\x8c\xd2\x8d\xac\xeb\xfb\xc0\xb7\xf1\x87\x7a\x03\xaf\x1a\xf2\xf8\x2c\x38\xdb\x0f\xcf\x6e\x00\x79\xc7\x32\x1e\x5f\x3c\x16\x27\x78\xc7\x78\x56\xb0\x78\xcd\xb3\xd1\x38\x50\x75\x59\xda\x47\x5d\x4f\x9a\xfa\x9a\x3a\x58\x4b\x64\x36\x8b\xf3\xb2\x14\x31\xd0\x76\x19\x0d\x0e\x6b\x7a\x3b\x1b\xf9\x89\x5f\xba\x1b\x0d\x49\x30\x07\x00\x3b\x13\x09\x2d\x08\x82\x68\xb8\x01\x63\xe4\x4b\x4e\x26\x6f\x00\xaf\x22\x94\xa9\x7b\x4e\x90\xfd\x38\xa0\x30\x8e\x93\xe3\x41\x89\x72\x2e\xb7\x64\x55\x8f\x0a\xd3\x99\xb1\x32\x17\xea\x71\x1c\x5f\x5d\x80\xa2\xea\x51\x76\x5b\x18\xbb\xe8\xf1\x2c\x66\x8b\x2b\x32\x82\x1f\xc6\xf5\x5e\xb2\x46\x6b\xb3\x44\x66\x08\x49\x31\x9c\x75\xd4\xf5\xac\xaa\xfb\x18\xe3\xe4\x02\x99\x21\x5b\x8e\xdf\x1b\xa6\xac\x26\x45\xdd\xbb\x41\x58\x12\xdb\x08\x8e\xd9\x6a\x77\xdd\xe6\xf2\x12\xc4\x7b\xd3\xb2\x86\xeb\xd6\xab\x9a\xb3\x8f\xba\x91\x5d\xc6\x2c\xe0\x2a\x22\xb2\x95\xcc\x66\x09\xb7\xdb\xbb\xa6\x85\x77\x84\x6f\xa7\x00\xf8\x64\xd8\x39\x86\xa5\xe5\xbb\x03\x0e\x7b\x0f\xc2\x8b\x93\x18\x00\x12\x3e\x4a\x01\x2f\x8a\xbe\x1f\xa8\x57\x91\x59\xe2\x37\xa5\x18\xeb\x36\xaa\xc4\xf1\x9e\xe1\xb8\x63\x39\x85\x3c\x13\x74\x9a\x31\xe3\xe0\x80\x05\xfd\x22\xe8\x61\x72\x4c\x6e\x44\xa1\x71\x1e\xb5\x8a\x54\xa3\x32\xa5\x69\xf1\x36\x2e\xa6\x30\xfc\xaa\x55\x63\x38\x47\x32\x4c\x66\x48\xb2\x1c\x46\xee\x75\x30\x77\x1b\x9c\xe5\xac\x71\x1d\x9c\xc4\x31\xc5\x72\x9c\xa5\x93\xe3\x38\x51\x96\xc3\x24\x8e\x6f\x40\x1f\xf2\x3e\x53\x94\x47\xa0\xec\xe8\x53\x38\xeb\xfa\x82\x61\x32\x53\x12\x6f\x83\x29\x96\xbb\x62\x3a\x0e\x96\x64\xd9\x8f\x82\x1b\xb3\xac\x11\x00\xf3\x08\xf4\xb6\x90\x7a\x0d\x91\x09\xac\xc3\x01\xc0\x0f\x63\x5a\xc1\x72\x07\x8e\x49\x3a\x78\xee\x30\x84\xba\x3d\x33\xb2\x8f\x03\x02\x00\xe0\xb8\x41\xb1\xbc\xa4\xfa\x05\x27\xa8\x94\x91\x75\x79\x2e\x8b\x4e\x80\x85\xbb\x80\x92\xc3\x73\x4c\x57\xba\xc6\x6c\x1d\xd5\x98\x99\x62\x9f\x4b\x92\xa2\x26\xed\x08\x30\xdd\x72\xbc\xaa\x4e\x5d\x03\xce\xfa\x6e\x79\x51\xb5\x28\xcb\x22\x63\x27\x3b\xc5\x65\xe6\x56\x1d\x76\x4d\x52\x70\x00\x3a\x12\x27\x07\x5f\x05\x18\x85\x9d\x99\x2b\x56\x01\x10\x73\xc0\xe1\x5d\xb7\x07\xfd\x11\x88\xe4\x02\x63\xc6\x7c\x19\xf7\x3b\xae\x9f\x4b\x03\x9c\x44\x04\xc0\x70\xf2\x02\x2e\x52\x48\xf9\x3c\x19\x08\x85\x6f\xb1\xa1\xe0\x63\xc6\x71\x4b\x30\xd8\x1c\xf0\x67\x03\x81\xc3\xae\xcd\xf8\x0a\x50\x47\xb7\x9f\x31\x8c\xe8\x63\xf8\x96\xe9\x45\x52\x8d\x18\x7c\x34\x0e\x24\xb2\x98\xcf\xfd\xd9\xa1\xe1\x49\x56\x88\xf4\x98\xf0\xc7\x34\x74\x0e\x00\xa0\x7d\x00\x22\x1f\xf6\x99\x90\xb3\x04\x63\x2e\x9c\xbb\xa9\x48\xb2\xa4\x14\x05\x9c\x42\x2e\x1e\x2a\x4f\x3b\x80\xf9\x60\x0d\x7c\x5c\xa4\x6e\x00\x43\x26\x64\xcc\x6c\x79\xee\xa6\x3c\xf1\x71\x2c\x10\xe3\xcf\x4b\xa8\x38\x78\x58\x05\x8c\xc9\x22\x0e\x82\x83\x89\xb8\x0a\x00\xa2\x21\x74\x0f\x6f\x84\xed\x58\x32\xb5\xa3\xec\x96\x95\x25\xce\x6a\x4e\x48\xfe\x65\x7f\xe6\x97\x1b\x05\x0c\x82\x12\xad\xe6\x6e\xba\x6b\x6c\xaf\xab\x6c\xcb\x4f\xcc\x70\x9f\xcf\x5d\x98\xb3\x2b\xb2\x97\x0d\x88\x41\x8f\xaa\xd2\xb1\x7e\xe4\x99\x6e\x3a\xa3\x8d\xf9\x90\x9d\x6f\x00\x51\x14\x2a\x36\x04\x55\xb7\xa8\x1a\xce\xa0\x73\xd2\xaf\x62\x5c\xad\x0f\xf5\x6c\x0d\x55\xc6\x69\xc3\x47\x3e\xa8\xc0\x56\xc2\x5c\xd4\xe7\xb7\x87\x79\xa5\x4e\x0b\xfc\x60\x60\x97\x8d\x56\x02\xd4\x28\xd8\xac\xd2\x51\x1d\x81\xbc\xd3\x2c\x1c\xf3\x65\xa8\x41\x1d\x7f\x6d\x6e\xa1\xc5\xea\xac\x4e\xf3\x43\x62\x6f\x49\x56\xf5\xa3\x53\x6a\x31\xe8\x86\xb0\x0f\x45\xef\xba\x66\x1e\xd8\xbc\x94\xe0\xce\xa2\xe4\xe2\x48\xe5\xa3\x4b\xbf\x0e\x99\xac\xf1\x17\x2e\xdb\xce\x04\x83\xde\x58\x8b\x8d\x33\x1d\x31\xdc\x7a\x6d\xe1\xac\x4c\xe4\x48\xb9\xc4\x79\x07\x15\xf4\x50\x4b\xa7\xb3\x4e\xea\x3d\x0b\x59\xe1\xd6\x1b\xce\x59\xd0\x6c\xe8\x0a\x37\x5d\x11\xe3\xec\x90\x86\xb5\x5a\x85\xd0\x64\xbd\x88\x89\x2d\xa2\x40\xd3\x3e\x32\x1d\x23\x3d\x4e\xc9\x11\xa0\x55\x0c\x2d\xd4\x2b\xbe\x90\x29\xd4\x76\xda\xaf\xe4\x7d\x21\xce\xf7\xd3\x0c\x00\x4c\xee\x1b\xed\xd8\xad\x56\xac\xbb\xb0\x93\x44\x49\x1a\xd6\x8a\x8e\xab\x05\xbc\xa1\x69\x38\xda\x1a\x5c\x0b\xa4\x43\xde\x9d\x04\x19\x1c\x2e\xf2\x01\x38\xc8\x28\x36\x51\xea\x11\x1d\x86\xd0\x1d\x00\x6c\x2c\x12\x06\xb7\x58\xac\x97\xfb\xd5\x66\xcb\xe2\xe7\x7e\x3e\xcd\x97\x16\xa1\xba\xc8\xea\x28\xb7\xd2\xe5\xb8\x63\x23\x06\x5f\x18\xe6\xec\xbc\x6b\x17\x71\x2e\x04\xa6\x32\xc0\xd5\x94\x48\x52\x6a\xe6\x8e\xd1\x57\x5e\x97\x29\xbf\x54\x09\x9f\xd1\x67\xb3\x63\xb0\x76\x68\xc5\x85\x21\x39\xb1\x7d\x01\xb8\xbd\x73\xd1\x3b\xfe\x9a\x71\x96\x26\x7a\xda\xcb\x27\xd3\x1e\xb8\xd0\x28\xb9\xf9\xb4\x3e\x14\x75\xca\x6b\x3b\xc1\xd3\x85\x2d\x12\x69\xad\x6a\x8c\x5b\xce\x91\x03\x0b\x05\x11\x1e\x2f\x2c\x4a\x12\xe6\xca\x6e\x6b\x1c\x4c\x87\x51\xd1\xd6\xe0\x67\x41\x16\xc8\xf3\x33\x4d\xc5\xe9\x45\x87\x10\x65\xc1\xae\xa2\x6d\x25\x07\x47\x5d\x59\xef\xe1\x85\x36\x45\x71\x68\x7b\x28\xd8\x99\xe8\xea\x61\xb5\x3d\x8c\x06\x96\x1c\xe8\xe2\xc8\xc8\xd8\x81\x09\x53\x9d\x50\xeb\x15\xe3\xb1\x2d\x74\x5a\x08\xf5\x80\xf5\xb9\x32\x98\xa6\x38\xc5\x0d\x32\xa0\x8f\xa7\x62\x3b\xb7\x00\x26\xc6\xe1\x0a\xd9\xb2\xc1\x7e\x9e\xb1\xed\x34\x38\x3a\x20\x07\xec\x35\x77\xd0\x6f\x00\xd7\x5b\xa4\xb4\xc0\x71\xbe\x57\x1d\x80\xa5\x5a\xbd\x5a\xe1\x83\x09\xb0\xe9\xae\xa2\x1d\xcd\x9b\x8a\xf3\x60\x2a\x62\xb3\x2e\x80\xcc\x92\x55\x0e\xbd\x8c\xb9\xcc\x3a\xf1\x15\x0f\xb8\x4a\x25\x0a\x19\xa5\x92\xa9\xbf\xc1\x68\x47\x3b\x04\xfd\x0d\xa0\x2c\x49\x46\xc4\xe9\x26\x7b\x14\x28\xe3\xb0\xd4\xe6\x80\x2c\xc3\x9c\xcd\xc8\xf3\xd1\x07\x48\xc7\x4a\x26\x2d\x93\x7d\xc2\x12\xc9\x9a\x82\xc1\xd2\x27\x8f\x95\xbf\xb0\xe6\x66\x05\x76\x4c\x5d\xf2\xd8\x6a\x7a\x0a\x56\x2a\xb7\x6b\x0d\x7d\xcc\xe8\xdd\xba\x22\x3a\xea\x34\x4b\x06\x63\x90\x67\xd4\x1a\xd9\xcf\x02\x44\xb8\xd4\x88\xb7\x5a\x62\x33\xd1\x95\x61\x19\x54\x62\xe8\xef\x0e\xbc\xe0\xb3\xf2\x86\x95\xf0\x55\x40\x1d\xc1\x32\x52\xab\x1d\xb5\xe7\x88\x85\x03\x16\x8e\x22\xb5\xbe\x3c\xd6\x60\x0f\x0e\x4a\xc5\x9b\x4d\xaf\xa3\xa2\x12\x42\x3c\x2d\xad\x09\x32\x59\xea\x69\x6b\x69\x22\x50\x3a\xa9\x90\xb8\xf3\xa5\x13\x37\x58\x59\x06\x8d\x2f\x21\x80\x53\xaa\x83\xe8\x89\x4e\x54\x02\xc1\x27\x84\xc0\x56\x48\xf9\x52\x1e\xc5\x05\x8c\xdf\x00\x46\xfb\xfc\xe8\xd6\xfa\x59\x5f\xe9\x08\x84\xaa\x67\xef\x88\xaa\x9b\x85\xcf\xb8\x56\x7c\x92\x40\x06\x92\x42\x25\xc3\x2e\x5f\xa0\x01\xee\x3a\x78\x17\xfb\xf3\xd5\xc9\xb1\x4f\x43\x9c\x88\x3c\xf0\x2d\x2c\x0a\x56\xce\xf4\xe4\x10\x3e\x35\x1d\xe5\xf0\xd4\x11\xc7\xd3\xe0\xf9\xbb\x83\xb3\x33\xd8\x0a\x00\x56\x04\xa5\x72\x3c\xa7\x01\xd4\x1c\xb7\x17\xb4\x9d\xd1\x11\x9a\x6b\x4b\x08\xad\x17\x65\xa3\xaf\x67\xa7\x65\x5e\x9e\x6c\x1e\x11\x51\x7d\xaf\x5d\x36\x6b\xac\x53\x6b\x1b\xef\x02\x2a\x18\xe3\x43\xbd\x39\x78\xed\x52\xf0\xa0\xb9\x69\x51\xa2\xea\xf8\x5c\xa9\x55\x73\xd7\x3b\x0d\xc1\x4c\x01\x04\x98\x11\x64\xb0\xb0\x51\x2d\x26\x2c\x12\xef\x16\xf6\xd4\x3e\x9c\x22\x2e\xab\xd0\x9a\x01\x8d\x87\xb6\xac\x29\x84\x01\xea\x5b\x68\xbc\x1c\xad\x0d\x7a\x90\x4f\x4c\x54\xee\x5a\xf8\x00\xe4\xf5\xf2\x70\x70\x77\x2b\x7f\x9d\x39\x08\x57\x7b\x7b\x8a\xe3\x06\x4e\xf2\x02\xa1\x45\x7c\x36\xa3\x76\xd8\xe1\x98\x58\xc7\xf6\x80\x89\xcc\xce\x67\xb3\x14\xb6\x6d\x1d\xab\x86\xd2\x30\x0d\xa3\x23\x57\x63\x7a\x1b\x23\xe7\x69\xab\xb8\xea\x4a\xcb\x23\x64\xb6\x0b\x55\x58\xb4\xce\x87\xe8\xd2\x01\x40\x17\xb6\x8a\xc3\x90\x51\x19\x82\x6b\xcf\xbd\x25\x26\xe4\x2b\x12\x76\xf0\x10\x9e\x83\x0c\x52\x7c\x62\x6d\x6a\x80\x0f\xdd\x65\x00\x81\x35\xe3\x61\x37\x80\xfb\x28\x5f\x42\x7d\x05\x00\x6e\x92\x3b\xd2\x60\xa2\xe9\xa5\x65\x96\xe2\x30\xdb\xef\x97\x31\x73\xaa\x31\x68\xc9\xf0\xfa\x59\x67\xf7\x42\x71\x50\x78\xcf\x05\xc9\xc5\x3a\x2f\xc9\x0a\x16\xb1\x28\x66\xf3\x50\xd6\x75\x3a\x15\x11\x3c\x33\xc6\xf6\xc7\x56\x07\x49\x3d\x85\xfd\x9d\x88\x51\x1c\x8e\xa5\x39\x22\xaa\xaa\x68\x42\xb3\x3a\xa8\x4d\x02\x63\xd5\x9c\xd2\x8d\x35\x32\xa0\xf3\xcc\xc9\x4a\x6c\x89\x64\xc7\x55\x81\x2d\x2e\x70\x76\x00\x2d\x74\xca\x7a\x1a\x59\x74\x5a\xe2\x33\xf4\x69\x34\x5f\x3d\x25\x94\xeb\xd8\x33\x1d\xac\x98\x71\x3d\x6a\xb6\x78\xb1\xc1\x7c\x6b\x89\x6e\x40\xdf\xd0\xcd\x61\xbf\x83\x56\x33\x03\xa7\xe6\xe4\xa5\x63\xf3\x82\xa6\xc0\x71\x79\xa4\xe0\xea\xac\xd9\x0d\xd8\xa7\x6d\xeb\xee\x9c\xb2\x39\x19\x9d\xc0\x8f\x45\x8c\x90\xb0\x96\x21\x98\x2f\xd7\xc0\x00\x00\x5b\x26\x7b\x8c\x3f\x3a\xbe\x42\xac\x69\x59\x2a\xd8\x79\xdb\xad\xf1\x33\x88\x71\xf2\x00\x70\x20\xc7\x47\x08\x1c\xba\x83\xc0\x72\xf1\xa6\xbf\xba\xd1\x43\x92\x7a\x2d\xe2\xe9\x39\x8a\x1e\xfd\xd1\xd1\x77\x28\xd1\x9e\x86\x65\x72\xd9\x46\x68\x76\x39\xac\x0d\x85\xab\x70\xa1\x1d\x80\x0f\x76\x62\x08\x67\x33\x67\xb9\x1f\x2a\x44\x40\x0e\x3e\x12\xcc\x01\xce\xb0\xc0\x07\xdb\x03\x6c\xed\xd3\x45\x0f\x63\x84\xaf\x9d\xe8\x55\x83\x28\xf5\xe5\x34\x3a\x7a\x47\x62\x1a\x03\x5c\xc4\x00\xa3\xa0\xb8\x95\x25\x50\xd7\x3e\x58\x2a\x07\x5b\x37\xc1\xc6\xb7\xd4\xd2\xd4\x81\x4a\x02\x30\x25\xfa\xf9\x4a\x44\xa1\x72\xbd\xa2\x7b\x55\x2d\xcc\x04\x83\xb1\x44\x6d\xf8\x38\x3b\x53\x67\xba\x9e\xf9\xc4\xd8\x5c\x48\xd3\xb6\x39\xae\x79\x26\xa9\xce\x72\xb1\xd0\xa3\x41\x1e\xb6\xf2\x12\x11\x48\x26\x16\x9a\x93\xae\x7b\x43\xaf\xe7\xed\x92\xc2\x7c\xc2\x67\xb5\xb8\x3e\x1d\x29\xa3\xde\x03\x90\x16\x2a\xdc\x8b\x19\x01\x1b\xbb\xf0\x98\x2d\x1c\x6a\x21\x8e\xc9\xe3\x1c\x4f\x8d\x59\x8d\xed\x40\x64\xe2\x02\xc0\x40\x60\x47\x10\xe0\xa7\x10\xe8\x64\x1c\x77\x63\x1d\x00\xc0\x3b\xd4\x59\x5e\x65\x9d\xbd\xde\x6a\xc4\xd0\x7a\x44\x68\xb6\x43\x6a\xd7\x48\x4d\xcd\xed\xdd\x22\x73\xf7\x33\x83\x8b\xd7\x6b\x65\x4c\xcd\x48\x80\xe1\x66\xdb\x9c\x8a\x8d\x81\x2b\x58\xcd\x77\x1a\x10\x55\x12\x74\xdb\x7a\x1f\xd7\x83\x6c\xd1\x2d\x20\x0c\x1c\x55\xfa\x9d\x76\x2e\x42\x09\x4c\x05\x13\xf0\xc1\xe0\x14\xa4\x2f\x39\x40\xe8\x32\xdc\x6f\x5d\xa5\xaf\x14\x7a\x37\x26\x8f\x24\xb5\x9c\x66\x82\x8d\x4c\x0f\x80\x59\x3b\xe1\x41\x74\x8e\xfe\x2a\x17\x8c\xe9\xee\xdc\x8b\x72\x8b\x9c\xce\x09\xd5\x9c\xd1\xb9\xbf\xed\x06\x74\x06\x43\xf6\x96\x5b\x0e\x68\xef\x2b\xeb\xf5\xca\xcb\x12\x5d\xdd\x91\x16\xe1\xc2\xf3\x8e\xf6\xc6\xbe\x9e\xd1\xbb\x67\xc7\xd7\x10\xb9\x6f\xe5\x2e\x85\xb5\xcc\x3c\xb2\x52\x11\x49\xf8\x02\xc8\x22\x94\x34\x5a\x06\xd4\xea\xb8\x02\x3e\x10\x79\x6c\x6f\x69\x1d\x00\x31\xc0\xa4\x5e\x81\x66\x87\xe4\x54\xec\x0a\x59\xda\x13\x76\x70\xb4\xe1\x51\x97\x6d\xaf\xcc\x31\xd4\xde\xcc\xcf\x79\xa3\x93\xe6\x19\xc3\x09\x44\x70\xdc\x23\x95\xe3\x1c\xe9\xe3\xc4\xc9\xa1\x0e\x7c\xb7\x06\x00\x10\x6a\xa7\xcc\xe3\x54\x4d\x16\x70\x9c\x74\x65\xce\xf3\xc1\x41\x64\xb8\xf3\xb2\x81\xc9\xf5\xa9\x44\xda\x31\x93\xc2\x52\x9f\xdf\xbb\x4c\x5c\x9a\x55\xe8\x9f\xad\x20\x3e\x37\xee\x12\x50\x9a\x3f\xad\x87\x63\xa7\xa6\xc7\x1d\xaa\xb0\xbb\xdc\x3a\x5b\x3a\x07\xe6\xda\xad\xd1\x1e\x52\xa7\x82\xf5\x39\x60\xc2\xeb\x63\x59\xcb\xa8\xdb\xd7\xe2\xde\x70\xc6\x70\xee\xd0\x1a\xe4\x76\x8d\xc7\x6d\x29\x4a\xac\x8f\x79\x79\xd0\xa5\x7b\x9d\x3d\xd7\xdb\x22\xc9\x97\x1a\x79\x90\x5b\xcc\x5b\x91\x58\xa8\xa2\x85\xcf\xda\x22\xe8\x88\xf9\xce\x5b\xef\x00\x4f\xf0\x01\x6d\xef\x01\x00\xb1\xcf\x4d\x6b\xaa\x5a\x8c\xf6\x70\x6a\x5c\x58\x67\x73\xc1\x53\xd6\x42\xcb\x7e\x77\x68\xe2\x6d\xda\x77\xd5\x51\xdb\x50\x55\x84\x44\xf3\x43\x58\xe1\x80\xc6\xd7\x54\xd4\xd9\x5b\x72\xe3\xb3\xb7\x2a\x49\x7a\x89\xaa\x33\x8c\xbb\x14\x6f\xee\x76\x7e\x36\xac\xf9\x29\xf5\xd0\x5f\x0e\x3b\x03\xf3\x99\x7e\x3a\xd0\x21\x8e\x01\x0e\xc4\x18\xb7\xcf\xa9\x59\x25\x6c\xd8\x5c\x73\x2e\x64\xb8\xb1\xca\xd9\xc2\x88\x69\xbf\x6c\xea\xc5\xe9\xc0\xa6\x91\xcb\x2e\x5b\xb2\x33\x0f\x17\x40\x8b\x18\x43\x12\x6a\x19\xf3\x0e\x06\xc0\x58\x90\x44\x38\x20\xc3\x62\x31\x65\x3b\xa9\x22\xe7\x80\x35\x6b\x3e\x05\xc4\x72\x9b\x0a\x46\x67\xc4\x02\x63\xb6\xf5\xa0\xee\xdd\x73\xe9\x61\xab\x53\xc8\x47\x3a\x03\xe3\x09\x86\x2d\x01\x03\x38\x07\x5d\x83\x4d\x56\x91\x54\xac\xc8\x5b\x12\x1f\x0d\xec\xd4\xb1\x3d\x89\xc0\x61\x4b\xca\x77\x74\xb1\x3f\xe4\xb1\xc3\x41\xab\xe5\xae\x4f\x91\x32\x4f\x8a\xcb\xb1\x32\x58\x5d\x0a\x21\x4a\xbc\xb5\x86\xc5\x68\xc3\xe3\x40\x08\xed\x52\xc4\x44\x40\xe0\x44\x55\xe4\x59\x76\x68\x6a\x77\x0a\x8f\x19\x3d\xee\x6d\xfc\x65\x48\xba\xa1\x71\xf4\xb5\x44\x04\xcc\x7c\x3a\xef\xaa\x88\xc4\xc8\x10\x8b\xb3\xbd\xb8\xe4\x42\x18\xe2\x14\x11\x16\xcf\xfa\xe9\xdc\x0f\xe1\x14\x78\xcd\x91\xcb\xf8\x33\xa9\x9d\x44\xc1\x1c\x4a\xf8\xb2\x99\xcf\x8a\x9d\xcf\x23\x0f\xaa\xd7\xb7\xb6\x29\x14\x4e\x6f\x2e\xd9\x65\x54\xc6\xe5\x79\x7e\x41\xce\x1b\xe0\xfa\x1c\xd1\x2f\xb7\x29\x5b\x69\xbb\xc0\x76\xe6\x48\x53\x2c\xd6\xf3\x69\xd6\xc8\xee\x1e\xcb\x33\x3c\xc4\x35\xba\x1c\xa6\xfa\xa0\x02\x88\x20\x6a\x62\x0d\x94\x87\xee\x2d\x1a\xc0\x31\x8f\x03\x30\x38\x54\x3b\x95\xa7\x27\x59\xde\x47\x9e\xa1\xc7\x4a\x6e\xa3\xf3\xe4\x84\x48\xa7\xa4\x28\x58\x8f\xf7\xa2\x38\xa0\xc1\xa9\x59\x69\x19\x20\x01\xee\x03\x90\x73\x52\x54\xef\xa6\x5c\x24\x12\x3a\xdf\x19\x63\xe4\xa0\xde\xce\x7b\xe0\x5c\x95\xaf\xe1\x3e\xc8\x37\x33\xf5\x5c\x88\x58\x87\xf6\xf3\x85\xe3\xd5\x45\x74\x16\xc9\x4b\x83\x6e\x37\xd8\x72\x3f\x95\x96\x0b\x58\x2d\xd6\x82\x16\xfa\xab\x4e\x48\x96\x7a\x93\xc2\x9e\x35\x8f\x39\xe2\x90\x59\x36\x5b\xdd\x00\x2e\xad\x5d\xe1\xdb\xc1\x61\xc8\xdb\x39\x27\xcd\x43\x81\x08\xe3\x6e\xbd\x36\x73\x63\x55\xcc\x18\x81\x77\x6c\x20\x03\x01\x68\x75\xe2\xe0\x69\x66\x3b\x65\xb4\x9d\x73\x5b\x79\x05\x99\x69\x15\x69\xba\xb4\xa7\x36\x2c\x2c\xa9\x34\x27\xa4\x23\x97\x2f\x97\x8d\x0e\xd6\x44\xbb\xdc\x5d\x93\x31\x89\xc7\x45\x15\xcc\xb7\x65\x58\x9f\x34\x1e\x89\x1d\xf3\x44\xa3\x22\xaa\x40\xad\x39\x5f\xb1\x88\x41\x07\x4e\x82\x59\xc3\xf9\xe4\x5e\x1a\x0d\x59\xf8\x3b\x30\x94\x0e\xec\x8c\xd9\xd4\xd8\x5f\xc6\x83\xe5\xc1\xbd\x3e\xd8\x5e\xf4\x33\xa5\xcf\x2f\xb2\x73\xb6\x74\x0b\x49\xb6\x4e\x76\xa2\x7b\xbd\xf7\x3a\x0e\xec\xfc\x58\xc7\xf2\x9d\xda\x76\x5d\x34\x55\x85\x60\xe1\xed\xb7\x17\x55\xa8\x66\x10\x49\x4d\x73\xb3\x9c\x36\xee\x42\x18\xc6\xf4\x76\xdb\x19\x2e\x00\x98\x8f\xe4\x0b\x64\x17\xca\x3e\x30\x20\x53\x8b\x85\x24\x8c\x49\x9f\x4e\x97\x5b\x54\x70\x3a\xe3\x3c\x30\xab\x56\x38\xcf\xea\x65\x5f\xf5\x73\x19\x8d\x31\x63\xb3\x24\x55\x11\xa3\x96\x80\xc1\x40\x72\x30\xe8\xf9\x21\x1b\xad\x8d\x81\x67\x2c\x00\x84\xee\x4d\x05\x93\x35\xc3\x15\xd4\xaf\x96\xd0\x85\x5e\xed\x86\xd3\x86\x5f\x1c\x07\x89\x4b\xa9\x43\xd2\x7a\x7c\x15\xc6\x22\xdd\x69\x0f\x67\x1f\xd0\x9d\x48\xac\x0f\xf8\x35\xa7\x24\x7c\x0b\x16\x9b\x33\xb6\x7b\x70\xa3\x83\xc7\xce\xad\xa5\x09\x91\x92\x86\x01\x35\x06\x24\x51\xb4\x19\xbf\xc2\x44\x0c\x34\xc0\x6f\x06\xaa\x60\x76\x75\x72\xa6\x51\xce\x9d\x77\x27\x2e\xb3\x53\x21\x00\xe8\xb0\x5e\x14\x7a\x26\x1d\x92\x4d\xd0\x65\x02\x9d\x11\x00\xc4\xa3\xd8\xd8\x1d\x01\xc0\x62\x49\xd1\xa0\x39\x9e\x62\x3a\x43\x4f\x1e\x52\xd7\xdb\xcd\x51\x25\x3c\xb0\x31\x12\x03\xc7\x44\x38\x3b\x94\xd0\x4c\xc4\xd7\x4c\xdb\xe0\x57\x7a\xe7\xb6\x0a\x44\x9c\x43\x10\x3e\x21\x51\x61\xb5\xd6\x80\x4d\x8b\xca\xd8\xf1\x39\x30\x87\x7d\xa6\x6c\x86\xbd\x83\xc6\x88\xe0\xad\x14\xa0\xed\xc0\x1e\x6b\x4e\xca\x9a\xbf\x9d\xee\xd8\x0e\xca\xfc\x20\xaf\xaf\x9f\x33\x72\xb7\xa5\x6d\xa4\xb1\xf0\xae\x23\xdb\x19\xa9\x07\x54\x19\xaa\x91\x0d\x2c\x60\x22\x2b\xe8\x34\x36\xb9\xcc\x54\x31\x8f\xb6\x3e\xa0\x58\xa7\xe7\x67\xd5\xe2\x4d\x4e\x3a\xaf\x5c\x13\x66\x21\xc8\x57\x3d\xc5\xcd\x35\xb2\x03\xc0\x14\xa8\x6a\xdf\x73\xe0\x2c\xca\x3e\x98\x02\xec\x90\x19\x6b\xf6\xbc\xb8\x20\xdd\xd9\x5b\xcf\xce\xd5\xd1\x81\xc6\xca\x92\x22\x88\xba\x42\x18\x26\x96\x80\x68\x4f\x84\x85\xd6\x35\x00\xd9\xb3\x9b\x2b\x46\x24\xc6\x81\x7a\xa3\x95\xd5\xa9\x82\x90\xfd\x6c\xc3\x0b\x9b\x99\xbc\x29\xdd\x35\x49\x2b\x26\x9d\x0e\xf8\x82\x37\x92\x93\x48\x02\xfc\x02\x51\x98\xf3\x50\x32\x05\x04\x58\x38\x73\x3f\x9c\x0f\x6b\x09\xec\x2b\x28\x59\x52\xfb\xa3\x96\x6d\x08\x6d\xbe\x64\xb7\x33\x0c\x23\x9a\xa8\x88\x3b\x48\xb3\x16\xdb\x95\x68\x37\x5b\x4d\x66\xa6\x88\x65\x5a\xd9\xee\xc8\x96\xae\x76\x46\x86\x18\xdf\x98\x0b\x91\x7c\x68\x14\x52\x03\xb4\x10\x07\x5f\x33\x47\x71\x87\xb2\xa3\xd3\x5f\xf0\xa5\x7e\x52\x9a\x29\xbc\xd1\x3c\xc8\x59\x2d\x97\xec\x5c\x53\xc0\x56\xa5\x12\xb0\x98\x4d\x35\xb0\xe7\x42\x48\x3c\x64\x87\xce\xf0\x0d\x10\x81\xd5\x6c\x21\xd0\x73\x19\x1e\xbb\x15\x0b\x8e\xa0\xdb\xf3\x66\xc3\xf3\xc5\x5a\x39\x50\x0e\x5a\x66\x9c\x99\x6e\x85\x4c\x99\xd9\x09\x13\x68\xbe\xb3\x3a\x02\x7e\x3c\x2c\xc6\x03\x7d\xa6\xd9\x62\x87\xfa\x56\x3e\x08\x39\xeb\x4e\x39\x17\x39\x39\xf3\x50\x16\x96\xc8\x69\xec\xf8\xb4\x9b\x69\x92\xb5\x4d\x38\xeb\xd4\xfd\x01\x9c\xe1\xc5\x66\x8f\x0a\x5a\x3f\x44\x73\x5f\x5b\xa1\x87\x84\x5c\x53\x0c\x40\xa8\x45\x22\x15\xe8\x8a\x6c\x9d\xd5\xb2\xdd\x1d\x4f\xd4\xbc\x24\x16\x2a\xcb\x82\x6e\xbe\x0c\xf4\xe5\xce\xc4\xed\x45\x35\xb6\x32\x77\x6e\x3f\x8d\x86\xab\x3d\xc4\xa6\xc1\xe9\xb2\x59\x4c\x37\xcb\x85\x89\xef\x0e\x2b\x0c\x85\xb4\x58\xa1\xf1\x96\x20\xb9\x5a\x0c\x94\x64\xce\x85\xb8\x0f\x48\x60\x97\x27\x5b\x57\x0e\x55\x75\x45\xfa\x98\x7b\xde\xac\xd6\xca\x6c\x30\x46\xe3\x90\xce\x67\x1d\x31\xb3\x3c\xa3\x8e\xb8\x53\xd5\xed\x17\x90\x7c\x3c\x08\x30\x4b\xa4\x81\x00\xcd\x63\x4b\xcd\xca\xba\x85\xaa\xf9\x0c\x39\x5d\x6c\x0f\x4a\x85\xbd\x9b\x3a\x19\x4e\xa7\x98\x16\x87\x0d\x8c\x8b\x5b\x4c\x8f\x0f\x06\xb4\xe0\xba\xd1\x38\x24\xc8\x0e\x8a\xca\xe6\xc0\x2f\xc5\x55\x36\xcc\xeb\x96\x10\x2f\x53\xdb\x44\xe9\x41\x08\xa7\xfe\x9e\x06\x73\xc2\x24\x7d\xf0\xe1\x36\xf8\xcd\x4f\x3f\x3f\xfe\x38\xf3\x9d\x93\x7f\x61\x62\xf9\x5e\x05\x85\x4e\x96\xfe\xb2\x59\xbe\x79\x37\x79\x73\x7b\x02\xe5\xe9\xe7\xa7\xff\x42\x0d\x13\xa4\x0e\xe6\xb6\x7e\x76\xdd\xe1\x5e\x56\x03\x52\xf5\xaf\x1a\x74\x3b\x6a\xe4\xe3\xd7\xd8\x1c\x10\x61\x42\x3b\xf3\xdb\x93\xad\x8b\x29\xd7\x90\x77\xb7\x3d\xe0\x50\x1f\xdc\x8e\x89\x00\x6a\x50\x23\x77\xd4\x75\xc0\xad\x04\x5a\x88\xae\x4f\x7d\x03\x0e\x64\x45\x04\xc0\x0b\x0d\x00\x18\x9c\x04\x80\x58\xde\x5e\x08\x3e\x00\xb4\xda\x01\x40\x14\x57\xf0\x42\xee\x03\x80\xb9\x5d\xba\xcb\xa5\xc3\x4d\x3c\xcc\x50\x86\xdd\xb1\x02\x0a\x0e\x6b\x00\x75\x04\x94\xed\x90\x34\xba\x89\x6a\xdc\xc9\x54\x3c\x00\x00\x1a\xa6\x03\x60\x17\xf2\x98\xc7\xa9\x90\xeb\x03\x40\x71\x01\x2b\x91\x94\xea\xed\xcb\xfa\x78\x8c\xab\x23\xef\x2e\x20\x14\x1e\xd6\xcb\xf9\xa6\x21\x86\x11\x60\xd2\x4b\x54\x68\x33\x95\x70\x34\xd7\x1a\x93\x2a\x2c\x65\xc8\x3a\x6a\x39\x35\x39\x73\x6a\x3d\x72\x6a\x92\x5a\x32\xb0\x26\x51\xa4\x0e\xb2\x30\x10\x33\x70\x16\xa9\x24\xc4\x32\x5f\xb7\x18\x12\x10\x14\x9e\x88\xc7\x28\xae\x33\x78\x3e\xba\x59\x01\x4e\x5d\x9d\x99\xdb\xbd\x69\xc5\x3a\xcd\x86\xa9\x62\xd4\x91\xc4\x52\x91\x53\x0f\xf1\x66\x70\x37\xab\xd5\x74\xed\xcc\x37\x53\xf5\xdc\x84\xb9\x8d\x13\xb3\xcb\x74\x33\xb5\xbc\xd5\xa2\x6d\x13\x36\x6e\x51\x5f\x40\x0c\xa9\xb9\xfd\x37\x5a\xf4\xeb\x3f\xd4\x06\xd4\x65\x86\xed\xd1\xf4\xe4\x71\x95\x25\x1f\xf5\xa6\xb4\xca\x56\x6a\xd5\x52\x49\x63\xc7\xd1\xa0\x85\x85\xc6\x84\xe4\x49\x1c\xe5\x3a\x73\xd3\x5a\xa6\x43\xab\x23\xf6\x4a\x60\xf2\xce\x0c\x56\x7b\x74\x15\xd2\xc6\x98\xa0\x1f\x86\xfa\xd2\x5e\xe6\x61\x01\x60\x58\x49\x7d\x48\x3f\xd2\xb3\x13\xba\x15\x2b\x2a\x0a\x61\xd1\x1e\xa6\x0e\xd0\x66\xc8\xd9\x93\x22\xa5\xeb\x54\x17\xb9\x9c\x2a\x8d\x59\x6f\x84\xb3\xbd\x2b\xbb\x34\x63\x99\x5d\xb7\x26\x33\x20\x30\x80\xf2\x47\x4d\xea\x08\x05\xef\x1d\xc0\x62\x24\xcb\x84\x0c\xf0\xb3\x90\xc1\x01\xe3\x33\x3e\x83\xb1\xdb\xdc\x3d\x48\xb8\x54\xa0\xd5\x01\xc7\x00\x0b\xc2\x70\x2d\xfa\x20\x82\x0e\x0c\x15\xc9\x18\x26\xb6\x01\x2a\x4a\x91\x78\xac\x49\x1c\xe3\xf2\xb1\x0c\x43\x6f\xec\x72\x11\xf0\x61\x14\x38\xfe\x5c\xd4\xe6\xae\x11\xf9\x40\xa2\x30\x39\x4a\x62\x35\x49\xf3\xd5\x2e\xd9\x1d\xd7\x65\xbc\x2e\x36\x0b\xe1\xc0\xb1\x30\x21\xe2\xd1\xc1\x53\x48\x47\x2c\x01\x31\x5b\x6d\xa6\xab\xe9\x6a\x57\x1d\xd0\xb6\x1e\x8d\x47\xb7\x01\x33\xb3\xb5\x3b\xea\x24\xf2\x50\x39\x83\xc0\x85\x58\xce\xb9\x1d\xd6\x2e\x58\x9a\xb1\x98\x8e\xc9\x99\xc5\x96\xb1\xbd\xd6\x5d\x23\x25\xcc\xa0\x02\x7f\x6e\xd9\x93\x90\x2d\x4e\x27\xbc\xe8\x66\x64\xc0\x48\xb1\x28\x86\xa8\x85\xae\xc6\x18\x1c\xb6\xea\x93\xa2\x61\x08\x72\x08\x98\x86\xae\x37\x8b\x3a\x4d\xb1\x72\xb5\x18\xe8\x3d\x04\xb6\x40\xce\x8c\xf3\xa5\xd7\x34\x05\x17\xf0\xc3\x49\xd0\xf7\x9b\x6a\x7b\x6a\xbc\xa9\x7b\x82\x76\xf3\x12\x1d\xd6\xbc\xbc\x55\x85\x16\xb5\x74\x83\x18\x7b\x05\xc5\x1c\xc5\xc8\xe3\x91\x14\xa5\x03\x2e\x72\x8b\x82\x8a\x3d\x8a\x77\xdd\x46\xe8\x78\x0d\xd5\x39\x15\x3b\x52\xda\x45\x3b\x06\x75\x82\x9e\xcb\x73\xdd\x76\x33\xb4\x6d\x76\xb3\xe6\x70\xdc\x02\xa0\xfa\x41\xb4\x8d\x77\x87\x23\xbb\x31\x5b\x73\x8c\xc1\x77\x2b\x74\x9d\x0d\x6b\xba\x12\x02\x8a\x42\x1a\xd4\xa2\x61\x72\xcd\x92\x2d\xd0\x03\x6f\x9a\x22\x07\x9a\x58\xc1\xe6\x0a\xea\x13\xc7\x39\xed\x30\x99\xdb\xf0\xb3\xf4\x08\x83\x22\x35\x28\x99\x0b\xb1\xd5\x89\x09\x85\xc1\x47\x23\x64\x86\x8d\x99\x96\x41\xeb\x33\x9f\x8f\xca\x19\x44\x60\xd8\x74\x49\x47\xdb\x9d\xd2\x27\xd2\xc9\xee\x4f\x9b\x69\xe1\x40\x6b\xbd\x1a\xf8\x4d\x3c\x50\x9b\xcd\x7c\xb9\xae\xbb\xde\xc4\x41\xb1\xe8\x6c\x31\xe4\x71\x89\xd4\x0f\x58\x44\x1c\x5d\x0f\xf5\x98\xf9\x7a\xf4\xdb\xd3\xc0\x83\xa6\xb3\x06\xf2\x6a\xc8\x41\x01\x37\x85\x1a\x79\xb8\xec\x94\xd6\xe7\x56\x65\x32\xad\x31\x72\x8e\x9b\x60\x46\x4b\x16\xa5\xac\xb2\x62\x2f\x72\x38\xee\x56\x05\x96\x2f\x67\x5b\x62\xe3\xd1\x18\xb1\x5a\x1d\x9b\x94\x9d\x2d\x33\x68\x2c\x58\x2e\x8b\x29\xe4\xec\x58\x63\x77\x40\x4e\xc1\x70\xda\x6e\x23\xc9\x08\x3b\x4c\xe2\x90\x53\xba\x83\xd0\x50\x1a\x56\x50\xa3\x40\xeb\xf4\xd4\x34\x03\xa2\xf4\xb1\xb5\x9e\x06\x47\xc9\x66\x97\xa2\xca\x61\xd6\xae\x61\x13\x5f\xdb\xb1\x12\xd7\xc8\x63\x23\x31\x66\xb0\xdc\xaa\x43\x92\x02\x39\xc0\x19\x8a\xa6\xa1\x18\x40\xd0\x9e\x3e\xa3\x68\xe1\xc1\xde\xa1\x15\xd9\x23\x69\x41\x6c\x4a\x93\x4c\x06\x30\xc3\xdd\x20\x0b\x68\x10\x0e\xa7\x29\x7b\xc6\x7a\x9e\xc5\x21\xe8\xd2\x1f\xa7\x5b\xc3\x32\x47\x4d\xd9\x02\xb3\xf2\x60\xb8\xf1\x66\x0d\x76\xb9\xe8\xbc\x58\x6e\xc9\xd8\xd5\x34\x0e\xd7\x6d\xd1\x07\x60\x29\xa4\x9e\x2f\x1e\x56\x9b\xcd\x6a\x68\xad\x03\x8d\xf8\xdb\x8a\xc9\xc5\xd0\xd5\x9b\x4c\xea\x00\x94\x21\x90\x4d\x0c\x2b\x38\x3b\x9d\xc6\x2d\xa7\x14\x63\x41\x27\x67\x18\x90\x43\x81\x04\x83\x6c\x4b\x51\xb5\xc3\xfb\x6a\xaf\xcc\x51\x8c\x59\x9d\x0d\x5c\x87\xc2\xc0\x85\x1c\x8c\xd3\x4d\xc5\x0c\x44\x87\xd2\x36\x05\x7f\x16\x61\x3f\x21\xbb\x64\x1e\x44\x45\x25\x68\xe4\x99\xc8\xfc\xb1\xbe\x88\xae\x6c\xe1\xdc\x5a\x64\x8c\x71\xbb\x70\x48\x0c\xcd\xe7\x74\x53\x87\x67\xf4\xd9\x13\x76\x5b\x0b\xd8\x6a\x98\x67\xac\xa2\xd3\x80\xeb\xac\x39\x67\xe4\x09\x8d\xb3\x2a\x06\xc7\x22\x9e\xa9\x70\xe5\x70\xb0\x8f\xf3\xac\x24\x17\x85\x30\xf6\x0a\x68\x2f\x86\xc9\xc2\xcc\x99\x9c\x62\x6c\x42\xf5\xf6\x5d\x27\xf0\xc8\x65\xe5\x0b\x73\x37\xd5\x83\x52\x1e\x34\x0a\x23\xc8\x81\xcf\x23\x75\xb7\xe7\xe1\x39\xc6\xf8\x54\x25\xcf\x7c\xbf\xdf\xab\x03\xa7\xc9\x21\x2e\x55\x24\x46\xaa\x64\xf6\xd0\x1e\x91\x0a\xa4\x5d\xd0\xfb\xe3\x99\x77\x67\xeb\x5c\xa6\x35\xcf\x4c\x9b\x26\x0d\x4d\x2b\xcb\x19\x46\xc4\x00\x13\xa4\x6a\xe1\xb7\xf6\xac\x56\x51\x01\xe3\xa8\x50\xc7\x5d\xfe\xe2\x02\x4c\xc7\xe8\xa9\xcd\x64\x78\x0b\x50\x69\xaf\x6e\xb8\x31\xc2\x25\x84\xd0\x0a\xb6\xc8\x11\x00\x30\x54\x83\x30\xdf\xd3\x91\xc9\xec\x1d\x0e\xec\x1a\xd7\x95\xe8\x10\xd5\x74\x4a\xf2\x76\x8e\x7e\x59\xbb\x41\x2f\x2c\x2c\x2a\x6f\xa3\xc0\x4a\x88\x05\x4d\x75\xa2\xd8\xc8\xb5\xdf\xed\x0e\x79\x25\x0c\xd6\x78\xe6\x7d\xb1\x25\xa0\x0b\x31\xe7\x89\x0e\x39\x6b\x78\x89\xf3\xb4\x1c\xa9\x5d\xd2\x55\x68\x84\xf3\x80\x20\xe0\x2d\x6e\xe6\xa1\x15\xf3\x5b\xd4\x0e\xad\x79\x5d\x6a\x15\x3b\xed\x23\x16\x70\xb2\x2a\xd7\x3c\x9c\xe9\x95\x2c\x96\xbe\xb2\x75\x1f\x5c\x00\x7f\x8c\x63\x32\xf1\x06\x0a\xa2\xa5\x60\x98\xe2\x73\x7b\x19\x5c\x48\xbf\x4c\x2f\x67\x6d\xb7\x1b\x02\x27\xc8\x66\x21\x55\x11\xe1\x36\x4b\x84\xa1\x9e\x12\x15\xb4\x1e\x56\x07\x66\x48\x4e\x12\xba\xf1\x0e\x33\x57\xd3\x64\x81\x0c\xcf\x12\x3c\x9e\x5c\x93\x2a\xaa\xf4\x67\x8c\x9c\x27\x51\x26\x6e\x1c\xa5\x39\xf5\x5c\x89\xd9\x74\x92\xa9\x19\x6b\xea\x49\x7c\x20\x8e\x92\xe9\xbb\x3c\xb1\xaf\xfa\x35\xdd\x1c\xed\xba\x47\x87\xb6\x0d\x24\x91\x53\x5c\x2a\xd9\x89\x00\xcf\x14\xc4\xed\x8c\xcd\x68\x1c\x4e\x92\x1e\xb7\x60\x96\xcc\x7a\xf6\x82\x30\xa4\xef\x47\x87\x32\x55\xdb\x23\xb6\xe1\xe1\x78\x1b\x59\xa1\xd6\x4f\x7b\x09\x02\x84\xd8\x1c\x24\x11\xe4\xb9\x65\xc0\xec\x69\x10\x30\x0c\x3e\x67\x14\xa8\xe6\xc2\xc5\x5e\x6c\x48\xd8\x58\xe5\x23\x97\xe7\x04\x41\xb8\x49\x37\x5f\xed\xfc\x8b\x2f\xd2\xb6\x5d\xad\x98\xf3\x9c\xcd\xb7\x3c\xd3\x9d\xb7\x12\xe5\x50\x70\x4f\xb1\x0e\xe1\x92\x70\xae\xda\xa8\x21\xce\x02\x43\xaf\x08\x4a\xee\x4f\xa7\x55\xeb\xd3\xfc\x45\x40\xa3\x88\xdf\x86\x16\x18\x9b\x0f\x83\xec\x80\x6e\xc0\x60\x43\x8b\x13\xd0\xd0\x19\x3a\x88\x74\xc4\x59\x6a\x9e\x2b\x34\x50\x45\x6c\x27\xa6\xc0\x48\xe6\xec\x7c\x76\xf2\xf0\xd8\x05\x5b\x8f\xf6\x10\xca\xc2\x8b\xcd\xc9\x3d\x8a\xfc\x61\x5d\xd4\x8b\x0a\x5b\x0a\xf1\xd6\x1e\x01\xce\xf3\x08\xeb\x06\xcc\xdf\xd2\x19\xc7\xbb\x0e\xb3\x5d\x23\x64\x07\x4b\xdc\x52\x2d\x94\x9e\x06\x2c\x49\xcb\x18\xbe\x4b\x34\x1a\xb7\xda\x63\xa7\x3a\xdd\x36\x3f\xf2\x2c\x23\x23\x46\xaa\x05\x65\x01\xcf\x1c\x20\x88\x7d\x84\xaf\x0c\x7e\x4c\xdd\x16\xe1\xb2\xed\xc2\xe5\x62\xa7\xcd\xeb\x92\xe1\x66\xf0\x96\xbd\xd0\xbb\x36\x57\x14\x09\x26\x4c\x33\x66\x6b\x92\xe4\x7b\x69\xca\x68\x2c\xab\xc8\x31\x05\x28\xd7\xdc\xcd\x57\xe7\x8c\xf2\xab\xae\x24\x4d\xf4\x08\x2f\x89\x16\xf5\x00\xbd\x1a\x0f\x9a\xad\xb4\x64\x0d\xd5\x70\xb5\x4e\xf9\xd8\xdd\x1c\xce\x58\x40\xe3\xfb\xd9\x76\xe5\xc6\xc9\x7c\x03\xfb\x68\xc9\x0c\x78\x0d\x2d\x2e\x34\xa3\x87\x60\xe1\xf6\x5b\x71\x41\x0b\xce\xd5\xe4\x35\xc6\xd6\x2c\x9a\x4e\x91\xf7\xca\x91\x07\x99\xaf\x8d\x01\xa9\xdc\x44\x0d\x38\x76\xf1\x40\xa9\xb9\x2c\xe1\x97\x78\xe6\xf4\x53\x2d\x13\xb0\x01\x32\xc3\x0d\xda\x5e\x3c\x82\x9c\x2d\xed\x7e\x16\x36\xbb\x8a\xa9\x04\x79\x27\xeb\x78\xd3\x75\x64\x00\x5b\x9b\x00\x6a\x7a\xa2\x9a\x22\xbe\x9e\xf6\xc4\x79\x34\x5f\xab\x8d\x2b\x72\xe7\x20\xf6\xe7\xb6\x19\x43\x6d\x14\x5a\x44\x52\x47\xed\x71\x4f\x85\x49\xa2\x4a\x3c\x3b\xd7\x0c\x21\xc2\x72\x39\x76\xe5\xc6\xdf\xcc\x14\xc2\x08\x19\xc2\x3d\x76\x35\xd9\x2a\x1e\xb1\x8f\x7b\xb3\x43\x2f\x10\x3a\x3f\x10\xa3\x60\xbb\xcd\x0e\x0f\x21\x7e\x3e\xf5\x44\xd8\xac\x17\x0e\xee\x32\xb3\x2d\x44\x71\x54\xef\x2f\x12\x9e\xdc\x48\xab\x52\xe2\x75\x25\x84\x40\x3d\x08\x87\x94\xdc\xef\xb8\xa3\x86\xd4\x97\x12\x4c\x63\xaa\x18\x22\x2e\x42\xb1\x3d\x03\x47\x28\xa6\x8f\xf1\xe1\xa2\xea\x88\x23\x58\x75\x71\x02\xdb\x14\x19\x91\x02\x61\x9f\x07\xfd\x30\x24\x44\xa1\x74\x73\x9a\x48\xed\xf3\xb0\x58\x55\x9d\x4b\x3b\x5c\xbe\x58\x4e\xcf\xb5\x07\x45\xb0\xd6\x94\xb5\xa4\x32\xa9\x7c\x60\x8f\x04\x6a\x6c\x60\xe3\x74\x74\xc6\x4a\xbc\x59\xaf\x98\xf9\xa6\x86\xf8\xf9\x62\xc7\x2e\x4c\x9f\x5a\xc5\x3c\xb0\xab\xfd\x06\x3b\x85\x47\x72\xd1\xd4\xc1\x91\x1c\x28\x8c\x9b\x2a\x39\x08\x4a\xad\x49\x01\x20\x3d\x32\x9f\x13\xe2\x3c\xbb\x5c\x44\x66\x7a\x8a\xe4\x73\x0a\xd5\xdb\xca\x1c\xb3\x55\xdd\x01\x9b\x33\x7a\x3c\xb7\x11\x04\x1b\xb5\xb7\x42\x5a\x62\x4d\x5d\xcc\x0e\x32\x10\xcd\x6a\xa4\x0a\x80\xf9\x1a\x65\x12\x22\x9d\x66\x14\xb2\x26\x76\xd0\x50\x50\x29\xda\xa5\x21\xd4\x3b\xa4\x2c\x67\x4a\x1b\x91\x7d\xef\x62\xd8\x3e\x8c\x6f\x00\xa9\x14\x07\xf1\x0e\xe3\xf9\x29\x1d\xb8\x11\x4a\xd7\x4a\x90\x31\xe4\x4c\x69\x62\xa5\x21\xe2\xca\x01\x3e\x68\xf6\x3d\x0e\x96\xc7\xfd\x82\x3e\x4c\x0f\xd6\x3a\xf0\xf4\x8a\x06\xbe\x2c\x5e\x00\x6c\x0e\x54\xb9\x66\xb6\x74\x40\xe3\x4d\xe4\x3d\xb8\x00\xf7\x94\xf0\x42\x6e\xaf\x3b\x3f\xbe\xc0\xc8\xec\x7c\x8c\x94\xea\x6c\x24\x1b\x1c\x36\xce\x7b\x56\xf6\xa9\x96\x6e\xc0\x61\x55\xd8\x3c\x40\x95\xdc\xe9\x40\x36\xcb\x32\x42\xe8\xba\x33\xa7\xd0\x88\x48\xb4\x0d\x14\xfb\x68\x8c\xa7\xdd\x58\xca\x5a\x6e\x9c\xde\x91\x73\xd6\x59\xbb\x26\x7b\xf0\x01\xee\x79\x0d\x30\x02\xff\x04\x1f\xdc\x25\x7b\xbe\xf0\xa0\x3c\x2e\xa0\x6d\x6c\xae\x2b\x1f\x41\xd5\x85\x82\x9f\xa6\xa4\x5c\xc3\x22\x85\xe3\x54\xa8\x1b\x0e\x35\x43\x67\x91\x32\x8f\x83\xb1\x50\x94\x13\xf2\x11\xf0\x97\x29\x59\xcc\x0e\xe0\x68\x00\xc6\xa0\xb1\x66\x23\xdc\xb4\xc4\x6b\x9d\x98\x3f\xad\x2e\x20\x5a\xad\x17\x83\xdc\x1c\xd7\xe1\xca\x58\xae\x4d\x21\xc3\xc1\xb2\x77\xf5\xf5\x1e\x81\x9a\xb9\x22\xb9\x88\xdb\xad\x16\xd4\x58\xda\x3f\x1c\x8a\xb4\x41\x89\xa4\x59\xed\xe7\x1b\xa9\x1a\xf4\x5d\x78\xd9\xb6\xfe\x56\x3a\xf1\xf3\x15\x7d\xde\xbb\x43\xe2\x2f\xd5\x65\x24\xed\x40\x05\x23\xdd\x16\x1c\xbb\xd0\xc3\x3a\xdf\xf7\x33\x8b\x57\x89\x55\xc6\x2c\x57\xa7\x84\xa4\xed\x73\x3b\x1e\x27\xf4\x4f\x49\x89\x29\x03\xba\x59\x9c\xba\x45\x54\xed\x38\x0e\x59\xe6\x89\x3f\x08\x70\x87\x57\x94\x63\x2e\x56\xcb\x63\xef\x29\xb9\xe9\x0e\xbd\x85\x9f\x9a\x29\x0d\x8e\x92\xbf\x44\xe6\x9e\xac\xc0\x43\x00\xb9\xd8\x92\x3a\x12\x67\x0e\x55\xd4\x31\x14\xd1\x3a\x51\x22\xd5\xac\x86\x01\x85\x93\x64\x8f\xaa\x6b\x33\xc3\x7c\x12\x68\x9d\x9b\xa9\x69\xe0\x51\xa9\xbe\xdd\x0d\x35\x98\x5d\xe6\xca\x19\x1a\x7a\x9c\xb9\xa8\x1d\x33\xf5\x92\xca\x3a\xa4\x8b\x94\x5a\x17\x97\x96\xa2\x2a\x98\x80\xf0\xd1\xda\xc0\x0b\x33\x0d\xd1\x73\x5e\xcc\x78\x03\x9a\x92\xf8\xea\x9c\xca\x3e\x74\x9a\x2e\x7c\x6c\xb9\xb9\x1c\x3b\x08\x73\x52\x03\x3b\x11\x8c\xc7\x97\x86\xb5\xd3\x97\x00\x07\x06\x95\x24\xe7\x3c\x5c\x19\x45\x9e\xe0\x92\xce\x17\x48\x62\xed\x7c\x66\x2c\x4b\x17\x94\xa3\x8a\x2b\x9e\x2c\xf3\x85\xd9\x17\x49\x6a\xc2\x6c\x0f\x4f\x19\x56\xdf\x63\x4c\xb9\x28\xf2\x6a\x88\xd7\x0b\x04\x3a\x75\xf9\x0a\x35\xf7\x38\x7a\xe8\x92\x80\xc3\x45\xa0\xea\xf8\x16\x34\x0b\xbe\xd9\xc7\x65\x48\x8a\xe4\x65\x39\x8c\x27\x86\x28\xab\xd9\x05\xb4\xbf\x14\xf1\x78\xef\x9d\x6b\x6f\x63\x88\x0c\xee\xec\x66\x21\x1a\xad\xa1\xb9\xca\xba\x90\x6d\x9a\x34\xa9\x6c\xbb\x2d\x6e\x70\xeb\xcb\x70\xee\xd0\x60\xde\xd2\x54\x02\x8e\x97\x64\xb6\x71\xfb\xd3\x9e\x84\xc9\xda\x29\xa2\x31\x4f\x51\xb4\x83\xe2\xba\x70\x41\x81\x5c\x3a\xec\x2d\xb2\x76\x7a\x11\x84\x00\x56\xbc\x18\xf7\xb8\x56\x22\x14\x39\x3b\xea\x8a\xc1\xda\x8b\x20\x5b\x2d\xa4\x02\x8e\x40\x6e\x77\x44\x99\x07\xa5\x20\x91\x2e\xcc\xe4\x0b\x20\x60\xcd\x25\x08\x47\x17\x40\x57\x75\x9d\x63\x73\x2c\x0b\x42\x35\x29\xcc\xdc\xf7\xe2\x39\xdf\xcf\x8a\xac\x29\x53\x03\xb7\x1d\xd5\x9f\x77\xf9\xce\x71\x54\xab\xd2\x4c\x0d\xdf\x01\x56\x35\x03\xce\x52\x95\x7c\x11\xb4\x8a\x8e\xe7\xc7\x14\x38\x24\x23\x54\x5b\x78\x2c\xc3\x9c\xfa\x46\x33\xa4\x62\xc9\x03\xd4\x3d\x2e\xd8\x06\xdf\xd6\x8b\x3e\x20\x41\xa1\x47\xc5\x9c\xc1\xe7\xfc\x74\x6b\xd8\x1a\x0c\xd9\x3b\x76\x19\x6c\x10\x37\x89\x2d\x96\xd9\x6e\x94\x20\xba\x0c\x36\xb9\xf1\x45\xb8\x34\xb0\x65\x9c\xcb\xbe\xea\x8c\x5c\xc6\x95\x35\x0e\xa7\xe2\x70\x50\x5b\x9c\x88\x90\x6c\x15\x5e\x2a\x55\x85\xfd\xa4\xa2\x1c\x19\xc7\x53\xd6\xac\x72\xaf\x58\x62\xf5\x41\x8d\x50\x5a\xee\xcb\x2d\x1e\x70\x66\x9e\x34\x90\x8a\xf8\x1d\x57\xf1\x87\x0c\x31\x21\x72\x8a\x6e\x56\x0f\x75\xee\x1d\xb5\x9b\xaf\x49\x9e\xa6\x8a\xad\x0b\x41\x3d\x1c\xcd\x37\xbe\xd1\x49\x53\x4d\x57\xb7\x6d\x02\xc4\x9e\x98\x21\x5b\xd3\xf4\xb3\x7e\x56\xe7\x61\x23\x5b\x4b\x5a\xc0\x59\x86\x5d\x37\x49\x9f\x2d\x02\x72\x27\xf4\xad\x4c\x1d\xc8\x70\x54\x3d\xa6\x77\xa4\x45\xe8\x1e\xf7\x83\x56\x14\x5d\x2a\x1e\x31\xd3\x0f\xca\x75\xb9\x48\x20\xce\xa6\xfd\x7e\xa8\xa6\xd9\x9e\x9c\x29\x50\x85\xb5\x81\xef\x87\xc0\xb9\x08\xe5\x14\x83\xa0\x29\x75\x51\x87\xea\x44\xc0\xa4\xc4\xaf\x24\x8a\x89\xce\x0f\x85\xf3\x33\x82\xed\x95\xc4\x4f\x03\x55\x3d\x3a\x2e\xb2\x9f\xcb\x39\xa6\xe6\x73\x7c\x49\x68\x34\xc0\x12\x8b\x2c\x17\xd3\xf5\x6e\x5a\xd6\xe1\x36\x56\x00\xa1\x72\x73\x66\x1d\xb1\xeb\xa3\x47\x10\x5e\x05\x71\xa0\x43\x57\xc3\x41\x95\x4b\x43\x1d\x9d\xd4\xa2\xce\x59\x81\x2d\xc8\xb9\x12\x08\x32\xc0\xd3\xa9\x34\x80\x6b\xec\x07\xe5\x2b\x90\xf8\x0c\x92\x07\x7a\x74\xf1\xb0\xb9\x59\x88\x21\xa8\x28\xb3\x8e\x28\xc1\x64\xa6\x20\x5b\xc9\xfe\xa5\xd6\x7c\x8f\xcd\x44\x0d\x8b\x4e\x53\x5a\x1a\xc5\xa6\xec\xb5\x40\xc3\xa8\x6d\x41\x9f\x91\x79\x98\xc8\x07\x34\xaf\x28\x15\x5c\x62\x03\x97\xc9\x4a\x97\x09\xb7\x41\x2e\xeb\xa5\xbe\x17\x9b\xa8\xb9\xd4\x09\xe3\x76\x5a\x81\xd6\x32\x9b\x2d\x86\xb2\x66\x60\x56\xe5\xcf\x21\x60\x07\xbb\xc4\xa0\x87\xfa\xe2\xda\x90\x52\x5c\xdf\xa7\x3b\x61\x8f\xb2\x0d\x75\x21\x43\xe6\xbc\x06\xa6\x97\x6e\x34\x07\xee\x76\x30\x1b\x49\x35\xef\x6f\xe3\xd3\x99\xa0\xb1\x8e\x90\x77\xdc\xd0\xe5\x2b\x57\x32\x77\x53\xcb\x08\x5b\xb3\x03\x20\x37\x63\x3d\x7d\x88\xbe\x6a\x58\xe9\x1b\xd9\xc0\xb8\xcc\xc1\xc1\x0c\xe3\xd4\x9e\xf1\x79\xec\x02\xd7\x96\x0a\x04\x3c\xd4\xc2\x28\x8c\xd5\x28\x4c\x61\x88\xb2\xa9\x94\x1c\xd0\xbe\x17\x77\x5b\xde\x5f\x96\xb9\x97\x1c\x37\xb9\x25\x26\xe8\xaa\x47\x88\x78\xb7\x1b\x0f\x3c\xaa\x4b\xc6\x64\x18\xa5\x13\x54\xbc\xb4\x48\xa0\x91\x52\x56\x4b\x73\xc7\xc9\x08\x91\x05\xcc\x8a\xd8\x62\x65\xd5\xaf\xf9\x03\x9a\x4d\xd3\x16\xd2\x36\x2e\x7d\x42\x31\xe0\xcc\x98\xb3\xdf\x08\x30\xec\x4e\x85\x9c\x3e\x9d\x8c\xb2\x5b\x84\xe3\x31\x7f\x78\xa3\xf3\xe1\xa2\x73\xe7\x07\x7c\x2d\xee\x08\xfa\x48\x6f\x13\x86\x2e\x67\xdb\xb5\xeb\x57\x82\xe0\x67\x17\x81\xc5\x36\x2b\x74\x77\x96\x20\x4e\xde\x19\x94\x51\x37\x97\xa4\x37\x70\x53\x50\xd5\x9a\x5f\x0f\x48\x08\x75\xf3\xb5\x73\xf0\x95\x51\x6c\xf8\x03\x41\xcc\x97\x9e\x78\x9c\x25\xdb\xd5\x72\x2d\x27\x45\x31\x2d\x00\x45\x4a\x42\xc7\x88\x32\x90\x4d\xcd\xc5\x40\x28\x32\xa2\xef\x33\xeb\x62\x35\x75\x20\x70\x96\x71\xd2\x37\x31\x3f\x81\x14\xdf\x44\xab\x3a\x6b\xb9\xcb\x5c\xaa\x8a\x87\x8c\x1e\xe3\xcf\x42\xe7\x49\x72\x78\x0c\xf6\x02\xd5\x49\x21\x8c\x27\xac\x1d\x90\x08\xa6\x24\x10\x57\xe5\x7b\x11\xce\x9d\x92\xd7\x2c\x35\x22\xce\x10\x7c\x4a\x07\x1f\x3e\xc0\x59\x1c\x15\x41\x35\x9d\x5b\xab\x59\x9f\x79\x00\xde\x71\x78\x33\x6e\x99\x29\x83\xe4\x84\x94\xec\xe0\x58\x1b\x27\x86\xd5\x04\x55\xe1\xc2\xcc\x40\xb1\xef\x34\x64\x01\xe4\x4d\x4e\xba\x29\x40\x18\xbf\xe1\xe7\x11\xb5\xc3\x37\x0b\xdb\xd8\x1d\xc2\x90\x35\x98\x73\x4d\x32\x6b\x14\xf3\x7d\x9d\xb3\xf2\xab\x90\x8d\x87\x02\x50\x12\xa9\xfb\x30\x8d\x0f\xac\xd0\x6f\x86\x75\xb4\x02\x36\xa6\x2a\x98\x2c\x45\x65\xbc\xae\xdb\xe9\x56\x75\x09\x06\x8f\xa3\x2a\x0f\xa8\xaa\xdd\x4d\x4d\xcb\xe1\x76\xe9\xcc\xdf\xa1\x1a\x4c\x30\x78\x29\x34\xe2\xb1\x95\xb3\x40\xdd\x8f\xd1\x17\x52\xa6\xc3\x7c\x26\x16\x8e\x7b\xd8\xd7\x5a\x25\x6d\x49\xcc\x16\xfc\xd4\x76\xa3\xb3\xa2\x71\xaa\xa9\xfb\x7a\x21\xa5\xf3\x13\x0d\x30\x21\xd3\x30\x67\x4f\x22\x43\x4d\x1f\xd2\x6c\xb7\xda\x83\x13\x0d\xf6\xb4\xbc\x76\x0f\x03\x09\x57\xfd\x28\x36\x6e\xc5\xec\x8a\xb6\xda\x96\xc7\xcc\x21\xb7\x92\x71\xa4\xfa\xe5\xea\xa4\x0e\x8b\xcb\x0a\xd9\x78\x2b\xa3\x9b\x03\xe2\xdc\x24\x36\x02\xd8\x4c\x2f\x90\x1e\xaf\xcb\xce\x0d\x60\x45\x94\x86\xd5\xdc\x48\x76\xb9\xc9\x6c\xe8\xb0\xa6\xcf\x0a\x3e\x56\x38\x2d\x98\x33\xc1\x9e\xdb\x66\xc7\xf5\x3a\x56\xb3\x69\x8e\x27\x71\x80\x01\xd9\xe0\x13\x70\x26\x57\x4b\xd2\x9a\xe3\xd9\xfe\xe2\x95\x84\xd1\xa8\x26\x2d\x1d\xbb\xb0\x40\x0e\x56\xba\x2e\xa1\xcb\x3e\x72\x78\x10\x16\x6d\x3b\xcd\x3b\x8a\xd2\xc7\x53\xf9\xb9\x58\xd8\xf1\x32\xac\xac\x22\xd3\xb4\xda\x3a\x57\xec\x09\x83\xf3\xf0\xd8\xe1\x64\xe8\x06\x17\x3a\x5f\x42\x07\x3a\x6f\xdc\xf4\x54\xad\x7d\x22\x99\xdb\xf0\xaa\x3f\x4e\xfb\x23\x96\x92\xfa\x1c\x3d\xb7\x88\x70\xce\x56\x28\x84\xc0\xfd\x74\x8c\xbe\x06\x67\xbe\xa2\x2e\x4b\x7e\x0f\x31\xc2\xd1\x9c\x9a\x3d\xd6\x32\xe4\xd2\xf3\xf0\xac\xb5\x53\x98\x3a\x0e\xe7\x63\x51\xcf\x9b\x92\xac\xb4\x78\x5b\x1d\xc4\xf5\x9e\xa2\x0f\xb0\x74\x80\x5c\x6f\x98\x57\x2d\xb4\xd9\xae\xcd\x86\x5b\x77\x05\xd2\x8c\x87\x46\xfb\x3a\x92\xaa\xe9\x7c\xee\xec\xab\x95\x87\xd6\xcb\xd9\x9e\x3c\x1e\x3b\x8d\xd1\xd4\x8b\x37\xcb\xa6\xa7\x69\x9a\x1e\x2b\x65\x66\xc6\x65\x17\xd2\x1b\x97\x3b\xef\xf2\xa9\x62\x6a\x41\x26\xed\x2f\x10\x6b\x2f\x0e\xe5\xe1\x1c\x5f\x4e\x60\x20\xc2\x31\x9c\x3b\x21\xeb\xd6\x27\xe6\x40\x9b\x82\x46\x5e\xb8\xc5\xc2\x6a\x50\xaa\x91\x21\x06\x66\xb0\x25\x86\xda\xfc\x6a\xb7\xea\x2a\x1d\x65\x58\x19\x3b\xb7\x36\x12\x57\xb0\x6f\xa3\x86\xcf\x84\x97\x04\x0e\x42\x68\xcf\x24\x18\x94\x2f\xf8\x3c\x84\xc7\xca\x92\x50\x4e\x3b\x0f\x2b\x9a\x29\x1e\x87\xb4\x51\xf7\x50\xd9\xe0\xf9\x56\x37\x1b\xd4\x11\x08\x48\x76\xbc\x06\x5e\x87\x99\x1a\x52\x81\x73\x9c\x21\x25\xad\x5c\x60\x91\x3c\x2a\x6e\xc7\x69\x3b\x6d\x85\x41\x28\xb2\xac\x6b\xf4\x44\xa7\x6d\x32\x66\xa3\x92\xc8\x37\xeb\x16\x46\x2d\x40\x4a\xcc\x59\xb9\xe0\x0b\x06\xd4\xec\xd6\xf5\xa1\x6a\x25\x9c\x77\x89\x4d\x1b\xd8\x51\x43\x36\x8a\x56\x2f\x1b\x4a\xc3\x66\xa8\xc6\x1f\xcd\x9a\xea\x4a\xa6\xe3\xf7\x00\x75\x5b\xdb\xd9\xf6\x16\xa0\x0c\x71\xcc\x02\x36\x3b\x72\x21\x02\x8a\x59\xed\xa3\x8d\xe3\xbb\xe0\x22\x78\x3b\x04\xa7\x62\x79\x7d\x3c\x94\x36\xa1\x66\xa6\x82\xcf\x63\xc6\xeb\x35\x86\xed\xe0\xc3\x86\xe9\x08\xd9\xc1\xb4\x7e\xd0\x04\x65\x23\xfa\x7e\x6b\x87\x4d\xab\x0b\x67\x63\x93\x8e\xaa\x77\xc0\xfa\x64\x87\xc3\xb5\xed\x4c\xb7\xb3\x0e\xe4\xac\x7e\xa1\x79\x45\xb0\x7b\xe7\xdc\x19\xd8\x14\xec\x7c\x4c\xc1\xf7\xeb\xa9\xae\x18\xb9\x05\x8b\x40\x54\x15\xa2\x81\x3d\x7a\x7a\x71\x92\x7c\x81\x09\xf5\x65\xab\xc9\x09\x5c\xce\xb1\x70\x8c\x0f\x97\x9d\x91\xb0\x85\xd1\xed\xf7\xca\x89\xb1\x8e\x55\x85\xa0\x2b\x82\x64\x24\x8d\x37\x28\x55\x64\xc8\x34\x25\x3a\x61\x8b\x75\xd9\x76\x73\x3a\xcd\x36\x87\x69\x7d\x54\x16\x08\x66\x86\x5a\x8d\x4b\x3b\x79\x49\xac\x3b\x1e\x1e\xa4\x7e\x79\x62\xc7\xc3\x29\x90\x30\x6c\x36\xb3\xb3\x2b\x0c\x39\x7a\xcc\x11\x6b\x13\x6a\x5c\xac\xc4\xd6\x45\xa4\xa4\xf5\xe6\x60\x1c\x94\x7c\xdd\xed\x58\xfe\x52\xcd\x6b\xa6\xde\x37\x06\xbd\x98\x9e\x8a\xb6\xdf\xac\x0c\x9a\x11\x45\xf8\xe8\x9c\xd4\x5a\x4a\x22\xd5\x4f\xc7\x52\xd5\x6a\xba\x76\x1b\x25\x9b\x95\xd6\x56\x38\xcf\x40\x8c\xc1\x4a\x0a\x84\x64\x63\x2c\x05\x74\x71\x64\x17\x3c\xa8\xa2\x68\x1d\xd7\x6b\x9b\x17\x12\x7e\x10\x3a\x9a\x34\x6e\xb4\xbc\xb8\x42\x7a\x36\xa4\x65\x86\x2f\x31\x40\x70\x8b\x8e\x18\xc5\xc6\x5b\xbb\x08\xa1\x2d\x17\x82\x8f\xba\x3c\xb7\x55\x9b\x46\x55\x1d\xbc\xa5\x22\xe7\x00\xa0\x43\x87\x4b\xa9\x21\x10\x80\xcd\x00\x0a\xdc\xbd\x74\x99\x59\xe9\x16\x60\x38\x58\x09\x9b\x96\xbe\xbe\x73\xcb\x7e\x3d\xaf\x5c\x1f\x6b\xec\x51\x97\x17\xa5\xb1\x60\x70\x6b\x9e\x40\x6b\x39\x9a\x79\x29\xaf\x88\x30\x0c\x10\x7f\xbb\xc6\x6c\x4e\x70\x70\x2c\xc9\x07\x1f\xc8\xfe\x79\x3e\xe7\x57\x53\x28\xb3\xd8\xd3\x31\x4f\x4e\x12\x5a\x2f\xfa\x0b\xbc\x02\x7a\xa5\x52\x81\xca\x48\xf1\xc5\x1b\x01\x3a\x82\xe3\x7a\x1b\x21\xd7\x68\xd6\xb7\xf4\x74\x41\x59\x5d\xe0\x17\xbb\x53\x10\x25\xc2\xd9\x43\x96\xa9\x99\x48\x97\xfe\x28\xd6\xde\x21\x39\xa9\x68\xaf\x65\x54\x9e\xd8\x3e\x72\x30\x6a\x5e\x9f\x95\xe5\x72\x8a\x7a\xde\x71\x91\x0b\x56\x31\x1a\x58\xff\xa2\xb3\x72\x40\x47\xec\x26\xef\x91\xcd\x4a\x3a\xba\x6e\x5a\x85\xa1\x6e\xe3\x5d\xb3\x6b\x17\x6a\xc8\x6e\xac\x23\x64\x1b\x32\x16\x93\xab\x54\x5b\x08\x86\x87\xb8\xa0\x20\xc0\x0a\x59\x0d\xf1\x66\x5e\x2d\x18\x60\xca\x4c\xc6\xb5\x9b\x51\x53\x98\x84\xae\x91\x72\xbf\xca\x89\x6a\xb5\x9f\x43\xf1\x42\xd7\x18\xc1\xab\xa4\x8e\x5e\x2b\x76\x85\x14\x7e\xd7\x1e\xc3\x65\xc3\x95\x9b\x03\x36\x6d\xd6\xcd\x39\x4b\x64\x8f\x8b\xb3\xd4\xdc\xc2\x52\x22\xc5\x4b\xe0\x1c\x68\x47\x01\x22\xbe\x7e\x38\x3e\x03\x35\x5b\xd2\x5e\x48\x07\x25\x0b\xe6\xcb\x33\x6a\x07\x78\xef\xa0\x81\x8f\x6e\x30\x3f\xdd\xa4\x76\xd5\x1d\x72\x0d\xe3\x16\x28\x59\x9a\x12\x52\x17\x82\x86\x2e\xd6\x9e\xd6\xcf\x8f\x48\x37\x48\x52\x8f\x70\x33\x18\x2d\x66\xc8\x85\x3c\x8e\x45\x8c\x05\xd6\x3a\xe5\x65\xb3\x61\xe6\x5e\xd7\x30\x8b\xc8\x70\xab\xf3\x52\x66\x84\x5e\x5b\x64\xc9\x51\xe8\xf2\x40\x5e\x36\xe7\xcc\x0f\x78\xa2\x83\x49\xd0\x1e\xc9\x36\x93\x7d\xe5\x04\xb8\xf2\x64\xa9\x3c\xd8\x50\xf0\x59\x5c\xb9\xa8\x8b\x3a\x63\x95\x38\x82\xd3\x73\x26\x4e\x37\xf6\x1a\xdd\x87\x1c\xac\x29\x29\xed\xa5\xae\x50\xb8\xe9\xce\x65\x18\x63\xc5\xa1\x06\x0b\xef\xd7\x79\xee\x85\xbd\xed\x39\xbc\x11\xf6\x54\x4e\x5b\x7b\x82\x99\x26\x2a\x9c\xa2\xb9\x1b\xaf\xad\x4d\x3a\xdd\xf7\xec\x43\xdd\xa6\x39\xb7\x2b\x18\x85\x5d\x61\x6d\xb4\xf4\x6e\x96\x94\xeb\x41\xaf\x0c\x2c\x36\x4b\xf3\x92\x28\x32\x67\xa9\xb1\xb8\xdf\x01\x2d\x83\xda\xa4\xaf\x98\x1e\xd7\xe0\x7a\xe7\xb1\x43\xb5\x42\xec\x6c\x0d\xec\x4c\xa6\x57\xb3\xa2\xcc\xe4\x7a\x3c\x75\x25\xaf\x9b\xc5\x72\x75\x18\x2e\xdc\x7a\xb9\xdd\x64\x3d\x8a\x5c\xce\xfa\x2c\x56\x97\x50\xa5\x94\x06\x15\x24\x62\xa1\x9b\xf2\xd6\x95\x13\xb3\xc8\x35\x33\x2e\x34\x94\x19\x9c\x3e\x32\x97\x5e\xab\xe8\x54\xee\xd9\x7a\xa2\x20\xd3\xfa\xbc\xe4\x47\x2e\xaf\x96\x42\xed\xda\xf2\x6e\x39\xf3\x2f\x03\x71\x54\x62\x13\x0e\x38\x72\x23\x6e\x4a\x72\x5b\x96\xdc\xba\x21\x77\x9e\x33\xd3\x9c\xa9\xed\xb0\x4c\x7b\x92\xba\x0b\x3f\xeb\xf2\xb0\xbc\x20\x95\xba\xc8\xf2\x56\x2a\x8c\x1a\x77\x1a\x95\xc3\xe4\xd1\xa7\xb0\x86\x78\x82\xc4\xc1\xa1\x8e\x30\x2e\xed\x61\xc9\x59\xbb\x87\x94\x58\x14\xac\xb9\xca\x22\x8d\xc3\x69\xc3\x5d\x6b\xc8\x0a\x92\x24\x87\xdf\xf8\x00\x78\x9d\x03\x21\x76\xb5\xa3\xa7\xdb\x14\x3f\x4d\x8f\x39\x74\x48\xa8\x8a\xaa\x49\xac\x19\x35\x65\x57\x54\xd5\x3a\x53\x98\xe3\x26\x1e\x54\x0a\x17\xd9\x4d\x09\xc2\xb3\xa4\x6d\x10\xad\x3e\x2b\x3d\x7d\x29\x9a\x22\xe7\x86\xdd\x39\x9d\x52\xcd\xb4\xaf\xb8\x8b\xba\x1b\x76\xc3\xa5\x0f\x9a\x63\x1a\xc9\xfb\xdd\x72\xa9\xa7\x86\x84\x4d\xb9\x74\x74\xf4\xc4\xfe\xe2\xd2\x07\xc8\x35\x87\x1c\x57\x57\xba\xae\x36\x60\x3b\xf4\xdd\xb9\x8d\x0d\x73\xe3\xec\xf4\x64\xee\xd8\x3d\xaf\xe6\x04\xd2\x46\x85\x38\x0c\x91\xd6\x91\x2a\x83\xaf\xb6\x36\x14\x1e\xc5\xd6\x1b\xd0\x93\x6c\xc4\xba\x04\x1b\xe6\xc8\x94\x46\x55\xdb\xc8\xa0\xbb\xf9\x02\x9d\xb2\x5b\x6e\x43\x72\xae\x52\xba\x0a\x4c\xd8\x88\xa2\x6f\x70\x61\x49\x78\x5b\xf9\x12\xd0\x5e\xad\x1f\xb5\x42\x38\xb5\x47\x50\xac\x12\xb8\x35\x36\x7d\x8b\xe9\x53\x64\x2d\xb5\x2c\x7a\xf1\x0f\x73\xc7\x42\x6f\x00\x39\x27\x67\x55\x75\xd5\x91\x12\xa4\x01\x11\x2b\x38\x84\x86\x08\xc9\x9c\x06\x55\x4e\x78\xeb\x19\x69\x70\x95\x58\x99\xda\x4c\xf3\x57\x19\xb7\xe7\xce\x97\xad\xe7\x57\xc7\x7d\x43\x09\x24\x0a\x23\x46\x57\x42\xdb\x35\xe5\x21\x79\x31\x3f\x8d\x06\x96\x39\x99\x89\xd8\x9e\x6d\xda\x36\x97\x60\x3b\x10\xfb\x64\xfc\x0f\xe9\x95\x29\x3d\x5d\xa8\xca\x4a\xb9\xf4\x0e\x42\x03\x00\x00\x7b\x94\x28\x9d\x96\x22\xe3\x28\xc5\x42\xb2\xbf\x98\x3a\x05\x9b\x22\xb8\xf0\x04\x89\xec\x14\x30\xd6\xb1\x77\x0a\xdf\x69\x04\xd9\x0b\x67\xb5\x13\xce\xe0\xb2\x53\x00\x2c\x9c\x41\x27\x58\x72\x84\xfb\x00\x00\x5c\x83\x25\x2d\x80\xcd\x2d\x05\x9b\x4a\x5e\xdb\x88\x94\x9b\x69\x04\xf8\x33\xe8\xf9\x0b\xdc\xf3\x32\xdc\xf1\x9a\xd8\xf3\x44\x36\x86\xc4\x02\x91\x5d\xf6\x38\xdc\xed\x89\xac\xe3\xf7\xb6\xb5\xc6\x6e\xad\x79\x20\xab\x9a\x20\x71\x0b\xdc\x60\x98\xd7\x74\xc7\x9d\x2c\x75\xac\x1a\x72\xad\xda\x7b\xf3\x6e\xf2\xa6\xf6\xfa\x1a\xca\x63\x2b\x4c\x6f\x3f\x89\xd3\x78\xef\x26\x08\x32\x01\x8d\x3f\x41\xe0\xd9\x6a\x02\x2f\xff\x3a\x47\xfe\x8a\xce\x26\x53\x18\x7e\x48\xb3\xbf\x01\xfe\x76\x3f\x40\x9c\xf9\x50\xeb\x95\x55\x98\xa5\xcf\x17\x99\xbd\x5f\x7d\x1f\xa4\xfb\xb8\x5e\xf1\xfb\x05\x5e\xff\x32\x5b\xbe\x02\x98\x1f\xd6\x10\x4d\x02\xe2\x39\x18\x3f\xac\x27\xa5\xd7\xfe\x72\xbb\x20\x7e\x72\x1b\xf3\x09\xdc\x37\xae\xbb\xf6\xfa\x3c\x2b\xeb\xf7\xe7\xea\xa7\x24\x73\x9b\xd8\x7b\x3f\x3e\xb8\x5d\xd8\x73\xfb\x81\xa2\xdb\xb0\x87\x69\xef\x6e\x4f\xe2\xd0\xfe\xeb\xf5\x7f\xb7\x2b\x83\x6e\xbf\xc5\xf5\xef\xd0\xe4\x9f\x3f\xbf\xfb\x09\xfa\xf7\xc9\x6c\x31\xf9\x77\xe8\xe1\xd1\xdb\x4f\x97\x39\xdd\x40\xbf\x9b\x3c\xc0\x7e\x37\xf9\xed\xb7\xce\xb3\x73\xcb\x89\x7e\x2b\xbd\xa2\x09\x4b\xef\xb7\xdf\x7e\x9e\xfc\xd7\x4f\x3f\xfd\xe5\xd3\xdd\xd5\x7f\xf9\xf5\xa7\x9f\x1e\xae\x71\x1a\xef\x56\xfa\x78\xf9\xda\x47\x28\x7f\xf9\xed\x37\xaf\xe2\x6f\xb0\xff\xf2\x6e\xf2\x5f\x93\xd6\x8a\x1b\xef\xaf\x93\xba\x6c\xbc\xdb\xef\x2a\xb5\x56\x39\xe2\xfd\xdb\x6c\xf2\xe1\xde\x9a\x6f\x67\xf0\xc3\xb0\xfe\xeb\xc3\xd0\x87\x61\x9d\x67\xd7\xf5\xe5\xe5\x71\xc8\xa7\x71\x55\xe6\x44\x5e\xfd\xf2\xd0\xd9\xc3\x50\x2f\xf6\x92\xc9\x87\x89\x9b\x39\xcd\xed\x2a\x73\xdf\xab\xc9\xf1\x56\x73\xec\xc2\xb8\x6f\xff\xf2\x78\x57\xff\x5f\x7e\xfe\xf5\xa7\xf0\x34\x79\x7b\x1b\xff\x6f\x1f\xc6\x9b\x73\x3f\xbf\xac\xea\x3a\xf0\xd3\xcd\x54\x7e\x76\x45\xf4\x76\xb7\xc2\x87\x0f\x93\xbf\xdc\xc8\xf0\x97\x4f\xb7\x53\x4d\x26\xe3\xab\x4f\x3f\x67\xf6\xdb\xec\x3d\x7d\xfd\xfb\xb6\xc0\xe3\x75\x53\xb7\xff\x7b\x71\xe5\xdd\x9f\xf8\x40\xb5\xf7\xc7\xfb\x13\x47\xfa\xd7\x79\x45\xa6\x96\x1d\x7b\xee\xe4\xc3\xa4\x0b\x53\x37\xeb\xde\xc7\x99\x63\x5d\x25\x63\xbc\x08\xcc\xc9\xe2\x07\x24\xeb\xbc\xfa\xeb\x5f\x7e\xfd\x38\xb9\x29\xe3\xc9\x87\xc9\xdb\x2f\x60\xfc\xe7\xe4\x4d\x57\x55\x7f\x85\xa0\x37\x93\xbf\x5e\x3f\x5e\x3f\xfd\x3c\x99\x3e\x83\x1c\x64\x55\x7d\xe7\x71\x6e\xd5\xc1\xed\xba\xaf\xe9\x75\xf2\x9b\x4f\x6b\x59\xa5\x5f\xdd\x41\xb0\xf2\xac\xd2\x09\x3e\x0d\x3b\x59\x4e\x9d\x95\x97\x07\x02\x7c\xc6\xe7\xf7\x78\x96\xa6\xe3\x2f\x4a\x52\xe3\x98\xb7\x4d\x19\xbf\xfb\x28\x32\x1f\xb7\x5a\xfd\xfc\x09\x5a\x57\x7f\x02\x34\x8e\xd2\x3d\x5b\x51\x8c\xb7\x37\x6d\x7b\x5c\xec\xdd\x0d\xb9\x77\x93\x91\xa7\x56\x53\x07\xbf\xd5\x59\xe4\xa5\x9f\x01\x72\xe2\xac\xf2\xca\x9b\xb4\x75\xf5\xfb\x2c\xf7\xd2\xc7\x3b\xc6\x1e\x36\x64\xb9\x2e\xd9\x7a\x69\xbd\x0b\xab\xda\x4b\xbd\xf2\xed\x5f\x9a\x34\xce\x2c\xf7\x2f\xef\x3e\xdd\x06\xfe\xf6\x73\xf9\x78\x84\xf8\xe9\xae\xb2\x91\xf5\xef\x6f\x2f\x1e\x9f\x5e\xd5\xec\x9f\x3f\xfd\xfa\xcc\x0c\x2c\xff\x64\x66\x00\xcf\x92\x3c\xab\x6e\x37\x6b\xd3\xe3\x65\xde\x1f\x3e\x21\xf6\x69\xe3\x1f\x9f\x3c\x1b\xff\xf6\x6a\x72\xad\xd2\xb3\xde\x4d\x9c\x4f\xef\xb4\xd0\xeb\xde\x4d\x1e\x55\xf4\x0b\xf5\x0a\xc2\xea\xfd\xe3\x9c\xc9\x87\xc9\xe3\xc7\x5f\xbf\x1c\xf1\x04\xd6\xe4\xc3\x53\xe8\xbf\x3e\x85\x38\x2e\x75\x83\x38\x7e\x7c\x32\x22\xac\x1e\x70\x4f\xfd\xc9\x87\xc9\xc9\x8a\x2b\xef\xd9\x08\x79\xbc\xa8\xff\xb3\x4d\xbe\x30\xf4\x33\x64\x0e\x9f\x46\xfe\xd7\xa4\xaa\xad\xb2\xfe\xeb\xcd\x04\xbd\x9b\x78\xa9\x3b\x7e\x9c\xfc\xf3\x73\xed\x7f\x46\xc2\xcf\xaf\x86\xfd\xf4\xee\x06\xea\xb3\x9b\xff\xbe\x94\xc2\x3b\x5b\xba\xf2\xf5\xdb\x68\xbe\x7f\x84\xfb\x05\x23\xde\xdf\x64\xe3\x7d\xec\xa5\x7e\x1d\x7c\x9d\x15\xb7\x39\x78\x96\xd6\x5e\x7a\x05\xf3\xe6\xcd\x37\x86\x3b\xb1\x55\x55\x57\xed\x1a\x7d\xb6\xe5\xd4\x61\xeb\xbd\x79\x54\x93\x5f\xbf\x87\x24\xe3\xe5\xd3\x5f\xd0\xc4\x6b\x3f\xa7\xca\x55\xa2\x7f\xbb\xdd\xd6\x38\xee\xef\xbb\x76\xe2\xb5\xef\x5d\xab\x7e\x2a\x88\xe3\x9a\x9f\x21\xf8\xe0\x84\xaa\xcf\xf5\xbf\xf2\x6a\x25\x4c\xbc\xac\xa9\xef\xe8\xce\xe3\x9f\xdf\x5e\x64\x89\x97\x5e\x5d\xc0\x6f\xaf\xe1\xc8\x3f\xdf\x4d\xe0\x1f\xa2\xdd\xb8\xc6\x57\x84\xe9\x74\xd5\x99\x70\xf8\x7c\xab\x6f\xaf\x22\xf5\xfa\xd5\x22\xef\xe2\x66\x5d\xfa\x15\xfe\x7c\xbc\xb2\xf2\x73\xc9\xfd\xef\xff\x7e\x59\xfd\x9e\xd2\xf0\xe6\xe8\xdb\xeb\x4a\x78\xe6\x7a\xb7\x3b\x2f\x11\x64\xf3\x74\xd4\xe4\xd3\xd5\xb2\x4f\x94\xf7\x93\x16\x3e\xfe\xb9\x39\xf1\x3b\x60\x67\xcb\x2b\x62\x4f\x1f\xae\xee\x3d\x5c\xff\xee\xf5\x9f\x4f\x7f\x91\x25\x37\x80\x3f\xbf\x04\xf1\x9f\x3f\x7d\x1f\xa5\x6e\xcb\x04\x56\xea\xc6\x1e\x48\x2f\xca\x83\xec\xe1\xe3\x45\x60\x6f\x9f\x2c\x73\x7f\x4b\x9f\x96\x7c\xbc\xf1\xf7\xa3\x1d\x7a\x85\xcc\xdc\xd9\xe2\x17\xf2\xd3\x59\x61\x4d\x65\xe5\xd5\xb9\x65\xbe\xf5\x54\x24\xbe\x53\xdf\x3f\x99\xa2\xd2\x4b\xb2\xd6\x7b\x6a\x8d\x26\xaf\xf7\x15\x4e\xec\x59\xe5\x23\xbd\x1e\x15\xf9\x73\x82\x5d\xe9\xff\x6f\x5f\xc7\x7e\xf2\x7d\x8e\xe7\x71\xc3\xe3\xfd\xf1\xf7\x0d\x78\xd5\xd8\xd5\xed\x3e\xe3\xb7\x5f\xb7\xff\xef\x5e\xf6\x0f\x5e\xea\x3e\xe1\xfb\x17\x0e\xf6\x41\x5a\xca\xb7\x37\x34\x7e\xbe\x27\x07\x77\x44\xfa\x16\x8a\x35\x65\xe9\xa5\x35\xfe\x7c\xcd\x5b\x78\xf6\x5c\x07\x1e\x9c\xe9\x37\x76\xf2\x6c\xda\xcd\xed\x7e\x6d\x7b\x5f\x4e\xf9\xe7\x9d\xcd\xbe\xc0\x90\x2f\x3d\xec\xe4\xb5\x86\xff\x51\x1c\x7e\x7b\xb5\x99\x7b\xfc\xf3\xf2\x8c\xfb\xe2\x71\x4f\x4c\xda\x2c\x74\x27\xf0\xfd\x71\x9f\x63\xf5\x51\xe2\x5f\x42\xe6\x36\xe1\x01\xe8\x5d\x5f\xf5\x49\xf8\xbe\xc6\xea\x47\x01\xfc\xea\x98\xe7\x42\xf8\x91\x5d\x77\x9f\xbe\x60\x45\xff\x70\xb4\xbf\x0b\xa9\xdf\x5e\xa7\x38\xf7\x81\x7c\xe6\xe8\x3f\xbd\x7c\x85\x41\x7d\xc9\x98\xbf\xe8\xfc\x5f\xb6\xa1\xd7\x37\x59\xec\x6a\x57\x2a\xdd\xb7\x37\xdf\x19\x01\xdd\x6c\xe2\xab\xe4\xed\x76\xf9\xb4\xd7\x3d\x2e\x7d\x8f\x6f\xcf\x09\x78\x9d\xe4\x86\xa7\xd3\x98\x3a\xde\xe6\xbe\x2f\xbd\x3c\xb6\x1c\xef\xed\xe3\x3e\xde\x4d\xde\xbc\xb9\x43\xfb\x2b\x66\xd7\xa9\x0f\xf1\xd6\xe4\x6f\x13\xf8\xeb\x3a\xf9\x8c\xab\xd7\xd9\xdf\x66\xea\x0f\xc6\x71\x2f\x06\xa1\x5f\x70\xd5\xcd\xd2\x5a\xf2\x9c\xa6\xac\xbc\xd7\x31\xf8\xc6\x8f\x6f\xb1\x63\xf4\xea\xf7\xec\xfc\x83\x51\xaf\xb2\xf2\x93\x74\x3c\x50\xc5\x1b\xf1\x7b\x5f\x34\x5e\x79\x91\xbd\xd8\xbb\xe6\xeb\x6f\xdf\x7c\x1c\xf0\xcb\x38\xef\xcd\x13\x87\x39\x3e\x7d\x8a\xc1\xc7\x3a\x94\x94\x75\xd5\xab\x97\xba\xcd\xf8\xa5\xcc\xba\xea\x29\xc3\x3f\xe1\xad\x64\xf9\xe4\xc3\x27\xd8\xef\xb3\xd3\xe9\x2a\xc8\x59\x3e\x99\x3e\x8c\xf8\xf4\xe8\x8e\x9b\x78\x1a\x5f\x54\xf5\x25\xbe\x86\xec\xa7\xab\xad\xf9\x62\xfe\xee\xfa\x6c\x3a\x79\x93\xf7\x6f\x5e\x0d\xa7\xbe\x21\xf7\x09\xd1\xef\x9c\x1e\x78\xa1\x1f\x3c\x43\x84\x1e\x9f\x7e\x27\xac\x38\x4c\x3d\xfa\x7b\xe1\xdd\xc8\xfc\x25\x38\x2c\x6b\x52\xf7\x23\x0b\x9f\xae\xe5\x7b\xf5\x6d\xc0\xd5\xd3\xc5\xa1\x77\x13\xe6\xfa\x69\x10\xfa\xa5\x25\xf8\x51\x8a\x3f\x01\xf0\x6a\x52\x3f\x99\xd7\x85\x6e\x1d\x3c\xaf\x4d\x8c\xdb\x7c\x78\xfb\x5a\x58\x9f\xf8\x75\x17\x58\xf0\x0d\xc6\x3d\x25\xc9\x17\x1c\xfb\x1e\x88\x5f\xa6\x10\xff\xf6\x82\x51\x99\x7c\xc5\xe6\x3f\x26\x02\xbf\x7d\x23\x81\x1e\xb3\xcb\xaf\x7a\xba\x57\xa4\xb8\xf7\x02\xf1\xaf\x67\xba\xf7\xa5\xe7\x59\x21\xe3\xae\x8c\x3c\x8e\xfa\x02\xbf\x87\xfd\x3e\x43\xf3\xd7\x9f\xfe\xf9\xf6\xe7\x9f\x7f\xfd\xe9\xa1\x22\xf7\xfe\x5e\xb1\xed\xce\xa4\x9f\x20\xe8\xff\x37\x19\xfb\x1c\xbc\x95\xe7\x61\xea\xab\xd2\xee\xc3\x73\x22\x9c\xab\xf7\x89\x95\x3f\x2b\x31\xae\xfe\x64\x25\x46\xb2\x72\xac\xdc\x93\xbd\xa2\xf1\x52\xc7\xab\x5e\xac\xfc\x3f\xf6\x08\xf0\xc0\x2a\x2b\xaf\x7e\x79\xe0\x63\xd3\x81\xb9\x06\x52\xf4\xe8\x7f\xbf\x51\xb6\xfc\x7c\xe8\xdb\xdf\x5e\xac\x4b\xfe\xf6\x59\x19\xf1\xb7\x2f\xeb\x88\xa3\x58\x7e\x0e\xe7\x33\x21\xb4\x5c\xf7\x8a\xf5\x17\x62\xe7\x04\x56\xf9\x6e\xe2\x64\xae\xf7\xb4\x02\x72\x7d\x33\xf9\xdb\x87\xc9\x9b\xc9\x9b\x7b\xae\xce\x09\x7e\x7b\xb4\x2b\x9d\x73\xfb\xf4\xf6\x06\xe5\xd7\x67\xb1\xd4\x97\x38\xbf\x77\x46\xc2\x4d\xfe\xcf\xff\x99\xdc\x7f\xf3\xf7\xeb\xdf\xff\xb8\x17\xd8\x38\x23\xf6\x5f\x9b\xf6\xb5\x22\xc6\x15\xed\x32\xeb\x9e\x43\xb8\x4c\xa6\xcf\x1e\xd9\xd6\xd3\xb4\xe5\x66\x68\x3e\x6e\xfb\x39\xfa\xfd\x4b\x19\xd5\x93\x71\x57\xa3\x57\x5d\xdd\xc8\xdb\x32\xeb\x7e\xfe\xfb\x53\x28\x93\x5f\x26\xb3\xbb\xbb\x9f\x7c\x11\x0b\x7d\x1f\xbc\xbf\x23\x2f\x82\xfc\x61\x2c\x91\x7f\xfc\xfc\x22\xc0\xc9\x33\x59\x7d\x15\xc0\xbf\xcf\xfe\x31\x99\x7e\xb8\xf1\xf9\x0f\xcc\xab\x7e\x84\x5e\x3f\x86\xc8\x13\x58\xa3\x53\x91\xae\x99\xcd\x53\xf2\x5e\xbe\x19\x85\x4f\xee\x44\xb5\xcf\x47\xdd\xe1\x5c\x7f\x0d\x0b\x1f\xc5\xf4\x97\xc9\xec\xaa\xc4\x4f\x55\x26\x8b\xab\x57\x4a\x6b\x57\x5a\xb9\x55\x5e\x7d\x31\xff\xc4\x48\x7c\x65\xe3\xfd\xe4\xc3\x4b\xc9\xfc\x53\x3a\x4c\xa7\x2f\x27\xfd\xcf\xd4\xf4\x6f\x4f\xa7\x57\x4e\x99\xc5\x31\x96\xd5\x75\x96\x7c\x4d\xc0\x9f\x42\xfa\xe5\x97\xfb\xab\xde\x19\x3b\x2e\xf1\x79\x91\xf9\xe9\x9f\x3f\x56\x28\x9f\x09\xca\xfb\xb0\xd2\x4b\x2b\xcf\x6f\x1d\xd8\xe7\xc5\x9d\x97\xb1\x78\xfe\xe4\x2b\x38\x8d\x26\xff\xd1\xa6\x7f\xf8\x30\x41\x5e\xd6\xee\x7b\x62\xf9\x7c\xc1\x2f\xff\xf5\x3b\x0d\xef\x93\x51\x61\x5a\x79\x65\xfd\x92\x44\x9e\xb2\x72\xf2\xf6\x6a\xed\x93\xac\xbd\xd5\x14\xe0\x5f\x1f\x3e\xfe\xc7\x47\xcd\xf8\x75\x32\x9d\xde\x9e\xbd\x24\x36\x37\x6f\x71\x2b\xc0\xba\xcf\x11\x7f\x99\x5d\x2f\xec\xe8\xe7\xf7\x79\x96\x3f\xcd\x12\x3e\xdf\xe0\xc3\x52\x7f\x47\xfe\x71\xa3\x3e\xfc\x22\xf1\x9f\x3b\x9e\xaf\x1b\xb4\xab\xae\xdf\x8c\xeb\x1f\x0f\xf1\x11\x59\xe4\x3b\x54\xef\x95\xa0\x27\x1f\x26\xcf\xde\x35\x25\xa8\xeb\xf2\xdd\x35\x22\x79\x37\x99\xfd\xe3\x77\x18\xe6\x2f\x91\x78\x5f\xe5\x71\xe8\x3c\x33\xd1\xfd\xbb\x09\xfc\xee\x9b\x58\x7c\x47\x35\xe5\xbb\xa9\xd1\x7f\x95\x0c\x0f\xa1\xdb\x83\x3c\xff\xe3\x4e\xb6\xf5\x19\xa4\xa7\x66\xf6\xc7\x3d\xd5\x1d\x43\xf1\x52\x67\xe8\x8f\xd9\xe7\x9b\x37\xef\x26\xf0\x1d\x6e\x7f\x6b\x8b\x4f\xfb\x4d\x0f\xc9\xd0\x0b\xc1\xb1\xed\xc5\xf1\x0f\x54\x1f\xef\x05\x64\x6d\x58\x35\x56\x8c\x79\x71\xfc\xfa\x2a\xd5\x13\x10\x8f\xe5\xa2\x31\xa9\xb3\xb3\xd2\xf5\x4a\x3c\x8b\x6f\x35\xac\x37\x5d\x10\xd6\xde\x9b\x6f\x57\x35\xbf\xcc\x70\x5f\x09\xfc\xcd\x2d\xd5\x9d\xc1\x4f\x6a\x5e\x4f\x40\xe4\x59\x2e\xa4\xf7\x76\xf8\x64\xdc\x29\x73\x9a\x2f\x3a\x74\xaf\x61\xc5\x55\x58\x28\xcf\x7b\xb9\x13\x7c\x2f\xab\xc8\x6e\xb7\xae\x92\xd9\xb7\x30\x7a\x12\x9a\xbc\xc8\x81\x2f\x02\x93\xdf\x1f\x8c\x7c\x2b\x00\xb9\x1f\x74\xdc\x6d\x5c\xdd\x0d\xf9\x5e\x17\xe3\x3d\x9d\xf6\x39\x16\xaf\xe1\x8c\x63\x95\x65\x68\xf9\x9e\x34\x0a\xd6\x57\xeb\x17\x77\x49\xfe\x0d\x1d\xb4\x9c\xa8\xca\x2d\xc7\xfb\x1e\xce\xf7\xf7\xca\xe0\xbf\x77\xa3\xb5\x65\x7f\xcf\xee\x9e\x3c\x4a\xbd\xbe\x96\xeb\x4f\xfe\xfe\xeb\x6b\x55\x41\x78\xaa\x85\xe6\x1b\xa7\x68\x3e\x93\x0d\xaf\xf6\x77\x5e\xeb\xc5\x6f\x67\xaf\x87\xcf\xbc\x9a\x5b\x9f\xc0\xc3\xaf\x02\x3f\x86\x62\xb7\x72\xc8\x17\x4b\xe4\x56\x69\x25\xd5\x53\x2b\x7a\x7b\xfa\xee\x1a\x0d\xbe\x9b\x9c\xaf\xde\xeb\x13\x5f\x6e\xaf\x26\x1f\xc6\xbf\xab\xbf\x7f\x6e\xf2\xaf\x6c\x1f\x5f\xff\xc7\x64\xf6\x65\x5c\xfa\x38\x6b\xf6\x69\xf4\x0f\x86\x9a\xe7\xe7\x93\xfa\x4f\x6f\x9d\xe0\x8e\x8f\xf2\x4a\xab\xf2\xae\x5e\xea\xed\xcf\x77\xc2\x92\x2e\x08\x63\xef\x01\xf1\x5f\x7e\xb9\x86\x59\xe7\xc9\x7f\xfc\x80\x9a\xde\x8f\x56\xce\xd3\xe9\x2d\x40\x71\x82\x7b\xb5\xe7\x17\x67\x3f\x09\x43\x5f\xa5\xf5\xb7\x8a\xb3\x9a\xbf\x96\xbd\xaf\xe1\xe1\x93\x1d\xdf\xe1\xe2\xcb\x96\x79\xf2\xcb\xc3\x02\xdf\x30\xd0\xff\xf1\x4d\xbb\x70\xb9\xe7\x0c\x5e\x43\x0c\xe2\xe9\x09\xa2\x7f\x25\x39\xa6\xaf\x23\xc7\x73\x17\x51\x66\xdd\xb7\x64\xef\xf2\x5c\x29\xae\xb3\x26\xbf\xdc\xc7\xed\x5f\xe9\x9b\x6e\x8c\xa1\xb2\xb2\xb3\x4a\xf7\x4f\xc2\x9b\xfe\x75\xbc\xf9\x51\x12\xdd\xa9\x85\x8e\xf9\xd3\x33\xdc\x5e\x43\x3a\xcc\x72\xa2\x7f\x25\xed\xfe\x47\x65\xe7\x2e\xf9\x5e\x65\x47\xfa\x57\xd8\x91\xbb\x41\xe5\x6b\x68\xbe\xf7\xfa\x7a\x17\xa6\xde\x9f\x44\x5e\xff\x54\xb6\xe4\x9b\x51\xe4\x2b\xe8\x7b\x28\x3d\xc7\x73\xc3\xd4\xff\x53\x11\xf9\x7f\xd6\x7f\xfd\x51\xb4\xbb\x86\x74\xc0\xae\xb2\xb8\xa9\xff\x2c\xa4\xeb\x1f\xe1\x7f\x92\x99\xd7\x68\xd9\xdd\x86\xeb\xfd\x5d\xdc\x02\x53\x27\x8b\x9f\x46\x93\x1f\x77\xf5\xa5\xb4\x7e\xdc\x59\xf5\xf1\x4c\xce\x9d\x82\xc8\xed\x1b\x32\x8f\x20\x66\xff\x78\x49\xe0\xef\x54\x67\xc7\x99\x77\x59\x7c\x2b\x1a\x66\xdd\x3d\x29\x19\x51\xbe\x3b\xeb\xe3\x41\xe2\xeb\x98\xd7\x69\xf1\xdd\x70\xfa\x5b\x41\xc0\x15\xf1\x3b\x98\x7d\x65\x3f\x1f\x31\xbb\x8e\x79\x9d\xd9\x1f\xa1\xbd\xd2\x05\x4e\xee\x8b\xd3\x17\xbc\xbe\xa3\x5e\x65\xd6\xbd\x5e\xd0\x1e\xa2\x0f\xe5\x49\xf6\xf8\x4a\x85\x99\xfc\xf7\x7f\x7f\x8e\xf6\x97\xe9\xc3\xf7\xc7\x02\x4f\xb3\xd0\xc9\x2b\x3d\xd3\x2d\xa9\x61\x52\x22\xac\xf2\xd8\xba\xbc\x62\x23\xe7\xcf\x4a\x51\x5d\x58\x3b\xc1\xe3\xc0\xbf\xc3\xcf\xba\x8e\x8e\x55\x79\x13\xf8\xaf\x5f\x3c\xbb\xb3\x9d\x1b\x0e\x52\xe8\x07\xcf\x0a\xec\xfd\xbb\x67\x5c\xba\x53\x82\xbd\x93\xcb\x5d\x13\xc0\xd9\xf3\x91\xb7\x5e\xc1\xaf\xf7\x32\xb3\xab\x88\xff\x3a\x39\x4f\xa7\xaf\x6c\x7a\xdd\x70\xbe\xfa\x99\xb7\xe7\x57\x35\xf7\xec\xd2\xb3\xa2\x5f\x9f\x53\x67\xf6\x3a\xea\xec\xbc\xd3\x1f\x48\x9c\xe7\xa3\x1e\xc4\xef\xfc\x5c\xf4\xfe\x87\xf7\x8f\x3c\xdf\xff\x1d\x8c\x6f\xdc\xf9\x1a\xd2\xbf\x1f\xe5\x97\x10\x44\x9f\x23\x78\x55\x83\x87\xf2\x9f\xe5\x44\x72\x38\x78\x2f\xf5\x8c\x1e\xdc\xc4\x2f\xaf\xdb\xcf\xd5\x1e\x3e\x81\xfb\x95\x43\x9f\x77\x17\xac\xcb\x30\x91\x6b\xab\xac\x9f\x00\x7a\xa1\x17\x75\xaf\x46\x32\xf9\x30\xe1\xad\x3a\x78\x9f\x58\xfd\xb3\x28\xe5\xf6\xfe\x97\x27\x9b\xff\xf2\xac\xd4\xd7\xc0\xbb\x61\x95\x7f\x0d\xfc\xed\xfd\xeb\xc0\x7f\x53\xc2\xbe\xc3\xf8\xbd\x22\x5c\xfc\xb3\x98\xba\x7f\x99\x19\xf9\x0e\xfd\x7d\x51\xed\xbe\x7f\x99\xd7\x30\x71\x2c\x49\x5e\x17\xf8\xee\x92\xe4\x0f\x94\x23\xbf\x27\x9e\xfd\xe3\x4a\x93\x8f\x01\xd8\x73\x4b\xf2\x79\x1b\xe2\x75\x20\xee\x2f\x3f\xf9\x65\x72\xfe\xd2\x67\x7e\x3d\x22\x79\xf1\x10\xd1\x83\xc9\xfb\xf0\xe1\x05\x93\x98\x58\xfd\xee\x36\xe4\xd5\x8d\xc4\x4f\x36\x6d\x76\x47\x62\xee\x6d\xe6\xde\x81\x8f\x7b\xb6\xe6\xde\xb8\x32\xeb\xee\x3d\x3e\x3f\x7d\xf8\x8a\x4e\xef\x43\xed\xf6\x26\x6b\xf0\x33\x2d\xb3\x63\x2b\x8d\x46\xbd\x28\x1b\xef\xe7\xd7\xd4\x75\x1f\x8b\xc1\xef\x26\xb3\xbb\xcd\xa2\x1f\xeb\xf3\xbe\x7e\xd6\x17\x3d\xaf\xd7\x04\xca\xae\x17\x7b\xb5\xf7\xff\xe9\xe6\xef\xd7\xcd\xff\x27\xf4\x72\xf2\xcb\x87\x7b\x51\xf9\xfd\x30\xe0\xd9\xd0\xd7\x6b\xdc\xcd\x92\xfd\xb1\x3a\x77\x13\xca\xff\xab\xb4\xee\x47\x9a\x74\x3f\xd4\xa1\xfb\x5f\x50\xbb\xdf\xdd\x8f\xfb\xa1\xa6\xdb\xf3\x40\xe9\xa9\xa0\x7f\xa3\xfb\xd6\x54\xc1\xdb\x2f\x3a\x76\xaf\x89\x67\x46\x76\xff\x58\x03\xee\xf7\x14\x15\xbe\x10\xf7\xbb\xda\xfb\x8c\x4b\x23\xaa\x4a\x96\xbf\x92\x32\x3f\x00\x7c\x14\xfb\xaf\xeb\xf2\xcf\xbf\x53\x2d\x3f\x6e\xe3\x7f\x47\x3d\xc7\x09\x3f\xda\x54\xfc\x97\xb0\xf8\x91\x0b\xff\x53\x5c\xbe\x89\xd0\xff\x43\x2c\xbe\x99\xa6\xff\xcd\x53\x12\xff\x9a\xd0\xe7\xcf\x78\x62\xe2\xef\xe7\xe9\xf4\x1f\x93\x0f\x5f\x90\xf1\xfb\xdb\xa2\x7f\x8e\xa2\x6e\x5e\x7a\xed\x8f\x14\x75\x9d\xc0\x2a\x0f\x59\xf5\xe7\xef\xe7\x4c\xfe\x9c\x2d\x72\xfa\xb1\x87\x24\x79\xb1\x55\x87\xed\x9f\x87\x82\xff\x57\x9c\x30\x28\xbd\xdc\xb3\xea\x8f\xdd\xd8\xab\x1d\xb4\x9c\xda\x2b\x7f\x58\xa3\xde\x4d\xe2\xb1\x44\xf7\xa2\xe6\xbf\xce\xd9\x5c\x7e\x7e\x37\x1a\xaa\xeb\xc4\xfb\xdf\x05\xba\xae\xf7\xf4\x8d\xeb\x9d\x5e\x38\x8b\xfe\x75\x05\xbf\xbb\xca\x8f\x59\xa7\xca\x4b\x5d\xc2\x6b\x43\xe7\x66\x4e\x43\xbb\xa9\xbf\x99\x51\x7f\xea\x56\x5e\xc9\x78\xa7\x90\xfc\xf2\xf9\xe4\x7b\xe7\x9c\xf3\xd2\x3b\x85\xcf\xbe\xf5\x76\xef\xdb\x1a\xd5\xdb\x37\xb7\xaf\xaf\xbf\xf9\xf9\xe3\xef\x28\x7d\xf9\xb6\xec\xdb\xfa\x97\x26\x0d\x9d\xcc\xf5\x5e\x1c\x54\x39\xa5\xe7\xa5\x6f\x7e\x7e\x45\x3a\x7a\x25\xce\xdb\x67\x5f\xe9\x7c\x8f\xc3\xef\x49\x19\x9f\x4c\x27\x6f\xfe\xfe\x9f\xb3\x5f\x11\xe7\xe9\x77\xee\x5f\xf8\xd1\xa5\x3b\xb8\xc4\x61\xda\xf4\x7f\x14\x2a\xcb\xaf\x20\x72\xa7\x41\x7a\x97\x0d\xb7\x34\xfe\xcd\xdf\x9e\x7d\x57\xf3\xeb\xec\xf8\x43\xf0\xff\x1b\xfc\x2b\xb2\x5a\xfe\x0a\xff\x0e\x72\x7e\xc9\xff\x3f\x06\xab\xf5\xe2\xd7\xcd\xe2\x77\x61\xf5\x9d\x4c\xfe\xa4\x5a\xd3\xc9\x9b\xdf\xb1\xec\x1f\x2a\xe7\x7f\x5b\xa3\xbf\xce\x61\x18\x46\xbf\x4a\x89\xd7\x1e\xcb\xff\xf3\x85\x10\x97\x57\x87\x10\xff\xf3\xa7\x96\xbe\x4e\x3f\xed\x4f\x1a\x42\xfc\xa9\x0e\x7d\xfd\x0b\x0f\x90\xd2\xda\x2b\xcf\x09\x7d\xe9\x46\xef\x9f\x48\xbf\xbd\xfa\x70\xff\xa8\xd0\xdf\x67\x2f\xcf\x9a\x3d\x99\xf5\x92\xb4\xdf\x3f\x8a\xf4\x2f\x61\xd9\x4b\x31\xfd\xf3\xa3\x4e\x7f\xc2\xc0\xb4\xb6\x6c\x3c\xf6\xac\x1f\x0a\x44\xef\xea\xe2\x87\xe7\x51\xd5\x58\x7c\x7d\x8a\x6f\x6d\xd9\xd5\xf3\x2f\xc2\xdd\x23\xf0\x47\x5f\xf1\x80\xc1\x87\x0f\x13\xf4\x1b\xf4\xb9\x02\x9f\x7c\x98\xfc\xd7\x3f\xbf\x37\xa6\xbc\x7d\xa7\xf6\xd5\xf2\xff\xe9\x87\xa8\x9e\x59\xa0\x8f\xdf\xc1\x0d\xc7\xef\xdf\x86\x93\xff\x98\x7c\x31\xe9\xd7\x49\x78\xff\x68\xcd\x6d\x2b\x0f\x98\xbc\xfd\xfb\x03\xb5\xc3\x7f\x3c\xfd\xa6\xe5\x3f\xff\xf0\xc8\xf5\x9b\x1d\xfd\xc9\x63\x8b\x7b\xfe\xbc\xc5\x7d\x87\x09\x9f\xbe\xa4\xfc\xd5\x2f\x6e\xdf\xe9\xa3\x7f\x5c\x08\xb9\x73\x7e\xe0\x85\x39\x3f\x1a\x32\xfe\xe7\xb3\x90\xf1\xf5\x74\xb8\x73\xc6\xe0\x0e\x1d\xac\x3c\x8f\xc3\xf1\x07\xb9\xf1\x8f\x3f\xc4\xf5\x63\xe4\x78\xd5\x7a\x95\x57\xfb\x0f\x3f\xcf\xf2\x16\x7e\xf7\xd9\x2f\xb5\xbc\x27\x48\x0a\xa8\x3b\xe5\x37\x9c\x06\x92\x4c\x2a\xaf\x3b\xa3\xf2\x39\xb8\xd9\x1f\x0b\x0e\xf9\x63\xc1\xa1\x3f\x00\xee\x6b\xe4\xbe\x73\xd0\xe9\x1e\x06\x56\xeb\xb9\xf8\xd5\xfa\xde\xb5\xc9\xaf\xda\x45\xe9\x55\xe1\xe0\xbd\x9d\xa1\xc8\xb3\x8a\xef\xcd\x61\x7d\x3f\xee\xcb\x57\xe1\x9e\x95\xa1\xff\xff\x67\xef\xdd\xdf\xda\xc8\x91\x05\xd0\x9f\x37\x7f\x85\xc2\xce\xc6\x76\x30\xc6\x36\x6f\x88\x93\x63\x1b\x33\xe1\x0c\x79\x5c\x60\x5e\x17\x38\x3e\x8d\x5b\xb6\x7b\x62\xba\x3d\xdd\xed\x00\x9b\xb0\x7f\xfb\xfd\xf4\x6c\xbd\xbb\xdb\x90\x99\xb9\x7b\x96\xef\x9b\x09\xa8\xa5\xaa\x52\xa9\x54\x2a\x49\x55\xa5\x20\x7c\xd4\x14\xdd\x29\x84\x48\x4e\xa3\xb1\x34\xb2\x96\x65\x06\x38\x39\x51\x8c\x15\xb3\x68\x52\xad\x9c\xc1\x38\xf0\x66\x60\x1e\xc5\x29\x88\xd1\x86\x22\x49\xa1\x0f\x84\x09\x0c\x3e\xc1\xfb\xb9\xe7\x37\x4c\xe9\x09\x0d\x40\x85\x96\x3f\xe0\x86\xce\x9e\x2b\x8d\x3f\x07\xf0\x16\x3f\x6f\x91\xdc\x87\xa3\x33\x7c\xe0\xde\x8d\xa1\x67\xcb\xa2\xe0\xe2\xc1\x9e\xce\x02\xc2\xcf\x66\xd3\xa0\x61\xd9\x27\x03\xb3\xd9\xa7\x62\x53\xe3\xae\xd5\x7c\x17\x2d\xb0\x03\x9d\x60\x15\x76\x3a\x60\xaf\x18\x03\xd2\x76\xd3\x02\x00\x11\x5e\x08\x46\x18\xc5\x37\xde\x4c\x07\xf2\xba\x38\x88\x1b\xd4\x18\x3f\x3f\x90\x94\x19\x3e\x16\x66\xae\xa4\x56\x87\xf8\x25\x88\x35\x0c\x74\x0d\x62\xa8\x05\x85\x29\xc1\x69\x13\x83\x28\x7c\xe7\x85\xde\x04\xc6\x0d\x3f\x48\x10\x2c\x9b\x40\x98\x04\xbc\x17\xe0\xcc\x7d\x20\x8d\x00\xa6\x00\x10\x0a\xac\xf2\xec\x9c\x8c\xcd\x66\x31\x43\x00\xed\xd2\x8f\xa2\xd1\xc2\xcd\xbe\x1c\x54\x5b\x85\x50\x2d\xd2\x31\x1b\xeb\xa5\x31\x15\xd3\x17\xc9\x24\x7e\x2c\xa6\x56\xc1\x3e\xc5\x77\x9f\xd3\xc7\xe1\x6a\x17\xc3\x44\x6e\x7c\xde\x06\xbe\x0f\x73\x72\x17\xbb\x3b\xb6\x69\xd0\x37\x80\x47\xdd\x68\x0d\x36\x0d\x6b\x08\x83\x64\x59\x5e\x4c\x56\x2d\x99\xea\xae\x5c\x2c\x38\x61\x2d\xae\x65\x4c\x65\x2d\xfe\xe0\x83\xf4\x7d\xe3\xf1\xba\x9e\xcc\x5a\xfc\xc1\x07\xed\x5a\x43\x5c\x9a\xd3\xd0\x0f\x92\xb9\xde\x10\x95\xba\x1b\xde\x69\x8d\xee\x72\x30\xe9\x58\xdc\x0d\xf8\x5d\xb1\xd6\x30\xbb\xac\x2e\x00\x80\x5c\x17\x5b\x60\xd0\x0b\x75\x27\x18\xb4\xad\xd3\x9a\xa3\x42\x6b\xab\x07\xb3\xf8\x02\xa3\x09\x06\xb5\x3c\xa6\x8e\xfa\x25\x57\x67\x03\x04\x2e\x89\xe4\x97\xc2\xed\x92\x69\x74\x4b\x36\x12\x36\x64\xe6\x24\x40\x05\x36\x4d\x79\xb7\x58\x7f\x9d\x0d\x32\xa7\xe5\xdf\x67\x8b\xbc\xa4\xba\xfd\xb7\xdd\x23\x2f\xc9\x0f\x8b\x69\x6a\x4c\x9a\x83\x36\x6d\xc8\x9a\xdc\x68\x1b\xb2\x80\xf1\x8d\x5d\x89\xf4\x5e\x74\x23\x67\x83\x54\x66\x77\x67\x9e\xc4\xe6\xc3\x34\x8e\xe0\x0f\xd9\x28\x2e\x39\x30\x4b\xee\x14\x97\xb5\x42\xbe\xf5\x56\x11\xcf\x00\x64\x4b\x5f\x7b\xa3\x4f\xc8\xa0\xa6\xfa\xfc\xf1\x3b\x44\x47\x8f\xff\x9d\xb7\x88\x25\xba\x2d\x6e\x0c\x8b\x37\x93\xf7\x82\xc5\xdb\xc9\x1b\xc0\xe2\xed\xf4\x1d\x20\x7b\xd1\xe6\x09\x37\x81\x04\xd4\x32\x23\xbe\xd4\xfe\x6d\xe9\x3d\x41\xf9\x0d\xdc\xf2\xa8\x4a\xef\xe0\x96\x46\xb5\xcc\x16\x6e\xd9\x75\x7e\xa9\x3d\xdc\xb2\x7b\xd3\x3f\x66\x0b\x57\x7a\x07\x67\xda\x8f\x19\x42\xbf\x31\x1c\xf2\xb5\xb0\x59\xcd\x42\x3d\xcd\xb0\x0c\x79\x59\x5d\xb0\x68\x5c\xa7\x05\x16\xfa\x5a\x18\x96\x29\xb4\x9d\xc0\xb9\x2b\x4e\x8f\x9d\x96\xe2\xdb\x0e\xb6\xd5\xb3\xc2\xe2\x35\x4a\xc2\x24\x5b\xbf\x1c\xb0\x6a\xd0\x50\x0e\x64\x7a\x03\x68\x86\x88\x3e\x2e\xb1\x4d\x5b\xcc\x4a\x6c\xd2\x54\x3d\x9d\xc0\xb4\xb7\x18\x8f\x61\x6c\x0c\x46\x2a\xbe\x6b\x8c\xe1\x38\x86\xc9\xb4\xaa\xfb\x86\xb3\x4b\xea\x3f\x72\x0f\xfb\xa7\xed\x45\x47\x53\x2f\x5e\xc2\xf1\x4f\x0c\xfa\x6a\x21\x9b\x5f\x3e\x56\xce\x4b\x38\x43\x93\xb2\xea\x82\x45\x1d\x22\x0f\x0a\xee\x38\xd1\xbe\x37\xcb\x89\x42\x89\xaa\x93\xad\x70\x1d\x8c\x67\xde\xc4\x74\x9b\x44\x91\xbf\x7e\x0d\x5a\xbb\x75\x30\x9e\x80\x8e\xbe\xa5\xc9\xea\xec\xd5\xc0\x0b\xd0\xbc\x6b\x8d\xc7\x75\x70\x3d\xb1\x83\xe3\x95\x84\x69\x4b\xb3\x42\xa0\x3d\xf9\xcc\xb8\x0f\x9f\x67\x87\xe9\x81\x92\x9b\x16\x33\x1b\xbc\xee\x80\x8d\x26\x66\x30\x78\xd5\x01\x1b\x3b\xc6\x3c\xd5\x88\xaa\x39\x58\x03\x1b\x4d\xd7\xc6\x3d\xbb\xff\x47\x50\x37\x33\xa8\x9b\x46\xa8\xd7\x0c\xea\x66\x09\xa8\x7b\x19\xd4\x3d\x23\xd4\x39\x58\xed\x80\x5d\x5d\xc4\x79\x1f\xf6\x4a\x60\x6b\x35\x33\x74\xad\x66\x29\x7c\xbc\x77\x2d\xf5\xf6\xc2\x8a\xd0\x28\xd8\x98\x76\xb3\x9c\x51\x59\x26\x72\x66\xe9\xb1\x2a\x77\x42\x9b\x4c\xee\x2c\xd4\x5b\x9a\x1a\x1b\x39\x3b\xa5\x9d\x29\x65\x9d\xfa\x9a\x13\x2b\xa9\x40\xda\x74\x42\x6a\x97\x80\xb4\xe5\x84\xb4\x59\x02\x92\x79\xca\x30\x48\xbb\x25\x20\x19\x9f\x3e\xcd\xf8\xb4\x5d\x02\x54\xdb\x98\xed\x9a\xc0\x7a\xd1\x01\xff\x2a\xc3\xf4\xb6\x83\xeb\x08\x56\x19\xb6\xb7\x1d\x7c\x47\xb0\xca\x30\xbe\xed\xe0\x3c\x82\x55\x86\xf5\x6d\x07\xef\x31\xbf\xca\x30\x7f\xc3\xf8\x86\xee\xb2\xf3\xd1\x3d\x21\x8c\xa8\x9e\x76\xfa\x6e\x18\x79\x23\xf8\x09\x06\x60\x15\xb4\x72\x52\xec\x07\x48\x4f\xb6\xcd\xa6\xc7\xd8\x40\xee\x8d\x97\x8e\xa6\x38\xdb\x37\xc7\x72\x85\x69\xc7\x2b\xa0\x84\xd7\x50\xda\x66\xa5\x8e\x97\x0c\x10\xd6\x4e\x07\xac\xb5\xec\x0f\x48\x60\xc2\x2c\x2a\xd2\xd5\x29\xcb\x8b\x16\x66\x96\x19\x67\x44\x1e\xcb\xa4\x75\x9d\xf6\xd5\xc1\x5c\x83\xa5\xef\xca\xfe\xaf\x0a\xd9\xb7\x16\x00\x93\xbc\x7e\x7b\x01\xb8\xce\x17\x80\xeb\x7f\x03\x01\xb8\x7e\xbc\x00\xb4\x9a\x66\xbb\xe4\x4f\xb6\x30\x72\xc3\x0e\x60\x1c\x47\x71\xb5\xf2\x63\xf8\x29\x8c\x6e\x43\x70\xf6\xfd\x29\xf0\xd8\x5e\x64\x1f\xfc\xc3\x6f\x54\xea\x60\x5e\x20\xa4\xc5\xba\xbb\xa8\x92\x15\xe2\xd5\x2b\xfc\x6e\xf9\x57\xac\x54\x5e\xbd\x42\x1d\xff\x0a\xae\x27\x07\x05\xf6\x47\x3e\x0e\x8d\x3a\x4b\xbd\x74\x51\x64\x77\xf4\xd4\xd7\x5f\xc5\xce\xaa\xf2\xc3\x37\x9a\xe1\x32\x9e\x29\x05\xcf\xff\x72\xb1\x57\xac\x13\x78\xd5\xe0\x6c\xbe\xaa\xfa\xb4\xcb\x0d\x2a\x07\x65\xc0\xdd\xe5\x82\x3b\x2d\xc1\x99\x3f\xe3\xe2\xef\xa9\x06\xe1\xcd\xbf\xcd\x28\x00\x7e\x28\x6a\x99\x1e\xcb\x1c\xff\x3a\xdb\x58\xc6\xc0\xd5\x66\xcb\x72\x6f\xf3\xe8\x13\x9b\x24\x1a\xa7\xa7\x30\x81\x69\x8e\x3a\x2a\xe5\x93\x54\xe2\x3e\xbd\xc4\x8d\x66\x39\xe7\xd5\xf2\x37\x7a\xe5\x8f\xe1\xca\x5f\x97\x3b\x4e\x6f\x9b\x39\xb5\x6c\xe7\xb1\x7a\x14\xcc\xd2\xc7\x63\xf9\x67\xdc\xf7\x4e\x42\xd9\x2b\x9a\xea\xa9\xac\x52\x6d\x32\x83\x9f\xe1\xac\x08\x24\xb4\x48\x5e\x20\x58\x57\x45\x56\xd7\x04\xa6\x84\xef\x67\xe9\xfd\x6c\xa9\x40\x36\xf0\x0a\xb4\xc0\x1b\xd0\x02\xfb\xa6\x80\x1a\x49\xcb\x1a\x13\x2b\x2a\x6e\x15\x05\x33\x0f\x26\x30\xfd\x30\xc7\x4f\xcd\x56\x46\x19\xfd\x95\x3a\xa8\x5c\xcf\xa2\xd1\x27\x93\x2e\x2b\x98\x05\xd4\xe6\xf4\x52\x98\x80\x45\xe8\xc3\x78\x16\x84\xb0\x0c\x11\x5b\x06\x22\x0c\x3a\xaf\x38\x17\xbc\xb8\x00\x7a\xf9\x1c\x37\x48\x7a\xb3\x20\xfc\x14\x84\x13\x1e\x8a\xf9\x0f\xd0\x26\xf6\xad\x7d\xa2\xa9\x24\x60\x18\x95\xba\x00\xad\x58\xe6\x1c\x98\x12\x85\x71\x0a\x27\xc5\x22\xf7\xcc\x86\x9e\xd4\x65\xf5\xdc\xda\xa1\x4a\xaa\x72\x5a\x82\x9a\x53\x3d\x28\xda\x45\x08\x07\xcc\x0e\xe2\x5b\x57\xe0\x95\x59\xf1\xbc\x11\xaa\x68\x4e\x80\x24\xac\xcf\x85\xfc\xce\xa9\x05\xee\x8b\xbe\xd1\x94\x78\x9f\x61\xa6\x72\x8b\x2f\x63\xd8\x43\xe7\x17\x67\xc2\x18\x53\x8b\x5f\xad\xb9\x8a\x73\x5d\xf5\xd2\x28\x5e\x8a\x52\x83\x2e\xa6\xc4\x7f\xfd\x9a\xc3\x41\x73\x0f\xb2\x66\x94\x66\xfa\x2e\x9b\x48\xba\xfa\x08\xb7\xf2\x6a\xb4\x5c\x15\xcd\x3a\xfa\xe8\xb2\xfc\xa2\x74\x34\x4f\x79\xcf\xf0\x23\xd5\x1f\xde\xf5\x8e\xdf\x1f\xbf\xff\x1e\x29\x77\x4e\xf8\x45\xf3\xae\xb9\xd1\x6c\xd6\x01\xfa\x77\xfb\xe8\xaa\x8e\x4b\x36\x77\x37\x70\xc9\xe6\xee\x36\x2f\xd9\xa5\x25\x7b\x57\x75\xa9\xf5\xd6\x5e\x0b\x7f\xd9\xea\x1d\xd2\xba\x5b\xbd\x23\x5a\xc2\xe0\x6d\xf5\x69\x9d\x7e\x5b\x6d\xdd\xdf\xa4\x5f\xb6\x78\xdd\x1d\x5a\xb2\x43\x4b\xb6\x29\x7d\xdb\xcd\x0d\xa5\xf5\x76\x8b\x7e\x69\xb1\xd6\xdb\x9b\x3d\x52\xb2\x35\x60\x25\x3b\xb4\xce\x4e\x53\x6d\x7d\xb8\x4d\xbe\x0c\x36\x59\xdd\xc1\x0e\x2d\xd9\xe5\x25\x5d\x5a\x72\xa8\xb4\xde\x69\x92\x5e\xee\x34\x59\x2f\x77\x5a\xa4\x97\x3b\xad\x16\x2b\xd9\x20\xb8\x77\x36\xbb\x6a\xeb\x2e\xc1\xbd\xd3\x6b\xb2\xba\x03\x42\xf9\xce\xd1\x06\x2d\xd9\x6b\x12\x78\x7b\x4d\x95\x6b\x7b\x1b\x7d\xf2\x65\xa3\xcf\xea\x6e\xd2\xba\x9b\xbb\xbc\xe4\x90\x96\xa8\x94\xef\x6d\xd1\xba\x5b\xac\xdf\x7b\xdb\x6d\x52\xb2\xcd\x71\xef\xd2\x3a\xbb\x2d\xb5\x75\x8f\xe2\xee\x71\xdc\x74\x74\xf7\xfa\x1c\x5e\x9f\xe2\xee\x6b\xb8\x07\x14\xd3\x80\x61\xea\xd2\x5e\x76\x51\x2f\x49\x09\xed\x5d\x17\xf5\x4e\x6a\xdd\xa5\xbd\xec\x6e\xf2\xba\x9b\x3b\xb4\x64\x97\x97\xf4\x68\x89\x8a\xbb\x4b\x25\xa1\xbb\xc3\xc6\xa7\x4b\x7b\xd9\xdd\xe5\xf0\x68\xef\xba\x3d\x0d\x37\xed\x65\x97\x4b\x6a\x97\x4a\x6a\xb7\xcf\x71\xd3\x7e\x77\xb5\x7e\x77\x69\xbf\xbb\xbc\xdf\x3d\xda\xef\x5e\x93\x51\xd3\xa3\xfd\xee\x69\xfd\xee\x6d\x1c\xd1\x2f\x4c\xd6\x7a\x94\x13\xbd\x4d\x0e\x8f\x8e\x77\x4f\xeb\x77\x6f\x8b\xc8\x5a\x6f\x8b\xcd\xe6\xde\x2e\xa1\xa6\xc7\xfb\xdd\xeb\x13\xde\xf4\xfa\xea\x2c\xe9\xd1\x3e\xf5\xfa\x6c\x7e\xf7\x37\x06\xb8\xa4\xbf\xc9\x64\xb7\xbf\xb9\x4d\x4b\x76\x95\xd6\xfd\xcd\x2e\xfd\xc2\x5b\x6f\x6d\x91\x12\x4e\x4d\x9f\xf2\xbc\xaf\xf1\xbc\x4f\x35\x49\x9f\x6b\x92\x7e\x9f\x62\xea\xf3\xd6\x7d\xda\x5a\xe3\x79\x9f\xf2\xbc\xcf\x79\x7e\x48\xb9\x76\xb8\x99\x95\x1c\xd2\x12\xb5\xf5\x61\x9f\x50\x7e\xd8\xef\xb2\xba\x87\x04\xde\xe1\xe1\x26\x2f\xd9\xa6\x25\xdb\x4a\xeb\xc1\x06\xc1\x34\xd8\x60\xa3\x3b\xd8\xd8\xa4\x25\x0c\xde\x80\xca\xee\x60\x73\xa0\xb6\xee\xd1\xd6\x3d\xde\xba\x47\x5b\xf7\xf6\x78\x49\x8f\x96\xa8\x5c\x1b\xf4\x89\xae\x1e\xf0\x11\x3b\x6a\x91\x92\xa3\x16\x6b\x7d\xb4\x41\x46\xe1\x68\x63\x4b\x69\x7d\xb4\xb1\x43\xbf\xec\xf0\xba\x7b\xb4\x84\xb7\xde\x21\xf4\x1d\xed\xa8\x94\x1f\xed\x12\x39\x3a\xda\x65\x3c\x3a\xda\xdd\xa6\x25\x1c\xde\x1e\xad\xb3\xb7\xa3\xb6\xde\xa3\x98\xb8\x6e\x39\xa2\xe3\x7d\xc4\xc6\xbb\xd5\x6c\xe3\x11\x6b\x35\x37\x14\x49\x6d\x35\x37\xda\xf4\x4b\x9b\xd5\xdd\xd8\xa6\x25\x3b\xbc\x64\x8f\x96\xec\xa9\xad\xb7\x76\xc9\x97\x2d\xda\xcb\x56\x6b\x1b\xd3\xd9\x6a\x1d\x51\xe9\x6b\x6d\x6c\x61\x79\x44\xff\x2a\xad\x77\x5a\x04\xf7\x4e\x8b\xf6\xbb\xb5\x43\xa9\xd9\xd9\xe0\x25\x5b\xb4\x64\x6b\x43\x6d\xbd\x43\xbf\xec\x6c\xb0\xba\x64\xbc\x5b\x3b\xbd\x2d\x5e\xb2\x43\x4b\x0e\xd5\xd6\x84\x47\xe8\x5f\x56\xb7\x4f\x7a\xb9\x73\xc8\xe1\x1d\x1e\xd2\x12\xb5\xf5\x6e\x13\xcb\x51\x6b\xb7\x49\xa5\xa5\xb5\xdb\x25\xad\x77\xbb\x8c\x13\x7b\x6d\xc2\x89\xbd\xb6\xb2\x12\xb5\xf6\xda\x3b\xf4\xcb\x2e\xab\x4b\xfb\xbd\xc7\x47\x61\x8f\xf2\x7c\x6f\xa3\xa7\xb4\xee\xb6\x48\xeb\x6e\x8b\xb5\xee\x91\xb5\xbe\xd5\x6b\x32\xca\x7b\x64\xde\xa0\x7f\x95\xd6\x3d\x3a\xba\x3d\x36\xa3\x5a\x54\x83\xb6\x7a\x6c\x5d\x6c\xf5\x36\x09\x35\xbd\x4d\x95\xf2\xde\x36\xe9\x77\x8f\xf3\xfc\x90\xe8\xc0\x16\x9f\xf1\xad\xc3\xa3\x01\x29\x39\x52\xc6\xbb\xdd\x24\x5c\x6b\x37\xd9\xea\xdf\x6e\xb6\xbb\xa4\xa4\x3d\x60\x25\x44\x7e\xda\xcd\xed\x0d\xb5\xf5\x36\xad\xbb\xcd\x5b\x1f\xd2\xba\x03\x5a\xb2\x41\xe1\x6d\x34\xdb\x0a\xee\x8d\x26\x99\x25\x1b\xcd\x3d\x4a\x67\x77\xb7\x89\x39\x81\xfe\xe5\x25\x3d\x5a\xa2\xf0\xbc\xbb\xdb\xde\x22\x5f\xda\xb4\xee\x51\xaf\x85\x7b\x89\xfe\xa5\x25\x03\x32\x0a\x47\x83\xa6\x82\xfb\x68\xd0\xa6\x5f\xda\x1b\xac\xee\xd1\x11\x29\x61\xb3\xe4\xe8\xe8\x08\xd3\x77\x74\x74\xa4\x8e\x37\x5b\xec\xd1\x2f\x8c\xeb\xcd\x6e\x73\x8b\x95\x6d\x67\x65\x7d\x56\xa6\xce\xb4\x66\x77\x83\x4e\xd4\x2e\x1f\xf7\x66\x97\x2c\x90\xf8\x17\x36\x76\xad\x6d\x22\x5c\x87\xad\x6d\x75\xae\x1f\xb6\x76\x36\xe8\x37\xb6\x02\xa2\x5f\xb7\x58\x59\x8f\x97\x75\xbb\xb4\xac\xab\xce\x9b\xc3\x36\x15\xad\xc3\xf6\x26\x9d\xe1\x83\x66\x93\xf4\x0f\xff\xc2\xcb\x08\xcb\x06\xcd\xe6\x8e\xd2\x97\x41\xb3\xd5\xa4\xdf\x5a\x83\x23\xf2\x28\x3b\x3d\xf8\xe0\x76\xfc\x75\x90\x40\x2f\x1e\x4d\xab\x8b\x91\x76\x90\x72\x13\x84\xf2\x46\x0e\x17\x7a\x68\xd3\xc2\xad\xfd\xec\x91\x91\x96\x52\x2f\xf0\x0f\xa4\xcd\xf0\x62\x94\x80\x57\x59\xc3\x8b\xe6\x15\xdd\xc9\xa2\x0f\xaf\x85\x0f\x37\xde\xdd\xd5\x45\xeb\xca\xb4\x4f\x56\x0f\xde\x68\x06\x3c\x44\xd3\xeb\x0e\xa2\x57\x3d\xbf\xb9\x09\x7c\xf6\xe4\xc7\x78\x16\x45\x71\xb5\x8a\x3a\xb5\x8a\x7a\x51\x03\xeb\xa0\x6d\x78\x70\x5c\x23\x27\xf0\x75\x72\x08\x6c\xc4\x1e\x84\x41\x7b\xed\x87\x9f\xf7\xab\x9d\xc6\xc0\x9a\x26\x60\x98\xad\x08\xd8\x9a\x09\x98\x56\x9f\xf2\x43\x3e\x1d\x15\xb2\xac\x6a\xec\x7a\x90\xc7\x9d\xee\xe9\xd4\x61\x67\x34\x13\x3f\x26\xd3\x08\xa0\x7d\x5f\x23\x5c\xcc\x4c\x83\xbb\xd1\x46\xe3\x49\x38\xd8\x01\xcd\xbb\x9d\x31\x78\xf1\x02\x90\x6f\xcd\x3b\xaf\x59\xb3\x43\x1c\x45\x61\x1a\x47\x0a\x54\x49\x38\x8d\x6d\x9b\x72\x83\x20\xf9\x39\xf0\x21\xa9\x6e\xcc\x37\x28\x5e\xc5\x6a\xdc\x6a\x19\x39\x25\xc0\x14\x40\xd2\x26\x59\x5f\x5b\xd4\xd1\x8c\xb0\x82\x94\x6c\x8d\xc1\xd7\xaf\x12\x15\x9c\xb7\x77\xed\x8d\xf6\x9e\xf3\xab\xa7\x7e\xcd\x70\xb5\xe1\x6e\x93\x73\x16\x15\x78\x9b\x23\xce\xea\xe7\x18\xc0\x46\x73\x63\x5c\xb3\x43\xf0\x46\x4d\x19\x82\xbf\xe3\x6d\x38\xea\x8f\xf7\x94\xfa\x63\x6f\xec\x82\x3f\x86\x2d\xa5\x3e\x6c\xed\x39\xeb\x6f\xa8\xf5\xb7\x9d\xf0\xc7\x2a\x3d\xe3\xed\xa6\xb3\x3e\x54\xeb\xc3\x6d\x47\xfd\x76\xb3\xa9\x20\x68\x8f\xc7\x63\xdf\xd1\x62\x43\x6b\xb1\x81\x5b\xb0\xdc\xd1\x0f\xe2\x71\x0c\x9d\x7d\x07\xcf\x1e\x6a\xd5\x2f\x20\x5c\xcc\xf6\xf1\xf3\xca\x64\x0e\xec\x83\x26\x78\xa8\x1d\x3c\x7b\xb6\xbe\xfe\x77\x90\x44\x8b\x78\x04\xdf\x79\xf3\x79\x10\x4e\x7e\x3c\x3d\xe9\x48\x87\x50\xbf\x25\x8d\x1b\x6f\xfe\xec\xd9\xb3\xf5\x97\x2f\x5f\xae\x83\x87\x5a\xfd\xd9\xfa\x4b\xd0\xda\x05\x2f\xd7\x69\x11\x3f\xb1\xa9\xde\x44\xfe\x62\x06\xeb\x80\x1e\xfb\xd4\xc1\x70\x78\x0b\xaf\xe7\xde\xe8\xd3\x30\x86\xbf\x2f\x82\x18\x0e\x87\x48\xc2\x9f\xad\x2c\x12\x08\x92\x34\x0e\x46\xe9\xca\xc1\xb3\x67\x1f\xae\x7f\x83\xa3\xb4\xe1\xc3\x71\x10\xc2\x8f\x71\x34\x87\x71\x7a\x5f\xe5\x50\x56\x86\x43\x98\xbc\xc3\xb0\x57\xea\xe0\x0b\xf8\xec\xcd\x16\x70\x1f\x2b\x26\xdc\x0b\xb4\x16\x1c\xbf\xff\xa9\x7b\x72\x7c\x38\x3c\x39\x7e\xff\xc3\xb0\x7f\xd2\x3d\x3b\x03\x1d\x40\xf2\x42\xae\x05\xe1\x67\x6f\x16\xf8\x6b\xf8\x4c\x96\x54\xc7\x47\x6b\xa3\x68\xd6\x9f\x79\x24\x8a\xa3\x52\x9d\xa6\xe9\x3c\x79\xb3\x7f\x79\xb9\x7e\x79\xb9\x5e\xa3\xf5\xfc\xe8\xc6\x0b\x42\x9e\xe0\xf5\x0c\xdf\x51\x54\x2e\x2e\x2f\x7d\x6f\xed\x9f\x97\x97\x8d\xb5\xab\x55\x5a\x33\x84\x13\x2f\x85\xfe\xa1\xb9\xc1\xff\x18\x5a\x10\xd8\xbd\xc8\xbf\x17\xa8\xa8\x80\x55\x13\xd2\x55\x50\x61\x24\xa5\x33\x5f\xa8\x7f\x41\xa0\x5e\x7d\x69\xd7\xb7\x1f\x58\x95\x60\x2e\xd4\xa8\x5e\x5e\xfa\x5f\x5a\xf5\x8d\x87\xcb\xcb\x46\xed\x0b\xfa\x87\xfc\xc9\x2a\xcf\xa2\x91\x37\x7b\x1b\x25\xa9\xd0\x06\x97\x4d\xa3\x24\x65\x95\xd0\x48\x08\xdf\xf7\x09\x90\x2d\x0e\x64\x2a\xb7\x17\xba\x21\xf4\x6f\x15\x54\x2e\x2f\x1b\xe8\x53\xd6\x07\xd4\xb1\xaf\xa8\x88\xd3\xbc\x0a\x2a\xb8\x40\xa5\x0b\xb3\x00\xac\x8a\xa4\xac\x82\xca\x1b\x46\xa0\x97\x4e\x05\x02\x2e\x2f\xd7\x2f\xf0\x48\xde\x5e\x5e\x36\x2e\x2f\xd7\xfe\xf1\xaf\xab\x97\xb5\x97\xb4\xee\xef\x0b\x18\xdf\x9f\xa5\x71\x10\x4e\xde\x7a\xc9\xf4\x28\xf6\x26\x37\x30\x4c\xb5\x41\x6b\xae\xed\x61\x00\x17\x97\x97\x57\x97\x97\xd5\xcb\xcb\x1a\x06\xf9\xe6\xf2\xf2\xf9\xdf\xff\xeb\xbb\x7f\xbc\xb8\xac\xbc\x5c\xad\xef\x1f\xfc\xeb\xf2\xb2\x43\xb0\x5c\x19\x30\x48\x44\xbd\x41\x1d\x28\x82\x1e\x75\x96\x75\x6d\x2a\x56\xca\xa0\xfd\x7d\x19\x58\x54\x4a\x3f\x22\x6e\x19\x64\x54\x60\x18\x17\xd3\x6b\x51\x40\xa7\xe2\x78\x08\x3c\x5f\x35\x74\x79\xd5\x40\x39\x01\x99\xa4\x5e\x8c\x71\x56\xdf\xec\xff\x0f\x1e\x6c\xfb\xec\x41\xd4\x57\x29\x29\x30\x44\xa6\x56\xa5\x56\xfd\x4e\x6c\xa4\x75\x46\x98\x2c\x44\xc7\xfc\x18\xcf\x4e\xe1\x04\x22\xf3\x27\x84\xb7\xe0\x14\x4e\x06\x77\xf3\x2a\xa1\x62\x55\xd5\x05\xab\x62\x8f\x57\x11\x4e\xaa\x62\xde\xfe\xfa\x71\x70\x7a\x3e\xf8\xe5\x9c\x28\x99\x77\xdd\xf3\xfe\xdb\xc1\xe9\xf0\xf8\x90\x58\xb0\xa8\xca\x49\x10\x7e\x0a\xc6\x01\x8c\xe5\x83\x6c\xb6\xaa\xf3\x12\x5e\xaf\xaa\x9f\xdc\x87\xe4\x11\xe5\x4f\xef\xbc\x74\x34\x85\xf1\x31\xea\xb2\x15\xb5\x7a\x7e\x1f\x47\xb7\xe7\xc1\x0d\x8c\x16\xe9\xb1\x8f\xef\x40\xaf\xd4\x1a\xb3\x0c\xb4\xb1\x42\x0c\x27\x41\x92\xc2\x58\x20\xa1\x2a\x73\xb1\x8e\x2f\x69\x91\x22\xc6\xce\x77\xc7\xa1\x0f\xef\xf6\x41\x0b\xab\xe2\x6c\x19\xe2\x5d\x14\xae\x31\xbc\x34\xf5\x46\xd3\xf3\xe8\x10\x5f\x18\x65\xfc\xf1\xa3\xd1\x02\xc9\x08\x7e\x23\xc0\x70\x99\xc1\xbe\x83\x0e\x60\xbf\x1a\x3a\x9e\x90\xf7\x4d\x13\xe9\x72\xc2\x44\x06\xbe\x91\x1b\xdf\x9f\xe2\x67\x02\x32\x2a\xe2\xe8\x16\xf7\xc5\xe2\x4c\xc5\x30\x17\xcf\x32\x8d\xb5\x35\x1b\x0d\x7e\x9f\x22\x0d\xd1\x05\x43\xaa\xa4\x5f\xe4\xcd\xb4\xdb\xe2\x19\xf4\x62\xda\x5e\xa8\x65\x42\xef\x44\x07\x3a\x20\x81\x29\x07\xc4\x45\x83\xf0\xa5\x71\x1d\x84\x3e\x2e\xc5\x43\x42\xd8\x52\x17\x98\x79\x7e\xfc\x6e\x30\xec\x0d\x8e\x3e\x9c\x0e\xb0\x48\x1e\x1f\xfd\x5a\xcb\xe5\x7b\x02\xd3\xb7\xf7\x68\x6d\xa7\x12\x9e\x5d\x08\x65\x83\x30\x25\x65\xba\x0c\x88\x72\x7b\x61\x9d\x0f\x57\x8d\x29\x07\x3a\x65\x17\x4c\x25\xc8\xfa\x09\x19\x0a\xc4\x11\xc3\x9b\xcd\x70\x28\xb8\x48\xdd\x88\x16\x2e\x4f\xde\x67\x13\x02\x06\x36\x97\x54\xc3\xe4\x94\x45\x98\xcc\x4f\xda\xf3\x3a\xda\xf7\x04\x51\xa8\x6d\xbf\x68\x31\xde\x08\x7c\x8e\x02\x1f\xc7\x93\x00\x5e\x0a\xbe\x3c\x1c\x18\x93\xd8\xea\xaa\x09\xed\x04\xec\x7a\xf1\xc5\x0b\xf0\xdc\x30\xa0\x84\x6b\x71\x74\x8b\xb5\xf1\x80\x78\x5f\xb2\x71\xbb\x59\x24\x29\xb8\x86\x80\x18\x83\x7e\xc5\x28\xda\xe4\x94\x80\xf5\x5f\x49\x11\xee\xef\xdb\x34\xe9\xea\x6a\x5d\x99\xba\x13\xa4\xba\x08\xd7\xa4\x2f\x94\x9a\x7d\xce\x4a\x79\xcb\x2f\xe8\x3d\xca\xb5\x46\x56\x26\xd7\xd5\x07\x3c\x6b\xa3\x7f\x93\xdb\xce\xe3\x20\x8a\x83\xf4\x3e\x6b\xc1\x4a\xf0\x2d\x6c\xc6\x18\x55\x1b\x7a\xbe\x2f\x74\xfc\x3c\x3a\x09\x92\xb4\x4a\x19\x26\x30\x94\x6e\x15\xe8\x87\x06\x3b\x4e\x71\x08\xa0\x11\xb2\x24\x82\x0c\x8b\xd1\x4f\x41\x9c\x25\x62\xec\x9e\x25\x50\x4f\xaa\x8e\x1f\x9b\xd2\xfb\x00\x9c\x2a\x58\x4a\x4b\x63\xa7\x61\x0d\xb4\x0e\x40\x80\x77\x59\x07\x20\x30\x3f\x3a\xc7\xb8\xc4\x87\xe0\x95\x09\xe2\x45\x70\xc5\x6b\xd8\x33\x9e\x4b\x34\xd0\xe7\x84\x02\xfe\xa6\x9b\xb9\x93\xa6\x8e\x02\xa7\x27\xb2\x09\x4b\xd3\x80\xc1\x31\xde\x3e\xcc\x53\x39\x37\x6c\x72\x89\xbd\x95\xd8\xde\x22\x91\x87\x56\xee\x1b\x23\x12\xcd\x32\x83\xb8\x1b\xf8\x58\x64\x8c\x78\x0b\x70\x59\x7f\xe3\x09\xd8\xce\xba\x6c\xdc\x35\x9c\x7c\x39\x66\x4c\x09\x6b\x83\x3e\xd9\x2f\x9a\x0a\x56\x0b\xe1\x79\x1c\xdd\x96\x34\x45\xe0\x5d\x4a\x4c\xa4\x06\xfa\xb5\x1f\x85\xa9\x64\x48\x99\x52\x38\x95\x1b\x34\x59\x2d\x1b\x87\xef\x40\x6b\x80\x2a\x0c\x48\x6a\x8d\x2c\x7a\xd1\x8f\x4e\x38\xdb\xc8\xd3\x84\xe6\x49\x81\x38\x21\x02\xc8\x32\x54\x19\x43\x11\xc4\x79\xac\x2b\x5f\x5b\x80\x05\xa2\x72\x38\x8b\xa2\xf9\xb0\x25\x0d\xe1\x6f\x79\xc9\xe9\x68\xc6\x10\xf2\x1e\x0b\xa7\xf1\xe2\xb7\x2b\xb3\x8f\x31\x60\x4b\x8b\x91\xba\x2a\xcb\x3f\x22\x0c\x5e\x9d\xa1\xa8\x0b\x64\x05\x09\xb6\x62\x5c\xc4\x31\x5e\x3c\x2f\x58\x17\xe0\x33\x62\x53\x02\x4c\xfd\xdc\xc5\x11\x6d\x0e\xac\x01\xe4\xf8\x8b\x2d\xe4\xdc\x12\xb1\xc4\xc4\xf5\x37\x22\xae\xbf\x81\x57\xc0\x20\x0a\xce\x37\xef\xd1\x0f\x1d\x59\xe3\x9b\xe9\x66\x82\xf5\x92\x22\x7a\xd9\xa5\x23\x44\x71\x57\xb5\x44\x26\xfa\xaa\xa6\x80\xc9\x62\x96\x2a\x7b\x38\xe2\xc2\xf8\x36\x4d\xe7\xb2\xc2\xce\xd6\x78\xac\x3d\x0b\x6c\x28\x49\x76\x45\x1f\xd2\x6d\x55\x63\x34\x0d\x66\xfe\x7b\x54\xa0\xde\xd6\xa4\xf8\xc9\x21\x45\xaf\x10\x83\x88\xcf\x36\x6c\x63\xd5\x14\x15\x46\x9a\x7e\xfd\x4a\x60\x38\x0d\x02\xaa\x73\x49\x9f\x6d\x1a\x6e\x11\x07\xac\xab\x17\x88\xb1\xd1\x98\xf7\x3b\x33\xcf\xb0\xcd\x5a\x09\x17\x37\xd7\x30\xae\x80\x37\xa0\x09\xf6\x0d\xb5\x14\x96\xc6\xd1\x2d\x7e\x09\x96\x40\xa0\x38\x1a\x01\xfe\x6b\x15\xe1\x65\xd2\xe6\xd4\xa6\x98\x9d\x79\x0a\x34\x24\x4e\xe9\xb8\xae\x51\x61\x92\x0b\x0b\x46\x09\xaa\x27\xf1\x1d\x13\xf5\x61\x5c\x5d\xc4\x81\x41\x59\x8a\x8d\x5f\x5b\x02\xc9\x15\xad\xcc\x95\xf2\x28\x86\x5e\x0a\xbb\xe1\x68\x1a\xc5\xf4\x1b\xc2\xc2\x05\xb4\xc1\xf7\x1d\x9a\x04\x1a\xe6\x16\xa2\x46\x23\x5e\x10\x81\x8c\xa9\xd6\xc0\x37\x06\x01\xfd\xef\xfc\x7e\x0e\xcd\x8f\x09\x88\x3f\x74\x5d\x85\xf3\x99\x37\x82\x48\x98\x31\x80\xba\xd8\xdd\x52\x89\x2f\x2c\x01\x66\x22\x27\xb3\x45\x00\xa1\xb2\x2b\x47\xd4\x1b\xa6\x63\x51\xcd\xf7\xde\x0d\xe9\x50\xa5\xab\x85\xed\xa8\x3f\x96\xd9\x51\xac\x0f\x40\x50\xee\x41\x18\xc2\xf8\xed\xf9\xbb\x13\xd0\x01\x95\x8a\x1d\x12\xab\xef\xcd\xe7\x30\xf4\xfb\x48\x35\x54\x97\xe1\xa1\x23\x02\x12\x8f\x6c\xa6\x74\x1c\xb9\x27\xd9\x8f\x69\x45\x30\x43\xc9\x5d\x14\x10\x14\xde\x8a\xcd\xb2\x0c\x8c\x73\x09\xe7\x6d\xcf\xa4\x89\xca\x5b\x17\x9c\xad\xe2\x0f\xe2\x87\x06\xf2\x39\x89\x4a\xcd\x11\x0d\x4d\xe2\xcf\x16\xd7\x09\x3e\xa6\xfd\x39\x48\xa7\x78\x0a\x70\xca\xa4\x79\x50\x07\x78\x6e\xab\x68\x73\x96\x77\x4b\x2c\x12\xfb\x31\x4b\x60\x61\xb9\xb0\xdb\x67\x58\x5d\x76\x7d\x1f\x0a\x07\x6d\xae\x3e\x6b\xd3\x9e\x76\x37\xc9\xed\x29\x0e\xb7\xcd\xd0\xe9\x95\x4c\xe6\x01\x9a\x97\x64\x07\xeb\x9e\x25\xb6\xc5\x34\x61\x1d\xa8\x4a\x2b\x51\x2d\x67\x95\xe5\x34\x97\x5c\x6d\x33\xc2\x9d\x7a\x45\xef\xe9\xb7\x59\x81\x39\x39\xd2\x2a\xbc\x5a\x64\x19\x06\xee\x3d\x9c\xd8\x33\x97\x81\x66\x58\xfa\x24\x3b\x0d\xcb\x8e\xb8\xfc\x19\xce\x39\x55\xfb\x0d\x2a\xcb\x2b\x3b\x60\x6e\x10\x64\x6c\x85\xad\x78\xe2\x19\x98\x61\x13\x00\xf0\x5a\xa9\x57\xf1\x63\x6f\x32\xf1\xae\x67\x86\x88\x38\xe2\xc8\x90\x47\xa4\x08\x6c\x1a\xc3\xb1\x8a\x48\xa2\xc7\x8b\x27\xe4\x1e\x69\x88\x1f\x35\xae\x98\xab\x79\xbe\x8f\x33\x2f\xa2\xfd\x03\x0c\x61\x5c\xad\x8c\x66\xc1\xe8\x53\x45\xdc\xbf\xe0\x04\x8a\xb6\xdd\x9b\xe5\x38\x51\x19\x56\x5a\x8b\x80\xc2\x33\xdb\x30\x29\x94\xc8\x76\xe3\x41\xa3\x41\xeb\x3c\x59\x57\xf4\x0d\xd5\x28\x0a\x53\x2f\x08\x13\xd3\xae\xca\xdd\xe3\x62\x5a\xa8\x18\x6f\xcc\x9c\xa0\xad\x29\xd1\xf9\x33\x46\xd0\xbe\xd2\x4c\x89\xc8\x52\xa3\x4e\x86\x10\xde\xbe\xa7\x9b\x0d\x71\x3b\xc3\x97\xf4\x21\x3d\x49\x1a\x22\x3b\xda\x8b\x27\x0b\x79\x8f\x37\x34\x18\xd3\x0c\xe4\xc5\x30\x20\x2f\x9f\x76\xb2\x86\x17\xc3\xc0\xf8\x38\x15\x0d\xee\x23\xb3\x8a\x92\xda\x20\x05\xef\x25\xeb\xcd\x68\xde\x53\x84\x2e\x0b\x9f\xc0\xa2\x91\xad\x3d\x38\x8e\x62\x58\xe5\x84\x06\x57\x75\x86\xd4\x38\x06\xb4\x31\x49\x3b\x4a\x8c\x2e\xb9\x7a\xc1\x01\xd1\x96\x43\x69\x84\xc8\x54\x26\xf6\x00\x25\xad\x0e\xf8\x02\x24\xfc\x6a\xbc\x2d\xcb\x5a\x1b\x8c\x37\x63\x9a\xa7\xac\x05\x52\x85\xa6\xe6\x52\x30\xe5\x83\x0d\x1d\xdf\x05\x3c\x37\x3f\x29\xa6\x5c\x38\x08\x68\xd9\x9d\x83\x47\xce\xc8\xf0\x0e\x2c\x8a\x41\x14\xce\xee\x01\x9d\x93\xc0\x03\x49\x10\x4e\x66\x30\xab\x62\xbf\x9a\x18\x2f\x66\xb3\x73\x72\xda\x26\xd0\x67\x3c\x74\xc3\x7b\x32\x89\xa1\xe6\x15\x19\x6f\x42\x83\xc9\x34\x45\x70\xe9\x39\x14\x41\x22\xd8\x06\xfc\x37\xb6\x71\xd2\x37\x8f\x1c\x06\x22\x09\xc3\x31\x2e\x3e\xac\x46\x55\xc0\x69\x7c\x1a\x5f\xdc\x4a\x19\x05\x47\x41\x68\x3c\xb9\x17\x7d\xec\x1e\xf2\x58\x63\xe6\x68\x76\x92\xaf\x31\xc1\xc0\xc9\x19\x1c\x3b\x19\xd9\xd4\xa4\xdc\x70\x6e\x49\x61\x14\x64\x64\x86\xb2\x14\x1f\x65\x2c\x9c\xaf\x25\xd8\x28\xd2\x5a\xbe\xb7\x6a\x4f\x0b\xf7\x53\x81\xc1\xc5\x20\x47\x72\xa9\x69\xa7\x8f\xa2\x05\x5c\x21\x9a\x78\x6d\x2d\x04\xbf\x08\xdb\x6d\xc2\xac\x5f\xa4\xb5\x4c\x71\x91\x5c\x19\xb3\xa0\x48\xe7\x2d\x3a\xe8\x80\x76\xb3\x99\x45\x4e\x8a\x1e\x25\x02\x24\xb3\xe3\x5e\x06\xd9\xe2\xb5\xb7\xf7\x17\xf3\xda\xd3\x32\x85\x80\x8e\x09\x7b\xb5\x4d\xeb\x67\xef\xc1\x59\x2a\x6e\xd0\x8a\x24\xcb\xeb\x59\xea\xa5\x30\xf3\x32\xf8\xf2\x70\xf0\x4c\xff\x70\x61\x4c\x57\xd2\x1b\x9c\x5c\xa9\x81\xb6\x09\xb2\xed\x33\x03\x54\x31\xa8\x1a\xd7\x70\x36\xab\xd6\x0e\x40\x09\x2c\x27\x47\x65\x91\xcc\x82\x10\x1e\x41\xe8\x97\x44\xf4\xd3\xf9\x15\x7f\x99\xa4\x10\x59\xc5\x41\x1f\x1d\x7d\x33\xd0\xfd\xd3\xb2\xec\x19\x79\x71\x1c\x78\x13\x78\x8a\x8b\x4b\x32\xa9\x77\x56\x7a\xc8\xbd\xd1\xa7\x64\xee\x8d\x60\x49\x4c\x6f\xcf\xcb\x62\x4a\xbd\xeb\x92\x38\xce\x3e\x94\xc5\x91\x4c\x83\x71\xfa\x61\x91\x96\x45\x74\xbc\x14\xa2\xe3\xb2\xc3\x33\x38\xeb\x17\x45\x44\xbe\xe0\x74\x0a\x08\x6c\xf5\x23\xfe\x1b\xff\x8e\xc0\x74\x3f\x0e\x0e\x09\x6e\xbc\x0f\xc7\xc8\x7c\x83\xb2\x30\x7c\xb9\xa8\x5c\x54\xcc\x54\xb0\x38\x79\x66\x6f\x64\x39\x19\x70\x88\xbe\xb0\xb1\x11\x13\xac\x20\x83\xfe\x23\xcd\x26\x42\x97\x6f\x17\xf1\xfd\xb3\xe3\xe1\xc7\xee\x69\xf7\x5d\xed\xe0\x99\x8d\xc0\xab\x3f\x93\xc0\x0f\x67\x7d\x07\x69\x1f\xff\x4c\xd2\x0e\xfb\x67\x0e\xd2\x86\x05\x49\x73\x61\x38\xfe\xfe\xfd\x87\xd3\x81\x03\xc9\xff\xfc\x11\x48\x46\x65\x99\xcc\xdf\xca\xb2\x41\x1c\x94\x85\x28\x64\xe7\x10\x92\x39\xf9\xf0\x8e\x25\x41\x72\x75\xf0\xfd\x87\xd3\x77\xdd\x13\x07\x39\x87\x65\xc9\x79\x3a\xd4\xef\xca\xf3\xf6\x33\x8c\x13\x78\xfc\x64\x14\xfc\xa3\x2c\x05\x09\x4c\x27\x27\xf0\x33\x9c\x55\x9b\xb5\x03\xfd\x53\x99\xa7\x85\x0b\x11\x2e\x56\xfc\x14\xcc\xdf\xa3\x3d\xda\xd4\x8b\x1d\xf2\x65\x5e\xfb\xbb\xef\x4d\x1d\x2d\xa8\xe4\x19\x35\x4c\xc7\x8f\x92\x00\x6b\x0a\x83\x92\x37\x7d\xba\xa8\xbc\x31\xb2\xd9\x88\xfd\x23\xce\xb9\x53\xad\xbc\xa9\x10\x7c\x66\x80\xaf\xcb\x03\x7c\xed\x04\xf8\xbc\x3c\xc0\xe7\x4e\x80\xcd\x12\x00\x51\x6b\x5a\xa1\x31\x61\x7f\xd7\xc0\x4b\xd0\x6a\xba\x50\xb4\x9e\x06\x05\x4e\xe3\xe7\x40\xd3\x7e\x32\x34\x6d\x17\x9a\x8d\x27\x43\xb3\xe1\x42\xb3\xf9\x64\x68\x36\x5d\x68\xb6\x9e\x0c\xcd\x96\x0b\xcd\xf6\x93\xa1\xd9\x76\xa1\xd9\x79\x32\x34\x3b\x2e\x34\xbb\x4f\x86\x66\xd7\x85\x66\xef\xc9\xd0\xec\xb9\xd0\x7c\x57\x02\x4d\x94\xa4\x58\xa7\x7c\xe7\xd4\x29\x2b\x4b\x40\x5c\x71\x42\x04\x4b\x40\x04\x4e\x88\x97\x95\x25\x40\x5e\x56\x9c\x30\x0f\x0a\x82\x1c\xa3\x75\x38\xf8\x27\xa4\xa3\x64\x87\xf8\xc7\xac\x91\xe6\xe5\x51\xee\xda\x7f\x29\x5d\xe3\xb7\x9e\xc4\x56\xaf\x03\x9e\x6c\x58\xdd\xf6\x91\x4b\x0f\x6c\x65\xb0\xbc\x65\xac\xc3\x32\x8a\xee\xd2\x28\x48\xf6\xbd\x1f\xe7\x6e\xf8\xbd\x47\xc2\x3f\x8c\x6e\x43\x37\x86\xfe\x23\x31\x1c\x45\xf1\xad\x17\xfb\x6e\x24\xaa\x1d\x5c\x16\x49\xcf\x1b\x7d\xca\xc7\xa2\x1a\xff\x65\xb1\xbc\x27\x17\xcc\xd0\x8d\xe5\xe8\x91\x58\x3e\xc6\x70\x04\xfd\x20\x9c\xe4\xa3\xfa\xfe\x91\xa8\x90\x00\x77\xaf\x93\x68\xb6\x48\x73\x30\xbd\x7d\x6c\xa7\xa2\x24\xc0\x47\xb4\x4e\x2c\xc7\x4f\x23\x6b\xe7\xde\xb5\x1b\xcf\x7f\x2f\x8d\x07\xc6\x1e\xda\x02\x1d\x06\xc9\x7c\xe6\xdd\xbb\xb1\xfc\xf0\x58\x2c\xf9\x02\x70\xf2\x48\x0d\x86\x30\xe4\x68\x30\x75\x9f\x58\x1c\x05\x79\x11\xb6\x00\x0a\xf5\x2c\xa5\x2c\x8a\x02\x7a\xf8\x6c\x69\x14\x24\x37\x68\x9e\x1e\x3e\x2f\x0c\xff\x19\x30\xbe\xfb\xf5\x0a\xe0\x97\x7e\x9f\xeb\xf9\xed\x65\x42\x24\x85\x4d\xee\x68\x9e\x99\x08\xfa\xe5\x71\xc2\x57\x80\xa5\xff\xef\x13\xe9\xec\xdc\xd9\xfa\xbf\xcb\x23\x9a\x7a\x48\xf3\x14\x53\x71\xde\xd2\x68\xde\x32\xed\x76\x0a\x67\x5e\x1a\x7c\xce\x41\x74\xbd\x34\xa2\x18\xce\xa1\x97\xf2\x05\x82\x87\x8a\xbb\xf1\xa9\xa7\x68\x25\x64\x1f\x86\xfe\x21\x7e\xaf\x21\x7b\xd1\xce\x8d\xcb\x5f\x1a\xd7\x2c\x08\x61\xe1\xb1\x82\x4b\xa3\xf9\xa9\xdc\x58\x8d\x97\x17\x8a\x9f\x8a\xad\x79\x93\xa5\x31\xa4\xde\x75\x7f\x06\xbd\x9c\xd1\x9f\x3e\x62\xf4\xc9\x3b\xf6\x4e\xf0\xb3\x47\x08\x73\x21\x04\x37\x8f\x9a\xfd\x45\xe5\x36\x7c\xc4\x12\x94\xbd\x67\xe2\xc6\x31\x2f\xb7\x46\xf0\x54\xeb\xda\x8a\x80\xb3\x89\x57\x9e\x57\xe4\x7c\xe2\x7c\xd8\xd8\x73\x06\xf2\x32\xc1\x7e\x04\xb7\x66\xf3\xca\xf1\x7b\x31\x32\xeb\x60\x4e\x76\x90\xd2\x9a\x46\x8a\x88\xb3\x3f\xa8\x18\x97\x31\x29\x43\x7d\x91\xa5\x2c\x76\x13\x64\x96\x5c\x31\xf9\xb8\x7b\x58\x92\xf2\xe0\x79\xaa\x6d\x37\xe4\x45\x69\xc8\x52\x76\x6c\x27\xf0\x62\xbb\xe8\xbc\xb1\xab\x83\x47\xed\xb3\x85\x6f\x07\xcf\x84\x2c\x21\x42\x39\x13\x01\xa1\xe8\x42\xfc\x7d\x85\xc0\x5c\x41\x74\x37\xd1\xff\x58\xc1\x81\xbb\x19\xbd\xfb\xc4\xed\xb0\x43\x24\x2f\xc9\x69\xc8\xef\x1d\x71\xd3\x36\x6e\x9a\x95\xe5\x37\xc6\xcd\x36\x58\xb3\xbc\x06\x1f\xce\xfa\xb8\xc1\x26\x6e\x80\xfe\xca\xc3\x40\xae\x29\x70\xa3\x2d\x82\x85\x96\xe4\x34\x3c\xec\x9f\xe1\x46\xdb\xb8\x11\xfa\x2b\xa7\x01\xb9\x7d\xc3\x6d\x76\x70\x1b\x5a\x80\xf3\x6c\x09\x35\x71\x96\x3a\xf1\xef\x0e\xf8\xf2\x50\xab\x89\x12\x90\x93\x23\x86\x54\xaa\x0e\x03\x21\x1b\x57\x1d\x0c\xd5\x7b\x9e\xcc\x97\x29\x90\x93\xac\x4b\x7f\xab\x7e\x4f\x0c\x0a\xaa\xc7\x7e\x57\xeb\x24\x94\x6e\x5d\x96\x99\xde\xc9\x38\x25\x38\x9a\xe2\xa9\x20\xa7\x77\xf1\x52\x4f\xf5\xf7\x45\x98\x51\x39\x7f\x2c\xf7\xb7\x3a\x18\x25\x75\x30\x9a\xd6\xc1\x88\xb8\x60\x45\xb7\x2a\x45\x73\x6a\x1b\xc8\x29\x23\x0d\xcf\x20\x24\x8b\x38\x8e\x26\x5e\x0a\x87\xd3\x60\xa2\x79\x00\x22\xbc\x86\xf4\xf6\x52\x1b\xb0\x8a\xab\x99\x5c\xf5\x6c\x2d\xe4\x88\x29\x25\x07\xc1\x81\xda\x05\xfc\x14\xaf\x5c\xa6\x7b\x0b\xe3\x58\x10\x44\xc7\x85\x5c\x53\x89\x8d\x18\x11\x27\x38\xcc\x4f\xb4\x7e\xf7\x23\x1f\x76\x59\x56\x17\xd6\xc6\x10\x0c\xd8\xbc\x3b\xdc\x6d\x36\xc1\xab\x0e\x81\xf0\xe2\x05\xf9\x17\xa7\x96\x3b\xec\x1d\x1d\x99\x7c\xce\x67\x38\x42\xd5\x8d\x8a\xdc\xcf\x18\x9d\xde\x83\xe4\xbd\xf7\xbe\x3a\x8b\x6e\xad\x0e\xed\x79\x4c\x1e\x4d\xcd\x71\x39\xa3\x28\x4c\x83\xd0\xf4\x3c\xbe\xee\x0a\x4f\x19\x56\xad\xe2\x5f\xd6\x00\x61\x44\x0d\xbc\x04\xcd\xbb\x4d\xf4\xcb\x2a\x40\x34\x92\x2f\x7d\x52\xd0\xbc\x6b\x35\x9b\xea\x2b\xbd\x74\x90\x56\x05\x8e\x14\xe1\xc6\x83\x69\x28\xfa\xd6\xa1\x38\x3a\x3a\xd2\xd3\x79\x9a\xfb\xcb\xec\x1f\x61\x0a\x5b\x9f\xf4\xd2\x27\xb6\xfd\x69\xff\xd1\x14\x04\xa1\xc1\xcb\xcb\x15\x7e\x66\x70\xec\x19\x4d\xaf\x68\x5a\x21\x5d\x67\x3d\x65\xe0\xa5\x0e\xbd\xe1\xf9\x3e\xbe\x87\x66\x1a\xe6\xb1\x0f\x9c\x03\x13\x1b\xe9\x72\x9a\xc7\x47\xc3\x2d\xb8\x8b\x91\xa6\x4b\x73\x95\x93\x7c\x5d\xb0\x07\xdf\x39\x62\xf3\xcc\xbd\x66\xc2\x34\xb2\x86\xe0\x72\x26\x54\xaa\x15\x73\xa7\xb3\x1a\xb5\xdc\x1a\x2f\x73\x6b\xac\xe6\xd6\x58\xcb\xad\xd1\x70\xd4\x00\x85\x7b\x2d\xc3\x74\xf5\x5e\xfc\x51\x1f\xb4\xca\x1e\xbe\x32\x28\x16\xd3\x4f\x4e\x7c\xa5\x4c\x95\x8b\xe3\xc5\xa8\x6a\x7d\x03\xaa\x5c\xa3\x5c\x8c\x2a\xcb\x63\xa7\x8f\xa2\xca\x25\x59\xc5\xa8\xda\xf8\x06\x54\xb9\xa4\xb9\x18\x55\xdf\x62\x04\xf3\x66\x50\x3e\x55\x4f\x37\x82\xf6\x98\x76\xe0\xb4\x64\xe9\x06\xe1\x51\xd1\xcc\x84\x1b\xeb\x39\xdc\x58\x5a\x62\x1e\x49\xbc\x6c\x85\xac\xad\x3d\x41\x57\xdf\xe7\x74\xb5\x10\x90\x0f\x4f\x01\x24\x2c\xc7\xf4\xcc\x09\x4e\xcd\xc7\xbe\x14\xf6\x68\x59\xec\x1b\x4f\x81\xfd\xeb\x9f\x8a\xfd\xe1\x4f\xe5\xfc\xbf\x96\xc5\x6e\xda\x90\x94\xc6\xbe\x53\x08\xbb\x64\x76\x0a\xc7\x5e\x39\x14\x14\xdb\x75\x3f\x8a\xfe\xdd\xf2\xf4\xcb\x87\x6b\x7f\x7e\x17\xfe\x5e\xa8\x0b\xcb\x92\xa0\x6e\xc8\x9f\x80\xe0\xb7\xe5\x24\x36\xf5\xae\xcf\x88\x37\xf6\xb7\xeb\x65\x21\xba\x3b\xe5\xe8\x9e\x45\x93\x6a\xe5\x0c\xc6\x81\x37\xc3\x29\xba\x41\x0c\x7f\x5f\xc0\x24\x85\x3e\x10\x9e\xb7\x05\x9f\xf0\x1b\xba\x0d\xdb\x33\xcb\x16\xe0\xa6\x47\x78\xf5\x5c\x7d\x39\x40\x0a\xbc\xcb\x6b\x87\xf2\x4d\x59\xfd\x7a\x19\x56\xe3\x5d\x4a\x10\x4e\x00\x4e\x22\x9b\x46\x74\xbb\xfd\x84\x1c\x56\x92\x46\x14\x80\xf2\x57\x64\xb1\x0f\xc7\xde\x62\x96\x7e\x7b\xad\xc1\xb9\x00\x49\x80\xf9\x8f\xe1\xa7\x30\xba\x0d\xc1\xe0\xac\x9f\xbd\xbb\xf0\x8f\xa4\x51\xa9\x83\x91\x1a\x9a\x5d\xa2\x4f\x8f\x3b\xa0\xa0\x96\x63\xde\x01\x85\x10\x0a\x40\x5b\x9c\x39\x8f\x00\x12\xd0\x31\xb5\xb9\x18\x4d\x1d\x89\x92\x28\x3a\x7c\xed\xb5\x9e\x9b\xe3\x0a\x33\x59\x8d\x28\xb0\x55\x2e\x9a\x67\x08\xe4\x1f\x25\xa9\x7d\x53\x42\x23\xca\x0c\x92\xc1\x38\x61\xe1\x17\x96\x4d\x42\x1d\x8c\xd4\xab\x48\x0b\xb0\x89\xed\x0d\x6d\xbd\x4d\x59\x31\x2f\x2a\x5b\x1f\xce\xfa\x4e\xb9\x42\x03\x6d\x8b\xec\x03\x5f\xbf\x02\x57\x95\xde\xe0\xc4\x25\x20\x05\x30\xd8\xdf\xfd\x07\xa5\x16\x7e\xf5\xc5\x65\xe2\x90\x84\x73\x3b\xe9\xef\xa7\xf3\x10\x35\x87\xac\xca\x47\xb6\x0a\xe0\x8b\xe6\x55\xde\xc4\xc0\xe3\xd0\x74\xeb\x37\xd3\x23\xe3\xc6\x3a\x86\x47\xc7\xd5\x1f\xd3\xb3\xd3\xec\x29\xe7\x22\x27\x66\xc0\x60\xf4\x04\xe9\x0c\xea\x57\x32\x1c\x6c\xb1\xd3\x02\xa5\x35\xb9\xc6\x3d\x47\xa0\x55\x7a\x31\xbe\x1c\x15\x0c\x72\x0f\x17\x40\xb1\x13\x0a\xd3\xfb\xea\x8f\x01\x65\x78\x96\x5d\xab\xb3\xf5\x74\xe8\x5a\x85\x44\xab\x88\x6c\xb5\x72\x84\x8b\x54\xca\xe1\x14\xa9\x54\x84\x07\xad\x1c\x26\x90\x4a\x86\xf7\xe5\xf5\x4a\x3b\x45\x2a\xed\x16\xa9\xb4\xf7\x84\x72\x90\x43\x7a\x19\x58\x5b\x39\x83\x5c\x0a\x56\x8e\x2c\x94\x82\x55\x40\x1f\x15\x17\xe4\x42\x52\xd3\x2c\x24\x36\x05\x67\x45\xa1\x69\x51\x6c\x5e\x14\x9b\x18\xc5\x66\x46\xb1\xa9\x51\x6c\x6e\x14\x9b\x1c\x79\xb3\x03\x2c\x9b\x3b\x12\xd8\x96\x64\x25\x93\x58\x4e\x1b\x73\x38\xb9\xbd\x61\x59\x1b\x6a\x29\xd3\x53\x78\x7d\x46\xb5\x37\xdc\x99\x71\x45\x00\xa3\x29\x78\xdd\x01\x95\x66\x05\x5f\x2a\x4f\xc1\xab\x0e\xa8\xec\xe5\x5a\xdb\x20\x8f\x45\xcb\xac\xc8\x12\x04\x1a\x90\x36\x9a\x8a\x7e\x04\xcd\x1a\x58\x03\x9b\xbb\x8f\x39\xf2\xe7\x09\x64\xd9\xd6\xe2\x60\x99\xce\x3e\xde\xac\x2b\xc2\x03\x77\x92\x5d\x77\x5f\x5d\xc9\x7c\x9d\x52\x95\x47\xd4\xaa\xdd\xc7\xc2\x8e\xf7\x91\xbb\x52\xe6\x4a\x96\xb7\x2f\x35\xc5\xc6\xb9\x37\xa6\x86\x58\x3a\x76\x75\xfe\x94\x57\xe5\x98\xa1\x6a\x34\x5f\xc9\x3d\x58\xff\xec\xb8\x18\xaf\x0a\x70\xa9\x04\x83\x8c\xbc\x69\x28\x7e\x67\xc6\xe9\xa1\x17\x53\x47\x49\xb5\x98\xf9\x4d\x3a\xb8\xfe\x08\x37\x0f\xdb\xc1\x4b\xff\xec\x18\x7b\x7a\xe4\x9e\xba\xb8\x76\xeb\x65\x15\xbd\x91\x23\x8e\x89\x6e\x66\x95\xa3\x41\xd1\x39\x75\xd8\x3f\xfb\x3f\xb0\x1b\xc7\x09\x3b\x53\xc0\xde\xb1\x72\x57\xc4\x8f\x6a\x14\xa8\x6b\xdb\x91\x6b\x3e\xe5\xa6\x1f\x72\xa4\x5b\xe0\x86\xbc\xa8\xdd\x5a\xf9\xee\xf7\x02\xd0\xe6\xa9\xbe\x7f\x16\xd5\x7a\xfe\x42\xc5\xb8\x53\xe0\xd8\x17\x88\x9e\xf6\xc6\x04\xb7\xf6\xde\xac\x14\xe9\x8d\xd4\xab\x4a\x73\xe5\xf7\x9c\x65\x52\xfc\x29\xe8\xca\x20\x50\x34\x2f\x4d\xd1\x76\x6b\x65\xfe\x2d\x49\x8a\x4b\x53\x54\x29\x5c\x1f\xfd\xac\xea\x2e\xb3\xf8\xb4\xfe\x3c\x9a\x63\x77\xc5\x92\xc0\x2a\x07\x4f\x83\xbe\x17\xa5\x69\x74\xb3\x14\x05\xf1\xb7\x1c\x8e\x9b\xf2\x22\x7b\xf3\x6d\xe8\x29\x74\x9b\x21\xfe\xb8\x97\xc8\xc3\xfe\x19\xf8\x98\xb2\x05\x72\x6e\x7b\xb8\xc1\xf4\x43\xc5\xee\xc9\x7b\x99\x7f\xe6\xa6\x1d\xa3\x87\x7e\xd5\xba\x92\xad\x82\xca\xc7\x0a\x58\x05\xab\x44\xbd\xad\x82\xca\x77\x31\x7e\x46\x38\x05\xab\xf6\xf5\x0f\x3f\x55\x9c\x77\x85\x56\xb0\x53\xd4\xbf\xac\x88\x92\x29\x0e\xed\x2f\xb9\x24\x3c\x72\x60\x56\xff\xe0\x81\x29\x3c\x97\xf2\xe7\x10\x31\x0d\xd8\x3c\x32\xdb\x0d\x8f\xa6\xb9\xf0\x01\x48\xd9\xc3\x8c\xe2\xd6\x2a\xf8\x16\x07\x20\xa6\x63\x0e\x69\x93\x5d\xf6\x88\x84\xf4\x82\x1c\x77\xe0\xb7\x26\xbe\xab\x88\x7f\xad\x16\xbb\x6b\xb4\xf2\xb3\xfc\xee\x58\xea\xaa\x91\x5a\x31\x43\x7a\xfb\x4f\x23\xaf\x14\x5a\xca\xe6\x27\x3c\x2e\x28\xb7\xdb\x2b\x7a\x68\xf1\xb8\xa3\x09\x12\xdf\xf5\x7f\x60\x27\xf5\x94\xd3\xda\xc0\x5c\xc7\x23\x2c\x02\x66\xd2\x86\x26\xd0\xd6\x42\xcb\x58\x78\xa5\x14\x5d\xa6\xc5\xb8\xc8\x1d\x29\x06\xf6\x23\x53\x7c\x42\x2e\x25\x6d\xb7\x67\x53\x96\xe4\x97\x7c\x1c\x7c\x6b\x2f\x20\x91\xa3\x81\x4d\x58\x78\x2b\xfa\x5b\x3e\x1e\xaa\x07\xa4\xb4\x50\xb2\x16\x75\x2b\x90\x79\x66\x1c\xd8\xd0\x4c\x4c\x68\x44\x0c\xd2\xd0\x3a\xac\x0f\x1b\x02\xe9\x28\xcd\x8a\xe5\xd1\x87\xb6\x85\x16\x4e\x2b\xaf\x05\x67\x94\x1c\x12\xd5\x09\x28\xa7\x88\x27\x90\x59\x7e\x78\x96\xfa\x9d\x47\x89\xb2\xcf\xe6\xa4\xef\x94\x2c\x73\xc6\xf7\x76\xf3\x2f\x96\xf1\xfd\x30\xba\xa1\x0f\x1b\x11\x60\x1f\xa3\x68\x66\xcf\xe6\xce\xd2\xb9\xbf\xeb\xfe\x32\x3c\x1d\x1c\x9d\x0e\xce\xde\x0e\x8f\x4e\xbb\xef\x06\xc3\xb3\x1f\x8e\x3f\x82\x0e\xd8\x22\xdf\x8f\x4e\xba\xdf\x9f\x49\xc1\xd4\xb8\x84\x8d\x03\xfe\xe3\x82\xfc\x7f\xa5\xf7\xe1\x44\x0c\x80\xc6\x7f\x1e\xe8\xd5\x7e\x7c\x7f\x38\x38\x3d\x39\x7e\x3f\x10\x22\x9e\xb3\x32\x43\x83\xde\xc9\xf1\xfb\x1f\x84\xb0\x65\xf2\xb7\xa1\xe2\xf1\xfb\x9f\x06\xa7\x67\x04\xee\x2e\x89\x21\xa6\x25\xe6\xca\xc7\x67\xc7\xbd\x13\x52\xbd\xb5\xcd\xea\xd3\x42\x1c\x76\x8c\xab\xe2\x80\x63\xf2\x1b\x0b\x35\x26\xbc\xb9\x8e\xa3\x4f\x30\xec\x45\x33\x9f\xbb\x06\xa1\xe2\x53\x18\xfa\x30\xce\x8d\x42\x66\xd5\xaa\x8e\xc0\xe3\x22\xc1\xc4\x31\x1c\xc7\x30\x99\x9e\x46\xb7\xc9\xff\xb3\x80\x0b\xa8\xdc\xce\x49\x95\x8e\x62\xef\x06\x26\x67\x9f\x82\xf9\x1c\x3f\xe7\xd6\xb4\xd4\xeb\x86\xc1\x0d\xf6\x58\xc4\x0d\x34\xc7\x27\xba\x0e\xcc\xbd\x50\x93\x38\x54\x17\xde\x5a\x84\xb1\x61\x2a\xae\x56\x10\xa0\x8a\xf2\x82\xa9\xc8\xdb\x0e\xc1\xaf\xae\xe6\x12\xfb\x47\x53\x38\xfa\x84\x7e\xef\xe1\x52\x55\x49\x41\xed\x5d\x38\xf5\x49\xef\x6f\xd2\x1b\x82\x84\x8d\xb4\xa0\xe0\x7e\x47\x23\x75\x4a\x98\xad\xae\xb9\x71\x5a\x07\x30\xf4\x75\x69\x50\x47\x9a\xa8\xe3\x2f\x00\xb7\xd9\x07\x59\xd3\x7d\xf4\x3f\xe9\xb5\x29\xc1\x98\x37\x0e\xb1\xf9\x95\x78\x9b\x34\xdc\x06\xa1\x1f\xdd\x36\xa8\x1f\xb2\xfc\xb9\x2a\x35\x3d\x89\xa2\x79\xe3\x3a\x08\x7d\x72\x2d\xa4\xf1\x9f\x6a\x6b\x03\x87\x44\x08\xd6\x25\x00\x3f\xda\xfa\x29\x98\x33\xc2\x94\x51\xbf\x8d\x83\x14\xf6\x16\xe3\x31\x8c\x85\xe7\xab\xd1\x86\xc5\x3e\x2b\x56\x57\xc1\xab\x8e\x45\x2d\xca\xfc\xe4\x88\xff\x78\xe6\x01\xe7\x93\xe4\x45\xa7\x3c\xe6\x1e\x12\x1a\xb9\x08\x86\xbe\xdc\x51\x8b\xf4\x71\x8e\x6e\xaa\x0c\xc0\x40\xf5\xed\x31\x12\x4a\x6d\x8c\xe2\xe8\x36\x01\x6b\x62\x30\x9d\xf3\x8d\x38\x06\xda\x4c\xd3\x45\xf3\xaa\xa1\xf4\x48\x45\x6c\x6a\x22\xf5\x18\x38\x5f\xd9\xb7\x70\xc1\xf8\x22\x99\x9b\x7f\x17\x01\xa5\x15\xbc\x22\xbd\xb2\xed\x56\x72\xba\x1c\x18\xbb\x0c\x8c\x3b\x08\x37\x35\x88\x4d\xaf\x55\xd5\x53\x98\x8f\x81\x81\x8f\x3a\x15\xa6\xcd\x4a\xf9\x75\xac\xd0\xfa\x44\xeb\x8a\x2a\xf5\xa0\xa0\xd2\x29\xa0\x92\xb3\xf7\xec\xe4\xc9\x82\x78\xb4\x46\xc7\xec\xb5\x59\xda\xd7\xf5\x73\x08\xfe\x32\x9e\x79\xdd\x32\x3e\x94\x07\xb2\xc4\x7d\x96\xb7\x10\x2d\xc0\xc4\x57\xee\x74\xfa\xfa\xe4\x59\x36\x2d\x6b\x80\x69\xe4\x10\x13\x6e\x03\x3f\x9d\x1a\x8e\x43\xa3\x99\xf2\x9c\xf9\x3d\xd9\x33\xc6\x06\x86\x99\x19\x65\xd6\xab\x72\xb0\xc6\xff\xc2\xd0\xff\x5f\x10\x24\x20\x8d\x22\x30\xf3\xe2\x09\x6c\x80\x77\x51\x92\x82\x59\xf0\x09\xce\xee\x81\x07\xae\x3d\x1f\xf4\xcf\x4e\xb5\xb0\x8d\xd2\xda\x88\x66\x1b\xb9\x47\xeb\x03\x92\x74\x70\x6f\x7e\x66\x3c\xc6\x79\x3c\xee\xc1\xaa\x0a\xfc\xde\x0f\x92\xf9\x81\x56\x7f\x16\x84\x86\xb5\x0b\x95\x26\x68\x37\x58\x8d\xa3\x5b\xc3\x23\x69\x77\x96\xdb\x56\xc3\x39\xd8\x3d\x36\xa1\xee\xc1\x9a\xfe\xe5\xda\x4b\x20\x58\x33\x12\x5a\x03\x2f\x5e\xe4\x49\xd4\x88\x66\xce\xf2\x52\x68\xaa\x6d\x38\x7a\x4c\xa2\xf8\x6d\xe0\xfb\x30\x34\xc9\xeb\x9d\xce\x86\x3b\x9b\x10\x02\xfb\xa9\x16\x02\xb3\xd6\x72\x35\x44\x0c\xf4\xd2\x34\xd6\xf1\xf9\x70\xdc\x4d\xd3\x58\xe7\x37\x7b\x01\xed\x28\xf6\x26\xf4\x71\x59\xe5\x51\xb4\x43\xa5\x86\xea\xa6\x82\xd7\x13\xc7\x2b\xe0\x38\x53\x34\xd9\x26\x67\x0f\xe1\x9a\x86\xf8\x76\x1a\xcc\xa0\x36\x96\xf8\x51\xc7\x18\x86\x17\xf7\x57\xfc\x77\x87\x33\x1b\x7f\x4b\xdb\x30\x75\x0d\x90\xa4\x87\x22\xd9\x8f\xa3\x9d\xa8\x63\x70\xb9\xe1\x90\xde\x61\x78\x37\x62\x38\x83\x5e\x02\x8d\x6d\x1f\xec\x6b\x35\x7d\x2f\x14\xeb\x24\xeb\x9a\x8c\x87\x93\x64\x2a\x42\xb3\xec\x22\xb8\x32\xf6\x8e\x70\x48\xa8\x64\xf2\x96\x27\x95\x86\x4c\x09\xb2\xaa\x6d\x43\x55\x6c\x83\xb3\xba\xb6\x25\xb6\x4c\xae\x1d\x9c\xf5\x07\xcf\x6d\xab\xeb\x04\xed\xa6\x3a\x1b\xec\xf0\x70\x83\xe7\x9d\x0e\x9e\x1e\x36\xa8\xa8\x22\x9e\x3e\xa8\xa2\x79\x02\xe5\x1d\xbd\xf2\x89\x90\xeb\xf4\x21\xcd\x08\xe9\x19\x7d\xfe\xbb\xfb\xfe\xa7\xe8\xcb\xfb\xf6\x13\x7c\x75\xee\x4b\x8f\xf3\xcb\x04\x3a\xee\xa2\xb4\xb9\x6d\x8f\x26\x32\x93\x22\x8d\xcf\x23\xd9\x8e\x93\xfb\x2a\xa4\x97\x1a\x09\xae\x36\xcc\xf3\xd7\x1b\xe1\xa3\xa6\xf2\x91\x64\x8c\xd2\x72\xb4\x95\x12\x29\xbd\x33\xcb\x88\x15\x28\x21\x5a\x20\xf7\xf6\xfd\x69\x44\xcc\x8e\xe3\xa9\x07\x8f\xcb\x22\x52\x3f\x6b\xda\xcb\xc3\x6e\xf4\xc2\xc3\xdc\x9e\xef\x57\x2b\xf4\x29\xa7\xb5\xcf\x81\x0f\xa3\xbc\x2b\x68\x37\x28\x36\x21\xd6\x88\xad\xe1\x02\xf6\xa8\x1b\x3b\x7c\xfe\x37\xa1\xf9\xda\xc0\x0b\xd0\xbc\x6b\x8d\xc7\x6e\xc2\xf1\xfb\xc5\xa8\x09\x61\xdc\xeb\xd7\x60\xaf\x56\xa2\xe5\xcc\x9b\x24\x0c\xdf\xeb\xd7\xa0\x95\xe3\xca\x8d\x06\x88\xb4\x79\x41\xce\x3d\x1b\xbd\x0f\x27\x87\x45\xa6\x06\x5e\xa7\xb2\xc3\xb5\xc2\x3e\x68\xce\x71\xb9\x43\x03\xb3\x76\x1d\xcd\xfc\x22\x2e\x06\xf9\x9e\x2a\xb8\x7b\x13\xf0\x0a\xec\x16\xa5\x6f\x3c\x01\xab\x1d\x90\xc3\xb5\x7c\xe4\xee\xaf\x3a\xd7\xf9\xc9\xf6\x12\x5a\xc9\xc8\xc3\x05\xda\xb5\x22\x3b\x23\x8f\x91\x65\x29\xc5\xc7\xea\x4f\x45\xe5\xf5\x2c\x08\x3f\x3d\x35\x85\xf4\x34\xbf\x08\x8d\x68\xca\xa4\xf0\x66\x0e\x3a\xe0\x7a\x52\xc0\x3f\x04\xcd\xcb\x71\x81\x8a\x78\x02\x23\xc0\x05\x16\x87\x31\xa8\xf2\x0e\xb4\xd0\x76\x0a\xfc\xff\x42\x62\xf9\x1d\xc8\x53\xc9\xc2\x14\x6f\xf8\xfe\x44\x61\xc0\x17\x0a\x13\xe2\x01\xb2\xb5\x53\x94\xfd\x58\x26\x5a\x5b\x4f\xa8\xad\x08\x01\xdb\x25\xc6\xbf\x50\xf6\xba\xc7\x0e\xff\x35\x92\xca\x82\x74\x39\xc7\x7b\x85\xce\xfd\xc9\xda\x28\x9a\x45\xf1\xda\x0a\x58\x05\xd7\x93\xc7\x8f\xfb\x13\xd3\x97\x11\x37\x5e\x9e\xb8\xa2\xde\x37\xe6\x6d\x56\xb6\x65\x74\x79\x25\x65\xe6\xe5\x6a\x07\xac\xbc\x42\xc6\x1a\xc0\x3d\xea\x5c\xd2\xae\xdc\x06\x3e\x5c\x1b\x4d\xbd\xf8\x72\xe5\xf5\x0a\x8e\xf9\x02\xab\x60\xe5\xd5\x3a\xaa\xfa\x7a\xa5\xc8\xa6\x4f\x08\xea\x52\xc2\xc5\x5e\x83\xf6\xd6\xd6\xf2\xa4\x91\xa4\x29\x4f\x40\x9c\xe5\x54\xbc\x44\x06\xcd\x17\x39\x2e\x9d\x52\x67\x2a\x2f\xbc\x9b\xf9\x41\x8e\x31\x5f\x28\xf9\xcc\xab\x72\x68\x67\xe9\x93\x60\xcd\x4b\x79\xa3\x60\x9d\x3c\x16\x6b\x21\x5f\x4f\xea\x6d\xf5\x4a\x4b\xc3\x5f\x90\xca\xf0\x3a\xc9\x1d\x93\x02\xc1\x8b\x25\xf1\xba\xbc\xef\xf2\x31\x96\x8a\x74\xd3\x4b\xe8\xf9\xa4\x9e\x2b\x5b\x4f\x71\x5c\x76\x57\xff\x14\x9b\x41\x9d\x8a\x7c\xbc\x85\x76\xe9\xcb\xef\xcc\xf3\x76\xe3\x3a\x8f\x1f\xb7\xeb\x2e\x70\xa0\x23\xa3\x74\x9c\x97\x8a\x88\x55\xaa\x8c\x5e\x0b\xf6\x9b\x1f\xcb\xad\x8f\x88\xa1\xd8\xad\x8f\x7a\x43\x97\x81\xbc\x09\x52\xb4\x6b\xc7\x77\x65\x95\x3a\xf8\x02\x28\x92\x7d\x0b\xf2\x7a\x9e\x8f\x02\xbd\x92\xb3\x5e\xcc\x51\x5c\x67\x70\x06\x47\x34\x4f\x7d\xde\x05\x9d\xf9\x94\x3c\x61\x10\x78\x87\xf3\x0e\xcb\xf3\x01\x38\xee\xd3\x1c\xe8\x2e\x9a\x57\xd6\x81\x7d\x4e\xee\x0f\xbf\x7e\x05\xcf\x0d\xd7\xb1\xf6\x9b\x7f\x1c\x8a\x47\x33\x85\x9d\x21\x10\xa7\xf8\x2e\x0a\x43\xbb\x68\x5d\x59\x6e\x7a\x0e\x8c\xed\x07\xa1\x4f\x5a\xc3\xd0\x2f\xdb\xb6\x8f\x84\xcd\x17\x28\x78\xe7\xa5\xd3\xc6\x8d\x77\x57\x55\xa9\xab\x83\x66\xcd\x05\x83\x53\x41\x20\x04\x61\x55\xa6\x4f\x0b\x09\x60\x37\x78\x8a\xf3\x8b\x85\x32\xcb\x0d\xed\xd7\xaf\x66\x32\x5e\x81\x66\xb9\xc1\x78\xdc\xad\x11\x77\xd0\xe8\x63\x57\x24\x7d\x64\x3b\x1d\x1b\xcb\xdf\xd0\x41\x6f\x5e\x81\x7d\xd5\xe7\x03\xa9\x01\x09\xa0\x3a\x5c\x1a\x58\xda\xfd\x37\x58\x16\x30\x48\xe7\x6d\xaf\x53\xad\x92\x96\xa4\xf3\x7c\x3e\x53\x1d\x6a\x19\xa6\x3a\xe7\x42\x9d\x12\x5f\x53\xb8\x74\x13\xf8\xfe\x0c\x9e\x46\xb7\x49\x3f\x5a\x90\x8b\x33\x53\x07\xd6\x6c\x5d\x96\xae\x7c\x9f\x9a\x7c\xb0\x0a\x5a\x75\xd0\xd4\x44\x15\x31\xad\xae\x92\x5e\x2b\x26\xb8\xcf\x2d\x63\x64\xba\x90\x26\x2c\xc3\xbe\xa0\xea\xe4\x7e\xec\x48\x3f\x25\xbb\xd8\x84\x6e\xd6\x39\xc5\xba\xc3\x58\x31\x8d\x5c\x60\x35\x75\x38\x81\x98\xa9\x95\x96\x9c\x18\x11\x3a\x8a\x66\x67\x64\xe9\x19\x45\xb3\x41\xe8\xd7\x01\x5e\x48\x17\xf2\x92\x8c\x06\x91\x95\x13\x86\xe3\x2b\x5d\xfc\xc4\x11\x2f\x06\xad\x03\x45\x73\x40\x8e\x55\x51\x18\x8c\x79\x15\x3f\xf8\x2c\x9e\xa9\xb0\x75\x3e\x49\xef\x67\xb0\x31\x85\xc1\x64\x8a\x5a\x73\x1c\x2f\x75\xf3\xc3\x8b\xdf\x41\x2f\x59\xc4\xbc\xfa\x2a\x58\x99\xdf\xad\xd8\x60\xa6\xd8\x13\x2f\x8e\x6e\x9f\x00\xd6\x0c\x8e\x11\x75\x8c\x85\x6e\x88\x64\xab\xec\x06\x68\x73\x43\xd1\xc0\xbc\x04\x55\x32\x5c\x60\x8d\xa3\xaf\x69\xc0\xa9\xff\x38\xc5\x61\x72\x2d\x67\x92\xa3\x3a\x97\x0b\xee\xbf\x59\x15\x2e\x39\x9a\x9f\xaa\xe2\xfb\x2b\x2e\x1a\xf8\xa4\x91\xf6\x23\xba\x0d\x61\xcc\xd6\x8a\x83\x67\x99\x94\x38\x04\x44\xf4\x44\x85\x33\xc9\x92\xae\x4c\xe1\x6c\x16\x81\xdb\x28\x9e\xf9\xd4\x52\x16\x13\x96\xf2\xc9\x03\xd9\xab\x17\xd8\xd3\x07\x69\x10\x38\x6b\x44\xe3\x71\x02\xd3\x9f\xf1\x1d\x3b\xff\x38\x95\x3e\xbe\xc5\x32\xc0\x51\x93\x21\x1a\x47\x61\xfa\x33\x93\xcb\x0a\xbe\x0b\x10\x80\xb7\x5d\xc0\xdb\x36\xe0\xd9\xba\x2d\x18\x61\x9c\x6a\x3a\x54\xb7\x2d\xac\x2f\x6f\xdb\x68\x61\x9f\x92\x3f\xa6\xed\x83\x67\x0f\x16\xc7\x7f\xae\x14\x2c\xae\xff\xad\xa7\x74\xfd\x47\xfd\x1b\x0e\xe1\x5d\x0a\x43\x3f\x01\x1d\x62\xb1\x66\x3e\xaa\xec\x4b\x0d\xbb\xa1\xeb\x6e\xb0\x58\x0a\x70\x95\xb3\xd4\x4b\x03\x9c\x53\x93\x46\x13\xe0\xe8\x1b\xaa\xd5\x3e\x8c\xc1\xd7\xaf\x5c\xba\xab\x5f\xc0\x70\x88\x35\xde\x70\xb8\x0f\x2e\xae\xc0\x03\x08\xc2\x24\xf5\xc2\x11\x8c\xc6\xa0\x1b\xc7\xde\x3d\x3e\xae\xce\x1e\x9a\xaa\x83\x6b\xa4\xb1\xfc\x06\x6f\x07\x3a\xe0\xfa\x00\x3c\xd4\x44\xb8\x7a\x03\xee\x9d\x31\x07\x41\x88\x8a\xf0\x81\x63\x63\xea\x25\x1f\x6e\x43\x1e\xe8\x30\xaf\xd5\x80\x7f\x31\xbf\x42\x30\x2f\xe6\x57\x07\xca\x54\xd3\xc0\x66\x3a\x40\xec\x39\xf9\x7a\xa0\x53\x33\x1c\x22\x76\x11\x86\x8e\xa2\x30\x49\xe3\xc5\x28\x8d\xf0\xee\x5a\x54\xbb\x7e\xb6\x08\x20\x42\xb8\xe3\x39\x78\xc3\x38\x4a\x26\x58\xf5\xba\x06\xf6\x41\x75\x38\x94\xeb\x67\x7f\xd5\xb1\xd7\x38\xc2\x9a\x2d\x36\x0f\x35\x64\xd9\x3d\x41\x9c\xc7\xbb\x68\x81\x5f\x01\x33\x85\x75\xec\xd1\x3a\x3d\x64\xc5\x92\xb7\xca\x0c\xb5\x76\x69\xad\xc1\x67\xb4\x7b\xbd\x09\xd2\x14\xc6\xd6\x48\x91\x16\xad\xcc\x97\xc3\x77\x91\x0f\xed\x81\x25\xed\x36\x0b\x47\x39\xed\x7e\x3f\x3c\xeb\x9f\x7e\x38\x39\x19\xbe\xeb\xfe\x32\x3c\x7f\x7b\x3a\x38\x7b\xfb\xe1\xe4\x10\x74\xc0\x56\xd3\x5c\xe7\xec\xe3\x60\x70\x48\x0f\xdd\xd5\xef\xc7\xef\xcf\x07\xa7\x3f\x75\x4f\x84\xe6\xfd\x93\x41\xf7\x74\xf8\xee\xc3\x8f\x67\x83\xe1\xe1\x87\x9f\xdf\x0f\xcf\x8f\xdf\x0d\x40\x07\x6c\x36\x4d\x15\x8e\xcf\xce\xbb\xef\xfb\xe8\x7b\x8b\x7e\xfe\xf9\xc3\xe9\xe1\xf0\x6c\xf0\xb1\x7b\xda\x3d\xff\x70\x7a\x86\x94\x12\xa8\xd6\x2e\xae\xbe\x3c\x5c\x56\x56\x2a\xa4\xce\xc9\xf1\xfb\xc1\xf0\xb0\x7b\xde\xc5\x59\x69\x87\xc7\xef\x0f\x07\xbf\x90\xb7\x3f\xe4\xaf\x3f\x1f\x1f\x9e\xbf\xe5\x9f\xdb\xe4\xf3\xfb\x0f\xef\x87\xbd\xd3\x41\xf7\x87\xe3\xf7\xdf\x0f\xcf\x3e\x76\xfb\x03\x0c\x05\x74\xc0\x59\x1a\x07\xe1\xa4\x31\x8e\xa3\x9b\x3e\x3d\x74\xad\xb6\xb6\x9b\x94\x77\xdd\x93\x93\xa1\xa1\xed\xe9\xe0\x7b\x0c\x1d\x09\xd7\x29\x9c\x0c\xee\xe6\x55\x0b\x86\x3a\xa8\x4c\x2a\xa6\x81\x93\x22\x79\xa4\x2f\x6c\x56\x49\x85\x17\xf2\x5f\x39\x8f\x23\x3a\x9b\x22\x66\x0b\xc1\x41\xf8\xcf\x02\xcd\x94\x38\x21\x1a\x22\xf4\x50\x93\x89\xc7\xba\x51\x2e\x11\x5f\x05\xcc\xbe\x78\xa1\x37\x51\x23\x73\x86\xc9\x62\x9e\xa5\x72\xe2\x0a\xb7\xaa\xb6\xaa\x03\x5a\x93\x90\xcd\x01\xa8\xf5\xb2\x80\x9e\x3a\x18\x5e\xe3\xe8\x83\x3a\x18\x8a\x67\x2c\x75\x30\x14\xec\x12\xd5\xab\x78\x88\x17\x80\x0e\xc5\xd6\x18\x79\xb3\x19\x09\x00\x40\xbd\x44\xbf\x64\x1a\x6e\x58\x24\x4c\x88\x56\x22\x94\xa0\x2a\xe4\x37\xad\x82\x48\x21\xaa\x26\xfe\xad\x55\x16\xe8\x47\x75\x85\x3f\xb5\xaa\x41\x18\xa4\x27\x41\x92\xc2\x10\xc6\x89\xb8\xbd\x25\xdf\x61\xe8\x5d\xcf\xa0\x5e\x3e\xbc\x41\x8a\x86\x8a\xbb\xaa\x7d\x1a\x72\x41\xd5\xf4\x48\x17\x05\x33\xf3\x92\x14\xeb\xcc\xc3\xe8\x36\x3c\x0f\xb0\xbb\x78\x53\xab\xe5\x8d\xd2\xe0\x33\x54\x45\x48\xfa\x5b\x8b\xd6\xa5\xab\xd3\x30\x1b\x93\x07\x45\xa0\x89\x40\x88\x7b\x0b\x89\x19\xce\xb8\x16\x26\x06\xf2\x88\x8b\x63\x79\x1e\x07\x37\x0c\x96\x04\xca\xbb\xa1\x9b\x10\x89\xc4\xc6\x30\x0a\x51\x13\xf6\x99\xaf\xb2\x19\xdc\x1b\xc4\xa7\x77\xd1\x67\x68\x04\x0b\x3f\x43\x33\xd4\x77\xac\x19\xad\x62\x83\x8c\x46\x60\x09\xc8\xf8\x8d\x79\x37\xe4\x1f\xe7\x4b\xc0\xfd\x71\xae\x42\x7d\x50\x35\x92\x36\x80\x7e\x90\x20\x71\x75\x07\xa5\x8e\x66\xd0\x8b\x39\x90\xaa\x16\x15\x4b\x86\x0f\x59\xb3\xd5\x4a\x1a\x07\x37\x3c\xb1\x85\x3e\xae\x5a\x5b\x71\x56\x52\xa3\x17\xaf\xe3\xac\x41\xb5\x82\x19\xe2\x47\xb7\x21\x07\xab\x31\xbf\x56\xb4\xbb\x64\x72\xe6\x84\xe0\xb2\xee\x84\x8f\xec\x8d\xe7\xfb\xdf\xb0\x2b\x09\x4c\x7b\x4c\x05\x66\xbd\x21\x34\xda\xfa\x84\xcc\x3a\x45\x59\x3a\x06\x98\xd2\x60\xb6\xf1\xec\x94\xd5\xc1\xca\xd4\x4b\xf8\x77\x64\xf8\x71\x6c\x13\x98\xee\x5b\x78\x0f\xc4\x03\x42\xbe\xf1\xc5\x4a\x93\xc4\x78\x73\x88\x67\x7a\x78\x10\x3d\x16\x72\x36\x1b\xa8\xd1\x3c\xf9\x27\xd3\x82\x56\x34\x24\xb6\x79\x30\x1c\x9c\x66\xc7\x94\x68\x53\x46\x0f\x9d\xbe\x7e\xcd\x8e\xac\x59\xb1\xe8\x7c\xfd\x50\xcf\x36\x00\xe1\xe2\x06\xc6\x48\x48\x89\x99\x9c\x7d\x19\x45\xe1\x38\x98\x2c\x84\x6f\x64\x90\x6a\x4b\x8f\x12\x3f\x68\x3a\x87\x77\xe9\xbf\xc9\x30\xa9\xf7\x64\x7a\x9c\x44\x42\x8f\x1c\x07\xec\xd4\x98\x0f\x4d\x87\x0f\x8d\x78\x5e\xa8\x5f\x82\xe1\xa0\x18\x98\x2c\x66\xa9\x21\x73\x30\xf9\x20\x65\x16\x88\xbd\x30\x99\x79\x2c\x72\xf3\x24\x08\xe1\x79\x44\x0c\xe6\xaa\xa4\x70\x26\x30\xad\x32\x62\x6a\x75\x32\xfc\x5c\x9e\xea\x0a\xe1\x6a\xf8\xa4\x14\x36\xc0\xbb\xb4\x4a\xa3\xfd\x84\x5b\x8f\x96\x33\x8e\xe0\x9a\xd3\xc8\x07\x49\xa0\x2e\x30\xdc\x1a\xb2\x90\x1f\x24\x44\xd9\x79\x95\xa3\xcf\x19\x0a\xd2\x47\xcb\xfb\xbf\x59\xb5\x46\x90\xfc\x1c\xe3\x23\x55\xdb\x1d\x2b\x61\xfa\x05\xe5\x3d\x0d\xe4\x5c\x43\xa6\xf9\x6a\x87\x13\xf7\x48\x07\x0d\x71\x60\x19\x48\x03\xe9\xb6\xf0\x40\xd6\x2d\x83\x22\x58\x6e\x2c\x68\xdb\x6f\x30\x20\xec\xc8\x5a\xbe\xd1\x13\x3b\xf1\x6f\x38\x36\xd8\x27\x39\x8a\x6f\xbc\x34\x85\xfe\x29\x9b\xdd\x14\xf0\x8d\x37\x17\x36\x58\x08\x83\x43\x05\xa1\xcf\x8d\x18\xce\x67\xde\x08\x56\x5d\x5b\xdf\x3a\x76\x1e\x51\xf4\x55\xad\xf1\x5b\x14\x84\x55\x7a\xe2\xd1\x08\x92\x77\x67\x3f\xe3\x08\xeb\x04\xbc\x01\x95\xcb\xf8\x32\xac\x80\x7d\x50\xb9\xd4\xfc\x0f\xd9\x3a\x25\xf7\xe1\x69\x17\x19\x87\x39\x22\x9b\x10\x39\x16\x16\xd1\xfb\x79\x66\x25\xb1\x06\xdf\xa9\x16\x52\xa2\xd5\x64\x91\xb1\x85\x6d\x27\xd7\x74\x90\x48\x9f\xd1\x49\x11\xdc\x9c\x06\x93\x69\x6a\xb8\xb8\x53\x6e\x46\xb2\xeb\x4d\xe9\x66\x44\xb8\xf5\x6c\x1e\x28\x97\xe3\xec\xfa\x52\x6a\xc0\xef\x34\xf1\xf2\xa3\xdc\xa5\x20\xaa\x38\xb1\xe2\x8a\xc7\xe3\x57\xbb\xfe\x6f\x8b\x24\xa5\xf7\x6b\xc2\x32\xd7\x8f\x66\x8e\xda\x7c\x49\x24\xd8\x85\x93\x47\x43\x4c\x1a\x16\x73\x47\xb4\x38\x89\x24\xc3\xf9\x6e\x68\x14\x99\x2c\xaf\x42\x27\xb0\x6b\x92\x17\x5f\x98\x0e\xa7\xae\x74\x63\x40\xa9\x2b\x1c\x55\x91\x35\x5c\xbb\xd3\xd6\x06\xe7\x75\x07\x04\x36\x7d\x65\xe4\x9f\xe9\x4d\x54\xb3\x27\x24\x1d\xb8\xc2\x18\x08\xcf\xf3\xe1\xdb\xc2\x95\xb1\xf1\xc4\x07\xce\x34\x9c\x5f\xbf\x4a\x63\x25\xc9\x1e\x97\x6c\x63\xe0\x2f\xfa\xf0\xf3\x34\x48\x61\x32\xf7\x46\xf0\x38\xf4\xe1\x1d\x1d\x4d\x7a\xde\x97\x40\x2f\x1e\x4d\xab\xeb\x97\xc9\xea\x77\xeb\x35\x7d\xa4\x8c\x10\x9e\x5b\x23\x6c\xe4\xbe\x70\x0f\x09\xa1\xb8\x6e\x24\x2a\xd7\x95\x4b\x04\xfc\xaa\x63\x1e\xe2\xa5\x8c\x4a\x2d\x43\x99\xc8\x9c\xc5\x75\x42\x16\x58\x23\xbe\xba\xd8\xdd\xc2\x9a\xcb\x14\xd0\x1f\x24\xef\xe1\x2d\x6f\x53\xec\xdc\xe5\x0f\x4c\xa0\x22\x2d\x04\xca\xc9\x45\xa6\xb9\xa5\xf4\x2e\xb2\x82\xcc\xd6\xc2\x93\x20\x5c\xe0\x74\x8d\xf6\x2e\xb3\x6e\x4b\x9b\x1b\x66\x06\x49\x85\xba\xb8\x4a\x9f\x1d\xb1\xc6\xe4\x9c\x0f\x3b\x8d\x85\xf0\x96\xb7\x62\x9b\x7a\x09\x4c\x4e\xd6\x81\x02\x6b\x95\x69\xc8\xad\xc9\x74\x8a\x64\x92\xd0\xdd\xdd\xa8\x37\x5b\xce\x5e\x8e\xfa\xb9\x39\xb7\x6e\xaa\x07\x9c\xf3\x00\x03\x7d\xea\xce\x66\x85\x8c\x85\x80\x9e\x28\x74\x67\xb3\x2e\x3e\xdb\xd4\x1e\xf6\x5c\xd2\x14\x20\x87\x88\xe6\xf3\x46\x69\x22\x85\x10\xfa\x49\x96\xe3\x48\x24\x4e\x39\x88\x94\xa4\x57\x6c\x66\x9c\x55\x0a\xc9\xa5\x64\x63\x02\xc9\x59\x30\x31\x63\xfa\x51\x14\xfb\x89\xf1\xc4\x50\xea\xc9\x88\xd5\xc3\x6d\xd1\x6e\x82\xb4\x24\xb5\xeb\x86\xb3\x2c\x56\x26\x9c\x8b\x5b\xdc\x7f\x0c\xee\x67\xda\x36\x8f\xe0\xbf\x68\x5e\x89\xcb\x1e\x2d\x6c\x99\x0b\x91\x8d\xe0\xf6\xd7\xa3\x8a\x85\xb4\x28\x3c\xfa\x8c\x81\xf8\xa0\x8e\xbe\x43\x7a\x43\x7d\x58\x72\xb8\x48\x2e\xef\x75\x2e\x9e\xc2\x99\x87\x04\xf4\x3c\x62\x9e\x0b\x56\xb6\xd6\xa4\x63\x20\x12\xe3\x45\x7a\xf7\x96\xf9\x15\x98\xdc\xf9\x5e\xea\xa3\x41\xbd\x54\x64\xd1\xa3\x14\xbe\xee\x90\x24\x51\xf4\xcf\x57\x1d\x05\x8b\xd9\x05\x50\xbc\x54\x78\x30\x82\xcd\x01\x43\xab\xad\xa9\xe8\x4c\x60\x33\x5e\xb2\x45\x9f\x7b\x58\x92\x4f\x75\xb0\x66\xbd\x81\xad\xd5\xed\xb7\xb3\x82\xd4\x51\x1c\xeb\x1d\x7b\x6d\x4d\x9a\x58\x5f\xd7\x09\x61\xde\x75\x42\x4b\x6a\x35\xb0\x4a\xca\xe2\x68\x11\xfa\xac\xde\x4b\x50\x35\x5f\x02\xaf\x81\x56\xad\x8c\x4e\xe2\xbb\x1e\xb7\x1c\x62\x8b\x13\x15\x36\xae\x17\x69\x1a\x85\xd8\xb8\x2a\xe1\xd3\x49\xda\xce\x63\xfc\xef\x21\x89\x7c\xd0\x37\x62\x7e\xec\x4d\x94\xb9\xa1\x65\xda\x4b\xe8\x44\xea\xcf\x82\xd1\x27\xec\xa1\xc5\x2e\x23\x0c\xc4\x26\xd3\x60\x9c\xfe\x00\xef\xcd\x56\x46\x14\x9e\xa1\xef\x18\x92\x06\xc4\x99\x4d\x2b\x4b\x16\x33\xe2\x64\xe0\x2d\x81\xd1\xdc\xe4\xd8\x82\x70\x32\x83\x66\x74\xc0\x9c\xa4\xc5\x8a\xc8\x18\xfb\xc4\x10\x1d\x46\x8b\xeb\xa7\x42\xb4\xe1\x42\x74\x1e\x07\xf3\x62\x88\x54\x2f\x44\xcf\xf7\x4b\x6c\xb8\x05\xbd\x5e\x40\xaa\x8d\xb0\x97\xbe\x33\x94\xae\x5a\x24\x77\x32\xdb\xc5\xcb\x4d\xf4\x19\xca\x17\x2f\xe2\xd5\xa0\xfb\x2e\xa7\x10\x82\xc5\x5c\x06\x9f\xdd\xe2\x39\xa6\xd4\x71\x98\xc2\xf8\xb3\x37\x3b\x0f\x6e\xf0\x05\x4d\x02\x53\x56\xe4\x34\x9d\x33\x08\xd8\x7a\xae\x1b\xbd\x4b\x8a\x0f\x8e\xed\xb0\x25\xcf\xec\xb4\x33\xc9\x7e\x99\xf7\x74\x03\x61\xc7\x51\x68\x2c\xf0\x09\x14\xe7\xb6\x73\x64\x4a\x8c\x60\x66\x72\x17\x52\xf5\x99\xb2\xcb\xd7\xf5\xa2\xd1\x99\x48\xc6\xb9\x59\x95\x2a\x35\x07\xc2\xdd\x8b\xc9\x74\xb4\x68\xdb\x62\xdd\xc8\xb4\xa8\xbb\x1f\xf6\x3e\x9c\xd0\xcc\xf6\xfa\xea\x62\xdf\x03\x28\xf7\x72\xcb\x7b\x3f\xd8\xc9\x2a\xc7\xb2\x27\x1b\x26\xf3\xc5\x13\x3d\x52\xd3\xae\x03\xec\x28\x2f\x5a\x57\xb5\x0b\xc7\xe7\xe6\xd5\x53\x9d\xb1\x39\x91\xa8\x19\xe5\x97\xd8\x09\x4b\x2b\x68\x89\x6d\x4e\xc9\xd1\x23\xed\xcc\x23\x55\x44\xb2\x7e\xfe\x70\x7a\x78\x60\x68\x4b\x58\xf2\x73\x14\xfb\xdd\x94\x21\x59\x6a\xaa\x09\xcb\xfb\x5f\x97\x0b\x48\x78\xec\x5c\x38\x09\x42\xc8\xb9\x20\xdf\x63\x15\x66\x84\x6e\x72\x16\xe0\x06\x89\x71\xa4\x7e\x53\x55\x9c\x0d\xd9\x4b\x61\xb5\x56\x43\xb3\x08\x15\x57\x55\x3e\x08\x2d\x58\xcc\x98\xee\x83\xf5\xda\xe2\xbd\x49\x5d\xdc\x1a\x43\x3f\x20\xfe\xc8\x47\x71\x74\x73\xc2\x9a\x7f\xa4\xc9\xde\x19\xad\xaf\x8d\x2e\x9e\xe6\x31\x10\xed\x41\xf3\x5e\xcd\xee\x2f\x26\xf4\x49\x55\x80\x33\x95\x36\xd0\x01\x17\x74\x9b\xe0\x4d\xe0\x2f\x75\x90\xfd\xf1\xab\x96\xcf\x34\x23\x4a\xc9\x5f\xef\x1a\x47\x27\x6b\xf2\x87\x94\x5f\xc5\xf3\x2d\x23\xdf\xab\x59\xba\x74\xd1\xbc\x02\x6b\x42\x3f\x7e\xa9\xd5\x41\x6e\x9b\x96\xdc\xe6\x57\xf1\x02\x9e\x5a\x66\xb1\x70\xe5\x56\x7c\x97\x87\x6c\x9f\xfc\x5e\xa2\x3d\x5a\x10\x2d\x92\x33\xd3\x5a\x6e\x58\x3f\xde\x00\xb3\xce\x1f\xe0\x7b\xdd\xba\xb5\xe1\x45\xeb\x4a\xf7\x7a\x78\x1a\x63\x22\x5b\x19\x8d\xfa\xa3\x63\xd2\x20\xaa\xec\x5b\x57\x57\x42\x3a\xcf\x6b\x6c\x5b\x08\x8b\xae\x5a\x84\x4d\x7a\xbe\x92\x42\x09\x3b\xdd\x10\x0d\xc7\x66\xf9\xbb\x33\x65\x33\x58\x8c\x81\x68\x21\x32\x2b\x0f\x42\xd5\x79\x44\x17\x23\x1b\xc1\x8e\x70\x35\xc3\x99\x80\x2c\x0a\xda\x89\x9a\x43\x1e\x34\x60\xaf\x75\x03\xa3\x34\x53\x9d\x59\xb8\x1d\xb8\x0d\x41\xb1\x85\x45\xe4\x21\xdf\x0c\x54\x04\xf5\x5a\x4c\xe7\xee\xb8\x43\x2d\x66\xf0\x11\xe0\x16\x73\x8f\x10\x6c\x31\xf6\xc8\xb3\x57\x5e\x7c\xd1\x2e\x6b\xe0\x11\xb0\x79\xe6\x1d\xc3\xf5\xdc\xa8\xc8\x84\x98\x1b\xf4\x63\xaa\xc3\x7c\xea\x5c\x63\x51\x04\x4c\x2b\x07\x8c\xae\x24\x6c\x47\x1e\xa0\x8c\xb1\x92\x89\x99\x75\x47\x6d\x97\xc9\xbc\x18\x7e\x5c\xf5\x30\x48\xe6\x96\xf6\x75\xb2\x4d\x32\xdc\xd0\x16\x9f\x7f\xae\xf1\x47\x36\x82\x65\x06\x6a\x37\x02\xf8\xd8\x5e\x4f\x26\x1d\x47\xb7\xc9\xd5\x13\xea\x5a\x44\x92\x1e\xa2\x8c\x91\x3b\xd1\x3c\xfa\x4a\x86\x3b\x63\x17\xd9\x05\xe7\xb9\xb8\x14\xc0\x37\x8a\xc2\xcf\x30\x4e\x7f\x62\xb1\xc7\xd1\xec\x3c\xea\x4f\xbd\xd8\x1b\xa5\x30\x66\x77\xf6\xaa\x83\x30\x71\xf6\xd2\x4d\x7c\xa6\x70\x58\x3b\x7e\x53\x63\xf7\x05\xe1\x55\xb0\xcf\x43\x9e\x2b\x48\x86\x5e\x73\x08\x59\x7a\xdb\xc9\x09\x56\xbd\x28\x1c\xf7\xf4\xbc\x4d\x99\x9b\x22\xb2\x5a\x4a\xec\x34\xb3\xd0\xed\xb9\x67\xda\xf4\xe8\x89\xd3\x0b\x3a\xec\xa9\x13\x9b\xba\xd8\xb2\x01\xa4\x66\x79\xae\x8c\x98\xe4\x42\x06\x8a\xef\x88\x19\x58\x86\xe1\x40\x93\x9c\x0f\xec\x26\x27\x93\x8b\x35\xa1\xad\xd2\x63\x38\x4e\x7f\x0e\x7c\x48\x62\xc6\xb4\xad\x4c\xe6\x84\x62\xaf\x83\xa4\x06\xbb\xb7\x20\xe4\x5d\xea\x40\x4b\xbc\x42\xb0\xc4\x18\xf2\x33\xd1\x4c\x2a\x42\x87\xe8\x2b\x2a\x66\x38\xf8\xee\xc6\x06\x0b\xb0\x07\x2d\x72\x04\x50\xc0\xcb\x47\x47\xf2\xa1\x52\xf1\xf3\x5a\xab\x39\xd8\x59\xc5\x22\x0b\xb0\x41\x87\x2a\x39\x39\x0c\x13\x1e\xa8\x69\x36\x2c\x75\x64\xc7\xd0\x0b\x06\xf4\xaa\xf4\x7c\xd6\xa4\xc2\xf4\x18\x61\x62\xf1\xcc\xd2\x9d\x7f\x04\x9a\x48\x17\x9c\x14\x19\x2f\x70\x74\x21\x34\x91\x44\xa0\xdb\xc7\x01\xb8\x64\x8f\x3a\xe3\x04\x09\x42\x81\x14\xcd\x19\x9c\x7b\xb1\x97\x46\xb1\x45\xbc\xc9\x95\xa2\xcd\xd5\xcd\x30\x10\xd8\xe9\xb6\xf4\x60\x14\x1e\x10\xd7\xa0\xe8\x7c\x00\xce\x79\xe3\x82\xe5\x9e\x53\xab\xa0\xa5\xcf\xab\x82\xbc\x95\xa6\x5c\x11\xce\xd2\x19\xb1\x9a\xc3\x57\x6b\x3e\xc4\x62\x62\x05\xac\xa2\x65\x66\xab\x4d\x21\xd8\xe1\xd8\x7c\x0b\x59\x8c\x87\x20\x74\xab\xa2\x92\x5f\xd3\x25\x43\xd5\xef\xf4\x40\x9f\x5f\xeb\x73\x1e\xaf\xc9\x50\xf5\x95\x60\xd5\xa4\xfa\x57\x0d\x06\x25\xb2\x34\xf5\xb3\x18\xf5\x19\x31\x42\xca\x3e\x23\xa9\x70\x80\x9c\x74\x6a\x5b\x60\xe9\xbf\x8d\x62\x5f\x38\xbb\xe2\x7b\x62\xdb\xb1\xaf\xf3\xda\xe1\x42\x84\xd6\x48\x58\x72\x16\x6a\x3e\x68\xa7\x6f\xce\x3b\x15\x09\x94\xe8\x0b\x5a\x98\x07\xec\xb8\xe0\x8f\xe2\x82\xb4\xb1\x20\xdf\xbc\x38\x3b\xf4\xf8\xc9\x9b\x2d\x60\x72\x4a\x72\xad\xfb\xd5\x1a\x78\x03\x74\x76\x81\x7d\x50\x35\x94\xae\x9a\xd8\x51\xd3\x79\x5b\x80\x37\x06\xad\x22\x33\x68\xea\x49\xf1\x78\x54\x3e\x95\x60\xfd\x46\x80\x26\xc2\x87\x31\xad\xfe\x5a\x7d\x52\x34\x7f\x74\xc8\x89\xba\xe6\xbd\x5e\xec\xe6\x8d\xee\x96\x50\x83\x72\x52\x65\x3d\xcc\x92\x33\x5e\xa8\xe4\x1f\x3c\x7b\xa8\xca\xe9\x1a\x1a\xe2\x9f\x62\xfe\x19\x43\xb0\xbb\x0e\xcd\x9c\xf7\x44\x63\x9a\x25\xff\x49\xfb\x2f\xf6\xf4\xa9\x1c\x0c\x9e\xf3\xee\xa6\x35\x72\x5c\x1b\xf8\x02\xaf\x6f\x5a\x02\x41\x15\x11\xc4\x02\xb1\x5c\xe8\x87\x26\x76\x86\x83\x66\xe7\x3d\x28\xae\x51\xf4\x22\xd8\x7d\xbd\x5c\x30\xbe\x55\xee\x6d\x1d\xac\x18\x5c\x63\xcb\x44\x4f\xf2\x63\x17\xad\x17\x0e\x17\x74\x34\x3b\x55\x83\x5b\x37\x75\x9f\xeb\xfc\xfb\xfa\x15\x3c\x37\xf0\xc2\x81\xca\x50\xdb\x85\x57\x6c\x95\xa3\x9e\x75\xea\xf6\xdd\xd8\xfe\x88\xc0\xd8\x9c\xe1\x1d\x84\xfe\xb7\x1f\x5c\x83\x16\xd5\x8f\xae\xf0\xdb\x66\xc6\x73\x33\x6c\xd9\x97\x94\x8d\x3c\x29\xc8\xcb\xfd\x6a\x17\xb7\x5c\x49\xc8\xe5\x84\xe6\x3b\xc0\xba\x6d\x9a\xcf\xaa\xd3\x3d\xbb\xea\xc9\x65\x88\x15\xa2\xcd\xf2\xd7\x7a\xcb\x82\x86\xcd\x04\xd8\x03\x22\x49\x57\xf9\x75\xe5\xe3\xfb\x4c\x8e\xbf\x6b\xa6\x62\x8d\x11\x3a\x33\xec\xf3\x59\x84\xf4\xb4\xb3\xd2\xba\x98\xd8\x05\xc7\xfd\x6a\xae\xe8\xa8\x63\x53\x27\x4a\xf8\xb9\xb9\x77\x52\x1c\x7f\xeb\x8a\xbc\x20\x8a\x7e\xf9\xfa\x55\x88\xde\x15\x62\xc5\x5f\xbc\xc8\x82\xfe\x5f\xcb\x71\xb3\x9a\xf1\xa6\x74\xb6\x50\xec\x81\x45\x56\x8d\x77\x02\x9a\x10\x82\xb5\x0e\x20\x20\x9d\x97\x54\xd2\xa5\x9f\x13\x30\x15\xfb\xf2\x60\x79\x0a\x38\xfd\x26\xcc\x7c\xdf\x66\x0f\x0f\x15\xc5\x54\x0a\x01\x71\x91\x40\x0c\x0e\x8d\x08\xce\x28\x1b\x19\x7a\x4d\xcb\x8d\x9f\x9e\x28\xc2\x66\x03\x23\x29\x50\xd3\x2c\x6a\x36\x9f\x5a\x3d\xcf\xc4\xc5\xa2\x65\x31\x70\x37\xfe\x62\x06\x2e\x3b\x88\xce\x31\x6d\x59\xb5\x6a\x96\x80\x8a\x27\x7c\xe5\x89\xb8\xc9\xb5\x55\x0c\xbd\x3a\x28\x90\x84\x2a\xd5\x3d\x89\x05\xb3\xd8\x62\x15\x2b\x48\xc5\xbc\xb3\x62\x3e\xcd\x4c\x64\x38\x4d\xa0\x23\x10\xa8\xda\xda\x52\xca\x29\x63\xc6\x29\x52\x8f\x38\xeb\x9c\x46\xb7\x3c\x28\x44\xf5\x8f\x9c\x79\x49\x7a\x0a\x47\x51\xec\x43\x9f\xde\x17\xd8\x5c\x29\xc5\xaa\x8c\xbf\x56\xb8\x59\xba\xce\xb0\x5a\x21\x1d\xe1\x41\x6e\xf7\xe1\xe8\x8c\x77\xcd\xfc\xac\xb7\x0e\x23\x86\x49\xf0\x4f\x58\x1a\x86\xc2\x6e\x83\xff\xb5\x4c\x5c\x14\x12\xb0\x66\x90\x09\x71\xf4\x8a\x16\xa9\xcb\xc1\x5a\x26\x8e\xfa\x58\x37\xa5\x1d\x11\xe3\x5f\x4e\x7c\xa6\x51\x99\x1b\x32\xcc\x1a\x2e\x5d\xe9\xfb\xbb\x64\x80\xfa\x53\x2f\x9c\x40\xbe\x7c\x19\x20\xf0\x8b\x6d\x55\x66\xf4\x93\x7a\x15\xaa\xf5\xba\xd7\x20\x7e\x16\xf4\xba\x9d\x61\x1c\x3c\x9a\x30\x37\x08\x61\x1e\x40\xb0\x0a\x2a\xf3\x3b\xc3\xcb\x07\xb2\x60\x49\xfe\xe1\x8f\x84\xae\x27\x85\xf8\x2c\x4d\x12\x65\x0c\x1c\xb3\x89\x8f\x85\x64\xaa\xe7\x0f\x84\x98\xac\xbd\xd8\x08\x39\xa7\x74\x1e\x09\x39\xc3\x34\xcd\x63\xe2\x4b\x03\x86\x82\xe3\x66\x48\x74\x6d\x42\xea\x22\x2c\xf7\x26\x3f\xd3\xbe\x2a\x6c\xeb\x34\x7c\xe9\xd6\xa9\x35\xad\x77\x92\x6b\x80\x41\x27\xc8\x9a\x24\x5f\x35\x58\xb5\xb9\x2e\x52\xe4\x55\x6d\xc7\x43\x0f\x8e\x95\xc1\x0e\xc9\xe0\xb6\x6b\xf5\x88\x00\x9a\x47\x55\xe9\x39\x51\x2e\x2a\x16\xe4\x84\x7e\x95\x51\x8b\xd6\x29\x65\xc0\x0e\x5c\x17\x25\x78\x74\xcf\x71\x3e\x71\xb9\x7f\xc4\xdb\xe5\x65\x9e\x56\xe6\xd4\x6b\xc2\xce\x21\xa3\x4e\xf0\xbf\x8c\x2c\xb3\xb7\x15\x5a\x16\x17\x5b\xb6\x88\x2a\x7e\x2c\x7a\x58\xf4\xad\xf0\xa2\x05\x89\x86\xcc\x21\x67\xdd\x32\x1a\xf2\x4e\xcd\x0f\xc6\x63\x92\x2e\x93\xbc\x68\x60\x60\xac\xcd\xd4\x10\x1c\xa2\x10\x14\x29\x00\xd9\xd5\xe1\x9f\xa7\x10\xba\xfa\x4b\x22\x18\x1b\x3e\x9c\xa5\xde\xaf\xe6\x3b\x53\xf7\xfb\x19\x37\x8b\x59\x1a\xcc\x67\x01\x3e\xc6\x6e\x1d\x18\x01\x73\x67\x4e\x4c\x0d\xb6\x73\x1a\x87\x1f\xde\x0d\x0f\x07\x27\xe7\xdd\xa1\xc9\x29\x56\x82\x9a\x23\x69\x86\x59\x5b\x0c\xf1\xc7\xee\xf7\x4b\x20\x36\xae\x0f\x56\xaf\x52\xbb\xc8\xac\x76\x40\xc6\xf8\x97\x02\xe2\x0c\x16\xfc\x6c\x09\x64\x95\x1e\xe3\x31\x8e\xfb\x79\xb4\x18\x4d\xd9\x89\xb4\x6d\xf0\xb9\x72\xc3\xb5\x7f\x05\x98\xa2\x14\xfd\x0e\x93\x8b\xe6\x15\xf1\x0a\x2f\x85\xd1\xe0\xf9\xad\xce\x2e\x26\x6a\x1a\xf6\x35\x3b\xf6\x92\xc4\x32\xf9\x5b\x4e\xaa\xf3\xc7\x8d\xc0\x2d\x3b\x4e\xd4\x16\x67\xcc\x53\xb7\xcb\xc2\x0e\x32\xab\x62\xde\x22\x73\xfe\x5b\x36\xc7\x9b\x8f\xda\x1c\xe3\x59\xed\x21\x15\xfb\xe5\xd9\xdf\x56\x1a\xeb\x5e\x9a\x7a\xa3\x29\xfd\x67\x65\x1f\x6c\xd6\xf5\xe2\xc6\x6f\x89\xf6\x05\x81\xf6\x26\xb0\xf1\x5b\x12\x85\x2b\xfb\xa0\xbd\x45\xbe\x8e\x83\x14\xfd\xb7\xb2\x0f\xe4\x02\x02\x42\x28\x53\xdb\x6f\xd3\x4f\x8b\xd9\x2c\x19\xc5\x10\x86\xc2\xaf\x2b\xfb\xc0\xf5\xb9\x31\x4a\x10\xf0\xf6\x8e\xab\x0e\xc6\xaf\x43\x51\xc9\xd8\x25\x35\xe8\xf4\xf7\x23\xad\xc2\x9e\x5a\x81\xff\xb6\xb2\x0f\x76\xac\x1f\x09\xfe\x9d\x67\x0f\xc2\x5b\x14\x74\x80\x90\x35\x09\xef\xd2\x6a\x0c\x7f\x47\x23\xf4\x37\xb6\xab\x33\x64\x77\x97\x5b\x9c\xc2\x24\x9a\x7d\x86\xb8\x61\xed\xc0\x01\x5a\xac\x88\x30\x60\x6f\x48\xb4\x27\xb8\xf1\xe6\x17\x31\xfc\xfd\xea\xe0\xd9\xdf\x82\x71\xf5\x79\x35\xf0\x89\x2f\x09\x58\x5f\x27\x2f\x65\x60\xef\xc9\x70\x71\x73\x0d\x63\x10\xc5\x80\xe4\x07\x7a\xf6\xb7\xbf\xa5\xd3\x38\xba\xc5\x99\xa1\x07\x71\x1c\xc5\xd5\x95\xbe\x17\x86\x51\x0a\xc6\x41\xe8\x03\x22\x8b\xa0\xb2\x02\x56\x41\x0c\x7f\x07\xab\x60\xa5\xd2\x58\xa9\x1d\xf0\xae\x05\x3e\xa6\x56\x26\xb2\xf1\x09\xde\x4b\xd1\xbb\xf2\xe7\x1f\xe0\x7d\x52\x15\xf9\x43\x8f\x75\x50\xab\xea\x8d\x37\xaf\x99\x40\xc6\xa4\xe3\xa0\x63\x66\xc8\xc1\x33\x42\x6a\x83\xce\x1a\xad\x9e\x06\x10\x73\xad\xbd\x79\xa0\xce\xc9\xad\x02\x73\x12\x4f\x3f\x0d\xe1\x97\x95\xd0\xbb\x81\x2b\xfb\xe4\xd5\xce\x06\x9d\x87\xf5\x95\x1b\x2f\x08\x57\xf6\x57\xb2\x09\x58\x5f\x99\xc7\xc1\x67\x2f\x85\x2b\xfb\xc8\x3a\x78\x50\x49\xd8\x7e\x2a\x12\xd0\xf4\xe5\xf8\xe9\xd4\xcd\x43\xbe\x53\x14\xb9\x26\x38\xe4\xe4\x0d\xcc\xbd\x38\x81\x60\xec\x05\x33\xe8\xef\x83\xf5\x69\x74\x03\xd7\xef\x17\xbe\x17\xac\x7b\xf1\x68\x1a\x7c\x86\xeb\xf3\x38\xf2\x17\xa3\x34\x59\x6f\x37\x5b\x5b\xeb\x93\x28\x4d\xef\xd7\x93\x78\xb4\x3e\x09\xd2\xe9\xe2\xba\x31\x8a\x6e\x68\x03\xf2\xe9\xb7\x64\x3d\x8c\x7c\x38\x24\x44\x24\xeb\xb8\x6f\xeb\xb3\xe0\x7a\xdd\xf3\xfd\x28\x4c\xec\xaa\x04\xfc\x18\xc2\xbb\x39\x1c\xa5\xd0\x07\x69\xf4\x09\x86\xa0\xda\xda\x6f\xd6\x2e\xc3\x5f\xa3\x05\xb8\xf1\xee\x71\x62\x1d\xe0\x85\xc0\x9b\xcf\xe3\x68\x1e\x07\x5e\x0a\xc1\x2c\xf2\x7c\x18\x83\x34\x02\x53\x2f\xf4\x67\x10\xaf\x33\x60\x1c\xa0\xdf\xd0\x0a\x7a\x19\x7e\x05\x0d\xca\x5f\x8e\x0d\x7c\x41\xc5\xe8\x67\x4e\x3d\x3b\xf6\xc1\x38\xb8\x83\xfe\x01\x2b\x4f\xa3\xf9\x3e\x68\x1e\xa0\xc9\xa3\x70\x7c\xf7\xc9\x86\x3b\x53\xb3\xd9\xa8\x4b\x7a\x33\x6f\xf0\xf7\x9e\x8a\x94\x4c\x95\x72\x4a\x24\x05\x9a\x43\xc8\x46\xf3\x2f\x74\x6c\xcc\xd5\xd8\x3c\x86\x73\x2f\xc6\x29\x3e\x8f\xa2\xf8\x9c\xda\x95\x55\xa4\x4e\xea\x40\x48\x97\xc9\x4c\x18\xfc\x48\xa7\x5e\x2c\xd8\x18\x54\xb5\x91\x84\x9d\xeb\x97\xf1\x9b\xcb\x70\x7d\x52\x07\x95\xcb\xb8\x22\x1d\xf7\x09\xd5\x0f\x9e\x3d\x70\x53\xc4\x4c\x10\xe8\x58\x28\x15\x1f\x4f\x8a\xe6\xf7\x6f\xb1\x78\xc7\x55\xf8\xb9\x8e\x8f\x9f\xeb\x59\xe6\x32\xea\xb5\x22\x76\x04\x0f\xeb\xb5\x90\x1b\xf4\x58\xb2\xc9\x69\x1e\xb6\xd1\x2c\x98\x5f\x47\x5e\xec\x1f\x7a\xa9\xd7\x48\x60\x8a\xfe\xad\x56\x10\x21\x15\x1d\xbe\x31\x5f\x19\xe9\xb1\xb2\xcf\x86\x9f\x6d\xa0\x11\x4f\xd6\xe7\x33\x2f\x08\x4b\x22\x30\xd9\x82\x19\x6b\x05\x06\x61\xbf\x63\xfe\x97\x28\x0f\x5e\x92\x42\x95\x8b\x8c\x29\xf0\x73\x23\x49\xa3\x39\x12\x37\x6f\xe2\x89\xf7\x48\x24\xd9\xd2\x9d\xf0\xf6\x14\xda\x50\x7a\xe9\x68\xfa\x11\x01\x94\xcc\x72\x54\x4f\xda\x09\x90\x94\x72\x4e\x49\xd4\x46\x8a\xc9\x9f\x60\xa3\xa3\x2a\x53\x4a\x79\x2a\xe7\x8a\xa3\xf3\xf7\x2e\xf5\x62\xe8\x35\xf0\x64\x50\x72\x7d\xe2\x1a\x24\x95\x1b\x66\x41\xa5\x0e\x14\x18\x5c\x5e\xe3\x9b\xc6\xc8\x0b\x47\x70\x86\x36\x18\x92\xad\x5d\x40\xa6\x50\x15\x93\x5c\x69\x47\x10\x84\x29\x46\x11\x9c\x48\x22\xa8\x1c\xaa\x48\x7c\x57\xf9\xf0\x60\x97\x46\xba\x75\x2d\x42\x94\x26\xb8\x13\x83\xe0\x2e\x43\x96\xa0\x05\x04\x31\x44\xb2\x21\xfc\x29\x08\xeb\x4d\xf4\x19\xcb\x4b\x37\x86\xde\x8f\xa1\x0f\x63\x12\xc0\xbe\x88\x93\x88\x09\x2f\x19\x72\xd6\x11\x2e\x02\xe4\xf4\x72\x9e\xf9\x54\x56\xf0\xca\xc6\x1f\x3b\x93\xaa\xb1\xc7\xe3\x2a\xed\x26\x3f\xa9\x54\xaa\xf0\x73\x50\x47\x1d\xfa\xa8\x1d\xe5\x32\x0c\xd3\x5f\xc0\x1a\x68\x35\xe5\x13\x50\xa5\x0d\x79\x54\x2f\x6b\xf2\x6b\x7e\x93\x7f\xb2\xa8\x92\x4a\xab\xd9\x6c\xaa\x75\xc6\xd1\x68\xc1\xe3\xa1\x6c\x57\x37\xd2\xd4\x34\xf3\x4b\x71\x23\x33\x33\xcc\x59\x89\xb3\xcc\x59\x8b\x32\xcd\x59\x87\x30\xc9\x59\x85\x33\x45\xc8\x26\x53\x07\x9b\x92\x7a\x74\x49\x13\xda\x8d\x38\x3e\x0b\x32\x89\xdd\xac\x71\x0e\x05\x59\x8b\x12\x72\xec\xeb\x51\x71\x59\x56\x46\x94\x69\x33\xf7\x3a\xa1\x8a\x0a\xfe\x26\x2f\x0f\x1a\xe5\xa0\xa3\xf7\xc6\x76\x2c\xd0\x67\x0a\xc1\x72\x2e\xb0\xf1\x9f\x57\xf1\xfe\xf3\x2a\xde\x9f\xf6\x2a\x9e\xe4\x1c\xfd\x5b\x92\xfb\x9c\x5d\x5f\x72\x26\x28\xf0\x1a\x58\x5f\xcc\xe4\x69\x7e\x08\x4c\xa8\xc2\x5f\x9d\xad\x03\xf2\x48\xbb\xe1\x55\xfc\xe5\xde\xfa\x12\x1e\x07\xf5\xa5\xe7\x40\x85\x3a\x12\x4a\xbc\xb8\x0a\x7f\x6b\xf6\x8e\xf6\x7e\x95\x79\x38\x84\xde\x49\xee\x9f\x78\x29\x28\xe3\xf2\x29\x3a\xcc\x0d\x6f\xb3\x87\x3e\xc1\x37\x75\x60\xb5\x91\x4f\x16\xa9\xa5\xe9\x57\xaf\x55\x9f\xa2\x03\x46\x52\x1b\x37\x5c\x5a\xcb\xe6\xff\x13\x72\x57\x53\x20\x06\x69\x04\x59\xfc\x82\x54\x87\xc7\x2c\x14\x79\x65\xd6\x05\xc8\x60\x91\x79\xd7\x49\x34\x5b\xa4\xb0\x52\xb8\x35\x31\x04\x2a\xcd\xe2\x2d\xa8\x79\x51\x59\xdb\xdb\xdb\xdb\x83\x37\x45\x1a\xa2\x35\x14\x1f\xb8\xe1\xde\x57\x7e\x2e\x84\x0c\xa6\xdd\x34\x8d\x83\xeb\x45\x0a\xab\x15\x2f\x0e\xbc\xb5\x69\xe0\xfb\x10\xed\xef\x2a\x68\x84\xcd\x2c\x92\x66\xa6\xe1\xe1\x6c\x65\xbc\x64\x10\xc5\xfc\x72\x86\x7e\xc4\x94\x92\xec\x93\x03\xf2\xae\x88\xf5\xe6\xaa\x3d\xef\x92\xd7\xac\xa1\x53\x64\x27\x30\xba\x81\x69\x7c\x9f\xe5\xe6\x91\x19\x3b\x81\x69\x2f\x5a\x84\x7e\x10\x4e\xfa\xd8\x40\x3e\xa5\x66\x8d\x28\xdd\x0c\x08\xb3\x4b\x3b\x1d\xd0\x44\x1a\x94\x97\x33\x53\xb4\xdc\x5d\x4d\x96\xf0\x81\xc0\x7d\xde\xe9\x00\x05\x15\xcf\x57\x25\x5c\x9d\x2b\x58\xcd\xb3\x8c\x59\xd0\x32\x3c\x93\x8c\x70\x33\x5a\x81\x6b\xa8\x4b\xb6\xb7\xa3\xa9\x17\x27\xc1\x3f\xe1\x88\xf8\xc1\x54\x6c\xe3\x46\xc5\xa4\x2f\x7a\xd2\x29\x61\x46\x68\x25\xb5\x46\x1a\xc9\x6b\xa8\x04\xc6\x62\x42\x0a\x82\x62\x31\x22\x9f\x34\xb4\xe8\x3f\x46\xe4\x7f\x8c\xc8\xa5\x8d\xc8\x5c\x0b\x32\x88\x47\x8b\x99\x17\x9f\x04\x49\x5a\xd0\x84\x14\x5a\x58\x6d\x48\xa1\x4e\xf5\xc6\xbb\xd3\x23\x2c\x96\x33\x1b\x3d\x2c\x78\xe4\x31\x55\x2c\x84\x02\x70\xad\xb2\x94\xba\x42\x7f\x2b\x75\x66\xf0\x95\x2d\x69\x4b\x0a\xbd\x94\xac\x31\x4e\xd4\xd2\x06\x19\xee\xa8\xe6\x97\x25\x98\x65\x89\x0c\x2c\x84\xb7\xef\x4c\x6c\x06\x99\xbb\x4e\x57\xe3\x9d\xd4\x48\xd6\xc3\xa6\xa7\x7f\x78\x34\xb7\xd8\x8e\xba\xde\x52\x5f\x34\xeb\x23\x73\x0c\xff\x45\x90\xa5\xed\xc2\x7d\xa4\x41\x50\x13\x98\xf6\xef\x47\xb3\x60\x44\xd2\x92\x04\xb5\xfc\x6c\x3d\xa2\x30\x60\xd8\xa6\x55\xc7\x26\x03\xdf\xd0\x42\xb7\x09\xc5\xec\x71\x12\x51\x4a\x16\xcc\x82\x40\xde\xa5\xa0\x1f\xc1\x6b\x09\xb0\x69\xd0\x24\x21\x90\xa8\xc0\xf2\xc0\x41\x59\x47\x5d\x19\x2b\x32\xf8\x8b\x90\x70\xcc\xd7\x1d\x45\x5d\x01\x4a\xca\xa4\xcd\x90\xff\x99\x63\x3a\x8e\xe2\x01\xbe\x68\x2e\x3e\xa8\xf6\x0d\x0e\x30\xad\x67\x48\x29\x5e\x7b\xa3\x4f\x63\xed\xb9\x1b\x06\x2c\xd0\xd3\x15\x02\x35\x11\xc3\x50\x98\xa4\x7a\xd5\x6c\x9c\xf1\x72\x81\xa6\xfb\x10\xe7\xd3\x60\xa3\x3b\x6c\xd9\xc7\x37\x23\xb0\x4a\xb0\xe0\x17\x23\x87\xad\x5a\x1d\xb5\xcb\x7f\x8e\xef\x89\x37\x9d\xc6\x91\x42\x34\xc9\x6f\x27\x91\x4c\x41\xfa\x9d\x60\xae\x62\xc2\x0d\xe5\x34\x01\x16\x9c\x89\x09\x67\x9d\xac\xd8\x7a\x94\x76\x3e\x4e\xd0\x21\x6d\x8b\xe0\x9e\x2f\x94\x60\x84\xf2\x58\x25\xe5\xa0\x20\x07\xd2\xae\x82\x49\x19\x73\xb7\x35\xae\xf7\xc0\xa0\x92\xd5\x84\x24\x19\x48\x51\x6d\xe7\x82\x35\x81\xce\x4b\xe1\x29\xec\x33\xe8\x63\xcf\xad\x72\xfb\x49\xd2\x69\xb1\x07\x0f\x45\xc6\x25\x9a\x5b\xb7\x91\x45\x45\x50\xc4\xbf\xb6\x86\xf3\x01\x15\x93\xc7\xf9\x2c\x18\xc9\xbb\x58\x9a\x5a\xc4\x87\x33\x98\xc2\xbe\xe9\xf5\xa3\x20\x85\x37\x89\xf2\xde\x2d\x57\x17\x43\xa4\x7a\xda\x07\xe8\xdf\x57\xc0\x8b\x27\xf8\x60\x85\xab\x19\x30\x34\xac\x0a\x18\xde\xc5\x30\x00\x6b\xa0\x8d\x84\x8a\xb7\xba\x18\x8a\x89\xe1\xe4\xcd\xab\x85\x3e\x60\x7c\xff\x96\xac\x4d\x92\x64\xae\x89\x3d\xb4\x2e\x56\x45\x8c\x92\x42\xb6\x0b\x58\x95\x38\x5a\xc0\x92\x61\x74\x76\x24\x42\x2d\xdc\x20\x43\xf2\xe2\x05\xe1\xa5\x25\x0a\xc0\xba\x74\xd3\xa7\x80\xc1\xeb\x8c\x5d\x6b\x6b\xcb\xb1\x03\xac\xca\x24\x3c\x85\x65\x67\xb2\x3b\x45\x24\xcb\x8f\x1e\xcb\x00\x43\x46\x91\xc8\xa1\x9a\x8b\xd0\x12\x2d\xce\x58\x27\xf7\x97\x19\x50\x4e\xbd\x44\x52\xb1\x2f\xc2\xf4\x3c\xa2\x31\xbf\x2e\x90\x35\xe6\xef\xce\x61\xea\xcb\xa7\xa6\xe9\x56\x3b\x22\x06\x5b\x83\x99\x14\xff\x91\x07\x5f\xd2\x8c\x02\xf4\xfc\x97\x6b\x6c\x23\xc3\xfa\xdb\x91\x87\xd3\x02\xae\x88\x2e\x45\xd4\xe9\xce\xdb\x23\x53\x1c\xf5\x88\x66\x37\x75\x19\xbc\x23\x29\x9d\xb1\x66\x6d\x3f\xcb\xe5\xbf\xe2\x85\x2d\x4c\x6a\xd3\x67\x9d\xc3\xb5\x42\x4a\x7c\x1a\x8c\xd9\x41\x6b\x62\xd2\xe5\x23\x92\xf8\x95\x3e\x57\x65\xe4\xc3\xab\xd2\xa7\x87\x64\xee\xbc\x22\xa7\x91\xe4\x8f\xd7\x1d\x27\x37\x55\x07\xc5\x0a\x69\xc5\xd4\x3d\x88\x16\x29\x88\xc6\x20\xf6\xc2\x09\xd4\x4f\xf6\x64\xbc\xab\xfc\x09\x33\x53\xac\xb6\x82\x87\x7a\xd0\x62\x3e\x01\xc8\x18\x15\x84\x60\x16\x24\x29\xb8\x86\xf7\x51\xe8\x03\x6c\x51\x81\xa6\x1d\x31\x7f\xeb\x4c\x43\x28\x29\x28\xc2\xcf\x4c\xa3\x36\xdd\xda\x34\x61\x2f\xbd\xa3\x69\xcf\xbb\x45\x77\xd0\x13\xf1\xa3\xfa\xcc\xbb\x1e\x9f\x08\xef\xe6\x5e\xe8\x23\xe9\xe8\xa1\x3d\x30\x6f\x3a\xa2\x09\xd3\x98\x00\xac\x59\x04\x9a\xf5\x54\x82\xe3\xcc\xff\x9b\xcd\x60\xb1\x8d\xae\x40\x68\x6e\x3e\xa9\x51\x11\x55\xa9\x62\x32\x65\x07\x04\x05\xac\x48\xa9\x9e\xd5\xc4\x33\x73\xb6\x60\xf6\x4c\xd3\x2a\x35\xca\x37\x2e\x9e\x62\xfc\x8b\x68\x46\x65\xe9\x2b\xb4\xf3\xd1\x0d\xef\x55\x40\xeb\xfe\xc3\xb8\x66\x28\xa7\xef\x02\x25\x25\xb2\x7c\x29\xa7\x8f\x32\x14\xcb\xe9\xbb\xd8\x67\xcb\xf1\xfb\x5f\x2d\xf1\xc1\x61\x74\x43\x75\x36\x01\xf6\x31\x8a\xf2\xf2\x7b\x99\x9a\x54\xd1\xe8\x6a\x9b\x38\x7a\xba\x8c\xfe\x51\x97\x20\xc7\xa7\x39\x21\xe1\x42\xcb\xfb\x16\x84\x3f\x26\xa8\xd1\x97\x07\xf1\x00\xd4\x44\x8e\x98\xbe\x65\x84\x19\xe8\xbc\x22\x83\xea\xc5\x7d\x66\x5f\x21\x62\x1a\xc2\x36\x52\xd3\x42\x50\xb9\xc5\x25\xc7\xec\xef\xe1\x6d\xe1\x40\x51\x15\x02\x46\x39\x8f\xe6\x66\x00\x02\x2b\x2e\x60\x76\x85\x97\xdd\x8d\x1a\xf9\xf1\xa1\xf7\xdf\x83\xfe\xf9\xf0\xf8\x70\xd8\x3d\x3f\x3f\x3d\xee\xfd\x78\x3e\xc0\xc6\xa6\xd6\x73\x3a\x69\xa4\x72\xca\xee\x1c\x46\xc7\x70\x06\xbd\x44\x09\x1f\xd3\xaf\xc1\x85\xbb\xf2\x27\xe9\x44\xfe\xb2\x1b\x2d\x66\x3e\x40\x2b\x2f\xa3\xd0\xe3\xfd\xc3\xc5\xf7\x30\x05\x54\x4a\x0c\x57\x79\xe8\x87\x6c\x7d\x9e\x92\xf5\xaa\x68\x8f\x66\xd0\x0b\xf9\xeb\xac\xda\x65\xb4\x28\x18\x8b\x64\xaa\xd4\x28\x36\x3e\x99\x64\x16\x99\x0b\x82\xf7\x8b\xe2\x8f\x90\xcd\x5f\x25\x3c\x16\x87\xce\x18\x89\x18\x46\xf8\x77\x2d\xa1\x2c\x34\xdd\xed\x17\x65\x62\x1d\x04\x7e\x23\x65\x19\xc8\x5b\x4d\xc3\xf3\x37\x4b\x48\xb1\x34\x12\x79\xb2\xcc\xe8\x1f\xcd\xbc\x24\x79\x4f\x9e\xb7\x16\x3d\xa2\xd9\xf7\x20\x0c\x61\xfc\xf6\xfc\xdd\x89\xf0\x5d\x5e\xa4\x4c\x54\xb1\x08\xc3\xa2\x0c\x41\xc0\x7d\x2f\xf5\xd6\xa2\xeb\xdf\xd6\x02\xbf\x62\x69\x29\x0e\x06\x39\x8b\x62\x4b\x9e\x65\x2d\x30\xd3\x66\x5e\x02\x8d\x18\x2d\x4b\xe1\xe3\xc2\x1c\xbf\x51\x30\xc7\x88\x64\x7e\x48\xaa\x5e\x1c\xd7\x01\xe4\x49\x2b\xe9\x38\x79\x71\xcc\x13\xa3\xa2\x8f\x24\x2d\xaa\x18\x1f\x40\x9a\x63\x0b\x9c\xfc\x7a\xf0\xcc\xc6\xac\xef\x61\x08\xe3\x60\xa4\xf3\x07\xff\x82\x7f\xbf\xaa\x1d\x98\xdb\x5e\x2f\x42\x7f\xc6\x2e\xf9\xff\xbf\x00\x00\x00\xff\xff\xd0\x34\x07\xda\xad\xcc\x0b\x00") - -func staticJsBundleJsBytes() ([]byte, error) { - return bindataRead( - _staticJsBundleJs, - "static/js/bundle.js", - ) -} - -func staticJsBundleJs() (*asset, error) { - bytes, err := staticJsBundleJsBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "static/js/bundle.js", size: 773293, mode: os.FileMode(436), modTime: time.Unix(1503385152, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _staticJsGottyBundleJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\x79\x77\xe3\x38\xb2\x28\x88\x9f\xdf\x32\x33\xe7\xbc\x3f\x66\xdf\x57\x9a\xdd\x4f\x45\x96\x60\x99\xd4\xe2\x45\x32\xd3\x4f\x69\xd9\x95\x7e\xed\xb4\xf3\xda\xce\xae\x5b\xa3\x54\x67\xd3\x52\xc8\x62\x27\x45\xaa\x41\xc8\x4e\xb7\xa5\x3b\x5f\x7d\x0e\x56\x02\x24\x25\xbb\xea\x76\xdf\x99\xca\x92\x4c\x21\xb0\x04\x02\x81\x40\x44\x20\x40\xec\x4c\x97\xc9\x98\x44\x69\xe2\x80\xfb\x22\x9f\x2d\xe2\x44\xee\x4b\x34\x75\xf0\x30\x1a\xb9\x18\xc8\x12\x27\x16\x7d\x6e\xc0\xf7\x45\x8a\x49\xd6\x7b\x0c\xb1\x95\x06\x34\x29\x78\x89\xba\x11\x8a\xbb\x3b\x3e\x12\xc0\xee\xcb\x7a\xdd\x13\x85\x80\x16\x1a\x87\x71\xec\xa4\xb2\x2c\x4a\x51\xfe\x4c\x5c\x94\x36\xe2\x60\xc7\xcb\xd3\xd6\xb4\x6e\x1c\xbc\xac\x7b\xa4\x31\x0f\x00\x91\xc6\x38\xc0\x88\x34\xa2\x40\x47\x55\xd6\xbf\x46\xa4\x31\xd1\x20\x08\xa3\xc8\x7d\x21\x8d\x94\x3e\xba\xab\xd5\xf5\xfd\x5f\x60\x4c\x1a\x13\x98\x46\x09\x7c\xc2\xe9\x02\x30\x79\x66\xd9\x5e\xc6\x69\x32\x8d\x1e\x96\x38\xbc\x8f\x81\xa1\x9f\x2c\xe7\x20\x7e\x79\xe8\x01\x48\x37\x5a\xbb\xb4\xfe\xc4\x68\x99\xa3\x07\xb5\x1a\x34\xbe\x7e\x85\xec\x63\x3a\x59\xc6\x70\xa2\x72\xe4\xa8\xd1\x46\xc3\x65\x4c\xd6\xdd\x0a\xa0\xa2\x10\x69\x4c\x1c\x8c\xec\xd0\x46\xd8\x45\x98\x36\x97\xea\xdd\x21\xaa\x88\xe8\xc9\x02\xa7\x24\x25\xcf\x0b\x68\xcc\xc2\xec\xfa\x29\x91\x7d\xe2\x54\xa6\x05\x68\x1d\x8b\xc0\xb6\x11\x71\x48\x23\x0b\x9a\x87\xee\xda\x19\xea\x55\x22\xec\xbe\xd8\xcb\x0c\xac\x8c\xe0\x68\x4c\xec\x9e\x1a\xf7\x48\x76\x90\x04\x64\x16\x65\xbd\x68\xea\xec\x38\xf4\xc9\x8a\x92\x8c\x84\xc9\x18\xd2\xa9\x15\xb9\x92\x25\x12\x78\xb2\x22\x27\xc4\x0f\xcb\x39\x24\x24\x1b\x7a\x23\x94\xff\xf0\xf5\x1f\xcd\x91\xdb\x23\x8d\x7b\x9c\x3e\x65\x80\x83\x5b\x3a\xa8\xb4\xb6\x38\x88\xc4\x03\x5a\x36\xce\x1e\x21\x21\x67\xf3\x88\x10\xc0\xbc\x37\xb4\x65\x17\xd9\xc9\x72\x7e\x0f\xd8\x0e\x02\xda\xed\x74\x6a\x41\xad\xe6\x40\xf0\x32\x4e\xe3\xac\x6b\x34\x4e\xab\xef\x1a\x18\xcc\xc2\x64\x12\x03\xee\xea\x98\xac\x5d\x04\x01\xac\x56\x2f\x6b\x24\x68\xfa\x0d\x9e\x33\x27\x92\xe3\x95\xb9\x8d\x69\x8a\xcf\xc2\xf1\xcc\x51\x54\xc3\xee\x4b\xb2\x8c\xe3\x20\x80\x21\x1e\xd1\xe6\x87\x78\x14\x44\x8d\x74\x41\xa1\xd9\x10\x8f\x50\x34\xc4\xa3\x9d\x20\xc8\x6b\xd1\x33\x0e\xf1\xc8\x75\x11\xa1\xcf\x34\x61\xed\xa2\xc3\x20\x08\xa0\x31\x4e\xe3\x14\x67\x8d\x18\x92\x07\x32\x3b\x91\xbf\x73\xc0\x38\x4d\xc6\x21\x71\xa2\xc6\x57\x91\x90\xc5\xd1\x18\x9c\x43\xd7\xed\xfa\xfb\xff\x9a\x1a\xfc\x7d\x5a\x85\xf7\xa6\x2a\x78\x09\x0f\xed\x36\xdd\x8d\x08\x51\x20\x2a\x94\xd8\x6d\xd2\x36\x2a\x3a\x4a\xc9\xf2\x76\x44\x37\x55\xed\x22\xca\x1e\xc5\x7a\x78\xa2\x18\x17\x2a\x3d\xe8\xcf\x45\x88\x21\x21\x01\x34\xee\xd3\xc9\xf3\x6a\x05\x22\x61\xb5\x72\xfa\x27\xfd\xc6\x03\x90\xb3\x18\x18\x77\xbc\x7f\xbe\x0b\x1f\xae\xc2\x39\x38\x36\xcd\x6a\xbb\x43\x6f\xd4\xa5\x03\x9f\x37\x26\x9a\xca\x68\x35\x0f\x90\xce\x81\xe0\x67\xca\x7b\x0c\x4e\x19\x30\x00\xf6\xc7\x80\xfb\x02\x2e\x13\x82\xa1\xaa\x2e\x2f\x38\x42\x74\x4e\x33\x7e\xad\xd5\x78\x37\x12\xc7\x9e\x84\x24\xb4\x73\x88\x40\xe4\xf9\x3e\xcc\x20\xf0\xc4\x8f\x49\x94\x2d\xe4\x8f\xef\x2a\x55\x3e\x8c\x97\x38\x4b\xf1\x2d\x09\x09\x98\x49\x1f\xa2\xc9\x04\x92\x60\xc7\x97\x9d\x4b\x1e\x01\x93\xb3\x34\xe6\xbf\xff\xba\x84\x25\x30\x39\x42\x7f\x65\x63\x9c\xc6\xf1\x5d\xaa\x1a\xe2\x09\xef\x53\x42\xd2\x79\xa0\x3a\xb1\x2b\x2b\x5b\x66\x24\x9d\xff\x01\x9e\xd9\xac\xfe\xc0\x91\x0f\x28\x29\x75\x0c\xde\xc7\x51\xf2\xed\x22\x21\x80\x1f\xc3\x58\x83\x86\x8b\x45\x1c\x8d\x43\x3a\x88\x7f\x80\xe7\x45\x38\x51\x48\x6a\x90\x53\x56\x85\x82\xa4\x38\x7a\x88\x92\x8f\xe9\x04\x54\x52\x94\x64\x80\x89\x91\xf4\x84\xc3\x45\x88\xd3\x65\x32\xe1\xc9\xa2\x33\x49\x8a\xe7\x06\x06\xe3\x59\x88\x33\x20\x5a\xca\x43\x45\x52\x0c\x8f\x10\x2b\xa2\x72\x78\x16\x0c\x69\x0e\x31\xe2\x13\x18\x5f\xa6\xe3\x90\xa4\x58\x0c\x8f\xef\x7d\x4c\x97\x99\x60\xcc\x47\xd2\xf4\xcc\xdf\x2d\xe3\x37\x47\x4b\x4b\x98\xd3\x47\x46\x52\xc1\x38\x19\x24\x93\xf3\x74\xbc\x14\x3f\x97\x64\xaa\xe5\xce\x1e\xb0\xf6\x6b\x89\xbf\x3f\x12\xed\x37\x70\xa6\x97\xc8\x47\xf1\x04\x43\x22\xd8\x11\xa6\x18\xb2\xd9\x2d\x09\x31\x31\x52\xce\x92\x89\xa8\x3a\x7c\x84\xc9\x3f\x6b\xcf\xbf\x68\xcf\xa7\x39\x5f\x43\x38\xa1\x2b\xaa\x22\xf4\x13\x8e\x88\x91\x30\x81\x69\x9f\x10\x1c\xf8\x2d\xff\xb0\x9d\xb3\x27\x4b\xd3\x33\xa8\x99\x1c\xce\xb3\x60\x38\x52\x19\xe9\x44\xfe\x44\x53\xe5\x30\x2c\x30\x4c\xa3\xef\x8a\x6f\x17\x69\x46\xf4\xdf\x51\xb2\x58\xe6\xfc\x08\x4f\xd6\xbc\x71\xa1\x25\x89\x35\x47\x36\x96\x89\x4c\xcf\x8d\x4f\xec\x87\x53\xaa\x03\x69\x05\x30\x24\x13\xc0\x20\x10\x97\xbf\x56\xab\x9c\x63\x32\x88\x81\xad\x28\x1f\xc3\x24\x7c\x90\x39\x8b\xa9\x7a\x09\x3a\x43\xa2\x69\x24\xb3\xaa\x9f\xab\x15\xc5\xeb\x6b\xe3\x52\x26\xe4\xf4\x85\xf7\xcb\xe9\x14\xb0\xa2\x12\x4b\xbb\xa0\x9a\xc2\x03\x86\x2c\x53\x73\xe1\x7b\x3a\x9d\xde\x42\x42\xee\xd2\xd3\x90\x8c\x67\x9f\x17\xda\x2c\x89\x08\xdc\x92\x74\xb1\x80\x7c\xea\x65\x4b\x8c\xd3\x87\x90\xc0\xd7\x59\xf4\x30\x53\x04\x8d\xa3\x04\x32\x46\xa4\x69\xe3\x34\xc2\xe3\x65\x1c\xe2\xcb\x28\x23\x8e\x26\x25\xee\xc3\xf1\x37\xb7\x37\x4d\xb1\xc3\xb5\x27\x25\x2e\x7a\x78\x77\xb7\xe7\xe6\xf5\x34\x16\xcb\x6c\xc6\x4b\xde\xc7\x61\xf2\xed\x32\x4a\xc0\x71\xdd\x5e\x25\x99\x84\x94\x2c\x26\x37\x32\x20\x9c\x02\x4e\x5e\xb1\x18\x21\x12\xde\xab\x89\x43\x96\x0b\xda\xc5\xcc\x11\xb0\x65\x06\xf8\x96\xa1\x1b\x25\x0f\xc1\x8e\xbf\x56\x6a\x51\xca\xb5\x26\xaa\x59\xf6\x31\x0e\x9f\x1b\x51\xc6\xfe\x3a\xe0\xae\x56\x0e\x04\x43\x18\xd1\x25\xaa\xa4\x35\x80\xfb\x02\x8d\x70\x32\x61\x13\x96\xd2\x04\x12\x8a\x14\xad\x69\xb5\xda\xf1\xdd\xb5\x9b\xb7\x91\xe5\x6d\x40\x03\xc3\x3c\x7d\x84\x8d\xc5\x54\x21\xa1\x21\xaa\xdf\xd8\x71\x5f\xa4\x2c\xcf\x08\x5e\x8e\x49\x8a\x03\x58\xe3\x5c\x6b\x0c\x34\x0d\x12\x81\x96\x4e\x07\x10\xe7\x35\x87\xbc\x66\xa1\xec\x4a\xcd\xad\x11\x65\x1f\xc3\x71\xad\x46\x1a\x61\x4c\xfe\x00\xcf\xb5\xda\x0e\x69\x8c\x09\x8e\xe5\xf3\x1c\x48\xf8\x07\x60\x6b\xac\x56\xe4\xf6\xe7\x28\x99\xa4\x4f\x99\x5e\xb0\xb2\x9c\x50\x8a\xed\x6f\xf0\xbc\xa0\xac\x4a\x75\xbe\x06\x45\xef\x04\x77\x71\xad\xe6\xec\x30\x5d\xed\x34\x9d\xc0\x6a\xa5\x1e\xdf\xb5\x0f\x34\x92\xc4\x52\xc3\xe5\x26\x0a\x1c\x1f\xfb\xfb\x2b\x72\x7c\x7c\xb8\xc2\x54\x9d\xa5\x13\x6b\x27\x88\x1b\x5f\xc7\xe1\x78\x06\xc3\x54\x99\x37\x5a\x92\x62\xd4\x0c\x25\x28\x44\x33\x34\x46\xcb\xc0\xdf\xf3\xd0\x24\xd8\xf5\xd1\x22\xf0\x7a\x8b\xe3\xa8\xf1\x68\xe8\x34\xbd\x45\xbd\xce\x4c\xa6\x2c\x50\xa0\xe1\x62\x84\x92\x80\xab\xc5\x01\x57\x47\x03\xaa\x80\x22\xaa\x77\x39\xe3\x20\x6e\x4c\x22\xae\x55\x8b\xb1\x67\xad\xb9\xae\xfb\x32\x09\x16\xbd\x7b\x0c\xe1\xb7\xf5\xf8\x78\x59\xab\x39\xcb\x60\x8c\x26\xc1\xc2\x5d\x97\x91\x0d\x26\x79\xdf\x67\x9a\x65\x24\xf4\x43\x45\x2e\xff\xa0\xf0\xfb\x50\xff\xbd\xde\xfb\x71\xe7\xdf\x59\x3f\x5a\xdf\x09\xe0\xb9\xe5\xcc\x08\x59\x64\xdd\xbd\xbd\x64\x31\xff\x0b\x65\xa6\xf9\xde\x22\x1c\x7f\x0b\x1f\x60\x8f\x65\x70\x69\xd6\xff\x40\x35\xb1\x24\x03\xeb\xe3\xc5\x1d\xfb\xfd\x08\x38\xa3\x58\x34\x1b\x87\x0d\x9f\xa6\x04\x01\xcb\xbd\x77\x79\x71\x7a\x76\x75\x7b\x16\x04\x34\xf1\x34\x5d\x3c\xe3\xe8\x61\x46\x2c\x67\xec\x5a\x4d\xcf\x6f\xef\x36\x3d\x7f\x1f\x59\xb7\xe9\x12\x8f\xe1\x32\x8c\xb0\xf5\x09\x47\x8f\x21\x01\xeb\x34\x9d\x2f\xc2\xe4\x39\xc7\xe7\xe9\xe9\xa9\x91\xb1\x7c\x71\x18\x61\x8a\x98\x5b\x59\x67\x93\xd6\xd9\x42\xd6\xe9\x0c\x47\x19\x49\x17\x33\xc0\xd6\x7f\x84\xe9\x14\x83\x56\xd9\x43\x44\x66\xcb\x7b\xd6\xbb\xf1\xec\x2f\x7f\xd9\x63\x55\xd1\xcf\x27\xc0\xf3\x28\x63\x7d\x89\x32\x6b\x06\x18\xee\x9f\xad\x07\x1c\x26\x04\x26\xc8\x9a\x62\x00\x2b\x9d\x5a\x74\xb9\x7f\x00\x64\x91\xd4\xa2\x38\x2e\x00\x67\x54\x54\xdc\x93\x30\x4a\xa2\xe4\xc1\x0a\xad\x71\xba\x78\xa6\xf5\xa5\x53\x8b\xd9\x50\x59\x3a\x25\x4f\x21\x06\x2b\x4c\x26\x56\x98\x65\xe9\x38\x0a\x09\x4c\xac\x49\x3a\x66\xc6\x09\xd3\x6a\xac\x69\x14\x43\x66\x39\x64\x06\x96\x7d\x2b\x4a\xd8\x2e\x6b\x67\x02\x61\x4c\x2b\x8c\x12\x8b\x82\x25\xd4\x7a\x8a\xc8\x2c\x5d\x12\x0b\x03\xb7\xe8\xa2\x34\x41\x56\x94\x8c\xe3\xe5\x84\x62\x22\xc1\x71\x34\x8f\x44\x23\xb4\x38\xa3\x58\x46\xeb\x23\xa9\x45\xb5\x02\x86\x30\xb2\xe6\xe9\x24\x9a\xd2\xbf\xc0\xfa\xb7\x58\xde\xc7\x51\x36\x43\x16\x65\x56\x1c\xdd\x2f\x09\x20\x2b\xa3\x89\x6c\xf8\x11\xed\xcd\x5e\x8a\xad\x0c\x62\x86\xdc\x38\x5d\x44\x90\xf1\x4e\xe7\x38\xb2\x6c\xb4\xa1\x05\x25\x2e\x11\xe4\xca\x68\xca\xd3\x2c\x9d\x9b\xfd\x89\x18\x56\xd3\x25\x4e\xa2\x6c\x06\xac\xd8\x24\xb5\xb2\x94\xb5\x4b\x2d\x36\x9a\x42\x4b\x4c\xd3\x38\x4e\x9f\x68\x1f\xc7\x69\x32\x89\x98\xd2\xdf\x95\xc3\x78\x37\x03\x2b\xbc\x4f\x1f\x81\xf5\x8b\xf3\x47\x92\x92\x68\xcc\x07\x80\x0d\xc9\x22\x1f\x6a\x01\xca\x66\x61\x1c\x5b\xf7\x20\xe8\x07\x13\x2b\x4a\x68\x6d\x34\x55\x76\x0d\x53\x3c\xe8\xcc\x25\x51\x18\x5b\x8b\x14\xb3\x86\x8b\x5d\x6e\x28\x44\x3e\x9c\x59\xb7\xd7\xe7\x77\x3f\xf7\x6f\xce\xac\x8b\x5b\xeb\xd3\xcd\xf5\x1f\x2f\x06\x67\x03\xcb\xee\xdf\x5a\x17\xb7\x36\xb2\x7e\xbe\xb8\xfb\x70\xfd\xf9\xce\xfa\xb9\x7f\x73\xd3\xbf\xba\xfb\xc5\xba\x3e\xb7\xfa\x57\xbf\x58\x7f\xb8\xb8\x1a\x20\xeb\xec\x9f\x3f\xdd\x9c\xdd\xde\x5a\xd7\x37\xb4\xb6\x8b\x8f\x9f\x2e\x2f\xce\x06\xc8\xba\xb8\x3a\xbd\xfc\x3c\xb8\xb8\xfa\xc9\x7a\xff\xf9\xce\xba\xba\xbe\xb3\x2e\x2f\x3e\x5e\xdc\x9d\x0d\xac\xbb\x6b\xd6\xa6\xa8\xed\xe2\xec\x96\xd6\xf7\xf1\xec\xe6\xf4\x43\xff\xea\xae\xff\xfe\xe2\xf2\xe2\xee\x17\x44\xeb\x3a\xbf\xb8\xbb\xa2\x35\x9f\x5f\xdf\x58\x7d\xeb\x53\xff\xe6\xee\xe2\xf4\xf3\x65\xff\xc6\xfa\xf4\xf9\xe6\xd3\xf5\xed\x99\xd5\xbf\x1a\x58\x57\xd7\x57\x17\x57\xe7\x37\x17\x57\x3f\x9d\x7d\x3c\xbb\xba\x6b\x58\x17\x57\xd6\xd5\xb5\x75\xf6\xc7\xb3\xab\x3b\xeb\xf6\x43\xff\xf2\x92\xb6\x46\xab\xeb\x7f\xbe\xfb\x70\x7d\x43\x11\xb5\x4e\xaf\x3f\xfd\x72\x73\xf1\xd3\x87\x3b\xeb\xc3\xf5\xe5\xe0\xec\xe6\xd6\x7a\x7f\x66\x5d\x5e\xf4\xdf\x5f\x9e\xf1\xd6\xae\x7e\xb1\x4e\x2f\xfb\x17\x1f\x91\x35\xe8\x7f\xec\xff\x74\xc6\x4a\x5d\xdf\x7d\x38\x63\x9d\xa4\x39\x39\x9a\xd6\xcf\x1f\xce\x68\x2a\x6d\xb5\x7f\x65\xf5\x4f\xef\x2e\xae\xaf\x68\x7f\x4e\xaf\xaf\xee\x6e\xfa\xa7\x77\xc8\xba\xbb\xbe\xb9\x53\xa5\x7f\xbe\xb8\x3d\x43\x56\xff\xe6\xe2\x96\x52\xe6\xfc\xe6\xfa\x23\xeb\x29\xa5\xee\xf5\x39\xcd\x75\x71\x45\x8b\x5e\x9d\xf1\x8a\x28\xe5\xcd\x01\xba\xbe\x61\xbf\x3f\xdf\x9e\xa9\x3a\xad\xc1\x59\xff\xf2\xe2\xea\xa7\x5b\xeb\xe2\xaa\x38\xa0\x74\x94\xf7\xfe\x5d\xb5\x9b\x89\x20\x3b\x77\x11\xd9\xe8\xe5\x31\x8c\x97\xd0\xdd\xf1\xd6\x2e\x73\xa0\x8d\x03\xec\xf8\x1d\x17\x2d\xe9\x5f\x17\x4d\x02\xec\x34\x9b\x2e\x5a\xd0\xbf\x2d\x17\x4d\xe9\xdf\x8e\x8b\x1e\xe8\x5f\x17\xcd\x69\xae\x7d\x17\x3d\xd3\xbf\x87\x2e\xba\xa7\x7f\x8f\x5c\xf4\x95\xfe\x3d\x70\xd1\x29\xcd\xe6\xb9\xe8\x89\xfe\x6d\xbb\xe8\x36\xc0\xce\x91\x8b\x1e\x29\xd8\x73\x51\x3f\xb0\x97\x09\xc7\x6f\x62\xef\x48\x57\xca\x13\x5b\x98\x4f\xf8\x9f\x86\x14\x44\xcc\xe4\xed\x25\x4e\x54\xf0\xca\xb8\x28\xd2\xfc\x4f\x80\xc3\x0c\x98\x9e\x5e\xf2\x6f\xed\x76\xfc\x66\x4d\xd7\xde\x57\x1d\xdf\xaf\xe9\xba\xfd\x1a\x45\x0d\x12\x26\x0f\xe9\x29\xb7\xdf\x87\xf6\xef\x9a\xd0\x6a\xb7\xf6\x6d\x64\xff\x6e\x3c\xf6\x3c\xcf\xa3\x4f\x6d\x38\x0a\x3d\x9e\xd6\x0e\x45\x5a\xab\xbd\xdf\x09\xdb\xf4\xe9\xa0\xd3\xf1\x0e\xee\xe9\x93\xb7\x7f\x74\x78\x14\xd2\xa7\x49\x6b\x72\x30\x9e\xd2\xa7\x4e\xa7\x73\xd0\x69\xd1\x27\x98\x36\x8f\x9a\x47\xf4\xe9\x30\x84\x66\x8b\x95\x9d\x8e\xe1\xa8\xcd\xf2\x1d\x34\x8f\xa6\xbc\x44\x38\x39\x98\x86\x87\xbc\x0d\x68\x42\x93\x95\xa5\xff\x8d\xed\x11\x8a\xa4\xab\x41\xeb\xad\x5a\x79\x41\x7a\x1e\x53\xae\xc1\xda\xbf\xb3\xeb\xc4\x01\xb7\x4e\x1c\x4c\xbf\x22\x57\x53\x51\x48\xbe\x4c\x3b\x10\x40\x83\xa4\xb7\x04\x47\xc9\x03\xf3\xca\x08\x7d\xe2\xb8\x79\x62\x7b\x76\x1d\xba\xc0\xfd\xa1\x28\x0d\x0c\x82\x09\x47\x88\x8b\xb2\x60\xe8\xa1\xa3\x0e\xf2\x5b\x1d\xe4\x1f\x74\x50\xd3\xef\xa0\x66\xa7\xc3\x95\x18\x1c\x78\x3d\x7c\xdc\xf4\xf7\x7b\xb8\x5e\x77\xc1\xc9\x86\x78\xaf\xb5\xff\xef\xf7\x57\xde\x08\xd1\xe7\xfc\xf1\xdf\xef\x8f\x5c\xbd\x48\x5b\x96\x08\x0e\xeb\xbe\xf7\x23\x46\x19\xca\x5c\xe9\xb3\x4c\xd7\x0e\x65\x05\xe1\xa9\x09\x22\xd3\x39\x43\x41\x8f\x15\xb4\x12\x4a\x15\x20\x42\x2d\x13\xac\x8a\xa1\x34\xf0\x7a\xe9\x71\xb3\xb3\xdf\x4b\x69\x9b\x01\xb3\xbb\x2e\x12\xe2\xe0\x61\x3a\x6a\x30\x51\xcb\xc9\xe3\x22\x3a\x01\x08\x27\xf1\x10\xde\xbd\xf3\xf7\x6b\xcd\x4e\x07\xc1\xbb\x77\x87\xec\xa1\xd9\xe9\xd4\x60\xa4\xf0\x24\x1c\x4f\xe9\x91\x63\x2e\xc3\x14\x67\xdd\x28\x77\x16\xc1\x1c\xba\xb6\xc8\x60\xa3\xdc\x05\xd2\xa5\x56\x0f\xe0\xf9\x55\x48\x33\x30\x3d\xc6\x46\xd2\x7d\xd3\x1d\x1e\x7a\xa8\xd9\x1e\x21\xcd\x8b\x41\x0b\x48\x4f\xcb\x73\x0c\x5d\xfb\x3e\x4e\xc7\xdf\x6c\xf4\x18\x65\xcb\x30\x7e\x0f\x31\xab\x72\x91\x2e\xae\x13\xf9\x23\xb7\x8d\xba\x3e\xb4\xe8\x4f\x80\xe4\x0f\xf0\x9c\x51\xe0\x04\xee\x97\x0f\xac\x52\xe6\x1f\xe5\x36\x3f\x03\x44\x19\x35\xa0\x6f\xc9\x24\x4a\xe8\xef\x65\x06\xe7\x71\xfa\x74\x9a\x26\x04\x0b\xbc\xc3\x7b\x6a\xd8\xfc\x1c\x4d\xc8\xac\x7b\x48\x67\x9a\xf4\x87\xbd\xd0\x1f\xd3\x74\xbc\xcc\xb8\x17\xa3\xe8\x15\x8e\xa6\x8e\x32\x63\x5c\xe5\xc7\x96\x76\x0d\xcd\xa2\x74\xe3\x28\xf0\x7a\xd1\x31\x48\xf5\x37\xaa\xd7\x5d\xc2\xbd\xb6\x18\xc1\x30\x1a\xa1\x08\x81\xbb\x36\x6c\xa1\x68\xea\x68\x0e\x57\xd7\xf4\x6b\x33\x1f\x2c\x70\xc1\x48\x10\x35\x5e\x59\x53\x84\x2a\x3b\xe0\xbe\xd9\xf9\x5d\xab\x61\x61\x43\x2a\x2e\xc0\x6b\xdd\xb7\x8b\x0c\x8c\x86\x30\xd2\x5d\xb6\x30\xca\x89\x55\x02\xad\x4d\xf1\xc7\xc9\x58\x76\xed\x73\x3b\x13\xbe\x93\x10\x43\xc8\x73\x39\xee\xda\x28\xfa\x00\xe4\x9a\x35\x52\xf0\xf4\x33\x77\x3b\xd5\x3c\x2c\x0d\x61\x97\xcc\x70\xfa\xc4\x7c\xed\x67\x18\xa7\xd8\xf9\xe1\x2a\xb5\x38\x8e\x4c\xb3\xb3\xbe\xc1\xb3\x65\xff\x50\x87\xfa\x0f\xf6\x0f\xaa\xd3\x8f\x69\x34\xb1\xbc\x9d\x20\xd0\xfd\xa1\x43\x18\x9d\x14\x7e\x77\xe9\x6f\xda\x39\x03\xc1\xec\x1f\x88\x60\xf6\x14\x91\x31\xb3\x54\xc6\x61\x06\x76\x3e\x09\xec\x6e\x34\x75\xc8\xb1\xf2\x0d\x48\xeb\xd3\xbe\x05\x42\xa8\x8e\x47\x95\xab\x3c\xbb\xc5\x56\x53\x2b\x86\x2c\xb3\xc8\x2c\xe4\x3a\x2d\xdf\x2a\xa0\x9a\x18\xad\xc1\xb2\x15\x0f\xd4\x03\xdb\xb1\xeb\xaa\xee\xba\xed\x52\xdd\x3e\x49\x09\x55\xec\xd2\x27\x98\x34\xd8\xec\xcf\xd2\x18\x1a\x4f\x21\x4e\x1c\xec\xa2\x1d\x7f\x4d\x31\x32\x09\x46\x49\xca\x08\xa1\x39\x2d\xf8\x1c\x78\x47\xa4\xd1\x59\x02\xed\x12\x94\x05\xb9\xaf\x76\x37\x3d\xf6\x7a\x5a\x26\x82\xa3\x39\xf3\xb5\x39\xa9\xe1\xdf\xfd\x18\x92\x59\x63\x1e\x7e\x77\xf2\xb4\xdd\x14\x79\xae\xee\xf6\x2d\xe4\xe1\xd5\xd3\x3c\x99\x70\x8f\x08\xcf\x9d\xe3\x21\xcd\x49\xeb\xae\xb5\xe6\xe7\xe1\xf7\x4b\x86\x66\x20\x9c\x7d\x8f\x11\x3c\x51\xad\xb6\x91\x3d\x27\x63\xee\x12\xe9\x63\x08\x1d\x77\xbd\x16\xa3\x27\xb8\x46\x16\xd0\xa6\x0c\x41\x72\x64\x35\xe1\x68\x77\xa5\xcf\xe5\x34\x4f\xa4\x22\x9d\xb8\xdc\xce\xed\x69\x25\x98\xfc\x14\x25\x84\x8f\xb2\x31\x8e\xc3\x2c\xbb\x8c\x32\xd2\x20\xe9\xc3\x43\x0c\x0e\x17\xc9\xbb\xbc\xc4\x6e\x46\x8b\xec\x52\xfd\x06\xd3\x2e\xd9\xc8\xce\x9f\x03\x3a\x60\xe8\xd7\xd7\x76\x1f\x62\x1b\xd9\xf4\x9b\xd5\xa0\xe3\xa9\x0b\xd8\xbc\x6b\xca\x9d\xb4\x36\x27\x13\xb5\xca\x42\x5c\xe8\xb9\x2e\x38\x36\xd1\x46\xa3\xac\xee\x2f\x77\x4b\x73\x75\x53\xd5\x90\x33\xea\x1b\xbb\x7e\xcf\x46\x0b\x81\xdc\xef\x88\x21\xc4\x66\xed\xd2\x5b\xef\xb8\xc8\xdc\x2b\xdc\xe8\xd6\xcf\x80\xa8\x42\x7a\xaf\x7f\x15\x4e\xbb\x69\x62\xbb\x6b\xb4\xef\x79\x45\xf2\x6e\xc1\xb1\x44\xe4\x72\x8b\xdc\xd3\xb6\xb1\xc5\x8d\x9b\x15\xb5\x9a\xc3\x1a\x56\x3d\xdb\x94\x71\x73\x15\x6c\x09\x66\x83\x79\x1f\x09\x27\xbe\x31\x74\xa9\x03\x6a\x1d\x41\x36\x5b\x48\xec\x7c\xf5\x22\xee\x0b\xe4\xde\xff\x5a\x8d\xff\x70\x1e\x1a\xa7\x5e\xe3\xec\xf6\xb4\x6e\x0f\x2f\x6c\x17\x41\x45\x97\xc3\xc9\xc4\x11\xd5\xd1\x0c\xd9\x2c\x7d\xe2\xe4\xa3\x43\x5a\xcd\xad\x6c\xdb\xe5\xd9\x01\x57\xa9\x0f\x40\xab\x9e\x47\x44\xd6\x84\x5e\x28\x01\xa3\x24\x8c\xbb\xb0\x76\xd7\x05\x1e\xbd\x8f\x97\x15\x56\x42\x61\xa9\xa4\x99\x1c\x45\x8f\xf7\x46\x91\x12\x39\x68\xe6\x22\x35\xa4\xa4\x83\xc6\x33\x82\xc6\x33\xeb\xdc\x36\x02\x5d\x6f\x20\x90\xe4\x89\x9c\x46\x5b\x78\xac\x4c\x1a\xa6\x59\x49\xea\x70\x3c\xb7\x12\x27\x4a\x22\xf2\x53\x9c\xde\x9b\xfc\xca\x54\x65\x36\xb3\x90\xdc\x8c\x67\x74\xa1\xfa\xa1\xd8\xa4\xd0\x18\xc7\x48\xa1\xa4\x13\x09\xa9\x31\xfb\x91\x3d\x4e\x17\xcf\x1a\xd9\x30\x25\x9b\xb6\xa7\xb4\x5a\x2d\x1a\x34\x8b\xdc\x0c\xc1\x88\x30\x22\x9a\x0e\x76\x57\xd8\xaf\xb8\x2a\x22\x63\xd1\x58\x84\x19\x01\x59\x03\x0b\x48\xe8\x09\x34\xf2\xe1\x63\x79\x58\xc8\x43\x11\xc3\x1c\x42\x34\x17\xf2\x79\x84\x61\x9a\x7e\x3f\x29\xe6\x66\xb8\x4f\xd2\xa7\xc4\xe4\x85\x66\x10\x90\xc6\xfd\x92\x90\x34\xa9\xd5\x16\x0d\xe6\xfb\x39\x8d\xa3\xf1\x37\xb5\xcb\x83\x34\x66\xaa\xec\x61\xb7\x4c\xba\x84\x96\x98\x43\xb2\x34\x1b\xfb\x6d\xf5\x1b\xdd\xbb\x8c\x92\xe5\xf7\x5a\xad\xd8\x64\xb8\xfc\x3e\xa6\xb5\x9a\xed\xf9\x81\xd9\x3b\xca\xac\x77\xf0\x9d\xd0\x25\xfa\x33\x5d\xf6\xd8\x1e\x9f\x98\xd2\xaf\x23\x22\x27\x1c\x65\xac\xd2\x84\x53\xa8\x7c\x83\xe7\x32\x99\xfb\x8d\x70\x4c\xa2\x47\x10\xdb\xe7\x5c\xd9\xa4\x33\xed\x1b\x3c\x0f\xd2\x27\x9a\x67\x8d\x76\x3c\x3a\xc8\x66\x55\xdc\xb9\xff\xe6\xba\x3e\xd1\xec\x1b\x2b\x5b\x2e\xcc\x9a\xa8\xee\xbf\x5a\x09\x05\xdd\x01\xad\x54\xce\x7f\x95\xdd\xa9\xc6\xdb\x28\x54\x81\xb8\x81\xa1\xd0\x9f\xa8\x66\x1a\xd8\x76\x55\x25\xe3\x74\xbe\x48\x33\xee\xaa\xa4\x82\xd6\x66\xb1\x0d\x2a\xed\x03\xc4\x0b\xc0\x8d\x62\x2e\x36\x42\x4e\x45\x4e\x77\x4b\xfd\xcb\xc5\x24\xa4\x73\xe9\x95\x06\x78\xb6\xdf\xd4\x02\x24\x93\x57\xab\x87\x64\xb2\xad\x6e\x60\x51\x0e\x42\x74\x57\x57\xc6\x11\x3c\xcd\xd3\x65\xb8\xc6\xaf\xa8\xd7\x1c\x31\x16\xda\x20\x76\x4e\x79\x30\x81\x43\x1a\x19\xdf\xed\x6e\x40\x32\xa9\x90\xd1\x19\x60\x72\x93\x3e\x55\x88\x3c\x3b\x65\xc6\x69\xee\x54\xe3\xf1\x49\xfd\xc6\x18\x43\x48\x24\x43\x3b\xf6\x24\x7a\xb4\x65\xd4\x0a\xe6\x06\x7b\x18\x25\x80\xe9\x0a\x02\xc9\xe4\x74\x16\xc5\x13\x47\x69\x5e\x62\x3f\x9e\x1b\xb3\xe0\x22\x30\x11\x4a\x17\x50\x34\xce\xf2\xad\x55\x14\xf1\x3f\x19\xb5\xd1\x85\x02\x28\x63\x60\x56\x2b\xed\x27\xda\xd1\x7e\x94\xec\x38\xfb\x4e\xac\x5a\x16\x86\xbf\x2e\x23\x0c\x99\x15\x5a\x3c\xaf\x25\x57\x4d\x9b\x7b\x04\xe4\xa6\x23\xe5\x92\x40\xab\xb3\x91\x3e\x25\x80\x07\xc2\xaf\x28\x6d\xc6\x3f\x46\xf0\x24\x76\xff\x05\x64\x73\x19\x9e\xef\x3e\x9d\x3c\x07\x46\x89\xd7\xc2\x76\x0c\x8d\xbf\x50\xb4\x6a\x60\x36\x59\x08\x4c\x5b\x92\xcb\xf7\x2b\xd9\xb8\x9b\xe8\x0d\x79\x76\x99\xe3\x69\x57\x18\xa4\xec\x87\x8b\x7e\xad\x19\x60\x36\x93\x01\xe9\x13\xb1\x3f\xe3\x50\x0b\x25\x4a\x26\xf0\xdd\x56\xd6\xa2\xb4\xe9\xa4\x7c\xad\x66\xcf\xca\xbc\xd5\x5d\x90\x99\x8a\xfd\xd5\xb9\xb9\xaa\xb6\x42\x1b\xb9\x79\xf9\x26\x94\xf2\xec\xd5\x58\x71\xff\xc0\x2e\x95\x54\x9b\x7a\xb3\x11\xc1\xbc\x6e\xb7\x10\xad\xa1\xe6\xea\x56\x1c\xcb\xd9\x37\xe0\x28\xf3\xbd\x4a\xba\x72\x8d\x15\xf2\x63\x2b\x4e\x86\xa0\xa9\xc4\x86\x2a\x21\xaf\x22\xa2\x57\x53\x90\x50\x2a\xcc\x44\x85\xa6\x34\x42\x42\xc2\xf1\xec\x2e\x1d\xa4\x73\xa7\x6f\xe6\x16\x85\x67\x4c\x4c\xbf\xad\x0b\x85\xbc\xd5\xbd\xe0\x99\x5e\xef\x48\xa1\x32\x19\x16\x22\x16\xb7\x32\x1e\x12\x62\x17\x72\x6e\xc3\x62\x77\x63\x21\x73\x92\x86\x4b\x92\x8e\x53\x8c\xe9\xe2\x81\xec\x74\x3a\x7d\x4b\xfe\x70\x11\x91\x30\x8e\xfe\x06\x6f\x2a\x92\x2d\x20\x8e\xc7\x33\xa0\x3a\xa4\x3d\x0d\xe3\x0c\x4a\x05\x48\x78\x7f\x41\x45\x85\x8c\x9f\x52\x80\x52\xe0\x4a\xc9\x06\x75\x5f\xa2\x4d\x46\x60\xb4\x66\x3a\xee\x2b\x15\x16\xac\xb8\xbc\xbe\xa2\xd9\xa4\x55\x57\x64\x87\xd2\x10\xcb\xf6\x54\xcc\xa6\x52\x0e\xe8\xba\xb3\x95\xd5\x0a\x79\x8b\x83\xac\x81\x99\xf8\xab\x28\xc6\xf5\x0f\x16\x4d\x33\x6e\x9c\x16\xd3\x0b\x66\x50\x55\x9b\x7a\x3c\xd9\xab\x5d\x2d\x94\x75\xf3\x40\xc4\xdb\xe8\x6f\xc0\x1c\x69\x1b\xe5\x3d\xf3\x72\x6d\x9a\x63\xe5\x96\x2a\xea\x74\x7b\x59\xee\xad\xed\x65\xf5\x3a\x0f\xe4\x52\xba\x92\xe3\x16\xb4\x8f\x72\xb5\x60\xac\x09\xb4\x91\x8f\x10\x66\x4b\xcc\xe3\x91\x9e\x1a\xa7\x79\x8a\x94\x24\xd5\x33\x58\x2b\xca\x14\x3f\x16\x8c\x19\xfd\x0d\xc6\xb3\x30\x79\x80\x49\x81\xc9\x84\x46\xa9\xf7\x29\x73\x14\x87\xe9\x75\xcd\x45\xe3\x85\xb5\x84\xa1\x37\x69\xfc\x51\xfc\x74\xb8\x9d\x5e\xb1\xda\x6c\x5a\xbd\x4a\x2d\x15\x43\x08\x69\x03\xf7\x8d\x1b\xf1\x53\x0f\x4b\x2c\xc5\x10\xd2\xac\xa7\x8d\xdb\x42\xb2\x86\x13\x73\xf3\x96\xd7\x83\x4d\x38\x94\x02\xea\xaa\x35\x69\xaa\x00\x2b\x7c\x55\xc8\xa8\x2c\xeb\x80\x50\xa8\x41\x28\xd4\x5b\xea\x4e\xe0\x29\x5f\x13\x0b\x0d\x28\xe9\xc1\x8d\x2a\x40\xb8\xb4\xb9\xa2\x27\xf1\x7a\xf2\xb1\xa4\xd5\x73\x9d\xc0\x60\x01\xb9\x2d\x50\xc6\x47\x3a\x91\x54\x0d\x25\xf5\xa1\x24\xc5\xfe\x75\xf5\x57\xfb\xe7\x65\xb0\xaa\x74\x0d\x39\x2e\xe2\x5b\x3a\xcc\x19\xcd\x74\xfd\x24\xb0\x7f\x49\x97\xd6\x24\x9a\xb0\x7d\x8c\x45\xc8\x36\x42\xc0\xfa\x33\x23\xcb\x9f\x2d\x79\xe6\xc1\x8a\x12\xeb\xcf\x52\x95\x2f\x98\x10\x8e\xfb\xe7\xc6\x97\xc4\xee\x25\xf5\xc0\xbe\xab\x2a\x9b\xa4\x4f\x96\xdc\xe9\xb1\x48\x6a\xfd\x99\xe0\x25\xfc\xd9\xba\x5f\x12\x8b\x0d\xaf\x8c\x2f\xe2\x91\x63\x8d\xbf\x64\x56\xab\xe1\x59\x36\xa2\x15\x46\xc4\x7a\x8a\xe2\x58\x96\x67\xc5\xd9\x1a\xf4\xe7\xe2\x66\x0b\x55\x0b\x82\x1d\x6f\x4d\xc4\x9e\x85\x1c\xd8\x92\x0f\xa6\xe0\x0d\x91\x6e\x32\x16\xc4\x9f\xb3\x1e\xad\x0d\x1a\x51\x76\x9a\xc6\x71\xb8\xc8\x60\xd2\xa3\x86\x41\x1a\x43\x98\xe4\xa7\x48\xc8\xc9\x0e\xe9\xda\x37\x54\x3c\xd8\x41\x00\x2c\xcc\xd0\x5d\xad\x22\xb5\x65\x27\xc6\x80\x2a\xd2\xcc\xa3\x22\x65\x00\x5f\xa1\x28\xf5\x6c\x66\x25\xc6\x69\x38\xe9\x4f\x26\xa5\xcd\x32\xc9\x03\x4e\xf3\xc8\x75\xec\xc6\x9e\x5d\x87\xba\x4d\xbf\x0b\xb6\x65\x95\x30\x2a\x79\xae\xab\xe4\x2f\xe3\x7a\x3a\x9b\xa9\x7c\xb7\x1b\x5c\x05\x79\x8a\x26\xb0\x4b\x73\xbf\x3c\xb1\xfd\x5f\xbb\xde\xfc\xb1\x24\xd5\x18\xa8\x6e\x2f\xbe\xf7\xd6\xa2\x18\x8f\x34\x37\x0b\xbe\xa1\x18\xdb\x65\x7b\x67\x4d\xa2\xc7\x97\x19\x44\x0f\x33\x52\x55\x8c\x43\x78\x39\xbb\xe0\x18\x96\xc4\xdd\x14\x55\x21\xb6\x18\x10\x0b\xde\x24\x01\x15\x0a\x08\x07\x8f\x74\xbc\x6f\xc2\xa7\xf7\xcf\x04\x4e\xd3\x14\x4f\x32\x07\x50\x6c\x0a\xb7\x58\xc7\x81\xfe\x4a\xe3\x8c\xe7\xc9\x5c\x57\x6c\x63\x45\x6c\x4f\x1b\x41\x23\x7d\x04\x8c\xa3\x09\xdc\x3d\x2f\x60\xb5\x12\xcc\xc0\xb7\xb1\x72\x17\x63\x77\x16\x10\x7d\x1b\x88\x41\x96\x0b\x9a\xde\x6a\xae\x0b\xf1\x1d\x72\x1f\x7b\xd6\x73\xc8\xbf\x1e\xdf\x5a\x2d\x72\x70\x3d\x68\x35\x11\xd1\x02\x49\xb0\xda\x95\x8d\x55\xe4\x3f\xfb\xd9\xf4\xda\x07\x4c\x50\xa8\x3d\x7c\xe6\x46\xf0\xdc\x1e\x39\xf6\x9b\x07\x27\x20\xf7\xc8\xbb\x0e\x79\x47\x33\xd7\x6a\x0e\x09\xe8\x03\x25\x06\x83\xf9\x47\xcd\x15\x79\xf7\x6e\x3f\x4f\x68\x1e\xae\xf6\x5b\x35\xe2\xba\x6b\x88\x33\x60\xcd\x74\x3a\x1b\x5a\x79\xe7\x37\x79\x9d\x7e\x33\xaf\x92\xb8\x1a\x91\x22\x0d\xf7\xfc\xd8\x83\xfb\x02\xb5\xa0\x85\x48\xe3\xfb\x2e\xeb\x6c\xe3\x99\xfe\xed\xf1\x80\x03\xcd\x75\xdf\x6c\xdb\x94\x21\xd8\x01\x26\x37\xaa\x07\xb6\x6f\xf7\x28\x56\x56\x34\x75\x7c\x95\xd8\xca\x13\x9b\x2a\xb1\xc3\x13\x69\xcb\x2d\x96\xc8\xb1\xef\x51\x98\x67\xcb\x08\x5b\xfa\xeb\x5f\x86\x76\x9d\x34\xbe\xd7\x6d\x44\xff\x3e\xd7\xed\xd1\x17\x6c\x73\x31\x1c\xf3\xcd\x84\x48\x8b\xc8\xcd\x4f\x7a\x9c\x38\x55\x9d\x60\x51\xbf\x70\x02\x41\xb3\xeb\x8b\xa7\x76\xb7\x29\x9e\xf6\xbb\x0c\x17\xe6\x38\x6a\xb9\x46\x1b\x5a\xaf\x99\x04\xe9\xd9\x75\x8e\xf8\x49\xbb\xeb\xb9\xec\x37\x43\xae\x27\x90\xa5\x70\xd2\x58\x84\x0f\xb0\x5a\x51\x78\xed\xc9\x76\xdd\x6e\xac\x1d\xff\x38\x71\x8a\xa8\xd1\x82\x75\xfa\xab\x5e\x7f\xad\x6d\xd9\x06\x6b\xf3\x23\xaf\x5a\x9e\x33\x29\x57\xbc\xa1\xb2\x63\xbb\xee\xd0\x4e\x38\xad\x1a\xb8\x27\xbb\xed\x1a\x74\xc1\xdd\x6d\x35\xdd\x52\x13\x79\x2e\x7b\x6e\x77\x59\x83\x6e\xd7\xc1\x4e\x44\xcd\x4e\x2a\x0b\x9c\x88\x62\x2f\x1f\x9e\x37\xd2\xee\xa3\x5d\xe7\x51\x56\x8d\x29\x4e\xe7\x54\xda\x9e\xa6\x13\x10\xbb\x37\x1c\x82\x22\xd7\x35\x83\xeb\xd5\x34\x46\x11\x4a\x51\xa6\x62\x17\xde\x28\x2f\xf8\x59\xa1\x9d\x00\x84\xb7\xfe\xa4\x2e\x9f\xba\x12\xf0\x34\x8b\xc6\xb3\x13\xf1\x77\xd7\x67\xe9\x28\x36\x82\xe7\x2f\xce\xf8\x4c\xa2\x53\xed\xc4\xeb\xb6\xd9\x5f\xbf\x6b\x6e\x49\x2b\x59\x44\x82\x96\x9e\x3e\xb8\xfe\xc8\x86\x86\x6b\x9e\x14\x0c\x8d\x09\x90\x30\x8a\x8f\xbd\x93\xfd\x76\x77\xbf\xa3\xe7\x7e\x9a\x01\x88\x4c\xec\x71\x00\x31\x09\x7f\x79\x27\x72\x4a\x5e\xc7\x01\x34\xb2\x59\x34\x25\x7f\x80\x67\xca\x84\x28\x0a\x40\x46\xf0\x9f\x1c\x76\x3d\x94\x06\x20\xa3\xfb\x4f\xfc\xfd\xae\x87\xb2\x00\xaf\xa2\x55\x8a\x62\xed\xc4\xd3\x49\x56\x0b\xd2\x6e\xac\x9f\x71\x5a\xad\x9c\x2c\xf0\xe8\xea\xdd\x6a\xd6\x9d\xec\xf8\xb8\xe9\xd6\x09\x8b\x7f\x0b\x03\x43\x11\x88\xb9\x7f\x93\xca\xdd\x5e\xea\x84\xd5\xfb\x40\x58\x48\x17\x6d\x7f\x4b\x49\x2a\x07\xbb\x28\x56\x6a\x86\x81\x96\x83\x8d\xd1\x0d\x14\x69\x91\x28\xc5\x03\xb2\x1c\x4c\x19\xd1\x40\xbf\x56\x4b\x9d\x58\x79\x19\x05\x52\xf3\xf4\x11\x6c\x44\x68\x41\x79\xf6\x6b\xb5\xaa\xc8\xa7\xef\x62\x58\xd8\x89\xf2\xa3\xc2\x4e\x44\x0b\x1b\xed\x64\x5b\xda\xa9\x80\xd1\xba\x75\xd4\x23\xaa\xdc\xe8\x1d\x59\x53\x55\x2b\x44\x62\xfc\x0d\x67\x79\x91\x84\xb5\xda\x8e\xa3\x77\x45\x97\xde\xf4\x57\x2e\x06\xdd\x9c\xda\x44\x6b\x8e\x6c\x6c\x8d\xaf\x5d\x3b\x95\x23\x16\xe7\x41\x29\x69\xf2\x33\x2d\x48\x35\x01\x55\x29\xa8\x4a\x49\xba\x1c\xcf\xc4\xce\xca\xaf\xaf\xf9\x8e\x96\xe6\xa1\x38\x5b\xaa\xe7\xb4\xfe\x8d\xb5\x7f\x4c\x1f\xa1\x54\xb9\xa9\x15\x4d\x20\x23\x38\x7d\x2e\x29\x81\xf9\x69\x3a\xbf\x78\x9a\x4e\x24\x7c\x05\xd6\x7a\xf0\xb2\x16\xc6\xb2\x38\xe8\xa6\xd5\xb4\xd6\x8e\x78\x55\xa4\x8b\x29\x26\x14\x71\xe9\x47\xe3\xf6\xfb\x55\x3a\x81\x8d\x00\xb1\x6d\x5e\x61\xdc\x17\xc3\x61\x98\xbd\x53\x50\x96\x0d\xe3\x57\x45\x2e\x09\xdb\x92\x6d\xd7\xdc\xc8\xdd\x7d\x54\xac\xb1\xbc\x9b\x53\x0e\x5b\x33\x3d\x94\x6e\x7e\x14\x0d\x7a\xf8\x38\x20\x2c\xda\xb5\xe0\xc5\xe4\x4f\xcf\x37\xe9\x93\x83\x8b\x31\x37\x2a\x66\xa2\xac\xa8\xe7\xa7\x6d\x57\x2b\xa7\x98\x14\xf8\xa6\xd1\xc7\x7e\x3c\x8b\x78\x2e\xb7\xd8\x0a\x93\xd9\xa5\x97\x0f\x10\x3d\x74\x8c\xc7\x97\x05\x81\x1e\x73\xa6\xe2\xb9\xe8\xba\x31\xab\x88\x32\xf3\xf5\x28\xb3\xdd\x5d\xa4\xe2\x04\x59\xf8\x98\xa0\x3e\x0f\x25\xdb\xd5\xb3\x52\x1d\x61\x56\x3c\x29\x27\x7b\xc9\xc3\xd1\xf2\xcc\xae\x88\x5b\x10\x45\x35\xe3\x16\x39\x64\x57\x3f\x31\xbc\xcb\x3d\x03\xda\x79\x62\xd7\xec\x90\x38\x9a\xae\xa5\x54\x1d\x13\xe4\xf6\x31\x02\xd7\xed\x6a\x39\xb3\x05\x0b\x4a\x26\x48\xd8\xd7\x55\xf9\x73\x02\xa8\x53\xce\xb5\x9a\x93\x53\x85\x76\x40\xd2\x52\xd2\xec\x57\x10\xc2\x45\x15\xf8\x14\x28\xa3\x1a\x46\xbe\xcc\xcf\xed\x42\x66\xa0\x3a\x66\x9e\xed\x19\x04\x09\x75\x63\x55\x7a\x28\x72\xfc\x2a\x59\x6d\x40\x11\x2f\x4d\x1d\x38\xf6\xd8\x5f\x2f\xd0\xb9\x44\xaa\xcd\x65\x3a\x50\x43\x9e\xa9\xdd\xa2\x6b\x2c\xfb\xbb\x0a\x52\x16\x0f\x5c\x8a\x63\x9e\x2c\x7f\x5d\x9e\xdd\xe7\xa5\xf3\xc2\x27\x95\x34\xee\xe6\xa9\xc7\x9e\x1a\x2a\x7e\x2e\xde\x45\x44\x6c\x7a\x6e\x24\xc6\x36\x4f\x4c\x15\xa1\x3e\x85\x0f\x60\x06\x4b\x68\xf4\xa7\x54\x74\xe0\x47\x47\xaf\xa4\xb2\x96\xbb\xf4\x2e\x5d\x94\x03\x01\xf3\x4a\x76\x5f\x19\xaf\xbb\x54\x1c\xbf\xdf\x52\x87\xc6\xb4\x1b\x6b\x2b\xac\x05\x5a\xd8\xa0\x76\x9c\x58\xed\x44\x73\xbf\x9a\xd8\x90\x34\xa3\xcf\x6b\x35\xbe\xa1\x5c\x3a\x59\x2c\x64\x8a\x5e\x9d\x08\x9a\x0d\x3a\x72\xb8\x72\x8d\x7d\x70\xda\x72\x37\x1e\x51\xf6\x5c\xb1\x6b\x5d\x38\xd6\xbc\xb9\x09\x4f\x50\xa5\x74\x0e\xda\xeb\x69\xf1\x8b\x19\x90\xbb\x68\x0e\xe9\x92\x98\x51\x8a\x51\x92\x00\xfe\x99\x16\x75\xe8\x42\x5d\x8c\x0b\x90\xc0\xca\xa3\x0e\x41\x09\x25\x31\xfd\x3d\xd4\xf2\x3c\xb7\x07\x0a\xc5\x9e\x8c\xa5\x14\xaa\xb5\xe3\xf6\x88\x8c\xad\xdf\x44\x52\xfe\xfa\x0e\xf9\x4e\x0d\x35\x3d\xcb\x14\xa8\xa2\xb0\xbf\x99\xc2\xbe\x39\x1f\xd8\x9a\x11\xe8\x2b\x55\xfe\x32\x00\x91\xdc\xd3\x8e\x75\xf3\x53\xf3\xfc\x8f\x43\xc4\x9c\x16\x89\x19\x10\xb6\x0c\x3a\x78\x93\x08\x7b\x76\x2b\x16\xc8\x6d\xaf\x23\x70\xd7\x55\xbc\x9a\x8f\x3c\x77\x1d\x6c\x19\xe1\xc8\x1c\x61\xe4\x71\xff\x86\x55\xcd\x32\x7e\xc5\xcc\x89\x93\xb2\x28\x60\x00\x07\xea\xf6\x17\xfc\x45\xf8\x09\xf3\x52\x7c\x7f\xf4\x54\xbe\x22\x83\xda\x2d\x1f\x8a\x8a\x1a\x35\x27\x75\x17\xa9\xbd\xb9\x90\xc3\x62\xd9\x07\x67\x9f\x6e\xce\x4e\xfb\x77\x67\x03\x76\xbc\x91\x79\x5e\xef\xc1\xe2\x5a\xd9\xc4\xca\xd2\x34\x69\x58\x9f\x62\x08\x33\xb0\x96\x19\x58\x85\xfa\xf4\xf7\x74\xd0\x0a\x93\x8c\x40\x38\x69\xc8\x0d\xa2\x6d\xb9\x8b\x0e\xcd\x2d\x79\xcb\x84\xaa\x7e\x51\x08\x94\x62\x9c\x3f\x3c\x2f\x00\x13\xf8\x4e\xa8\xa2\x57\x55\x1b\x55\xc1\x0b\x5a\x5e\x29\xa0\xe5\x34\x4c\x58\xc8\x3f\x43\xd0\x0a\xad\x99\xac\xd4\xa2\x85\x2c\xa1\x2d\x5b\xf7\x30\x4d\x31\x58\xca\x67\x9e\x2e\x80\x1d\x05\x1e\x87\x71\x0c\x13\xdb\xed\x15\x34\xc5\x0d\xe8\x39\xf0\x6b\x16\x16\xad\x8e\x3f\x86\x71\x34\xe1\xef\x38\x09\xf9\x61\x87\xbf\x63\x4f\x1f\x55\xe5\xac\x3f\xec\x28\xc5\xbf\xa6\xc3\x65\x64\x7f\x55\xbf\x31\x3c\x44\x19\x01\x4c\xe9\xf6\x91\x4a\x20\x63\x58\xd5\xb1\xa4\x42\x7f\xb5\x69\xad\xa1\x55\x51\x97\xa8\xa2\xa7\x47\x1c\x6f\xd8\x71\x89\xd6\x45\x2b\x6c\x3b\x6e\x82\x81\x55\xf3\x62\x01\xca\xd1\xa9\xac\xc0\x01\x77\xfb\xc1\x0c\x03\x87\x59\x98\xa9\x6d\x8d\x4d\x01\xd4\xa5\x2d\x26\xbd\x50\xe9\xe0\xd1\xaf\xaf\x4e\x25\xdc\xc1\x77\x52\x11\x7b\x5f\x59\x63\x75\x55\x66\xfe\xe2\xb1\x28\x9e\xbd\x1f\x97\xe3\xf6\x37\xe0\xd4\x8f\xe3\x62\x1d\x22\x82\xb3\x52\x99\xa9\x14\x35\xb5\xda\x8e\x2f\x57\xce\xca\x0c\x0e\x48\x47\xc6\x8e\xaf\xf6\xb3\x2b\xa3\xe4\x1d\xa9\x99\x94\x43\x18\x45\xbc\x29\x0f\x58\xac\xce\xe3\xe6\x0d\x59\xb9\xd2\x56\x65\x99\x99\xca\x1f\x6d\xd5\xd7\x14\x99\x06\x3c\x86\xf1\x32\x24\x40\xfb\x91\x8d\xc3\x05\xdc\xc2\x5f\x97\xc0\xde\x32\x91\xcf\x03\x8a\x51\x10\x04\x52\xdd\x3a\xc9\x17\x2d\xf5\xda\x17\xaf\x5b\xc8\xe5\x4b\x3d\xa2\xf0\x7a\x18\x17\x11\x4d\xe3\x3c\x71\x4a\x2a\xa8\xf6\x43\x6e\xb1\x0b\xd7\x07\xda\xf1\x5c\xb7\xbb\xb3\x13\xf2\xdd\x6a\xf6\x3e\x15\xf9\x6e\x38\xd1\x5b\x3d\x2b\xe2\x2f\x00\x91\x96\x16\xd7\xe7\x55\x2c\x2f\x18\x36\xcf\x37\x78\xb6\x11\xcb\xae\x00\xc6\x51\x07\x96\x32\x93\xf1\xda\x34\x5f\x15\x6e\x05\xf6\xda\x48\xdb\xb2\x95\x1e\xbc\xf0\x8a\xba\x3b\x3e\xfa\x06\xcf\x5d\x61\x6e\xe6\xa4\x10\x29\x6b\xa4\xfb\x53\x8f\x8f\xbd\x15\x88\x97\xa4\x1c\x1f\xfb\x2b\xe5\x48\x3d\x3e\x6e\xae\x94\x97\xf5\xf8\xb8\x95\xfb\xa2\xc5\x2b\x3c\xb8\xfb\xd9\x3a\xec\xb2\x43\x9c\xb2\x3e\xaa\xc1\xd2\x41\x64\x43\xf8\xfe\x56\xbc\x55\x44\x4b\x1b\x9c\x5d\x6a\x1e\x60\xeb\x68\x4b\x71\xee\x48\xff\x3f\xed\x72\x25\x1f\xee\xf2\x37\xfa\xed\x78\x7a\x7d\x7e\xab\xab\xe5\x3b\xbd\xd9\x94\xaf\x79\xd0\x35\x5b\xda\x94\xb1\x75\xd0\xc5\x27\x4e\x09\x2b\xbf\x67\xd7\x1d\x5c\xf7\xdd\xba\x3d\x10\xc3\x1e\x98\xf0\xd6\xc0\xa6\xfc\xcb\x20\xdc\x13\xa0\xbf\xd3\xe6\x24\xcf\x7b\x6f\x77\x8d\x82\x9d\x81\x2d\x5d\x0a\xa5\xb7\x8f\x9d\x14\x11\xb9\x1e\xd8\xdd\x12\x72\x03\xdb\xe8\xc1\xd1\x6b\x3d\x38\xdd\xd0\x83\xd3\x37\xf6\x60\x5a\xec\xc1\xe9\xaf\xe9\xc1\x69\x45\x0f\x4e\xcd\x1e\x1c\xbe\xd6\x83\xfe\x86\x1e\xf4\xf3\x1e\x98\x18\xf6\x7f\x0d\x86\xfd\x0a\x0c\xfb\x06\x86\x6d\xef\x35\x0c\xdf\x6f\xc0\xf0\xfd\x26\x0c\xdf\xff\x1a\x0c\xdf\x57\x60\xf8\xde\xc4\xb0\xd3\xcd\xa7\xd9\x2a\x9f\xe7\x4c\x00\x16\x4a\x36\xff\xc5\x76\x8d\xb2\xfb\xa2\x76\xac\x0d\xfa\xb0\x95\x77\xee\x5f\x0c\x06\x68\xfd\x8b\x39\x7a\xfb\xdd\x32\xc6\x3a\x69\x3e\xd8\x6f\xee\xe7\x87\x8a\x7e\x7e\x30\x5b\xeb\xbc\xd2\xda\xf9\xdb\x5b\x3b\xaf\x68\xed\xdc\x6c\xad\xa5\x51\xf5\x44\x5f\x78\x82\x5d\xc3\x21\x53\xae\xa8\x53\xa0\x52\x7b\x63\x4d\x5a\x3d\xe5\x6a\xf6\xcd\x6a\x7c\xbf\x59\x35\x56\x5a\xff\x3f\xe9\x63\x75\xfd\xa9\x50\xba\xf5\x4a\xe9\x7f\x32\x4a\xff\x53\xa1\x74\xfb\x95\xd2\x37\x46\xe9\x9b\x42\xe9\xce\x2b\xa5\x6f\x8d\xd2\xb7\x85\xd2\x95\x3c\xea\x77\x36\x31\xa9\xdf\x29\x12\xee\xa0\xb2\x82\x83\x8d\x15\x1c\x14\x2b\x38\xac\xac\xe0\x70\x63\x05\x87\xc5\x0a\x8e\x2a\x2b\x38\xda\x58\xc1\x51\xa1\x82\xa6\x57\x55\x41\xd3\xdb\x54\x41\xd3\x2b\x56\xe0\x57\x56\xe0\x6f\xac\xc0\x2f\x56\x50\xc9\x7d\xcd\x8d\xa2\xa2\xd9\x2a\x56\x50\xc9\x80\xcd\xf6\xc6\x0a\xda\xaa\x02\x11\xf6\xd5\xdd\xd1\x64\x9b\x29\xf2\xb8\x9a\xb3\xca\xf5\x9a\x93\xf2\xb2\xb6\x5a\xed\xe8\x19\xb5\x9a\x36\x97\xa9\xd5\x54\x19\xf6\xa8\xde\x34\xa7\x0a\xd5\x6a\xfb\x1d\xfd\xfd\x67\xc6\xab\x04\x99\x59\xd1\x55\xb0\x77\xc1\x7e\x47\x1c\x44\xa3\x3f\x8f\x83\x23\xaf\x28\x9a\x2a\x22\x0b\x72\xc5\xac\xde\x6a\xba\x5d\xff\xa8\xa9\xb7\x57\x92\x6d\x7f\xb6\xf5\x06\xdb\x87\x46\x83\x9d\x83\xf2\x9a\x94\xd7\xbf\xdb\x3e\x74\xdf\x84\xee\x56\x2c\x77\xf7\xdb\x6e\xb7\x55\x85\x64\x55\x31\xcf\x68\xb0\xe3\x9b\xe8\x76\xde\xd4\x60\xc7\xaf\x37\x0f\xdc\x6e\x67\xff\x8d\x6d\xfa\x34\x77\xd3\x3f\x7a\x63\x76\x96\xbb\xe9\xbd\x35\xf7\x21\xcd\xed\x9b\x3c\xe1\x6c\xc9\x7f\xe4\xaa\xd8\x1f\x52\xf2\xe4\x3c\x5c\xb2\x17\xc3\x96\x7c\x05\xe2\x85\xb1\x90\x47\xde\x66\x20\xac\x36\xf9\xf6\xd8\xaa\x77\x71\x3c\x9c\x8a\x9c\x15\x7b\xa6\x5a\x39\xf9\x36\x06\xd1\x0a\x8f\x27\x32\x5b\x2a\x5b\xcb\xec\xe4\x62\xc5\x1e\xe3\x3f\xc0\x68\x56\xfb\xdd\x08\x18\x46\xcc\x6a\x21\x41\xfe\x43\x45\x6b\x89\x77\x6d\xf3\xa8\x18\x96\x45\x8c\x89\x0a\xdd\xe2\xe3\xca\xe0\xab\x95\x78\x8f\xb5\xac\x52\x35\x4c\x64\x16\x31\x52\x3b\xce\x0e\x59\xad\x9c\xed\xf2\xc4\xad\xd5\x72\x73\xd4\x65\xa1\x37\x55\x0c\x40\x8a\xc6\xa6\x38\x1a\x4a\x2a\xcd\xd0\xb7\x98\xa0\x2e\x35\x38\x8b\x63\x9f\x4c\x2a\x2c\x4b\xa2\xde\xb7\xc0\xb6\xbe\x57\xab\x4d\x7b\x17\xb9\x79\xcb\x32\x52\x43\x5d\xbe\xd5\x79\x8d\xa4\x9b\x9f\xa5\xd4\x8b\x2e\xd7\x7b\x30\xfd\x30\x72\x10\xf3\xf7\x19\xe9\x67\xd4\x39\x36\xea\x2c\x1a\x79\x8e\xa1\x71\x9f\xe2\x09\x60\xf6\xba\xaa\xc0\x7e\x9a\x45\x04\x6c\x54\x8d\x28\x6c\x2b\x49\x31\x95\x87\xd8\xd4\xeb\x93\xcc\x38\xe1\x82\xe3\x2e\x4e\x1f\xaa\x30\x67\x6f\x54\x92\x4e\x05\x7e\x54\xb1\x21\x5c\xec\xd5\xa9\xb4\x22\x15\x61\xcc\xde\xfb\xaa\x8d\x4c\x1c\x8d\x81\xbf\x76\x48\xbd\x5b\x5e\xb8\x49\x2b\x6a\x11\x61\x66\x55\x60\x04\x45\xf4\x01\x63\x33\xae\xe0\xb7\x77\x80\x55\xf5\x77\xe8\x02\xab\xe7\x57\x75\x02\x43\x16\xfd\x0d\x2a\x5e\x1f\x14\x65\x57\xe1\x15\x73\x82\x8a\x47\xe2\xba\x2f\x84\x6f\xf0\xaa\xf7\x22\x39\xfa\x6b\x81\x5c\xb5\x38\x57\x41\x11\x11\x2f\x23\xe0\x21\x7a\x28\xa1\xe2\x46\xb9\xcd\xf8\x9b\xda\x89\xfc\xc9\x5f\x2b\xc4\xf6\xb4\x7d\x16\x6b\x49\xe7\x00\x7b\x24\xf4\xd1\x49\xf3\x52\xee\x31\xb0\x28\x91\x4c\xbc\xab\x5d\xbe\x86\xda\xb6\x6c\xe4\x8f\x50\x54\x8e\x4f\xe8\x45\xbb\xbb\x3d\x56\x46\x0f\xd0\x78\x00\xe2\x44\xea\xad\x6e\x60\xbc\xec\x58\xc0\xd8\xc6\x6a\x96\x1f\x96\xe1\x6f\x99\x2f\xbd\xa6\x38\x47\x0d\xa5\x79\x77\x50\x12\x78\x28\x3d\x26\x2e\x7f\x79\x9b\x3e\x0f\x7b\x69\xbd\x7e\x4c\x8c\x16\x05\x1a\xa4\x9e\x7b\x18\x8d\xc0\x86\x77\x5e\xee\xc5\xce\xb3\x97\xe2\x38\x9e\xeb\x49\xdd\x3f\x31\x03\x22\x12\x19\x1d\xc2\x77\xec\xbd\x42\x18\x89\x1e\x93\x51\xfd\x92\xe7\xe2\xc9\x67\x89\xab\xa8\x48\x3f\x56\xc4\xd6\x09\x46\xe9\x74\x77\xd7\x7a\x47\x7a\x6e\xf5\x0b\x99\x2a\xba\x69\x66\x28\xf5\xcb\x37\xa2\x4c\xd2\x85\xe3\x76\xf5\x58\x0d\xbd\x8b\xf5\xfa\x06\x94\xdf\xc9\x37\x65\xe1\xc0\x04\x8b\x9d\x5d\xd7\xa5\xd3\x27\x4a\x96\xd0\xc3\x9b\x02\xa8\xb0\x78\x43\x13\xbb\x51\x40\xac\xeb\xcf\xef\x02\xa2\x46\x2b\x20\xbb\xbe\x8b\x12\xf5\xbb\x1e\xc8\xb3\x95\xdf\xdf\xe5\x0b\xff\xf7\x00\xd4\x61\x92\x57\xde\xe0\xaf\xde\xdc\xbf\xf9\xf4\xd3\xb6\xa3\x2a\xa5\x37\xe8\xbf\x72\xd7\x81\xb6\x44\x72\x59\xa1\x1f\xf7\x63\xab\x2f\xbb\xdf\x03\xf8\xa5\x1e\x64\xed\xae\xd7\x55\xc7\x26\xd8\xd6\xb1\xb1\x44\xc2\xb1\x8e\x2b\xdb\x33\x96\xd4\x30\x36\xb4\xa9\x1a\xf2\x4e\x4f\x3e\x4b\x26\x85\x8c\x67\xc9\x24\x28\x6e\x6e\xce\xc3\xef\x85\x36\x55\xf0\x9a\x56\xb9\x57\xbd\x51\xce\x29\x56\xd2\xef\xc4\x0c\x37\xba\x41\xb9\x5b\x04\x09\x73\x96\x24\xe1\x3d\x55\xf2\xd8\x0b\xc7\xf9\x62\x88\xe1\x91\x96\xa3\xba\x96\x60\x52\x9a\x27\x78\x59\x23\x08\x3c\xb7\x27\x08\x41\xc9\xd8\x83\x7a\x50\x94\xb0\xc6\x4b\xac\x5c\x57\x6f\x23\xd8\xf1\x4c\x1c\x65\x53\x95\x18\xca\xb8\x75\xce\x70\x6e\x6f\x27\xaf\x6a\x77\x17\x46\xb5\x1a\xbc\xf3\x7a\x6a\xe7\x01\xde\xe5\x32\xf6\x44\x3d\xed\xfa\x5d\x38\xf6\x4e\xbc\x6e\x41\x0b\x49\xe0\x3b\xf9\x2d\x0d\xd7\xeb\xac\x61\x8d\x02\xbf\x11\x01\xf6\x92\xd3\x9b\xe8\x61\x56\x54\xbe\xb5\x88\x87\x5c\x98\xeb\xf2\x84\xc9\x73\x9c\x07\x83\x44\x62\x22\xa8\xd7\xa6\x3a\xae\x58\x4c\x0a\x23\x55\x77\x31\x7b\xf7\xa0\x08\xad\xd2\x23\x24\xca\xaa\x42\x98\xc1\x25\x4c\x7f\x33\x72\xaf\x20\x46\x71\x87\x7a\xbd\x07\x74\x65\x7b\x33\x56\x6c\x97\xaf\xa0\xc0\x98\xc1\x74\xab\x55\xfe\x3b\xdf\x46\x05\xb6\xdc\x49\xe9\x52\x8d\x38\x2f\x62\x44\xd4\x89\x10\x48\x5f\x13\xcd\xea\x0e\x14\xe3\x9a\x94\xc0\xeb\xe5\x91\x39\xbe\xa4\x3a\x3b\xbc\x0a\x5a\xf8\xe7\x2b\xb7\x10\x6c\x13\x82\x9b\xa3\xed\xaa\xc6\x2d\x4a\xa0\x6c\x22\xe6\x0c\xe7\x78\xa8\x28\x7c\x14\x36\x95\xe3\x3d\x14\x92\x42\x1b\xc8\x6e\xb5\xee\x32\x1c\xb1\x97\xae\xb2\x37\x77\xd4\x6a\x4e\xd4\x88\xb2\x9f\x71\xc8\xb6\xf3\x88\xdb\x4b\x35\x76\x4c\xeb\x75\x37\x1a\xa6\xa3\x00\xcb\xf9\x13\x15\x06\x7b\x56\x79\x2f\xd7\xc9\x26\x9e\xea\x56\xa9\x53\x85\xa0\xaa\xac\xaa\x4a\xf6\xd2\x7c\x3e\xc3\xc5\x7b\x59\xeb\xb6\xed\x36\xd8\x6b\x2e\xae\xa7\xa5\x20\x94\x52\xe4\xb3\x24\xb0\x8c\x5c\xd3\xdf\xa3\xaa\x42\x37\xdf\xbc\xe5\xaa\x0d\xb7\xb8\xa1\xa7\xb8\x55\xc8\x11\xb8\x8b\x48\x5c\x35\xca\xac\x24\xa1\x40\xbb\x34\xca\xac\x4b\xfa\xfc\xa9\x0b\xbe\x7f\x57\x5a\xb6\xd5\xf2\x2f\x23\x52\x39\xd0\x71\x73\x5d\x40\x8d\xa5\xe8\xca\xf7\xdd\xdd\xa2\xaa\xfe\x08\xec\x85\xbb\x85\x56\xc5\xa4\x29\x46\xc6\x9e\xe8\x7a\x14\xd3\x68\xe4\x6b\x58\xa4\x26\x92\x93\x52\x9f\x22\xca\xde\xcc\x67\xfa\x86\xfc\xf9\x9c\xdb\xf1\xfe\x4e\xc1\xb0\x62\x22\x3c\x97\xfb\x6e\xb8\x55\x0a\x2c\xc2\x95\x2f\xa5\x69\x1b\x30\xa6\xa4\xe7\xf3\x44\x0b\xf7\xab\x74\x88\xc8\x60\xe8\x8a\xf7\x00\xf6\xa2\xfc\xb6\x33\xa3\x0d\xf5\xea\xc0\xca\x08\x29\xb4\xa9\xbe\x80\xbc\xae\xad\x6d\x7e\xc3\xa7\x41\x1e\xaa\x23\x54\xd0\x87\x2d\xb1\x9c\x99\xca\xba\xc2\x3c\x24\xe3\x19\xb7\xdd\x63\x24\x2f\xaa\xa0\x4a\x49\x7e\xdd\x45\x21\xc0\x87\x5b\x6e\x6a\xa2\xb3\x37\x9a\x2e\xd2\x27\xa7\xe5\xfd\xe8\xc0\x6e\xe4\xa2\xa6\x5b\x57\x89\x9d\xa3\x1f\x1d\xb2\x9b\x9a\x89\xbe\xff\xa3\x83\x77\x33\x9a\x48\x91\xd1\xdf\x59\x1e\x98\xaf\x30\x47\x51\x23\x4a\x66\x80\x23\x92\x05\x09\x8a\x1a\x69\x12\xa4\xf4\xcf\x74\x1a\x64\x48\x5e\x46\xb7\xe1\xf8\x80\xfe\x26\xe6\xd5\x4a\x3f\xf6\x88\xd9\xb1\x8b\x01\x77\x78\xb3\xd7\x28\x66\x24\x5d\x7c\xc2\xe9\x22\x7c\x08\xc5\x91\xe4\x1d\x7f\x8d\x40\x5e\x72\x18\x44\xeb\xd2\xcb\x97\x8d\x2b\xf9\x7e\xd3\x0b\xe5\xa3\x0d\xa7\x68\xc5\xb0\xc9\xc3\x21\xfa\x8f\xd5\xea\x65\xbd\xd6\x3a\xa2\x0e\x87\x17\xcf\x50\xe8\x85\x98\xaf\xd1\xfc\xbd\x5a\xc9\xd7\xc0\xe4\x69\xea\xd4\x27\x32\x6a\x9e\x4e\x37\xd0\x37\x2f\xe9\x16\xae\x0a\xca\x21\x28\x0a\xb0\x61\x6f\x8b\x5b\x2a\xa9\x98\x5a\xad\xd8\x1d\x95\xb1\x38\x98\xaf\x1f\x4d\x65\xa1\x16\x2a\xfa\x36\x42\x7e\x01\x29\x6e\x7a\xf5\xe3\x58\x9e\xea\xaf\x88\xee\xce\x91\xa8\xd5\x26\x10\x03\x11\x31\xa2\x79\x7a\xa1\xa3\x45\x4e\x2f\x5c\xd4\xc3\x47\xec\x6d\x5e\x19\x3d\x2e\x28\x9d\x4e\xd9\xe5\x96\x88\x68\x1e\x19\x94\x1f\x45\xc5\x39\x05\x88\x7a\x09\x02\x2d\x60\xa2\x47\x97\xa0\x92\x5a\xcd\xfd\x8b\xec\xf5\xec\x7e\x0f\x1f\x2b\x0c\x24\xc9\xd9\x31\x99\x21\xde\xf5\x47\x41\x7e\xa5\x22\x1e\xf5\xb6\x0c\x61\x54\x1a\x42\xfe\xbe\xf7\x48\xd6\x29\x55\x0c\xbd\x37\x45\xa6\x89\x2b\x87\x45\xa7\x8a\xc9\x8a\x6b\x04\x6b\x16\x42\x6d\x88\x82\xbf\xfb\xa4\x33\x6e\x4f\x85\xc6\xd5\xe7\xcb\xc0\xfe\xe2\xd9\x08\x1a\xb7\xd7\x1f\x02\xfb\xff\xc3\x9e\xee\xfe\x39\xb0\xff\xbf\xf4\xe9\x8c\x3e\xfd\xff\xd8\xd3\xf5\x5d\x60\xff\xff\xd9\xd3\xd5\x3f\x05\xf6\x7f\x42\x9f\xfa\xa7\x7f\x08\xec\xff\x94\x3e\xbd\x3f\xbb\x0c\xec\xff\x8c\x3d\xdd\x06\xf6\x97\x7b\xfa\xf4\xe1\x2e\xb0\xbf\xb0\x97\x05\x5e\x9e\x07\xf6\x97\x84\x3e\xfd\x91\xa6\x3d\xd2\xa7\x73\x9a\x36\xa5\x4f\xa7\x37\x81\xfd\x05\x73\x0c\x02\xfb\x3f\x67\x0f\x17\x81\xfd\x5f\xd0\x87\xc1\xe5\x59\x60\xff\x97\xec\xe9\xd4\x0f\xec\xff\x8a\x3f\x35\x03\xfb\xbf\xe6\x4f\xad\xc0\xfe\x6f\xf8\x53\x3b\xb0\xff\x5b\xfa\x74\xd5\xff\x43\x60\xff\x77\xac\x92\x5f\xae\x02\xfb\xbf\xe7\xbd\x78\x1f\xd8\xff\x03\x6b\xab\x7f\x15\xd8\xff\x23\x4b\xfb\x18\xd8\xff\x13\xcb\xf6\xf9\x7d\x60\xff\xcf\x2c\xe9\xf6\x34\xb0\xff\x17\x86\xdc\x6d\x60\xff\xaf\xf4\xe1\xa7\xdb\xc0\xfe\xdf\xe8\xc3\xcd\x6d\x60\xff\xef\xf4\xe1\xf3\x6d\x60\xff\x1f\xac\xdc\xa7\x80\x6a\x82\xd0\x18\xd0\xbe\xff\x5f\xf6\xda\x21\x8d\x53\x8f\xc5\x42\x9c\x7a\xc1\xcb\x9a\x2a\x57\x5b\x87\x4e\xdc\x5f\x14\x47\xf7\xe1\x62\x91\x6d\xbb\xc1\x48\x64\x31\xef\x30\x7a\x7f\x3b\xd8\x6d\xed\x9e\xc6\xe1\x32\x03\xe3\x32\x23\xbf\x71\xe0\x35\x3c\x7e\x9b\x91\x28\x69\xde\x67\xb4\xb7\x57\xba\x7e\xc8\xdb\xdf\x6d\x7a\xde\x11\xbb\x80\xe6\x74\x86\xd3\x79\xb4\x9c\x5b\xd7\xb7\x56\x7f\x49\x66\x29\xce\x1a\x56\x3f\x8e\xc5\xed\x3b\x16\x55\x40\xf0\x23\x4c\x1a\xbc\x2e\x51\xe3\x0d\xa8\xcb\x76\xd8\x65\x5c\xc9\x84\x85\x6c\x47\x89\xc5\x6f\x3f\x62\x29\xf7\x51\x12\xe2\x67\x6b\x9a\xe2\x79\x86\xf8\x4b\x38\x52\x2c\x2f\xfb\x11\x15\xb1\xbb\x7c\x44\x54\x05\xb2\x42\x0c\xe2\xfe\x1d\x02\x13\x6b\x81\xd3\xc7\x68\x02\x13\x8b\xcc\x42\xb2\xf1\x3a\x1d\x5a\x48\x56\x06\xa4\x6b\xa0\x69\x59\xd6\x8f\x05\x5c\xd9\x2d\x38\x02\xc9\x71\x3a\x01\x6b\xbe\xcc\x88\x85\x81\x84\xe2\xd2\xa2\xc2\x8d\x3c\xa2\x26\x7e\xf9\x0e\xe2\x97\xf2\xd0\xc9\xce\x6e\x58\xd2\x90\x60\x17\xf6\xe8\x18\x4e\xa2\x6c\x1c\x87\xd1\x1c\x70\x63\x1b\x36\x51\xa2\xd3\x49\x62\xb3\xc0\xe9\x64\x39\x86\x1c\x21\x51\x45\xf1\xa2\xa0\xdf\x86\x90\xa8\x4c\x74\xd8\xbc\xdd\x49\x5c\x96\x94\x92\x19\x60\x6b\x1e\x12\xc0\x51\x18\x67\xf9\x58\xb0\x61\x24\x33\x89\x90\xde\x19\xa3\x9f\x57\x10\xb1\x2a\xd8\x4b\xef\xc3\x39\xbb\x91\xea\xa7\x34\x7d\x88\xc1\xba\x48\xc6\x0d\x2b\x49\x73\x18\x1b\x93\x88\x5f\xf5\xc4\x3a\x99\xf0\x3a\x53\x9c\x59\xf3\xf0\xd9\xba\x67\x07\x02\xd8\x35\x4b\x90\x4c\x52\x9c\x01\x65\xa4\x05\x4e\xe7\x29\x01\x8b\xd3\x8a\x64\xd6\x04\x70\xf4\x08\x13\x6b\x8a\xd3\xb9\xa8\x8a\x18\xd7\x5a\xc9\x7b\xa6\xb2\x05\x8c\x29\xd7\x59\x0b\x1c\x51\x8e\xc4\x94\xdf\x12\xed\xae\x25\x93\xd9\xef\x3e\x5c\xdc\x56\xdf\x8f\xf4\xfe\x17\x76\xd5\x4e\xf9\x2e\xa1\xfe\xd5\x80\xdf\xff\x73\xf1\xfe\xf3\xdd\xf5\xcd\xad\xa8\x49\xdc\xa7\xc4\xc0\xfd\xab\x5f\xb4\x8b\x93\xe4\xad\x49\xda\x9d\x48\xda\x05\x4a\x48\xde\xa0\x24\xea\xc9\xef\x51\x42\x0c\x81\x72\xe1\x8a\x0b\x95\x58\xab\xda\x85\x4a\xa2\xae\xea\x6b\x95\x6e\xce\xac\xc1\xc5\x2d\xbb\x00\xe9\x6c\xb0\xe1\x46\xa5\xbc\xdf\xa2\xaa\xeb\x9f\xaf\xce\x6e\xf8\xe5\x4a\x79\xd7\x2b\xee\x55\x1a\x5c\xdc\x9c\x9d\xde\xd1\xfe\xe5\x4f\xa7\x17\x83\xb3\xab\xbb\xfe\x25\x12\x75\xdd\x7e\x3a\x3b\xbd\xe8\x5f\x22\xeb\xec\x9f\xcf\x3e\x7e\xba\xec\xdf\xfc\x82\x44\xcd\xb7\x67\xff\xf4\xf9\xec\xea\xee\xa2\x7f\xa9\x6e\x66\x72\xde\x44\xa9\x4f\x37\xd7\xa7\x9f\x6f\xd8\x1d\x51\x94\x3c\xb7\x9f\xdf\xdf\xde\x5d\xdc\x7d\xbe\x3b\xb3\x7e\xba\xbe\x1e\xb0\x51\xb8\x3d\xbb\xf9\xe3\xc5\xe9\xd9\x6d\xcf\xba\xbc\xbe\x65\x44\xfc\x7c\x7b\x26\x51\x1a\xf4\xef\xfa\x0c\x89\x4f\x37\xd7\xe7\x17\x77\xb7\x3d\xfa\xfc\xfe\xf3\xed\x05\xa3\xe8\xc5\xd5\xdd\xd9\xcd\xcd\xe7\x4f\x77\x17\xd7\x57\xae\xf5\xe1\xfa\xe7\xb3\x3f\x9e\xdd\x58\xa7\xfd\xcf\xb7\x67\x03\x46\xfa\xeb\x2b\xda\x79\xc5\x53\x67\xd7\x37\xec\x1a\xad\xea\x9b\xa4\xf2\xcb\xa3\x6e\xef\x6e\x2e\x4e\xef\xf4\x6c\xd7\x37\xec\x46\x29\x51\x53\xde\x77\xeb\xea\xec\xa7\xcb\x8b\x9f\xce\xae\x4e\xcf\x8c\xdb\xa6\x5c\x75\xdb\x14\xbb\xa2\xea\x17\xeb\xe7\xfe\x2f\xf2\xbe\x29\x71\x93\x94\x1c\xc0\x73\x93\xd9\x11\x1b\x72\xeb\xe2\xdc\xea\x0f\xfe\x78\x41\x3b\x22\x8a\x7c\xba\xbe\xbd\xbd\x10\x6c\xc5\x48\x79\xfa\x41\x0c\x06\xbf\x6e\x2a\x9a\x3a\xea\x82\x8f\xa8\x7c\xff\x06\x7f\x65\x94\x65\xc7\xd1\xbd\x6d\xf1\xb7\xd3\x5a\x61\x8c\x21\x9c\x3c\x5b\xf0\x3d\xca\x48\xd6\xf8\x41\x5a\x0c\x2f\xeb\x5e\xd4\xc0\xcb\x84\x44\x73\x18\xc0\x02\x92\x09\x24\xe3\x08\xb2\xaf\xfc\xb2\x98\x28\x89\x88\x3c\xd7\x91\x7d\xa5\x9a\x61\xd4\xc0\x64\x02\x8b\xaa\x63\xc9\xf8\xf9\xa5\x80\xcb\x7a\x1c\x8a\xcb\x3e\xe4\x4d\x92\x19\x09\xc7\xdf\x98\x22\x4e\x1c\xaa\xc7\xb8\x3d\x12\xe4\x87\x01\x5b\x27\x78\xd8\x1c\x35\x30\x2c\xe2\x70\x0c\xce\xde\x9f\xbe\x64\x3f\x86\xe4\x4b\x56\xdf\x43\xb6\xed\x76\xf1\xd0\x2f\x00\x1f\x78\x57\xe9\x52\xf3\x1f\x58\x9e\xb5\xd4\x3b\xb9\x96\x59\xd2\x60\xa9\xb6\xc9\x90\xc9\x34\x0d\x36\x65\x1a\xac\x71\xcb\x39\xd3\xcb\x5d\xd1\x59\xa1\x9a\x46\x28\xe3\x7b\x4f\xe2\xfd\x5b\xdc\xae\xae\xa0\xdd\x30\x1b\xf5\x92\xd5\xca\xd9\x9e\x25\x18\x8e\x5c\x94\xe4\xef\xc6\xa1\xf4\x86\x24\x5b\x62\xb8\xa9\x1a\x8f\xd2\x5b\xaf\x76\x72\x7f\x26\xe1\x77\xb2\x54\x35\xa4\xd9\x52\xd5\x19\x86\x84\xaa\xe4\x44\x8e\x49\xc3\x76\x51\x16\xf0\x1b\xc1\x56\xab\x0c\xe2\x29\x4a\x02\xaf\x97\x1c\xa7\x92\x84\x89\xb8\xea\x72\xc7\x49\x87\xc9\x88\x2a\x25\x6e\xe1\xb0\xda\x0f\x1f\xa9\xa0\x4f\x1e\x2c\xfb\x87\x3a\xa9\xff\x60\xb3\xbb\x56\x00\xe8\x02\x77\xff\xfc\x03\x7b\xe5\x52\xb0\xe3\x8b\x38\xf2\x2c\xc8\x86\xb4\xa2\xd1\x9a\xd6\x09\xe5\xb3\x4c\xe7\x61\x14\xc3\xc4\x12\xb8\x5b\x13\x89\xfc\xb3\xc5\xdf\x6c\xc9\x6c\x7e\x79\xd4\xe6\x22\x89\x8a\xde\x70\xe9\xb8\x2c\x30\xb3\xbc\x46\x0a\x91\x91\x8b\x88\x64\xf6\x4a\xcf\x6a\xb1\x28\x4a\x0b\xee\x6d\xc9\xc1\x92\xb5\x70\x7e\x8a\xb3\x56\x23\x8e\x4d\x8b\x77\x2d\xbb\x9e\x0d\xbd\x91\x8b\xb2\xa1\x3f\x72\xa2\xc6\xb4\x11\xc6\x21\x9e\x3b\xa9\x78\xa5\x12\xb5\xd4\xd7\x94\x11\x6d\x59\xb9\xf6\x4e\xe9\x32\x59\x24\x8d\x53\x6c\x45\x09\x3b\xd5\xa5\x5e\xdb\xd6\xb5\xd2\x84\x12\xc2\x76\x7b\xdb\x58\xca\x71\xf5\x80\x8c\x14\x79\xee\x1a\x89\x58\x17\x6d\xef\x27\x9c\xb0\x3d\xad\xd5\xca\xd9\x08\xab\x24\xb8\x03\xe2\x94\xbf\x20\xcd\x71\xe0\x9d\x88\x8b\xce\x68\xb2\xdb\x75\xf2\x37\xda\xb1\x1d\x78\xdb\xb2\xd9\x9e\x9c\x76\x6a\x35\x20\x74\xba\x43\x48\x1c\xd8\x93\xe9\x75\x76\x42\x5e\x5d\x4b\x0f\x6e\x5d\xaf\xd5\x5d\xbb\x95\x7d\x38\x4b\x26\x1b\x7a\x70\x66\xc4\xd8\xfc\x1b\xe1\xaf\x57\x54\xd7\x3b\xe3\xb2\x6b\xa6\xc4\xf5\x69\x4c\x04\x8b\xcb\xd5\x30\x7c\x0d\x5e\x66\xf0\xdd\xdf\xef\xee\xfd\xce\x19\x86\xbb\x53\x6f\xf7\x68\xe4\x56\x3d\xed\x45\x68\x06\xdf\x9b\x6d\x3d\xe3\x4b\x73\xed\x6e\xfe\xb1\x17\x21\xfc\x70\xdf\xa5\xdc\x75\x03\x0f\x67\xdf\x17\x8e\xfd\xa7\xbd\xec\x47\xfc\x70\xbf\x97\xfd\xb8\xe7\xec\x65\x3f\x3a\x7b\x93\x17\x1f\xb5\xd6\xee\x5e\xf6\x23\x7a\xe5\xf7\x1e\xfd\xfa\xbd\x9d\x4b\xea\x2f\x7b\x7b\x0f\xc8\xfe\xf2\xc5\x76\x91\x1d\xd9\x2e\x6d\x2b\xac\x6a\x2c\xfc\x2d\xad\x39\x27\x5d\x91\x54\x77\x4e\xba\x7b\x8d\xbd\x49\xdd\x3d\xa1\x00\xf7\x2d\x78\x7c\xaf\xc4\xe3\xe4\xef\x8b\xc8\xc9\xab\x98\x7c\xf7\x7d\x3a\x00\x6c\x4d\xa3\x0f\xf9\xe8\xf8\xa8\xbd\x76\xbf\xec\xbd\x9a\x90\xfd\xf8\xfb\xbd\x08\x51\x7d\xbf\xbb\x37\x0c\x77\xff\x36\xa2\x5f\xde\xee\xd1\x97\x6c\x54\xdf\xd3\xf9\xe8\xe1\xfe\x2e\xfd\x67\xdf\x37\x7d\x3f\xc6\xbb\xeb\xa4\x3f\x30\x70\x9a\x9d\x83\x1f\xf9\x0d\x53\x11\x9d\x1b\xcd\x4e\xc7\x75\x8d\xfb\x0a\x11\x15\x63\x7f\x5b\x84\x13\x07\x50\xdb\x5d\xcb\x55\x9e\x39\x81\x1d\x9d\x77\x69\xbb\xdf\xf3\x3b\xd9\x4e\x6c\xda\x4b\xbb\x4e\x1c\xba\xa6\xbb\xec\xc5\x88\xf4\xb9\xa9\x3d\xb7\x46\x2e\x7b\x1f\x96\x86\xfc\x77\xdf\xff\x00\xdf\xef\xd2\xd3\xdb\xdb\xd2\x91\x58\xf1\xc2\xd1\xec\xe7\x88\xb0\x0b\x18\xd5\x69\x3a\x76\x9b\x65\x34\x65\x77\x2d\xf2\xdb\x04\x1d\xdf\x45\xbb\x7e\x10\x0c\x5b\x68\x1f\x1d\x21\xbf\x39\xca\xf7\x91\xe4\x74\x2f\x95\x16\x9d\xda\x1b\xfe\x49\x10\x7e\x2f\x32\x33\xc9\x03\xfc\xbc\x82\xbd\x16\x3f\xd8\xc5\x1b\xf4\x10\x71\xd9\x7b\xb1\xc4\x6f\xc2\x5e\xd5\xa4\xfd\xae\xd3\x14\xb5\xc7\x26\xfb\x1b\x52\x2d\xe4\x2e\xbd\xf9\xe9\x7d\xdf\x19\x62\x94\xa2\x6c\xd4\x98\x87\x0b\xa7\x6a\xcb\x2d\xbf\x37\x11\xd8\x3d\x89\xcd\x20\x20\x27\xd0\xf5\xd9\x9f\xe3\xe3\x76\x17\xde\xbd\x6b\xff\xe8\x90\xdd\xa6\xbb\xe6\x9b\x55\x39\x51\xcb\x14\x95\x9d\xa9\x18\x49\xce\xab\xb9\x53\xf2\xc4\x21\xf9\x7b\x0d\xfc\x5c\x7c\x19\xd8\x93\x4d\x78\xfb\xf9\x4b\x0c\x4e\xf2\x1e\xd4\x59\x1f\xba\xcd\x4a\x20\x03\x39\x2d\xfd\xed\x07\x0e\xd4\x73\x62\x36\x5d\x17\x31\xae\xc5\xe9\x32\x99\x38\x66\xc1\xbd\x66\xe7\x80\x4a\x59\x16\x33\x5d\xe0\x98\x93\x2a\x46\x73\xc0\x55\x37\x46\x36\xe8\xfc\x62\x3d\x12\x1b\x8e\x22\x79\x46\xf3\xde\xfc\xf4\x7e\xcb\xa4\x6a\x9b\xe8\x06\xa0\x84\x01\x46\xc5\xfd\x10\x75\xb5\xc4\xef\xec\x3a\xa9\x93\x3a\xae\xe3\x7a\x54\x8f\xd6\xae\xdb\x33\xc7\x25\xd5\x46\x81\xce\x28\xc7\xae\xab\xde\x92\xa1\x3f\xa2\x1d\xae\xdb\xc8\x32\x92\x9b\xd5\xc9\x2d\x91\xec\xda\x7c\xd6\x49\xd5\x47\x1b\x79\xb6\xfc\xb0\xab\x48\xcd\xc4\x66\x9b\xcd\x90\xb2\xfe\xac\x6e\x52\x0f\xbc\x5e\x96\xdf\x16\x99\xd5\xeb\x2e\x50\x0d\x98\x38\xf4\x8f\x08\xe8\x02\xfa\x33\x8f\xd3\x28\xca\xac\x0f\xfa\xf6\x64\x89\xbc\x9c\x2e\xaa\xc4\x18\x87\xe3\x6f\x7c\x98\x34\x0a\xfd\xce\xae\x2b\x79\xe5\x68\x5d\xf7\x46\x2e\xbb\x27\xde\xa0\x9d\x7b\x7c\x7c\xb8\x32\xc8\xe6\x1e\x1f\x7b\x05\xf1\xb7\x2f\x44\xd4\xf6\xee\xf3\x4b\x55\x41\xf7\xa2\xc3\x10\xf3\xee\xe3\xd7\xbb\xcf\x63\xab\xa2\xbf\x41\x71\x92\xaa\x8d\x9b\x8d\x7c\x2c\x19\xd3\x60\x62\x29\x8e\x1b\x04\x32\xda\xe6\x09\xbc\xca\xe0\xda\x54\xae\x14\x13\xc2\x80\x6b\x9d\xc0\xb0\x35\xea\xfa\xf2\x22\x7f\xba\x96\x3a\x76\x1d\x86\xde\x88\xf3\x1b\x0c\x7d\xf5\xd4\x14\x4f\x84\xf2\x9c\xd6\x56\x06\xa4\x1f\x2f\x66\xe1\x06\x55\x7c\xf3\x08\xd3\x25\x23\x20\xd5\xf2\x07\xeb\xbd\x99\x47\xdf\x4b\x2f\x19\xc8\xed\xc6\xaa\x26\x50\x56\x91\x4c\x5c\x61\x1a\xb5\x7b\xf5\x7a\xc2\x31\x0c\x83\x6c\x98\x8c\x76\xa9\x41\xd3\xa3\x5f\x41\x95\x20\xa2\x00\xb7\x1e\xfe\x88\xd5\xa6\x4d\x25\xce\xa9\x8e\xb3\x6c\xb5\xb8\xee\x99\x83\x4f\x09\x6e\xbb\x7c\x4f\x6d\xe3\x3a\x1c\xe6\x07\xcd\xa5\x9d\x82\xc8\x5a\x19\xb6\x9b\x0b\xf2\x18\xd5\x8a\xc2\xe2\x15\xb1\xb4\x1a\x01\x34\x42\x87\x1d\xfb\x34\x5d\xc6\x93\xe4\x07\x62\xb1\x6e\x50\x53\x08\x5c\x54\x58\xdc\x15\xeb\x55\xf2\x38\xb7\x70\x25\x31\xe8\x9f\xab\x70\x0e\xd9\x49\x45\xda\x10\x46\x5d\x71\xb3\xf2\x65\xfa\x04\xf8\x34\xcc\xc0\x71\xdd\xdf\x50\x41\xae\xaf\x65\x75\xaa\xb0\xd9\xbf\xb6\x96\x42\x17\x33\x92\x8e\xbf\xb1\xcd\xf1\x4f\x61\x0c\x84\x40\x50\x9e\xa9\x43\xfb\x77\x9e\x27\x2f\xc0\x3e\x3d\x55\x57\x61\x9f\x1d\xf5\xf9\x55\xd8\xa7\xed\xbe\x76\x15\x76\x3f\xbf\x0a\xfb\xbd\xba\x0a\xbb\x4f\x9f\x06\xad\xc1\xc1\xe9\xb9\x79\x15\xf6\xd9\xb9\xbc\x0a\xdb\xf3\xde\xf7\x7d\x96\x76\x7e\x7a\x76\xd4\x3e\x17\x57\x61\x9f\xf3\x12\xe7\x4d\xcf\x3b\x7d\x2f\xf2\x75\xde\x0f\x58\x59\xfa\xdf\x29\x4f\x93\x58\xd1\xbf\x9d\x73\xf9\x74\x78\x20\x9f\xfa\x2a\x6d\xa0\xd2\xce\x45\x5a\xe7\x5c\x96\xed\x9c\x77\x54\x9a\x2c\xdb\x39\xef\xab\xb4\x81\x4a\x93\x65\x0f\x0f\x64\xd9\xc3\x83\x8e\x4a\x93\x65\x0f\x0f\xfa\x2a\x6d\xa0\xd2\x64\xd9\xbe\x6a\xb7\xaf\xda\xed\xab\x76\xfb\xaa\xdd\xbe\x6a\xb7\xaf\xda\x1d\xa8\x76\x07\xaa\xdd\x81\x6a\x77\xa0\xda\x1d\xa8\x76\x07\xaa\xdd\x73\xd5\xee\xb9\x6a\xf7\x5c\xb5\x7b\xae\xda\x3d\x57\xed\x9e\x8b\x76\x29\xa5\x78\x59\xfa\xd4\x51\x69\xbc\x2c\x7d\xea\xab\xb4\x81\x4a\x93\x65\x25\x9d\xe9\x53\x47\xa5\xc9\xb2\x92\xce\xf4\x69\xa0\xd2\x64\x59\x49\x67\xfa\xd4\x51\x69\xb2\xac\xa4\x33\x7d\x1a\xa8\x34\x59\xb6\xaf\xda\xed\xab\x76\xfb\xaa\xdd\xbe\x6a\xb7\xaf\xda\xed\xab\x76\x07\xaa\xdd\x81\x6a\x77\xa0\xda\x1d\xa8\x76\x07\xaa\xdd\x81\x6a\xf7\x5c\xb5\x7b\xae\xda\x3d\x57\xed\x9e\xab\x76\xcf\x55\xbb\x92\xce\xb4\xb7\xbc\x2c\x7d\xea\xa8\x34\x5e\x96\x3e\xf5\x55\xda\x40\xa5\xc9\xb2\x92\xce\xf4\xa9\xa3\xd2\x64\x59\x49\x67\xfa\x34\x50\x69\xb2\xac\xa4\x33\x7d\xea\xa8\x34\x59\x56\xd2\x99\x3e\x0d\x54\x9a\x2c\xdb\x57\xed\xf6\x55\xbb\x7d\xd5\x6e\x5f\xb5\xdb\x57\xed\xf6\x55\xbb\x03\xd5\xee\x40\xb5\x3b\x50\xed\x0e\x54\xbb\x03\xd5\xee\x40\xb5\x7b\xae\xda\x3d\x57\xed\x9e\xab\x76\xcf\x55\xbb\xe7\xaa\x5d\x49\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\xbe\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x81\xe2\xe7\x73\xc5\xcf\xe7\x8a\x9f\xcf\x15\x3f\x9f\x2b\x7e\x3e\x57\xfc\x7c\xae\xf8\xf9\x5c\xf1\xf3\xb9\xe2\xe7\x73\xc5\xcf\xe7\x8a\x9f\xcf\x15\x3f\x9f\x2b\x7e\x3e\x57\xfc\x7c\xae\xf8\xf9\x5c\xf1\xf3\xb9\xe2\xe7\x73\xc5\xcf\xe7\x8a\x9f\xcf\x15\x3f\x9f\x2b\x7e\x3e\x57\xfc\x7c\xae\xf8\xf9\x5c\xf1\xf3\xb9\xe2\xe7\x73\xc5\xcf\xe7\x8a\x9f\xcf\x15\x3f\x9f\x2b\x7e\x3e\x57\xfc\x7c\xae\xf8\xf9\x5c\xf1\xf3\xb9\xe2\xe7\x73\xc5\xcf\xe7\x8a\x9f\xcf\x15\x3f\x9f\x2b\x7e\xf6\x0e\xe9\x3f\xfa\xe4\x37\xe9\x3f\xf6\x74\x4a\xff\xd1\xa7\xe6\x3e\xfd\x47\x9f\x5a\x1e\xfd\xc7\x9e\xfa\xf4\x1f\x7d\x6a\xb3\xff\xd8\xd3\x19\xfd\x47\x9f\x3a\x87\xf4\x1f\x7d\x62\x45\x59\x7d\xfb\xa7\xf4\x1f\x7d\x3a\xd8\xa7\xff\x98\xe4\x62\x0d\xb3\xa7\x3e\xfd\x47\x9f\x8e\xda\xf4\x1f\x7b\x3a\xa3\xff\xd8\xcc\x63\x60\xfa\xf4\xbe\x49\xff\xb1\xa7\x53\xfa\x8f\x3e\xb1\x8a\x59\x7d\x03\x8f\xfe\x63\x4f\x7d\xfa\x8f\x3e\x31\xa4\x58\x7d\x4c\xbf\x3a\xb3\x47\x9a\x07\x65\x5c\xa9\x2a\x96\xb4\x48\x54\xa1\x7d\x06\x2f\x61\x1c\x8d\xe1\x3e\x5e\x42\x97\xb9\x06\x9a\x6d\x0f\x59\xcd\xf6\x21\xb2\x9a\x9d\x8e\x6b\xa3\x30\x21\xd1\x5f\x97\xc0\x4e\x66\x8a\x1c\x1d\x9a\xa3\xd5\x41\x56\xd3\x2f\xe6\xf0\x65\x16\x0a\x6d\x1d\xd1\x2c\x47\x85\x2c\x4d\x91\xa5\x45\x9b\x68\xb6\x90\xd5\xf4\xda\x85\x2c\x2d\x91\xc5\xeb\x20\xcb\x3f\x6a\x22\xcb\x3f\xd8\x2f\x64\x69\xf3\x2c\x3e\x6d\xc3\x6f\xf9\xc8\xf2\x9b\x1e\xcd\xf2\xd7\x65\x38\x0f\x71\x94\x08\x5c\xfd\xe6\x01\xeb\x08\x45\xa4\x69\xc0\xfd\xd7\x32\x08\x3c\x7d\x9f\xe2\x49\x91\xf5\x8f\x0e\x8d\x0c\x02\x4b\xdf\x6b\xd2\x3e\x50\x54\x0f\x4c\x14\x04\x8e\xfb\x0c\x45\xfa\xe5\xb3\x5e\xfc\x6d\x89\x0d\x5a\xb3\xc6\x39\xad\x29\xc8\xdf\x02\x93\xb4\x6b\xb6\x05\x4e\xcd\xd6\xa1\x84\x49\x74\x8e\x5a\x02\x9d\xa6\xa7\xca\x29\x6a\xf9\x12\x95\x16\x1d\x96\x7b\x88\x1e\x14\x2a\xb4\x04\xfb\x62\x84\xbc\x8f\xb2\xbf\x2a\x96\x60\x58\x34\x19\x09\xf6\x15\xcc\xdf\x06\x34\x06\xd9\x6f\x21\xcb\x3f\x6c\x29\xa0\x31\xbc\x87\x14\xd8\x39\x54\x40\x63\x60\x9b\x34\x87\x77\x40\x81\x31\x35\x08\x19\xc8\x43\x16\xfd\x9f\x27\x26\xe3\x19\x4c\xc2\x78\x9e\x26\x13\x83\xf5\x54\xff\x73\xce\xe6\xe5\x38\x35\x69\xaa\x5f\x9d\xdc\x34\x92\x19\x7d\x69\x72\xcb\x48\x56\x55\xb7\xf5\x64\x41\xd5\x78\x09\x8f\x51\x1a\x03\x91\x5d\x39\x44\x56\x9b\x8e\x4a\x93\x11\x08\xa7\x4f\x89\x80\xec\x77\x90\xd5\x6e\xd2\x8f\x04\xe8\x54\xdd\x6f\xd3\x8f\x84\xe8\x24\xed\x1c\xd1\x8f\x84\xe8\xf4\xec\xf8\xf4\x23\x21\x3a\x31\x29\x49\x5a\x0c\xed\x25\x8e\x9f\x9f\xd2\x54\x12\xac\x49\x27\xd8\x61\x9b\xa2\x6f\x80\x8d\x01\xf6\x29\xe7\x74\x0c\xb8\x8e\x90\x7f\x74\x80\x2c\xbf\x6d\xc0\x8d\x61\x3e\xf0\xd8\x70\xea\x70\x63\xa4\xfd\x0e\xb2\x0e\x29\x78\x1c\x4e\x80\xe4\x83\x76\xd4\x61\xec\x81\x2c\x7f\xdf\xd3\xa1\x72\xfa\x76\x9a\x92\x6d\x3b\x46\x69\x39\x7b\x29\x75\x9b\xcd\x23\x39\x92\x0a\x2e\x67\x0b\xeb\x3c\x45\x9e\x0f\xa9\x82\x0b\xe4\x18\x77\xb6\xda\x72\x68\xc7\xb3\x10\x13\x0c\xcb\xac\x24\x5e\x3c\x03\x5a\x12\x2e\x26\xb8\x24\x5a\x4c\x70\x49\xb0\x98\xe0\xa2\x58\xe1\xd0\x74\x9c\xc6\xa1\x12\xd1\x3e\x25\x37\x2d\xda\x32\xa0\xfa\x90\x32\xe4\x5a\xfb\x3a\xd8\x18\x51\x8a\x5c\xab\xa5\x83\x8d\x01\x65\xc8\x1d\xe9\x60\x7d\x3c\x19\x72\x0c\x9a\xe2\x30\x2e\xb6\x7a\xe8\x49\x88\x81\x90\xdf\x46\xd6\xe1\xbe\x04\x19\xc8\x78\xfb\x7a\x29\x1d\x91\x23\x9f\xb6\x26\x21\x06\x0e\x74\x62\x1d\x70\x48\x32\x8d\xd3\x27\xc0\x39\x5f\xf9\x1e\xa5\x50\x9b\x31\x86\xcc\x93\x45\xf1\x37\x9d\xe7\xd9\x22\xd8\xf4\x34\xa8\xbf\x1d\x6c\x48\xbd\x56\x53\x31\x95\x00\xeb\x68\x37\x59\xfb\x07\x7a\xd3\xe6\x92\xb6\x2f\x97\xb4\xf1\x73\x98\x28\x21\xa3\x2d\x08\x34\xdd\xdf\x04\xc8\x85\x98\xb6\x4c\x50\x40\x2e\xc6\xb4\x35\x82\x02\x72\x41\xa6\x2d\x10\x93\x10\x7f\x2b\x0a\xd0\x1c\x62\x60\x56\x28\xf5\x90\xc6\x13\x48\xb0\x14\x32\x42\xbe\xd0\x2f\xbf\x98\xc3\xe0\x81\x43\x36\xdf\x8b\x59\x0c\x5e\x38\xa0\x73\xb2\x5d\xcc\x62\x30\x67\x9b\x2d\x1e\xc5\x2c\x06\x81\x3d\x1f\x59\x87\x32\x07\x0e\x9f\xa5\x44\xa6\x30\xf1\xa5\xa0\x00\x5a\x3f\x3d\xb1\xf8\x08\xd0\x96\x82\xdf\x66\xe1\xb7\x48\xf6\xff\x48\xae\x75\x6c\x39\xa3\xe0\x79\xf8\x00\x09\x09\x35\xa4\x0c\xea\xa6\x71\xf4\x08\x5a\xdb\x87\x7c\x2d\x14\x3c\x6d\xe6\x90\x24\x64\x93\x92\xcf\xa5\x66\x29\x93\x94\x3a\x87\x4a\xa1\xf1\xda\xa5\x4c\x52\xf6\xec\x4b\xd9\x73\xe4\x95\xf2\x48\x3a\xfa\x72\xd8\xf7\xe5\x98\xa6\x38\x4c\x1e\x74\xad\xc1\x6f\x6b\xd4\xe2\xd0\x92\x0c\x32\xc1\x25\x19\x64\x82\x4b\x32\xc8\x04\x17\x65\x50\x0e\x1d\xcf\x22\xc9\x8b\x9d\x16\xb2\x98\x0e\x9b\xf7\x9f\x81\xa5\xd4\x66\x22\xa5\x29\xa7\x53\x0e\x97\x04\x3c\xa0\x2b\xb0\x9a\x55\x39\x5c\xd2\xae\xd3\x96\xf5\x9b\xe5\x25\x72\x5e\x1b\x59\xf9\x9a\x42\xe1\x18\x26\x26\x1b\x48\xbc\x33\xa6\xda\x48\x92\x30\x55\x89\x2d\xa4\x72\x74\x33\x08\x35\x16\xf1\xdb\x4c\xd3\xa2\x94\x6b\xb7\x0a\x39\x7c\x5d\x3d\x64\xb4\x3f\x2a\x66\x51\x0c\x22\xc5\x86\x7f\xe8\x15\xb2\xa8\x2e\x76\xa4\xce\xab\x68\x24\xb3\xa8\x5e\x76\xa4\x50\x50\x64\xc8\xe8\x32\x91\xcb\x93\x83\x26\x65\x1d\x9d\x0e\x2c\x43\x3e\x1b\xdb\x07\xc8\x3a\x38\xa2\x9f\x22\x5c\x2d\xff\xbe\x21\xfa\x8c\x3c\x4a\x05\xf0\x0d\x29\x68\xe4\x51\x6a\x80\x6f\x08\x44\x23\x8f\x54\x05\x9a\x25\x21\x27\xb2\xc0\x26\x74\xc9\x12\xff\x75\x99\x46\x19\x68\x42\x77\x9f\x7e\xc9\x0c\x86\x9a\x48\xd7\x13\x8f\xa9\x5a\x14\x0a\xf7\x51\x98\x28\xbe\x68\x52\xfd\x88\xae\x9c\x1c\x06\x8b\x45\x94\x18\x6b\x15\x5b\xcd\x0e\x34\xa0\xbf\x15\x6a\xcc\x32\xfa\x69\xe9\x50\x63\x92\xed\xb3\x79\xa8\x41\x4d\x31\x2a\xd6\x65\x0a\xcc\xbe\x3d\x1b\x8b\x05\x9b\x48\x62\x60\x72\xb0\xff\x0a\x3c\x5f\xba\xd8\x44\x13\x83\x96\xc3\xf3\x15\x8c\x4d\x34\x31\x60\x39\x5c\x5b\xc8\xbc\x7c\x92\x45\x73\x4d\xc8\x73\xe1\xd1\x51\xac\x49\x81\xb0\x09\x98\x4e\x1e\x74\xc5\xa1\xc5\x68\xd9\x56\x88\x2b\xb0\xff\x0a\x5c\x92\xfc\x50\x2c\x84\xa2\x63\x0a\x2e\x89\xce\xd6\xc8\x7d\xd5\x31\x05\x97\x64\xdf\x47\xd6\xc1\xa1\xec\xd7\x34\xc2\x70\x8f\x23\x69\x1a\x31\x8a\xb5\x98\x78\xd1\x81\x3a\x2f\x50\x2e\x6b\x1f\xea\x50\x9d\x17\x28\xe2\x6d\xa3\xac\xce\x0b\x34\x47\xcb\x28\xab\xf3\x42\x93\x22\x4d\xd5\xb7\x69\x4c\x55\x31\xc3\x63\xc0\x66\x28\x73\x2c\x50\x66\x99\xa6\x18\x32\xa2\x09\x2e\x21\x0d\x05\xde\x0f\x61\x94\x64\xf7\x29\x4e\xa5\x81\xe2\x31\x45\x4b\x6a\x5b\x0f\xb3\x34\x23\x7a\xed\x4c\x11\xcb\x3d\x16\x74\xbd\x37\x4c\x17\xa1\x41\xd3\x74\x7f\x13\xc0\x50\xdd\xa8\x6e\x20\x01\xa6\x15\xd3\xca\x01\xa6\xf9\x72\x90\x03\x34\xb5\xa7\xc9\xe6\x16\xb5\xf2\x5a\x4d\x1d\x6a\xac\x81\x54\x22\xb3\xe9\x57\xad\xee\x50\x69\xcc\xc9\x52\xa9\xea\xb0\x9e\x1c\xe9\x60\x73\x7e\xb2\xe9\x4f\xc1\x39\xfb\x1f\xb1\xb9\xc7\xbf\x04\xc4\xd3\x35\x3c\x99\x28\x39\x1a\x59\xf4\x7f\x99\x28\xb2\xf2\xd1\x16\x23\xce\x01\x9e\x31\xda\x4a\x28\x33\xa0\x9f\x73\x3f\xff\x48\x80\xe8\x6b\xcb\x47\x16\xff\x48\x80\xe8\x25\x5d\xf4\xf8\x47\x02\x44\xff\xa8\x86\xcc\x3f\x12\xd0\x11\x80\x43\x8d\x53\x19\x60\x5f\xc8\x67\x1f\x59\xfc\x23\x01\x07\x02\xd0\xe2\x06\x7a\x5b\xb5\x71\x28\x00\xfb\xc8\xe2\x1f\x09\x38\x12\x80\x43\x6d\x26\x69\x8b\x0d\xb5\xc0\x91\x25\x7b\xdd\x14\x14\xe1\x46\xb9\x30\xcc\x19\x40\x90\x83\x69\x0a\xec\x23\x01\xb2\x9e\x7d\x64\xf1\x8f\x04\x08\x72\x70\xcb\x5f\x58\xff\x0c\x20\xcd\x41\x9f\x2f\xa6\xfb\xaa\x0d\x41\x0e\xee\x45\x10\x9e\x04\x06\x10\xe4\xd8\xdf\x47\x16\xff\x48\xc0\x41\x6e\x59\xf2\x8f\x04\x08\x72\x1c\xf8\xc8\xe2\x1f\x09\x10\xe4\x38\x68\x23\x8b\x7f\x04\x40\x60\x7b\x88\xac\x43\xae\x66\xb3\x44\x41\x8e\x03\xba\x4e\xb2\x8f\x04\x08\x72\xf0\xc5\x53\x2c\xa0\x0c\xd0\xcc\xd7\x5e\xfe\x91\x00\xd9\x00\x35\x19\xd9\x47\x02\xe4\x6a\x4d\x17\x4b\xf6\x91\x00\x41\x0e\xaa\x88\xf3\x8f\x04\x08\x72\x1c\x35\x91\xc5\x3f\x12\x20\xc8\x71\xd4\x46\x16\xff\x48\x80\x20\xc7\xd1\x01\xb2\xf8\x47\x02\x04\x39\x8e\x8e\x90\xc5\x3f\x02\xa0\x74\x22\xbe\x62\xfa\x72\x86\xb5\x3d\x09\x68\x0a\x75\xd6\xf7\x64\xf3\x6d\xbf\x7a\x41\x62\x30\xa9\xdb\x50\x7b\x40\x7e\x49\x58\x4b\x57\xcf\xc5\x97\x84\x29\xd5\xbd\xc9\x6c\x04\x69\x28\x30\x58\x47\xc2\x3a\xc2\x1f\xe3\xfb\xaa\xbd\x7d\x09\x3b\x10\xc2\xce\xf7\x55\x7b\x07\x52\x87\x62\x9a\xa9\x27\xed\x56\x06\x3b\x94\xb0\x26\xd3\x5a\xa5\xea\xca\x60\x47\x12\xd6\x91\x9e\xbe\xa6\x6c\x4f\xa2\xc2\xbc\x2f\xf4\x23\xd3\x25\xbd\xa8\xdd\x20\xbf\x24\x4c\xd2\x8b\xad\xc0\xe2\x4b\xc2\x24\xbd\x98\x0a\x2d\xbe\x24\x4c\xd2\xab\xc5\x14\xd6\x8e\xf4\x83\x31\x98\x92\xa5\x6c\xc5\xe5\x5f\x12\x26\x91\x6c\x7b\xc2\xce\xf1\xdb\xaa\xbd\x7d\x5d\x21\x17\x5f\x12\x26\xe9\xd5\x66\xf6\x51\x47\xfa\xcd\x18\xec\x50\xd3\x05\xe5\x97\x84\x49\x7a\x31\x0b\x40\x7c\x09\x98\x6c\x8e\x2d\x08\xc2\x80\x66\xe9\x9e\x66\xf2\xc8\x2f\x09\x53\x3a\x34\xd5\xf0\xc4\x97\x84\x49\x7a\x31\xcf\x9b\xf8\x92\x30\x65\x22\x52\xd5\x5d\x7c\x49\x98\x52\x52\x68\x53\xe2\x4b\xc2\x24\xbd\xa8\xcc\x91\x5f\x12\x26\x3b\xb0\xcf\xd6\x4b\xfe\x25\x61\x92\x5e\x54\xf2\xc8\x2f\x09\x93\xf4\x62\x3e\x01\xf1\x25\x61\x92\x5e\x07\xfb\x6c\x03\x41\xee\x22\x50\x98\xac\x52\x6a\xbf\xb2\xad\x03\x49\x2f\x2a\x85\xe4\x97\x84\x49\x7a\x1d\x52\x14\xc4\x97\x84\x29\xd3\xa9\x2d\x7d\xa9\x4a\x22\x1d\x48\x7a\x1d\x52\x14\xc4\x97\x84\x49\x7a\x71\xf7\x00\xff\x92\x30\x49\x2f\xaa\x25\xcb\x2f\x09\x93\xf4\xa2\x72\x49\x7e\x49\x98\xec\xdc\xd1\x3e\xf3\xc9\x4b\xc7\x3c\x83\x49\x7a\x1d\x31\xff\x1c\xff\x92\xb0\x23\xa9\x56\xf8\x42\x05\x6a\x7a\xb2\xbd\x43\x09\xe2\xb6\x84\x9a\xdf\x87\x72\xc9\xf7\x98\x26\xde\x96\x36\x35\x83\x29\xa7\x04\xf3\xae\xf2\x2f\x09\x93\x1a\x8e\x77\xc4\xcc\x21\x69\x13\x31\x98\x54\x6f\xa8\x78\x92\x5f\x12\xd6\x96\x30\xda\x94\xf8\x92\xb0\x8e\x84\xd1\xa6\xc4\x97\x84\xed\x4b\x18\xdf\x92\x92\xfb\x52\x0c\x76\x20\xd5\x4c\xe6\x2a\xe6\x5f\x12\x26\x3b\xce\x36\x5c\xc4\x97\x84\x49\x7a\x31\x27\xaf\xf8\x12\x30\x09\xa2\xb6\x36\xfb\xc8\x74\x49\x2f\xe6\x91\x16\x5f\x12\x26\xe9\xc5\x1c\x87\xe2\x4b\xc2\x94\x46\xa8\x36\x37\x94\x8c\x3a\x92\xf4\x6a\x1d\x30\x67\xa6\xf4\x68\x32\x98\xa4\x17\xdf\xd4\x53\x0a\x38\x83\x49\x7a\x31\x17\xb9\xf8\x92\x30\x49\xaf\x7c\x57\x48\xc9\xa8\x23\x49\x2f\x6a\xee\xca\x2f\x09\x93\xf4\x62\xba\xbe\xf8\x92\x30\x49\x14\xe6\xb2\x17\x5f\x0c\xa6\xbb\xd7\x94\xb7\x5c\x77\x5a\x94\xd2\x0b\xee\x4d\x95\x5e\xf0\x6e\xaa\xf4\x82\x73\x53\xa5\x3f\x43\x1c\xa7\x4f\x9a\x0c\xe1\x26\x12\xef\x0e\x6c\xd4\x97\xa1\x4a\x5f\x86\x2a\x7d\x19\x36\xe9\xcb\xb0\x4d\x5f\x86\x4d\xfa\x32\x6c\xd2\x97\x61\x93\xbe\x0c\x9b\xf4\x65\xd8\xa4\x2f\xc3\x26\x7d\x19\x36\xe9\xcb\xb0\x49\x5f\x86\x4d\xfa\x32\x54\xe9\xcb\xb0\x49\x5f\x86\x4d\xfa\x32\x6c\xd2\x97\x61\x93\xbe\x0c\x9b\xf4\x65\xd8\xa4\x2f\xc3\x26\x7d\x19\x36\xe9\xcb\xb0\x49\x5f\x86\x4d\xfa\x32\x54\xe9\xcb\xb0\x49\x5f\x86\x4d\xfa\x32\x6c\xd2\x97\x61\x93\xbe\x0c\x9b\xf4\x65\xd8\xa4\x2f\xc3\x26\x7d\x19\x36\xe9\xcb\xb0\x49\x5f\x86\x4d\xfa\x32\x6c\xd0\x97\x61\x8b\xbe\x0c\x5b\xf4\x65\xd8\xa2\x2f\xc3\x16\x7d\x19\xb6\xe8\xcb\xb0\x45\x5f\x86\x2d\xfa\x32\x6c\xd1\x97\x61\x8b\xbe\x0c\x5b\xf4\x65\xd8\xa0\x2f\xc3\x16\x7d\x19\xb6\xe8\xcb\xb0\x45\x5f\x86\x2d\xfa\x32\x6c\xd1\x97\x61\x8b\xbe\x0c\x5b\xf4\x65\xd8\xa2\x2f\xc3\x16\x7d\x19\xb6\xe8\xcb\xb0\x41\x5f\x86\x2d\xfa\x32\x6c\xd1\x97\x61\x8b\xbe\x0c\x5b\xf4\x65\xd8\xa2\x2f\xc3\x16\x7d\x19\xb6\xe8\xcb\xb0\x45\x5f\x86\x2d\xfa\x32\x6c\xd1\x97\x61\x83\xbe\x0c\x5b\xf4\x65\xd8\xa2\x2f\xc3\x16\x7d\x19\xb6\xe8\xcb\xb0\x45\x5f\x86\x2d\xfa\x32\x6c\xd1\x97\x61\x8b\xbe\x0c\x5b\xf4\x65\xd8\xa2\x2f\xc3\x06\x7d\x19\xb6\xe8\xcb\xb0\x45\x5f\x86\x2d\xfa\x32\x6c\xd1\x97\x61\x8b\xbe\x0c\x5b\xf4\x65\xd8\xa2\x2f\xc3\x16\x7d\x19\xb6\xe8\xcb\xb0\x45\x5f\x86\x0d\xfa\x32\x6c\xd1\x97\x61\x8b\xbe\x0c\x5b\xf4\x65\xd8\xa2\x2f\xc3\x16\x7d\x19\xb6\xe8\xcb\xb0\x45\x5f\x86\x2d\xfa\x32\x6c\xd1\x97\x61\xa3\xbe\x3c\x4b\x13\x78\x9e\xc0\x93\x8e\x29\x8f\x47\xf0\x34\x68\x39\x8a\xcc\x00\x97\x03\xc9\xd8\x38\x49\x70\x29\x96\x8c\x6f\x16\x4a\x70\x45\x38\x99\xcf\xc0\xa4\xb0\x2d\xc5\x97\xe1\x43\x2f\x07\x9a\x01\x1f\x5e\x01\x5a\x8a\xf9\xf0\xf7\x0f\x72\xa8\x11\xf6\xb1\xcf\xb6\x59\x72\xa0\xee\xf5\xa6\x02\x98\x05\xeb\x45\xc9\xc4\xd8\x45\x63\x25\xa5\xce\xa2\x80\x06\x4e\xac\x55\x6f\x5f\x87\xeb\x58\x29\x35\x45\x41\x75\xac\x0e\x65\x14\x93\x82\x16\xd1\x62\xcb\x42\xf4\x98\xe2\xe7\x92\xf2\xcf\x06\x88\x81\xfc\x2d\x30\x33\xc6\x44\x8d\x1c\x83\x99\x01\x26\x6a\xd8\x18\xcc\x8c\x2e\x51\x63\xa6\xc5\x28\x70\x5e\x69\xa9\x85\x99\x81\xcc\x88\x97\x7d\xb9\x30\x33\x98\x89\x8a\x27\x95\x04\x06\x33\x43\x38\x0f\xa5\x72\xc4\x60\x26\x2a\x54\x0d\xa6\x44\x89\xc3\x47\x48\x26\x80\x65\xa5\x12\x19\x3e\x23\x24\xf4\x3e\x5e\x66\x33\x03\x27\x4f\x4e\x36\x23\x8b\xff\x86\x3c\x66\x24\x6a\x5b\x0a\x17\x23\x8f\xd9\x8f\x16\x0b\x16\x2b\xe6\x29\xc7\xa2\xb2\xfd\x9a\x38\x7c\x4a\xf4\xcd\x79\xd6\x42\x47\x84\x2c\xc4\x30\x4f\x93\xf1\x2c\x9a\x4e\xd5\xf6\x7e\xbe\x49\xc6\xf4\x56\x3d\x87\xff\x7a\x16\x73\x30\x5a\x72\xf5\xd3\xb3\x98\xec\xc1\x14\x91\x62\x2d\x66\x57\x0e\xa4\xbe\x1b\x47\x0f\x33\x2d\x28\x8f\x9b\xca\x6c\x93\x92\xa9\x8c\x0a\xac\x47\x50\xf0\xf0\x5f\x66\xd1\x2a\xb8\x1e\x41\xc1\x63\x7f\x99\x7a\xa8\xe0\x7a\x04\x05\x0b\xfc\x15\xfd\x94\x70\x3d\x82\x42\x4a\x1f\x09\xd7\x23\xcd\x98\x76\xc9\x76\x5a\x9b\xaa\xfe\x3c\x5a\x89\x8f\x75\x6e\x70\x2b\xb0\xff\x0a\xdc\x58\x85\xf3\x88\x02\x05\x57\x9a\x8b\x19\x5e\xa5\xe0\x6d\x5d\xbb\xcf\x43\x09\x18\xbc\xb8\x73\xc8\x99\xd2\x97\x5a\xb9\x99\xc7\x0c\xb3\xde\xaf\xae\xc8\x64\x6f\xaf\xba\x26\x93\xbf\x3d\x63\xc0\xab\x77\x14\xe9\x2a\xcc\x14\x43\x33\x8f\xee\x4a\xd1\x96\x33\x3f\x6f\x52\x6d\x40\xb2\x60\x52\xf9\x95\x83\xb5\x30\x16\xb9\x2a\x71\x09\x2f\xe1\xdb\x8a\x17\x17\x1e\x16\xad\xc1\xa4\x9f\x02\x1b\x62\xfe\x80\xe9\x9c\x1d\x1d\x6e\x2c\x3e\xfb\x4d\xa9\x1b\x2b\xb8\x19\x61\xc6\xc3\x07\x75\xb8\x4e\x25\x16\xb6\xea\x29\xec\x8c\x30\x1e\xd6\xfe\xbe\x0a\xe3\xd1\x32\xf8\xaf\xe6\x30\x70\x64\x51\x6e\x7e\xdb\xcc\x61\x60\x49\xc7\xea\xe8\xd0\xcc\xa0\xa3\x49\x2d\xfe\x7d\x35\x96\x66\x30\x51\xab\x29\x22\x30\x78\x58\x3b\xcf\xa1\x47\x78\xf8\x3c\xc8\x7a\x5f\x89\x68\x2d\x87\xaf\xd9\x12\x4d\xe6\xf6\xca\x67\x92\x19\xe7\xe1\xef\xb7\xe5\x68\xe6\x93\xc9\x0c\xf5\x60\x11\x3c\x6c\x44\xb5\xf9\x64\x46\x7b\x30\x75\xa0\xd9\x32\x26\x42\x21\xda\xc8\x6f\x49\x1b\x5e\xc7\xc5\x0c\x38\xf2\x7d\x15\x7b\xd9\x69\x15\xf2\xc0\xd6\x3c\x04\x20\xd6\x05\xa4\xb4\x25\x9a\xda\x08\xca\x3c\x46\xb4\x5e\xd3\x14\x33\x2a\x93\x11\xad\xe7\x7b\x26\x79\x64\x26\x3d\x5a\x8f\x99\x58\x3a\x81\x64\x26\x23\x5c\xaf\x40\x23\x73\xd6\x2a\x75\xa3\xd9\x36\x33\x94\x15\x92\x62\x8e\xb2\x5a\xe2\x15\x1a\x29\x2b\x27\x87\x9e\x99\xa3\xac\xa2\x08\xe2\xcd\xf5\x38\xc8\x8e\x14\xae\x82\xe9\x12\x48\x74\xa9\x23\x94\x18\xd7\x46\x46\x7c\x25\xf7\x1f\x4b\x52\x0b\x90\xbf\x05\xa6\x77\x48\x51\x5f\xc0\xf4\xae\xa8\xc5\x58\xc0\xf4\x4e\xa8\x78\xce\x79\x88\x53\x39\xff\x19\x6f\xb4\xa9\x2a\xb9\xaf\x20\x3a\x22\x9d\xa6\xb4\xa2\x39\xcc\x08\xcf\x39\x94\x2a\x31\x87\xe9\x88\xb0\x49\xc2\xe4\x25\x87\x19\xa1\x39\x52\x21\x9e\xc3\x24\x5a\xce\x4b\xa7\x64\x0a\x47\x58\x78\xae\xd2\xc9\x09\xde\x4d\x06\x33\xe2\x29\xa9\x8d\x7e\xd8\x91\xe2\x58\xcf\xa0\x2f\xa8\xbe\xa7\xa6\x9e\x9e\x45\x5f\x53\x8f\x3a\x8a\xd0\x5a\x0e\x7d\x55\xcd\x85\x80\x9e\x43\x5f\x57\x3b\x1d\x45\x74\x96\x63\xb1\xc4\x8b\x58\xf6\xb3\x7d\x20\x45\x80\x5f\xcc\xa1\x24\x96\x2f\xbc\x61\x3a\xaa\x3c\x8b\x72\xf2\x30\xd6\xf4\x4d\x5c\x79\x16\xe5\x1b\x3b\x10\xe1\x67\x3a\xb2\x3c\x8b\x94\x58\x2d\xee\x1b\xd6\x71\x35\x05\x30\x5b\x00\x98\x4f\x85\xf9\xf3\x44\x96\x82\x50\x63\xf3\xd9\x6b\x9b\xb8\x64\x0b\x1c\x25\x0f\xc5\x8d\x15\x1e\x31\xa7\x32\x15\x82\x13\x0f\x9a\xca\xb3\x90\xe7\xe1\xf1\x89\x79\x74\xea\x11\xf3\x04\x48\x45\x7f\x1e\x4d\x12\x53\x31\xe4\xc2\x4c\x2a\x11\xf3\x28\x21\x63\x0c\xe1\x5c\x37\x8e\x85\x0a\xcb\xc0\x19\x79\xc6\x69\x56\x3a\x65\xd4\x64\x7e\x4d\x05\x2e\x1d\x34\x2a\xc0\x4b\x67\x8d\xb8\xd2\xa1\xe0\xe5\xe3\x46\xcc\x0f\xa5\xe0\xe5\x13\x47\xcc\xff\x30\x4f\xc7\xe3\x30\x8b\x92\x62\xeb\xbc\x74\x12\x3e\x86\x7f\x49\x4b\x31\x6e\x4d\xa5\x36\x68\x19\xfc\x57\x73\x98\xd1\x67\x07\xd2\x45\xa8\xe5\x30\xc3\xd0\x94\xea\xa8\xe5\x30\xbb\xe1\x0b\xff\x7b\x12\x3e\x3e\xeb\x93\x98\x2b\xc4\x34\xb5\x14\xd7\xcf\x20\x69\x3c\x89\xc3\xb1\xea\x53\x4b\xba\x33\x98\x44\x65\x21\xe0\x13\x1c\xde\x4b\xb1\xc1\x0e\xfd\x34\xc5\xb9\x22\x05\x55\x56\x80\x8c\x46\xdf\x6f\xea\x60\x65\x04\x48\x2d\xba\x73\xa8\x83\x75\x1b\x20\x97\xf3\x0a\x5c\x0a\x2f\x66\xb6\x56\x39\xf0\x7c\x5f\xec\xff\x55\x04\x9d\x9b\x20\x43\xa5\xa2\x8d\xe6\x20\x83\xe8\xad\x96\x0e\x32\x94\x3d\x4f\x87\xe4\xde\x06\xd6\xf5\xa3\x02\xcc\xdf\x06\xd4\x71\xd9\x6f\x17\x80\xc6\x31\xaf\x4e\x01\x68\x9c\xf4\x3a\x90\xc0\x5c\x48\xf3\x48\x44\x2e\xfa\xda\x0a\x66\x90\xa5\xe5\xcb\x99\x69\x4a\x66\x46\x18\xe6\xe7\x63\xb3\xde\x10\xca\x4d\xb5\xd9\xc2\x9d\x9f\xa6\x3c\xa6\xc8\x70\x19\x47\x97\xac\x45\x18\x43\xa5\x95\xc3\x35\x4d\x4f\x66\xd1\x0c\x01\xee\xf5\x62\x47\xcf\x9a\x3a\xd8\xd7\x79\x84\x21\xcf\x04\x9b\x82\x37\xab\x0d\x09\x05\x6f\xe9\x26\x39\xd7\x94\x0d\xb8\xdc\x14\x93\x61\xa9\x87\x12\x5a\x10\x9a\xfe\x41\xc7\xb0\x04\x8d\x2c\xca\xff\x7d\x60\x58\x93\x46\x1e\x35\x17\xda\x9b\xeb\x51\x13\xc2\xb4\x2a\x8d\x3c\x6d\x6d\x21\xd7\x2c\x4b\x9a\xa7\x20\xc3\x99\x37\x97\x6f\x65\xb5\x0f\x8a\x59\x4c\x7e\xf0\xe4\xd6\x81\x91\xc7\x64\x0b\x36\x36\xa5\xa6\x4c\xee\x68\xeb\x1c\xa0\xf2\x14\x99\x84\x19\x6b\x8b\x70\x11\x3e\x87\x4f\xb3\x68\x61\x58\xb8\x6c\xd9\x61\x70\x08\xc7\xb3\xc5\x72\x3a\xd5\xc1\x7c\x4b\xa2\xa3\x83\xfd\x57\xe0\xa6\xc0\x55\xfb\x20\x0a\x6e\x8a\xdb\x8e\xb4\xf5\x14\xdc\x0c\xfe\x3d\x92\xc6\xde\x02\xf0\xb2\x28\x33\xd8\x86\x4e\xd1\x3c\xe5\xbe\x0d\x09\x31\x4f\x40\xf9\xd2\xc9\x54\x36\x4a\x8f\xe4\x46\x49\xd9\x1e\xed\xc8\x3d\xa7\x92\x29\xca\xb0\x63\x90\x78\x29\x97\x62\x36\x6e\xfb\x2c\xa4\xda\x17\x10\x13\x89\x03\xc5\xae\xf1\x72\x6e\x1e\xbf\x52\xca\x06\x05\x99\xb1\xc8\x4a\x4b\xa4\x20\x33\x0e\xb9\xa9\x78\x32\x7d\x9a\x18\x27\xf1\xb8\x8d\xd8\x96\x8b\x8c\xa1\xb0\x51\x14\x99\x6b\xbf\x9d\x83\xd4\xe4\x17\xd1\xec\x02\x4f\x43\x45\xa3\xe4\x68\xe7\x88\x1a\xba\x59\x53\x44\xb2\x0b\x4c\x75\xa5\x8c\x69\xb1\xca\x9d\x62\x4a\x72\x21\xe4\x0b\xb3\x24\x4f\x2d\x18\x0c\x22\xb5\x60\x2a\x88\xd4\x82\x91\xc0\x52\xd3\xec\x59\x3f\x1a\x2c\x4e\xf1\x48\x87\xab\x02\x97\x42\xc7\xb9\x97\x43\xc1\x4b\xb1\xe3\xdc\xcc\x52\xf0\x52\xf0\x38\x3f\xc1\xa3\xe0\xa5\xe8\x71\xbe\x8b\x8e\xd3\xe7\x50\x33\x70\xf7\x95\xd8\x6f\x1a\x50\x3f\x57\x26\xf9\xe9\xd6\x8e\x01\x16\xc8\xed\x1f\x08\xe7\x3f\x1f\x1e\x05\x96\x31\x1b\x87\xc2\x14\x30\x5b\x96\x71\x2c\x47\x7c\x6d\xe4\x63\x94\x85\x93\x49\x0c\x3a\xe1\x8c\xe3\xa7\xa6\xe3\x45\x79\x05\xd9\x12\x58\xe1\x73\x69\x7b\xb2\xbf\x15\xee\x16\x2a\x0f\x99\x11\x55\xe1\x68\xa1\xf2\xf4\x30\xaf\xd4\x90\x6d\xfb\xc8\xea\x1c\x30\x50\x32\xd1\x87\xb8\x49\x19\x94\xb9\x3f\x98\x25\x68\x2a\xff\xed\x7d\xb9\xf4\x1c\x68\x30\x3f\x5f\x97\xc4\xb2\x77\xa4\x41\x05\xb6\x07\xea\x7c\x1f\xdb\x0b\x2f\x1c\xdd\xda\x3f\x50\x4b\x9e\x0e\x6d\x6f\x68\x36\x9b\x41\xac\x9f\xdf\x15\xda\xe0\xa1\x06\xf5\xb7\x83\x4d\x37\xe4\x91\x74\x89\x48\xb0\xe9\x80\x3c\x90\x7e\x6b\x09\x2e\xed\x15\x70\x27\x66\x16\x41\x92\x84\x9a\x90\xa0\x86\x21\xf3\xf0\x73\x48\x69\x21\x63\xeb\x18\x87\x95\x16\x30\xe6\x01\xe3\xb0\xd2\xc2\xc5\x47\x8e\xc1\x8a\x0b\x16\xef\xe5\x06\x8f\x18\xd3\x88\x0b\xce\x30\xcd\x5f\xa6\x41\xa5\xc8\x62\x72\x87\xad\x0b\x7a\xc5\xea\x2c\xf8\xa1\x08\x02\xe0\x93\xc2\xf4\x7e\x31\x67\xa6\xaf\x24\x6c\xd1\x46\xa4\x4d\x1e\x29\xd1\xac\xa0\x0a\x2d\xba\x16\xf8\xea\x28\x96\x82\x2b\xc4\x58\x98\x8d\x72\xd6\x2b\x78\x4b\xd3\xc4\x0f\x8f\x4a\xd5\x4b\xdc\x28\x81\x3d\x03\x35\xdd\xdf\xd6\x94\x53\x92\x29\x68\xa5\xf3\x7d\x47\x87\x86\xff\xb0\x74\xb6\xef\xb0\x63\x38\x0f\x4b\xe7\xfa\x98\xa9\x9e\x3b\x0d\x8a\x67\xfa\x38\x59\x73\x9f\x58\xc9\xd5\x57\x40\x2f\x29\xf8\xca\xd4\xf6\x14\x85\x94\x37\x69\x14\xa8\xb4\x39\xc3\x55\x69\x0a\x2a\x6d\xca\x70\x45\x9a\x82\xca\x9b\x31\x4c\x8b\xaa\xb6\xee\x3b\x32\xb6\x47\x03\xfb\xaf\xc0\x0b\x61\x94\xfc\x98\x9f\x06\x2f\x84\x53\xf2\x58\x2b\x0d\x5e\x08\xab\x64\xf1\x6f\x05\x4f\xe8\x81\x0a\x2e\x62\xcb\x50\xd1\x07\x7a\x74\x24\xe2\x3f\xc4\xf8\x16\xbc\x9f\xfc\xdd\x2f\xf9\x9c\x28\xf8\x3d\x99\x1d\xdc\x56\x4b\x79\xd1\xe3\xc9\x76\x91\x3c\xc5\x7b\x44\xed\xff\x88\x7d\x67\xb9\xd1\x49\xc2\xa4\x64\x1f\x1e\x88\x12\x25\xeb\x90\xe9\x89\x24\x4c\x4a\xb6\xe1\xbe\x00\x14\x2d\x43\xb6\x7c\x93\x59\x94\x91\x58\xbd\x9d\x61\x5f\x1e\x7e\x64\x6f\x84\x11\x40\xd3\x4d\xa0\xec\x05\x01\x35\xbd\x1c\x6a\xed\x14\x50\xd3\xc7\xa1\x1c\xc1\x02\x6a\xba\x06\x14\xb7\x93\x74\x1e\x92\x54\x6b\xf5\xe8\x48\x08\x4a\x0e\xf1\x37\x83\x8c\x2d\xf1\xa6\x10\xa1\x1c\xa4\xa3\x42\x07\x88\x49\x50\x0e\x32\x36\xc3\xdb\x42\x82\x16\x4c\xaa\x7d\x15\x39\xe2\x19\x50\x8d\x97\xf3\xd7\x7d\x14\xed\x28\xcf\x78\xd9\x47\xd1\x82\xf2\x8c\x57\x7d\x14\x6d\x27\xcf\x78\xd3\x87\x7e\x32\x37\x5f\xfe\x79\xbd\x45\x8b\x8a\x0a\x11\x66\xc3\x32\x21\x51\x69\x4c\x31\x07\x3d\x13\x07\x95\x76\x14\x8b\x18\x6b\x1b\x60\xc3\xda\x57\x41\x82\x95\xd6\x13\xc5\x9a\x45\x7a\x3e\xcd\x20\x94\x38\xb7\x73\x67\xd3\x91\x04\x99\xdb\x86\xbe\x8c\xac\x62\x30\x93\xbf\x58\xf4\x57\x5b\xc2\x4c\xee\xda\x97\x5d\x61\x30\x93\xb7\xf6\xa5\x94\x28\x9f\xfe\x54\x83\xc6\x40\xd9\x3c\xfd\x56\x7e\xf5\x10\x5b\xc1\xab\xf7\x24\x3c\x05\x29\x6d\x46\xe4\xa0\xd2\x2e\x44\x0e\x2a\x6d\x3f\xe4\xa0\xd2\xbe\x43\x0e\x32\x9c\x11\xba\x43\x6a\x8d\xa2\xc6\x94\xdf\xbc\x30\x6d\x8c\x31\x84\x04\xce\x92\xe5\xbc\xea\x9d\xb4\x09\x3c\x59\xe2\x5d\xd0\xfc\x65\xc9\x53\xf9\xc2\xd8\x3f\x86\xc6\x55\x85\xda\x2d\x24\xda\x3b\x65\xff\xbd\xc3\xde\xd3\xff\xa3\xfb\xc5\x71\x86\x7f\xfa\xe2\x8e\xea\xee\x17\x77\xef\x21\xd2\x5f\x07\x8e\x51\xca\x5e\xe6\x9b\x5f\x35\x31\x4c\x47\xfc\x2e\x10\xfb\x73\xf2\x2d\x49\x9f\x12\xeb\x31\xc4\x51\x78\x1f\x43\xd7\xb2\xeb\x69\x8f\xbf\x6e\x9b\x88\x3b\x6d\x30\x7f\x6d\xae\x81\x58\x43\xd6\x9f\xb9\x59\xb0\x11\x36\xc4\x23\x47\x5c\x77\x63\xb1\xcb\xc2\xcd\x46\x21\x1b\x87\x0b\xb0\x64\x76\xda\xb6\xba\x22\x3a\x5b\x97\xa9\x91\x57\x1c\xbc\x40\x32\x4e\x27\xf0\xf9\xe6\xa2\xab\x9e\x90\x7a\x3a\x4d\xe7\x8b\x34\x81\x84\x74\xcb\x49\x88\xb7\xfa\xe1\xee\xe3\x65\xb7\xfc\x16\xea\x17\xfb\xd8\xee\xda\xb5\x98\xf4\x6c\x64\xbf\xa3\x8f\x0f\xec\xb1\x46\x1f\xc3\xf9\xa2\x67\xa3\x1f\xec\x1f\xba\x76\xed\xaf\xcb\x94\x01\x7e\xa0\x80\xdf\xb5\x8e\x7a\xf6\xba\x57\x1e\x9e\xe1\xf1\xbb\xda\x17\xfb\xcb\x0f\xa3\xbd\x07\x54\x75\xeb\xe4\x10\x46\x6b\x7e\xb1\xf7\xb4\xf1\x00\xa4\x3f\x1e\xc3\x82\x5c\x86\xc9\xc3\x32\x7c\x00\xf3\xa2\xca\xea\x2c\x8d\xf1\x0c\xa7\x73\xb8\x5d\x2e\x16\x29\x26\x30\x71\xdc\x13\x9e\xd2\x88\xfc\xc3\xa4\xa2\x80\x03\x6e\x57\xbb\xb0\x45\xbb\x82\x06\x9c\x61\x12\x3e\x46\x0f\x21\x49\x71\x23\x16\xf9\xf3\xae\xec\xee\x3d\x20\xfb\xab\xed\x8e\xdc\x35\xbb\xe4\xe5\x6d\xf8\xe8\x77\xdc\x88\x4e\xf3\x6b\x81\x44\xc6\x5a\x4d\x43\x97\x57\xca\xde\x70\xfd\x4f\x4b\xc0\xcf\x81\x79\x35\xa6\xfe\x8e\xea\x13\xdb\x15\x6f\xc0\x57\xb7\x31\xb8\xf9\x4d\x46\x74\xea\xb1\x8b\x13\xf8\x75\x44\x35\xdb\x45\x51\xe0\xf5\xa2\xe3\xfc\xde\x57\x79\x85\x53\x1a\xb0\x0b\x5f\x45\xce\xc0\x76\x7b\x64\x38\x81\x22\xd3\x38\xe9\xd0\x1b\xb9\xa3\xa0\x12\xe2\x8f\xd4\x2b\xb8\x89\xa2\xcb\xe7\x9b\xcb\xaa\xe9\x9e\x43\x37\x8f\x9c\xb8\xa4\x48\xe4\xa3\x03\x06\x7a\xb5\xbf\x99\xc4\xa2\xde\xe2\x6f\x51\xad\x10\x56\x71\x38\x5f\x94\xde\x6b\x2e\x19\xfb\x98\x9c\x90\x2e\xbc\xc3\x27\x58\xa2\xf4\xb7\x45\x58\x7d\xf3\x4d\x2e\xd4\xd4\x0d\x3f\x0e\x41\xb6\x67\xe7\xac\xf3\x33\x13\xf5\x8b\x70\x0c\xa5\xf7\x91\x1f\x07\x9e\x78\x43\xb8\x6d\x8b\xeb\x0a\xd8\x35\x3a\x46\x29\x7e\xf7\x7c\xe3\x49\x25\xb0\xbb\x3e\xf3\x9f\x81\x6d\xa9\xff\x6c\xb7\x07\xef\x74\xa0\x64\x04\x57\x4f\xac\x07\xfa\x2f\xf5\xd2\x7f\xbd\x98\xba\x8b\x43\x4a\x6b\x76\xff\x52\xe5\x6b\xe6\xc9\x6a\xd5\x81\x16\xbb\xea\x80\xf5\xf7\x96\x84\xe3\x6f\x8e\xaf\x5e\x35\x5f\xb8\x8c\x8b\x04\xd5\xf3\x92\xdf\xb1\x66\x67\x8c\x9e\x76\xa0\x6e\x73\x3a\x89\xba\xc0\xde\x77\xde\x8b\x82\xe8\xc4\xa6\xd2\x33\xea\xda\x36\x32\x6e\xd1\xb2\xe3\xe8\x5e\x22\xd9\xb5\x08\xaf\xdd\x82\xef\x8b\x88\x6a\x28\x54\xe0\xee\xf9\xd0\xaa\xdb\x99\x5d\x8f\x5c\x55\x34\x4e\x1f\x9c\xd4\x45\x24\xe0\xaf\x1e\xc7\x74\xfa\x54\x30\x73\x99\xf1\x48\xad\xe6\x8c\x63\x08\xb1\xec\x07\x91\xb5\xb8\x08\xc4\x0d\x68\xf4\x17\xca\xef\x25\x5e\x4b\xb9\x59\xd9\xc3\x88\xae\x8a\x4e\xce\x33\x8c\x86\xe5\xdb\x03\xe8\x6c\x3f\x81\x7a\xb3\xdb\xdc\x7e\x83\x1c\xa9\xba\x3d\x6e\x9d\x5f\x33\xfc\xb2\x46\x69\x80\x7b\xe9\x31\x29\xdc\x2c\xbc\x8b\x47\x6c\x3d\xdc\x74\xad\x9c\xba\x75\x85\x63\x9a\xcd\x43\x4c\xce\xe3\x34\xc5\x83\xe8\x31\x9a\x14\xef\x70\x16\x57\xdc\xec\x11\x14\xf1\x77\xfb\x8f\x21\x8a\x1d\x9c\xd7\xb2\x8b\x8f\x7d\xd8\x6d\x9f\x44\x5d\x06\x9e\xd2\x9a\xc4\xf5\x03\xd3\x06\x0e\x93\x49\x3a\xbf\x48\x36\xdc\x51\xa6\x95\xe0\xf7\x06\xb0\xec\x8e\xfb\xa3\x43\x76\xa1\xee\xbb\x6e\x9d\xcd\xdd\x8f\x90\x65\xe1\x03\x7c\x0c\x93\xf0\x01\x70\xf9\xaa\x6a\xb9\x02\x64\x5f\xd9\xab\xfc\xab\xef\x8b\x29\x2f\x0f\x6b\x7e\x2b\x4e\xa1\x0a\x75\x35\x8e\x0d\x09\x95\xdc\x45\xf0\x32\xe1\xd7\x00\x30\x30\xbf\x70\x7a\xce\xf1\xcb\x82\x97\x75\x19\x5d\xed\xf6\xad\x70\x32\xf9\x28\xb3\x56\x5e\x45\x4d\xb5\x97\xfc\xf2\xc0\x21\x19\xf5\x70\x83\x21\x3d\x4b\xe3\x09\xe0\xec\xc4\x68\x6e\x48\x46\x01\x96\xbf\xb4\x77\xf7\xff\x9e\x2b\x5a\xc3\x3f\x7d\xc9\xbe\xfc\x9e\x6a\x59\xbf\x37\xb4\x2c\xed\xc2\x15\x8b\xb6\x61\xb4\x30\x8c\xcc\x5b\x04\x46\x8d\x71\x9a\x10\x48\xc8\xda\xed\x6e\x6e\x7c\x7b\xb7\xa7\x51\x32\xe9\x27\x93\xcb\x34\xac\xea\x7e\xe1\xa2\x70\xba\x7c\x9e\x50\x39\x24\x2e\x5b\xe8\x66\xf9\x33\x92\x97\x68\x9f\x24\x8e\xdb\x25\x4e\x8a\x32\x7e\x07\x53\x54\x1a\xc4\x71\x9a\x8c\x43\x5a\x24\x0d\x86\x23\x94\xd1\xaf\xa4\x74\xb1\x7f\xac\x61\xc4\x2f\xf4\x16\x44\xbc\x81\x29\x60\x48\xc6\x54\x07\x41\x91\x8b\x70\xe3\x3e\x4a\x26\xfc\xae\xee\x1d\xaf\xf0\xdb\x77\xdd\x75\xfe\xdb\xed\x25\x5c\x06\x6c\x24\x47\xbc\x89\x0e\x74\xf9\xe2\xbd\xa1\xe2\xe0\x9f\x3f\x5e\x7e\x20\x64\x71\x03\x7f\x5d\x42\x46\x7a\x51\x23\x4d\x68\x49\x48\x8c\x55\xb4\xe9\x79\x01\x25\x10\x09\xc9\x32\x3b\xe1\x9d\xd0\xd8\xcc\xf9\x8f\xb7\xd7\x57\x5c\x4d\x71\xa2\x06\x86\x6c\x91\x26\x19\xdc\xc1\x77\xe2\xba\x88\x38\xae\xdb\xc5\xb5\x1a\x76\x64\x05\x46\x47\x50\xd4\x48\x17\x90\x38\xf6\x4f\x67\x77\x36\x02\xfa\x3b\x83\x64\x52\xd9\xbb\x12\xdd\x5e\xb5\x06\xbe\xfc\xde\xf9\x32\xa9\xbb\x86\xb2\xa9\xad\xdf\xfc\xd6\xf5\xf5\x76\x4a\x96\x5b\x7d\x1d\xb1\x6d\xf5\x3d\x00\xa9\x1e\x10\x79\xdd\x8f\x65\x4c\x01\x57\xb0\x9d\x9a\x12\x30\x52\xf6\x83\xa1\xd6\x30\x8d\xb1\x56\x73\xa2\xa0\xa0\xf0\x0a\x4c\x1c\x70\x5d\xb4\x13\xb9\x85\xbb\x44\xf8\xaa\x28\x2d\x10\xd1\x8a\xb8\x4b\x44\x19\x48\xf8\x04\xba\x58\xbf\x9b\xaa\x74\x2d\x0f\x55\x35\x82\x21\xbb\xf5\xb1\x9a\xc5\x23\x44\x5c\xb7\x1b\x6d\x25\xf5\x02\xa7\x63\xc8\xb2\x0b\xff\x30\xe9\x13\x7e\x9f\xf2\x26\x21\x16\x40\xe3\xaf\x54\x25\xbe\x85\x18\xc6\x24\xc5\xfd\x38\x76\xec\x21\xed\xf2\xc8\x76\x11\xbf\x1b\x88\x18\x37\xec\x53\xb4\xaa\x1a\x70\xc8\x10\x8f\xb6\xb3\x40\x55\xb1\xca\x1b\x7b\xa8\xfe\xaf\xea\xb5\x29\x36\xb6\xb8\xde\xe5\x85\x2d\xc3\x81\x36\x53\x88\x2b\x96\x61\xec\x8a\xf5\xb9\x78\xbd\x4b\x98\xfc\x40\x2c\x96\x99\x0e\x47\x83\x84\x0f\x57\xe1\x1c\xea\xf6\xef\xe8\xaf\x68\x52\x67\x2a\x0e\x71\x11\x56\x0b\x36\xb3\x4c\x89\x9c\xe0\x18\xa5\x01\xed\x5c\x2f\x35\x4c\x85\x80\x99\x0a\x0c\x14\xa4\xb9\xb9\x30\x72\x91\x99\xef\xf7\x22\xdf\xdb\xd6\xb9\x06\x49\x3f\x2f\x16\x52\xa2\xaf\x9d\x02\x31\xb4\x86\xdc\xba\xfd\xd5\xae\x63\x71\xef\x56\xa6\x14\x59\x27\x75\x7b\xf6\x57\x3b\x08\xa2\x13\x68\x10\xf8\x4e\x4e\xf9\xa2\x10\x64\x5d\x60\xf7\x17\xa9\xca\x22\x2a\x92\xd9\x72\xf0\x09\x4b\x0e\x2b\xaf\xdb\x54\x24\xb0\xba\x33\x92\xe2\xf0\x01\x02\x40\xfa\xcf\xeb\x7b\x76\x4b\x3c\xfe\xca\x11\x48\x93\x5b\x9e\x7e\x3a\x0b\x93\x07\xf8\xaa\xcb\x28\x96\x21\xca\xfa\x63\x12\x3d\xc2\xd7\x60\xc7\xe7\x29\x21\xfd\x1d\x12\x70\x44\x0e\x82\xa9\x92\xbd\xe3\xf7\x94\xba\x6b\xef\xd9\x3d\xdc\x80\x64\x22\x48\xba\x67\xbb\xab\x95\x83\xeb\x01\x7d\x42\x82\x25\x61\x1a\x7d\x0f\x70\xfe\xeb\x06\xc6\x29\x9e\xf0\xcb\x82\x39\x6d\xd8\x7d\xbc\x12\x5f\x7e\x63\x30\x03\x8c\x67\x51\x3c\x39\x0f\x29\xff\xcb\xdb\x85\xf3\xf4\xcb\x28\x23\x2c\xad\x92\x4e\x1a\x77\x0f\xce\xce\xfb\x9f\x2f\xef\xbe\xfe\xb1\x7f\xf9\xf9\x2c\x30\x3d\x34\x8e\x2d\xa0\xd4\x62\xac\xa8\x85\xe3\x5a\x45\x74\xaa\x88\x4b\x8a\x4f\x60\x1a\x2e\x63\xf2\xc7\x30\x5e\x42\x40\x04\x8e\x4b\x8c\x21\x91\x69\x34\xc5\xc0\x83\x67\x4a\x65\x9f\x83\xe1\xa8\xba\x1b\x1c\x81\x2d\xbd\x79\x73\xcf\xdf\x56\x7d\x38\x99\xc8\x81\x28\xab\x88\x0a\x5d\x7e\x75\x13\xb7\x88\xde\x50\x29\x86\x79\xfa\x08\x95\xf5\x6a\xb6\x5e\x5e\xbb\xba\x57\xd1\xed\x91\x77\x81\x27\xd4\xc7\x1c\x2e\x2e\x0e\x24\xc8\x7f\x2b\x06\xc6\xa2\x94\xaf\x8f\xa5\x81\x0a\x2a\x86\xea\x64\xef\x4f\x0e\x37\x55\x56\xc9\x72\x7e\x0f\xd8\xfd\xfd\x1e\xbf\x05\x4d\xd8\x2d\x25\x1e\x70\x4f\x4a\x49\x5d\x9b\xdf\xa9\x9d\x5b\x3b\xa5\x2c\x27\x9a\xf0\x64\x8f\xbc\xd1\x68\xfa\xec\x94\x5b\x10\x8a\xa4\xd1\x44\xa9\x3b\xaf\xcd\x8c\x09\xc8\x29\x5e\xb8\x9a\x78\xc7\x94\x08\xe5\x7b\x84\xaf\x52\x62\xc9\xb2\x13\xdb\xed\x6d\x90\x20\x42\x14\x15\x18\xc0\xa9\x14\x53\x1b\x86\x52\x63\xcd\x6a\x5c\x5f\x43\xb5\x2f\x2e\x31\xdf\x86\xae\x67\xa2\xab\x4d\x82\xdf\x88\x2b\x6d\x52\xc8\xdb\x4d\xf7\x0f\xba\x2f\x5e\x10\xec\xee\xe2\x5a\x0d\x6a\x35\xba\xa4\x88\x4b\xff\x50\x14\x5c\x33\x56\x69\x7c\x83\x67\xa1\x51\xeb\x62\xd3\xdd\x64\x9c\x69\xe2\xb6\x0e\xba\x0e\x2a\xfa\xcb\xc4\x77\xad\xa6\xdb\xfc\x76\xde\x87\xcc\xa2\x38\xb3\x15\x37\xaf\xc7\x35\xe9\xf2\x00\xe4\x82\xc0\x9c\x2a\x3b\xaa\xfd\x48\xba\xd5\xb4\x62\x52\x2f\x51\x37\x39\x32\x87\xb2\x2b\x6e\x40\x8f\x86\xd9\x08\x85\x41\x26\x57\xcc\xd4\x45\x71\x10\x2a\xc5\x50\x13\xee\xb5\x5a\x61\x1e\x24\xee\x4e\x50\x35\x35\x74\xfa\x0c\xc3\x91\x31\x09\x44\xef\xb7\x65\x09\x12\x14\xd7\x6a\x0e\xae\xd7\x45\x7f\x9f\x93\xf1\xa9\x44\xc3\x09\xa9\x66\xb7\xf6\x82\x80\x0f\x95\xe6\xb4\x01\x43\xd5\x7f\x95\x29\x26\x30\x8d\x12\xc8\x73\x54\xaa\xc9\x1a\x21\x15\xba\x30\xea\xa5\x27\x82\x38\x74\xf1\x1e\xf0\x59\xcf\x56\xa3\x6e\x75\x01\x66\xfd\x6c\x16\x8d\xac\x28\xc2\xb5\x5a\x6a\x30\x3b\xfe\xd5\x7d\xd8\xa4\xbe\x7a\x3d\x92\xdf\x5d\x49\xa4\x7e\x5a\x2c\xed\x50\xd3\x79\xe8\x8d\x10\xfb\xeb\x8b\xbf\xcd\xd1\x1b\xd1\x60\x63\x84\x21\xa9\x5a\x9f\xcb\x4d\x21\xa9\x56\xa4\x89\x1a\xdc\x92\x32\x84\xa8\x15\x51\xa5\x7c\x50\x9a\x92\x92\xfa\x41\x53\x5f\xd7\x40\x34\x12\x17\x6d\x3a\x6a\x13\xd5\x6a\x6f\xbb\xbc\xfd\x42\xdc\xd8\xbe\x08\x71\x38\xef\x5a\x5c\x6d\xca\xb8\x06\x0e\x62\x91\x2c\xea\x52\x72\xa5\x46\xc4\x2d\x2a\xd1\xec\x36\x7e\xac\xe6\x9d\x21\x63\xca\x8d\x4b\x0b\x6a\xa1\xfa\xc9\xbc\x89\x55\xb3\x0b\x8f\x4c\x09\xca\xec\x8f\xd7\x68\x94\xa4\x24\x9a\x3e\xf7\xe3\x58\x17\xef\x12\x65\xa8\xc6\x92\x2b\x62\xac\xa0\x18\xc8\x8d\x3a\x49\xb1\x21\x91\x7f\x93\x2e\x52\x9c\x7e\x6c\x4d\x7c\x2b\x51\x20\xdf\x99\xc0\x01\x61\xaa\xbf\xdc\x8f\xa8\x1e\x23\x6d\x8f\xa2\x32\xc3\x30\x1a\x31\xbb\x9e\x55\x2b\x2a\xd2\xd4\x21\xbd\x78\x9e\x4c\x0b\x61\xc4\x35\xd4\x57\x89\xc2\x35\x62\x36\x2d\xaa\xa5\x12\xd2\xec\x18\x60\x1c\x87\x19\x07\xa5\x01\x46\xbb\xfe\x4e\x90\x2b\x6d\x69\x05\xf3\x0c\x96\x54\x63\x0b\x09\x58\x6c\xee\x30\x22\x71\xf3\x2e\x75\xd9\x1d\xa2\x16\xed\x59\x6f\x27\x5d\xad\x8a\x95\xf5\x5c\xee\x4f\x57\x4e\x50\xc7\x47\xfb\x9d\x4e\xab\x53\xb8\x54\x97\xe7\x62\xb7\xf4\xa6\xa8\xed\x22\xc2\x6d\xc0\xba\xdd\xa5\x8d\xf4\xf8\xd2\xb3\x61\x62\xf3\x99\x9f\xdf\x8b\x9c\x08\x53\x27\x5f\x36\x51\xd2\xc0\xc0\xee\x98\x8d\x1d\xb7\x4a\x0a\x0c\xd3\x51\x90\x20\xa1\x18\xa7\x72\xdd\xa4\xc4\x42\x99\x8b\x92\xd7\xf5\x05\xaa\x20\x95\xe9\x2f\x84\xd9\x03\x10\x06\x63\x49\x1a\x26\xd2\x12\xcb\x47\x06\x45\x01\x56\xd4\x23\x6e\x8f\x92\x33\xa2\x6b\x9b\x54\x9a\x23\xe4\x1b\xd8\x61\xd7\x45\x13\x88\x81\x40\x69\xf9\xa5\xdd\x22\x1b\xec\x12\x43\xb5\xae\xe6\x1b\x26\x5f\xa0\x6a\x5d\xdf\x22\x5e\x58\x2e\x2b\x8e\x32\x22\x66\x92\xe6\x99\x34\x51\x63\x73\x92\x79\x6a\xac\xc8\x35\xf7\xbb\x71\xa9\xfe\x1f\x64\xfd\xf6\x0f\x75\xa8\xff\x60\x4b\x3e\xfc\xa1\x9e\x5f\xa0\x8e\xd5\xbd\xba\x1b\x7b\x3d\x89\xa6\x53\xb5\x76\x94\xfc\xaf\x6a\xce\xbf\x84\x93\x09\x4c\xba\x2f\x6b\xc4\xc7\x95\x3d\x8e\xd3\xf9\x3c\x4d\xba\x6c\xb5\x60\x53\x18\xf4\x89\x4b\xc7\x89\xe4\x86\xcf\x30\x1a\xb9\x27\xb8\xc1\xcb\x0c\xe9\xcf\x51\xb0\xe3\x75\x71\x83\xd5\xac\x12\x0c\x81\xa0\x8b\x81\x61\x34\x8a\x12\x4b\x64\x5f\xad\xd4\x6f\x5e\x21\xb5\xd1\x05\xcb\x4d\x86\x44\xd4\xa5\xd1\xe1\x95\x11\x37\xd4\xa3\x8d\x44\xf0\x50\x6a\x30\x66\x56\x56\x6b\xcd\x01\x75\x51\x12\x38\xaf\x53\x9d\x39\xac\x91\xe7\xf6\x92\xe3\x54\xf6\x39\x91\xbb\xbb\x61\x90\x0e\x93\x11\x8a\x35\x11\x12\x32\x69\x15\x33\x3b\x52\x99\x8e\x31\x9d\x05\x3b\x55\x0c\x1f\x8e\x78\x4d\xb3\xed\xc2\x82\xd7\xba\x33\x73\x5f\x8a\x8e\xc6\xf0\x3e\x06\x8b\xa4\x16\x06\xaa\x36\x97\x25\x5e\xe8\xf6\xc6\x69\x42\xa2\x64\x09\xeb\x59\x59\xd0\x54\xe3\x14\xcc\x10\xd5\x4e\x67\xba\x61\xa1\xef\x19\x4a\x53\x82\xd4\x6a\xc4\x71\xd7\xee\x9a\xb9\xcc\xf8\x45\xd3\x99\x4e\xa5\x2d\x53\x3d\x1b\x26\xa3\x51\x6f\x87\xd7\xa2\x69\xb9\xe4\x0d\xd6\x4e\x66\x38\x7d\xff\xae\x4b\x69\x85\x21\x49\x8d\x10\xc7\x30\x77\x5c\x44\x0c\x8d\x7e\xa7\xca\x90\xaf\xd5\x1c\xf2\x36\xbf\x4c\x51\xa7\x78\x1b\x05\x0a\xca\x0b\x53\x5c\x82\xe1\xa8\x67\xec\x4c\x95\x64\xe1\x8b\x26\xc3\xf5\x11\x21\x79\xc1\x88\x16\xc4\x2e\x0b\x5c\xc8\x85\xbf\xf2\x8a\xa6\x5b\xb4\x23\x83\xfa\xe9\xe8\x6d\x44\x7a\xad\x60\x15\xdd\x40\x2e\x7d\xd2\xed\xf9\x8f\x31\x62\xcb\x8c\x90\x39\x99\x8b\xa0\x31\x4d\xf1\x59\x38\x9e\x39\xe5\xf1\xfb\x55\x26\x5a\x34\x9d\x56\xef\xba\x48\xb5\x5c\x29\xe8\x64\xb5\xda\xd9\xfb\x93\xb3\x4c\xb8\xa5\x31\x59\xdd\xa7\x69\x0c\x61\x22\x9c\x44\x2b\x6e\xa2\x16\x7d\x45\xe0\xae\x56\x8c\xf0\xaf\x6a\x64\xba\xa5\x57\x1d\x6e\xb0\x69\x76\x95\x97\xbf\x57\x66\x17\xed\xb5\x83\x0d\x67\x12\x22\x2e\xd3\x1a\x5e\xf7\x8e\x15\x0a\x4a\x23\xa9\x34\x85\xba\xc5\x7c\xaf\x2b\xa5\x3a\x09\xb6\x6e\xf6\x56\xd8\xc6\x84\xd9\x92\xaf\xb6\x91\xc1\x3f\x90\xb8\x62\x9b\x82\x5b\x00\x1a\xa9\x23\x4e\xdd\x2d\xb4\x3f\x29\x92\x9e\x98\x9e\x98\x8c\x7b\x62\x4c\x21\xc8\x76\xa0\x4a\x05\x37\x88\xb8\x57\x25\xaa\x8b\xf4\x35\x60\xcb\xac\x42\x40\x97\xe3\x57\x29\xfd\xf0\x8f\x5b\x22\x54\xdc\x0e\x23\xf4\x6b\x88\xc0\xf7\x45\x8a\x49\x3f\xfb\x8f\x59\x9a\x94\xe5\xf5\xcb\xba\x42\x5e\x1b\xa2\x2b\x9a\x3a\x1b\x24\x39\xe5\x38\x5d\xe0\x6b\x9a\x39\x79\x2d\x22\xad\xc7\xa3\x08\xa8\x0c\x7d\x89\x26\xdd\x14\xfd\x25\x4b\x93\xae\xa9\xfd\x13\x94\xba\x06\xfa\x7c\xa9\xa7\x06\xd4\x8b\xb6\xd7\x64\x90\x93\x8c\x7a\x59\x41\xea\x57\x0a\x7d\x86\xbb\x99\x53\x45\xb9\xbd\xea\x48\x8e\xe6\x14\xa7\x73\x9c\xce\x4d\xa2\x96\x67\xea\x46\xe2\xe5\x34\xa3\x98\xbc\x16\xbe\x17\x4d\xa4\x41\x6a\x2e\x99\xc3\x74\xd4\xcb\x56\x2b\x47\x02\x73\xb3\xd6\x21\x88\x05\x22\xa5\x94\xb1\x0b\x08\x3b\xac\x4e\x4a\x70\x61\x8d\x2a\xfb\xe8\x8d\x52\xa4\xec\x51\x2a\x6f\x9e\x98\x4e\xc5\xd7\xfd\x14\xc5\x0d\xbb\x57\xa8\xba\xa3\xcd\xde\xd5\xca\x0b\x02\xd2\x88\xc3\x8c\x5c\x48\x53\x30\x87\xd2\xc9\x2a\xa5\x9c\xf4\xc1\x96\x9d\xb7\xae\x8a\x04\x2e\xcf\x80\x17\xcd\x28\x2b\x78\x7e\x50\xca\xc6\xaf\x91\xc0\x13\x97\x65\x59\x10\x19\x4c\xd5\xcb\x82\x20\x88\x4a\xec\x97\x05\xdc\x7a\x13\xb6\x29\x93\x8a\xd4\x24\xaf\xd5\x1c\xb3\x7c\xa0\xac\xbc\x74\xb5\xa2\x23\x4a\x9f\x4e\x0a\x15\x76\xd3\xaa\x45\x08\xbb\x62\x57\x15\x43\x96\x2e\xf1\x18\x82\x17\xf9\x94\x7d\xe5\x86\x99\x02\x51\xcb\xa9\x6c\xd1\xe6\xe0\xbc\x20\x73\x01\xd2\x11\xeb\x12\x94\x84\x73\xe8\x02\x9a\x84\x24\xec\x62\xb3\xbe\x62\x58\x84\x6e\x1f\x57\xd6\x5b\xb0\x69\x49\x21\x96\x5a\x66\x64\x22\x50\x49\x40\x65\xc2\x6e\xc0\xb4\x88\xd2\x20\x24\xe1\xff\x0b\xd0\x6a\x50\x8a\x55\xe1\xf6\x19\xc7\x95\xcb\xb3\x99\x93\x41\x64\x54\x21\x23\xbe\x5d\xc7\x0d\x3a\x26\x75\x1b\xd1\x47\x59\xbd\xdc\x92\xa1\x8b\x0a\xd7\x4f\xf3\xc4\xc6\x29\x0b\x2b\xa9\x98\xb8\x1c\xfe\x55\xee\xf6\xa6\xc6\x46\xb5\x08\x46\x91\xcb\x29\x95\x04\x94\xdb\x26\x94\x81\xe8\x4c\x87\x44\x6e\x22\x29\x50\x49\x23\x35\x31\x28\xc8\x15\x5e\xa4\x3c\x48\x66\xc3\x54\x7a\x07\x06\xba\x9a\x44\x65\xc1\x22\x26\xea\xa5\xd0\x91\x1c\x34\xc4\x23\x21\x9e\x36\xe2\xf5\xb6\x5d\xe2\xaf\xfa\x36\xf1\xc6\xba\x7e\xe5\xe6\xf0\x57\x7d\x77\x98\x79\x4d\x8a\xdb\xc3\x5f\x8b\xfb\xc3\x1b\x9b\x66\x91\xab\x9b\x07\x9c\xc3\x1d\x17\x15\x76\x7d\x44\x38\xfc\xc6\x6a\xc5\x36\xd9\x96\x50\x8d\xaf\x8a\x6b\xdf\x52\x51\xd1\xd1\xf4\x1b\x6a\xca\x2a\x50\xca\x23\xe5\x5e\xd6\xbd\x48\xdb\xdf\x50\x55\xd3\x15\x30\x42\xf8\x4d\x55\x6f\x47\x32\x7b\x0b\x92\xb9\x2a\xba\xb5\x2e\x9e\xed\xd7\x54\xb7\x1d\xb7\x0d\xf5\x5d\xa6\xe3\x30\x2e\x45\x3b\xa6\xe5\x28\x15\x25\x1f\x44\xb8\x5a\x4c\x0b\x8a\x5a\x90\x48\x0b\x27\x93\xb3\x47\x48\x88\x92\x08\xb6\x28\x65\xcb\x2d\xa9\x5b\x89\xce\x06\xd9\xc0\xd0\xa9\x52\x0f\xbe\x96\x82\xe9\x25\x46\x7d\x0c\x61\x51\x28\xa8\x50\xae\x34\x9e\x94\xa2\x0e\xf2\x54\xb7\x9b\x3f\xb3\x93\x15\x72\x3d\x37\xb3\xcb\x54\x9a\x5d\xad\xf8\x92\x9f\xa8\xe9\x3f\x0a\x5e\x64\x35\x74\x79\x14\x59\xba\x38\x57\xb2\xd3\xc0\xeb\xa5\x9b\xa4\x53\x5a\x21\x9d\xd2\x91\x13\xf1\xed\xa4\x4d\xa4\xf9\x57\x48\xa7\x62\x55\xff\x76\xc2\xa9\xd8\xf2\xdf\x47\x36\x15\x6b\xad\x16\x4d\x9a\xad\xa2\x8b\x15\x66\x14\xf2\xcd\x9e\x52\xac\x3e\x76\x09\x7e\x7e\xc1\x7a\xc0\x1f\x76\xf3\xb8\xfb\xb5\x6e\x3b\x72\x96\x66\xda\x37\x76\xdf\x86\xe0\x16\xdf\xfa\x1a\x45\x81\x74\x9d\xef\xfa\xbd\xe8\x1d\xb5\x14\x76\x77\xa5\x79\x00\xc3\x68\x24\x6d\x83\x52\x67\xd2\xea\xce\x64\xbc\x33\xc3\x74\xa4\xf7\x27\xd3\xfa\xc3\x60\x19\x37\x0e\x40\xdf\x4a\xf9\xcd\x1d\xdd\x24\x91\x4b\x72\x93\x8f\x02\x2a\x86\x3d\xb8\x6c\xfb\x5e\x6b\x1d\xbf\xad\xc1\x8d\x94\xd5\x3c\x29\xa5\xe6\x71\xb1\x79\x18\xe2\x91\xeb\xf6\x0a\x8e\xe2\x57\x30\xf8\x55\xf2\x5d\x30\x1f\xfa\xad\x4d\x6c\xe6\x20\xaa\x0d\x41\x49\xff\xa9\x6c\x9e\xf6\xf2\x95\x4e\x7e\x84\x79\xaa\x9f\x5c\x7b\xc3\x3a\xf1\xb2\x2e\x57\xf0\xf7\x11\x5f\xa5\xba\xfe\xed\xe4\x57\xa9\xe9\xb2\x00\x93\x47\xf5\x7a\x66\x24\x82\xb1\x3e\x91\x21\x36\xd6\x0c\x1d\x48\xcd\x4b\xb5\x84\x70\x0b\x64\xdd\x2b\x92\x16\x55\x1f\xaa\x52\x91\x04\x81\xd7\x83\x4d\xcb\x0d\x54\x2c\x37\x30\x72\x88\x19\xd1\xef\xbd\x26\x74\x4b\xa4\x78\xb3\xd4\x15\xce\xaf\x7f\x98\xb4\xdd\x84\xd9\xdf\x57\xdc\x8a\x63\xc4\xff\x8f\x88\xd9\x52\x0f\xb7\x6b\xbe\x25\xea\x17\x13\x4a\xe1\x66\xdc\xab\x9b\x52\x36\x4e\x99\xe9\xaf\x78\x35\xca\x99\x93\xfc\x23\xd8\x30\x2d\xb1\xe1\xf6\x05\x60\x13\x29\x8a\x83\x2d\x07\xda\xdc\x6e\x02\xb6\xdd\xb4\x71\x2a\x46\xda\x54\xa4\x3c\xb0\x46\x45\x78\x91\x72\x6c\x4f\xbb\xf7\xf7\x27\x0b\x36\x83\xf0\x5e\x59\x30\x36\x48\xc8\x8a\xe9\xa9\xef\x94\x6a\x0c\xf1\xdb\xeb\xff\x15\x2b\x52\x75\xdb\x43\x3c\x1a\x6d\x58\x8d\xee\x20\x23\x9b\x4f\xf6\xa5\x0f\x01\xac\x56\x3c\x22\x50\xcb\xd9\xb8\x4c\x1f\x0a\x85\x4b\x21\x41\x14\x76\xb3\x4c\x36\xbd\xc9\xc0\x2c\x2c\x32\xcb\x5d\x81\xcd\x75\xa7\x89\xc8\x7a\x9a\xce\x17\xb4\xab\x46\xfd\x9b\xcb\x11\xc8\xc8\x27\x0c\xe1\xfc\x3e\x2e\x1e\xb1\x7c\xa5\x50\x9a\x91\xb7\x94\xba\x4c\x1f\xb4\x1c\x81\xd8\xdb\x97\x1a\x4a\xf8\x08\x2a\xb4\x79\x12\x92\x30\xb0\x6d\xfd\x90\xc3\xd7\xc2\x6f\x76\x76\xf5\x6b\x20\x82\x8b\x45\x5d\x5f\x03\x40\x43\x3b\x4e\x1f\x6c\x64\x4f\xe0\x7e\x49\xff\x46\xc9\x34\xb5\x91\xfd\x14\xe2\xc4\x46\x36\x3b\x1e\x63\x8f\xd4\x8e\x26\x04\xef\x5e\x62\x20\x16\x09\x6c\xbb\x97\x3d\x45\x42\x56\x8e\xc3\x0c\x44\x0d\x5d\xf6\xcc\x8a\xf3\x47\x5e\x45\x97\xda\x79\xc6\xb1\x15\x16\x81\xb0\xa6\x98\x10\xb5\xe5\x2c\xd0\x92\xc2\x8f\xf9\x01\x0a\x80\xc0\x71\x1a\x8d\x06\xb8\xc1\xbb\x9c\x10\x6a\xff\x2a\x24\x61\x5d\x0f\xfe\xfd\x5a\x27\x75\x68\xfc\x25\x8d\x12\xc7\xb6\x6c\xb7\xce\x8e\xdc\x22\x2c\x0e\x03\x1b\x55\x53\x1e\x71\xd7\x2e\x1a\xda\x0f\x38\x5d\x2e\x6c\xc4\xff\x9e\xa6\x71\x1c\x2e\x32\x98\x14\x88\xc0\xf1\x26\xbf\x0a\x6f\x08\x6c\x9b\xe1\xcd\x74\xc9\x37\x20\x0f\x02\x61\x73\x5c\x2d\xcb\x6e\x60\x58\x40\x48\x9c\x7a\xbd\x34\xc4\xac\x17\xbd\x4a\xf4\x1a\xac\x47\x67\xc9\x84\xaf\x2c\xf2\xd7\x86\x4c\x81\xe3\x70\x64\xb7\xb4\xbf\xbb\x5b\xd9\x7e\x81\x91\x6f\x97\x11\xd9\x18\x7a\x9e\x1b\x1a\x24\x2f\xf2\x55\xb9\x7f\x68\xd1\x2b\xed\x78\x4b\x06\x64\xb9\xa0\x72\x56\xed\xb3\x19\x59\xa8\xc2\x4a\x9b\x0e\x2a\x30\x90\x30\x44\x1a\x93\x28\x0b\xef\x63\xd8\x98\x53\x83\x23\xb6\x93\xb7\x31\xa7\x80\xe5\xb9\x58\x1c\xd2\x96\x9c\x14\x8e\x08\xeb\x2c\x7d\xe4\x2a\xb9\xe8\xfb\x82\x1f\x2b\xca\xe5\x85\x0c\x5c\xe0\xf2\xcf\xa9\xaa\x56\xe5\x65\x61\x27\x74\xd8\xf1\x72\x4c\x52\x5c\x85\x43\xd5\xb8\x34\xb2\xe5\xfd\x38\x0e\xb3\x0c\x44\xc0\x20\x71\x11\xa9\x1c\x41\x2d\x27\x45\x7a\x0b\x85\x2b\xe2\x8a\x95\x76\x2d\x7b\x2a\x7c\xf5\x79\x34\x26\x05\x58\x6c\xd3\x82\xb9\xeb\xf9\x6a\x54\x2d\xd7\x85\x50\x47\x44\x9e\x26\x10\x75\xd2\x69\x26\x0e\x77\x29\xfa\xf2\x4e\xe1\x6a\xa6\x34\x18\xe1\xdf\x0e\x69\xe3\xd8\xc3\x80\xa3\x30\x61\x75\xb1\x38\xe6\xc6\x74\x19\xc7\x94\xa3\x37\x20\x2d\xf9\x71\x53\xc8\x8a\x46\x8e\xad\x15\x98\x21\x73\xe5\x3a\x18\xfd\xaa\x6b\x30\x14\xb9\x8a\xa8\x88\x92\x35\x4f\x98\xba\x44\x0d\x2a\x6e\xdc\x9f\x50\x0d\xa2\x4b\x2d\xac\x37\x34\xb0\x5c\x6c\x5d\x93\x8b\x25\x16\x6f\x5b\x95\x4b\xc5\xde\xb8\x2e\x97\x98\x25\x77\x95\xd0\x1a\x4f\xe9\x14\x91\xe2\x8a\x92\x91\xc9\x26\x21\xcf\xe4\xc8\xb2\x77\xc7\x08\xb9\x55\xb7\x87\x76\x9d\xd4\xed\x91\x9d\x97\x39\x17\xd5\x7f\x0d\x70\x55\xf3\xba\x4e\x57\x50\x88\xf8\x2b\x28\x8a\xd5\x88\x15\x4f\xb4\x8a\x86\x80\xb8\x2e\x72\xb3\x4c\x1a\xe3\xef\x23\x69\xf6\x70\xbe\x37\x4e\x1c\x9b\x8d\xdf\x40\xb6\x8c\x09\x4b\x92\xea\x92\x38\xe4\xdc\xa3\xa4\x8c\x12\x12\x27\x8e\x4d\xc1\x16\x0e\xa3\x0c\x26\x56\x98\x58\xf0\x7d\x0c\x0b\x22\x5e\xb2\x44\xc5\x0b\x7f\x0d\x06\x0b\x81\x63\x4f\xa5\x13\xce\x27\x79\x65\x22\x8b\x58\xc4\xe9\x72\xe8\x76\x4b\x50\xd7\x45\xd0\x18\x0b\x84\x68\xeb\x5f\x1d\x68\x9c\xf7\x2f\x2e\xcf\x06\x68\xc7\xe7\x1e\xda\x0a\xe5\xb0\xca\xf5\xa3\xad\x42\x72\x10\x99\xce\x4a\xbf\x85\xf2\xf4\x3d\x20\xab\x95\x3c\xff\x39\x0d\xa3\x78\x89\xb9\x48\xe4\x8b\xa1\x92\x90\x42\x65\x0e\x31\x19\x84\x04\xd8\x9b\x48\x84\xbe\xb6\xc4\x21\x6d\x56\x4b\x12\xdb\xca\x9c\xbe\x5a\xfa\x3c\xfc\x7e\x2e\x5b\xf0\x64\x03\x49\x34\x56\xba\x1f\xc5\xf7\x9f\x96\xb0\x84\xaf\xe2\xdc\x66\x45\x3f\x35\x76\xe9\x5f\x5e\x7e\xbd\x3b\xbb\xbd\xbb\x2d\x1d\x3e\x3d\x0e\xe3\x78\x97\xd6\x96\xbd\x63\x07\x50\xb7\xd7\x93\xb1\xb3\xe0\x25\x31\x54\x40\x49\xf7\x0b\xbd\xa5\xbe\xa2\xa6\x60\x9a\x26\x64\xb5\x62\xf5\xab\x3e\xa0\x88\x45\xf6\x1a\x02\xcd\x71\x51\x16\x78\xbd\x2c\x0f\xc8\xcd\x64\xbc\x46\x12\xa4\xc3\x8c\xbf\x55\x4c\x86\x1b\xaa\xaa\x5c\x11\x61\xa0\xf8\xf0\x06\x1e\xce\xbe\x2f\xf8\x16\x34\xe6\x61\x73\x89\x9a\xce\xae\xab\xc2\x66\xe5\xfb\x01\x72\xe0\x4e\x80\x15\x58\xd8\xf0\x8a\x58\x4e\xe2\xa2\xa8\x5e\x5f\xeb\x6f\x6c\x79\x0b\x61\x3e\x85\x84\x00\xde\x10\xcd\x12\x78\xe2\x10\xfe\x2b\xcb\xbb\xee\x66\x14\x9a\xa6\x46\xf6\x4a\xed\x22\x2f\x3d\xc4\x23\xa4\x85\x37\x89\xa1\x88\xd3\x07\x11\x6c\x7c\x95\xb2\x05\x2c\xb3\xe6\x54\x92\xc0\xff\xcd\xde\xbb\x6d\xc7\xad\x23\x89\x82\x0f\xf3\x30\x6f\xf3\x38\x2f\xf5\x30\x14\xba\x2b\x4d\x96\x90\x69\x92\x79\x63\x32\x4d\xab\x65\x59\xda\xdb\xed\x9b\x4a\x92\xed\xea\x4a\x69\xfb\x50\x99\x48\x89\x6d\x26\x99\x4d\x22\x75\xd9\x96\xaa\xd7\x9a\xbf\x38\x6b\xcd\x17\x9c\x7f\x98\x35\xff\x72\x7e\x60\x7e\x61\x56\x04\x00\xde\x33\x25\x79\xef\x7d\xd6\x3c\x1c\x57\xed\x14\x08\x06\x02\x81\x40\x20\x22\x00\x02\x81\x99\x26\x50\x83\x93\x37\x4d\x02\xce\x92\xc0\x97\x91\x0e\x6a\xde\x45\xbd\xd1\x71\xf4\x29\x9a\xfa\xab\x8b\x4b\xbe\xaf\x74\xc7\xd7\xa6\x3d\xfd\xa6\xe7\xb1\x3c\xbc\x8b\x2a\xa3\x85\xc1\xf9\x43\x5a\x8b\x18\xe2\x78\x47\xa1\xb8\x88\x98\xe1\x6a\x38\x80\x67\xc4\x90\x8a\x6d\xcb\x1c\xab\x93\x9d\xa5\x41\xda\x6a\xb1\x2d\x2f\xaf\x53\x9e\x55\x2c\x81\x74\xd8\xcd\x92\x4d\x39\x9b\xe1\xa6\x31\x19\xf2\x20\xdb\xb2\x42\x66\x2b\x5c\x93\x1a\x37\x9c\x00\x96\xe5\x05\x49\x72\x97\x54\xf9\xd5\xe1\xfe\x87\xd7\x6f\x3e\xfc\x84\x41\x28\x88\x3f\xe7\x2c\x51\x13\x05\xe8\x13\xa6\x76\xa9\x49\xea\x32\x15\xac\x91\xed\x60\x9b\x08\xbf\x05\xa6\x67\x6e\x33\xe1\xf0\x3e\x77\x43\xaa\x78\xd9\x36\xa1\x1a\xda\x2c\x97\x6c\x27\x46\x83\x06\xab\x28\xe3\x06\x80\x5c\x3b\xd3\x2d\x6b\x9d\x82\xde\x34\x4d\x2f\x7f\x6b\x64\x32\x54\x4a\xae\x5a\xd9\xb5\x06\x6a\xb7\x5d\xd6\xc2\x79\x53\xd4\x3c\x47\x2f\x34\x0f\x26\xbf\x7a\x41\x8b\xcb\x21\xb3\x4d\xa4\x50\x50\xc5\x2d\xa5\xf5\x73\x00\xc8\x29\x00\x2c\xd2\x93\xf8\x98\x4d\xe3\x68\x96\x7e\x2d\x53\xa6\xce\xf4\xa5\xab\xc5\xc2\x4f\x82\x5f\x99\x6e\xa8\x2f\xb3\x71\x84\xfc\x2d\xa8\xff\x82\x35\xaa\x73\x40\xae\x32\xb9\xd5\xbd\x91\x75\x56\x95\xd6\xea\xe8\x56\x6d\x9d\xa6\x91\xdf\xa2\xa3\x1a\x57\x45\x4a\x4e\x86\xc2\x51\x5a\xdb\xd0\xd5\xe9\x81\x1b\x30\xcd\xa9\x70\xb5\x6a\x2f\xf9\x4d\x61\xc1\xb5\x2e\xbc\x6a\xf8\x14\xc4\x37\x88\xb4\x0c\x0d\xc8\xae\x2e\x63\x6a\xed\xc8\xbf\x6e\x76\x66\x52\x9a\x49\xf3\x5e\x7e\x86\x16\x23\x89\x75\x0e\x77\x8f\x8f\xf7\x5f\xef\x54\x45\x5a\x05\xcc\x71\x59\xd6\x53\x2f\xfb\xa6\x3a\xef\x9f\xeb\xb9\xe3\x30\xbe\x16\xc3\x87\xc7\xf1\xb7\xc6\xee\x66\xb5\xbe\xae\xc8\x9b\xaa\x0c\xb4\x97\x18\x07\x46\x59\xaa\xb2\x83\x92\x85\x71\x23\x6c\x23\x88\x06\xc6\xa4\xf9\xde\xd8\x2c\xa3\xa8\x4b\x4a\xbc\xcc\xb6\x44\xad\x42\xae\x29\x55\x87\xa1\x4e\x8a\x43\x5d\x1c\x0b\xc9\x98\x51\xe6\xe4\xb8\x38\x32\x94\x65\xc7\xbc\x64\x15\x7d\x60\x37\x5c\x0c\xf6\x27\x08\xd7\x11\x6b\x10\xaf\xcc\x15\x2b\xd0\xff\x0e\xcf\xeb\x49\x58\x6d\x1e\x27\xd9\x6c\xa9\xb1\x01\xbc\x74\x1a\x4d\x52\x5c\xf8\x9c\x94\xe0\x09\x9c\xd2\x48\x97\x0b\xfc\x49\x76\x24\xad\xda\x19\x8f\x68\x56\x91\x0d\x4d\x91\x01\x90\x91\x77\x77\x5b\x55\x2f\x49\xee\x72\x2c\xf6\x5d\x7d\x0c\xeb\x46\x66\x87\x0a\x4e\xa1\x94\xcf\x8a\x3e\x7a\xe9\x55\xe1\xd6\x09\xc6\x7b\xff\x26\x58\xac\x16\x9a\x44\xa0\x4d\xe3\x55\xc4\xb5\x84\xf9\x60\xc3\xa9\xe6\x9f\xc7\x09\x0f\xa2\x0b\x21\xf1\xc9\x2a\xea\x28\x2b\xd3\x48\xa0\x58\x37\xaf\x34\x6f\x62\x9e\x51\xde\x60\xc2\x76\x9a\x0c\x1e\x08\xb9\x8b\x42\x8e\x3a\xa6\xd5\x2a\x4d\x46\x58\x61\x8a\x75\x77\xa7\xf3\xc2\xe8\x6c\x52\xe7\x98\xa7\x17\x0b\xe5\xb3\x2e\x8c\x0d\xc8\xae\x4b\x28\xf5\xaa\x4e\xcb\x74\x58\xf1\xbb\x50\x33\x23\x33\x47\x45\x13\x66\x5d\xc3\x79\xeb\xe3\x54\x94\x08\xfe\xb4\x96\xad\xf7\x99\xba\x2d\x36\x2a\xf3\x45\x1b\x27\x10\xb5\x25\x08\xf1\x42\x2c\x42\x70\xaa\x4a\xd5\xf4\xb7\x9c\x3a\x37\x58\xec\x5c\x9f\xf3\x6c\x86\xbd\x19\xac\x22\xe5\x32\xe6\xdb\x83\x9c\x6c\xd4\xfb\x92\xa9\x28\x86\xaa\xf6\xcd\xcc\x6d\x12\x8a\x27\x33\xbc\x2c\x9d\xc9\x2a\xd2\x9f\x6a\xb0\x8a\x84\x27\xab\xe8\x91\x36\xeb\x51\xba\xa6\x21\xfc\x9d\x74\x61\xc8\xd1\x2a\x8a\xa0\x5a\x69\x9e\x6a\xba\x46\xba\x80\x7a\x6a\x90\x9a\xf7\x21\xd9\x52\xf7\xc0\x6b\x61\x9a\x0a\x73\x5b\xe9\x6d\xd1\x1f\x32\x07\x45\xeb\xd9\xb0\xaa\xa5\xb3\xe7\x16\xeb\x1a\x1d\x1e\x1f\x04\x37\x6c\xa6\xdb\xc6\x36\x49\xc9\x23\xa6\x4e\xca\xc3\x6a\xd2\xc5\x15\x8d\x69\x34\x7c\xf6\xab\x80\xe4\x1f\xfd\x0a\x7d\x2e\xcc\xb7\x5b\xf5\x0b\x27\xec\xac\xe2\x43\x8f\x9b\x3b\xa2\xe6\x5f\x9c\x48\x41\xd1\x82\x48\xd9\x3b\xf7\x11\xdd\xa8\x5d\xb3\x84\x69\x51\xac\x94\x74\x95\x3b\x52\x2f\x34\x2e\x5b\xc9\x85\xa0\x6c\x89\x1d\x1d\x0d\x9e\x8f\x5f\xb5\xa6\xfa\xc8\xa5\x0c\xe9\xdb\x60\x5a\xce\x52\xc4\x8b\xc6\xd9\x90\x0c\xf3\xda\xb8\xcc\x94\x77\xa5\xc4\xe3\x91\x25\x8b\x66\x30\x69\x7a\xa8\x80\xe8\x17\x4f\xf6\xcf\x83\xe0\xc2\x7b\xf2\x88\x9c\xfb\x35\x83\x17\xe7\x8f\xf5\x55\x0f\xe1\x5a\x79\x6c\x4d\x5b\x8a\x85\x8b\x1f\x04\x65\xdc\x80\xfa\x3a\x2c\x79\xc4\x2c\x36\x93\x8c\xa4\x61\xda\x06\x93\xb4\xdc\xd1\x2b\x82\x89\xdc\x07\x99\xde\xa4\x62\xd6\x0d\x79\xac\x39\x91\xdf\x5b\x8d\xa2\x20\x6c\x95\x24\x41\xae\x1b\xc8\x60\xc0\x5f\xc1\x88\xa3\xe2\x2b\x2d\x1d\xce\x82\x99\x10\x65\x61\x20\x7c\xed\xca\x0f\x57\x4c\xf3\xa3\x59\xe1\x15\x46\xd1\xd4\x16\x71\xc2\x30\xb4\x70\xe6\x98\x34\xcc\x3c\xf3\xb9\xe6\x9a\x71\x51\x3e\x91\xc5\xa6\xbc\x28\xa2\xf5\xae\x6e\x16\xe4\x75\x3d\x5f\x9a\xc3\xca\x76\xd7\xf8\xaa\x18\x52\x1f\x47\x25\xf6\xe5\x27\x62\x8b\xfc\x82\xc2\x33\x2d\x5e\xf1\xdf\x8b\x09\x92\xbb\x40\x6d\xc3\xf2\x9e\x24\xb5\xd5\x2a\x47\x5b\x2e\xbe\x53\xd6\x5f\xb5\xaa\x61\x8a\x2a\x5f\x15\x8d\x4a\x7d\xa1\xb0\x46\x59\xa9\x61\xf5\x4f\x36\x6b\x19\xf7\xa4\xe5\x01\x89\xa0\x20\xda\x60\x58\xaa\x33\x62\x35\xfd\x6e\x04\xca\x67\x36\xd9\xb9\xc4\x2c\xec\xb4\x54\xde\x2f\xec\xbb\xbb\xe2\xc9\xc2\x07\xd5\x86\xa8\xf0\x41\x16\xf9\x49\xe2\xdf\xee\xff\xb5\x81\x3b\x5b\x0c\x26\x1f\x6a\x5d\x8b\xb5\x5a\x5b\x1c\xe3\xf5\x48\x82\xb6\x3c\x5e\x9e\x8a\x6c\x59\xe3\x35\x1b\x43\xb6\xb7\x13\x03\x4a\x4e\x92\xb3\x2d\x8c\x7b\x99\x97\x50\xab\x66\x0f\xd3\x99\xa6\x2c\xe1\xfb\x7f\xad\x19\xa5\xec\xeb\x70\x20\x77\x91\x13\x71\x8c\xb9\x10\x9d\x5b\x4d\x67\x98\x0c\xd0\x9e\x07\x7c\x2f\xc4\xd6\x5e\x77\xae\xbb\xba\x19\xc8\xb8\x2f\x1c\xdb\x94\x13\x28\x6b\x07\x50\x6c\xf3\xc2\x77\x07\xb7\xf8\x80\xab\x0a\x5b\x9e\xc7\x5b\xad\xad\x86\x10\xad\xd2\xac\xab\xae\xc0\x1e\x30\xb2\x53\x83\x3b\x64\x42\xb6\x93\x6d\x72\x46\x5c\x42\xc6\x99\xe3\xa0\x13\xc5\x12\xb2\x1d\xcb\x89\xec\xa5\x3c\x73\xe9\x87\x21\x4b\xde\xc5\x53\x94\xde\xaf\xba\x25\xb6\x4f\x6c\x03\x87\xb6\x89\xb6\xe5\x79\xf8\xc0\x8d\xfa\xb7\x8e\x35\x7c\x6f\x90\x0e\x73\xcb\xf3\xb2\x60\xd5\x7c\x27\xfb\x2c\xd5\x48\x24\x36\xe0\x31\x24\x66\x5d\xf3\x08\xd2\xea\x68\x1a\x96\x9d\x9a\xc2\xab\x27\x6a\x47\x67\x52\x0f\xb1\x3e\x61\xdb\xf6\x59\x07\x97\xa5\xf5\xe7\xfa\xe4\x97\xe7\x67\xdb\xee\xe9\x6c\xdb\x80\x9f\x53\x63\xe7\x9f\x9f\xe7\xbd\xbf\xc3\x27\xd6\x99\x4b\x76\x76\x76\xc8\xc3\xc4\x4a\x1d\xdc\xfc\xfd\x03\x74\x41\xe6\x8e\x3f\x42\xaf\x01\x6b\x4b\x98\xaa\xda\x42\x4a\x94\x52\xfc\xec\x61\x45\x5f\x5f\xe5\xab\x37\xc1\x4f\xd3\x9a\x29\x6a\x40\x29\xdc\x23\x85\xf2\xd3\xc9\x81\xf3\x1a\x2f\xa3\x48\x6a\x85\xcf\x6f\x39\x4b\xdf\xb1\x39\xcf\xb7\x1a\xcd\xd8\x61\x1c\x44\x59\x46\x18\x5f\xb3\xe4\x55\xbc\x8a\x66\x9e\x59\xc1\x56\x0a\xaa\x06\x39\x6b\xbe\x77\x10\x42\x1b\x36\xaa\xc9\x65\x75\x3c\xab\x9f\xec\xc5\x33\xb6\xcb\xf5\x04\x17\x4d\x4c\x69\x0b\x32\xe2\x8c\xe0\x85\x67\xd9\xc3\x1d\xbe\x2d\xc1\x11\xd4\xb5\x46\xf6\x0b\x2f\x68\xb5\x82\x17\x9e\x6d\x77\x77\xf4\x4a\x03\x82\xb6\x35\xb2\x69\xa5\x99\x56\xad\x55\x96\xed\x18\xae\x6d\xf7\x32\x54\xdd\x51\x03\x2a\xdb\xee\x55\x51\xd9\x35\x54\xb6\xd9\x03\x5c\x3d\x33\xc3\xd5\x1b\x36\xe1\xea\x99\x55\x5c\xdd\x1a\xae\x41\xbf\xdf\x1d\x00\x32\x27\x43\xd6\xb7\x1a\x91\x39\x55\x64\xbd\x06\xc2\x46\x43\xab\x6f\x1b\xae\xdd\xcf\x59\xd6\x6f\x62\x99\xdd\xaf\xb1\xac\x5f\xa7\x6d\x68\x99\x8e\x33\xe8\x19\x2e\xdf\xf6\xc8\xff\xfb\xff\xfc\xdf\x24\x8b\xbb\x6d\xd9\x19\xbd\xd6\xc8\xca\x8d\x7c\x86\xae\xdd\xae\x0a\x5a\x85\x88\x17\x2f\x06\xc6\xb6\x1e\xb4\xa1\x5f\x68\x5d\x14\x8a\x91\x0e\xb3\x32\xea\x18\x50\x4e\xe3\xdd\x5d\xbf\x6f\x8f\x06\x2f\xbc\xb8\xd5\x8a\x5f\x78\xfd\x61\xb7\xd7\xbd\xbb\x8b\x5f\x5a\x96\xd5\xb3\x2c\x6b\x47\x11\xee\xc6\x2f\x90\xd3\x90\x21\x54\x5f\x67\x9e\xc4\x8b\x3d\x29\x93\x7a\x6c\xb8\x7a\xdc\x16\xbd\x41\xd7\xc0\x60\x4d\xdb\x7a\xfc\xf2\xe5\x4b\xcb\x6c\x59\xa6\xdd\x35\x68\x7f\xd0\xb5\xcd\x6d\x1d\x1e\x5a\xb1\x61\xc8\xa3\xf6\x9a\xaa\xb6\xca\x63\x93\x26\xed\x76\xe9\x66\x18\x79\x7d\xcc\xc9\x81\xd3\x34\xc5\x16\x0e\x48\x61\x2c\x1a\xb2\x80\x54\x5e\xf2\x2e\xa3\x6a\xe9\x1f\x1f\x93\xd8\x1e\xd5\xb3\xc8\x4d\x23\x40\xae\x74\xb3\xae\x97\x0c\x97\x20\x83\xae\x35\xc2\xaf\xb4\xdb\x56\x56\x47\xb6\xf3\xbb\x84\x7f\xdb\x32\xc6\x12\x7d\xa1\xb3\x76\x74\x81\x7f\xb0\xad\x0b\x2e\x06\xc6\x8b\x17\x96\x69\x64\x3c\xa5\x40\xb0\x2b\x89\x90\xdf\x75\x25\x45\x18\xd0\x00\xa8\x16\x7a\xc3\x28\xeb\x8d\x71\x16\x35\x0e\x46\x81\x89\x43\xb4\xb9\x63\xad\x91\x7d\x17\xbc\x7c\xf9\x72\x60\xd0\xd4\xb3\x0c\x37\x78\x81\x15\xf4\xd7\x16\xb0\xed\x1e\x16\xb0\x6c\x28\x61\x1b\xee\x5a\xc0\x9e\x29\x00\x1d\x00\xec\x1a\xe3\xf4\xa5\x39\x36\x52\x18\x1c\x6b\x48\xb1\x1d\x41\xca\x5f\xd2\xd6\xa0\x5b\xbe\x44\xe8\x7a\x2a\xee\x0f\xbb\x9e\x76\xa2\x55\xf8\x25\x98\xf1\x4b\xcf\x14\xcf\xd3\x38\xe2\x49\x5c\xce\x4b\xd8\x85\x9f\xcc\xf6\xfe\xfd\xdb\xee\xe2\x3c\xb8\x58\xc5\xab\xd4\xdb\xb2\x24\x78\x21\x53\x94\xb1\x15\x9e\xc5\x79\x10\xc1\xc4\x77\x32\x19\x0e\x1c\xea\x0c\x47\x67\x74\x62\x59\xfd\x3e\xb5\xac\xbe\x83\xe9\x81\x49\x2d\x6b\x60\x41\xba\x67\xf7\xa9\xd5\x1b\x20\x4c\x6f\x68\x51\xf8\x11\xe9\x2e\xa4\x7b\x22\x3d\x80\xf4\x50\xa4\x47\x90\x46\x78\x18\x68\x56\xbf\x2b\xd2\x7d\x9b\x5a\xfd\x3e\xc2\x0c\x2c\x8b\x5a\x83\xae\x89\xe9\x9e\x43\xe1\x07\xd2\xc3\xbe\x49\xad\xe1\x00\x71\x0e\x07\x43\x48\x8b\xfc\x21\xe4\x0f\xbb\x90\x76\xcc\x21\x85\x1f\x91\x1e\x41\x1a\xf1\x3b\x3d\x93\x5a\xce\x60\x00\xe9\x51\xdf\xa1\xd6\x08\xcb\xda\xa6\x3d\xa4\xb6\xd9\xed\x43\xba\x6b\xf6\xa9\xdd\x35\x07\x98\x1e\xf4\x28\xfc\x88\xf4\x88\xda\xdd\xa1\xc8\x77\x2c\x0a\x3f\x22\x0d\xf0\x0e\xe2\xe9\x99\x36\xb5\x7b\x66\x17\xd3\xdd\x2e\x85\x1f\x4c\x8f\x20\x7f\x64\x8b\xf4\x90\xda\x7d\x13\xda\x65\xf7\xcd\x11\xa4\x47\x98\xee\x9a\xd4\xee\x77\x11\x67\x7f\x60\x51\xbb\x3f\x40\xf8\x81\x6d\x52\xf8\x11\xe9\x3e\xa4\x91\x86\x41\xd7\xa2\xf6\xa0\x2b\x60\xba\x90\xdf\x1d\x62\x7a\x68\x53\x7b\x80\x7c\xb0\x07\xce\x88\xda\x83\x11\x96\x1d\xf6\x1c\x0a\x3f\x98\xee\x77\xa9\x3d\x44\x3e\xdb\xc3\xfe\x88\xda\xc3\x81\x80\x19\xf4\x21\x8d\x7c\x18\x3a\x03\x6a\x0f\x1d\x84\x71\xac\x21\x85\x1f\x4c\x0f\x07\x14\x7e\x44\x7a\x04\x69\xa4\xdf\x01\x9e\x38\x0e\xd6\xeb\x8c\xba\x14\x7e\x20\x3d\x02\x9e\x8c\x4c\xa4\x73\xd4\x1b\x50\xf8\x39\xa3\x93\xae\x69\x3a\x14\x7e\x30\x6d\x5b\x14\x7e\x20\x6d\x75\x7b\xb4\x6b\x75\x11\xc6\xea\xd9\xb4\x6b\xf5\x7a\x22\x3d\x80\xf4\x08\xd3\xfd\x21\xed\x0a\x39\xec\xda\x03\x93\xc2\x8f\x48\x77\x21\xdd\xc5\xf4\x10\xf2\x87\x22\x7f\x38\x80\xf4\x10\xd3\x23\x87\x76\xed\x11\xe2\xe9\x8e\xba\xb4\xdb\x1d\x41\x7b\xbb\x3d\xb3\x4f\xe1\x07\xd2\xd0\x17\xf0\x23\xd2\x0e\xed\xf6\x7b\x22\x0d\xf4\xf4\x7b\xd0\x96\xee\xa0\xdb\xa5\xf0\x23\xd2\x03\xda\x1d\xc8\xfc\x7e\x9f\x76\x07\xd8\x77\xdd\xe1\xc0\xa2\xf0\x23\xd2\x3d\x48\x63\xbd\xc3\x21\xe4\x0f\x05\x8c\x03\xf9\x0e\xe6\x3b\x00\xe3\x20\xff\xbb\xc0\xc3\xae\xe0\x61\xd7\x19\xf5\x21\x2d\xf3\x87\x90\xc6\xb6\x8c\xfa\x5d\xda\x1d\xa1\x3c\x77\x47\x03\x87\x76\x47\x02\xe7\x68\xd8\x83\x34\xc2\x8f\x00\xff\x68\x84\x34\x8c\x46\x5d\xda\x33\x6d\xe0\x5b\xcf\xec\x3a\x14\x7e\x20\x6d\xf5\x2c\xda\x13\x7c\xee\x01\x9f\xe1\x07\xd3\x7d\x93\xf6\xac\xbe\x25\xd2\x5d\x48\x77\x31\xed\xf4\x68\xcf\x72\x00\x7f\xaf\xd7\x73\x68\x6f\x80\x63\xad\x37\xea\x8f\x28\xfc\x9c\xd1\x49\x7f\x64\x0e\x68\x7f\x84\xfd\xdb\x1f\x75\x1d\xda\x1f\x21\x0f\xfb\xa3\xa1\x49\xfb\x23\xd4\x0f\x03\xd3\xb4\xe9\xc0\xc4\xf1\x32\x30\x07\x0e\x1d\x98\xc8\x9f\x81\x39\xb4\xe8\xc0\xc4\xfe\x1a\x98\xce\x80\xc2\x8f\x48\x8f\xe8\xc0\xc4\xbe\x1b\x58\xe6\x88\xc2\x0f\xa6\xfb\x7d\x3a\xb0\x50\x9e\x07\x5d\xab\x4b\xe1\x07\xd2\xbd\xae\x4d\x07\xbd\x6e\x4f\xa4\x47\x74\xd0\x43\x1a\x06\xbd\xbe\x49\xe1\x47\xa4\x87\x90\x46\x3c\x83\xe1\x88\x0e\x06\x0e\xe6\x8f\x2c\x9b\x0e\x46\x56\x1f\xd3\x83\x1e\x85\x1f\x91\x1e\xd0\xc1\x68\x28\x60\x86\x00\x83\x3c\x1f\x8c\x86\x0e\xa4\xa1\xbd\x43\xd3\x1a\xd1\xa1\x69\x03\x3d\xc3\x81\x35\xa0\x43\x31\x66\x87\x83\xa1\x43\x87\x03\x1c\x2f\x8e\x6d\x76\xa9\x63\x23\xdf\x1c\xbb\xdb\xa3\x8e\x8d\x7d\xe1\xd8\x8e\x43\x1d\x1b\xfb\xcb\x01\x59\x75\xba\xc8\x1f\xa7\x67\x9a\xd4\xe9\xa1\x7e\xb0\xec\x6e\xd7\xa4\xf0\xdb\xc7\xa7\x5e\xcf\xa2\xf0\x0b\x74\xf4\xba\xa6\xd5\xa3\xf8\x2b\x9f\x46\xf8\x34\x12\x4f\xbd\x3e\x3c\x61\xef\x0e\x7a\x36\xb0\x16\x7e\xe1\xa9\x6f\xda\x3d\x3a\xe8\x9b\xa8\x89\x07\x7d\xb3\x3f\x80\x27\xc1\x97\xbe\x0d\x8c\x81\x5f\x7c\xea\xdb\x23\x0c\xac\x8a\x7d\xe8\x98\xa3\x21\x85\x5f\x7c\xe7\x58\xa6\x45\xe1\xd7\x96\x4f\x0e\x3c\x59\x02\xd2\xea\xdb\xf0\xd4\xef\xc9\xa7\x11\x3e\x09\xcb\x32\xb2\x7a\x5d\x8a\x7f\xfa\xf2\x19\x6d\xcd\xc8\x42\x4e\x63\x42\xbc\x97\x96\x68\x64\x5b\x60\x7f\x46\x36\xf6\xb4\x65\x8d\xba\x03\x9b\xe2\x1f\xc0\x3e\x02\x33\xd1\xa7\xe2\x8f\x7c\xee\x0e\xe0\x79\x80\x54\x8f\xac\xe1\x70\x60\xc2\xf3\x68\x34\x3a\x3b\x13\x46\xcf\xcf\xec\xe3\x04\xcc\x0f\x95\xc6\x6d\xd0\x03\xdb\x83\xa9\x21\xb5\xa4\xb1\x01\x5b\x83\x84\x0d\x7b\xd4\x1a\x4a\x63\x04\x76\x06\xcd\x8c\x0d\x56\x06\x53\x60\x63\x10\xcb\x08\x52\xc2\xd8\x38\xd4\xc6\x61\x61\x5b\x7d\x6a\x5b\xa8\x48\x6d\x9b\xda\xb6\x34\x3f\x60\x7d\x30\x65\x53\xbb\x2b\x4d\x0f\x58\x1e\x61\x60\xc0\xbe\x60\x0a\x2c\x8a\x30\x2e\x68\x4f\xd0\x6c\xd8\xd4\xee\xa3\xa2\xed\xf7\xa8\x8d\x6c\xb6\xfb\xf0\x56\x28\x7a\xd0\xf9\x5d\xa1\xf2\x41\xfb\xa3\xa2\x06\x3d\x2d\xd4\x74\x8f\xda\xa8\x60\xec\xd1\x88\x4a\xf5\x08\x1a\x11\x05\xb4\x6b\x81\x1e\x46\xd5\x62\x8d\x68\xd7\xc6\x94\xdd\xa3\x5d\x1b\x55\xb3\xed\xd0\x2e\xb2\xb5\x0b\x3a\x51\xa8\x44\xd0\x9a\x28\x4a\xdd\x3e\xe8\xcf\x91\x50\x93\xa0\x31\x41\x10\x07\x36\xed\xa1\x8a\xec\x0d\x7a\xb4\x87\xdc\xed\x0d\x06\xb4\x87\xaa\xac\x37\x00\x8d\x82\x8a\x69\x68\xd2\x1e\xf2\xb9\x37\xb4\x69\x0f\x07\x5a\x6f\xd8\xa3\xc2\xa5\x00\x8f\xa2\x87\x86\xa8\x3f\xea\xd2\xfe\x48\xa8\x11\xd4\x10\x38\x08\x1d\x3a\x44\x3e\x0f\x2d\x8b\x0e\x51\x04\x87\x56\x97\x0e\x71\x48\x0f\xad\x21\x1d\xa2\x41\x1b\xda\x26\x1d\xa2\x79\x1d\xda\x0e\x1d\x62\x3b\x86\xdd\x2e\x1d\x62\x3b\x86\xdd\x3e\x1d\x76\x85\x08\x75\xe9\xc8\x06\xcc\xa3\xae\x45\x47\xd8\x1f\xa3\x5e\x9f\x8e\x50\x4a\x46\x83\x2e\x1d\x09\x07\xc8\x04\x67\xc8\xc4\xde\xb4\x4c\x70\x38\x2c\x53\x88\xa8\x09\x02\x8d\xe2\xe8\x80\x10\x38\x42\x0a\x1c\xdb\xb2\xa8\x63\xe3\x70\x75\x6c\x6b\x00\x69\xa1\x14\x6c\x93\x3a\xb6\x2d\x14\x81\x0d\x0a\x02\x95\x88\x63\xdb\x50\xb6\x2b\xf2\x7b\x00\x83\x12\xe1\x80\x48\x38\x42\x26\x1c\xbb\xd7\x87\xb4\xa8\xab\x0f\xf8\xfb\x02\xbe\x0f\x78\x50\x32\x9c\xae\x89\xca\x05\x69\x80\x6e\x85\x1f\x4c\xdb\x16\x75\x44\xcf\x3a\xe0\x00\x39\x62\x48\x39\x3d\xc0\xd3\x13\x78\x7a\xfd\x2e\xa4\x85\x62\xea\x0f\x21\x8d\x34\xf7\x06\x90\x1e\x88\xf4\x10\x14\x16\xf6\x9e\xd3\x73\xa0\xac\x63\x8b\xf4\x00\xd2\xd8\x96\xde\x08\xf2\x85\xb2\xeb\x77\x2d\xea\xf4\xd1\xa1\x71\xfa\xdd\x11\x75\x84\xa1\x75\xfa\xbd\x1e\x75\xfa\x7d\x6c\x4b\x7f\x60\x52\xa7\x8f\x7c\x76\xfa\x23\x9b\x3a\x03\x13\xcb\x0e\xba\x90\xc6\x1e\x73\x06\x7d\x87\xc2\x0f\xa6\x01\x7e\x80\xce\x81\x03\xca\xdd\x91\xca\x77\x68\xf6\x28\xfc\x88\xf4\x00\xd2\x48\x33\x88\x8a\x33\x44\x49\x77\x86\x56\x1f\xd2\x7d\x91\x1e\x41\x5a\x94\x05\xfe\x0c\x45\xbf\x0c\x6d\x80\xb1\x05\x4c\xd7\xa4\xf0\x23\xd2\x5d\x48\x0f\x44\x1a\xca\x76\x45\xd9\x1e\x94\xed\x89\xb2\x3d\x80\x41\x87\xcc\x01\xa7\x16\x7e\x44\x1a\xe8\xe9\x0b\x78\xe0\xbf\x70\xc8\x9c\xe1\x10\xf2\x87\x02\xa7\x03\xf0\x8e\x80\x07\x7e\x0e\x05\x3f\x1d\x30\x12\x8e\xe0\x89\x03\x6d\x14\x4e\xb0\xe3\x58\x90\x6f\x89\x7c\x0b\xf2\x45\xbb\x1c\x30\x3c\x4e\x57\xa6\x1d\x48\x63\xbd\x0e\xf4\xaf\x23\xfa\xd7\x81\xfe\x75\x44\xff\x3a\x83\x11\x85\x1f\x4c\x8f\xfa\xd4\x11\x4e\x89\x03\xc6\xcf\x11\xc6\x6f\x04\xca\x62\xd4\x43\x47\x6d\x04\x32\x33\xea\xf7\x70\xac\x80\x73\x3f\xea\xa3\x43\x39\x1a\x98\x26\x0c\x1c\x1c\x57\x03\xcb\xa1\xa3\x81\x2d\x47\x91\x4d\x47\xa2\x1f\x47\xe0\xd4\x8e\x06\x3d\x91\xdf\x07\xf8\xbe\x4c\xf7\x20\x2d\xca\x82\x12\x1f\xc8\x11\x38\x80\xfc\x81\xc8\x1f\x42\x3e\xea\x8b\xd1\x60\x08\x78\x86\x32\x1f\xea\x72\x04\xfc\xc8\xa1\xa3\x21\xf2\x6a\x04\xfd\x3e\x12\x3a\x62\x04\x7d\x37\x1a\xa2\xe6\x1d\x0d\xbb\x43\x48\x23\xcd\xc3\x9e\x4d\x47\x43\x1c\x5f\x23\x70\xa6\x47\x43\xd1\x46\xe8\x2f\xf8\x11\x69\xc8\x47\xd9\x1b\x0d\x47\x00\x8f\x4e\xff\x68\x38\xea\x41\x1a\x71\x3a\x76\x8f\x8e\x1c\x94\x99\x91\x63\x0f\x21\x8d\x78\x1c\x50\x2b\x8e\xa8\xd7\x01\x63\xe5\x88\x7a\x9d\xee\x08\xd2\x42\xb7\x80\x01\xc7\x5f\x7c\xb2\x4c\x9b\x5a\xa6\x30\xaf\x30\x8b\xee\xd1\x41\x57\x50\x88\x13\x63\x34\xd2\x5d\x81\x03\x35\x91\xd9\x73\xfa\x62\x86\x84\xa9\x01\xc5\xe5\x11\x33\xb3\x80\x41\x7a\x5c\xbb\x73\x55\x5d\xa2\x69\x62\xdc\xf4\xe2\xdc\xb0\x70\xd4\x7b\xae\xb3\x17\xe5\x97\x13\xf3\x6c\x62\x9e\xdd\xdd\xb1\x97\x95\xfc\xf8\x6c\x62\x9d\x95\xbf\x60\x8c\xe3\x97\x5e\x32\xc6\x80\x7f\x5e\xe1\x8a\x4a\x3d\xd9\x8e\x8d\xe7\xb6\x41\x6b\x38\xb8\xc0\xe1\xf1\x6d\x2b\xdb\x6d\xb7\x55\x27\x01\x2f\x8c\x28\x6c\x14\x8e\x3d\xde\xb6\xee\x55\xd5\xf7\xaa\xcd\xa5\xa9\xf1\xc6\xa6\x67\x1e\x42\x53\xd3\xb3\x97\x95\xa6\xe7\xf9\x3f\xde\xf4\x1c\xc7\xc6\xa6\x97\xc0\x1e\x6e\xfa\xf4\xd2\x4f\xc4\xb4\xbf\xe1\x33\xcc\x9a\xb5\x83\x9d\x72\xc9\x23\x04\xc8\xde\xea\xcc\x70\xcb\x00\xaf\x83\x34\xa9\xc1\x54\xeb\xaf\x03\x35\x51\x64\x7a\x9e\xc7\x76\x4a\xeb\x1e\x2e\x7b\xd1\xb5\x81\xd3\x9e\x65\x0f\x5b\x2d\xf6\xc2\x1a\x98\x3b\xb5\x95\x10\x97\xbd\xb0\xec\xe1\x8e\xe5\x16\x85\x5c\x67\xc6\x8e\xe9\x5a\xdb\x3a\x7b\xe9\xf5\xba\x7d\xbb\xd5\xd2\xd9\x0b\xaf\xd7\xeb\x0d\xef\xee\x46\xa6\x69\x79\x1e\xc3\x84\x8d\x09\xa8\xc1\x1a\x99\x3d\xa8\xc3\xeb\xd9\xd6\xc8\x6a\xb5\x2c\xbb\xdb\xb7\xb6\xe4\xdb\x5e\xcf\xec\xda\xf8\xb6\xdf\xb7\xcd\x2e\xe6\xc1\x60\x14\x25\x06\x3d\xbb\xdf\x17\x79\x7d\xb3\x67\x8a\xbc\xbe\xd9\x1b\xa9\xbc\xa1\x2d\xf3\xac\xae\x82\xb3\x1d\x05\xd7\x1d\x0e\x64\x5e\x5f\x52\x30\xe8\xf7\x2d\x53\x50\xd5\xb5\x54\x61\x0b\xd4\xa1\x28\x8d\x49\x07\x73\xed\x81\x6d\xf5\xe4\x57\xe5\x0d\x3d\xb7\x56\x04\xca\xe3\x03\xb8\xd6\xbc\x74\xf4\x84\x7e\x4f\x79\x83\xd8\x65\x6b\x95\x72\xc0\x99\xe3\x38\x5f\xac\x34\x64\xd0\x52\x96\xaf\x01\xef\x72\x19\xa3\x47\xe7\x5e\xb9\x6a\x3d\x35\x8c\x17\xea\x92\xe8\xb6\x35\x4e\xb6\x3d\x4e\xe3\x6d\x2f\x55\xcb\x79\x96\x6b\xdf\x17\x23\xd8\x03\x49\x18\xdc\x72\xdd\x85\x16\x34\xc2\xc1\x1a\x7b\x26\x8d\x4a\x84\xb5\x5a\x5b\xba\x1e\x6d\x57\x09\x28\x2d\x78\xc6\x86\x61\xbc\xe4\x06\x46\xa8\x1a\x67\x01\x11\xb7\xbc\x44\xb4\x39\xf5\x62\x44\x9a\x16\x90\x46\x2f\xbc\x64\xfc\x00\xda\xd4\x30\x68\x0a\x28\xd5\x19\xfb\x97\x49\xab\x95\xb6\xdb\x54\x5d\x44\x1d\x44\x17\xe2\xc6\xd6\xec\xa6\xc2\xec\x16\xa5\x52\xa3\x4b\xdb\x5b\xca\xb7\x7a\x17\xa0\xc4\x9b\xb6\x08\x7c\x56\x0c\x7d\x89\xf7\x48\xcf\x62\xfe\x5c\x04\x55\x0e\xe3\x8b\xe7\x57\x2c\x49\x83\x38\x22\x94\x70\x76\xc3\x9f\x2f\x43\x3f\x80\x07\xab\x63\x0d\xf0\xec\xd2\x03\xc5\x67\x3e\x67\xd5\xb2\xb6\x69\x0d\xdb\xa6\xd3\x56\x18\xf8\x8c\x2d\xc5\x0d\xd6\x32\x9c\x02\x29\x46\xdb\xe8\x88\x3d\x73\x27\xb7\x4b\xb9\x19\x2a\xee\xfc\x1a\xc7\x8b\x2f\x7e\x02\x76\x41\x6d\x1c\x21\x7f\xff\xf8\xf1\xbd\xb6\xe5\x69\x96\x69\xfe\x99\xd0\x58\xc5\x00\x8d\x97\xb7\x19\xc8\x7f\xff\xbf\xfe\x4f\x78\x33\x63\xe9\x37\x1e\x2f\x3f\x00\x40\x20\xbe\x7d\x9e\x04\x3c\x04\x80\xff\xfa\xdf\xb4\x3f\xeb\x1c\x1e\x0c\xed\xbf\xff\xd7\xff\x06\xd0\x9c\xa5\xfc\x35\x5b\xa6\xde\x84\x5c\x72\x96\x2c\x3a\xc7\xd3\x24\x0e\xc3\xc3\x38\x11\x3b\x06\x52\x42\xf3\x17\x8c\x45\x95\xcc\x13\x96\x2c\x82\xc8\x0f\x2b\xd9\x9f\x4f\xea\x19\x7b\x7e\x14\xb1\x99\xc8\x3e\x43\xce\x5e\x04\x29\x67\xc9\x9b\x28\xe0\xba\x00\x23\x74\xdd\xd1\x6e\xe3\x7b\x89\x51\x1c\xc3\x60\xd2\x6a\xb4\x9a\x58\x05\x9c\x96\x8c\xbe\xbb\xd3\x9b\xef\x90\x97\xd1\x27\xaa\xcf\x18\xcd\x76\xa7\x8a\x45\x6e\x81\x2d\x47\xe4\xd3\x1b\x4a\x1a\xee\x03\x45\x31\xae\x93\xda\x50\xbe\x85\x06\xf9\xc9\x77\xdc\xbf\xf7\xa3\x60\xce\x52\xae\xd4\xcc\x7a\x08\xdd\x18\x27\x5e\xda\xf1\x97\xcb\x56\x0b\xff\x74\xce\xfd\xe9\xb7\x8b\x24\x5e\x45\xb3\xfb\x64\x67\x4d\xec\x19\x11\xf4\x95\x2c\xe3\xe5\x6a\x49\xee\x0d\x6a\x1a\x6e\x33\x8d\xdc\x3f\x4f\x77\x0a\x69\xfc\xe4\x2e\x36\xb9\xe6\x5b\x25\x60\x7c\xb6\x5a\x25\x04\xaa\x8c\xc8\x14\x71\xa4\x13\xf9\xf4\x66\x26\xc2\x19\x73\xc3\xd5\x4b\x1d\x4e\xa2\x38\x59\xf8\x21\xa9\x76\xb9\x71\x5f\x3e\xb4\x52\x6f\x88\x2c\x88\x2d\xb9\x37\x68\x8c\x64\x86\x01\x8b\xf8\x71\x69\x3f\x67\xf1\x9a\xd4\x0b\xc6\xf1\x4b\x5d\x10\x5d\x08\xd0\x23\x36\xc5\x10\xdc\x85\xd2\x6b\x9d\x91\xb5\xc5\x3b\xd7\x50\xa4\x84\xe4\x67\x16\x5c\x5c\x36\x1e\xbf\x5e\x8f\xe5\x12\xcb\x00\x9a\x69\xbc\x94\x37\xe9\xc2\x18\x8f\xf7\xc2\x60\x79\x1e\xfb\xa5\x8b\x3d\xc5\x4e\x07\xd6\x61\x37\x6c\xba\x17\x2f\x16\x7e\x34\xd3\x09\x94\x23\xc5\x40\x4b\x80\x6c\xe9\xa7\x9c\x1d\x24\xf1\x62\x3d\x9a\x8c\xb4\x12\x36\x2c\x48\x6a\x9b\xb1\xf1\x28\x96\xd2\x53\x0d\x01\xb3\x70\xb3\x88\xf7\x52\x59\x18\x8f\xed\x30\x97\x8f\xf3\xc7\x56\x0b\x7a\x71\x0b\x3d\x1a\x9d\x79\xdf\xef\xd5\xb8\xf9\x7e\x1e\xcf\x6e\x5d\xd6\x81\x3f\x34\x98\xc6\x91\xcb\x75\xd6\x81\x44\x73\xa4\x5d\xa9\x5b\x9e\x07\x0b\xff\x82\xa5\xcf\x01\xb0\x3d\x1a\x10\xf0\x32\x52\x0f\x8a\xa2\x42\x54\x5b\x97\x67\xf1\x14\x37\x4b\x88\x5c\x43\x86\xdd\x96\xea\xc9\xc0\xb8\xcf\x73\x75\x8d\xee\x67\x3f\x49\xf5\xf5\x0a\x97\x7e\x47\x1c\x6e\x7a\xaf\x2e\x6a\x02\x6d\x50\x04\xd3\x53\x9a\x14\xae\x67\x8a\xa3\x69\x18\x4c\xbf\x15\x77\x42\x48\xaa\xe6\xf1\x74\x95\x66\x57\x34\x85\x31\x5e\xd6\x4b\x23\x60\x70\x45\x8a\xb3\x23\x2f\x28\x6c\x6a\xe3\x99\x90\x19\x8f\xab\x02\xe5\x3b\x3e\x7e\x23\x86\x69\x18\x47\xac\xe1\xf4\x3f\xb4\x56\x00\xeb\x39\xbe\x22\x36\xa3\x01\x19\x0c\xe6\xb8\xbe\x11\x46\xd2\x52\xc7\xe1\xb1\xc2\x80\xa8\xe0\x62\xff\xb1\xf2\xc3\x46\x6f\xb1\x80\x53\x21\x95\xbb\x62\x24\xd6\x4d\x68\x37\x6c\xb4\x9d\x48\x53\x19\xfc\x9a\x6f\xa8\x45\xec\xf2\x98\x63\x5e\xc3\x36\x39\x23\x80\xfb\x28\xbe\xde\x8b\xc3\xe6\xdd\xd4\x49\x7c\xad\xd8\x3f\x8d\xc3\xd5\x22\x52\x5b\xa9\xe3\x2b\x96\xcc\xc3\xf8\xda\xdb\xda\x4a\x72\x24\xc5\x6d\xf0\xf1\x55\xfd\x1e\xc6\xdf\x88\x73\x73\x37\x0b\x70\x5d\xd5\x51\xac\xa1\x8c\xdf\x68\x44\xbe\xa6\xdb\x91\xda\x2a\x3e\xf4\xac\xeb\x88\x3d\x96\x25\x1b\xab\x78\x40\x1a\xa0\x2a\x51\x97\x94\x04\x59\x59\x56\x9b\x8a\x19\xa8\xaa\x7b\xa8\xbe\x87\xc5\x44\x14\xc9\xb7\x54\xc7\xd7\x05\x31\x11\x95\x16\x32\x54\x65\x42\x72\x4a\x7e\xe5\x9c\x80\x61\x3b\x48\xfc\xc5\x9a\x5e\xe7\xd2\x4d\xcb\xa2\x7d\xcf\x82\xab\xaf\x1e\xc3\x3f\x22\x63\x95\x84\x99\x24\xe0\x19\x8d\xd4\x4b\xf2\xd0\x04\xc1\x1c\x70\x17\xb7\x14\xc3\x9c\xd5\x0f\x22\x96\x14\x33\xe5\x3d\xf4\x7b\x97\xe0\xea\x85\x6a\x43\xbe\xa4\xac\xb4\x7b\x39\xdb\xea\x5c\xec\x0e\x15\x05\x0a\x03\x18\xe1\x55\xd4\x32\x1e\x54\xb0\x9c\xb6\x83\x28\xe0\xed\xf8\x1b\x71\x65\xa7\xe5\xe7\x6e\x52\x16\xcd\x94\x1f\xfa\x26\x9a\xc7\x5f\x75\x63\x8c\xc5\x54\xab\xdb\x41\x34\x8f\x8b\x65\x2b\x2d\xe8\xa4\xfc\x36\xc4\x08\x2e\xcb\xd0\xbf\xf5\xc8\x3c\x64\x37\xa4\xb1\x45\x9d\x65\x9c\x70\xab\x13\x47\x32\x5f\x9d\x70\x91\xcd\x29\xee\x40\x2e\x9e\x0b\x7a\x17\xfb\x33\xdd\x18\x4b\xdf\xb0\xd4\x82\x52\x00\x97\xca\x7d\xfe\xda\x3c\x89\x17\x1a\xb2\xde\x25\x54\xb0\xc5\xb8\xdf\xc8\xd0\xa2\xb0\x35\x03\x02\x2d\xf5\x4d\xe3\xb5\x9e\x63\xd7\xda\xfb\x52\xde\x8f\xf0\xa3\x7e\xce\xa7\xb9\x3c\x6e\x9a\x56\xe6\x4d\xca\x1a\xf6\x0f\xfa\x59\x68\x01\x97\x71\xca\x25\x56\xfd\x3b\x86\xc9\xc9\xa4\x82\x50\x3f\xb9\xb8\x72\x27\xdf\x25\x72\x98\xbb\xb8\x6b\x6b\xb3\xef\x55\x54\xbf\x55\x12\xd2\xc9\x7a\xb8\x33\x63\x3d\x03\x1f\x62\x73\x4d\x24\x4b\xe7\x86\x3a\x73\xbc\x65\x7f\x3a\x65\x4b\xfe\xce\x8f\x2e\x56\xe0\x98\xe8\x35\xe5\x57\x6c\x72\x59\x96\x09\x9d\x7c\xf7\xcb\xc5\x5d\x46\xe7\x71\xc2\x84\x77\xbf\x17\x87\x71\xe2\x96\x47\x3e\x54\x79\x50\x86\xd0\x0d\x9a\xcf\x08\xd6\x95\x79\x55\x86\xd0\x0d\x3a\x5d\x25\x69\x9c\xac\x83\xdf\xcb\xdf\xea\x06\x9d\xc7\xc2\xcf\x6e\x24\x46\xbc\x92\x50\x07\xfe\x22\x08\x6f\xd7\xc0\x89\x97\x48\x6f\xca\x3e\x1d\xbd\x73\x25\x0f\x3f\x1d\xbd\xc3\xeb\xf9\xef\xcf\xaa\x77\x16\x37\xf5\xdc\x1e\x38\x4e\x7b\xe0\x62\xb1\x86\x21\x90\xb9\x55\xf5\xa2\xf8\xaa\x61\x77\xab\x52\x20\x99\xc5\xc8\x34\xca\xd2\x87\x79\xd0\x87\x78\x96\x05\x65\x6b\x7c\x59\xbc\x21\xb3\x0a\x96\x9d\x8e\xdd\x13\x84\x6d\x6a\xd4\x43\xf2\x58\x10\xa5\x86\xdd\xda\x4d\x63\xa0\x7e\x4f\x91\x2c\xaf\x4d\x05\x84\x16\xa4\x78\x7c\x26\x65\x5c\x5b\x2d\x3b\xea\xfa\xf1\xe6\x01\x5e\x1f\xbd\x4c\x0c\x5a\x7e\xdf\xd8\xac\xf4\x32\xbe\x2e\xb6\x29\x5b\x0a\x60\x78\xb7\x67\x36\x13\xc1\x78\x50\xca\x60\xed\x64\xa9\x09\x3b\x73\x93\xfb\x3c\x14\xb0\x3c\x34\x9c\x47\xdf\x78\x54\xcf\x19\x4a\x37\xab\x03\x7a\x40\xa4\xe6\xcb\x8b\xd7\xaf\x82\x34\x38\x0f\x19\x11\x7b\xf6\xe4\x56\xf7\xca\xec\x52\xcf\x6c\xad\x41\x03\x8f\xe9\x04\x7d\x41\x42\x07\x3d\x13\xa6\x12\x4c\x27\xc2\x19\x24\xb4\xe7\x98\x78\x51\x64\x22\x3d\xdc\x44\xba\x89\xb4\x32\x1e\xd4\xf4\xe4\xab\x41\x7d\xaf\x66\x88\x55\x14\x9e\x90\x01\x8c\x4e\x66\xc1\x15\x31\xc6\xbe\xb4\x6f\xd3\x34\x3d\x61\x37\xdc\x23\xcb\x38\x0d\x44\x10\x25\xff\x3c\x8d\xc3\x15\x67\x63\x69\xfb\x5c\x2d\x8a\x23\x36\x06\x03\xd8\x9e\x05\x89\x98\x59\xba\x9a\xf0\x45\xc6\x3c\x5e\xba\x9a\x65\xfe\x79\x1c\xb2\x39\x77\xb5\xde\x9f\xc7\x48\xac\xab\x8d\xcc\x3f\x8f\x05\xbd\xae\xe6\x98\x7f\x1e\x2f\x82\xa8\xad\x9e\x6d\x78\xf6\x6f\xda\xc5\xf7\xe7\xf1\x4d\x3b\xbd\xf4\x67\xf1\xb5\xab\x99\x9a\xa9\xd9\xcb\x9b\xfc\x60\xe2\x26\x7d\xb5\x4d\xc6\xe7\x71\x32\x63\x89\xfb\x94\x32\x5a\x1a\x87\xc1\x6c\x4c\x70\x16\x16\x7a\x65\x8f\xa6\xca\x33\xf1\x82\x18\xe3\xb0\x13\x47\x21\xe8\xfa\x82\x11\x2f\x19\xb4\xb0\xca\xd7\x8c\x89\xc0\x3f\x64\xa2\xab\x59\x8a\x47\x62\xe1\x2e\x04\x4f\x77\x97\xf3\x24\x38\x5f\x71\xa6\x93\x34\x99\x92\xcc\x1a\x19\xf5\xd7\xcc\x5f\x84\x2c\x4d\x09\xdd\x32\x0d\xea\x77\xfc\xe5\x92\x45\x33\xa1\x2e\x42\x23\x77\xe5\x4a\x2f\x7c\x71\x3c\x42\xfa\x87\xc2\xd5\x7c\xcb\x6e\x71\x4e\x0f\x89\xf7\xfe\x12\xfd\x45\x95\xd7\x74\xec\x40\x30\x54\x79\x8b\xdf\x24\xa4\x64\x52\xd1\xe5\xbb\xf4\xa3\x59\x28\x02\x82\x4f\x08\x4e\x53\xe3\x15\xcf\xae\x7f\x38\x80\x8c\x8f\xe5\xb3\x59\x67\x74\x42\xbe\xb1\xdb\x59\x7c\x1d\x65\x70\x6f\xd9\xed\xeb\xf8\x3a\x6a\x00\x5b\x26\xd8\xfc\x1c\xee\x10\x32\x1a\x00\x57\xcb\x22\xd4\xa7\x65\x15\x84\xb3\x1b\xfe\x26\x5a\x16\x88\x3b\x51\x39\x25\xd0\xb3\xac\xc9\xef\xfd\xa5\x27\x26\x37\x15\xee\x15\x1d\x1a\x28\x19\x44\x17\x69\x15\xf2\x95\xcc\x2f\xc2\xfa\x21\xff\x29\x79\x1f\xcf\x70\x39\x2b\x52\x97\x64\xe0\x61\xf6\x37\x51\xca\x12\x7e\xe8\xa7\x9c\x79\x5b\x72\x0b\xfe\x65\xbc\x60\x6f\xd9\x6d\x2a\x56\x64\xb3\x30\x5d\x4b\xff\xa2\x29\x7b\xca\x93\xf0\x30\x5c\xa5\xef\x83\x68\x95\xfe\x9d\x25\xf1\xdf\xe3\x78\x91\xe1\x82\xb7\x7b\x7b\xf1\xf2\xb6\x04\xff\x59\x56\x28\xb3\xfc\xa5\x08\x46\x18\x20\x0b\x97\xfe\xac\xe9\x8d\xb0\xef\xd9\x1b\x70\x20\xd2\xa5\x3f\x65\xc7\x2c\x9a\xa5\xaf\xd4\x53\x5e\xcd\xa5\x9f\xf8\x53\xce\x92\xfd\x68\x1a\x03\x47\x3c\xb2\xe2\xf3\xb6\x93\xf9\xd7\xdc\xc7\x92\xfb\xe9\xd4\x5f\xe6\x6d\x5f\xfa\x69\xfa\x9e\x71\xff\x73\x96\xe3\x87\x1c\x01\xbf\x5c\xfa\xdc\x23\x0c\xc1\x49\xf6\xea\x0d\x42\xe7\xf4\x86\x3c\x23\x45\xbc\xaa\x53\xe6\x87\x5c\x89\x13\x9b\xa9\x23\x25\x0b\x36\x0b\x7c\xe0\xee\x6e\xc2\x0e\xe0\x6f\xce\xf6\x84\x5d\x05\xf1\x2a\xdd\x2d\xd0\x91\xcf\x70\x8a\x12\xb2\x3b\x15\xf3\xa7\xef\x7b\xbb\x1f\xf6\xf6\x85\xaf\x52\x0c\x8f\x26\xb2\x89\x41\xe5\xe5\x5e\x35\x00\x99\x4f\x0c\x7a\xb8\x7b\x7c\x5c\x7b\x0d\x99\xc4\xa0\xc7\x27\x47\x6f\x0e\x6b\x2f\x31\x97\x18\x25\x9a\x0a\x73\xe0\xa8\x76\x16\x46\x4e\x49\x45\xa7\x78\x5e\x73\xa7\xed\x94\xd4\x42\xe7\x8a\x17\x76\xf1\xeb\xcc\x70\xd9\x9a\xfa\xf0\x30\x5b\x18\x36\x6a\x1a\x71\xec\xad\x51\xbf\x18\xdf\x99\x34\xcc\xd5\x37\x32\xbb\x82\x17\x17\x7c\xf3\xeb\xe9\xb9\x67\x8e\xf9\x8b\xb2\x7a\x52\x5f\xe7\xb8\x3a\x4a\x20\xa3\x13\x64\x00\x13\x7e\x36\x66\x3b\xac\x7e\xa7\x4d\x32\x31\xcf\x68\x32\xb1\xce\xe4\xf9\xcc\x2a\x49\xd2\x87\x5b\x57\xe8\xbe\x59\x83\xb2\xfb\x35\x2c\x5b\x45\x6b\x99\x26\xb5\x73\x63\xe3\xd7\x60\x2b\x6a\xb9\x72\x94\x2b\x9c\x4d\xb6\x5a\x72\xb2\x2d\x0f\xb9\x11\xa3\x7c\xe3\x6c\xd6\xe3\x71\xf4\xf9\x04\x86\x03\x4f\xe2\x6f\x85\x69\x6e\x06\x60\xac\x27\x20\xd3\xd9\x0d\x8b\xc0\x4d\xc7\x09\x58\xe7\xfa\x32\x98\x5e\x1a\x1d\x1e\xbf\x8b\xaf\x55\x8c\x67\xbc\x3d\x93\xa1\xd6\x7a\xcb\x6e\x5b\xad\x2d\x86\xba\xe3\x2d\xbb\xbd\xbb\x23\x53\x82\x77\x3a\x90\x2b\xf8\x2b\x6f\x0b\x12\xc3\xbb\xd5\x22\xe7\x49\x7c\x9d\xb2\xa4\xfd\x8d\xdd\x2a\xf9\x2e\xea\x92\x56\x0b\x43\xbf\xa9\xaf\x95\x4a\x38\x9a\x29\xfb\xc6\x6e\x11\x68\xcc\x84\xda\xc6\xea\xf5\xc4\x4b\xca\xc4\x1a\x34\x29\x7e\xfe\x34\x8d\x6d\xcb\x76\x54\xfc\x7f\xf5\xe2\xa5\xd7\xb5\x5b\x2d\x3d\x29\x56\x3e\x4e\xa4\x80\x37\x33\x5e\x6f\xa2\x2a\xc1\x90\x95\xa0\x9e\x58\xa4\x02\xa8\xca\xc8\x50\xf1\xf2\x30\x89\x97\xfe\x85\x58\x6c\x36\xd6\x89\x9c\x2c\x2b\x3e\x6c\xed\x2e\x97\x1f\xe2\x68\x8f\x27\xe1\x31\xb4\x50\x22\x2c\x77\x5e\xe5\x83\x50\xe9\x51\x7c\x6f\xaa\x65\xc9\x8f\x39\xad\x96\x5e\xe8\xc4\x22\x17\xeb\x4d\x58\x2f\x52\x99\x5b\x51\x77\x5d\x2a\x5a\x7d\x93\x54\x7e\x5a\x96\xcb\x5b\x0e\x08\x82\xec\x62\x35\x6d\x2b\xe3\xab\x67\xb5\xfe\xa1\x5b\x2f\x5e\x30\xbc\x1e\x0b\x10\xb5\x2d\xc3\xa0\xf6\xb0\x84\x29\xb3\x1f\x0f\x31\x19\xb7\x1d\xac\x27\x18\x5d\xa4\x75\xd1\xaf\x63\xe3\x7b\xe0\xc5\xf2\x43\x43\x32\x89\xcf\xd4\xcd\x81\x0a\x26\x3f\xf3\x1c\xb5\x5a\x7a\xe4\x45\x32\x92\xab\xf2\x75\xe8\x84\xd1\xe4\xcc\x80\x69\x88\xe7\xf9\xad\x96\xfa\x72\xb6\xe5\xc5\x08\xcf\x75\x95\x03\x30\xf7\x3f\xc4\xad\xbb\x2a\xaf\x7e\x0b\xab\x8a\x81\xb9\x44\x13\xe0\xcf\x6b\x36\x4f\x27\x19\x46\x11\xa3\x53\x1d\x1e\x43\xb7\x55\xc4\x13\xa1\x91\xd7\x68\xb5\x3b\xc2\x3a\x53\x7f\xcd\x6b\x69\x9b\x69\xb8\xe6\x3d\x18\x67\x7a\xb9\xe6\x25\x1a\x67\x3a\xf5\xb2\x21\x40\x57\xde\x56\xd9\x85\x81\x41\x21\x58\x46\x73\x06\x8a\x57\x3b\xea\x0d\x0c\x16\xa9\xfc\xdc\x2c\x45\x97\xde\xd6\xf3\x5f\x4e\x27\xa7\xd7\xdb\xa7\x67\xea\x7a\xee\x04\xf9\xe0\x2f\x0d\x15\x61\xbf\xec\x87\xca\xe5\x55\x20\xa6\xed\x87\x9c\xb8\xcb\x56\x6b\xda\x6a\xad\x5a\x2d\x1d\xc3\xc2\xae\xbc\x2d\xcb\x18\x9f\x27\xcc\xff\x26\x56\x54\x13\x98\xc3\x65\xa0\x76\x45\x57\x29\x23\x57\x19\x21\xeb\x90\xc1\x2c\x32\xc3\x65\x3d\x1d\x17\x4e\xf0\xe7\xe3\xb9\xc7\xf5\xe9\x0e\x91\x9b\xa8\x88\xbb\xda\x21\x88\x74\xb6\x43\x80\x35\x24\xfb\x04\x2c\x04\xe6\xc2\x03\xd3\xe1\xa7\xdf\x8e\xa5\xea\x29\xaa\x21\xba\xf0\xbe\x4b\xc9\x71\x33\x19\xa2\xf8\xd6\x2d\x40\x01\xc3\xdc\x29\xf5\x43\xee\xae\x28\x54\xe2\xce\xee\xe9\xad\x57\x9a\x10\xe0\xda\x99\x48\xeb\x0b\x34\x5f\xb7\xad\x96\x7e\xe1\x4d\xbd\x95\x87\x8e\x75\x90\x7f\xd4\xae\x8f\x51\x7d\xee\xdd\x76\x7c\xcc\x33\x5a\x2d\x7d\xee\xcd\x3b\x53\x3f\x0c\x65\xd0\xad\x22\xa7\xe8\xc2\x30\x0c\xba\x7a\x8c\xa1\x9b\xe3\xb8\xd6\xe7\x5e\x68\xd0\xf9\x96\xe7\x85\xf0\xb0\xe5\x79\xfe\xdd\xdd\xf4\xee\x6e\x75\x77\x37\x13\x75\x79\xde\x65\xab\xa5\xaf\x3c\x64\x75\x23\x6d\x49\x47\x90\xae\x68\x2b\xdc\x82\x50\x51\x26\xa2\x4e\xdb\xf3\x94\x28\x66\x1b\x87\x10\x8d\xcc\x93\xfb\x76\x2e\x76\x2c\xd7\xa4\x96\xf1\x68\x8b\x86\xcd\x88\x0c\x23\x98\x23\xd9\xfe\xdd\x5d\xed\x7a\x9e\xb9\x88\xfb\xa0\xc4\xc3\xf3\x82\x1d\x68\x97\x8b\x42\x02\x4f\x2b\x7c\x42\x51\xf1\xbc\xa0\xd5\xd2\xa1\x77\x0c\x4a\xfe\x34\x21\x9e\x37\x57\xa4\x99\xd4\x86\xc6\xae\x90\x55\x17\x32\x00\xc3\xf9\x78\xeb\x02\x19\x37\xdd\xd9\x5a\xdd\xdd\x5d\x40\xe2\x02\xc7\xcf\xd6\x74\xe7\xdc\x23\xe3\x1e\x71\xb7\xa6\xf8\x62\x05\x2f\xa6\xad\xd6\xd6\x0a\x5f\x0c\x88\xbb\x12\xcf\x17\xf8\x3c\x24\xae\x28\x38\x6d\xb5\x74\xc8\x70\x88\xe1\xc2\xdf\x3e\xc1\x3f\x5d\xf1\xc7\x26\x74\xee\x75\x81\x2c\xc1\xc5\x1d\xf2\xa7\x89\x45\xb6\xcf\xb7\x33\x3a\x6d\x6a\x19\x6e\x81\xea\x79\xb6\xfd\xd3\x28\x82\x15\xb2\xef\xd5\xd6\xcc\xb9\xa7\xe4\x63\x5d\xbf\x50\xa0\xee\x6b\xed\x35\xbc\x2a\xfb\x3b\xc6\x4b\x6f\xd0\x6b\xb5\xbe\xbe\xf0\x46\x7d\xc4\xd8\xe4\xb8\x7c\x6d\x0f\x7a\x4a\x76\x9d\xf6\x79\xc0\x9b\xa5\xd6\xca\x9b\x2b\xb8\xfe\x15\x06\x43\xd5\xbb\x1a\xaf\xa9\xc3\xb8\xd7\x01\xbf\x9c\x2f\x36\x54\x70\x77\x37\x93\x66\xa7\x32\x17\x15\xb2\x4d\xfe\x44\xb6\xe7\xd2\x89\x5f\xe3\x94\xcd\xe5\xf5\xda\x6a\xb9\x50\x44\xdf\x7a\x13\x5d\xf9\x61\x30\xd3\x7c\xb9\x86\x46\xb6\x2b\xc1\x42\xe6\x46\x63\xb9\x0f\xb1\x36\x63\xf3\x20\xc2\x15\x3a\x8c\x4f\xa9\x14\x12\x86\xa8\x54\x1e\x68\xc9\x4f\x50\x8b\x0d\xf5\x18\x0a\xf2\x85\xb8\x9d\xad\xa1\xc4\xfa\x9b\xcd\x7e\x00\x83\x3f\x9b\xc9\xdc\x6a\xc4\x18\x79\x9b\x01\x98\xdf\xa0\xac\x26\xbf\x56\x6c\x75\x90\x85\x4f\x13\xb1\xb7\x83\x62\xec\x6d\x78\x3f\x49\xcf\xa0\x80\x0c\x63\x2d\x82\x71\xbc\xcd\x9e\x75\x66\x18\xdf\x13\x0f\xa0\x84\xa9\xb9\x4f\x76\x12\xa9\x48\x3d\xee\xea\x09\xea\x77\x09\xec\x32\x2a\x7b\x87\xdf\xd3\x40\x46\x1c\x68\x22\x4c\xdd\xfc\x40\x83\x4e\x1a\x27\x85\xed\x4d\xd8\x38\xb9\x18\x5d\x36\xf9\x8a\x3e\x80\xdf\x8b\x17\x4b\x3f\x91\xf3\x07\xf9\x82\xf2\xc2\x83\x71\xaf\x82\xff\x34\xd5\xee\x4d\x92\xb3\xe6\xfe\x6e\xe4\x7d\x7d\x81\xbf\xa6\x13\xb3\x59\x8e\x58\xb4\x3a\xf4\x93\x94\x25\xe3\xa4\x93\x30\xbc\xd1\x56\x18\xca\x00\xe3\x66\x06\x5e\x22\x6e\x34\x7b\xcb\x6e\x8f\xd9\x7f\xac\x58\x34\x65\x0d\x91\x17\x4b\xdf\x32\x65\x1c\x5c\x8c\x6c\x93\x74\x82\x34\x8b\x3a\x64\x34\x93\x03\x3c\x94\x75\x73\x43\x44\xeb\x2c\xd4\xba\x2b\xe5\xf1\x91\x75\xde\x97\x6b\x14\x2b\x17\x05\xc9\xd4\xeb\x4b\x7a\x4a\x76\x02\x83\x72\xc3\x2d\x63\x4c\xf2\xa8\x9c\x2a\x20\x63\x34\xd3\xe2\xb9\x96\x4a\x66\x60\xec\x9c\xea\x50\xfe\x91\xb2\x35\x42\xc5\xd5\xbd\x8f\xed\xf6\xb4\x79\x87\x72\xe1\xfe\xcb\x1c\x56\xe7\x94\x4d\xf8\xc3\x42\x95\xbb\x30\xeb\xee\x58\x5c\x37\x8c\xb3\xd8\x50\x1a\x46\x60\xad\x5c\xda\xdd\x10\xd7\x81\x4f\x12\x31\xfe\x9b\x06\x37\x4c\x7c\x60\x64\x67\xb1\xee\x0b\xb8\x37\x2e\x75\x4b\xc7\xbb\xb4\xdc\x2d\x17\x71\xeb\x53\x47\xe5\x72\x16\x56\xbd\x61\x32\xe1\xa9\x4d\x10\x42\x42\x8d\xea\x72\x1f\xcc\x3b\x4a\x1d\xf2\x16\xcb\x55\x86\x61\x7e\x03\x8c\x44\xdb\x6a\x95\xf5\x7e\x7e\x13\x4c\x51\xdf\x1b\x25\x52\xf0\x36\xa8\x47\xd6\xbf\x46\x1e\x70\x69\xac\x1a\x11\x08\x57\xc5\x94\x8c\x88\xe2\x7a\x06\x23\xce\x67\xd0\xef\xc2\xe6\xbb\xa5\x7c\xeb\x8c\x0a\x47\xb0\x9c\x6d\x9f\x51\xe9\x6f\x95\xf3\xbb\x67\xe8\x33\x97\xf2\x7a\x67\xc2\x83\x2e\x65\xf6\xcf\xee\x1f\xe0\x33\x76\xc6\xda\x4f\x84\x85\x8d\xe1\x0d\xf3\x5f\x5c\xe6\x43\x8f\x75\x4a\x27\x1c\xfc\x54\x97\xdd\x57\x2f\x92\x92\x22\x96\xd5\x10\xd0\x38\xff\xee\xa8\x07\x85\x95\x8b\x40\xcd\xe6\x20\xa9\x66\x68\x41\xbe\x3c\xb5\x35\x2d\xcc\x66\xaa\x0b\xe9\x3b\xdc\x4d\x28\xe0\xbe\xcf\x29\x48\x1e\x43\x41\x01\xe9\x9a\x35\xf8\x9d\xc4\xe5\x55\xd4\xc1\x06\xd4\xc2\xe8\xe6\x2d\x83\xf2\xe3\x6c\x77\x7d\x71\xca\xe4\x6d\x99\x94\xe9\x69\x15\x79\xfa\x38\xce\x09\x16\x35\x51\x17\xfd\xbe\xac\x6f\xaa\xc2\x2f\x18\x90\xe6\x35\xbe\x92\x6b\x09\x2e\x6a\x5e\x38\x2c\x14\xce\xa8\x2b\x92\xcc\xc5\x95\x6d\x98\x57\xa8\x14\xaf\xc3\xa9\x96\x4b\x68\x90\x65\x16\x3a\xb3\xf6\x05\x62\x87\x01\x3a\x1a\x18\xae\x35\x18\xa8\x79\x54\x3c\x63\x77\x77\xd6\x60\x58\x79\x76\x0a\xcf\x3b\x9b\xd6\x37\xdc\xf5\xab\x17\xf7\xf7\x15\xed\x87\xde\xc0\x54\xac\x9a\xac\x36\xaf\x9a\xcc\x1e\x58\x35\x59\x6e\x5a\x35\x99\x6f\x5a\x35\x19\x97\xd5\x53\xaa\x4f\x4c\x4a\x26\x9f\x3e\xbc\xfd\xf0\xf1\xcb\x87\x33\x42\x97\xe2\x7f\x78\x64\x9c\x92\xc9\xfe\xf1\xde\x19\xa1\xe4\x4f\x84\xce\xe0\x7f\x78\xa6\xd9\xa6\x64\x72\x60\x9d\x11\x1a\xe9\xe4\x4f\x1f\x0f\xe1\xf5\xe4\x90\x18\x74\x06\x09\xbb\xfb\x0f\x22\xe1\xba\x00\x67\x2b\xb8\xbf\x22\xdc\x5f\x33\xb8\x5e\x06\xd7\x03\xb8\xae\x82\x3b\x42\xb8\xa3\x0c\xae\x9f\xc1\xf5\x01\xae\xa7\xe0\x8e\x11\xee\x38\x83\x1b\x64\x70\x03\x80\xeb\x23\xd9\x13\x0b\x8b\x23\x80\x93\x01\x40\xc3\x0e\x06\x12\x60\x98\x01\x8c\x32\x00\x07\x00\x86\x12\xc0\x51\x00\x5d\x2b\x03\x18\x01\x80\x23\x01\x46\x19\x80\xad\x00\x6c\x60\xea\xc1\x48\x00\xd8\x66\x06\x90\x31\xc7\xb6\x90\x89\xa6\x84\xb0\x32\x88\x8c\x2d\xb6\x60\xb3\x25\x21\xba\x0a\xa2\x97\x57\x82\x0c\xb6\x6c\x09\xd1\xcb\x20\xb2\x5a\x46\x36\x25\xff\x05\xb3\x03\xdd\xd7\xc9\xbf\x10\x83\xfa\x3a\xf9\x85\x18\xc0\xb4\x25\x46\xef\xa0\xc4\xda\x02\x80\x50\x27\x62\x75\xf0\xc3\x6a\xf1\x95\x18\xe2\x79\x37\xe4\xc5\xc7\xf7\x8c\xfb\xe2\xf9\x8c\x4e\xfa\x26\x25\xf6\xbf\xfc\x58\x51\x8b\x92\xee\x3f\xfd\x58\x51\x9b\x92\xde\x3f\xff\x58\xd1\x2e\x25\xfd\x3f\xff\x58\xd1\x1e\x25\x83\x5f\x7e\xac\x68\x9f\x92\x61\xeb\xc7\x8a\x0e\x28\x71\xfe\xf2\x63\x45\x87\x94\x8c\xf4\x1f\x2a\xda\x73\x28\x31\x8d\xac\x68\xe9\x53\xf8\x3a\x04\x55\x20\x0c\x83\x31\xa2\xa4\xfd\x75\x3d\x9e\x35\xf9\x58\x74\x48\x89\xb7\xfd\x43\x45\x87\xdd\x1f\xad\x75\x60\xfd\x78\xa5\x16\x25\xdb\x7f\xf9\x91\xa2\xa0\x68\x5e\xbd\x3d\x3e\x3c\x23\x34\xd1\xc9\x7f\x12\x4a\x4e\xcf\x89\x01\xe9\xd3\x73\x42\xc9\x7f\x62\x61\x18\xca\xa0\x70\x4e\x76\x5f\x9d\x11\x1a\xe8\xe4\x94\xe3\x88\xff\x3b\x31\xe8\x9c\x2e\xf1\xbd\x63\x51\xf2\x1f\x7f\x05\x12\x7c\x9d\xfc\x35\x2b\x06\x9c\xbc\xfe\x22\xb3\xbf\x64\xd9\x83\x11\x25\x6c\x5f\x66\xef\xe7\xd0\x36\x25\xc9\x91\xcc\x3e\xca\xb3\x7b\x94\xf0\x13\x99\x7d\x92\x67\x8f\x28\xb9\xfd\x37\x99\xfd\x6f\x79\x76\x9f\x92\xd5\x27\x99\xfd\x29\xcb\x86\x8e\x09\xde\xc8\xec\x37\x79\xf6\x88\x92\xf8\xa3\xcc\xfe\x98\x23\x31\x29\x59\x1e\xca\xec\xc3\x2c\xdb\x46\xc5\xfb\x5d\xe6\x4f\xf2\x7c\x50\xa7\x67\xf7\x32\xff\xac\x90\x6f\x52\x72\x7a\x7a\x27\x5f\x9c\x9e\xe6\x6f\x40\x41\xef\xed\x1e\x1e\x67\x26\x0f\xf9\xd2\xa7\xc4\xdf\x95\xd0\xbb\x39\x35\x5d\x4a\xd2\x63\x99\x7d\x9c\x73\xd1\xa1\x64\xf6\x5a\x66\xbf\xce\x9b\x64\x52\x32\x3f\x90\xd9\x07\x79\xb6\x45\xc9\xc5\x4f\x32\xfb\xa7\x3c\xdb\xa6\xe4\xf2\x67\x99\xfd\x73\x9e\xdd\xa3\xe4\xdf\xff\x35\xd3\xdc\xff\x4a\x0c\xba\xcc\xde\xf5\x29\xf9\xf6\x36\x7b\xf7\x56\x8d\xc2\xbd\x90\xf9\xc9\x57\xa1\xdc\x11\x6e\x40\x49\xf8\x2e\x83\x7b\x57\xc4\x61\x39\x03\x4a\xc6\x2e\xbc\x9c\x67\xcc\xb2\x29\x79\x76\x4a\x8a\x79\x68\xc3\xf7\x3f\x9c\xec\x1f\x81\x91\x39\x4d\x08\x5d\xd1\x95\x78\x03\x56\xf6\xf8\xe7\x37\x07\x27\x25\x0e\x8e\x4c\x4a\x7e\xfd\xbb\x6c\xce\xdf\x73\x0e\x3a\x94\xdc\xfc\x4d\x66\xff\x2d\xe7\xe0\x90\x92\xe9\x5e\x49\x4d\xed\x15\x06\x0c\xe8\xa5\x3d\x39\x50\x06\x94\x5c\x7d\x2e\x41\x7e\xae\x40\x7e\x96\xe3\x78\x40\xc9\xf9\xab\xac\xd5\xaf\x54\xab\x03\x7d\x46\x97\x00\x30\x74\x28\x89\x3e\x94\x75\x63\x05\xd5\x07\x81\x6a\x38\xa4\x64\xf1\x5e\x52\xfd\x9e\xe4\xbc\x73\x28\xa1\x2f\x20\x3f\xd5\xe7\x05\x9e\x42\xe3\x3b\x2f\x1b\xf2\x2d\x4a\x9e\xef\x64\x24\x7d\x15\x66\x78\x27\xef\x29\xf4\x48\xf6\x4e\x8e\xde\x95\x1c\x30\x74\x43\x76\xdf\x9d\x94\x32\x01\xd7\xe4\xdd\xee\x61\x19\xb4\x6b\x53\xa2\x49\x42\xff\x25\x57\x1a\xe0\x42\x1c\x55\x61\x47\xd0\xa7\x47\xef\xf7\x3f\x7c\x2a\x65\xf7\x00\xf8\xf0\xe8\xe4\x78\xef\xa8\x4c\x45\x0f\xfc\xae\xe3\xbd\xa3\x77\x6f\xcb\xf9\x30\x14\x5f\x1d\xed\xef\x96\xb3\x11\xfa\xcd\x87\xe3\xfd\x23\xa0\x1b\x39\xfa\x96\xdd\x8a\x6d\x59\x82\xcb\x82\xb6\x2e\xc8\xcf\xcf\x1f\xdf\xef\x17\xa0\x7e\x8e\x17\xac\x04\x03\x94\x1e\xfe\xf4\xe9\xb0\x00\x73\xe8\x5f\xb0\x4f\xcb\x22\x54\x0f\x30\xbd\xde\x7f\x57\x00\x7a\xcd\xc2\x12\x9e\x3e\x4a\xf1\xeb\x02\xc4\x7e\x34\x2b\x41\xf4\xb0\xa6\xd7\xc2\x07\x2e\xd6\x85\xdf\x8a\x8b\x90\xd0\x29\x25\x8a\x76\x93\x24\xbe\xae\x90\x04\xda\xa5\x82\x0c\xc1\x6a\xd8\x80\x89\x47\x6f\x7e\xfa\x19\x98\xc5\x75\xf2\xa7\xc9\x1e\xa8\xf6\x8f\x7b\x45\x18\x10\x8e\x77\xfb\x07\x19\xc8\x6b\x04\x79\x5d\x00\xb1\x7a\x40\xff\x87\x4f\xef\xdf\x7d\xdc\x2b\x77\xc7\x08\x98\xf3\xf6\x10\xfc\xcc\x59\x06\x3e\x1a\x62\xa6\x55\xce\x74\x30\xd3\x2e\x67\x8e\x30\xb3\x5b\xca\xb4\x4c\x13\x73\x7b\x95\x5c\x0b\x73\xfb\x95\x5c\x1b\x73\x07\x95\xdc\x2e\xe6\x0e\x2b\xb9\x3d\xcc\x75\x2a\xb9\x7d\xcc\x1d\x55\x72\x45\x1b\xb6\xcf\x7e\xc8\x62\x9b\xa2\x5d\xed\x1f\x2c\x2d\x98\xfa\x97\x32\x45\x96\x68\xff\xf3\x4a\xae\xe0\x55\xa7\x9c\x0b\x4a\x6a\xf2\x6a\x17\x3b\xeb\x52\x2f\xcf\xa3\x6a\x13\xa9\x01\xce\x57\xbe\xbc\xce\x61\xb3\xb9\x54\x6d\x32\x05\x36\x69\x72\xb4\xff\xee\xe3\x6e\x01\x3c\x9b\x52\xd5\xe6\x54\x0e\x4e\x21\xc4\x90\x97\xc0\xd9\xbc\xaa\x36\xb1\x02\xf7\x60\xf2\xe5\xcd\x87\x63\x04\x96\x93\x2b\xa3\x32\xbb\xb2\xd1\x30\xbc\x3a\x7a\x73\xd2\xce\xc0\x86\x39\xd8\x28\x03\x1b\x4a\xb0\xed\x0c\xcc\xc9\xc0\xe4\x4c\xeb\x81\xa5\xab\xa2\x66\x59\x7b\x1c\x2d\x5b\x0f\xa8\x6e\x0f\x2d\x7e\xae\x5e\x33\xc5\xc7\x5d\x83\x40\xf5\x3f\xc8\x23\x28\x41\xed\xd5\x40\xc7\x56\x99\x8e\xf2\x6e\xd4\x5f\x0a\x44\xe0\xb6\x04\xb1\x2b\x21\x5b\x8d\x29\xee\xec\xa9\x20\xaa\x2f\x81\x91\x3f\x4d\x7e\x26\x2e\xf9\xd3\xc7\x9f\x89\xab\x97\x81\xb3\x4f\x6e\x29\x56\x0b\xb4\xea\xd5\xc5\xdc\xf2\x1a\xc4\x63\x98\x0f\x5a\xf4\x37\xb7\xf8\xed\x6f\x6c\xf2\x01\x36\xf9\xe0\xa1\x26\x8b\x3b\xa7\x7e\x6b\x8b\xa5\xf9\x79\xb8\xd1\xe5\xdd\xc5\xc5\x46\x93\x3f\x4d\xfa\xff\x78\x88\x5a\x51\xcf\xef\x40\x30\x98\xc2\x87\x07\xc7\x86\x7d\xbe\x95\x0d\xa4\xd5\x7d\x24\x5b\xaa\x0f\x77\xc8\x9f\xfe\x13\x7a\x62\xd2\x7d\xd4\x68\xc9\x6c\xeb\x6f\x64\xe5\xe0\x51\xac\xc4\x0f\x1f\xbf\x9d\x99\xca\xd4\x3f\x4c\x73\x4d\x52\x4b\xea\x66\x33\xc1\xef\x82\xe8\x11\x7d\xef\x96\x37\xfd\x15\x86\x4f\x6d\x73\xd3\xe3\xc6\xd1\x2e\x8e\xa3\xdd\xc7\x74\x5e\xee\xcb\xfc\xf1\x9c\x78\x4c\xd7\xfd\xee\xbc\x78\x85\xbc\x78\xf5\x20\x2f\xc4\x94\xcb\x6b\xfc\x8e\xbd\xa6\x65\xd7\xc1\x92\xed\x89\x23\x99\xe9\x03\xed\x7a\xb0\x76\xb9\xac\x53\xbd\x9e\x3b\xff\xfe\xf1\xf4\x35\x7a\x75\xb4\xab\x4e\xf8\xd2\x4f\x53\x59\xe3\x39\x4b\x70\xe4\x2b\xa6\x1b\x8d\x9f\xee\x8b\x66\x34\xdb\x37\xd7\xb0\xe5\x45\xee\x9e\xb3\xd4\xb1\x62\x62\x11\xb1\xb1\xcd\xce\x0e\x1a\x27\x38\xad\x11\xb9\xdd\x62\xee\x44\xe5\xf6\x8a\xb9\x30\xd1\x17\xd9\xfd\x62\xf6\x99\xca\x1d\x14\x73\x7f\x51\xb9\xc3\x62\xee\x57\x95\xeb\x64\x64\xfd\xa7\x24\x6b\x94\xe5\x8c\xc8\xfd\x43\x7d\x24\x57\xca\x9e\x24\x22\xc0\x69\x51\xae\xca\xe8\x4d\x8e\xca\xc6\x2f\x06\x0f\x91\xa9\x96\x00\x9f\x4c\xa7\x2c\xf8\x3f\x8c\x50\xb1\x46\xd0\xb8\x2d\x66\x0d\x95\x17\x8c\xbf\x96\xa7\xfd\x74\x03\x9e\xb2\x50\x2f\x72\x37\xbc\xd8\xe8\x10\x86\xfe\x32\x65\xb3\xfc\x3a\x8b\x0c\x53\x76\xe6\xa7\x51\xe6\xd7\xd4\x8a\xbb\x80\xb2\x9a\x76\xe7\x9c\x25\x02\x45\x21\xca\x4e\xd2\x99\xca\x6a\x4f\xe2\xfd\x68\x26\x8e\x03\x24\x06\xed\x9b\xeb\xf4\x02\x0e\xa5\xec\xa8\x69\x13\x85\xff\xc3\x08\x5c\x87\x76\x4d\x2c\x9d\x87\x54\x9d\x1c\x51\xff\xcb\xc3\x2a\x17\xd7\x6b\x9a\xe5\xb4\x68\x58\xd4\x15\x9a\x4b\x16\xe9\x59\x30\x1a\xb5\x63\xba\x73\x99\xb0\x39\x25\x84\x12\xb1\xb3\xde\x8b\x62\x2a\x0e\x27\xdf\xb2\x94\xca\x50\x2e\x90\x14\x76\xe8\xdc\x4f\x52\x7c\x5c\x04\x51\xb0\x08\x7e\xf5\xcf\x43\xf1\x5a\x84\x3e\x21\xdb\xb2\xb2\x20\x8a\x98\x88\xdb\xb6\x4d\xa8\x8c\x80\x52\x7e\x29\x02\x15\x3d\x64\xce\xc8\xff\xf6\x28\x36\x7c\x6e\x66\x43\x41\x48\xab\xce\x5b\x7e\x58\xad\xe8\x67\xb7\x5a\x0d\xf2\x24\xc0\x76\xd6\x0f\x7d\xdc\x15\xf4\x83\xdf\x46\x5d\xf2\xbf\x3f\xd8\x42\xb1\x10\xf7\xff\xcf\x8e\x8e\x57\x7c\x7d\x47\xe3\xcb\xc7\x75\xf4\x6f\xd6\xd9\xbf\x41\x15\x8e\x6b\xbc\xbc\xbb\x4b\x2a\xfa\xb1\xa8\x19\x77\xaa\xb6\xbb\xd0\x09\x62\x5b\xeb\x5a\x47\xfc\x31\xba\xa6\x18\xdd\xa5\x4a\x45\x49\x0b\xe9\xc6\xfd\x03\x1a\xf2\x41\x57\x5e\x2c\x17\x3f\x28\x5a\x1b\xe4\xb7\x3a\x43\x91\xa7\x2c\xff\x30\xb3\x57\x5e\x86\x6a\x88\x3d\xd0\x60\xb3\x6a\xa7\x58\x0b\x53\x27\xb5\x07\x8c\xb4\xbf\x12\xcf\x53\x3d\xbb\x43\xfe\x0f\xb2\x86\x4e\x21\xb1\x60\x7b\xac\xad\x0d\xe2\x05\xd5\x1c\xf8\x53\x1e\x27\xba\xf1\x08\xaf\x50\x4a\x6b\x83\x53\x08\x35\x11\x93\x78\x5e\x62\xac\x9b\x22\x14\x42\x5f\x98\x85\xe8\x01\xc1\x06\xf2\xf2\x58\x19\x63\xd2\x06\xe4\x77\x77\x72\x1d\xb0\xc0\x84\xa0\xed\x59\x6e\xb0\xad\xee\x11\xdb\x5c\x73\x90\xc5\xda\x7c\x8a\x27\x2f\x37\xe6\x35\xc5\xe7\x0a\x67\x53\x3f\x99\xed\xc5\xab\xfc\x7e\x36\xb9\x11\x25\x3f\xdf\xd3\x8c\xad\xb3\x88\x67\xc1\x3c\x60\x49\x9a\x1d\x3e\xcc\x37\xd7\x08\xfc\x13\x7e\xe6\xb1\x09\x3f\xbb\xbb\xdb\xb2\x28\xf9\x8b\xdc\xc7\x3d\xe1\x67\xd2\x50\x94\xaa\xdf\xde\xae\xc5\x02\xd9\x58\xab\x37\x21\x28\x5e\xa0\x6c\x79\x12\x12\x8a\x47\x03\xa8\x38\x12\x70\xb6\xa6\x74\x61\x5f\xef\xba\xf1\x58\x22\xea\x05\x2f\x3f\xef\xb4\x2d\xb7\x02\xf2\xb2\x0a\x62\xb9\xe6\x3a\xe2\x0b\xa1\xbe\x7c\x3e\xbd\x5c\x77\x7f\xa9\xe4\xfb\x56\xde\x05\x79\x48\x67\x19\x85\xd2\x1c\x6f\xdc\xbf\xbc\xa1\x6f\x02\x75\x67\x56\x80\x9b\x4c\x5b\x2d\x36\x09\xce\xc6\x49\xab\xa5\xf3\xbb\x3b\xf2\x17\x22\xc6\xdb\x24\x38\x33\x44\x2f\x4d\x82\x33\x71\x96\x2c\xc1\xd3\x3b\xc5\x3e\xa2\xc9\x23\x1b\x2a\x37\x83\xae\x5d\x19\x12\xdc\xd0\x19\x85\x1a\x1e\x8d\xb2\x49\xac\x9b\xb1\x9a\x88\xf5\xa3\x8c\x90\x55\x1f\x06\x89\xbf\xf4\x31\xf8\x84\xb7\x85\xae\x4a\x9e\xa1\xf6\x90\x5e\xb1\x24\x65\x5f\x0a\x70\x5b\xb8\xa4\x5b\x7b\x21\xa3\x14\x24\xc1\x45\x10\x61\xcc\x00\x09\x98\xe7\xc8\x63\xec\x2b\x1e\xef\xf9\x49\x12\xf8\x17\xec\x08\x69\x56\x90\xf5\x37\xd9\xfd\xfe\x69\x9c\x7c\x16\xf1\x4b\x14\x70\x29\xb3\x08\xf7\x2a\x0c\xa2\x6f\x65\x28\xcc\xa2\xea\x2c\x32\x4b\x78\x91\xbe\x3c\xa7\xd4\xe2\xcf\xc1\x8c\xc5\x95\xc6\x62\x9e\x0c\x23\x90\xf8\xd3\x6f\x8c\xb3\x99\x8c\x48\x20\xe0\xca\xb9\x8f\xde\xe9\x2b\xf6\xb3\xd7\x2f\x9c\xc6\xc8\x90\x1e\x91\x51\x03\x96\x71\x9a\xdd\x2c\x79\x99\x1d\xe4\x17\x65\x8b\x47\xe6\xf1\x26\xfb\x06\xc9\x28\x84\xc6\xc1\x42\x1a\x42\x6a\x3e\x57\x61\x49\x96\x71\x2a\xee\x2d\x15\xa7\x35\x6a\x98\xf3\x6d\xea\x0d\x51\xf5\x32\x12\xbd\x02\xed\x72\xbb\x6e\x23\xb6\xca\x86\xd8\x3c\x8c\xa3\x6c\x36\xcb\x5b\xcd\xef\xee\xf2\x86\xb3\xa2\xf5\x6a\xc4\x5c\xdd\xfe\x5f\xa4\x56\xdc\x73\x9f\x9d\x99\x43\x2e\x8e\x4b\x9b\xcf\x33\x84\xc1\x8c\x45\x5c\xea\x12\xa5\x55\xde\xb2\xdb\xd4\x60\x93\x07\x61\x26\xfc\xec\xcc\x53\x61\xe8\x55\x3b\x5e\xd4\x39\x33\x56\x6d\xfe\x16\x2c\x45\xe4\xf4\xd2\x29\x51\x6c\xc9\x49\xfc\x8d\xc9\x29\x34\x09\x22\xce\x2e\xf0\x3a\xe0\x04\x23\x0a\x1b\x99\x9e\xf4\x92\x0e\x5e\x15\x9e\x5d\x21\x48\x72\xda\x72\x70\x69\xb8\x25\x6c\x87\xc7\x9f\x96\xcb\xe2\x89\xf5\xe0\x51\x1c\x68\xb5\x1e\x04\xe9\x5c\xfa\xe9\xc7\xeb\xe8\x30\x89\x97\x2c\xe1\xb7\x7a\x60\xa8\xfd\xba\x0f\xf3\x2e\xc0\x8d\xf5\x6c\x92\x9e\xb5\x5a\xa8\x96\x21\x29\xe3\x3b\x21\x5b\xe4\x29\x85\x7c\x07\xba\x2a\x0e\xc2\x2b\xdb\x66\x8c\xa1\x94\xb7\x65\xde\xe7\x91\xfc\xd7\xb7\x4e\x32\x71\x5d\xcb\xd4\xeb\x86\x56\x35\xd0\xa5\xa2\xe2\x7d\x63\xb7\x65\x82\xb2\xbe\xda\x58\xc9\x24\x38\xbb\xcf\x88\x26\xe9\xed\xe2\x3c\x0e\xc9\x96\xea\xc1\x7a\x75\xd9\x61\x0d\x29\x1c\x5a\x9c\x68\x85\xbe\x17\x82\xf3\x17\xc4\x20\x08\x69\xa2\x58\xdd\xeb\xae\x89\xfa\x4a\x74\xab\xe1\x11\x3d\x6e\x78\x60\x3f\xfb\x8f\xe8\xe7\xe8\x6c\xcc\x26\xfe\xd9\xdd\x9d\x0e\x7f\x3c\xf2\x17\x62\xdc\x67\xeb\xa2\x85\x11\x41\x49\x5b\xda\xe6\xce\xf4\xd2\x10\x07\x72\x83\xb9\x2e\xc2\xed\xe6\x8e\x42\x13\x67\x78\xe2\x17\x4f\xa7\xf9\x30\x23\xd2\xb8\x9f\x5c\x30\x0e\xdd\xa3\x82\x80\xf9\xb3\x2b\x3f\x9a\x32\xdd\xc2\x75\x59\x40\xec\x6d\x44\xfc\x3e\x48\xd3\x20\xba\x28\x63\x52\x7e\xd4\x46\x9d\x24\xd4\x7e\x5d\xd5\x57\xc6\x3f\x5b\x33\xfe\xb3\x93\x48\x4c\x48\x43\xe6\xbb\x89\xb1\x5f\x1b\xf6\x12\x4c\x44\x98\x40\x98\xb5\x7d\x28\x4e\x96\xad\x1b\x01\xf2\x6d\x75\x00\x48\xa4\x85\x29\xc8\xfa\xb2\x13\x09\x7c\x36\xde\x38\x64\x0a\x07\x10\x15\xf6\xfb\x0d\x42\x2f\x38\x52\x95\xf9\xe6\x3e\x60\xec\xdb\xda\x10\xa7\xcf\xf2\x58\x32\x77\x77\xcf\xc8\xb3\xec\x69\x2d\xaa\x37\x59\x7d\xeb\xcc\xe1\xf4\x52\xdd\xbd\x3d\xf1\xdb\xbf\x7e\x3d\x7b\x1e\xac\x27\xec\x8d\x18\xbc\x8f\x40\x65\xb6\x47\x67\xcf\x37\x58\x3e\x94\x97\x52\xfc\x46\x1c\xff\x59\x83\x32\x23\x28\xe2\x8d\x4b\x05\x43\x91\xd5\xae\x6a\xf4\xb8\x58\x79\x3e\x3c\x28\xcb\x06\x68\x99\x05\xd9\x2c\x54\x62\x2d\x74\x46\x11\x33\x12\x58\x2c\x75\x3f\x2e\xe2\x93\x17\xa6\x57\x70\x49\xa1\xaf\xe1\x51\xd0\x65\x1c\x92\x91\x35\x82\xa4\xe5\xac\x53\xa3\xe0\xef\x1b\xe5\x32\x53\x8c\x1c\xd8\xba\x4e\xb2\xca\xcd\xaa\x30\x7f\xab\x99\x5f\x9b\x34\x79\x51\x7d\x97\x1c\x2c\xa8\x48\x1d\xff\x43\xa9\x32\xdb\xa3\xaf\x67\xdb\xcf\x2f\xd6\x89\x56\xa1\x89\x0d\x52\x6f\xe6\x62\xa1\x62\x59\x34\xfa\x29\x6d\xab\xd5\x22\x37\xa4\xec\xdc\x49\x3f\x2c\xf3\x1d\x2d\x6a\x19\x3b\xaa\x42\xbd\x81\x5e\xf3\x06\x84\xd7\x6f\xcf\x05\xc1\x86\xbb\x09\xf8\x74\xb6\xfd\xfc\xc2\xd8\xd0\xaa\xfa\x50\x16\x72\x0d\xfe\xb2\x6a\x14\x48\xc6\x33\xf2\x4c\x44\xdb\x79\x86\xd1\x76\xea\x6c\x17\x88\x34\xd5\xd3\x75\xa3\x50\x38\x0e\x08\x4e\xf4\x11\xbb\xd8\xbf\x59\xea\x64\x72\x7a\x7a\x7a\x4a\xb6\x31\x34\x36\x25\x17\xaa\xdc\x5a\x4f\x0f\x4f\x97\x86\x7e\xca\xdf\x44\x33\x76\xe3\x29\x60\xba\x95\x60\x80\x7a\xbd\x50\xa8\xd9\xad\x90\x0b\x23\x05\xb5\x17\x06\x9c\x25\x18\x2a\x02\x34\xfc\x76\x43\xf7\xe0\xe9\x49\x55\x53\xa1\xfa\xb6\xa5\x82\xbc\xc9\x66\x16\xdf\xa9\x02\x00\x24\xd8\x77\x77\x47\x4e\x4f\x0b\x56\x18\x74\x0a\xf2\xb3\xfa\x22\x9b\xca\x4f\x2f\x3d\x8f\x1b\x6b\xd5\x88\x08\x2e\xb4\xad\xca\xd1\x2a\xcb\x8b\x47\x4c\xf3\x62\xdb\x05\xbb\x28\x4e\xbd\xeb\x4d\xd6\x61\x23\xab\xd6\x4b\x94\x8c\xe9\x56\x9f\x2e\x3c\x23\xcf\xdc\x67\xe4\x19\x25\xcf\x88\x4b\x9e\x11\x0a\x4d\x76\xe1\x87\xfa\x2e\xf9\x5f\x09\x3d\x77\x71\x1f\x39\x73\xc9\x9f\x08\x9d\xbb\xe4\x74\x4e\x68\xe4\x92\xd3\x88\xd0\xc4\xc5\xed\xbc\xdc\xc5\xdd\xe4\x57\x2e\x39\xbd\x22\xf4\xc6\xad\xd5\xb1\x7e\x78\x9f\x7d\xb7\xef\x61\xb8\x8c\x37\x7c\x61\xce\x06\x12\xa3\xd6\x00\x06\xcd\xea\x69\x35\xf4\x9e\x5c\x03\x2a\xdd\x2d\xd5\xd5\x6a\x41\xa5\xea\x1f\x28\xa9\xd8\xe4\x26\x8b\x50\x07\x59\x54\xf1\xe9\xa5\x70\x81\xb8\xc7\x26\x32\xe3\x6c\x9d\x35\x6a\x38\x2b\xc9\x5b\x2d\x9d\x7b\x3c\x8f\x3e\x62\x18\x94\xaf\xef\xf2\xa6\x95\x14\x11\xb9\xeb\x22\x8c\xcf\xfd\xb0\x81\x6e\xd0\xa6\x49\xe4\x87\x62\xfe\xec\x6a\xc7\x4b\x3f\xd2\x96\x02\x4f\xaa\x2d\x56\x29\xd7\xce\x99\x26\x8a\x13\xf0\xfa\xeb\x43\x5e\x35\xb0\x3e\xee\xc5\x47\xc7\xbb\x3b\x56\x1c\x8d\x13\xf3\x4c\x6a\x91\xad\x0c\xc5\x26\xf3\x81\x9e\x82\x36\x8f\x13\x31\x99\x1f\x57\xa7\xe8\x45\xe4\x56\x75\xe4\x51\xa8\xae\x91\x61\x12\xa6\xbe\x8a\x04\xca\x3f\x0b\xd2\x7f\xb9\xc9\x46\xac\x9b\xb2\x67\xfe\x6f\xb5\x23\x9e\x9f\xa6\x32\x34\x50\x26\x4a\xf2\x38\xf7\xf3\xd3\x74\xfb\xf9\xc5\x62\xcc\xd7\xf1\x37\x29\x12\x82\x2e\x82\x60\x77\x62\xa8\xe8\x4f\xb8\xb6\x90\x17\x37\x1e\xd9\x02\xca\x5a\xad\xb6\x95\x19\xce\x4e\x00\x85\x3f\xce\xf5\x46\xad\x9d\x75\x4a\x1c\x31\x2d\x9e\x43\x87\x6c\x13\xaa\xcd\xe3\x55\x34\x2b\xca\xfc\x7d\x81\x2f\x05\xe7\xd9\xfb\xde\x9c\x5f\x9a\x49\x79\xdf\xf1\x80\x80\xab\x96\x85\xf7\x4e\x8e\xde\xb9\x72\x6d\x78\xef\xe3\x87\x93\xa3\x8f\xd9\xe3\xee\xbb\x13\x11\x49\x86\xbe\xdf\x3f\xd9\x95\x61\x64\xd6\x54\xa1\x26\xa4\xde\xf7\xfd\xe3\xbd\xdd\xc3\x7d\xd7\x1e\xd2\xfd\xe3\x3d\xf8\x73\x60\xb9\x96\x65\xd3\x03\xdb\xb5\xac\x2e\x3d\xe8\xba\x96\xd5\xa3\x07\x3d\xd7\xb2\xfa\xf4\xa0\xef\x5a\xd6\x80\x1e\x0c\x5c\xcb\x1a\xd2\x83\xa1\x6b\x59\x0e\x3d\x70\x5c\xcb\x1a\xd1\x83\x91\x6b\xd9\x26\x3d\xb0\x4c\xd7\xb2\x2d\x7a\x60\x59\xae\x65\xdb\xf4\xc0\xb2\x5d\xcb\xee\xd2\x8f\x1f\xf6\xdd\xde\x88\x9e\x7c\xf9\xe8\xf6\x4d\x7a\xf2\xf3\xd1\xfe\xbe\xdb\xb7\xe8\xc1\xc7\x4f\x47\x6e\xdf\xa6\x07\x6f\x3e\xef\xbb\xfd\x2e\x3d\x7e\xf3\x37\xb7\xdf\xa3\xc7\xfb\x9f\xf7\x3f\xb8\xfd\x3e\xdd\x7f\xf3\xd3\xcf\x27\x6e\x7f\x40\x3f\xbc\xf9\xb0\xef\xf6\x87\xf4\xef\xfb\x47\x1f\xdd\x9e\x43\x5f\xed\xee\xbd\x3d\x3e\xdc\xdd\xdb\x77\x1d\xfa\xea\xed\xf1\x21\xfc\x39\x76\x1d\x7a\xb2\xfb\xca\x1d\xd1\xbf\xba\x8e\x45\xbf\xb8\xce\x90\xee\xbb\x83\x11\x3d\x72\x1d\x9b\x9e\xb8\x4e\x8f\xfe\x9b\xeb\x8c\xe8\x27\xd7\xe9\xd3\x37\xee\xb0\x4b\x3f\xba\xc3\x11\x3d\x74\x1d\x93\xee\xed\x1e\x1e\x7f\x7d\xf7\x71\xef\xad\x6b\x8b\x87\x62\x1a\xfe\xee\xba\x83\x3e\x3d\x76\x9d\x2e\x7d\xed\x0e\x1c\x7a\xe0\x0e\x4d\xfa\x93\x3b\xb4\xe8\xcf\xee\xd0\xa6\xff\xea\x0e\x7b\xf4\xad\x3b\xec\xd3\x77\xee\x70\x40\xf1\xbc\x87\x6b\x75\x21\x01\x7f\x8e\xf6\x4f\x3e\x1d\x7d\x90\x29\xf8\xf3\x77\x77\x64\xd2\xbf\xb9\x8e\x43\xf7\xdc\xc1\x90\x7e\x76\x9d\x01\x7d\xe5\x0e\x06\xf4\x83\x3b\x74\xe8\x7b\x77\x38\xa4\xa2\x75\x5d\x9b\x1e\x1f\xc2\xef\xe1\xd1\x9b\x0f\x27\x5f\x8f\xf7\x8e\xf6\xf7\x3f\xb8\x3d\x78\x3e\x39\xde\x83\xc4\xf1\xde\xd1\xc7\x77\xef\x04\xed\x56\xaf\x4f\xf1\x9c\x01\xa6\xf0\x68\x81\x6b\x8d\xe8\xab\x23\xfc\x23\xce\x14\xb8\xbd\x3e\xa4\xe0\xcf\xcf\x1f\xdf\xef\xbb\xdd\x01\x3d\xdc\xfd\x69\xff\xeb\xa7\x43\xb7\xdb\xa5\x87\x3f\x89\xbf\xaf\xf7\xdf\xed\x9f\xec\xbb\xbd\x01\xa4\xe0\xcf\xfe\x87\xd7\x6e\xb7\x2f\x40\x5f\x7f\xfc\xf2\xc1\xed\xf6\xa8\xd8\xee\x2f\x53\xf8\x17\x0a\x3b\x14\x73\x7b\x26\xc5\x6d\xf9\x6e\x77\x44\xdf\xed\x1f\x9c\xb8\xdd\x21\x95\xfb\xeb\x5d\xab\xd7\xa3\x6f\x0f\x4d\x77\x34\xa0\x6f\x0f\x2d\x77\x34\xa4\x6f\x0f\x6d\x77\xe4\xd0\xb7\x87\x5d\x77\x34\xa2\x6f\x0f\x7b\xae\x65\x9a\xf4\xed\x61\xdf\xb5\x4c\x8b\xbe\x3d\x1c\xb8\x96\x69\xd3\xb7\x87\x43\xd7\x32\xbb\xf4\xed\xa1\xe3\x5a\x26\xe0\x18\xb9\x96\xd9\xa7\x6f\x0f\xbf\x1e\xbe\xfb\x74\xec\x5a\x26\x60\xfa\xba\xfb\xfa\xb5\x4a\xbe\x7f\xf3\x01\xf3\x01\xe7\xd7\xe3\x4f\xaf\x4e\x8e\x76\xf7\x4e\xb2\xe7\x93\xdd\x23\xd7\x32\x07\x08\xf8\xe9\xdd\xc9\x9b\xc3\x77\xff\xa6\x9e\x5f\xbf\xf9\xfc\xe6\xf5\xbe\x6b\x59\x16\x3e\xed\xef\xbd\x79\xbf\xfb\xce\xb5\x2c\x13\x2b\xdb\x3f\x7a\xf3\xf1\x35\x3e\x7d\xd8\xfd\xfc\xe6\xa7\xdd\x93\xfd\xaf\x20\x91\xae\x05\x5d\xa8\x72\x0e\x3e\x1e\x7d\xd9\x3d\x7a\xed\x5a\x83\x21\x15\x1b\xca\x5d\x0b\x44\xe7\xd3\xbb\x77\xaa\x23\x2d\xa7\x4b\xbf\xbc\xf9\xf0\xfa\xe3\x97\xaf\x1f\x3f\xef\x1f\x7d\x7e\xb3\xff\xc5\xb5\x1c\x9b\xbe\x42\xd6\x7d\xd8\x3f\x3e\x86\x7e\xb1\xad\x41\x31\x07\xd9\x6b\x5b\xc3\x35\x83\x5b\x4e\xca\xb3\xa0\xaf\x1b\x8f\x49\xab\xc0\xaf\x9b\x0f\x4b\x6f\xf8\xfa\x8a\xe7\xa5\x8b\x3b\x6e\xdd\xc6\x2b\xa4\x9e\xb0\x27\xf7\x9e\x96\x77\x9d\x3e\x84\xf0\x11\xdb\x1b\x15\xca\x93\xf8\x24\xde\x48\xe0\xc3\x5b\x9c\x73\x54\xaf\x62\xce\xe3\xc5\x6f\xc5\x26\x3e\xec\xcb\xad\x13\xd3\x6f\xcd\xe8\x9e\xb2\xe3\xb1\x76\x21\x0b\x2d\x5f\xf8\x07\x42\x93\xb0\x39\x4b\x58\x34\x65\xef\xfd\xc8\x2f\xcd\x1f\xc1\x36\xd7\xdf\x17\x22\xbe\x55\xef\x95\xa3\xe4\xb9\xb8\xd4\x6a\x99\xc4\xf3\x20\x64\xe9\x73\x74\x4c\x84\x25\x6f\xa8\x4a\x15\xcf\x5f\xa4\xe3\x8f\xe7\xff\xce\xa6\xf8\xf1\x38\xd5\xb9\x51\xff\xbc\xa7\xbc\x11\x5c\xef\x63\x79\x49\x9d\x51\x3e\x61\x78\xb5\x6b\xed\x3b\x6b\x53\x1b\x38\xbb\x88\x93\x80\x29\xd3\xbb\x01\x22\x63\xb0\x47\x54\x8a\x3c\x54\x64\x77\xb9\x64\x7e\x82\x7e\x14\xc9\xd3\x0f\x16\xdb\x8b\x97\xb7\xe2\x53\x13\xc9\x92\x0f\x16\x3a\x06\x27\x23\xf5\x88\xf8\xfb\x30\x38\xca\x17\x86\xbc\xce\x92\x0f\x16\xca\xc3\x64\xab\xd4\x83\x45\xde\x07\xe9\x94\x85\xa1\x1f\xb1\x78\x95\x7a\xa4\xf4\xb8\xb1\xf0\xed\xeb\x6c\x29\x37\xf5\x26\xdf\x83\x99\xfb\x68\x66\x53\xce\x6e\xb8\x5b\xe0\xb8\xa6\xcf\xe3\x88\xa7\x54\x9b\xc6\x61\x9c\xa4\x54\x13\xd7\xad\x19\xe4\x9e\x3e\x02\x71\xd6\x07\x12\x2f\x3c\x6b\x2d\x4d\x74\xcb\xa3\x30\x28\x6e\x49\x04\x19\xf3\x1e\x55\x58\x49\x9b\x2c\x9c\x09\xdf\xa3\x0a\x67\x7d\x2b\x4b\xe7\x7d\xfd\xb8\xe2\x28\x4c\xaa\xac\x90\xac\x47\x15\x2c\xf5\xb3\x2c\x0f\x79\x1d\x72\x7f\xd6\xd8\xeb\x75\x1d\xe0\x7d\x07\xdf\xb5\x7d\x91\xb4\x17\xf1\x8c\x11\x77\xf2\x58\x3e\x61\x24\xb7\x09\xfe\xca\x50\xf6\x79\x10\x51\x9a\x07\xf6\xa4\x85\x80\xa1\x67\x94\x88\xad\x51\x9a\x1f\x69\xbb\x21\xff\x29\xd1\x66\x8c\x33\x19\x20\xc5\x9f\x7e\xfb\xe5\xcb\x25\x5b\x25\x41\xca\x83\x69\xe7\x34\x3a\x8d\x9e\x01\xfa\x67\xae\xb6\xbb\xe2\xb1\x80\xd4\xce\xfd\x14\x3d\x7f\x2d\xf2\xaf\x82\x0b\x9f\xc7\x49\x27\x94\x17\xe0\xb8\xa7\x91\x86\xff\x9e\xb1\xa8\xbd\x4a\x9f\x69\xde\x4b\xed\x19\x90\xf6\x8c\x6a\xb8\xf6\x01\xcf\x19\x35\xcf\x00\x3d\xbc\x74\xb5\xd7\x41\xea\x9f\x87\x4c\xf3\xa3\x5b\x49\x56\xc2\x42\x5c\xe8\x58\xac\xa2\x0b\x98\xb7\x9f\x46\xcf\x54\xe3\x80\x9c\x34\x5d\x2d\x98\xb6\xc7\x93\x70\x7b\x37\xe4\xda\x82\xf9\x51\x2a\x4a\x02\xa4\x6a\x7b\x0e\x09\x39\x5a\x03\x64\x4e\x4c\x06\x8a\x59\x0d\xb0\xc0\x3c\xe8\xa8\x2c\xd0\x4f\x3b\x48\xdb\x30\xd5\xc8\x73\x9e\xd0\x79\x5b\x16\x25\xe7\x71\x1c\x12\x4a\xde\xcc\xb5\x94\x71\xaa\xad\xa2\x59\xcc\x52\x8d\x5f\x32\x4d\x44\xdd\xd5\x3e\x1e\x43\xed\xed\xec\x38\x4d\xfb\xe5\xeb\xfd\x77\x5a\xc2\x16\xfe\x92\x6a\x69\xac\xf1\x4b\x9f\x6b\x25\x9a\x34\x98\xb7\xb1\x99\x16\xa4\xe5\xfc\x8e\xa2\x5e\xd2\xfc\x63\x94\x1e\x33\xae\x5d\x5f\x32\x7e\xc9\x12\x24\xd3\x0f\xb9\xfa\xba\x91\x6a\x7e\xaa\xf9\x1a\xe0\xc6\xac\x38\x11\x19\x33\x90\xa5\x68\xca\x15\x6c\x46\x48\xca\xa2\x59\xda\xbe\xbe\xf4\xf9\x13\x68\xc9\xae\x1c\x98\x64\x29\x19\xb5\x92\x96\x22\xaf\x9e\x51\xb2\x27\x62\x5f\xa5\xda\x25\x4e\x5e\x73\x62\x83\x54\x13\xf1\xe6\x67\x28\xe1\x9a\x5c\xab\xe9\x88\x7f\xda\x31\x8b\x66\x30\x3a\xf6\x8f\xf7\xb4\x65\xc2\xe6\xc1\x4d\x07\x80\xb0\x96\x8e\x02\xda\x9d\xcd\x34\xcb\x76\x34\x1e\x23\xea\x55\x84\x93\x54\x36\xd3\xb2\xa0\xfd\xd0\xfa\x20\xd2\x6e\x70\x8f\x04\x20\x28\x90\xd7\xe9\x68\x5f\xfc\x80\x63\x5c\x49\x28\xae\x6e\xd8\xd0\x30\xd6\xaa\xe6\x47\x33\x2d\x65\x4c\x03\xde\xe0\x7b\x59\x54\x53\xa3\x2b\xff\x97\xfa\xb7\x69\x47\xd3\xf4\x93\xcb\x20\xd5\xae\xe3\xe8\x19\xd7\xae\xe3\xe4\x9b\x76\xcd\xc2\x10\x86\xe8\x32\xf4\xf9\x3c\x4e\x16\x29\x74\x5b\xc2\x10\x5b\x1d\x8b\xc2\xbf\x64\x89\x00\xc6\xef\x8b\xa0\xa6\xe4\x77\x2b\xa4\x34\x8d\x17\x82\x89\x2a\x70\x5e\xda\x31\xb0\x33\x57\xb3\xe0\x3c\x64\xed\x73\x16\x86\xed\x14\x74\xe7\xc3\x1d\x2a\xf5\x2d\xb8\x67\x6d\x75\x5b\xa8\x2b\x9c\x29\x40\x17\x3f\x07\x64\x84\x92\x15\xee\x04\xfb\x74\xf4\x4e\x8b\xe7\x48\xbc\xda\x46\xa7\x01\x80\x86\xb5\x75\x34\x6d\x7f\xb1\xe4\xb7\x6a\x4d\x14\x68\x8d\x62\x4d\x92\x85\x80\x28\x74\xf2\x86\xd0\x76\x54\xb8\xfb\x13\x89\x7e\x34\xb9\xf9\x48\x78\xf6\x66\xae\xf1\x64\xc5\x68\x99\xa0\x54\xc4\x97\x63\x5a\x7e\xa3\x97\x76\x1d\x84\xa1\x26\x2e\x87\xd0\x7c\xed\x0b\x3b\x2f\x5d\x3e\xda\xd1\x2e\x39\x5f\xa6\xee\xf3\xe7\xd7\xd7\xd7\x9d\xeb\x6e\x27\x4e\x2e\x9e\x9f\x1c\x3d\x2f\x12\x99\x3e\x07\x39\x7d\x2d\xee\xb5\x81\x16\x96\x5e\x6a\x09\xfb\x8f\x55\x90\xb0\x14\xba\x6f\x11\xa4\x29\xf6\x57\x12\x2f\x84\x64\xc2\x14\x49\xfb\x72\xc9\xc4\x4a\x99\x26\xee\x66\x82\x31\x90\x32\x8e\xe2\x8b\xad\x40\xd6\x0b\x52\x7d\xce\xd9\x62\x89\xef\xfc\xf4\x5b\x86\x04\xd9\x5a\xa8\x21\x98\x6b\x11\x9b\xb2\x34\xf5\x93\xdb\x0e\x34\x29\x13\xd3\x54\x5b\xf8\xb7\xe2\x56\xaa\x4b\xb9\x6e\x54\x2c\x08\xe4\xb2\x94\x03\x82\x80\x6b\xb3\x60\x86\xa0\x62\x43\x15\xf0\x08\x49\xf7\x45\x9d\x42\xfa\x70\x98\x4a\x8d\xc8\x6e\x38\x8b\x52\x6c\xf7\x75\xc0\x2f\x91\x3c\x52\xe2\x07\x29\x56\x76\xe9\x5f\xb1\xe2\x33\x8f\x35\x79\x3f\x50\x99\x89\x9d\x67\x67\x94\xe4\x9d\xd6\x46\xff\xe9\x61\xb9\x28\xb8\x62\x24\xb9\x38\xd7\xad\x01\xd5\xc4\x7f\x06\x18\x63\x44\x42\xc9\x49\x59\x20\x30\x5b\x8c\x7d\x76\xc3\x45\x33\xa2\x58\x8b\x51\xab\x8a\x97\xbe\xba\x7c\x28\x45\xc9\x2d\x10\x86\x0e\xdd\xd3\x08\x23\x34\xfb\xd8\x48\xf6\x8e\x8f\x35\xf1\xc5\x5c\x8e\xa7\x02\x5d\x88\x7a\xcd\x60\x12\xef\xa0\x1f\x0e\xe2\x44\x63\x37\xfe\x62\x19\x0a\x6b\xbf\x4a\x42\x5d\x89\xf0\x45\x1c\x77\x2e\xc2\xe7\x7e\xc4\x66\x27\x6f\x0d\x78\x1b\x06\x11\xf3\x93\xf6\x45\xe2\xcf\x02\x16\x71\x9d\xc7\x4b\xed\x1c\x27\x8f\x54\x3b\x0f\x41\xf2\x12\x36\x33\x2a\x6d\x4c\x83\x5f\xff\xc8\x26\x6a\x80\xbf\xa3\x69\x32\xa6\x75\x0a\x42\x01\x6e\x48\x95\xd5\xea\x82\xae\x3f\x92\x14\x55\x47\x23\x6b\x2d\xf3\xcf\xf0\x1f\x24\xa7\x2c\xe2\x2c\x51\x04\x0a\x5f\x40\x18\xd0\xdf\xee\x7b\x48\x3d\x26\xc9\x13\x5e\x44\x7a\x19\xaf\x42\xb0\x42\xd1\x4c\x7b\x75\xac\xe9\xcf\x4e\x4f\x6f\x4c\xe7\x19\xd5\xfc\x6f\xbe\xf6\xcb\xcf\x46\x47\xd3\x3e\x82\xbc\x5e\x07\x29\xab\x14\x05\x13\x5b\x2c\x0e\x45\x87\xf3\x67\xc8\xdd\xcc\x3a\xb6\x17\xfe\xb2\x1d\x5f\xb1\x24\x09\x66\x2c\x7d\x12\x87\x85\xbf\x8b\x6c\x25\xf4\x19\x1a\x3e\xd0\x66\x4b\x36\x0d\xe6\x01\x9b\xa1\xd7\x11\x69\xb1\x98\x57\x6b\x6f\x38\xba\x42\x5a\x8a\x1f\x46\x34\x3f\x49\xfc\x5b\x2a\x8d\x21\xf3\xa7\x97\xda\x52\x7e\xd5\x01\x30\x68\x48\x6e\xc0\x41\x41\x4e\xe3\x19\x43\x7b\x0c\xaf\xe4\x56\x93\x02\x7e\xe1\x80\xd5\x2a\xd0\x02\x9e\xb2\x70\xde\xd1\xde\x44\x02\xa2\x5c\x7b\x63\xbd\x09\x9b\xb2\xe0\xaa\xec\x41\x54\xeb\x85\x07\xa9\xbe\x8a\x80\x8d\xc2\xf3\x9d\x98\xc4\xfd\x4e\xb6\xf1\x93\xde\xca\xb6\x46\x36\xa1\x84\x66\x4f\x26\xa1\xa4\x9d\x3d\x59\x84\x92\x4e\xf6\xd4\x25\x54\x83\xd2\xf8\xd8\x77\x1c\x72\x7f\x0f\xea\x11\x4f\xbe\xb4\xe3\xa8\xcd\x6e\x82\x47\xf8\x6c\xe5\x99\xd1\x96\x99\x89\xdc\x17\xe9\x40\xa2\x66\x41\x3b\x83\x98\xb1\x75\xe2\x10\x0c\xf4\x8f\xb0\xa3\x53\x71\xbf\xb9\x06\x55\x0a\x5d\x28\x36\xbf\xb6\xcf\xc3\x20\xfa\xf6\x24\xb9\x29\x08\x7d\x9d\x02\x44\x27\x6a\x44\xfc\xda\xf9\xad\x72\x81\x6a\xb5\xb6\xa7\xb7\xd3\xf0\x69\x0a\x6a\x62\xb1\x2e\xed\x9b\xe6\x59\x26\xb8\x68\x14\x54\x5d\x58\x79\x02\xc6\x2f\x88\xb4\x45\x10\x86\x41\xca\xa6\x71\x34\x4b\xb1\x67\x77\x35\x7e\x1d\x6b\x4c\xdc\x59\xa4\x64\x08\x48\x9d\x07\x49\xca\x41\xb5\xe0\x55\x3d\xe8\xd7\xc6\xd7\x5a\x18\x47\x17\xc5\x96\xc8\xb1\x78\xce\xb4\x38\xa2\x9a\x40\x5c\x82\x0d\x78\x11\x66\x3e\x2f\x36\xf8\xc7\xec\xa0\xaf\xdb\xfd\x3e\xd5\x4c\xf1\xff\x4e\xbf\x6a\x0c\x85\x91\x93\x3a\x51\x5e\xe1\x28\xc9\x15\x95\xc3\xfb\xf6\xd2\x0f\x19\xe7\xec\xf7\x50\x13\xe4\xa3\xc4\x21\x17\x46\x94\x9b\xa6\xbc\x5c\x59\x15\xb2\x1b\x35\xca\xd4\x8f\x80\x1b\x55\xad\x22\x46\x37\x18\xe8\x5c\xc3\x68\x30\x7d\x6b\xd4\x3e\xc0\x59\xd0\x0d\x38\xad\x9c\xa1\x98\xb1\xc7\xaa\x22\x5f\x8b\x56\x0b\x96\x04\x53\x9c\xd0\xdd\x68\x41\x24\xa7\x1a\x82\x77\x45\x82\x3f\x43\x1b\xd7\x90\x1c\x2e\xe2\x94\xe3\xac\x7a\x9a\xa6\xb2\xac\xd8\x25\xab\x69\x42\x75\x46\xd3\x70\x35\x63\xa9\xf6\x4f\x47\x3f\xbd\xa2\xda\x3f\x1d\x1d\xfd\xf4\xd3\xab\x57\x54\x03\x6f\xa6\xd3\xe9\x18\x98\xf2\x65\xd2\xc7\x99\xd1\xad\xc4\x13\xf9\x0b\x9c\xad\xc2\x14\x34\x81\x99\x41\x1a\x6b\x4b\x3f\xe1\xaa\x63\x53\x1e\x4f\xbf\x69\x7f\xb3\x2c\x40\xd1\xe1\x37\x5c\x9b\x07\xa1\x20\xf9\xdf\xe2\x15\xd2\xbb\x4a\x99\x26\x56\x18\x80\x3b\x82\xf4\x5b\x81\xb2\xd8\x3d\x42\x01\xe6\x42\x0a\x83\xf6\x5c\xdc\x81\x7a\xc1\x66\x59\x53\x52\xc0\x37\x5f\x85\x62\xb6\xf2\x2d\x58\x2e\xc1\x83\xf1\xb5\x74\xe1\x87\x21\xf0\xf3\x9c\xa1\xd4\x05\xd1\x2c\x98\xb2\x34\xd7\x32\x99\x82\x6d\xec\x6f\x29\x92\xcb\x5b\xd0\x7d\x29\xae\x9e\x3c\x2c\x89\xf9\x5a\x5a\x41\xf3\xed\xae\x78\xbc\xf0\x79\x30\xf5\xc3\x10\xb8\xb8\xbc\xd5\x16\x31\xf0\x20\x55\xc7\xd5\xd4\x84\x72\xaa\x4e\xbe\x62\xe5\xab\x94\xb5\x25\x2f\xda\x42\x43\xb6\xa1\xf0\x93\xa8\xa8\x6b\x3f\x1e\x23\xff\x8b\x8c\x96\xea\x17\x29\x3b\x67\x97\xfe\x55\x10\xa3\xd3\x81\x2b\xf5\xed\x8c\xca\x36\x6e\x39\x7d\x3a\x0d\x75\x1b\x80\xca\x9f\xf9\x62\x1a\x9c\x73\x41\x6c\x69\x05\xfc\x41\x74\x21\xf8\xcf\x93\xb0\xbd\x0c\x57\x69\x7b\x11\x44\xab\xb4\xfd\x2b\x4b\xe2\xf6\xaf\x71\xbc\x78\x8a\xdb\x63\xd6\xdd\x9e\x3d\xc0\x7b\x18\xae\xd2\xe7\x78\xd8\xed\xf9\xdf\x59\x12\x6b\x53\xb5\x74\x00\x15\x74\x4e\xa3\x37\x73\x6d\xee\x87\xa9\x02\xc7\x00\xcc\x9b\x0b\x49\x48\x7c\x8d\x6e\x50\xaa\xfd\xf2\xb5\x58\x1b\x16\x99\x81\xe3\xc9\x2f\x4b\x6d\x9c\x3e\x92\xad\x4d\xce\x1c\x2e\x87\xed\x01\xdf\x02\x96\xc2\x04\x4b\xb4\x11\xdd\xb0\x5f\xf6\x80\xd9\x97\xb1\x98\x79\x61\x73\x3a\xa7\x78\x10\x78\x1b\xdb\xb3\xbd\xa7\xe8\x2c\x01\x0a\x0c\x39\x46\x51\x30\xa3\xf6\xaa\x8d\x67\x79\x7f\x03\xb9\x9f\x35\xc4\x50\x23\xf7\xf3\x03\xe4\x7e\x56\xe4\x7e\xae\x93\x9b\x63\xcc\xc9\x65\x7e\xca\xdb\x7e\x1a\xf8\x51\xdb\x5f\x9c\x07\x17\xab\x78\x95\xb6\xfd\xb4\xcd\xaf\xe3\xb6\xb8\x59\xf7\xb7\x2f\x89\xed\xfb\x29\xd7\x76\xa1\x0e\x6d\x57\xd5\x91\xbb\x69\xa9\x98\x8d\x82\x31\x17\x15\x6a\x78\x2e\x58\x50\x17\xf9\xe7\x21\x6b\xe3\x22\x53\x3b\xbb\x44\xe9\x47\xe8\x39\x49\x56\x0c\x38\x22\x30\x8a\x65\x2b\x25\x9b\x05\x5a\xa8\x60\x0d\x40\x06\x17\x51\x2c\x96\x86\x16\xa8\x9c\xbf\xb0\x67\x61\xa8\x25\x0c\x94\xa1\xd0\xc3\xc0\xa3\xf3\x5b\xce\xb4\x2b\x96\x88\xb9\xb7\x50\xf1\xe2\xae\x85\x0a\x66\x2d\x61\x17\x7e\x32\x0b\x59\x2a\xc1\xc4\x5a\x03\x57\x52\x2e\x9b\x7a\x1e\x87\x8f\x58\x27\xaa\x19\x74\x9e\x04\x29\xf7\x39\x53\x2d\x0d\xe6\xda\x75\x66\x1a\x40\x9d\x01\x5e\xed\x1a\xcf\x4f\x6b\xf3\x38\xe2\x95\x89\x36\xce\x55\xe2\x70\xf6\xfc\x5c\x2c\xf3\x66\x33\xed\x8e\xa6\x1d\x28\x8e\x28\xb5\x28\xa2\xea\x17\xb1\x75\x34\xed\xc3\x2a\x0c\x71\x71\x24\x5b\x11\xaf\x36\x0b\xc4\x4a\xa0\x7f\x9a\x83\x6a\x96\x3b\xb1\xde\x34\x41\xb2\x74\x61\x74\xa7\x6d\xf5\x35\x50\x96\x9a\x35\x28\xbb\x05\x06\x36\x1a\x2c\x75\xbd\xe1\x0d\x2d\x8e\xd5\x4c\xae\xd4\x90\xa7\x3b\xd8\x9b\xe8\x2f\x8a\x93\xf0\x77\x1b\x39\x2f\x65\x31\x00\x46\x17\x88\xc9\xcc\x21\x2e\xde\x3d\x66\xae\xdb\x68\x75\x8e\xc1\xe7\xf5\x35\x79\x3b\xba\x72\x02\xb3\x15\xbc\xcc\x1f\x40\x6d\x72\x9d\x04\xa0\x44\x1a\x0d\x72\x8d\x2c\x04\xfe\x51\xaf\x20\x0c\xe5\x0a\x35\xd6\xcb\x63\x51\xb5\x26\xae\xfe\x0e\x6f\x15\x09\xe9\x6d\xca\xd9\xa2\x99\x92\x19\x9b\x5a\xf6\x93\xe7\x64\xb9\xd6\x38\x2a\x74\x0f\x50\xf1\x2c\x2d\xae\x03\x0a\x47\xab\x34\x3d\xc2\x2e\x84\x91\xb8\x02\xaf\x0b\xfc\xac\xd7\xfb\x7b\xda\x61\x12\x5c\xc1\x34\xe6\x3d\x4c\x9b\x2d\x1b\x28\x64\xd1\x55\x90\xc4\x11\xcc\x5d\x9e\x48\xde\xf7\x93\xfd\xa3\xf7\x2e\xc1\x15\xf4\xb6\xdd\x1f\x88\x19\xc4\x7d\x79\x0a\xa5\x3c\x97\x42\x35\xda\x95\x9f\x04\xc0\x95\x94\x96\x17\x03\x80\x5f\x30\x88\xdb\x73\x7f\x11\x84\x8f\xb0\xb1\x05\xe1\x7e\x46\x5e\xb3\x7f\xf7\x3f\xaf\xb4\x63\x3f\x4a\xb5\xf7\x71\x14\xc3\x24\x79\x1f\x14\x62\x1c\xa9\xe7\x83\x84\x31\x48\x52\x8d\xbc\x67\x51\x88\x20\x27\x52\xba\x08\xd5\x16\x71\x14\xe3\x1a\xc9\xb3\xc2\x1a\x91\x5c\x85\x92\xba\x0a\x09\xcb\xbe\x0b\x64\x92\x09\xc3\x38\x27\xff\xc9\xeb\x63\x56\x9f\x92\x20\xe2\x15\x96\x61\x8d\x80\x0b\x06\xc2\x32\xb8\x61\x61\x5a\xa8\x63\x11\x0b\xcf\xe4\x69\x93\x3f\x3f\xe2\x81\x1f\x06\x7e\xca\x66\xd5\x85\xb0\x32\xda\x6c\xb2\x23\xab\x54\xd7\xc5\xff\xe8\xca\xab\xdd\x33\xa9\xa6\x7e\xaa\xf3\xcd\x1c\xfd\x0f\x2c\xbe\x5e\xc6\x0b\xd6\xfe\xc6\x6e\xd3\xb6\xd8\xd9\xf2\x1b\xd7\xd9\x00\xdd\x73\x96\x7d\x17\x90\xe6\xb3\xd4\xdb\x59\x34\x11\xf1\x25\x08\xdc\x9d\x4a\x31\x74\x91\xa0\xcc\xe7\x13\xed\x1b\xbb\x9d\xe2\x31\x3e\x9c\x89\x4a\xab\x0e\x9a\x2c\x2b\x22\x1c\xa5\xcf\x27\xb8\x9a\x95\x36\x21\x15\x35\x62\x7b\xbf\xb1\x5b\x75\x9d\xd0\x13\xbf\x44\x67\x6b\x72\xbb\xda\xc2\x5f\x82\xed\xc7\xa5\x40\xf9\xb1\x08\xf4\x48\x7e\x10\x0a\xa8\x7d\x5b\x78\x9b\x4d\x44\x35\x70\xec\x61\x86\xbd\x00\x3b\xa0\xf6\x83\x42\xc9\x54\x9b\xc7\xa0\x29\xd9\x4c\x3b\xbf\xd5\xc4\x47\x46\x68\x90\xc4\x24\xda\x26\x27\xc1\x33\x36\x0d\xc0\x72\xc7\x89\x76\xc9\x6e\x7c\xf5\x28\xa6\x80\x29\xc5\x19\xbc\xf8\x16\x98\x6d\x1e\x93\x68\x24\x79\x0d\xb3\x69\xb5\x22\x0e\x13\x55\x64\x7f\x9c\x69\x4b\x2a\x97\x04\xe4\xc7\xb2\x12\xd2\x03\xac\x6b\x0e\x4e\x03\xbb\x59\x86\x7e\x84\x1f\x1c\xd4\x1c\x79\x0e\x1e\x06\xa7\xf8\xb9\xaf\xb2\x8a\xfe\xee\xcb\x51\x34\x13\x6b\x7b\xc7\xb8\xac\xa7\x15\xbb\xe6\x34\xfa\x7e\x1a\x69\x1a\xfa\xd0\xed\xdd\x90\xb7\xdf\x12\x57\x23\x95\x1d\x55\x84\xe6\x30\x62\xd2\xf2\x0e\xa0\xf0\xea\xf2\xc2\xab\x9f\x21\xf3\xf4\xd9\xcf\xfb\xef\xde\x7d\x3c\x3d\x8d\x4e\x9f\x91\xd3\x08\x57\xfc\x16\xfe\x4d\x5b\xb4\xba\xad\x3a\xea\x61\xe9\xcf\xf6\x80\x58\x2c\x53\x3b\xef\xfd\x1b\x4d\xec\xf5\x86\x86\xfb\xda\xeb\xbd\x63\xaa\x7d\x3c\xde\xa3\xda\xe1\x7b\x64\xde\xee\xe1\x71\x2e\x29\xe7\x0c\x06\x2c\x38\x0f\x17\xc1\x15\xd3\x56\x4b\x14\xd9\xdc\x4d\x15\xdd\x0e\x63\x13\xaf\x69\x11\x83\xd3\x4f\x58\x7b\x0e\xa9\xdf\x38\x3e\xa7\x71\x74\xc5\x12\xae\x21\x6a\x21\x77\xa2\xa7\x83\x44\x3b\x00\x91\x61\xff\xb1\x0a\xae\xfc\x90\x81\x33\x98\x4f\x0c\x43\x56\xfe\x54\x2b\xbe\x30\xab\xaf\xbb\xa9\xa4\x96\xfb\x72\xd5\x5e\x7e\xbc\xfe\xa1\xb9\x6b\xf5\x23\x7c\xf6\xc9\x5d\x8c\x73\x5f\x0b\x99\x3f\xc3\xb3\x3f\x58\x89\x5c\xe5\x14\x14\xc4\xab\x94\xb5\xc5\x9e\x87\x69\x18\x4c\xbf\x3d\x76\xfa\xd6\xe4\xb8\x3c\xc3\x0c\xf0\x40\x85\x5f\x2a\x96\x32\xce\x57\x9c\xc7\x91\x86\xd8\xd3\x7c\x41\x2d\xff\xee\x08\x83\xe4\x4a\xac\x75\xce\xd8\x92\x45\x30\x58\xd4\x70\x90\x04\x22\x51\x6d\x81\x89\x64\x93\x07\xc0\xf5\x21\xe6\xcc\x15\xcb\x3d\xa8\x08\x25\x9b\x71\x77\x47\x4b\xd2\x01\x79\x6c\xa6\x2d\x82\x29\x48\x4a\x22\x9c\x28\xfc\xc0\xd7\x80\xfd\x09\x2d\x2f\x6c\xb7\x31\xa9\x45\x6d\xda\xa5\x3d\xda\xa7\x83\x33\x4a\xde\x63\xd3\x11\xb1\x64\x00\x4a\x75\x54\x9f\x2a\xa8\xa5\xfa\x3c\x8b\x6a\xd7\x38\xe1\x52\x93\x8e\x45\x30\x83\x26\x95\xb8\x29\xbe\xc2\x45\xed\xbf\x59\x56\xe1\x93\xbe\x2e\x74\x26\x74\x75\xb6\x5f\x04\xbf\xcc\x44\xda\xdf\x2c\xab\x8a\xb7\xa1\x93\xf4\x34\x40\xcd\x0c\x53\x1d\x9f\xc3\x58\x93\x0b\x40\x0b\xc1\x07\xe5\xbc\x8b\x86\x5d\x05\xfe\x3a\x02\x0d\x6c\x97\xa9\x79\x9e\xe8\x0a\x7d\x99\x04\x0b\x3f\xb9\x35\xe4\xfb\xce\x69\x64\xc1\x4b\x59\x54\xf7\x57\x37\x41\x18\x94\x01\x6c\x00\x10\x44\xea\x62\x95\xba\xfc\xfe\x49\x82\x74\xba\x4e\xd4\x4f\x7f\x2f\x79\x82\xe1\x74\x1d\x27\xb3\x36\x1e\xdd\x6e\xe3\xe9\x94\x36\x94\x7b\x8a\x48\x91\xc9\x2f\xa7\xa7\xe9\xe9\xe9\xe4\xf4\xf4\x4c\x37\xbe\xdf\xbf\x78\x79\x4a\x9e\x9d\x9e\xfe\xb2\xf5\x2f\xff\xf4\xcf\x7f\x6e\xfd\x85\x8e\xdd\xff\x72\x56\xf0\xa3\x9e\x1d\xb1\x8b\x55\xe8\x27\x60\x49\x12\x96\x7d\xd1\xbe\xf4\x43\x2e\x8e\xc7\x48\xfb\x04\x1c\x10\xfd\x90\x72\x3f\xe1\x86\x50\xba\xd9\xf2\x9a\x6c\x39\xcc\x6d\x61\x76\x21\xd7\x4e\xfd\xc2\x97\xa7\x69\xe8\xa7\xa8\xf7\x12\x86\x0b\xd9\xd2\x0c\x4e\x0b\xd3\xfc\xce\x69\xf4\x85\x69\x3e\xce\x5d\xc8\x3f\x08\xaa\x68\xd2\x21\x85\x0f\x27\xe0\x7c\x2f\x7d\x7e\x99\x6a\x73\xfc\xe6\x1f\xc1\x5c\x06\x09\x52\x33\xd2\x38\x65\x38\x2e\x6b\x7c\x7c\xe4\xe4\xf9\x29\x8c\xfc\x47\xa7\xc4\x4a\xf2\x04\x56\x4a\xa1\x64\xd1\xec\x8f\xe1\x64\xa3\x28\x89\xa1\xf2\x7b\xf0\xe0\xec\x2f\x0f\xb7\x5b\x1c\xae\xf2\xc3\xb0\xfc\x0d\x34\xfb\x50\x22\xa8\xf9\xbd\x04\xe7\x34\xfa\x94\x8a\x0f\x22\xec\x66\xa9\xbe\x72\xe6\xab\xbf\xe9\x2a\x41\x67\x3d\x90\x1f\xb2\x50\x66\x70\xce\x10\x07\x91\x30\x64\x4b\xff\xe2\xf7\x74\xca\x01\x9d\xb6\x5a\x3e\x9f\xc5\xd7\xd1\x13\x1d\xf3\x7a\xd1\x47\x39\xe7\xa5\x62\x6b\x1d\xf4\x32\x54\xee\xa4\x93\xa5\x9f\xa6\x6d\x3f\xe4\x6d\xe1\xd2\x3e\x75\xd3\x68\x71\x19\xad\xe8\x4e\xe4\xeb\x35\x50\x01\xee\x3d\xb4\x3a\x9d\x91\x1a\x08\xd2\xb9\xc9\x95\xb1\xdc\x4a\x77\x2b\x96\x4e\x92\x55\x14\x41\x37\x89\xcd\x44\x41\xa4\xf9\x99\x3b\xc4\xfd\xf3\x7c\xc3\xe2\x6d\xbc\xd2\x66\xb8\x57\x0d\xbf\xfb\x0a\xdb\xf5\x2c\xd5\x4e\x89\x88\xf3\x8b\xd5\xf9\xe7\xa7\x44\x53\xd1\xd3\x34\x7f\x3a\x65\x21\x4b\x7c\x1e\x27\xc0\x4b\xdc\xcf\x14\xc5\x3c\xab\x12\x2b\xe3\xfe\xb9\x16\xf0\x67\xa9\x76\xce\x38\x17\x1f\x17\x54\x5f\xa4\xac\xe8\xca\x89\x85\x16\x24\x07\x66\x0e\xc2\xd5\x5f\xa5\x18\x6d\x44\xbb\x0a\x16\x60\xbb\xd9\xc2\x9f\x0a\x59\xcd\xa4\x24\x63\x07\x76\xf3\x39\x53\xdb\x08\x41\xe7\x15\xd9\xa3\x15\xfc\xc2\x5a\x99\x14\xac\x54\x81\x0c\x01\x8d\xbd\x52\x70\x0a\xf2\x4d\xb6\xd9\xde\x3c\x69\xf6\x51\x3a\xa4\x99\xc6\x53\x86\x99\x38\xe0\x82\xfc\x1f\x2a\x0f\x38\x5b\xf8\x9f\x02\x51\xfe\x78\xf4\x54\x89\xa8\x17\xfa\xe3\x44\x02\x67\x1c\x7f\xa8\x48\xbc\x87\x1a\xfe\xa7\x48\x64\x22\x91\xf3\xe3\x09\x22\x51\x2f\xf4\x07\x8b\xc4\xd5\x6f\x9f\x79\x22\x9e\xcf\xda\x05\xe3\x29\x4a\x82\xb0\xe7\x48\x2b\xd4\x25\xb7\x33\xb5\x99\x3a\x02\xf2\xf8\x75\x03\xb2\xe2\xf3\xb6\x43\xe8\x44\x25\x48\xe2\x5f\x8b\x93\x0b\x62\x8e\xcd\xf2\x8b\xbc\x45\x11\x9c\x1f\xcd\x7c\xee\xe7\xbb\xa8\xb2\x0d\xb0\x48\x91\xdc\x26\x11\xcc\xc4\xa7\xfe\x14\x37\x2c\x3c\x43\xf4\xcf\x90\x55\xcf\x12\xff\x5a\x6c\x51\x13\x56\xb6\x1d\x47\xe8\x5e\xf0\x24\xfe\xf6\x08\x27\x2c\x3f\x7d\xd2\xf4\x8d\x59\xa0\xcc\x06\x08\x6e\x7f\xc4\x0f\x37\xd1\xad\x96\x55\x52\xa9\x3c\x5e\xf1\xe5\xea\x11\x2e\x70\xa1\xe6\x06\xbf\x66\x5d\xcd\x99\x47\x23\xaa\x29\xd4\x7d\xee\x27\x6d\xb9\x23\xe7\x07\x9b\x7d\x72\x89\xdf\x09\x71\x97\x43\xc1\x63\x5a\xa8\x35\x1b\xd9\xc6\xeb\x4b\xc6\xc2\xf6\xc2\xbf\xc5\x15\x91\xb6\x9f\x24\xf1\x75\xfb\x71\xeb\x37\x8d\x6d\xc6\xe1\x2e\xbe\x44\xc8\xcd\xfe\x2c\x91\x93\xda\x74\x9a\x30\x16\x69\xe7\xab\xf9\x9c\x25\x62\x17\xcb\xeb\xfd\xbd\xbd\xb7\xef\x35\x7d\x37\xbf\xbf\x41\x13\x17\x38\x68\x18\xee\x2b\x9b\x5f\x32\x2a\x27\xba\x48\xaf\x62\x28\xee\xd3\x97\x53\x46\xb6\x58\x85\xb8\xb7\x1b\x5a\x20\x16\x7b\x50\x23\x70\xa5\x34\x38\x5b\x2c\xe3\xc4\x4f\x82\xf0\x56\x9b\x89\x73\x2e\xa8\x0d\x2e\xe3\x30\x77\x71\xd1\xdd\xfb\xc6\x6e\x73\xbd\x59\x98\x34\x4d\xe3\x05\x4b\xb5\xd5\x52\xa8\x50\xd1\x48\x70\x0d\x93\x54\xd3\x43\x96\xa6\x06\x28\xa3\x44\xae\xfa\x2c\x7c\xe1\x5d\xa6\x9a\x5a\xe4\x66\xb3\x80\xe3\x17\xc3\xab\xe0\x79\xe4\x47\x31\x82\x0b\x2c\x82\x35\xcf\xf9\x62\x75\xd3\xd0\x39\xf1\x15\x6b\x2f\x56\x21\x0f\x96\x61\xf0\x18\x0b\x92\x77\x8c\x55\xfc\xe0\x90\xa3\xc8\xbe\x6c\xe0\xe7\x06\x6d\xc6\x42\xee\x83\x3e\x15\xcc\x95\x5c\x9d\xfa\xa8\x66\xa5\xbe\x94\x1c\x47\x88\x0e\xb8\x53\xf8\x21\x3d\xbe\xd6\xe6\x7e\x2a\xd4\x01\x3a\xc9\x45\xe7\x18\x05\xea\x0f\x51\x3c\x35\x7d\xa3\xf4\x74\xa6\xf7\xd4\xc8\xfa\xa1\xfa\x83\x34\x6e\xdb\xa6\x6d\x03\x09\x79\x3a\xa3\x06\xff\xb6\xc3\x78\xfa\x8d\xcd\xa0\xae\xe2\xc7\x9c\x6c\x44\x67\x34\xea\xaf\x3f\xee\x1d\x8b\x85\x99\x37\xc7\x1f\x11\x97\xdc\x14\x50\xd8\x93\x80\x2b\xf5\x3c\xf1\xa3\x34\x94\xa7\x09\xf4\x30\xf8\xc6\xb4\x8b\xc4\x5f\x5e\x06\xd3\x14\xde\xa7\x80\xe4\xd3\xc9\x41\xdb\x51\xe2\x9b\x6a\xe9\x6a\xb9\x8c\x13\x75\x82\x25\x4e\xd5\xd6\x39\xa6\x09\xf2\xc4\x37\xb8\x48\x1d\xa1\x2a\x31\x6f\xea\x47\xe5\x0d\x5c\x9a\x8f\x46\x9a\x07\x0b\xb9\xc8\x94\xb5\x45\x2c\x60\xe6\xe7\x4d\xd4\xde\x31\xb5\xbf\x98\x07\xd3\x6f\x62\x31\x41\xd0\xb7\x8a\x70\xdb\x01\x38\x0f\xe2\x43\x31\x18\xc6\x6f\xe0\x76\xb0\x68\xc6\x70\xf9\x1e\xa1\x43\x76\xe1\x4f\x6f\xb5\xc2\xed\x2d\x52\x72\x70\x91\x5c\x04\x4f\x7d\xfa\xce\x96\xe2\x87\x66\x18\xce\xdb\x9a\xb8\x31\xac\x69\x87\x0b\xaf\x6f\x6f\x91\x3b\xbd\x92\xf6\x34\x7d\xda\x56\x47\x52\x3d\x28\x83\x67\x27\x52\x7e\x1b\xb2\xf4\x92\x89\x63\x1e\xea\xf3\x4a\xf5\x9b\x77\x16\xf3\xbe\x58\x7b\x1b\xd4\xc6\x93\x49\xc0\x61\x1e\x06\x11\x6b\xe7\xdf\xfd\x56\x29\x58\x9c\xbd\xe3\x63\xa1\x89\x70\x63\x1e\xbf\x0d\x95\xda\xcb\x82\x62\x93\xb3\xe6\x63\xc9\x59\x30\x15\x4f\x1e\x94\x16\x07\x69\xf4\xa6\x83\xda\x19\x6c\xe3\x39\xef\xce\x34\x8e\x52\x9e\xac\xa6\x3c\x4e\x9a\x0e\x67\x43\x99\xd5\xf9\xf1\xea\xbc\x16\xc6\x30\x3e\x4f\x59\x72\xc5\x92\xf4\xab\xf7\x5d\x04\x34\x41\xb8\x8e\x3f\x9b\xbd\x92\x7b\xe4\x4a\x87\xc8\xc5\xf9\xef\x88\x5d\x6b\x0a\x34\x0f\xb5\x25\x03\x15\x0a\x04\x39\xc1\x6c\x92\x9c\x79\xf5\xfc\x49\x72\x26\xcf\x76\x1b\x85\x7a\x0b\x01\x66\x56\xe7\xe9\x34\x09\xce\xab\xc1\xaf\x65\x37\x97\x68\xbf\xbb\xd3\x2b\x39\x13\x76\xe6\x4d\xce\x64\x7c\x98\x52\x76\x67\xb9\x4a\x2f\xd7\x55\xba\x8a\xd6\x55\x5b\x88\x4f\x53\x42\x27\xee\x49\x11\x61\x64\xc8\x9b\xe8\x0a\x1d\xb1\x74\x85\x1d\x8a\xc1\x7c\xc6\x2a\x80\xab\x0a\x3a\xc3\x45\xdc\xd6\x17\xa6\x2c\xf4\x21\xe6\x5a\x56\xeb\x4c\x94\x49\x3a\x29\x8c\x5e\xa6\x07\x2a\xfe\x4e\x95\xd2\xe5\xea\x3c\x0c\xd2\xcb\x12\x95\x34\x29\x5c\x71\x14\x40\x77\xb1\x17\x71\x21\x1e\x5c\xe1\x4e\x81\x80\x9a\x94\x6d\x5b\x06\x8d\x27\xec\x0c\xb8\x21\xe2\x6c\x37\xb4\x2f\x6e\xb5\xf4\xd8\x9b\x9c\x81\x8c\x4d\x7d\xae\xc7\x86\x41\x13\xc8\xdb\x89\x05\x2b\x13\xc3\x8d\xbd\x49\x72\x66\xd0\xb8\x56\x85\x69\xac\x09\x5b\x70\x3d\x25\x54\xc6\x58\x3e\x8a\xaf\xf7\x50\xb1\x88\xc7\xe3\xe0\x57\x96\x3d\x9c\xb0\x1b\xbe\x9b\x7d\xb2\xc6\x20\x07\xc7\x68\xd5\xeb\x21\x8d\x60\x92\xb0\x9b\x24\xfe\xad\x37\x39\x93\x61\x81\x70\x23\x1a\x06\x3a\xff\xea\xb1\xbb\x3b\x47\x86\x24\xe6\x25\xa4\x52\x98\xcb\x35\xa9\xab\x33\x94\x06\x31\x8a\xf1\xaa\x0f\xe5\xb9\x16\x59\x52\xd0\xaf\x43\x63\x8b\x50\x47\xf1\xf5\x87\x78\xc6\xbe\x62\xdc\xe7\xe2\x8b\xe6\xdc\x8f\xf3\x79\xca\x78\x31\xff\x3a\x4e\x66\xaf\x12\xe6\x7f\x7b\xef\xf3\xe9\xe5\x3b\x36\xe7\x6b\x5f\x1e\xe1\x35\x1b\xeb\xde\xbe\xc7\xf5\xcd\x2c\xfe\xb4\x60\x60\x41\x94\x2e\x18\x06\xec\x6f\x08\x64\x29\x1a\x88\xd1\xfc\x6b\x1c\xa5\x65\xae\x4b\x31\x33\xd6\xd5\x20\x6e\xfd\x58\x17\x2c\xb3\x8a\x66\x1d\x16\xbc\x58\x64\x6d\xc4\xcd\x02\x75\x8d\x08\x52\xc6\xf7\x72\x98\xba\x08\x95\x05\xa6\xa9\xcb\x25\xc8\x4b\x4f\x5d\xfe\x07\x28\x4b\x10\x7a\x53\xa9\x24\xbe\xa6\xac\x6d\x35\x33\x07\xed\xf2\x51\x7c\xbd\xae\x59\xea\x7d\xaa\x5b\x86\x0c\xf4\xb5\x16\x47\xba\x36\xc0\x7c\xce\x61\xa9\x59\x4c\xca\x9a\xe9\x91\xe7\x7d\x4b\x14\xd5\x06\x59\x8e\xe5\x11\x78\x1a\xc2\xd8\xe7\x88\x24\x18\xde\x36\x27\xc3\xcf\x65\x2f\xd7\xa1\x5e\xc6\xcb\x0d\x0c\x13\x6f\x37\xb1\x4b\x42\x3c\x9e\x59\x8d\x42\xda\x66\x6b\xe9\x5b\xa5\x97\x0f\xf0\x0f\x55\xe7\xe6\xe2\x65\xfa\x44\xf6\x93\xd8\x24\x7c\xbd\x32\x21\x59\xd0\xf6\x5a\x1b\x19\x35\x29\x7f\x00\x51\x5a\xbd\x50\x2f\x0b\xb3\x69\x8e\x93\x17\x5c\x45\xce\x4c\xb6\xb7\x8d\x35\x95\x6c\x27\x50\x0d\x98\x8b\xc6\x9a\x12\x06\x13\xb3\x2a\xef\x36\xf6\x0d\xa3\xeb\x3b\x3a\x43\x57\x25\xfc\x01\x8c\x6b\xf9\x80\xf6\xdd\xe7\xac\x3c\xe8\x6b\x6e\x55\x65\xfc\x03\x11\xbf\xa7\x81\x68\x24\x0e\xf7\xc7\xec\x29\xd4\x6b\x48\x52\x95\xca\x3b\xb7\x4e\xde\xbf\xcb\x6e\x2b\xa8\x00\x08\xd6\x65\x26\x11\xcc\x77\x24\xce\x2b\xcd\xc3\xf8\x9a\x18\x4d\xb4\x99\x1b\x74\xe6\x9a\x97\x0a\xa1\x27\xef\x0b\x61\x63\x19\xf7\xb2\x6c\xa5\x3b\x41\x2a\x37\x13\xea\xc6\x0e\x21\x6e\xd0\x99\xa3\x3d\xb8\x0c\x38\xc3\x6d\x87\x75\x03\xa5\x82\x15\x35\x62\x8b\xf0\x7a\x88\xf1\x86\x77\xde\x96\xd5\xe4\x2e\x74\xd2\xdb\x68\xba\x87\xbb\x94\xcb\x91\xff\x2b\x60\xc2\x97\xdf\x8b\x23\xee\x07\x11\x4b\x74\x26\x63\xcd\x56\xb8\xec\x2f\x97\x2c\x9a\xed\x5d\x06\x21\x5e\x1f\x57\x93\x82\xa4\x91\x06\x45\x22\x7f\x90\xc2\x66\x49\x89\x17\x8b\x80\xbf\x0b\x22\xf6\x51\x71\xff\x01\x69\x49\x19\x5f\x2b\x09\xea\xca\x92\x46\x73\xbb\x66\x98\x94\xae\x90\xa9\xf9\x10\xdf\xd9\x4b\xaf\xf1\xcd\x8e\x0e\x13\x9d\x38\x64\x2a\x56\xe3\x51\x7c\xad\xc5\x2b\xdc\x19\x71\x8e\x61\x0c\x44\xfc\x4c\xca\x9a\xcb\xb7\x2d\xc3\x65\x2f\xcc\x56\xeb\xf1\x78\x60\xcc\x4a\x6a\x8a\xc2\x55\xa3\x44\x38\x16\x75\x24\xe0\x3a\xd6\x8b\x03\x21\xbc\x89\x90\x8d\x68\xcc\x46\x37\xb4\x36\x84\x92\x4a\xe3\x27\xec\x8c\xc2\x04\x04\x8f\x54\xa2\xa8\x8d\x83\xbb\x3b\x1d\xb2\xe2\xeb\x88\x25\xea\xe2\x33\x29\xb3\xe0\x09\x43\xaf\xeb\x84\x18\x34\x29\x49\x68\x60\x08\x91\x4f\x3d\x13\xa7\x7d\x89\x0a\xa9\x59\x92\x96\x9d\x8c\x61\x4d\x7a\xa0\x5d\xd7\x1b\xad\x96\x1e\x78\x55\xd1\xa7\xe9\xd3\x90\x18\x6e\x93\x6e\x4d\x1a\x39\x86\xfa\x18\x64\x70\x1c\x8c\xc5\xd4\x2e\xf2\x78\x3b\xa5\xbe\x57\x9d\x08\x74\xa2\x78\xc6\xd0\xeb\xd4\x03\x11\xea\x35\xe8\x44\xec\x86\x1f\x07\xe7\x30\xd1\xbf\xbb\xf3\x5f\x46\xa5\x90\xc9\xc5\xc1\x1b\xd0\xab\x38\x98\xe9\x4d\x4a\xdc\x18\xa7\xdb\x9e\x4f\x03\xaf\x84\x4e\xdc\x22\xa1\x29\x99\xb8\xf6\x93\x48\x27\xbb\xf9\x5e\x75\x3c\xb5\x2d\x56\x72\xd5\xe1\x7a\x2d\x8e\x34\x26\x82\x1a\x88\xf1\x47\xd6\x0c\xc6\xdb\x68\x9a\x5d\x1c\xb7\xe7\x27\xac\xe2\xff\x26\xb7\xdf\x59\x76\x9b\x9c\x5e\xeb\x8c\x06\x7e\xdf\x4f\x31\xbc\x3d\x33\xc4\xc2\x41\xbd\xc6\x65\x18\x70\xc1\x88\xa6\xa9\x34\x18\xac\x38\x62\x28\x69\x5b\x96\x41\x53\x8f\xa1\x22\x93\xf1\xf0\xc6\xa5\xa7\xe6\x7e\x39\x96\xb7\xed\xa1\xe3\x42\x93\x52\x81\xa0\x73\x3d\x55\x91\x60\xd3\xda\xeb\x56\x0b\xa3\x09\xb3\x08\x09\x94\xfe\xcd\x2b\xdc\x9a\xa9\x27\x94\x15\xfb\xc4\xa0\x25\x4a\xee\xee\x4a\x25\x85\x95\x14\xa3\x63\x8d\x17\xb6\xf0\x6f\xcf\xd9\x5e\x18\x2c\xf7\x56\x09\x94\xab\x18\x67\x11\xea\x79\x83\xdc\x35\x88\xb5\x08\x1e\xfe\xa2\xae\x57\x8c\x4d\x73\x96\x1a\xb4\x8a\xaa\xfb\xf8\x49\x4c\x93\x22\x7b\x40\x27\x15\x2f\xa0\xe3\x1b\x86\xf4\xf8\xf7\x20\xe5\xb1\x8c\x14\x5c\x6c\x90\xea\x17\xac\x6d\x29\xb6\x14\x40\x1f\x2d\x8b\xb5\x81\x63\x36\x54\xb2\x6d\x19\xc5\x08\xf5\x0d\x1d\x4c\xeb\xfa\xb0\x28\x93\xa0\xb6\x92\x92\xec\x05\xc6\x43\x45\xf8\x8b\xba\x11\x7b\x2a\xcb\x4b\x3a\xb6\xa9\xaf\x9b\x35\x81\x18\x5e\xd5\xe8\xff\xd9\x6a\x62\x8d\x67\x89\xc7\x4b\xaa\xe0\x47\xdc\x53\x69\xa7\x84\x1a\xe0\xe2\x46\xd2\x8a\x13\x56\x11\xc0\x6d\x4f\x44\xa1\x8e\xbc\x7a\x8f\x6d\xb6\x0c\xdc\x68\x47\x30\x22\xfd\x17\xa6\x68\x53\xe8\xd5\xfd\xd3\xb6\x6f\x64\xb7\x5e\x54\x1c\xb6\x55\x34\x63\x09\xd0\x7f\x77\xd7\xe8\xcf\xf1\x24\xf8\xc6\xf8\x65\x12\xaf\x2e\x2e\x9b\x41\xf2\xd8\x2b\xcd\xef\xaf\xa7\xc0\x35\x75\xc3\x7b\xe5\xa5\x9f\x4e\x83\x40\xbc\x17\x37\xf4\x34\x01\xf1\x20\x64\xaf\x7d\xee\x1b\xc1\x5c\xef\x6e\x79\x1c\x9b\x7f\x72\xbb\x64\x30\x5a\x0a\xf8\x8b\xd8\x38\x96\x52\x69\x5c\xb3\x47\xb4\xaf\xd9\x34\x4e\xf0\xcb\x44\x9e\x9f\xb7\x00\x5d\x57\x19\x34\xfc\xd2\xe3\x9b\x7d\x94\xb0\xd9\xad\x2e\x29\xf4\x4b\xca\xcb\x0a\xbd\x66\xa8\xb9\x77\xd9\x38\xd5\xf2\xda\x3e\x4d\xbc\x50\x58\xe5\x92\x4c\x7a\xc9\xb6\x17\x8a\x2b\x0f\x98\x17\x6e\xb3\xb1\xef\x99\xf7\x6b\xba\x17\xf7\x1f\xb2\x34\x9f\x0b\xf0\xec\xf6\x9d\x32\x4e\xd3\xf3\xfc\x9d\x64\x9b\xb9\xa6\xe7\x45\x3b\x6c\x3b\x71\x37\xaa\x1a\x6a\xd2\xc8\xd8\x66\xdb\x9b\x81\x22\x63\x9d\x17\xb2\xed\xa5\x28\x92\x50\x9b\x60\xf7\xd4\xe3\x9d\x65\xc2\xae\x82\x78\x95\x66\xaa\x66\xae\x4f\xe5\x62\xd7\x43\xed\x9a\x66\xed\x9a\x16\xdb\xb5\x5d\x5e\x4b\x13\x2c\x9f\xae\xf5\x8d\xca\x43\xb6\x84\xc9\x30\xc6\xb3\xc7\xce\xb6\xea\x4e\x59\xb3\x74\xcc\x28\x6f\x90\x88\xd9\x5a\xf2\x52\xbc\x71\x0a\xba\x4a\xf0\x6c\xe5\xf1\xb2\x6a\x9e\xeb\xab\x47\xf2\x6b\x95\xf1\x6b\x55\x92\x03\xb6\x5d\x7a\xae\x53\xb7\x7a\x24\xf3\xd8\x1f\xc3\xb0\xd5\x93\x18\xb6\x41\x71\xce\x0c\xe3\x5e\xd8\xa0\xcc\x57\x44\x89\x45\x3d\xfc\x68\xc2\x1f\xd3\xc5\x0f\x28\x80\x59\xd3\xf0\x4f\x1b\x8d\x19\x98\x18\x3c\xc3\xfa\x80\x3d\x2b\x7a\x26\x1b\xbc\x1e\xbc\x3d\x42\x8a\xc1\x84\x9d\xc9\x09\x5c\xcd\x6c\x3d\x5a\xb5\x54\x7d\x1c\x29\x8a\x6b\x7c\x99\xd2\x5d\x09\x65\xf7\xde\xf3\x58\xc3\xc4\x26\x53\x1d\x49\xad\xbf\x6b\xe6\x34\x91\x5d\x33\x63\x21\xe3\x6c\xef\xd2\x4f\x52\xfd\xbd\xcf\x2f\x3b\x8b\x20\xd2\x13\xca\x0d\xa3\x78\xc3\xa7\xbc\x1b\x6a\x8d\x13\x5d\xc0\xf1\x48\x0f\xa2\x6e\xc3\x83\x4d\xde\x27\xde\x8d\xc2\xbc\x8c\x3e\xd6\xe0\x60\x06\x46\x36\x60\xcd\xcc\x7f\x4b\x69\x44\x7d\x8f\x8d\x61\x4e\x21\xae\x0c\x4a\x37\xfb\x0a\x94\x3f\xde\x9b\xa4\x26\x4d\x8c\x07\x14\x7c\xb2\xcd\x0c\x1a\x3d\x50\x27\x6b\x7b\x69\x3b\xa2\xc9\x8b\xb4\xd5\x8a\x5a\xad\x34\x53\xf9\xe1\xa3\x46\x19\xd1\x88\x31\xe6\x6b\xa7\x4c\x61\x6d\x80\x95\x9a\x48\x08\x8d\x3c\x13\x68\xb0\xee\x95\x55\x2f\xaa\x4c\x30\x40\xad\x16\xdf\xaa\xf5\x63\xab\xc5\xd7\x4d\xb6\x70\x41\xe4\x92\x26\xc2\xec\x76\xeb\x65\x0b\x0e\xca\xd6\xa6\x21\x90\x59\xbe\x0a\x0c\x1a\xbe\xaa\x35\x34\xea\x76\xac\x0a\xd2\xa4\x49\x36\xf4\x4d\xbd\x8a\xec\x3e\xd0\x69\x89\xa7\x0d\x35\x17\x5e\x37\xae\xc6\xe6\x13\xaf\x55\xd3\x24\xe3\xc1\xd5\x9f\x07\x57\x2c\x9b\x0c\xc1\xaa\x91\x94\xfb\xf5\x3e\xbc\x40\x35\xcd\x6e\x0b\xf7\xd7\x7d\xfc\x7b\x17\x44\xec\x98\xfb\xf8\x21\xe2\x6b\x49\x0b\xe0\xa5\xad\xac\xca\x49\x9c\xe4\x97\xb3\x3a\x97\x7e\xba\x61\xce\x60\x30\xaf\x56\xa4\x74\x4b\xe4\x3a\xb2\x80\x6b\x75\x92\x84\x72\x22\x64\x8c\x4e\xf2\x76\x79\x81\x83\xb2\xcd\xc4\x48\x6a\x8a\xe3\x44\xa9\xe3\x75\x94\xfc\xed\x28\xbe\xde\x8d\xa6\x2c\xe5\x71\xd2\xc4\xa0\x56\x8b\xfc\xad\x7d\xf4\xf1\x0b\xd9\xf2\x00\x73\x3c\x63\x1f\xfc\x05\x93\xad\xce\x86\xd9\x83\x0d\x56\xaa\xf3\x4b\xc0\x2f\xd5\x02\xf2\xd7\xda\x46\x84\xa2\x61\x6b\x5b\xe3\xc2\xfd\xf3\x55\x4a\xe5\x8e\x88\xad\x20\x87\xce\x94\xab\x67\x8e\x83\x2d\x4f\x29\xd6\xed\x4d\x23\x89\x19\x74\xeb\x01\x9e\xde\xdd\x6d\x95\xd7\x76\xb2\x0a\x2b\xac\x56\xb2\x98\x6e\x2b\x8a\x8b\x8d\x0e\x22\x90\x40\xd9\xd0\xc7\x70\x49\x14\x68\x62\x51\x51\xbf\x6d\xe5\x16\x57\x5c\x68\x5a\x7c\xb9\xd3\xb6\xdc\x0d\xb4\x14\x41\x11\xf9\x03\x84\x17\xc1\xcd\x7c\x31\x22\xf0\x4c\x0a\x3c\x4f\x5f\xb0\xce\x14\xc6\xe5\x07\x3c\xe0\x23\x3f\xeb\xa5\xdb\xdb\x6a\xb5\xb4\xf8\x7a\x92\xe2\x2e\x98\xa8\x70\x7b\x5c\xb0\x9d\x8c\x83\x8d\xbd\x15\xa9\xf1\xde\xb6\xd6\x71\x10\x90\xef\x46\x33\xa1\x43\xd6\x0b\x5b\x2e\xdd\xfc\xe5\x46\xf1\x18\xab\x8b\xc2\x7e\x50\x46\x78\xfb\x01\xf1\x5b\x23\x44\xaa\x27\x6a\xed\xc9\xbb\x63\xad\x14\xad\x29\xb3\xf1\x33\x6c\x53\xd7\x25\xaa\xeb\x82\x72\xd7\x25\x67\x74\xa3\xbb\x22\x16\xbd\xf9\x0b\x2f\x95\x7c\x20\xc7\x87\xbb\x1f\x88\xe7\x79\x41\xa6\x40\x76\x1e\x6a\x60\x40\xb9\xe1\x4e\x02\xca\xcf\x80\x87\xe9\x7d\x41\xc8\xd7\x7d\x38\x3a\xf2\xa3\x0b\x56\x1d\x31\x34\x10\x6d\x88\xbd\xb5\x35\x66\x22\x22\x97\xf7\xd5\xa5\xc3\xb1\xba\xcc\xfa\x51\x25\x13\x63\x2c\x8a\xa5\xad\x96\x1e\x00\x3d\x68\x77\xf4\x78\x62\x9e\xd1\x78\x62\x9d\x19\x14\x73\xf7\xa3\x99\x9e\x42\x5e\x0a\x79\x46\xf3\xea\x97\x38\x06\x98\xad\xbd\x57\xef\x4b\xcb\x9c\x58\xec\x6f\x6c\xf7\x2e\xd7\x4d\xc1\x77\xf0\x5d\x3a\x3c\x56\xf7\xa6\xaa\x1b\x65\x4f\xd3\xe7\x46\x69\x4b\x5a\xd5\x3a\xea\x6b\x14\x6d\x07\x8f\x1b\x66\x7e\x9d\x81\xb5\x24\x55\xae\x36\x2a\x78\xf0\xd8\x2b\xc5\x55\x86\x60\x22\xe2\x6a\x5b\x0d\xbc\x5e\x8f\x0f\x3c\x89\x02\x36\xa6\x3a\x24\xc3\x95\x66\x9f\x67\x2e\x1b\xb7\x44\x51\xbf\xe9\x0d\xee\x87\xa2\x61\xd3\x2b\xb1\x19\x8a\x5e\x96\xf8\x86\xe6\x5b\x4f\x0c\x3a\x2d\x7e\x37\x00\x96\x5f\x52\x93\xa6\x06\x5d\x15\xaf\x11\x8d\xb6\xc3\x6d\xf2\xcf\xc4\xa0\x33\x6f\xda\x49\x99\x9f\x4c\x2f\xf5\x95\x30\x61\x7a\xdb\xf2\xbc\xd9\xdd\xdd\xec\x65\x2c\x3b\x68\x59\xc7\x18\xd3\xf2\xf4\xee\xd2\x30\xe8\xbc\x74\x4f\xe9\x2f\x64\x3b\xdc\xf6\x0d\x7a\xe1\x2d\x65\x97\xcf\x11\xff\x85\xc0\xb9\xf0\xe2\xed\x32\x8a\x8b\x89\x79\x66\x8c\xa1\xf2\xc5\xdd\xdd\xe2\x45\xaa\x36\x44\x66\x23\x49\x4f\xe8\x8c\x2e\x28\xcc\x04\x3a\xfe\x6c\x86\x99\x3a\x07\x91\x15\xff\xea\xbb\xf4\xc4\x06\x3c\xb1\xef\xb0\xbc\x39\x4f\xee\xc2\x8b\xc3\xf0\x30\x4e\xca\x9f\x91\x9a\xf6\x8f\x8a\xcb\x7b\xb2\xed\x62\x87\x49\x7c\x15\xcc\x58\x92\xef\xb0\x52\xfb\xb5\x71\x13\x5a\x61\xcb\x99\x65\x52\x4b\x7d\xf2\x4c\x56\x21\x14\xc9\x37\x45\x64\x27\x6a\x55\x89\x8c\xa0\x4e\x36\xd4\x8a\x35\x4f\xb3\x8f\x2f\x30\xf2\xf7\xfc\xe9\x65\x69\x8f\x85\x72\xfa\xca\xef\xbf\xdf\x8b\xb7\xa1\x9f\x72\x31\xae\x91\xdd\xc5\x82\xf9\x2b\xb1\xc3\xad\x91\xc6\x7d\xdc\x9a\x3e\xfb\xea\x6d\x99\x79\x29\xdc\x37\x88\x5b\xcd\x64\xa6\xd8\xe6\xff\xe5\x92\xb1\xf0\x7d\x76\xaa\xe0\xab\x67\xe5\x45\x4e\xe2\xd5\xf4\x32\x27\x2b\x48\x45\xab\xd9\x6c\x3f\x9a\x65\xb8\x65\x4b\x55\xa4\x14\x21\x21\x87\x37\x9e\x35\x90\xef\x79\x12\x7e\x16\x37\x13\xa9\x2d\x0e\xb3\xe0\xaa\x48\xb7\xda\xf5\x58\xcc\xe3\x62\x57\x67\x9a\xd7\x5e\xda\x3a\x2c\xb2\x5e\xef\xbf\xfa\xf4\xd3\x57\x6f\x4b\x99\xf4\x5a\x8f\xd4\x77\x44\xa5\x19\x54\x26\x10\xa9\xd4\x62\x85\xda\x59\x34\x2b\x67\x04\xe9\x7b\xb5\x23\xbb\x94\xbb\x27\xbf\x60\xce\x8a\xfb\x64\x6a\x64\x14\xb4\xf3\x3c\x88\x66\x07\xd9\x87\xf1\xb5\x76\x95\x15\xbf\x9e\x27\xc2\x93\x00\xfd\xc4\xb3\x6d\xbd\x49\xb6\x36\x90\xa0\x52\xad\x1b\x61\x65\x80\x91\xd4\x72\xbd\xb8\x1c\x82\xdb\x82\x33\x0f\xea\x3e\xf1\x92\x26\x6f\xe2\x91\xed\x4a\x6f\xa3\x69\xf1\x33\x63\xb6\x2f\x98\xe9\xc6\xf7\x24\xe7\x71\x4c\xe5\x03\x50\xea\x05\x1d\x3f\x9a\x5e\x8a\xa9\x9c\x7a\x21\x34\x72\xf6\x4a\x3c\xd2\x44\xf5\x49\x2a\x92\xb2\xf8\x3c\x9e\xae\x52\x59\x3a\xd3\xe6\x2a\x5f\x3c\xdd\x67\xa4\xf0\x32\x29\x69\x85\x94\x22\xae\x32\x25\x05\x6c\x39\x21\x71\x89\x90\x52\x3b\x8a\x94\x14\x5b\x71\x9f\x9b\x50\xb5\x3a\x54\x90\x47\xb0\x0e\x6a\x76\xac\x1b\xb8\x4d\x36\xd3\x2c\xf9\x8a\xdc\xef\x23\xad\x5b\xc1\xdd\x5d\x50\xcc\xa1\x5b\x55\x98\x5c\x1c\xe3\x52\xfb\xc6\x71\xab\xb5\xa5\x93\x24\xbe\xc6\x3b\x51\x49\x10\x69\xb1\x31\x36\x62\x2f\x2e\x4e\xea\x82\xb9\x1e\xe7\x18\xd2\x22\x7b\xc7\x69\x0d\x41\x6a\x8c\x8d\xd4\x4b\x2b\x08\x52\x14\xfb\xb8\xa3\x20\x5f\xa4\x59\xd2\x60\x7a\xbe\x70\x91\x43\xbc\x2c\x40\xf0\x02\x44\xa1\x76\xaf\xd4\x18\xa3\xdc\x41\x2f\x4a\x7d\xbd\xc3\x74\xc3\x55\x68\x8a\x7e\x41\x65\x30\xc5\x74\x52\x12\x80\x42\x6d\x67\xc2\x4e\x47\xf2\xde\x57\xb0\x1d\xfb\xb5\x8b\xe3\x71\x2f\x8e\x06\x23\x08\x8f\x91\x65\xa3\x8b\x18\xe3\xa8\x4c\xae\xa2\xe8\xbe\xd6\xcd\x39\x0f\xb6\xbc\x9c\x09\xe5\xfd\x1d\xea\x36\xf3\x2c\x38\x04\x92\xa9\x05\xa9\x38\xda\x1b\xc7\x5c\x9c\xc8\xf5\x35\xa4\x35\x9e\xe1\x9d\xcb\x85\xd6\x64\x2e\xb8\xf1\x00\x62\x41\xf1\xc3\x98\xf3\x96\x15\x50\x57\xb4\x4d\x71\x51\x16\xbf\xe3\x35\xdc\x2f\x8c\x06\x45\xaa\xf3\x60\x9e\xf8\x0b\xf6\xd5\x63\x8d\xeb\x4d\xfb\x22\xf4\xbb\x4e\x04\x98\xda\x57\x28\x0b\xc9\x8f\x83\xd3\x34\x05\x17\xcd\x23\xe7\x71\x32\x63\x89\xab\x99\xe3\x4b\xb4\xb6\xae\x66\x99\xe6\x9f\xc7\x6a\x33\x8c\xab\xf9\xe7\x69\x1c\xae\x38\x1b\x63\xf8\x59\xf1\x9a\x50\xb2\x88\x7f\x7d\x13\x45\x2c\x11\x96\xfa\x6f\x20\xe2\x62\x87\xbf\xfa\xd6\x9f\xd5\x97\x4c\x3d\xf2\x4f\x04\xdd\xa4\xc2\x42\x57\x11\xa6\x42\xe1\x54\x2c\xe7\x7c\x11\x07\x06\xfc\xd9\x6c\xff\x8a\x45\xfc\x5d\x90\x72\x86\x2b\xa7\x09\xc3\x90\x86\xd2\x66\x46\x47\xf8\xf8\xb5\x78\xad\x61\x71\x9f\x62\x6e\x7a\x9b\x2a\x51\xbc\x1b\xf3\xce\x79\x3c\xbb\xad\x72\x67\xe1\x27\x17\x41\xe4\x6a\xe6\xf2\x66\xbc\xf4\x67\xb3\x20\xba\x10\x0f\x25\x66\x15\x38\x33\x56\xd3\x5e\x57\xbb\x0c\x66\x33\x16\x8d\xc5\x0a\x9d\xab\x5d\xf9\x89\xde\x6e\xa3\xd3\xd7\x16\xd1\x86\x64\xd0\x7c\xac\xd2\x18\xb7\xaf\xd9\xf9\xb7\x80\xb7\xf1\x54\x95\x18\x21\x2e\x5e\x34\x32\x6e\x2f\xe2\x5f\x1b\xb2\x49\xd1\x43\x50\x5c\xcf\x5a\x5b\x6c\x8e\xa4\xfc\x24\x5e\x7a\x0f\x02\x89\xbb\x3a\x3d\x32\xf5\xc3\xa9\x5e\xa4\x19\x9c\x4a\x60\x74\x5b\x34\xdd\xd0\xfe\xa2\x75\x0d\x92\x6d\xd8\xac\x0a\x1f\x22\x25\xc6\xb8\xbc\x87\x88\xdc\xb4\x61\x78\x7c\xd7\xd4\xc5\x14\xae\x76\x1e\xc6\xd3\x6f\x63\x4d\x53\x1c\xdd\x54\xe7\x58\x5c\x11\xd3\x7e\x14\xec\x3d\xa1\xbc\x73\xc9\xfc\x59\xe3\x96\x50\xe0\xe7\x5e\x9a\xbe\x0b\xa2\x6f\x5f\xeb\xd4\x63\x34\xdb\x06\xc8\xca\xb6\xcd\x84\x85\x18\x2c\x47\x1d\x9d\xab\x14\x11\x6b\x98\xeb\x58\xd3\x44\x5d\xad\xb4\x91\x39\xb2\x8c\x45\x0d\xb8\x6e\xda\xe2\x15\x29\x03\x56\xe8\x94\xc2\xce\x66\x01\x07\xb7\x99\x50\xc2\x93\x15\xdb\x5c\x26\x5d\xb2\x30\x9c\x5e\xb2\xe9\x37\x42\x09\x1e\x39\xdc\x0c\xef\xaf\x78\x3c\x8d\x17\xcb\x90\x61\x10\x88\x78\x3e\x7f\x0c\x3c\xc6\xc7\x7a\x34\xb8\xbf\xe4\x7e\x28\x4e\x33\xe1\x0d\x86\x1b\x4b\x24\xb1\x68\x29\xbb\xe1\xe7\xf1\xcd\x66\x58\xee\x9f\xa3\xd7\x49\x28\x69\x5b\x35\xd0\xb2\x4e\x98\xfa\x09\xe3\x22\xf0\xa8\x2b\x0e\xc3\x0a\x9b\x3e\xae\x88\x74\x21\x76\xac\x9b\x07\x73\x1d\x67\x31\x59\x5d\xcd\xea\x2f\x6f\xc4\xb3\x3c\xff\xda\x0e\x83\x0b\x9f\xaf\x12\x96\xca\x31\x5e\x52\x33\x4a\xb5\xb4\x6f\x5d\x79\x80\x79\xac\x65\x79\x37\x99\xc2\xb9\xbe\x0c\x38\x6b\x63\x65\xae\xb6\x4c\x58\x59\x3d\xad\x38\x8c\x20\x81\x5e\xdb\x0a\x16\xcb\x38\xe1\x7e\xc4\x61\xac\xa0\x32\xa8\x49\xa3\xe4\x42\x85\x27\x75\xad\x2c\x23\x2b\x29\xad\x2c\xcc\x5b\x49\x2b\x3f\x84\x01\x0f\x6d\x57\x10\xe0\xdc\xed\x49\x58\x38\xcc\xe8\xd0\x85\xcc\x50\x89\x49\xde\x93\x91\x2c\xe2\x2b\xf6\x5b\x71\xb0\x68\xf6\x5b\x51\x4c\xfd\x68\x5a\xe0\xcb\xd3\xb1\xe0\x0d\x01\xaa\xf8\x5e\xbc\xbc\x7d\x52\x69\x71\xae\x59\x15\xc7\x59\xee\x93\xca\xcf\x92\x78\x49\x68\xe3\x65\xcd\xcb\x04\xcf\xf0\x67\xc7\x10\xe8\x96\x75\x6f\x64\x82\x58\xc3\xf4\x8d\xdd\xce\xe2\xeb\x28\xa3\xe5\x55\x3c\xbb\x7d\xcb\x6e\x5f\xc7\xd7\x51\x03\x45\x89\x58\x77\x48\x1b\x94\xe6\x2c\xb8\x22\x55\xa8\x4e\x30\xf3\xc4\x92\x8c\x9b\xc4\xd7\x6d\xf0\xd5\x52\x52\x85\xa9\x68\x82\xca\x80\xcf\x7d\xa6\x79\x70\xc3\x66\x75\x57\xa0\xd1\xc4\x83\x7e\x6a\x30\xf1\x98\x4d\x2a\xcc\xad\x8e\xcd\x8c\x32\xd9\x1a\x1e\x2f\x85\x87\xfa\xca\xbf\x68\x36\x16\xf8\xb6\x7d\xee\x5f\x90\xa6\x22\x0f\x34\xb0\xd6\xa0\x47\xd9\xe1\x9a\x3e\x92\xad\x12\xf1\x45\x8a\xf4\xd6\xe9\xc9\x37\x34\xe7\xe4\x1e\xc4\xe1\xac\xb1\x71\xf3\x38\x9c\x91\x0a\x5c\xa1\x5b\x79\xbc\x44\x90\xf6\x3c\x4e\xc0\x0b\xc9\x2f\x28\x21\x95\x32\x9b\xb9\x50\x93\x8a\x5a\xb7\x28\x44\x46\xb1\xa1\x92\xec\x52\x45\xb5\xe6\x15\x40\x0b\x94\x8b\xdc\xcd\xc4\x6f\x20\xa7\x80\xd4\x28\xae\x8b\xed\x26\xcc\xdf\x3c\x3a\x0a\x70\x05\x72\x44\xae\x9f\x30\x9f\xd4\xc1\x2a\xbc\xc3\xe0\x30\x41\x18\xf0\x5b\x25\x34\x0f\xc9\x74\x01\x99\x21\xbf\x71\x92\x4b\xce\x97\xe5\x3b\x2f\x6d\xd3\x34\x9f\xa7\x57\x17\x44\x6e\x72\xbe\x52\xf2\x03\xf3\xa4\x4d\xd3\xa2\x0f\xc7\x7a\x40\x09\x94\x54\x6d\xbc\xba\x28\x36\xee\xd7\x38\x5e\xb4\x45\xbc\xa4\x38\x21\x05\x90\xb2\xc3\x70\xb3\x08\xa3\x94\xd0\xc0\x58\x0b\x21\x2f\xbf\x20\x94\x58\x1d\xab\x54\x59\x85\x45\x0d\x53\x2d\x1e\x2f\x61\x46\x16\xb2\x39\x87\xbf\x6b\x99\x88\xba\xf9\xc4\x4f\x2e\x58\x93\x9f\x09\x2a\x04\x7b\xc9\xa8\x43\x17\x5a\x5c\xbc\x99\xa5\xcd\xf1\x75\x03\xfa\xc7\x38\x4c\x65\xf8\x07\x5b\x99\x39\x37\xcb\x9b\xcc\x47\x59\xde\xa8\x56\x2f\x6f\xc6\x32\x04\x91\x78\x88\x97\xfe\x14\x39\x60\x36\x51\x27\x3d\xdc\x7d\xe9\xe1\x66\x4b\xb7\x6b\xc5\xac\x58\xba\x89\xfc\x06\x63\xcc\x6e\xf8\x9b\x68\xb9\x52\xdc\x11\x91\xba\x0e\xf3\x42\x27\x0a\xa0\xc9\x1a\xe1\x24\x35\x3b\x3d\x56\x9f\xf9\xa7\x8c\x1f\xc4\x11\x3f\x40\x7f\xb1\xe9\x74\x69\xd9\x1b\x9d\xe7\xb0\xac\xc9\x5b\x15\x96\x06\x30\x1e\xab\x18\xfa\x1e\xbf\xbb\x53\x27\x13\xf1\x40\x5b\xf1\x2b\xc1\x06\xca\x2e\x9a\x29\xab\x1c\xa9\x5e\x43\xdd\xa6\xf6\x7e\x12\xf3\x9c\x4f\x49\x58\x3e\x96\xbb\xa3\x3f\x34\xef\xba\x4c\xd8\x9c\x50\xd6\x34\x41\xcb\xd7\xd7\xe4\xbe\xed\x7c\xb2\xbb\x71\xb6\x85\xa5\x0d\xb9\x1d\x7f\x0d\x46\xb9\xf3\xaf\x82\xb1\xb4\x87\xaa\x86\xf1\x11\x0c\xc0\x01\x52\x5b\xf0\x29\xce\x02\xcb\x7b\x59\xd7\xa2\xc4\x55\xac\xda\xc1\x43\xb5\xe2\x81\x6f\xf5\x8a\xbf\x26\x33\x37\x77\xbe\xba\x0e\x01\xf7\x91\x3f\x4e\x02\x70\x7a\xf4\xff\x91\xf7\x6e\xcd\x8d\x2b\xeb\x62\xd8\x53\xca\x6f\x49\xa5\xf2\xe2\xca\x79\xa1\x70\xf6\xd1\x02\x16\x41\x0e\x40\x49\x73\x21\x07\xa3\x4d\x51\x97\xa1\x34\x92\x46\xa4\x44\x8d\xa8\xd1\x9e\x05\x92\x4d\x0a\x43\x10\xa0\x1a\xa0\x44\x69\xa4\x6d\x57\xca\x76\xe5\x24\xb6\xe3\xa4\x5c\xb6\x2b\x39\x89\x9d\xe4\x38\xc7\x4e\xb9\x52\xb6\xeb\x54\x6e\x3e\x4e\xaa\xf6\xca\x7b\xfe\xc3\xfe\x25\xa9\xbe\x01\x0d\xa0\x1b\xe4\xcc\x5a\x7b\xfb\x54\x65\x6a\x69\x91\x04\xba\xbf\xfe\xfa\xeb\xdb\xd7\xdf\x35\x7f\xb2\x4b\xa0\x02\xe1\x7c\xc7\xf0\x72\xba\x3e\x02\xe1\x56\xd2\xde\x7d\x39\x3c\x53\x46\xf2\x79\x18\x4b\xe1\x8b\x31\x4e\x41\xce\xc1\x3d\x01\xbb\x39\xb1\x47\x02\xf1\x9f\x0c\x36\x29\xbe\x24\xec\x64\x4c\x8a\x45\xa0\x71\xe9\x25\x21\x0b\xfc\x51\x17\x40\x8f\x6a\xe4\xb6\xd0\x88\x35\x6b\xd9\xd8\x12\xf1\xbb\xdc\x79\x41\x24\x94\xe9\x78\x1c\xcc\x49\x6c\x04\xc2\x86\xeb\x00\x2f\x8c\x63\x72\xb0\x1b\x2f\x35\xdb\xfa\x42\xcf\x29\x50\x26\x5f\x74\x72\x56\x81\x32\xfe\x8c\x2c\x91\x45\x1a\x42\xb9\xa0\x37\xc2\x2b\x37\xfe\x46\x02\x7b\x55\x23\x2d\x2e\x86\x99\x1f\x19\x24\x0d\x94\xf4\x2a\x0f\x2a\xe3\xa4\x64\x10\xa3\x0d\x71\x31\x6a\x58\x3f\x91\xbf\x32\xa5\x40\x20\x40\x33\xc2\xee\x5f\x03\x91\x73\xf5\xb7\xe8\xa2\xf3\xa6\x5e\x2b\x56\xac\x0b\xa2\x4e\x44\xa8\xa8\x39\x7a\xf8\xa0\x7f\x0d\x06\x33\x17\xb4\xc0\x00\xda\x77\x39\xbb\x6c\x1c\x05\x21\xa1\x60\xa4\xaa\x25\x90\xba\x35\xf0\x06\x8c\x80\x9a\xe9\x72\x3c\x7e\x2d\x36\x7f\x49\x94\xa4\x07\x19\x65\x0f\x53\x7e\x96\x3a\xb0\xc2\xa7\x1c\x5a\x21\x5a\xd6\x92\xe6\x31\xa7\x38\xe4\x07\x56\xc2\xa8\x91\xaf\x1c\xda\x87\x31\x2a\xd1\xab\xc8\x66\x1d\xda\x77\x1d\x12\x2a\xb2\xe5\xdf\x05\x9f\x54\xa8\x3b\x39\xa7\x23\x25\x5d\x53\x48\x19\x6c\x09\x79\xcd\xeb\xd0\x39\x12\xb2\xb5\x8d\x0a\xd4\xa4\xa5\x2c\x2e\xae\x12\x07\x99\x58\xc5\x17\x80\xb0\x8e\xce\x8f\x14\x1a\x4e\x23\x47\x95\x43\x19\xba\x65\xf6\xdc\x21\x2b\x07\x8a\xca\x74\xfe\xed\x2c\x9a\x24\xe6\x10\x4e\x20\xdb\xf4\x42\x35\xa7\x69\x39\xec\x09\xb0\x83\x19\x04\x09\x54\x04\x0b\x02\x5b\x93\x30\x23\x19\x6a\x5b\x92\xe2\x96\x72\xa4\x30\xb8\x3c\x2f\x82\x41\x0f\x4a\x71\xfe\x6f\x4e\xe1\x43\xcb\xfe\x0c\x97\xa8\xe8\x02\x62\xcf\x42\x9f\x93\x85\xb2\xcb\x48\xfa\x31\x8f\x40\x7b\x6a\x7b\x8b\x3a\x18\x4c\x6d\x2f\xd1\x43\x5c\x29\xd3\x4b\x54\xac\x74\xe7\xc3\xb1\x8d\x0f\xc6\x4c\x2b\x5c\x60\x11\x55\xf9\xa0\x94\x21\x98\x02\x3b\x54\x4d\xc3\xd0\x8a\xca\x47\xa8\x68\xfc\x93\x04\x8d\xb2\xf2\xa2\x08\x28\x5f\x70\xcb\x0e\x80\xeb\x78\xe0\x67\xea\x4f\x8f\x82\x53\x44\x4d\xa4\x67\xbc\x62\x44\x13\x3e\x55\x30\xa1\x36\xfa\x20\x68\x37\x86\x74\x4e\xce\x3b\x10\xdf\x6f\x72\xa4\x21\x84\x36\x4c\x45\x28\x64\x00\x78\x32\x41\xde\x7e\x2a\x24\x27\xf0\x33\xd3\x30\xb0\xf6\x06\x35\x8b\x7e\x24\x5d\xbd\x72\xa9\x1f\x75\x50\xd3\x61\x99\x91\xca\x12\x11\xc0\xc7\x1a\xfa\x53\x7f\x9a\x18\xd3\xcc\x6d\x23\x0d\x35\xd5\x7f\x71\x79\x56\x4e\x20\x2d\x91\x68\x01\x6e\x47\x18\xe3\x07\xdf\x9f\xec\xda\x38\x2a\x62\x2c\xd0\x88\xb8\x1f\xdb\x05\xf9\x70\x33\xd8\x50\xb8\xf2\x5d\x34\xbd\x0b\x66\x8f\xfe\xc4\x5b\xfc\x48\xb4\x65\xa9\xcb\x5e\xc4\x49\x01\x19\x87\x91\xb1\x01\xe3\x26\x10\xe7\x13\xcf\x58\xc8\x52\x62\xcb\xed\xc7\xc5\xe2\x3d\x9e\x40\x24\x2c\x5b\x74\x3b\xbb\xf7\xfa\xf4\xfc\x0d\xb6\x9d\x09\xf0\x70\x1a\xd5\x4f\x34\x3c\x0e\x7f\xb4\xd1\xa0\x85\xb1\x52\xfc\x4b\x6c\x6e\x83\xef\xb2\x4f\x3a\xd7\x13\x40\xa5\x6b\x2d\xff\xee\xd4\x27\xe7\xb4\x0a\x12\xac\x0b\xb6\x98\xa5\x66\x74\xaa\xa6\xe9\x20\xcb\xc4\xe4\x1c\xda\x62\xb4\xb3\x6c\xb7\x88\x0f\x25\xfd\xc9\xd8\x05\x52\x36\x5b\x66\x1a\x18\x31\xe5\xf8\xfd\x6d\xc4\x5f\x90\x78\x74\x4e\x79\x58\x0e\x26\x36\x0c\x77\x5d\xdf\x87\xdb\x0e\xea\xa3\x9a\xac\x92\x98\x3e\x65\x26\xb3\xe6\xec\x07\x52\x30\xbf\x97\xd6\xaa\xa5\x8a\x9f\xfa\xd3\x43\x6c\x3e\xc0\xac\x11\xe3\x57\x84\xf4\xf4\x2d\xab\x5f\x0a\x85\x62\x68\x62\x82\x40\xd5\xf2\xb2\x26\x30\xdf\xc0\x05\x40\x30\x58\xac\x97\x08\x58\xda\x07\x27\xa8\x69\xb0\xc8\xcf\x5e\x3a\x03\x03\x4d\xc7\x66\x4a\xa9\xe2\xa9\x5d\x85\x0a\x99\xf0\xdd\x85\x7e\x72\xac\x4b\xba\x1c\xe9\x9f\x15\x16\x61\x4e\x21\x74\x4e\x5b\x89\xe5\x42\x36\xc0\x77\x60\x18\xe6\x54\x0b\x99\x51\x43\xb2\xd6\xa9\x3f\x2d\x91\xd6\x72\x67\x2b\xbf\xf8\x32\x4b\x3e\x69\x52\x9a\xe1\xf2\x93\x4b\x45\x26\x09\x67\x7d\x97\xcd\x9a\xef\xb3\x4d\x15\xa5\xa3\x9c\x33\x8d\x16\xf4\x35\xb1\x88\x17\xb0\xd2\x10\x17\xca\x63\xa3\x49\x89\xe5\x59\x68\x52\x5e\x07\xf4\xcb\xa7\x45\xbc\x33\x2d\x96\x19\x11\x7c\xed\x8a\xd4\x43\x68\x43\x4c\x99\x05\xe3\x41\xe5\x77\x51\xd1\xee\x2a\xbc\x2c\x7e\x79\xaa\x25\xf7\xa6\xe4\xf5\x26\x94\x5d\x6f\x00\x77\xbd\x39\xa5\x8b\x4d\x65\x92\x49\xf4\x70\x2b\xbe\x99\xa9\x21\xf7\x3c\x71\x17\x02\x91\xcb\xbc\x74\xeb\xcf\xbb\xc9\x4a\xbb\x95\xd3\x61\xde\x6a\x92\x37\x7a\x16\xf6\x3f\x3d\xf3\xf0\x44\xa5\xf1\x6f\x12\x73\x57\x6e\xd9\xc6\xd1\x27\xed\xb0\xb1\x92\x1e\x44\x6a\x00\x4a\x25\xb8\xd9\x17\xb1\x35\xa4\x05\xb4\xd4\xb6\x10\x5b\x15\xaf\x24\xb7\x40\x2a\xbd\xe5\x34\xbe\xbc\xc3\x6d\xa2\x68\x7a\xab\x89\x61\x52\x4b\x49\x01\xd2\x9c\xa9\x62\x06\x6f\x62\xbe\x9a\xc5\x5a\xd0\x33\xee\xca\xfe\x53\xf1\xcf\x87\x4e\x4d\x47\x87\xd4\x9d\x20\x8b\xed\xef\x04\x93\x2c\x6c\xad\xb6\x3c\x29\xd2\x70\x6a\xe9\xc1\xcf\xf2\x97\x0b\x68\x80\x1d\xdd\x16\xcd\xa0\x2c\x90\xc5\x0d\x0b\x27\x4f\x8e\xe1\x67\x72\xa7\x58\xb4\x42\x48\xf7\x17\xcd\xb3\xd7\xd9\xd5\x81\x16\x2b\xdf\x35\x4e\x6e\x94\x19\xd5\x5c\x45\xf2\x37\xad\x83\xcc\xfa\x8d\x30\xe4\x15\xdf\x8b\xc7\x7d\x89\x09\xc8\x01\x14\xcf\xc1\xf4\xfc\x5f\x16\x03\xd6\x87\x9f\x86\x03\x83\xf2\x97\x6f\xf6\xa7\x67\xc8\xd7\xb7\x2a\x80\xb5\x60\xe6\xf3\x67\x61\xda\x61\x84\xb9\x36\x40\xde\x33\x75\xc5\x0a\x99\xef\x29\x8d\xf9\xbe\xed\x0c\xb0\x25\x36\xf0\xfa\xe8\x20\xc2\x09\xa2\xe0\x08\x84\xd8\x14\x5b\xc1\xd1\xdd\x2c\xcb\x49\x4c\x61\x52\x71\x87\x55\x00\x03\x96\xf2\x66\xe8\xbb\x03\x96\x56\x38\x01\x85\x7a\xae\xa4\x7d\x9b\x75\x28\x8b\xa9\x00\xb5\xa7\xa7\xd8\x13\x18\x51\x47\xf7\x65\x13\x8a\xb1\xec\x69\x82\xeb\x5e\x66\xa9\x32\x1f\x3d\x91\x48\x58\x77\xe3\x90\x1b\xa2\x53\x3b\x2b\xae\x4e\xdf\xf9\xae\x2d\xa3\x76\xfd\xda\xad\x5d\x33\x0f\xd7\xbe\x05\x8a\xd7\x38\x1c\xd7\x8a\xe5\x69\xe8\x93\x33\xc5\xef\xa3\x07\xfe\xea\x6a\x6c\x9e\x6f\x59\x7d\x0d\xaa\xb6\xee\x6b\x38\xc8\x57\x42\x08\x4d\xbd\x15\x82\xd5\xd5\x20\x53\x3e\x40\xe5\x03\x61\x79\x7b\xc5\xf2\x57\x57\xed\xc8\x7b\x91\x46\x5f\x18\x82\xb0\x7f\xcd\x82\x1f\xa8\x7d\xe2\x89\x30\xd3\xbe\x30\xab\x7d\xd7\x1f\xa9\x4a\xc3\x9f\xb9\x03\xef\xbb\xb0\x80\x4b\x63\xf3\x7c\x6c\xba\x50\x2d\x28\xc5\xbe\x56\xc3\x59\x34\x9f\xec\x15\x6b\xb6\x99\x9e\xbe\x89\x15\x3d\xd3\x6d\x4d\x9f\x65\x23\x44\x88\x17\x82\x8d\xfa\x92\x28\xad\x55\x6d\xcb\x4e\xb8\x1f\x45\x3b\xa8\x2a\xe9\x8e\xf6\x2d\x3d\x59\xd4\x07\xe2\xd7\x90\xc2\xa5\xf6\xef\x08\x17\x44\xf7\xec\x39\x84\x26\x83\x97\x2b\xa1\x49\xdc\x02\x32\xd7\x84\xa4\x0d\x19\xaf\xbf\x57\x05\xef\x53\x71\x55\x72\x21\x64\x37\xbb\x44\x49\x4d\x13\x9b\xb6\x09\x70\xc8\x14\x11\xa1\x91\x03\x27\x8b\x49\xba\xb0\x26\xa7\x60\x1f\x5d\x01\xa2\x88\xae\x59\xcd\xaa\xe0\xbe\x70\x09\xa2\xf5\x7a\x95\x67\x82\xc0\x4f\x9b\x6c\x5c\xa1\x48\x4e\x6a\xc9\x6f\x33\xab\xab\x71\x42\x12\x61\x81\x4d\xf9\xab\x4b\x70\x55\x95\xed\x6f\xd8\xce\x0e\xe4\xdc\x01\x59\x60\x27\x9e\x38\xf8\xca\x96\xa3\xe3\x41\xc4\xae\xbb\x6e\x46\xc4\x85\xa3\xc0\xad\xc8\x77\xe9\xd8\x89\xeb\x4b\x7c\x08\x4b\x85\x35\x0b\x8f\x5c\x59\x4d\x8d\xc5\xfe\x4e\x2e\x67\x23\x6b\xfd\xca\x2f\x4d\x90\x14\x44\x2d\xba\x99\x3e\xd1\xa0\x7d\xd2\xce\x12\x71\x9a\x0e\x17\xc9\x50\x4a\x66\xe4\x03\xc8\x73\x63\xe9\x88\x33\xf1\xd9\x03\x79\xea\x49\x18\xb8\xc5\xc4\x93\x54\xd4\x6a\xa1\x88\x76\x30\x43\xbb\x04\x9f\x4c\xa9\x11\x66\xb6\x35\x69\x37\xf8\x40\x2e\xb1\xee\x25\xed\x1b\x19\x47\x12\x06\xba\xa1\xe9\x4e\x19\xcc\x43\xe0\x0d\xd4\x50\x0f\x05\x7e\xb1\x62\xb1\xc8\x02\xf5\xbc\xef\xba\x87\xf6\xfc\x93\x28\x4f\x40\x56\x4e\x98\x16\x77\x65\x44\x04\x4b\x49\xad\x4a\x72\xc0\x58\x7e\x9e\x23\xd0\x8a\xe4\xd8\xa7\xfe\x54\xa0\x60\x95\xc8\x7e\x92\xb2\x0e\xb0\xb4\x5c\x83\x4a\x84\x81\x5c\xfc\x2b\xed\xbf\x0e\x79\x79\x37\x25\xb2\xaa\xd5\xc2\x37\x10\x1d\x06\x16\x4c\xbb\x9b\xe0\x42\xa7\xfe\x74\xc5\x0a\xa3\x78\xc2\xe9\x77\x2c\x50\x7d\x5a\x3a\xbf\x14\xc5\xa8\x30\xf9\x2f\x33\xd1\xf2\x26\x4d\x4d\x0d\x4b\x5f\x29\x9b\xd7\x70\x64\xf8\x38\xde\xfb\x57\xd2\x3a\x77\xe5\x70\x82\x32\x81\xf2\x1d\xf3\xe2\x58\xb1\x2b\x81\xfe\x4c\x8e\x74\xae\xb5\x5b\x42\x0c\x29\x5a\xb3\xe2\x71\x2a\xa5\x23\x09\x70\x71\x18\x99\xd3\x8e\x2c\x1e\x60\x46\x63\x43\x35\x00\xf1\xd0\xf3\xaa\x9b\xd5\x55\xa6\x22\xcd\x14\xa0\xda\x1b\xc6\x70\x33\xa1\x30\x15\x71\x32\x95\x16\xf3\x28\xca\xa8\xb4\x98\x99\xe6\x42\x5d\x5e\xc2\x8b\x28\xd1\xab\xe5\xaa\x64\xe4\x30\xb8\xd9\x44\x11\x1a\x24\x8b\x26\x56\x7c\x4f\x3c\x5a\xc0\x20\x41\x37\x2e\x0c\xc5\x36\x70\x43\x1b\xd5\x81\x96\x78\x3a\x94\xc2\x1a\xc4\x93\x15\x5a\x86\x96\x8a\xf1\x95\xd8\x3e\xe0\x1b\x07\x97\x72\x34\x1d\xae\x48\x80\xc9\xa7\x34\xd4\xb3\xee\x37\x79\xc6\x2c\xa9\x1e\x08\x38\x3b\x92\x68\x59\xc5\x81\x25\x43\xfb\xd0\x1f\x00\xed\x4b\xdf\x0e\x40\x01\xd7\xc2\xb6\xd4\xe5\xed\xe3\xc3\x4f\xdb\x3b\xef\x4e\xeb\x9f\xde\x37\x3f\xec\xbc\xab\x86\x16\x2d\x7e\xf1\x7d\x9a\x50\x5c\xbc\x0e\x72\x99\xa8\xc9\x81\xbd\x6b\x1e\xed\x64\x60\x09\x55\x74\x8b\x20\xbd\xaf\xef\x2d\x07\xe9\xfb\x04\x5d\xa3\x6c\x5c\x6a\x1c\x83\xeb\x7b\x39\xdb\x48\x9d\xb8\x96\x9d\x90\x34\x46\x89\x78\x2a\xe2\x97\xf9\x93\x50\x87\xba\x23\xd8\x20\xbe\x38\x83\x2a\x28\x3b\x03\xe0\x85\xce\xd0\x01\x50\xbf\xaf\x02\xaa\xa2\xbe\xd0\xe7\xd1\xf7\x0f\x4f\x4f\xf1\xd8\xe2\xf4\x83\x78\x58\x79\x3f\xbb\x2a\x16\xa2\x59\x46\x2d\xc4\x91\xb2\x70\x96\x4e\x8c\x57\x1c\x2d\xab\x58\x0c\x35\x68\x39\x6a\xfa\xfd\x65\xc8\x52\x0a\xc6\xd1\x58\x2e\x61\xd9\x19\x5c\x59\x90\x1b\xad\x84\x27\x5c\x35\x7e\x02\xbc\xc1\xb2\xad\x53\xb5\x54\xba\x2d\x01\x42\x1c\x4d\xae\x32\x38\x60\xa7\xc0\x2a\x89\x19\x41\x42\x96\xfe\x84\x8e\xfb\x45\x4b\xd8\xf7\xf2\x7d\x09\x96\xef\xa5\x74\xf1\xbf\xb7\x68\xfc\xbf\x40\xb6\x8b\xf8\xb5\x00\xef\x22\x01\xdb\x45\x3c\xf1\x2e\x12\xbc\xf1\x70\x29\x4f\xd3\x83\xaf\xdf\x45\x02\xed\x29\xbb\x8d\xc8\x77\x91\xc8\x57\x5f\xcc\x7a\x7c\x9b\xbd\x06\x71\x69\x5c\x76\x2d\x61\xf7\x47\xc9\x52\x42\xef\x24\x2b\x89\x91\xe0\x2b\x15\x90\x02\xa1\xf1\x8a\x44\xdb\xc2\x6e\x03\x25\x99\xe0\x36\x12\x99\x57\x34\x2d\x7d\x2a\x27\x75\x95\x50\xa6\xab\x0c\xb9\x18\x2b\x39\x0d\xd0\x00\xae\x4e\xcd\x11\x0b\x24\xb9\x92\x9b\xf9\x05\xaa\x8b\xef\xbf\x22\x79\x0b\x2f\x0a\x91\x5d\x19\xb1\xdd\xdf\xc2\xbe\x14\xcd\xc8\x45\x6b\x81\xb6\x2a\x6e\x7e\x29\xe5\xd9\xa2\x2b\x71\x96\xce\x69\x1d\x20\x8b\x11\x57\x93\x0a\x84\xb9\xb2\x69\x3a\x0b\x3a\x5a\x5d\xfa\xc2\x59\x34\x25\xd2\xa5\xe5\xe9\xee\x4b\xf4\x7a\x91\x54\x63\x31\xcd\xd3\xad\x4b\xb4\x34\x4f\x79\xdb\x09\xef\x01\x2c\x5c\xd4\xb1\x8f\x00\x5b\x32\x24\xf0\x5f\x79\x08\xfd\x09\xda\x6f\x1a\x58\x28\x54\xbe\xbb\x76\xfa\xd7\x5a\x39\xf4\xdf\xf9\x77\x00\x36\xec\x00\xb1\xb7\x68\xcf\x0e\xa1\x7b\x00\xee\x1f\x1f\x41\x79\x02\x42\xfb\x00\xdc\x6b\xab\xab\xca\xad\x62\xa1\xeb\x02\xe1\x56\x79\xa7\x31\xe6\x4d\x93\x83\x32\x71\xa0\xce\x6e\x80\x22\x38\x9c\x19\x52\x4d\x6c\x6b\x11\xc6\xdc\x32\xf5\xd3\xfe\x82\x06\xb1\x1a\x26\xe1\xdd\xda\xee\x0c\x60\xd7\xea\xec\x63\x2c\x6c\xcc\xfa\x03\x19\xf2\x1d\x37\xc7\xf1\x2d\x95\x5f\x31\x08\xfd\xe9\x7b\xe8\x4f\xed\x91\x4d\x10\xce\xb3\x96\x8e\x4c\xeb\xa8\x36\x68\x91\xd5\x34\xf3\x46\xbe\xb0\xc0\x26\xbb\x2b\x54\x15\xea\x1f\xb9\xb8\x21\xc2\x65\xfa\xb7\x80\x72\x9a\x22\x33\x7f\x49\xfc\x38\x90\x0a\xee\x87\x9d\x93\x02\x9a\x87\x37\x93\x2a\x9a\x3e\x87\x20\xf0\x67\xb0\x0f\xf8\x74\xbd\xc9\xc8\x80\x2c\x35\x78\xf4\xe0\x78\x8a\xb0\x09\xe2\xd0\x81\x02\xd0\x34\x8a\x20\x09\x02\xc2\xfd\xa4\x3d\x5f\x2a\x09\x30\x7b\xdc\x39\xc5\x91\x08\x4f\x69\x9a\x6d\xc1\x24\x85\xfe\xd0\x71\x41\x73\x90\x74\xae\x70\x26\x36\xbc\x6f\xd3\x10\x25\x51\xf0\x40\x00\x3c\x52\xc0\x76\x43\x00\x3d\x3b\x04\xf2\x22\x51\x7c\x93\x2c\x40\xbe\x40\x3a\x9e\x61\x9c\x00\x92\x0f\x7a\x97\x0e\x5f\xc8\x07\x2d\xe4\x83\x91\x45\x29\xa2\x97\x09\x29\x94\x5b\xfd\x2b\x62\x5f\x88\xaa\x2f\x1d\x62\x21\xaa\x4c\x99\x1e\x8e\x71\xe1\x2b\xc4\x36\xb8\xc2\x10\x84\xa9\x4c\xcc\x3c\xf4\x9e\xdd\x1f\x13\x2d\x2c\x4b\xf9\x1c\xda\xbd\x76\xe8\x4f\xb9\x27\x94\x37\x3a\xa5\x2f\x22\x57\xdb\x5b\xba\xb0\x4e\xfd\x29\xdf\x2e\x7b\x4c\x78\x91\x65\x73\x73\xb6\xaf\xed\x29\x20\x61\xde\x69\xce\x77\xee\x79\x79\xeb\xdd\x71\xe3\x80\x2f\x8e\x5d\xec\xb2\x50\xb6\x5c\xc7\x1b\x37\xee\xfb\x2e\xf8\x64\x5d\x9a\x86\xa1\x9b\x86\x41\x7b\x31\xb9\x3f\xf6\x1a\x71\xa1\x4f\x11\x2d\xb9\x67\x19\x92\xa6\x7c\xfa\xf8\x06\x87\x49\x7f\xc6\x44\xd0\x4a\xdc\xff\x63\xef\x78\x16\xe2\x3d\x32\xfb\xe6\x00\xdc\x07\x21\xf4\xc7\x20\xfb\x12\x6f\x3e\x75\x08\xfd\x3b\x54\x28\x31\xa0\x60\x08\xec\xf0\xd0\x9f\x05\xa0\x05\xa6\x3e\x0c\x83\x4f\x51\xf8\xc9\x1e\x70\xdd\xfa\x6c\xe0\xf8\x8b\x6c\xfa\x6d\x54\x88\x19\xd7\xc7\xb5\xf8\xe0\x03\xc0\x75\x4b\xa4\x58\xa6\x54\xd2\x2b\x77\x0a\x81\xeb\xdb\x68\xfb\xb2\x67\x61\x02\xe8\x91\x8f\xae\x53\x7d\x7c\x08\xbc\x73\x82\x90\x9f\x4c\xc1\x38\xf4\xa7\x7c\x81\x2d\xe0\xba\x71\x4f\x02\xfb\x16\x0c\xe8\x46\xc8\x45\xca\x64\x0f\xc8\x5a\xa7\xef\xe9\x8c\xcd\xc4\xd5\xbc\x65\xf9\xf5\x3b\xa7\xfc\x68\x8e\xe9\x7e\x4b\x5f\xb2\xed\x97\x2f\xe2\xf8\x51\x32\x73\x3a\x0d\x9b\xc7\xfc\x7b\x80\xc3\x90\xe2\x31\xd8\x86\xf6\x88\xcc\xf4\x38\x6e\xa8\x3f\xbd\x3f\xf6\x08\x8b\xc3\x0d\x1c\x8e\xfe\x85\x03\xea\x36\x5c\xa7\x3f\x26\x2e\x8c\xa9\xd7\xf8\xe1\xd6\x2c\x0c\x7d\x8f\x7b\x85\x9a\x21\xab\x8f\x04\x47\xc3\x9b\x00\xa3\x14\xce\x56\x1b\xe9\x0c\xea\xc3\x10\x40\xf2\xde\x60\x37\x29\x1c\x3b\x09\x6d\x9c\x9f\xd4\x97\x86\x5e\x59\x8f\xae\x29\xec\xf2\xc6\xd6\x74\x7c\x81\x09\xdf\x93\x2d\x5f\x05\x8f\x8f\x0a\x5d\xf9\x8a\x9e\x56\xb8\xfa\x1e\xa3\x4f\x0b\xd8\x83\x7b\x55\x7b\xe2\xb7\xaf\x27\x5d\xbc\x8c\xad\x2f\x78\x1d\x57\x15\xfc\xa1\xe8\x5b\x3b\xf5\xc3\xaa\x82\xfe\xaf\xe8\x67\x47\xdb\x3b\x2d\x2c\xd7\x51\xa2\xaf\x4a\x02\x50\x42\x42\xc2\xb7\xce\x0b\x61\x25\x35\x42\xbb\x47\xfc\x2e\x5f\x8a\xdf\xc7\xfd\x16\x79\xe2\x73\xa7\x20\x28\x43\x30\x75\xed\x3e\x50\x9f\x7d\x7c\xf6\x6c\xa4\x2b\x0a\x9f\xc1\x96\x9a\xe8\x43\x30\x0c\x98\x72\x91\xfc\x28\x0f\x80\xdd\x0f\x9d\x5b\xec\x46\xa6\x73\x2f\xe8\x6c\xcb\x1c\xf4\x6a\xaa\xe1\x44\xa5\xb2\x3d\x18\x1c\xb3\xd0\xb1\x38\x3a\xb7\xfe\x45\xb1\xdd\xb0\x34\x82\xa5\x89\x3f\x00\x4a\x35\xc1\x95\x59\x24\x14\x3e\xd8\x54\x80\x57\x9a\x05\x8a\x65\x79\xf6\xad\x33\xb2\x43\x1f\x96\x5d\xdb\x1b\xcd\xec\x11\x48\x72\xc2\x9b\x24\xda\x56\x55\x81\xd8\x4e\xdd\x76\x43\xa5\xaa\x90\xe0\xcb\x88\x13\xbe\x9f\x02\x7f\x58\x00\x9b\xa9\x5a\x55\x52\x4b\x7f\xf6\x2b\x15\x7d\x79\xc4\x71\x26\x6c\x37\x7c\x74\xc1\x10\x03\x79\x8c\xc0\x69\xbf\x78\x56\x0e\x41\x10\xaa\x40\x7b\x7c\x54\x81\xc5\xa2\x7b\xc1\x68\x8d\x22\x26\x62\x0f\x1e\xfa\x03\xec\xec\x8b\x7b\x87\x36\x63\x1c\x55\xa6\xe4\x04\x25\xc4\x9d\xc7\x4f\x92\x3d\x4e\x42\xd9\x62\x85\x9a\xc1\x21\x08\xed\xe8\x67\x04\x97\x42\xcb\x83\x41\xaa\x46\x35\x02\xe0\x0d\x82\xd2\xdd\xb5\x1d\x26\x2b\x3d\xfb\x95\x0a\x82\xbe\x3d\x05\x8f\x2f\x4b\x3d\x27\x7c\xec\x41\xff\x2e\x00\xb0\x34\x06\xf7\x99\x1e\x93\x82\x99\x3e\xb7\x11\xe8\xf3\x6b\x3b\x24\x8d\xcd\x06\x88\x33\x2e\xe1\x3d\x39\xc0\xde\x62\xd5\xac\xac\x1e\xb0\xa0\xe6\xbf\x72\x9d\x5e\x89\xf1\x9d\x55\xf5\x63\xbb\xa8\x3d\xd3\x6a\xe1\x26\x94\xef\xe1\x01\xec\x2b\x88\xb9\xa5\x95\xb0\xf7\xaf\x1d\xda\x67\xd0\x55\x43\x1c\x91\xbd\xba\xa8\x32\xd0\x9e\x74\x85\x6e\xeb\x25\x8f\xdb\xd7\x31\xd6\xa9\xb9\xb8\xba\xca\xef\xfc\x9b\x2a\x94\x1f\x08\xca\x08\xda\x5e\x08\x06\x8a\x65\x59\xfc\xdb\xf2\x14\xad\xdf\x00\xdd\xbc\x75\x79\xf5\xc7\xc7\x64\x0a\x58\x29\x82\x05\x27\x28\x84\x70\x06\x0a\xbd\x59\x58\xb8\x03\x85\x81\x8f\xcd\xca\xae\xed\x5b\x50\x88\x5b\x2a\x84\x3e\x8b\x60\x58\xe0\x41\x04\x65\x05\x93\x28\xe7\x58\x7b\xd2\x95\x98\x8d\x20\x61\xe4\xd2\x53\x2d\x1b\x6c\x00\x27\x71\xe2\xeb\x39\x13\x7b\x94\x99\xe6\x09\xf6\x32\x13\x54\x20\x03\x03\xb3\xbc\xcb\x82\xc0\xfc\x76\x1a\x02\xf3\xba\x5c\x1a\x4a\x94\x10\x33\x82\x44\x56\x30\x59\x41\x8b\xd7\x6f\x54\x02\xaf\x8b\xe4\xda\x8d\xbd\x45\x27\xf6\x14\xa7\x9f\x80\xce\x00\x04\x49\x58\x74\xef\x7b\x7c\x04\x05\xc7\x0b\x42\xdb\xeb\xa3\xbd\xeb\xb8\xf7\x19\xf4\x43\x34\xfd\x6e\xc3\x58\xdc\x7f\x68\x4f\xa9\xc4\x4f\x45\xcb\x32\xf3\x2a\x00\xe1\x31\x6b\x45\x05\x9a\x56\x4d\x4e\xb1\x78\x13\x2f\x24\x51\x9b\xf8\x83\x78\xc2\xb0\x08\xb2\xb6\x57\xf0\x31\x16\x24\x4f\x36\xea\x0f\x09\x0f\xda\xc3\xb1\x28\xb3\x33\x84\x63\x54\xd5\x95\x95\x4c\x8d\x52\x1f\xb1\xbd\xa9\xe5\xc6\xf7\x19\x27\xb2\x5e\x5d\x55\xbc\xd9\xa4\x07\x20\xb7\x8f\x5f\x1a\x57\xc2\xc7\xe6\xd5\x26\x14\xf0\xd5\xa0\x2a\x7a\x9a\xad\xbf\x79\x09\x74\x70\x55\x8d\xd8\xf0\x18\x5f\xd9\x1a\x68\xc4\xac\x3d\x99\x2f\xb8\x60\x69\x6a\xbb\x20\x0c\x81\x6c\x84\x69\x82\x0a\xd9\x20\xa7\x1e\x62\x2a\xe0\x4a\x0e\xbd\xc6\x93\x8f\xf7\xa4\x11\x2b\x7a\x1a\x84\x7e\x7f\xdc\xe0\x5e\x95\xfb\xbe\xd7\xb7\xd1\xd4\x00\x5a\x94\x9a\xa8\xe0\x78\x05\xc0\x92\x3f\xc4\x7e\xd7\x24\x10\x79\x70\x64\x1f\xa9\xbe\xf6\xf8\xe8\xbf\x36\x1e\x1f\xfd\x37\x95\x8d\x0d\x2d\x61\x53\x47\x9d\xdd\x0b\x58\x2e\x83\x40\xd1\xae\xe2\x74\xe5\x45\x05\xcf\x8c\xcb\xf0\x2a\x0e\xfa\x0c\x2e\xfd\x2b\x96\x1a\x22\xc2\xd4\xf3\xe1\x04\x73\x7a\x8d\x76\x9b\x94\xa8\x91\xa4\x1b\x82\xfe\x5d\xfa\x57\x56\xa0\x3d\x3d\xc1\xd4\xa5\x3b\x9d\xbd\x8c\xc4\x3b\xe0\x2a\xe2\x15\x91\xbe\xd8\x2f\x51\x4b\x94\x8e\x9b\x5f\x28\xe2\x11\xe6\x16\x89\x8d\x06\xac\xe0\xc3\xcc\x6a\xf1\xa7\xf7\x25\xdf\xa3\x71\xd1\xd2\xb3\x29\xc1\x89\xaf\xac\xa0\xed\x62\x16\x80\x12\x65\x68\x4b\xe4\x46\x5c\xc2\x81\x12\x53\x35\xc5\x2c\x37\x86\x80\x19\xee\x38\x10\x5b\xc9\x46\x2c\xb7\x10\x88\x94\x35\x27\x70\x10\x63\x34\x75\x67\x41\x69\xe2\x78\xb3\xa0\xf4\x00\xa0\x5f\x7a\xf0\xfd\x89\x74\x1b\x44\x35\xde\xbb\xb3\xe0\x10\x95\xef\x02\xe8\x77\x7d\x7f\x62\x45\xb0\xfa\x42\x24\x12\xb5\x1b\xb8\xfd\xa8\x06\x0d\xff\x95\x5b\x85\xc5\x5a\xd1\x33\xfb\x7b\x1c\xa5\x85\xac\x53\x60\x07\x61\xc9\x0e\x1c\xdb\x2b\xd9\x93\x9e\x33\x9a\xf9\xb3\xa0\x64\x07\xa5\xf0\xce\x2f\x91\xf4\x7f\xa9\x25\x5b\xbe\xeb\x97\x21\x18\xd9\x70\xd0\xf8\x3c\xae\xb3\x2a\x18\x3d\x72\xc3\x2a\x61\x06\xaa\xd4\xf7\xbd\x10\xfa\x6e\x1a\xcd\xdb\x90\x5e\xc4\x5e\x6e\x39\x58\x80\x0d\x7d\x97\xd2\x96\x56\xef\xf9\xee\x20\xb3\xc3\xdc\x7b\xfd\x2d\xdf\x1d\xb4\xed\x21\x68\x87\x34\xa2\x03\x5f\x01\xa1\xdc\xc3\x3c\x6a\xba\x6a\xfe\x62\x21\x20\x10\xe8\x7a\xb0\x85\xeb\x23\x64\x96\x58\x2f\xe2\x8a\x1c\x52\xc2\xa3\x00\x75\x03\xbd\xc8\xf4\xa1\xef\x3a\x53\x3c\x7c\x25\x9c\x5d\x53\x4a\xb5\x06\x2b\x77\x8e\x8a\x25\x9b\x1c\x80\xbe\x59\x91\xd6\xdc\x46\x6f\x69\x05\x2e\xdc\xad\x08\xc5\x38\x84\x18\x46\x31\x8a\x82\x2b\xd8\xf7\x59\x28\x0b\x32\x99\x48\x49\x16\xc4\x6c\x29\xd0\x4c\x12\x23\x3d\x59\x52\xc1\xa7\x48\x43\xd7\xfe\x04\x20\xd6\x3c\x28\x31\x61\xb2\x64\x31\xa0\x82\x07\xe0\x9e\x1a\x45\xa1\x59\x8a\x5e\x39\xde\xc0\xf1\x46\x41\xfa\x2c\xe2\x99\x17\x5a\x84\x6c\x07\xf8\xe0\x40\x7b\x78\xf6\x8c\xd2\x42\x78\xff\x45\x54\xd1\x1e\x0c\xb6\xe8\x77\x84\x73\x1f\xb3\xf9\x20\xb6\xcc\xa6\x51\xea\x71\xfc\x7d\x74\x7e\x70\x78\x15\xa6\xd1\x2e\x4b\xf7\x4c\x51\x7c\xfb\x85\x35\x77\x58\x44\x7f\xb2\xfd\x2a\x88\x70\x13\x7b\x5e\x22\xb7\xc1\x52\x00\x6e\x66\xa8\xa0\x60\xc6\x4c\xec\x39\xd1\xbd\xb4\x69\x19\xbc\xbc\x27\x60\xe0\xd8\x84\xea\x36\x04\xa5\x21\xfa\x26\x25\x3c\x2e\x8c\x28\x5f\x87\x60\x17\x7d\x52\x10\xa1\x4d\x19\x48\x7a\x89\x92\xd7\x0f\x6d\xcc\x38\xee\xe0\x72\xa4\x36\x0e\xc5\x4e\x6e\xa2\x7d\xd7\xe9\x8f\xc5\x3b\xa1\x50\x66\x13\xd7\x27\xc1\x13\x7b\x58\x5e\x23\x9a\xa2\x87\x29\x99\x0e\x9e\xa8\x53\x7b\xb4\xdc\x84\x43\x05\x93\x13\x4e\x99\xda\x41\x80\x6e\xce\x25\xca\x67\x89\x98\xdc\xd5\x55\x15\x58\x2b\x54\xda\x1b\xdf\xf1\x67\x01\x80\xf5\x11\xf0\x42\x76\x4d\x3c\xb4\xfb\x85\xe3\x76\xe1\xc3\x33\x6d\x75\x55\x99\xfa\xd3\xd9\x54\x59\xb1\xfc\x32\xa9\x78\x7a\x3f\x05\x1a\x76\x70\x09\x82\xba\x1b\x1e\xe1\xe6\x62\x14\xf0\xe9\xf1\xfb\xc4\x01\x9d\x35\x69\x24\xf0\x0c\x58\x84\xc4\xcf\x88\x03\xba\xfc\x0b\x71\xb8\xcd\x19\x42\x52\xad\x83\x6b\x40\xd0\x07\xce\x2d\x28\x01\xaf\xef\x0f\x32\xbb\xda\xb3\x5f\xa9\xb3\x70\x58\x7a\xf9\x08\xed\xbb\xa4\x9c\x20\xc1\x37\x7d\x97\x64\x17\x87\x3e\x2c\x08\x00\x17\xbe\x2b\xe2\xe8\x4e\x0a\x06\xa9\xa4\x2f\x32\x3b\xb4\x20\x46\x8b\x4c\x43\xc4\x45\x8d\x99\x40\x5a\x7c\xb3\x4b\x48\xac\x93\x35\x7d\x2c\xe4\x96\x55\x63\x22\xf0\xb8\x4e\xcf\x86\x25\x6a\xa2\x28\xd8\xa8\xd3\x3a\x41\xb2\x53\xd3\xd6\x70\xbc\xf0\xd2\xc4\xbe\xc7\xab\xbf\x64\x43\xe8\xdf\x95\x44\x1b\x88\x58\x92\x0e\x32\x90\xfc\x5b\x50\x9a\x44\x7a\x3e\x29\x3a\x59\xcd\x21\x45\x0b\x61\xf1\xb3\x0f\x69\x0a\xaa\x60\x3c\x63\x2e\x4d\x3c\xaa\xd7\xce\x30\x2c\x11\x05\xfc\x02\x36\x0f\x17\x6d\xe2\x92\xf1\x0e\x17\x52\xf9\xa8\xa4\x6b\x78\x3e\xe1\xcc\x7d\xe4\x2d\xa1\x05\x8e\x65\xdd\x0f\x24\x43\x11\x71\x8e\x71\x08\xd0\x64\xb5\x12\xe2\x8c\x96\xab\x8b\xed\x11\x70\xe5\x3b\x1f\x0e\x4a\xd8\x5e\xab\x84\x57\x74\xc9\x05\xc3\x45\xac\x5b\x36\xff\x9d\x25\xe4\xd4\x44\xe5\x44\x4d\x2e\xc3\x2e\x0a\x32\xeb\x2d\xd3\x28\x2d\x28\x6a\x75\x82\x53\xf0\x7d\x55\xb3\x24\x6b\xdf\x32\xed\xb2\x92\x4f\x4f\x49\xa9\x33\x04\xf6\xa0\x1d\xfa\xd0\x1e\x01\x35\xad\x10\xa0\x45\xb0\x68\xec\xbe\xee\xba\xaa\xa6\x87\xab\xab\x61\x9e\x62\x20\x99\xea\x15\xd5\x97\xc5\x09\x24\xc0\x25\x95\x03\x10\x6e\x41\xbb\x3f\x06\x21\x18\x48\x02\x47\x32\xe5\x51\xb9\x97\x2c\x08\xe4\x20\x39\x51\x84\xd0\x5d\x2a\x56\x41\x82\x8c\x6e\x53\x16\x0f\x54\x5a\x10\x67\xe4\xe1\x82\x86\x8a\x49\x24\x44\x29\x49\x28\x1e\x31\x79\xdf\xda\xa9\x9c\x7a\xd9\x0e\x8a\xb5\x5c\x39\xe4\x5a\x18\x2a\x35\xa3\x48\x95\x48\x2f\x34\x91\x89\x41\xfa\xda\x14\xeb\xaf\x02\x55\xa8\x8b\x15\x2b\x6f\x35\xb1\x75\xc2\xcf\x0b\x5d\x2a\x09\x8d\x2f\x1e\xb2\x01\x5e\x32\x9e\x6d\xba\x61\xf9\xa8\x2c\x0c\xb9\x9b\xd1\x61\xff\xff\x64\x54\x44\xd7\x41\xd9\xa8\x2c\x19\x0d\x39\x8d\x8e\x04\x20\x9c\x79\x0d\x7f\x32\xb1\xbd\x41\xc3\xb5\x83\x20\xa5\x6d\xe4\xe2\x6d\xd2\x0d\x75\x04\x42\x55\x01\xde\xad\x03\x7d\x6f\x02\xbc\x50\xd1\x6a\x0a\xbd\x89\x45\x92\x56\xb8\xba\x4a\x52\xed\xc2\xc7\x47\x15\x5a\x5f\x9e\x78\x37\x02\x9a\x80\x9e\xb4\x89\xb5\x8d\x40\xfd\x62\xc3\x11\xb9\x9a\x55\x49\x88\x70\xc7\xaf\x52\xed\x77\x79\x3a\x0b\xae\xd1\x4d\x35\x6e\xb2\x0a\x75\xdf\xdb\x99\x3b\x61\x4a\x84\x83\x0a\xfb\x53\x55\xd3\x9d\xf2\xcc\xc3\x57\x5a\xd7\x8d\x54\xea\xe8\x29\xdf\x85\xbe\xeb\x07\x00\xb1\x8b\x60\xee\x84\x8a\xb6\xba\x4a\xb9\x73\xfc\x5c\xd5\xa2\xa3\x26\x0b\x87\xc7\x1f\x91\x4f\x95\x8d\x95\x13\xbc\xe7\xe7\xe7\x82\xa0\xb3\x96\xc8\xf4\x48\x06\x39\x89\x54\xc6\xfd\x38\x62\xa7\xd2\xd8\x67\xe6\x5e\x32\x1d\x62\xcf\x1f\xdc\xcb\x7a\x93\x21\xe9\xf2\xad\xa2\xc9\x20\x03\x8b\x8e\xb6\x20\xe8\xd8\x30\x95\x17\xda\x52\x58\x3a\x0f\x85\xe5\x9f\x8b\x2c\x48\xd8\x37\x16\x48\x96\x9c\x5a\x44\x65\x3e\x05\x30\xbc\x57\x7f\xf8\xc5\x17\xf8\xf4\x8b\x2f\xe0\xe9\x07\x9a\x87\x5b\xb6\x1f\x09\xc2\xa3\x1a\x16\xbb\xb0\x65\xe6\x7d\x2c\x33\x12\xda\x53\x25\x04\x47\x91\xfd\x02\xe9\x9e\xaa\x44\x69\x49\xb0\xcb\x92\x92\xad\x9f\xf4\xf2\x88\x43\x9a\xe5\x80\x22\xae\x20\x0b\x61\x51\x57\x37\x0c\x2c\x6f\x63\x91\x06\x70\x15\xcd\x9b\xa8\xaf\x0b\x40\x2e\x0c\xdb\x9f\x06\x1a\x4b\xd2\xc4\xe3\x96\x10\xb8\x65\x66\xa1\x60\x44\x28\x40\xf1\x70\x52\x81\x61\x92\xb3\xe4\x46\x3b\x92\xfb\x69\x9c\xc9\x75\x46\x6a\x2b\xc5\x34\x2d\x77\x91\x84\x22\xe4\xdb\x15\x08\x74\xb0\xfa\x86\x69\xb4\x56\x22\x8d\x16\xd3\xb7\xe7\x88\x14\x3e\xaa\x1f\x4c\xb3\xf6\x31\x28\x46\xca\xf7\xd5\x55\xa5\x01\x8f\xdb\x08\xcc\xa5\x79\xb5\x29\xb6\xf8\xa9\x54\xc5\xcf\x4d\xea\x5c\x2c\x7c\x29\xe5\xc7\xd2\x14\x5b\x82\x08\xbc\xd8\x9c\xcb\xf9\x6e\x01\x2d\xc9\x88\x2f\x27\x06\xb7\x80\x7e\xeb\x3b\x74\xff\x5b\x5e\x08\x6e\x81\x44\x20\x46\x7e\x6a\x49\x22\x7c\xc2\x25\x4b\x2a\xa4\x63\xba\x63\x85\x65\x70\x33\xb3\xdd\x40\x85\x5a\xcd\x49\x1b\x09\x20\x24\x62\xdd\x6d\x50\x18\x38\x01\xe6\x90\xab\x05\x04\xa5\xe0\x0f\x0b\x08\x4e\xe1\x0e\xaf\xef\xc2\xc0\x19\x0e\x51\xa9\x21\xf4\x27\x05\xc2\x30\x95\x0b\x05\xb4\x02\x0a\x64\x96\x17\x9c\x00\x6b\xf2\x16\x2c\xbc\xa5\xb8\x2b\x8e\x4a\xce\x72\x1c\x13\x5f\x23\x6f\xa6\x44\xaa\x84\xec\xda\x8e\xb7\x40\xcf\x1f\x80\xd2\x60\x06\xb1\x0e\x5b\xc9\x2e\xde\x84\xc2\x42\xdb\x54\x8c\xf2\x8b\x40\xa9\x2a\x86\x74\x03\x8c\x16\x6b\x1b\x9d\x26\x79\x4d\x67\x73\x67\x2a\xcc\xca\x8f\x4a\x69\xb1\x31\x24\x3d\xd0\x6f\xc3\xf2\xe1\xf1\x59\x7b\xe7\x53\x6b\xe7\xfd\x71\xeb\xf4\xd3\x76\xb3\x5d\xdf\x7a\xb7\xb3\xbd\xa9\x48\xf3\x71\x22\xba\x69\x4a\x55\x5e\x60\xea\x3b\x5e\x08\xa0\x26\xef\x8c\x7d\x0b\xc8\xf5\x6c\x51\x12\x0a\x02\x91\x59\x45\x90\x7c\x50\x79\x3b\x7a\xd2\x70\x7b\x11\xf4\xe4\x0c\x90\x1f\xc4\x32\xa8\x69\xbb\xfb\x24\xbc\xbc\xcb\x69\x37\x0e\x13\xbc\xc4\xc9\x93\x3c\x2e\xe3\x10\xc3\x72\x8c\x89\x2e\xf6\xd4\x09\x53\x6e\x02\x29\xd3\xe6\x72\x88\x4b\xc8\x10\x85\x20\x08\x7d\x98\x19\xaa\x68\x63\x77\xca\xc3\x72\xdf\xb5\x27\x53\x12\x24\x57\x37\xd2\xb6\xe8\x2c\x72\xab\x89\xb6\x1e\xbe\x34\xd1\x72\x0a\x2a\x90\x9c\x11\x26\x0b\xfb\x15\x27\xa3\x6c\x24\x66\x82\x1a\xea\x50\xd3\x23\x40\x6f\xe0\xe3\x23\xfb\x6e\x59\x70\x75\x35\xf6\x7e\xd0\xd2\xde\x79\xa9\x29\xc5\xca\x59\x2b\x86\x6c\x5e\x61\x75\x14\x69\xff\x98\x95\x16\x9c\xeb\xf9\xd0\xcd\x45\xc2\x13\x62\xf2\x29\x11\x9e\x50\x73\x6f\x10\xf9\xfc\xa1\x75\x4d\xea\x7d\xca\x5b\x0f\x42\xd0\x22\x21\x08\x69\x20\x6f\x42\x25\xd2\x70\x50\xdd\xc1\x8a\xc5\x92\x11\xe1\x80\xd6\x7c\xd4\x5b\xec\xd7\xdf\x07\x8e\x9b\xe5\xea\x05\x9c\xe4\xf7\x20\xbb\xed\x4b\x22\x4a\x6b\x7c\xb0\x5b\xde\x64\x17\x48\x66\x9f\x96\x8c\x04\xd1\xbe\xf7\xfa\xc9\xc9\xf4\x49\x65\x0e\xf3\x99\x5e\x28\x38\x9b\xb3\x9c\x2c\xe9\xc8\xb8\x79\x74\xe1\x23\xdd\x2e\x62\x86\xbf\x07\xb2\x5e\x0a\x17\x4c\x94\xea\xe9\x2b\x3b\x49\x51\xca\xed\x25\xdf\x7a\xea\xfe\x0d\x12\x1e\xb1\x31\x3a\x2c\xf4\x1f\xa9\x49\xa2\x1d\xe0\x3b\x47\xb6\x3c\xc1\x20\x59\x81\x46\x3f\x88\xa2\xc1\x3a\x7e\xc2\x84\x39\x60\xa3\x2d\x9b\xf7\x89\x76\xd3\x6e\x6f\xe0\xb5\x65\x64\x53\xb1\xd7\xc3\x10\x4c\xa6\x61\x21\xf4\x0b\xb4\x76\xa1\x67\x0f\x0a\x34\xd1\x81\x52\x8c\x38\x2d\x90\x8c\x58\x3e\xa2\x2b\x83\xcf\xce\x9f\x22\x46\x26\xff\x18\x36\xf9\x99\x4d\x3c\x12\xd4\x07\x91\xe5\x8d\x41\x62\xf0\xa4\x3c\x47\x28\x55\x04\xe6\xe7\xe2\x5d\x33\xe4\x42\x36\x72\xa2\x91\xc8\x43\x85\xba\x5c\x97\xcc\x1a\x7c\x63\x19\x91\xab\x6d\xf4\xfe\x12\x5e\xbd\x06\x5a\x0d\x96\x4a\x5a\xaa\x22\x16\x5c\x64\xb7\x64\xae\x1b\x42\x8c\x16\x0c\x10\x8b\x51\xfe\x53\x46\x88\xa5\xa8\xc8\x1d\x22\x16\x7b\xa0\x26\x9e\x7d\x16\xe0\x33\xb7\xc4\xcc\x09\x1d\xd4\xd7\x06\x89\xa2\x14\x62\xaf\xf2\x90\xa6\x8f\x89\xa3\x4e\xa4\xe3\x33\x39\x25\x6e\x89\x47\x0e\x43\x94\xf8\x96\x05\xd1\x51\xa9\x11\xb7\x79\x36\x67\x08\x14\xac\xa9\x71\x34\xfa\x2e\xd1\x89\x29\x76\x60\x56\x35\x3d\x2c\x95\x9e\x88\xf5\x5c\x72\x34\xae\x9d\x21\xf6\x3e\x55\xc3\xb8\x97\x89\xe6\xa7\xb3\xe0\xba\x6c\x4f\xa7\xec\xa6\x99\x7a\xaf\xfb\x9a\x8e\x31\xa3\xc1\x11\xed\xb9\x8a\x7f\x96\x42\xdd\xa0\xa6\x10\x08\xd9\x37\x06\xf1\x1d\x7d\x6d\xe5\xf4\x91\x59\xdc\xc5\x61\x16\x85\x2e\x54\x51\x2c\x26\x4f\x0c\x2c\x98\xba\x4e\x1f\x08\xb1\x65\x33\x39\xd0\x83\xd4\xb4\x9c\x79\x31\x29\x3c\x44\x2e\x2b\x20\xfd\x2a\x5a\xc1\x13\xdb\x67\x48\x40\x2a\x12\x59\x3a\xd4\x9e\xd8\x2a\xeb\x9c\x92\xb3\xa6\x05\x46\x68\x36\x62\x47\x01\x2c\x1c\x8a\x4f\xdd\x88\x1b\x52\xa1\x94\xb9\x25\x01\x82\xfc\x89\x80\x4b\xe7\x2f\xff\x89\x00\x4d\xaa\x94\xf9\x20\xe5\x76\xbc\xac\x40\x4b\x02\x8d\xa6\x2d\xc8\xce\xce\xfc\x16\xde\xdb\x23\x70\x36\x95\x5c\x7d\x53\xb7\xb1\x84\x3b\x7d\x6d\x51\xd7\x12\xeb\x91\x17\xf8\x98\x8b\x31\xda\xf6\xef\x64\x32\x89\x9f\x86\x53\x51\xca\xa9\xe6\xe2\xf4\xce\xf1\x7e\x67\x54\x5a\xa2\xe9\xdf\x1d\x39\xa4\x8d\xdf\x39\x53\x40\x7d\xde\xb3\xa9\x13\x25\x7b\x9c\x91\x95\xf8\x25\x12\x82\x5d\x0a\x2e\xf0\xe2\x4b\xfa\x55\x79\xe8\xc3\x1d\xbb\x7f\xad\x8a\xdc\x38\x12\x5b\xfb\x1b\x23\x0e\x42\x41\x44\x51\x64\x81\x1b\x51\xe8\x78\xcc\xc7\xa3\x85\xa9\x02\x2d\xa9\x68\x8d\x45\x67\x19\xa6\x29\xdb\x95\x64\x8a\x2b\xd9\xc5\x09\x64\xf3\x25\xe0\xf6\xeb\xae\x2b\xf0\x22\x93\xf8\x97\xc5\x18\x0b\x28\xb6\x94\x1c\x84\x99\xe7\x8b\xc0\xa5\x89\xbd\xa4\x6a\x29\x01\x32\x63\x68\x9f\x11\x75\x24\xcc\xf4\x19\xa9\x6f\xc3\x14\x18\x7f\x18\xb6\xc8\x03\xd9\x22\x60\x25\x32\x64\xcd\xf3\x75\x8c\x54\xd9\x9c\x05\xbe\xb5\x92\x4e\xe8\xc0\xbd\x5c\x9a\xa6\x29\x63\xef\xe5\x29\x27\xaa\xb8\xf8\xf0\x89\xe8\xcc\x0c\x7d\xe4\xd7\xd5\xa1\x0f\xef\x6c\x38\xa0\x73\x29\x27\x61\x9e\x4c\xc8\x42\xee\xe6\x24\x6c\x8f\x90\x83\xac\x85\xc5\xa2\xc6\x78\x97\x98\x7d\x0c\xaf\xde\x44\xf2\xcf\x5b\xdf\x19\x14\x92\x98\x13\x76\x31\x5b\x49\x4b\x70\x5f\xf9\xf7\xe8\x9a\x1c\xa4\x40\x88\xa0\x2f\x75\x35\x97\x89\x51\xd0\xb6\xf6\xf3\x10\x52\xc6\x86\x87\x6f\x10\x8d\x4b\x25\x21\x2d\x5f\x7f\x1b\x2d\x85\xe5\xe4\x47\x0b\x08\x33\xdd\x03\x71\xff\x96\x40\xfd\x8b\x08\xf7\x58\x10\x5e\x5b\xb6\x6b\x71\x1b\x8c\xef\x2b\x9a\xba\xa1\x03\xca\x9e\x65\x5e\x1b\xe4\x65\x8e\xc4\x86\x76\xac\x1e\x66\x45\x8d\xdf\x3e\x76\x38\x86\xf3\xf1\x50\x05\x5a\xad\x64\xae\x44\x51\x4e\xb2\xd8\xeb\x52\x9a\xa7\x8f\x81\x6c\x78\xe6\x14\xb9\xd9\x79\x9a\x09\x2c\x90\x23\x53\x4a\x1d\x28\x92\xd1\x05\x8f\x8f\x86\x1e\x5f\x13\x49\xe6\x2d\xc7\x0a\xad\xb0\x64\x96\x54\xc4\x0d\xfd\x11\x2c\xc2\x9a\xf3\x5a\xb8\xc2\x6a\x4e\xd1\x82\x2c\x51\x07\x6b\x4a\x75\x58\xc2\x97\x4c\x18\x04\xa9\xba\x38\x04\x70\x0a\x81\x20\xc7\xf3\x6d\x18\xbf\x55\x97\x92\x71\x48\xda\x18\x80\xbe\x0f\x6d\x91\xb1\x13\x8e\x02\x01\xb2\xa7\x3c\xab\xc1\x35\x9b\xeb\x3c\x98\x39\xf7\x32\xce\x88\x12\xa5\x6c\xca\x85\x30\x0f\x4e\x9e\x6e\x57\xe0\x43\x98\x07\x2a\xf2\x4c\x94\x80\xe3\x0c\x0f\x33\x60\x22\xdb\xc5\xfc\xba\x71\x00\x2a\x51\x65\x62\xc1\xa8\xf1\x79\xf6\x48\x7a\x6e\xfc\x1b\x7f\xcd\x84\x97\xe0\x55\xd8\x19\xc0\x02\xed\x77\xca\xf7\x21\x02\x92\xb1\x9a\xcd\x00\xcb\xda\xde\x6a\xe9\xea\x02\x2b\x57\x09\x18\x89\xf9\x6c\xd4\xf7\x28\xf0\x88\x88\x91\x8f\xed\x1f\x52\xa5\x49\xc2\x40\xdf\xc3\x99\xfd\xe7\xe1\x04\x78\xb3\xac\x88\x77\xc5\x7c\xe2\x55\x84\xbe\x87\x75\x48\x89\xc0\x1d\x02\x9d\x60\x22\x1b\xb1\xaa\xd5\xa0\x20\xdb\x3f\xd6\xf8\x0c\xfc\x3b\x4f\x41\xfc\xb5\xb4\xc4\x6c\x9a\xff\x1e\x87\x0b\x8c\x93\x3b\x25\x42\xb8\xf0\xb1\x49\x43\x21\x08\x3c\x4d\xa2\xc0\x30\xbb\xe8\x57\x03\x47\x11\xe4\x7a\xa8\xaf\x18\x5a\x0e\x02\xa4\x0b\x1c\xe1\xb8\x40\x52\x8b\xe1\x26\x6f\x11\xa2\x46\x7a\xee\x0c\x2e\xc4\xd0\xd4\x34\x71\x94\xeb\x74\x86\x51\xac\xce\xd3\x6a\x4e\x22\x14\xd9\x77\xf4\xf0\x2a\x79\xfe\x00\x5c\x92\x55\xa4\x0c\x6d\x37\x00\xca\x55\xe1\x4b\xa1\xd0\xf3\xe7\x68\x61\x38\xde\xa8\x5a\x20\xc6\x93\xa5\x9e\x3f\xaf\x15\x0a\x69\x3f\xeb\x6a\x21\x84\xb6\x17\x90\x20\xfa\x7c\x66\xd7\x02\xab\x47\x05\xa2\x95\xe9\x3c\x7e\x86\x91\xaa\x16\x02\xdf\x75\x06\xb5\xa7\xf2\x5d\x1f\xe3\x81\x1a\xa6\x1e\xe0\xd5\x82\xe3\xb9\x8e\x07\x4a\x3d\xd7\xef\x8f\x6b\x85\x02\x42\xbe\x64\xbb\xce\xc8\xab\x16\xfa\x00\x6d\xf0\xb5\x02\x93\xb5\xf6\x6d\xb7\xaf\xf2\xaa\xc5\xa4\x61\x8a\x56\xf8\xbe\x50\xd1\x6a\x85\x02\x06\xc8\xa4\x7f\xc2\xf2\x2c\x57\xe1\x53\x15\xfa\x7e\x88\xf0\x11\x83\xac\x16\xbe\x13\x28\x1f\xc4\xd6\x2e\x35\x01\x90\x58\x04\xb9\x00\x4a\x6c\xe7\xc2\x83\x21\x43\x47\xb2\xf2\xa1\x61\xa8\x16\x0c\xe9\x6b\xe8\xdf\x25\x5f\x13\x57\xe6\x84\xb6\xb9\x5a\x30\xca\x2f\x02\xae\x4c\x46\x79\x5b\xc5\x03\x20\x2b\x41\xb5\xb7\xd5\x02\x3d\xc0\x65\xe5\xe8\xb0\xe7\xab\x89\x6b\x4f\xbf\x1c\x83\xfb\x21\xb4\x27\x20\x28\x60\x64\xd1\x38\x60\x0b\x80\x2f\x05\x7f\x6a\xf7\x71\xba\x61\xb3\x6c\xd4\x0a\x4f\x85\x42\xe8\xf3\x4f\x0d\xfc\xf4\xa9\x1c\xf7\x11\xd5\xb5\x3d\x67\x42\xa2\x11\x78\xf6\x04\x54\x09\xd0\x1a\xff\x3c\x26\x04\x8f\x9b\x80\x52\x5a\xa2\x9a\x13\x02\xf2\xb8\x84\xf3\xdd\xa0\x49\x3b\x74\x3c\x27\x04\x89\x52\xa1\x33\x71\xbc\x51\x89\xed\x17\xd5\x02\xb0\x03\x50\x72\xb0\x5f\x47\x12\x0b\x07\x02\x5a\x24\xba\x16\xd6\x9e\x94\xf4\x26\x7e\x0d\xec\x41\x22\x40\xbe\xa3\x65\x83\x3f\xe5\x6f\x0a\x5c\x9e\x68\xde\x58\x3a\x8e\x50\x14\x39\x28\x90\xd7\x4a\xb6\x6c\xdf\xb5\x83\xe0\xc8\x9e\x00\x4b\xe1\xb6\x12\x41\xc1\xc5\x59\xa5\x49\x3a\xe9\x25\x56\x71\xe2\x6d\x7a\x11\x68\x1a\x49\x4f\x2d\x87\x43\x57\x77\x2e\x20\xe8\xdf\x69\x5a\x2d\xda\x85\xc8\xf6\x43\xd7\x7c\x0e\x72\xb5\xa5\xb6\x95\xd2\x1d\xe8\x8d\x9d\xb0\x84\xb7\x4c\x4a\x05\x3a\x77\xf5\xcc\xce\x5a\x30\x0d\x63\x12\xe0\x4d\xcb\x86\xb5\xd2\xc4\x7f\xf8\x96\x7a\x8a\x9e\xb9\xdd\xf9\x02\xae\x23\x11\x36\x40\xfb\x69\x82\x9a\xb4\xaa\x59\xc8\x84\x64\x12\xa1\x71\x53\x26\x71\xb2\x6f\xa1\x11\x00\x5f\x3b\xab\xb3\x75\xb9\xc9\x4d\xf6\x9c\x01\xb4\x47\xd4\x4b\x90\x9c\x32\x00\x2a\xd2\xca\x4b\xa6\x46\x2f\xbd\x7a\x35\x9d\x4b\x66\x8f\x69\x4c\xe7\xd1\x34\xc1\x3f\x32\x2b\x5b\x92\x27\x3a\x83\xce\x12\xac\xcf\x25\xcf\xaa\xc4\x7c\x15\xcf\x41\x29\xd8\x37\x53\xd1\x95\x41\xcf\x25\x5f\xc5\xa2\x53\x19\x4d\x32\x8c\x4b\x9c\x71\x93\x5f\xff\x39\xc5\xe2\x9e\x0b\x0b\x09\xe4\xad\xb9\x80\x97\xe4\xce\xd2\x17\x05\xa1\x5c\x17\x84\x2d\x70\x0b\x60\x00\x3a\xce\x00\xf8\xea\x8a\x29\xa0\x39\x0d\xec\x29\xb8\xd0\xa4\xf3\x3b\x4b\x8d\x2d\x18\xab\x2e\xb3\xb4\x88\x28\x24\x15\xdc\x21\xce\x2d\x4f\xcd\x13\x45\x1f\x95\xa1\x40\x83\xed\x66\x55\xaa\xa1\x5c\x5c\xaf\x65\xcd\x8e\xa2\x22\x97\xe0\x2a\xa3\x55\x15\x80\xa8\x89\xac\xab\xa0\x7f\x17\xe0\xf0\x21\x97\xe1\x55\x2e\xc6\x64\x1d\x26\x4d\x0b\x62\x1d\xf6\xe5\x95\xee\x58\xa0\xe6\xbc\x0e\x6b\x0e\x4b\xb8\xe6\xf3\xca\x57\x7c\x49\x71\xd0\x2d\x05\x1b\xe3\xfb\x3c\x6f\xac\xe9\xce\xeb\xb0\x64\xae\xae\xae\xe0\x44\x2a\x5c\x2c\x26\xcc\x3f\x32\x19\xa0\xa2\xad\xae\xd2\xea\xca\x47\x4f\x61\x41\xea\x0b\xb0\xfc\xd9\x77\x3c\x55\xc9\xb3\x4b\xa6\x8a\x5b\x51\x86\x89\x34\x92\x40\xe3\x71\xcb\x05\x49\xf2\x73\xe7\xda\x86\xa5\x07\xa1\x28\xa6\x3e\x7d\x2b\x69\x8d\x53\x85\xe6\x49\x00\x65\x50\x93\xb7\xc7\x2c\x46\xba\x63\x19\x35\xe7\x35\xc8\x0c\x9d\x74\xdf\x9f\xa3\x53\x5b\xd1\x6a\x7e\x76\xef\x4c\xd7\x41\x64\xc7\x74\x55\xd0\x71\xc5\xe5\xd7\x83\x45\x27\x29\xfa\x45\x23\xdb\xf2\xef\x54\x5f\x7b\x12\x44\x85\x4f\x77\x4a\xa2\xaf\xac\x39\x43\x35\x78\x63\x90\x6e\x78\x32\xfd\x7b\xa0\xd5\x08\xac\x98\xc6\x8b\x54\xef\x9e\x48\xc9\xc4\xa7\x94\x61\x86\x20\x4c\xf0\x85\xdf\xe0\xa0\xce\xaa\xf6\xc4\x32\xcb\xc8\x7a\x83\xf3\xba\xe4\xf7\xd7\x8c\x37\xca\x3a\x3d\x02\x33\xe6\x76\x52\x75\x03\x3a\x7f\xb2\x89\x29\x75\x98\x30\x93\x88\x9a\x06\xac\x38\x5e\xe6\x49\xdd\x3d\x71\xc1\xc5\x2f\xa1\xee\x90\x1b\xb1\xaf\x07\x35\xf0\x1a\x6e\xaa\xbe\x05\xf4\xc0\x82\xc5\x50\xab\xaa\xbe\x05\xf5\xc0\x02\xc5\x30\x62\x52\x78\x85\x9f\xaf\x0b\x83\xd9\x52\xe2\x35\x97\xd1\xde\x71\xe0\x32\xbd\x8a\xd3\x55\x42\x96\xbf\x95\x6a\x30\xfd\xbc\xb5\x80\x10\xae\x05\xaf\xc3\x5a\x50\x2c\x6a\x0e\xb7\x39\x06\x57\xf1\xc4\xf5\x8b\x32\x2b\xd4\x29\x74\xbc\x50\xb2\x42\x0d\x6c\x5c\x79\xd7\x2f\x07\x21\x31\x92\xc3\x49\xb7\x5f\xc3\x5a\xda\x9f\xf3\x0e\xda\x53\x1b\x73\x97\xd1\x8c\xca\x55\x8d\x64\x4c\x27\xfd\xc9\xc4\x09\xdf\x39\x1e\x60\x76\x90\xec\xc0\xf4\xc0\x1d\x7a\xac\x52\x39\x46\xa0\x7b\x16\x2c\x85\xba\x6d\xad\x98\xb5\xc5\x62\xf6\xa2\xf7\x46\x66\x48\xa6\xda\xd6\x8a\xa1\x7b\xe2\xd7\xa5\xc5\xa0\x35\xdd\x5e\x5d\x5d\x91\x91\x61\x53\x0d\x28\xe5\x66\xbd\x20\xc4\x8c\x8a\xee\x95\x4c\xad\x98\x7c\x08\xd1\x0a\xf1\x2c\xa8\x55\x05\xc5\x49\x96\x58\xd4\x6b\x17\x87\xe3\x4d\xba\xe1\x4d\x5d\x27\x3c\x77\x06\x00\x5d\x1f\x88\x0f\x99\x1a\x44\x19\x44\xd9\xe9\x79\x5d\x2c\x6a\x89\xae\xa4\xf4\x86\x77\x7d\x7c\xa8\xbb\x97\xd7\x57\xf4\xbb\x9e\x57\xdc\x0e\xfa\x8e\x13\xd7\x88\x7e\xa6\x54\xa2\x64\xb9\x1d\xfa\x03\xb0\x29\x58\x86\x14\x59\x0c\x21\x08\x21\xb5\x1d\x64\x65\xd0\x0c\xc1\x41\x73\xd2\xc5\x72\x11\xa3\xfd\x88\x42\xd7\x2e\x42\x7f\xc5\x48\x4e\x9e\x89\x7d\xdf\xc3\xd1\x78\x1a\x51\x76\x42\x34\x01\x8b\x96\xf7\xb4\x58\x33\xc0\x6f\x09\x51\xa0\x85\x78\x1d\xfc\x3c\xa6\x34\x69\x3d\x6e\x8a\xab\x31\xb0\xef\x16\xb3\xbd\x17\x58\x9f\x50\xab\xd1\xaf\x08\x15\xad\x55\x05\x55\x80\xb8\xbc\xd4\x62\x72\x14\xe3\x7d\x9a\xd4\x74\x52\xb6\x83\x18\xb5\x66\x1a\xda\xcc\x3c\xa9\xca\xb4\x3c\x5c\x13\xe9\xf4\x6a\x79\xad\x50\xd4\x37\x45\x0f\xab\x32\x2a\x4a\x50\xa0\x9b\xd4\xd7\x29\x02\xa1\x7f\x67\x2d\x3a\x3e\x6b\x8b\x10\x5f\x08\x3b\x5d\x2b\x39\xa6\x67\x53\x75\x89\x23\x3a\xbf\x21\xdd\xd0\xb4\x2a\x5b\xe9\x3f\x01\x48\xf5\xa7\x41\x28\x9a\x08\x06\xc5\x83\xb7\xc3\x33\x7f\x16\xc8\x92\x91\x47\xcc\xfe\x2e\x00\x83\x6f\xd1\x01\xd7\x92\x07\x5c\x56\x04\x33\x9b\x78\x72\x8f\xe8\xa1\x0f\x27\xe9\x96\x93\xdb\xb0\x3d\x0b\xfd\x86\x0d\xa1\x63\x8f\x40\x0b\xaf\x83\xcd\x64\x8b\x84\x2e\xac\x0b\x39\x5c\x0b\xbe\xe2\xbe\xcb\xef\x6a\x72\xa5\xa3\xee\x2c\x9a\xfd\xb5\xd0\xb2\xe8\x78\x91\x93\x01\xb5\x10\xc8\xc7\x0b\x6d\xca\x39\x76\x74\x00\xda\x01\x38\xf5\x71\x84\x10\xc9\x68\xf0\x06\xb8\x42\x6a\xa7\xb3\x14\xa6\x4f\x23\xa7\x3c\xc4\x96\xd9\xd7\x4e\x08\x70\xfc\xd3\xc8\x51\xa4\x68\x6a\x42\x6b\x4e\xe9\xf8\x51\x74\x5b\x19\x33\xff\x38\xb3\x7f\x3e\x0f\x95\x4e\x74\xf7\xb5\x0c\x8c\x0e\x2d\xb0\x19\x59\xd2\xa2\x53\xa4\x1a\xa6\x6c\xcd\x33\x27\x68\x2c\x45\xb4\x52\x7b\x57\xaa\xe0\xf6\xce\x6e\xfd\xec\xdd\xe9\xa7\xc6\xf1\xbb\xe3\x16\x33\xdb\x95\x5d\xe2\xf3\xa7\xc9\x15\x42\x2a\xc3\xff\x78\xfe\x80\xd8\xe1\xab\x81\xf6\x7a\x89\xc5\x56\x84\x69\x69\x04\x2e\x4b\x72\x93\x35\xae\x6d\x18\xa8\x50\xd3\x63\xab\x11\x81\x6b\x8e\x4a\xee\x78\x9e\x74\x32\x2d\x3d\x69\xa0\x78\xae\x78\xbc\x35\x5d\xa6\xed\xbc\x79\x94\x77\xfa\x48\xf1\xe4\x9a\x69\xc5\x0c\x77\x7a\xfa\xe6\xa1\x94\x83\x51\xbd\xe7\xdf\x2e\x8f\x12\xb7\x76\xd5\x98\xed\x65\xf9\xdd\xf0\x5e\x11\x71\xb2\xb9\x57\x49\x3d\xb7\x87\xb5\x9f\xb3\x87\x5b\x20\xe5\xae\xb5\x4c\x0f\x5b\xd4\xa8\x54\x28\x05\x49\xb0\x1a\x68\x79\x92\xd3\xa7\x06\x5f\x5b\x61\x0d\x2e\x26\x00\xfc\xbd\x11\x60\xe8\xb8\xae\x2c\x57\xa9\x70\x97\x95\x60\x6c\xe8\x46\x4c\x0b\x68\x19\x35\x98\x31\x08\xa2\x22\x12\xd4\xfd\xf8\x82\x6c\xe4\x58\x0e\x2d\x41\x26\x67\xc1\x36\x0f\x84\x84\x92\x32\xb9\x91\xf5\xab\x80\x24\x20\x75\x95\x87\x56\x98\xb0\x2e\x26\xd9\xca\x13\xb7\x7f\xd4\x39\x48\x3a\x22\xf0\x4f\x74\xf0\x20\x0b\x46\x56\x50\x16\x91\x57\xb6\x6f\x60\x00\x4b\x22\x2c\x76\x96\xad\xc5\xd3\x86\x98\xfe\x22\xbc\xb2\x48\x60\x27\x09\x1d\xb2\x6b\xb3\x3c\xb4\x07\xe3\x00\xa4\x13\x4b\xce\x3d\xc2\x0c\x0f\x42\x6f\x58\x9a\xee\x58\xb0\x14\x96\x54\x60\x71\x47\x1d\x2c\x85\x9a\x56\x34\x6b\x0e\xbd\xa5\x45\x92\x26\x35\xd4\x1d\x3d\x2c\x82\x78\x52\xfa\x16\x28\x99\x35\xff\x8d\x65\xd4\x7c\xe6\xbe\x94\xb3\x05\x15\xfd\x85\x6b\x50\x6a\x48\x86\x4e\xa2\x7c\x02\x70\x2b\x0b\x8f\x0b\xea\xba\x23\xef\xba\x6f\x39\x25\x58\x34\xf5\xc0\x72\x52\x04\xf0\x71\xf7\xc1\x8a\xe5\x67\x28\x00\x75\xa0\x07\x71\xff\x3d\xcb\xa8\x79\xaf\x41\xcd\x5b\xbc\xae\x82\xa2\xf7\x4d\x1b\x50\xf8\x0d\x1b\x10\x15\x25\xe0\x10\xf4\xcb\x51\x4b\xc0\xba\x3d\x3e\xa6\xdd\x81\x13\x12\x8a\xb4\xcc\x41\x22\x24\xf8\x79\x3a\xc4\x31\x22\x8b\xe6\x3f\xcf\xb3\x00\xe2\x49\xc6\x24\x51\x12\x6e\xcc\x09\xe2\x54\xc3\x5f\x64\x1e\x69\x42\x86\x58\xc2\x5c\xa6\x28\x93\x20\x5b\x96\xd0\xa1\x98\xdd\x81\xd4\x02\xf7\x6b\xc8\x14\x5f\x5c\x7f\xc2\xf1\x83\x2f\x12\xa2\x3b\x0b\x53\x38\xc6\x4b\x31\x3a\x1d\x97\x3c\x0a\x18\x7e\x49\x7f\x9a\x6f\x3f\x20\xc5\x57\x2b\x23\x0e\xd2\x14\x5d\x9b\xbe\x12\xd1\xcc\x3e\x2d\xca\xb7\x13\x5d\x25\x7d\xe8\x8c\x1c\x8f\x93\xe8\x81\xb0\x05\x5c\x3b\x74\x6e\xd3\x08\x93\x7b\x44\x7e\xa7\x72\x3c\x6c\xa5\x80\xe5\x01\xba\xd2\xd4\xa9\x01\x3e\x20\x40\x11\xea\x50\x97\xed\x90\xe8\x92\x1a\x97\x0d\x73\xa2\x06\x64\x3d\x6d\xbf\xa6\x4b\x62\x3a\xa4\x7d\x9e\x79\xb4\x73\x23\x1e\xfc\x7e\x90\xe6\xf7\x01\x41\x64\x8a\x6f\x96\xf4\xe4\xc5\x78\x13\xb7\xb9\x5c\x04\x0f\x5c\x69\xd9\x31\x68\xf1\xac\xfb\xe2\x3e\x81\x5c\x87\x8f\x7c\xce\x26\xea\x56\x2b\x79\x5d\x58\xa2\x4f\xd0\xbf\x93\x7a\xee\xf1\xb6\x03\x9f\x78\xb8\x91\xfc\x20\x76\x43\x22\x79\xfe\xf9\x1b\x4a\x4d\x58\xc2\x12\xe7\x3a\xa5\x09\xbc\x41\xa6\xbc\x0e\x52\xae\x78\x18\x19\x9a\xc4\x74\x01\xe6\x9c\xae\x71\x01\xf6\x41\x54\x32\xaf\x07\x71\xa9\xe5\x7b\x11\xd7\x49\xf5\x24\x2b\xaa\x07\x19\x39\xbd\x99\xc3\x5b\xe3\x61\x4c\x9d\x51\xd9\xd0\x18\xa8\x61\xb5\x44\xf8\x10\xe9\xdd\x22\x2a\x99\xcc\xf0\x8a\xf8\x74\x33\x61\x81\x2d\xdb\xab\xd3\xfb\x63\x35\x72\xcc\x58\xa6\x0a\xdb\x2a\xa5\x22\x71\xc4\x65\xc6\xbb\xd1\x02\x49\x2a\xd1\x74\xe6\x1c\xcb\x7e\x3e\x1d\x92\xc2\x3d\x2a\x2c\x53\x55\x42\x0d\xed\xb5\xa9\x2d\x73\x61\xa0\xd2\xd7\x28\xfd\x38\xa3\x02\x95\x73\x9e\x47\x4a\xbc\xd8\x05\x69\xb1\x3a\x13\x94\x4a\x39\x4c\x9f\xbe\x02\x34\xe6\xb7\xb4\xd8\x27\x0d\xfa\x77\x35\xd5\xb1\xc2\x12\xd0\x70\x2a\x79\x15\x5a\xb0\x84\xb9\xf7\xa1\xeb\xa3\x1b\xfb\x33\xe1\x8e\xaf\x95\x4c\x52\x1e\x4a\x84\x0a\x45\xf8\x47\xe2\x17\x9a\xee\x88\xc5\x88\x45\x27\x53\x83\x34\x95\x12\x56\x47\x1b\x65\xec\xe3\x8f\x98\x14\x87\x38\xf8\x53\x7d\x7d\xf4\x2e\x2c\x01\x74\xef\x17\x32\x9c\x0e\xcd\x3b\x2d\x9d\x02\x62\x81\xa9\x68\x0e\x2c\x37\x2d\xa9\x78\x50\x74\xe2\xa6\x42\x06\xa5\x59\x63\xf9\x16\x97\x34\x0b\xcb\x89\x83\x0c\xf9\x62\x40\x67\xb1\x5d\x16\x44\x49\xc5\x65\x24\xee\x37\x29\xdb\xcc\xfc\x20\xb8\x19\x40\x99\x0c\x1e\x9a\xc6\xd4\x80\x5f\x8b\x93\x00\xd4\xb7\xe1\x24\xe8\x9c\x54\x53\xe1\x78\xa3\x2d\xc0\x8b\xa6\x12\xb1\x8e\xf2\x82\x42\x67\x50\xcb\x46\x9c\xa5\x69\xc1\xe9\xf1\xe3\x0c\x55\xf1\x39\x03\x96\x09\x41\x9d\x63\x56\xfb\xa4\x57\x0c\x43\xd3\xc9\x29\xd8\x03\xae\xdb\xbe\x99\x01\xb7\x7f\x4d\x9b\xfa\xc4\x6c\x27\xb8\x64\x80\xa3\x4c\x32\x40\x6d\x33\x53\x68\xea\xda\x91\xab\x12\x06\x0b\x92\x70\xf3\x8f\x4d\x19\x36\xbc\x55\xa4\xbe\x61\x18\x9a\x56\x5d\x50\x83\xdd\xb1\xc4\x79\xfa\xd8\x4d\x96\x33\x64\xb7\x83\x5d\x62\x9d\x18\xad\x6c\x9f\xc6\x37\x67\xf7\x27\x61\xa6\x5b\x62\x75\x87\x85\x52\xbe\x87\x2d\x57\xad\xe4\x28\xb9\x3e\x16\xe2\x26\x6a\x06\x88\x7b\xc9\x59\xd7\xc7\xd1\x49\x99\xb3\xaa\xe3\xe3\x34\xf2\xff\x13\x8b\xe6\xa4\xcd\x34\x23\x0b\x8a\x9c\x66\x62\x33\x8b\xbc\x88\xe0\xf5\x8c\x16\x30\x07\x64\x56\x65\x98\x07\x3a\x3e\x29\x73\x40\xc6\x36\x31\x79\xa0\x5a\xe9\xb3\x77\xf1\xa6\x79\xbe\x14\xe0\x3a\x73\x91\xc8\x10\x53\x76\x23\x4f\x9d\xf9\x4c\x45\x99\x76\xc1\xaf\xd2\x8d\x4a\x96\x31\x5d\x64\x2f\x27\x7e\x7d\x69\xc4\x86\x5a\x2b\xb9\xe1\x6f\x52\xf1\x97\x24\xf6\x60\x69\xcb\x38\xd6\x8e\xee\x5b\x46\xcd\x7f\xed\x30\xe3\x20\xbf\x58\xd4\x9c\x4b\xff\x8a\x37\x6f\xf4\x99\x80\x8e\x0f\xb0\x95\xc7\x02\xa4\x23\x6b\x49\xf8\x8b\xec\xce\x7f\xef\xf5\x09\x87\xc9\x44\xe1\xf9\xf1\x30\xf2\xe4\x6c\xa9\x70\x20\x79\xb1\x79\x93\xce\x0a\x39\x93\x8c\x0f\xeb\x00\xf4\x15\xc0\xdc\xb1\x45\xa1\x1d\x56\x57\x55\xe2\x17\xce\xdb\x8f\x0b\x4b\x6a\x3a\xbf\x39\x4a\x8a\x88\x10\xa1\xfe\xa4\x71\xe0\xae\x65\x63\x36\xa4\x8b\xa6\x39\xa7\x9c\xc6\x70\xbf\x13\x5a\xd3\xdf\x47\xef\xe3\x78\xb5\xd9\x63\x94\x7a\xb3\x58\x8a\xa1\x70\xeb\x54\x6e\x93\x95\x03\xc1\x54\xe4\x71\x3c\xb8\xd0\x03\x42\x1c\x29\x23\x4f\xea\x27\xf2\xd6\xb3\x34\x8b\xbf\x2f\x6a\xe5\xc4\x74\x4d\x91\xe4\x1b\x82\xfb\xe8\x82\x90\x82\x23\x10\x92\x1b\x61\x54\x0c\x68\x8b\x4c\xb5\x17\xdc\x74\x9c\xa1\x0a\xdf\x84\x91\x72\x21\x8a\xf5\x4d\x98\xa2\xd8\xe1\x4a\xd1\x95\x92\xa9\x90\x48\x74\xc2\xc5\x1a\xad\x11\x92\xc4\x9a\x1a\x28\x64\xe7\x00\x75\xbc\x61\x7c\x94\xb4\x80\xa5\x88\x42\x90\x67\xd1\xfa\xe1\x17\x5f\x60\x09\x3c\x15\x8a\x85\x1f\x8a\x3f\xfc\x22\xeb\x5b\x41\x1d\xbd\xb1\x34\x61\x7a\x68\xc3\x91\xe3\x3d\x4d\xe7\x3f\x2c\x82\xdd\xf7\x5d\x65\x19\xb1\x93\x60\xaa\x27\xd8\x41\x1c\x89\x55\xd1\x15\x55\xc9\x1d\x0a\x7a\x0f\x52\xf4\x42\x7e\x39\x74\x8d\x57\x34\x45\xe2\x56\x3c\xe2\xb2\x9a\xa0\xb3\x74\x75\xd5\x29\x3b\x41\xc3\x77\x5d\x7b\x1a\x80\xb4\x75\x30\x3e\x04\x58\xf1\x86\x0d\x41\x88\xef\x7f\xf2\x98\xb1\xb1\xc3\x98\x64\x3e\xf3\x31\x47\x6b\xd4\x55\x59\x30\x11\x92\x0c\x33\x71\xf6\xd6\x70\xec\x7b\x71\xc2\xfc\x32\x4e\x94\x9f\x08\x8a\x9d\x99\x36\xb5\xe0\xce\x61\x59\x01\xed\x00\x14\x64\x90\x76\xea\x87\xd5\x30\x0a\x90\x99\xe7\x09\xa8\xe8\x61\xe6\xe6\xa0\x70\x8e\xd4\xf8\x3d\x76\x95\x26\x6b\x92\x44\x70\x26\x56\x9d\xf4\xc5\x3b\x30\x0c\xc9\x63\x05\xbb\x51\x2b\x35\x12\x03\x30\x0f\xc3\x28\xed\x7f\x8c\x66\x66\x4e\x27\xfd\x8f\x7b\x76\x00\x5c\xc7\x63\xa1\x45\xbf\x01\x69\x8a\x9d\x00\x6f\xd4\x1d\x8a\x34\xf5\x1b\xfe\x09\xd4\xe3\x46\x8e\x25\x2b\x59\x9e\x82\xe8\xf1\x42\xa9\x66\xfe\xce\x2b\x92\x6e\x46\x35\x72\xa5\x9b\x51\x29\xc9\x35\x4d\xb8\xe9\xab\xd1\x19\x02\x84\xb0\x72\xe5\xb4\xd7\xfe\x5d\xd7\xf7\x27\xe7\x36\xf4\x1c\x6f\x94\x09\xa6\x49\xfa\xf1\x10\x97\x20\x3e\x87\xf8\x15\x48\x1c\x91\xe9\x32\xcb\xfb\x67\xa6\x6b\x72\xde\x99\xe8\x55\xe9\x8e\xbc\x53\x24\xa5\x53\xee\x98\x34\x12\x41\xcf\xb5\xfb\xe3\x5a\x36\x42\xc1\x1f\x0e\x87\x95\x4a\xa5\x52\x8b\xc2\x7d\x54\x0b\xae\x0d\x47\xa0\x46\xa3\x11\x40\x7b\xe0\xcc\x82\x6a\xe1\xe5\x74\x5e\xe3\x5c\xc9\x5f\x6c\xd4\xa6\xf6\x60\x80\x63\x20\x18\xe5\x0a\x98\x14\x8c\xf2\x06\xfe\x7f\xf4\x9d\x78\x7d\x92\xaf\x90\x7a\x76\xa2\xb7\x35\x81\x83\x68\xe4\xfc\x0b\xe6\x04\x8b\x92\x3d\xf8\x3c\x0b\xc2\x6a\x01\x1d\x6a\xd1\x6b\x1c\xec\x84\x24\x40\x66\x6f\xb0\xeb\xaf\xa4\x16\x7a\x97\xad\x22\xa3\x5b\xd6\x65\x92\xfa\x80\x66\xd8\x65\xb2\xa4\x51\x2d\xea\x80\x13\x3b\x55\x69\x4f\x54\xbd\x9b\x01\xcf\x47\x98\x70\xca\x87\x20\x08\xec\x11\x38\xb4\x3d\x7b\x04\x60\x19\x82\xa9\x6b\xf7\x41\x8b\x25\x3e\x0d\x54\x9f\x87\x40\x4b\xeb\x97\x51\x8a\x6f\xd3\x30\xbe\x5f\xb0\x3d\xc5\x71\xcd\xb5\x2b\xd9\xcc\x22\x73\x65\x18\xe7\xd7\x10\x08\xb4\xf8\xac\x19\xf4\x56\x98\x81\x13\x53\x84\xda\xd1\xe0\x00\x34\x1c\x9d\x32\xce\x67\x99\x25\x54\x5d\x04\x99\x9e\xa2\x39\x25\x32\xa3\x91\x6d\x25\x67\xd9\x1f\xdf\x02\x88\xf8\x9f\xa4\x7e\x32\x5a\xf3\x3e\x79\xcd\xad\xf7\xa8\xa3\x49\xd6\x98\x2b\xb7\xfc\x9a\xe7\x6b\xa5\x57\x70\x6a\x25\x9a\x1b\xd3\x39\xbf\x5c\xe7\xf3\x12\x59\xb1\x5f\xb9\x3c\x73\x96\xa1\x60\x9d\xc9\xbd\xf3\x0b\xe6\x4b\x63\x12\xb0\xc0\x0d\xb2\x55\x27\xf3\xd1\x4f\xd5\x56\x04\xe4\x58\xce\x97\x19\xa0\xd3\x60\x0a\x01\x2a\x19\xd9\x7d\xe8\xa0\x1c\x84\xfe\xf4\x3d\xf4\xa7\xf6\xc8\x26\x87\xc6\x93\x8e\xee\x8d\x52\xaa\xc7\x27\x66\xbe\x38\x56\x3a\x6e\xc2\xd3\x37\x5f\x46\x2c\x85\xb5\xfc\xca\xcc\x42\xe0\x37\x1c\x20\x6d\x21\xbe\x5c\x96\x5f\x6c\x88\xa8\x2f\x5e\xda\x99\xf5\x9c\x58\x1e\x54\xdb\x83\x7d\x84\x1b\xae\x03\xf8\x18\x53\x78\xc1\xe8\x8e\xf8\x65\x12\x8a\x0c\xe7\xd0\x9f\x5a\x2a\x64\xba\x38\x87\x89\x5b\x9e\x55\xb8\x20\xef\x82\x6a\x2e\x18\x86\xa8\x1e\x51\x70\x38\x29\x93\xf1\x85\x71\xf2\x29\xf8\x5a\x6c\xd5\x9d\x40\x30\x16\x54\x67\x6f\xba\xa9\x22\x9a\x4e\xd3\xdb\x84\xec\x36\x96\x2a\x20\xe1\x76\x16\x0c\xa0\xa2\x7f\x23\x20\x7e\x8f\x95\xbe\x4a\x6c\xae\xa9\x91\x12\x34\x8c\xb9\xc9\x25\x66\x1c\x91\xfb\x3f\xe9\xe1\xe3\xa3\x89\x05\xe9\x32\x87\xcd\x64\x6e\xcd\x48\xb1\xec\x93\x37\xbb\xd0\x9f\x44\x79\xe5\x53\xee\xcd\x52\xe5\xaa\x3f\xbd\x27\xd6\x5b\xa7\x7e\x54\x37\x2b\x1c\x13\xe4\x99\x89\x33\xdd\x7b\x7e\xe8\xf4\x01\xba\x45\xa5\x23\x29\x70\x47\x0a\x17\x9a\x8a\xc9\xf0\x1b\xfe\xf4\x9e\x9d\xea\xa8\xdb\x98\x0a\xfc\x45\x4b\x7a\x68\x4c\x21\x50\xb4\x5a\xc8\x31\x85\xa8\x1f\xa5\xd0\xe7\xb0\x0a\xfc\x19\xec\x03\x74\x15\x48\x6d\x02\xe9\xa3\x45\xb8\xe1\xe3\x68\x46\xd9\x6d\x1c\x3f\xce\x0d\xee\xb1\x44\xcc\x8e\x44\x70\x52\xd9\x05\x5a\x77\x2c\x58\xb6\xbd\xfe\x35\xb9\x69\xea\x41\xf4\xf3\x18\x0b\x09\x74\xcf\x82\x24\x76\x03\x7e\x6d\xb3\x5f\xe4\x6d\x0d\x96\x09\xca\x75\xd7\xc5\xad\x42\xe0\xa9\xa1\xa6\xfb\x64\xc0\x59\x33\xdc\x98\xa7\xe7\x8b\x0e\xcb\x60\x1e\x02\x6f\xb0\xba\xaa\x62\x0b\x5e\x7c\x8d\x57\x1d\x3d\x88\x5f\xa9\x9e\x6e\x6b\x9a\x1e\x4a\xd9\x8f\x1c\xc3\x98\x18\x87\x44\xa0\x03\xa9\x88\x2a\x60\xe5\x6b\xce\x50\x25\x57\x1e\x7c\xb4\x71\x22\x06\x8d\x73\xf9\x63\x11\x26\xca\x41\x68\xc3\x90\x92\x0c\xb2\xdf\x08\x53\x9c\x5f\xec\x43\xa9\x75\x7c\xae\xac\x58\x10\x7b\x95\x1c\xd9\x13\x80\x25\xed\xca\x1f\xe2\x48\x82\x16\xf7\x7c\x75\x55\x69\xbf\xaf\x1f\xe1\x67\x5c\x77\xe3\xd7\x2a\x4c\xbc\xc1\xb1\x23\x20\xb8\x75\xfc\x59\xd0\x76\x7a\xae\xe3\x8d\x6a\x1a\x2e\x92\x7c\xa8\x87\xc5\xac\x8b\x6f\xec\xe2\x02\xa9\xf3\x73\x5e\x19\x50\x06\xde\x00\xb7\x59\xc2\x5f\xe9\x14\xe0\xfb\xa7\xa2\xae\xb3\x52\xbf\x93\xbe\x7a\x60\x1e\x26\xfa\xc9\x3d\xd0\x83\x65\xfa\xe8\xf1\x01\x38\x68\x8a\x69\x32\x5c\x2d\xff\x2e\xd2\x54\xe8\xb8\x1f\xfc\x93\xa2\xa9\xb1\x58\x21\x9c\x23\xb5\xe3\x8d\x54\x4f\x0f\xf5\xa4\x13\xbb\xa7\x95\x82\xdc\xad\x50\xb0\x32\xe4\x5e\x6f\x89\x39\xac\x6a\xd4\x65\x93\x31\xe9\xc2\xad\x55\xee\x15\x46\x4f\x89\x74\x3a\xc2\xf4\x3e\x2a\x56\xc9\x14\x95\xb9\x22\x09\x3f\x2f\x6d\xcf\xeb\x9c\x46\x19\xe5\x85\xf9\xa7\x52\x49\xe7\xbf\xd5\xaf\x99\x1a\xac\xfa\xc9\x16\x49\xc9\x28\x81\x26\xce\x73\x4e\x82\xa8\x4b\xd0\x9d\x02\xef\x0c\xba\xa2\xcc\x53\xfd\x6b\xe8\xa3\x59\x99\xf8\x59\xee\x41\xff\x2e\x00\x70\x33\xf9\x13\xc3\x39\xb5\x7b\xea\x97\x19\x74\xab\xe0\x49\xab\xd2\x5a\xe8\xb9\x0a\x74\xe5\x53\xcf\xb5\xbd\xb1\xa2\x2d\x88\x8b\x83\x8a\x93\xe1\x07\x83\x33\xe8\xca\x84\x92\x82\x49\xe2\x0c\x55\x9a\xd9\x0f\x3c\x3e\x26\xed\x53\xc0\x7c\x6a\x7b\x83\xf8\x10\xc8\x3d\x20\x18\x03\xa5\x4a\x9b\xd2\x34\x6d\x75\x75\x45\x05\x54\x1c\xff\xa6\x62\xac\xbf\x7c\x7c\x04\xe5\x00\xd8\xb0\x7f\xad\x3e\xbb\xfc\x18\x7c\xbc\xfc\x78\xa5\x6a\x5f\x9e\x5e\xbf\x51\xbe\xfb\xf8\xf1\x57\x3f\x5c\x3d\xd3\xde\x58\x86\x46\x02\xfc\xb0\x82\xca\xaf\x2e\xed\xd2\x43\xbd\xd4\xbd\xa2\x9f\x46\xe9\x55\xb1\x5c\xba\xfa\xbe\xfa\xec\x99\xa2\xbd\x36\x34\x26\xfe\x24\xa1\x09\x54\xa5\xaa\xe8\xa6\x76\x69\x5c\x11\x71\xa8\x32\xb1\x1d\x37\xf4\x95\x6a\x52\x94\x07\xd0\xd1\x1d\x4e\x11\x8c\x22\xa0\x57\x11\x32\xc6\x68\x8d\x48\x27\x2d\x09\x36\x9a\x11\x49\xa1\x6b\x8f\xdf\x07\x41\x00\x06\x5b\xf7\xac\xe2\x5b\xdb\x1b\xb8\x00\x7e\x62\x1a\x5f\x7a\x5b\x05\x43\x60\x87\x87\x71\xda\xba\x80\x4d\xed\x64\x36\xbb\x95\xfc\x6c\x76\xe4\x1c\xca\x69\xd5\x5a\x31\x74\x50\x66\x81\xf2\x5a\xfe\x9d\x15\x49\x2e\x54\x50\xee\x63\xae\xff\x22\xcb\x7a\x0b\x74\x06\xda\xb3\x05\x62\x0e\xba\xd2\x8b\x26\xd7\x20\x35\xa5\x8d\xda\x64\x4d\x7e\x58\x04\x8c\xe8\x78\x8b\xa6\xbe\xc2\x5f\x32\x2d\x0b\x94\xd1\x10\xac\xae\xa6\x9b\x78\x23\x56\x12\x2f\xd2\x31\xae\xae\xae\x20\xd6\x3f\x41\xa1\x92\x69\x2d\x32\x8f\xcb\xb6\xbf\xa8\x12\x51\x6f\x6c\x2e\xd2\xf8\x60\xcd\x51\xf5\x67\x54\x20\x69\xba\x90\x7c\x2a\x28\xdb\x6e\x78\x00\xee\x1f\x1f\x57\x42\x96\xd1\x2b\x3b\x25\xd1\xec\x61\x5a\xa2\x74\xb6\x78\x75\xc5\x88\x8c\xb3\x84\x55\xcd\x34\x13\x9a\xdc\x3a\x22\x76\xee\xd4\xdf\xf1\x06\x7c\x10\xe3\x4c\x43\x26\xe2\xb1\xd2\x12\x05\xb4\xa7\x6b\xdc\x2c\x4a\x44\x7d\x03\xde\xc8\x1e\x81\xc1\xe3\xa3\x68\xf6\x6c\xca\x22\xd6\xb1\x6a\x71\xb7\x65\x31\xf6\xd0\xc5\x37\x5e\x3e\x1b\xdc\x75\x57\x5a\x05\x5f\x7a\xa3\xf9\x4f\xeb\x68\x55\x2e\xd6\x1d\x37\x3c\x5f\x47\x39\x31\x71\xae\xe3\xb8\xc8\x2a\xa0\x7a\x4b\xc4\x8e\x45\x81\xf4\xe2\xf6\x22\x56\xe1\x98\x9e\x27\xe9\x00\x39\x5f\x79\x28\xc4\xac\xc7\x12\x4c\xbe\xc6\x62\xfc\xc5\xf8\xac\x00\x12\x78\xea\x00\xdc\xe3\xb9\xda\x0f\xa1\x8b\x27\x2b\x28\x4f\x40\x68\x1f\x80\x7b\x66\xce\x5a\xc8\xd3\x66\xd3\xad\x9c\x57\xea\x67\x5e\x5a\x99\xb0\xc8\xa9\x43\x35\x63\x60\x86\x79\x5a\xe1\xa2\xc2\xf5\xc9\xe6\x8d\xb6\xc2\x06\xea\x15\x4e\xd4\xbb\xba\x5a\x41\xc5\x48\x56\x61\xd4\x0b\xf2\x8d\xae\xf0\x74\x42\xdf\x28\xb3\x23\xbe\x50\xab\x5a\x32\x3b\x2d\xe2\x29\x95\x86\x3f\x73\x07\x05\xcf\x0f\x0b\xb8\x4c\x61\x62\x7b\x33\xdb\x75\xef\x0b\x83\x19\x28\x84\x7e\xe1\x0e\xf4\x0a\x10\x20\x0e\x14\x53\x3f\x88\x37\x82\xd9\x94\xc3\xd8\x88\xb1\x12\x4e\x82\xb4\x2d\x5c\x6a\x1e\x66\x35\xab\x4b\x5f\xec\xb8\x69\xbf\x12\xa1\x13\x61\xc8\x1e\xa1\xdd\x69\xe1\x0a\x5f\xb8\x98\xcd\x25\x16\xb3\x42\xee\xcd\x09\x8b\x1e\x1c\xa5\xb2\x0e\xa1\x7f\x87\x18\xc6\x4f\xa9\x69\x99\x64\x1d\xed\xe9\xd4\xa5\x36\x7c\x44\xb7\xc5\x88\x97\xca\x46\xaf\x6a\xab\xab\x0a\x0e\x9b\x1e\x0d\x43\xd2\x25\x2e\xc3\xd8\x62\x2c\xb6\x81\x1b\xda\x2a\xd0\xa8\xb5\x7b\x30\xb1\x61\xb8\xeb\xfa\x3e\xdc\x76\x6e\x9d\x01\x20\x76\xcf\x76\x2f\xe0\x9d\x06\xf3\x8f\x69\x3d\xb0\x94\x3f\x38\x56\x8a\x2a\x7c\x6d\x6c\x2a\x5b\x4a\x55\xa9\x2b\x54\xd0\xe7\xf8\xe5\x00\x78\x03\x16\xd5\xa9\x0c\xc1\x14\xd8\xa1\xea\x6b\xa2\x9d\xe6\xe9\x49\x30\xaf\xbe\x62\xda\xe4\x1d\x20\x72\x53\x48\xba\xaf\x25\x38\x30\x69\x51\x3e\x38\xb9\x2c\x0f\xa9\xc8\x72\x81\x06\x61\x07\xb2\x88\xb1\x2b\x34\x65\x3d\x01\x23\x35\xe7\x94\xa1\x45\xe4\x9a\x9f\x04\x71\x31\xbf\x3e\x0d\x84\xef\xe1\xfd\xe3\x93\xc8\xa1\x1a\x8b\x9e\x98\x62\x4b\x7d\xf6\xd1\x7b\x36\x9a\xe8\xca\x47\x88\x86\xdb\x12\x5e\x80\xc2\xb4\x11\x58\x0f\xda\xfd\x31\x08\xc1\x80\xee\x66\x6a\x68\x29\x7f\x70\x59\x31\x8c\x5f\x2b\xc5\xb0\x88\xbf\x9a\xbf\x56\xe2\x4b\x16\x37\x7d\x72\xae\x7e\x0d\x7f\x7a\x2f\x18\x90\x59\x00\xe8\xec\x22\xc9\x7e\x51\xb1\xc7\x47\x55\xa0\x53\x48\x6f\xdd\xb2\xdd\x87\xdf\xc2\xe5\x82\x4d\xdf\xa3\x29\x38\xb3\xd7\x28\xce\xf9\x21\xb3\xba\xa2\x9c\x02\x34\x5f\xe6\x72\x9c\xed\xe3\xa3\x41\xfd\xe8\x32\x6b\x59\xde\x82\xdc\x54\x51\xb8\xc4\x1f\x1f\x8d\x1a\x76\x4e\x00\xaf\x2d\xe3\xf1\x31\x7c\x8d\x2f\x55\x64\xb3\x91\x65\x38\x7d\x7c\x94\xe6\x32\x4d\x98\x66\x46\x99\x69\x19\x32\x29\x75\xbd\x6a\xae\x2c\xb2\xda\xe0\xd4\xa2\x3a\xa4\xab\x88\x93\x3f\xa8\xb9\x81\x9a\xf3\x17\x89\x7c\xca\x71\xc6\x72\xf2\xc8\x45\x9c\x89\xdb\xe6\x57\x1a\xf1\x3c\x3e\x2a\x86\x9c\x73\xa7\x12\xf7\xcd\x85\x06\x86\xcc\x3c\x50\x68\x76\x97\x61\x59\x26\xf7\xc7\x89\x9e\xf1\x26\x59\xf8\x49\xe3\xbe\xef\x82\x4f\xe8\x32\xcc\x38\xf6\x5c\xe3\xc6\xdf\x45\xdb\xe6\x55\xca\x34\x5f\x08\x5e\x6e\x45\x9a\x4e\x6d\x22\x13\x16\x45\x8e\x1d\x99\x5c\x28\x52\xa1\x57\x4e\xe6\x93\x25\x5b\x11\xa4\x4c\xc9\x49\xe1\x24\x3c\x28\x32\xb3\x51\xec\x54\x20\x0a\x7d\x4d\x61\xaa\xda\x13\xe7\x5e\x91\xad\xca\x72\x2e\x3d\xe9\x4e\x19\x86\x03\x30\x55\x15\xd7\xe9\xd1\x3d\xff\xec\x74\xf7\xa5\xa2\xf1\x18\x37\x8f\xb3\x9d\x67\x77\xde\x28\x10\x1f\x93\x23\x37\x8f\x89\xa2\xe9\x29\x09\x61\x29\xc5\x7e\x12\x72\x42\xcc\x98\xf1\x10\x4e\x80\x24\xfa\x98\x5d\x68\x27\x22\x9f\x20\x90\x4c\x06\x8f\xf3\xe6\xe1\x02\x6a\xb2\x15\x3d\x1f\x32\x4e\x8d\x4f\x5e\xbc\x87\xfe\xd0\x11\x4d\x37\x0e\x63\x10\xd2\x52\xe9\x51\x4f\x00\x9d\xce\x82\xeb\xec\xd1\x42\x70\xe4\x6a\xa4\x30\x8d\xc4\xca\x20\x3a\xa6\x1b\xf6\x34\x9c\x41\x30\xf8\x94\x3c\xbd\xa3\xc7\x3a\x0b\x0a\x46\x62\x2d\xd3\xa3\x31\x7a\xa0\xe3\xb8\x3e\xdc\x3b\xf6\x8b\x72\x77\x6c\x3c\x53\xbd\x74\x7c\x3d\xf3\xc4\x02\x3a\xc8\xe9\x70\x32\xe2\x62\xb6\x76\x7a\x0a\xe5\x0d\x08\x63\x28\x12\x03\xc1\xee\x45\xae\x3f\x52\x95\x33\xef\x1a\x0b\xbd\x06\x85\xb8\x34\xc9\x9f\x2c\x87\x2b\x97\x3f\xa7\x40\xfb\xbd\x00\xc0\x5b\x00\x07\x85\xce\x69\x61\xcc\x6a\x20\xf0\xfb\xed\xe3\xa3\x32\x91\xf5\x3b\xc3\xfb\x8c\xf0\x38\xd5\x5c\x2a\xdb\xb7\x34\x38\x38\x22\x4d\x0d\xd6\x34\x98\x18\x4a\x40\x52\xfe\xd2\xb1\xd3\x79\x4d\x4e\xf3\xf8\x13\xb3\x08\x4f\xb6\xb1\x60\x11\xa5\x8b\xa7\x30\x92\x57\xc4\x01\x8b\xd0\xb6\x21\x34\xe9\xe7\xc7\x99\x70\x02\x24\xf3\x35\x9f\xee\x1a\x87\xfe\x25\x39\x53\x1c\xcf\xee\x87\xce\x2d\x28\x34\x8f\x0b\x7e\xef\x33\xe8\x87\x65\xa5\x96\x06\xc4\x25\x4c\x5b\x80\x96\xeb\xfd\x3b\x42\xac\xa8\x7c\x84\x38\xce\xba\x7c\x51\xe0\x78\xc7\x8b\x88\x6a\x3e\xcf\x6e\x38\x11\xc1\x55\x87\xdb\xb4\xf3\x27\x1c\x6e\xcd\xf5\xf2\xdb\xc3\xd4\x92\xb6\x48\x68\x29\x68\x33\x71\x8a\x60\xfb\x99\x80\x9e\x20\xbc\x8a\x4d\x90\x98\x2e\x4a\x0b\x46\x0f\x91\xd8\x0c\xa7\x8d\xd5\xe5\x64\x5f\x68\xb7\x1a\x9f\x68\x18\x3f\x7a\xaa\xc5\xf9\xe4\xf2\x8a\xc5\xd0\x48\x81\x44\x28\xc0\x34\x24\x69\x11\xaa\x20\x88\x5d\x30\x2d\x05\x8e\x7a\x6a\x65\x63\x43\x2f\xb0\xff\x69\x4a\xa2\x6c\xec\x49\x4a\xca\x1a\x7a\x01\xfd\xc7\x4a\xf5\x7c\x37\x96\x45\x0c\x6d\x34\x0b\xd8\x2f\x27\xb4\x5d\xa7\x1f\xfd\xec\x91\x64\xae\xf4\xd7\xcc\x1b\x00\xe8\x3a\x1e\x17\x5e\x38\x84\xce\x18\xa0\x59\x3b\x1b\x5d\xc7\x40\x3c\xec\x96\xc6\xff\xa6\x9c\x12\x7b\x92\x8a\x52\xcc\x87\x23\x66\x1c\x9f\x0b\xb6\xed\xd0\xe6\x22\xf3\xf6\xb9\xa4\xae\xdc\x63\x41\xc2\xd7\xa7\xcc\xd0\xf3\x11\xeb\xb0\x28\x77\x0b\x93\xc0\x58\xae\x60\x3d\xd8\xc2\xc6\xaa\x0b\x2a\x24\xc6\x8e\xf8\x5c\x13\x33\x0d\x6f\x36\x51\x15\xc1\x84\xe4\xea\x72\x73\xc7\x52\xe8\x28\x2a\x8b\x2a\xb4\xf6\xb6\xf0\xf8\xe6\x16\x0c\x44\x49\x33\x04\x0b\x20\x97\x68\x38\xce\x99\x9c\x63\xe0\x6b\x61\x65\x1e\x17\xd6\xaf\xe0\x10\x97\x29\x0d\x5c\x86\x57\x78\x92\x5f\x86\x57\x31\x27\x91\x18\xd5\xcc\x38\x97\xfb\xbe\xd7\xb7\xb1\xd1\x5e\x2e\x7e\xe2\x64\xd0\x7f\x19\x57\xf3\x5f\xea\xb5\xb7\x98\xc6\xfc\x42\xcb\xfa\x96\xf3\x2f\x1d\xba\x11\x4b\xc6\x93\x74\x01\x5d\x99\x71\xa9\x05\x8b\x36\x0a\xdb\x25\x0b\x1b\x93\x19\xea\xcc\x20\xd2\x6b\x7d\x66\xb0\x05\x05\x57\xa2\x91\x62\xdf\xf1\x40\x45\x72\x54\x3c\x4e\x51\x31\xe2\xcb\xb6\x92\x1c\xa5\x28\x0c\x19\x3f\x48\x11\x00\x32\x46\xdc\xcf\x58\x05\x18\x8f\x10\x45\x38\x1a\x9f\xd5\x55\xb4\xb2\x28\xbe\x6c\x7f\xcc\x5f\xb5\x78\xfb\x69\xf8\x5e\x68\x3b\x5e\xea\x06\xc9\x98\x10\x3e\x20\x9a\x30\x91\x4e\x3a\x11\x08\x58\xce\x24\x2d\x98\xda\x9e\x42\x62\xf3\xe1\x4b\xbd\xee\x58\x97\x57\xb5\xd4\x58\xad\x08\x96\x09\xb3\xaf\x62\x56\xb2\x71\x69\x2d\xbd\xc8\xa4\xd5\x85\xe6\xb6\xf1\x43\x0a\x28\xde\xe0\xd9\xdc\xc0\x5f\x55\x88\x4d\x6c\xcf\xa9\x63\x0d\x7a\xc8\xe4\x89\x74\x1a\xa8\x21\x5b\xb9\x51\xf8\x31\x3a\x25\x68\x5d\xea\xc9\x43\x9e\xb2\xca\x74\xa2\xa8\x0e\x4d\x82\x13\x67\xcb\x43\x25\xc8\x6b\xba\x0e\x69\x5e\x0e\x4b\x51\x12\x59\x7f\xb8\xd9\xa5\xfa\x45\x4b\x29\x44\x0f\x14\x3d\xe4\x77\x88\x28\xf6\x60\x72\xf6\x91\x4a\x38\x2b\x0f\x7d\xa6\x60\xf3\xbf\xc4\x3e\x62\x68\xba\x8f\x3b\x12\x82\x79\xb8\x4d\x32\xf4\x3a\xbe\x67\xf9\x9a\x9e\x98\x9c\x51\x3f\x68\x32\x4a\xdc\x09\xb6\xb7\x18\x7a\xc8\x6f\x2c\x26\x33\xce\x48\xcc\x5d\x0e\x06\x7a\xa4\x68\x3a\xff\xf3\x13\x35\xe0\x61\xa5\x11\x78\xf4\x9d\x91\x48\xc7\xc2\xdf\xa4\x31\x23\x82\x10\x67\x64\xe1\x52\xee\x39\x34\xc9\x50\x01\xc7\xde\xc8\x5d\x34\x13\x3b\xec\x5f\x83\x40\xba\x6a\x14\x72\xc1\x52\x2c\x0b\x15\xf7\x87\x05\xf0\xf8\xb8\x66\x59\xc4\x1c\xec\xf4\x7e\x9a\xf4\x13\xe6\x96\x17\x67\x82\x77\xef\x02\x3a\xb0\x2b\x2a\x47\xd4\xc7\x47\x10\x7d\x4b\xae\x7d\x4a\xb9\xe8\xf7\xe3\xa3\x80\x9e\xa8\x3a\xa3\x10\x05\x90\x58\x6a\x64\x55\xd1\x37\x89\x55\x94\x5e\x30\x4c\x95\x25\x5c\x21\xda\x8a\xb5\xb2\x12\x72\x6b\x84\x41\x44\x13\x78\xc5\x02\xf1\x4c\xa6\x2f\xc8\x32\x88\x6b\xe1\xd5\xf1\xf8\xb8\x92\xda\x32\x51\x01\x10\xff\x8c\x0a\x24\xe6\x27\x29\x94\x78\x94\x7f\x72\xc4\x79\xba\x03\x91\xb0\x27\xcb\x5c\x03\x19\x27\x1d\x7e\xe5\x99\x15\x17\x94\x18\x43\xa5\xcf\x2c\xe6\x65\x9c\x3e\xa2\x98\x57\x71\x92\x9b\xf0\x05\x0f\x23\x4f\xf0\xe8\x84\x61\xd6\x50\x19\x98\xa1\x04\x07\x66\x86\x9b\xee\x3e\x6b\x2f\x43\xb0\xcc\x66\xca\xb8\xe5\xc4\xa6\xca\x66\x70\xe2\x9c\xe5\x1f\xb6\xf6\xb6\x30\xb6\x82\x38\x61\xe0\xf5\xcb\x4d\x50\x7c\x59\x05\x4f\xe8\xb6\xa7\xa7\xcf\x4c\xd4\x45\x29\xda\x9a\x9e\x6d\x24\xcd\xcd\x09\x78\x80\x4d\x58\xcd\x70\x34\x97\xe0\x2a\x79\x0c\xa4\x4e\xef\x44\x6c\x77\x0e\xbc\x60\x9c\x36\xc5\xa4\xac\xa6\xaa\xa6\x8f\xcb\x98\xa7\x9a\x38\x73\x35\xd0\x53\x77\xbb\xf2\xda\xda\xda\x9a\xf6\x14\x8a\x3b\xcc\xf3\xa6\x82\x0e\xfb\x82\x0e\x87\x57\xa2\x19\xde\x67\x3b\x63\x70\x88\xb6\xca\xac\x6f\x54\x76\x87\xd4\x22\xc3\x7c\x19\xac\x66\xb4\x4f\x86\x1a\xb1\x24\x63\xdb\x29\xda\x9e\x52\x5b\xeb\x8a\x89\x8a\x88\x36\xdd\x15\x83\xda\x92\x83\x88\xeb\x08\x13\xfb\x6d\x81\xf1\x16\x8c\x96\xab\xab\x59\x76\xc1\x72\xd2\x8f\x50\x29\x8e\x29\x40\x97\xbb\xe8\x17\x7b\x47\x0e\x7d\xfa\x0a\xff\x40\x6f\x52\xa7\xa8\xe5\xa4\x9e\xe4\x11\xb8\x99\xe5\x7a\xa3\x55\xb1\xf0\x18\x12\x00\x8e\x4c\x8c\x85\xab\x2c\x3e\x5d\x36\x01\x7f\xac\xd2\x13\xb5\x9a\x4a\x7f\x95\x48\x01\x28\x69\xac\x8d\x4d\x8f\x33\xe9\xbd\x16\xb6\x48\x73\x3f\xa1\xc2\xd5\x44\x32\x28\xbe\x14\x86\x95\xdb\x70\x52\x46\xfb\x55\x6d\x63\x7d\x71\xaa\x79\x1c\x0f\x7d\x19\x0c\x04\x19\xa9\x24\x69\xc5\x2e\xaf\x74\x68\x19\xba\x6f\x19\x7a\x40\x92\x70\xe1\x18\xd3\x2c\x2e\x0d\xd9\x52\x6c\x0b\xdd\x9b\x06\xe0\xbd\xef\x78\x61\x3d\x54\x3d\x4d\x77\x2d\xfb\xb5\xf5\x7c\x63\x63\x6d\x63\xd3\xac\x56\x6a\xf6\x6b\xb3\xf2\x72\xd3\x2f\x5a\x2e\xc1\x17\xb5\x4b\x86\xc9\xd6\x5e\x5b\xe6\x26\x62\xfc\x5c\xd4\x82\xa9\x55\x55\x1f\xf3\x46\x98\xd1\xfa\x12\x84\xb0\x0a\x18\x75\xa1\xee\x6b\x7a\x44\x96\x6a\xf0\xa4\x61\xa4\xb0\x43\x43\xb6\xb4\xa7\xbb\x9a\x4e\xb8\x95\xea\x8a\xc1\xd5\x5b\x31\x9f\x10\xdf\xef\x15\x5d\xd4\x2f\x4d\xf7\x8a\x96\xcb\x92\x3d\xfa\xab\xab\xcb\x36\x1d\x8a\xc5\x7a\x3a\xfe\x31\xa4\x9f\x67\xa7\xbb\x2f\xd1\x5a\x1a\x00\xa8\xe8\xc4\xf5\xa5\xdc\x39\x2d\x37\x98\x76\xf7\xd0\x9e\x62\xb9\x4b\xe7\x54\xae\x35\xb1\x80\x1e\x5b\x71\xe0\x37\xb1\x20\x3a\x9b\xca\x1f\x17\xe0\xac\x62\x49\x0d\xa1\x45\x2c\xd5\x4b\xd9\x30\x00\xed\xd0\x0e\xc1\x27\x2a\x2f\xe9\x9c\x96\xdf\x47\x0f\xd5\xb8\xd0\x99\x37\xf6\xfc\x3b\x8f\x65\xab\x75\x81\x3d\x70\xbc\xd1\xa1\x3f\x70\x86\x0e\x80\x9f\x2c\x85\x69\x43\xa1\xed\xb8\xc2\x37\xb6\xeb\xfa\x77\xc4\x0a\x14\x0f\x3f\xb1\x34\xe1\x2c\x20\xfd\xa0\x7f\xea\x4c\xc0\x3b\x67\xe2\x84\x9f\xac\x0a\x58\xa7\xc2\x85\x70\xc8\xc8\x48\x90\x74\x78\xca\xf2\x07\xfc\xcb\x2d\x07\xcf\x7e\xe8\xbb\x11\x50\xf2\x26\x32\x71\x38\x87\x4e\x18\x0b\xf2\xc8\xcb\x6d\xd0\x37\x2b\x51\x85\x48\xf9\xbe\xe3\xf5\x7d\xd4\x47\x4b\x99\x85\xc3\xd2\x4b\xda\x8b\x89\x3d\x27\x8b\x06\xc7\x65\xf3\xfa\xc0\x32\x8d\x0a\xc5\xf4\xce\x86\xde\x99\xe7\x4c\xa6\xe4\x9e\xc9\x19\x48\xf6\xb9\x31\x0f\x62\x4a\xf3\x53\x21\x20\x25\xf7\x0c\x32\x68\x7b\x26\xfd\xac\xd0\xcf\x35\x2b\x0b\xa9\x3c\x02\xe1\xa1\x3d\x55\x95\x2d\x76\x8f\xdb\x7b\x67\x29\x7b\x4c\x33\xbd\xd7\xe2\x7e\x90\xce\xb4\xef\x83\x10\x4c\xce\xc2\xe1\xcb\x98\xee\xfc\x9b\x77\x7e\x7f\x0c\x06\xdc\xbb\xbe\xf9\xde\x0e\x43\x00\x3d\x3e\x0f\xd9\x6c\x3a\xc0\xa2\x43\x5a\x13\xcf\x9f\x48\x6c\x62\xdf\x82\x41\x7a\x4a\x11\xcd\x77\x3c\xa7\xf0\xc6\xd4\x39\xe5\x18\x52\xe1\x24\x45\xbb\x4f\x4e\xb1\xc6\xbb\x66\xe3\xc0\x32\xf3\x41\xb5\xea\x7b\xd6\x9a\x9e\x9a\xd8\x79\xdc\x36\x7d\xc3\x78\xed\xde\x6c\x68\x85\xe4\x4a\x43\xd7\x8c\x1f\x58\x74\x58\x11\x14\x56\xce\x86\xa3\xc0\xba\xbc\x7a\x4a\x37\x25\x17\x04\xb2\xb5\x8e\x1f\xe3\x0a\xbb\x11\x2b\xce\x89\x8f\xb7\x66\x43\x15\x3c\x3e\x46\x51\x6e\xf0\xc3\x3a\x1c\x61\xd1\x06\xe5\xf3\x73\x5b\x4c\x80\xce\xca\x21\x51\x1f\x44\x04\x58\x08\x77\x6b\x36\xcc\x76\x06\x91\x2b\x7b\xfc\x6f\x82\x6a\x8a\x80\x0b\xa1\x47\x3d\xcc\xb6\x81\x48\x1d\xa9\xe9\x49\x32\x20\x63\x05\x9b\x98\xa9\xd1\xfb\x4b\xe3\xca\x02\xb9\xb4\x71\x6c\x38\x92\x87\x2b\xc7\x30\x00\x4e\x6a\x14\x65\x32\x8d\xcc\xf3\xa1\x6e\x1a\x91\xc2\xd9\xb0\x2c\x67\x75\x55\x75\xac\x50\xd3\x1d\x76\x96\x84\x79\x2d\xdb\x83\x5b\xdb\xeb\x0b\x74\xe5\x53\x3f\x28\x12\x61\xb7\xac\xea\x14\x80\x71\x0b\x4c\x6c\xc7\x73\xbc\x51\x62\x00\x92\x22\xc7\xde\x6c\x18\x31\x2a\x14\x72\x2e\x31\x10\x5c\xb4\x1b\x7d\x05\x3c\xdd\xcc\x85\xd8\xf7\xbd\x60\x36\x01\x5f\x09\xb4\x58\x5c\x00\xd6\x09\x1a\x3e\xda\x60\x85\xbe\xb5\x9c\x0c\xb2\x37\x1b\xb2\xab\xff\x6c\x48\x27\x0b\x4d\x40\x35\xf5\x03\xda\x02\xb7\x2d\x65\x07\xe3\x36\xd6\xbc\xa1\x3d\x2d\x5a\x68\x5c\x25\xfe\x42\x6d\xdf\x0a\x64\xce\x24\x14\x0c\x03\x17\x9d\xea\xc9\xa4\x17\xf4\xc0\x4f\x68\x03\xb3\x55\x46\x20\x4c\xe9\x32\x34\x96\xe1\x25\xda\xfa\xa3\x5a\x7b\xef\xa2\x13\x20\x7e\xd6\x4a\x9e\x30\xf8\x19\xdd\xc8\xd8\x69\x83\x9f\xd1\xad\x9f\x9d\x3c\xf8\x59\x45\x4f\x9c\x42\xf8\xd9\x5a\x2e\x41\x68\x0c\xc0\x0c\x4d\x12\x9d\x4a\x05\x0a\x8c\x69\x46\xfb\x94\x24\x5a\x86\x02\x02\xca\x31\x9a\x70\x00\x18\x61\x18\x51\x08\x31\xe8\xb3\x16\xf7\x8c\x1d\xbd\x06\xf7\x8c\x1d\xc3\x26\xf7\x8c\x1d\xc9\x15\xee\xd9\x1a\x3b\xa6\x33\x27\x9b\x58\xfd\xc3\x1a\x5b\x74\x9e\x9b\x79\xc5\x8c\xa8\x58\x65\x39\x68\x3f\x95\x89\x58\xee\x70\xff\x1a\x3e\x34\x43\xae\x34\x7f\x2b\x54\x0c\x64\x3d\xbf\x84\xc0\xa9\x6d\x2f\xba\xc6\xd4\x12\xae\x12\xf0\xd1\x5a\xd7\x74\x35\x72\x93\xa0\x5b\x45\x34\xd5\x62\x7b\x75\x37\x6c\x06\x87\x20\xb4\x57\x57\x99\x2b\x90\x46\xea\xbf\xd4\xf4\xc8\xe1\x82\x3c\x31\x9f\x33\xd1\x38\xe1\x10\xcb\x43\xe8\x4f\xd0\xfe\xd7\xc0\x09\xea\xe3\xac\x11\x29\x9f\xa8\xe2\x5a\x45\x5f\xab\xe8\x95\x8d\x0d\x0d\x5d\x6a\x96\xad\xdc\xf2\xef\xf8\x9a\x51\x5c\x33\x6a\x2c\x8f\xbd\xf9\x88\x05\x7d\xd5\xb3\x5e\x3d\x2f\xaa\x25\xf3\x7b\x9c\xc0\x26\xb4\x2f\xde\x18\x9b\x46\xd5\xd4\x74\xef\xd1\x82\x3a\x36\x52\x3e\x54\x8a\xa2\x86\x3d\xad\xe8\x17\x03\x81\x3d\x3b\x17\xa0\x8c\x73\xf2\xa8\x12\xdf\xe0\x38\x85\x11\xf5\x9a\xd0\x2b\x5a\x71\xad\x52\x5b\xb2\xb9\x0c\xec\xd9\x54\xa9\x92\x6a\x7f\xa8\x08\x0b\x60\x07\x89\x6a\x66\xda\x89\xa6\x46\xab\xbe\x87\xc6\x92\xe0\x15\xac\xae\xaa\x9e\xb5\x56\xd1\xcd\xf8\xd1\xa6\x57\xb4\x8c\xea\x7a\xf2\x81\x59\xad\x24\x1f\x54\xaa\x5e\xd1\x5a\x43\xf7\xc7\xb5\xca\xb2\x64\x4c\x10\x8d\xf8\xf2\x54\xf1\xf7\xc8\xd5\x28\xe5\x76\xc9\x8c\xab\x00\x84\x3e\x54\x15\x7a\x07\x2b\xe0\x2e\x16\xf0\x78\x60\xc3\x2d\x3c\xe2\x3a\xd0\x9e\x98\x58\x33\x9a\xc7\x19\x1b\xf3\xcc\x72\x8b\x8c\x72\x32\x42\x80\xf4\x05\x31\xe6\x46\x29\xb7\xc8\x9c\x80\x6b\x2b\x99\xa2\xf1\x29\xad\x6a\xb5\x44\x0c\x5f\xbe\x14\x6a\x91\x09\x47\xf9\xe7\x88\xb9\x00\xd9\xc7\xbd\xd9\x30\x92\x21\xa7\xc1\x94\xfb\xb6\xeb\x92\x88\x15\xe9\xf7\x5a\xe6\x09\xe1\x79\x2d\x46\xad\x54\xd3\x96\x05\x05\x2f\x10\x5f\x6b\x01\x6a\x03\x85\x39\x13\x58\x18\x38\xc4\xb7\x08\xc7\x1c\x2e\x84\xd7\xa0\x10\xa0\xc2\x2b\x4a\x96\xcc\x84\x5a\x22\x51\x19\xb9\x5c\x5a\x96\xf8\xf2\xb9\xc9\xd1\x9a\x9a\x14\x55\x41\x06\x7a\x6c\x72\x24\x12\x9e\xa5\x4c\x92\x24\xb8\xc9\x6a\x67\xee\xe0\xf1\xc8\x67\x20\x05\x20\x8c\x6e\xcd\x3c\xa8\x38\xe4\x62\x7a\x66\xa3\x2b\xb3\xfa\x1d\xcd\xc9\x5f\xb8\xb5\xdd\x19\x28\x0c\x7d\x58\x50\xd8\x14\x2e\x01\x0a\x50\xa9\x16\xbe\x2b\x02\x8d\x2c\x1e\x27\xf0\x4b\x15\xa3\x52\x51\xaa\xdf\x74\xb7\xe5\xd7\x21\xa6\x7f\x09\x7b\x3b\x0d\xe4\xe0\x8c\x1c\x70\x46\x06\xdc\xb7\xc1\x31\x9f\x72\x2e\xd7\x19\x5a\x8b\x8a\x65\x75\x39\xc7\xc4\x16\x6f\x0c\xee\x03\x95\x1c\xd6\x0d\x53\x2b\x0f\x1d\x34\x63\x55\x60\xbd\x59\x11\x23\xfa\xf8\x08\xf0\x5c\x44\x9b\x57\x3d\x54\xb5\xd7\x66\xe5\xa5\x56\x9e\xd8\x53\x54\x47\xf9\xf8\x71\xae\x14\xd1\x91\xf4\x30\xb5\x07\x6a\xb2\x64\x39\xf4\xe9\x6e\x63\x3e\xd7\xf4\x8a\xa6\x51\xe5\x26\x73\x9a\x4a\x08\x14\xc0\x5d\xa1\x05\x46\x3b\xf3\xa9\xfa\xc3\xe5\x2f\xbe\x80\xa7\xab\x1f\xb2\xfd\x4c\x48\x9f\x92\x9b\x14\xfd\x5e\x08\xd1\xaf\x15\x98\xed\xc6\xea\x2a\xbc\x84\xe5\xbd\x77\x57\xe5\xbd\x77\x58\x17\x13\xff\xc4\xda\x1a\x18\xef\x94\xd8\x02\x10\xcd\xe9\xf8\x0e\xa8\x3b\x56\xf6\xc2\x45\xf2\xf5\x31\x6f\xfb\x74\x97\xf8\x4b\xa1\xcf\xfc\x85\x9d\x60\x6a\xa3\xe9\xaf\x34\x1a\xa6\xa2\x3b\xec\xca\x63\xe8\xa6\xa6\x03\x9a\xcc\x36\xba\x14\xaa\xa6\xa6\x55\x4b\x26\xa9\xae\x3a\xd1\x6b\xbc\xf9\xaa\xd8\x2f\x41\xe5\x40\xf8\x51\x32\x34\x49\x2b\xbe\xb8\x15\xbf\x48\x73\xd9\x64\x69\xdd\x68\x37\xc5\xfe\x51\xec\x8e\x88\xf3\xf4\x01\x7c\x43\xae\x85\x6f\x2c\xe5\x97\xca\xea\x6a\xf8\xda\x52\x7e\xad\x64\x7b\xdc\x6e\x2a\x62\x81\x21\xd5\x9f\xa7\xa5\x85\xc5\x10\x21\x2b\x12\x5c\xa0\xbe\x2b\x35\xb4\x51\x6e\x8a\xab\x6e\x8a\x6b\x55\x55\x48\xaf\x7f\x8f\x8f\x90\xaa\xf0\x15\x34\xf4\xec\xab\x56\x45\x9d\x30\x68\x27\x5e\x29\x5f\x09\x9e\x41\xdf\x44\x73\x8b\x25\x84\xbf\x2a\x5a\x61\x15\x5e\x1a\x57\x56\x88\xa1\x17\x28\xf4\x4d\x65\x75\x55\xa9\x2a\x2b\x56\xb8\x19\xd5\x93\x10\x02\xd5\x14\x12\x8e\xbd\xe0\xa6\x5d\x39\x04\x41\xa8\x86\xda\xa6\x68\x2a\x20\x8a\x56\xc5\xc8\xeb\xfc\xb4\x93\xad\xbc\xd0\x71\x69\x64\x14\xb2\x56\xc2\x44\x58\xdf\xd4\xfc\x48\x2d\x15\x6c\x61\x43\x23\x58\xa8\x1f\xe7\x66\xef\xe3\xc7\xc7\x8f\x73\xe3\x85\xf6\x4c\xc3\xab\x0b\xcf\x21\x67\xa8\x3a\xd1\x10\xa9\x0e\xa2\x9a\xa2\xe8\xce\xa5\x79\x85\x77\x88\x6d\x3b\x04\x9a\x8e\x96\x04\xd4\xbe\xa0\xb7\x45\x2b\x24\x7c\x76\x14\x49\xe6\xd2\xb8\x62\x71\x33\x42\xa1\x90\x76\x75\x55\xf5\x2d\x25\xf4\xfd\x82\xeb\x13\x6b\x77\xae\x0e\x02\xbe\x62\xe1\x07\x8e\x37\x00\xf3\xe3\xa1\xaa\xfc\x01\x8e\x33\xec\x5b\x0a\x98\xf4\xc0\x60\x00\x06\x05\x10\xf4\xed\x29\x88\xaa\xf2\x25\x35\x9d\xe1\x59\x42\x58\x13\x1c\x12\xd2\x6c\xda\x3e\x71\xe5\x29\x80\xf9\xd4\x81\x60\x80\x60\x25\x2a\x6a\xba\xbf\xa9\x26\x0c\xea\x73\x86\xa0\x5a\xb0\x7b\x3e\x0c\xa9\xf1\xbe\xaf\x23\xac\xa2\x95\xa3\x92\x5f\x58\xa5\x12\x8f\x71\x18\x75\x78\xc5\xd0\x9e\xb2\xc4\x2b\x42\x09\xf9\x36\x55\x1e\x6e\x31\xa4\x90\xe9\x60\xc4\xbb\x11\x94\x2d\x5d\x6e\xa2\xc1\x22\xa2\x99\x15\x57\x83\xba\xa9\x6d\x56\xaa\xa6\x46\xd0\xca\x70\x27\x74\x36\x67\x94\x65\x44\x26\x87\x4a\x5f\x82\xab\xcb\xf0\xaa\xe6\x6c\x3a\x2b\xf8\x77\xd9\x19\x79\x3e\x04\x9b\x78\xfe\x13\xd7\xd3\x37\xca\x5f\x53\x98\x52\x3c\xa3\x2c\xd8\x4c\x70\x23\x4a\x13\xd5\x76\xbc\x51\xe1\x65\xa9\xe7\x84\x85\x3e\x29\x54\x40\x4c\x4f\xb5\x60\xcc\x95\x62\xc8\x9f\x78\x46\xf2\xc8\xd3\xaa\x0e\x76\x72\x26\xb1\x7f\xf4\x4b\xa8\x87\x57\x34\x54\x68\x46\x3d\xb0\xba\x2a\x68\x18\x0c\x10\x4b\x5f\x54\x68\x7b\x19\xc7\x89\x50\x5b\x16\x1c\xbb\x2e\x2c\x02\x27\x62\xe3\xea\x47\xed\x66\x2a\x15\x87\x1e\x6a\x5f\xd6\x2d\x96\x67\x83\x97\xca\xc4\x69\x50\xd4\x50\xab\x56\x0c\x61\xa1\x6c\x82\x13\x35\x5c\xbe\x27\xdc\xcb\x02\xc2\xad\x70\x48\xbb\x23\xe6\x42\xb7\x77\x1a\x02\xec\x29\x1b\x1a\x47\x59\xd1\x4d\x43\xa3\x61\xc0\xcd\xaa\x4c\x02\x90\xf6\x58\xb7\x42\x3e\x38\xf7\x1a\xa9\x27\x53\x6e\x31\x91\x34\x4f\x09\xa2\xfc\x0c\x37\xcd\xb5\x4a\xf5\xa5\xa1\x25\xdd\x85\xb8\x44\xcd\xe9\x37\x41\x9c\xee\xad\x05\x46\xa8\x57\x58\xa6\x8e\x4d\x9a\xf9\xab\x65\x61\xa3\x9a\xa9\xc8\x27\xba\x52\xc3\x44\xe9\xe7\xd9\xd2\x71\xfa\x9c\x54\xd9\x17\xd9\xb2\x71\x7e\x97\x54\x59\xb3\x52\xe5\x96\x1b\x56\xb2\xa5\xaf\xa7\xc9\x34\x1f\xa9\xfa\x15\x41\x37\x92\xe9\x34\x92\xe5\xd7\x8c\x6c\xf9\x8c\x73\x63\xb2\xca\x7a\xba\x8a\x54\x47\x99\x18\xf3\x75\x39\x81\xa5\xd4\x78\x9e\x26\x5d\x34\xc1\x7a\x76\x7f\x8c\x13\xf0\xb6\x81\x37\x08\xb6\xd8\xaf\x64\x93\x26\x58\xcb\x8a\x37\x28\x27\x94\xd5\x89\x55\xe5\x22\xb1\xf4\x9c\xba\xf7\xfa\x58\xce\x86\x6d\x42\xd4\xe4\x00\x1a\x46\x65\xb9\x46\xb7\x5b\xf5\xbd\x9f\xab\x4d\x33\x33\x8c\x34\xb8\xd9\xf1\x2c\x9c\xce\xc2\x14\x59\x0c\x33\xbd\x70\x33\xb1\xd0\xd2\x35\xd6\xd2\x13\x3e\x1a\x89\x09\x08\x6d\x3c\x08\x3b\xf8\xac\xcf\x54\x7c\x55\x0d\x37\x25\x55\x99\x7b\x59\xdd\x0d\x31\x84\xf3\x6b\x3b\xfc\xc4\x2c\x15\x97\x2c\x6e\xc9\x65\x90\x51\x21\x7d\x89\x32\x96\x42\x78\x15\x45\x93\x75\x54\xd8\x7c\x66\xab\x12\x03\xff\x1a\x90\x32\x6c\xc5\xdd\x27\xbe\x19\xfc\x3a\x7b\x51\xa5\xa4\x5f\x17\x6c\x3c\x89\x94\x51\xe9\xbd\xc7\x58\x7f\x59\x4d\x4b\xac\xa9\x1a\x27\x2a\x81\x86\x53\x95\x14\xca\x6e\xbd\xe9\xe6\x44\xdb\xb6\x1a\xf9\x8d\x2f\xae\xc9\xb7\x49\xd5\x20\x6a\x72\x1b\xaf\x18\xc6\x7a\xb6\xdb\x5b\x89\x18\x13\x71\xbf\xa3\xac\x0b\xdf\x70\xa2\x6e\xef\x34\x0a\xef\xa1\x73\x6b\x87\x80\x3f\x58\xe9\xc9\x4a\xb8\x29\x5e\xb6\xc0\x14\x3f\x0d\xd3\x62\xdf\x77\xda\x8d\xe8\x7b\xa3\xdd\x8c\xbe\x1f\x73\xcf\x3b\xa7\x1b\x15\x8b\xab\x7c\xa9\x7c\x34\x94\x2b\x9e\x65\xe3\x5e\xfd\x7b\xd2\x37\x7f\x45\xb9\x92\xfa\xcb\x46\xb9\x05\x63\x75\x1d\x6e\xa7\x97\x57\x27\x4e\x5a\x1a\x5f\x83\x48\xb5\x30\xaf\xda\xd0\x87\x77\x36\x1c\x9c\xda\xbd\x76\xe8\x4f\x53\x0d\x7a\x0b\x6a\x4e\x76\x01\x18\xa4\xea\xdc\xb2\x2e\x47\x20\xf8\xb7\xc3\xdc\xb7\x30\xaf\xbd\x74\x4e\x4c\x23\xd1\xee\xbf\x2f\xa8\x8a\x55\x40\xa6\xc2\x17\xfb\x0f\x64\xc5\x8c\x44\xb1\xff\x50\x3a\x6e\xff\x91\xf4\xcd\x5f\xe5\x41\x03\xed\x0b\x6a\xda\x62\x4a\x3b\xb6\x2f\xd1\xb6\xa4\x57\x8c\x64\x97\x89\x3c\x47\xd9\x54\x12\x5d\xfd\x8f\x13\x34\xfc\xab\x09\x12\xfe\x41\x0a\x89\xa4\x78\x89\x59\x6e\x72\x6a\x6d\x55\xab\x29\x7f\xa0\xac\x58\x30\x8a\xce\x13\x5d\xbc\x77\xda\x0d\x45\x87\x44\x94\x11\x09\x9b\x25\x52\x8d\x27\x5a\x24\xe4\x11\xfd\x6b\x52\x5a\xfd\xe6\x6f\xb0\x57\x3b\xed\x46\x79\x5b\x3e\xe8\xae\xe3\x81\xec\x24\xfb\xcd\xdf\xe4\xab\xef\x7c\xcd\x9c\x49\xef\x78\x71\x72\xe4\xe4\xaa\xf9\xcd\x7f\xca\x37\xf1\x36\xb7\x09\xb6\x78\x92\x2f\x52\x29\xc6\x55\x2d\x09\xff\xef\xf0\xf0\x0f\x73\xf6\x02\xc2\x93\xbd\x13\x13\xe2\xef\xf2\x50\x8e\x64\xd4\xfe\x2f\xf8\x52\xc7\xb2\x52\x7f\x8f\x2f\xf5\x3e\x99\x02\x3a\x63\xb0\xc3\xe6\x44\xac\x63\x10\xdf\xf0\x13\xd8\xfe\x03\xbe\x85\x8e\x0c\x8f\x7f\xc8\x97\x3a\x97\x95\xfa\x47\x7c\xa9\x0f\xb2\x52\xff\x35\x5f\xaa\x2b\xa7\x72\x52\xc7\xa4\xfc\xc1\xe5\xa6\x59\xab\xf4\x93\xeb\xee\x37\xff\x0d\x07\xec\x52\xb9\x4c\x2d\x35\x01\x8d\x84\xb2\xaf\x7c\x2b\xc3\x0c\x59\x1b\xed\x66\x92\x88\x7f\x92\xc0\xe2\xe3\x47\xf9\x22\xfb\x6f\x13\x25\xaf\x72\xb7\x86\x84\x4e\x4a\x3c\x94\x2a\xd0\xd0\xfa\x47\xf5\x56\xac\x30\xde\x4d\xa8\xa5\x12\xf1\xeb\x51\x9f\xfd\x4a\xfd\x38\x28\x6a\x35\xb5\xfc\xbd\xf6\x8b\x67\x5a\x0d\x6e\xaa\x51\x11\x0b\x5e\x56\xae\xd2\xa2\xde\x63\xbc\xcd\x5c\x9a\x57\x3a\xd0\xb4\x6a\x4a\x98\x40\x75\x2a\xc7\xed\x86\x28\xfc\x02\x83\xab\x69\x4f\x4f\x39\x53\x34\x41\xbe\xff\x2e\x41\x94\x5f\x2d\x1e\xc4\x6f\x99\xe8\xff\x98\x9f\x76\x9f\x7e\xde\x16\x30\xde\x85\x0c\xde\x18\x84\x48\xa2\x99\xdc\xec\xbf\x85\xb3\x0a\xa8\x04\xad\x5a\xd8\x69\x37\x0a\xc6\xbc\x62\x14\x94\x62\x28\x3b\xc3\x9e\x78\x3c\xff\x70\x31\x9e\xca\x4b\x1c\x4c\x2e\x81\x66\xfa\x8e\x3d\x74\x5c\x57\x55\x76\xa4\xe7\x66\xa2\xcd\x3f\xfa\x56\xda\xb0\x35\x20\x50\x6c\x51\xef\x07\xe5\x99\x42\x4f\xc1\x44\xcd\x84\x7e\x23\x85\x1a\x33\x69\x08\xa9\x35\xc3\x2f\xa9\x5e\x8d\x53\x33\xaa\xb1\x2a\x30\xa1\x5d\xdf\x13\x15\x25\xba\xb9\x44\xb9\x67\x4a\x95\x35\x92\xee\x13\x6d\x74\x8f\xea\xe8\xdf\xd2\xcf\xa6\x14\x32\x53\x22\x7e\x2b\x47\x4e\xa4\x75\x68\x9e\xfc\x51\xe1\x59\xc1\xa6\xb3\x5c\x22\xb3\xfb\xe9\x4d\x2c\x68\x60\x89\xd9\xa2\x26\xf6\x03\x2d\xf1\xeb\xfb\xc4\xaf\x62\xe2\x57\x29\xf1\xab\x9c\xf8\xf5\x2c\x31\x03\xf5\x50\x3a\x07\xb3\xcc\x98\x33\x24\x92\x65\xa8\x45\x7e\x14\x42\x46\x91\xce\x38\x04\x50\x4d\xe4\x47\x14\x9a\x45\x41\xad\x16\x59\x98\x3a\x9b\x8a\x1a\x6b\xa0\xf6\x0c\xcb\xa9\x2a\x1a\x7a\xf0\xf8\xa8\x94\xb8\x17\x26\x7a\xf1\x3d\x7d\x51\xe6\x5e\x54\xd0\x8b\xa2\xb2\x82\x16\x82\xf2\x0c\x7d\x32\x19\xc1\xde\x9a\xe5\x2c\x16\x87\xba\xfe\x28\xd6\x96\x47\xe8\x16\x02\x10\x12\xad\xf9\x77\xc5\xb0\xf8\x1d\xd6\x94\x4b\x45\xf1\xfc\x08\x3e\x17\x9c\x7f\xe8\xf9\x8b\x2c\xa7\x9f\xbd\x22\x73\x70\x5e\xe6\x97\x8f\xae\xb7\x5c\x95\x57\x92\xa6\x15\x2b\xef\x22\x23\x92\xca\x1e\x80\xfb\xa9\x3d\xa0\x01\x02\x18\x94\x37\xdf\x0a\xc5\x8c\xa1\x94\x77\x85\x28\x96\xfb\x19\xc8\x54\x39\xab\xa7\xd9\x4f\xfc\x94\x03\xe8\xc6\x27\xdb\x44\x0c\x3b\x6b\x9f\x8d\xaf\x3d\x15\x85\x83\xe2\x8b\xcb\xac\x29\x3c\x01\x1e\x45\xb7\xb5\x56\xa6\xd8\x93\xac\x58\x25\x51\xec\xd7\xb2\x62\xd1\x15\xf1\xb8\xdd\x40\x5c\x8a\xd4\x91\x85\x08\xbe\xbd\x81\x7f\x77\xea\x84\x2e\xe0\x18\x10\x0e\x40\x85\x4e\x0a\x02\x2c\x7e\xbe\x7e\x25\x71\x51\x8a\x39\x28\x1a\xcd\xbe\x86\xdd\xfa\x23\x09\x3f\xd3\x78\x3d\xab\x68\xcc\x47\x34\xdf\xa0\x96\xf3\x30\xd4\x03\xeb\xf2\x8a\x3a\x3d\xc1\x5a\xb1\xe8\x31\x87\xa7\x18\xfa\x65\xe5\x7b\xef\x4a\xd3\x5d\x0b\x7f\x2b\x9a\x57\x35\xfb\x8d\xe5\xc7\xba\x4c\x65\x53\x59\xb1\xdc\x4d\xd5\x8d\x9d\x23\xe7\xa6\x79\xea\x37\xda\x6d\xd5\xd5\xb0\x86\xf1\xd2\xbe\xb2\x5c\xad\xca\x17\x81\xa3\xde\xa9\xff\xc1\x34\xf1\x4b\x54\x2a\x20\xba\x6a\xbb\xa8\xd4\x94\xa2\xab\x69\x4f\x41\x32\x55\xb9\x94\x15\xbf\x5a\xaf\x29\xc5\x80\x5a\x60\xd4\x14\xad\xa8\xfc\x15\x85\xa7\xf7\xab\x24\x5d\xa3\x7c\xfd\x5f\x7a\xfe\xe0\xbe\x1a\x11\xf7\x89\xaf\x63\xa6\x46\x59\x3e\x10\x98\x29\x60\x9b\x75\x96\x00\x21\x31\xc8\x54\x35\xad\x06\x05\x8a\x81\xd8\xf3\x14\x3b\x39\xe2\x88\xbd\x4c\xc9\x6b\x90\xc8\xec\x94\x33\x0e\xe3\x0e\x72\x68\x9a\x57\x09\x3d\x1c\xc0\x9c\x6e\xe2\xfd\xef\xa5\x1b\x5b\x49\x5f\x4d\x15\x26\xb0\xd8\x58\x40\x4c\x7a\x2f\x68\xc4\x69\x5f\x2d\xb5\xac\x3d\x73\x28\x52\x8c\x75\xb9\x34\x59\xfa\x06\x53\x91\x29\x4d\x70\x6d\x35\x27\xdb\x6d\x82\x2f\xaa\x7c\x1b\x9c\x28\x27\xad\x90\x07\xfa\x5a\xa4\x70\x32\x5f\x92\xa9\x3b\xc9\xc8\xf0\x61\xbd\x61\x00\xd0\x1d\xa7\xb0\x61\x20\x8e\x26\x20\x06\x91\x82\xbd\x65\xa3\xb2\x14\xa9\x7f\x75\xd9\x9f\x06\x86\x59\x59\x5b\xdf\x78\xfe\xe2\xea\x7b\x7c\x17\x7b\x96\x9c\x03\x34\x09\x89\x1d\xfa\x3d\x42\xfa\xec\xc0\x8b\xd3\xc9\x90\xdb\x1b\xb1\x9e\x83\xc9\xe9\xf8\xe2\xc5\x0b\x01\x7a\xb1\x4d\x6f\x66\x5a\x26\x92\x76\x90\x65\x4b\xac\x6f\xa1\xee\xd4\x54\x61\xc7\x7e\x55\xbb\x2a\xd6\x54\xf4\xf1\xbd\xa6\xd6\xd4\xcb\x8f\xc1\xc7\xf6\xd5\xf7\x9a\xb6\xf9\x8b\x67\x78\x2f\x82\x16\xea\x8d\xee\x58\xe1\xe5\xda\x95\xa6\xc7\xbb\x01\x4e\x4d\x5d\x85\x3a\xde\x15\x9c\xa7\xf4\xd8\x8a\x99\xcc\x19\x9c\xdf\x86\x85\x89\x3f\x98\xb9\x20\x35\x28\xb1\x98\xf8\x52\xf9\xa5\x92\x77\x68\x38\x58\xb3\xdc\x9e\xda\x7d\x74\x62\x38\x36\x1c\x61\xb3\x29\x2d\x86\x50\xae\xe7\x54\x27\xb3\xe9\x6c\x2a\xab\xbb\xb5\xb0\x2e\x16\x6f\x49\x6a\x37\x16\xd6\xc6\xe1\xed\x65\xd5\xb7\x17\x56\xc7\x12\x69\x49\xed\x9d\xaf\x47\x3d\xab\xd3\x90\x08\x85\xdb\xcd\xf2\xee\xd7\x52\xf5\x6b\x80\xef\xe5\xb3\x09\x89\x8a\x5c\x1b\x25\x93\x07\xf2\x76\x19\x20\x2c\xd8\x71\x12\x8c\x4e\x7f\x99\x19\xa0\x4d\xe1\x16\x11\x55\xad\x91\x50\xd4\xc4\x12\x3f\xd4\xcd\x74\xa7\xd3\x69\x55\x6a\x71\xa0\x4a\xa3\x06\x5f\x87\x35\x58\x2c\x6a\xcb\x29\x11\xda\xcd\xf2\xbe\x15\x2f\x93\xcd\xfd\xcc\xbd\x28\x25\x43\x42\x9b\x90\xb1\x62\xc1\x4d\xd3\xb2\x60\x4a\x4d\x09\xa0\x1d\x80\x7a\xcf\x47\x6c\x7b\xb5\x92\x7d\x4f\x95\x57\xd5\xb5\xd8\xf6\x39\xf3\x4e\x00\x71\x0b\xb8\xfe\x5d\x02\xe5\x03\x1e\xe5\x83\x9f\x8c\xf2\xa9\x8f\x97\x00\xc1\x39\x8d\x18\x2e\xf1\xce\xf1\x80\x18\xb9\x53\x9f\xac\x3e\x1e\xbd\x77\x0b\xb7\x1a\x04\x2f\x90\xad\xb9\xc3\x9c\xea\x24\x64\x73\x6e\xf5\xf7\x0b\xab\xa3\x8b\xac\xb4\x7a\x3b\xa7\xfa\x2d\xb5\x74\x90\x6f\x75\xa7\x29\xb9\x0e\xe7\x43\xf9\xda\x32\xd3\xb4\x65\xf0\x72\xb6\xbf\x4b\xe5\xcd\xa9\x50\x7e\xda\x6e\x96\x3f\xe4\xa0\x9a\x18\x1c\x09\xb2\xdd\xdf\xfb\x32\xec\xd9\xfd\xb1\x64\x1d\x5e\x2a\x3f\x44\x5a\x23\xb4\x79\xc5\x68\xda\x5f\xb1\x8f\x2d\x50\x70\x14\x25\x94\xe8\x89\x09\xdc\x17\x8c\xe6\xa5\x71\x85\x97\x53\xf4\x2b\xed\xd4\xb4\x48\x50\x8f\xc7\xb4\x9f\x7f\x1e\xa7\x41\xbc\x31\x6a\x95\x8d\xe7\x35\x23\x01\xa6\x2c\x48\x4a\x9a\x50\x88\xd3\x4c\x9c\x84\x04\x2d\xff\x4e\xbe\xcb\x0f\x63\xc2\xbf\x8d\x9f\x8e\x96\xe9\xfe\x26\x8e\x38\x12\xbd\x12\xec\x6a\x75\xd7\xa5\xe3\x1d\x64\xf6\x10\x92\x2f\x87\xbc\xad\xd3\xc1\x52\x57\x12\xb8\x5d\x4b\x2e\xa5\x46\x2d\x7c\x9d\x58\x60\xb5\x90\xcd\x37\xce\xb2\x8e\x31\x75\xe1\x15\x67\xf6\x48\x36\xce\xeb\xb4\xba\x61\x49\xd0\xd4\xea\x4d\x06\xb9\xec\xf0\xbb\xb3\x23\x5b\xbc\xee\xcf\xd6\x2d\x33\xd9\x2d\xf7\xe7\xeb\x56\x62\x1c\x26\x32\xdd\x4c\xc8\x47\x54\xe1\xf6\xbb\xb0\x58\x79\x7c\xdc\x88\xa6\x4a\x58\x34\xaf\x36\xbd\x99\xeb\x56\xe9\x34\x0c\x8b\x15\xdd\xd0\x9e\x22\x48\x30\x07\xd2\xc6\xe3\x63\x45\x00\x09\x47\x3f\x52\x8a\x09\x80\x45\xa5\xa0\x73\x8f\xd6\xb2\x8f\xd6\xf1\x23\x4d\x79\xe2\x84\x92\x79\xf2\x0a\x12\x8c\x88\x43\x28\x26\xaa\x6f\x19\x35\x3f\x45\x54\xbf\x58\x64\x71\xa0\x68\x93\xbe\x6e\x60\x20\xc1\xeb\x35\x43\x33\x2c\x2b\xd8\x74\x98\xd8\xaa\x6a\x92\x9f\x24\x26\xa8\x81\x8e\x60\xf4\x93\xc5\x16\x44\xbc\x02\xfa\xcd\xe2\x82\x1a\xd5\x75\xf2\x80\x8f\xf4\x57\xdd\xa0\x30\x48\xb4\x50\xa3\xfa\x82\x56\x62\x71\x40\x8d\xea\xcb\xe8\x09\x8b\x04\x6a\x54\x5f\x91\x67\xe9\xd8\x7f\xd5\x0a\xc6\x41\x75\xa2\x38\xa5\x11\x3a\xa6\x56\xad\xa4\x10\x32\xab\x95\x2c\x46\x66\xb5\x92\x44\xc9\xac\x56\xd2\x38\x99\xd5\x4a\x16\x29\xb3\x5a\x41\x58\xe1\xa8\x80\xe9\xd8\xa6\x24\x67\x58\x01\x93\x71\xc3\xd0\x08\x39\x5f\x6a\x4e\x36\xee\x67\x50\x5a\x33\xa2\xc2\x6b\xa8\x15\x54\x9a\xa6\x86\xf4\x2c\xa8\xfa\x9a\x26\xaa\xe7\xb0\x78\x59\x3a\xff\xd2\xf2\x74\xbf\x68\x6d\x44\x19\xcb\x88\xf7\xbb\x6a\x5b\x38\x07\x91\x46\x2e\x69\xce\x50\xf5\x8b\x56\x45\xb7\xdf\x30\xd9\x05\x8b\x76\x4a\x67\x4c\xdf\xf7\x42\xc7\x9b\x81\x9a\xa0\x5d\xfb\x29\x42\xf6\x15\x46\x56\x86\x1a\x0d\xd4\xc5\x11\x62\x1d\x11\x20\x13\xcf\x34\x28\xad\xc7\x04\x58\xc7\x04\xf8\x42\x5c\x46\x51\xdf\x6b\x11\x31\x3c\x51\x65\x9e\x0a\x5c\xc0\x30\x9e\x0a\x44\x40\x17\x72\xb0\x2c\xcb\xfe\x06\x4a\x64\xda\xb6\x9f\x28\x29\x64\x68\x25\x28\x10\xbc\xb1\x5e\x19\xab\xab\xc1\x6b\xeb\xd5\x8b\x4d\xe1\x3c\x78\x65\x14\x5f\x56\x83\x37\x96\x69\x90\x72\xa6\xf1\x02\xcf\x2d\x01\xc5\x4c\xc3\x28\xbe\xd4\x9e\x1c\x3e\x5a\x60\x96\x9d\x48\x8b\xcb\xd2\x17\xb2\x51\x56\x14\xa5\x69\xac\x4f\x49\x49\x35\x61\x04\x26\xb2\xf3\xc1\x4b\x7b\x64\x6f\x70\xe7\xac\x96\xcf\x2f\x18\x9e\x12\xaf\x96\xe7\x7c\x3d\xde\x47\x34\xcb\x26\x21\x1e\x41\x2b\x9a\xcc\x59\x34\x87\x8f\x32\x6b\x0b\x38\x16\x9c\x89\xa9\xa6\x14\x61\x51\x69\x29\x49\x59\xc4\x1b\x4f\xd2\xe7\x4b\x65\xd3\x4b\x1d\x5e\x7f\x59\xf0\xc7\xc4\x34\xf9\x21\xd8\x5c\xc8\xf5\x99\x9e\xa2\xe1\x8d\x70\xf9\x3a\x15\x52\xe7\xf9\x57\xb5\x53\xa9\x99\x35\xa3\x86\xc6\xbc\xba\x91\xc7\x8c\x65\xab\x6e\x18\x5e\x8a\x2f\x9d\x4a\x87\x66\x65\x2a\x50\x4e\x88\x35\x32\x81\x3f\x0c\x5b\xe9\xb9\x5e\xfe\xc5\x54\x36\xe8\xbf\x90\xb6\xfa\x9d\x32\xfd\x4e\xb2\x3e\x6e\x24\xd0\x0a\x37\x4a\xae\x04\xb2\x66\x60\x7d\xa1\x69\x59\xcc\x2c\xf5\x9b\xe4\xa5\x32\x41\x0c\x31\xb1\xc7\xc9\x48\x2b\xbf\xdb\x26\x4c\x0d\x4b\x12\xbe\xb1\x89\x58\x84\xbc\x44\x4f\xd6\x7f\xf7\xcd\xa0\xde\x6c\x7c\x3b\xc1\x76\xea\x87\xcb\x74\xe4\xf9\xef\xb4\x05\x33\x63\x1d\xc4\xa4\xb4\x04\x52\x01\x47\xa1\xac\x62\xd3\x94\x27\x7e\x92\xdf\xc8\x26\x39\x94\xce\x64\xb4\xc7\xa1\xdd\x81\xd3\x92\x19\x57\xba\x69\x68\x25\x93\xc4\x80\x72\xb0\x98\x99\x7f\x6f\xf2\xef\x6b\x99\xae\xa4\x9c\x5e\xa0\xee\x48\xfb\x1b\xc9\xfb\x0c\x3d\x75\xa7\x82\xb2\xe3\xec\x17\x50\xfc\x3c\x58\x5e\x05\x4e\x5a\x08\x64\x2d\x84\x92\x86\xc5\xcf\x2f\x95\x37\xa1\x74\xaf\x2b\xc8\x5e\x95\x67\x5f\xa5\x81\x27\xc0\x66\x52\x9a\xdc\x4a\xda\xff\xee\x4e\x56\x65\x2e\xa9\xf1\xfd\x5c\xda\x88\xb8\x4a\xf9\x21\x7d\xce\xae\x24\xef\x38\xaf\x4d\x2d\xbb\x77\x3a\x43\x15\x6d\x9f\x34\x17\x3a\x5f\xba\x42\xad\x41\x6a\x8b\xb5\xbf\x51\x5e\x0f\x0a\xd7\xbc\xa2\xc7\x2b\x36\x5c\xca\xf2\x5c\x72\x00\xd8\x95\x21\xc1\x5b\x7c\xf7\x20\xa5\xc3\x83\x8c\xd8\x5f\xa4\xf3\xe0\xbb\x47\xf9\xab\x27\xf9\xab\x5f\xa7\x5e\x25\x62\x58\x0e\x99\xfa\x94\x8f\x4a\x28\x0e\x94\x17\xf4\xa1\x83\x93\x00\xb2\x00\x59\x7b\xef\xb8\xe8\x80\x23\x77\x62\x4f\xb7\xec\x00\x7c\xe2\xc3\x52\xc7\x31\x0c\x78\xf8\xa9\x90\xd4\xd9\x5c\xf1\x29\x88\xab\xab\x2b\xc9\x18\xe6\xac\x65\x3e\x65\x1e\x2e\xfe\x89\xd8\xf9\x24\x9f\x43\x40\xb3\x3f\x91\x22\x16\xd8\xa4\x01\x12\xec\x20\x70\x46\x9e\xfa\xe5\x29\xdd\x05\x1d\x50\xc9\x50\xfc\x88\xc6\x4a\xe7\x43\x2b\x70\x30\x97\x0a\x93\x90\x76\x1a\xd5\x6a\x31\x82\x7c\x58\x04\x05\xb1\x7b\x51\x04\x85\xa2\x72\xa5\xe8\xca\x88\x0b\xd3\x84\xda\x01\x51\xce\xd2\x18\x86\x0e\xac\x37\x1c\x4e\x44\xfb\x9d\x4b\x7d\x71\x94\x2a\x52\x7d\x85\xda\xe2\xf3\xc3\xf0\x15\xe3\x0a\xc2\xe3\x5b\x00\xa1\x33\x10\x65\x39\x22\x20\xc0\x02\x18\xb9\x29\x5e\x52\xd5\xd4\xf4\x24\x4d\x0f\xa9\x96\xc8\x5b\x20\xef\x62\x12\xf5\xc4\x18\xeb\x40\x80\x6f\xf6\xc4\x98\xd8\xd3\xe0\x93\x95\x2d\x58\xa6\xf7\xb8\x38\xec\x27\x2a\x49\x97\x4c\x54\x51\xd4\x04\x47\x13\x62\x9f\x26\x0d\xd9\x82\x41\x94\xaf\xed\xe0\xf8\xce\x7b\x0f\xfd\x29\x80\xe1\xbd\x0a\x68\x88\x00\xfc\xf2\x12\x5c\x55\x89\x69\xdb\x82\x96\xec\xc1\x40\xb2\x15\x90\x0e\x5a\x56\xb2\x0f\x51\x8a\x6f\xfc\x56\xbc\xc2\xa2\xc2\x4c\x75\xc8\x50\x8a\x6d\x8e\x25\xd8\x88\x67\x2a\xae\xbe\x62\x2d\x20\x76\x12\xb3\xfc\xb2\xa2\x29\x19\x2c\x3d\xaf\x7f\x16\xca\x24\x13\x15\x25\x33\x60\x53\xf3\xc4\x90\x33\x4f\x84\x9b\x1c\xf4\xcb\xf0\xca\x82\xc9\x08\x81\xec\x79\x72\x5e\xe3\x50\xea\x74\x93\x23\x23\xad\x86\xba\x78\x65\x29\xb3\x00\x40\xc4\x25\xea\xa4\xd2\x93\x90\x44\x1c\x0d\x63\x6f\x2f\x59\x89\x4b\xe3\x4a\xb2\x8c\x95\x11\xb4\xa7\xd7\x4e\x5f\xd1\xbf\x28\x3f\x28\x55\xe5\xb7\xff\xf0\x6f\x29\xba\x5d\x55\x7e\xfb\x0f\xfe\x2b\x45\xef\x55\x95\xdf\xfe\xbd\x3f\x56\xf4\x3e\xfa\xfc\xdb\x8a\x3e\x40\x9f\x7f\x47\xd1\x01\xfa\xfc\xcf\x14\x7d\x58\x55\x7e\xf3\x2f\x15\x7d\x54\x55\x7e\xf3\xaf\x14\xfd\x1a\x3d\xfd\x53\x45\x77\xd0\xe7\x7f\xae\xe8\x9f\xab\xca\x6f\xff\xfe\x3f\x52\xf4\x31\xfa\xfc\x7b\x8a\xee\xa2\xcf\xbf\xad\xe8\x13\xf4\xf9\xf7\x15\xdd\x43\x9f\x7f\xa1\xe8\x7e\x55\xf9\xed\xdf\xfd\x3f\x15\x7d\x8a\x3e\xff\x8d\xa2\xdf\xa0\xe7\x7f\x5d\xd1\x21\xfa\xfd\x17\x8a\x1e\xa0\xcf\x7f\xab\xe8\x21\x7a\xfe\x27\x8a\x3e\x43\x9f\x7f\xaa\xe8\xb7\xe8\xf3\xcf\x15\xfd\x0e\x7d\xfe\x0b\x45\x9f\xa3\xcf\xff\x44\xd1\xef\xab\xca\x6f\xff\xf8\x4f\x15\xfd\x01\x7d\xfe\x53\x45\x57\xbe\x28\x55\xe5\xff\xfd\xeb\x8a\xae\x3c\xa2\x0e\xfe\xf1\x3f\x51\x74\xe5\x49\xa9\x2a\xbf\xf9\x1f\x15\x5d\xf9\x35\xfa\xf2\xbf\x29\x4f\x82\x53\x39\x41\xc1\x72\x5d\x46\xc0\x1e\x74\x42\x27\xb8\x46\x04\xfc\x43\x02\x75\x31\xb0\x2d\x19\xb0\x59\xa0\x10\x57\xf3\x45\x03\xba\x2e\x1d\xd0\xc1\x2c\xec\xf3\xd8\xe8\xca\x2f\xd1\x97\xff\x4b\xd1\x95\x4b\xa5\xaa\xfc\x3f\xff\x5a\xd1\x95\x8f\x1f\xd1\xa3\x7f\xab\xe8\xca\x95\x52\x55\x1e\x29\x8d\x7e\xf3\xcf\x28\x8d\x86\x8c\x42\x7f\xc1\x28\xf4\xe7\x4b\x74\xaa\xb1\x60\xa9\x5f\x6e\x48\x71\x1e\x3a\x9e\x47\x69\x88\x70\xfc\xf1\x6f\x30\x1c\x7f\xfc\x07\x14\xc7\x1f\xff\xa6\xa2\x2b\xbf\x42\x5f\xfe\x44\xd1\xf1\x4c\xfd\xf1\x9f\x53\xb4\x7f\xfc\x53\x8a\xf6\x8f\xff\x2b\xc5\xfb\xc7\x7f\x4a\xf1\xfe\xf1\x2f\x96\xc0\xbb\x25\xc5\x0a\x02\x4f\x40\xca\x1f\xff\x09\x25\x25\x9a\xfb\x14\xcd\x3f\xa3\x68\xfe\xe6\xcf\x18\x52\xff\x9c\x21\xf5\x7f\x30\xa4\xfe\x19\x23\xe6\x3f\x5b\x02\xa9\x93\x7c\xa4\x0a\x7d\xdb\xb3\x07\x8e\xed\x21\xec\x12\x48\xfd\xf8\x3f\x64\x90\xfa\xf1\x7f\x66\xb4\xfb\x5f\x18\xed\xfe\x7c\x31\x9a\x3f\xfe\x9b\x25\xd0\x3c\x90\x6e\x2b\x00\x4e\x62\xec\x30\x59\x64\x23\xfb\x27\xf2\x71\x64\xf3\xef\xc7\x7f\xbc\x04\x2e\x17\x32\x5c\xb0\xb2\x82\x20\x93\x5c\x13\x7f\x26\x1f\x48\x4c\x98\x1f\x18\x61\xbe\x30\x0a\x63\xf4\xfe\x75\x86\x54\xff\x62\x09\xf4\x76\x16\x2d\x8f\xe7\xd2\xe5\xe1\xf9\xf0\x0e\x8c\x1c\xdb\x7b\x36\xb0\xd9\x3a\xf9\x25\xa3\x26\x26\xeb\xdf\x8a\x3a\xf0\x8f\xe4\x0b\xe6\x4f\x59\x4f\xfe\x27\xd6\x93\xff\xfd\x9b\x16\x4c\x57\x86\x67\x30\x8d\xd0\x93\x10\xfa\xbf\x8f\xf0\xfc\x2f\xd9\x8a\xf9\xbf\xd9\xee\xf3\x2f\x19\x56\xff\x8a\x61\xf5\x67\x8b\x91\xb9\x7c\x71\xb5\x80\xae\xe5\xb7\x52\x74\xef\xc0\x80\xa7\xe6\x1f\xe7\x4c\xd2\xdf\xd9\xf6\x43\x6c\xf1\xa5\x18\x3a\x41\xc0\xc8\x89\x67\x62\x72\xad\xff\xf3\xfc\xb5\xfe\x89\xce\xd1\xe4\x92\xcf\x59\x66\x78\xc9\x63\x4d\x05\xd6\x8b\x20\x4e\x45\x25\x39\x15\x9e\xd9\xb3\x81\xe3\x3f\xeb\x01\xd7\x55\x74\x85\xfc\xf0\x47\xa3\x5a\xcf\x0e\xc0\xf3\x75\x45\x57\x4e\x2b\x03\xef\xec\xae\xde\xa8\x47\xff\xb6\xaf\x6f\xce\x37\x0e\xf0\xd7\xc3\xdd\xdb\x9d\xcf\x17\x5b\x6f\x47\xbb\x95\xde\xda\xbe\x63\x7f\x38\x24\x45\x2e\x1a\x2f\xa2\xe2\x6f\xfb\x5b\xe4\x4b\x63\xbd\x7e\xf6\xca\xeb\x9a\x87\x75\xfe\xdf\xba\xed\xce\xda\xa3\x1d\xfc\x1d\x04\xcd\xb5\x9d\xc6\xda\xb3\xcc\xbf\x97\xe3\xed\xc1\xe4\xd5\xfd\xc5\xc4\x7d\x78\x7b\x52\xaf\xd7\x77\xaf\xa7\xfd\xbd\xd1\xec\x74\x6d\xdf\x6b\xee\xcd\xa7\x17\x6e\xf7\xb6\x3f\xd9\x9f\xf6\xef\xb7\xf6\x9b\xdb\xcd\xbb\xc3\xed\xf1\xdd\xd1\x43\x7d\x83\xb4\xb0\xb3\xcb\xea\x1e\x9c\xed\x6f\x77\x46\x3b\xa4\x33\xdb\xbb\x87\xcd\xc3\xf3\xba\xb1\xbf\xd5\xa9\xd7\xeb\x27\xf5\xfa\xd6\x68\xbf\x31\x3e\x1e\x57\xba\xfb\x07\xf6\xf9\x99\xdf\xbe\xde\x98\xec\xb7\x9a\xed\xf6\xc4\x75\x0f\xcf\xee\x9c\xae\x73\xe6\xf4\xcf\x2e\x2e\xd6\xef\xe6\xf3\xeb\xeb\xcf\x9f\xb7\xdf\xee\xed\xed\x1d\x1f\x36\xb7\x5b\xe3\x5d\x54\xbb\xde\xa8\x1f\xd4\x27\xc7\x7e\xb1\xbb\x6f\x07\xeb\x1b\xdd\xf9\xc8\xfb\xec\x1d\x8c\x8e\xcf\xdd\xe3\xe3\x83\xfe\x68\x6b\x7d\xda\x5a\xdf\x1e\xef\xdf\xdd\x9e\x4d\x2e\x2a\xcf\x27\xe1\x41\x17\xf6\x82\xf5\xe9\xfe\xc9\xe8\xe8\xfc\xe4\xac\x5e\xaf\x37\xeb\x27\x3b\xa3\xeb\xeb\x56\xab\xdd\x6e\xec\xed\xee\xee\x1d\x34\x9b\x17\x17\x17\x17\xfe\xe8\xfa\x7a\x3e\xbf\xbf\x6f\xec\x79\xde\xdb\xe6\xc1\xc1\x8d\x33\x1a\x8d\xfc\xfb\xfb\x46\x63\xfb\x74\xfb\xdd\x74\xba\x7f\x74\x7c\x3c\x9b\xf8\xfe\xfa\xfa\xf3\xe7\x8e\x63\x18\x3b\xcd\x77\xef\x7a\xa7\xed\xf6\xf8\x6e\x6e\x76\xba\x9f\x21\x34\xf6\x3e\x7c\x98\x3f\x3c\x7c\xf6\x3c\xef\xed\xfb\xe3\x63\x00\xfa\xfd\x97\xeb\xfb\x27\xe3\xa3\xf3\xfa\x49\x7d\x84\x08\x74\x32\xba\xe8\x76\xb7\xb6\x1a\x0d\xd4\xee\xee\x41\xf3\xc0\xb6\x2f\xfa\xa8\x8d\xe6\xf6\xc9\x78\xf7\xac\x8e\x08\x36\xc2\xb4\xdc\x7a\x3b\x6e\xb5\xf6\x83\xd6\xe9\xbb\xa0\xf5\x70\x64\xb4\x5b\xef\x5f\x3a\xf3\xd6\xce\xc3\x87\xd6\xa1\xd1\x39\xed\xec\x98\x1d\xf4\x6f\xd0\x31\x3f\x0c\x26\x1f\x3e\x0c\x3c\xf4\x67\x76\x27\xcd\x4e\x6f\xf6\xd6\xec\xce\x9a\x9d\x5e\xa5\xd9\x19\xbc\x5a\xef\x5c\xef\x35\xbb\xd1\x5f\xf1\xed\xda\xf0\xd5\x1a\xfa\x33\x46\x47\x7b\x27\x9d\x7a\xa3\xbe\x55\x3f\xa8\x7f\x3e\xee\xf6\x3e\x1f\xd8\x4d\x67\xef\xe6\x9d\x73\x6c\x37\xb7\xaf\x9b\x76\x50\x1f\x6d\x8d\x11\xce\xf5\x46\x7d\x7f\xec\x34\xa7\xe3\x9b\xa3\xfd\xe9\xa4\x7b\x03\x27\x93\x5e\x38\x71\x60\x38\x59\x7b\x17\x38\x0f\xef\x82\xd1\xfd\xce\xf5\xcd\x1d\x1a\xea\x2d\x3c\xbc\xe8\xdf\xc1\xd6\x74\x72\xd3\x15\xff\x4d\xba\x5d\x77\xd2\xf9\xaa\xbf\x93\xbd\xcf\xcd\x83\xd1\x56\xbd\x3e\xda\xaa\xcf\xd7\x76\xfa\xf3\xb5\x9d\x71\xab\xd3\x1c\xcf\xd7\x9a\xc1\xd6\x1d\x19\xd7\x7b\x34\xf3\xeb\x5b\xf5\x33\xe7\x61\xb7\xff\xb9\xf5\xb6\xff\x70\xfa\xb6\xff\xf0\xf0\xb6\xff\x30\x7f\x3b\xd8\x39\xdd\x77\x77\x1e\x8e\x5e\xed\xdc\xbd\x6f\xd4\xcd\xee\x16\x42\x73\x54\x6f\x12\x64\xb7\xea\x87\xad\x87\xdd\x7e\xeb\x61\x1f\xd1\xf9\xcc\x59\x3b\xed\x7f\xee\x7c\xe8\x3f\xac\x7d\xe8\x1b\x6b\x1f\x10\x8d\x3b\x5f\xf3\xef\xe2\x2d\x19\x4b\x44\x8b\xc6\xde\xa0\x3b\xed\xde\x8c\xea\xa3\x87\xf1\xde\x0e\xa1\x39\x69\xf5\xc2\x3f\xb9\xde\xde\xae\xb3\x39\x79\x52\xaf\x37\x9d\xeb\x8d\x46\xc3\x36\xf6\xe1\xc3\xc3\xe9\xf8\x78\x32\x3b\x1f\xdd\xb4\xda\x3d\xe3\xe5\xde\x7e\x67\x3f\xf0\x66\xf6\xe4\x62\xb2\x46\xe6\x55\xef\x70\xbd\xbb\xbe\x31\x7f\x78\x70\xbc\x83\x49\xff\x7c\x34\x19\x34\xec\xfe\xcb\x8d\xfd\xed\xfd\x1b\xd7\xdf\xf7\x4e\x26\xde\xfb\x63\xd0\x3a\xe8\x6d\x3d\xaf\x4c\x8d\xe9\xf4\xe1\xe1\xda\xf3\xbc\xfa\x8b\xbd\xbd\xf3\xbd\x7e\xff\xe5\xc6\xd4\x98\xfa\x6f\x6f\x06\x2e\x86\x77\x3e\x68\xd8\x1b\x37\xce\xc6\xee\x7e\xf8\xf0\xe0\x4f\xce\x26\xf7\xc0\x9c\x75\xda\xbd\xfe\xcb\xf5\x8d\x8d\x8d\x78\x3e\xdf\x74\x9e\xf7\x1f\x82\x9d\x8d\xf5\xee\xfc\xe1\xc1\xf7\xec\x49\x65\xb6\xd1\xe8\x54\xfa\xfd\x97\x2f\x36\xba\xfb\x0f\xb3\x87\x13\xef\x9a\x9b\xf7\xa4\xee\xc8\x6d\x9c\x98\x17\x5b\x75\xbc\xed\xb4\xae\x2b\x5b\x9f\xf7\xbc\x8b\xe6\x68\x78\xb1\xbe\x77\x71\x7d\x72\x3d\x75\xf6\x4e\xdf\x7a\xed\xf7\xdb\xd3\xe3\xd1\x61\x7f\x34\x9d\x6e\x3d\x3f\xfa\x3c\xee\x1e\xdc\x5c\x1c\x9d\x9c\x5d\x8f\xbd\xe9\x87\x76\x83\xee\x1b\xa3\x7a\xbd\xb1\xb3\xb3\xbb\xdf\x6c\x5e\x9c\x9d\x9d\x8d\xa3\xf5\xbb\xb7\x87\xd6\xaf\x0d\xfa\xfd\x91\x7f\x73\x73\xd0\x6e\x3b\x0e\x3c\x38\x78\xf7\xfe\xf0\x30\x08\x82\xe0\xe5\xdd\xfd\xfd\xf3\x87\xed\x87\xcf\x10\x06\x87\x87\x27\x27\x77\x77\xf3\xf0\x68\xff\xe0\xdd\xf6\x87\x4e\x67\x72\x7c\x14\x02\x1b\xf4\x9f\xaf\x6f\xb4\xf7\x66\x6e\x38\xe8\xda\x07\xcf\xcf\xcf\xce\xc6\xfe\x74\xda\xae\x1b\xdd\x2d\xba\x57\x34\xb6\xc6\xe3\x9d\x9d\xbd\x3d\xd6\xee\xf4\xfa\xfe\xde\x99\x78\x7e\xb3\x79\x90\x9e\x4b\x2f\x1b\xa7\xef\x77\x5a\x6b\xad\xd4\xdf\xfb\x97\xad\x79\x6b\xc7\xe9\xb4\x76\x9c\x0f\xad\x43\xc7\x3c\x3d\x7c\x30\x3b\x9d\xdd\xce\x87\xc1\xc4\xec\xba\x6b\x1f\x7a\xe1\x7a\x67\x50\x79\xfb\x61\x68\xae\xad\x0d\xcd\x75\x73\xb8\xbb\xde\x75\xcf\xbb\xd9\xbf\x06\xdd\x57\x71\x63\x3b\xcd\x66\xf3\xe2\x84\xe0\xd4\x6d\x39\x9f\xb7\xdf\xbe\xf5\x9a\x47\xc7\x27\xa3\xc9\x56\x44\x33\x3a\xc3\x5b\x6b\x3b\x67\xf3\x8d\x9d\xfe\x7d\x77\x67\xdc\x7e\xd1\x1c\x9f\x0e\x9a\xc1\xc3\xb0\x69\x9c\x3e\x3b\x34\x8c\xd6\xd1\xee\xd9\x69\xeb\xe8\x6c\xde\x19\x18\xad\x8e\x69\xcc\xbb\xee\xd9\x43\x77\x60\x3c\x74\x5c\xc3\xec\xb8\xe6\x87\xae\x5b\xe9\x75\xdd\xf3\x17\x83\x57\xe7\xbd\xee\xab\xb5\x67\x83\xe4\xdf\xab\x81\x49\xf7\xe6\x51\xfd\xa4\x31\x6a\x3e\x4c\xda\x4d\x67\xd2\x6e\x7e\x9e\x1c\xaf\x1b\x4e\x7b\xab\xd9\xde\x83\xf5\x66\xbd\x8b\x57\x5a\x63\x74\xd0\x7c\xe1\x1c\x37\xd7\x3f\xb7\xbb\xcd\xf1\x79\xb7\x39\x01\xdd\xae\xe7\x74\x6f\xa6\x93\xee\x8b\xe9\x8d\xdd\x3c\x20\x7b\x0f\x5e\x12\x3b\xf4\x3c\x1b\xd9\xcd\x1b\x6f\xd2\xbc\xf1\x9c\x26\xf4\x9c\xe6\xba\xef\x74\xbb\x53\xa7\x7b\x73\x33\xb3\xf7\x83\xfb\x9b\x17\x70\xf6\x35\x7f\xe3\x2d\xff\xbe\xe1\xd7\x4f\xf0\x39\x30\xb8\xdf\xc7\x7f\x9d\xf6\xfe\x4e\xe7\x7e\xbf\xde\x6f\x6e\x77\xc6\xbb\xf5\xc3\x11\x26\xdf\xdd\xf6\x4e\xff\xc4\x6c\x8e\xe7\x2f\x9a\xc1\xe9\xf0\x90\xd2\xeb\xf0\x95\x71\x7a\xf8\xaa\xf3\xa1\xb5\xbb\x7b\x17\x9f\x29\xec\xe0\xbe\xdb\xaf\x1f\xb6\x5f\xec\xf4\x1f\x06\x3b\xe3\xb3\x4e\x33\x34\x3b\x4d\xd3\xec\x34\xc3\x4e\xe7\xe4\xd5\xd7\x6c\x23\xe6\x69\xeb\xc8\x78\x68\x6f\x19\xfb\x0d\x34\x96\x88\x7c\x9f\x4f\x4e\x2e\xba\xd7\x5b\x8d\x83\xfe\x74\xab\xd1\xfb\x6c\x5e\x34\xb6\xdf\x4e\xf6\xeb\xe7\xd7\xc7\x27\xf6\xf5\x7c\xcb\xd9\x99\xce\xeb\x0f\xdb\xdb\xe3\xa3\xa6\xd7\x3e\x39\x69\xf7\x5f\xcd\xf6\x9b\x1b\x77\x77\x0f\x0f\xeb\xbb\x4d\x7f\xf7\xac\x75\x38\x5a\x37\xdc\xa3\xf5\xf5\xd1\x76\xff\x60\xf2\x61\xc7\x73\x8f\xeb\xd7\x68\x7d\xee\xd4\x77\x77\x50\x17\xe6\xf7\xdb\x6f\x77\xf6\xde\xbe\x3b\x6e\xf7\x27\xa3\xd6\xe1\xfa\xbc\xd1\xad\x9c\xdd\x6f\x8f\xbd\x69\xf7\x7d\xbb\xdd\x1e\x87\xee\xf5\xe8\xe1\xa0\x7d\x3e\xd9\x99\xbc\xff\xec\x1d\xbc\x6f\xb7\xfb\x93\xb1\xbb\x75\xfd\xce\x99\x56\xc6\x3b\x93\xe3\x7d\x78\x82\x17\xea\x5b\x34\xef\x1a\xcf\xdf\x9e\x8c\xb7\xce\xb6\x4e\xd0\x02\xd9\x6b\x1e\x9e\x8d\xfc\xe9\x75\xb7\xd5\x7e\x70\xbc\xc9\x78\xf7\xdd\xc1\x21\x38\xeb\x9f\x8d\xfd\x8d\xe9\xc6\xfc\xf4\xe1\xf3\xb8\xf9\xf6\xe2\xf4\xe0\xf0\xc4\x1e\x8c\xe6\xf5\xe9\xb4\x35\x3f\x7d\x70\xbc\xb7\x6f\x9b\xa7\x87\x27\xe0\xbc\x3f\x7a\xb5\xb5\x85\x18\xa1\xe6\x21\x9a\x42\xdb\xf5\x13\x67\x64\x74\x77\xce\xea\x3b\x8d\x7e\x7d\xfd\x6d\x7d\xfc\xb0\x71\x68\xb4\xe7\x27\x6e\x7b\x7e\xb4\xfb\x30\x6f\xb9\xe6\xfc\xe8\xc8\xdc\x38\x33\x1e\x4e\x4f\xcc\xb3\x4e\xab\x73\x3f\x3f\xea\x98\x9d\x56\xa7\x32\xef\x1e\x75\x7a\x17\xee\x69\xeb\xe8\xe8\x74\xd8\x3a\xeb\xb4\x8e\x76\x3b\xad\x4e\xc7\xd8\x40\xcf\x3b\xe1\xc3\x43\xcb\xad\x74\x5a\x9d\xb5\x56\xb7\x63\xf6\xba\x6e\x65\xde\x2d\x76\x36\xba\xe6\xda\xc3\xd1\xd1\x39\x7a\x36\xc0\xe5\x4c\x73\xa3\xfb\xea\xc3\xab\x6e\xf8\xa1\x3b\x8a\xda\x38\x6d\xb5\x48\x1b\x0f\xdd\x8e\xf9\xe2\xc2\x3c\xfb\xd0\xea\x9c\x75\x3a\xee\x79\xa7\xd5\x39\xff\xd0\x75\xcf\x87\x83\x4e\xe7\x55\xf7\x55\x7b\x8e\xca\x1d\x1d\x55\x5a\x9d\x4e\xa7\xd7\xed\x54\x86\x9d\xb0\xd3\xed\xbe\x5a\xff\xd0\xea\x7c\xe8\x0c\xdc\xca\x70\xd0\x39\x6f\x75\x8b\xe7\xaf\xc0\xee\xfa\xb0\xfb\x6a\xbd\x75\x8d\xdb\x35\x5f\x75\x4c\x54\xee\x62\xd0\x75\x2f\x7a\x03\x73\xed\xfe\x7a\x3a\x99\xb8\x37\xfe\x8d\x73\x33\x71\x9c\x9b\x9b\x9b\xc9\x4d\x38\xa9\xdc\xc0\x1b\xb3\xe7\xcf\x9c\x1b\xff\x06\x1e\x04\x13\x70\x03\x6f\x1e\x0e\x82\x9b\x22\x84\x93\x07\x88\xca\xc1\x1b\xe7\x26\x70\xee\x6f\x6e\x9c\x7b\x18\xdc\x3c\xbc\xb8\x71\x1e\x60\x78\xe3\xdc\xcc\x6e\xd6\x0e\x02\xd8\xe8\xc1\x9b\x5b\x18\xce\x5e\xbe\xbb\xbb\x7f\x80\x33\xaf\x71\x03\x6f\x9e\xc3\x60\x46\xca\xcd\x6e\xd6\xe0\xdc\x7b\x0b\x67\x9f\xb7\x5e\x4e\x1d\xef\xdd\xf4\xe6\xf6\x66\x76\x33\x79\x3e\x9b\xbc\x80\x33\xef\xed\x61\x38\x31\xfa\xfe\x73\x78\x73\xeb\xc0\x77\x77\x70\xfb\x20\x98\x3d\x83\x33\xa7\x68\x0c\xda\xbb\xad\xce\x87\x0f\x03\x77\x77\xed\x73\xa7\xd2\xe9\xbe\xaa\x98\xc3\xc1\xc6\x46\xef\xd5\xfa\xf9\x7d\xef\x74\xf6\x0c\x0e\x6f\x0f\xfa\x60\xf6\xdc\xb8\x1d\x6d\x3c\x54\x5e\xf6\x67\xbd\x6e\xf8\xf6\xdd\xd1\x6c\xef\x45\x31\x2c\xbe\xec\x3d\x1c\x3c\xbc\xba\x3e\x6e\x3e\x77\xbb\x1b\x37\x95\x9e\x7d\x73\x03\xbb\xb3\x9b\x9b\xe2\xec\xbe\xe7\xdc\x6e\xc3\xe3\xb0\x71\xd6\xe9\xbc\xfa\xd0\xed\xb8\x6b\x0f\x83\xc1\x79\x6b\x30\x5b\x7b\x00\xc7\xe7\xaf\xc0\x91\x7f\x03\x6f\x66\x0e\x7c\x77\x8b\x70\xf9\xfc\xb6\x3f\x9f\xbc\xec\xcf\x1e\xea\xfd\x0f\x83\xa0\xf2\xd9\xbd\xfd\xe0\xf5\x0e\xc2\xc6\x9a\xf9\xf9\xfe\x7d\x7f\xff\xa1\x72\xdb\x9b\x7b\x6f\x5f\x1c\xcf\xde\x57\x06\xf6\xf1\xed\x76\xdd\x7b\xfb\xf9\x0e\xcd\xe7\x1d\x3c\x9f\x77\x5e\x4e\xeb\x7e\x7b\x07\xd6\xfd\xfa\x7a\xfd\xa4\xbe\xd7\x04\xfd\xb3\xb3\x79\xfd\x66\xde\xde\x32\x76\x76\xdf\xdd\x34\x0f\x5a\x67\x87\x27\x17\xd7\x7d\x63\xe3\x60\xde\xba\x3f\x3b\xdb\x99\xde\x34\xbb\xa7\x67\x07\xc1\xc5\xa8\xd3\xdc\xd8\xbf\xdf\xbf\x3f\xdd\x19\x4f\xfd\x83\xee\x69\xfb\x6c\x04\xae\xa7\x9d\xad\x03\xfb\xf9\xde\x99\xe9\xee\xc3\xc0\xee\x9d\x5d\xcc\x8c\xd1\x74\xab\x7b\x60\xb7\x2b\x67\x86\x3b\xbd\xb9\xe9\xf7\xce\xce\xfd\xbb\xd6\xc5\xbc\x7e\xbf\xf1\xbc\x35\x7e\x18\x8f\xf7\xa7\xbd\x93\xf3\xf6\x64\x1c\xa2\x36\x36\x9e\x37\xc6\xdb\xe3\xfd\x83\xa9\x7d\x72\xd6\x36\xfc\xb0\x13\xcc\xf7\xef\xed\xc6\x67\x63\xbc\xdb\xbc\xb1\x4f\xda\x67\xc6\x64\x1a\xe2\x36\xce\xc7\xbb\xe3\xf0\xe0\xb0\x77\x71\x76\x5e\x59\x9f\x9b\xd7\x73\xd4\xc6\x78\xc7\x0d\xf7\x0f\xfa\x17\x67\x67\x15\x23\x9c\x4f\xfd\xcf\x73\x67\x6b\xfc\x30\xf6\xf6\xbd\xfd\xc3\x36\x6a\xc3\x3d\xda\xb7\x37\xba\xce\x19\x6a\x63\x72\x71\xdc\x6e\x8f\x6f\x42\xb7\xbb\xdf\x7e\xd8\xbf\x3f\xc5\x6d\x5c\x1c\x1f\xb7\xc7\xe3\x69\x38\xdd\x3f\x38\x3d\xd8\x3b\x33\xc7\xd3\x83\xe0\xa2\xd3\x3e\x9f\xdc\xcd\xcd\xe9\xbc\xdd\xdb\x3e\x47\xfd\xd8\x3f\xe8\xdb\xed\xf6\xe4\x2e\x9c\xbb\xd3\xde\xe9\xbb\x8e\xb9\xb3\xeb\xbf\x23\xfd\x98\x84\x61\xa7\x0b\xed\x9b\xb5\xbd\xb3\x9d\x29\xdc\xb7\xcf\x2e\xda\xc6\xcd\x3c\x6c\x75\x61\xef\xf3\xdb\xc9\xde\x78\x3a\x85\xf6\x49\xfb\xdc\x98\x4c\xe7\xad\x6e\xef\xb3\xb3\xb6\x37\x71\x8f\xe0\x91\xdd\x3b\xb7\x27\xeb\xf3\x8d\xeb\x69\xaf\x77\xba\x76\x3e\xf1\x8e\x0e\xe0\xa0\x77\x76\xe6\xa3\x7e\x4c\x3f\xf7\x7a\x6b\x9d\x89\x77\x7b\xdb\x3c\x20\xb4\x72\x8f\xf6\x1d\xdb\x59\xdb\x33\x27\x07\xa1\xdf\x3d\x3d\x6f\x3b\x37\x73\xb7\xbb\x6f\xf7\xb6\xdf\x4e\x2a\xee\xcd\xe1\x71\xf7\xb4\x7d\x31\x9e\x4c\xe7\xdd\xfd\xf6\xe7\x06\x6a\x23\x0c\x66\xb6\x7d\x6e\x4f\xee\xe6\x1b\xd3\x69\xdb\x79\xf1\x61\x52\xf1\x8e\x82\xa3\x61\xef\xec\xfc\xe6\x0e\xb5\x71\xda\x7e\xf1\xe1\xfc\xdc\x3b\x7e\x3f\x1b\x76\xce\xeb\xf5\xed\xfa\xa8\x7e\x58\x3f\x69\xd6\xf7\xbb\xf6\xf6\xc9\x78\xff\xac\x8e\xf7\xbc\x9d\xbd\xe6\x59\xb0\xb1\x6f\xb7\xb6\xee\x1f\xb6\xc7\x37\x8d\xb3\x77\x87\xc7\x6d\x30\xed\x8f\xe7\x8d\x83\xb6\xdb\x79\xd8\xd9\x69\xee\xf7\x3e\x20\x22\x4e\xe7\x83\x8b\x8d\x46\xe3\xdc\xdd\x1d\x07\x37\xef\xfa\x9d\x73\xfb\x7e\x3c\x45\x74\x78\x77\x52\xaf\xfb\x74\xcf\xdb\x1a\x57\xf6\xe7\x27\x3b\x07\xdb\x9d\xf1\x7e\x7d\xe7\x04\x3d\xdb\x6b\xa2\x09\x57\xbf\xe8\x4e\x5b\xce\xb6\xb1\xe5\x8c\x77\xf7\x0e\x4f\x9a\x37\x67\x17\x68\x7e\x4c\x5b\xad\xcf\x68\x3c\xf7\xde\x1e\x1e\x9f\x38\x7e\xf7\xe2\xe5\xc6\xd6\x41\x63\xb2\x73\xb6\xe3\xdf\x1c\x5c\x9c\x9d\xb4\xc7\x63\x77\x7a\x82\x18\x04\xbf\x8f\x0e\xd9\xde\x51\xe3\xec\xff\x63\xef\x4f\x9b\x1c\x45\x92\x45\x61\xf8\xfb\xfd\x15\xd9\xba\x66\x6d\x99\x87\xec\x04\x01\xda\xaa\x4e\x9e\x79\x83\x4d\x2c\x42\x88\x55\x82\x3e\x6d\x63\x08\x10\x20\x56\xb1\x08\x44\x4f\xbd\xbf\xfd\x31\x24\xe5\x9e\xd5\x5d\x3d\x77\xe6\xd8\x7d\xcc\x9e\x0f\x55\x82\x08\x0f\x77\x0f\x0f\x0f\x0f\xf7\x08\x32\x7c\x4d\x9c\x7c\x84\x07\x06\xd0\x81\xde\xc7\x69\x3d\x05\xd1\x34\x7d\x97\x91\x4f\x42\x30\xa7\x35\x3a\x4b\x0f\x26\x2d\xaf\xfd\xba\x72\x5d\x4b\xb5\xc7\x1b\xa6\x63\xf2\x43\xb1\xd5\x4c\x19\x84\x55\xe0\x9a\x27\xf5\xb4\x99\x0f\x99\x3c\x29\x1c\xd5\x5c\x87\x25\x00\x52\x07\x80\x4c\x95\x0d\xcd\x65\xcb\xb9\x1c\x03\x1e\xb0\x80\x06\x66\xd6\x2a\xfb\x6e\x1f\xa7\xf4\x7c\x21\x4a\x9e\xef\x2c\x81\xdf\x8e\x82\x13\x4d\x85\xc5\x3c\xe5\x44\x49\xf6\x7d\xa3\xe7\x99\x24\xe7\x74\x47\x45\xbd\xaf\x23\xcb\xb5\xe9\x04\x7d\xfc\x24\xcc\x29\x9a\xe6\xb8\xdc\xd2\x54\x59\xf6\x83\x80\xe1\x85\xb1\x4a\xd2\x34\xcd\xe5\xf9\x46\x96\x65\x3f\x0c\x62\x86\xeb\x97\x8c\xc3\xb9\x73\x0b\x42\xb1\x58\x89\x8c\x6c\xa2\x5f\xef\x48\xc0\x46\xe7\xf5\x4e\xdd\x47\x6c\x66\x29\x73\xc1\x31\xfd\x98\xe7\xd5\x9e\x27\x9a\xce\xf9\xc3\x86\x13\xe5\x30\xca\x5b\xc3\x1c\x11\xe3\xb9\x1e\x33\x45\xc9\xf1\x5a\xaf\xdb\x43\x37\x20\x04\x5b\xc5\xe6\xeb\x68\x29\x14\x8e\x61\xda\x63\x3c\xc8\x5d\x2b\x2c\xa8\xcd\x66\xc8\x1c\xc4\xca\xb3\x6d\x1b\xc9\x7a\x7d\x2f\xba\x6d\x04\xc0\xb2\x61\x88\x86\x6c\x40\x5b\x31\xcb\xd0\x31\x49\x35\x43\x2c\x52\x07\x11\x70\x80\x4f\x92\x11\x33\x97\x7a\x19\xeb\x66\x96\xb5\xa3\x51\x4b\x91\x64\xca\x24\xec\x4a\x12\x6c\xd3\xbc\xf8\xd1\xbd\x6f\xd7\xfb\xe0\x92\x28\x5e\x7d\xeb\x36\x0f\xce\x7e\x39\xfb\xe4\x6f\xe3\x6f\x7d\xf5\xb7\x3e\x78\x04\x00\x99\x37\xfd\xf2\x59\x32\x4c\xe4\xe0\x82\x92\xd1\xbd\x1f\xc9\x81\x43\xef\xbb\x12\xcc\xda\xcc\xfa\x58\xdb\xdf\x92\xd7\x58\x5b\xd4\x4d\xf5\x52\x16\xec\xb7\x4f\x65\x8e\x6d\x3e\x95\xed\x9f\xcb\xcc\x0f\x71\xfa\x0f\x95\x31\x55\x51\x6c\x37\xeb\x75\x52\x57\xbd\xdf\x6d\x8f\xd1\xe1\x30\xce\x8b\x42\x26\xc0\xb1\xc9\x58\xb0\x9a\xb2\xf3\xe1\x65\xc4\xc8\x53\x73\x96\x17\x0d\x70\x00\x88\x3d\x95\xb0\x92\x24\xc9\xa6\x1b\x70\x66\x3e\x16\x54\xba\x57\x8d\x4c\x5f\x0a\x92\xea\xc7\x01\x43\x08\x82\x1a\x77\x5a\x94\x0b\xb9\xad\xea\xeb\xe8\x60\x39\x43\x5e\x15\xc2\x75\x1c\xc7\xbd\x8d\xd6\xf4\x75\x94\x9d\x69\x12\xa7\x75\x3c\x8c\xf9\x43\xcf\x87\xe4\x87\x71\xb5\x54\xce\x7c\xa0\x34\xc3\x09\xf6\x66\xbd\xce\xca\xaa\x8d\x09\x41\x3d\xa0\x43\x74\x2e\x88\x4b\xd3\x52\xf5\xe4\x50\xb5\x6e\x10\x16\xd4\x3c\x42\x62\xbe\x5c\xf4\xfd\x1a\x9f\x82\x78\x69\xd9\x76\xd7\xf7\xb5\xac\x84\xed\x66\x6d\x66\xa7\x61\x3f\xfe\xaa\x9d\x0c\x87\x89\xb0\x58\xba\x96\x4d\x36\x94\xbf\x4d\x01\xf0\xe9\xb0\x71\x4c\xdb\xc8\x17\x2b\x12\xf1\xae\xfa\x48\xd2\x04\x00\x0a\x79\x19\x67\x51\x96\x7d\x3f\xd0\x7b\x7d\x18\x93\x67\x3d\xe7\x74\x45\x10\x3d\xd3\x71\x2f\x7b\x07\xf4\x9e\x62\xd3\x8c\xbb\xc0\x05\x3c\x68\x47\x41\x8b\xd0\x97\x78\x40\x96\x6a\xe7\x69\x8e\xd0\x7a\x54\xa4\x2c\x2b\x9f\xe1\x62\x86\x20\xaf\x73\x84\xcb\x4c\x45\x55\xc3\xc8\xed\xe1\x84\x33\x5c\x96\xf3\xfd\xfc\xf2\x93\x38\x66\x78\x41\xb0\xd7\x57\x38\x59\x55\xc3\x24\x8e\xcf\xf8\xae\xb1\x91\x25\xab\x17\x7c\x67\x38\x5d\xef\xe5\x6f\x29\xf2\x19\x8e\xe1\x85\x9e\xbf\x0b\x9c\xa2\xaa\x7e\x14\x9c\xc7\xc4\xbe\xb4\xe5\x9e\xf0\x9d\xdb\xea\xfd\x1c\xa4\x88\x86\x04\x80\x5c\x65\xbc\xb0\x12\xb8\xa4\x41\x70\x87\xa3\xf4\xf9\x9e\x53\x7d\x12\x50\x00\x00\xc7\x0d\x0e\xe3\x53\xba\x3e\x91\x14\x93\x72\xea\x5a\xc5\x55\xd9\x09\x88\x70\x11\x30\x6a\xb8\x8f\xd9\x72\x6d\x70\x73\x47\x37\x87\x96\xdc\xe6\x8a\xa2\xe9\xc9\x31\x4b\xe7\x82\xa8\xeb\x90\x6b\x22\x59\xdb\x8c\x4f\xba\x11\x65\x59\x64\x2e\x54\xe7\x70\x1a\xba\x65\x43\xf4\xce\x3d\x09\x40\x43\x93\x74\xe7\xeb\x80\x60\x88\x3d\xd7\xf3\x12\x00\x39\x07\x02\xd9\x34\x4b\xd0\x6e\x80\x4c\x8f\x08\xee\x44\xfa\x8d\xd0\xe2\x4a\x87\x24\x11\x05\x08\x92\x3e\x81\x93\x12\x32\xbe\x48\x07\xd2\xc1\xb7\xf9\x50\xf2\x09\x73\x33\xa7\x38\x02\x07\xe2\xde\x44\x91\xb0\x39\x66\x62\x09\x98\x8d\xdb\x0e\x39\x4e\xf6\x09\x72\xce\xb5\x32\xad\x47\x1c\x49\xd1\xe8\x08\xc7\xfd\xe1\xaa\x16\x69\x5e\x8a\xd6\x31\xe5\x5f\x02\x34\x1c\x00\xc0\xfa\x00\x44\x3e\xe2\x73\xa1\x60\x4b\x26\x2e\xed\x1b\x48\xa6\x79\x5a\x89\x02\x41\xa3\x47\xd7\x7d\x95\x05\x20\x7c\x30\x05\x3e\x29\x33\x21\x17\x72\x56\x36\xde\x37\x90\x48\x3d\x83\x01\x39\x7e\xbd\xe7\x47\x82\x2b\x01\x70\x89\xa5\x48\x10\xac\x2c\xd4\xd5\x00\x90\x4d\xa9\xb9\xd6\x48\xf3\x7c\x1b\x65\xe7\xf0\x25\x71\x26\x38\xa5\xf8\xa7\xe5\x5e\x1c\xcf\x34\xd0\x49\x5a\x34\xc1\xdd\x74\x51\x6f\xbd\xa6\xdc\xda\x7e\x62\x85\xcb\x1c\x77\x11\x61\x5b\xd2\xad\x6a\xc2\x1c\xb6\xd1\xb5\x86\xf7\x23\xcf\x72\xd3\x21\x6b\xe2\x5d\xb6\xc7\x30\xf8\x30\xa3\x98\xea\x88\xe9\xe1\x10\xde\x27\xed\x24\x26\xf5\x6a\x55\x0d\xa7\x70\x69\xee\x66\x62\xe4\x83\x12\xcc\x15\xc2\xc5\x7c\x71\xbe\xc2\x4b\x1d\x3a\x90\x2b\x93\x38\xcd\x8c\x02\x60\xe6\x81\xcf\xca\x35\xb6\x46\x61\x6f\x37\x0c\x25\xb8\xc6\x1c\x7f\x6a\xcd\xe1\xd1\x64\xaf\x43\xf9\x2a\xd9\xce\x69\x5e\xf7\xa3\x5d\x6a\x73\xd8\x8c\xda\xae\x0e\xad\xeb\x5a\x79\xb0\x15\x95\x84\x74\x46\x85\x10\x47\xba\x18\x9d\xda\x69\xc8\x65\xb5\x3f\x72\xf9\xe3\x50\x32\xd9\x99\x3d\x9a\x39\x10\x36\xf7\x8e\x07\x67\x62\xa1\x1b\xc6\xa5\xf6\x0b\xf8\xc0\x76\x95\xb2\xdb\xaf\xe9\x75\xcb\xc3\x76\x38\xf7\xba\x7d\x16\xd4\x33\xb6\x24\x2d\x57\x26\x84\x6d\xc8\x22\x46\xa5\xc3\x58\x32\x1d\xc5\xd4\x1c\xd5\x60\xa8\x8d\x2c\xc7\x4c\x37\x10\x0d\xd9\x87\xee\x08\xb7\x9a\x2f\x65\x1a\x33\x87\xda\x89\xba\x3c\xc8\xf8\x12\xca\x00\x20\xd4\xb6\x36\x36\xcd\x64\xc2\xbb\xa3\x6d\x92\x68\x49\xcd\xdb\xd1\x66\x32\x42\x66\x2c\x8b\x44\x73\x53\x38\x02\x65\x95\x37\x3b\x49\x05\xab\x93\xba\x02\x0e\x4a\x47\xa9\x47\x35\x04\xca\x36\x00\xf0\xb1\x4c\x99\xc2\x68\x34\x1d\x2f\x27\xb3\x39\x4f\xee\x5b\x1c\xca\xc7\x36\xa5\xbb\xe8\x64\xa3\x1e\x95\xd3\x66\xc1\x47\x1c\x39\x32\xad\xe1\x7e\x71\x1c\xc5\xb9\x14\x58\x5a\x87\x94\x10\x95\xa4\xcc\xd0\x0d\xf3\xaa\x48\xc5\xb1\x4e\xf9\xdc\x7a\x38\xdc\x04\x53\x87\xd5\x5c\x04\x56\x93\xad\x2f\x01\xb7\x75\x4e\xeb\x46\xec\x63\xb1\xc2\xc2\x76\x4b\x75\x67\x6d\x3b\x21\x34\x0b\x01\x87\xaa\xd5\xa1\x4a\x45\x63\x21\x79\x6b\x69\x8e\x46\xc6\x51\x37\xa1\x1c\x5d\xf1\x70\x10\x91\xf1\xc8\x66\x14\x09\xd7\x16\x73\x73\x65\x39\x9c\x8e\x1d\x4d\x71\x18\x64\x81\x8a\xef\x59\x26\x4e\x4f\x6b\x18\xd5\x46\xfc\x24\x9a\x97\x6a\xb0\x59\x6b\xd3\x25\x32\x32\x20\x8c\x84\xe7\xab\x03\x3f\x94\xdd\x75\x58\xce\x57\x2d\xdd\xb1\x87\x0d\xa7\x12\x2b\x2e\x4c\xd7\x94\x5e\x4d\x38\x8f\x3f\xc2\xbb\x91\x54\x75\x44\x9b\x6b\x9d\x65\xc9\x10\x69\xd2\x01\xbb\xd9\x1d\xe6\xb8\x0d\x08\x39\x0e\x27\xe8\x9c\x0f\x96\x78\xc6\x1f\xa1\x60\xe3\x80\x1c\xf0\xbd\xf7\xbd\x9e\xce\xd1\xc2\x06\x1b\x7c\xa9\x3b\x80\x48\x8d\x6a\x32\x21\x3b\x0b\x10\xd0\xa2\x64\x1d\xc3\x83\x64\x3c\x80\x64\x62\xd8\x04\xb0\x55\xf0\xda\xaa\x55\x09\x97\x9b\x26\xbe\xe6\x01\x57\x2b\x65\x29\x63\x74\x3a\xf5\x67\x04\xeb\x18\xab\xa0\x55\x15\xc5\x8c\x84\xb5\xc5\x6f\x24\xc6\x5c\x8d\x0d\x1c\xd0\x45\x98\xf3\x19\xbd\xdf\xf8\x00\x6d\x78\xc5\x62\x55\xba\x4d\x78\x2a\x99\x32\x08\x18\xfb\xf4\xa6\xf4\x47\x36\x6e\x95\x60\xc1\x55\x85\x48\x4c\xa0\x5d\x30\xd1\x85\xc5\xd1\x5c\xab\x6e\x55\x52\x0d\xb3\x1b\x26\x9d\xd9\xa9\x43\x66\x8a\x2e\x87\x01\x2a\x9d\x2a\xd4\x9b\x8c\x89\xa1\xec\xaa\x88\x0a\x4a\x39\xf4\x17\x2b\x51\xf2\x79\x75\xc6\x2b\xe4\x24\x60\x36\x60\x1c\xe9\xe5\x82\x59\x0a\xd4\xc8\x01\x23\x47\x53\x8e\xbe\x7a\x58\x39\x18\x13\xcf\x66\xed\x1a\x93\xb5\x10\x16\x59\x65\x4a\xd1\xc9\x78\x9d\x1e\x6d\x43\x06\x5a\xa3\x1c\x14\x61\x7f\x6a\xe4\x19\x51\x14\x41\xed\x2b\x28\x10\xb4\x72\x25\x7b\xb2\x13\x15\x40\xf2\x29\x29\xd8\x6a\xb4\x7a\x2a\x36\xf2\x08\x21\xa3\x65\xbe\x71\xab\xf5\x7e\x3d\x59\xa3\x30\xa6\xef\xbd\x0d\xa6\xcf\x46\x3e\xe7\xda\xf1\x4e\x01\x19\x48\x0e\x3a\x1d\x36\xf9\x08\x0b\x48\xd7\x21\x9b\xd8\xc7\x27\x3b\x67\xbb\xeb\xe2\x44\x16\x81\x6f\x13\x51\x30\x71\xa0\x9d\x43\xf9\x0c\x14\xee\x1a\x6a\xb3\xeb\x3c\x7f\xb1\x72\x16\x26\x5f\x02\xc0\xcb\xa0\xd0\x36\xfb\x34\x80\xeb\xcd\xfc\x84\x1d\x87\x6c\x84\xe5\xc6\x18\xc6\xaa\x51\x51\xaf\xa7\xc3\xdd\x38\x2f\x76\x5b\x11\x95\xb1\xf5\xd2\x38\xcd\xa6\x44\xa3\x57\x5b\xb2\x09\x98\x00\xac\xeb\x95\x77\x1c\x4b\x1e\x8c\x5b\x36\x23\xeb\x8e\x2f\x14\x46\x89\xbb\xde\xae\x0b\x86\x1a\xa0\xc0\x90\xa2\x83\xd1\x16\x33\x62\xca\xa6\xc9\x66\xb4\x85\xb6\xab\x5d\x24\x64\x25\x56\x71\xa0\xf6\xb0\x23\x6f\x49\x61\x80\xf9\x36\x16\x8f\x25\x6c\xa5\xee\xb8\xa8\x58\x1c\x91\x15\x50\xa7\xe3\xd5\xca\x5d\x4c\xfc\x69\xe6\xa0\x42\xe5\x2d\x19\x41\xe8\x04\xc5\x0b\xa4\x23\xea\xf3\x19\xb3\x20\x56\x9b\xc4\xde\x1c\x57\x84\xcc\x2d\x7c\x3e\x4b\x91\xed\x76\x4d\x94\x5d\x61\x5a\xa6\xd9\xd0\x93\x7d\x8c\xee\xa1\xa3\xe6\xea\x13\x23\x8f\xd0\xe1\x22\xd4\x11\xd9\xde\xaf\xa2\x53\x03\x00\x7b\xd8\xea\x24\x02\x9b\xa5\x29\xb9\x5b\xdc\x1b\x13\x52\x3e\xa1\x11\x87\x0c\x11\x1c\x64\xb0\xe6\x53\x53\xcb\x00\x62\xe8\x8e\x03\x18\x4c\x39\x8f\x58\x46\xf9\x18\x6e\x4b\x00\x48\x8b\x5e\xd0\x26\x17\x41\xa7\x23\x37\x96\xbb\xe1\x72\x39\x8e\xb9\x5d\x45\xc0\x63\x4e\x5c\xef\xd7\xfc\x52\x3a\xac\x34\xd1\x73\x41\x72\xb2\xf7\x63\xba\x44\x64\x22\x8a\xf9\x3c\x54\xd7\x6b\x36\x95\x51\x32\x33\xb7\xf3\x35\x48\x2a\x08\xf1\x17\x32\xc1\x08\x24\x91\xe6\xa8\xac\xeb\xb2\x05\x0f\xab\xa0\xb2\x28\x82\xd7\x73\x66\x6d\x4e\xd1\x0e\xc3\x33\x27\x2b\x88\x31\x9a\x6d\x26\x07\x62\x74\x42\xb2\x15\x38\xc2\xbb\xac\x65\xd1\x51\x63\x24\x3e\xc7\xee\xd0\x96\x91\x8a\x69\xec\x59\x0e\x71\x18\x0a\x2d\x66\x1d\xc9\xc3\x8c\xf0\xed\x31\x36\x03\x6d\xcd\xd6\xab\xe5\x02\x9e\x0c\x4d\x92\xc1\xe9\x53\xc3\xe7\x07\x96\x01\x9b\xf1\x86\x41\xca\xbd\xb1\xad\xc1\x32\x3d\x1e\xdd\x85\x53\xd4\x3b\xb3\x91\x44\x38\xa4\xec\x71\x08\xf0\xf1\x14\x98\x00\x10\xe3\x64\x49\x88\x1b\xc7\xd7\xa8\x29\xab\x2a\x07\x1e\x3f\x36\x53\x72\x0f\x62\x92\x5e\x01\x12\xa8\xf1\x06\x06\xab\x66\x25\xf1\x42\x3c\x6b\xfb\x35\x6d\x95\xa4\xde\x11\xf5\xd6\x39\x86\x6d\xfc\x53\x83\x51\xc7\x5d\x37\x4e\x4e\xf3\x08\xcb\x4e\xab\xa9\xa9\x09\x25\x29\x1d\x3b\xe0\x83\x85\x1c\x22\xd9\xd0\x19\x2f\xbb\x12\x95\xd0\x95\x8f\x06\x38\x20\x39\x1e\xf8\x60\xbe\x42\xec\x65\x3a\x6a\x11\x82\xf2\x8d\x1d\x3b\xa9\x51\xad\x3a\xed\x28\x47\xe1\x6a\x13\x9c\xe4\x80\x60\xe0\xf8\xa8\x2a\xa0\xaa\x7c\x30\xd6\x56\xdb\xb5\x05\x66\xbe\xad\x17\xd6\x1a\xe8\x34\x00\x10\xd5\xe2\x13\x19\x83\x8b\xe9\x84\x6d\x75\xfd\x60\x25\x04\x42\x24\x7a\x2d\xc6\xd9\x9e\xd9\xb3\xd5\xd0\xa7\xea\x34\x3d\xd6\x9b\xa9\xc8\x25\xe5\x5e\x3d\x8c\xd6\x51\xa7\x76\x73\x75\x8c\x4a\x34\x17\x4b\xf5\x6e\xbd\xf6\xba\x76\x9d\x1f\xc7\x0c\xe1\x53\x3e\x6f\xc4\xd5\x6e\xc3\x98\xd5\x12\x80\xf4\xa0\x23\xad\x9c\x51\x88\xb9\x08\x37\xd9\xc8\x61\x46\xb2\x81\x93\xa9\x39\xac\x88\x05\x88\x2c\x52\x02\x04\x08\xb6\x11\x0c\x44\x08\x06\x8d\x4a\x92\x6e\xbc\x06\x00\x88\x0e\xb3\x57\x27\x59\xb3\x9d\xce\x0d\xaa\x3b\x7a\x54\x68\x1d\xbb\x74\x5b\xa1\x15\x83\x6f\x17\xa3\xcc\x5d\x0e\x4d\x21\x9e\x4e\x35\x40\x03\x82\xb4\x8e\xf5\xee\x30\x33\x49\x8d\xa8\xc4\xc6\x00\xb2\x4e\x83\x66\x5e\x2d\xe3\xaa\x53\x6d\xf6\x08\x28\x93\xc4\xb4\x76\x61\xec\x0f\xa1\x02\x20\xc9\x02\x62\xd0\x39\x07\xda\x57\x1c\x20\x35\x19\xe9\x1f\x5d\xad\x2d\x35\x76\x21\xd3\xcc\x18\xca\xa4\x2d\x0a\xad\x00\x37\x75\xc2\x95\xec\x6c\xfc\x49\x2e\x99\xd0\x62\xdf\xca\xea\x11\xdd\xed\x13\xa6\xde\x63\xb8\x3f\x6f\x3a\x6c\x88\xc0\xdb\xb9\x30\xee\xb0\xd6\xd7\xa6\xd3\x89\x97\x25\x6b\x7d\x41\xdb\x94\x8b\xe0\x0d\xeb\x55\x66\xeb\xee\x1d\xdf\x40\xd5\xf6\xa8\x36\x29\x62\x64\xd6\x86\x57\x0e\x91\x42\x8e\x80\x2a\xc3\x49\x6d\x64\x40\x2f\x37\x13\xe0\x03\x59\x24\x96\xb6\xd1\x00\x10\x03\x42\x69\x35\x78\xb8\x4a\x76\x87\xc5\x41\x55\x96\xd4\x36\xd8\x6c\x91\xc9\xd6\x2b\x72\x02\xdb\xce\xf0\x7d\x5e\xaf\x69\x6b\x4f\x90\x14\x2a\x39\xee\x86\xc9\x49\x81\xf6\x49\x6a\xe7\x30\x2b\xb1\x99\x02\x00\x28\xbd\xd1\xf0\x38\xd5\x93\x11\x12\x27\x4d\x91\x8b\x62\xb0\x92\x39\x61\x3f\xae\x11\x7a\xba\x2b\xd0\xe3\x9c\x48\x7d\x71\xe9\x72\x71\x61\x95\xa1\xbf\xb7\x83\x78\x5f\xbb\x63\xc0\x18\x3e\x54\x75\x9b\x46\x4f\x37\x0b\x4c\xe3\x17\xb9\xbd\xb7\xd7\x02\xc0\x8d\xf3\xc9\x6b\xc8\xec\x0e\xbc\x2f\x00\x0b\x99\x6e\x8a\x4a\xc5\xdc\xb6\x92\x97\xa6\x93\xaf\x8e\x26\x3d\x9f\x92\xf1\xb1\x90\x15\xde\x27\xbc\x3c\x68\xd2\xe5\x9a\xdf\x57\xf3\x43\x92\x8f\x0d\x7a\xa5\x1e\x09\x6f\x42\x13\xa1\x8e\x1d\x7c\x7e\x2b\x83\x86\xc2\x17\xde\x74\x01\x44\x4a\x0c\xd8\xed\x12\x00\x10\xfb\x02\x54\x31\xe5\x48\x82\xcc\x13\xef\xcc\x4e\x64\xca\xdb\x58\xd1\x2e\x56\x75\x3c\x4f\xdb\xa6\xdc\x18\x33\xa6\x8c\xd0\x08\x5f\x85\x25\x09\x58\x72\xca\x44\xcd\x76\x4e\xcf\x7c\xfe\xbc\x2f\x90\x9e\xa2\x72\x8f\x90\x2e\x23\x5a\x8b\x85\x9f\x75\x53\x11\x62\xda\x2e\x6c\x4c\xc2\xe7\x5a\xa8\x63\x43\x92\x00\x02\x88\x09\x61\x99\x33\xc3\x52\x9a\xf1\xb9\xe1\x9c\xe8\x70\x66\x17\xc3\x91\x19\xb3\x7e\x51\x57\xa3\xdd\x8a\x4f\x23\x97\x1f\x1f\xe9\xc6\x5a\x9d\x00\x2b\x13\x1c\x4d\xe9\x45\x2c\x3a\x04\x00\x2e\x2a\x00\x15\x91\x0f\x10\xdf\x28\x25\x8d\x03\xde\xaa\xc4\x14\x50\xe3\x79\x2a\x99\x8d\x19\x4b\x9c\x75\xac\x3a\x7d\xe9\xee\x0b\x8f\x98\xec\x42\x31\x5a\x73\x08\x99\x10\xc4\x18\x70\x40\x70\xb0\x29\x98\x65\x25\xcd\xc4\x9a\x3a\xa7\x49\x02\x72\xb6\x9e\x42\x91\x88\xad\xe4\x0b\xf6\xb0\x5c\xe5\xb1\x23\xc0\x93\xf1\xa2\x4d\xd1\x22\x4f\x0e\xa7\x4d\x69\xf2\x6b\x25\x84\x19\xf9\x7c\x7e\x28\x47\x33\x91\x04\x52\xb8\x2d\x64\x42\x06\x14\x49\x95\x87\x3c\xcb\x56\x75\xe5\x42\xc8\x88\xf4\x66\xfe\x38\xa4\xdd\xd0\xdc\xf8\x46\x22\x03\x0e\x87\xf0\xa6\x8c\x68\x82\x0e\x89\x38\x5b\xca\x63\x21\x44\x60\x41\x93\x11\x79\xbf\xde\xed\xdb\x2e\x84\x80\x57\x6f\x84\x4c\xdc\xd3\xc6\x4e\x96\xac\xae\x40\x4e\x33\x7c\x78\x58\xf8\x22\x0a\xe8\xf6\xb8\xb5\xa4\x83\xd3\x5a\x63\x7e\x1c\x15\x71\xb1\xc7\x4f\xe8\x7e\x06\x5c\x5f\xa0\xda\xf1\x3c\xe5\x4b\x63\x11\x6c\x1d\x1c\xad\x0f\xa3\x29\x0e\x65\xb5\xea\x2e\x89\x3c\x23\x43\xd2\x60\x8b\x0e\x5a\x77\x3a\x80\x29\xaa\xa2\xa6\x40\xf3\x01\x16\x20\xb1\x48\x02\xd0\x39\xcc\x11\x52\xa1\x9d\xaa\x2e\x23\xcf\x5c\xc7\x5a\xbe\xc5\xf0\x64\x87\x2a\xbb\xe4\x70\xe0\x3d\xd1\x8b\xe2\x80\x05\xbb\x7a\x62\x64\x80\x06\xa4\x0f\x40\x2e\x28\x51\xb5\x80\x84\x48\xa6\xd6\x62\x63\x92\xfa\xf9\x4c\x9f\x14\xca\x7c\x8a\xb4\x41\x3e\x1b\xea\xfb\x83\x4c\x34\x58\x8b\x8f\x1c\xaf\x3a\x44\x7b\x99\x3e\xd5\xd8\x7c\x46\x8c\x97\x90\x32\x1e\x21\xfa\x61\x2a\x19\xa1\x3f\x69\xa4\x64\xbc\xae\x53\xc4\xb3\xf1\x58\xa0\x56\x99\xbd\xe5\xcb\xb1\xbd\x38\xf8\xdb\x60\xd5\xe5\x47\x5c\x50\xf0\x50\xa2\xc2\xb8\x99\x4e\xad\xdc\x9c\x1c\x86\x9c\x24\x3a\x5b\xa0\x02\x09\x18\x55\xe2\x90\x69\xb6\x75\x8a\x68\x8e\x0b\x73\x75\x02\x5b\x69\x19\x19\x6b\x65\xc9\xcc\x78\x44\xd1\x59\x41\x4a\x89\xd3\x69\xb6\x06\x53\xea\x38\x5e\xf4\x51\x8b\x22\x92\xb2\x0e\xf0\x79\x11\x56\x3b\x43\x44\x63\xc7\xda\xb1\x98\x8c\x69\xf0\xd1\xc2\x27\x3c\x6a\xb2\x81\x93\x10\x76\xb7\xdf\xb9\xa7\xda\x40\x47\xfe\x02\x74\x85\x83\x38\xcd\xf5\xeb\x85\x60\xbc\x72\xfb\xe7\xf9\x69\xbd\x67\xd6\xf8\x49\x75\xf6\xf6\xda\x46\x93\xb9\x93\xed\xd8\x76\xdd\x7a\x8d\x00\x16\x7e\xbc\x26\xf2\x85\x7e\x6c\x9a\x08\xd2\xa5\x60\xe4\x2d\xe7\x27\x5d\x2a\x87\x30\xcd\x40\xb9\x55\x40\xb5\x3b\x92\xba\x6c\xde\x98\x2e\x00\x84\x8f\xe6\x23\x74\x11\xaa\x3e\x30\x61\xcb\x88\xa5\x24\x8c\x69\x9f\x4d\xc7\x73\x4c\x72\x1a\x73\xdf\x71\x93\xa3\xb4\x1f\x56\xe3\xb6\x6c\x71\x15\x8b\x09\x73\x36\xa6\x75\x99\x60\xc6\x80\x23\x40\xb2\x32\x59\x7c\x95\xcd\x4d\x32\xe3\x01\xa0\xd6\x1e\x24\x59\xbc\x15\x4e\xe0\x76\x32\x86\x4f\xec\x64\xd1\xed\x66\xe2\x68\xd3\x29\x42\xca\xac\x92\xa3\x27\x96\x61\x2c\xb3\x8d\x71\x3d\xf3\xc6\x16\x32\x35\x5d\x91\x7d\xc8\x45\xf9\x36\x22\xd7\x7b\x62\x71\x6a\x3a\x8f\xc7\xed\xb1\x05\xd3\x8a\x41\x00\x3d\x06\x34\x75\x38\x66\xe2\x84\x90\x09\x50\x03\xbf\xee\x98\x03\xb7\xa8\x92\x3d\x8b\x09\x2e\xde\xec\x84\x6c\x9b\x4a\x01\xc0\xba\xe9\xe8\xb0\xce\x94\x55\x32\x0b\x9a\x4c\x62\x33\x0a\x80\x98\xdc\x36\x14\x00\xa3\x31\xc3\x82\x7a\xb3\x8b\xd9\x0c\xdb\x79\x68\x55\xcd\x67\x1b\x9d\xf2\xc0\xcc\x4c\x4c\x92\x90\x91\x6c\x55\xc0\x43\x99\x9c\x72\xc7\x9a\xec\x65\x9b\x6f\x75\x20\x93\x02\x8a\x8a\x09\x8d\x49\x93\xa9\x01\xb6\xac\xac\xcd\x56\xdc\x6a\x99\x69\xb3\x6e\xe9\x60\x31\x2a\x79\x13\x0d\x18\x0b\xb0\x24\xea\x9d\x36\x15\xcf\xc7\xf8\xf3\x4e\xc3\x57\xea\xb4\x7f\xce\xe8\xc5\x9c\xdd\xa2\xb5\x4d\x36\x0d\x7d\x1c\xd2\xeb\x80\x29\x42\x3d\xda\x02\x1b\x58\xe8\x04\xde\x19\x56\xaa\x59\x9b\xed\xba\xc3\x88\x66\x9d\xef\x75\x5b\xb4\x04\x65\x3f\x71\x2d\x84\x87\x61\x5f\xf7\x34\x37\x37\xe8\x06\x00\x4b\x62\xca\x65\x2b\x80\xbd\xac\xfa\x00\x02\xc4\x2a\x33\xa7\xfc\x7e\x74\x42\x9b\xbd\x37\x1d\xee\xcb\x8d\x03\x0f\x35\x49\x5e\x6b\x94\x69\x11\x09\x88\x96\x54\x78\x30\x9a\x1a\xa0\x4b\x7e\xd6\xf3\x41\x13\x02\xa8\x66\x46\x51\xee\x4a\x18\x5d\x0e\x67\xa2\x34\x1b\xaa\xb3\xc2\x9d\xd2\xac\x66\xb1\x69\x47\x8e\x44\x33\xd9\xc9\x34\x20\x4f\x30\x43\x38\xfd\x38\x80\x91\x83\xfb\x21\xde\x4d\x15\xb0\x2c\xe1\x64\xcc\x2c\x37\x46\x36\xa3\x0c\x7c\xcc\xcf\x87\x04\x41\xd5\xd1\x21\x6e\x60\xc3\x1e\xcd\x27\xf2\xb6\x9e\x1b\x2a\x07\xa1\xb6\x65\x67\x8b\x0d\x5f\xb8\xc6\x1e\xed\x62\x72\x66\x8d\x64\x1a\xd0\x4c\x07\x8f\xe4\xce\x37\xac\x8b\xf2\xc2\xd9\xc6\x69\x4f\xe4\x78\xbd\xd3\x6a\x08\x99\x19\x1e\xec\x4c\xc6\x63\x1e\x37\x34\x30\xd7\x99\x04\x8c\x86\x90\x01\x96\x42\x08\xcb\xab\x6c\xd5\x98\xbe\x09\x22\x30\x19\x8e\x24\x16\x57\x91\x72\x24\x50\xec\x71\x3f\x9b\x89\xe2\x61\xaa\xad\x18\x07\x2b\x32\xc1\x4a\xe7\x52\xa6\x0d\xb7\x09\x17\x18\xbe\x33\xd9\x00\xf1\xf2\x3d\x8f\x08\xd6\x43\x63\x2b\x37\x98\x6f\xe7\x9d\x94\xf3\x2e\x24\xb8\xe8\xce\xc1\x43\x55\x1a\xa3\x3b\xfe\x38\x83\x92\xec\x58\x87\xc3\x46\x5f\xae\xc0\x1e\x19\xcd\x96\x98\x64\xb4\x5d\x84\xfb\xc6\x04\x5b\x25\xf4\x94\xe1\x00\xca\x8c\x12\xe5\x80\x4d\xe8\xa3\x33\x19\x1f\x17\x9b\x1d\x83\x17\xd4\x48\xe7\x79\xd0\xe0\xe3\x60\x3d\x5e\x58\xe4\x76\x54\x2e\x17\x6e\x0b\x45\x5d\x6f\xbf\x08\x28\xd8\x9d\x66\x23\x68\x36\x1e\x59\xe4\x62\x35\x21\x30\xd8\x88\x35\x96\x3c\x52\xb4\x50\xc9\x81\x96\xe0\x42\x48\xfa\x80\x06\xdb\x62\xb7\x5d\x6b\xab\xb2\xec\x59\xdd\xe4\x9e\x37\xac\x8c\x22\xeb\x4c\x33\xc5\x87\x0d\x35\xb4\x3d\xb3\x8a\x84\x5d\xd9\x2c\x47\xb0\xba\x59\x49\x08\x4f\xa5\x81\x04\xe3\xb1\xad\x67\x45\x75\x84\x4b\x7c\x88\xee\x4e\x5b\x0f\x4e\xa5\xa5\x9b\x3a\x19\xc9\xa6\x84\x11\x87\x35\x42\xca\x73\x62\x1d\xaf\x4c\x78\x24\x34\x59\x82\x2e\xe0\xa8\xa8\x57\xe2\x58\x9e\x64\x1d\x5e\x1d\x29\xf9\x04\x6d\x2d\x8c\xed\xa4\x10\xf2\x97\x2c\xc0\x29\x8b\xf6\xc1\xe3\xe0\x7b\x1f\x5f\x85\x89\xed\x7b\x25\x1c\x3a\x59\xfa\xcb\x6c\x3c\xb8\x1f\x9c\x0b\xe0\x3c\x7d\xf5\x01\x56\x68\x10\x92\xd2\x20\xc2\xdc\xcf\xfa\xbe\x2c\x55\x3d\xa0\x75\xbf\x9f\x08\xe7\x8f\x44\x7c\xb2\x77\x70\x01\x15\x26\xac\x83\x9f\x4b\xe6\x2e\xa1\xf5\x1e\xe4\x62\xbe\x22\xe1\x36\x38\x7f\x08\x00\x98\x4e\x8f\x5c\x12\x08\x13\x89\x95\xa2\xbe\xc0\x37\x91\x40\xd5\x64\x00\xbc\xd0\x04\x80\x23\x69\x00\xa8\xf1\xb9\x42\xf2\x01\x60\xf5\x06\x00\xea\xd0\x63\x96\x72\x1f\x00\xc2\x6d\xd2\x45\xae\xac\xce\x23\x6f\x85\x2a\xe2\xd2\x60\x35\x05\x70\x43\xc1\xd9\x02\x4d\xa3\xb3\xee\xc5\x8d\xca\xc4\x1d\x00\xa0\xe6\x1a\x00\x16\xa1\x48\x78\x82\x0e\xbb\x3e\x00\x8c\x10\xf0\x0a\xcd\xe8\xde\xb2\xa8\x36\x9b\xb8\xdc\x88\xee\x08\xc6\x90\x6e\x3a\xc6\x67\x35\xd5\xd1\x49\xab\x30\xe1\x96\x2b\xa5\x8d\x35\x35\xb8\x54\xe3\x19\x53\x5d\x63\xb6\x53\xd1\x43\xa7\x5a\x47\x4e\x45\x33\x63\x0e\x31\x14\x86\x5e\x83\x2c\x0c\xe4\x0c\xec\x65\x26\x09\x89\xcc\x5f\xdb\x1c\x0d\x28\x86\x4c\xe4\x4d\x14\x57\x19\x82\x6b\x12\x92\xba\x6b\x0e\xdf\xb6\x96\x1d\xaf\x59\x3e\x4c\x35\xb3\x8a\x14\x9e\x89\x9c\xaa\x8b\x67\x9d\x3b\x9b\x4c\xa0\xa9\x83\xcf\x20\x7d\x5f\x87\xf9\x96\xa4\x86\x27\x68\x06\xd9\xde\x64\x74\x3c\x26\x7c\x7c\xc4\x7c\x09\x35\x95\xfa\xe5\x9f\x5e\x83\xaa\xc8\x88\x25\x96\xee\x3c\xa1\xb4\xd5\xcd\xba\x2e\xec\xe2\xa8\x1c\xf5\x42\x4b\x63\xc7\x31\xe0\x91\x8d\xc5\x94\xe2\x29\x02\xe3\x3a\xb8\x65\x8f\xd3\xee\xb8\x46\xb7\x13\x89\xcb\x1b\x2b\x98\x2c\xb1\x49\xc8\x9a\xe1\xaa\xab\x4e\xc7\x13\x1e\x1e\x00\x82\x68\xa9\x0f\xaf\x37\xec\x70\x87\xcd\xe5\x92\x89\x42\x44\xde\x76\x90\x03\x8c\x21\xba\xf7\x94\x48\x6b\x1a\xdd\x45\x4f\xbb\xd2\xe0\xa6\x33\x69\xbf\x5d\x14\x4d\x9a\xf1\xdc\xa2\x99\xd2\x19\x90\x38\xc0\xf8\x8b\x86\xd2\xc8\xd6\x01\x3c\x41\xf3\x5c\xc8\x01\x3f\x0b\x39\x12\x70\x3e\xe7\x73\x04\x3f\xcf\xdd\x95\x42\x2a\x07\xac\x5c\x91\x04\xe0\x41\x18\x4e\x65\x1f\x44\xf0\x8a\x63\x22\x95\x20\xe4\x63\x80\xc9\x4a\x24\x6f\x2a\x9a\x24\x84\xbc\x65\x67\xdb\x62\x14\x88\x61\x14\x38\x3e\x2e\x1b\xb8\x6b\x46\x3e\x50\x18\x42\x8d\x92\x58\x4f\xd2\x7c\xb2\x48\x16\x9b\x69\x11\x4f\x0f\xb3\x91\xb4\x12\x78\x84\x92\xc9\x68\xe5\x69\xb4\x23\x17\x80\x1a\x4e\x66\xd0\x04\x9a\x2c\xca\x15\x76\xac\xf8\x66\x06\x86\xd6\x71\xdb\x30\x3b\x59\x84\x8b\x21\x0c\x4e\xd4\x18\x17\x16\xc4\x71\xc4\xb3\x9c\xcd\x35\x5c\xce\x8d\xe6\xdc\xd6\x3b\xba\x53\xb4\x40\x38\x4c\x12\xf7\x47\x7e\x27\x65\xa3\xdd\x8e\x3c\x34\x43\x3a\xe0\x94\x58\x96\x43\xcc\xc6\x26\x39\x62\x57\x3b\xcd\x20\x50\x74\x15\x70\x35\x5b\xcd\x46\x55\x9a\x12\xc5\x64\xd4\xb1\x4b\x18\xcc\x81\x9a\x99\xfb\x53\x6b\x18\x1a\x29\x91\xab\x9d\xb4\x5e\xce\xca\xf9\xae\xf6\x20\x77\x07\x2f\xf0\x02\xeb\xa6\xa2\x3a\xd7\xa5\x23\x66\xaf\x4d\x8a\x3b\xe0\x18\x41\x6f\x36\xb4\xac\xac\x48\x59\x18\x1d\x98\xd8\x63\x44\xd7\xad\xa5\x46\x34\xb0\xb5\xa0\x13\x1b\xc6\x38\x19\x9b\xa0\x4a\xb0\x7d\xb1\xaf\x8e\xcd\x10\x3b\xd6\x8b\x61\xbd\xda\xcc\x01\xd0\xfd\x20\x9a\xc7\x8b\xd5\x86\x9f\x59\x47\xab\x5b\x4c\xb0\x69\xd6\x4d\xd9\x52\x0a\x18\x06\xad\x31\x9b\x45\xe8\x29\x4f\x1f\xc1\x3a\xf0\xa0\x14\x5d\xb1\xd4\x04\xb1\x26\x70\x9b\x38\xce\x6e\x41\xa8\xc2\x4c\x1c\xa6\x1b\x04\x1c\x52\x93\x51\x85\x90\x98\xec\xb8\x50\xea\x7c\x2c\x42\x87\x84\x67\xb2\xeb\xa1\x2f\x46\xc5\x10\xa6\x08\x02\x1a\xb3\xd1\x7c\xa1\xb5\x89\xb2\xdb\xb6\xbb\x19\x74\x70\xe0\xe9\xba\xec\xc4\x59\xdc\x31\xb3\x19\x3e\x9e\x56\x4d\x6b\x91\xe0\x30\x6a\xb6\x72\x28\x92\x0a\xbd\x5e\x11\x11\xb5\x71\x3d\xcc\xe3\xf0\xe9\x0c\x0a\x3c\x18\x1a\xd6\xb0\x57\xc1\x0e\x06\x04\x08\xae\xd5\xee\xb4\xd0\x8e\xbe\x30\x29\x12\xa8\x22\x68\x9c\xb4\xc0\x90\x55\x6c\x46\x9b\x64\x87\xa5\x2c\x90\xa4\x5b\x1e\x88\x7c\x3c\x9c\x53\x33\x8f\x25\xa8\xc9\x64\x53\xa7\xfc\x70\x9c\xc1\xd0\xf8\x00\xc1\xce\x82\x37\x17\x2b\x74\x17\x74\xbb\xf9\x3c\x52\xcc\xb0\x21\x14\x01\xdd\xa5\x0b\x18\x0b\x95\x6e\x02\xd7\x1a\x3c\x4d\x77\x75\xdd\xa1\x5a\x1b\xdb\x53\x28\xd8\x28\x5b\x7e\x2c\xeb\x02\x61\x2f\x6a\x3e\xf1\x8d\x05\xaf\x08\xb5\x1a\xc4\x1c\x91\xdb\x55\x48\x33\x20\x07\x24\xc7\xb0\x2c\x1c\x03\x18\x5e\xb2\x7b\x0c\x3b\x78\x88\xb7\x3a\xca\xfc\x86\xb6\x61\x3e\x65\x69\x2e\x03\x84\xe9\xce\xd0\x11\xdc\x49\xab\x1d\xc4\xef\x89\x56\xe4\x49\x18\x3e\xb5\x1b\x68\x6e\xda\x96\x3f\x07\x56\xe9\x21\x48\xed\x0d\x6b\xe2\x74\x5a\x8b\x72\x31\xa7\x63\xd7\x30\x04\x72\xbd\x95\x7d\x00\xc6\x52\xea\xf9\xf2\x6a\x32\x9b\x4d\xba\xa3\xbd\x62\x51\x7f\x5e\x72\xb9\x1c\xba\xeb\x3a\x53\x1a\x00\x67\x28\xbc\xa5\xba\x09\x92\xed\x76\x50\xca\x70\x36\xbc\x73\xba\x0e\x5d\x1d\xd0\xa0\x53\xb7\x4a\x54\x2e\xc8\xb6\x5c\x6a\x38\x46\x70\x93\xbd\x49\xae\xe1\x30\x70\x61\x87\x10\xd6\x96\x66\x05\xb2\xc3\x18\xb3\x83\xb8\x97\x11\x3f\xa1\x9b\x04\x0f\xa2\x43\x29\x19\xf4\x9e\xca\xfc\x03\x36\xd9\x4a\xfb\xa3\x4d\xc7\x84\xb0\x08\xbb\xc4\x34\x7c\x61\x6d\xad\x91\x21\xbb\xf7\xa4\xc5\xdc\x06\x5b\x3d\xcc\x33\x5e\x5b\xb3\x40\x68\x6c\x5c\x30\xf3\x84\x25\x79\x9d\x40\x62\x99\xcc\x74\xa4\x74\x04\xc4\x27\x45\x5e\x51\x0f\x07\x69\xcf\x7a\x31\x42\x1f\xac\x9c\xcb\x19\x6e\x4b\xe9\xde\xb2\x69\x24\x11\x3d\x4d\x7c\x09\x77\xd3\x75\x50\xa8\x9d\xc1\x10\x14\xdd\x89\x79\xa4\x2f\x96\x22\x82\x13\x9c\xcf\x94\xea\xd0\xf7\xdb\xa5\xde\x09\x86\x1a\x92\x4a\x49\x13\xb4\x4e\x67\x4c\xa8\x1c\xd0\xe3\x88\x5d\x6e\xf6\xa2\x3b\x9c\xe6\x2a\x6b\x78\x56\x5a\xd7\x69\x68\xd9\x59\xce\x71\x32\x01\xb8\x20\xd5\x0f\xfe\x71\x3b\xac\x74\x4c\x22\x04\x26\x5c\x93\xae\x78\x72\x01\xb1\x26\x58\x68\xcb\x65\xe4\x11\x60\xca\x52\x9f\x09\x27\x4a\x0a\xed\x60\x8e\x6e\x00\x00\x5d\xd9\x49\xf8\x92\x8d\x2c\x6e\xe9\x08\x60\x51\xbb\xae\xc2\x86\x98\xb1\x66\x14\x6f\xe1\xac\x4f\x53\x37\x68\xa5\x91\xcd\xe4\xc7\x28\xb0\x13\x6a\xc4\x32\x8d\x2c\xd7\x6a\xe5\x37\x8b\x55\x5e\x4a\x9d\x8d\x8f\xe6\x14\x7c\xa2\x70\x91\x6a\xd0\xbd\x41\x16\xa4\xc8\xaa\x91\xde\x24\x4d\x89\x45\xa4\x08\x28\x0a\x99\x93\x56\x1e\xda\xb1\x38\xc7\xb6\xa1\x8d\x57\x85\x51\xf2\x50\x1b\xf1\x40\x50\x75\xb5\x12\x91\x6c\x5d\xaa\x72\xe1\x6b\x73\xb7\x46\xc5\x4d\x1c\xd3\x89\xd7\x31\x30\xab\x04\x1d\x44\xe2\xdb\x71\x70\xa2\xfd\x22\x3d\xed\x8d\xc5\xa2\x0b\x9c\x20\x1b\x86\x4c\x49\x85\xf3\x2c\x91\xba\x0a\xa2\x4a\x78\xda\x4d\x56\x5c\x97\xec\x14\x6c\xe6\xad\x86\xae\x61\xa8\x12\x1d\xee\x15\x24\x55\x4a\xa6\xf0\x87\x9c\x9a\x27\x51\x26\xcf\x1c\xad\xde\xb5\x42\x41\x6c\xd9\x24\xd3\x33\xde\x5a\x27\xf1\x8a\xda\x28\x96\xef\x8a\xd4\xb2\x6c\xa7\x6c\xbd\xd9\x56\x2d\xd6\x1d\x8f\x81\x22\x0b\x9a\xcb\x24\x0b\x19\x90\x99\x86\xba\x8d\x39\xf3\x76\xca\x3a\x3e\x82\x61\x32\x6c\xf9\x13\xca\xd1\xbe\x1f\xad\x8a\x54\x3f\x6e\x88\x99\x88\xc4\xf3\xc8\x0e\x8d\x16\x6a\x15\x18\x50\x72\xbd\x52\x64\x90\xe7\xb6\x89\xf0\xbb\x4e\x22\x08\x64\x9f\x31\xa0\xc4\xa5\xd3\x76\x34\xa3\x11\x73\x92\x33\x38\x45\x51\x6e\xd2\xe0\x93\x85\x7f\xf2\x65\x76\xbb\x2d\x27\xdc\x1e\xe7\xf3\xb9\xc8\x35\xfb\xb9\xc2\x38\x0c\xd2\x32\xbc\x43\xb9\x34\x92\xeb\x5b\xcc\x94\x87\x81\xb9\x2e\x29\x46\x6d\x77\xbb\xc9\xd1\x67\xc5\x93\x84\x45\x91\x38\x0f\x6d\xb0\xea\x54\x07\x34\x1d\x81\x98\x46\x9c\x80\x9a\xcd\xb0\x4e\x66\x23\xc1\xd6\xf3\x5c\x63\x81\x2e\x13\x0b\x39\x05\x66\x82\xf3\xf8\x70\xe7\x91\xb1\x0b\xe6\x1e\xeb\xa1\x8c\x4d\x1e\x66\x3b\x77\x23\x8b\xab\xe9\xa1\x1a\x95\xc4\x58\x8a\xe7\xdb\x15\x9e\x47\x44\xd3\x11\xfe\x9c\xcd\x04\xd1\x75\xb8\xf9\x14\xa5\x1b\x44\x11\xc6\xfa\x41\x6b\x59\xc0\xd3\xac\x4a\x90\x8b\xc4\x60\x49\xfb\xb8\x69\x74\xa7\x99\xe7\x1b\x91\xe7\x54\xd4\x4c\x8d\xa0\x38\x20\x43\x07\x48\x72\x1b\x91\x13\x53\x9c\x8f\xc2\xf1\xb1\x09\xc7\xa3\x85\x81\x57\x05\x27\x0c\x91\x39\x7f\x62\x17\xc7\x5c\xd3\x14\x84\xb2\xac\x98\xaf\x68\x5a\x6c\x15\x88\x33\x78\x5e\x53\x63\x06\x30\xae\xb5\xc0\x27\xfb\x8c\xf1\xcb\xa6\xa0\x2d\x6c\x83\x8c\xa9\x23\xe6\x01\x76\x32\x9d\x18\xc9\x14\xae\x90\x72\x9a\x8a\xb1\x3b\x5b\xed\x89\x80\x25\x97\xc3\xf9\xc4\x8d\x13\x7c\x86\xf8\x58\xc1\x75\x64\x05\x8f\x4e\x2c\xb7\x0e\xc1\xc8\x6d\xe7\xf2\x88\x95\x9c\xde\x4e\xd5\xe6\xdc\x3a\xd4\x8d\xa6\x2e\xb5\x8d\x08\x32\xdf\xc8\xd4\x3a\xaa\xc1\xa6\x89\x3b\x46\xcf\x55\x85\x3c\xc5\x43\xa7\x85\x8c\x4c\x22\x3a\xd8\x0a\x67\xd8\xf1\xe4\x51\xf4\x70\xbc\x6d\x87\x61\xbd\x28\xb9\x52\x52\x17\xea\x9a\xac\x9b\x86\x0e\x10\x7b\x16\xc0\x75\x4b\x95\x10\xea\xaf\xd3\x96\xda\x43\x93\x99\x2b\x0b\xfb\x20\xf6\xf1\xad\x15\xc3\xc7\x28\xb4\xa9\xa4\x8a\x8e\x9b\x25\x13\x26\x89\xae\x88\x3c\x6e\x98\x52\x44\xe4\x6a\xec\xaa\xb5\x3f\x1b\x6a\x94\x19\x72\x94\xbb\x69\x2a\xfa\xa8\x79\xd4\x32\x6e\xad\x06\x3b\xc1\x18\xbe\xa2\x52\xb7\x5e\x90\x21\x2c\xe2\x90\x27\x23\x56\x35\x72\x48\x97\x1b\xce\x61\x46\x60\x5a\x7f\x94\x88\xf4\x4c\x99\x14\x8a\xb8\xd6\x42\x18\x54\x9d\xb4\x4a\xe9\xe5\x42\xd8\x18\x68\x75\x2a\x00\x14\x33\x87\x2e\x12\x22\x8c\x58\x72\x48\x84\x11\x6b\x7a\x54\x36\xd4\x06\x4c\x9a\x38\x41\xb6\x0c\x1d\xd1\x12\xb5\xdd\x77\xeb\x55\x97\x50\x07\xad\xc1\x59\x2a\xdd\xee\xbb\xd1\xa4\x6c\x5c\xd6\x11\xf2\xd1\x18\xda\x57\x1e\x1c\x21\x46\x5d\x54\x8a\xce\xa5\xea\x8a\xdf\x50\x98\x39\x43\xcc\xdd\xc6\xd9\x5a\xd5\x84\xc3\x67\x15\x2c\xe2\xa3\x05\x3f\xb2\x7c\x66\x12\x8b\x60\x5b\x2e\x67\xc4\x2e\xdc\xd0\xa3\xba\x0a\x36\x74\xc7\x10\x02\xa4\xe5\x20\x28\x8c\x3a\x05\x80\xf6\xe8\x1c\xa7\x64\x3c\x3b\x9d\x64\x0e\xda\x45\xea\x3e\x85\xab\x79\x69\xed\xd6\x0e\x98\xed\xb1\xcd\xfe\x18\xc1\x88\x59\x79\x13\xf4\x48\x4d\x99\x93\xd5\xc0\x26\x6a\xd8\xb5\x52\x02\x80\x4f\x31\x2e\xa1\x52\x28\x63\xd0\x29\xb5\x80\xbb\x03\x93\x62\x4d\x1a\xc2\xad\x43\xab\x6a\xa6\x1d\x23\xba\x6d\x5d\x82\x58\x86\x31\x93\x92\x20\x5e\x10\xa2\x08\xb1\x81\x1b\x61\x6c\xa5\x05\x19\x47\x0f\xb5\x3a\xd6\x6a\x2a\x2e\x1d\xe0\x83\x7a\xd9\x92\x60\xbc\x59\x8e\xd8\x15\xb4\xb2\xa7\x81\xb7\x2e\x59\xe0\xab\xf2\x09\x20\x56\xc7\x14\x53\x6e\xce\x06\x2c\x59\x47\x1e\xeb\xb9\xbb\x44\x94\xf2\xed\xb4\xf1\xe3\x13\x82\x0e\xf7\x9b\x48\x2b\xf7\x66\x32\x23\x11\x73\xbf\xe4\x55\x9f\x39\xb2\x35\x58\x4d\x0e\x5b\x11\x60\x5a\xee\x34\x20\x1b\x66\x19\x25\x35\xcd\x5e\xd0\x58\x54\xa6\x8e\x35\x1c\xfb\x58\x4c\xa6\x8d\x3f\x9e\x39\xad\xa3\xe6\xbc\x33\x75\x2d\x7e\xe5\x03\xd2\xf3\x6a\x60\x06\xfe\x0e\x59\xb9\x63\x7e\x7f\x12\x41\xb1\x19\xc1\xf3\xd8\x9a\x96\x3e\x8a\xe9\x23\x8d\xdc\x41\xb4\x5a\x21\x32\x43\x92\x4c\xb8\x36\x1d\x66\x88\x0d\x23\x0d\x8f\x03\x22\xa7\xd4\x0d\x10\x4f\x10\x7d\x18\xae\xc0\xc6\x04\x9c\xc9\x12\xf5\x4c\x3a\xeb\xbc\x77\x74\x62\x71\x37\x39\x81\x68\x32\x1d\x75\x6a\xbd\x99\x86\x13\x73\x3c\xb5\xa4\x8c\x04\xe3\xd6\x5d\x4f\x97\x28\x5c\xe3\x9a\xe2\xa2\x6e\x33\x19\x31\xf5\x6a\x75\x48\x6b\x8c\x4a\xea\xc9\x12\x9f\x29\x65\xb7\x5e\x84\xa7\xf9\xd1\x9f\x2b\x3b\x11\x9f\xb0\xfb\xa5\xdb\x25\xfe\x58\x1f\x47\xca\x02\x94\x08\xda\xcc\xc1\xa6\x09\x3d\xa2\xf1\x7d\x3f\xb3\x45\x9d\x9a\x64\xdc\x78\xb2\x4b\x68\x76\xbb\x3f\xea\xfe\x2e\x29\x08\xad\xc3\x66\xa3\x5d\x33\x8a\xca\x85\x20\xa0\xe3\x3c\xf1\x3b\x09\x69\xc8\x92\x71\xac\xd1\x64\xbc\x69\x3d\x2d\xb7\xdc\xae\xb5\xc9\x5d\x0d\xb1\x60\xa3\xf8\x63\x14\xf7\x54\x0d\xe9\x02\xd8\x25\xc6\xcc\x86\xda\x0b\x98\xa6\xfb\x46\x23\x2b\xb4\x9e\x55\x08\x60\x48\x9a\x6e\x31\x7d\x6a\x65\x84\x4f\x03\xa3\x71\x33\x3d\x0d\x3c\x26\x5d\xcf\x17\x5d\x05\x86\x27\x5c\xdb\xc3\x5d\x4b\x72\x27\xbd\xe1\x20\x2f\x29\xed\x55\x3a\x4a\x99\xe9\xe1\x74\x64\x98\x12\xa1\x60\x72\x8a\x8c\xac\x34\xc4\xf6\xf9\x61\x28\x9a\x30\x44\x93\x93\x7d\xaa\xfa\xf0\x0e\x1a\xf9\xc4\x78\x76\xda\x34\x30\xe1\xa4\x26\xb1\xa3\x38\x4f\x2c\x4c\x7b\xb1\x1e\x03\x12\x98\x4c\x92\xec\xf3\x70\x62\x1e\xf2\x84\x54\xd6\xe2\x01\x4d\xec\x85\xcf\x49\x07\xc6\xd1\xe5\x89\x48\x17\xf9\xc8\x6a\x0f\x49\x6a\x21\x7c\x8b\x40\x1c\xbf\x5e\x12\x5c\x31\x3a\xe4\x65\x17\x4f\x47\x28\xbc\x6b\xf2\x09\x66\x2d\x49\x6c\xd5\x24\x81\x40\xca\x40\x5f\x93\x73\x50\x8f\xc4\x7a\x19\x17\x21\x2d\xd3\xa7\x71\x67\x33\x76\xbd\x08\x58\x7f\x2c\x93\xf1\xd2\xdb\x57\xde\xcc\x94\x39\xd2\x59\x0c\x43\x2c\x9a\xc2\xb8\xce\xbb\xf0\xd6\xb2\x58\x5a\x9b\x37\x73\xd2\x14\xa6\xa7\x6e\xdf\x60\x01\x7e\x64\x99\x04\x6c\x4e\xc9\x70\xe6\xb6\xbb\x25\x8d\xd0\x95\x73\x88\x5a\xcd\x58\x69\xae\x8b\x1c\x18\x90\x2b\xab\xa5\x4d\x57\x4e\x2b\x83\x10\x20\x9a\x17\x93\x9e\x70\x54\x28\x4d\xcd\x36\x6b\xcd\xe4\xb7\xa3\x20\x9b\x8c\x94\x03\x12\x81\x7c\xdb\x50\x45\x1e\x14\x92\x42\xbb\x08\x97\x8f\x80\x44\xd4\xa7\x20\x9c\xb3\x65\x55\xe5\x04\x4e\x64\x41\xa8\x27\x07\x2b\xf7\xbd\x18\x17\xdb\xe1\x21\xab\x8b\xd4\x24\xb7\x8e\xee\xe3\x4d\xbe\x70\x1c\xdd\x2e\x0d\xcb\x20\x17\x80\xd7\xad\x40\xb0\x75\x2d\x1f\x05\x47\x6d\x4d\xe6\x9b\x14\x38\x34\x27\x95\x73\x04\xd9\xb5\xb5\x61\x2a\x87\xb1\x08\x30\x77\x33\xe2\x6b\x72\x5e\x8d\xda\x80\x06\x87\x75\x74\xc0\x39\x12\x17\xa1\xb9\xb9\x35\x10\x78\xbb\xe0\xc7\xc1\x0c\x75\x93\xd8\xe6\xb9\xf9\x4c\x0b\xa2\x53\xb7\xa5\x67\xbe\x8c\x14\x26\x31\x8e\x73\xd5\xd7\x1d\x84\xd4\xa6\x24\x92\xca\xdd\x4a\x3f\x92\x54\x84\x66\x93\xf0\x54\xea\x3a\xe2\x27\x25\xe3\xa8\x24\x99\xf2\x56\x99\x7b\x87\x31\x51\xad\xf4\x08\x63\xd5\xb6\x98\x93\x81\x60\xe5\x49\x0d\xeb\xa8\xdf\x08\xa5\xb8\xca\x50\x0b\xa6\x21\x6c\x36\x01\xf4\x82\x59\xe0\x53\x5a\x64\x99\xc3\xdc\x85\xe1\x16\x89\xf0\x99\x6f\x36\x0a\x64\xac\xf5\xf9\x31\x01\x72\x4b\x0d\xd1\xb9\x65\xf9\x59\x3b\xac\xf2\xb0\x56\xed\x31\x2b\x91\x3c\xc7\x4f\xeb\xa4\xcd\x46\x01\xbd\x90\xda\xa3\xca\xac\xe8\xb0\xe6\x5a\x47\x19\x85\xee\x66\xd9\x19\x87\x43\x93\xca\x1b\xc2\xf2\x83\x62\x5a\x8c\x12\x58\xd8\xb2\x7e\xdb\x95\x50\xb6\xa4\x87\x1a\x5c\x12\xc7\xc0\xf7\x43\xe0\x9c\xa4\x02\x22\x60\x18\x62\x4e\x7a\x57\xee\x28\x84\x56\xc4\x89\xc2\x70\xd1\x5e\xf3\xf7\x28\xb1\xd4\x12\x3f\x0d\x74\x7d\xe3\xb8\xe8\x12\x57\x73\x42\xcf\x71\x72\x4c\x19\x2c\x20\x12\x9b\x2e\x46\xd0\x74\x01\x15\x55\x38\x8f\x35\x40\xe9\x02\xce\x4d\x23\x7e\xba\xf1\x28\xca\x2b\x61\x01\x34\xd8\xa4\x5b\xe9\x6a\x61\xea\xe9\xa8\xca\x79\x89\x3f\xd0\xb8\x16\x48\x2a\x20\x53\x48\xe9\x40\xef\x5b\xc1\xf9\x04\x24\x3e\x87\xe6\xc1\x3a\x3a\x79\x04\x6e\x1d\xe4\x10\x94\x8c\x55\x45\x8c\x64\x71\x10\xc8\x26\xaa\x7f\xaa\x0c\xdf\xe3\x33\xd9\x20\xa2\x1d\xc4\x2a\xf3\xa2\x35\x02\x83\x60\xe6\x07\x76\x8f\xe2\x61\xa2\xae\xb0\xbc\x64\x74\x70\x8a\x4d\x52\xa5\xcb\xb5\x4a\xb9\x35\x7a\x9a\x8e\xd7\x4b\xb9\x8e\xea\x53\x95\x70\x6e\x63\x1c\xb0\x4a\xe5\xb3\x51\x57\x54\x1c\xc2\xeb\xe2\x3e\x04\x7c\xb7\x2d\x08\x18\x80\xa9\xa9\xa4\xe4\x7a\x99\x2e\xa4\x25\xc6\xd7\xcc\x89\x0e\xb9\xfd\x14\x58\x5e\x3a\x33\x1c\xa4\x59\x20\x7c\xa4\x54\xa2\x3f\x8f\x77\x7b\x8a\x25\x1a\x4a\x5d\x08\x5d\x93\x4f\x5c\xc5\x5a\x40\xb6\x19\x1e\xad\x06\x80\xdc\x8a\xd7\x29\x58\x55\x88\xd6\xd6\xaa\x49\x08\x99\x43\x82\x21\x21\xe8\x2d\xe7\x8b\xc4\x09\xa9\x6c\x1d\x48\x64\x68\x84\x51\x18\xeb\x51\x98\x22\x30\xb3\x65\x52\xba\xc3\xda\x56\x5e\xcc\x45\x7f\x5c\xe4\x5e\xb2\x99\xe5\xb6\x9c\x60\x93\x16\xa5\xe2\xc5\x42\xd4\xc7\x9c\xc5\x71\x5a\x23\xe9\x64\x61\xd3\xc0\xa0\x95\xac\x52\x70\xc7\xc9\x28\x99\x07\xdc\x84\x9a\x13\x45\xd9\x4e\xc5\x15\x96\x41\xe9\x11\x36\x66\x2e\xbb\xc3\x08\xe0\x0c\xb9\xbd\x5f\x4b\x08\xe2\x42\x52\xce\xee\x76\x66\xd1\x8c\xc2\x02\x99\xad\xc5\x70\xd4\xb8\xf8\x8a\x9c\xca\x0b\x8a\xdd\xb0\xf3\x84\x63\x8b\xe1\x7c\xea\xfa\xa5\x24\xf9\xd9\x49\xe2\x89\xd9\x04\x5b\xec\x15\x58\x50\x17\x26\x63\x56\xf5\x29\x69\x4d\xd2\x92\x74\xbd\x12\xa7\x1d\x1a\xc2\x0d\x3e\x75\x56\xbe\xa6\x89\x2b\x8a\xc2\xc7\x9e\xbc\x19\x26\xf3\xc9\x78\xaa\x26\x87\x03\x74\x00\x0c\xad\x48\x0d\x27\xab\x40\xb5\x0c\x97\x00\xa1\xcc\xc9\xbe\xcf\x4d\x0f\x13\xc8\x81\xc1\x5e\x25\x69\xdf\x22\xfc\x04\xd6\x7c\x0b\x2b\xab\xec\x28\x9c\x70\xa5\x3c\x74\x0b\x42\xdc\x4b\x8d\xa7\xa8\xe1\x26\x58\x4a\x4c\xa3\x84\x08\x99\xf0\xdb\x80\x46\x09\x2d\x81\x85\x32\x5f\xca\x48\xee\x14\xa2\x61\xeb\x11\xb5\x87\x91\x5d\xda\xf9\xc8\x0a\xc9\xe2\xe8\x10\x94\x10\x6e\x4f\x86\x6d\xe6\x01\x64\x21\x90\x75\xc1\x15\x41\xb2\x43\x0b\xbe\x73\xec\x99\x13\x23\x7a\x82\xe9\xc8\xc1\xca\xc0\x61\xd9\x18\xe8\x08\xa8\xb3\x9c\x76\x53\x80\x72\x7e\x2d\xe2\x11\xb3\x20\x67\xa3\xad\xb9\x58\x85\x21\x6f\x72\xfb\x8a\xe6\xa6\x18\xe1\xfb\x6b\xc1\xce\x7b\x0d\x6a\x31\x1a\xad\xda\x30\x8d\x57\xbc\xd4\xce\xba\x69\x34\x01\x5b\x42\xd7\x08\x55\x89\x8a\x78\x5a\x1d\xa1\xb9\xee\x52\x1c\x19\x47\x65\x1e\x30\xe5\x71\x01\x59\xb6\x23\x2c\xd2\xa1\xbf\xc0\x0c\x84\xe2\xc8\x42\xaa\xe5\xcd\x51\xcd\x02\x7d\x49\xa3\x45\xda\xe1\x43\xf9\xe0\xb8\xab\x65\x65\x94\xca\x9c\x26\xb6\x92\x9f\x6e\xdd\x68\xaf\x19\x82\x6e\xad\xfd\xf5\x41\x49\xf1\x1d\x0b\x08\x29\x33\x08\x67\x49\xa3\x5d\xc5\xae\xd2\x6c\x31\x59\x82\x1d\x0b\x96\xac\x3a\x75\x57\x1d\x8d\x94\xad\xe8\x96\xdc\xe2\x70\x2c\xe7\xc5\x26\x73\xe8\xb9\x62\x6e\x98\x76\x3c\xd9\xe9\xdd\xe8\x34\x41\x67\xde\xc4\x6c\x70\x40\xed\xeb\x64\x8b\x02\x3e\x5b\x1f\xd0\x96\xac\x8a\xc6\x0d\x10\x4d\x56\xba\x09\x6e\x26\x8b\xdc\xe2\x66\x6c\x58\xb1\x7b\x8d\x24\x6d\x44\xb0\xc0\x52\x98\x67\x9b\xe9\x34\xd6\x33\x28\x27\x93\x38\x20\x80\x6a\x8a\x09\xd8\xd3\x93\x31\x6d\xe3\x64\xb6\x3c\x79\x05\x65\xd6\xba\xc5\x2a\x9b\x26\x3c\xa0\x2b\x3b\x9d\x16\xf0\x69\x19\x39\x22\x08\x0f\xc7\x23\x94\x37\x0c\xb3\x4e\x72\xf9\xb0\x8d\xc7\x61\x69\x1f\x32\xc3\xa8\xec\x7d\xc9\xef\x08\x24\x0f\x37\x0d\x49\x87\x6e\x70\x62\xf3\x31\xbc\x62\xf3\xda\x4d\x77\xe5\xd4\xa7\x12\x7c\x8b\x4c\xda\x0d\xd4\x6e\x88\x94\x5e\xe3\xd8\xfe\x88\x4a\xfb\x6c\x82\xc1\x28\xd2\x42\x5e\xe7\xe0\x13\xe6\x34\x16\x97\x30\x27\x6d\x2c\xc8\x6a\x89\x23\x47\x8f\x3d\x8f\xcc\x8e\xdb\x14\x61\x36\xdd\x7e\x73\xa8\xf0\xba\xa0\x4b\x23\x9e\x97\x2b\x79\xba\x64\xd8\x15\xa2\xac\x60\xd7\xeb\xf0\xf2\x08\xcf\xe6\x53\xab\x16\xa6\xcd\x01\xad\x85\xb6\x8a\x94\x12\xc2\x71\x67\x59\x4e\x3c\xac\x1a\x0f\x97\xf4\x66\xd3\x18\x9c\xa1\x9f\xbc\x61\x06\xed\xa0\x34\xdd\x94\xda\xd0\x8a\x8b\x26\x64\x67\xae\xb0\x5f\xe4\x90\x66\x19\x41\xa6\x2c\x4f\x30\xbf\x1d\xad\x8a\xd5\x3e\x3e\xed\x40\x47\x85\xcd\x0e\x9d\x1e\x7d\x0a\x07\x06\x04\x6a\x75\xe4\x1e\x46\x76\x8d\x31\xb5\x0a\x73\x08\x47\x8c\x09\x6c\x2b\x4e\x16\x93\xa6\x5c\x63\x1c\xaf\x12\xfb\xe3\x16\x8d\x4b\xc4\xdf\x62\xa6\xcf\x85\xa7\x04\x09\x42\x78\xc9\x25\x04\x9c\x8f\xc4\x3c\x44\x66\x52\x01\x35\x1e\x71\xa8\x21\x32\x0e\x59\xb3\x6a\xe1\xa2\x26\xf3\xf9\xda\xaa\x31\x47\xa2\x60\xd5\xf1\x6a\x64\x1a\x66\x7a\xc8\x04\xce\x66\x88\x16\xac\x76\x42\x64\x7a\xa3\xb9\x8d\x60\x2c\x8c\x09\x01\x63\xe8\xb8\xaa\xb0\x1d\x9b\x1e\x13\x46\x91\xc5\x7a\x7a\x44\x30\x1b\xd0\x0a\xb7\xd7\x4e\xe4\x88\x03\x15\x3f\x77\x7d\xb8\x9c\x48\xfb\x45\xb2\x65\x4d\x62\x63\xa0\x33\xcd\xa8\xc6\x35\x63\x10\x43\xcc\x10\x37\x56\xc5\x34\x05\xd7\x88\x4b\x80\xb9\xc7\xad\x33\x6f\x6d\xc0\x98\xf2\x76\xb6\xa0\x47\x32\x60\xb8\xc9\x32\x9a\x39\xbe\x0b\x4e\x92\xb7\x40\x49\x26\x56\xa7\x9b\x55\xb1\xa5\xf4\xcc\xd2\x48\x3c\xe6\xbc\xd6\xe0\xf8\x06\x59\xcd\xb8\x86\x52\x1d\xc2\x68\x3b\x43\xd2\x66\xb2\xef\x1f\xb7\x61\x7d\x5c\x4b\x7b\x73\x96\x96\x2b\xa2\x4d\x16\x24\x52\x6d\x1d\x68\x3e\x6c\x40\xce\xaf\x4f\xac\xa8\x49\xdb\xd6\xd9\x37\x26\x01\x81\x85\x4f\x68\xe4\x72\x0a\xad\x35\x33\xb7\x11\x19\xc8\xba\x46\xd5\x88\xc7\x42\x27\x27\xc9\x47\x84\x54\x9d\xe6\x86\x9a\x20\x05\x4e\x84\xfe\xb8\x31\x13\xfe\x60\x36\xcb\xa5\xb6\xe3\xec\x4d\x59\xa2\xd8\x84\xa2\x39\xc5\x10\x4d\x46\x97\x39\x3a\x4d\xa9\x46\x9a\x13\x4d\x36\x9f\xed\x76\xc3\xd9\x0a\xaa\x36\xda\x08\x25\xac\xd0\xa8\x48\x65\xa1\x8e\xa9\x69\x23\x22\x9d\xd2\x8e\x77\xbc\x01\x4b\xdd\x6c\x36\xdc\xbb\x52\x97\x63\x9b\x1c\xb5\x67\xa1\x21\xc4\x5a\x6c\x9f\x64\x46\x99\xce\x56\xe6\x4a\xcb\xa7\xcd\x82\x17\x4f\x25\x5e\x71\xd5\xb2\x36\xd9\x11\xb4\x3b\x1c\xdb\xd9\xc4\x64\x39\x59\x46\x36\xce\x4e\xaf\x94\x24\xd2\xfd\xf4\x30\x81\xa6\x6e\xad\x65\xc3\xc2\x9e\x4b\xfb\x21\x88\x09\x44\x4b\x81\x94\xcc\xcc\xb1\x84\x8d\x36\xfc\x48\x04\x65\x14\x4d\xe3\x6a\xba\x15\xa5\x44\xec\xa4\x86\xa5\xcd\xb3\xdc\x4e\xae\x94\xee\x4d\x65\x9c\x91\x63\x02\x50\xc2\xa8\xa1\x66\xde\xd4\x45\x29\x63\x3c\x92\x7c\xcc\x15\x85\xb9\x5e\xd7\xba\xee\x90\x47\x26\x72\x56\x00\x5e\x35\xa4\x92\x9a\x12\x05\xf8\x0c\x60\xc0\x5d\x2a\xa7\xa1\x9d\xce\x01\x41\x82\x89\x34\x3b\xb2\x7d\x9d\x5b\xb4\x53\xbc\x74\x7d\xa2\xde\x26\xa3\xc2\x1c\x71\xa4\x8d\x27\xf0\x54\x8d\x86\x5e\x2a\x6a\x32\x82\x00\xd4\x9f\x4f\x89\xad\x20\x39\x24\x91\xe4\x9d\x0f\x54\x7f\x8f\xe3\xe2\x04\x82\x33\x9b\xdf\x6d\xf2\x64\xa7\x60\xd5\xa8\x3d\x21\x13\xb0\x2e\x75\x26\xd0\x39\x25\x3e\x79\x89\x23\x39\xae\x37\x93\x72\x83\xe5\x7d\x7b\x9d\x8e\x18\xbb\x09\xfc\xc3\x62\x17\x44\x89\xb4\xf7\xd0\x71\x6a\x25\xca\xa9\xdd\xc8\x95\xb7\x4a\x76\x3a\xd6\x1a\x19\x93\x27\x5b\x1f\x5d\x99\x95\xb8\x1e\x16\xc5\x18\xc2\x3c\x6f\x33\xca\x25\xfb\x40\xfb\xa7\x35\xaf\x06\x6c\xc4\xcf\xf2\x16\x9d\x4d\x94\x8d\xeb\xa6\x65\x18\xae\xb7\x64\x53\x2f\x8e\x23\x3d\xe4\x67\xf6\x06\xde\x9a\x2a\x11\xd3\x93\xd4\x18\x49\xa6\x87\xba\xe0\x40\x81\x09\x3a\xe9\xe2\x19\x5e\x8e\x38\x60\xa9\x5c\x26\x1c\x67\x0c\x97\xb0\x15\x5a\x2c\x27\x39\x55\x4e\x96\x38\x1c\x8f\xd6\x06\x27\x79\xa5\xd2\xb0\x53\x6d\x5b\xa2\x07\xbf\x39\x6e\xc2\x71\x2d\x14\xb3\x15\x01\xd5\xd3\x7a\x9f\x25\xaa\x27\xc4\x59\x6a\xcd\x11\x25\x51\xe2\x31\x70\x56\xac\xa3\x01\x99\x9c\xce\x09\xb8\x9e\xd3\xdb\x91\xb2\xd2\xb2\x00\x1f\xef\xb1\x6d\x40\xb6\x0e\x16\xf8\xd8\x8c\xf0\xd3\x59\xba\x2d\x9b\x55\x6e\x10\xc2\x08\xa3\x0b\x4b\x41\xab\x83\x64\x60\xa3\xa9\x67\xb4\xf8\x06\x6d\x3a\x45\x69\x51\x61\x88\x60\x87\x21\x7a\xa2\x37\xd9\x88\x38\x3a\xc5\x69\x36\xe3\x70\xaf\xa9\xb9\x51\x64\xba\xe5\x7e\xac\x72\x52\x6b\x8c\xb2\x64\x23\x35\x79\xa0\x8e\xeb\x7d\xe6\x07\x22\xd5\x20\x34\x38\x6e\xe8\x63\xa6\xfa\xda\x0e\x08\xc5\xce\xd6\x45\x30\x63\x90\xbd\x3c\x71\x31\x17\x73\x82\x08\x49\xf7\x99\x0c\xcd\xb6\x53\x6c\x19\x0a\x88\xa1\xa5\xac\x97\xba\xd2\xc1\x4d\x17\x2e\xc7\x99\x13\x01\x33\x79\x64\x39\xcd\x73\x2f\x6c\xb7\x9e\x23\x9a\x61\xcb\xe4\xac\xbd\xa4\x38\x28\xd1\x91\x14\xcb\xdd\x78\x6a\xcf\x52\x68\xd9\xf2\xd3\x49\xbd\x3f\x4e\x10\x0c\x71\xa5\xa9\x79\x64\x17\xc3\xa4\x98\x76\xeb\xd2\x24\x62\xab\xb0\x4e\x89\xa6\x0a\xb6\x1e\xcb\xcb\x05\x30\x32\xf8\x98\xb4\x25\xd7\x92\x06\x52\x2d\x3c\xbe\x2b\x27\xe8\x36\x9b\x82\x6d\xa6\xb2\x93\xe1\xa1\xc8\xd4\x6a\xa1\x4e\xeb\xd1\x78\xb2\xea\x4e\xc2\x74\x3c\x9f\x65\x2d\x86\x9e\xf6\xeb\x61\xac\x8f\xe1\x52\x2b\x4c\x26\x48\xe4\xc3\xda\x52\xe7\xae\x9a\x58\x87\xdc\xb0\xe2\x83\x81\x71\x9d\xd3\x46\xd6\xd8\x3b\x6a\x6b\x26\xf7\xb6\xeb\x44\x43\xa1\x6a\x3f\x16\x99\xc9\x58\xaa\xdc\xad\xba\x18\x0f\xfd\x53\x47\x6d\xb4\xd8\x42\x02\x81\x9e\xc9\xb3\x82\x9e\x17\x85\x30\xad\xe9\x85\xe7\x0c\x0d\x07\xda\x3a\x3c\x77\xdc\x29\xcd\x49\x1c\x36\x79\x58\x9c\xd0\x52\x1f\x65\xf9\x51\x39\x98\x15\xe9\xd4\xba\x40\xa8\x02\x6f\xca\x3b\x58\xee\x1c\x66\x83\x90\xca\x12\x51\x9c\xa9\xbb\x4a\xa9\xd1\x81\xb7\x26\x59\x64\x08\x24\x6b\xba\x53\x03\x9d\xc0\x8a\xe2\x88\x33\x1f\x00\xaf\x71\x60\x74\x5b\x2e\x58\x68\x9e\x92\x3b\x68\x93\xc3\xab\x84\x29\x99\x8a\x26\xea\x64\x71\x28\xcb\x69\xa6\x71\x9b\x59\xdc\xe9\x0c\x29\xf3\xb3\x02\x84\x7b\xc5\x98\xa1\x46\xb5\xd7\x5a\xf6\x74\xa8\x0f\xb9\xd0\x2d\xf6\x29\xc4\xd4\x50\x5b\x0a\x27\x7d\xd1\x2d\xba\x53\x1b\xd4\x9b\x34\x52\x97\x8b\xf1\x78\x9d\x9a\x0a\x01\x09\x29\x49\x2d\x4f\x2e\xbb\x82\x5d\xab\xcb\x49\x7d\xb2\x5e\xeb\x35\x98\x77\x6d\xb3\x3f\xc6\xa6\x35\x73\x16\xeb\x04\x77\xb6\xad\xa8\xe7\x14\x7a\x8c\x0e\x72\xd7\x45\x46\x43\xeb\x1c\x39\x99\x6f\xe1\x70\x23\x1f\xbd\x0e\xdb\xa9\x66\xbc\x56\x10\xd3\x5a\xd4\xba\x7e\x8c\x4c\xb6\xc1\x47\x18\xc4\xcf\x85\x19\x2d\xb8\x5a\xe1\x6a\x08\xb5\x45\xb5\xf5\x8c\x94\xc6\x94\x37\x57\x4f\x01\xeb\x55\xeb\x8d\x71\x90\x76\xc7\x0d\x38\x4c\x12\xe4\x68\xce\xda\x23\xb1\x86\xd0\xa9\x72\xe4\xb1\x93\xbf\xc2\x1d\x1b\x13\x9c\x9c\xd7\xf5\x49\x43\x2b\xb0\x01\x64\xe2\x20\xa0\x2c\x4c\x29\x16\x14\x94\x39\xe5\x4d\x87\xb4\x29\x94\x72\x69\x19\x43\xc3\x9f\x64\xc2\x52\xd8\x9f\xe6\x9e\x5f\x6e\x96\x35\x23\xd1\x18\x82\x9a\x4d\x01\xcf\xa7\x8c\x87\xe6\x07\x7c\x77\xe0\x76\x56\x22\x1f\xf7\x5b\x76\x6b\x8d\xc1\xbc\xa3\x96\xc9\xe5\x1f\xda\x6a\x10\x0b\x8d\x74\x6d\xa2\x9d\x5a\x07\x65\x01\x00\x80\xdf\x28\xcc\x9a\x55\x22\x73\xa3\xc4\x52\xb2\x3c\x59\x6b\x06\xb1\x64\x70\x12\x29\x1a\x5d\x68\x00\x5d\x68\x62\x63\x50\x74\x2b\xed\xf5\x46\xda\x83\xd3\x42\x03\x88\xb4\x07\x8d\x64\xab\x11\xe9\x03\x00\x48\x03\x51\x8c\x00\xb1\xe6\x0c\x62\x69\x79\xb5\x45\x95\xdc\x4a\x23\x20\xee\x41\x2b\x9e\x90\x56\x54\x91\x46\x34\xe4\x56\xa4\xb2\x4e\xa2\xb2\xd3\x92\x44\x9a\x25\x95\x35\xe2\x72\x6b\x4f\x89\xf3\xf9\x2c\x50\x75\x43\x52\x84\x11\x69\x72\xdc\xf7\x0f\x4b\x9d\x2c\x75\xec\x0a\x76\xed\xca\x1b\xdc\x0f\x2a\xaf\xad\xe0\x3c\xb6\xc3\x74\x70\x3f\xd0\x6a\xef\xfe\x06\x45\x6f\x40\xed\xdf\xa0\xc8\x70\x72\x83\x8c\xbf\xe0\xe8\x17\x6c\x78\x03\x21\x08\x82\x7c\x1f\x65\x60\xa7\xbe\x17\x67\x3e\x7c\xf4\x8a\x32\xcc\xd2\xf7\x88\x87\x0f\x93\x1f\x69\xfd\x19\x4f\x3d\x1f\xbf\x20\xd3\x5f\x86\xe3\xef\x22\xf0\xc3\x0a\x66\x69\x40\xbd\x6f\xea\x87\xd5\x4d\xe1\x1d\x7f\xb9\xe4\x67\x3b\x43\xdc\xdd\x7b\x0f\x5e\x9b\x67\x45\x55\x3e\xfe\x7e\x6e\xfd\x25\xbb\x8f\xc3\xed\x97\xf0\xdb\xb7\xfb\xd7\x77\xcb\xdd\x17\x77\xbf\x0f\xea\xd2\xbb\x29\xab\x22\x74\xaa\xc1\xd7\xeb\x3d\x69\xae\xb7\x0b\x53\xef\xf9\x2e\xbb\xea\x7e\xf0\xf7\xbf\x7b\xa5\x78\xce\x30\x36\xb8\xff\xfd\x68\xc7\xb5\xf7\xe5\x27\xe4\xdb\xdd\x7d\xf5\x40\xb2\x40\x51\x69\x4d\x7d\xfc\xfd\xdb\x7d\xf5\x70\xbd\x9c\xfd\xef\xd7\xd2\xc7\x97\xfa\x07\xe2\x15\xf0\xaf\xc8\x6f\x8f\x9f\xdf\x35\xf6\xdf\xd5\xf9\xaa\xb1\xff\xde\x9d\x6f\x1a\xfb\xef\xe2\x7c\xd1\xd8\x7f\xa7\x7f\x70\xcf\xd8\x7f\x1f\xff\x5f\x76\xcd\xd8\x2b\x39\x3c\x80\xc7\x97\x1b\xc3\x5e\x97\x13\xd7\x5b\x3e\x5f\x24\x86\xff\xf6\xf8\xbd\xeb\xbc\xc2\xfd\x3f\x79\x9d\xd7\x6b\x8a\xe4\xab\xb1\xfa\x75\xd4\x13\xfb\x97\x5f\x83\xf3\x9a\x9c\xf2\xbe\x37\xff\x8a\x1b\xb5\x5e\x13\x90\x1f\xff\x9d\x97\x62\xbd\xa6\x24\x3c\xfe\xeb\x2e\xb8\x7a\x8d\xd7\xfc\x30\xe0\xff\xca\xbb\xaa\x5e\x53\xa2\x5f\x8f\xfd\xf8\xb7\xc7\x7f\xe7\xcd\x52\xaf\xe9\x5a\xdf\xef\xe1\x5f\xbe\x24\xea\x35\x5e\xf6\x75\x7f\x26\xcf\xfd\xf9\xb7\xdc\xed\xf4\x7a\x8e\x9e\xaf\x71\xfa\x9f\xbc\xa8\xe9\xa3\x39\x87\xff\xe3\x3f\xfe\xd7\xcd\x7f\xdc\x70\x4f\x39\xad\xcb\x9b\x2a\xf0\x6e\xec\xaa\xb2\x9d\xe0\x26\xf1\xaa\x20\x73\xef\x6f\xaa\xc0\xae\xae\x65\xde\x05\xe0\xe9\xb2\xe5\x9b\x2a\xbb\xb1\x6f\xd6\xde\x56\xcd\x9c\xc8\xab\xfa\x85\xc1\xb3\x93\x87\x1e\xe5\xff\xef\x92\x61\xf2\xa6\xbd\x5c\x05\xe5\xba\x59\x5a\xc2\x17\x24\xd7\x9f\x33\x54\x1c\x3a\x5e\x5a\x7a\x37\x22\xa7\xfd\xaf\x9b\xff\x80\xff\xd7\x4f\xcf\x1c\x9e\x33\x8c\x3f\xad\x4b\xd5\x6d\x71\x8b\xdc\xdd\x7d\xbb\x7d\x93\x65\xff\xf5\x5a\x74\xb9\xfb\xf7\xf7\x6f\xcf\x77\xc8\x3e\x5c\xa8\x3c\xbe\xed\xf2\x7d\x78\xf7\x7b\xf1\x78\xb9\x99\xf3\xf1\xf1\xb1\xf8\xc7\x3f\x8a\x7b\xef\xa1\x3c\xb3\xff\x58\xdd\x7b\x0f\x7f\xdf\xc5\x75\x19\x10\xf5\x6e\xe7\x15\xaf\x2f\x33\xf5\x1e\x9a\x22\xac\xbc\x5b\xef\xe1\xef\x17\xc4\x97\x2e\x5f\x00\xfb\x25\xf4\x93\xe2\x8b\x55\xbe\x64\xac\x0a\x13\x2f\xab\xab\xcf\x9b\xf7\x95\xdf\xc3\x71\xae\x3b\x23\xfa\xd6\x03\xe4\x75\x19\x68\xd9\x7b\xf6\xce\xb2\xfa\xa4\xf1\xdf\x3e\x2d\x85\x1e\xab\x2f\x9f\x33\xf2\x58\xdd\x97\x5e\xf5\x8a\xd7\x57\xc2\xb8\x1f\xf6\x03\xd0\xf3\xe0\x7b\x95\xe8\x95\xa5\xed\x7b\x6f\x38\x08\xff\xf6\x8e\xbf\xdb\xea\xc1\xb5\x2b\xfb\xee\xcb\x93\xec\xae\xef\x67\x24\xa5\x97\xba\xe7\x2b\xb9\xdf\xdc\xd0\x7a\xce\x37\x71\xbe\x75\xb8\xea\xbd\x19\xfa\xe8\xa5\xd5\x22\x2c\x2b\x2f\xf5\x8a\xdb\x41\x72\xa1\x3a\x78\xcb\xc4\xdd\x7d\xf1\xf3\xcf\xde\x43\x96\xde\x0e\x7a\xf4\x83\xd7\xd8\xef\x3e\xc5\xe3\xc4\x59\x79\xc6\xe2\x7a\xbd\x04\x1e\xb6\x61\x4f\xf4\xbe\xba\xfb\x1c\xdc\x2b\x8a\xac\xf8\x14\xbc\x67\xf3\x52\xf8\x21\x37\x7e\xb6\xdb\x7d\xca\xcf\x6d\xf5\xa2\x7d\xd5\xdf\x9e\x54\xef\x4b\x75\xf7\xf3\xcf\xd5\x43\xe1\x25\xd9\xd1\xfb\xc1\x5e\x5f\x6f\xd0\x7e\x42\xd1\x4b\xf5\xd5\xd5\xc0\x1f\x94\xff\xa2\xfa\x6f\x27\xc7\x25\x07\xf3\xa5\xee\x6d\xfb\x0f\xbd\x7a\xd5\xf6\x52\x77\x6d\xdb\xcb\xe0\xdb\xdd\x77\x2d\x0b\x13\x56\x2f\xd6\xc2\x39\x27\x53\x29\x6f\xec\xd4\xbd\x29\xb2\xa6\xec\xcd\x47\x6f\x4e\xdc\x30\xf1\xd2\xde\x47\x2e\x6f\xb2\xdd\x4d\x58\x95\x37\x94\x24\xde\x78\x17\x93\xd4\x5b\x93\x1e\xd3\xff\xfe\xdf\x37\x20\xcf\x8b\xec\x6a\x39\x7e\xb9\x51\xb2\xa6\xfc\x72\xa3\x15\x75\xef\xbb\x7b\x57\x44\xc7\xb0\xc7\xd3\xa3\x79\x63\xa7\x72\xbb\xf0\xd2\xea\x09\xe5\x4d\xe0\x85\x7e\x50\xdd\x6c\x4f\x6f\xa1\x8a\xac\xb9\x56\x3d\x11\xfd\xe5\xe6\x92\x00\xe6\x9f\x25\x74\xce\x73\xf8\x81\x8e\xf3\x74\x63\x5f\x4f\xe2\x02\x72\x7b\xce\x89\x7d\xe3\x86\x65\x1e\xdb\xa7\x2f\x37\x61\x1a\x87\x69\x6f\x89\x3f\x72\xd8\x4b\xaf\x7a\x62\xa6\x17\xd6\x05\x43\x13\x56\xc1\x19\xd8\xa9\x8b\x9e\x87\x1e\x77\x5a\x27\x5b\xaf\xe8\x99\xbc\x8a\xfe\xee\xfb\xb6\x79\x17\x56\xfd\xbf\xff\x63\xab\xfc\xd1\x10\xe7\x45\x96\x67\xa5\x37\xf7\xb2\xc4\xab\x8a\xd3\x87\xab\xe4\xbd\x87\xa7\xa1\xbe\x48\x8f\xbe\xbc\x3d\x5d\x27\x7f\x4e\x3e\x71\xc6\xda\xeb\xe9\x7d\x76\x5f\x3e\x65\x7a\xf6\xbd\x8a\xcc\x92\xbc\xae\x3c\x57\xad\x4e\xe7\xe4\xf5\x9f\x63\xba\x4f\x5f\x92\xc3\x9f\x6f\x68\x7e\x0a\x56\x8c\x3e\x36\xb9\x1d\x5c\x06\x7d\x70\x77\x77\x6f\x3f\x8a\x76\x15\x3c\x24\x76\x7b\x8b\xdc\xff\x61\x9b\xb3\xd4\x07\x77\x77\xbf\x0c\x27\x77\xf7\xf1\x9f\xb3\x74\x77\x1f\x3c\xa6\xbf\xdc\x3e\xe3\x8c\x3f\xc1\x99\xdb\xae\x1b\xa6\xfe\x2f\x55\x96\x0f\xee\xee\xa0\x1f\x82\xdd\x66\x55\x95\x25\x83\xbb\xbb\xbb\x7b\xe7\xd1\xfe\x41\x02\xc5\xb5\xbf\x3f\x46\x22\xf6\x76\xd5\x99\x40\xfd\x78\xeb\x3d\x14\x59\x43\x66\x69\x65\x87\xa9\xd7\xaf\x9d\xaf\x5f\x1f\x76\x61\x51\x3e\x49\x9d\x0c\xc2\xd8\xbd\xbb\x77\x1f\xeb\x87\x30\x4d\xbd\x82\xd5\xc4\xc5\x93\x52\xd4\x0f\xe7\xcc\x26\x0f\x57\x7d\x7f\x1c\x5c\xf4\x7d\x70\xff\x0a\xf6\x71\xb0\x1e\xdc\x87\x8f\xf5\x39\x45\x56\x56\xa7\x3d\x2b\x64\x1c\x7a\x69\xa5\x78\x4e\x75\x7b\x77\x49\x22\x7a\xff\x01\xd5\xe0\xbe\xfa\x83\x46\x97\xa1\x7e\x43\xc7\xbd\x2f\x5e\xd4\x23\x80\xab\xbb\xfb\xec\xe5\xdd\x81\xc3\xbb\xfb\xdf\x9d\x2c\x2e\xbf\x64\xf7\xbd\xd1\xfa\x52\x7c\xeb\xcd\xfe\x2e\xac\x3e\xa4\x5a\x29\x1e\x3f\x28\xfb\xad\x77\xce\x42\x7e\xbe\x1d\x3d\xec\xbc\xdb\xe2\xa1\x47\x75\x5f\xf4\x62\x2b\xdf\xd9\xdc\xef\xce\x93\x57\xb6\xf7\x3d\xfa\xde\x08\xbf\x43\xf3\x86\xb3\x57\x4d\x77\x61\xf5\x04\xfe\x87\x16\xbb\x8e\xe3\x4b\xa6\xd6\x9b\xb3\x65\xb8\xd9\x65\xc5\xc5\x52\x3c\xec\xcb\xef\x5b\x8f\xe7\x56\xaf\x1e\xff\x0d\xb6\xa4\xca\x7c\x3f\xf6\x7a\x1e\xd5\x33\x89\xcf\x12\x19\x7f\x2d\xde\x2e\xb1\x4f\x36\xc1\x89\xed\xb2\xec\xd7\xd5\x07\xe7\xa2\xb0\xe5\xed\xe0\x85\xd9\xc1\xdd\xdf\x06\x97\xf5\x77\xf0\x65\x60\xbb\xee\xe0\x4b\xf5\xb7\xcb\xef\x53\xf1\xfd\x27\xa8\x7e\x2d\x7e\x7b\x8b\xe4\xed\x58\xbc\xb0\x5b\xbe\x67\xb7\xf7\x76\xde\xf7\xe6\xc7\xd6\x54\x2d\x08\xcb\x6b\x02\xf7\x9b\xbc\xc8\x8e\xa1\xeb\x95\x57\x67\xbd\x3c\x8f\xd6\x65\x71\x0f\x53\xff\xc6\x7e\xe7\xaa\x5f\xdf\xdc\xec\x53\xa7\xfd\xbb\xa3\xfb\xdc\xec\xe5\xe9\xdf\xed\xbd\x3f\x13\x02\xff\x9f\x1b\xff\x3f\xea\xc6\x5f\x0c\x19\xaf\x4a\xcb\x87\xb3\x11\x7c\xf2\xda\xbf\x0e\xca\xca\xcd\xea\x6a\xf0\xf8\x58\x9c\x73\xc5\xdd\x7e\x74\xf8\x8b\x5f\x87\xbf\xbd\xb8\xfb\xe7\xb7\x3f\xf7\xf6\xcf\xa4\xca\x73\xce\x95\x70\x77\xba\xfd\xb5\xa7\x13\xa6\x83\x7b\xef\xa5\x71\xa5\x86\x9d\xf7\x63\x6d\xbd\xea\xef\xbd\xa1\x1d\x5c\x56\xa6\xf2\xde\x3b\x1b\xdc\xdf\xee\xfe\x85\x21\xc5\xa5\xe2\x62\xd0\x07\xaf\x18\xfc\x93\x60\xe3\x59\xa3\xa9\xbf\x16\x75\x7c\xbf\x5d\xdf\xa5\x77\xb5\xff\xb7\xc5\x21\x7f\x30\x8d\xdf\x06\x24\xef\x00\xbf\x1f\x99\x7c\xbf\xc3\x9f\x61\xa3\x7e\x24\x56\xf9\x3f\xda\xd4\xfe\x7a\xc9\x09\x5c\xdc\xa2\x93\xde\x71\x18\xd4\xe9\xa5\xa9\x3b\x78\x7c\xec\x19\xce\x76\x37\xa9\x7d\x0c\x7d\xbb\xca\x8a\xfb\xf2\x31\xfb\xdb\x20\xcd\x5c\x6f\xf0\xe5\xb9\xf0\xa1\x2e\xbd\x02\xf8\x5e\x5a\xdd\xa7\x9f\x55\xe7\xb1\x5d\xed\xb2\x22\xf9\x5a\x3d\x84\x25\x13\x16\xde\x2e\x6b\x1f\x7f\xfa\xe9\xff\x5f\x3e\x84\xa9\xeb\xb5\xd2\xee\x76\x70\x2d\x1d\xf4\x9a\x14\x96\xa2\xca\xd1\xef\x00\xfa\xa2\xc1\xdd\x3f\xfe\xf1\xb6\x54\x2b\x42\xd7\x4b\xab\xa7\x66\xb6\x73\x4e\xc0\x7a\x5d\x1a\x7f\x1d\x88\xb6\x13\xa6\x55\x56\x06\x83\xfb\xfe\x99\x4b\x2b\x2f\xbe\x3c\xae\x56\xe4\xe5\x61\x3c\x15\x06\xbf\xdd\xa7\x17\x04\x5c\x6e\xbb\x8f\x83\x70\x65\xf7\x5d\x7f\x4c\xaf\x65\x41\x96\x7a\x7d\x69\xff\xfb\x52\x2e\xaa\xeb\xb3\xc3\x5c\xbe\x25\x79\x2d\x1c\xdc\xf7\x4f\xc3\xf1\xe5\x17\x43\x2f\xbf\x24\xfd\x42\x6b\x11\xa6\x75\xfb\x98\xbe\xf4\xe5\x5c\x30\xb8\xfb\xaf\x47\xe4\x4f\xc6\xf7\x39\x7b\x74\x78\x99\x22\xcf\xf9\x68\xbd\x87\xdc\xf6\xbd\xcd\x9b\xb0\xe3\x25\x41\xfd\xb5\xf6\x3e\xbc\x3e\x99\x5f\xab\x9f\x7f\xae\x7e\x7a\x7c\x2c\xbd\x78\xf7\xe0\x66\x4e\x7d\x76\x0c\x9e\x1e\xae\x3e\xf0\xd7\xbb\xe2\x97\xc7\xaa\x9f\x84\xa5\x57\x2d\xbc\x5d\x75\x1f\xbe\xbc\x6b\x59\x7e\x5f\x3d\x0e\x2e\x2f\xab\x73\xc0\x32\x08\xd3\x9b\xea\x6f\x4f\x00\x97\xb2\x2f\xef\xa2\x99\xeb\x1a\xf9\x6b\x71\x1f\xfe\xf6\x92\x0b\x3b\xbb\x2e\x8c\xd9\x7d\x79\x9f\xde\x5d\x13\xee\x5e\xba\xf8\xb4\xa8\xda\xbf\x22\xbf\x5d\xc2\x1b\xc7\x0b\xe3\xdb\xdb\xfe\x1d\xba\x4d\xff\x56\x5c\x3c\x69\x18\xfd\x82\xdc\xdd\xc1\xd7\xb7\xbb\x7b\xfb\xd7\xe1\x6b\xf0\xfe\x15\x2e\xae\xfe\x73\x5f\xfb\x84\x2c\x09\xd3\xdb\xe7\xa0\xc9\x3e\x27\x15\xbc\xbb\xcf\xa0\xe1\x6b\x0c\xef\x60\x86\x67\x98\xf2\x0c\xf3\xed\x9f\x38\x45\x3a\x47\x59\x59\xe1\x96\x8a\x17\xdb\x55\x78\xf4\xb4\xec\x2a\x9c\xc7\xf0\x75\xf5\x63\x76\x79\x53\xec\x86\x38\x55\xde\xb5\xf0\xbd\x2b\x71\xff\x9c\xec\x38\x7b\x55\x74\x6f\x3f\xa6\x7d\x67\xe2\xc7\xf4\xd7\xe1\x6f\xcf\x32\x84\x1e\x31\xf4\x3e\x3e\xff\xff\x7b\xfb\xc5\xbe\x3f\x7d\x89\xbf\xfd\xab\xcf\xc9\x9e\x4d\x0a\xd6\x5b\x94\x57\xde\xcb\xf3\x68\x7b\xcf\xf9\x8c\x7a\x8f\xf4\xd1\xbb\x0f\x1f\xce\x27\x77\x3d\x0d\xbb\x8e\x2b\xb5\xca\x8a\x7e\x61\x4f\xbd\xe6\x26\x7c\x88\xc3\xed\xc3\xb5\xe4\x41\xf4\x92\xac\x38\xbd\xe4\x69\xbc\x82\x5c\x5a\x3f\x25\xb2\x7c\xa9\xbe\x44\x85\xde\xae\xbc\xbd\x7b\x28\xbd\xea\x76\xd0\xaf\x20\xbf\x78\xa9\x93\xf5\x91\xd5\xe0\x7e\x50\xd8\xcd\xe0\x55\xda\xc7\x07\xd7\x73\xb2\xc2\xae\xae\x49\xcf\x7a\xee\xae\xb5\x61\xf6\x92\x63\xf7\x21\xcc\x1e\x7a\xc7\xe1\x75\x22\xd8\x87\x30\x2d\x2b\x3b\x8e\x05\xef\xb4\xcd\xec\xc2\xbd\xbd\xfb\xf6\x9c\xda\xfd\xc5\xfa\x87\xe9\x2e\xfb\x18\xdd\xfc\x7e\xdd\xde\xb8\x24\x4b\xba\xbe\x5c\xa2\xb5\x4b\xd6\xd9\xac\x29\xbf\xbd\x5d\x46\xb2\xba\xca\xeb\xb7\x21\xdc\x25\xc5\xf5\x6b\x26\x5f\x25\xc4\xed\x59\x3e\xbb\x35\xba\xc6\x4c\xcf\x3b\x94\xaf\xb1\x95\x41\xd6\x7c\x70\xa6\x5e\xa5\xe3\xba\x56\x79\xf7\xd5\x7f\x21\x7f\x7b\x83\xb3\x6f\x29\x1d\xbd\x22\xb6\x4f\xe7\x06\x5f\xfe\xa0\xf6\x92\xbd\xf0\x0d\xe1\xcb\x4a\xfd\x81\xf4\x95\xee\x67\x68\x5e\x33\x74\x4e\xc6\xe9\xbd\xcd\x9d\x75\x31\xc1\x5a\x58\xc5\xde\xc7\xec\x59\x67\x84\x6f\x81\x3e\xca\xe2\xa2\x31\x5e\xe1\xa5\xce\xbb\x0c\x5c\x2f\xb9\x98\xbf\xbe\xce\xd2\xe7\xdd\x3d\xec\xb2\x82\xee\x17\xea\x67\xe8\xe2\x1c\x1f\x7d\xa2\x81\xc5\xbd\xf7\x6b\xf1\xdb\xdd\xb7\x77\x54\xb3\x94\x4b\xdf\x0f\xe8\x55\xef\x1e\xb2\xd4\xd0\x04\xef\x54\x56\x45\x16\xbd\x75\x76\xbd\xdb\xea\xee\xdb\x93\x7e\xbe\x4a\x76\xfc\x11\xe8\x3d\x35\xe5\xec\xfe\x7d\xaf\x77\x2f\x94\x9f\xa6\xd4\x7b\xf8\xb3\xf7\x53\x3d\xe9\xea\x63\x71\x5f\x9d\xb5\xf4\x31\xbc\xf7\xce\x75\xdf\xde\xef\xc7\xda\x4e\x15\x1e\xed\xea\xe3\x20\x7f\xe8\xe0\x4b\xc6\xc7\xb7\x7d\x7a\x53\xfe\x81\xb3\x97\xda\xb3\xd4\xeb\xf4\xe3\x7c\x7c\xa7\x79\x9f\xa5\x7b\x7b\xa3\x8f\x7f\x32\xbd\xdf\xa0\x3b\xbb\xc9\x9f\x2b\xf0\xe7\xac\x7c\xbb\xbd\xfb\x5a\x3d\xb0\x67\x1b\x96\xfd\x7b\x0c\xf0\x77\x2c\xef\xf3\xb4\xae\x8b\xf8\x29\xd1\xe6\xb9\x23\x7d\xa4\xf1\x58\x7d\x66\xb6\x9c\xc2\x7b\x37\x74\x4f\x5e\x86\xd7\xdc\x64\xb7\x4f\xd8\xde\xe1\x7a\xe9\x26\x99\xa5\xa9\x77\x6e\xca\xd8\x4e\x95\x15\xa7\xc7\xf0\xcc\xe3\x77\x57\x87\x67\x1e\xb7\x76\x71\x59\x06\x9e\x03\xfe\x73\xe5\x67\x4c\x66\xf9\xeb\x0d\x8a\xbb\xdf\x7f\x64\x80\x7a\xf4\x97\xaa\xf7\x03\xda\x2b\xde\xc7\xd9\x78\x86\x7f\x3e\xe4\x79\x63\xd9\x4b\xe9\x1d\xfd\xd7\x59\x13\xcf\xed\x0a\xcf\x76\x4f\xe7\xcc\xb9\x8f\x8f\xcf\xdd\x79\x20\xa5\xe5\x92\x26\x35\x6e\x39\xff\xc7\x3f\xfe\x0c\x56\x5a\xd1\xcb\xf7\x33\xf9\x2d\xd9\x37\x8c\x66\xe9\x5b\x99\x9c\x8d\xc1\x67\xb6\xc0\xf1\xc2\xe3\x27\xe6\xf2\x8a\x24\xf9\x24\xcc\x7e\x39\x0d\x7b\x8f\x8d\x7c\x2b\xe8\x77\xb8\xde\x0d\xc3\x0b\x47\xef\x15\xe5\x5f\x3e\x29\xee\xab\x57\x5a\xfe\xeb\xa0\xf1\xb6\x55\x75\x1a\xfc\x76\x5f\x3d\x24\xa5\x7f\x36\xbe\xd7\xe4\xd5\x8f\x03\x64\xf0\xaa\xf4\x71\x30\xbc\xbe\xae\x7a\x2b\x34\x40\xaf\x6f\x17\xbb\xf3\x64\x85\x1e\x07\xd8\xb5\xfc\x8a\x45\xba\x2c\xd0\xcf\xb8\x9e\xde\x9f\x91\x65\xaf\x91\xa9\x6f\x17\xae\x67\x64\xea\xdb\xc5\x68\x80\xbf\x94\x2b\x9e\x73\x11\xd6\xe3\x60\x34\xf8\xb3\x19\x7f\x89\x56\x5f\xbc\xa6\xeb\xb4\x77\x3e\xcc\xcb\x6b\x66\x5d\xbb\xf0\xcf\x46\xfd\xfc\x5c\x57\x81\x96\x45\x5e\xda\x3b\xa7\x17\x23\xf9\x44\xf9\x97\xe1\x8f\x4c\xc4\x73\x52\xd5\x9e\x83\xf3\xe2\x72\x7f\x75\xa4\x3e\xd0\xbe\x5a\x99\xdb\xbb\xfb\x37\x19\x4f\xb3\xab\x8e\xdf\xbe\xc3\x58\x3c\x86\x4f\x96\x79\x97\xdd\xde\x7d\xcd\x3e\xdd\x52\xf9\x1d\x14\xfe\x39\xa2\x29\xbf\x84\x97\x3c\xe2\xe0\xa9\x3b\x7d\xc1\xd3\xf3\xb7\xbb\x8b\xd1\x7c\xe3\x5d\x17\x3d\xf1\x33\xd2\x4f\x06\x1c\x7a\x4f\xe8\xc9\x87\xf3\x9e\xb6\xd9\xef\xee\xbe\x7d\xbd\xb2\xf8\xb4\xde\xde\x96\x77\xf7\xe5\x65\x13\xfd\xe2\xe2\x5d\xf6\xd1\xef\x9f\xc1\xce\x1a\xf7\x66\x9f\xf1\x35\x07\xe7\x5a\xc8\xbb\xfb\x76\x77\xef\x3d\x96\x5e\xd5\x87\xb4\xc5\xd1\x8e\x6f\xdf\x88\xeb\x05\xbe\x57\xd8\xbb\x6f\xf7\x98\x87\xdf\x9d\xb3\x72\x3d\x4f\xf5\x0f\xbb\xd4\x7d\x80\x58\xc6\xa1\xe3\xdd\x0e\xef\xbe\x96\x4d\x58\x39\xc1\xad\xf7\x2b\xf2\xdb\xdd\xef\x8e\x5d\x7a\x37\xaf\x34\xf8\xcb\x13\xaf\xe7\xb7\x5b\xbb\xca\xb6\xb7\xc5\xdd\xdd\xd7\x6d\xe1\xd9\xd1\xd7\x17\xe8\x5e\xbf\xbf\xbc\x2f\x7c\xab\xe6\x4f\xa8\xde\x39\x64\xc5\x47\x64\x6f\xa7\xc1\x97\xcb\xd2\xf1\x6a\x8f\xaf\xb8\xfb\xfa\x82\xeb\x15\xe4\x6d\xf6\x29\xae\xe7\xa9\xf3\xe5\x32\xe6\x6f\x31\x3d\x65\xb4\x8f\x33\xff\x76\x40\xa7\xf6\x36\x0e\x53\xff\xe6\x59\xe9\xbf\xdc\x0c\xa0\x12\x1a\xdc\x94\x7d\x81\x5b\x5e\x3f\x61\x7c\x9a\x11\xe5\xb7\xab\xa4\xcf\x66\xf0\xf5\xc0\x9c\x37\x60\x9f\x47\xcc\x7b\x1e\xf4\x17\xd7\xe8\xf6\xb9\xec\x95\x3f\x7e\x3b\x78\xb1\x89\x37\x67\xa4\xee\xe0\x1e\x79\x43\xf4\xbf\x90\x9f\x7f\xbe\x2d\x1e\x5f\xed\x99\xbe\xd6\x87\xcb\x0e\xc5\xf7\xa6\xda\x95\xe0\xd9\x1b\xea\x67\x5e\xbf\x0c\x0e\x3d\xec\x3f\x5e\xa1\xbf\xbb\x2a\x4f\x3f\x07\xef\x9e\xb7\xb8\xcb\xdb\xbb\xfb\xf7\xbd\x7b\x22\x5f\xf4\xf0\x4f\xab\xea\xb3\x6d\x5f\x7b\x5b\x4d\x33\x1f\xc3\x7f\x57\xb4\x89\xf4\xd1\x66\x1f\x74\x7e\x0d\x1f\xe2\xcc\x76\x81\xeb\x66\xe9\xed\x60\x17\x56\x83\x0f\x93\xfb\x7d\x2c\xfa\xde\xf7\xbd\x86\xa5\xef\xc2\xcc\xfb\xb7\xd1\xd0\x43\xd6\xa4\x5e\x41\x3d\xed\x9d\x5c\x64\x7a\x0d\xe4\x6f\x07\x6e\x78\x7c\x8a\x2c\xaf\x2d\x2e\xc7\x2e\x4b\x3b\xf1\x1e\x07\xe7\xf3\x89\x5f\xb2\x4b\x50\x33\x78\x03\x76\x95\xe2\x23\xea\x61\x4f\xf6\xb6\xb7\x1d\x4f\x3b\x99\x6f\x7c\x98\xcb\xe8\xed\xc2\x7e\xec\xae\x2f\xa5\x53\x64\x71\xac\x65\xc4\xf9\x60\xf5\x5c\xfe\x5a\x9d\xae\xd9\xc1\xaf\xc0\x67\x37\x0d\x1a\xb4\x03\xe8\x6d\xf9\xc5\x2c\x55\xef\x58\x7a\x8a\x35\xae\xc6\xea\x76\xd0\xeb\xc4\xe0\xfe\x0d\x43\x6f\x99\xbd\xbd\xbb\xbf\x9e\x2c\x7f\xdc\x21\x7e\xda\x81\xfe\xc3\xe6\xdf\x7a\xe5\x7b\x45\xb4\x57\x42\xef\xfe\x27\xe4\x5a\xd8\x87\xeb\xae\x57\x5c\xb3\x09\xc6\xe1\xf6\xa1\x8f\x6f\xa9\x4b\xe9\x3f\x1b\x80\x3f\x4b\xe6\x55\x08\xfe\x2c\x95\x3f\x8f\xc3\x5f\xe0\xaf\x9f\x0d\xbd\x62\xf4\xfa\x7b\xeb\xdd\xfd\x70\x04\xfe\x92\x9b\xf9\xeb\x1b\x65\xaa\xbc\xb6\x22\xb3\xb4\xf2\xd2\xea\x49\x53\x7b\xad\x7d\xb0\xf3\xdc\x4b\xdd\xf3\xe9\xf5\x9b\x60\xf9\xee\x83\x92\x15\x3f\xff\xfc\x66\xda\x7e\xa8\xbf\xbb\xbf\xd8\x96\x0f\x15\xdf\xb1\x35\xc5\x85\x83\x4b\x10\x75\xe1\xa0\x78\x26\xff\xed\xb2\xe5\xff\xe3\xd1\xff\x53\x47\x2f\xbb\x87\xcb\xcc\xf5\xae\x69\xaf\x7b\x22\xd7\xad\x8d\x0f\xf4\xde\xf4\xf8\x87\x37\x07\x9e\xf7\x3f\xab\x73\x95\xf7\xc3\x3b\x02\x3f\x18\xc4\x3f\x4f\x98\xcb\x49\xc6\x87\xe8\xfc\xc3\x66\xc0\x27\xe1\xf9\x5b\x44\x1f\x26\xcf\xd5\x27\x3f\xab\x6d\x75\x3d\x9e\xff\xf0\x51\xd4\x77\x83\xf0\x0b\xde\xe7\xb3\x96\x37\x53\xae\x2f\xbd\x92\x7b\x5d\xbe\x8d\xeb\xe2\xff\x34\xa8\x3e\xab\xdf\x9f\x86\xd2\x57\x0b\xf2\xe9\xa9\xce\x93\x1c\x3e\x31\x94\x6f\xb7\xf5\xca\xaa\xc8\x4e\xaf\x22\xef\xcd\xd9\xac\x97\xff\xc3\x91\x77\x4f\xe0\xca\x55\x5b\xd9\x85\x67\xbf\x78\xe2\x49\x9e\x95\x61\x0f\x69\x84\x5e\xf3\xe4\x87\x3f\x1d\x7f\x3f\xf9\xe2\x61\x49\x5e\x00\x53\xff\xf1\xa7\xe1\x53\x99\xea\x5d\x3e\x14\x79\xc1\xf1\x5c\xf9\x0a\xef\xea\xa9\xee\xf7\xb2\xb2\x8b\xea\xcb\x79\xc7\xc4\x4b\xdd\xf3\xc3\xb7\x4f\xc3\xfe\x97\xc6\xe7\x26\x1f\xf7\x6e\x5e\xb3\x83\x7c\x97\xe2\xc3\xa5\xf5\x9b\x8e\x3f\x9c\x85\xf6\x10\x7b\xa9\x5f\x05\x9f\xca\xe0\x8d\x85\x1b\x0c\x3e\x87\x79\xf9\x28\xe2\xfc\xd7\x23\x67\x05\xf7\xde\x7f\xc6\xf0\xaa\x51\x9d\xbb\x6f\xf4\xff\x93\xb5\xff\x8f\xd8\xf0\xce\x41\xef\x85\x95\x0b\xaa\x57\x42\xbf\x2e\xfd\xbd\x67\xf4\xb9\x7d\xac\x3e\x15\x8e\x97\xba\x8f\xd5\xe7\x72\xf9\xf6\x61\x87\xf3\x15\x82\x37\x1b\x14\xd7\x01\xd9\xf5\xca\x12\x76\xaf\xb9\xba\xfd\xe9\x3d\x8e\xc8\x3b\xb9\x7d\x9c\xfb\xee\x43\xb6\xf7\x23\x7a\xdd\x8e\xf8\x4c\xbd\xce\xf0\x28\x3a\x7b\x7c\x7c\x3c\xa3\x23\x33\xd7\xbb\x1e\x3c\xfd\x34\xfc\x1a\xee\x6e\x87\xe3\xd7\x55\xff\xf8\xc7\x70\xf2\xee\x7d\xfa\x79\xd3\xef\x77\x62\xf8\xbc\xe7\x83\xa2\xb3\x9f\xde\x20\xbb\x70\x1e\xd8\xa9\x1b\x7b\x20\x3d\x69\x57\x49\x92\xe7\x3f\x42\xea\x47\xa3\x6f\xfc\xee\x1b\xa3\x0f\x14\xbe\xa7\x12\x4f\x82\xf9\xbe\xe2\x5d\xec\xd2\x8b\xee\x7d\x7f\xa6\x5e\x56\xdb\x2b\x7b\x4f\xe3\x7f\x7b\x77\xff\x1c\x84\x5d\x67\xe6\x1f\xcf\xa3\xf3\x9c\xfd\x2e\x88\x97\xba\xdf\xbe\xfe\x81\x5d\x40\xbe\xa3\x9b\x7d\x3f\xbf\x33\xd6\x9f\x97\x3f\xfe\x34\x3c\x5b\x3b\xef\x7a\x10\xff\xd5\x7b\xac\x5e\xf7\xfa\x6f\x1f\x74\xba\xac\xb7\x97\x78\xf9\xb6\xb8\xf6\xa4\xe8\xd9\xbd\xfb\xf2\xe7\x90\x77\x2f\x9f\x0a\xc4\xd7\x91\x2e\x6e\xbd\x3e\xb8\x40\xee\xbe\x79\x71\xe9\xfd\xfe\x47\xa6\xf0\x6a\x95\x3f\xb3\x3f\x2f\x94\xfe\x44\xe8\x7f\x24\xf0\xbb\xaf\x6f\x8c\xf5\x33\x83\x1f\xb6\xc1\xbf\xa7\xa3\x1f\x76\x4b\x2e\x3b\x25\x9f\x9a\xcc\xaf\xdf\x1d\xbf\x9f\xbc\xd7\xf2\x7f\x09\xec\xdf\x75\xb9\xf0\xf2\xd8\x76\xbc\x7e\x15\x1b\xdc\x7d\x2d\xae\xa6\xa6\x77\xf4\xbc\x8f\x5d\x28\xae\x32\x7e\xd3\x8d\xef\x5a\xbe\x3f\x9b\x44\x9f\xb0\xf7\x56\x72\x4f\x1f\xa8\x1d\x6a\xaf\x38\xa9\x5e\xec\xf5\xe1\xea\xed\xe0\x19\xe0\x17\xa7\x2e\xca\xac\x18\xdc\xf5\x28\x8b\x0b\x8e\xf0\x07\x71\x5c\x42\xae\xde\x33\x1a\xdc\xbd\x1c\x61\x43\xc5\xcb\xf3\xe7\xf6\xff\xf2\x7d\x66\xec\xed\xaa\xc7\xe2\xd5\x51\x38\x34\xc8\xdb\xef\x2c\x4a\x97\x16\x55\x96\x3f\x86\x7f\x0a\x75\x39\x90\x7e\xc6\xcc\x9e\x5f\xff\xb4\x55\x1c\xa6\x1e\xfb\xdd\x96\xd7\xbd\xf5\x4f\xdb\x7f\xe7\xc3\xd2\xaf\x6f\x35\xed\xcf\xfb\xfc\x0e\xf4\x7d\x67\xdf\x55\x9f\xcf\xe4\x1f\xb3\xcb\xef\xf7\xc1\xae\xc2\xc8\xae\x0f\xdf\x07\x7c\xd5\xff\x37\xc0\xdf\xbc\x7f\xfc\xe3\x3b\xb1\xc9\xd3\xb7\x35\xdf\x5f\xb6\xcf\x0b\x25\xf2\x7e\xce\x7e\x6a\xb4\x3f\x71\xa0\x3f\x4a\x6e\xf0\x7d\x51\x0d\x06\xaf\xb6\xbc\x9f\x39\x61\xbd\x38\xf7\x8a\x7f\xdf\x0e\x09\x7a\xd9\x21\xc1\xdf\xed\xb0\x7e\x72\x2c\xff\xf7\x67\xc7\xd3\xfb\xcc\x31\xb4\x5d\x97\x0c\xec\xe2\x5d\xa4\x1a\xee\x6e\xbd\xff\x7a\x1c\xdc\x0c\x9e\xe6\x76\x1f\x95\x7c\x7d\x8b\xef\xc1\x09\xec\xa2\xf4\xaa\x6b\xfc\xf6\xa1\xfc\x57\xef\xb7\x9f\x7f\xbe\xbd\xd8\xbf\x4f\x6b\xef\x5e\x1b\xf3\x17\x80\x13\xf4\xbe\x60\x6b\x97\x5e\x6f\x25\x7e\x2a\x3e\xd0\x6a\x9f\x3e\x92\xe9\x57\xae\xdb\x77\x95\xbd\x6a\x9d\x3f\x98\xbf\x0d\xef\x7e\x7d\xdf\xf0\x97\xe1\x6f\x4f\xf1\xf0\x8f\xb7\xf8\x15\xfd\xed\x6f\x7f\xb5\xc9\xf0\x37\xe8\xd1\xfb\xf2\x97\x5a\xa1\x7f\x99\x35\xf4\x4a\xe7\xea\xb2\xbc\x54\x5d\xe6\x88\xd2\xaf\x4d\xef\x31\x9e\xee\xee\xee\x9e\xed\xf9\x2b\x64\x50\xf1\xcb\xf0\xbf\x3e\x0c\x5b\x16\x97\x77\x1f\x81\x9b\xc2\xce\xed\xa2\xb7\x42\x62\xef\xfd\xbd\x47\xf5\x88\xdc\x43\x1f\x86\xf3\xbf\xde\x15\x5c\xb6\xb9\x2e\x9b\x5c\x7f\xfb\xc0\xe4\x2f\xbf\xbc\xef\xd2\x05\xbe\x9f\xe3\x77\xdf\x17\xeb\x87\xbe\x3e\x84\xe5\xba\xb0\xf3\xdc\x73\x1f\x7f\x42\xbe\xf6\x8e\xc6\x4d\xef\xf9\x3e\x3e\x3e\x16\x57\x1d\xea\x65\xf1\x83\xda\xf8\x9e\xa5\x30\x2d\xbd\xa2\x3a\x8b\xe0\xe9\x43\xad\xec\x11\xf9\x9a\xfd\x67\xf1\x15\x82\xb2\xbb\xf3\xa7\x8d\x3f\xca\xe9\xa7\x04\xef\x1e\xf2\x2c\xbf\xbd\xfb\xb5\xd7\x8c\xbf\xa0\x18\xfd\xa8\x9d\xb5\x09\xfd\x23\x0e\xbe\xdb\xee\xd7\xbf\xaa\x88\xd7\x76\x8f\x1f\xca\xeb\x02\x54\x55\x71\x3f\xb8\x19\xdc\x0f\x7f\xfb\xa0\xa4\xaf\x51\x3e\x94\xf9\xf9\xf4\xe2\xbd\x2a\xdd\x23\xf7\x7f\x82\xf5\xbd\x7d\xfa\xc3\x19\xf3\x7d\x1e\xbd\xfb\xe2\xb7\xf7\x0c\xb6\x10\xf4\x97\x26\xd6\xfd\x59\xaf\xfe\xe2\x24\xfe\x03\xb1\x0d\xee\x91\xcf\x78\x7a\xbf\xc0\x6d\xbd\x38\xfe\xdc\x01\x7d\x2f\x9b\x63\x58\xd6\x76\x4c\x78\x71\xfc\x91\xc9\x27\xaf\xeb\xb2\xc6\x6d\xb3\xc2\xf5\x0a\x32\x8b\xb3\xe2\x71\xd0\x04\x61\xe5\x0d\xbe\x13\x77\x3c\xaf\x2e\x3f\x84\x6a\xf0\xed\x7e\x88\x7c\xd0\x84\x3c\xcb\xa5\xf4\xc2\xd6\xbb\x9a\x5d\xe6\xd4\xe5\xed\xfb\x7d\xc7\x5e\xa0\x8c\xe7\x7d\x0c\x9f\x5f\xeb\x64\x7a\xf4\x8a\x8a\xce\x3e\xe9\x6a\xfb\x88\xdc\xfd\x45\x0b\xf5\x11\xc9\xf7\x4d\xd4\xdd\x87\xfe\xb5\x9f\x1a\xd6\x8f\xcb\xda\x2f\xbf\xbc\x73\x5d\xec\xa2\x08\x6d\xdf\x53\xce\x32\xfe\x83\xde\xb6\x8f\xc8\x3b\x9d\xb0\x9d\xa8\xcc\x6d\xe7\xe3\x4e\xe1\x6b\xae\x90\x3f\x67\xa1\xb2\xb7\x7f\x48\xf7\x5d\x41\xea\xb5\x95\x5a\xf5\x46\xeb\xfd\xf6\x78\xb8\xab\xa4\xfa\xe3\x0e\xd4\x2b\xe9\x79\x95\xbf\xf0\x8e\x5e\x7c\xfb\x3e\xda\x3f\x37\xe6\xfe\xa8\xff\x2f\x6d\xdf\x87\x3a\x17\x1b\xdd\x3b\x3b\x9f\x04\x37\x97\x3f\xe8\x3b\x7f\x65\x7b\x5b\x3d\x9e\xcf\x4b\xff\x73\xd8\x0f\xf5\xe3\xf0\xee\xbe\xf8\xc1\x45\xe1\xc3\xe2\xd1\xde\x67\x1f\xe6\xb4\x57\xd8\xa5\xd7\xcf\xea\xdb\xbb\xab\xe1\xfa\x5a\xfd\xf2\xcb\xcf\x3f\x87\xff\xf9\x89\x62\x7c\x7d\xbf\xa2\xbe\x18\x90\xe2\xd9\x52\x86\x10\x74\x8f\xdc\x67\x7f\x60\x55\x8b\xeb\xf2\xf1\x4e\xa7\xce\x01\x98\x9e\x7f\x12\xea\xf5\x02\xf8\x5a\xbd\x48\xe0\x83\xc6\x3f\xed\x6a\xbe\x2a\xfb\x4f\xe4\x93\xa9\xf1\xf8\x61\xd7\xeb\x4c\x94\x7a\xbf\x69\xf5\x63\x64\xa1\x4f\xc8\x7e\x98\x50\x7d\x58\xf8\x19\x27\x9f\x80\xfd\xf2\x91\xc6\x3f\x3d\x41\xcf\xfd\x62\xb2\xa2\xb1\x0b\xf7\xaf\x77\xad\xfd\xa4\x6b\xdf\x63\xe5\xa3\x11\xfb\x6c\x15\x7e\x3f\x75\x2e\x0c\x12\xb6\x13\xfd\x93\x1c\xfe\xb0\x60\x3e\xb4\xfc\x44\x5b\xda\xcf\xb4\xa5\xfd\x8e\xb6\x2c\xbd\xb6\x5a\x84\xe9\x67\x7b\xbd\xff\x37\x68\xcc\x7b\x8b\x7b\x61\x7a\x55\x78\x8e\xd7\xc7\xe6\xff\x24\xe7\x7f\x65\x8a\xfd\x20\x4b\xbd\xed\x03\xdb\x32\x8b\xeb\x4f\xf7\xcd\xff\x4c\x01\x1e\xab\xff\x87\xbd\x6f\xd1\x6e\x1b\x47\x12\xfd\x15\x99\xdb\xad\x90\x21\x24\xf3\x21\x51\x2f\xc3\xde\xc4\x71\x4f\x67\x27\x8f\xbe\x71\xba\x7b\xfa\xca\x1a\x0f\x2d\xc1\x12\x27\x32\xa9\x26\xa1\x38\x9e\x48\xf3\xed\xf7\xa0\x00\x52\x24\x01\x52\x72\xd2\xd9\x99\xbd\x67\x73\x4e\x64\x10\xac\x2a\xe2\x51\x00\x0a\x85\x42\x55\xcb\x56\xd6\xb4\x52\xef\x8a\xe2\x11\x27\xdb\xb2\x51\x8c\x53\x55\xf8\x29\x76\xce\xc8\xd8\x9e\xb4\xec\xa1\x85\xe8\x89\x75\x46\xb1\x35\xa4\x95\xbd\x52\xd5\x0d\xf1\x89\x75\x16\x63\x6b\x18\x57\x0d\x13\x69\xda\x16\xe3\x42\xae\x58\x2c\xb5\x34\xa6\x35\xc3\xfb\x7d\x7e\x25\x24\xc6\xe7\x54\xe4\xe7\x75\xdd\x6c\x6c\x36\xa3\x4b\x53\xf7\xc1\x2b\x24\xac\x10\x2f\xc3\x17\xe2\x1a\xb1\xd4\xaa\x0a\xab\x1e\x6b\xc8\xca\xa0\x5a\x69\xde\x05\xf3\x85\xb4\xc7\xf8\x24\xd5\xd7\x40\x52\x3b\x3f\x98\xf6\x88\x96\x17\x25\xd6\xf8\x23\x6a\x9a\xe5\xca\xc1\xb7\x18\xa7\xeb\xb4\x60\xa7\x63\x57\x16\xec\x15\xb9\xfd\xc2\x72\x29\x5b\xb7\xaa\x00\x0e\x2f\x80\x8a\x89\x1e\x45\xc7\x1d\xe6\x94\x9c\xe5\x35\x96\xf3\x75\x4b\xf5\x8d\xf8\x54\x31\x66\x39\x16\x8d\x83\xbb\x4b\xea\xc7\x60\x65\xa3\x12\x28\x76\x1e\x00\x54\x6f\x5b\x31\x92\x47\xfe\xc3\x2c\x48\x56\xd5\x78\xec\x2d\xe0\x95\x77\x0e\x82\xe7\xa4\xb9\x4a\xc5\x6a\x5f\xc3\x66\x45\xde\xf8\x0a\xbe\x28\xf6\x71\x75\x27\x96\xf1\xb6\x2a\xa1\x90\x81\x56\x08\x85\x7f\xb4\x48\xc8\x67\xaf\x32\xab\xe4\x37\x18\x55\x38\xca\x0f\xb4\x02\x53\x3d\xdb\xe4\x19\xb3\x6a\xef\x7f\xe7\x7f\x7a\x05\x00\xfb\x39\x54\xb1\x40\xc1\xe7\xa5\xc5\x9e\xb3\x58\x0b\xc5\xad\x16\x0a\x5a\xad\x0a\xa1\x54\x48\xae\x31\xb2\xca\xef\x6f\x96\x7e\xf8\x01\xba\xee\xc8\x92\xb7\x4f\x05\xec\x00\xd9\xd2\x9e\xbf\x7e\x57\x7e\x38\x70\xbe\x43\x24\xdb\x8b\x25\xa1\xe4\x7f\x32\xcb\xfc\x2b\x19\x06\xdb\x6a\x8e\x51\x08\x1c\xc5\xce\x36\xed\xaf\x62\x96\xf8\x5f\xc9\x2c\x35\x9b\xce\xaf\x66\x96\xc3\xf6\x97\x07\x6d\x24\xa5\x59\xb7\xaa\x4f\xd2\x3d\xe5\x3a\x59\xe8\xe5\x5b\xd1\xbc\x31\x4a\xbb\xca\xc3\x24\xa4\x42\x87\xa9\xaa\x5b\x6e\x83\xd4\x40\x72\x55\x59\xd2\x47\x13\x13\x03\xaa\x86\xd5\x8c\xc7\xf0\x51\x56\xc2\x3f\x88\x9f\xf8\x2b\x69\xfb\xfc\x4d\xdb\x57\x34\xc9\x1f\xd6\xc4\xac\xbf\xfe\x5d\xdb\x17\x46\xcf\xff\x47\x3a\xa2\x71\x60\x9a\x13\x1c\xd5\xa9\x02\xfe\xa0\xdd\xcc\x2a\x26\x1f\x55\xbb\x99\xe9\xc2\x67\x3b\xc4\xaf\xdc\x77\x7e\x5b\xdd\xc8\x8f\xe9\x16\x36\xbd\xc5\xfd\xef\xa8\xc0\x89\xc9\x8a\xf8\x34\x53\x2b\x9c\xa7\xae\xdb\xea\x3b\x4f\x66\xcc\xea\x93\x27\xd5\x90\x7d\x30\x50\x80\x63\xd5\xc1\xe6\x66\x53\xce\x9d\x91\xdb\xdc\x79\x0c\x67\x1b\x19\x95\x31\x64\x20\xdf\xd0\x7b\x41\x3e\x06\x53\x60\xfa\xe0\x66\x4d\x4b\xb2\x15\xab\xcc\xa9\x95\xda\x87\x15\x98\xee\x36\xf8\x74\xa6\x9d\x6a\xb2\xc8\xc2\xdf\xc9\xad\x1d\x24\x3a\xb7\xd9\xd7\x8c\xf2\x59\x2e\xdc\xb7\x09\xda\xe7\x56\xfb\xe2\xf2\xdc\xd4\xc6\xa7\xd6\xc8\xe9\x79\x23\x6b\xaa\x49\x27\x8d\x8c\x4a\xfc\xe9\x23\x6d\xad\xc3\x60\x1a\xcd\xc8\x01\xc4\xfa\xdd\xd1\xa0\x5b\x49\x6c\xc9\xdd\x46\x28\xa9\xb0\xea\x9b\x5a\x05\x62\xea\xef\x49\x52\xc5\xc9\x05\x70\x47\x1d\xcb\xb2\x5c\x28\x83\x92\x96\x68\x17\x61\x2f\x58\x57\x5b\x25\x48\xe6\xbf\x6a\x4f\x49\xce\xec\x91\x53\xdf\x0c\x7b\x2b\x73\xe6\xb1\x3a\xc8\x87\x41\x5f\x35\xd5\x3c\xa8\xa6\x9a\xaf\xd5\x17\x16\xcb\xf8\xcb\xd7\x4f\x35\xff\xce\x6a\xf0\x1f\x7f\x51\x6a\x03\x59\x8d\xa0\x3e\x2c\xc1\xaa\x44\xc6\x76\x9a\x61\x4f\x94\x3d\x21\xd4\x86\xdf\xba\x9e\x98\x6b\x22\xbf\xed\xd4\x4d\xfd\x9b\xf3\x25\xf1\xe3\xea\xbe\xc6\xd6\x99\xf0\x5e\x54\xa2\x47\xfd\x9b\x44\x3e\x29\x1e\xba\x6c\xbe\x93\x8b\xc3\xa0\xf1\xe7\xf2\x6d\x81\x84\x80\x69\x42\xd9\x4a\x38\xd3\xc7\xda\xc6\x6e\xd9\xb0\x46\xf4\x24\x7d\xb1\x53\xf4\x09\x0a\xfa\x98\x8c\xe9\x64\x62\x64\xe6\x13\xca\x29\x17\x88\x6b\x67\x95\x53\xb2\x21\x2b\x95\x24\x55\x90\xbf\x62\x52\xa5\xcf\x4a\x7b\x0e\xd2\x0a\x3e\xb2\x6a\x55\x3e\x09\xa1\xb0\x24\x26\x84\xea\x16\x8a\xca\x0e\xfd\xa5\x8e\xcf\xc3\xdb\x8f\x84\x77\x1e\x09\xef\x2a\xe0\x8b\xba\xc5\x32\xb2\xff\x91\xcc\xce\xe1\x0e\xbf\xcc\x5d\xe5\x2f\x09\x7f\x8e\xb6\xeb\x48\x6f\xa2\xfb\xa4\xf0\x21\xaf\xfc\xa1\x28\x0e\xe6\x41\x08\xcc\x51\x6c\xdf\x5e\x19\xb2\x68\xe8\x53\x82\xb6\x9d\xfc\xfd\x50\x4f\xfa\x0c\xdc\xbf\xbc\x24\x71\xe0\x2f\x1b\xab\x28\xa6\x8d\x98\xfc\xbe\x26\x09\x25\xb3\x46\xae\xa3\x1b\x1f\xc8\xc3\xca\x9f\xb5\x35\xa9\x31\x73\x40\x7f\x06\x98\xec\x8a\xc2\x0e\xe6\x63\x40\xee\x19\xed\x76\xf2\x10\x4e\x2f\x41\xc2\x7f\x16\x13\x5f\x2f\x34\xc0\x60\xc8\xcb\x4b\x5c\x91\xb0\x2c\x27\x4b\x49\xdd\xf0\xc9\xb6\x5e\x47\xeb\x84\x60\xb0\x8e\x1f\xcb\x26\x18\x1f\xa9\x63\x09\x10\x9b\xb8\x15\x40\x61\x14\xdf\xf9\x4b\x0e\x05\x72\x8c\x9d\xde\x06\xdc\xc1\xdc\xb1\xb7\x70\x1f\x26\x51\x54\x4d\x76\x1b\x09\x37\x24\x48\xe8\xdf\x2c\x49\x0b\x70\x5b\x04\x90\xe5\xa6\x4b\xc0\x6a\x36\x88\xc2\xd7\x7e\xe8\xcf\x49\xdc\x9e\x05\x09\x43\xd3\xe5\xdd\x1c\xeb\xa4\xe7\x01\xd8\x93\x36\x68\xd4\x00\xba\x0d\x4e\xb7\xad\x15\x35\xb7\x96\xd5\x91\x07\x60\x38\xfb\x21\x9a\xae\x93\x32\x6f\x58\x56\xb7\x0c\xbb\xa6\xb7\xbc\x3d\x24\x50\x89\x75\x92\x79\xac\x06\xb5\x65\xaa\x4c\x42\x51\x01\x3b\x12\x28\xdf\x01\xfd\x18\xcc\x66\x04\xac\xca\x0b\x94\x3b\x82\x4b\x3a\xbd\x94\x35\x3a\xbd\x61\x70\xab\x1f\x29\x3b\x36\x33\xf8\x07\xb9\x5a\x69\x90\x86\x40\xb2\x2e\xbf\xe2\xfb\x41\xd0\x7e\x49\xaf\x58\x26\xfa\x24\xf1\x23\x7a\x90\x20\x51\xb6\x03\x96\x5a\x2e\xdb\x6c\xe7\xf7\xbb\x6a\x28\xb1\xc5\x67\xcb\x47\x19\x80\xe5\x6d\xcb\x3b\xf2\xf4\x92\xf1\xa1\x63\x50\x3d\x26\xe4\x73\xb7\x64\x11\xdd\xf3\xf9\x5e\x37\xb6\x5b\xb8\x0e\xd0\x90\x57\x0b\x89\xf7\x76\xe6\x77\xf8\xc8\xda\x2a\x2e\xb2\x7d\xe5\xf2\x97\xd1\xf8\x97\x2e\x80\x76\x71\xcd\xb0\x5d\x85\x51\x9f\x52\x4a\xcb\x96\x13\xe9\x8d\x58\x3b\xaa\xe0\x95\x0b\x0a\x52\x0b\x2a\x19\xd2\xc1\x0b\x8e\xfd\xa8\x05\xc7\x7e\xfc\x82\x03\xad\xcc\x66\xb3\x1b\x7f\xfa\x81\x4d\x69\x9c\xed\x1e\xb5\xce\x48\x92\xe1\xb7\x5c\x67\x14\x5f\xdb\xad\x30\xf2\xcb\xfc\xca\x22\xbf\x2d\xac\x29\xd2\x5b\x79\x4d\x49\x2f\x3f\x7d\xd9\xb2\xc2\xb1\xf4\xc7\x2c\x13\xf6\xe1\xcb\x44\x19\xb4\x66\x99\xb0\x1f\xb3\x4c\xd8\x8f\x59\x26\xac\x03\x96\x09\x65\x0f\x55\x9c\x96\x48\xf6\x00\x00\x2c\x96\x0c\xd5\x62\x51\x81\xa0\xb4\x48\xe6\x07\xc1\x15\x08\xb0\xbc\xec\xdb\xc9\x08\x60\xf9\xec\xb5\x8a\xaa\xda\x08\xf2\x7d\x54\x55\x8c\xdd\x02\x55\xb3\x26\xd5\xe2\xa6\xcb\x96\x62\x13\xa4\x46\x63\xaf\x2a\xd6\xa2\x9d\xd7\xb1\x1a\x2e\x4f\x52\xc7\xc6\xca\x0e\x95\x46\x49\x4c\x6e\x63\x92\x2c\x74\x49\xa2\xab\xd8\x8d\x1e\xbc\x7e\xe6\xd7\x49\xe3\xcb\xd6\x49\xbb\x7c\x39\x66\xe1\xc7\x15\xda\xb7\xe0\x56\xb7\xe1\x9e\x26\x5f\x17\x37\x1b\xeb\x88\x8b\xba\x39\x7d\x63\xce\xbe\x07\x05\xd8\x4a\x5d\x03\x15\xc6\x12\x23\x7f\x7a\x6a\xf7\x91\xbc\xaf\x49\x5f\x0e\x9a\x5d\xdb\x46\x21\xee\xda\xb6\x74\xad\x84\xc3\x8c\x82\x93\x78\x14\x98\xa6\x01\x3a\xf8\x60\x62\x9c\x62\xd7\x6a\x36\xe9\x09\x76\x7b\x67\x09\xa6\x2d\x17\x8c\x89\x3a\x3c\xaf\xd3\x3b\x0b\x31\x6d\x75\x20\x6f\xc0\xf3\x06\x0c\x4e\xa7\x26\xee\x1b\xad\x01\xbc\xb0\x2d\xfe\xc6\xb6\x18\xb8\x78\x65\x5b\xd6\x90\xfb\x24\xd6\xa5\xca\x08\x4d\xa7\xba\x32\xd9\xcb\x9a\xca\x08\x18\x63\x68\xc3\x17\xa2\x0d\xb6\x87\x9d\x34\xe9\x0c\xbb\x69\xb2\x33\xec\xa5\xc9\xfe\xb0\x9f\xc1\x7a\x43\xc7\xe1\x0f\x4d\xdc\x72\x86\x4e\x27\x7b\x70\x87\x4e\x37\x7b\xe8\x0e\x9d\x5e\xf6\x30\x18\x3a\xfd\xec\xc1\xee\x0d\xdd\x01\x3c\xed\x29\xfe\xb0\xc3\xc1\xea\x6a\x31\x74\x39\x61\x07\x76\x40\x81\x69\x4f\xce\xf4\xc0\xc4\x0e\x6a\xb1\xda\xe9\xd2\x17\xee\x7c\x3a\x5d\x80\x19\xb8\xee\x74\xbb\x4d\xd6\x8b\x48\x24\x4c\x7b\x97\x74\x26\x86\xd1\x6c\xea\x09\xfb\xb2\x81\x18\x41\x03\x1a\x86\x83\xc1\x1b\x8a\x53\x60\xec\x4c\x8c\x61\xa7\xb6\x1c\xe1\xd7\x95\x23\xac\x2c\x47\x58\x2e\x87\x6d\x09\xc6\xf9\x3a\xde\x28\x2f\xd9\x71\x1c\xc5\xba\x26\xbc\x92\x35\x2e\xff\xf4\xae\xe1\xa7\x03\x76\xd8\xf8\x7e\xd6\xd6\x90\xe2\x92\x16\x1f\x35\x38\x3a\x39\xb1\xfb\x9b\xe4\xe4\x64\xb0\x09\xf9\x7c\x51\x01\xa8\x2e\x4c\xf9\x54\xfb\x63\x30\x25\x97\xd4\xa7\x6b\x69\xa6\xf8\xa3\x24\x62\x79\x89\x2f\x6b\x80\x35\x53\xbe\x3b\x63\x1b\xa6\x36\x92\x5f\x7c\x82\x17\xef\xb4\xea\xb9\x52\x5a\xfb\xcb\x9f\xb3\x42\xad\x5e\x97\x52\x46\xf8\xb2\xe2\x15\x15\x77\xd1\x2d\x7d\x57\x74\xc4\x21\x5d\xeb\x2b\xef\x65\xab\xaf\x26\x29\x5e\x16\xc4\xf1\xf2\x4b\x49\xe5\xf3\x87\x8a\xcb\x35\xc4\xb2\x0d\x4f\xb5\x44\x21\x95\xa5\x4e\x66\xe0\xab\x6d\x19\xa3\x9e\xe1\xf7\x8a\x47\x0f\x72\x19\xc4\xd5\x46\xa5\x28\x31\x5f\x92\x8f\x64\x59\x89\x93\xe0\x31\xc3\x9a\x48\x8a\x5b\xde\x16\x10\xc1\xa7\x42\x7b\x7c\x62\x9f\xd9\x43\x50\x23\x0b\xae\xa6\xd9\x9e\xb2\x52\x55\xfa\x76\x05\x74\xb4\xe9\x8e\xba\x86\xb4\x9b\x65\x34\xfd\xa0\x95\x54\x93\x6a\x49\xa2\x92\xc6\x3a\x9c\x91\x18\x22\xe8\x14\xe8\x74\x87\x55\x83\xa6\xaa\x2c\x7e\xac\x19\x5b\x61\x73\xf9\xbd\x83\xb1\x5d\x9e\xd9\x24\xd4\xe7\xcb\x20\xfc\xa0\xa1\x58\xd6\x7e\x73\xbe\x7b\x47\xe6\xe5\x73\x09\xe5\x64\x24\x1f\x33\xee\xf8\x4e\x17\xc7\xaa\x86\xcc\x4f\x05\x0e\x84\x73\x8d\x66\x13\x8e\x39\x54\xec\x08\x06\xd0\xe5\xc6\x80\xed\xb5\xe2\x2c\x42\xe6\x1a\xf9\x5e\x05\xdb\x7e\x8b\x71\x53\x53\x41\xd8\xa4\xff\x45\x36\x41\x50\x81\xfd\x26\x71\xbc\xa4\x58\xa1\x51\x7c\xc0\x47\xa5\xa1\xc3\x4b\xb1\xd9\x28\xaa\xa5\x2c\xc8\x66\x63\x65\x77\xac\xc1\x2d\xd3\x8f\xdc\xa5\x01\x4e\x46\xdc\x5b\x7a\xe1\x04\x3c\xbd\x02\x4d\x73\x86\x1b\x20\x90\x06\xa9\x9d\x2e\xf8\x35\x21\x27\xc1\xd8\x9a\x40\x6f\x92\xd3\x60\x1c\x4d\xc6\xf6\x64\xe7\xbd\x84\xc9\xb5\xa3\xe8\x14\xc7\x23\xb8\xf4\xca\x2d\x6a\x6f\x97\x51\x14\xeb\x7a\x6c\x46\xc6\xb1\x63\x20\x86\x46\x39\x1a\xa6\xa6\x0d\x3a\x21\x70\xde\x00\xb4\x29\xa3\x6d\xa4\x14\xad\x51\x04\xe6\xf3\xe9\x07\x76\xee\xf2\xe3\x5c\xb8\x08\x72\x8a\x3b\x6e\xd7\x69\x36\x75\x72\x82\x3b\x9d\x4e\x6f\xb3\x19\x58\x16\x13\x5e\x08\xa4\x1c\x9e\x22\xa7\xd8\xb6\x07\x56\xa7\xd9\x64\x60\x8e\x3d\xb0\x9b\x4d\xdb\x71\xbb\x20\xa4\xc3\xeb\x4e\xc7\x72\x1d\x78\xdd\xed\x3a\x96\x0b\x79\x9e\xdb\xeb\x70\x14\xaf\xe3\x74\xbb\x3c\xaf\x6b\x31\x41\x99\xe5\x75\xad\xce\x20\xcd\xeb\x39\x22\xcf\x76\x53\x38\xa7\x9f\xc2\xb9\x3d\x4f\xe4\x75\x45\x11\xbc\x6e\xd7\xb6\x78\xb1\x5c\x3b\x45\xb6\x07\x9e\x67\x71\x6c\x48\xf6\x21\xd7\xf1\x1c\xbb\x63\xf3\x81\x1d\xe0\xf1\xb8\xe7\xf5\x51\xbf\x37\x98\xa0\xb1\x6d\x77\xbb\xc8\xb6\xbb\x7d\x48\x7b\x16\xb2\x6d\xcf\x66\xe9\x8e\xd3\x45\x76\xc7\x03\x98\x4e\xcf\x46\xec\x87\xa7\x5d\x96\xee\xf0\xb4\xc7\xd2\x3d\x9e\x1e\xb0\x34\xc0\x77\x5d\x0f\xd9\x5d\x97\xa7\xbb\x0e\xb2\xbb\x5d\x80\xf1\x6c\x1b\xd9\x9e\x6b\x41\xba\xd3\x47\xec\x87\xa5\x7b\x5d\x0b\xd9\x3d\x0f\x68\xf6\xbc\x1e\x4b\xf3\xfc\x1e\xcb\xef\xb9\x2c\xdd\xb7\x7a\x88\xfd\xf0\xf4\x80\xa5\x81\x7e\xbf\x63\x21\xbb\xef\x79\x2c\x3d\xe8\xf6\x91\x3d\x00\x5c\xc7\x72\x7a\xc8\xb1\xdc\x2e\x4b\xbb\x56\x17\x39\xae\xe5\x41\xda\xeb\x20\xf6\xc3\xd3\x03\xe4\xb8\x3d\x9e\xdf\xb7\x11\xfb\xe1\x69\x06\xdf\x07\x3a\x1d\xcb\x41\x4e\xc7\x72\x21\xed\xba\x88\xfd\x40\x7a\xc0\xf2\x07\x0e\x4f\xf7\x90\xd3\xb5\x58\xbd\x9c\xae\x35\x60\xe9\x01\xa4\x5d\x0b\x39\x5d\x17\x68\x76\x3d\x1b\x39\x5d\x0f\xe0\x3d\xc7\x42\xec\x87\xa7\xbb\x2c\x0d\x65\xf0\x5c\x1b\x39\x9e\xcb\x61\x5c\x96\xef\xf6\x20\xdd\x73\x90\xe3\x41\x3b\x38\x5e\x7f\x80\x1c\x6f\x00\xb8\xbd\x4e\x1f\xb1\x1f\x48\x77\x5d\xe4\xf4\xa0\x9d\x9d\x5e\x77\x80\x9c\x9e\xc7\x61\xbc\x2e\x4b\x43\x3b\xf4\xfa\x1e\x72\x7a\x7d\x80\xe9\xdb\x3d\xc4\x7e\x20\xdd\xf3\x10\xfb\xe1\xe9\x01\x4b\x43\xf9\xfb\xac\x4d\xfa\x7d\xf8\x6e\x7f\xe0\x22\xf6\xc3\xd2\x03\xd6\x26\x03\x0b\xca\x39\xe8\x78\x88\xfd\x4c\xd0\xd8\xb5\xac\x3e\x62\x3f\x90\x76\x6c\xc4\x7e\x58\xda\x76\x3b\xc8\xb5\x5d\x80\xb1\x3b\x0e\x72\xed\x4e\x87\xa7\x3d\x96\x1e\x40\xba\xdb\x43\x2e\xe7\x43\xd7\xf1\x2c\xc4\x7e\x78\xda\x65\x69\x17\xd2\x3d\x96\xdf\xe3\xf9\x3d\x8f\xa5\x7b\x90\x1e\xf4\x91\xeb\x0c\x80\x8e\x3b\x70\x91\xeb\x0e\x58\x7d\xdd\x8e\xd5\x45\xec\x87\xa5\x59\x5f\xb0\x1f\x9e\xee\x23\xb7\xdb\xe1\x69\x56\x9e\x6e\x87\xd5\xc5\xf5\x5c\x17\xb1\x1f\x9e\xf6\x90\xeb\x89\xfc\x6e\x17\xb9\x1e\xf4\x9d\xdb\xf3\x6c\xc4\x7e\x78\xba\xc3\xd2\xf0\xdd\x5e\x8f\xe5\xf7\x38\x4c\x9f\xe5\xf7\x21\xbf\xcf\x60\xfa\xd0\xfe\x2e\x6b\x43\x97\xb7\xa1\xdb\x1f\x74\x59\x5a\xe4\xf7\x58\x1a\xea\x32\xe8\xba\xc8\x1d\x00\x3f\xbb\x03\xaf\x8f\xdc\x01\xa7\x39\xe8\x75\x58\x1a\xe0\x07\x8c\xfe\x60\x00\x65\x18\x0c\x5c\xd4\xb1\x1c\xd6\x6e\x1d\xcb\xed\x23\xf6\xc3\xd2\x76\xc7\x46\x1d\xde\xce\x1d\xd6\xce\xec\x07\xd2\x5d\x0b\x75\xec\xae\xcd\xd3\x2e\x4b\xbb\x90\xee\x77\x50\xc7\xee\x33\xfa\x9d\x4e\xa7\x8f\x3a\x1e\x8c\xb5\xce\xa0\x3b\x40\xec\x67\x82\xc6\xdd\x81\xe5\xa1\xee\x00\xfa\xb7\x3b\x70\xfb\xa8\x3b\x80\x36\xec\x0e\x7a\x16\xea\x0e\x60\x7e\xf0\x2c\xcb\x41\x9e\x05\xe3\xc5\xb3\xbc\x3e\xf2\x2c\x68\x1f\xcf\xea\xd9\xc8\xb3\xa0\xbf\x3c\xab\xef\x21\xf6\xc3\xd3\x03\xe4\x59\xd0\x77\x9e\x6d\x0d\x10\xfb\x81\x74\xb7\x8b\x3c\x1b\xf8\xd9\x73\x6d\x17\xb1\x1f\x96\xee\xb8\x0e\xf2\x3a\x6e\x87\xa7\x07\xc8\xeb\x40\x19\xbc\x4e\xd7\x42\xec\x87\xa7\x7b\x2c\x0d\x74\xbc\xde\x00\x79\x5e\x1f\xf2\x07\xb6\x83\xbc\x81\xdd\x85\xb4\xd7\x41\xec\x87\xa7\x3d\xe4\x0d\x7a\x1c\xa6\xc7\x60\xa0\xcd\xbd\x41\xaf\xcf\xd2\xac\xbe\x3d\xcb\x1e\xa0\x9e\xe5\xb0\xf2\xf4\x3c\xdb\x43\x3d\x3e\x66\x7b\x5e\xaf\x8f\x7a\x1e\x8c\x97\xbe\x63\xb9\xa8\xef\x40\xbb\xf5\x1d\xb7\x83\xfa\x0e\xf4\x45\xdf\xe9\xf7\x51\xdf\x81\xfe\xea\x33\x5e\xed\xbb\xd0\x3e\xfd\x8e\x65\xa1\x7e\x07\xe6\x07\xdb\x71\x5d\x0b\xb1\xdf\x2e\x3c\x75\x3a\x36\x62\xbf\xac\x1c\x1d\xd7\xb2\x3b\x08\x7e\xc5\xd3\x00\x9e\x06\xfc\xa9\xd3\x65\x4f\xd0\xbb\x5e\xc7\x61\x4d\xcb\x7e\xd9\x53\xd7\x72\x3a\xc8\xeb\x5a\x30\x13\x7b\x5d\xab\xeb\xb1\x27\xde\x2e\x5d\x87\x35\x0c\xfb\x85\xa7\xae\xc3\x9e\xf8\x5c\xe5\xf5\xad\x41\x0f\xb1\x5f\x78\xd7\xb7\x2d\x1b\xb1\x5f\x47\x3c\xf5\xd9\x93\xcd\x21\xed\xae\xc3\x9e\xba\x1d\xf1\x34\x80\x27\xbe\xb2\x0c\xec\x8e\x8b\xe0\x4f\x57\x3c\xc3\x5a\x33\xb0\xa1\xa5\x21\xc1\xdf\x8b\x95\x68\xe0\xd8\x6c\xfd\x19\x38\xd0\xd3\xb6\x3d\x70\x3d\x07\xc1\x1f\x46\x7d\xc0\x96\x89\x2e\xe2\x7f\xc4\xb3\xeb\xb1\x67\x0f\x4a\x3d\xb0\x7b\x3d\xcf\x62\xcf\x83\xc1\x60\x92\x05\x6c\xc9\x84\x94\x5d\xb0\x29\x0b\x63\x1c\x9c\x91\x76\xb8\x5e\x0e\x83\x13\xd7\xd9\x6c\x82\x53\x6c\x3b\xbd\x66\x33\x38\xb1\x3d\xeb\x8c\x40\x44\xa2\x38\x5a\x0e\xa9\x1e\x18\x67\xd6\x30\x66\x7f\x9c\xa1\xbd\xdd\xea\x9f\x19\x92\x85\x52\x00\xeb\x5b\x85\x93\x0a\xc9\x7d\xe3\x1d\x99\x5f\x7c\x5a\xe9\x9a\x7e\x36\xfc\xeb\x66\xfc\xd7\xab\xab\x99\xdf\xfa\xc7\xd5\x55\xbb\x35\x31\x0d\x5d\x5f\x50\xba\x4a\xce\x86\x57\x57\xc7\x57\x57\xc7\x86\xae\xeb\xe3\x02\xc0\xd5\x55\x5b\x1f\xf3\xc7\xc9\x67\x07\x79\x5b\xc3\xd8\xe8\xfa\xd5\xd5\xec\xb3\x8d\xdc\xed\xd5\x55\xdb\xf8\xcc\xfe\xf0\x47\x63\xa3\x2f\xa3\xa9\xbf\x5c\x44\x09\x35\x0c\x7d\xc8\xf3\xbb\x5b\xe3\x4c\xbf\xba\x3a\x1e\xc3\x37\xee\xaf\xae\xda\x57\x57\xad\xef\xff\x39\x79\x6a\x3c\xd5\xaf\xae\xce\xc6\x56\x6b\x00\xd9\xe3\xab\xab\xc9\xd5\x95\x7e\x75\x65\x00\xe0\xd9\xd5\xd5\xd1\x7f\xfc\xe7\x77\xdf\x37\x9f\x3c\x35\xd1\x70\xf4\xcf\xab\x2b\xcc\x51\x27\x4f\x8d\x33\xfd\x3f\xbe\x08\xcd\xd0\xbf\x83\x16\xc8\x95\x63\x62\x1a\x9a\x81\x22\x6c\x55\xfa\xe2\x49\x45\xe2\x90\x5f\x64\xfd\xf0\xda\xa7\xd3\x05\x89\x5f\xce\x70\x24\x44\xe0\x38\xba\x17\x1e\x15\x5e\xce\x12\x3c\x4e\x8d\x08\x96\x3b\xe0\x5d\x6e\x4c\xe6\x41\x42\x49\x9c\xa3\xa4\x07\x10\x92\x05\x7d\x06\x95\xd6\xcb\x70\x46\x3e\x0d\xed\xad\x32\xb6\x02\x0f\xd2\xf7\x3e\x7a\x11\xdd\xa9\x02\xc4\x5c\xa7\x0e\x54\x53\x77\x96\xd7\x10\x0c\x84\x4a\x96\x76\x1f\x82\xdb\x87\x77\xd1\x7d\x31\xf0\x76\xaa\xfe\x49\x89\x14\x5c\x83\x15\x2b\x39\xa6\x93\x51\xd9\x6d\x6d\x76\x0f\xae\x0c\x99\xf7\x52\xbb\x6b\x19\x5e\x02\x1e\x86\x8e\x82\x97\x35\x03\x91\xf6\xfb\x97\xaf\x2f\xae\x9f\x5f\xfc\xf0\xf6\xdd\xc5\xf5\xab\x97\x6f\xfe\xfc\xf2\x87\xdf\x24\xbd\x0a\xa1\x3f\x3e\x30\xfe\x17\xfd\x91\xee\x27\xe4\x4d\x4c\xbe\x03\xc6\xd1\x24\x75\xa6\xa6\xf0\x2b\x9b\x11\xfc\xc5\x5f\x06\x33\xae\xc7\xf0\x97\xcb\x1b\x7f\xfa\xe1\x00\xba\x1f\x65\x24\x52\xde\x6e\x49\xbd\x8e\xcb\xe3\x3d\xb8\xd5\x77\x91\x28\xe1\x06\xec\xe7\xd4\xe7\xb2\xcc\x7b\x47\x18\x47\xcd\xe6\x11\x35\xe8\x22\x8e\xee\x21\xfe\xc7\x05\xd7\x30\x8a\x4a\x36\xee\xd6\x09\x6d\xdc\x90\x46\x1a\x46\x2e\x9d\x12\x3e\x07\xc2\x6b\xa1\x4c\xd4\x34\x51\x4c\xe6\xe4\xd3\x90\x20\x41\x65\x48\x51\x8e\x29\xe3\xf6\xee\x01\xc9\x95\x1e\xc6\x8a\x96\x40\xab\x38\x88\xe2\x80\x3e\x0c\xe3\x76\x9a\x64\x5b\xc2\x51\x3e\x2c\xc7\xb5\x3f\x9b\xe5\x4a\xf2\x3e\x7a\x15\x24\x6c\xd2\x44\x41\x3b\x98\x15\x5b\x52\x09\x5a\x56\x63\x5a\x47\xa9\xaa\x32\xdf\x55\x62\x07\x99\xb7\xb3\xae\x04\x6a\xd9\x23\x7a\x8a\xad\x11\x6d\xb5\x0c\x30\x37\x48\xcb\x7e\xa2\xc0\x19\xd3\x49\xf6\x3e\xef\xd2\xaa\xa1\x20\x9f\x5e\xb8\x80\x1b\x51\x24\xd5\xf8\xaa\x40\x2c\x00\xc8\xab\x7b\x0b\x50\x70\x7f\xa7\xec\x5b\x79\x46\xea\x39\x2d\x5f\xf7\xdd\x05\x61\x45\xfd\xc1\x7c\x22\x9b\x11\xca\x95\x0d\x66\x6c\x2f\x6b\x14\xba\x50\x59\x4b\x64\x1b\xe8\xc8\x1a\x65\x1b\xe7\x62\x57\xaa\x26\xa2\x82\xc3\x42\x3e\x7f\x8d\xc9\x04\x3c\x5d\x71\x3f\xeb\x99\x13\xd8\x5c\x54\x3d\x6b\x14\xd7\x54\x25\x36\xcd\x82\x87\xc2\x62\x75\xe2\x49\x76\xdc\x35\x8b\x5e\x65\x25\xd2\x29\x0a\xc0\xc1\x56\x94\x39\x66\x04\xd6\x0a\x14\x3c\x9e\x99\xa0\xa8\x1c\x2f\x46\x50\x7c\x05\x96\x5e\xa8\x0d\xa2\xa8\x60\x73\xbb\xd9\x48\x26\x63\xdc\x71\x62\x10\x02\xa9\x16\xe8\xcb\xc0\xb7\x74\x88\xad\x51\x78\x92\x96\x73\x14\x9a\xa6\x91\xe8\x61\x1a\xaf\x6f\xbb\x2d\xcd\x9f\x85\x6a\x2a\x9d\x9c\x8f\x27\x28\xc0\x94\xf7\x72\x84\x12\x4c\xda\xd3\x45\xb0\x9c\xbd\x89\x66\x24\x41\x21\x2e\xf8\x3c\xe7\x53\x82\x4e\xdb\x30\x73\x40\x8b\x1d\x85\x9b\x0d\x9b\xc4\xc2\x74\xc0\x09\x3e\x89\xb3\x1e\xf3\x71\x38\xd6\x78\x54\x79\xed\x28\x0d\x6f\x49\x73\xb3\xcb\x99\x35\xcc\x3f\x42\xf8\x3c\x1e\xa4\xd1\xf4\xd3\x83\xca\x05\xb6\x46\x8b\x93\xac\x97\x17\x69\x2f\x4f\x71\x32\x5e\x4c\xd0\x1a\x4f\x0b\xe5\x4c\x43\x3c\xfa\x50\xc6\xf5\x29\xb6\x38\xf8\x4c\x74\x3e\x0f\x1b\xf0\x2c\x9c\x2e\xa2\x38\x0d\x1e\xe0\x23\x9a\x2e\x1a\x82\x1b\x8a\x34\xb3\x0b\x97\x69\xa1\xd8\x90\x71\x31\xc6\xd3\x76\x18\xcd\xc8\xfb\x87\x55\xea\x55\x4d\x38\xfb\x64\x4d\xa8\x4f\xd1\x8c\xdb\x20\xc1\xf7\x57\x78\xca\x08\x6b\xcf\x34\x8c\xf1\x0a\xf0\xde\xf8\x77\x64\xd7\x68\xab\x7c\x2c\x73\x0d\xad\x0a\x9e\xe5\x67\x62\x82\x80\xa2\xed\x7a\x49\xb6\x8e\xba\xc5\xd6\xe8\xf6\x44\x01\x33\xba\x4d\x1b\x6e\x8e\xf3\xaf\xc7\xb7\x13\x74\x87\xe7\x35\x6d\xd8\xb2\x8f\x30\xbe\x4b\x17\xc5\x5c\x0d\x2f\x53\x67\xae\xbf\x06\x74\x01\x55\x9e\xa3\x19\xf2\xd1\x9d\xd0\x2a\x8b\x73\x9c\x85\x89\x0f\x40\x9d\x02\xea\x9a\x7b\x1a\xe5\xb3\xde\xcc\x40\x47\x7a\x99\x0f\x77\x1e\x64\x97\x46\x89\x29\x8d\x2a\x7e\xfc\x02\x3e\x34\x25\x46\xcc\x5c\x76\x97\xce\xd9\x54\x1c\x25\x2d\xfa\xf9\x69\x69\x56\x11\xc1\xc2\xd7\xb2\xd8\x9b\x41\x29\xdc\x40\xd0\x9e\xc5\xfe\x7c\xee\xdf\x2c\xe1\x0c\x28\x3e\xd3\x83\xf6\x22\x26\xb7\xf0\x8a\xfa\xf1\x9c\x50\xac\x5d\xc3\xf5\x3c\x0d\x05\xca\xb0\xc2\xc1\xf4\x43\xce\x7d\x3d\x97\x43\x68\x36\xb5\xeb\x31\x5b\x83\x0c\x63\x78\x38\xf2\x51\xa0\x0c\x91\xae\x9a\xbd\xca\x9f\x41\xa5\xab\x45\x79\xce\xa8\x58\xc5\xc6\x13\x14\x63\x7b\x14\x9f\xf8\x69\x80\xa1\xfc\xb4\x4f\xc7\x71\xcb\x9e\xe0\xec\xdd\x38\x9e\x64\x93\x10\x0f\xc1\x9a\xc6\x34\x40\xdc\xe5\x5f\x3a\xa6\x47\x11\x5b\xff\xc4\xf9\xdb\x73\x72\x1b\xc5\x44\xa7\xe3\x68\xc2\x96\xec\xa0\x10\xe9\xa0\xbc\x04\xd7\x72\xb3\x22\xfe\x78\x70\xab\x83\x8e\x58\x1e\x99\xe0\x80\x33\x9f\x3f\xb6\x26\x06\x72\xc1\x98\x23\x37\xbd\x94\xe4\x3f\xde\xeb\x0c\x3e\x13\x01\xfd\x06\xe3\x9a\x06\xc3\x69\x44\x71\x23\x0a\x97\x0f\x0d\xd1\x31\x0d\xbf\x91\x04\xe1\x7c\x49\x76\x20\x42\x52\x8c\x8a\xe3\x8b\x0d\x3f\xd8\xf1\x72\x9e\x4d\x70\x54\xf0\x0e\x2d\x46\x16\x0a\xd5\xbc\xfc\x9e\x7c\x82\x22\xe9\x89\x51\x14\xfc\xf2\xf3\x22\x6b\x92\xd0\x40\xd6\x16\x5c\x39\xe2\xd2\xf8\x16\x72\x59\xf6\x29\x11\x9b\x36\x5f\x0c\x0b\x05\x06\x5a\xee\x29\x81\x5f\x5b\x82\x25\xdb\x86\x58\xa0\xe1\x5e\xc8\xb4\xa7\x7b\x68\x2f\x0c\xb4\x2e\x60\x05\xe6\xae\x69\x66\x7b\x90\xd7\xb5\x05\x9b\x22\x8a\x66\x06\xb2\xc5\x59\x4a\xa2\xda\x29\x61\xc7\xb2\x10\x6d\xf3\xd5\x3d\x20\xf1\xb7\x0a\xab\x50\xf4\x60\xfb\x79\x3b\x4a\xc6\x70\x74\xfe\xfc\xe2\xd5\xa4\x24\x50\x64\xee\x7e\x6f\xc8\x72\xa9\x1b\x5b\x24\x40\x5f\xfd\x50\x09\x99\x7a\x05\xcc\x41\xff\xf2\x7e\x82\x77\x88\x69\xee\x0f\x3f\xa8\x72\xcf\xdf\x55\x52\x2e\xfa\xe1\xcb\xd1\x7f\x7e\x59\x5d\xee\xd4\x03\x5f\x0e\xfc\xc7\xf7\x95\xe0\xd4\xbf\xc9\x01\x5e\xbe\xad\x04\x4c\x3d\xe9\xe5\xa1\x5f\xd6\x43\xbf\xcc\x17\xf9\xe2\xf2\xbc\x02\x9a\x1f\x9a\x52\x9f\x12\x7d\xc1\xc0\x9e\xfd\x74\xf1\xc2\xd8\x8a\xc3\xb6\xcf\xdb\x51\x38\xd6\xc6\x5a\x19\x17\x82\x43\xfb\x77\x5c\x4f\xd1\x9e\xae\x63\x36\x2f\xfe\xc4\xb2\xb0\x85\x0a\x14\xcf\x2f\x5f\x5e\xff\xf4\xec\xdd\xb3\xd7\x4c\xf2\x1c\x6b\x93\xaf\x20\xf5\xf6\xf2\x9c\x11\x69\xff\xf4\xc5\x14\x5e\x9c\x5f\x02\x85\xeb\x12\x85\x02\xd0\xcb\x3f\xbd\x79\xfb\xee\x82\x17\xf7\xaf\x52\x71\x2b\x40\xdb\x53\xa9\x50\xc2\x6e\x9e\xbd\xbc\x90\x5e\xc2\x39\x2f\x97\x0c\x74\xa3\x58\xc8\x37\x6f\xdf\xbd\x7e\xf6\x0a\xf0\x5e\x48\x78\xfb\x30\x5e\x2b\x8a\xf1\x91\xc4\x09\x79\x59\x8f\x38\xd6\xbe\x57\xf4\x4c\xde\xc1\x22\xa2\xfb\xef\x5d\xa9\x88\xb3\xcc\x0f\xc1\xea\x0d\x9b\x9b\x17\x3c\x6c\x4c\x28\x86\xde\xb3\x37\x93\xc2\x32\xad\xe2\xc8\xb4\x88\x23\x3e\x7f\x7f\xde\x8e\xfc\xb1\x76\xa6\x55\x23\xfe\x04\xe7\xfa\xba\x76\xa6\x19\x5b\xe4\x8f\xb5\xd3\x03\x60\x4f\x05\xec\xd1\x01\xb0\x47\x1c\xd6\xaa\x81\x64\xac\xa7\xdb\xd6\x53\x02\x51\x84\xe1\xc9\x00\x24\xfb\x91\x48\xa6\x0d\x68\xce\x63\xd1\x1c\x40\x73\x1f\x8b\xe6\x02\x5a\xe7\xb1\x68\x1d\x40\xeb\x3e\x16\xad\x0b\x68\xde\x63\xd1\x3c\x40\xeb\x3d\x16\xad\x07\x68\xfd\xc7\xa2\xf5\x01\x6d\xf0\x58\xb4\x01\x43\x6b\x7f\x57\x8d\x15\x25\x14\xb8\xe9\x3b\xce\x4d\x4f\xb4\x27\x35\x9f\x10\xc0\x4f\xb4\x27\x9c\x4d\x1b\x75\x6c\x9a\x52\x6e\x08\x9e\x7e\x72\x08\xf0\x13\x01\x3c\xaa\x02\x4e\x43\xaf\x88\x0a\x32\xe0\x2f\x1c\xc3\x4b\x36\x86\x97\x63\xed\x3f\x4b\xf3\x0d\x93\x36\x32\xe4\x9c\xff\x56\x88\x95\xbd\x6c\x3f\xab\x06\x4e\x7d\x9b\x0a\xc8\xe7\xfb\x20\x5f\x44\xf7\xa1\x80\x3d\xdf\x07\x2b\xbc\x00\x0a\xf0\x17\xfb\xc0\x53\x3f\x1b\x02\xfe\x62\x1f\x7c\xea\xed\x52\xc0\xff\xb0\x0f\xbe\xe0\x68\x52\x20\xfd\x69\x1f\x52\xde\x15\xa4\xc0\xf9\x71\xef\x87\xd2\x30\x37\x1c\xfe\xe5\x81\xed\xf4\xde\xbf\x11\x18\xff\x55\x8d\x51\xf4\x79\x28\xe0\xff\xbc\x17\x3e\x57\xe5\x57\xfb\x38\x07\x3c\x76\x09\xe0\xd7\xd5\xc0\x39\xf7\x5e\x02\xf8\xa7\x7d\xc0\x79\x9e\xbc\xac\x06\x4e\x3d\x23\x09\xc8\xf7\x12\x64\xba\x43\x39\x71\x9a\xcd\xa3\xb8\xd9\xcc\xbb\xfb\x11\x48\x7f\xd9\xd3\x24\xf9\xa2\xfc\xdf\x43\x39\x33\xeb\xa1\xb1\xf6\xb7\xba\x11\x58\x72\xe5\x22\x3e\xe3\x57\x23\x48\x7e\x55\x04\xca\x4d\x35\x4a\x95\x97\x13\x81\x39\xad\x69\x5e\x85\x13\x11\x81\x35\xab\xc6\x2a\xf9\x8c\x10\x08\xe5\x5d\x76\x0e\x41\x72\xe0\x20\x50\x6e\x6b\x9a\xe1\x97\xd2\xd0\x99\x57\xc3\xa6\xae\x02\x04\xe4\xa2\xae\xbe\xfc\x4a\x22\x07\x5c\xd6\x35\x69\x11\xf4\xae\xbe\x87\xa5\xd6\x0b\xeb\xf8\x7f\x67\x08\x2e\xa0\x57\x12\xb4\x30\x4b\x8d\xb9\x59\xaa\x76\xa4\x0d\x73\x96\xcd\x0c\x8b\xa1\xfd\xae\xd0\x6b\x68\x0d\x0d\x63\x1c\xc0\x40\x28\x58\xc2\x8a\x4f\x95\xa3\x96\x14\xd6\x99\x9c\xc9\xa7\x00\x4f\x2a\xc1\x33\xdb\x49\x01\xb9\xae\x82\x2c\xd8\x3c\x8a\x31\xa3\x5a\xf3\x90\x70\x16\x95\xa1\x46\x95\x6b\xdf\x62\x74\x54\xf4\x94\x41\xc4\x7b\x6c\x4d\xb0\xc6\x93\x1a\x62\xd9\x62\x23\x86\xed\x09\xd6\x44\x9a\xbf\xc8\xf6\x53\xd8\x99\x60\x2d\x7b\xca\x5e\x62\x97\x67\xf3\x8c\xb7\x97\xe7\xb8\x33\xc1\xda\xdb\xcb\x73\x01\xc1\x45\x75\xdc\x65\x50\x3c\xcd\x5f\xbc\x38\xbf\xc4\xde\x04\x6b\x2f\xce\x2f\x79\x06\xdf\xdb\xe0\xde\x04\x6b\x3c\xa9\x6d\xf5\xc5\x66\xa3\x2f\xf0\xe7\x34\xec\xf6\xb4\xe2\x08\x3c\x77\xc2\x1c\xe4\x4d\x38\xcb\x17\xd7\x32\xd7\x26\x09\x44\xcc\x4f\x1b\x4b\x75\x92\x0d\x61\x9e\x95\x6e\xba\xa6\x68\x8d\x66\xd9\x7d\xa4\xd1\xce\x05\x6d\x16\x49\x4c\xb6\x1f\x5f\xc7\x71\x34\xf7\x29\xb9\x5e\x04\xf3\x85\x2a\x70\x4d\x11\xc2\x94\x6e\xdc\x15\xdf\x63\x4d\x4b\x4f\xe6\xd2\x8f\x9e\xcc\x4a\x19\xa6\x09\xba\xbb\x18\x93\x71\xf1\xc5\x04\x75\xbb\xce\xc0\x3b\xc1\xfa\x14\xf3\x41\x79\x1e\xcd\xc8\x33\x5a\xaa\x85\x61\x34\x9b\xd3\x13\xdc\xf5\x5c\x7b\x00\x94\xd6\x75\xd0\xa6\x6d\xa0\x20\x79\xe3\xbf\xd1\xd7\x86\x6c\x18\x5c\x2c\x7c\x3c\x9a\x46\x21\x0d\xc2\x35\xd9\x4e\xb1\x6d\x39\x9d\xa7\xfa\xb4\x05\x65\x32\x4c\x7d\xdd\xea\x7a\xae\x63\x19\xa6\xd7\xed\xba\x1e\x8a\x4d\x9c\x4e\x1c\xf2\x17\xb7\x60\x0f\x0b\xf0\x27\x78\xca\x8b\xdb\x73\x3b\xae\x91\xde\xf8\xc8\x75\xb6\x30\x5b\x4f\xbb\x7c\x18\x37\x82\xb0\x91\x9c\x25\xe3\x78\x22\x8e\xf7\x25\xf6\x49\xef\xc8\xe4\xf3\xd2\x90\x46\x7a\x8c\xa6\x05\x1b\xf4\x4c\x95\x31\x64\x8d\xce\x88\x87\xc6\xe7\xb0\x44\x3d\x6d\x91\xf4\x9c\xa1\x34\x79\xe9\x1a\x18\xb2\x6b\x86\xf8\xfb\x54\xfc\x35\xc5\xdf\x96\xf8\xdb\xd6\x86\x32\x66\xf9\x4a\x40\x7a\x5f\x20\x7f\xb1\x94\x51\xae\x82\xcb\xdf\x56\x65\x5f\xae\x82\x73\xf2\x70\x66\x35\x9c\x9b\x87\x6b\x1d\xf8\xdd\x76\xcd\x77\xb7\xc5\xa1\x2b\x26\x93\x3c\xf6\x71\x4d\x69\x90\x12\x1b\x15\x79\xaa\xd5\xca\x93\x7b\x23\x9a\xfb\xad\x96\xbb\x0f\xae\x85\xd2\x47\x76\x4a\x0b\x27\xcf\x12\x5a\x24\xf0\x37\x35\x18\x6e\x01\x63\x7b\x30\xed\x7f\xd6\x40\xda\x05\xc8\x9e\xa6\x62\xe3\xdc\xaa\x64\x28\xe7\xc4\x3c\x89\xbe\x92\x44\x71\xb9\xda\x4f\xe5\x3f\x52\x2a\x45\x10\x54\x9e\xb6\xf2\x38\x3f\x4a\xd5\xa4\xfe\xcd\x65\xce\x3b\x44\xf5\xe7\xb0\x84\xfa\x2f\x75\x14\xb3\xb7\xbc\xa7\x15\xe5\xfd\xef\xf5\x33\x50\x57\xcc\x19\xb9\xf5\xd7\x4b\x5a\xd7\x8b\x55\xd7\x09\x2f\x2e\xcf\x1b\xa9\x31\x61\xe3\xfb\xa4\x0d\x17\x69\x0a\xb3\xa7\x18\x90\x7c\x5e\x8e\xd2\xc7\xcb\x33\x9d\xe2\xdd\xd3\x38\x9e\x20\xed\x58\xe3\x06\x48\xf0\xc5\xa2\xa6\xcf\x18\x32\xe8\x92\x96\xb0\xce\x79\x52\xc5\x74\x81\xa8\xd4\xaa\x73\xc5\xfd\xab\xca\xce\x6c\x80\xee\x18\x56\x02\x26\x63\x0a\x7d\xf8\x66\x93\x3d\x3d\xbf\x78\xb5\x13\x5d\x73\x20\xa9\x0f\x8d\xdd\x68\x28\x97\x83\x6b\x9e\xf9\x39\xb3\x7c\xe7\x2c\x53\x44\xcb\xb1\x8f\x00\x2f\xef\x69\xbd\xf6\x1a\x97\x00\x57\x85\xb1\xe3\xb1\xcf\xab\xe0\xcb\xdf\xe5\xe6\x09\x10\x4a\x5d\x49\xc8\x30\xb6\x4a\x52\x3b\x33\x45\x65\xfd\x32\x19\xab\x24\xc9\xa9\x2e\x9f\x8a\x26\xe3\xf2\x5a\xd9\x7b\x60\x9e\xa8\x89\xe3\x61\x7c\x8a\x35\x4b\x6b\x36\xe3\x13\xac\x0d\xb4\x3a\x68\x6c\x5b\x4f\xeb\x88\xc5\x79\x69\xc9\x32\x5a\x9d\xfe\x50\x1b\x69\xea\xd0\x5d\x5f\xda\xab\x85\xf2\x68\x5a\x49\x22\xc9\x84\xf5\x4c\x26\xf1\x8d\xcf\x7e\x2a\x93\xa4\x42\x08\x90\x2c\xa9\xdb\xca\xab\xe5\xe5\xcb\x1c\x4d\x3e\x46\x97\x67\xcb\x94\x52\x71\x61\x50\x73\x9e\x94\x0b\xda\x6d\x29\x97\xeb\x07\x21\x7b\xdf\x15\xe5\xf3\xcb\x97\x8d\x69\x34\x23\xd9\x84\xa2\xe4\x08\xf5\x77\xb3\x98\x9b\xd2\xa7\xb1\xa6\x15\x1b\xf1\xc5\xf9\xe5\xbe\x81\x5c\x3f\x82\x47\xdc\x8a\x86\xdb\x4e\xa2\xdb\x34\x0c\x72\x41\x44\x95\x6e\x34\xc3\x92\x50\x90\x3b\xbe\xfb\x3d\x93\xfa\x24\x9f\x17\x79\x36\x40\xb7\x6c\xbe\x5f\x71\x12\x4f\xb4\xdf\x9f\x0c\x57\xf8\x89\xa5\xfd\xfe\x24\x57\xad\x27\xda\x0a\xb2\x3d\x5b\x5b\xe5\xf3\xb5\x58\x1b\x4a\xc4\xb3\xfb\x89\xa6\xad\xbc\x5f\x9c\xbf\x9a\x08\x57\x8d\xe3\x7c\x0b\x6a\x77\x8c\xa4\x66\xdd\x69\xca\x55\xa4\xaa\x73\x5f\x9c\x5f\x36\x7e\xa2\xa2\x6b\x57\x06\x82\x50\xa8\xd2\x44\x5e\xb8\x13\xfd\x93\x66\x36\xcc\x5b\x53\xfb\x2e\xd6\xcc\x95\xb9\xcb\xbf\xba\x2a\x8c\x0b\xcd\x5c\x15\xda\xd5\xfc\x5d\x51\x67\xb9\x41\x0f\xfb\xb6\x59\xfd\xed\xc3\xeb\xcd\x79\x40\xd4\x5d\xcd\x1f\xe5\xa6\x50\x4e\x8d\x95\x3c\x7f\xc0\x9c\x99\x27\xb8\x6f\xca\x54\x7e\x6d\xb3\xd1\xbe\x83\xc9\x6e\xb3\xd1\x4c\x48\x9c\x29\x3c\x4a\x71\xd8\x03\xa6\xe6\xaa\xcf\x28\xbe\x5f\x44\x2b\x0e\x66\xae\x58\x18\xc6\x47\xf9\x01\x9b\x3d\x3d\xbf\x78\xb5\xd9\x1c\xb6\x1e\x17\x9b\xd0\xc8\x6c\xac\x72\x6f\xe5\x8b\xc2\x80\x23\x9b\x6b\x73\x5a\x32\x3c\x3f\x00\xdc\x7f\xa5\x58\x85\x2a\x26\xb3\x3a\x5c\x01\xa2\x40\x86\x96\xab\x77\x0a\xb0\x6b\xe1\x12\xfe\x5c\xc2\xdf\x99\x09\x54\x53\x51\x87\xdd\x97\x08\x7d\x8b\x55\xb3\x14\xcc\x2a\x2f\x50\xca\x9f\xde\xf1\x41\x76\x67\xf8\x27\x26\x16\xc6\x78\xba\xc7\x94\x25\xd3\x56\x05\xb9\x0b\xf6\xed\xe8\x3e\x24\xf1\x8b\x0a\xbb\xba\x64\xe5\x87\x1a\xfb\x44\xce\xbe\x72\x41\x96\xcb\xa8\x71\x1f\xc5\xcb\x99\x86\x48\xc1\xd4\x92\x72\x1d\x59\x8c\xa9\x88\xc4\xfd\x6b\x30\x03\x7f\x39\xb4\x10\xf9\x7b\x94\x06\xcc\xbc\x8d\x42\xfa\x2b\x8f\x8d\xad\xdd\x44\xcb\x59\x16\x0e\xbc\x80\x9e\x94\xd1\x73\xea\xca\x9d\x91\x19\x35\x10\x1b\x45\xd1\x66\x13\x1c\x61\x9c\x6c\xbf\xc8\x70\x27\x42\x09\x8e\x75\xc7\x33\x64\xa5\xe5\xf3\xb7\xaf\xb8\x6a\x92\x25\xb8\xba\xf0\xe7\x37\x2f\x2e\xde\xbd\x7a\xf9\xe6\x02\xf4\x92\xd9\x13\x7f\xf9\xfc\xd5\xcb\x37\x7f\x06\x45\x24\xa4\x84\x82\xf1\xcd\x2f\x17\xef\x2e\x2f\x70\x7f\x82\x35\x91\xce\x5e\xbc\xbc\x7c\xf9\xfc\xd5\x05\xb6\x3d\xfe\x8e\x3f\x6a\x5b\x3d\xda\x6c\xf4\x68\xa7\x80\x0c\xb9\xf8\xef\x57\xe9\x21\xe5\xb0\xd8\xe9\x9d\x13\xee\xac\xe9\x5d\x74\x9f\xfc\x9f\x35\x59\x93\x9d\x78\x2b\xde\xfc\x10\xfb\x77\x24\xb9\xfc\x10\x40\x10\x61\xab\xf8\xf2\x59\x18\xdc\xc1\x86\x0e\xa0\x0a\x5b\x90\x95\x9f\x06\x26\xe7\x6d\xfe\x53\x14\x2d\xe1\x5a\x55\xd2\x7e\x11\xdd\x49\xaf\x52\xae\x82\x1b\x3d\x18\xe3\x10\x3c\xcc\x04\x15\x51\x5a\xb3\xb0\x27\x5f\xfa\x19\x95\x66\xf5\x77\x56\xff\x77\xbc\x62\xca\x4b\x42\xe5\xb6\xe2\x03\xfc\x73\x42\xfd\x98\x0e\x09\x22\xe1\x6c\x48\xb3\x9b\x27\xca\x16\xca\x9c\x2c\xa8\xdb\xef\x3e\x08\x67\xd1\x7d\x5b\x6c\xff\x8b\x2f\x8b\x88\xaf\xa2\x68\xb5\xbb\x02\x64\x94\x7d\x82\xe7\xc1\xf2\x2c\xa1\x0a\x65\x1d\x50\xc2\xbd\x7b\x65\xf6\xfa\xe9\xe2\xa2\xe2\x00\xd3\x3c\xc1\x5d\xe3\xdb\x54\x82\xdb\x76\xd7\x71\x1f\xf0\x3a\x41\x74\x17\xc0\x5b\xea\x13\x51\x89\x8e\x41\x18\xb3\xaa\x9d\xa2\xf0\x0f\x11\xac\x26\x31\xb6\x26\x6d\xe8\xd3\x0c\x5d\x05\x41\xc2\x59\xee\x22\x85\x9d\x5d\xa4\xa8\x28\x10\xb7\xaa\x55\x53\x8b\xc5\xf7\x4e\x48\x4e\x03\x5f\x09\x65\x54\x8c\x5c\x06\x40\xc2\xd9\x29\xcd\x85\x0f\xac\x80\x49\xc5\xb4\xbd\x83\xbf\x7a\x7c\xa7\x4e\xde\xd8\xf0\x28\xdf\x93\x88\x95\x63\x08\x1a\x6a\x44\x5b\x44\xe9\xcc\xfc\xd8\x51\xc5\x2e\x4c\xfd\x35\xee\xcc\x8d\x65\x1f\xf9\x29\x4c\x61\xda\x97\x3e\x70\xce\xcd\x76\x49\x5c\x11\x7f\x1f\x7c\x4c\x27\x98\xf0\x63\x93\x03\xfd\xad\x83\x22\xec\x6f\x24\x9c\xfd\xad\x11\x24\x0d\x1a\x45\x8d\xa5\x1f\xcf\x49\xbb\xf1\x3a\x4a\x68\x63\x19\x7c\x20\xcb\x87\x86\xdf\xb8\xf1\x67\x8d\xf3\xcb\x77\xa0\x12\xab\xf0\xd0\x3e\x4a\x4e\x30\x1d\x25\xe9\x8d\x02\x1f\x27\x52\x48\x0a\x70\x5f\xb8\xac\x8e\x6b\xe1\x1b\x68\x91\xee\xe1\x16\xb2\xdf\x1e\x8c\x93\x96\x3a\xa2\x9e\xea\x43\x72\x33\xa7\x8e\x6a\x7c\x4a\x9a\xcd\xb2\x53\xe0\xbc\x37\xa6\xb2\xb4\xfc\x69\xd8\xb2\xb3\x91\x32\xad\x72\x3c\xb4\xc6\x25\xf3\xde\x54\xf8\xf8\x21\xf6\xe7\x20\x76\x18\x68\x06\xd7\x38\xd2\x3a\x96\x8b\xc0\x3a\x3e\x26\xe1\x38\x99\x64\xe9\x74\xec\xf1\x46\xbd\x95\xfa\x5c\x81\x02\x8e\xe9\xab\xc1\xf2\x4c\x76\x5b\xbb\x08\xb5\x63\xb2\x24\x7e\x42\xf4\x5b\x63\x9b\xd6\x7e\x8e\xad\xd1\xfc\x24\x18\xcd\xd3\x7e\xbe\xc3\xcb\xf1\x7c\x32\xb6\x26\xe8\x81\xa7\xec\x09\xba\xe1\x29\x07\xee\x6e\xdd\xc0\x9c\x3d\xc7\x18\x2f\x9a\x4d\xfd\x0e\xb7\x6c\x03\xdd\x1d\x61\x3c\x6d\x36\xf5\xe9\x91\xb4\x6d\x11\xad\xd9\x6c\xea\xb3\x66\x53\xcf\x5f\x80\x99\x41\xeb\x19\x68\x5d\x10\xcd\x60\x03\xcb\x46\x35\xa7\xaa\xa6\x66\x18\xc1\x2d\xa3\x77\xb4\x62\x34\x71\x5d\x9d\xfd\xe9\xef\xeb\x20\x26\xba\x61\xa0\xd5\x23\x0a\xc1\x4a\x71\x10\x59\xee\xd3\xee\xce\x58\x95\xaf\x78\x09\xdb\xce\xd6\xc7\x60\x46\x22\xcd\x40\x12\x40\x5a\xa9\x16\x67\x55\x2d\x77\x91\xe8\x1a\xdc\xd1\xdd\xa1\x73\x7c\x97\x7a\xa8\xbb\x67\x49\xbb\xcf\x7a\xe0\xbe\x19\x81\x94\xc7\xe4\x91\xcd\x46\xa2\xcb\x6f\x67\x80\x98\x6a\xa0\xf3\x93\x7e\xb3\xa9\x9f\x9b\xb8\x6f\x18\x88\x21\x66\xd2\x5f\xb3\x59\x81\x99\xf3\x1c\x05\x18\x20\x16\x56\x42\xdf\xf0\xeb\x1f\x00\x29\x24\x45\xce\x48\x97\xf8\x7a\x74\x8d\xcf\xd1\x39\xbe\x44\x76\xf3\xbe\xd9\xcc\x15\x65\x2b\xa0\xb9\xec\x58\x49\x7b\x01\xa3\xb7\x48\xbc\xd9\xd4\x9d\x6e\x0f\x63\x7c\xdd\x6c\xea\xd7\xd8\xee\x1a\xc8\xe9\x7a\x18\xe3\x73\x46\x1c\x5b\x86\x81\xae\x4f\x9c\xae\x57\x5d\xe0\x79\x6b\x1a\x2d\xa3\xb8\xa5\x99\xd7\xac\x7d\xea\x60\x53\xc0\x73\x38\x3f\x65\x9b\xf2\x1b\x63\x66\xe2\x27\x27\x8c\x29\x1a\x80\x82\x05\xe8\x7d\x30\x23\xad\xe9\xc2\x8f\xb5\xd3\x27\xe6\x83\xa9\x9d\x1c\x33\x98\x53\x2d\xf3\x50\xfd\x50\xd4\x71\x9e\x3a\xdd\x6e\x15\x2d\x7e\x6c\x51\x4d\x4d\xe8\xb6\x1e\x84\xee\xab\xa9\x0d\x67\x26\xd6\x9a\xfe\xdd\x6a\x54\xd0\x27\x9d\x88\x17\x4b\x5a\xcc\x3f\x15\xf9\xf3\x5d\x7e\xaa\x72\x99\x99\xf8\xe1\x04\x6b\x0d\xed\x4c\x6b\x86\x37\xc9\x6a\xa4\x0d\x1f\xb6\x53\x7c\xb7\xdd\x7e\xd3\xe1\x96\x8d\xf9\x9a\x89\x2e\x8f\xb1\x36\xb6\x71\xe5\xb2\x5b\xd8\xe9\xd5\x2c\xbb\xd2\x41\xcc\x5d\x40\xd9\xb8\x05\x51\x41\x43\x9f\x05\x3d\x49\x0d\xc5\xb3\x51\x49\xc8\x2e\xdf\x12\x07\x2a\x97\xa9\xe3\xda\x92\xe4\x01\x6e\xad\x24\x3d\x99\x80\xcd\x4a\x28\xaf\x1a\xfb\x51\x6a\x64\x8e\x9a\x0f\x8c\xad\x09\xdc\xca\x23\xcd\x66\x76\x75\x14\x02\xb2\x28\x97\xfc\x00\xd3\xca\x77\xd1\x2e\xe8\x2d\xc4\xc5\x4d\xc4\x73\x10\xea\x41\x85\xf7\x5d\xb8\x68\xaa\x47\x4a\x09\x67\xb3\x49\x4e\x2c\x83\x17\x29\x3c\x60\x41\xf6\x71\x8c\x31\x8e\xce\x98\x40\x3c\xb4\xd0\x12\x47\x4c\xcc\x38\xa3\xec\x51\x21\x5f\x8d\x42\x05\xb7\x70\xe2\x59\xd7\xa5\x4a\x86\x08\xf9\x68\x29\x36\xb7\x0b\x9c\xb4\x22\xee\xbf\xec\x31\x14\x54\xb1\x33\x41\xcc\x5b\x18\x06\x8a\x8e\x30\x4e\xd2\x7b\xaf\xc1\x1f\x56\xec\x04\x59\x68\x2a\x1f\x1d\x29\x98\x21\x4f\x32\x34\xa4\xbb\xc6\x6a\xfa\x0a\x73\xb1\xcc\xf5\x41\xd0\x6c\xea\x01\xb6\xd3\x4b\x68\x55\x97\x22\x67\xc1\xc7\xdd\xb5\xc8\x48\xa8\x5c\x16\x5c\xdd\x12\x48\xe7\x46\x0b\x3f\x7e\x4d\xfc\x64\x1d\xa7\x30\xa6\xb6\xfa\xa4\xa1\x14\x8f\x46\x2b\x4c\x1e\x8b\xb4\x24\xb7\x14\xd3\x3a\xac\xfb\x60\x46\x17\x45\x24\xc8\x92\x05\xb8\x12\xce\x53\x3d\x6e\x51\x43\x60\x66\x9a\xb0\x77\x84\x2d\xb2\x24\xc6\xfe\x1e\x5d\xd8\x6e\x67\x90\x4e\x77\xd7\xe4\x13\x25\xe1\x2c\xd9\x6c\x72\xbb\x68\xd8\x84\x62\xa1\x4a\x02\x7d\xa8\xe8\xb6\xb7\xb7\x9b\xcd\xe7\xeb\x6b\xe8\xc6\xeb\xeb\xe1\x78\xb2\x0d\xc2\x84\xfa\xe1\x94\x44\xb7\x8d\x67\x71\xec\x3f\x34\x9b\xe5\x4b\x34\x19\x38\xa6\xdb\xdc\x57\xb2\x89\x0b\xa6\x87\x46\x10\x36\xa8\x41\xdb\x0b\x3f\x79\x7b\x1f\x66\x7a\xab\xd8\x80\x58\x52\xf1\x04\xd3\x71\x3c\x31\xb6\x92\xd3\x1d\xa8\x62\x4e\xc3\x27\x34\x19\xd3\x28\x4c\x68\xbc\x9e\xd2\x28\xc6\x74\x4b\x00\x0c\xd1\x1d\xfb\x61\xa1\x84\x89\xcf\x44\x25\x39\x0f\xe9\xb1\x31\xd4\x83\x1c\x58\xbc\x4b\xa3\x90\xdc\x37\x02\x63\xcb\x5a\xfc\x2b\x94\x6c\xb6\x65\xa0\x10\xc7\xfa\x00\x26\x17\xdd\x36\xd0\x12\xc7\xba\x63\xb3\xbd\xcd\x25\x5c\x0d\x6c\xdf\xc6\xd1\xdd\xb9\x58\xdc\x75\xdb\xb3\x0c\x34\xcd\xbb\xeb\x59\x20\x6d\xae\x29\x34\x75\x15\xe6\x85\xbf\xbe\x7d\xc7\x15\x78\x2c\xc1\xb3\x32\xdd\x1d\xa8\xed\x24\x55\xdb\xba\xca\xf1\x22\xb7\x7e\x4c\xd2\xe9\x93\xb4\xa7\xfe\x72\xc9\x55\x1b\x3c\x6e\x5c\xda\x3d\x61\xc1\xf0\x2f\x6c\x5f\xdf\x80\xfe\x05\xc7\x2c\x9d\x5f\x34\x71\xc0\x72\x72\x5c\x8e\x13\x96\x11\x84\x41\x76\x99\x38\xd1\x0d\x14\x66\x71\x08\xd8\xdb\xbb\x68\x46\xb8\x0a\x6c\xd9\xce\xe6\x8f\xd7\x2c\x53\xa7\x00\xb0\xf4\x13\x1e\x09\xe0\x45\x74\x1f\xbe\x0f\xee\x08\xb6\x58\xb6\x3f\xa5\xc1\x47\x52\xc0\xc0\x51\x7a\x58\x19\xa6\x0a\xb3\x40\xa7\x88\x14\x98\xa5\x54\x1e\x2c\x0d\x14\xa8\x3a\x1f\x4e\xbc\xa2\xef\xe3\xe0\x2e\x85\x2f\x78\xd2\xc9\x94\x72\xd7\x51\xc8\x80\xc0\xd6\x94\x63\x42\x60\x86\xd7\xd1\x47\xb2\x17\xf1\x75\x0a\x59\xc6\x66\xd5\x3d\x0c\x3b\x33\x3d\xcf\x61\xff\xbc\x3a\x0c\x97\x5b\xba\x6f\x0b\x2d\x24\xa2\x0f\x49\x6a\x7b\x70\x03\x94\xb5\x78\x76\xba\xcd\x5b\xa9\x1d\xdd\xde\xea\x1a\x8d\x83\x3b\x0d\x55\xb5\x5e\xce\x73\x50\x59\x28\x29\x5d\x39\x87\x3a\xcc\xa2\xfb\x50\xab\x6a\x12\xa3\x58\x66\xce\x52\xf2\x49\x43\x5a\xb8\xf0\x8b\xca\x26\xdf\x85\x7f\x74\xc1\xb2\x68\x04\x8a\x93\x20\x31\x90\x84\x72\xbb\xdc\xbc\x5b\x54\x31\x33\xe5\xa6\x31\x6d\xe1\x27\x19\x8a\x86\x3e\xcf\x09\x1d\x2a\x39\x5a\x0c\x34\x7e\x26\x94\x61\x5c\x16\xf4\x86\x2a\x88\x8b\x70\x96\xba\x75\xd1\x8f\xc8\x66\x73\x44\x0d\x11\x21\x90\x6d\xc0\xb9\x67\xd6\xb1\xcd\x1f\xec\x09\x13\x74\xc3\xf5\x1d\x89\x59\x67\x0c\x8f\xc0\xf3\xd9\x6d\x30\x5f\xa7\xcf\x5b\xe3\x90\x3a\x65\xe2\xc7\x7b\xf2\x89\x7e\xab\x4a\x31\xb9\x92\xd7\x87\x57\x4f\xd3\x46\x3b\xd1\x16\xf3\xea\x70\x19\x0b\xd4\x88\x01\x1e\x4f\x46\x41\xe1\x8c\x2c\xf6\xc3\x64\xe9\xa7\xea\xe8\x57\x41\x48\xde\x47\x7c\xd2\xd7\x0b\xbc\x37\x27\x14\x3c\x0d\x1b\xe8\xc8\x42\x10\x7c\x2c\x36\x8c\x4c\xc5\x14\xc1\x07\x4d\x7b\x14\x9d\x70\xc9\xd9\x06\x9f\x04\xe2\xf6\xbd\x44\x28\x62\x2b\xcd\xfe\x02\x24\xe8\xc8\x32\x46\x49\x3b\x48\x7e\x8d\x99\xe8\x36\x3b\x0b\xc6\x3b\xd7\xba\x13\x13\xfb\x43\x51\x19\x1f\xb6\xaf\xf9\x3e\xac\xfa\x34\xbc\x3c\xf8\xeb\x4c\x98\x85\x9d\xc3\x81\x85\xc8\x3c\x5f\xdc\xf9\x2b\x5d\x79\x31\x4d\x5c\x94\xd7\xa7\x08\xee\xc8\x19\xed\xbf\x47\x41\xa8\x87\xed\x20\x79\x7d\xf9\x2b\x68\xf1\x93\x33\xed\x2a\xbe\x0a\xb5\xa1\x76\x15\x6a\x07\xf0\x62\x7e\x9c\x16\x47\x9f\x3c\x91\x70\x3e\xaa\x98\x02\xf9\x1c\xf6\xba\x3c\x15\x24\x29\x40\xaa\x7e\x2e\xcd\x0d\x75\x8d\x58\x27\x3b\x73\xb7\x61\x96\x81\x4a\xd2\x34\x6c\x93\x73\x9c\xa5\x69\x4c\x4a\x41\x21\x0e\x90\x8f\xad\x91\xbf\x8b\x9a\xe5\xa7\x2c\xb6\xc4\x64\xec\x4f\x46\x91\x89\x97\x63\x7b\x82\x18\xad\xe5\xd8\x99\xb0\x0f\x9c\x62\xbf\xd9\x4c\x5a\x2d\x14\x40\x2a\x6c\xb5\x0c\xe1\x30\x21\xdc\x6c\x32\x4a\xdc\x63\x13\xdf\x98\x44\xed\x84\xf8\xf1\x74\xa1\x1f\x5f\x25\xe6\x77\xc7\x3b\xef\x31\xd3\x66\x53\x5f\xec\x36\x7b\x0b\xb6\xe9\x40\x8b\x13\x9c\x64\x83\x6f\xbb\x13\xf1\x33\xaf\x0a\x6c\xeb\x53\x6c\x30\x59\x55\x9f\x77\x23\x35\xfa\x46\x47\x59\x8a\x23\xf8\xdd\x89\x82\xb1\x35\x98\x98\x12\x24\xaf\x82\x70\xfd\xa9\xd9\x24\xa9\x45\x65\x7e\x12\xcb\x3c\x7d\xc0\x2b\xae\x4b\x08\xc9\x7d\xb2\x9b\xb9\x65\x9c\x32\xaf\x48\x75\x2f\x9d\xf3\x55\x1e\x7e\x94\x55\x17\x5c\x37\xb1\x6f\xfe\x04\xcd\x45\xdd\x0c\xba\x95\x16\x3a\xf6\xee\xd9\x72\x59\x35\x76\x02\xb1\x52\x3d\x5b\x2e\x9f\x81\xf0\x96\xd9\xfd\x56\x0d\x0f\x2e\x56\x29\x16\x4e\x4e\x50\x48\x5d\xd9\x21\x4b\x15\x99\x39\xe1\x02\x24\x1f\x64\xe7\x51\x14\xcf\x54\x1e\xbc\xe0\x5c\x82\xbf\xd5\x89\x42\x1a\x10\x59\x39\xf9\x56\xb9\x5d\x57\x28\x2a\x60\x32\x4e\x59\x67\x6c\x4d\x5a\x2d\x04\x53\x3d\xff\x63\x4a\xa7\x1f\x3c\xf4\x53\x45\x2d\x40\x20\x11\xb6\xc6\x77\xd1\x3a\xa4\xf5\x55\x49\x6f\xc0\xbd\x8f\xd2\x3d\xb5\xaa\x6e\x06\x1b\xfc\xd2\x79\x16\x2b\xfb\x53\xa9\xd6\x62\x97\x9c\x55\xe8\x14\xf3\xc0\x3c\xf1\x99\x35\xd4\xe9\x29\x98\x65\xb6\x30\x13\xa8\x76\x23\x3e\xd3\xfb\x50\xd4\xea\x5a\x06\x62\xff\x75\x7a\x8c\xbb\x96\x71\x0c\xef\xfc\x9b\x44\xa7\x86\x09\x69\x08\x67\xa1\xdb\x9d\xa7\xd4\x90\x39\x22\x9b\x64\x0b\xd5\xb6\xc0\x8f\xcc\xcd\x9a\xd2\x28\x64\xf2\x09\x44\xba\x27\x21\x7d\xc1\x55\x97\xd9\x44\x3d\x8b\xfd\x79\xa1\xed\x32\xfb\x57\xd1\xba\xe7\xcb\x60\xfa\xe1\x9c\xbd\xd2\x09\xb8\x40\x58\x04\xb7\xf4\xcf\xe4\x41\x1c\x13\x45\xe1\x25\xcb\x00\x28\x9d\x88\xc8\x40\xbc\x81\x32\xc4\x1d\x28\x78\xdc\xc9\x60\x9d\x3a\xd8\x17\xd1\xfa\x26\x07\xeb\x2a\x60\xd3\x4d\x3e\xb0\xfd\x6a\x07\x2c\x6a\xe0\xcf\x66\xfb\x17\xa0\x23\x4b\x6a\x52\x25\x5e\xed\xb6\xa8\x20\x22\x17\x4d\x6f\x2a\x04\x66\xb6\x3a\x6a\x55\x5b\x23\xa5\xe4\x7d\x10\xd9\xf5\x4a\x53\xef\x79\xe4\xee\x7e\x19\x52\x12\x7f\xf4\x97\x6c\x03\x19\xe3\x84\xd0\x34\x43\x31\xbb\x93\x3c\x22\x9b\x4d\xba\x96\x3c\x19\xab\x17\x7c\xc5\xec\x5c\x5d\xab\xea\x9d\xcf\xd7\xb6\x57\x35\xe5\x9a\x26\x03\xd9\x26\x6b\x96\xda\x06\xdc\xd7\xbe\x6c\xf1\x91\x46\xee\x6e\xe4\x54\xce\xe8\x49\x61\x0d\xca\x4e\xb0\x4b\x2f\x2f\xc2\xd4\xc7\x92\x6a\x66\xd7\x89\x62\xd6\xc8\x0d\xc5\x03\x3f\xfe\x8a\xfb\xfc\xb3\xd0\x9e\x25\x2c\x35\x69\xad\xd5\x47\x54\x7f\xa6\xbe\x22\x35\x88\x75\x8d\x03\x6b\xbf\x95\x4d\x21\x79\x19\xbe\x92\x1e\x13\xee\xc7\x35\xaf\xad\xc9\x04\xe4\xc2\x5a\x10\xd3\x94\x9b\x3e\x37\xb3\x55\xba\xff\xac\xa8\xfe\x68\x57\x4b\x75\xf3\xfe\xfa\xf6\xdd\x8b\x6c\x02\x67\xaf\x7e\x8d\xe2\xd9\x33\xaa\xab\x16\x8e\xdc\xa4\xf9\x87\x97\xe3\xd5\xcb\x37\x17\x85\x72\x30\x49\xfe\x99\xd8\x32\x95\x8b\x22\x2f\x35\x8a\xf2\xe8\x21\xb9\x6f\xbc\xf0\x29\x31\x58\xbf\xb1\x51\xa5\x1b\x23\x9d\x8a\x73\x15\x49\x27\x76\xda\xb1\x2c\xae\xb5\x6b\x5f\xcf\x02\xae\xc4\xfd\x21\x8e\xee\x5e\xa5\x80\xd9\xe5\x76\x62\x9c\xda\x96\x91\xd5\x67\xb7\xbc\xb0\xfd\x44\x05\xf5\xec\xbe\xef\xb2\x4c\x0e\x8f\x49\x7b\xe5\xcf\xc9\x5f\x10\xff\xfb\x5b\x6a\x91\xb3\xa3\x6b\x9a\xa5\xfa\xd7\x96\x4f\xe5\x93\x24\x13\x1e\x76\x92\x82\xba\x34\x4c\xb4\x12\xe5\x31\xd0\x5e\x60\x3b\x05\xfe\xad\x4a\xcc\x60\xb3\x6e\x25\xaf\xc8\xe3\xee\x4c\x3d\x7e\x2e\xc2\xd9\x2e\xe2\xb8\xe2\x9d\x3d\xe1\x3a\x86\x9d\x95\xd8\x63\xe7\xbb\x9a\x29\x08\x0b\xee\x3c\xab\xf9\xfc\x49\xed\xac\x50\x8d\x69\x4d\xb0\x35\xac\x7b\xab\x10\x8f\x87\xf5\x45\x65\x03\x3a\x9d\x63\x38\xb5\xf7\x51\x3a\xa6\x2b\x3e\x54\x29\xda\x15\x9b\x4c\x12\x9b\x77\xed\x56\xc6\x3c\xb5\x6a\xeb\xac\xa8\x55\x2b\x0d\x0d\x5d\x26\x75\x62\xd5\xcc\xd3\xd0\x80\x15\x73\x7c\xa1\x67\x6e\xf2\x06\x8f\x45\x77\xed\xfb\xe6\x76\x4e\xa7\x62\x66\xe7\x65\x00\x17\xef\xa0\x56\xa8\x9e\xe0\x39\xa4\x69\x6e\x99\x14\xca\xca\x8d\x2b\x47\xc1\xd8\x62\x44\x84\x12\xad\xba\x48\x62\xb6\xca\x09\xa6\xe5\x69\x22\x6b\x4a\x59\xa8\x2a\x37\xb3\x6c\xeb\x26\x9c\xb2\x04\xc9\x4a\x92\x64\x38\x0a\x3a\xb2\xbf\xa0\xff\xf1\x58\xd9\xfb\x52\x8c\x2c\xb6\x83\x2b\x9b\xc4\xb1\xdd\xd4\xa4\x72\xbc\xe0\xb1\x1c\x69\x8b\x51\x99\x94\xb6\xc8\x15\x53\xd5\xcf\x2b\x85\x5c\x53\xad\x96\x2a\x11\x99\x46\xe1\x47\x12\xd3\x5f\xc4\x75\xd6\xf3\x68\xf9\x3e\xca\xbc\xba\x80\x07\x3a\x85\x8d\x82\x60\x43\x36\xb7\x05\xd8\x1a\xb1\xc4\x29\x0e\x20\xec\xab\xc5\x23\x6f\x72\x89\x21\x6e\xb5\x46\x3b\xd7\xb9\xe5\x3d\x2d\x1f\xdd\x95\xb3\xac\xa4\x43\x8d\x0f\xd0\x3f\xf2\xce\x4d\x8d\x26\xf7\x57\x8e\x1f\x12\x45\x38\x40\x09\x44\xeb\x6b\x45\x28\xc4\x16\xe8\xcc\x82\x5b\x9d\x7b\x38\x89\x53\xf7\x09\x91\x21\x4c\x34\xa2\x53\xab\xd9\x2c\xbf\x6c\xd9\xc6\xc8\x88\x5a\x2d\x1e\x9c\x2c\x38\x89\x33\xd5\x4f\x09\x32\x30\x19\x64\x60\x9a\xdb\xcc\xb2\x6b\x09\x1f\x47\x0b\xf8\x03\x04\x40\x86\x1b\x2f\x79\x3b\xea\xa1\x69\xa2\x65\xab\x65\x20\xd8\x49\x8e\x17\x22\xdb\x37\x4d\xb4\x30\x4d\x83\x17\x48\xd8\x3a\x06\x09\xab\x22\x6b\xdc\x4b\xb2\xf2\x63\x9f\x46\xb1\x5e\x28\xa5\x31\x32\x04\xf5\x96\x5d\xa6\x1f\xb5\x5a\x2c\x21\xea\x60\xda\xb9\x5a\x1c\x42\x9e\x55\xcd\x18\x19\xa2\x94\xa6\x5d\x2a\x27\x0a\x78\x42\xa8\xfc\x84\x3e\x2a\x32\x93\x56\x88\xf8\x67\x86\x3b\xb3\x90\x56\x64\x86\xa6\x6f\xca\x81\x21\xa3\x65\x52\x3e\xb7\x2a\xc8\x80\x75\x32\x9e\x58\x51\x32\xb7\xfc\x4a\xc1\x7c\x4c\x85\x59\x35\xe3\xbb\x8a\xe5\x3b\xbf\x53\x48\x95\x7c\xca\x32\xa5\xab\xd8\x57\x94\x2a\x37\xfb\xf0\x37\x7e\xbc\x5b\x40\x7f\xf1\x97\x6b\x92\xbc\xe3\x66\x85\x33\xdd\x38\x13\x85\x1f\x8a\xbf\x66\x5a\x3a\x5e\x9b\x52\x19\x15\xbd\xa9\x90\xc3\xb4\x86\x6e\x8c\x27\x9f\xb7\x4f\xae\x34\x2d\x73\x11\x4e\x8c\x53\x6c\x29\xab\xcc\x45\xe0\x03\x77\x5b\x6c\xf6\x23\x87\x34\xb2\xcc\x05\x5b\x44\xb7\xba\xdf\x86\xf5\xfd\xe2\x2e\xa0\x94\xc4\xc6\x88\xe6\xce\x92\x79\x58\x70\xbc\xfe\x36\x4e\x72\x1f\x79\x83\x45\x3a\xe4\x53\xdc\xec\xd8\x73\x14\x51\x6a\xb9\x9d\xa2\x57\xde\x03\x42\x76\xf5\xa6\x55\xbd\xe3\xad\x3a\x77\x24\xf9\x33\x3a\x85\xca\x58\x3e\xa9\xcb\x5f\x58\x93\x4a\x71\x36\xb6\x50\x6a\xc1\x94\x2f\x79\x59\x7f\x2e\x76\xbb\x90\x59\xcf\xf2\x65\x4a\x43\x05\xa1\x2f\x3d\xa0\xac\xa9\xfc\x45\x38\x7b\x74\xd5\x0f\x50\x1c\x83\xb5\xbb\x4a\x86\x68\xd9\xe5\x56\x83\x9a\x9d\x1d\x49\x0d\x20\x64\xac\xda\x56\x1b\x2b\x48\x31\x51\xaf\x92\x41\x54\xac\x03\x7b\x98\x4a\x8c\x72\x8f\x72\x01\x30\x15\x0f\xe5\x0d\xc7\x78\xa7\x2d\xfe\xba\xb2\x71\x69\xd4\x50\xe4\xca\xe5\x65\xfc\xc2\xd5\x56\xfb\x18\xa4\x10\xa8\xa9\xb2\x69\xd5\x1a\xd4\x52\xa9\xd3\x53\xea\x44\x3e\x6e\x6f\xb0\x89\xfa\x94\x82\xa4\x9c\x3b\x92\x6e\x36\x99\x70\x70\xca\x9a\xa1\x68\x82\xa7\x38\x2b\xc9\xf3\xa0\x5a\x79\x24\xb5\x7d\x0b\x13\x45\x73\x49\xe0\xbc\x09\xab\x80\x55\xb0\x27\xd6\x99\xae\x9c\x00\xd1\x91\x65\x0c\x55\xa5\x51\xce\x03\x40\xa9\xb2\xf4\x6c\x37\x75\x64\x1b\x99\x25\x5d\xd1\x9e\x08\x07\xff\xad\x2b\x40\x76\x6a\xcb\x6f\x83\x66\xea\xf3\xf2\x8a\x90\xfa\x90\x49\x6d\x26\x85\xae\x25\xc9\xbc\xc9\x60\x71\xf2\x94\x37\xac\x12\xe6\xb2\xe2\x06\xee\xbb\xe8\x9e\xdf\x2a\x4d\xd5\x95\x4b\x3f\xa1\xef\xc8\x34\x8a\x67\x64\x26\xe4\xe3\x82\x3a\x33\xff\x3e\x95\x8b\x8b\x14\xb2\x19\x27\x0a\x75\x8d\x97\x25\x3d\xa4\x2c\xb8\xba\xc9\x5f\x88\x53\x60\xc6\x24\x09\xfe\x41\x0e\xc4\x2c\xb5\x84\x42\xeb\x5f\x28\x48\x14\x72\x62\x05\x42\xb9\x18\x64\xf2\x6c\x1c\x49\x7e\x7a\xb6\xc8\x52\x2e\xc1\x8a\xc3\xd6\x54\x3b\x23\x9f\x84\x9d\x5a\x85\x21\x2e\x03\xa4\x77\x55\xca\xdd\x35\x22\x29\x2b\x4b\x1d\x59\x41\x49\xdd\x50\xc2\x50\x35\x08\x49\x3d\x36\xb7\x34\x2d\xf6\x52\xe1\x14\xe1\x51\x84\x38\xff\x0b\x98\x6a\x8e\x4a\x2b\x5f\x58\xc3\x46\x3a\xd9\x6c\x68\xa6\x86\xac\xe1\x47\x19\xb7\xae\x0d\x16\xb5\xc5\x7e\x2a\x13\x53\x35\x89\xc2\xfc\x59\xa6\x5e\xf7\x7d\xa3\x3c\x84\x1f\x51\xba\xaa\xa1\x0b\x05\x2d\x87\xc8\x2b\x70\xb3\x24\x28\x56\x91\x92\x7a\x84\xdf\xca\x13\xde\x23\xe4\x1e\x29\xcc\x20\xd5\x98\x65\x45\xc5\xf0\x4b\x18\xe3\xac\x48\x64\xf8\xc8\x11\x55\xb6\x04\x18\xe5\xc6\x65\x51\xaf\xf2\x54\x3d\x22\xd5\x7d\x9b\xba\x6e\x39\xc2\x38\x1b\xb2\x95\x40\xb8\x1c\x2a\x26\x9d\xa8\x14\x9b\xbf\xdc\x79\x77\x3d\xd1\x63\x65\x71\x8d\x96\xa2\x66\xa3\x12\x37\xe7\x34\x61\xe8\xa8\x1c\x92\x3e\x0a\x7f\x5d\x10\x52\x2c\x9a\x88\xac\x07\x9e\x93\xa9\xff\x5b\x5a\x56\x7b\x24\x72\x84\xb6\x16\x10\x61\x82\x6e\xbf\x78\xfb\xfa\xfa\xc5\xc5\xab\xf7\xcf\xae\xb9\xae\x59\xdd\x39\xc3\x03\xf0\x7f\x7a\xf6\xa7\x8b\xdd\x8d\xe0\x32\x05\xc5\x00\xae\x58\x3b\x76\xde\x76\xb2\x7a\x3c\xa5\x48\xb6\x0b\xd8\x4a\x52\x54\xb4\x9e\x2e\xf8\xce\x4a\xda\xba\x32\x5e\x86\xf7\xbf\x61\xd2\xa6\x2c\x01\xc1\x7a\xf8\x21\x82\x92\x50\xdd\x09\xc2\x8e\x5a\x4b\xa6\x36\xda\xff\x41\x04\xe1\x0f\xf7\xb2\xa3\x89\x55\xf5\xde\x09\x49\xe9\xa0\xdc\x2b\x1e\xe5\x5d\x6f\xe4\xa3\x96\x9c\xed\x4c\xf3\x8e\xaf\xe2\xb3\xab\xf0\x78\x8e\xb4\xab\x58\x33\x86\x64\x17\x41\x3f\xca\x42\x53\xc0\x4c\x98\xf9\x78\xd5\x6e\x83\x4f\x64\xa6\x21\x5a\xb8\x38\xa1\x39\x16\x4c\xcb\xc5\x79\xb3\x94\x0b\x17\x33\xd8\x6e\x39\x20\x21\xfd\x4b\xcb\xb6\xc4\x5c\x9e\xbf\xec\x21\xde\xfe\x26\xbd\xfd\x07\xd7\x6a\x6a\xb6\x65\x59\x2c\xf7\x36\x9a\xae\x13\xbd\x4a\x7e\x90\x8a\xcd\x77\xd7\x85\x32\x17\xb2\x44\x89\x0b\x79\x50\xde\x42\x0e\x2b\x62\x21\x43\x94\x8a\xef\x43\x3a\xc6\xa3\xfd\x7f\x80\x1e\x86\xac\xfc\x18\xc2\x0d\xfd\x10\xc5\xef\x53\x61\x33\x40\xb4\x3d\x8d\x56\x0f\x72\x14\xd5\xd4\xad\xf9\x0d\x1b\x4d\x24\x06\x73\xca\x97\x17\x67\xc2\x22\x6e\xba\x0c\x56\x37\x91\x1f\xcf\x5e\xf8\xd4\x6f\x27\x84\xb2\xbf\xba\xc6\x2d\x73\xe3\x92\xc5\xda\x90\x54\xc1\x53\xf2\x89\x1e\xaf\x96\x7e\x10\xca\x58\xaa\x51\xc9\x2a\xe2\x27\x94\xa8\x8a\x0b\xb1\x5c\x68\xb4\x62\xed\xe1\xcf\x7d\xde\x45\xc2\x78\x37\x83\xdb\x39\xc0\x8e\x71\xa0\xc7\xa8\x58\x3f\x61\x2e\x6a\xec\xe2\xfe\x41\x58\x5b\x08\x44\xe5\xb3\xf5\x1a\x9a\x14\x3c\x3d\x09\xf3\x39\x28\x0d\xf7\x8e\xd6\x9e\xfa\xe1\x94\x2c\x75\x62\x6c\x47\x07\x35\x5b\xb3\x19\xeb\xca\xe6\x9c\x17\x9a\xd3\x90\xda\x8f\x21\x96\x9b\x74\xae\x68\x52\x7e\x28\x70\x17\x7d\x84\x6e\x67\xb2\xc0\xcf\xe1\x8c\xc4\xfc\x94\x19\x2e\x10\xe3\x08\xd1\x76\xcc\x78\x12\x4e\x9d\xab\xb8\x80\x8f\x52\x44\x45\xfd\x4b\x3d\x05\x91\x64\xd8\x33\x4c\x9b\xff\x7b\x35\xe9\xdf\xf5\x6a\x52\xcd\x8d\x9f\x34\x12\x61\xf5\x6d\x9f\x20\x17\x5d\x9a\xa2\xa0\x7d\xcd\x9d\x59\xa4\xbb\xd3\x18\x05\xa5\xbb\x35\x07\x18\xf4\xc3\x04\x59\xaf\x23\xbb\x06\x98\x3f\xe4\xfa\x00\x9f\x7b\xf7\x7c\x8e\x03\x3d\xce\x44\xfc\x4e\x6c\xbe\xeb\x6c\xe3\x04\x8c\x68\x2e\x71\x8e\x38\x8b\x84\xf4\xaa\xa7\xaa\x8e\x12\xdc\x9e\xc8\x90\xc2\xd7\x90\x0a\x53\x5a\x4f\x7d\x11\x24\x41\xab\x03\x67\x0b\x8f\x66\xd5\x82\xc0\x6a\xa5\xb5\x06\x83\xc1\x80\xdc\x55\x40\xe6\x83\x54\x6a\xbf\x56\x91\x23\x34\x8b\x56\xa0\x6b\x7e\x1c\xf8\xe9\xdd\x7d\xa4\xd1\x78\x4d\xb2\x8a\x15\x18\x4d\x71\x87\xb5\x48\x77\xcf\x56\x9f\x14\x5a\x9d\x6d\xf3\xa5\xf3\xe5\xf4\x75\x85\xa6\xae\x5c\x8f\x39\xa1\xcf\x99\xa0\x1e\x84\xf3\x73\x10\x2a\xde\xc1\x4c\x38\xe2\xa2\x32\xb0\x6f\xb3\xc9\x1f\x16\x62\x2f\xa2\xe7\x58\x1b\xe7\xa0\xf2\x2c\x88\x77\x08\x99\x8d\x3a\x47\x10\xe0\xa8\x00\x5d\x54\x04\xf0\xb5\x09\x5c\xea\x06\xff\x20\xd3\x85\x1f\xce\xc9\x4c\x03\xff\x4a\x74\xab\xc7\xba\x6d\x48\xe7\x22\xe7\x39\x2d\x52\xf4\xbf\xb3\xf8\xff\xc0\x59\x3c\xbb\x83\x5f\x39\x87\xc7\xed\x6b\x9f\xb5\x2e\x5c\xab\x84\x76\x06\xcf\x72\xe0\x22\x31\xa6\x5c\xc6\xb4\xd8\xf3\x32\xd5\x0a\xc6\x8f\x9f\xd4\xef\xfc\x4f\x5c\x25\xb0\x67\xa6\x85\x92\x64\x67\xa3\x49\x1e\xb2\x10\xe1\x75\x57\x56\x62\x20\x1e\xeb\x3b\x3b\x06\x16\xaa\x52\x61\x00\x93\x86\x7c\x4d\x4d\x71\xe0\x0b\xe2\x48\x65\x4e\xe8\xf9\xc3\x74\x19\x4c\xf9\xc1\x7e\x6c\xa4\xfe\x71\x78\x83\xe4\x02\x57\x64\x0d\xf1\x87\x2c\x3a\xcb\x43\x9a\xa2\xaa\x11\x82\x5b\x9d\x9c\xe6\x41\x0c\x29\x74\xbd\x88\xd6\x7e\x42\x20\x62\x7b\xa1\xde\x93\xa2\x8b\x21\xd1\xa7\xe4\x0f\xa9\xd6\x6d\x14\x5f\xf8\x53\x45\xbd\x72\x0b\x9f\x34\xc8\xf2\xe6\x21\xe9\x3d\x21\x30\x11\x09\x4e\x62\x30\x0f\xa1\x3a\x38\xb8\x84\xc8\xff\xb0\x03\x7f\xc4\x22\x3c\x27\xb4\xf2\x90\xa3\x8e\x13\x88\x31\x91\x2e\x66\x2a\xdd\xe6\xd5\xd3\xc0\xa5\x6b\x19\xab\x75\xe9\x3a\xd2\x5e\x22\x85\x7e\x9e\x64\x9e\x0d\xb3\x18\xe3\xf0\x98\x0d\xae\x33\xdd\x34\x25\x96\x2d\x03\x65\x2b\x4d\x9e\xad\x8d\xfc\x12\xc1\xef\xbe\xda\xa9\x52\x4e\x7c\xad\x6c\x9a\xb9\x2a\xba\xdf\x3b\xb4\x69\xf3\x24\x5b\xad\x96\x2d\xb5\xf4\x6a\x19\x4c\x49\xa5\x05\x11\x84\xa1\x77\x46\x81\x1c\xda\x99\xf1\x4a\x3c\x0e\x5a\x4e\x3e\xb4\x73\x30\x11\x77\xce\x18\x85\x08\x93\x51\x74\x52\x28\x00\x85\xfb\x93\x7b\x0b\x1d\x19\x07\x4c\x1f\x91\x49\xb3\x09\x44\x90\xc7\x74\x1b\xdc\xea\x71\xb3\xb9\xb3\xc7\xe3\x05\x29\x40\xd9\xa3\xe8\x94\x15\xad\xd5\x3a\xa0\x24\xbb\xe0\xc1\x87\x14\xc9\x98\xe4\x6e\xf8\x59\xa3\x28\x33\xce\x39\xac\xde\xc4\x64\x35\x8f\xc7\xd1\x64\x67\x6f\x2a\xb8\x21\x73\xa9\x58\xe4\xae\xe2\x85\xd0\x12\x6c\xab\x08\x3b\x2a\xf3\xa1\x89\x93\x22\x83\x17\xe1\x65\x1e\x4d\x8c\xbc\x23\x65\xf1\x35\x1c\x67\x41\xd8\x0b\x9c\xc5\x50\x64\x5d\x5d\x71\x2e\xcd\x39\x29\x4c\x43\x34\xcb\x85\x2c\x8e\xc2\x56\xfa\x9c\x2f\x18\x29\xdf\x77\x5b\x04\xb7\xa9\xb4\x9a\x48\x3b\x69\x70\x5b\x43\x4f\xb0\x65\xf0\xe9\xfd\xc4\xda\x6c\x32\x57\x82\xa2\x1c\x52\x4c\x6f\x28\x51\x23\x65\xf5\x46\xb4\xa6\x8d\xe8\xb6\x11\x33\xa9\x4e\xe3\x2e\x78\xcc\xf8\xc4\x92\xf1\xce\xfd\x30\x8c\x68\x03\x4a\xd4\x10\x2e\x88\x12\x70\x2e\x1f\x40\x64\xf0\x87\x28\x9c\x35\xc0\x62\xa7\x61\x71\x42\xf1\xa9\x95\xf1\x2d\x67\x56\x6b\xc7\xac\x09\xa1\x8c\x4d\x4c\x71\xee\x38\xe7\x8f\x46\x7a\xde\x49\x4c\x6a\xc6\xad\xc2\xba\x14\xdc\xea\xc1\xa9\x65\xec\x62\x38\xa5\xfd\x16\x14\x06\x4f\x89\xb1\x52\x97\x45\xe9\xcc\x21\xf7\x8b\xa9\x9a\xc3\x38\x7f\x14\xc7\x40\x6e\xd0\x57\x95\xbe\x6c\x2c\x56\x1c\x17\x8a\x35\x45\x9a\x53\x4d\x62\x7c\x5f\xac\x41\x8d\x98\x1d\xc4\xd3\xf5\xd2\x8f\x5f\x05\x09\xdd\x2b\x67\x7f\x13\xd3\x23\x90\x48\xb3\x2b\x8a\xf9\x87\x55\x14\x2d\x77\xbe\x33\x83\xf0\xe7\x84\xe0\xcf\x5b\xd5\x31\xa8\xf0\xd8\x55\xde\x21\xed\xee\xfe\xe1\xdd\x2d\x13\x46\xb5\xe8\x81\x9c\x4b\xc9\x6f\xc8\x7d\x7a\x8e\xc3\x61\x56\xd1\x2a\xbb\x8f\x07\x1f\x1f\xc3\xe6\x6a\xb7\x49\x24\xed\xb7\xcf\xff\xeb\xe2\xfc\xfd\xf5\xcb\x17\xd7\xcf\xde\xbf\x7f\xf7\xf2\xf9\xcf\xef\x2f\xd8\xdc\x88\x68\xd9\x91\x16\xf8\x2c\x2c\x78\xb8\x60\x03\xef\xf1\xb4\x15\x63\x2a\x5a\x2f\x67\x0d\x36\xac\xc4\x57\x1a\x7e\x98\x8e\x2d\xc8\x7e\x20\xb4\x21\xda\x67\xa6\x19\x23\x1e\x65\xb2\xf1\xf8\x4f\x67\x17\x26\x48\xe6\x33\x4d\xcf\xbc\xa6\xf2\x06\x03\xa7\x03\x65\x9f\xb9\x59\xeb\x4a\xbd\x53\xe5\x4c\x69\xc7\x0a\x4c\xc0\x26\xed\xeb\x08\xf8\x4e\xdc\xd2\x18\xed\xa2\x90\xef\x2d\x35\x8a\xdb\x34\x35\xb6\xb5\x2d\xc3\x28\x77\x4c\xa1\x36\xc5\xb9\x99\x3b\xd3\x7b\xe3\xdf\x81\x7a\x95\xe4\x9d\x72\x6b\xe2\x4c\x22\x50\x7d\x12\x6b\x33\x9f\xfa\xad\xe8\xe6\xef\xad\x60\xa6\xa1\xa0\x50\x7a\x08\xca\xad\x72\xa0\xfc\x87\xdb\x7c\x80\x1a\x1d\x4e\x85\x2b\x23\x15\xa6\xa6\x91\x14\x4c\x23\xbf\x55\x68\x7e\xdb\xe6\xb1\xf9\x6d\x08\xce\x1f\xeb\xb6\xcb\x5d\x11\xd9\x8e\x81\xfc\x1d\x07\xcc\x49\xba\x46\x3d\x7f\x78\x99\x73\x2c\xc9\x97\x01\xb6\xaf\x3d\xc2\xd8\x17\xbe\x00\x46\x4b\xac\x2d\x18\x84\x86\xf1\x3c\xa2\xf4\x01\x0c\xcf\xce\x60\x2b\xdb\xfe\x91\xa5\x75\xdf\x18\xb2\xc7\xa8\xfd\x17\xf1\x28\x5c\x9e\xe9\xda\x82\xd2\x55\x32\xd4\x70\x7a\x97\x7e\x19\xf1\xe0\x49\x9c\x2d\xa6\xd1\xf2\x4c\xbb\x4f\x92\xe1\xf1\xb1\x36\xd4\xee\xe1\xaf\x61\x96\x41\x17\x51\x42\xa5\xcc\x95\x4f\x17\xa1\x7f\x47\x4c\xed\x3e\xd1\xd0\x54\xa2\xcf\x7d\x0e\xa0\x35\xec\x20\xc3\xf6\x79\x14\x86\x5c\x67\xfd\x83\xcf\x76\xf4\x0f\xfa\x02\x25\x59\x21\x12\x03\xcd\x84\xc3\xed\x5f\xc9\xcd\xfb\xf7\xbf\xe9\x4b\xb4\x46\x53\xc4\xab\xeb\xaf\xe9\xe2\x9a\x46\x1f\x48\x68\xb4\xa3\x15\x09\x75\x63\x24\xbe\x26\xdb\xa2\xac\xc3\x65\xe4\xcf\x34\x94\x1b\x7d\x33\xdd\x40\xcb\xf6\x74\x19\x25\x44\x37\xb6\x2a\x25\x79\xfe\x0c\x6d\x77\x42\xa1\x47\x70\x69\x31\x7f\x58\x96\xdd\xe4\x1e\x93\x09\xf7\x81\x47\x4d\xdb\xa8\x5c\xfa\x6f\x83\x70\xd6\xb8\x03\x76\x69\x3c\xd1\x4c\x62\x6a\x4f\xda\x3b\xbf\x69\x74\xcb\x25\xb8\xcf\x5a\xfb\xd8\xa7\xd4\x9f\x2e\xc4\x1f\x6d\xd8\x45\xe5\xbc\xf6\xdf\x93\x62\xf6\xca\x9f\x7e\xf0\xe7\xa4\xfd\xf7\x24\x0a\xb5\xa1\x6b\xb1\x57\xb7\x01\x65\xff\xb5\xa1\x97\x7b\x02\xcc\x2c\xa3\x84\x66\x43\xfe\x7a\xb9\x4c\xa6\x31\x21\x61\x2e\xa9\x0d\x7b\x95\xef\xda\xd3\x24\xd1\x86\xae\x53\x0d\xc0\xbe\x59\xc6\x2f\x7d\xda\x65\xaf\x05\xe3\xcf\xa2\xf2\xdb\x4e\xf1\x6d\x96\xd2\x86\xfd\x8a\x37\xf0\xcd\xfe\x76\x14\xb4\x3f\x90\x87\x44\xb1\x63\x12\x83\x9a\xbd\xd5\x13\x63\x8b\x82\x76\x4c\x92\x68\xf9\x91\xe0\x08\x91\x36\xf9\xb4\x8a\x62\x9a\xe0\x00\x05\xed\x60\x86\x9d\x41\x91\x4d\xd8\x1c\x99\x82\x7c\x66\x7c\x3f\xe4\x9e\x3f\xdb\xa2\xcb\xd0\x9d\x1f\x84\x43\x6d\xd7\x59\x68\x15\x07\x1f\x7d\x0a\xf3\xc3\x81\xa4\x58\xd7\x09\x3a\xa2\xdf\xea\x88\x48\x4c\xc7\xe7\xa5\x06\xc4\xf6\x6c\xdc\xfa\xc1\x92\xcc\x86\x8d\xe3\x45\x74\x47\x8e\x1f\xd6\x33\x3f\x38\x66\x03\x32\xf8\x48\x8e\x57\x71\x34\x5b\x4f\x69\x72\xec\x58\x76\xf7\x18\xc6\xd8\x71\x12\x4f\x8f\xe7\x01\x5d\xac\x6f\xda\xd3\xe8\x4e\x20\xf0\x57\x7f\x4f\x8e\xc3\x68\x46\xae\x39\x23\x27\xc7\x50\xd8\xe3\x65\x70\x73\xec\xcf\x66\x51\x98\x54\xf3\x48\xe3\xe7\x90\x7c\x5a\x91\x29\x25\xb3\x06\x8c\xdf\x86\x6e\x0f\x2d\xe3\x2a\xfc\x2d\x5a\x37\xee\xfc\x87\x46\x48\xc8\x8c\xad\xe0\xfe\x6a\x15\x47\xab\x38\xf0\x29\x69\xb0\xf1\x4b\xe2\x06\x8d\x1a\xfc\x10\x10\x16\xef\xc6\x6d\xc0\x52\x6c\x15\xbb\x0a\x37\x8d\xb6\x68\xb0\xec\x6b\x8d\xcf\x2c\x9b\xfd\x4b\x75\xee\xc3\x06\x9c\x61\x8f\xd2\x7c\x1a\xad\x86\x0d\x6b\xa4\x19\x87\x76\xc6\x6e\x24\xa4\x7d\x52\x60\xef\x2f\xe8\xdf\x1d\x13\x0b\x8a\x05\xde\x2d\x10\x9c\x18\xa3\xff\x17\x00\x00\xff\xff\xbd\x12\xdf\xe7\x5e\x12\x05\x00") +var _staticJsGottyBundleJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xfb\x76\xdb\x38\xb2\x28\x8c\xff\xff\x7b\x85\xdf\x3f\x32\xbf\x3e\xfa\x88\x08\x62\x24\x3b\xce\x45\x0a\xa2\xe3\xd8\x4e\xb7\x77\xe7\xb6\x6c\xf7\x64\x7a\xdc\x3e\x0e\x2d\x42\x16\x26\x34\xa1\x26\x21\x5f\x5a\xe2\x7e\x96\xf3\x2c\xe7\xc9\xbe\x85\x2b\x41\x12\x94\x64\xa7\x67\xef\x7d\xf6\xcc\xea\xb5\x3a\x16\x08\x14\x6e\x85\x42\x55\xa1\x2e\x4f\x9f\x6c\xb5\xde\xd1\xb4\x15\x93\x31\x4e\x32\xdc\x22\xc9\x84\xa6\xd7\x21\x23\x34\x69\xcd\x62\x1c\x66\xb8\x95\x61\xdc\xba\xa2\x8c\xdd\x77\x2f\xe7\x49\x14\xe3\xe0\xef\x59\xf0\xfe\x68\xff\xf0\xe3\xc9\x61\xc0\xee\x58\xeb\xc9\xd3\xff\x9f\xef\x03\xf4\x66\x71\x13\xa6\x2d\x8c\x16\xbb\xbd\x01\x56\xbf\xd8\x30\xc3\xf1\x04\x32\xc4\xbf\xcb\x4a\xde\x9c\x83\x64\x29\x19\x33\x6f\xa8\x5a\x3c\x1f\xf8\x18\x32\xfe\x75\x32\x4f\xc6\xa2\x6f\xe2\x63\xb0\x60\xe9\xfd\x62\x4c\x93\x8c\xb5\x18\x4a\xf0\x6d\xeb\x97\xe3\xf7\x3e\x06\x90\x20\x16\xcc\xc2\x2c\xbb\xa5\x69\xd4\x6e\xb3\x60\x9e\xe1\x34\x09\xaf\xf1\xe8\xeb\x0f\x0b\x16\xcc\x52\xca\xe8\x98\xc6\xf9\xd3\xa7\xfc\xa7\xfe\x98\x0f\xc4\x47\xd5\x2c\xff\x9f\xfc\xd7\x94\x66\x2c\xff\x3a\xd8\x14\x82\xdd\xc6\x55\x51\x7e\x1a\xa6\x98\xcd\xd3\xa4\x85\x03\x46\xdf\xd3\x71\x18\xe3\xf7\xf4\x16\xa7\xfb\x61\x86\x7d\x10\x64\x2c\x4c\x59\xf6\x85\xb0\xa9\x4f\x5c\x15\x40\x3e\x0e\xd9\x78\xca\x67\x2f\xe1\x6c\xf5\xf3\xfc\xd3\xe5\xdf\xf1\x98\x05\x11\x9e\x90\x04\x7f\x4e\xe9\x0c\xa7\xec\xde\x67\xd0\xbb\xb8\xc0\xd9\x07\x1a\xcd\x63\xec\xc1\xc5\x4d\x18\xcf\xf1\x60\xab\x97\x03\xc8\x82\xf7\x24\xf9\xb6\x4f\xaf\x67\x73\x86\x53\xc4\x82\x2f\xf8\x92\x97\x7c\x4e\xe9\x0d\x89\x70\x8a\x6e\x28\x89\x5a\x3d\x58\xff\x30\x8e\xc3\x2c\x93\x8b\x9e\xce\xc7\x8c\xa6\x7c\x67\x20\x81\x29\x5a\xe4\x60\xc1\xa6\x24\x0b\x2e\x18\x4e\xaf\x49\x12\xc6\x08\x43\x59\x90\xe2\x2b\x7c\x87\x98\xfa\x35\x0d\x39\x96\xa4\x88\xa8\xdf\x74\xc6\x77\x34\x43\x69\x3e\x93\xbd\xf0\x0e\x33\xb1\xe3\x6a\x77\x09\x4a\x83\xb1\x1c\x2c\xff\xe6\x97\xe0\xc2\x72\xa7\xe5\x4e\xc0\x90\xf9\xb2\x20\x8c\xa2\xfd\x30\x8e\x2f\xc3\xf1\xb7\xcc\x27\x00\xe4\xe5\x12\xb3\x9e\x2d\x1c\x5c\x87\x33\x1f\xa3\x37\x3e\x0e\x62\x1c\xde\x60\x54\x1a\xa6\x2c\x83\x38\x98\xd2\x1b\x9c\x22\x9f\x41\xc2\x11\x93\x4c\xfc\x72\x35\xf1\x59\x4d\x60\x91\x86\xc9\x15\x1e\xa4\x39\xc2\x43\x47\x2d\x5f\x2c\x20\xc8\x73\x88\x01\xc8\xf3\xa1\x58\xe3\x56\xba\xc8\x58\xc8\xc8\xb8\x55\x99\x39\xcc\x20\xd5\x0b\x93\x08\xb4\x3f\xc6\x57\x87\x77\x33\x9f\x05\x19\x9d\xa7\x63\x0c\x7d\x16\x4c\xe2\xf0\x2a\x5b\x2e\x3d\x0f\x74\xbc\x2b\x0f\xc0\xb3\x10\x4e\xcf\x51\x1a\x5c\x5c\x61\xf6\x85\x24\x11\xbd\xc5\xd1\x7b\x92\xe0\x13\x96\x92\xe4\x2a\xf3\x71\xb7\x0f\x33\x00\x63\x14\x06\x7f\xa7\x24\xf1\x3d\x0f\x0c\x63\xcc\x5a\xe3\xa1\xec\x68\x8e\xce\xce\x87\x13\x9a\xfa\xc3\x31\x4a\x02\x7c\x87\xc7\x7e\x0c\x86\x7a\x18\x18\x8d\xcf\x7a\xe7\x43\x32\xf1\xb7\xf8\xb9\x04\x63\x9a\x30\x92\xcc\xb1\x6c\x7c\xc6\x60\x22\xfa\xbe\x0e\x67\x27\x2c\x3d\x8a\xee\xfc\x0c\x4e\x61\x0f\x8e\x03\x92\x44\xf8\x4e\x8c\x2e\xae\xd5\x60\x30\x81\x7c\x07\x92\x2b\x36\x05\x1c\x76\xb7\x8f\x10\x62\xcb\xa5\xf8\x37\x51\xff\x86\xea\xdf\xb8\xd2\x69\x2b\x42\x0b\x71\x96\x06\x8b\xbb\x41\xd2\xe9\xc3\xfb\x01\xeb\xf4\x73\x88\x93\x88\x97\xc4\xf0\x7e\x10\x76\xfa\x79\x3e\x9c\x07\xb3\x79\x36\xf5\xd5\x16\x45\x90\xe1\x3b\x36\xc0\x30\x1c\x33\x72\x13\x32\x3c\xa0\x39\xc8\x15\x66\xcc\x73\xb5\x23\x8d\xab\xc8\x51\x96\x2f\x1b\x3f\x0f\x18\x66\x08\x43\x8a\x7a\x30\x41\x9e\xa7\x46\x15\xf2\x75\x24\x13\x9f\x93\xa8\xcb\xf9\x64\x82\xd3\x40\xf4\x84\x83\x2b\xcc\x38\x28\xbe\x7c\x66\x55\x49\xc0\xd2\x30\xc9\xe2\x90\xe1\x53\x2a\x3b\xf1\xb7\x7a\x62\x31\x48\x40\xb2\x2f\x69\x38\x9b\xe1\xa8\xdd\xf6\x5a\xde\x16\x42\xf8\xac\x77\x0e\x16\x7c\x93\x28\xea\x0d\x57\x74\xd1\xed\xa6\x00\xb4\xdb\xf4\xf5\x76\xef\xd9\xcb\x76\xdb\x4f\x9a\x3a\x82\xb4\x83\x12\xb5\x05\x30\x94\x0b\x95\x00\x58\xea\x5b\xee\x86\xdc\xc9\x4f\x13\xdf\x6b\x79\x00\x0c\xc1\x30\x0c\x52\x7c\x83\x53\x4e\xb2\x72\x3e\x24\xd5\x1a\x03\xb8\x66\x70\x9d\x4e\xc6\x07\x57\xea\xe3\xd1\x23\x6d\x18\x9c\xda\xd0\xb3\x10\xa6\xe7\x66\x4f\x0b\xdc\x53\x14\x4d\xef\x43\x86\x70\x79\xac\x90\xa2\x8c\x8f\xf7\xe3\x3c\x8e\xf7\x71\x1c\xfb\xf2\xac\x24\x88\xc8\x23\x92\x5a\x07\x23\x33\x13\x63\x62\xdf\xb6\x30\x50\x9d\x77\xfb\xb0\xdb\x97\x87\x4a\xa0\x0c\x4a\x86\xe4\xb5\x46\xf8\x61\xa7\x43\xc0\x42\xac\x8a\xe8\x81\x40\x0a\x86\xfa\xcc\x53\x51\x3c\x0d\xd3\xcc\x17\x30\xc5\xef\x2f\x24\x62\x53\x1f\xb4\xdb\x7e\xda\x35\x4b\xb1\x5c\xf6\x21\x41\x08\x69\xb0\xdd\x7e\xbb\xed\x79\x7c\x4d\x80\x73\x88\x9d\x3e\x18\xe2\x76\x1b\xdb\x8b\xef\x17\xa3\xe8\x41\x0a\xe0\x36\x42\xa8\xda\x63\x07\xf5\x01\xc8\xc9\xc4\x4f\x5f\xf7\xf4\xfc\x18\x24\xe7\x39\xeb\x74\x60\x82\x7a\xb9\x29\x4b\xce\xf3\xbc\x72\xfb\xa4\x79\x0e\x19\x5a\xe4\x43\xeb\x72\x4f\x81\xe0\x0f\x32\xc4\xce\x52\x71\x60\xe4\x85\xb4\x85\x50\xa6\xe0\xb7\xb2\x00\xdf\xcd\x68\xca\x32\xc1\x25\x50\x51\x13\x2d\x54\xd9\x60\x91\xe7\xe6\xa2\x3d\x4b\xcf\x7d\x0a\xa9\xae\x0f\x09\x28\x7e\xe4\xbc\x31\xbf\xbc\x54\x6d\x9b\x53\x49\x87\xee\x8b\x15\x37\x5f\xac\x58\x5f\x98\xd9\x5e\x14\xd1\x44\xdd\xa3\x43\xcd\xa4\x10\xff\x39\x80\x19\x7a\xea\x4f\x19\x9b\x65\xa3\xe5\x4f\xa7\xa7\x9f\x4f\x46\x60\x70\xf6\xf4\x7c\xb1\x9d\x9f\xfd\xaf\xdf\x32\xef\xff\xdd\x7a\xe2\x83\x45\xbe\xfc\xed\xb7\xdf\xfe\xd7\xeb\x37\x5f\xcf\x9f\xc8\xd2\x01\x0c\xb6\x46\xaa\xf8\xdf\x7f\x3b\xfb\xed\xfc\xab\x0f\x5e\xbf\x39\x7f\x5a\x2c\x1a\x2d\xdf\x98\xb7\x82\x3e\x05\x74\x86\x13\x89\x25\x44\xf2\x4b\x44\x14\xe1\x14\x25\xf3\x38\x96\xcc\xc4\x22\x27\x41\x4c\xc7\x82\xa9\x0b\xa6\x29\x9e\x20\x96\xe3\x38\xc3\x2d\x0e\x8b\xc6\x38\xb8\x0d\xd3\xc4\xf7\x3e\xcd\x70\x42\x92\xab\x56\x4c\x92\x6f\xad\xcb\x98\x8e\xbf\xe1\xa8\x15\x66\x2d\x09\xaf\x35\xa6\xf3\x38\x6a\x25\x94\xb5\x2e\x71\x6b\x1c\xe3\x30\xc5\x91\x07\xf2\xea\x8a\x38\x18\x08\x44\xc5\xfe\x6b\xf6\x41\xf3\x07\xb8\xc2\x1f\xb0\x5c\x13\x65\xc1\xfb\x55\x58\x8d\xa1\x9e\x78\xa9\x11\x4c\x11\x09\xe6\x69\x7c\xcc\x39\x85\xe5\x32\x53\xd7\x6f\x6c\xb3\x34\x65\x48\x41\x8a\xaf\x48\xc6\x70\x6a\xb3\x3d\x3e\xbf\x66\x6b\xcc\x90\x5f\xe1\x3c\xd2\x32\xef\x01\x39\x97\x11\x91\x6c\x46\x39\x15\x5c\xd4\x7b\x1e\x05\xe6\x6b\x9e\xe7\xc0\x07\x30\x15\xff\xc7\x1a\x39\x11\xf3\x41\x0e\x77\x5f\x19\xf6\xb7\xc4\x1c\x3f\x82\xeb\xfb\x82\x2f\x4f\x4f\x7f\x45\x2c\xb8\xce\xae\x4e\x30\x3b\xc6\x63\x9a\x24\x78\xcc\x4c\xc9\xe7\x14\x4f\x70\x8a\x93\x31\xce\x4c\x99\xbc\xe9\x4e\x09\x8b\xb1\x2c\xfb\x4c\x93\x2b\xf9\xd7\xa7\x39\x9b\xcd\x55\xeb\x5f\x92\x6f\x09\xbd\x4d\xec\xa2\x63\x9c\x91\x3f\xf0\xa9\xde\x23\xd9\x98\xe8\xc6\x47\x89\xa9\x28\xfe\x54\x00\x50\xc1\x37\x67\x05\x1f\x5a\x14\x9d\x79\xb7\xf8\x92\xb1\x7b\xef\x1c\xd6\xdb\x7a\x3d\xcf\x2a\x45\x5e\x5f\xfd\x14\xbd\x7a\xdb\xea\x57\x65\x5c\xde\x8e\x2a\x2f\x4f\xc1\xc0\xd2\xbf\x0d\x30\x6a\x03\xab\xac\x90\x01\x56\x59\x4d\xef\x59\x51\x5e\xac\xbb\xb7\x2b\x85\x1c\x82\xf4\x39\xf6\x41\x21\xe4\xe0\xe2\x2a\x12\xd8\xc3\x31\x4d\x1f\x0b\x05\x81\xd0\xe4\x5d\xc8\x8f\xd1\xbd\xe6\xaf\xc3\xf4\x2a\xd3\xbc\x75\x38\x67\xd3\x53\xfa\x0d\x27\x48\xe1\x66\x6a\x7a\xee\xf6\x73\xc3\xf0\x8a\xc5\x65\xf7\x33\x2c\x68\x83\x3d\x14\x41\x08\x05\x7b\xcf\x9b\xc3\x0c\xb9\xfb\x0e\xc6\x29\xe6\xe7\x92\xdf\xee\x56\xeb\x2c\xa0\x09\xa7\x1a\x7e\x05\x22\xe7\xe7\xf9\x5c\x02\x2e\x4d\xfa\x60\x98\x05\x19\x4e\x22\xff\xdf\x4e\x3e\x7d\x0c\x32\x71\xa7\x93\xc9\xbd\xbf\xd8\x4b\xaf\xe6\xd7\x38\x61\xd9\x20\x15\xb3\x82\x7b\x7a\x3a\xbc\x40\xff\x9d\x03\xa0\x6e\x00\xd3\x0b\x86\x84\x77\x2e\x80\x3a\x36\xbc\x53\xed\x68\x4c\xe3\xf9\x75\x92\x0d\x30\x4c\xe9\x6d\x36\x20\x39\x00\xf9\x50\x0d\x91\x26\xb2\xb1\x4f\x01\xa4\x3e\x09\x54\x5d\x48\x02\x5e\x17\x40\x53\x4d\x60\x5c\x31\x53\x5c\x1e\x81\xf8\xda\xc1\x80\xdf\x11\x28\xc3\xec\x28\x61\x38\xbd\x09\x63\xbf\xb4\x5c\x45\x7d\x8e\xb0\x20\x87\x3b\xf8\x19\x6f\x92\x89\x61\x8c\x31\xb9\xc1\xa5\x1e\xe4\x62\xe2\x20\xe3\xe2\xb9\xdf\x07\xc3\xec\x96\x08\xe9\x50\xb0\x82\x63\x2e\x9d\x5b\x18\x3c\xd0\x63\x15\xbf\xfc\x90\xd1\x4b\x2e\x09\x0d\x2f\x53\x1c\x7e\x1b\x16\xb5\x39\x7e\x0f\xaa\x85\x65\x34\xd7\xa0\xb2\x52\xa9\x4f\xea\xc0\xca\xc7\x60\x20\x6f\x75\xb1\x01\xb3\x90\xb3\x87\x04\x0c\x0b\x58\x56\x4d\x3f\x73\xc2\x32\x47\x67\x20\xf7\xbc\x0c\x49\x5f\x58\x31\xbd\xf2\xbd\xc3\x24\xbc\x8c\xf9\x85\x65\x90\x7e\xd0\xf2\x3a\xb4\xe3\xb5\x32\x5e\x10\x65\x1e\xdf\xbd\xe2\x44\xd0\x5c\xad\xf4\x7e\xcc\x69\xb2\xb5\x31\xe2\x36\x33\x3b\x86\xcd\xa6\x47\xd8\xdc\x48\xa6\x2c\x9b\xd2\xdb\x0f\x38\xcb\xc2\x2b\xec\x7b\xfb\xe6\xa0\xb4\x04\xd0\xc8\x83\xbd\x52\xa7\x6f\x7a\xed\xb6\x4f\x38\x42\x9c\x92\x6b\x4c\x6d\x04\x02\x8b\x4c\x88\xbd\x8d\x47\x4d\x75\x98\xe2\x0c\x33\x7e\xf2\xf8\x5d\xd1\xc7\x3b\x4f\x2c\xf0\x40\x21\x8f\x60\x02\x0c\x43\x44\x7d\x00\xab\xb3\xd3\xdd\x13\x5e\x7f\x1c\xab\x4b\x09\xe2\xdc\x07\x43\x73\x6f\x90\x1c\xf6\x77\x9e\x0d\x24\x55\xfa\x33\xee\xa3\xbf\x0a\x8a\xa6\x98\x24\xc9\x89\x11\x7f\xfb\xc5\x2b\xce\x24\x11\x7f\xbb\xb7\xcd\x09\x0a\xf1\x9f\xed\xbe\x04\x30\x41\xc4\x7f\xf1\xfc\x39\x80\x21\x22\xfe\x6e\x0f\xc0\x29\x22\x7e\xff\xd9\x4b\x2e\xb5\x36\x10\x4f\x79\x40\x98\x20\x5a\xf2\xe6\x97\x17\x6e\x78\x19\xe3\x0c\x9d\x9d\x4b\x9a\x88\x63\x7c\x8d\xb0\x22\xc3\x67\x9e\xc4\xe7\xcc\x83\xfc\xaf\xfe\x73\xf9\xef\xce\xb6\xfc\x77\xff\xd0\x3b\x37\xe2\x44\x12\xde\x90\xab\x90\xd1\x34\x98\xc5\x21\x9b\xd0\xf4\x1a\xbc\x41\xbd\x61\x41\xaa\x39\xd7\x90\x05\x9a\xec\xf8\x8b\xf1\x3c\xcd\x68\x7a\xc2\xee\x63\x3c\xf0\x04\x07\xe5\x41\x59\xf6\x96\xf3\x05\x83\xad\x1e\x94\x6c\x1b\x5f\x2e\x3c\x20\x70\x42\x13\xf6\x2e\xbc\x26\xf1\xfd\xc0\x3b\xc0\x7f\x0f\xff\x32\x6f\x9d\x84\x49\xd6\xfa\x40\x13\x0a\x5b\x87\x5c\xc0\xa2\x89\xfa\xf5\x2e\xc5\x58\xfe\xf5\x01\x27\x31\x85\x2d\xdd\x2f\x6c\x5d\xd3\x84\x66\xb3\x70\x8c\x61\x6b\x6f\x36\x8b\x71\xeb\xe4\xfe\xfa\x92\xc6\x99\x27\x3a\x38\x21\x7f\xe0\x41\x7f\x9b\x6f\x08\x1f\xf9\x84\x30\xc9\xa9\xf1\xd1\xd3\xe0\x9d\xfa\x09\xcd\xb4\x82\x98\x86\x91\x28\xf3\x4b\x0d\x80\xb3\x0a\x87\x12\x96\x79\x40\x55\xf1\x5a\x9e\x12\x84\x03\x7a\x9b\xe0\xf4\x80\x8e\x05\xb5\x57\x08\x7e\x18\x63\xfe\xcb\xf7\x22\x72\xe3\x95\x5b\x04\x82\x87\xfc\x18\x5e\x63\xe4\xdd\xf1\xee\xba\xf4\x06\xa7\x71\x78\xef\x95\xaa\x29\x94\x46\xdb\x78\x47\x5f\x7e\x9c\x90\xbf\xe7\xdc\x1d\x67\x80\x2d\xa4\x61\x66\x12\xfc\x0f\x9f\xa3\xa6\x3c\xcc\xe3\x94\xc6\xf1\x29\x7d\x4b\x19\xa3\xd7\xa2\xdc\x3e\xdf\x4a\xfe\x54\x95\x39\x77\x02\x3a\xde\x9d\xd7\x29\x97\xcb\x7b\x82\x55\x86\x05\x72\x6b\xb9\xc4\x01\xc5\xf6\x02\x4e\xe8\x78\x9e\xf9\x40\xe1\x43\x10\x46\xd1\xe1\x0d\x4e\x98\x1e\xbc\xef\xc9\xc9\x78\xb0\x34\x8b\xf2\x0c\x7d\x7e\xfa\xfd\x1e\x9c\x06\xb7\x21\x61\xef\x68\xaa\xd6\x14\xf8\x5e\x20\xd7\x2d\x1b\xa7\x18\x27\xad\x37\xad\x71\x98\xdc\x84\x99\x07\x77\xf1\x0e\x08\xd8\xb4\x7c\x65\xab\x31\xa4\xf8\xf7\x39\xce\xd8\x5e\x42\xa4\xfe\xf7\x5d\x1a\x5e\xe3\xc7\xd4\x73\x8d\x93\xff\x17\x48\xd5\xa6\x7d\xc1\x69\x82\x8e\xd3\x94\x4b\x0a\x40\x23\x69\x84\xc7\x94\xf3\xee\x1c\xbb\xd2\x20\x26\x97\xc1\x2f\xa7\xef\x5e\x1e\xc8\x52\x17\x63\xc3\x39\x0d\x7b\xc7\x65\x15\x73\xf3\x17\x0b\xcf\x77\x51\xb2\x01\x45\x19\xff\xc9\x89\xa1\xcd\x28\x49\x9e\xd0\x1e\x6b\x51\xff\x36\x25\x0c\xfb\xf6\x40\xd5\xbf\x3e\x06\xa0\x0c\xc7\x42\x27\x9b\x7f\x61\xfa\x6e\x2f\x48\x97\x46\x7e\x86\xef\xd8\x3e\x4d\x18\x4e\x98\xe6\x05\x39\x05\x0b\xb8\xb8\x9e\x44\xfb\x53\x12\x47\xbe\xdd\x00\xd4\x0e\x45\xda\x6e\x97\x68\x7e\xed\x3b\x80\xf2\x62\xaa\x7d\x68\xb8\xa8\x88\x1c\x41\x8a\xaf\xe9\x0d\x96\x23\x20\xa6\xfb\x1c\xb2\xea\xa4\x65\xc5\xda\xb4\xd5\x12\xea\x89\xce\xc2\x14\x27\xec\x23\x8d\x30\x42\x66\x9a\xed\x76\x31\x63\xbb\xbf\xd2\x8c\x2b\x4b\x5c\x66\xd0\xed\x2d\x8b\x34\xcd\x61\xe2\x13\xae\x35\xb4\x39\xf8\x2a\xe3\xa5\xee\x15\x75\xed\x7d\xc3\xf7\x99\x8f\x41\x30\xa1\xe9\x61\x58\xc1\x62\xdc\x6e\x7b\x98\x73\x23\xb8\x7b\x8b\x2f\xaf\x62\x0f\x21\xdc\x6e\x33\x17\xa9\x4c\x38\xa9\xbc\x8a\x25\x9d\xcc\x2b\x33\x51\x4c\x66\x1d\xeb\xac\x6b\x4d\xea\xbe\x2c\xd2\x92\x1c\x84\x2c\x2c\x86\xc3\xc0\x02\xfb\x0c\xe4\xd5\x3d\xd1\x7c\xee\x03\x81\x2b\xe6\xb8\x02\x5e\x9e\x22\x26\x49\x5f\xad\xab\x82\x6d\xaa\xed\xbd\xdd\x97\x6b\x25\xcd\xc9\x2e\x24\x67\x9b\x6a\x5e\xc6\x73\x4e\x4d\x2a\xc8\x96\x61\x56\xeb\xa8\x84\x82\xbe\x0d\x43\x1c\x8d\x2a\x10\xc1\x11\x21\x17\xad\xe3\x60\x1a\x48\xb3\xe3\xd2\xb1\x3b\x2a\xa6\xa0\xd9\x2c\xc9\x0e\xc5\x39\xec\x3f\x7b\xf9\xa7\xc9\xfc\x65\xda\x5f\x48\xd4\x95\xf2\x32\xf1\x51\xeb\xcc\x31\xf2\x73\x4a\xaf\x89\xcd\x0f\x0b\x79\x54\xf2\xf1\xe6\xfc\xfc\x3e\xc7\xe9\xfd\x09\x8e\xb1\xd4\xe8\x08\x85\x53\x06\x08\x67\xe2\x71\x9c\xe1\x85\x64\xd6\x39\xb8\x0f\x73\x26\x6e\x85\x4f\x97\x19\x4e\x6f\x70\x5a\x95\x0d\xd9\x0a\xa0\xac\xdd\xf6\x29\x5f\x37\xc5\xde\xfa\x00\x12\x5f\x30\xb9\x43\x1a\x50\x09\xd0\x37\xcd\x2f\x69\x74\x0f\x17\x63\x4e\x1e\xf8\xf2\x73\xee\x2a\x9b\x5f\xb2\x14\xeb\xa5\x69\xb7\xdd\xe4\xac\xd2\x85\xd4\xfe\x1c\x8a\x1b\xc8\x53\xd5\x5b\x7c\xf5\xb8\x6c\x31\xa1\x69\x0b\xcb\x25\x1c\xb4\x3c\xce\xae\x8f\x43\xc6\xc9\xbc\xa0\x7b\x79\xce\x99\xe8\xed\xde\xb6\xf5\xe2\x79\x15\xd3\xcb\x30\x3e\xe5\xe2\xf4\xba\x77\xcf\x67\xbb\xcf\x5f\x0c\xec\x8d\xe1\x72\xad\x64\x93\x39\x1a\x29\x5a\x78\x71\xc1\x2f\x97\x34\x64\x78\xb9\x2c\x57\x36\x1b\x05\x29\x0a\xb5\x30\xad\xb5\xe4\x09\xa2\xaf\x77\x46\x6c\x90\xcc\xe3\x18\x21\x94\x8e\x52\xa4\xb0\xeb\x0a\xb3\x4f\xb7\x89\xc6\xae\x03\x9c\x8d\x53\x32\xe3\x5b\xc0\xfb\x1f\xa4\x7c\x6f\x3d\x2a\xaa\x7a\x08\xf1\xe3\x41\x27\xad\x63\x3c\xe1\xfb\xd4\x6e\x7b\x7a\x08\xb5\x6f\x81\x1e\x26\x48\x50\xb5\xc8\x8c\x57\xa0\x0b\x5f\x55\x9f\x0f\x3c\xb4\x34\xd7\xc3\x90\x33\xd7\x61\xb7\x0b\xfc\x0c\xe1\xb3\xf0\x1c\x88\x07\x01\x9f\xcf\x22\xf3\x13\x30\xa0\x6f\xf8\x1f\x1c\x4c\x02\x06\xe2\x0f\x00\x96\xcb\x04\x18\xb1\xe7\xcd\x4e\xbb\x9d\xb4\xdb\x4d\x67\x88\xb7\x83\x49\xae\x94\x1c\x66\x71\x67\x61\x1a\x5e\x97\x57\xd6\x9c\x8f\xf2\x99\x60\xfc\x1f\x88\x41\x9e\x3f\xe6\x9c\xee\x8d\xc7\x38\xcb\xc8\x25\x89\x09\xbb\xff\x10\x26\xe1\x95\x79\x87\x55\xba\x4d\x2e\x0a\xbd\xea\x3d\xdb\x96\xb2\xd0\xab\x57\xdb\xcf\xa4\x30\xf4\xf2\xd9\x33\x29\x0d\x3d\x7b\xb1\xbd\xcb\xc5\x21\xe2\x6f\xef\xbe\xdc\x05\x70\x8c\x88\xbf\xf3\x7c\xf7\xb9\x7c\x9f\x98\xa3\x86\x4e\xe4\x7b\x23\xbe\x63\x38\x89\xb2\x56\x18\x1c\x18\x22\xec\x7a\xe8\x05\x8b\x6c\x3e\xe3\x4c\x1b\x6c\x78\xed\x1d\xd3\x14\xbf\xe5\x94\x1f\xa7\x27\x38\xbd\x21\x63\x6c\x9e\x7a\x53\x9c\x44\x45\xa9\xd6\x97\xa6\xf4\x76\x5f\xf2\x61\x82\x42\x7c\xc1\xe1\xb7\x0f\xe1\x0c\x6a\x85\xe9\x0d\x3e\xc6\x57\x84\x26\xef\x49\x82\xf7\xe9\x3c\x61\xa8\xa7\x7b\x9a\x86\x69\x76\x4a\xf7\x69\x92\xcd\xaf\xb1\x11\xe8\x74\xf9\x5e\x92\xd0\x79\x32\xc6\xc8\x53\xb4\xf8\x22\xb4\xa7\xcf\x99\xa8\x90\x24\x46\x03\x5c\x1f\x77\x70\x1d\x92\x64\x03\xb9\xa4\x01\xae\x94\x53\x38\xed\xe1\xfc\xbb\xaf\x64\x95\x52\x5d\x03\x41\xac\xc1\x9f\x36\x1e\x1b\x1a\x67\x63\xf6\x18\x4b\xc9\xe5\x9c\x61\xdf\x4b\x29\x47\x3d\x2f\x26\x19\x73\x57\x5f\x3f\xe8\x2e\xa7\xa1\x76\x63\x35\x86\x4c\x3f\x12\x73\x6c\xc3\xa8\x37\xc4\xaf\xab\xba\x75\x7a\x9b\x0d\x71\xa7\x03\x6a\x4d\xcf\xf0\xb9\x9e\xb6\x98\x56\x09\x51\x4f\x53\x8c\x39\x1f\xe8\x3b\x07\x5c\x63\x7c\x2b\x70\xc5\x65\xa4\x06\x42\x67\x6f\xe9\x3c\x89\xc2\xf4\xfe\x1d\x17\xb0\x8c\x2c\x88\xd1\x1b\x5b\x77\x5f\xaa\xe4\x63\xd8\xd3\x1d\x5f\x0a\x41\xf0\x51\x30\xfa\x8e\x05\x3b\xeb\x9d\x3b\x44\x3b\x21\xfb\x69\x94\x6d\x1a\xb2\x0b\x5a\xad\xc4\x10\xcf\xb5\xdd\xac\x98\x98\xe9\x09\x4f\x52\x9c\x4d\x8f\xe9\x6d\x76\x40\xae\x71\x92\x11\x9a\x64\xfe\x9a\x23\xe0\xdc\x1c\xf3\x19\xd4\x0e\xf9\xf7\xe3\x7e\x01\xab\x8a\xca\xfc\x4b\x37\x15\x9f\x5c\xb5\xcb\xe7\x24\x4c\x49\xd8\xe5\x5f\x3d\xe8\x85\x59\x86\x53\xc6\xff\x7e\xf0\x6c\x0b\xf8\xf5\x1e\x0f\xf0\xa5\xa0\x4f\xea\xc0\xeb\x87\x27\x25\x07\x70\x4e\xe3\x6d\x98\xe1\xc8\x54\xf3\x6d\x22\xca\xb7\x21\xb8\x24\x89\xec\x08\x00\x00\xb7\x2a\x87\x4d\xb1\x25\x80\x4d\x53\x7a\xdb\xb2\x78\x98\xfd\x30\x49\x28\x6b\x49\x89\xa4\x55\x9a\x4a\xeb\x12\x4f\x68\x8a\x8d\xee\x48\x68\x26\x3c\x30\x74\x83\x0e\x48\xc2\x17\x66\x2f\xfa\x7b\x38\xc6\x09\x33\xdb\x11\x4e\x18\x4e\x2f\xf1\x15\x49\x56\x13\x5e\x00\xcb\x13\xaf\xf4\x62\xa4\x8b\xca\xc9\xd2\xa5\x52\xbc\x00\x1b\x40\xe1\x0b\x56\x40\xb1\x10\xd9\xc7\xd2\xe2\x0a\xe2\x00\x27\xd1\x06\xb0\x4e\x84\x46\x48\xb0\x6c\x75\x60\x1b\xb4\xdf\xeb\xf7\xef\xf7\xa7\x61\x5a\x9d\x93\x2c\xdb\x00\x00\xbf\x05\xdf\x61\x1c\x59\x43\xb0\x20\x78\xbf\x25\xde\x86\xa3\x38\x0d\x2f\xab\x83\x10\x45\x1b\x34\xff\x19\xdf\x57\x9b\x8a\x22\x2e\x04\x6f\xd0\xfc\x2d\x97\xd2\x8a\xe1\x0b\x81\xeb\xbd\x39\x15\x8d\xab\x58\x62\x1e\xb8\x5c\x6b\x88\xd0\xfe\x34\x4c\xae\xb0\x7b\x53\x6c\x52\x55\x03\xec\xf7\xe0\x98\xd3\x86\x82\xe3\x39\xa0\xd7\x86\xee\x19\x51\x02\x7a\x99\x90\x42\x08\x4d\xc6\xa2\x2b\x0f\x56\x57\xff\x44\x57\x50\x63\x69\x9a\x84\x83\xb0\xd1\xe4\x60\x96\x3e\x74\x0a\x65\xbc\xab\x4f\x2b\x0c\x18\x2d\x66\x05\xa4\x8c\xb1\x92\x76\x49\x51\xd6\x77\xdc\x2b\xea\x16\x41\x3d\x2e\xc9\x97\x50\x65\xa1\x6f\x7b\x86\x7a\x43\xf6\x1a\x0f\x99\xb9\xdb\x6d\xa4\x6c\x79\xa6\x9d\xc2\xf3\x45\x23\x73\xf7\x7a\xbb\xaf\x35\x4f\x15\xfe\x4e\x0d\xe3\x4d\x6f\xe4\xfc\x9a\x4d\xc9\x84\xf9\x60\x4b\xe8\x56\x7c\x27\x23\xd8\x41\x18\x0c\x9a\xbe\x40\x7e\x76\x90\xdd\xda\x31\xba\x4e\x07\x6e\x0b\x33\xb4\xa6\x0a\x8e\xc6\xb6\xc6\xae\x83\x68\xc0\x28\xfd\x30\x1f\x4f\xe5\x9b\x1c\x17\x14\xeb\x27\xa0\xb6\x3c\x25\xad\x9f\x61\x67\x9d\xbc\x71\x6e\x9f\x48\x0d\xa9\xd6\x03\x7c\xfa\xdb\x6c\xc1\x01\xa6\x34\xce\x9f\xce\x03\x86\x33\x2e\xb6\x2e\x97\xce\xb5\x55\xb6\x5b\x79\x99\x74\x72\x41\xa8\xf1\x4e\x0b\x54\x55\x21\x36\x38\xd8\x40\x01\x4c\x5f\x64\x65\xd3\x95\x4a\x6d\x69\x7b\x25\x2c\x39\x62\x92\x60\x8d\x8e\x01\xd3\xf6\x5f\xc0\x30\x9d\x19\xc2\xc3\xec\x35\x62\xc3\xac\xd3\xb1\xcd\xe8\x64\xbb\x2b\xcc\x7c\x12\xdc\x47\x24\x9b\x75\x32\x00\x19\x17\x18\x28\xc2\x23\xa7\x49\x19\x54\x8a\x12\xad\x2f\x01\xcb\xa5\xe7\xc1\x04\x15\x10\x3a\x7d\x60\x8d\x01\x86\xa8\xce\x90\x65\xe7\xc3\xb0\xdd\xf6\x7b\xc2\x64\x4a\x0e\x7b\xe4\x87\x01\x49\x12\x9c\x9e\xe2\x3b\x86\xbc\xff\xf3\xbf\xbd\x9a\x14\xc4\x39\x11\x3f\x84\x67\x3d\xd8\x3f\x07\x60\xe0\x87\xa5\xdd\xa7\x4d\xf5\x19\x00\x30\x74\x71\x31\x33\x9a\xf1\x8b\x9a\x79\x5c\xc0\x75\xd6\xc8\x30\x93\x2a\xab\x14\x80\x5c\x51\x09\x75\x32\xf8\x81\x0d\xc7\x0c\xa7\x99\x0f\x72\x67\xe9\xa2\xb7\xa5\x0f\x44\xe5\x54\xa9\x29\xaf\x3d\x13\xce\xc6\x8d\xb2\x9c\xa1\x25\x55\x0e\xdb\x42\x21\x1c\xb0\x30\xbd\xc2\x0c\xa6\x8e\x5d\xe1\xdb\xc1\x46\xfd\x41\x23\xbb\xbc\x2d\x6d\x34\x39\xc2\x34\xae\x25\x40\x08\xf9\x12\x92\xd7\xf7\x84\xbd\xb7\x0b\x6d\x4b\x28\x9b\x7f\x05\xca\x7a\x8d\xc3\xc7\x41\x8a\x39\xd2\x45\xa7\x62\xa8\x5b\x08\xa5\xfa\xab\xc0\x65\x48\x79\x2d\xd9\x85\x9f\x21\x02\x69\x7d\x2e\xc1\x8c\xce\xdc\x52\x91\xad\x1c\xa7\x1c\x8b\x32\x47\x6b\x45\x33\x21\x2d\x24\xf4\x26\x18\x19\x00\x30\x73\xeb\x3b\x37\x94\x57\xe8\x06\xad\x57\x8a\x21\x62\x29\x8a\x63\xbd\x81\xb8\x38\xac\x4f\x79\x9e\xc8\x49\x63\xe7\xaa\x6d\xc0\xd0\x62\x20\x8c\xe3\xbe\x73\x18\xda\x1a\x76\x8d\x3c\x8b\xf5\x71\xfc\xbf\x55\x68\x34\xc7\x41\x3e\xa5\xf2\x7b\x2a\x53\x38\xdd\xed\x0f\xdc\x32\xf1\xfa\xe3\x69\x9e\x47\x71\x30\x4b\x31\x1f\xe1\x01\x9e\x84\xf3\x98\x89\xa2\x8c\xd1\xd9\xd1\xf5\x35\x8e\x48\xc8\x84\xf2\x2d\xbc\x0a\xa5\x6a\x37\x6f\xe2\xd6\x16\xfa\xa4\x35\xf4\xa9\x0f\xa6\xde\x74\xa3\x64\xbe\xc2\xcc\x00\xf3\xcb\x16\xbe\xf2\x8c\x93\x6c\x9f\xc6\x71\x38\xcb\x70\xa4\x2d\x57\xf9\x95\xe2\x10\x86\x83\xb1\xfc\x8b\x0b\x25\x61\x32\x9e\xd2\x94\x63\x0f\xd0\x8a\x48\xb3\x92\xe2\x2e\xb7\x3a\x55\xbd\x5a\x6d\x96\xcb\x2d\x2c\x97\x48\x40\xb0\xba\x6d\x95\x1f\x54\xbd\xa2\x4d\x2b\x4c\xa2\xa7\x34\x6d\x99\x66\xad\x30\xc5\xad\x64\x1e\xc7\xca\x15\x80\xa1\x45\x42\x23\x3c\xb0\x3b\x82\x74\x32\xc9\x30\x33\x65\x9f\xc4\xcf\x1c\x12\x53\xd7\x80\x2b\xaa\x8a\x22\x55\x93\x0f\xdd\x67\x01\xaf\x2c\x3c\x3c\xc2\x14\x6b\x19\xff\x33\xcd\x88\xd4\xad\x8a\xcf\xa0\xcd\xa1\x04\x07\x9f\xf6\x7f\xf9\x70\xf8\xf1\xf4\xe2\xf3\xa7\x93\xa3\xd3\xa3\x4f\x1f\x2f\x3e\x1f\x1f\xee\x1f\x1e\x1c\x7d\xfc\x71\xb9\x94\x80\x10\x42\xb2\x49\xbb\xcd\x02\xd9\xeb\x1b\xa2\xfe\x00\xed\xb6\x2f\x2c\x93\xd1\x19\x81\xec\x1c\xc0\x35\x7d\xbb\x0e\x1f\x68\xfb\x0d\x43\xd9\xff\xf4\xf1\x74\xef\xe8\xe3\xe1\xc1\xc5\xdb\x5f\x97\x0d\x75\xde\x7d\x7a\xff\xfe\xd3\x97\xa3\x8f\x3f\xf2\xa1\xe8\x35\x75\x9e\x71\xf1\x72\xc1\xa1\xf0\x5f\x7a\xf9\x7a\xb9\x11\xf4\xdd\xb8\x23\x27\x04\xca\x08\xeb\xb8\x05\x95\xcd\x58\xb7\x0f\x94\xeb\x06\x59\xbd\x12\xe9\xf7\x4d\xdb\xec\x12\x10\x06\x4f\x72\xda\xa9\x9e\x55\x6a\xf3\x03\x23\xcd\x29\x8d\xd6\x4e\x96\xb8\x26\x9b\x21\x5f\x61\x9f\x06\xcf\x72\x2e\xfd\x18\xde\xa0\x45\x92\x8c\x85\xc9\x18\xd3\x49\x8b\x73\x61\x23\xfb\xad\x79\x80\x05\xb6\xa7\x48\x18\x95\x1d\x25\xcc\x27\xa3\xd5\x8c\x00\xec\xf7\x40\xb7\x2f\x96\x30\xfb\x18\x7e\xf4\x53\x3d\x9e\x8a\xfd\x74\x4a\x6f\x5b\x24\x6b\x91\xe4\x26\x8c\x49\x14\xb4\x8e\xc3\xb1\x30\xb1\x8e\xc4\x02\x8f\x3c\x00\xf9\x69\x33\x93\xa8\x71\x79\x82\x7d\x95\x87\x3d\x73\xf7\xa0\xac\x19\x78\x2f\x1c\x54\x63\x17\x7c\x82\x14\xb1\xd7\x9a\xba\x8d\xb2\x33\x76\x3e\x28\xa3\x44\xa7\x5f\xbc\x9b\x54\x39\xf2\x31\x8d\xb3\x76\xdb\xef\x74\x52\x48\x51\x0f\xc0\x45\x4a\x6f\x07\x29\x94\xdd\x0f\x68\x9e\x43\x8a\x32\x9f\x01\x98\xa0\x4c\x0d\x99\xb6\xdb\x89\xa0\xb2\x94\x73\xff\x6f\x12\xfe\xff\xe5\x52\xfc\x10\x2e\x1a\x29\xbd\x6d\xb7\xa9\xb2\xae\x7c\x83\x12\xf5\x57\x5d\x79\xa5\x96\xaf\x25\xfc\x75\xea\x9a\x29\x29\xa8\xfb\x1a\x12\x14\x3d\x40\x5f\x74\xd0\x15\x3f\xc0\x13\xc7\x6c\xba\xba\x41\xc7\xf4\x9c\xe7\x15\x75\x93\x16\x76\x36\xbd\x3c\xbf\x8f\xdb\xb1\x14\xe9\xae\x13\xc0\x69\x43\x8a\xb5\x9f\xc7\x7f\x19\x4d\xbb\xf0\x7f\x69\x5a\x94\x37\x78\x08\xd6\x70\x99\x0d\x0c\xae\x83\x83\xfa\xcf\x51\x76\xe7\xab\x17\xad\xca\x14\x3e\x42\x8b\x5d\xb8\x87\x36\xbe\xdb\x10\x86\xaf\x3d\xce\xe8\xb0\xf0\xf2\x28\x89\xf0\x1d\xea\xf6\x6b\xc3\xb6\x46\x8d\x01\xc4\x79\xd3\x8c\x0a\xcf\xc5\xb2\x7e\x2d\x32\x75\x82\x71\x96\x05\x63\x1c\xc7\xc1\x14\x93\xab\xa9\x11\xfa\x1b\xf4\x48\x19\xbb\xe7\x04\x89\x44\x6c\x8a\x8c\x54\xb4\x1a\xb6\x30\x3e\x93\x4d\xf2\xd9\xdd\xd7\x46\x0d\x94\x91\x33\x4b\x68\xae\x19\xa4\xd2\x69\x75\x69\x1c\x1e\xf6\x36\xe5\x5a\x49\x27\xd2\xe7\x79\xd3\xb2\x2f\xb0\x5a\x0d\xb9\x70\x9b\x2e\x47\xb1\xd4\x7c\x35\xf2\x7c\xd8\xf0\x6e\x3b\x47\xa9\x7f\x96\xf9\x7d\x18\x07\x47\x47\xe2\x4a\x63\x44\x30\xba\x0a\x30\x80\x99\xbf\x0d\xa7\xc1\xd1\x7e\x0d\x0f\xf9\xa7\x1d\xfe\xe9\xd8\x1e\x09\x38\x87\x73\x90\xc3\x9d\xe7\xfd\x67\x0d\x1e\xd7\x06\x39\x53\x3c\x8b\xc3\x31\xf6\x9f\xfe\x96\x8e\x7e\x4b\x9e\x5e\x41\xef\xb7\xd4\x03\xb9\xa9\x9d\x96\xde\xc9\xd9\xc8\xfb\xff\x9f\x6d\xf7\x7a\xff\xee\x75\x70\x47\xfc\xd9\xff\x77\x6f\x80\x8b\xea\x59\xe1\xd9\x8a\x51\xea\x63\xc4\x7b\x83\xc2\x7c\xee\x73\x2a\x4c\x85\x3e\x70\x46\x28\xb8\x4c\xc3\xf1\x37\xcc\x70\xf4\x39\xcc\x64\x59\xbb\xbd\xd5\xdb\x42\x88\x06\x69\x78\xfb\x49\x79\xd5\x92\xab\x44\xcc\xb8\x5a\x97\x43\x64\x29\xb9\xba\xc2\xe9\x41\xc8\x42\x41\x22\x7c\x0c\xb7\x7a\x9c\x0f\x14\x8f\xf1\xc8\xf3\xf2\xb2\x47\x15\x24\xfa\x54\xa7\x48\x68\x04\x04\xd9\x20\xc9\xd5\x7e\x4c\x70\xc2\x8e\xa5\x8d\x48\x86\x70\x30\x16\x05\x7f\xed\xa6\x41\x8c\x27\xac\xdb\xef\x41\x6a\x4a\x7f\xed\xa6\x01\xa3\xb3\x6e\xbf\x37\x64\xa5\x13\xe2\x6d\xf7\x66\x77\x1e\x64\x65\x44\xa9\x94\x72\x78\x1c\x79\x32\x79\x3a\x54\x29\xa3\x33\x5e\x48\x4b\x85\x7f\x48\x82\xe0\xf5\x7b\x3d\xe1\xbe\xa2\x04\xa5\xc7\xb8\x88\xa7\x7c\x28\xfb\x31\x19\x7f\xfb\x49\x79\x64\xb1\x80\x53\x6a\xce\x32\xed\xa5\x38\xfc\x85\x63\xce\x07\x3a\xcf\xf0\xbe\xb0\x61\x96\x5e\xf7\x0c\x23\x16\xc8\xa3\x28\xd6\x5d\x2c\x32\x62\xc1\x98\xce\xee\x0b\x38\x6a\x1f\x39\xa8\x77\x34\xfd\xac\x9a\xcd\x52\xcc\x19\x31\x55\x6a\xfc\x73\x2c\x27\x20\xe7\x77\x02\xdd\x00\x53\x58\xee\xb6\x6c\xc2\x21\xb6\x66\x76\x49\xc3\x34\xe2\xc8\xd0\x6e\x57\x0a\x38\xfd\x15\xa6\x73\x1e\xe7\x4d\x9f\xce\xe2\x50\x3c\x67\x05\xe6\x29\x80\xf7\xe5\x92\x40\x73\xe8\x58\x80\xba\x61\x8e\x94\x53\x4b\xe2\x29\xac\x8d\x89\xcb\x82\xe5\x51\x5d\x39\x46\x05\x14\x4c\xde\xb3\xdc\x82\x0c\xae\xd9\x2b\xea\xdc\xe0\xea\x28\x61\x06\x16\xfa\x14\xc0\xac\xdd\x4e\xad\x36\x52\x02\x15\x3a\x0c\x75\x76\xd2\xf2\xda\x98\xb5\x12\x9e\x04\x2f\xb6\x77\x5e\x59\x9e\x03\x8f\xc0\xc7\x7d\x1a\xd3\x54\xa8\xac\xc3\x8c\xed\x87\xe3\x29\x2e\x9b\xc7\xa4\x88\xf8\xfd\xdd\xde\x2e\x18\x3a\xeb\xd6\x1d\x0f\x8d\x72\x9c\x57\x56\xa6\xc4\xa7\xb7\xf4\x67\x7c\x5f\x98\x9f\x8c\xb3\xac\xfa\x25\xcf\x30\xdb\xcf\x32\x4d\x1c\x4c\x3d\xa1\x86\x95\x85\xf9\x95\xa9\x52\xd0\x40\x53\xef\x4a\xd6\x03\x02\x10\xef\xbb\x02\x8a\x17\x55\x81\xe9\x6a\x55\x70\xa2\xae\x01\xa8\x6c\x17\x4b\x80\x54\x59\x31\x1f\x63\xe1\x98\x73\x52\xbf\x5b\x04\xd7\x78\xc4\x9e\x34\xbd\x9d\x15\x67\xb6\xb1\x86\xeb\x44\xd4\xf8\x36\x65\x14\x26\x75\xfb\x5b\x5a\x24\x59\x28\xd3\xc9\x81\x78\xd5\xca\x96\x4b\x3f\x43\x5b\x3d\x88\x9d\x2c\xb7\x04\xc1\x67\x9b\xc3\x9d\xdd\xdd\xfe\xbf\x0c\xea\xfe\x49\x0c\xea\xde\x93\xe4\x1b\x99\x10\x97\x15\x9d\x30\x8a\x13\x56\x74\x2f\x9f\x3d\xef\x55\xac\xe8\xa4\xed\x5c\xac\xed\xe9\x64\x1c\x0c\x64\xc3\x5b\x61\x30\x77\xc5\x2b\xcf\xd3\x54\x60\x60\xf2\xcd\xaf\x9e\xd7\xe2\x53\xee\xb0\xad\xe3\xf4\xb6\x6c\x5d\xa7\x2c\x2d\x8c\x71\xdd\x35\xa7\xe1\xda\x80\x8e\x39\xcd\xea\xb4\x2a\x5f\x3e\x40\x54\x8d\xed\x6c\x07\x64\xfd\x2d\xb3\xbe\x09\x62\x79\xe0\x70\x93\xba\x20\x99\xb8\x40\x3e\xcd\x19\x3f\x6c\xb2\xec\x36\xcc\x24\xc3\x1d\xa1\xad\xbe\xb1\xf5\x60\xe4\x06\xbf\x27\x09\x2e\xe4\x12\x9a\x9c\x4c\xe9\x2d\x9f\xb6\xb8\x89\x62\xfe\xb1\xfc\x66\x2d\x8d\x5e\xc4\xd1\x3d\xbc\x26\x8c\x19\x51\xac\xb1\xa9\x0b\x68\x20\xae\x62\xd3\xe9\x4f\x2a\x9a\xcc\x23\x3a\x6d\x68\xea\x02\x6a\x77\x5a\x7e\x83\xe7\x97\xb5\x24\x55\x7b\x69\x1a\xde\xdb\x0f\xf2\xcd\x2b\xee\xb2\x52\x58\xf1\x9c\x1f\x87\x19\x13\x1b\x23\x19\x0d\x4d\x78\xad\xad\xd0\xdb\x7d\x8c\x67\x31\xc1\xd9\xc8\x5c\x00\x0d\x36\x0a\x25\xc4\x29\xac\x70\xac\x3e\x05\x80\x7d\x1b\xcd\x1d\xf8\xd0\xab\xc3\xf7\x7b\x90\xae\xb0\xb7\x28\xa1\x3c\xf4\x04\xae\x8b\x70\x3b\xd2\xde\x62\xd1\x8c\x87\xf5\x01\xfd\x29\x9d\xf3\xdb\xc4\x2b\x79\xf5\x8b\xae\x3f\xd0\x1b\x5c\xb6\xbd\xfa\xee\x9e\x22\x7a\x9b\x38\x7a\x3a\xa0\xb7\xc9\x9f\xdc\xd3\x7c\xe6\xe8\xe7\x97\x59\xa9\x97\xbc\x3a\x5b\xcb\x64\xa3\x8c\x6e\xd8\xc4\xb6\x90\x9f\x67\x4a\x5f\xfc\x2e\xa5\xd7\x45\x35\x13\xb1\x49\x0f\xa5\x4e\xcc\xa4\x62\x93\x69\x55\x6e\x7d\xab\xfb\xc3\xe2\x71\x77\x4c\xaf\xf9\xa1\x8a\x3e\x87\x6c\xea\x57\xe5\x7a\x62\x94\x62\x85\x11\x00\x43\xe4\x0c\x0b\x35\x37\xb3\xac\x02\x8d\x1e\x59\x5a\xb9\x7a\x00\x48\x8f\xe3\xd5\xd5\xba\x22\x68\x93\xa7\xb5\xbc\x79\xb1\x2e\x6f\xc5\xc1\xd9\xc7\x71\xdc\x6e\xb3\xe0\xae\xb0\x13\x29\x7d\x0b\xee\xf8\xd7\xfb\xa6\xaf\xf7\xcb\xa5\x6f\xef\xcf\x4f\x32\x44\x94\x31\x1f\x2c\xd5\x46\xcc\xec\x95\xac\x87\x2d\x85\x4e\x41\x88\xb7\x10\xc2\x1c\x70\xf5\x90\x82\xf2\xe5\xd4\x74\xaa\xc3\xec\xdb\x3b\x9a\xaa\x00\x54\x5b\x7d\x00\xad\x17\xac\xd2\x0d\xa0\xf5\x74\xd6\x35\xa7\xaf\x7d\x4e\xe9\xf6\xaa\x0f\x2b\x56\xbd\x80\x57\x80\x18\x98\xd9\x6f\x38\x9a\x9e\x08\xe5\x65\x17\x59\x0a\x2a\x07\xf5\x6b\xb7\x99\xe9\xa2\x81\x3c\x6a\xc7\x23\x8c\xde\x2c\x70\xe5\xa7\x18\xa6\x76\xdd\xe1\x32\xa3\xfd\x5b\x3a\x32\xae\xa2\xbd\xd2\x05\xc6\x48\x17\xd6\x55\x89\x83\x7b\xc9\x6a\x10\x8e\xea\x1c\xa3\x65\xf0\xac\x14\x66\xe7\x74\xd2\x6a\xbc\xbc\x03\xbb\x2c\x0b\x70\xc2\x52\x82\x33\x1f\x00\x8e\x06\x05\xfa\xaf\x9c\x30\x97\x1f\x52\xe9\x5e\x43\x8c\x31\x06\x1e\x7f\xb3\x83\x9d\x1c\xe3\x8c\x4b\xb7\x29\xc4\x22\xae\x89\xe0\x2a\xb3\xa0\x1c\xb1\x2d\xb8\x87\xcc\x8e\x85\x56\x1c\xdf\xea\x0b\x0d\x1b\x99\x28\x6b\x0b\xe1\xfa\x8c\x73\xa3\xe4\x6d\x18\x24\x17\x88\x38\x83\x04\x37\x1b\xe2\xea\x1b\x50\x78\xba\x15\x66\x5c\xeb\x56\x55\xdb\xb1\x68\x76\x8b\xdf\x0b\x22\x1e\x40\xc6\xc5\xdd\xe4\xca\x9a\x7f\x73\xaf\x1c\x39\x9a\xdb\xda\xd6\x2b\x1c\x49\x4e\x30\x33\x74\x2d\x45\xbd\x61\xfa\x9a\x89\x51\x0f\xd3\x82\xaa\x65\x88\xe9\xbd\x13\xfe\x56\x65\x6b\x3c\x3d\x6c\x61\x94\x67\x74\x58\xd9\x19\x3b\x87\x14\xa5\x12\x71\xc5\x2b\x8a\x34\x81\x0d\xee\x5f\xe3\x51\x6f\xe0\xf8\x70\x07\x93\x72\x7d\x9c\x44\xc1\xfd\x1b\x3c\x72\xb1\x0b\x63\x1a\x67\x83\x5a\xed\x3b\x8b\x46\xd3\x21\x7e\x8d\x12\x49\x9d\xc5\xbb\xe3\x34\xcc\x44\xd8\xb3\x2c\xc8\x66\xe2\x05\x8a\x75\xbb\xb0\xaf\xc2\x3f\xe4\x44\x18\x6f\x63\x21\xc0\x35\xee\xb9\x12\xe5\xc4\x15\xb2\x62\x07\x14\xb9\x23\x95\x67\x51\x67\x65\x29\x55\x5b\xb2\x67\xb3\xad\xa3\xbb\x3d\x9f\x16\x03\xed\xf6\xaa\x11\x89\x4e\x18\x50\x12\xac\x7a\xdc\x6b\xb7\xd3\xe2\x25\x21\x0d\x26\xfc\x62\x36\xe6\xb6\x15\x3a\x2a\x31\x15\x32\x20\x02\x77\xf9\xa4\x60\x89\xe4\xad\xf0\x11\xdf\x4a\xb2\x28\xe3\x73\xad\x1a\xca\x23\xcf\xc4\x16\x01\x2e\xbd\x7a\x73\x1f\xf6\xbd\xbc\xc9\x0e\x8c\x36\x5e\x01\x32\xf1\x53\xb0\x68\x5c\x83\x54\xa3\x94\x76\x10\x27\x79\x95\xd7\x32\xba\x93\x6b\x5d\xc2\x5b\xa2\xba\xf0\x56\x66\x9e\xd4\xb5\xbb\x55\xab\x57\xa6\x7b\x7f\x02\x93\xc4\x34\x11\x2a\x0f\x10\xd5\x87\xf8\xb0\x8b\x97\x19\x3b\x93\xea\xa7\xa0\x88\xba\x05\x1b\x6a\x30\x7c\xc7\xb4\x19\xab\x7d\x63\x5b\x77\xb1\x6b\x60\x25\x4e\xb2\xdd\xf6\xb7\xf0\x72\xb9\xc5\x8c\x09\x6a\xb5\x97\x12\xad\x7a\x23\x3c\xa8\x57\x55\x14\x44\xea\x35\x12\x26\x1f\xc5\x4a\xbc\xe7\xe2\x84\xef\x5a\xe7\xfa\x92\x38\x46\x09\xea\x95\xb5\xc4\x25\xa4\xb4\xc8\x92\xf6\x56\xcb\x78\x79\xed\x80\x5a\x18\x54\xe9\xf4\x21\x48\xe4\x02\xf0\x10\xbc\x6a\x3a\x5d\x85\x4d\xb5\x35\x75\x17\x46\x64\x2c\x64\x18\x2d\x94\x22\x8a\xd0\x24\x1b\x2c\xe6\x5a\x54\x1e\xc8\xc5\x92\x21\x09\x05\xe7\x54\x54\x5b\x2e\xeb\x65\x81\x69\x09\x67\x94\xf0\x5b\x53\xea\xaf\x1f\x0c\xa7\xd4\x3a\x87\x24\x13\xec\x32\x8e\x06\x5b\xbd\xdc\xd2\x7e\x28\x66\xbb\xb4\x5c\x78\x15\x3a\xd4\xbb\x42\x8b\x1c\xba\xb4\x55\x9c\x2b\xab\xd7\x86\x8b\xf2\xbc\x16\x57\x98\x0d\x2c\xdf\x88\x62\x61\x47\x72\x65\x47\xcd\xd3\x82\xc2\xbe\xaa\x10\xd2\x6b\x6d\x5d\x27\x46\x7c\x68\x86\x59\x36\xa7\xdf\xbc\x5d\x33\x6a\x04\x66\xed\xf5\x70\xb4\x37\x51\x21\x71\x31\x7a\x75\x15\x63\x2d\x6f\xc9\x10\x39\x5d\x05\xdf\x93\x51\x72\x61\x81\x53\x0f\x5c\xb3\x02\xa5\x84\x6d\xd0\xc3\xd6\x6b\x35\xc4\x2d\x84\xd8\x86\xab\x35\x2f\xf4\x4a\x9b\xaf\xd4\x84\xa4\xd8\xa8\x9d\xd4\xa5\x61\xae\xbf\x3c\xcf\xc1\x0a\x45\x9e\x15\xbb\xa1\xe6\x4a\x23\x5f\x81\x71\xf4\x17\x82\x6f\x67\x34\x65\xca\x2c\x12\x4b\x66\x7e\xfd\xb5\x26\x0f\xa2\x20\xcd\xa3\xde\x40\xfd\xd5\xe9\x77\x5c\x0c\xa2\xb2\x8b\x16\x46\xf4\x86\x97\x6f\xae\xd2\xe9\x77\x04\x2d\x2f\x9c\x38\xd7\x5d\x0c\x6c\xb3\x8b\x81\x14\x1b\x55\xbd\xb7\x58\x21\x3f\x54\xce\x7b\xd5\xc2\xe3\xcf\x25\xc2\x06\xe1\xaa\x02\x77\x9e\x0b\xa5\x4c\x41\xa1\xca\x0f\x46\x0e\xc4\x6d\xc4\x41\x83\x53\x96\xf2\x6c\x33\x44\x5d\x81\x84\x4c\xbe\xa1\x3f\x94\x48\xc8\x37\x57\x87\xbb\x71\xe5\xc4\x03\x00\x99\x0c\x95\xdd\x6e\xab\x3f\x7c\x22\x62\x34\x09\xbe\xc3\x75\x2a\xca\xce\x00\x62\xe3\x8d\x2f\xc0\x0a\x7c\xcc\x4a\xa6\x51\x25\x2d\xaf\x04\x4c\xb4\x4c\xd4\xed\x43\xfd\xf7\x7d\x37\x15\xbf\x84\xa0\xa3\xfe\x95\x65\xf2\x96\x02\x43\x9f\x29\x59\xc9\xa1\xb2\x1e\xe8\x2f\x35\xbd\x32\x08\xf8\xcc\xfc\x4c\xed\xbc\x64\x5d\xfe\x94\x9d\xef\xff\x99\x3b\xdf\xff\xee\x9d\x57\xae\x67\x2b\x36\x5f\x68\x81\xf9\xe6\x8b\x3f\xec\xcd\xaf\xf2\x2b\x8e\x8d\xd7\xdb\xf4\xa4\x49\x5e\xed\xe0\x8a\xbc\x9b\x9a\xa6\x62\x2f\xd7\x37\x94\x5b\xcf\xe5\xf1\x15\x95\x59\x70\xa7\x9f\xce\xc8\x6b\x94\xb5\xdb\xd9\x6b\x94\xe6\x2b\xa4\x81\x9a\xed\xc9\x3e\xa5\x69\x94\x59\x2e\x55\xf5\x5e\x9c\x1f\xa4\xf9\x93\x10\x8f\xd4\x0b\xea\xdd\x20\x3d\xeb\x9d\xc3\xfb\x41\x7a\xd6\x3f\x5f\x4b\xa7\xf3\xbc\xf9\x44\x58\x4f\x57\x1a\x76\x7f\x80\xe1\x7d\x7f\xc0\xe0\xdd\xf6\x80\xc0\xfb\x6d\x69\x1b\xaa\x22\x6a\xb9\xc6\x3c\xb9\x1a\x64\xb9\x30\x74\xb2\x1e\xd9\x2c\xeb\xa6\x0f\x36\x99\x14\x56\x4d\x71\xd5\x74\x49\x1b\x34\xbd\xb5\xa1\xf3\xd2\x67\xbc\xee\xfb\xba\x38\x0b\xce\xe1\x18\xe4\xf0\x55\xef\xd9\xf6\xf7\xbc\x80\x97\xbc\xf9\x64\xec\xda\xeb\x19\x7b\x1f\x5e\xe2\x92\xe1\x4a\x51\xe8\x69\xbb\x95\x16\x49\x66\x73\xe6\xd5\x60\x78\xa7\x94\xb6\xae\xe7\xe3\x69\x4b\x06\x19\x6b\x31\xda\xd2\x7e\x57\xb0\xa5\x82\x0e\x62\x5e\xca\xb7\xb5\x75\x1d\x26\xf3\x30\x8e\xef\x45\x01\x0e\x23\x2f\x87\x3b\x2f\x76\x7a\xff\x7a\xe6\xfe\x27\x79\xe6\xfe\x94\x8d\x1d\xa9\x3b\xac\xc7\xee\xdd\x7e\x5f\xbe\x75\x8b\x87\x6d\xa1\xcf\x0a\x51\xbd\x5d\x43\x66\x0f\x7d\xd5\x94\x5f\x93\x2b\xb1\xb9\xab\x0f\xd2\x54\xc2\x36\x2f\xd2\x2b\x32\x7b\xac\x20\x3d\x85\xd7\x26\xee\xf6\xa5\x6e\x8c\x94\x9c\x59\x98\xaf\x2f\x58\x4d\x25\xcf\xce\xcd\x15\x5e\x1e\x9a\x6d\x1e\x28\xd8\x28\x15\xa3\x5b\x87\xb9\xdc\xc7\x71\x7c\x10\xb2\x10\x86\x92\xd2\x9e\xa6\xe4\xfa\x1a\x47\xef\x05\x12\xa9\x00\xff\x31\xea\xf6\xe1\x98\xff\x6f\x5e\xd7\x07\x86\x42\x1f\x28\xd2\x54\x6c\x21\x34\x5e\x2e\x85\x5e\x53\xb9\x34\xf8\x9c\x73\x14\xba\xce\x98\x86\x91\x88\xa5\xcf\x04\xd6\xf0\x3a\x87\xc2\x8e\x00\x47\x7b\x8c\xa5\x99\x0f\xda\xed\x24\xc0\xaa\x28\x98\xa7\xf1\x51\x24\x9a\x8a\x54\x06\x63\xb0\x18\x23\x06\x63\x54\xad\x32\xd4\xd9\x2f\xf2\x79\xed\xdb\x16\x42\xb1\xd0\xd7\xcb\x91\xb5\xdb\xfe\x5c\xeb\x1a\xe7\xcb\xa5\x2e\x64\x08\xa1\xb0\xdb\xaf\x6e\x4c\x79\x27\x55\xa6\x80\x6f\xc2\x02\x2d\x06\xa3\x60\x9e\x12\x15\x5b\x5e\xe3\x5b\x91\x75\x63\x2c\xb2\x6e\x60\x93\x73\x83\x75\x78\x7f\x6c\x4b\xf4\x33\xea\x0d\xfa\x40\x7c\xce\x55\xf2\x84\xad\xbe\xd4\x7e\x8e\x82\x30\x8e\xe9\xed\x47\x9a\xfc\xc4\xd8\xec\xb3\x8e\xfb\x0d\x8a\x64\x3f\xd8\x24\xfb\x21\x60\x78\xe6\x4d\x19\x9b\x0d\x3c\x28\xfe\xcd\x06\x22\x3e\xeb\x38\x9e\x47\x42\xdc\xd6\x61\xc3\xc1\x72\xe9\x27\x7c\xd6\x45\xfa\x1c\xfe\x33\x4f\x96\xcb\x54\x25\x00\x11\x89\x3f\x08\x94\x79\x40\x68\x91\x00\x44\xdd\x0d\xd9\x28\x2b\x69\xc2\x20\x05\x83\xa9\xdf\x83\x0c\x40\xc1\x90\x16\xf5\x24\x83\x3a\x0a\x54\x2d\x28\x58\x16\xeb\xb3\xf8\x6d\x3e\xe7\x20\xe7\xd8\xb4\x21\x2a\x8c\x7c\xf7\xfe\x83\x81\x2f\x10\x93\xa3\x28\xc8\x73\xe6\xa7\x9c\x9a\x18\x4b\xd6\xa9\x3c\x73\x64\xe2\x8f\x69\x32\x21\xe9\xb5\xff\xf5\x80\xb6\xee\xe9\xbc\x75\x1b\x26\xe2\x82\xb1\xaf\x95\x1f\x16\x2c\x1f\xfd\x96\xfc\x96\x7c\xd9\x3b\xfe\x78\xf4\xf1\xc7\x41\xeb\x74\x4a\x32\x19\xf7\x5f\x46\xf9\x9f\x51\x8e\xd5\x44\x5c\x3b\x97\xb8\x15\xf1\x35\x4b\xe9\x3c\xfb\x6a\x09\x48\xb5\x04\x04\x2a\x61\x13\x76\x25\x20\xc0\xff\xb8\x04\x04\x79\x9d\xd4\x85\x92\xb5\xe8\xc1\xc4\xc1\x2f\xf0\xad\x38\xfa\x54\x22\x1e\x92\xe5\xe0\xc5\xa5\xd3\x00\xce\x61\x08\x72\xf8\xbc\xff\x6a\xe7\x7b\x38\x08\xc9\xc7\x14\xc1\x60\x0c\xd7\x50\xfd\xe0\xa4\xd0\xa0\x64\x52\xae\x13\x1a\xad\x0a\xc6\xc5\xca\xbe\x02\x26\x07\x12\x3a\x3b\xaf\xa5\x2b\x08\x4b\x41\x5c\x0b\xe1\xa2\xee\xd8\xa0\xb6\x7b\x1c\x26\x63\x1c\x57\x62\xbf\xba\x60\x99\x07\xba\x52\xa9\x9a\x3c\xc8\xc3\x28\x3a\x2e\x8f\xcf\x32\x3f\x77\x8f\xbf\xe2\x53\x5b\x06\x5c\xbc\xf9\x96\xfb\x5b\x37\x1f\x77\x30\xdb\x42\xd9\x24\x5c\xf9\xd5\x48\xad\xe8\x1c\xe5\x5e\x72\x3b\x16\x02\xb1\xfc\x88\x64\xc8\x06\x02\xf5\xbc\xb7\x10\xc2\x23\x3c\xe8\x41\x56\x14\xb0\x11\x1b\x94\x1b\x14\xde\x1e\xf4\xf6\x84\x53\x5b\xab\x72\xa9\x7c\xf4\x21\x64\xd3\xe0\x9a\x58\x7e\x8c\x27\x32\xda\x0d\x18\x60\xcb\xcb\x22\x89\x1c\x10\x0e\x93\x48\xb5\x0f\xef\x7c\xbb\x14\x32\x30\x60\xff\xa9\x8b\x9c\x57\x4a\x2c\x93\x07\x17\x36\x41\xa3\x2c\x2e\x2f\xc3\x72\x59\xff\x70\x98\x44\xae\x62\xb1\xee\x65\xde\x43\x7e\x9a\x27\x15\x34\xcd\x7c\x60\xbc\x84\xeb\xcb\x27\x97\xbf\x07\x20\x43\xf5\xbd\x11\x6b\x5b\xd9\x69\xcb\xf3\xc9\xde\x6a\xd7\xe6\x41\x17\x21\x10\x24\x02\xae\x18\x6c\xee\x2e\x5e\x18\x0b\x84\x16\x6e\x19\xfb\x83\xea\x91\x03\xd8\xef\x99\x11\x3a\xc8\x49\x9e\xc3\x9d\xed\x9d\xe7\xdf\x67\xf7\x5d\xf1\x03\xb0\xac\xbd\x77\x9e\xf7\x9f\xc9\x50\xf1\xd2\xa0\x53\x98\x76\xee\xee\x2a\x76\x57\x86\x4a\x0c\x79\xd9\x8b\x1d\x1d\x2f\xfe\xf9\xcb\x9e\xb4\xed\xdc\xe9\xf7\x5e\xc8\x08\x89\xbb\x2f\x9e\x3d\x03\x70\xce\x19\xe4\x57\xbb\x3d\x00\x23\x5e\x6f\xfb\xd5\x73\x00\x2f\x10\xf1\x9f\x6d\xbf\x04\x70\x22\xfe\x78\xfe\x0a\xc0\x2b\xc9\x50\x3f\x03\x70\x86\x88\xff\xf2\xd5\xce\x33\x00\xaf\x39\xb8\x6d\xde\xc5\x0d\xef\x76\xa7\xbf\x0d\xe0\xa5\x09\xc7\xb8\x8f\x88\xff\xfc\xc5\x4e\x1f\xc0\x13\xde\xa2\xb7\xbb\x0b\xe0\xbd\x68\xcb\xe1\xdd\x1a\x1b\xd4\x3d\x6d\x83\x7a\xca\x1b\x88\x2e\x0e\x45\xd1\xce\x0b\x00\xef\x24\xfb\xfe\x0c\xc0\x63\x44\xfc\x17\x3b\xaf\x5e\x01\xf8\x8d\x0f\xe5\xd5\xb3\x3e\x80\xef\xc5\x6c\x5f\x3c\x03\xf0\x83\xb1\x5f\x3d\xe0\x5f\x9f\xed\xec\x02\xf8\x59\x44\xd0\x7f\xfe\x02\xc0\xb7\xbc\xed\x8b\x57\x40\x65\x98\x7b\x67\x4c\x58\xef\x83\x7d\x9a\x9a\xfc\x18\xc2\x88\x95\x26\x32\xac\x46\x85\xe8\xaa\x62\x69\xf2\x98\xcb\x8a\x22\x9e\x53\xad\x1e\x2f\x2d\x55\x33\xa1\xaf\x6a\x55\xf5\x17\x65\x83\x59\x6b\x75\x1a\x5e\xba\x1b\x9d\x86\x97\xae\x36\x5f\x48\x1c\x8b\xbc\x23\xb5\x46\xfa\x8b\xaa\x5e\x4e\x43\xb4\xc8\xb5\xf5\xad\xbe\x44\x2e\x25\xb9\x42\xa7\xea\x04\x7d\xc3\xf7\x07\xf4\x36\x91\xc2\x83\xa5\x47\x53\xe5\x27\x18\x27\xa5\xc2\xcf\x29\xce\xb2\x5a\xed\x79\x32\x4b\xe9\x18\x67\x22\xb6\x5b\x18\xfd\x8c\xef\x6d\xe3\x59\x87\xa3\x97\xf8\x54\x32\x5a\xdd\x0b\x3e\xcc\x99\x30\xf7\x2b\x8c\x42\x8d\xd5\xab\x54\xb1\x7d\xa0\x37\x2e\x73\xd7\x5b\xb7\xb9\x6b\xb5\x4d\x09\x4c\xc5\xaa\x96\x0f\x78\x63\xc0\xa6\xb2\x6c\x58\x01\x25\x59\x9c\xcd\xa1\xd9\xf5\x4d\xf3\x0a\xcc\x4a\x70\x87\xcd\x81\x3b\x1b\xd6\x01\x56\xba\x13\x51\xc5\x1f\xda\x55\xad\x51\x19\x50\xa5\x8b\xb7\xc2\xd2\x6f\x53\xd8\x45\x6d\xd5\xb4\x02\x4d\x1c\xe0\x4d\xc1\xa9\x83\xfc\x80\xea\x95\xc3\xfc\xc0\x96\xc5\x89\x7e\x40\x43\x7d\xaa\x37\x6e\x92\x61\x36\x2f\xe2\xe6\x14\x5a\x6a\xc3\x22\x2b\xb6\xa3\xee\x53\xa9\x7c\x76\x8f\x54\x04\x01\xff\x7d\x70\x50\x6d\xad\xc1\x3a\x9b\x67\x98\xa9\x3f\xfd\x0f\xc1\x51\xad\x6d\xd3\x88\xc0\x0a\xeb\xfd\xcd\x07\xfb\x36\x70\xe9\x41\x37\x1c\xee\xa5\x53\x8b\xda\x3c\xae\x15\x43\x76\xe7\x58\xdb\x7c\x1e\x61\x55\xa2\x6b\x30\x64\x17\x0a\x56\xa5\xe9\x11\xc4\x43\xb0\x99\xfc\x48\x58\xcc\xa5\x3a\x23\xe2\xa9\xa5\x29\x6a\x9f\x1b\xd0\xb1\x15\x0c\x4d\xc9\x7f\xaa\xb1\xe1\xf6\x1f\x06\xf0\x04\x27\x91\xbc\x75\xed\x38\x80\x33\x9a\x32\x75\x17\x3f\x70\x78\x19\x66\x05\x24\x95\x27\xe8\x41\x20\x54\x2e\x1c\x25\x0d\x1f\x8b\xa1\xd8\x71\x34\xf9\xef\x72\x9d\xe6\xf8\x91\x95\x1e\x94\x47\x5b\x25\x86\x25\x2f\x54\xcf\x0a\x4e\x63\xf7\xdb\x60\x42\xd3\xdb\x30\x95\x6e\x62\xa0\x01\xb4\xb9\xb8\x1c\x57\xe2\xa3\xa1\x5a\xe4\xd9\x45\xfb\x1f\x0d\x57\xd3\xcb\x26\x02\xfa\x5d\x80\x4f\xc3\xcb\x06\xf2\xfa\x30\xdf\x0f\xb3\x4f\x22\x12\x96\x09\xc0\x2a\x1e\x6f\x9a\xe2\xb0\xfa\x3d\xb8\xd7\xec\xb6\x32\x9e\x67\x8c\x5e\xff\x8c\xef\xc5\x14\xb4\x03\xaa\x2d\xc9\xa8\x97\xf2\x91\x15\x9c\x65\x54\x0f\x16\xa1\xa3\xdc\x5a\xb1\x29\x4b\x58\x54\xc8\x86\x6c\x8a\xaf\xcd\x23\x52\x21\xde\x30\x2e\xde\x60\x99\xb7\x17\x43\x82\x3c\x4f\x67\x51\x63\x2a\x3f\xb1\x4c\xa4\xb6\xbd\xfb\x7c\x80\x91\x37\xa1\x29\xbe\x4a\xe9\x3c\x89\x3c\x5e\xb9\xdf\xf3\xec\x34\x65\xdb\xbb\x2f\x78\x25\x2e\x00\xd9\x95\xfa\x95\x4a\x2f\x79\x25\xf9\xce\x29\x2b\x6c\xeb\x0a\x91\xf4\x22\xe6\xdf\xc3\x24\x23\xe2\xeb\xb3\xa1\xd7\x51\x63\xc9\xcd\xd0\xd8\xfd\x0c\xab\x91\xf5\x06\x5a\x24\x3a\x09\xa4\xcf\x27\xa3\x62\x0d\x8e\x7f\x7c\xeb\x4b\x30\x08\x21\x6d\xae\x6b\x2f\x83\xac\x9e\x05\xbc\xce\x99\xea\xe2\x7c\xd0\x58\x4f\x84\xf8\x10\x5f\xb9\x2c\xaf\xbf\xd5\x3c\xea\xbf\xfe\xb0\xb8\x0b\xf6\x7b\xc1\xe1\xc9\x7e\x7e\xfe\xc3\x82\xe4\xc3\x1f\x16\x7e\x0f\x7e\x0b\x18\x3d\xbe\xba\x94\x01\x13\x81\x9f\x82\x5c\xd4\xeb\x5f\x1c\x9e\xec\xef\x7d\x3e\x3c\x08\x4e\x4e\xf3\xaf\xa5\xa4\x6f\xfd\x01\x99\x58\x13\x00\x8e\x81\x5d\xd3\x88\x4c\xee\xc5\x6c\x33\x8e\xa5\xb8\x3c\x17\xbe\x22\xd3\x30\x49\x70\x9c\xe9\x45\xf1\x83\x20\x60\x72\x42\x40\x65\xa7\x30\xef\xc5\xc3\x4d\x7a\x38\x23\x6b\xc1\xe6\xf6\x6e\xbb\xd6\x33\xc5\x19\xa3\xa9\xc4\x54\x83\x67\x79\x9e\x6b\xce\x44\xca\x21\x55\x46\x65\xd5\x99\x11\xa2\x8f\x3c\xbd\x15\xb1\x47\x16\x2a\xed\x35\xce\x55\x44\x00\x9d\xae\xe8\x8e\x85\x29\x0e\xd5\xab\x95\xfe\xa9\xc2\x06\x2c\x94\x6b\xbb\x0c\x7a\x2c\xe4\x71\x13\x41\x4d\x64\x8e\x3a\xc6\xa1\xf0\x2b\x8f\xb0\x24\xff\xda\x6e\x08\x2c\xf0\x68\xab\x59\xa0\x91\xfe\xe2\x85\x39\xbd\xf5\x8e\x6b\x54\x8c\xcd\xed\x1e\xc0\xf0\x7c\x76\x06\xce\x10\xab\x09\x74\x24\x58\x67\x47\xda\x43\x4e\x47\xbb\x55\x6e\xf4\x2a\xd2\xa4\x5a\x3c\xfb\x10\x54\x03\x55\x64\xfa\x2a\x57\xb3\x5c\x79\x60\xf4\x69\xe9\x78\x67\x47\x3a\xc4\x78\xdd\x28\x4e\xd8\xc7\xc8\x38\x36\x86\x8f\x9d\xd2\x5b\x79\xb5\xf9\xa0\xcc\xdf\x2b\x7e\x26\xbf\xac\xcb\xe6\x7a\x93\x47\x3a\x5d\x4e\x65\x92\x4a\x9c\x2f\x23\x84\x8e\x8e\x01\x4b\x1c\x8e\x85\x5f\xda\xf7\x41\xff\x52\xe3\xf9\x47\xac\xd1\xa7\xe6\x35\xd2\x96\x24\xe5\x65\x52\xca\x08\xb5\x24\x17\xd9\x7d\x32\xd6\x93\xf5\x2d\xb3\x5b\x3d\xd9\xe5\x72\xcb\x9e\x0a\xc9\xe4\x12\x1f\x25\xda\x3c\xce\x98\x28\x0b\x37\x34\x61\xbc\xf1\x13\x8e\x67\xb2\xae\x2c\x4b\xae\x34\x94\x32\x7e\x57\x03\x09\x96\xd6\xec\x32\xcc\x70\xa7\xb2\xa6\xa5\x1a\xd6\x8b\x68\xc5\x5f\x4e\x93\xb0\xb2\x56\x51\x35\xbb\xd3\x7b\x11\x67\xdd\x3e\x28\x62\xa2\x6e\x18\x85\x06\x2a\x3f\x13\x99\xf0\x9b\x80\x22\x10\xe9\x5a\x00\x22\xc8\xc9\x93\x0c\x26\xe5\x89\x3e\x79\xe0\x00\x42\x44\x36\x6e\x22\xba\x1c\x96\xb1\xd7\x0a\xa3\x12\x76\x3c\x11\x5a\xc5\xf1\x9d\xd1\x19\x4a\x9a\x3f\xcb\x80\x2d\xb4\xb9\x82\x0a\xde\x92\x36\xd7\xe0\xfb\xf7\xd3\xda\x5a\x3a\x86\x4b\x77\xd7\xcb\x2f\x48\x42\xd8\x8f\x22\x65\x90\x79\x94\xb9\x24\x49\xf4\x33\xbe\x77\xc6\xfd\xce\xd6\x79\x83\x1a\x67\xd0\x31\x9d\xdd\x7b\xd0\x98\x0b\x4f\xc3\xcc\x8a\x29\xd9\x6e\xfb\x3d\x98\xda\xd1\x53\x80\x31\xff\x37\x41\x3e\x34\x4a\xe7\xa0\x50\x79\x63\xf4\x46\xb4\xac\x06\x40\x31\xcd\xf5\x5c\x6b\xe4\x41\xa9\x2f\xca\x0f\x6f\xc3\x87\x4f\xd0\x74\xe0\x89\x50\x28\xc2\x5c\xf8\x7b\xd6\xc9\x82\x72\x1a\x90\xec\x1d\x49\xf1\x84\xde\x8d\xbe\x03\xa2\xe5\xf0\xcb\x97\x7f\x5b\x18\xcf\x5e\xce\x19\xa3\x89\x5a\xf7\x5a\x64\x96\x86\xe5\x93\xf9\x1b\x0f\x4b\x26\xa5\xd5\xed\x29\xad\x6b\x2d\x7e\x4b\xf6\x85\xa6\x11\xdf\xc1\xc1\x77\xa1\x52\xc2\xc7\x75\x8d\x93\xb9\x9c\xd2\x7f\xd6\x24\xc4\x0e\xbd\x27\xc9\xfc\x4e\x5d\x29\x8f\x9b\x4f\x38\xbf\x1b\x73\xe8\x72\x32\xfd\xfa\xfe\xac\x0a\xad\xb3\xc9\x2c\xa5\xb4\x52\x9c\xe3\xc5\xf7\xa0\xf9\x37\x7c\x3f\x9f\x89\xa1\xca\xb5\xfb\x86\xef\x85\x47\x92\xf0\x8d\x7d\x04\xe6\x97\x20\x1b\x34\x35\xb0\x85\x9b\xd4\x9f\x04\x7d\x96\xe2\x2c\x2b\x83\x17\x2a\xf3\x3f\x05\xbe\x75\x3b\x0b\x9b\x14\x3b\x69\x43\xfd\xe6\xae\xd6\x76\x67\x8b\x78\x5c\xf7\xf3\x59\x14\x0a\x1a\xb2\x51\xf7\xb2\x76\x83\x02\xe4\x71\x03\xc0\x5c\x10\xdd\x70\xf6\x38\x89\xbe\x7b\xee\xca\xb2\x11\x17\x0f\xb8\xb3\x39\xd3\x12\xb9\x6b\x67\xe5\xf1\xd6\x99\x5a\x56\x8d\x54\xae\xce\x7e\x51\xae\x43\xf1\x89\x87\x61\x95\x48\x77\x21\xe3\x30\xd7\x82\x87\x1a\xd3\xcb\x14\xff\x3e\x27\x29\xce\x5a\x61\x4b\x6a\x17\x74\x12\xbf\xc0\x03\x45\xdc\x66\x91\x01\x10\x47\x9a\xdd\x8b\xe9\x55\xc1\xca\x5e\xce\xaf\x0a\x78\xc2\xa4\xa5\x75\x1b\x66\xad\x71\x18\xc7\x38\x6a\xd1\xa4\x15\x26\x1a\x66\x8b\x4d\x43\x26\xbe\x26\x94\xb5\x42\xc6\xc2\xf1\x14\x47\x2d\x46\x5b\x6c\x8a\x5b\x07\x9f\x3e\x54\xf8\xd9\x51\x25\x21\xb2\xd2\x09\x70\xee\xd3\xb8\x36\xd4\x23\xfa\xd5\x82\x4b\xeb\x19\x35\x02\x2b\xc2\xf6\x37\xbd\xcc\xaf\x37\xf8\x40\x9b\x75\x65\x9c\xbb\x75\xe0\xec\x6a\xd6\xe7\x32\x81\xd7\xb5\x3e\xdd\xe0\x34\x25\x91\x16\x15\x9b\x3e\xdb\x01\x7d\x35\x40\x33\x74\xd3\xa3\x83\xbf\xb0\xad\x02\xab\x40\xcb\x7b\x82\xca\xc0\x56\x24\xa0\xd2\x6b\x11\x91\x14\x79\x31\x4b\xbd\x95\xf2\x9c\x0e\x3f\xb9\x46\xec\x53\xf1\x29\x20\xae\xc7\x60\xd5\x0a\xb0\x8a\x7b\x60\x65\xa4\x7a\x59\xde\xa5\xe1\x95\x18\xb2\xde\x90\x1b\x25\xd3\x1c\x3e\x74\x9e\xd5\x96\x6e\x4f\x0e\x5d\xc9\x13\xd1\xc2\x6a\xf1\x63\x2b\x30\xaa\xa0\xa5\xe2\x81\xdf\xb2\x8f\x18\x57\xd1\xd8\x3d\x34\x19\x91\xbe\xcb\x29\x56\xe3\x9c\x9a\x47\x5c\x40\x07\x8e\x0b\x7e\xf3\xe1\x96\x9a\x35\x0e\x14\x63\x93\xb2\xec\x41\x24\xb9\xcc\x5b\xd9\x41\x6d\x34\x6d\x56\xf4\xb4\xc8\x4c\x6f\x5d\x3c\x17\x53\x41\x73\xab\x89\x09\x37\xd9\x84\x4a\x4b\xf7\xc4\x64\xa5\xcc\xbd\x14\xf5\xa5\xaf\xc0\x74\x62\x54\x99\xcd\x2a\x33\x62\x6b\x86\xaf\xab\x79\x95\x66\xab\xc6\xde\x6d\x6c\xe4\xca\x26\x17\x5e\xe2\xd8\x83\x89\xed\x0e\x20\x59\xd6\xfd\x69\x4a\xaf\xf1\xa7\x13\x75\xd3\xac\x02\x72\x3d\x8f\x19\xe1\x72\xa4\x07\xbd\x49\x18\x67\x78\x5d\xcf\x73\x46\xc7\x34\x4d\xf1\x98\x79\xd0\xa3\x93\xc9\x26\xf5\xc3\x19\x61\x61\x2c\x32\xc2\x6c\xd0\x24\x9b\xe1\x38\x16\x91\x19\x1a\xc7\x64\x22\x15\xf7\x56\xd8\x25\xd6\x39\x82\x8d\x94\x7c\x57\x41\x3d\xbe\x6d\x85\x03\xc7\xcd\x37\xd3\x68\x24\x2f\x32\x58\x46\x8e\xd1\xc8\x9b\x27\xd2\x4a\x29\xf2\xb6\xb4\x47\x82\xac\xaa\x5a\x98\x1b\x43\xb8\x42\x80\x07\xbc\xa3\x36\x8d\xd7\x75\xad\x7f\x17\x1f\xa6\xa2\x5e\x57\xd3\xbc\x55\xb4\x99\xdf\xc9\xec\x5d\xc6\xf3\xb4\x9e\x10\xad\xac\x4d\x6c\xa2\x28\xf5\x03\xac\xe1\x1a\x9d\xf7\x34\x4c\x4f\xc8\x1f\xf8\xe1\xaf\xdd\x17\xc1\x7e\xb9\x6d\x65\x8b\xdd\x23\x7a\xc8\x36\x3a\xc1\x57\x06\x6c\x12\xa1\x58\xea\xff\x07\x4c\x62\x3f\x38\xb5\x9f\xad\x36\x1f\x9c\xdd\xcc\x31\x04\x7b\x79\x45\x22\xa7\x7f\xa3\x7c\xf6\x0f\x1f\xe0\x24\xd8\x77\x82\x78\xe0\x3a\xd6\x01\xac\x1c\x60\x11\xa6\x3d\xa9\x5a\x42\x3c\x82\x82\x5c\x07\x25\x5f\x32\x75\x1a\xe8\x6d\xe6\x12\xdd\x1f\x30\x31\x07\xd4\x8a\x36\xd8\xf9\x06\xbb\xb9\x77\xb6\xac\x6f\xec\xa0\x84\x82\xbb\x38\xcf\xf5\xd7\xdb\x32\xe4\xd4\xf9\x8c\x0b\x6b\x92\x17\xef\xf7\x01\x57\x7f\xa5\x65\xf5\xfa\xb4\x3e\x0b\xee\xd0\xd5\x4e\xca\x7a\x0f\xc0\xc2\x79\xb0\x5f\x6d\xed\x52\xc2\x54\xc7\xb6\x31\x55\x6a\x6a\x58\x0e\xc7\xb9\xf1\x70\x67\x41\xd9\xa3\x71\x63\x8c\xb2\x9b\x39\x86\xa0\x20\xc5\xc6\x89\xf2\xb1\x27\x82\x16\x8e\x98\x2b\xce\x00\x76\xb1\x6a\x60\xc8\xd2\xfb\x85\xc6\x4c\x63\x70\x29\x70\xb3\x24\xb0\x68\xdf\x0f\x17\x6a\x4e\xc3\x4c\x61\x7d\xea\x9b\xa4\x84\xe5\x2a\x19\x66\xa6\x8a\xda\x23\x31\x87\xa2\x9d\x1a\xa5\xe6\xd8\x1f\xb0\x3f\xd3\x40\x9f\x35\xb7\x5c\xd0\x28\x69\x54\xba\xb4\x4c\x7b\xac\xf4\x57\xfa\x38\xda\x29\xb1\x70\x10\x5e\xd3\xb9\x88\x36\x92\xcd\x67\x42\x2f\x26\x9b\xc8\xd8\x01\xfd\x87\xd9\x11\xdd\x27\x63\xd9\xfa\x6d\x68\x69\x53\xcc\xa8\x32\xf3\x5d\x3e\x81\xb9\x81\xeb\xea\x0d\xba\x9a\xc2\xa4\xc6\x36\xeb\xa8\x6e\xa3\xb0\xc7\x28\x6a\x9a\x87\xcb\xd2\x13\x5c\x43\x20\xd2\x52\xe4\xd1\x66\xf0\x76\xc6\x87\xc2\x03\x7a\x45\x6e\xe0\x5a\x06\x5a\x17\xd4\x32\xdf\x52\x05\x50\xb7\xd2\xaa\x43\x58\x6d\xb3\xb5\x79\x36\xdb\xb5\xdb\x56\xd3\x96\x3f\xfa\xd8\xdf\x04\x27\x4e\xc5\x7b\x29\x68\x85\x43\x5f\x6f\x08\xce\x43\x6e\x47\x77\x57\xf5\xe7\x25\xe7\xf2\x55\x6b\xfd\x59\x27\xad\x69\xbb\x1c\xfd\x55\x93\xc8\xd9\x26\x85\x55\x93\xe1\x95\xd6\x85\xcd\x73\x39\xc6\x51\x1a\xde\x36\xdd\xdf\xce\x5c\x76\x51\x39\xa5\x35\xc4\x2a\x9f\x91\xac\x26\xb2\x60\x6c\x3e\x0c\xf1\x94\xa2\xee\x1c\xfd\x36\x68\x5e\x0c\x2b\xb6\x01\x15\x99\xcb\xa4\xe8\xab\x4a\x8e\x2a\x23\x40\xc3\x20\x74\x86\x6d\x69\xb3\x5c\x74\xd6\x78\x08\x1a\xb0\xc6\x98\x28\xb8\x03\x01\xaf\x15\x6f\x6a\x14\xdf\x93\x38\x64\x0b\x3a\xcd\x7d\x36\x52\xeb\xf5\x47\x30\x0e\xa4\x47\x62\x61\x1a\xac\x2f\xb4\x15\x17\xf1\x9f\xf1\x0e\xd9\x30\xa7\x6a\x80\xbc\x02\x7d\xb8\xb0\x6a\xf3\x23\x41\xa8\x7e\x8b\x83\x94\xed\x09\x73\xa3\x51\x13\x72\x45\x44\x0c\xcf\x5f\xad\xf7\x94\x39\xea\xbb\x62\xa4\x5d\x81\x12\x99\x67\x2c\x77\x6a\x30\x65\x6d\x0d\x52\x6b\x8b\xb3\x8a\xa9\xd2\x7f\xa0\x89\x91\xf3\xf2\x28\x6b\xa0\x69\x72\x32\xc3\x63\x32\x21\xe3\x92\x09\x95\x57\x1d\x75\x4d\x8a\x5f\x63\x81\x05\x2a\xab\x40\x6f\x78\x87\xf8\xf6\x78\x1e\xe3\x54\x58\x72\x98\x75\x28\x7d\xd2\xd8\xf6\xe8\x3b\x64\x1c\x7c\x72\xc1\x5b\xc5\x48\x55\x70\x1a\xb8\x4c\x01\x1a\x17\xaa\x3e\x31\xf9\x6c\xbb\xb5\x62\x72\xed\xb6\xb1\x3e\xab\x0c\x48\x15\x97\x46\xf4\x5f\x77\xa1\xf2\x06\x2d\x49\x70\x8d\xc3\x6c\x9e\xe2\xc2\x42\x44\x12\xa6\x5e\xc1\x1b\x75\xfb\xc5\x55\x5d\x58\x98\xc8\xa2\x4b\x92\x44\xe2\x24\x17\x09\xcf\x0a\xae\xba\xec\x52\xb5\xc9\x44\xa3\xe0\x80\x5e\x97\xa6\xe7\xd4\xc4\xac\x63\x32\x1a\x98\xf0\x8a\xec\x56\x65\x48\x72\x6b\x32\xa5\xe0\x5d\xda\xb4\x4a\x75\x3b\xb4\x12\x5d\x95\x42\x08\x95\x04\xac\xe0\x0a\xcb\x90\x5e\xd2\x16\x5e\xc5\xe3\x11\xbc\x44\x69\x6b\x4a\xc1\x2a\xb6\xfa\x32\xa5\x24\xcc\x0a\xcb\x62\xaa\x5e\x99\x4e\xef\x67\x78\xb9\xb4\xcd\x79\x2d\x25\xfd\x20\x43\x3b\xdb\x96\xf7\xaa\x32\x42\xc8\x46\x7e\x8a\x76\x60\xe1\xb2\x5b\x18\x27\xa4\xe6\xc7\xeb\x9d\x91\xfe\x73\xb0\x03\xc0\x20\x45\xfd\x76\x01\xa0\x37\x78\x66\xfd\xea\x0f\xb6\xad\x5f\xdb\x83\x1d\xcb\x08\xd7\x04\x8d\x1f\x64\xa8\x07\x1b\xe0\xd7\xea\x8b\x5b\x65\x90\xa1\xfe\x26\x2d\x6e\xa7\x18\xc7\xde\x40\x3c\xbb\x2a\x1b\xd7\x2f\xbc\xc8\xb6\x72\x6d\xb7\xb7\xa4\x1d\x46\x53\x05\x9f\x81\x62\xb9\x55\x36\x5f\x5c\xb0\x0d\x32\x70\x05\x56\xac\x1e\x8e\x4a\xd5\x33\xc4\x82\x08\xc7\x2c\xfc\xf5\x75\x6f\xd4\x1b\xf0\x41\x3f\xab\xd8\x63\xeb\xba\x2a\x74\xec\x96\x6f\x76\x25\xb3\xfc\x85\xd3\xe5\x32\x7d\xf3\x0c\x88\xe8\x56\xd5\xdb\x51\x59\x34\x5a\x11\x9e\x16\x63\x1a\x0f\x08\xe7\xcf\x60\x4a\x6f\x07\x44\xa4\xaa\xbc\x1b\x90\xe0\x0e\xde\x0f\x48\x70\x0f\xd5\x62\xa5\x22\x18\x05\x4d\x06\x19\x1c\xb3\x34\x1e\xb0\x80\xff\xf3\x33\xbe\x87\x61\xcc\x06\x2c\x08\x63\xc6\x7f\x88\xbc\xd6\x03\x26\x93\x7a\xff\x8c\xef\x73\x90\x6b\xbb\xf0\x85\xda\x44\xa1\xa9\x86\x62\xbd\xe5\x9f\x72\xb3\xd2\xf0\xca\xfa\xc9\x51\x4f\xfc\xcc\x21\x2d\x5a\x62\xf4\xc6\x17\x49\xd9\xb4\x29\x4c\x66\xbc\xbd\x8d\x52\xc8\x99\xf1\xd2\x24\x1d\x48\x03\xf5\x27\xd0\x7f\xf2\x8e\x35\x1d\xde\x00\x88\x7c\xb8\xb2\xda\x1a\x4e\x44\x04\x1d\xe0\x97\x9e\x9a\x9b\x19\x6c\xe9\xb3\x34\x3c\x28\xa6\x2c\x03\xba\xab\xd9\xb4\xdb\xbc\x41\x6e\x2d\x41\xe9\xf3\x72\x29\x3e\xe7\x43\x07\xb5\xaf\x6d\x35\x4d\x74\xd8\x12\x2b\x90\x22\x1e\xf9\x9e\x30\x1b\xf0\xb4\x63\xf9\x8a\x08\x35\xf4\xea\x3d\xbe\xc1\xb1\x09\xca\x5a\xb3\x3c\x78\x4b\x44\x12\xba\x16\xa3\x2d\x31\xe2\x96\x64\x8e\x06\x5e\x03\x6f\x86\xef\x44\xaa\x30\xc9\x9a\xf9\xb8\xaa\xc1\xd9\x84\xed\x6a\xe2\xb4\x0d\x27\x07\x06\x7e\xd3\x70\x7f\x49\x2e\xd5\x80\x27\x29\xbd\x2e\x0d\x39\x58\x6f\xcd\xfb\xa0\xe1\x68\x26\x10\xc0\x97\x6d\x3c\x52\xd8\xc2\xe1\x70\x7c\x75\x64\x06\xb5\x50\x8b\x16\x95\x0d\x8e\xf2\x1f\xc8\xfe\x30\xf0\x37\xc6\xd1\x3a\x20\xf1\x52\x04\xfb\xcf\xc5\xc8\x04\xae\x36\x8c\x4a\xd2\x44\x48\x65\x25\xb8\x98\x85\x59\x46\x6e\xf0\x60\xab\x9f\x73\x88\xa2\x14\xa9\xaf\xcd\x43\x52\x50\x54\xfd\xa2\xa1\x1c\xc6\x76\xb1\x3e\xf3\xd9\x72\xe9\x9b\xbf\xf5\x7c\xe7\x33\xb3\xa5\x8f\x3e\xe3\xf3\x99\xea\xed\x59\xd1\x1b\x3f\x7d\x45\x7f\xfc\x97\xee\x51\x9c\xea\x07\xf4\x59\x27\x09\xf6\x0f\xd9\x73\xde\x2c\xb0\xe8\xa8\xe3\xe2\xac\xa2\x4d\x2a\x3d\x50\xde\xaa\x19\x7b\x8a\x4b\xae\x96\xb3\x5e\x00\x2d\x09\xcc\x1b\x09\x57\x26\xb6\x7c\xed\x10\x64\x53\x3a\x8f\xa3\x77\x34\x1d\xdb\x92\xbb\x49\x4c\x2d\x68\xa3\xd9\xa0\x1a\x09\x6e\x38\x24\x0f\x20\xe2\x2b\x8f\x59\x69\xbb\xca\x04\xfc\xe1\xc2\x3a\xd4\x48\xae\x83\xd5\x6a\x64\x5f\x58\x01\x63\x57\xb1\x14\x2b\xeb\x14\x6b\xa6\xc2\x53\x49\xfe\x58\x9a\xb1\x4f\x43\xc5\x4e\x5c\x86\xe3\x6f\x95\x54\x1b\xcd\x8c\x87\xb4\xdc\x17\xfc\x5c\xd5\x78\xdf\xf8\x38\x14\xf7\x4a\x93\xef\x44\x38\x9b\xc5\x44\x46\x4c\x92\xea\xd5\x9f\xf1\x7d\x36\xf2\x3e\x79\x03\xef\xcc\x03\x1d\x1f\x17\x0c\x8d\xb7\xe7\x0d\xbc\xb7\x2a\x8b\x7f\x8a\x3c\xaf\x92\x2f\x47\xb8\x0c\x84\x97\x99\xcf\x80\x08\xcd\x9f\x76\x10\x19\xda\x4c\xfe\x4a\xbf\x8c\xb4\x08\xfd\x6a\xdf\xb3\xb9\x0d\xc0\x2c\x86\x94\x5c\xc5\x2a\xfb\x18\x8c\xca\x7b\xaf\x62\x7a\xe7\x79\x99\xda\x3d\x1c\x21\x18\x9d\x8f\xa7\xca\xe4\xb3\x14\xc2\x78\xa3\x43\x05\x56\x8c\xfc\x94\x43\x16\x71\x58\x6a\xcc\x05\xb0\x87\xed\x4e\x7d\xb5\xc9\xb0\x8d\x71\xce\x9f\x3d\x6a\x95\xc5\x69\x24\x17\x79\xd0\x3c\x76\xbe\xe4\x76\xc0\x22\xe0\xd2\xec\x8f\x02\x2b\x9d\xb4\xcc\x3d\xe9\x32\x24\x5a\xb8\xc9\xd3\x48\xd1\xa7\x7d\x4b\x33\x69\xf0\xa1\x81\x25\x91\x5a\xcc\xae\x04\xe5\x29\x15\x50\x33\xcb\x50\xa9\x9e\x97\x5c\xa5\xea\xee\x5b\x85\x8f\x0f\x61\x44\x58\xbe\x44\x9a\xbd\x5d\x53\xcd\x84\x51\xde\xc4\x27\x0a\xe4\x25\x4d\x34\x64\x90\xa0\x1e\x10\x16\xe6\x64\xe4\x4b\x9f\xbf\x5a\x8d\x95\x32\xbc\x5a\x08\xbd\xe3\xa3\x72\x73\x90\x0b\xef\x05\xbe\x13\xc2\x6e\x5d\xfc\x7a\xa4\x2b\x46\x2e\x0d\x57\xf7\x5d\x3e\x88\xc5\x56\xbb\x5d\x14\x71\xa9\xb1\x8b\xca\x2e\x56\x92\x61\x84\x73\x67\xc8\x80\x6a\x48\xb0\x8d\x63\x0d\x60\x60\x00\x56\xac\x0f\x2a\xa9\x3c\xdc\xd6\x07\xcd\x86\xc5\xd7\xf3\x4c\xc4\x9f\x13\x31\xe9\xa2\xd6\x84\xa4\x19\xf3\xaa\xb6\x99\x6e\xa8\x05\xad\xc0\xa0\x44\x7f\x9b\xb4\x37\x79\x84\xff\x43\x27\xb1\x72\xf0\xc5\x58\x7c\x0c\x8c\xf7\x85\x6b\xe0\xc2\x53\xf5\x3a\x4c\xbf\xe1\xb4\x1a\x5e\x48\x1d\x14\xf5\xd1\x6c\xd1\x07\xf1\xbb\xba\xdb\xaa\x72\x18\x45\xea\x7b\xe9\xac\xd5\x7d\xe9\x3a\xd6\xa6\x17\xda\xf5\x1a\x0e\xd5\x62\x6f\x04\xce\x46\x79\xd9\x61\x4a\xc1\xd8\x6a\x60\xc8\x34\x83\xe4\x50\xaf\x17\x50\x72\xf5\x38\x52\x8a\x12\x57\x67\xed\x30\xb3\x58\x3a\x93\x21\xb8\x3e\x96\x56\x03\xf1\x6d\x84\x6b\xe5\x6e\x1e\x78\x5e\x09\xa8\x89\xaf\x6d\xb1\x55\x8f\x9a\xa3\x8e\x3f\x6d\xa2\x84\xae\x1b\x8d\xb8\x6d\x65\xa8\xea\xcd\xaa\xf6\xcf\x8b\x88\xa3\x6b\x1a\x1c\x26\xd1\x66\x90\x79\xc5\xfe\x79\x9e\xcb\x04\xcb\xf6\x52\x37\x5d\x70\xd5\x8a\x6a\x6f\xf7\xe2\x78\x45\x23\xab\x8e\xaa\x6f\xae\x81\x75\x8d\x8a\x8a\xb9\xe5\xa4\x53\x6c\xd6\x46\x91\xab\x8a\x84\x00\x0e\x22\xee\x60\x97\xeb\xb7\x40\xc1\x2c\x97\x28\x9e\x8a\xa3\x15\x90\xec\x43\x38\xae\x18\xf3\x5f\x87\x4a\xa1\x7f\x94\x7d\xc0\x32\x0f\xbb\x54\x68\x49\x7e\xdb\xc8\x38\x75\x57\x10\xe5\x9e\x64\xc9\x35\x25\xc0\xf2\x26\xfc\x94\xfc\x92\xe1\xf4\x28\x99\xcd\xb5\x6e\xdf\xa6\x10\xda\x05\xc2\x0e\x76\x5e\x3c\x01\xd0\x38\x3e\xa5\x6f\x29\x63\xf4\xda\x07\x70\xab\x3f\x64\xcb\xa5\x77\x80\xc3\xc8\x13\x09\x15\xbf\xe1\xfb\x76\xdb\xdb\x8b\xd9\x8f\x69\x38\x9b\x9a\x32\xa3\x17\x73\xc5\xf9\x32\xb1\x8a\x09\xf2\x7b\xf0\x38\xc0\x37\x61\x3c\x0f\x19\xfe\x19\xdf\x8b\x1c\xef\x65\x67\xc9\x07\x4b\x00\xb0\xbe\xdc\x70\xd5\x6a\x03\x93\x56\xc3\xc5\xbe\xc1\x1d\xce\x98\x08\xdd\xf4\x72\xb9\x6d\xfe\xae\x88\x3a\x92\xac\x97\x6e\x2c\x9b\x09\x29\xda\x8d\xba\x6c\xc0\x56\xc8\x0a\x7d\x53\x53\x6f\x41\x71\x1e\xa0\xa6\xac\x24\x3b\x9d\x92\x34\x12\xea\xb1\x93\x29\x99\xa8\x64\x1b\x6a\xca\x32\x81\x24\x51\xe0\xb5\x5f\xb9\xd5\x17\xdc\x22\x72\x8f\xb6\xb6\x7c\xb5\x83\x5b\x58\xeb\x53\xc5\xdf\x12\xf9\xc4\x9f\xd7\x98\x85\xe2\x6f\xa9\x7a\xfe\x86\xef\x4d\xd6\x33\xf9\x8b\xdf\x85\xfb\x34\xc2\x7b\xcc\xef\x81\x37\xe8\xf9\xae\xf3\xc3\x6b\xf4\xaa\x07\x56\x60\xc5\x68\x05\xbe\xf4\xf9\xa0\x07\xbe\x18\xf4\x16\x52\x12\xe2\xe9\x5f\xdb\xed\x52\xc9\xfe\xb1\x06\x5f\x73\xd8\x2f\x7c\xe0\x7f\xc6\xf7\xd2\x0e\x61\xf1\x0d\xdf\x0f\x44\x7b\x18\xd1\x6b\x81\x71\x03\x9c\x37\xc7\x14\x58\x29\xff\x49\x38\x62\x65\xd7\x28\x35\xab\x2f\x9a\xcb\xa5\x5e\x6c\xfe\x97\xda\x82\x51\x6d\xc7\x06\x56\xb2\xd1\x2a\x15\xeb\x01\x19\x0d\xb4\x86\x13\x95\x34\x10\x8a\xee\x6c\xad\x26\x3c\xac\xd8\x7b\x66\xa1\x04\xd3\x78\xc0\x87\x49\x32\x15\xef\xc8\xae\xbe\x59\x6d\xf1\x74\x14\x89\x57\xa9\x13\x16\x32\xec\x17\xa4\x43\xf3\x7b\x85\x4f\xa4\x78\xee\x11\x87\x86\x0c\x48\xbb\xed\x6f\x31\xbe\xce\xfb\x62\xd9\xcc\x9f\x6f\x9e\xbd\x90\xe4\x5e\x66\xa0\x73\x50\xf4\xfe\x77\x53\xf4\xe5\xd2\x2f\x42\xd8\x1b\xd6\xa2\xff\x5c\x9f\x08\x39\xa4\xfe\x8b\xca\xef\x97\xf6\xef\x5c\xc0\xa9\x2b\xb9\x9c\x34\xc7\xcc\xa2\x12\x3c\x51\xce\x54\xbb\x87\x8a\x70\x3d\x6c\x68\xdf\x6f\xee\x60\x8b\x65\x94\x29\x29\x73\xfe\xbc\xcb\x4e\x03\x33\x02\x35\xc4\x86\x04\x00\x86\x8a\x1f\x32\x4d\x01\x99\xf8\x2a\x7b\x02\x0e\x6e\xa7\x64\x3c\xb5\x9e\x90\x54\x89\x68\xa5\x96\x4f\x06\xa9\x31\x6f\x5a\xaa\x85\xfc\x61\x7a\x31\x63\x61\xba\x8a\x79\xaa\xda\x62\xcb\xa5\xef\x38\x6b\xfc\x4f\x85\xac\x45\x9a\xca\x4d\xe8\x2b\x43\x32\x88\x4f\x30\x49\xe9\xf5\xbe\x1a\x41\x91\xa2\xb8\x4a\x6a\xd8\x9f\x40\x66\xec\x0c\x43\xb5\xbd\xd6\x7c\x8b\x9b\x80\xf6\x64\xc0\x60\xcb\x03\x55\x6a\x61\xa3\x90\x1f\x7a\x8f\x24\x19\x4e\x19\x67\x7a\x45\x90\xa1\x40\xd4\x3c\x15\x97\x90\xbf\x55\xa4\x9a\x36\xe1\x3c\xac\xf3\x05\x2a\x24\x65\x03\xa2\x57\x66\xc9\xec\x69\x58\x3b\xd8\x3c\x19\xc3\x56\xc9\xe1\x6f\xae\xa6\x63\x75\x35\x1d\x80\x5b\xbd\xdc\x7a\xd7\x94\xc6\xe0\x9c\x70\x1a\xb6\x68\x4c\xe3\x4c\x86\xec\x37\x37\xfd\x48\x6a\x29\xac\xea\x83\x42\x2e\xb4\x4c\x10\x0a\xbe\xad\x62\x9a\x30\x0d\xb3\xbf\x84\x31\x89\x78\x99\x71\x67\x6d\x32\x5f\xc8\xcb\x01\xc7\xac\x7c\x92\xe5\x16\xa3\xaa\xc5\x83\xa5\x10\x29\x1b\x8c\x89\x1c\x00\x32\xba\x8f\x38\x52\x55\x0e\x90\x73\x85\xcb\x65\xad\x58\xf5\xab\x7e\x0a\x00\x7b\x71\xfc\x41\x4b\xb1\x25\x3d\x8f\x8c\xd2\x92\x61\xa6\x05\xdf\x5a\xf4\x96\x35\x92\x2a\x70\xc1\x93\x9c\x07\xea\xc3\x1a\xc3\x8a\xca\xdd\x08\x80\xd5\x32\xd4\xb3\xb4\xbe\x7d\x9d\xa5\x95\x6f\xa8\xd0\xf9\xd6\xbb\x2b\xb2\xc5\xa9\xe2\x2b\xcc\xde\xc6\x61\xf2\x8d\x73\x75\xfe\x61\x70\x70\xf8\x6e\xef\x97\xf7\xa7\x17\x7b\xa7\xa7\xc7\x17\x07\x7b\xa7\x7b\xc6\xc5\xd7\x98\xf0\x49\x0a\xa0\x99\xf6\x41\x6d\xdc\x30\xa3\xf3\x74\x8c\x07\xbd\xbc\xb6\x69\x2a\x58\xe1\x2a\xcd\x57\x9e\xab\x4a\x8b\xd2\xad\xce\xbf\x16\xd8\x5a\x66\x7e\x39\x3a\x17\x88\x5d\x8e\xc1\xe3\xa6\xf2\x43\x2d\x75\xc9\x30\x5c\x06\xf7\x8b\xc1\x39\x24\xb2\xf2\x77\x97\x3e\xc1\xfa\xde\x30\xe7\x26\x45\xda\xca\x15\x11\x68\xc9\x29\xd9\x3c\xc5\x7b\x2c\x0e\x4d\x64\x89\xaa\xf2\xd6\x51\x31\x2f\x47\x9a\x94\xed\x8c\x43\xba\x2b\x19\xbe\x8a\xb1\x34\x5a\x4f\x7c\xca\xf1\xad\x06\x0f\x6a\xf0\xc9\x33\x43\xab\x45\x9a\x2c\x68\x69\xd9\xab\x46\x59\xd9\xe8\xf8\x78\x07\x81\x2b\x8e\x25\x27\xf1\xc1\x8f\x87\xa7\x17\x5f\x8e\x3e\x5e\x9c\x1c\xfd\xed\xf0\xe2\xf3\xd1\x5f\x0f\xdf\x9f\x0c\xca\x68\xb1\x3a\xe0\x50\x98\xdc\x84\x99\x8c\x0c\x14\x30\xfa\x8e\xdc\xe1\xc8\x17\xd1\xdd\x37\x6f\x2c\xa3\x06\x59\xad\x1f\x18\x61\xef\xec\xd9\xf0\x87\x05\xcb\x87\x3f\x2c\x70\xce\xca\xf1\xf3\xd6\x4c\x7c\xff\xf0\xfd\x7b\xc7\xcc\xc9\xc3\xa2\x3b\xd9\xf3\x7e\x68\x64\xa9\xef\x98\xf5\xf3\xe1\x0f\x8b\x94\xcf\x9a\xf0\x59\xe7\xb9\x11\x19\x58\x81\x16\xe6\xdc\x8b\x6f\xf2\xb9\x64\xb9\x34\x71\xfc\x1d\x0f\xb1\x38\xc8\x18\x9d\x7d\x4e\xe9\x2c\xbc\x92\x9a\x3e\x2e\xf7\xe7\xb9\x15\x85\xfe\x5d\x0e\x5f\xbd\xda\x7e\xf6\x3d\x19\x3f\x4e\xc9\x35\x7e\x1b\x8a\x8b\xbd\x96\xf4\xc3\xf1\xcd\x99\xf7\x03\xf5\xf1\xce\x9a\xdc\x1f\x91\x82\x70\x3a\xe5\xc4\x82\xc6\xd1\x87\x13\x93\xfc\x23\x0e\x4d\xfc\xda\x0f\x99\xf1\xca\x0d\xa3\x48\xd0\xea\x30\xd6\xb1\x6d\xa5\x1d\xba\x60\xa8\x6b\xc9\x41\x14\x15\xe2\x23\xa6\x73\x76\x74\xd0\x6e\x4b\xba\x22\x7f\xfb\xee\x4a\xe0\xbf\x61\x32\x0c\x93\x92\xe0\x20\x64\x38\x48\xe8\xad\x4c\x78\x93\x76\x1d\x6b\xfd\x06\x35\x6e\x0e\x70\x6d\x4d\x6a\xac\x34\xed\x8c\x17\x46\x8e\xd8\x5a\xb7\x71\x56\x26\x79\xd7\x70\x0c\xa9\x72\x8c\xa7\xab\xe3\x61\xae\x42\x8b\x22\xed\x44\x79\x9f\x75\xfe\x9f\x0c\x33\x8d\x10\x96\x9b\x50\x79\x8e\xc5\xb2\x39\x27\xbb\x09\x72\x36\x8d\x42\xbd\x29\x43\x06\x72\x57\xd6\x90\x3f\x37\x33\xc8\x7f\xb9\xc4\x1f\x79\x9e\xc3\xfe\xf3\x97\xff\x4a\x06\xf8\xcf\x92\x0c\x50\xbb\x2d\xd6\xb3\x00\xca\x0c\x29\x89\x49\x4b\x12\x9a\xc4\x23\x53\x9d\x78\x24\x2e\xe5\x08\x1c\x23\x0b\x9c\x4c\x18\xa2\xd3\x85\x4c\x83\xc2\x8a\xa1\x9e\x31\x10\xa6\x30\x83\x09\x9c\xc2\x58\xa7\xd3\x68\x88\xae\x62\x2e\xaa\xcc\x0a\xf3\xa2\x8a\xca\xe9\x06\x89\xd6\x2c\x94\xd3\x0d\xa6\x6e\xeb\x77\x94\x41\x07\x1b\x82\x12\x5d\xbb\x1e\x7a\x62\x6a\x8c\xce\xa5\xcf\xa4\x70\x23\x40\x95\xfc\xc8\xc7\xf4\x56\xc5\x6e\xac\x7c\x38\xc0\x1c\xc8\x3e\x8e\xe3\xca\x77\x49\xe5\xc6\x34\x8d\x70\x24\xbd\x7a\x64\x3e\x41\x67\x05\xbd\xd6\x6b\x61\x38\x2a\x08\x0b\x8f\x5f\x4b\x45\x27\xea\xf9\xc2\x48\x87\x17\xc2\x2c\xea\x73\x98\x32\x12\xc6\xf2\x2b\xaa\x10\xef\x72\x02\x26\x61\x3d\xa7\x09\xf2\x55\x42\x53\xfc\x11\xdf\x31\xcb\x57\xae\x20\xbb\xd9\x35\xa5\x6c\x2a\x3f\x9d\xc8\xfc\xff\xe2\x81\x8f\xd3\xe1\x41\x0f\xd2\x94\x5c\x91\x64\xc0\xaf\xea\x30\xbd\xc2\x6c\xd0\xed\xe7\x46\x57\x54\x77\xdb\x73\xa4\x71\x08\x9b\xd2\x81\xb8\xdb\x3a\xc1\xda\x69\x30\x2a\x3b\xed\x44\xcf\x80\x4e\x26\x99\x8a\x7a\xda\xad\x22\xaa\xfd\x71\xb9\xec\xef\xd6\xad\x7d\xe8\xe3\x5d\xcc\xe4\x67\xe3\xe6\xc3\x65\xe9\x4b\x92\x48\x25\xb8\x95\x63\x4c\x18\xfe\x48\x9c\x58\x91\x46\xd3\xe9\x89\xe6\xaa\x28\x1c\x63\xc5\x5f\x7b\x26\xcf\xa1\x09\xfb\x6e\xf7\xa5\x6d\x22\xe5\x4f\x50\x8e\xc5\x50\xf8\xb1\xae\x91\x05\x9c\xe3\x5a\xeb\x15\x5b\x71\x85\xb4\x7a\xc3\x45\x8c\x11\x69\xf5\x34\xc5\xd7\x2a\x36\xbf\x1f\xab\x00\xe6\x55\xa3\xac\x38\xd0\x7e\x44\x45\x7c\xef\x26\x18\x8d\x7e\x93\x9b\x3b\x74\x29\x53\x41\xcb\x87\xd0\xe1\xd2\x5b\x61\x98\xdc\xd5\x72\xe7\x00\x17\x6e\x3c\x96\x51\x65\x8b\x98\xf4\x62\xae\xc8\x2e\xe1\x72\x59\x59\x9d\xf2\xdf\x85\xe8\x3d\x3a\xe9\x9c\x63\xc9\x8d\xe0\x22\x15\xc8\xa0\xe2\x08\x55\x62\x59\xc5\xa3\x15\x27\xa0\x85\x14\xe1\xa2\xb1\xcd\xf1\xfc\x36\x48\xa8\xe8\x84\x08\xc0\x50\x31\x63\x2b\xbb\x5d\x05\xe2\x3f\x30\x5f\x5f\x4d\x39\x2c\xb6\xf9\x4d\xaf\x11\x0b\xdd\x87\x3f\x88\xb0\x74\x3c\x2b\x54\x0b\x4f\x1b\x27\x11\xcd\xd2\x35\xa8\xbc\x71\x27\xeb\x31\x7a\xd5\xcd\x22\xab\x94\x85\x06\x71\x1c\x7d\xf7\xe4\x9f\xac\x3e\x60\xa0\xe3\xaf\x1b\x4e\xb7\x61\x66\x35\x75\x94\x96\x3e\x9a\x0e\x22\x97\xcd\x0d\x12\x35\x9e\xd6\x3a\x7f\x57\x8e\x94\xbd\xba\xb9\x08\x90\xad\x7d\x98\xf0\xaa\x44\xd1\x42\x9b\xfc\xc4\xbd\x68\xee\x30\x87\xc6\xba\x63\x56\x9a\x49\x03\x9b\xd3\x73\xf3\xaf\x05\x10\x64\x05\x24\x6a\xe2\xa4\xf2\x0a\x45\xc1\x68\xab\x6f\x9d\x84\xa6\x5d\x35\xf4\x63\x45\x8a\x6c\x29\xdd\x94\xe9\x51\x23\x19\xde\x10\x1a\xb4\xb3\x5c\x1a\xc2\xe7\x40\x8b\x0a\xc2\xa3\x07\xab\x3e\x8d\x93\x53\x89\x80\x6b\x38\x36\xab\xb1\x72\xa3\xcb\xe9\x24\x56\x1e\x5b\xeb\x65\xd7\x49\x00\x8a\x80\x33\x7a\xde\x79\x89\x1b\x2b\xa9\x9e\xcb\xc3\x5e\x83\x28\xca\x48\xa2\x81\x20\x7c\x16\xa1\x68\xb5\x32\xc1\xf4\xe0\xc4\xca\xca\xed\xd3\xc4\x9f\x5b\xbb\xe8\xe4\x89\xe5\x1b\x8d\x8c\x88\x31\xe8\x41\x47\x44\x0c\x21\x5a\x9a\x77\xc7\x1a\x91\x2a\x4d\xff\xa9\x7b\x6b\x40\x77\xdd\xe1\x1d\x6e\x3a\x44\xd6\x38\xc4\xbc\x24\x85\xd8\x97\x0c\xc9\x24\x1b\x8e\xa3\xe5\xb2\x5b\x3c\xeb\xd7\x84\x96\x40\xca\x29\x6b\x2a\x49\x11\xc6\x99\xc7\xa1\x54\xfb\x33\x4e\xc7\x2b\x02\xad\x5a\xc4\x63\xf5\x70\x3a\xd6\x92\xe3\x27\xfe\xea\x61\x75\x57\xc3\x02\x00\xe2\xd7\xfd\xd1\xf7\xde\xef\xe5\x85\x36\x0f\xc0\xc2\xe4\xb1\xda\xb3\x5f\xd9\x18\xb3\x2c\x95\xd4\x9c\xcd\x2f\xe8\x56\xe3\x83\xb9\x7c\x49\x33\xa6\xa6\xb5\x79\x1a\xb1\xb3\x50\xd7\x1a\x7d\x9b\x5f\xe8\x19\x1b\xd7\xc9\xb4\x07\x4f\x1f\x33\x30\xd8\x07\xb0\x07\x06\xfd\xbc\x71\x35\x16\x6b\x7b\x36\xbc\x6b\xd3\x2e\xa2\x6e\xa3\xdc\xad\xd0\x00\x75\xfb\xf9\xc5\xe5\xfc\xf2\xb2\xa0\x58\xb6\x41\xd4\x1a\x84\xec\xac\x23\xf2\x43\x6d\x59\xc2\x5e\xf7\xda\xed\x42\x51\xde\x08\x71\xb9\x64\x6f\x7a\xed\x36\x79\xbd\xfa\xc6\x07\xc2\x4e\x45\x72\xbc\x5c\x66\x6e\xb7\x1d\x4f\x34\x5b\x7d\x90\x97\xfd\x88\xca\xe6\x88\x17\x57\x98\x7d\x26\x77\x38\x2e\xb9\x5c\x29\x64\x13\x63\x2d\xe2\x39\x3c\x68\x6f\x47\x8d\x67\xaf\xd8\xba\x9a\x26\xdb\x89\xfa\xaf\xfb\xcd\xb0\xd4\x16\xaf\xbb\x47\x36\x20\x51\xa3\x35\x38\xb2\x16\x0b\x06\xab\x01\x74\x8c\xb2\xae\xb1\x8b\xfa\x19\x5c\xdd\x60\x25\x9f\xa5\x70\x04\xf6\x5c\x6b\xbb\x9e\x0c\xe9\xef\xcd\x13\xb6\x94\x8f\x95\x93\x53\xf1\xdb\x31\x96\x23\x18\x98\x4b\xe6\x61\xb8\x54\xe0\x2c\x5e\xcd\xb7\xfe\x97\x40\xb6\x8d\x10\xa9\xf1\xfe\xfa\xbf\x0a\x4b\x72\xf1\x74\xb0\x29\x37\x82\xdd\xdc\x48\x9f\x73\x23\x2e\x32\x54\x18\xf1\x49\xef\xcc\xe5\x12\x9b\x70\x0d\x9a\xa1\xeb\x09\xed\xbb\x5e\xd5\x70\x36\x8b\xef\x25\x04\x6d\x3c\x6a\x7c\x3b\x61\x41\xd7\x54\xd1\x07\x1a\x61\x84\x50\xe1\x3f\x15\x1c\x7c\xfa\x70\x71\x70\xf8\xfe\x74\xef\xe2\xfd\xd1\xc7\xc3\x11\x7b\x82\xdc\xe8\x36\xd8\x00\xc2\xe7\xbd\x1f\x0f\x39\xed\x6c\x82\xf1\xc4\xc5\xe5\x89\x38\x7c\x50\x64\xe6\x96\xa4\xde\xe4\x6b\x10\x57\x12\x9f\x2b\x81\xc2\x2b\x55\x9e\x88\x0c\x9d\x9d\x43\x8a\xd8\x68\xb4\xa9\xa0\x92\xac\x15\x69\x8c\xe9\x13\x43\x78\xc8\x5e\xd3\x21\xeb\x74\x8a\x77\xd1\x44\x9a\x64\xc9\x98\x2d\x18\x8c\x69\xc2\x48\x32\xc7\xe6\xed\x44\x7d\xef\xf4\xc1\x28\x20\xd9\x97\x34\x9c\xcd\x70\x24\xde\x77\x3b\x08\x07\x2c\x0d\x93\x2c\x0e\x19\x3e\xa5\xd2\x28\xd2\xdf\xa2\x00\x6e\xd1\xe5\x92\x8b\x19\x89\x79\x79\x2a\xfa\x5b\x19\x43\x75\x88\x85\x09\xf7\x3e\x4d\x18\xe7\xe0\x53\xa8\x2c\xb1\x84\xbf\xb6\x84\xc5\x6f\x52\x9f\x70\x91\x93\x2f\x5b\xae\x4c\xf8\x16\x97\xa5\xd5\x1d\x64\x50\xe6\x97\x54\x05\x03\x92\xe7\x0e\x57\xe4\xff\x4c\x84\x14\x46\x27\x23\x9f\x3d\x6d\x40\xa7\x4e\xf3\xc3\x85\x20\xd5\x92\x6e\x4c\x62\x4a\x53\xbf\xf0\x61\x6e\x68\x01\xc0\x93\xc6\x6f\x6f\x7a\xa3\xfe\xa0\x88\x87\x54\xaf\xf0\x3f\x50\x1f\x3c\xe6\x80\xb8\x4f\x82\x7b\x09\xeb\xfc\x59\xf3\x8d\x32\x31\x32\x97\x6e\xaf\xed\xc7\xc3\x58\x58\xb1\x92\xc2\x3a\x7d\xb9\xf4\xc6\x2c\x8d\x4d\xa9\xb1\xfd\xf5\xc4\x3e\x9b\x72\xbd\xeb\x23\x7d\x21\x6d\xd2\xfd\x09\x97\xb1\x19\xb9\x21\xec\x7e\x6d\xab\xac\xda\x62\xb0\xbe\xa7\x5a\x9b\xdc\xe1\x87\xbd\xa8\xa9\x84\x71\x20\x7c\xa9\x71\x76\xd6\x3b\x0f\x66\xe1\x15\xfe\x35\xaf\x7b\x42\x57\xb8\xc6\xa2\x79\xb7\xde\x7c\x58\x53\xad\x34\xf6\x04\xcb\x2c\xe6\xe3\xb8\x8d\x7c\x68\xbf\xbd\xa2\xd4\x3f\xcb\xfc\x6d\x18\x07\x47\x6f\x6d\x8c\x02\x30\xf3\x77\x78\xe9\xa7\xb2\xa7\x2e\xcc\xfc\x67\x30\xa9\xc5\x27\xe7\xe5\xbb\xbc\xfc\xb8\x1c\x82\x3a\xf3\x9f\x8b\xda\x8e\xd8\xf3\x99\xff\x82\x7f\x2a\x85\x20\x3f\x87\x63\x90\xc3\x9d\x7e\xef\xc5\xbf\xac\x0a\xfe\x49\xac\x0a\x9a\x22\x52\xd6\xad\x0c\xa4\x6d\x41\xa2\x2d\x0a\xc2\x92\x45\xc1\x14\xad\x00\x55\xb6\x30\x48\xd6\x5a\x18\x54\x6d\x0b\xca\xe9\x57\xb0\xd3\x8c\x80\x35\x5b\x00\x90\x26\x6b\x5d\x63\x64\x50\x36\x26\xc8\x6a\xf5\xf5\xcd\x8b\x12\x7c\xdb\xfa\x10\x6a\xae\x39\x8c\x15\xdf\x73\xa4\x22\x35\x14\xaf\xe6\x51\xe5\x71\xd3\xb2\x63\x1a\x9b\x94\x2b\x9b\x45\x5c\x5f\x99\x66\xa5\x18\x63\xd7\xd4\xf4\x9c\xeb\xe6\x0c\x7c\x5e\x4e\x8c\xf0\xb8\x58\xf5\x85\xee\x28\xa2\xea\x19\xa8\xc0\x81\xef\x0c\x92\xbc\x68\x5c\x4d\xcd\x40\xfc\x3e\xc7\x73\x7c\xdc\x1c\x10\xb6\x51\x1f\x46\x93\x83\x59\x5a\x9b\x42\x19\xdc\x46\x89\xd4\x1b\x5f\xd8\xad\x09\xd4\x31\xa5\x19\x12\x5a\xf5\x2a\x90\xf1\xab\xbf\x69\x96\x75\x73\x74\x9a\xd8\xc7\x51\x56\xc6\xd1\x43\xe7\xbb\x0e\xee\x35\xbd\xe1\x1c\x67\xf1\x7c\xcf\x0b\x4a\x1e\xf5\xae\x90\x29\xc9\x8a\x04\xf2\x06\xe9\x55\xcc\x8f\xba\xc1\xbd\x3e\x92\x26\x9d\x33\x00\x79\x65\x36\x8b\x8a\x45\x5f\xe8\x7e\x27\x0d\x5d\x0f\xa4\x65\xec\x0c\xa3\x48\x41\x35\x26\x78\x36\x76\x3a\xd1\x1e\x3a\xa1\x2b\x9b\x45\x3e\x58\x77\xb3\x45\x91\xbd\x1e\xb7\xe8\xa4\x31\x70\x41\x51\x92\x01\x7b\xc8\xa5\x65\x1f\x36\x13\xa3\xdc\x55\xbf\x6c\xfc\x5b\x71\xdb\xab\x41\x29\x5e\x65\x44\xf5\xbf\x9a\x40\x02\xd8\x84\x16\xd5\x24\xad\xc6\x92\x39\x0e\xe4\x75\x48\x92\x83\x95\xf2\x53\x43\x0e\xad\x62\x29\x44\x26\xb2\xa2\x0e\xa3\x57\x57\x31\x76\x90\x4a\x46\x67\xdd\x38\xbc\xc7\xa9\x07\x3d\x46\x67\x32\x85\xbe\x36\x29\x1f\x05\xe2\x13\x07\x65\x27\x07\xfe\xfa\xc3\xc2\xd2\xd6\xfb\xd8\x58\xa0\xdf\x2a\x3b\x21\xf0\xb0\x34\xc6\x20\x9f\xdd\x7d\x35\x7d\xa8\xc7\x2b\x0b\xec\x54\x3d\x57\x3d\x00\xee\xb4\x78\x5b\x35\x80\x19\x9d\x71\xa8\x32\xec\x86\x10\x99\x57\x3c\xd8\xe8\x44\xf2\xf2\xe1\xe6\xfb\x3a\xb6\xf2\x21\x7f\xfd\xc1\x99\x41\xa0\x19\x12\x5f\x9a\x61\xe1\xe2\xab\x97\xe4\x6e\x34\xea\x69\xb6\x8a\xb4\xdb\xe4\x8d\x6b\x26\x63\x1a\x67\xfc\x6c\xab\x61\xf0\x89\xc4\xe1\x3d\xf2\x12\x9a\x98\xdc\x55\x0e\x94\x85\x4c\xc8\x6f\x15\xd4\x2f\x54\x79\x8f\x5a\x41\xf1\xce\xf7\xba\xb7\x5c\xb2\x37\xcd\x62\x23\xd6\xae\x38\xed\xb6\x6f\xfe\x76\x8e\x1e\x16\xb7\xb0\xb2\x96\x53\x69\x61\x4c\xde\x0d\xc9\xc8\x4a\xcd\x0b\x6a\x24\x99\x3a\xc9\xf8\x72\xe9\xeb\x5a\xd5\xe3\x0a\x0d\x4c\x07\xfb\x64\x00\x65\x1c\x90\x89\x62\x64\x91\x6d\x9b\xd7\x20\x00\xca\xfb\x5d\x7a\x18\xd8\x84\xb3\x0e\x31\xc2\x31\x16\x41\x8d\x20\x31\xb4\x9f\x5f\x77\xc4\x42\x67\xf6\x28\xbc\x24\x95\x25\x6d\xb8\x98\x47\x72\xa9\x07\xde\x65\x4c\x45\x96\x60\xf7\x92\x13\x90\xe7\x4e\x2c\x42\xc5\x66\x2c\x9c\x59\xdc\x2b\xe8\xec\x89\x84\xc7\x9c\x02\x59\x67\x3f\x4c\xc6\x53\x9a\x2e\x97\x5e\x8c\x27\xcc\x03\x23\x8d\x0e\xa2\x2e\x22\xa3\x07\x66\x4c\x17\x0b\x30\xf0\xbc\x01\xb3\xb3\xa5\x3f\x1a\x4c\xee\xba\xe1\x9b\xb7\x54\x62\xdb\x68\x83\xab\xbc\xd8\x7c\xb9\x4d\xc2\x21\x45\x08\xcc\x8d\xa2\xc5\x54\x0a\xd0\x7d\x18\x3a\x04\xe8\x6d\x48\x9b\x64\xdf\x1d\xde\xe0\xa0\x7a\xab\x4a\xf1\x9a\x56\xc5\xe8\x73\x38\x05\x39\xdc\x7d\xf9\xa2\xff\x3d\x9e\x41\xc2\x34\xef\x6f\x34\xc1\x27\x8c\xa6\xb8\xf0\x0a\xaa\x94\xd7\x3d\x82\xf4\xda\xfe\x41\x13\x2c\x54\xa8\xc5\xcf\xcf\x94\xc6\xf5\x92\x72\x3a\x3e\x4e\xb1\x3e\x87\x51\x44\x92\x2b\xb4\x98\xcc\xe3\x78\xd0\x83\x1c\x01\x06\x3d\x38\xc6\x09\xc3\xe9\xa0\x07\x05\x62\x0d\x7a\x42\x8f\xd8\x12\xfd\x54\x1f\x71\x35\x6c\xed\xab\x5a\xd1\xe7\x57\x3e\x5b\x03\x32\x26\x2c\x76\x99\x71\xd3\xad\xd7\x33\xe3\xae\xcc\x26\x0f\xa3\xa8\x8c\x71\xc2\xd3\xdb\x19\x03\x5f\x29\x4d\x6c\x66\x8a\x15\xcc\x94\xe8\x4d\xbc\xee\x48\xd3\x51\xa1\x23\x5d\x05\x47\x56\x6b\xb7\x59\xa0\x1d\x5e\xd7\x37\xd1\x35\x6d\x6b\x12\x92\xe0\x23\xbe\xe0\x19\x1e\xb3\x8c\xef\xb8\x88\x2e\x6e\x5d\x2c\xa0\x66\x1f\xc2\x4b\xf7\xa2\xbf\x87\x7c\xa7\x4e\xa9\xab\x0d\xdc\x74\x20\x76\x16\x61\xb5\x12\x61\x14\xbd\x27\x09\x76\x03\x06\xb9\x19\x45\x69\x2b\x5e\x3b\x77\x1c\x38\xb1\xe5\xcc\xd1\xfe\x5c\xad\xfa\x26\x6b\x0e\x37\x01\x67\x36\x65\xc3\x95\xd8\x08\xa8\x78\x8a\x53\xc6\x55\x24\xc1\x65\x06\x60\x23\x08\x38\x89\x1a\xdb\x5b\x7b\x20\x71\xbf\x70\xc9\x5e\x09\xb5\xd3\x39\xd7\x4c\xbd\xd5\x6e\x21\xd6\x6a\xb0\xd1\x82\x1a\x97\xed\x4d\x17\xab\xb2\x10\x83\x0a\xf2\xd9\x93\x2c\x7f\xcb\x41\x65\x99\xaa\x93\xcc\xce\xea\xa7\xbf\xdb\x3f\xaf\x36\x53\x13\xcf\x73\x61\x45\x25\xe8\x98\xa5\x19\xb6\x88\x1b\xce\x5d\x47\xcc\x56\x9c\xb1\x37\x08\x57\x77\xb6\xdd\x66\xaf\x11\x2e\xef\x56\xee\x3a\x77\x4a\x11\xba\x02\x54\xb7\x36\xa6\x33\xb2\x5c\x7a\x9c\xe6\x7a\xe7\xae\x7e\x3a\xab\x1a\xe4\x95\xe3\x29\xc3\x37\xd4\x10\xd3\x10\xe2\xda\x27\xce\xd2\x56\x3a\x2c\xde\x63\x2b\x1f\x94\x43\xd9\xee\x8b\x67\xcf\xfe\xa5\xfa\xfd\x27\x51\xfd\x3a\x53\x94\xd4\xf5\xbe\x9c\xef\xa9\x7b\x97\x3d\x93\xce\x65\x42\x03\x0c\xe3\xb5\x8c\x05\x1c\xaf\xaf\x32\x5f\x5b\x45\xa8\x9a\x23\xd4\x34\xf4\xb2\x9e\x39\xb4\xf5\xcc\x9c\xaf\xb9\x10\x5c\xec\x1a\xeb\xb4\xe6\x9c\x3a\xcb\x65\x2f\x6f\x74\x88\x7b\x80\x3b\x9c\x9d\x49\x7c\xa5\x47\xdc\x43\xf5\xd5\x15\x0f\xba\xf5\x3e\x71\x17\xe3\x32\xeb\x99\xe0\xdb\x16\xad\xf0\xa3\x7a\xdc\x22\xa8\xef\x2f\x22\xa8\x93\xe5\x98\x63\xd4\xb0\xf6\xf7\x3d\x21\xbd\x14\xdf\xe2\x30\x63\x3f\x27\xf4\x36\x71\xba\x8c\x48\x7b\xe1\xc7\xa9\x85\x64\xdb\x42\x57\x2e\x4d\x8f\xd7\x29\xca\xf5\xd6\x76\x53\xbe\xb7\x55\x9d\xc0\xbe\x00\x52\xcc\xb1\x69\x4b\x83\x99\xb0\xe8\x3d\xd4\x61\x34\x64\xac\xa1\xb7\x78\x42\x75\x32\x4c\x35\x1e\x77\x73\x6d\x76\x1b\xa3\xd2\xd8\xaf\xb0\xb4\x0f\xb8\x63\xbe\xb7\x1d\x79\xd2\x70\x21\xae\xc7\x73\xdd\x67\x77\xad\x71\x98\x24\x54\x04\x73\xe5\x14\xb5\x08\xe2\xca\xee\x50\x6c\xe6\x54\x0d\x6f\xaa\x1d\xd5\x8a\x79\xe9\x3a\x72\x77\xa4\x6e\xaf\xb9\x96\x59\x98\x86\x8a\xb6\x86\x37\x5c\xa1\xe1\x15\xd3\x1d\xd9\x32\x7e\xbe\x7a\xb4\x8b\x7f\x84\xc6\x5b\x09\x61\x22\xd8\xdc\x77\xa8\xbe\x37\x80\x9e\xaf\x5b\x67\xe7\xfc\x1e\xfc\x04\xf3\x0f\x7a\xbf\x50\xd8\xe9\xd2\xa0\x3c\xee\x09\xa3\xa2\x66\x69\x7a\xd1\x28\xb7\xd7\xd1\x87\xaa\xd1\x06\x6a\xc4\x65\xa5\x63\x45\x16\x24\x34\xbd\x0e\xe3\x92\xa5\x51\xd5\x6b\xea\x20\x0d\x95\xa9\xca\x3e\x95\x69\xb0\xec\xa3\x20\x09\x85\xa6\x93\x9a\x29\x05\x15\x2c\x6e\x3c\x29\x0f\xd8\x6a\xe7\xab\x48\xd9\x29\xa2\x52\x5c\xd8\x8e\x96\x5e\xff\xc6\x31\xc1\x09\xd3\x3e\x10\xbe\x03\x5b\x8a\x20\x6c\x55\x88\xeb\xe0\x35\x67\x7c\x7c\x7c\x9a\xb7\x06\x94\x6e\x3e\xa9\x8f\x7b\xe2\xb3\xe0\xd5\x3e\xe4\x36\x32\x58\x68\xb0\x28\x79\x75\x49\x23\xa5\xd2\x31\x11\x7c\xc6\xd3\x1d\x13\x10\x62\x8c\x49\xec\xae\x31\x1c\x07\x9c\xe5\x41\xf5\x8f\x70\x2c\xb5\x74\x18\x8e\x03\xc9\x07\x21\x06\xc7\x4a\x03\x88\xe1\x06\xc8\x3a\x97\xa0\x7b\x70\x2e\x21\xf1\x3f\x14\x24\x09\x1b\xce\x15\x38\xf9\xb3\xa3\x3b\xca\x57\xc2\x5d\xc4\x12\xae\xf5\x18\xb2\xfd\xa4\x71\x0b\xa2\x59\x0a\xaa\xc1\xb8\x6c\x07\xa1\xa7\xcd\xe7\xb4\x6c\x09\x58\x72\x4f\xa9\x5b\x95\x62\xd8\xdf\x06\xf0\x39\x58\x33\x92\x58\x2e\x05\x83\x71\xb1\xa8\xb1\x5a\x85\x42\xfb\x5f\x3f\xd9\x0b\x17\xbf\x14\x58\x02\xa9\xe4\x5c\x6b\x08\xb1\xf2\x89\xc0\x9e\xdf\x53\xdf\xb1\x38\xdd\x3e\x78\x22\x57\x1b\x48\x96\xf8\x1f\x02\x9f\x43\x06\x9a\xd7\xfe\x87\xf4\x20\x61\x03\xc5\xc6\xff\x43\xba\x48\x15\x1d\x5a\xc9\x72\x3e\xf0\x4e\xc8\x9b\x59\x42\xd7\xb5\x68\x9e\x09\xe5\x37\xf1\x53\xbe\xf1\xd5\x0e\x77\xdd\xd5\x4a\x14\xaf\x46\x5e\xe8\xe8\x73\x5a\x79\x60\x6b\xa6\xd1\xf5\x91\xa8\xb6\xb5\xa1\x34\xc3\xd8\x68\x7c\x6e\x9a\xb9\xee\xea\x2c\x68\x4e\xe9\x31\x7c\x95\xf0\x51\x79\x7e\x6e\xe4\xdb\xc7\xec\x4e\x1a\x09\x1c\xe3\x31\xf3\x7b\xb0\xe7\xd8\x10\xd7\xca\x00\xa7\x90\xa4\xed\x0d\x86\x8f\x7e\xa7\xaf\xc0\xab\xaa\xb5\x0b\x2e\x5e\x20\xa3\x0c\x62\xd1\xaf\xd2\xd0\x32\x0c\xa1\x41\x1b\x56\x94\xdd\x18\x48\x45\x92\xc8\x22\xa9\xd5\x79\x65\x4f\x4a\xb3\x0f\x3e\x03\x4d\xcd\xd1\x86\xcd\x57\xcb\x89\xfd\x15\x72\xa2\xb1\x45\x28\xe0\x15\x49\x43\xd8\x5d\x30\x21\x71\x2c\x1e\x64\x11\x2e\x69\x85\xf5\x37\xb1\xaf\xf3\x33\x6c\x46\x69\x54\x68\xd0\x7e\xb1\x6f\xa0\x1d\x75\xbd\xd9\x8a\x3b\xc9\x49\x96\x40\x37\x76\x75\xfe\x74\x1b\xc0\xf1\xa3\x47\x55\x55\xd0\x75\x6b\xc3\x04\x0f\x1e\x67\xc7\x39\xce\x9a\xe1\x8c\x9d\x92\xc0\xbd\x9d\x58\x7b\xd1\xba\xbf\x37\xef\x35\x73\x35\x94\xdf\xe0\x77\x58\xeb\x3c\xc6\xdd\xb1\x6c\xeb\xf2\x20\xd3\x9d\x7c\xd8\xa4\x81\x8a\xb4\x3d\xef\xd4\x69\xcf\x3b\x6d\x7c\x73\x74\x99\xee\xee\xf2\xfa\x75\xfb\xdf\x26\x8b\xde\x73\x18\x81\x1c\x6e\xbf\xda\xfd\x57\x48\xb0\x7f\x16\x0d\xee\x7e\x35\x6f\xc6\x2a\xab\x5d\xa9\xaa\x55\x66\xbb\xcf\x0a\xb3\xdd\x3a\x10\xf9\x04\x7d\x85\x59\x8b\x64\xea\xab\x60\x82\xcb\x6e\xe9\xc5\xa7\x06\xb5\x28\xd5\x54\x44\x27\x2e\x30\x72\x8b\x95\xef\xe3\x2f\x04\xdf\x3e\x32\x32\x58\x11\x4f\xb4\x21\x2a\x18\x85\xb5\xa1\x16\x37\x11\xc9\x4e\xb0\x48\x5b\x6a\xcd\xdf\x36\xd2\x35\x85\xda\xba\x43\xc5\xbd\x1a\xf4\x44\x0a\x9a\x9e\x8e\x72\x15\x85\x2c\xdc\x8b\x53\x1c\x46\xf7\x27\x38\x61\xc8\xf3\x72\xab\xb1\x68\x62\x18\x99\xd2\x40\x7a\xcd\x5d\x49\x52\x8f\xca\xab\x27\xd3\x3e\x94\x1f\xd8\x2b\x0b\x59\xf2\x2f\xf2\xbc\xc6\x11\x36\xb4\xae\x28\x4e\xe5\x15\x22\xc2\x74\x98\x7a\x32\xac\xbf\x75\x3f\xaf\x18\x80\x8c\x63\x2e\xfb\x52\xe9\x00\x8a\xda\xc6\x55\xac\x16\x15\xa9\x0e\xd9\x2c\x0b\x4e\xa2\x55\x8b\x92\xc3\x5e\x69\xb0\x38\x89\xcc\xd2\x4f\x48\x22\x92\xba\x59\x43\x10\x32\x7e\x91\x68\xc6\x0e\x2a\x60\xb6\x49\xdf\x57\x2e\x6c\x11\x2d\xb6\xb7\x5f\xd9\xe9\x10\x4a\x79\x03\x1e\x96\x49\xa1\x1a\x24\xde\x39\xe2\xbe\xc9\xa8\xb2\xbd\xfd\x6a\xab\x04\x4d\x0d\x5e\x7a\xc3\xec\x25\xf7\xa7\x6a\x89\xa4\x02\x24\x53\xee\xd5\x4e\xb0\xf6\xe4\x9b\x91\x42\xe7\xdf\xd3\x78\xe1\x3e\x5d\xb8\xd0\x8f\xa8\x03\xb3\x06\xcd\xc5\x71\x5a\xb9\xe7\x2a\x33\x73\xc3\x91\xed\xd5\x10\xc8\xda\x48\xd7\xae\xc9\xf4\x12\xab\xa9\x80\xe2\xb6\x3a\xc8\x79\x84\x0a\xa5\x44\x6d\x09\x46\x4e\xfc\xcc\xe6\x97\x99\xf4\x20\xc4\x7a\xd2\x7c\x62\xda\x63\x75\x5d\x6d\x4e\xeb\x0b\x07\xc1\x1a\xf9\x6b\x48\x09\x90\x8b\xf3\x20\x0c\x02\x57\x4e\xb6\x22\x5b\x34\x0e\x66\xdd\x3e\xae\xdc\x43\x23\xd7\xac\x1a\xb6\x4c\x19\x94\xaf\xc0\xe1\xc5\xaa\xb1\x0e\x1d\x88\xb0\x55\xdb\xa1\xaa\x29\x72\x19\x06\x24\x88\x63\xfa\x2c\x0e\xc7\x9c\xc3\xf0\xcc\xb3\x4a\x95\x8a\x92\x62\x4f\x34\xfd\x19\x6d\x30\x45\x22\xf2\xde\xe8\xa6\xaf\x1f\xd2\xf4\xeb\x0f\x8b\x30\xd8\xef\x05\x07\x87\xef\xf3\xaf\x25\x30\x82\x8c\x68\x45\xb6\x0a\xe0\xf4\x30\x2c\x69\xa6\xcf\x0d\x84\xd1\x2a\x75\x2a\xef\x8a\x74\x9a\xfa\xad\xa2\xa2\x37\x2d\x6c\xc7\x9c\xed\xef\x5c\x2c\x81\x30\xee\x15\xde\x9c\x0f\x0c\x46\x0e\xc9\xca\x18\x53\x0f\x34\x28\x85\xa9\x71\xed\xdf\xd0\x74\x72\xe8\xa6\xad\x96\x35\x66\xaa\xac\xa7\x57\xd4\x63\x74\x86\xc8\xfa\x6a\x3a\x00\xd7\xfa\x9a\x96\x89\xf6\x06\xb5\x27\x34\x61\xef\xc2\x6b\x12\xdf\xaf\x77\x62\x35\x55\xd7\x42\x3c\x21\x7f\xe0\x8d\xe0\xf1\x8a\x62\x90\xc6\x99\xdc\x0d\xfa\x0a\xb3\xb7\x5c\xb4\xe6\x64\x4e\xe8\xae\x84\x7a\x40\x9f\x62\x73\xd8\x9b\x96\xbe\x52\xa1\xb6\xe6\x95\xef\x96\x3a\xef\x3a\xbc\xf3\xb5\x3a\xa9\x0f\x56\xb4\xb1\x15\x6f\xb2\x91\x42\xab\x95\xad\xac\xcd\xca\x6c\xc3\xe6\x1c\x2f\x97\xae\xb8\x92\xcd\x27\x7a\xab\x07\xf8\x91\x17\x62\x6c\x9d\xf9\x9f\x6a\x11\x36\x71\x8a\xb0\x49\xb3\x4b\x6a\x41\x6a\xa4\xf4\xda\x60\x47\xfb\xea\x65\xef\xb9\xb1\xa3\xd5\xd2\x50\x8b\x68\x59\x55\xc7\x5b\x27\x4d\x3b\x09\x33\x84\xe5\x3b\xf9\xf5\x6c\xce\x70\x24\x6d\xf5\x09\x80\x14\xcd\xc2\x34\xc3\x47\x09\xf3\xc5\x43\xba\x96\xa1\xfe\xc2\xe9\xba\xef\xcd\xa4\xae\xb1\x2b\x6d\xaa\xb9\x4c\xb4\x51\x75\x46\x67\x1e\xd0\x02\xe1\x99\x56\x88\xfe\xb5\x9b\x0a\xe4\xe9\x52\xa8\x8b\x7e\xed\xa6\x1c\x5d\xba\xc9\x79\xfe\x08\x51\x4e\x4c\x88\xa6\x51\x86\xac\xbf\x8f\x71\x1c\x72\x5e\xeb\x94\x6a\x8b\x11\x63\x35\xbc\xa2\x0e\x29\x81\x2b\x89\xf7\x42\x2c\x83\x09\x0c\x65\x08\x67\x7e\x3f\x26\x65\x03\xf5\x31\x92\x3b\x91\x1a\x19\x78\x3c\xf2\xc7\x67\xbd\x73\xeb\x29\x4b\xfc\xee\xf8\xf1\x28\x7c\xba\x3d\xe8\x01\xf0\x34\x04\x70\x7c\xd6\xb7\xab\xf0\x9f\x4f\xa7\xbc\x58\xb7\xe4\xf4\xde\xa0\x3c\x2f\x86\x7d\x00\x33\x0e\xa5\xcf\x61\x58\x00\x2a\x35\xfb\xa2\x26\x05\x70\x6c\xa5\x11\x7f\xb5\xdb\x93\x69\x1a\x20\x79\xa4\x39\x36\xe7\x65\x4f\xe9\x3e\x8e\xe3\x13\xfc\xfb\x1c\x27\x63\x5c\x16\x9e\x53\x23\x28\x1b\x1c\xcd\x0a\x15\x89\xa6\x41\xb8\x4b\xa5\x07\x44\x88\x58\x97\x0a\x05\x02\x1c\x23\x13\xb2\x20\xeb\x86\xa0\x5b\xd5\xc6\xc8\x5c\xed\xbd\xe1\x0a\x18\x26\xaa\x05\x45\xbd\x21\x7d\x5d\x82\x37\xa4\x45\x84\x8b\x10\x79\x7b\x1e\x42\x48\xaa\x18\x46\xdd\xfe\xa0\x0f\xa7\x88\xd4\xb3\x12\x65\x9d\xf0\x09\x05\xc3\xa9\x15\xe6\xa2\xdd\x4e\x3b\x1d\x2d\x4d\xa4\xb9\x1a\x9d\xde\xf5\xd8\x1f\xc3\xa9\xaf\x1c\x63\x52\x00\x72\xb3\x0a\xd4\x8a\xee\x81\x7a\x30\x45\xac\xde\x1d\xa7\x00\x28\xb5\x63\x6a\xf0\x09\x0d\xb3\x76\x1b\xbf\x41\xbd\x76\x1b\xbf\x66\x32\x41\x11\x20\x9d\x8e\x1b\x44\xb7\x5b\x07\xa2\x7d\x7f\x8a\xc1\x94\x75\x2b\xf8\x0d\xd3\x29\xf1\x8b\x2a\x61\x59\x25\xc1\xc7\x9d\x20\xcc\x17\x1b\x4e\x75\xc6\xfc\x61\xb2\x85\x10\x59\x2e\xc3\x2d\x84\xd2\x21\x48\x3a\x28\x13\x71\x23\x60\xd6\x6e\x27\x6f\xa8\xe2\x3b\x46\xfe\xb4\x83\xa8\x1e\xaa\x89\x0e\x52\xa8\x64\x4d\x9c\x90\x10\x72\x19\x42\x28\x87\x50\x0f\x62\xd4\x83\x61\xa7\x03\x06\x5b\x1c\xdc\xeb\x5e\xbb\xfd\x30\x40\x3d\x88\x3b\xc2\x04\x4f\x0f\x04\x62\x94\xc0\xb0\xdb\x35\xbb\x35\xed\x3c\x6c\x58\xc5\xea\x4c\x2b\xe1\x29\x46\xde\x27\x6f\xe0\x9d\x79\x1a\x72\xaa\xd3\xf5\x90\x0e\x2e\x5a\xa9\xa0\x63\xa5\x27\x70\x2c\x55\x4a\x44\xaf\xa9\x46\xf3\xf4\x35\x1e\xa6\x9d\x0e\x20\x1d\xc4\x8a\x1d\x74\x1e\xc0\xba\x2a\x52\x8e\x2b\x29\x50\xfa\x0e\x8e\x8b\x1f\x32\x8f\xac\xf9\x39\x0d\x55\xfc\x93\xcb\x70\xfc\x0d\x54\xf5\x6d\x1a\x0b\x12\x38\x36\x08\xd3\x43\x08\x65\x3e\x53\xa5\x9a\x17\xf7\xbc\x41\xec\x4b\xb4\xc1\x50\x1e\xc9\x84\x4b\xcf\x30\xd1\x55\xe0\xd4\xf7\x0e\x3c\x38\x06\x20\xf7\x13\x38\x86\x3d\x35\xde\x4e\xe6\x8f\xf5\x9f\xee\x8e\xf9\xaa\xcc\x87\xf3\x7a\xaf\x6f\x7a\xa3\xb4\x4b\xfd\x14\x26\x45\xd6\x91\x08\xa5\xf0\xa2\xb6\x2a\x9c\x7e\x4b\x40\x53\xb3\xff\x28\xf3\xf5\x17\x17\x3c\x88\x5f\x93\x76\x7b\xfa\x1a\xa5\xcb\x25\x7e\x83\xc4\xdf\xe9\xc8\xdb\xf7\x06\xde\x81\x97\x97\x46\x58\x10\x00\xbe\x02\x73\x48\x60\x04\xbd\x7d\x4e\x64\x2e\x4a\xf3\xbf\x28\x66\x6f\x14\xb1\x72\x72\x64\xe2\x8f\x11\x42\x26\x8c\xe5\x1c\x25\x6f\xf0\xc8\x3b\xf0\x06\xde\xbe\x07\xe3\x22\xa0\x4b\xc2\x8f\xf8\xd4\x9f\x73\xfa\x32\x9c\xa3\x31\x3f\xbd\xb2\x96\x99\xbf\xa9\x3b\xee\x32\x6b\x68\x4e\xcd\x2a\x93\xa7\x03\xe7\x3e\x87\x84\x07\x09\x24\xa0\xe3\x47\xdd\x3e\x78\x42\xc4\xa7\x4e\xbf\xe3\x8b\x6f\xc9\x00\x03\x2e\x46\xa8\xbe\xf3\x1c\xf6\xb7\x5f\x3d\xff\x97\xda\xfc\x9f\x44\x6d\x7e\x40\xaf\x9b\xcd\x9d\x77\x5e\xbc\x7c\xa1\x15\xe6\xbb\x3d\xa5\x30\xdf\xde\xde\x91\xf6\xce\xcf\xfb\x2f\xfa\x32\x9b\xc6\xf3\xde\xee\x36\xbf\xeb\xb5\x8a\x7d\x8e\x88\xff\xb2\xb7\xbb\x0b\x60\x64\xd2\x6f\x5c\x68\x53\xe9\x89\xd1\xbf\x5f\x21\x6d\x90\x4a\xaf\xbb\xa9\x1a\x45\x97\xde\x26\x38\xed\x7a\x70\xa6\xbf\xf2\xcb\xd1\x83\xd7\xfa\xe7\xe4\xaa\xeb\xc1\x1b\xfd\xeb\x92\xff\xba\x34\xdf\x44\xae\x36\xb8\xaf\x7f\x9b\xa4\x75\x9e\x38\x8f\x27\xa8\x0f\xef\x51\x79\xd2\x65\x43\xe9\x8b\xf5\x29\x3f\x42\x38\x86\x73\x38\x81\xd7\xf0\x06\x5e\xc2\xfb\xaa\xb5\x33\xd3\x09\xb4\x4c\x7a\x2a\x65\xb0\x6b\x34\xfb\x55\x67\xd2\xb2\x1d\x74\xda\x60\x35\xad\xd5\xfa\x53\x21\x9a\xec\x9b\xc0\x19\x61\xe1\xda\xf6\x4d\xc4\x48\xda\x46\x63\x2d\x69\x56\xf2\x85\x4c\xdc\x8f\x08\xd7\xce\x17\x87\x9b\x66\x93\xe9\x4b\x3d\x55\x2b\x5e\x0e\xba\xaf\xcc\x7f\x9f\xaf\x2b\x3a\xe9\x74\xf4\x73\x04\xbd\x35\xa1\x43\x8c\x97\x9e\xd9\x1f\xb9\x1d\x1f\x68\x84\x63\xe4\xf7\x60\xac\xac\x9b\x4f\x1c\xdf\x81\x5f\xcd\x8b\x71\x8c\xa3\x34\xbc\x75\xa4\xd3\x88\xca\xe9\x34\xec\xcc\x18\x32\x05\x91\x5e\xc4\xf2\x4e\xad\x8a\x41\x62\x37\xab\x3c\x12\xcc\x9c\x75\x6a\x12\xab\x27\xcd\x6b\x3c\x67\x65\xcc\xf6\x18\x4b\xc9\xe5\x9c\x61\xdf\x0b\x53\x12\x76\xa7\x24\x8a\x70\xe2\x41\x8f\xa5\xf3\x9a\xd3\xf6\x71\xb1\xa8\x4e\x05\x12\xa7\xf4\x4e\xe5\x91\x0a\xd2\x55\xde\x84\xc7\xac\x47\xbd\x71\x65\x55\xf6\x57\xd4\xdc\x74\xba\x85\x2e\x89\x23\xc7\x54\x8d\xe7\xb8\x12\x01\xdb\x20\xc6\xc5\xbc\xf2\x08\x5f\x33\xc8\x76\x2a\x59\x68\x52\x32\xc5\x2c\xac\x24\xa5\x0a\x56\x89\xfa\x2a\xe0\x43\xa3\x41\xb1\x7d\x28\x1a\xd3\x6e\x90\x84\x13\xea\x7d\x91\xe2\x19\x14\xd9\xc0\x74\xa1\x03\x52\x29\xb1\x07\x47\x9a\x77\x21\xa7\x4b\xf7\x68\xae\x56\xe3\x48\xd8\x17\x8d\xb1\x4f\x6d\xf2\x76\x6c\x2a\x42\xbd\x9b\xa0\x4c\x86\x2a\xdb\x75\xd5\x71\x1c\xe3\x4d\x83\xe8\xd8\xb8\xbc\x69\x9b\x3a\x5a\xb8\xd7\xb5\xa0\x6f\x01\x4d\x4e\xa6\xf4\xf6\x3d\x49\xbe\xfd\xc2\x67\xc9\xcf\x56\x35\xa3\x09\xff\xf8\x13\xbd\x91\xf9\xab\x37\x00\xf8\x13\x89\xf0\x5a\x80\xef\x71\x78\xe3\x4c\x90\xe2\xf7\xe0\x45\xb3\x7d\x7f\x7d\xa1\xd5\xeb\xd1\xca\xb5\x2e\xd1\x85\x8a\xbf\xb8\xe3\x28\x55\x6a\x08\xd5\xdb\x7e\x38\x9e\x5a\xde\xe3\x25\xaa\xcd\xa9\x92\xde\x94\xaa\x37\xba\x39\x37\xce\x5a\xc6\xc0\xd9\xea\x44\xb8\xcb\x24\xc1\x17\x53\xe0\x97\x29\x88\xfb\xee\x72\x0c\x36\xc3\xec\x1d\x4d\xd8\xda\x60\xb3\x35\xad\xea\x7a\x85\xe9\x46\x15\xbf\xd8\xf9\x2e\x36\xa9\xfa\x96\xc6\x51\xb1\x2d\x3a\x7e\xf3\xc9\x2c\x1c\x2b\x5b\xbe\x3a\x2d\x5a\x54\xed\xd7\x5c\x26\x84\xc3\x0a\xe1\x33\xe1\xfd\xa7\x61\xaa\x34\xad\xce\x4b\x5e\x7e\x7b\x82\xab\x84\xb3\xd4\xde\xd6\xba\xda\x06\xd9\xce\x2c\x25\x4f\x70\x8d\x0a\x97\x72\x0d\x58\x83\x59\x35\xdc\x4e\xcd\xb8\xb2\x79\x79\x63\xcc\xef\x6b\xb5\x88\xab\x7b\xb7\xa7\x62\x19\xd2\xae\x9c\xf8\xda\x78\x8c\xc5\x6d\xdd\xdc\x39\x07\xa7\x6c\xc9\x57\x55\x61\x45\x92\x1e\x47\x0d\xdb\x0e\x76\xed\x1a\x3b\xe3\xce\x16\x37\x7c\x23\x78\x3b\x0b\xc9\xca\x55\x6c\x0c\x6c\x5b\xeb\xa0\x9a\x14\xb8\x66\x39\xbb\x7a\xae\x4f\x1d\x28\x55\xcb\x97\xb1\x39\x4c\x65\x3e\xdf\x04\xb4\x19\x49\xab\xd3\x70\x5a\x11\x3a\x57\xb8\xf2\x0a\xb6\x0a\xf2\x0a\xe3\x7e\xa1\xf6\x73\x1a\xcf\x5a\xdc\x32\xc0\x4e\xa3\xea\x15\xd3\x10\xf6\xcd\xd8\x6d\x16\xbd\x3a\xd0\x90\x69\xe5\x88\x58\xb4\x61\x4b\x7e\xe9\x4e\x62\x7a\x8b\x3c\xc5\xca\xd5\x02\x6f\xd9\xb7\x8a\x31\xd5\x70\x7f\x5e\xc3\x88\x8a\x1e\x37\x0e\xf1\xe7\xee\x02\x14\x49\x3f\x8c\xe9\xb8\xbe\x90\xa5\xf8\x41\xd3\xbc\x15\xfc\xb0\x98\xe5\xad\x6c\x16\x26\xad\x45\x4b\x39\x7d\x0d\x5a\x24\x11\x21\x90\x84\xdf\xd6\xb0\x25\x17\x63\xd0\xea\xf7\x7a\xff\x63\xd8\xba\xc1\x29\x23\xe3\x30\xee\x86\x31\xb9\x4a\x06\x2d\x46\x67\xc3\xfc\xeb\xca\xc5\x28\x59\x0c\xb1\x15\x6c\x73\x3d\xb9\x90\x3b\x17\x5a\x29\x7b\x53\x79\x79\x1e\x83\x52\xcd\x70\xd6\x20\x99\x7d\x10\x38\xa4\xbc\xc4\x00\x2f\x1a\xf8\x12\x83\x1b\xb5\x2f\x7f\x2a\x5a\xd4\xa0\x03\xa0\x22\x41\xaf\xc5\x87\x45\x4b\x46\x9b\x68\xfd\xb0\xc0\xc1\x84\xa6\xd8\x4a\x33\x37\x6c\x71\x26\xa1\x3b\x11\x4c\x0a\xaf\xb1\x39\x4b\xa3\xdb\x66\xe4\x0f\xbc\x69\x4b\x7e\x6f\xe7\xb3\x3b\xd5\xf2\x1b\x4e\x13\x92\x5c\x0d\x5a\x09\x4d\xf0\xb0\x75\x3b\x25\x0c\x77\xb3\x59\x38\xc6\x83\xd6\x2c\xc5\x1c\x0f\x3b\xeb\xa7\x17\x28\xed\x0c\xb9\xb6\x67\x3a\x97\xb2\x48\x70\x3d\x8f\x19\x99\xc5\xf7\x9f\xf8\x35\xcd\xee\x7d\x7b\x05\x60\xb0\x0b\xe4\x2a\xe4\x5f\xe1\xea\xae\xf8\x99\x1a\x24\x94\xf9\xaa\xb7\x4b\xce\x50\xb5\x16\x72\x1e\xb7\xea\x48\x6d\xb6\x06\x92\x23\xcb\x87\xf9\xea\xde\xac\x8e\xbe\xa7\x1f\xce\xf9\x6d\xda\x17\x61\x61\x4c\xc6\xba\x37\x81\x9f\x83\x96\x2c\xe4\x44\x41\xbf\x38\x7c\xbd\xe4\x42\xc9\xc5\x5c\x0b\x21\x17\x55\xe0\x42\x42\xc8\xbf\xc2\x54\x57\xbd\x0c\xd3\xc6\x4a\x99\xa9\xc4\xe9\x53\x53\x35\x81\x09\xff\xf3\x1b\xbe\x9f\xa4\xe1\x35\xce\x5a\x3f\x2c\x08\x47\xec\xdd\xde\xff\x68\x2d\x5a\xad\x4b\x9a\x46\x38\xed\x5e\x52\xc6\xe8\xb5\x1e\xb8\x24\xec\xc3\x56\xae\x36\xb7\xd4\x3a\x2d\xb5\xbe\xeb\x66\xd3\x30\xa2\xb7\x1a\x13\x9d\x4d\x32\xde\x44\xb5\x30\xb9\x1a\xbb\xd6\xd1\x92\x21\xde\xd5\xb1\x6a\xd5\x3e\xec\x8d\xc7\x82\x0a\x88\xcf\xb9\xe9\xbc\x06\x8a\x24\x53\x9c\x12\xe6\x02\xa1\x1b\xaf\x45\x57\x71\x32\x82\x1f\x16\x97\xe6\x78\x28\x00\xf6\x8f\xae\x58\xf7\x72\x91\xd9\xd4\xd6\xa2\x65\xac\xe9\x07\x72\xb9\xfb\x59\x2b\x63\x78\xd6\xc5\x49\xd4\x22\xc9\x84\x24\x84\xe1\x55\x98\xf5\xe8\x41\x5c\x86\x69\xb5\xfb\xf4\x3f\xb2\x7b\x8e\x88\xd5\x01\x64\x8f\x1c\xc0\xea\xbe\x65\x47\x1b\xa0\xd3\x4a\x6c\xfa\xee\x31\xd8\x94\xcd\x5e\x17\xb0\xc9\xe0\x5a\x5b\xe4\x9a\x5f\xea\x61\xc2\x56\x8f\xd3\xae\xf8\x3d\x43\xa6\x73\xa6\x30\x54\xfd\x35\x68\xf5\x67\x77\xad\x8c\xc6\x24\xaa\xaf\x9c\xaa\xd3\x95\x49\xdd\x06\xad\x6e\x7f\x76\xf7\x7d\x2b\x26\xb0\xd3\x26\x1a\xeb\xe9\xb1\x6c\xfa\x45\xf1\x28\xad\x5e\xab\x57\x5b\x45\x92\x64\xf8\xfb\xd6\xc5\x3e\xbb\x25\x8a\x28\xd7\xa7\xb6\x32\x4e\xaa\x29\x56\xb1\xe0\x12\xc7\x61\x3c\xf6\x39\xab\xd8\xea\x72\x20\x60\xfd\x4d\x19\xfc\xb0\xd8\xe7\x94\xd2\x84\xad\x6a\x85\x97\x19\x8d\xe7\x0c\x0f\x39\x77\x39\x68\xf5\x86\x2d\xe1\x1a\xcb\xff\xf8\xa3\x4b\x92\x08\xdf\x0d\x5a\xfd\x61\x6b\x46\x49\xc2\x70\xda\x15\xea\xef\x4c\x91\xe2\xe6\xf5\x08\xc4\x2b\x8a\xea\x2e\x22\x37\x0d\x5d\xba\xd1\xd7\xb0\xab\x6f\xcd\xe7\x4f\xb3\xf0\xf7\x39\xde\xe4\x40\x7d\x4f\x7f\x47\x89\x4a\xa1\xe8\xee\xf7\x6b\x21\x67\x9d\x11\x98\x9e\xd3\x49\x0b\x07\x61\x92\x91\x00\x27\x2c\x25\x38\xf3\x01\x58\xbb\xfc\xd7\xb9\xba\x1d\xcd\x00\xcc\xc5\xb1\x41\xbb\x87\xb1\x53\x69\xc1\x43\xad\x81\x7e\xa3\x47\xe5\x5a\x21\x33\xc0\x0d\x58\x3e\x3e\xcc\x30\x38\xfa\xf8\x97\xc3\xe3\xd3\xc3\x83\x8b\x83\xc3\x77\x7b\xbf\xbc\x3f\xbd\xd8\xff\xf4\xfe\xd3\x71\xee\x1a\x33\x15\x2b\xec\xdb\x29\x96\x37\x1b\xf2\xca\x9e\x1e\xb6\x4e\xab\xc6\xf2\xa0\x25\x5c\x35\x73\x37\xee\xd5\x38\xfe\xfc\x6b\xa3\x8e\xb5\x24\xda\xe5\x2e\x55\x61\x59\x2d\xd8\xa8\xc4\xe8\xd6\x74\xa6\x57\x98\xf9\xde\x17\x0f\x6e\xf5\xe1\x56\x5f\x1b\x77\xba\xde\xa0\x6c\xad\x1a\x47\x05\x6c\x49\x75\xc5\x8b\x42\x10\x95\x06\x86\xb0\x4a\x2a\x22\xb3\x87\x8a\x5c\x4f\xc7\xfc\xf2\x56\xcf\x24\x5a\x7c\x6b\x7a\x73\xb1\x47\xaa\xfc\x85\x57\xa9\x4b\x1d\x0f\x5b\xe2\xe9\x5b\x5b\xd1\x98\xa0\xe4\x45\x05\xf5\x56\x3f\xc4\xaf\x11\x1b\x62\x3b\xe5\xd1\x6a\x31\x51\x05\xd2\xae\x2f\x97\x2d\x23\x62\x50\x7f\xbf\xd4\xa9\x8a\x72\x61\x2e\xd5\x34\x9e\x37\x6c\x08\x1a\x55\xf9\x95\x57\x93\x02\x32\x9d\xf9\x40\x27\xfe\x3b\xc6\x5c\x02\xb4\x7d\x50\x1b\x56\x67\xcd\xb3\x97\xca\xe9\x6a\x14\x09\xea\x05\xab\xa2\x5f\xb0\x9e\x58\x0b\xaa\x7a\x62\x79\x33\xac\xae\x79\x98\x44\xab\xea\x8d\x69\x3c\xbf\x4e\xe4\x18\x78\x89\x9e\xa3\x4e\xde\x62\x9e\xd5\xfe\x54\x74\x92\x7d\xbc\x8d\xe7\x45\x7c\xd5\x86\x07\x5c\xf5\xba\x71\x69\x9e\x76\xf8\xd0\x8f\xe9\x6d\xe6\xf7\x1a\x1f\x50\xbb\x26\x45\xe3\x3b\x7e\x63\xae\xeb\x22\x8c\x22\x17\x7c\x17\x74\x6d\xd3\xe5\xec\x5a\x7f\xd4\x9d\xd7\x36\x56\x99\xec\x18\xa7\x04\xe7\x73\x91\xf0\xea\x10\x68\x98\xe2\xc4\xaf\x3f\x2c\x36\x61\x8d\x04\xfe\xb0\x55\x82\x5b\x78\xb9\x2c\xc2\x3f\xaf\x40\x13\xe5\x53\x57\x26\xd5\x50\x99\x63\x6a\x63\xd4\x15\xed\xb5\x1e\x4c\xe0\xed\x31\xbd\x85\xd9\x26\xb5\x0f\x93\x88\xd7\xa5\x9b\xd4\xdd\x17\xe6\x97\x06\x7e\xb2\x79\x1b\xd9\xcb\x90\x4c\x7c\xda\x1c\x02\x7d\xb9\x4c\x5e\xf7\xca\x66\xc8\xa1\x9b\x8e\xe9\x40\x70\xef\xd2\xf0\xea\x5a\x66\xe0\x25\x13\x9f\x14\xf6\x8b\xf8\xac\x77\xfe\x86\x9d\xf5\xce\x87\xa1\x2b\xe1\x49\xd9\xc0\x42\x53\x45\x0a\xc9\x88\xb7\x19\xf0\xd6\x90\x8c\xf8\x3f\x03\x5e\x00\x93\x2e\xed\xf4\x81\x72\xa2\xd2\x7d\xa4\x08\x21\x2a\x2b\xf5\xe0\x14\x51\x84\x50\x26\xdb\x37\xa9\xd2\x1f\x38\x18\x38\x05\x45\x78\xb8\xa4\x4b\xbb\xc2\x9b\xf0\x21\x30\x3a\x7d\xe8\x46\x4e\xa1\xd8\x8f\x01\x80\x74\x0b\xa1\xa4\xb8\x35\x32\x84\x50\xf2\xe7\x4d\x22\x81\x3d\x88\x01\xc8\xf3\xc6\xc3\x68\x83\x0a\x4d\xbe\x88\x1a\x20\x65\x82\x84\xfa\x85\xc9\xf5\x06\x17\x1c\xc7\xea\x27\xab\x59\x8a\xa1\xb4\x03\x5e\x5d\xe9\x89\x4f\x2c\xb3\x43\xda\x49\xde\xac\xd3\x19\x0b\x43\xb9\x75\x95\xba\x14\xc0\x4a\x04\x97\xb4\x79\xb8\x76\x10\xfb\xcc\x72\x4b\xc1\x0f\x6b\x22\xde\xed\xbe\xfe\xb0\xa0\x82\x01\xaa\x05\xad\x49\x64\xb1\xbe\xa1\x84\x64\x27\xb2\xa9\x81\x45\xde\x60\x0c\xb2\xee\xd6\x7a\x80\x6d\xc7\x7f\xe7\xd7\x70\x1d\xea\x7c\x83\x37\xaf\xda\x0d\x95\x5b\xb7\x8d\x23\x8d\xa0\xeb\x8e\x84\x29\x22\xc1\xfd\x65\x98\xe1\x0e\x09\xee\x61\x56\xf8\x54\x90\x35\x4e\x75\x74\xad\x1f\x96\x14\xf8\xdf\xc6\x24\xf9\x66\x2e\x81\x75\xb5\x85\x44\x00\xc3\x0d\x6b\x6b\x89\x56\xb4\x32\x66\xe4\x53\x84\x87\x53\xce\xe9\x4e\x6d\x4e\x77\xca\x27\x18\x91\x6c\x56\xb8\x03\x16\xab\x79\x36\x3d\x87\x31\x22\x25\x9f\x04\x61\x2d\xce\x96\xcb\xad\x18\x5c\xa6\x38\xfc\x36\x64\xb5\x15\x0f\x82\xa0\xc6\x14\x28\xcb\x2b\x7a\xeb\xf3\x5b\x19\x23\x84\x84\xa1\xb5\x70\xa5\x59\x4d\x3f\x6a\xd8\x0d\xbb\x7d\xd8\xe5\x17\x8a\x08\xb4\x5f\x93\xcb\x4c\x8c\x85\xaf\xc1\x0f\x8b\xab\x9a\xf8\xa6\xb4\xd7\xb9\xc3\xde\x67\x61\xf0\x6f\x1f\xc7\xb1\x65\xd1\x13\xdc\xf5\x21\x0e\xee\xb6\x21\x0e\xee\xf9\x5f\xf7\xfc\x2f\x71\x0b\x88\x08\x77\x75\x43\x9f\xc7\x40\xea\x83\xdc\xd1\xc0\xf6\xba\x20\xc2\xeb\x01\xa3\x1e\x80\xa9\xf8\x93\xa1\x9e\xbe\xe3\xdc\x49\x5e\x25\x1b\x35\x24\x8e\x14\xc2\xc2\x7c\x98\x43\x72\x7c\x4b\xd5\x37\x0b\xef\xdd\xd6\x80\x7c\xe4\xa0\xc2\x6d\x38\xcf\xd3\x14\x85\xea\x3c\x85\xc1\x3d\x8c\x0b\xb8\x61\x70\x07\xc5\xc1\x19\x3f\xe8\xe0\xcc\x1f\x74\x70\xa2\xef\x3a\x38\x09\x22\xc3\xe4\x35\x4a\x87\x9d\x8e\xb9\xec\x2f\x50\xc2\x67\x22\x0e\xce\xc4\x71\x70\x92\x73\x78\x85\x42\xeb\xe0\x5c\xc8\x83\x33\x59\x2e\xb7\xae\xd4\xc1\x99\x3c\xf0\xe0\x5c\xc1\x0b\x78\x81\x10\x9a\xc2\x39\x8c\x60\x0c\xc7\x0f\x3e\x38\x74\x94\x20\x84\xc8\x08\x0f\x7a\x83\x6e\x1f\xd2\x91\x9f\x08\x53\x7a\x36\xc8\x40\x57\xa4\x78\x55\x1e\x8d\xb6\x9d\xf3\xbd\xf4\x65\x7c\x01\x27\xc1\x91\xb4\x15\x64\xa4\x1a\x7b\xe7\x25\x1c\x3b\xd3\x69\xbe\xe2\x8d\xea\xae\x8e\xfd\x1e\x2f\xaf\x39\x46\xf6\xfb\x02\x8c\x33\xd7\x48\x7f\x9b\x7f\xab\x24\xda\xbc\x07\x39\xdc\x79\xf1\xf2\x5f\x89\x36\xff\x09\x9d\x0e\x0a\x03\xd5\xba\xfb\x81\x74\x35\x48\x10\xf1\x9f\x3f\xdb\x91\xde\x07\xbb\xfd\x7e\x39\xd8\xba\x76\x34\x28\x3b\x1f\x3c\xdb\x7e\xfe\x4a\x3a\x1f\x48\x27\x85\x0b\xe1\xcc\xb0\xa3\x22\xfd\x4c\x50\xd3\x10\xea\x09\x67\x2c\xca\x0d\x13\x93\xd9\x47\x9b\xf4\x63\xcb\xd2\x3e\x1c\x33\x9c\xfe\x1b\xe5\x1c\xbd\xb6\x89\x77\xb3\x4e\xc6\xf0\xdf\x61\x5a\xbf\x2a\xa0\x4f\x3d\x06\x3a\x75\x19\xe2\xeb\x58\xe7\xb7\x34\xfd\xc6\x6f\x21\x61\x9b\x19\x06\xfc\xcf\x03\x13\x83\xe6\xa2\xaa\x8f\x31\xe1\x7e\x2a\xda\xbf\xde\x1a\x25\x43\x45\xa8\x11\x72\x71\x11\xe1\xdd\x52\x0e\x59\x59\x49\x2b\x3d\x93\xbc\x20\x8e\xb6\x9b\xc5\x14\x8e\x61\x04\x27\x70\xa6\xa9\xf5\x35\x3a\x3b\x87\x37\x68\xd5\x92\xf3\x03\x2d\x0a\xa2\x7d\xfd\x3d\xf3\x19\x80\x97\xa8\x91\xef\x16\x28\xb1\x0f\x4f\xa4\x27\xf5\x47\xfa\xf6\xea\x34\x25\xd7\xd7\x38\x92\x91\x32\xb9\x58\xdd\x6e\x9f\xbc\x0e\x3b\xfd\x76\xdb\x3f\x41\x61\xa7\x2f\xb1\xe8\x1e\xf5\xe0\x2d\xf2\x3c\xb8\x87\x7a\xf0\x14\xf5\xe0\x21\xea\xc1\x3b\xbe\x8e\xc7\xa8\x07\xbf\xf1\x3f\xde\x1b\xcf\xd6\x0f\x7c\xe8\x07\xa8\xdb\xdf\x42\x68\xd2\x6e\x8b\x7f\x67\xe6\x6a\xfa\x8c\x7a\xc3\xcf\xaf\x4f\x86\x9f\x39\x4b\x87\x83\x98\x86\x11\xdf\x2e\xff\x73\x65\x2b\x81\xf2\x62\x29\x97\xf2\x61\x7f\x91\xe1\xfc\x87\x2a\xcf\xf9\x49\x91\xde\x9d\xb7\x78\xcb\x07\xf3\x0e\x7d\x86\x47\x95\xa6\xbc\xfe\x8d\x15\x4e\xe5\x33\x42\xe8\xe6\xac\x77\x7e\xd6\x3b\x07\x8b\xb7\x68\xab\x67\x6c\xa3\x6e\x64\xe6\x6c\x1f\x0c\x8f\x04\x42\xcd\x03\xb5\xcc\x0a\xad\xfc\x32\x60\xe8\xcc\x18\xdf\x83\x42\x93\xc0\xce\x44\x66\x93\xb3\xfe\x79\x97\xff\x06\xf0\x1d\x12\x3f\xfa\xf0\x04\x1d\x59\xb3\x91\xb1\xb4\x5a\x9f\x8a\xc8\x32\x38\x8e\x8f\x12\x83\x8a\x7c\x7d\x00\xfc\x88\x88\x1c\x78\x08\xff\x82\x0e\xda\xed\xcf\x6f\xf8\x0a\x7f\x7e\x8d\x66\x62\xee\xbf\x20\x13\x45\xa8\x1e\x91\x72\x42\xd3\xc3\x70\x6c\x45\xbc\xdb\x63\x7a\xe1\x55\x0c\x3e\x88\xd1\x9b\xc5\x2f\x88\x13\x2e\x01\xee\x27\x39\x42\x8e\x5d\x99\xcf\x69\x6e\xf0\xe5\xa7\xa3\xd3\xc3\x93\xcf\x7b\xfb\x87\x17\xfb\x87\xef\xdf\x5f\xec\xff\xb4\x77\x2c\xee\x8d\x96\x87\x10\xfa\xa9\xdd\xf6\x8f\x02\x92\x15\xbc\x20\x58\x2e\x79\xc1\xa7\x1b\xfd\x9b\x13\xf7\x9f\x90\xf7\x7f\xfe\xb7\x07\xe0\x7b\x74\xf2\x64\xdc\x8d\x04\xaf\xf1\x13\xe4\xf5\xb8\x48\xe5\x03\xf1\xe7\x91\x30\x18\xf1\x01\x80\xfb\x42\xbb\x77\xdf\x6e\xfb\x9f\xda\xed\x6f\xcb\xe5\xd6\xa7\x76\x7b\xeb\x5b\xbb\x7d\x14\x5c\x5e\x21\x84\xf6\x80\xfa\xd2\x6e\x5f\x16\x1a\xda\x77\xe6\xb9\x82\x8f\x60\xc2\x2b\x9e\x02\xde\x46\x3a\x3f\xe1\x88\xff\x81\x10\x3a\x6c\xb7\xff\x82\x10\xba\x6b\xb7\xdf\x23\x84\x8e\xdb\xed\xad\x8f\xed\xf6\xd6\xdb\x76\x7b\xeb\x17\xb0\x10\xe3\x48\x6e\x48\x46\x2e\x63\xec\x83\xd1\x6d\x07\xb9\x97\x60\x70\xdb\x41\x3f\xc1\xfb\x4e\x67\xa8\x51\x31\xe7\xe3\xdd\x2f\xbd\x84\xdc\x02\xb8\xbf\xce\x98\x6b\x16\x26\x1e\x80\xfa\xb4\x09\xf5\x53\x6b\xb3\x46\x7c\x17\xf6\x10\x5f\x13\x78\x8a\xf8\x8c\xe1\x21\x2a\xcf\x16\xde\xa1\xbf\xc0\x63\xf4\x1e\x7e\x43\x9f\xe0\xdb\x76\x3b\x7c\x83\x3e\xb7\xdb\xe1\x6b\xf4\xae\xdd\xf6\x43\xf4\x19\xc0\xad\x1a\x3d\x36\xe1\x5c\x7e\x12\x66\x30\xed\xf6\x47\x57\x80\x99\x22\xe6\x0b\x61\x44\x04\x99\x8a\x00\x99\xf8\x1f\xe4\xdb\x81\x67\x3f\x2f\x5b\xf9\x8d\x6b\x96\xe0\x24\x13\xaa\x65\x1c\x81\x69\xbb\xed\x6a\x2c\xcd\x09\x3c\x00\xf5\xc7\xcb\x30\xf5\x04\x8f\xe3\x55\xdf\xd6\xbd\x81\x67\x1e\xb2\x5d\x55\x8a\x8f\x83\x6a\x17\x74\xfc\xcd\x53\xfc\x0a\x99\xf8\x19\xc8\x6e\x09\x1b\x4f\xfd\x0c\x2c\xc6\x61\x86\x3d\x65\x09\xe0\x0d\x9c\x23\xd4\x5f\xc1\x50\x32\xcc\xa2\x89\x84\xe9\x6e\xa0\xfb\xb3\xab\xf3\xe1\xbb\x2b\x87\x69\xb9\xaa\x35\x0d\x67\x83\xe2\xbb\xc8\xea\x55\x9c\xb1\xea\x02\x5f\xd2\x38\xf2\xca\x27\xaf\x5a\x45\x9a\x70\xa9\x4a\x07\xe4\xba\x5e\x23\x22\xd7\x1e\x80\xb7\xa8\x7a\x6e\x1a\x0e\xcd\x26\xc4\x05\x56\xe8\x49\xbb\xad\xd1\xea\xab\xec\xd3\xcc\xb0\xfb\xc3\xc2\xc2\x77\x53\x2c\xe4\xa2\xfc\x2b\x80\x92\x44\xdd\xb6\xdb\xfe\xad\xa2\x3f\x5b\x25\xd8\xc2\x6d\x49\x29\x71\x7c\x00\x80\x5a\xae\xf2\xf7\xe3\x1f\xdf\xfa\x00\xec\x6b\x6d\x1c\xbe\x63\x05\x39\x15\x15\xd0\xd7\xf4\xea\xd2\xff\x61\x71\x11\x18\x67\x2f\x7e\x63\x04\x8c\x9a\xf6\x62\xda\x65\xb0\x3e\x00\xc1\xdf\x29\x49\x7c\x0f\x7a\x20\x07\x5f\x8b\x6c\x9e\x18\x39\xab\x0f\xd7\x09\x87\x51\x1a\xde\xf2\x9d\x3e\xc5\x77\xec\x28\x79\x9b\xca\x60\xee\x9c\x05\xe0\x44\xb0\xc0\x02\xfc\xfa\x25\x97\xcf\x3b\xe8\x25\x80\xab\xa6\x75\x29\xec\x07\xce\xf0\xb9\x78\xfd\x2d\xd3\xf4\x62\x4f\x14\x1e\xd0\x1b\x8d\x74\xf5\x55\x97\xe8\xc3\x2f\xc9\x6f\x98\x4d\x53\x3a\xbf\x9a\xd6\x11\x29\xb3\x3f\x7b\x00\xfe\x45\x10\x53\xd7\xe8\x90\x75\x04\xe4\xa5\xf5\x45\xae\xd8\xbb\x2b\xb5\x54\xf0\xe7\x52\x01\xe7\xc2\x7c\x00\xff\x90\x85\x6f\x4d\xad\x1f\x4b\x05\xb2\x96\x62\x08\xfe\x8e\xb6\xb6\x14\x4a\xe3\x34\xc3\x92\xf3\xf8\x7b\xa1\x8f\xfa\x32\xfc\x82\xfe\x80\x7f\x20\x6c\x18\x88\x9f\x87\x3f\xa3\x1f\xe1\x8f\x88\xe5\x7c\x44\xbf\xc3\x1f\xe0\xdf\xe0\xaf\xfc\x6e\x56\xb4\xe4\x3b\xaf\x68\x91\xbb\x78\xcb\x4e\x45\x28\x32\x17\xb7\xdb\xbf\x2e\x97\x25\xa3\x00\x8d\x73\xed\xb6\xff\x23\xda\xed\xed\xec\xf4\x9f\x3f\x7b\xc9\x47\xea\xa8\x13\xa4\x57\x97\xe1\x9b\x37\x2f\xdb\xfd\xe7\x2f\x5e\xbc\xd8\xee\xef\xc2\xdf\x9d\xf5\x00\xb4\x8d\x01\xac\x1e\x7e\x2e\x7a\xf8\x82\x5c\x75\xea\x3d\xfc\xe0\xac\x07\xe0\xaf\xc8\xa4\x67\x2e\x4f\x11\xe4\x00\x6e\xfd\xda\x6e\x7f\x6a\xb7\xfd\xdf\x9b\x7d\x8a\xcc\x4d\x32\xba\x6c\x36\xd2\x19\x5c\xae\x37\xa8\x81\x7f\xa0\xdf\xeb\xc3\xb6\xd6\xf2\x57\xb4\xd5\x83\x4e\xbe\xa3\xba\x22\xce\x4a\xae\x25\x71\x56\x04\x00\xfe\x5a\x23\xb7\xa5\xc4\xd6\x1e\x80\x3f\xca\x2b\xaa\xa5\x80\x3d\x1f\x88\x5f\x3b\x3b\xbb\xbb\xcf\x9e\xed\x6c\x0f\xfe\xa6\x4f\xf1\x1f\xe7\xb0\x4c\x44\x2f\xaf\xba\x3f\x2c\xfe\xc8\xbf\xda\x77\x4b\x4b\x8f\x7d\xf0\x37\x14\x07\xe3\x69\x98\x24\x38\xce\x34\x21\xf3\xff\x78\xf3\xa6\xff\x1c\xfe\xc1\xc7\xbe\xbd\xbb\x0b\xb7\x77\x77\xdb\x7f\x98\x00\xca\x91\x0a\xce\xb4\x0f\xbf\xd6\xac\x49\xfe\x9f\x1f\x16\x57\x3e\x6f\xfe\xa6\x07\x02\xa6\xd9\xe5\xfe\x73\x00\xbd\x9e\x07\x9f\x83\x62\x14\x4a\x3a\x1b\xfc\x7d\xe4\xf3\xa1\x5b\x16\xd7\x8e\xd1\xd3\x26\x8b\x96\xaf\x00\x88\x99\x17\x03\xc9\xd5\x29\xfc\x5d\x32\xa7\xea\x2a\xf3\x7f\x47\x71\x83\xd9\xcd\xdf\x60\xb0\x0b\x00\xfc\x79\xf5\xf2\xda\x64\xf5\x0b\x27\xab\xdf\x43\xa3\xfd\x2f\x82\x24\xab\xf5\x9c\xcd\xe2\xfb\x0f\x24\x21\xd7\xf3\x6b\xce\x4d\xa6\x61\xc6\xfc\x7d\xf8\x37\xa8\xf6\xf3\xcb\x39\x3c\x82\xbf\x2b\x0a\x01\x96\xcb\xf2\xf2\x4c\xf8\xf2\x7c\x69\xda\x5c\x4d\xc4\x1c\x5b\xfc\x85\x6f\xb1\xd8\xdd\x2f\xf6\x36\xff\x7f\xec\xbd\x0b\x7b\xdb\xb8\xb1\x30\xfc\x57\x64\x75\xab\x12\x2b\x48\x21\x75\xf1\x45\x32\xad\xcf\x71\x9c\x5d\xbf\xcd\xed\x8b\xb3\x4d\x7b\xbc\x7a\x1d\x5a\x82\x2c\x9c\xd0\xa4\x4a\x42\x49\x5c\x9b\xe7\xb7\xbf\x0f\xae\x04\x48\x90\x92\x9c\x6d\x7b\xce\x69\xfb\x3c\xdd\x58\x04\x66\x30\x18\xdc\x06\x83\xb9\x7c\x94\xa7\x4f\x25\x59\x88\x91\xf3\x03\x90\x41\x54\xf5\xf9\xa0\x4d\x82\x8f\xdb\x0d\xff\x46\x1e\x68\x13\x43\xb6\xfb\x9f\x6a\xad\xe8\x4c\xa8\x99\x23\xd9\xeb\x3c\x21\xd0\x19\xb7\x63\x78\x13\xdc\x21\xff\xb5\x38\x97\x1b\x4c\xea\x94\x99\x6a\x01\x7c\xf3\xf8\xf8\xfc\xf1\xf1\x97\x49\x41\xc4\x1f\xdd\xb7\xdb\xf0\x95\x4c\x43\x64\xaa\x17\xb4\x33\xac\x64\x9d\xf4\x2a\x5b\x7d\xfb\x04\xe0\x1d\xa7\xf9\x0c\xc0\x77\xfe\x4b\x19\xa2\xe9\xac\xd5\xb2\x5e\x26\xee\x32\x3b\x53\x4c\xfd\xfb\xc2\xf1\x54\x68\xf5\xea\xa9\x78\x67\xe2\x60\x36\x4f\x8f\x8f\x8e\x0b\xe7\x5d\x42\x6f\x1b\x3f\x85\xf7\xab\xe5\x69\xfa\xdc\x3c\x0d\x80\x93\xf0\x80\x63\xf4\xb0\x04\x79\x1c\x5b\x53\xbd\x2f\x52\x9b\x51\xbc\xdc\x5d\x56\x04\x8c\x09\xe8\x31\x9a\x3e\x3e\xd2\x86\x02\x3f\xe2\x98\xe8\xbc\x23\x6c\x57\x84\x98\xfd\x03\x40\x1e\x20\x3e\x28\x5a\x3b\xed\xd6\xa1\x67\x4e\x22\x97\xfb\xa4\x37\xf2\xc0\x38\x50\x2b\x1e\x45\xe9\x3a\x41\x46\x6d\x4a\x1a\x81\xf1\xe3\x23\x86\x08\xc0\xa8\x9b\x4a\xf2\x58\x01\xe0\x34\x3a\xb4\x5c\xfc\x1d\x4c\x26\xd1\x3a\x0c\x65\xa0\xde\xbd\xbd\x20\x0f\x5e\x2f\x17\x00\x92\x0b\xe0\x87\x87\x80\x49\x52\x9f\x00\x7f\x8f\x29\x31\x09\xe5\xc1\xad\x14\xd1\x95\x6a\x9d\xee\x32\x08\x17\x06\xfc\xa8\xba\xee\x4c\xaf\x97\xe9\xb4\xf1\x3c\xa3\x46\x9c\x02\xee\x5e\x04\x3f\xfd\xf0\xc0\x34\x46\xa5\x12\xf0\xf8\xd8\x6c\x66\x3f\x3c\x90\x6c\xfc\x09\x64\x16\xb5\x85\xe5\xf5\xb2\x60\x70\x55\xb2\x71\x39\x8f\x64\xc4\xaf\x3d\x67\x0f\x3f\x3e\xee\x25\x40\x71\xb2\xa8\x50\x9b\xe0\x2b\x77\x7a\xec\x27\x57\xee\x74\x82\x4e\x7c\xfa\xab\xd5\x22\xf4\x0f\x6f\x4a\xa5\xdb\x84\x7f\xa0\x35\xbc\xe9\x08\x1d\x17\x2b\x9c\xf8\x66\x0d\x72\xc2\x0b\xc8\x31\xfd\xf9\xf8\x48\x7f\xd1\xeb\x23\xff\xe8\xfb\x39\x1c\xc7\xc4\x5b\xe0\xf5\x8e\xf3\x5a\x89\xd6\x7c\xa9\xd0\x40\x01\xb2\x2c\x0f\x34\x77\x2b\x35\x8d\xcc\xd8\x4e\xea\xc8\x8f\xf1\x18\x20\x9f\xb4\x91\xd4\x78\xa3\xac\x4a\xa7\xbb\x90\x69\xd1\xc5\xdb\x46\x59\x69\xc8\xf3\xa3\x5b\x13\x0c\xf4\xab\x9f\x32\x06\x14\xa2\x14\xe8\xb1\x2a\xad\xc1\xbe\xe5\xdd\x63\x01\x32\x7a\x7a\xb8\xdf\x93\x49\x3d\x77\xb9\xcf\xe3\x21\x6a\xdf\xac\x0a\x6d\x15\x07\x3c\x0c\x08\x53\xe6\xbd\x0c\xe3\x80\xf4\x7b\xa7\x49\x12\xdc\x3b\xbd\xe1\xbe\x3c\x64\x17\xb1\x1e\x22\x5d\x85\x28\x95\xe6\x34\x5f\xad\x01\x4d\xbe\x2a\x4b\x00\xbf\xc9\xae\xd0\xe2\xfb\x1d\x0a\xe8\x86\x52\x0e\x02\xa3\x52\xac\xf9\xa8\x2e\xd2\xc8\xac\xc2\xa4\x4e\x48\x7e\xdc\x9a\x64\x46\x7b\xdd\x11\x4d\x75\x14\x88\x05\xc9\xd6\xa1\x56\x66\x05\x33\x5a\xe6\x4c\x47\xcf\x29\xe4\x37\x57\x09\x6a\x56\x54\xa3\xdc\xfa\x23\x77\xc3\xf3\x79\x82\x3f\xe5\xe6\x55\xea\xa6\x54\x57\xd9\x7b\x36\x5b\x06\x89\xea\x92\x08\x26\xd1\xcc\xad\xe1\xaa\xb0\x55\xf0\xc9\x8e\x0d\xea\x64\x7f\x14\xe3\xca\x46\x2f\x0f\xcd\x58\xd1\x4e\x45\x92\xd1\x8a\x76\x52\x3d\xde\x2d\x4b\x64\xd3\x14\x4a\x14\xf5\xf0\x53\xd5\x50\xbc\x53\x43\x71\x55\x87\x8c\x12\x93\x84\xaa\x99\x2a\x44\x87\xd2\x84\x35\x2c\xb7\x70\x79\xc2\xe8\xc5\x49\x7d\x71\x5a\x5f\x1c\xd3\xb5\x6e\x31\x39\x2b\x84\xd2\x10\xf6\x35\x99\x8a\xf9\x51\x4c\x97\x58\x8c\xf5\x51\xe8\xaa\x92\xe6\x64\xc0\x8e\x38\x44\xf2\x61\x4e\x19\xef\xe4\x9b\x07\x4b\x39\xe4\x74\x8e\x8e\x8e\x8e\x80\x01\x41\x37\x95\xd7\xc1\x2a\x93\x06\x4c\xea\x89\x16\x29\xc1\x8b\x72\x9f\xef\xfd\xe6\xee\xd2\x6a\x61\xf5\xed\xab\x48\xee\x98\x14\xbe\xd0\xcd\x45\x79\x07\xb3\x4d\x0a\x15\xf7\x28\x62\xee\x51\xb8\xbc\x39\x25\x35\x0b\xd7\x88\xed\x4c\x3f\xd4\xd4\x65\xcd\x29\xc7\x0a\xcd\x17\xf7\x93\x9d\xc7\x57\xee\xb4\x3c\x35\x3f\xfd\xf0\x80\xb3\x2a\x00\xcf\x0e\x90\x54\x02\xf4\x76\x6d\xa1\xbf\xa1\x05\x31\xf4\x20\x63\xc6\x43\x66\xe8\x56\x66\x48\xd4\x6a\xed\xe1\x56\xcb\x33\x82\xaf\x3b\x6c\x6f\x5a\x06\x09\x15\x86\x4f\x89\xe3\x02\x70\x4c\x0f\x17\x2a\x80\xb3\x39\xa3\x52\x93\xd2\xb9\x74\x95\x4c\x81\x91\x54\x45\x7c\x1c\x9b\x11\xea\x05\xe5\x0e\x82\xae\x7a\xed\x26\x27\xae\x12\x86\x04\x94\x4f\x00\xe4\x9a\xa6\xd4\x47\x63\xd2\x6a\x39\x69\xdb\x6f\x3e\x6f\x02\x88\xc5\xdf\x17\x42\x37\x26\x2d\xbd\xd8\xc4\xe5\xf1\x61\x99\x32\x4b\x49\xd8\x71\xde\x55\x8a\x27\x79\xf4\x3d\x8e\x25\x79\xf4\x7b\xb9\xa5\x58\x4e\x58\x02\x60\x9c\xe7\x26\xe0\x78\x53\x8a\x17\xc6\x2a\x63\x45\x9c\x69\x00\x25\x69\xb0\x38\x3c\x64\xaa\x82\x85\x16\xb2\x8a\x24\x68\x85\x02\xe2\xf4\x7b\x00\xe2\x2e\x77\xc4\xfb\xc8\xf3\x69\xf6\xb2\x2c\x83\xbd\x5e\xaf\xff\x7d\xa1\x81\x3f\x9c\xff\xf9\xc3\xf5\xf3\xd3\xcb\xf3\x57\x17\x6f\xce\x7d\xd2\x7d\x71\xf1\xfa\xfa\xed\xbb\xd3\xb3\x8b\x0f\x7f\xf1\x49\xc5\xdd\xb1\x1c\x3c\x78\xdf\xf3\x06\x60\x5c\x59\xbf\x37\x3c\x80\x26\xea\xee\xb0\xd4\x36\xbd\xa8\xbc\xc4\x09\x5a\xc4\xdf\x1e\x1f\xe9\x8f\x57\xe8\x36\x98\xdd\x9f\xcf\x6f\xd1\xa4\xc9\x5d\xed\x9a\xa3\x26\x9e\xa3\xf8\x36\x09\x56\x4b\x3c\x6b\x66\x70\xdf\x3b\xf0\xac\xf1\xb5\xd5\x4d\x62\x78\x30\x74\x0f\x8f\x7d\x44\x25\x53\x7f\x78\x30\x1c\x1e\xe6\x91\x5d\x13\xfd\xc6\x71\xe2\x7b\xbd\xc3\xa1\xd7\x63\x15\xe9\x9f\x47\x1e\x8b\x1f\xea\xf5\x0e\x0e\x06\x03\xf5\xd5\x93\x5f\x0f\xf7\x07\xae\xfc\x7a\xb0\x7f\xc0\xbe\x1e\x1d\xf4\x0e\xd9\xb7\xa3\xa3\xc3\x3e\xff\x72\x74\x28\x60\x5d\xef\x60\xc8\x3e\xed\x0f\xdd\x1e\xff\xb6\x3f\x74\xfb\x47\x02\xdd\x51\xef\x50\xa2\x3b\x1a\xf6\x87\xb2\xe9\xc1\xbe\x24\xe8\x60\x70\x78\xf0\x94\x60\xdb\x33\x1e\x3a\xfc\x0d\xfa\x46\xfe\x44\xa5\xa0\x88\xbc\x65\xd3\xc8\x27\x15\x61\xd6\x7c\x52\x77\xff\xf5\x49\x37\x08\xc3\xf8\xeb\x7b\x94\xce\x82\x90\x0a\x3f\xa4\x8b\xd3\xf3\xbb\xf8\x3f\x31\xfb\xeb\x3d\x4a\x49\x82\x67\x04\xcd\xdf\xc5\x5f\xb9\x92\x9a\x21\x62\x85\xa5\x4f\x2c\xd7\xf7\xc5\xe2\x65\x10\xa6\xf7\xb9\x7c\x6b\x7c\xcd\x8d\x55\x78\x0c\x6f\x54\x4e\x10\xce\xfa\xdb\xb8\x5b\xd3\x0b\x38\x4f\x12\xbe\xa0\xa0\x4d\x90\x5f\x1e\xa0\xa5\x79\x0c\x6b\x09\xd6\x1b\xce\x27\x53\xcf\xd5\x26\x53\xef\x80\x23\xe6\xdd\x4f\x60\x89\x37\x86\x0d\x13\x53\x4e\x08\x4c\x4c\x41\xd1\x6a\xa5\x27\x79\x8c\x26\xaf\x3b\xfc\x31\x06\xad\x16\x67\x03\x4f\x6c\x81\x4e\x7a\xc3\x61\xab\xb5\x47\x67\x2a\xdd\x82\xf9\x3f\x56\xca\xfa\x83\x81\xa4\x6c\xbf\x7f\x30\xe8\x67\x0e\x02\x94\xba\xba\xb1\xb4\x20\xa2\x4d\xe8\x16\x42\xaa\xe0\x68\x70\xd0\x93\x0d\x1c\xed\xf7\x3d\x89\xbf\x62\x12\x29\x0c\x12\xc1\xc3\x2c\x4d\x47\x0f\xdc\x34\x7c\xf4\xc0\xa4\xf9\x91\x0b\x85\xb7\xac\x9b\xc1\x19\x0a\x43\xcb\xf7\x0c\xf2\x58\x40\x4f\x00\x85\xf4\x6c\x2a\x7f\xe7\xe9\x65\x5d\x48\xe2\x15\xc5\x9f\x65\x75\x8b\xc4\x34\x42\xf3\x5d\xd9\x1b\x07\x75\x9c\xde\x8f\x7a\x04\x23\xd0\xc1\x00\xfc\xbe\xf8\x11\x64\x19\xdc\x77\x87\xbd\xef\xb9\x02\x56\x87\xca\x54\x1b\x31\x8b\x71\x8a\x8d\x7b\xa0\x90\xe3\xa4\xc4\x68\x08\x77\xcb\x20\x55\xe8\x94\x61\x50\xa5\xc5\x50\xd1\xe7\x46\x4a\x8f\xa6\x77\x4d\xf1\xab\xe9\x47\x63\x2f\x35\x21\x59\x66\x9d\xb3\x38\x94\xbf\x11\x9b\xa6\xaa\xd4\x34\x41\x92\x9b\x85\x51\x74\x1e\xcd\xa5\x30\x2b\x93\x77\x09\x9f\x8a\x3d\x2f\xf7\x97\x2a\x60\x22\x16\x24\x18\x32\xdb\x69\xfc\xf8\x48\xae\xdc\x29\xd3\x5f\x30\x8d\x09\xd7\x8c\xe0\x2b\x4f\xc9\x32\xac\x39\x9d\xd3\xda\x7d\xaa\x90\x9f\x92\x9b\xa1\xc6\xdc\x16\x26\x85\x11\xc3\xd3\x49\x61\x90\x9b\xf6\xc6\xd0\x05\x70\x99\x9b\xdd\x46\x50\xf9\x58\x8d\x83\x13\x5f\xba\x10\x2d\x8f\xdd\x89\xde\xe6\xc8\xb1\x0c\xab\x5b\x31\xac\x49\xc5\xa8\xc6\xd6\x51\x8d\x6a\x47\x35\xa8\x19\xd5\x65\x61\x54\xb9\x69\x90\x36\xb0\x5c\x15\xc4\xd5\x67\x9c\xbe\xdc\xec\x4c\xea\x13\x4b\xfd\x6a\xb5\x1c\xdc\x51\xbc\x95\xac\x95\x04\xfc\xc5\xde\xe7\x89\x41\xc9\xb1\xaf\x51\x31\x21\xc2\x57\x4b\x96\xb6\x5a\x58\x7c\xb1\xf7\xb9\xd5\x22\xc7\x1a\x7c\xab\x85\x8f\x6d\xd5\x39\x13\x46\xa2\xee\x0e\xc8\x4f\xfc\xed\xb1\xe3\x13\xeb\x50\x52\x28\xcb\x58\x8a\xa7\x89\xd2\xc0\xfb\xbe\xa5\xb2\x76\x4d\x2b\xa3\x2f\xf3\xcc\xe0\x49\x45\x43\x36\x9a\x2c\xcd\xc8\x82\xdf\x10\x65\x35\xe5\x20\xcb\x6a\x37\xd8\xd2\x31\xc6\xe4\x0e\x9c\x65\x70\x30\xdc\xff\x9e\x4d\x5d\xb5\xa6\x6f\xe4\xe5\xef\x16\xfd\x9e\xbc\xa0\x9b\xe1\x9c\xc5\x05\x19\x8b\x95\x72\x1a\x86\xa7\x6c\x69\xa8\x5d\xdc\xdc\xf5\x44\x96\x70\x71\xe9\xcf\x55\xd7\x02\xf9\x6e\x9b\xed\x13\x9b\xbe\x45\xa4\xb1\xc8\x5d\x42\x64\x79\x21\xf9\x66\x09\xed\xe4\xca\x85\xd2\x75\x4f\x27\x46\x5c\xc8\xcc\xc6\xc4\xc7\x20\xc9\x87\x97\xe5\xbc\x49\xdf\x23\x66\xd8\x30\x97\x4f\x0c\x3a\xa6\x91\x05\x91\x85\xda\x73\x96\x72\x51\x9e\x2a\x25\x3a\x81\x4c\xa3\x53\x1e\xad\xea\xb8\xcd\xd2\xf7\x97\xf9\x60\xd8\x2a\xf0\xd3\x60\x3a\xb6\x1f\x66\x20\x4f\x03\xa7\x77\x48\xac\x9e\x3a\x2e\x14\x9e\x99\x4c\xb4\x57\xee\xb4\x5d\x39\x92\xe3\x3c\x21\x49\x45\x4f\x27\xe8\xf7\x55\x45\xbe\xef\x4e\x36\x70\xa8\x40\x8a\x37\x6d\xeb\x89\x38\x2a\x43\x3a\x82\x8e\x37\x1d\x5d\x55\xb7\xfc\x7d\xc8\x29\xea\x0a\x0c\xd3\xcc\x3e\x36\xaf\x64\xce\xba\xe2\xe8\x70\xa1\xc2\x8e\xec\xef\x3a\x2c\x7f\x4f\xee\x28\x91\xa6\xc8\x26\xda\x61\x77\x0a\x2c\x5f\x29\xeb\xf4\x95\xaf\x17\x66\x59\xdd\xe4\xad\x63\x92\x74\x98\xb3\x3f\xb5\x71\xbf\xf5\x56\xcb\x41\x57\xde\xf4\x84\xb0\xf7\x2f\x24\x06\x84\x3f\x59\x49\x27\x6b\xe9\x8d\xff\x21\xc1\x77\xda\xb5\xc8\xba\xe7\xd8\x86\x9f\xca\x7a\x3e\xb2\xf4\xbb\x54\x9d\xf3\xa2\xaa\xb2\xad\xee\xb1\x3b\x71\x72\x79\x50\xdb\xcd\x59\xe6\x44\x1b\x35\xd6\xcd\x92\x61\xaa\xa4\xde\x77\x79\x56\x55\x7a\xf6\xf5\x0e\xff\xed\xcb\xf3\x2f\xe2\xcb\x53\x70\x17\xb3\x78\xf1\x30\x4f\x9d\x48\x25\x02\x09\x44\x22\x90\x3c\xe9\x76\x01\x83\x99\x91\x23\xd0\x33\x72\xd0\x43\x76\x19\xa4\x7f\x0a\x42\x3c\xa7\x20\x05\x59\x80\x5d\xe5\x95\xea\x95\x5f\xe8\x4f\xdc\x72\x4a\xee\x62\xce\x0e\xbb\x7f\x0e\xf7\x07\x17\xd2\x8b\xf0\x4d\x97\x0f\x23\xcc\x0f\x46\x0b\x5c\x62\x49\x3e\x11\x99\xc9\x27\x38\xa0\x1d\xae\x84\x8e\x67\xaa\x18\x93\xe4\xfe\xc1\xd0\x08\x5f\x12\x3a\xeb\x6e\xef\x2d\xcd\xad\xad\x5e\xe2\x00\x64\xb3\x80\xcc\x96\x5b\xa3\x99\x31\x0e\x55\xa0\x32\xab\xdb\x2a\x75\xe3\xe8\x35\xb7\x14\x43\x46\x32\x85\xab\x66\xfe\xac\xd2\x84\x4d\xf9\x4a\xd2\x9c\x42\x95\x66\x41\xea\xc3\x01\x00\x99\xfa\xbb\x60\xdc\x52\xa0\x3f\x87\x19\x4b\xf7\x7d\x71\x50\x8a\x00\x04\x2a\xa6\x80\xf8\xcc\x7f\xc9\xa7\x23\x0e\x81\x74\x37\x4b\x51\xbd\x10\x3a\xb7\x34\x3c\x0b\xcc\x08\xe5\x69\x23\x0b\xd3\x57\x25\x8d\x8c\x4b\x06\x05\x53\xb8\x04\x42\x19\x13\xda\x27\xb8\xa9\xa1\xe1\xb3\xb4\xdb\xed\xaa\x5d\x30\xcf\xff\x91\xae\x43\xe2\x5b\xf4\x61\xd7\x5f\xe8\xe2\x08\x08\x3a\x8d\xe6\x97\xfc\xb5\x06\x3c\x98\x3a\x43\x57\x53\x22\xd2\x9d\x5e\x7b\x3e\xe1\x78\x25\x67\x8c\xc6\x54\xc0\x61\x90\x65\xbc\x0f\x33\xd5\x87\xb0\xec\x33\x57\x5c\x63\x25\x9f\xb9\x55\x90\xd0\xe5\x21\x23\xfa\xd6\xbb\xca\x99\x2f\x22\xdb\xb9\x8c\xd8\x20\x77\x7a\x42\xb6\x22\x30\xd2\xca\x7f\x6c\xea\x2f\x30\xd6\xfa\x5b\xdb\x19\x14\xe1\xea\x8c\x0d\xac\x75\xcb\x16\x07\x36\x4e\x5b\x5e\x91\x4d\x6c\xfa\xea\x33\x1e\xe4\x2a\x1b\x7d\x6a\x26\xdc\x4a\x84\xe6\x93\xea\x56\x81\x8f\xe5\xcb\x66\x61\xf6\xbf\x59\xdf\xdd\xa8\xad\xaa\xd0\x9e\xf6\x5c\x06\x9e\xf5\x7b\x70\x73\x5d\x91\x13\xc0\x5c\x84\x72\x35\xac\xab\x56\xc3\x86\xd3\x46\xf9\x90\x32\xfd\x35\x7b\x3a\x7f\xbb\x58\xf0\xa8\xd5\x67\xec\x9b\xe3\xb9\x2e\xf4\x5c\x57\x99\x08\x90\x6f\xbe\x0e\xd3\x15\x96\x72\xe8\x1b\x71\x9a\xbd\x79\x13\x14\xde\x4c\x67\xe4\x9b\xdc\x29\x3f\xb0\x3a\x1f\xb9\x6f\xd4\x9e\xd3\x64\x0b\xbd\x89\xa3\x06\x13\x81\xe2\x48\x65\x99\x7d\x1e\x7f\x3b\x4d\x67\x74\x1d\xd8\x0b\xa9\x78\x25\x4b\x41\xf9\xc9\xe5\x3d\xfa\xeb\x1a\x27\x68\xce\x02\x1e\x37\xee\x10\x49\xf0\x2c\x65\xaf\x2f\xe9\x7a\xb5\x8a\x13\x82\xe6\x4d\x7d\xa2\xe5\x84\xb2\xe7\xfc\xdd\xc6\x7e\xb7\xe0\xda\x9f\x0a\x39\xde\xad\xdc\x31\x26\x7e\x71\x47\x15\x07\x06\x9f\xab\x25\x86\xb5\x4b\xdf\x05\xaf\x8a\xd3\x86\xca\xc9\xfb\x47\xff\x16\x94\xff\x85\x04\x65\x9b\x8f\x78\xc1\x91\xd6\x96\x85\xaf\x3f\xa8\x75\x83\x2f\x89\x14\xb1\xe9\x69\xb5\xf1\x70\x9e\x89\xf3\x4c\x3d\x09\xdc\xdd\x50\x92\x18\x39\xd2\xfc\x6f\x71\xeb\xa3\xee\xe2\x96\xff\xb8\xa1\x3f\x6e\x6e\x2d\xd5\x89\x1e\xae\xc2\xc7\x19\x4b\x93\xcf\x8a\xf3\xe3\xa4\xe7\x1e\x1d\x78\xc3\x5e\x96\x7b\xfa\x9a\x07\x0d\xcf\x38\x90\x3b\xc2\x19\xa5\x7a\x6b\x99\xb2\xb4\x36\x51\x7b\xcc\xf0\x28\x89\xef\x28\x02\xe6\x9d\xcc\xb4\xa2\x85\x3d\x8a\xee\x46\xf8\x6e\xc5\x77\x78\xb6\x1f\xdd\x22\x72\x9a\x2a\x18\x89\xf4\x4a\xf4\x9f\xf7\x2c\x27\x4b\xfd\x16\x9d\xc8\xcb\x19\x49\xd3\x2c\x2b\x8d\x6d\xc8\x2e\x3d\x33\xbf\x72\x36\x88\xbb\xcf\x0e\x1a\xdd\xa2\x23\xbc\x66\x58\x19\x51\x51\xc5\x2c\xbd\x98\xe7\xd6\x9b\xf6\xf8\x00\x99\x92\xef\x91\x94\xbe\x89\xff\x80\x85\xd2\xd3\x8e\xb3\xdd\x86\x5c\xf9\x91\x8c\x50\x66\xee\x9d\x45\xea\xb8\x35\x3f\xdd\x0b\xbb\x78\x9e\xcd\x91\xde\x9a\x74\x87\x27\xbe\x3b\x16\xda\xfd\x32\xbc\x08\xf6\x49\xda\x6d\xa0\x02\x1c\x16\x2b\x5d\x91\x69\x17\xcf\x7d\xdf\x47\xa0\x9e\x98\x74\x15\xe2\x19\x72\x08\xf4\x00\xdc\x73\xa5\xda\xc7\xcb\x6c\x51\x04\xb8\x7d\x81\xab\x4c\xd1\x2a\x28\x93\x6a\xdd\xa2\xe1\x92\x55\x8f\x6b\x8b\xc8\xc4\x5a\xa8\x40\x86\xe9\xe0\x26\xcc\x02\xa3\xec\x5c\xcf\x6f\xd4\xa9\xef\xc2\xd8\x77\x61\xe0\xbb\x70\xc9\x13\xa8\xbf\xbc\x75\x5c\x00\x43\xfe\xe3\x39\xfd\x31\xce\xc3\xa9\xba\x63\x74\xcc\x0a\x8a\x51\x0f\x90\xe0\x70\x1e\x8e\x00\x15\xc3\x11\x40\x57\x99\x70\x59\x82\x11\x68\x11\x28\x55\xe9\xe2\x76\xcf\xf7\x97\xd2\x09\x46\x7d\xbe\xa1\x9f\x79\x12\x76\xd4\x49\x4f\xbc\xe2\xbd\x4f\x8d\xc7\x7b\x7a\xfd\x4a\x9d\x04\x06\x30\x86\x04\xa6\x79\x4f\xf8\xa4\x41\xc6\xfc\x10\x81\x5a\xaf\xc8\x14\x64\x29\xcb\x73\x1d\xc3\x65\x91\xe0\xc5\x2d\x65\x4d\x91\x9e\x2c\x6e\x5b\x7a\x26\x56\xbe\x68\xa4\xca\x41\x57\x14\x2b\x3d\xaf\x2d\xc6\xd8\xdf\xa7\x93\x2a\xa5\x74\x09\x99\xe6\xff\xa2\x5c\x51\xba\xe9\xfa\x26\xe5\xb3\x47\xa5\x2c\x0e\xfc\xab\x29\xd3\x3b\x04\x15\xd3\xfc\xca\x9d\x8a\xd0\xa0\x89\x13\x09\xed\x82\xdc\x2a\xe2\x10\x75\x11\xdb\x5c\x45\x70\x5c\x4e\xb3\xb7\xd5\x6a\xa6\x8d\x9a\x66\x70\xb6\x65\x9d\x37\x5d\x60\x0a\xd6\x71\x21\x2a\xc0\x27\xb7\x48\x74\x3e\x80\x98\xb1\xa7\x9a\x58\x63\x9b\xe0\x3c\xe1\xb0\x3c\x2b\xb7\xc2\x43\x19\x08\x83\xac\xba\x8a\x69\x1c\x09\x53\x7f\xcf\x13\xcb\x11\x5d\x25\xec\x59\x26\xc8\x37\xba\xa5\x8f\xc7\xcb\xe3\xaa\x39\xa2\x47\x78\xc3\x7c\xf1\xf2\x95\xb5\x54\x8b\x59\xac\xfd\xe5\x96\x33\x92\x85\x07\xd9\xf3\x7d\x1e\x1c\x76\x2f\x6d\xb5\x02\xe6\x2a\x12\xb7\x5a\x0e\xfd\xcb\x5f\x52\x82\x5d\x00\x83\x2b\x8f\x7e\x66\xd5\xe8\xdf\xfe\x92\x75\xa0\xdd\x4e\xa6\x70\x2f\x10\x81\xaf\x04\xec\xc4\x00\x1d\xd1\x1e\xd3\xc5\x13\x66\x59\xc0\xd0\x7a\x53\xeb\x0e\xc8\x1e\x02\xb2\x2c\x25\x01\xc1\xb3\x86\x31\x5c\x5a\x4e\xfd\x3d\xaf\x98\x3f\x5d\x76\x25\xc9\x99\x93\x2a\xde\x8a\xa8\xb7\x8c\x7a\x3a\x53\xe5\xf6\x8f\xae\x92\x8e\x37\x65\xa4\x5c\x79\x53\x88\xc6\x5a\x2d\xcf\x52\x4b\xbd\x4e\xb0\xea\xac\x0e\x44\xf2\xb4\x48\xe8\x69\x81\xc6\xe6\xef\xa4\xd3\xe1\x91\x51\xed\xed\xe7\x75\x5d\x48\x40\x15\x01\x14\x24\x37\xee\x60\x06\x11\x0c\x0b\x44\x63\xfa\xe3\x38\x65\x4f\x0e\x4e\x65\x35\x4c\x47\x20\x53\xbb\xc0\x04\x5d\xe5\xe2\xb5\xea\xfd\x08\xa9\x33\x18\x29\x05\x96\x4d\x14\xe1\x7a\x2c\x17\x2e\x8b\x31\xbe\xa6\x70\x06\x32\x38\xf4\xbc\xc1\xf7\xd9\x96\x96\xfd\x6a\xca\x96\xa3\x2c\x65\x74\xaa\x94\xc7\x4c\x1e\xde\x1f\xee\x4b\x99\x37\x52\x32\x6f\x52\x9b\xb9\xb9\x9c\xa5\xf9\x1b\x09\x12\x14\x28\x29\xea\x2b\x8e\xe6\xf1\x57\x29\xbe\xde\x05\x38\x92\xf1\x75\x95\x0e\x4a\x79\x50\xab\x87\xeb\x6b\xe6\x6e\x32\xbf\x50\x05\xfa\x7b\xb7\x48\x3c\xf5\x62\x95\xbc\x8e\x23\x4c\xe2\x84\x0b\x5a\x8e\xde\x9e\x52\x09\xd0\x6a\x95\x9a\xe4\xd4\xae\x49\x2e\x80\xe8\x48\x8c\x4c\xc7\x71\xf4\x91\x35\xb6\x2b\xfe\x32\x54\x01\x95\xde\x8a\xa9\x15\x36\xeb\xe5\xb9\x54\x8b\x2c\xe9\x32\x05\x0c\xad\x59\x91\x56\x95\xde\xdc\x93\xaf\x41\x32\x67\x14\x02\xa7\x02\x8d\xd6\xf5\x32\x47\x41\x71\xd0\xbb\xc1\x9c\xe3\x7b\x45\xdb\x89\x50\xe2\x34\x45\xe2\xf0\x3c\xe7\xaf\x36\xd8\xee\x16\xf0\x37\xe1\x3a\xa9\x00\xf7\xd8\xbd\xa2\xc1\x07\xbc\x7c\xd5\xa1\x5f\xe9\x75\x45\x56\x50\xd2\x3e\xff\xcd\x75\xb6\xc6\xa4\xf1\x91\x75\x60\xb9\x52\xda\x98\x5d\xbc\xe5\xf9\x2a\x29\xbd\x93\xd0\x62\x91\x45\x31\x8f\xe8\xcf\x6a\x2b\xca\x73\x18\x65\x0a\x6f\x9d\xf4\xb9\x1f\x62\x61\x31\x14\x38\x21\x2f\xdc\x8a\x8b\x2c\xd1\xbb\x5c\x65\xdd\x65\x90\x8a\x28\xea\xf0\xaf\x6b\xb4\x46\xaf\xf1\x2c\x89\x49\x90\x7e\xd6\x12\x31\xdb\x97\x9b\x1a\xdf\x42\x31\xbd\x7f\x59\xb6\x98\x48\x6c\x1d\xc1\x16\x5b\x47\x71\xdb\xe0\x9a\xd4\x8f\xe6\x30\x70\x6e\xf2\x60\xfd\x72\x46\x58\x56\x59\xd2\x7d\xbd\x26\xb4\x09\x2d\x4d\xf0\x3f\x64\xf9\xaf\x09\x4a\x14\x5d\x39\x33\x53\x44\x5e\xac\x92\xd3\x68\xfe\x12\x27\xe8\x62\xf1\x02\x33\x63\x44\xd5\xd5\xd9\x3a\xa1\x7d\x2d\x66\x7d\xf0\xcb\x8c\x28\xcd\x23\x81\x41\x04\x43\x5e\x19\x21\xfa\x3f\x5a\x98\x55\x4a\xcf\xed\xb8\x30\xb1\xe4\x53\xe6\xf7\xff\x10\x05\x49\x0e\x09\x40\xa6\xef\x21\x0f\x35\xe3\xb4\xa1\xf5\x4a\x86\x64\xd5\x90\x0f\xd5\x33\xa0\xcb\x8e\x3a\xdf\x71\x61\x4c\xf7\x8b\xbc\x2f\x2f\xe2\x3b\x59\x47\xee\x67\x3a\xb9\xb0\x99\x30\x3c\xfa\x6e\x52\x45\x19\x27\xcd\x5a\x64\x61\x44\x69\x9c\xd4\xe5\xad\x62\xac\x55\xb8\x06\x6d\x66\x69\x9b\x4c\x2d\x6e\x50\x9e\x04\x99\xfe\xe3\xc1\x32\x39\xf5\x57\xa8\x38\x5c\x33\x2b\x37\x34\xc7\xc1\x6b\x2a\xb6\xd3\x4a\x13\xe1\xbe\xa6\x06\xc0\x82\xe4\xb7\x9b\xbf\x55\x54\xd8\x50\xdc\xd1\x42\x56\xcd\xf9\xc4\x4f\xa7\x46\x10\xcd\x1b\x4e\x8e\x23\x4f\x66\x55\xdb\x76\x36\x5f\xad\xbe\x81\x4f\x60\x03\x0d\x74\x4a\xd5\x72\x41\x58\x74\x97\xa6\x6a\x15\x42\x35\xd6\x3b\x0d\xc8\x0e\xe3\x51\xc9\x4d\x43\x66\x32\x37\x2b\xb1\xbf\x67\x59\x06\x0f\x0e\x8e\xbe\x4f\xd8\x7c\x85\xa3\xcf\xef\x92\xf8\x0b\x9e\x6f\x90\x36\xc5\xf1\x90\x6e\x3e\x1e\x0a\xa7\x43\xa8\xb5\x90\x6b\xe1\xb6\xda\xd4\x0c\xd0\x3c\xa4\x06\x50\xca\x38\x9d\xfa\xa2\x75\x91\x09\x2c\x72\xd3\xc0\x07\xe1\x03\x3a\x62\x99\xe8\x0d\x5d\x94\x09\xc0\xf2\x84\xbd\x5d\x38\x08\x8c\x59\x58\x4a\x39\x15\xcc\x5a\x9a\xa6\x2c\xcb\xe8\xc9\x6a\xe3\x67\x9a\xc1\xc3\xa3\xfe\xe0\xdf\x4f\x1a\xff\x22\x4f\x1a\xaf\xe3\x75\x5a\x6d\xf8\xc3\xc3\xf1\x46\x3e\x76\x8e\x0e\xdd\x7d\xa9\x5e\x2a\x40\xd5\x06\x28\xe0\x11\xff\x6d\x0a\x6f\xdd\xe0\x82\xf0\x67\x80\x38\x99\xa7\x79\xa0\x17\xe5\x88\xe3\x42\x11\x46\x85\x96\x03\x87\x1f\xd5\x50\xd6\xb3\x62\xec\xea\x26\x46\xd0\x42\xca\xc6\x60\xdd\x9b\x6b\x0b\xfb\x92\x94\x89\xe8\x8c\x23\xef\x11\xb3\xdf\x57\xfd\xc8\x55\x3f\x66\x1f\xde\xa3\x30\x20\xf8\x0b\xfa\x10\xcb\x07\x7b\xad\x53\x60\x6c\x28\xc5\xab\x3a\x25\x15\x0e\xd8\xd0\x24\x28\xad\x07\xfd\x0c\x5d\xb0\x55\x67\xf4\x5c\x1e\x1e\x80\x38\x57\x9f\x98\x18\xbd\x1d\x31\x72\x06\x51\x94\x0f\xb3\x38\x1c\x69\x86\xa5\x94\xba\x67\x3b\x8d\x0a\x80\x49\xfc\xd5\x44\xe1\x6d\x8f\x82\x53\x02\xe0\xb7\x22\x11\x00\xde\x17\x91\x8a\xc0\xeb\xc6\x14\x0f\xa4\x22\x25\xee\x5e\xbc\xd7\x5b\x63\x01\xd1\xe9\xd7\x62\xc8\xf5\x29\x0c\x40\x06\xfb\xbd\xbe\xfb\xef\xad\xf4\x5f\x64\x2b\x35\x26\x46\x79\x2f\xdd\xf7\x8e\x44\x28\x74\xbe\xab\x06\x4a\x23\xb6\x94\x4a\xb2\xd0\xc7\xce\x41\xaf\xb7\xcf\x63\xa1\xf3\x87\x61\xba\xe5\xae\xfd\x22\x76\xd3\xc0\x72\x59\x34\xb0\x9c\x6b\xe9\x6b\x4c\x6d\x45\x22\xa2\xeb\xf0\xbb\x8d\xb6\x58\xca\x26\x96\xec\xb1\x21\x82\x33\xb8\x2e\xde\xa1\x59\x76\xb4\x75\x21\x78\xba\xbe\x9f\x27\xd0\x6c\xcd\x72\x25\x5e\x56\xdf\xa5\x57\x01\xbd\xfb\xf3\xbb\xd8\x87\x20\xfd\xcc\xb4\x6e\x61\xf7\x05\xba\x89\xd7\xd1\x0c\xcd\x2f\xe6\x21\xfb\x2e\x05\xce\x9b\x14\x25\x5f\x50\x92\x23\xda\xad\x39\x9c\xbe\x0b\x4c\x9d\x60\x84\xd0\x3c\x7d\xb9\x0e\xc3\xf7\x3c\x59\x5f\x5e\x82\xd3\x37\xe8\x1b\xe1\x63\xf1\x1e\xcd\x93\xe0\xeb\xdb\x28\xbc\x57\x9e\x78\x1c\x52\x73\x33\x2a\x80\xf3\x8d\xf1\xa3\x6e\x95\x2a\xbe\xfd\x6c\x1a\xa7\xea\xa6\xd9\x04\xf9\x0f\xcc\x99\x69\x24\x83\x65\x46\x73\xf9\x67\xd1\x0d\x6e\xb4\xe7\x65\xb9\x46\x42\x0d\x6e\xa5\x62\x22\xa8\x50\x4c\x58\x21\x2d\x28\x0b\x5a\x4a\x11\xbb\x69\xfe\x27\xe9\xca\xb6\x63\xbb\x75\xf0\x95\xe8\xad\x34\xec\xda\x66\xa1\x8d\x12\x4e\x9e\xb4\x11\xfd\x75\x8d\xe4\xed\x71\x3b\xdc\x65\xb8\x12\x3a\xa3\x2d\xbe\x62\xe4\x54\xe7\x0a\xe7\x58\x2c\x7e\xf5\xd5\x11\x5e\x69\x3a\x88\x4a\xaa\x04\x67\x45\x5d\x8c\x15\x73\xb1\xd2\x4c\xd7\x47\xe5\xd7\x9a\xfa\xc4\xa1\x25\x7d\x6f\xc4\x3a\xcd\x72\x5e\xe6\xba\x8f\x45\xbe\x92\xac\x20\xd2\x89\x36\x8e\xf8\x23\x05\x73\xae\xa2\x67\x8a\x53\xe8\xa3\xdc\xb6\x26\x2a\x9a\x49\x11\x19\xee\xc6\x91\x61\xb5\x9c\xa3\xb0\x67\xfd\x2a\x61\xb0\x4b\x5e\x45\xf3\xe1\x22\x83\x4a\x39\x30\x4b\x78\xd9\xb2\x52\x61\xc5\xde\x8b\xcf\x68\xbe\x35\x9f\x8a\x08\xe8\xad\x7d\x7b\x68\x5c\x6d\xd6\x3d\x5b\xa7\x24\xbe\x63\xf1\x03\xd2\x26\x6c\x56\xc7\xef\x6c\xc2\xa6\x11\xe2\x91\xfe\xc6\x11\xe2\x5b\x97\x30\x09\x2f\xdb\x87\xf3\x3f\x3f\xea\x95\xf2\x4c\x63\x4d\xd8\xb4\xc5\x34\x6c\x32\x15\xda\x2c\x08\x11\x8b\xc7\x1c\xac\x56\x38\xba\x15\x14\x72\x7b\x73\xc3\xf5\x1d\x6a\x23\x21\x66\x5f\xc4\x7d\x9c\x22\xe6\x4d\xa7\x82\xa1\xe9\x2c\xca\x76\xe3\x91\xca\x78\xd4\x84\x4d\x2d\xa3\x91\x6e\xfe\x9e\xa7\x76\x4d\xd5\xac\xee\xde\x43\xed\xcf\x3d\xb7\x3c\x32\xeb\xae\x6c\x87\x73\x79\xd3\x90\x5e\x4b\xc8\x8b\x88\xa0\x24\xe5\xc7\xc4\x5b\x71\x06\x3a\x33\xf1\x32\xa0\x52\xca\x1a\x0b\xdc\xfe\xa4\x53\x8b\x90\x6e\x29\x80\x65\xf5\xdd\x50\xe9\x81\x4a\x95\xb6\xd2\x26\x8e\x1a\x28\xbf\x0a\xd1\x1d\x0d\x75\xed\x68\xcc\xb5\xaa\xd7\x91\x34\xeb\xcf\xa1\x00\x3e\x90\x25\x65\x4e\x1c\xce\x47\x6e\x06\xc6\xb8\x2b\x64\x01\x47\x59\x6a\x96\x85\x83\x5c\xab\xbb\xb4\xe8\x72\x70\x77\x8e\xd3\x59\x1c\x45\x68\x46\x98\x7b\x40\x0d\x2d\xf2\x8e\xab\x04\x08\xf5\xca\x82\x58\x5c\x6d\x09\x11\xdd\x4e\xc4\x47\x0d\x09\x9b\xe7\xa3\xbd\x62\xcd\x82\x4c\x22\xcd\x6c\xea\x6e\x82\x55\x75\x94\x69\xae\xcc\x80\x20\x91\x4a\xc9\xb8\x28\xe6\x28\x5d\x61\x51\x00\xeb\x2e\xc2\x75\xba\xcc\x75\xfc\xf9\x34\x77\x0b\x12\x21\xbd\xec\x55\xca\x50\x20\xd3\x41\x79\xb8\x8d\x3d\xaf\xc8\xc5\x49\x15\xbc\x3b\x72\xb0\x0a\x19\x56\x25\x88\x79\xc0\x7e\x90\x4a\xaa\x35\xdf\x18\x49\x33\x9f\xdd\x66\x62\x42\xdb\xa9\xc3\x32\xbe\xa9\x7b\x31\xb2\xf5\x5c\x7b\xd2\xaf\x64\x4c\x41\x02\x2f\x9e\xde\x35\x72\xa4\xa6\xcb\x35\x50\x6c\x97\x1c\x9a\x49\x92\xdc\x2b\xde\x2a\x64\x76\x51\x39\xfd\x33\x2f\x28\x25\x7e\xde\x20\xec\x82\x5a\x61\x59\x4e\xd7\x4a\x71\x8e\xbd\x4f\x08\x89\x17\x31\x61\x97\x64\xa0\x20\xde\xd5\x56\xaa\x14\xd2\xe9\x04\x2c\xe5\xe3\x96\x77\x19\xc9\x15\x8a\xf9\xad\x30\xdb\x17\x87\x09\xd8\x90\x33\xb4\x34\x4f\x76\x58\x27\xb6\xe6\x40\x66\xfd\x5c\xdb\x5a\xf5\xcd\xae\xa4\xe4\xd1\x9e\x81\xd5\x75\x44\xee\x09\x5b\x61\x31\x3d\xb2\x8c\x1b\x4c\x3e\xba\xa5\xab\x82\xf6\xee\x54\xd9\x0a\x4b\x9c\x9e\xca\x10\xb0\x4e\x21\x4a\x48\x01\x2e\x4b\x11\x51\x55\x91\x9d\x3d\x3e\xb2\x2e\xbb\x2a\xae\xd1\xf9\xc5\x84\x72\x3e\x6f\xd4\x89\x64\x6c\x5c\x62\x11\xf1\x15\xb3\x97\x3f\x5e\x57\xac\x07\xd7\x26\x7d\x80\x2c\x98\xcf\xc5\xaf\xb3\x20\x0c\x6f\x82\xd9\xe7\xe2\xab\x40\x69\x0f\xb3\x82\x64\x26\xe2\xed\x77\xd3\x6d\x26\x29\x7f\x82\xa2\xa2\xe0\x3a\x41\xa7\x24\x0c\xd2\x1d\xa7\x61\x09\x7e\xd2\x75\xac\xe2\x98\x74\xbe\xae\xba\x6a\x3c\x6c\x3a\xe4\x76\xa1\xaa\xbe\xa9\xad\x8e\xb9\xba\x0c\xff\x56\x12\x0a\x23\x52\x3a\x63\x53\x44\x6a\x2e\x3c\xa5\xc6\xc0\xa8\xa6\x67\x5a\xbd\x3a\x5e\x57\x65\xee\xb7\x37\x5e\xaa\x6d\xcd\xcd\x6f\x05\xe5\x55\xec\x99\xf6\xad\x00\xa2\xce\xce\x99\xeb\xe4\x09\x57\xce\x5f\xa7\xce\x38\xbf\xe2\xf8\x2b\x27\xb5\xb3\x4e\xa9\x49\x7d\x56\x7d\x5b\xc6\xe9\x5a\xa6\x6a\x15\x0b\xe1\x59\x2b\xee\xbc\x4c\x3b\x6d\x6a\x03\xd7\xd2\x5f\x75\x66\x0f\x80\x1d\x59\x53\x82\x0e\x68\x75\x6b\xa4\xeb\x21\x2d\x29\x25\x05\xdd\x67\x78\xac\x81\xb4\x0f\x68\x51\x21\x34\xf6\x1a\x64\xf0\xa8\xef\xf5\xfe\xad\xff\xfe\x17\xd1\x7f\xe7\x31\x7e\xaa\x54\xe0\xec\x11\x91\x3f\x27\x0e\xdd\x01\x57\x81\x0f\x86\xfb\x5c\x03\xce\xb5\xe2\xa1\xd2\x8a\xcf\xa4\x56\x7c\x2d\xa3\x8f\xb2\x6c\xa0\x83\xc3\x81\xc8\x06\xca\x3c\xa8\x16\x2a\x3c\xc1\xad\xcf\x4d\xa9\xbb\x0b\xe1\x35\xc4\x7c\x78\x3c\x8a\x6a\xc5\x2e\x9d\xef\xd1\xed\xf9\xb7\x95\x73\x0b\x9b\xb7\x22\x70\xec\x9d\x6f\xa1\xda\x54\xad\xcf\x6a\x6d\x52\x65\x56\x51\xb8\x2c\x2b\xc9\x85\x13\x72\xbe\x13\x31\x9b\x92\xa2\xb3\x74\x88\xa3\xcf\x78\x81\x51\xa2\xb6\x1b\xd3\x45\xa8\x2e\x9b\xe8\x9d\xfe\x44\x25\x4d\x5e\x0a\xae\xa9\x91\xed\xbd\x4e\x06\x6e\xb3\xa5\x2f\x5d\x8b\xa2\x79\x12\xdc\x5e\xce\x92\x38\x0c\x4f\xef\x98\x7c\x2c\xcf\x40\x14\x51\x5e\xcc\x73\xb9\xc6\xf0\x42\xba\x2e\x66\x29\x65\x44\xbe\x88\xbf\x46\x1f\xf0\x1d\xba\x24\xc1\xdd\x2a\x8f\xc0\x10\xce\x7f\xb6\x85\x29\xa4\x05\x97\xd5\xe1\xa9\x8c\xe2\x62\x88\xaa\xeb\x38\x7a\x85\xa3\xf5\x37\xf1\x7c\x27\x51\x17\x54\x8e\xec\x3d\xc1\xaa\xb1\xad\x04\xb6\x23\x2e\xe9\x89\xa9\xd4\x58\xad\x26\xae\x68\xd4\x90\x39\x7d\x2b\xb2\x42\x43\x85\xd3\x67\xfb\xa6\xac\x80\x65\x84\xa5\x7e\x31\x22\xf8\x7c\x78\x85\x23\x94\xee\xdc\xb9\x12\xac\x15\xad\xd1\x2e\x9b\x3a\xaf\x35\xe3\x24\xbf\xa0\x20\x7a\x2d\x2b\x38\xea\x4e\xca\x60\x7e\x59\xd5\x42\xfc\xb2\xca\xeb\xeb\x09\x1f\xe3\xe8\x97\x14\x25\x17\xd1\x6a\xcd\x25\xb1\x72\x24\x4d\xb1\xa7\x16\x63\xf0\xa8\x9b\x27\x49\xf0\x9d\x69\x3f\x5a\xe7\x34\x16\x47\x3c\xd2\x90\x49\xa2\x88\x3e\x64\xd7\x4b\xdb\xb0\x59\x14\xe7\x05\x94\xc5\x52\xa5\x4b\xe4\x6b\x39\x0f\x25\xcf\x02\xd2\xf1\xf7\x0c\x33\x4a\x9d\xad\x79\x95\xc7\x89\x67\x6a\xd7\xeb\xcb\x25\xae\x5b\x4e\xcd\x2c\xda\x36\x25\xe9\xdc\xc5\x5f\xf8\xd8\xd0\x9d\x42\x72\x30\x65\x4a\x5a\x7a\x67\x47\xc4\x08\x76\xaa\xb3\x7e\x8e\x53\xde\x07\x7b\x79\x71\xd3\xf2\x32\xd9\xe7\x87\xe2\x76\xc6\x6c\xa7\xd3\xba\x40\x75\x9c\x41\x5d\x4b\x44\x3b\x13\x96\x87\x8d\xdb\x08\x79\x1e\xcd\x33\x11\x0e\x47\x0f\xcf\x57\x88\x97\x52\xd5\x24\x24\x35\x35\xca\x11\xb0\x1e\x1f\x11\x8f\x73\x4a\x78\x86\x97\x3c\x02\x16\x30\x89\x67\x1e\xf4\xbf\x1d\x15\x2c\xa0\x33\x0b\xc1\xc5\xe9\x69\xe6\x49\x34\xaa\xa7\x34\x4c\xfc\x2b\xe6\x0d\xd4\x57\x4a\x06\xcb\x2c\xe3\xce\x86\x79\xaf\x8a\x2d\x50\x29\xcb\x9d\x1e\x13\x96\x45\xe7\xca\x9d\x8e\x98\x9f\x4d\xac\x7d\xa5\xff\x19\xd1\x9f\xca\x45\x29\xf2\x29\x67\xc6\xd1\x31\x63\xcd\x38\xca\x5d\x94\x90\x8f\x73\x9f\x4d\xbe\xa2\xe8\x96\xa5\xbc\x37\x23\xb8\xe7\x32\xe7\xb2\x71\x22\x2d\xf8\x32\xee\x4f\x94\x53\xa3\x78\xce\x5b\x16\x02\x92\xa8\x5f\x8f\x9e\x02\xd3\x16\x10\xf3\x15\x02\xb9\xef\x1c\xc7\xdb\xf6\xc6\xe9\xb1\xc8\xc1\x3c\x4e\x4d\xaa\x73\x17\xd5\x14\x40\xb2\xa1\x1b\x29\xdc\x73\xc1\x18\x4d\xba\x38\xfd\x98\xb0\x48\xa4\x93\xe4\x2a\xc9\x95\xee\x6d\x9f\x8c\x12\xe9\x7e\x94\xb1\x01\xf0\xa6\x7b\x62\x26\x59\x1b\xe5\xb9\xa2\xd3\x0d\xed\x12\xd1\x3f\x9e\x60\x1a\x8c\x51\xab\x85\xaa\x69\x48\x25\x0d\x69\xee\x2c\x95\x74\xef\x82\x15\xdd\xfa\x58\x4c\xfd\x30\x98\x21\x67\x05\x9b\x8d\xa6\xcc\x42\xba\xa6\xe8\xd8\x03\x48\x3a\x69\xfe\x9a\xfc\x1a\x35\x47\xcd\x5f\xa3\x26\xa8\x08\x90\x29\x66\x74\xc5\x86\x52\xbd\x65\x19\xda\x83\x3c\x62\x48\xe9\x84\xe5\x01\x88\x32\xa5\x97\xce\xaf\x7d\xec\xc3\x69\x84\xef\xd8\xbd\xec\x65\x12\xdc\x21\xa5\xf7\xb6\x96\x56\xa7\x8c\x14\x6e\x22\x09\x3f\x68\x4d\x28\x43\xdb\x90\x3f\x32\x51\x36\x31\x49\xa7\xd5\x42\xc5\x18\x72\x74\x6f\x50\xc9\x21\xea\xc4\xa2\x5c\xd7\x67\xc0\x32\x4d\xbb\xa9\xa8\xb2\x77\xa8\x20\xd2\x99\xa2\x90\xae\xfb\xdd\xb4\x3d\x21\x19\xeb\xb3\x6a\x83\x2a\x9b\x50\xd4\xee\x39\x19\x4f\x07\x16\xe2\xd9\x67\x23\x1f\x18\x30\xed\x73\xaf\xa5\x49\x20\x9f\xe9\xd2\x24\x10\x40\xbc\x71\x43\x4d\xb6\xdb\xd6\xf7\x1c\xdc\x6a\x25\xad\x16\x01\x72\x24\x82\x04\xf1\x76\x74\xc2\xf8\xa5\x34\xdb\x2a\x83\xd9\x77\xd3\x94\xe7\x35\xab\xa1\xe8\x0a\x41\x32\xe5\x54\xd9\x2b\x18\xf1\xa1\x1b\x2a\x6a\x23\x3f\xb3\x8e\x31\x0b\xe0\xa8\x85\xe9\x36\xce\x32\x11\xcd\x51\x1d\x72\xee\x94\xe5\x46\xe3\x00\xc7\x46\x75\xac\xaa\x57\x56\x29\x62\xcc\x84\xce\xe8\x63\x9c\xcc\x4f\x09\x57\xdd\xd8\x18\xa9\x2e\x75\x5d\xe1\xc2\xf0\x0a\x47\x9f\x27\xcc\x1c\x7b\xd2\x4d\xe8\xea\xe7\x9e\xae\x16\x09\xa1\x10\x96\xf7\x0a\x73\x7d\x56\xf7\x5b\xc7\x83\xf2\xef\xfb\x8e\x37\x85\xd5\x40\x22\xfa\x2e\x4b\x73\x78\x8b\x08\xf3\xc8\xe5\xdf\x80\x63\xbd\x64\x72\x47\x5e\x3b\x46\xed\x7e\xb5\x97\x9b\xd9\xd7\xce\x71\x35\x43\x73\xe7\x03\x9d\x6d\x4e\x92\x6b\x25\xeb\x1a\x03\x59\x2a\xa3\xed\x16\xb6\x64\x4b\x18\x62\x77\xc7\x5d\x97\xa3\x66\x57\x0e\x5d\x75\x5b\xb1\xe5\x23\x5f\x8b\x75\xea\x5a\xdf\xf9\x6a\xc4\x7c\x79\x6c\x55\x74\x5a\x0c\xb4\x0b\x51\xc5\xa0\x52\xae\xd4\x04\xd0\x9d\xee\xd8\x75\xf3\x9a\x61\x74\xdc\x28\x11\x8b\x58\xe1\xcd\xaa\xc6\xbb\xb0\xf3\xe9\x5a\x89\xae\x61\xd6\x5d\x56\x83\x54\xce\x46\x6b\x01\x3d\xda\x98\x74\x82\x17\x0e\x51\x8b\xe7\xca\x9d\x76\x3a\x90\x49\x3e\xfc\x9f\x76\xdd\xcd\x8b\x47\xe8\x27\x79\x67\xd8\x9d\x55\x57\x74\xd0\x1e\xf1\x98\x04\xcc\xde\xb7\xce\x68\x7b\xc3\xb1\x0b\xad\x7d\x06\x54\xae\x34\xf7\x8b\xed\x8d\xa9\xf3\x7c\x49\xbe\xcb\xd2\x3b\xe2\x89\x3b\x72\xc8\x09\xa6\x4b\xad\xe3\x63\x63\x6e\xe6\x2e\xf0\xb0\x33\x74\x01\xa4\xff\x27\xcf\xfc\xa1\x0b\xc9\x33\x56\x16\xdc\xa4\x0e\x01\x6d\x2d\x9d\x85\x37\xf8\x91\x00\x90\xa5\xcb\x78\x1d\xce\x5f\xc6\xc9\x0c\x19\x67\x9c\x68\x9d\x8a\x08\xaf\x83\xd9\x04\x75\x83\x90\xfc\x11\xdd\x6f\x4e\x0a\x7c\x17\xcc\x84\x45\x0d\x3d\x39\x19\xe2\xfc\xce\x33\x42\xdd\x74\x89\x17\x14\x53\xa6\x5d\xd3\xa9\x5c\x25\x42\xb6\x54\xaa\x92\x50\x97\xc8\xbf\xa1\xd3\x63\xc9\xc3\x6f\xd6\x84\xc4\x11\xbd\x71\x14\x6f\xef\xa0\xd5\xe2\x76\x18\xbc\x8a\x16\x49\x5b\xde\x02\xf5\xe0\xda\x76\x16\x88\x69\x37\x46\xdd\x94\xc4\xab\x77\x49\xbc\x0a\x6e\x03\x71\x15\x45\xdd\x55\xc2\xf4\x17\x2a\xdf\xfe\x96\xba\x34\x2a\xea\x4a\x0e\x4c\xf4\x8b\xfb\x45\x34\x4b\xd8\xa4\x09\x42\xc6\x38\x07\x81\x11\xcf\xd0\x35\x47\x24\xc0\xa1\x51\xf9\x12\x47\xb7\x21\x52\xf5\x7a\x55\xf5\x5e\xc4\xeb\x1b\xad\x5e\x5f\xab\xa7\x32\x5e\xc9\x8d\x60\x95\x57\x94\xb7\xfd\xf9\x7c\xb3\xd4\xcb\x62\x18\x54\x55\x7d\xb0\x2c\x0a\xd3\x93\x38\x3f\x37\xaa\xeb\x58\x3c\xb8\xd9\xfc\xa0\x62\x79\xb3\x4a\x81\x04\x6c\x0b\x72\x3b\xbc\xeb\x55\xd3\xae\x62\x02\xe5\x51\x66\x06\x3d\x5f\x82\x90\xce\xd3\x64\xa3\x70\x9e\x22\x22\x01\x34\x91\x3c\xc7\xe6\xb0\x95\x9b\xd5\x5c\x39\x7e\x23\x8e\xf2\x06\xfe\x2e\x4c\xad\x46\xbd\x99\xaf\xd5\x9c\x63\x07\xb5\xe2\x5d\xed\x28\x6c\x1a\x24\x91\x53\xa6\x7a\xdd\x3d\x54\x1f\xde\x8a\xb9\x96\x83\xbb\x56\x52\x52\x87\xb1\xb9\x74\xf5\x1d\xaf\x52\xbc\x73\xe1\x06\x91\xc8\xab\x51\xcf\x69\x3b\xdc\x99\x76\xfd\x71\x10\x98\xf4\x47\x6e\x9d\x9c\x52\x7f\xbb\xd9\xab\x86\x94\x1b\xe7\x06\xc1\x6f\xb7\x90\x5b\xd5\xcd\x5d\x79\x53\x30\x26\xad\x96\xbc\xae\x2a\x47\x69\x6b\x65\x7a\x59\xe0\x41\xbb\x96\xc2\x1e\xa6\x0e\xb5\x3b\x55\x37\x9c\x8a\xf2\x76\x3b\xb3\x6e\xb6\x0f\x65\x71\x58\xdd\x22\xf6\xdc\x3c\x1f\xb4\x6d\xcc\x3c\x5d\x74\xd3\xf6\xe5\xed\x2e\x9e\x63\x52\x8b\xbc\x67\xbc\x89\x53\xb9\xf8\x54\x28\x6e\xa4\x30\x50\x98\x27\x79\x1a\x6f\x29\x02\xec\x39\x42\x2c\xf8\x4e\x69\x40\x75\x53\xd7\xee\x33\x4d\x1f\x3b\x72\x2f\xee\xee\xd0\x1c\x07\x04\x19\x67\xef\x36\x33\xaf\x28\xa6\x16\x67\xa0\xcc\x52\x51\x2e\x51\x69\x8d\x6c\x65\xde\x74\xca\x9e\xa0\xc7\x55\xab\x76\xe3\x36\x50\x41\xfc\x79\x34\x2f\xa7\xa0\xd2\x4e\xd8\x71\xaf\x4e\x51\x31\xa9\x21\xf8\xb8\x76\xdd\x54\x43\xba\x53\xdf\x1d\xd5\x95\x56\x89\xf3\x23\xaf\x8e\x54\x39\x61\x38\xb6\x0f\xb1\xb8\x27\x56\x32\xa5\x4a\xaa\x32\x99\x6c\x13\xec\x61\x7f\xaf\x96\x8e\xd2\x19\xc2\x21\x4f\xdc\x5a\x9e\x54\xf6\xda\x8e\x2d\x4f\xc0\x50\xc5\x63\x00\xb6\xd0\x91\xd7\xcd\x37\xa6\xc9\x30\xae\x9f\x15\xaa\xd9\x6a\x78\xa6\x81\xe5\xe2\x72\xfd\x9e\x28\xb2\x7d\x54\xec\x88\xbc\xb4\x32\x40\x5a\x2d\x54\xbb\x9d\xd1\x1d\x5c\x28\xf8\xab\xeb\xa9\xac\x6d\x35\xdd\x11\x76\x89\xba\x80\x6a\x88\x58\x95\x67\x6e\x9e\x91\xa3\xe2\xec\xb7\x0f\xb2\x8a\x8e\x61\x7b\xe4\xe4\x0a\xcc\x80\x55\xac\x98\x24\x30\x5d\xaf\x56\x09\x4a\x53\xfe\x91\x4d\xe6\xd1\x9e\x97\x81\x42\xe8\x63\xeb\xcc\xa8\x9c\xc5\xce\x76\xf3\x7f\xb7\x69\x5e\xad\xcc\x31\x1c\x89\x45\x76\xbc\xca\x94\x47\x10\x15\xf5\x25\x60\xf4\x5d\xf4\xba\xf5\x84\x09\x7a\x8a\xfa\xfa\x2c\x2b\x3d\x15\xab\x13\x56\xbb\x6d\x76\xaa\xae\xa4\xf9\xb2\xdc\xf4\x44\x60\xd3\xaa\x1f\xfb\x1e\xbd\xd6\x0f\x5d\x97\xde\x09\xb7\xbd\x5d\x07\x21\x61\x27\x29\x3d\x2c\x53\x2e\x50\x68\x13\xba\x3a\xfd\x94\x5a\x32\xd5\xaa\x92\x1d\xb5\x3b\xe8\xe9\x7a\x1d\x8f\xeb\x75\xf4\xc4\x06\x6c\x6d\x6b\x3f\xf5\x17\x26\xe6\x51\x4f\x19\xcc\x63\x37\x5e\xd2\x55\x16\xcd\x10\x60\xc1\xf4\x3a\x1e\x57\x08\x79\xb6\xf6\x2c\x2f\xff\x73\x34\x7b\x97\xb0\xc7\x71\x3a\xaf\xd2\x6e\xb0\x5a\x85\x78\xc6\x64\x0b\xce\xce\x3f\xa2\xfb\x14\x8c\xcb\x80\x24\xc1\xb7\xb7\x88\x05\x1b\x66\x4b\x94\xcb\x71\x19\x7f\xf8\x93\x59\xb0\x71\xc2\x0f\xa3\x8b\x45\xc9\x68\x50\x58\x7a\x57\x16\xff\x56\xcf\xb0\x10\xfb\x5b\x3c\x04\x8f\xf1\x84\x1e\xc6\x6a\x5d\x95\xec\x70\xd4\x54\x34\x2d\x70\xb8\x8e\x5c\xcd\xa6\x12\x98\xd1\x50\x45\x15\x6f\x5a\xd8\xea\x0b\x6d\x94\xf7\xf9\x62\x05\xb5\xc9\x0b\xe3\xf9\x02\x37\xc5\xbb\x82\xb4\x9b\x2d\x18\x1f\xc9\x9e\xd5\x81\x66\xb5\xa5\x0f\x15\x3d\xcb\x63\xbd\x15\xcc\x96\x48\x85\x19\x14\xde\x52\x83\x5b\xb2\xea\xa8\xb5\x80\xd0\x4d\x53\xba\x22\xb0\x8c\xb5\xd0\x47\x22\xe5\xe6\xf3\xed\x6d\x55\xb2\xeb\x59\x1c\x7d\x41\x09\x51\xae\x1c\x71\xf8\x21\x56\x51\x29\x2f\xa2\x39\xfa\xa6\xc7\x04\x25\x46\x48\x50\x72\xe2\x27\x85\x60\xa0\x79\xc4\xe2\xa4\x60\x65\x06\xca\x41\x7c\xc7\x79\x60\x3b\x4b\x0c\xe3\x09\xee\x74\x46\xe9\x09\xdd\x57\xf7\x7c\x3f\x69\xb5\x1c\xdc\xf6\xd3\x8e\xa7\x85\xda\x4d\x11\x29\x3d\x3f\xe9\xcb\xe9\x89\x6f\xc0\x15\x9a\x7e\xa4\x74\xf6\x75\xf7\x7b\x6c\x57\xeb\xd7\x6f\x26\xdc\x59\x93\x1e\x05\xf9\x45\x8d\xc3\x59\xdf\x2c\xd5\xab\xb2\xfd\x42\xea\x15\xdf\x00\xf2\x38\x8a\xb5\x64\xf0\xa7\x02\x21\xc5\x0b\x37\x2f\x17\x26\xfe\x9e\xab\x2c\x36\x4e\xaa\xa5\x09\xe3\xb6\x96\xd6\x19\x89\xc4\x7e\xaa\x87\xdf\xe6\x3b\xd8\xc2\xd9\x8b\x4d\x1c\x91\x9f\x6e\x61\x59\xe1\xa9\xe8\x36\x62\x93\xdf\x38\x9f\x63\x66\x8b\x01\xe0\xd2\x0f\x44\x4b\x21\x33\x2d\xe9\x04\x22\x44\xbc\x0b\xd7\xbe\x0b\xe7\xbe\x0b\xaf\x7d\x97\x19\x1d\x37\x9a\xbe\xef\x47\xdd\xd9\x32\x48\x4e\x89\x13\x00\x1e\x47\x78\x1c\x9c\xb8\xad\x56\xb1\xb0\xe3\x81\x31\x08\x3a\x1d\xb6\x54\xc6\xcb\xe3\x48\x3d\xbc\x17\x6a\x2e\xdb\xb4\xe6\xb2\xdd\xe6\xd6\x26\xfc\xed\x82\x99\x89\x60\xf6\x0f\x5b\x1e\x71\xbe\x22\x58\x32\xbc\x59\xbb\x0d\x49\xa7\x03\x60\xcf\x2c\xc4\xb4\x70\xdd\x6e\x43\xdc\x6e\x03\xf5\xde\x17\x6b\x91\x8a\xb1\x5a\x76\x94\xb0\x84\x2e\x2c\xe7\xba\xed\x27\x1d\x0f\x2e\xd9\x3f\x60\xcc\xd2\x11\xb1\x4e\x29\xcf\x43\xca\x3b\x3a\x23\x2e\xd1\x2a\x48\x02\x12\x27\x4e\x9c\xaf\x71\xa2\x0e\x6a\xb5\xca\xc1\x18\x3c\xd4\xd7\x28\x08\xc2\xd5\x31\xbe\x37\x6c\x0f\x8a\x15\x23\xc4\xfa\x32\x6f\xfb\xa8\xe3\xc1\xa0\x43\xff\x01\x30\xe8\x74\x68\x29\x8b\x85\x3d\xc6\xc7\xb1\x1a\x85\x65\xdb\xd3\xc6\x64\xbb\x8e\xe2\xf6\xa6\x8e\x5a\x6a\x6c\xdf\xd1\x5e\x7d\x47\xe5\xb0\x8a\x8e\x5e\xf3\x8e\x2e\xdb\xbc\xa3\x4b\x5e\x9a\x65\xcb\x76\x9b\x4d\xe0\x85\x1f\xb4\xc3\xce\xac\x3d\x87\xb7\xda\x7b\x67\x95\x60\xb7\xec\x04\xed\x59\x7b\xdd\x99\x77\xae\xb9\x20\xf7\xf8\xd8\x6c\xee\xd1\x69\x9a\xb2\xb0\x63\x01\x5c\x02\x2a\x2e\xdd\x89\xa8\xf2\x98\xdf\x2e\x17\xad\x56\xbf\xb7\x27\xa6\xe0\x59\x3c\x47\xef\x62\x1c\x11\xc7\x05\xb9\xe0\x59\x5c\xe4\x1d\x25\x29\xc6\xb9\x81\x90\x40\x43\x4c\x34\x55\xd4\xd2\xcb\x45\x59\x6f\x26\x76\xac\xca\xb7\xd6\x8e\x07\x79\xfb\x74\xbb\x80\x7b\xae\x92\x59\x8b\x62\x9a\x05\x94\xf0\xb7\xfb\xf1\xa2\xe3\x23\x78\xdb\xf6\x51\x96\x65\x78\xe1\x24\xad\xd6\xa2\x7d\x5b\x21\x87\xf3\x0b\xb2\x8d\x3d\x5b\xf5\xab\xc8\xb7\xb6\xa0\x76\xb2\x89\x6b\x6e\x1d\x73\x5c\xc8\x71\x71\x1e\x78\xec\x3d\x96\x4a\x8c\xb7\xed\x3c\xe5\x81\x34\xc9\x12\x36\x3a\x0b\xc8\xbf\x8f\x6e\xb3\xcc\x34\xa1\xb0\x19\x4f\x18\x47\x07\x10\x21\xc1\xf9\xea\xe3\x3c\x3c\x76\xc7\x40\xfc\x69\x7f\xea\x65\xf3\x91\x8d\x54\xc7\xae\x6e\x36\x6d\x2b\x58\xd5\x6d\x4e\x64\x99\x14\x20\x2b\x6a\xaa\x6c\x4a\x58\xd5\x07\xf5\x60\x2d\x64\x1f\x66\x5f\xc8\xfa\x43\xf2\xfe\x90\x8d\xfd\xc1\x9d\xce\x38\x7f\xaf\xe4\x64\xd6\x66\xfb\xd5\x9b\x68\xcb\xa1\xa9\xcc\x14\x4b\x49\x10\x17\xef\x1a\x1a\xda\xed\x6a\xfd\xfd\xd5\xb6\x94\x4d\x04\x51\xa3\x22\x71\x10\x4f\xb3\xcc\xba\x85\xe6\xfa\x66\x96\x01\x4f\xdb\xd5\x36\x5f\x8e\xbf\xea\x98\xf2\x50\x89\xda\xf6\x09\x4e\x7c\x37\x33\x55\xdf\xa5\x11\xb5\xde\x90\x29\x19\x7c\x21\x31\x23\x9b\x97\x31\x13\x2c\xb8\x99\x97\x98\xfb\x0f\xdf\x46\x2e\xbc\x1f\x31\xa3\xb5\x94\x64\xcc\x1e\xed\xe1\xdb\xa8\x66\x8b\xa1\x95\xc3\x20\x25\x59\x56\x3b\x79\x5d\x28\x70\xd6\x58\x8d\x18\x56\x74\xbf\xa1\xa9\x10\x73\x41\x2b\x39\xce\xdc\x71\x2f\xb4\x3e\x5c\x58\x9c\xc7\x06\xf4\xeb\x59\x7e\x73\xe6\x6e\x66\xcb\xee\x85\x1e\x67\x8d\x7b\x99\x2d\x6c\x4e\x6c\x07\xb4\x6e\x29\xf4\xda\x21\xfd\x6a\x71\x49\x9b\xc2\x3b\x90\xc1\xc1\x41\x6f\xf8\x7d\x11\x47\x2f\x6c\x21\x32\x89\xe9\xea\x46\x7f\x57\x26\x86\xba\x28\x71\x89\x14\xba\x41\x3f\x18\xb1\xe6\x88\xad\x47\xb2\x91\xca\x34\xad\x2c\xf4\x69\x7f\xd0\x07\x63\x4b\x4d\x16\xb7\x94\x67\x58\x14\xfe\x7e\x71\x02\x9c\x66\xa1\x5a\x93\xf5\xd8\xd2\x76\x15\x78\xa9\x26\xc7\x60\xf4\xa6\x02\x56\xaf\xc3\xa1\x4c\xa6\x54\x80\x19\x95\x38\x5c\x89\xc1\x15\xa0\xc5\x7a\xa2\xb7\xf6\x81\xab\x61\x58\xb9\x36\xc7\x64\x4c\x89\x0a\x78\xbd\x4e\xb3\x72\x7e\x55\x00\x5b\xaa\x36\x41\x06\xf7\x0f\xfa\xde\xbf\x5d\x2c\xff\x45\x5c\x2c\x0b\xfb\xce\x8b\xf3\x97\xa7\xbf\xbc\xfa\x70\x7d\xfa\xe6\xf2\xe2\xfa\xec\xed\xab\xb7\xef\x2f\xcb\x4e\x97\x07\xbd\xfe\x91\x48\xde\xec\x0e\xab\xe3\x0e\x72\x27\xca\x19\xbd\x56\xa6\x69\x97\xc4\x2c\x18\x91\xd3\xfc\xdd\x82\xfd\xaf\x09\xe0\xba\x54\xe4\xb2\xff\x35\x01\x9c\x57\x43\x5d\x57\x43\x2d\xfc\x87\x59\x9a\x8e\x9a\xc9\xed\x4d\xe0\xf4\x86\x43\xd8\xc8\xff\xe3\x76\xfb\xa0\x09\x69\xc9\x68\xd0\x3b\x1a\x1c\xed\x1f\x78\xde\x01\x3d\x75\x6c\x5d\x16\x8c\x5c\x24\x08\xfd\x0d\x39\x8e\x16\x2d\x19\xf9\x57\xc5\xe6\x7b\xa8\x3f\xe8\xef\x37\x01\x2c\x16\xcc\x66\x82\xae\x62\xc1\x00\x1d\x05\xae\x15\x62\x10\xd8\x21\xfa\x83\xfd\x61\x30\xb0\x14\x1c\x0c\x87\xee\xc1\x8d\xa5\xc0\xdd\x3f\x3a\x3c\x0a\x2c\x05\xf3\xfe\xfc\x60\xb6\xb0\x14\x0c\x87\xc3\x83\x61\xdf\x52\x80\x16\xbd\xa3\xde\x91\xa5\xe0\x30\x40\xbd\xbe\x8d\xaa\xc5\x0c\x1d\x0d\x6c\x6d\x1c\xf4\x8e\x16\xd6\xc6\x83\xf9\xc1\x22\x38\xb4\xf6\x1c\xf5\x50\xcf\x46\x15\xfd\xdf\xac\x09\xa6\x90\xc9\x2e\x47\x43\xe8\xf5\x87\xd0\x3b\x18\xc2\x9e\x37\x84\xbd\xe1\x30\x77\xc1\xc1\xbe\x3b\xc6\xc7\x3d\x6f\x7f\x8c\x73\x9d\x60\xe2\x93\x2b\xfc\xac\xbf\xff\xfb\xfd\x47\x77\x4a\x97\xdf\x15\x7e\x26\x7e\xc4\xf4\xc7\xef\xf7\xa7\x63\x91\x15\x87\xcd\x2a\xa6\x1d\x89\x22\x14\x32\x22\xd2\xd4\xe1\x99\xb3\xf8\x94\x32\x0a\xdf\xd3\xe9\xc7\x4b\x33\x3d\xe5\x95\x3b\x26\xc7\xbd\x01\xcb\x45\xa5\x6e\x28\x87\x6d\xcf\xfd\x91\xd4\x37\x84\x21\x86\xb8\xb2\x21\x5e\x9a\x29\xe5\x23\xca\x80\x03\xb8\xea\xe9\xd6\x2f\x2c\xf0\x0d\x41\x3e\x67\x3c\x5c\x58\xc1\xd1\x8c\x7f\xcd\x9e\x94\xbe\x56\x84\x60\x3b\x0b\x66\x4b\x24\x22\x0f\xb2\xf1\x3b\xd3\x0b\xa0\x54\x00\x87\x8b\xb3\x5d\x00\xcc\x28\x67\xdb\xc7\x50\x2c\x43\x15\x50\x19\x3e\xa3\xbc\xfb\x3e\xbd\x30\xa2\x5b\x66\xd3\x3a\x9a\xc1\x9b\x60\xf6\x59\xfc\x58\x43\x1e\xbc\x6d\x34\x17\x7f\x9c\xce\x66\x28\x22\xa3\x6b\xa8\x24\xe3\x97\x39\xa8\x10\xa0\x55\xd1\x73\x85\xe8\x43\x12\x44\x29\x4f\x03\x30\x5a\xd8\x2a\xbc\x5d\x05\x7f\x5d\xa3\x11\x8b\x43\x17\x27\xdd\x9b\x10\x45\x73\x67\x0d\x17\x20\xaf\x7c\x11\x09\x45\xfb\x26\xac\xe5\x8a\xd5\xd8\x83\x28\xc5\x23\xeb\x3e\x29\x14\x31\x00\x1a\xe3\x3c\xb2\x8c\x3d\x2c\x0d\xee\xa8\x62\xd0\x65\xb0\x51\x9e\x16\xe2\x3d\x4a\x49\x9c\xc8\x38\x76\x5a\x52\x0e\x36\xad\xed\xd9\xe6\xb5\x9b\x1a\xa1\xb5\xec\x7e\xaf\xa5\x14\xf5\x97\x2b\x34\xc3\x0b\x3c\x33\xe2\xf4\x55\xc4\x12\xd4\xb2\xcf\xe8\xb4\x57\x06\x91\xdc\xa9\x49\x46\x74\x21\xd3\xc7\x2e\xdd\x15\x19\x40\x38\x08\xf2\x1f\xb2\xa2\x3e\x84\xcf\x68\xa6\x07\xe9\xe6\xb3\xda\x5f\x39\x48\xfb\x09\x67\x00\xe2\x6e\x3e\xcf\x59\x71\xfe\x13\xae\x69\x31\x9f\xf0\xac\x88\xff\x09\xe7\xf9\x67\xbe\x0e\xb4\x42\xfe\x01\x5e\xd3\x2a\xf5\x0b\x80\x01\x59\xaa\xd0\xe9\x68\x85\xe5\xb3\xd7\x37\x67\xaf\x4e\xfe\xc6\x26\x0d\xc4\xb5\xeb\xc8\x24\xae\x5c\xf5\x7b\x9b\xda\xa9\x2f\xb5\x94\x1a\x0d\xe5\x9b\x90\x8f\x6c\x5f\x27\x46\xb7\xf2\xef\x30\xea\xbe\xf9\xe5\xd5\x2b\xbe\xe4\x81\xdc\xc0\xec\x88\x7d\x5f\xaf\xdc\x6a\x39\xf6\x6a\x22\x85\x07\x94\x5d\xc4\x29\xef\xb3\xb3\x91\x73\xb9\x5e\xb4\xdb\x1f\x6f\x9c\x45\x12\x7f\xbc\x0a\x66\x98\xdc\x6f\x44\x4f\xa5\x68\xbc\x70\xea\xc8\xaa\xe7\x77\x15\x79\xf5\xf3\xa9\x86\xcc\x5a\x40\x41\x2e\xee\xd2\x1d\xda\x2e\xbc\xab\x1d\x9a\x57\xba\x72\xa7\x7c\x1d\x87\xc1\xec\x33\xb4\x42\xf0\x9c\x81\xbc\xb6\xc7\x6b\x27\x68\x5e\x51\xd7\xcb\xeb\xf6\x78\xdd\xdb\x04\xa1\xa8\xa2\x76\x2f\xaf\xdd\xe7\xb5\xef\x51\x18\xc6\x5f\x2b\xaa\xf7\xf3\xea\x03\x49\xf6\x1a\x55\x54\x1e\xe4\x95\x87\xbc\xf2\x5d\x70\x8b\x22\x12\x54\xd4\x1f\xe6\xf5\xf7\x79\xfd\xd9\x7d\x50\x45\xf8\x7e\x5e\xf9\x80\x57\xfe\xba\xc4\xa4\x8a\x94\x83\xbc\xf6\xa1\xa0\x9b\xbd\xa2\x3e\xaf\x61\xfa\x61\x0e\x73\xa4\xc3\xbc\xaf\x64\xfd\x91\x36\x4c\xae\x0e\xf2\x53\xcd\x08\x78\xfa\xe0\x7a\x3a\xd4\x5f\xea\x46\xc2\xd3\xc6\xd9\xeb\x99\x7d\xaa\x1c\x11\x4f\x1b\x6e\xaf\xaf\x03\xbd\xae\x1d\x19\x4f\x1b\x77\x6f\xa0\xc3\x9d\x55\x8f\x90\xa7\x8d\xbf\x37\xd4\x81\x3e\xd6\x8c\x94\x37\x64\x29\x3c\xb9\x3c\x8c\xe6\xa7\x51\x8a\xf3\xdb\x81\x7a\xa0\xe2\x68\x95\x46\x60\xbf\x00\x21\x9f\x28\x34\xf7\x79\x77\x9c\x1e\x27\xcc\x67\x5e\x90\x94\xb6\x3d\x31\xcb\x74\xc8\xab\x74\x5a\x41\x18\xab\x0f\xb2\x1a\x11\xa3\x4a\x66\x2e\x94\xd7\x49\x51\x05\x99\x37\x77\xb0\xe6\xf2\x01\x0b\x93\xa1\xc0\x74\x6f\x72\xe3\xeb\xb6\xc8\x8a\x70\x0f\x78\xe1\x28\x43\x2c\x04\xd2\xaf\x58\xa6\xe1\x0d\x52\xd4\xe8\x0d\xf7\x47\xba\xb0\xa2\xcb\x29\x65\x32\xf4\xe2\x31\xcf\x43\x2b\xb0\x1c\x98\x58\x34\x71\xc6\x86\x25\x2f\x36\xb1\x1c\x9a\x58\x84\xd4\x63\xc3\xc0\x8b\x04\xf4\x9c\x3b\x6d\x99\xc0\x6c\x3e\xa0\xa9\x15\x5a\x94\x65\x4a\x1b\xa5\x65\xe3\xae\xa8\x2e\x1f\x6a\xdb\x6d\x04\x76\x6e\xe7\x2e\x9e\xe3\xc5\xbd\x98\x16\x08\x3c\x20\x47\x47\xb1\xfd\xd0\x5a\x67\x99\x65\xba\x98\xb7\xa8\x8a\xf1\xd5\xef\x56\x15\x83\x27\x6f\x5c\x96\x51\x11\xb7\x95\x22\x27\xe4\x39\x98\x65\xd9\x58\xaa\xcf\x1a\x2b\x15\x65\x5a\x9b\x88\x24\xb9\x97\xd7\x5f\x53\xe3\x80\x44\xaa\xe8\x07\x95\x17\x3a\x2b\xdc\xae\x6f\x65\x4e\x97\xb0\xf4\xde\x30\x85\xb7\x20\x83\xfb\xfd\xc1\x77\x26\x2c\x3b\xc3\xc9\x6c\x1d\xf2\x14\x6e\xb6\x4c\x65\xfb\xae\x4c\x8c\xab\x72\x96\xc5\xea\xbe\x9f\x6e\x9d\xd2\xf2\x2e\xf8\x26\x1e\x72\x90\xbc\x34\xbf\x40\x21\x22\x48\x5c\xa5\xad\x99\x2c\xed\x79\x1f\x18\x98\x6f\x43\xa2\xdf\xb2\xa9\xa4\x93\xa2\x84\xec\x8c\x9f\x83\xf9\x36\x24\x26\xfe\x0f\x09\xbe\xdb\x19\x3b\x05\xf2\xcb\x08\x0c\xfd\x40\x90\x24\xc1\x3d\x53\x55\x9c\xd2\xbf\x9c\x02\x07\xd5\x9d\x95\x04\x09\x61\x66\x3e\xca\xd1\x4a\xa6\x74\x63\xd1\x72\x14\x40\x29\xce\x8f\x2c\x60\x09\x61\xf3\x6a\x86\x57\x97\x1a\x2f\x3a\x85\x0b\xde\x29\x39\x69\x08\x14\x54\x62\xc5\xd8\xd3\xf2\x28\xc3\xed\x36\x20\x57\x58\xee\x1e\xac\x8b\x57\xea\x21\xfa\xec\x7e\x16\xe2\x19\x37\x59\xc2\x60\x3a\xd6\xf9\x40\xaa\x66\x90\xc1\x00\xd6\xe3\xd0\xda\xdd\x30\xef\x6b\xa8\x77\x14\x9d\xe8\xe5\x20\xd7\xaa\xe9\x9f\xc7\xe4\x18\xf1\xbc\xf1\x3a\xdd\x53\xb9\x52\x0c\xb6\xa3\x8c\x99\x31\x14\x9a\xaf\xe9\x2a\x02\x53\x4a\x96\xee\xdd\x5f\x5f\xdb\x27\x99\x08\xdb\xb3\xb9\xba\xd1\xb9\xa9\x62\x5a\x28\x47\xb5\xc0\xd5\x89\x53\x62\x6a\xbb\x5d\xfc\xf4\xfb\x02\x90\x65\x29\xf0\xdd\xdc\x53\x36\xac\xbc\xbd\x76\x3b\x4b\xd0\xec\x7e\xc6\x82\x5a\xa9\x49\x56\x74\x7b\x53\x33\x9c\x2c\x93\xf8\x6b\x83\x4e\xb3\x73\x96\x3a\xbf\x79\x16\x44\x8d\x38\x0a\xef\x1b\x02\x4b\xe3\xeb\x12\x51\x06\xa3\x06\x7f\xfa\x6d\xe0\xb4\xb1\x58\x87\x61\x53\xbd\x92\xfc\xb6\xbd\x81\x3b\xb1\xbb\xe3\x81\xa9\xcc\x72\xbc\x66\x9e\x1b\x96\x09\x59\x1e\x82\x6c\x15\xaf\x8a\x75\xb7\x6d\xb1\xc3\xda\x14\xe9\x13\xe9\x79\xd0\xed\x76\x45\x9a\x7a\x6e\x99\x22\x0c\x3b\xc6\xf8\xd8\x80\x23\x7c\x65\x6e\xb1\x28\xb7\x58\xb9\x6d\xa2\xd6\xae\xb2\xd3\xb0\xee\xf6\xc2\xbb\x84\x19\x3a\x8c\x10\x94\x5e\x26\x86\x6e\xdb\x64\xe8\x98\x9c\xf8\x68\x4c\x3a\x9d\xcd\xb4\x92\xb6\x92\xa0\xb7\x20\x9a\x92\x6c\x2a\xd4\x95\x04\x54\x5a\xf6\xd6\x55\x49\x3b\xed\xe3\x2b\x32\xe5\xea\x2f\x23\xf2\x50\xf1\xfc\xb0\x76\x5b\xd9\xec\x00\x63\x89\xaa\x5e\x9c\x14\x57\x47\xc1\x92\xab\x50\xbd\x53\xa8\x3e\x2e\x4e\xfb\x76\x71\x2f\xd8\x76\x19\x20\xa0\xbb\x0c\x88\x66\x73\x93\x23\x92\xe0\x3b\x1e\x91\x8e\x0a\x7e\xc6\xe6\xca\xd2\x12\x18\x1b\x52\x69\x0b\x2f\x52\xd5\xc9\x05\x05\x1b\x21\x2c\x14\x81\xf0\xe3\x4e\xe5\x93\x32\x5e\x38\x7b\x0e\x39\xf6\x5d\x6e\xbe\x87\x8e\xdd\xc7\x47\x74\x62\x36\x5c\xda\x5a\x18\x09\x0d\xf9\xac\xdc\x88\xd7\xa4\x11\x2f\x1a\x2c\x02\x4e\x93\x59\x45\xa1\x36\x3e\x76\xad\x5b\x52\x14\x93\x06\x23\xa4\x21\x7c\x4a\xd2\x06\x8e\x1a\x21\x4e\x49\xe3\x06\xdd\xc7\xd1\xbc\xc1\x86\xba\xe1\x72\x44\xf8\xc4\xcd\xd7\x62\xe2\x93\x8e\x37\x4e\x4e\x7c\x77\x9c\xc8\x59\xcd\xce\x82\x76\xd2\x16\x66\x2d\xb7\xfc\x27\xc8\x6d\x5c\x51\x9b\xb4\x71\xc7\x38\x9f\xf0\xc2\x49\x4e\x5c\x76\x7a\x99\xe3\x92\x18\x2b\xb1\x38\x89\xc6\xc0\xdc\x3e\xca\xe3\xd1\xae\xd9\x0e\xcd\xfb\x44\x42\xfb\x70\x4c\x98\x79\x7c\x6d\x3f\xb2\xac\x7c\xa6\xc9\x04\x9a\xa5\xf6\x11\x28\xee\xcf\x2c\xd3\xba\x2e\xae\xc6\x19\xf4\x06\x7d\x2e\x00\x3f\x51\xfc\x9d\x85\x71\x94\x87\xf2\x12\x3f\x95\x3c\x8f\x1c\x02\xb1\x3f\xe4\x79\x63\x84\xa9\xc0\x9e\x34\x07\xc8\xc3\xbb\xa8\xf1\x61\x42\x51\x17\xa7\x42\x6e\x03\x93\xab\xe9\xe8\x21\x63\xfb\x8b\xb0\x15\xa7\x13\x84\x80\xe4\x2a\x9d\xfa\xf8\xd8\xf7\x26\xe4\x2a\x9d\x8e\xe8\x7f\x5a\x2d\xe4\xd0\x7f\x21\xee\x78\xea\x10\x4b\xb2\x0c\x1e\xba\xc3\xe1\x77\xf5\x50\x7f\x68\xf0\x49\x97\xc4\xef\x82\xf9\x1c\xcd\x7f\x46\xdf\x7c\xd2\x4d\x6e\x6f\x02\xfe\x8f\x4f\xe8\xe5\x84\xfe\x97\x5e\x4e\xe8\xbf\xe2\x59\xd0\x27\x9a\x06\x56\x0a\x3e\x42\xe2\x83\x89\xef\xc2\xd4\x77\x61\xec\xbb\xe3\x2f\x41\xd2\x88\x60\x00\x97\x30\x84\xb3\xfc\x52\xb4\x2e\xb8\xa7\x49\x9b\x76\x6f\x3f\x3f\xac\xa5\x6b\x59\x6f\xd2\x74\x9b\x6d\x7a\x14\x28\xf0\xb9\x61\xa9\x80\x8e\xc9\xc4\x21\xed\xae\x3b\x04\xcf\x1c\xc4\xfe\x1d\x89\x7f\x9f\x89\xef\x99\x41\x2f\x7f\xbf\x17\x2f\xfa\xae\x2b\x1e\xec\xdd\x0c\xe6\x86\x10\xe0\x01\xf1\x77\x51\xbf\x6c\x76\xa2\x3b\x37\xd3\xeb\x5c\x32\xf9\xf4\xbb\x1f\x1e\x68\x97\x32\xfa\x0f\xe1\xff\x60\xfe\x4f\x02\xb2\x4f\xa3\x8a\xf2\x4f\x19\x44\xe2\x81\xb5\xd4\x8c\xdf\x1b\x0e\xd5\x42\x40\xc7\xc7\xbd\xc1\x23\x39\x3e\xf6\xf6\x1f\xf1\xf1\xf1\xe1\x63\x02\x4e\x4e\x4e\x5c\x0e\xce\x2e\x8e\x39\x7c\x21\x0b\x2d\xeb\xab\xe8\x8b\x2a\xe3\x1d\x96\x6d\xab\xcf\x59\x96\x39\xd1\xe3\xa3\xa3\x8d\x73\xe4\x3f\x64\x00\x18\x8c\x51\xa3\x40\x8c\x51\x88\x7d\x2d\x1e\x4f\x6f\x38\xfc\x91\x00\x78\xc5\xf0\x4e\xfd\x19\x6d\x5f\xa0\x74\x10\x9b\x60\x00\x8a\x67\x68\xf9\xfa\x6c\x3e\x74\xab\x67\x67\xf1\xc2\x9d\x21\xfe\x44\xe1\x9b\xb6\x2a\x78\xe1\xc4\x3e\x6d\xad\xc5\xa7\x2d\x78\xd6\x1b\x0e\xa1\xe7\xfb\xbe\x74\xa6\x60\xad\xb0\x69\xcc\x51\xf3\x7a\x99\x58\x9e\x62\x9e\x07\x27\x27\xbd\x41\x8b\x82\x2e\xd5\x07\x6f\x9f\x7d\x08\xd5\x87\x43\xf6\x7b\xe6\x23\x13\x62\xad\x3e\x08\x88\xb9\xfa\xc0\x20\xe4\x7c\xc6\xfe\x4c\x8f\x58\xe4\x04\x9d\x19\xf8\x91\x76\xd8\x5f\x1b\xdf\x97\x9d\x35\xfb\x9e\xfa\x73\xe3\x7b\xd8\x99\xb3\xef\x65\xb6\x59\x99\x06\x32\x3a\x3b\xe4\xe3\x82\xaf\x0f\xa0\x8c\x7a\x47\xd9\xf6\x5f\x62\x34\x32\x96\x16\x24\x5d\x27\xc8\x78\x84\xf4\x8b\x16\x5a\x72\x57\x9b\xd9\x6a\x8b\xa1\x85\x9c\x63\x10\xb3\x13\x2e\x01\x4a\xd1\x21\x95\x1c\x89\x62\x5e\xa2\xb8\x96\x08\x76\x31\x4a\xe2\x32\xd1\x72\xb3\xa0\x54\x3f\x0a\xa2\xe9\x1a\x10\xec\xb5\xce\x34\x52\xc3\x2d\x92\x89\x86\x66\x98\xd0\x0b\x25\xea\xde\xf1\x14\x6a\xf7\x6f\xc5\x37\xad\xeb\x58\x9b\xe5\x94\x6b\xb2\x9f\x0e\x82\xf1\x8f\xf8\x99\x24\x5b\xf4\xef\xfd\x4f\xcf\x2d\xfc\xbe\x2a\xcc\x9b\xc2\xac\x31\xe6\xcc\x34\xcb\x9c\x80\x2f\x44\xb6\xb8\x83\xf2\x2a\x64\xb2\x29\x0c\xc6\x24\xb9\x57\xb2\xdf\x5c\x86\xad\xe1\x56\x78\x42\x14\x72\x9a\x3c\x14\x57\x13\x8c\x91\x48\xa4\xe3\x41\x24\x93\xe1\x78\xca\x65\x5f\xf8\xc5\x46\x04\x7d\x23\x4e\xb3\x37\x6f\xc2\x87\xaf\x38\x0c\xdf\xa3\x60\xfe\x92\x05\xe2\x8c\x48\x78\xcf\x4e\x90\x31\x0b\xdb\xe5\x63\x48\xba\xb7\x61\x7c\x13\x84\x67\xf1\xdd\x2a\x4e\x31\x41\x6f\x57\x88\x67\x65\xf0\x9b\xb3\x78\x75\xdf\x84\x74\x81\x71\x6a\x5e\xe1\x08\x05\xc9\x4f\x49\x30\xc7\x94\x28\x17\xba\xd0\x83\x1e\x50\xfa\x2e\xcb\x56\x26\xe3\x67\xdc\xd1\x1a\xce\xb3\xdf\x5d\xfd\x3a\x0f\x3a\x8b\xe9\x43\x1f\x1e\x66\xcf\x30\x50\xea\xdc\x3c\x56\x40\x90\xa2\xc6\x60\xa4\x56\xdc\x2a\x48\x52\x74\x11\x11\x07\x09\xd5\x9c\x07\x7b\xa0\x9b\xa0\x15\x0a\x88\xd3\x03\xd0\xdb\xa7\xeb\xaf\x54\xab\x07\xfb\xc5\x5a\x69\xb9\x56\x1f\x0e\x8a\xb5\xf2\x29\xce\xa7\x1a\x57\xed\x0e\xff\x79\x04\xc5\xe5\x5a\x03\x38\xdc\x40\x36\x8c\x05\xe1\x07\x23\xfd\x0c\xe1\xeb\xc6\x29\x77\x81\x21\xa1\xa7\x12\x5d\x07\xec\x5c\xe2\xe0\x47\x16\xf0\x0a\x68\x06\xc5\x8d\x7f\x1a\x4b\x5f\x8d\x38\x05\x99\xfc\xea\xfc\x9a\xfe\xe8\xfc\x3a\x7f\xf0\x60\x3f\x03\xbf\xa6\x3f\xc2\x0d\xbf\x1d\xf6\xc1\x7d\xf4\x1e\x7f\x9d\x4f\x7e\xed\x3a\xbf\xce\xdb\x80\x7e\x07\x93\x5f\xc1\x33\xb6\x27\x2d\x41\x79\x44\x96\xec\x9d\x31\xd1\x3f\xf4\xa6\x06\x9f\x97\xec\xb1\xb0\x74\xce\x39\x2a\x7d\xde\xf2\x6a\x38\x9d\x78\xbc\x8f\x2f\xc3\x38\xa0\x20\xc3\x29\x00\x56\x0e\x33\xa7\x88\xc7\xc7\xbd\xa0\x7c\x8d\xd0\x14\xc2\xa3\xc6\x2f\x51\xba\x5e\xad\xe2\x84\xa0\x79\x63\x96\xa6\x54\xc2\xbe\x0b\x08\xbf\x3d\x90\xee\x02\x87\x21\x4b\xe8\xe8\x07\x50\xff\x85\x60\x33\x65\x22\x95\x26\x9b\xe6\xc5\xdf\xdd\xe4\x7b\x34\xcb\x97\xb0\x38\xe6\x61\x3c\xe5\x1e\x39\x17\x77\xc1\x2d\x7a\x11\x90\x40\xd5\xe8\xce\x03\x12\xc0\xde\x70\xb8\x47\x0f\xe6\x27\x36\x2e\x26\x93\x5d\x40\x80\x6c\x8e\x51\x01\x66\xc9\xf7\xcd\x34\xf5\x97\x9b\x64\x17\xfd\x40\x43\x4c\x72\x48\x7d\xc2\xfe\x8d\x7d\xb6\xab\x8b\x36\xbb\x3d\xaf\xb7\xff\xa3\x93\x1c\xfb\x5d\xb7\x7f\xd4\x3b\x9c\x24\xcf\xbc\x5e\xf7\xa8\xc7\x53\xb0\xaf\xe2\xaf\x8e\x93\x50\x31\x73\x08\x9e\x79\xf4\x1f\xd8\xeb\x0e\x00\x68\x77\x0f\xbc\x61\xef\x47\x27\x55\x60\x69\x09\x2c\xb5\x81\xb9\x07\xbd\xde\x8f\x4e\xac\xc0\xe2\x12\x58\x5c\x06\xcb\x50\x37\x11\x91\x1e\x5f\xad\xef\x70\x14\x44\x33\xdb\xa9\x4f\x3b\x9e\x9f\x39\x52\xa8\x61\x67\x1a\x3b\xc2\x4a\x38\x7a\x3e\xc9\x9c\x90\xf1\x94\x5e\x08\xc2\x9d\x78\xaa\x0e\xbb\xd4\xcf\x5b\x8d\x7d\xd9\xee\x98\x47\x2e\x27\xaa\x5a\x40\xff\x16\xd5\x96\xf4\x6f\x29\x73\xcd\x9d\xd0\x42\x9a\xc3\x6e\x16\x00\x5a\xcb\xf8\xbc\xe0\xba\xe8\xf1\xec\x98\x1e\x59\xd1\x89\xfb\xf8\x18\xd0\xff\x2c\x4f\x5c\x30\x06\x51\x27\x0f\x90\xea\x42\xf6\xe7\x0c\xe1\xd0\xe9\x7a\x3f\x46\x00\xc0\xa0\xba\x38\x00\x00\x2e\xab\x8b\x97\x00\x7c\x1f\xd1\x42\xee\x8f\x98\xdc\x1f\x30\xb9\x7f\x69\xec\xb0\x8a\xe9\xc1\x7f\x7b\xa6\x1f\x53\x89\xed\x31\xe0\xff\x2c\xe9\x3f\x94\xf5\xf9\xcb\x37\x6d\x2c\x6a\x1b\xfc\xa3\xdf\x3a\x11\xdd\x38\x03\xb3\x5e\x60\xa9\x17\xd0\x7a\x4b\xb3\xde\xd2\x52\x6f\x09\xfe\xee\xa3\xb2\xf1\x92\x52\xbe\x9f\x28\x4d\x41\xa0\x0d\xc9\x52\x1b\x92\x50\x1f\x12\xa4\x5f\x3b\xf4\x1b\xc7\xdf\xe9\xb2\x51\xbc\x53\x6c\xbe\x25\xb0\x1b\xb2\x74\x82\xb7\x70\x93\x6e\x3f\x87\xf4\x14\xb5\x95\x61\x5a\x46\x4f\x99\xb9\x43\x39\x7e\xcc\xc3\xc1\xc4\xc7\xa9\x44\x19\xfb\x44\xb4\x01\x23\x9f\x56\xb2\x61\x89\x29\x16\x86\x26\x3a\x4e\xf2\x9b\x43\x20\x20\x25\x8f\xa2\x93\x2a\x04\x84\x21\x98\xc4\x23\x22\x5f\x61\xe3\x4c\xfa\xe4\x4b\x2c\x70\x59\xd9\x7e\xa4\xda\x5f\xe6\xed\xe7\x94\xcb\xf6\x97\x95\xed\xf3\x0e\x4c\xa2\x51\x2c\xdb\x8f\x32\xbe\x39\xcf\xd7\x33\x6d\x7b\xa7\xb7\x16\x1c\x51\xf1\x3a\xd5\xbe\x06\xfc\x26\x22\x6f\xf0\xb6\x9b\x48\x7e\x09\xa9\x38\x0b\xe8\x05\x64\x26\x37\xfd\xc0\x9f\xf1\x5d\xdf\x54\x14\xad\x4b\x8a\xa4\x79\x06\x0f\x8f\xf6\xbf\xf7\xf1\x39\x4e\xd0\x07\x94\xd0\xde\x84\xb6\xc7\xe7\x01\x7f\x7b\xe6\x7e\x1f\xb1\x8f\x9d\x41\x7f\x70\xc8\x1d\x45\x0e\x0e\xf7\xf7\xb9\xa3\xc8\x01\xad\xb6\xa4\x7f\xf4\xdd\x1e\x77\x14\xd9\x3f\x3a\x18\xca\xec\x5c\xfb\x2e\x4f\xcf\xe5\x1d\x0c\xfb\x3c\x3d\x97\x37\x38\x74\x79\x7a\xae\x83\xa3\xa3\x01\xcf\xcf\x75\xd4\x3b\xec\x01\x78\xeb\x63\x67\x38\xe8\x0f\x01\x5c\xd1\xbf\x8e\x0e\x3d\x00\xef\x28\x01\xfb\xfb\x2e\x37\x80\xff\xe2\xef\x79\xe2\x19\xfc\x46\x3d\x83\x27\x45\xb3\xf7\x38\x52\x31\xbb\x8c\xd7\x1c\xf9\xfd\x74\x95\x67\x09\xd6\xbe\x59\x9e\x91\x67\xb6\x67\x64\x05\xc3\x9f\x8d\x1d\xa4\xb2\xd4\x68\xc8\x26\x42\x57\xde\x65\xb7\x35\x16\xb4\x10\x14\xe1\x4f\x57\x98\xa3\xc8\x84\xb1\x7e\xc9\x54\xbf\xec\x59\xc9\xaa\x26\xf1\xd7\x0d\x55\x69\x0d\x56\x55\x24\x00\xaa\xaf\x2d\x2a\x31\x00\x61\x8d\x5c\x00\x28\x9a\x3a\xf3\x9f\xec\x55\x57\x02\x20\xae\x5d\x17\x7b\x40\x83\xa5\xf4\xae\x81\xbd\x22\x53\x1f\x5d\x91\x69\xbd\x1f\x02\x0f\xe3\xca\x9d\xd1\x71\x74\xfb\x33\x5a\x27\x38\x25\x78\x66\xf3\x0e\x48\xba\xaf\xd7\x84\x4e\x02\x2d\x87\x90\xe2\xf8\x73\x1c\x05\xc9\xfd\xb6\x43\x6c\xd6\x57\xe0\x85\x9c\x57\x54\xf0\xde\x1e\x63\x5e\x5b\x80\x16\xb0\xd1\x5b\xfb\x4b\x84\xe6\xdb\x63\x34\x21\x34\x14\xa5\xdc\x5c\x29\xfe\x9b\x2d\x03\x58\x05\x5e\xbd\xbe\x02\x2f\xe0\xfc\x98\x60\x82\xde\xd1\xeb\xd7\x0e\x04\x97\x80\x4c\x44\xc5\x0c\x66\x6c\x91\x6c\xbd\x2a\x71\x94\x92\x20\x22\x58\x4f\x55\x29\x3c\x4e\x2e\x2c\x45\xd0\x32\x37\x2d\x6d\x2d\xbb\xa6\xe5\x4f\x9e\x77\xcb\xda\x60\x97\x05\x0a\xe2\x35\xd3\xa2\xd5\x90\xad\x49\x60\xf3\xa1\x2e\xd0\x51\xd3\x1c\x57\xf8\xf0\xfe\xcd\x90\x13\x74\x4d\xb7\xea\x1d\x48\x7d\x6e\x09\x80\x66\x4d\xe6\x15\xc6\xb7\xdf\x4b\x66\xd4\x7d\xa5\x90\xec\x42\x63\x0e\x55\xa2\x45\x60\xd1\x93\x20\x3e\x95\xba\xb0\xab\x7b\xa1\xef\x40\x9e\x06\x56\xa2\x46\xa3\xcf\xf4\xe5\x7e\x22\x91\x6b\x46\xa4\xe1\x1a\xbf\x23\xa5\x3a\xac\x9d\x38\x81\x70\x1d\xe1\x59\x3c\xff\x6e\x8a\xe7\xdd\x5f\x0c\x44\xbb\xd0\x6b\x42\xda\xc8\x52\xa1\xc0\x97\x74\x2b\x21\x06\xb1\x5b\x91\x77\xdd\x3d\x33\x40\x77\xe1\xa6\x01\x68\x25\x44\x1d\x44\xe9\xec\x15\x8e\x3e\xef\x4e\xde\x5d\xf7\xad\x01\xba\xcb\x26\x64\x00\x5a\x09\xc9\xb1\xad\xd6\xe4\x67\x16\xb8\xcd\x66\x55\x77\xdb\xbd\xd0\x2a\xd8\x62\xcc\x58\x3b\x5f\x5a\x0c\xa5\xd5\x6b\xdb\x19\xad\x84\xda\x27\xaa\x75\x42\x14\x7d\xb6\x58\x82\xc1\x45\x9c\x7c\x0d\x12\x1e\xbe\x1f\x38\xe5\x4e\x6b\xa7\x6a\xe9\x60\xae\xf0\x02\xd3\xc1\xb7\x6e\xd3\x94\xbf\xe4\x19\x5b\x38\xb1\xb7\xee\x82\x99\xa2\x52\x4b\xad\xca\x7f\x3c\x11\x0f\x97\x79\x0a\x12\x94\x9d\x09\x26\xa0\x11\xcf\xf6\x43\xfc\x3c\x26\x24\xbe\xcb\x13\x17\xa4\xe6\xf7\x0a\xef\xba\xba\xb4\x9b\x42\x36\xa4\x92\x83\x08\x41\xc8\x83\x0d\xe6\xb5\x2a\x90\x96\x3c\xf6\x5e\xf3\x97\x28\x64\x78\xec\x5d\x35\x85\xd8\xf9\x3a\x9e\xa3\x26\x94\xbf\xde\x91\xfb\xe6\x54\x73\xe3\xe3\x6d\x7e\x54\x85\x06\x8e\x2a\x9f\xc1\xe2\xc0\x8b\x9b\x4a\xf9\x0e\x21\xac\x95\xe4\xf5\xc1\x1a\x0f\xc6\xc8\x58\x93\xc6\xeb\x64\x86\x46\x6e\x66\x5b\xcc\xdd\xbb\x20\xf9\xcc\x82\xb7\xbc\xc0\xec\x5e\x58\x8d\x4d\x0e\xcf\xca\x1a\xdd\xc5\xa8\xc4\x47\x30\xbf\xd9\xd4\xac\x8c\xff\x6d\x5d\xd5\x67\x9f\x65\xa7\x5c\x75\x3f\xe6\xe5\x8e\xb0\x1f\xb1\xd0\xca\x1e\x30\x78\xb6\xfe\xad\xf7\x0e\x7d\xde\x1b\xf2\xb3\x4d\x38\x07\x20\x63\xf5\x75\x2b\x57\x1d\x41\x5e\xc8\xeb\x5d\xde\x47\x33\xbd\x6e\xbe\x47\x77\xc3\xf8\xf6\x15\xfa\x82\xc2\x63\x3f\xa5\xf2\x1b\xfb\xfb\x3c\x5a\xdf\x75\x3f\x9e\xbe\x7f\xd3\x6a\xed\x7d\x51\x51\x61\x35\xa0\xaf\x41\x12\x39\x4d\x85\xba\x81\xd3\xc6\x3a\x4a\x50\x88\xe9\xf5\xac\x11\x44\xf3\xc6\x57\x1c\x86\x8d\x1b\xd4\xe0\xb1\x32\xe7\x8d\x34\x8e\xa3\x6e\x13\xc0\x2f\x7e\x1e\x4c\xb2\x44\xb1\x22\x33\x63\xec\xa4\x7f\xb2\xe0\x91\xa5\xad\xc3\x12\x7e\x97\x30\x4f\x18\xfc\x37\xc1\x13\x9c\xbe\x09\xde\xb0\x50\x97\xfc\x2f\x02\x1e\x1f\x1d\x23\x9f\x57\xd0\x7d\x7d\xf1\xe6\xe2\xf5\x2f\xaf\xaf\xcf\xde\xbe\xba\xcc\x13\x28\xb1\xbc\x49\x79\xe1\xfb\xb7\x1f\x2f\xad\xe2\x7c\x57\x6b\x0e\x64\xa9\x58\x06\x94\x62\x4f\xb2\xd9\xac\x9f\x57\x91\xd5\x55\x1e\xb2\x3c\xf0\xa8\x0d\x44\xaf\x26\x20\xdf\x05\xb7\x28\x55\x26\xcb\x46\xb5\x1f\xf9\x70\x25\xf1\x57\x16\x16\x2e\x93\xcb\xe1\x03\x33\x84\x2d\xd5\xef\x6c\x5a\x97\x39\x06\xb9\xb5\x97\x91\xd4\xe1\xb8\x09\x52\xb4\x43\x23\x22\x92\x56\x6e\xdc\xb4\x11\x76\xcc\x82\x44\xcb\x94\x95\x3a\x55\x74\x4a\xf0\x75\x77\x9e\xce\xa4\x7c\xa3\xdb\xdc\x58\xd6\x6e\x05\x84\xc2\xf4\x62\x96\xee\x88\xa9\x00\xa1\x30\x9d\xa5\x78\x47\x4c\x05\x08\x85\xe9\xed\xce\xbd\x2b\x40\x30\x57\xf4\xb5\x9a\x1f\x1b\x0e\x41\x33\x33\x73\xb1\x01\x56\x54\xb5\x60\xb4\x32\x53\x9a\x34\x0b\xf5\xb5\x5e\x2a\xd0\x65\x44\x59\x9a\x6d\x20\xf9\x81\xfb\x68\xed\x79\x66\x36\x90\x9a\xe8\x71\x0a\xd1\xd8\x08\x4d\xde\xbd\x59\xe3\x70\xfe\x66\x7d\x77\x83\x92\xaa\xef\x13\xe4\xef\xed\x39\xcd\x59\x1c\xad\xc8\x7d\x93\xa5\x97\xb9\x09\x66\x9f\x11\xcb\x28\xa0\x57\x3c\xee\x79\xfd\x83\x7d\x61\xd5\xbf\x91\x16\x11\xfa\x1e\xb1\x1d\x54\xe6\xf9\xe0\x99\xc4\x3e\x56\x29\xd4\x1c\xe9\x32\x50\xa9\x72\x93\xae\x88\xd9\x66\x54\x5a\xde\xb4\x6a\x74\x4c\x17\x9d\x9b\x53\x5f\xa9\xf0\x2c\x42\x5b\x24\xe5\x6e\x67\xd1\xe5\x0e\x69\x1f\xf3\xde\x89\xa0\x7a\x97\x24\x20\xa8\x7b\x83\xa3\xb9\x13\xad\xc3\xd0\xaa\xb6\x00\x00\xea\x78\x2d\x2b\xe4\x81\x05\x43\x1f\x35\x7f\x6e\x66\x4c\xbc\xa3\x47\xef\x86\x36\xad\x72\x3c\x80\x7b\x1e\x00\x1b\x55\x97\xbc\xe3\x3c\x88\x97\x25\xe1\xb9\xae\x44\x8d\x17\x0d\x04\x48\x1e\x8c\x3b\x03\x19\x33\xc3\xd5\x15\xf7\x37\x19\x3c\x1c\xec\xbb\xdf\x63\xa4\x9a\xac\xa3\xd3\x68\x7e\xb9\xbe\x49\x67\x09\xbe\x41\x3e\x31\xe4\x0e\x9f\x18\xfa\xb6\xdc\x5c\xd7\xf8\xca\xb4\xf2\x86\x17\x9a\x12\x21\x64\xd4\x6b\xff\x4a\x46\x22\x14\x1d\x62\xd9\xd6\x6f\xe9\x7a\x63\x47\x73\x61\x3b\x62\x1f\x95\xa2\x9e\xfd\xf2\x91\x7f\xe2\x14\xb0\xca\x54\xda\xf0\x41\x60\x1d\x31\x36\xe6\x33\x50\x36\x06\x4c\x47\x83\x22\x1a\xcd\xed\x20\x77\x91\x91\xa5\x57\x64\xaa\xb9\x62\x69\xd9\x76\x34\x04\xc2\xfd\x83\x40\x0f\x64\xb9\x9c\xc8\x15\xfc\xfc\x31\x40\x0f\x65\x7a\x95\x3b\x3e\xe8\x1e\xa1\x25\x7a\x10\xf3\x3a\xce\xe7\xaf\x46\x13\x9a\x82\xb1\x69\x05\xae\x9c\x27\x12\x0a\x75\x95\x4c\xbb\xb3\x20\x0c\x85\xd9\x0c\x64\xfb\xb7\x9a\x4b\x5a\x2c\xf8\x72\x5c\xf2\x7c\x80\xdc\xac\x58\xa5\x38\xac\xb9\xd8\x57\xa0\xdd\x77\x41\x96\xc1\xc2\x64\xb2\x46\x40\x43\x2c\x6c\xbc\x74\x2f\x00\x99\x65\x4e\x5a\xe1\x88\x23\x43\x4f\x70\x0c\x0c\x38\x83\xc3\x41\x7f\xf8\xef\x88\x77\xff\x22\x11\xef\x2e\x0c\x9d\x55\x57\x6c\xd8\xe2\x44\x7c\x8f\x56\x71\x42\x3e\xdc\xaf\x50\x39\xec\x5d\x6f\x78\x38\x10\xaf\x99\x9e\x27\x5e\x33\x7b\xae\x37\x2c\x84\xbd\x1b\x1c\xf6\xe4\x63\x66\xff\x80\x3f\x66\xf2\x67\xcd\xb9\x8f\x9d\xfd\x41\x9f\xbf\x65\x0e\x3d\x8f\x3f\x65\xf6\x0f\xfa\x03\xfe\x94\xc9\xdf\x4d\x57\xea\xc9\xf3\x8e\xd6\xef\x0d\x7a\xf4\x6a\x83\x9d\xfd\xfe\xd0\x03\xf0\x86\x3d\x74\x0e\x3c\x00\xcf\xfc\x87\xa6\xd3\x1c\xb9\xb0\x09\x9a\x23\x0f\x36\x7f\x6c\x8e\x7a\xb0\xd9\x6e\x8e\xfa\xb0\xd9\x61\x5f\xba\xcd\x51\x2f\x83\x97\xbe\xd7\xf7\xdc\x83\x5e\x6e\xe1\x7f\xaf\x6c\x1f\xd0\x49\x6f\xa0\x8c\x1d\xba\x29\x22\x1f\x31\x3b\x45\xd3\xc7\xc7\x3d\x6f\x5c\x70\xc9\xf7\x46\x32\x0b\x33\xe9\x0a\xa7\xee\x8f\x38\x12\x2e\xf2\x5a\x19\x8b\x98\x84\xff\x96\x17\xf6\xb5\x42\xde\xc6\x3b\x71\x73\x1f\x1b\x56\xa1\x79\xf9\x25\xfe\x1b\x7a\x87\xbf\xa1\x30\x35\xcd\x34\x59\xd3\x01\x4e\x73\xdc\xfb\x5a\x49\x18\x7f\x45\x89\x2a\x39\x30\xc8\x65\xd9\x06\x54\xd9\xa1\xb5\x45\xa6\x96\x35\xed\x23\x59\x7f\x82\x6f\x66\x7f\x3c\x57\x2b\x5d\xac\xc3\x90\xa7\xa9\xcc\xcb\x75\x4e\xdd\x72\xf4\x54\x06\x10\xa5\xfd\x52\xa9\xc9\x0e\x6f\x50\x06\x2f\xf0\xc3\x1b\x9a\x55\x2e\x19\x01\xa5\x5a\xfb\x66\x2d\x96\xd4\xa6\x58\xe7\xd0\xda\x98\xc6\x0a\xef\xa8\xaa\x2d\xad\x52\xcf\x35\x2b\x5d\xcc\xe2\xe8\x03\x26\xa1\xe8\x73\xaf\xcc\x11\xbd\x54\x9f\x3d\xf4\xe0\xd2\xcb\x74\x6e\xad\xe2\x95\x5e\x54\x9e\x37\x6c\xee\x0a\xc3\x8c\x3d\x2f\xa3\x3b\xdb\xd7\xf1\x9e\xe1\x3a\x72\x85\xba\x3f\x9d\x7f\xb8\xfe\x78\xf1\xe6\xfa\xf2\xe2\x3f\xce\xaf\xdf\x5d\xfc\xf9\xfc\xd5\xa5\xef\x4e\xfd\xa6\xe5\x7b\x13\x4a\x80\xb3\xf3\x57\xaf\x0c\x08\x4f\x40\x14\x0b\x9a\x99\xf3\x95\x99\x67\x54\x6e\x2c\x5f\x99\xc9\x06\xb3\x4f\x38\xf5\x5d\x61\x9e\xf0\xa1\x32\x2a\xdf\x29\x21\x4c\x1d\x51\x0a\xcb\xb7\x4e\x64\x91\xf9\x26\x0e\x85\xd3\x08\x5c\xc2\x39\x5c\xc0\x5b\x5f\x84\xc2\x4b\x67\xc1\x0a\xc9\xac\x46\x4c\xdb\x93\x14\x9f\xcf\xcd\x57\x45\xbb\x76\xde\xcf\x03\xe3\xe5\x6f\x67\xb8\xfc\xd8\x97\xd8\x43\x03\xa6\xf6\x97\x8d\xa5\x86\xd4\x78\xf0\x92\x5a\xaa\xc2\xab\xd2\x42\x7c\x66\x0a\xb1\xc4\xbf\xd5\x7f\x0a\x2d\x1b\xed\xf6\x2f\x38\x22\xfd\x1e\x77\xf0\x1a\xb8\x47\xfb\xb9\x27\x63\x82\xa3\xdb\x17\x88\xa2\xe4\x35\xc3\x2e\x77\x74\xfa\x10\xff\x42\x16\x7d\x99\xbd\x72\x4d\x16\x87\x66\xad\x5f\xc8\xe2\xd0\xac\x23\x33\x23\xb0\x0a\xd7\x5d\xfa\xa7\xa6\x52\xe7\x62\x3d\x9b\xb7\x7e\x53\x26\xa6\xc5\xb3\x38\x7a\x13\xdc\x69\x5f\xb4\x6a\x97\x24\x98\x7d\xce\x65\x5f\x59\xb7\xf0\x59\x1b\x7e\x7f\x96\x07\x91\xf9\xf0\xe1\xfd\xf5\x8b\xd3\x0f\xa7\xdc\x37\x4e\x0d\x2c\x4a\x82\x14\xc9\xfa\x2c\x4f\x2d\xbd\x0a\x6c\x86\x53\xca\xf9\xe7\xc8\xfa\xb4\xbe\xae\xb2\x08\x28\x00\x99\x88\x4a\xf6\x06\xac\xe4\x3d\xdf\xa5\xdf\xc7\x5f\x6d\xd6\x1a\xf5\x2d\x95\x60\xad\x68\xab\xda\x4d\x11\x79\x42\x8b\x0a\xaa\x80\xca\xde\xca\x25\x8a\xe6\x2f\xe3\xd9\x7a\xf7\xbe\x15\x20\x2d\x28\x2b\x5a\xbc\x8f\x66\x5c\x61\xfe\x3c\xb0\xe9\x9c\x37\xb4\x5a\x86\xae\x40\x6d\x6f\xdd\xb6\xfd\xed\x4c\x44\x35\x92\xfa\x86\x0a\x24\x9d\x7a\xde\x3d\x3d\xad\xb6\x6f\xdf\x84\xd0\x50\x58\x30\x7f\x08\x6e\x76\x43\xac\x00\x72\x04\x05\xb4\x3c\x63\xd2\xeb\xf8\x8b\xcd\xc4\xa4\x02\x73\x11\xc6\x40\xb3\xbd\xed\x50\x05\xf6\x6d\x6d\x87\x2a\x8d\x70\x2a\xf0\xea\xf5\x0b\x86\x72\x0a\x27\xdb\x15\xb9\xbe\x6d\x7b\xc4\x25\x20\x13\x51\x91\xe1\xdc\x8b\x76\x6b\x5e\xe7\xd5\x25\xb0\x81\x90\x1d\x43\x7c\xc3\x7e\x58\x05\xeb\x14\xcd\x47\x7b\x9e\x88\x5a\xc4\x9c\xee\xff\x3c\x72\xf5\x9f\x7f\x19\xb9\x70\xce\x8e\x99\x39\x77\x9e\x1e\xb9\x50\x3d\x6f\xb9\x32\x24\x6a\xba\x42\x33\x1c\x84\x22\x94\xd2\x55\x6f\xb8\x0f\x7b\xc3\x03\xd8\x1b\x1e\x4e\xad\xef\x69\xfc\x6c\xcc\xaf\xe8\x09\xb9\x7f\x1f\x7f\xfd\x90\x04\xb3\xcf\xe2\x38\x3b\xb7\xab\xa5\xf8\x47\x3d\x67\x5b\x5d\xd2\x2c\x5b\xd3\x56\x7b\xc1\x6e\x1c\x15\x33\xcc\xc9\x47\x2e\xa3\x2d\x33\x5d\x9c\xd2\x8c\xf0\xee\x50\x51\x2f\xd7\xc5\xbd\x0c\xc2\xf0\x26\x98\x7d\x96\x4f\x66\xe5\x57\xa8\x39\xba\x59\xdf\x3a\xcd\x5f\xa2\xcf\x51\xfc\x35\x6a\x9c\x5d\x5e\x34\x28\x9f\x47\x8d\x26\x7c\xc0\x73\x14\x11\xbc\xc0\x48\x86\x92\x12\x4d\xb0\xef\x79\x36\x2f\x00\xd9\xdd\x34\x1d\x91\x2e\x89\xb9\x2c\x01\x32\x90\x95\xe9\xca\x35\xfb\x8a\x2e\xb4\x05\x4d\xe7\x97\x67\xbb\xd3\x64\x27\xe0\x1b\x9a\xad\x09\x7a\x12\x11\x7f\x3e\x3f\xfb\xe5\xc3\x79\x4e\x08\xfb\x03\x59\x9b\x79\x5b\xee\x67\x6e\x58\xbc\xa9\xa1\xb7\x15\xbd\x45\x30\x98\xf1\xe7\x5c\x38\x0f\x48\x30\xc2\xd6\xa6\xf3\x27\x0f\x4b\xd3\xcd\x9f\xdf\xbe\xfd\x23\x53\x8b\xb7\x5a\x0e\xf6\x71\x3e\x5c\x65\x63\xb4\x22\x59\x2f\xce\x2e\x9f\x30\x31\x14\xc9\xab\xe0\x3e\x8c\x83\x79\x05\xd5\xef\x12\x1c\x29\x33\x18\x45\x2f\xab\xb5\xa2\x45\x32\x93\xa4\x09\x58\xa3\x7a\xfe\xff\x9a\x19\x94\x8b\x07\xb3\xa0\x25\x3c\xf3\x0c\xda\x06\x07\xa6\xf2\x9f\xc8\x79\x9e\x8e\x9a\x8d\x26\xb4\x60\x15\xcf\x5d\x68\x41\xb6\x43\x2a\x50\x9c\x6a\x28\xf8\x06\xc7\x12\xde\x7e\x0f\x55\xa7\x25\xaa\xde\xe3\xdb\xe5\x6e\x64\x3d\x2f\x91\xf5\x22\xfe\x1a\xed\x84\xe2\xac\x84\xe2\x25\xd7\x53\xee\x84\xe5\x45\x09\xcb\xf3\x60\xf6\x79\x67\x34\xe7\x25\x34\x6f\xd0\x37\x22\x5e\x38\xb7\x47\xf3\xb2\x84\xe6\x5d\x82\x66\x68\x8e\xa3\xdb\x9d\x71\xfd\x54\xc2\x45\xa7\xe4\xe9\x4d\x1a\x87\x6b\xb2\x1b\xaa\x9f\xcb\x64\x89\xc3\x70\x27\x34\x17\x55\x23\xf6\x21\xb8\xd9\x09\xd1\xff\xd1\x10\xb1\x9b\xd4\x45\x44\xef\xe8\x61\x70\xcf\x93\x5a\x6e\x81\x69\x95\xa0\x05\xfe\x36\x6a\x4e\xd4\xb4\xae\x47\xea\xee\x40\xde\x1f\xcb\x98\xf8\xe8\x3d\x99\xb6\x1a\x8c\xbb\x10\xf6\xaa\xb4\x4b\x09\x4b\x82\x1d\x70\xbc\xd6\x70\xcc\x59\x54\xaa\xdd\x71\xbc\x2b\xe1\xd8\x61\xb7\x14\x38\x2e\x4b\xbb\xd0\xb6\x1b\x9b\x40\xf0\xa1\x84\x60\xe7\x2d\xe8\xcf\xc5\x61\xd9\xbd\x1b\xff\x51\xb9\xff\xec\xba\x28\x3e\xe9\x98\x96\x01\x5d\xa2\x4f\x5a\xec\x81\x86\x67\x29\xd7\xf9\x7b\xe1\x79\xb5\x13\xa6\x1b\x0d\x13\x77\xa3\x57\xbb\x99\xca\xb3\xb4\x13\xc2\x99\x3e\x64\x28\x9a\xbf\x40\x54\x72\x38\x25\x24\xc1\x37\x6b\x82\xd2\x77\x09\xbe\x0b\x92\xfb\xed\x70\xca\x55\x76\xa2\x56\xd9\x26\xf4\x97\x68\x16\x47\xf3\xad\x1b\x10\x58\xe7\x1a\xd6\x10\x47\xe8\xa9\xe3\x82\x34\x3c\x5f\xbe\x6b\x5c\x16\xfa\x08\xff\xe9\x49\x5b\xf9\xad\x86\x82\x04\x37\x67\xcc\xb2\x60\x17\x04\x4b\x83\xd7\xe4\x75\x3c\xdf\xb2\x0f\xe5\xcd\xd1\x82\x4a\xa4\x7a\xdf\x89\xa2\xd0\x98\xad\xdf\x49\x93\x15\xd9\x53\xa8\xba\x2b\xac\xea\x7c\x36\xee\x84\x26\x32\x76\x5c\x3a\xad\x2f\x49\x40\xd6\x5b\x22\x29\xf7\xaf\x0a\xdf\x4e\x5d\x2c\x48\x98\x7b\x0a\xfb\x4a\x1f\xd1\x78\xc1\xd5\x78\xdf\x29\xb5\xfe\xd5\x9c\x25\x67\xe2\xb2\x7f\x1f\xee\x36\x1e\x89\x89\x86\xeb\x47\xde\xa3\xdb\x5d\x17\x50\xaa\xe3\x09\xbe\x20\x99\x93\x7b\x07\x14\x44\x43\xc1\xd5\xd5\x6f\x95\x2b\xdf\xf6\x58\xd6\xe6\x4c\x65\xb1\xa1\x77\xa0\xa5\xc0\xef\x3f\x28\x7e\x67\xe5\x1b\x51\x1c\xae\xef\xb6\xa5\xae\x12\xef\x7f\x95\x65\x87\xa7\xe3\xfd\x43\xf3\x0f\xf6\xf9\x11\xa2\x19\x79\x97\xc4\x04\xcd\x08\xda\xf2\x26\x50\xa0\xf8\x07\xeb\x6c\x4e\xb8\x8e\x94\x6f\x2d\x5b\x0a\x6f\xda\xea\x7b\x4a\x1b\x25\x91\xb3\xa4\x97\x70\xe2\xee\x99\xdb\x7d\x7e\xfe\x2a\x37\x8e\xbf\x41\x61\xe8\x6c\x09\xf8\xea\x65\x0e\x17\x4a\x9b\xaf\x2d\x61\xff\xf4\xe1\xe9\xb0\x2f\xbf\xa3\xdd\xb3\xf7\x39\xec\x2c\x48\x12\x1c\xdc\xa2\xf7\x3c\x66\xc1\xb6\xec\xba\xd4\xb8\x15\xcc\x3e\xa7\xab\x60\x86\xb6\x05\xfe\x59\xeb\x36\x09\x6e\xb6\x05\xbb\x7c\x9b\x83\xb1\xc8\x99\x6f\x99\xab\xc4\x76\xb0\x17\x05\xd8\x8b\x2d\xbb\xea\x75\x2f\xde\xbc\xc8\x61\x59\x4c\xce\x6d\x21\xdf\xe8\x73\x2a\x92\x37\xe2\x2d\x81\x7f\xfe\x70\x69\x70\xe9\x12\x95\x3b\x6b\xb1\x72\x75\x61\x84\xbe\x36\x98\xbf\x95\x32\x7c\x95\x56\x67\x29\x22\x4c\xe7\xac\xf2\x24\xa4\xfc\x6d\xfc\x4d\x70\xc7\xbe\xd1\x05\xb9\xb9\x05\xcf\xda\x82\x05\xdf\x16\xb8\x7a\xb5\xb8\x24\xb1\x5b\x20\x1a\xd4\x22\x7a\x9b\xf0\x87\x18\x16\x1c\x14\xcd\x65\x04\xfd\x2d\xf0\x1e\xd6\xe2\xfd\xf9\x7e\x85\x92\x10\x47\x9f\xb7\x43\xe6\xd9\x07\xa7\x48\xe5\xcb\xdb\x1d\x08\xf4\xea\x87\x43\xe2\x7c\xbe\x13\xce\xfa\x61\x91\x38\xf9\x41\xb9\x0b\x5e\xb7\x66\x98\xc4\xe9\xbb\xfb\x10\x79\x75\x6c\x15\x58\x77\x64\x69\x0d\x4f\x05\xc2\xdd\xf8\x59\xc7\x50\x43\xea\xd8\x84\x54\x33\xd6\x97\x12\xcc\x81\x30\xfb\x2d\xca\x52\x3b\xa0\x38\xd4\x51\x98\x52\xd0\x0e\x58\x5e\xe8\x58\xec\xfb\x64\x0d\xf4\xb9\x0e\x5d\xb9\x57\xd6\x20\xf8\x59\x47\xb0\x61\xbf\xb4\x80\xbf\x36\x79\xc0\x72\xb9\x5f\xec\xda\x09\x5f\x47\xf2\x19\xdd\xaf\x82\xf9\xe9\x6a\x15\xe2\x19\xf3\x6f\x65\x22\xc9\x0e\xd8\x4e\xca\xd8\xde\xac\xef\x50\x82\x67\xbb\x62\x9a\xe9\x98\x16\x6b\x2a\xb2\xa7\xbb\xb1\x27\x32\x66\x19\x22\xdc\x7f\xca\xe9\xed\x80\x22\xb6\xa3\xe8\xef\x80\xe2\xf1\xfb\x51\x64\xdf\xdf\x91\xff\xb2\xa3\xa8\x54\x6e\xea\x28\x0a\x22\xec\xef\x8d\xc7\x0e\x0d\x29\x95\xc0\x5f\xf0\x84\x3d\xc2\x3f\x7b\xab\xd1\xaa\x44\xff\xd3\x16\xe8\xb5\x50\xd3\xa8\x81\xa3\x46\xd4\x3d\xfb\xf9\xf4\xfd\xe5\xf9\x87\x4b\xb0\x6b\xc3\x8e\x6c\x18\x95\x9a\x95\xed\x35\x9d\x66\xbb\xf2\x66\x51\x83\x1a\x6c\x81\x1a\x3c\x0d\xf5\x8f\x5b\xa0\xfe\xf1\x69\xa8\xdb\x5b\xa0\x6e\x3f\x0d\x75\x67\x0b\xd4\x9d\xa7\xa1\xee\x6e\x81\xba\xfb\x34\xd4\xcf\xb6\x40\xfd\x8c\xa1\x1e\xef\x8a\xfa\x77\x6a\xd6\x1b\x07\x1b\xb7\x8b\x3d\x0d\xf1\x6d\x74\x87\x22\xf2\x2e\x20\x04\x55\x5c\x78\x92\x24\x4e\x4a\xd2\xb3\xfe\x5a\x8b\x78\x3c\xca\x77\x41\x92\xe2\xe8\xb6\xc1\x7e\x8e\x1a\x4d\x88\x00\xac\x64\x86\xe6\x1e\x57\x7d\x5b\xa6\xf7\x70\x2a\x2a\x7c\xe9\x6a\xd5\x75\x07\x5c\x71\xbd\xe5\xfa\x26\xf9\xf2\xcb\x1c\x70\xb3\xeb\x55\x82\x52\x94\x7c\xe1\xa6\x1e\xb9\x2f\x80\x46\x0d\x2b\xe9\x72\x1b\x10\x7f\xcf\x2d\xd9\x87\x74\x75\xa3\x10\x65\x71\x69\x2f\xff\x8b\x5f\xb6\x2f\xe9\x1a\x66\x23\xca\x0e\x53\x6f\x5b\xe8\x5b\xfd\x24\x63\x0c\x0d\xe3\xaf\xef\x51\x1a\x87\x5f\x70\x74\x7b\x9a\x32\xbf\xd8\x5a\xe7\xdd\x5b\x9b\xf3\xee\xbb\x24\xbe\xc3\x29\xea\x26\xf4\x12\x7a\x85\x18\x07\xc5\x37\xc9\x3c\x76\x9d\xb8\x43\xb1\xf4\xc1\x77\x9a\xbf\xbb\x7c\xf5\xf6\xe3\xf5\x87\x8b\xd7\xe7\x6f\x7f\xf9\xd0\x04\x70\x88\xfa\x00\x4c\x41\x97\x85\x19\x66\x46\x0a\x78\x51\xac\xc5\x73\x72\xb1\xb0\xa4\x88\xd9\xe2\xc7\xa1\x74\x12\x0e\x28\xf1\x0d\x3e\xe6\x0d\xee\xa4\x97\x34\x48\xf0\x99\xce\x8f\x30\x8e\x6e\xe9\xaf\x65\x10\x35\x86\xae\xeb\x36\xee\xd2\x26\xc8\x00\xcf\x68\xb0\x4e\x12\x14\x51\x71\xe7\xf3\xc5\xbc\xc6\xaa\x56\xe5\xea\xeb\xae\x93\xf0\x62\x9e\xe5\xbe\xd7\xcc\xe7\x0f\x43\x69\x15\xa3\x5b\xab\x74\xbf\xc1\xd4\xf6\xf9\x9e\xc5\xdc\x97\xa1\xea\x2a\x26\x08\x0b\x8c\xc7\x2c\xf3\xb1\x6f\xcc\x68\xde\xb4\xf6\xe9\xb9\x66\x7a\x53\x39\x1b\xe8\x24\x35\x53\xd9\x58\x87\x1f\x03\x88\xc7\x49\x99\x26\x7d\x66\xaa\x4e\x55\xcc\x4c\xcb\xb4\x13\x53\xde\x83\xd2\xb5\xe4\xe4\xb2\xd5\x72\x62\x4b\xdf\xc5\x04\x6d\x5f\xb2\x74\xa6\xdb\x4f\xc5\x17\xe7\xcf\x7f\xf9\x49\xfa\x8f\x94\x2d\x3b\x56\x62\xaf\x98\x07\x24\x68\xb6\x1d\x19\x75\x57\xb9\xcb\xa0\xc9\xa7\x46\xf3\x87\x07\x94\x35\x3f\x8d\xd8\x5f\x3c\x1f\xc4\x2a\x89\x49\x4c\xab\x74\xef\x82\x15\xf7\x87\x42\x10\xf9\x27\x7c\xe9\x77\x17\x49\x7c\x47\xf7\xcb\x33\xa1\xad\xef\xfe\x67\x8c\x23\xa7\xd9\x04\x59\xf3\x13\x80\x96\x46\x10\x73\xf4\x22\xb4\x0a\xc5\x48\xe7\x39\x62\xaa\x75\x8a\xe1\x94\x38\x2e\x00\x23\x64\xec\x60\x62\xca\x88\x24\x0b\xc8\x4c\x52\x63\xab\x72\xa9\x5c\xaa\xb4\xc2\x92\xfd\x73\x9e\xec\x4b\xba\x26\x5d\xb2\x00\xc8\x8f\x8f\x1c\xb6\x60\x20\xc6\x5d\xbd\xde\x73\x2f\x57\x6d\x10\x35\xb7\xb8\x78\x4c\x14\x79\x63\xd2\xf6\x2f\xb5\x90\x8a\xed\x4b\x55\x34\x21\xed\xcb\x11\xca\xfd\xa1\x2c\x4c\xe2\x14\x18\x56\xd9\x62\x2e\x3b\xa8\x9b\xae\x6f\x78\x89\x43\x60\x6c\xe1\x94\xf4\x44\xd5\x8c\xb5\x0d\xe0\x80\xe7\xf7\xb0\xc3\x8e\xb7\x5f\x6d\x51\x61\x39\x99\xbb\x7f\x02\x53\x18\x41\xa2\x5b\x1a\xd9\xd7\x1a\x4f\xc7\x82\x17\xce\x5e\x94\x3b\xa3\xef\xc8\x93\xdd\x98\xf0\x7d\xdd\x2e\xee\x22\xe5\x6e\x13\xe8\x6e\xd1\x6d\xdb\x66\xe9\xfb\x7e\x22\x27\xb6\xb9\x5f\xfa\xbe\x9f\xca\x99\x69\x58\xb2\x32\xa7\x3f\x90\x87\x66\xb5\xce\x5d\x14\xcd\xdb\xbf\x41\xec\x00\xb8\xac\xc0\xcf\x32\xdf\xfc\x16\x2d\x8c\x97\xc7\xb6\x3a\x49\xfc\x55\x79\xc6\x59\x2d\xd9\x19\x17\xd4\x8a\x96\xde\x13\x65\x24\x1d\x0f\x40\x55\x2d\xa8\xab\x06\x32\xdd\x14\x8d\x1d\x71\x09\x4c\x95\xff\x9b\x38\x1e\x4d\xd7\x7a\xf1\x13\xca\x13\xad\xda\xd3\x9c\xcb\x82\xef\x51\x30\x47\x09\xbd\x4c\xc3\xc0\x6a\x52\x3a\x8b\xc3\x54\x31\x5d\xf7\xd5\x9f\xa3\x99\x78\xeb\xa3\xd0\x69\xf7\x6b\x12\xac\x02\x91\x89\xde\x52\xfd\x8e\x55\xe2\xef\x40\xac\xb9\x6b\xbf\x74\xbe\x33\x0f\x9c\x85\xed\xb0\x0e\x71\x84\x78\x22\x24\xdb\xcc\xa4\x03\xdb\xb6\x15\x48\xc1\xb9\x38\x59\xee\x82\xe4\xb3\x1e\x5b\xa6\x00\x65\x31\xb7\xed\x7e\x6b\xb5\x70\x87\x9c\xb8\xad\x56\xcf\xf7\xfd\x05\x77\x9a\x9a\x93\xa5\x0d\xc3\xb7\x8e\x07\x5a\xad\x05\x7b\x65\x44\x61\xf8\x92\x1e\x50\xf1\x1c\xad\x62\x3a\x9a\xf6\xfa\x2c\xf8\xfb\x35\xf7\x41\xba\x2d\xec\x02\xd2\x64\xe2\xff\xc4\xd2\x6f\x4d\x6e\xf8\x77\x3e\x19\xdf\x1d\xe3\x71\xbb\x7d\xc7\x84\x94\xc4\x47\x57\x77\x53\x98\x1c\x7b\xbd\x83\x56\x2b\xce\x5d\xf3\xe3\x2b\xdb\x61\x99\x80\xe9\x18\xb5\x5a\x14\xac\x70\xfe\x65\x46\xe8\x84\x82\xab\x0f\x37\x2e\xe1\xae\x9d\x18\xa5\x4e\x02\x6f\xc1\x38\xf5\x57\x85\xf0\x70\x54\x5a\x4b\x82\x99\x64\x13\x50\xc9\x33\xaa\x2a\x5e\x2e\xe3\x75\x38\xa7\xbd\x74\x08\x73\xb1\x9c\xd4\xa3\xbc\x05\x23\x97\xee\x9a\xb7\x3e\x81\x51\xbe\x36\x95\x63\x00\x5b\x91\x2c\xf9\x2b\xdf\xb2\xe5\x38\xbc\xa3\xe3\x00\x9c\xdc\x8e\xb9\x2c\x82\x2a\x6c\x86\x4f\x54\x37\x98\xcf\x5f\xe1\x08\xb1\xc8\x25\x9f\x9d\x2a\x60\xdb\xf4\xa9\x99\xa3\xd6\xd9\xd6\x4e\x3b\x5f\x4e\x02\xc0\xf2\x2f\xa8\x51\x5c\x8c\xf5\xd4\x7e\x85\x29\xf4\x65\x9c\xe7\x30\x2b\x6c\xe9\x5f\xac\x14\xc9\x0c\x65\xe5\x6d\xde\xf2\x59\x8f\xa1\xd4\xf6\x26\xd6\x75\xa3\xb2\xa0\x59\x63\xe1\xf0\x22\xc3\xed\xc9\xe1\xef\x2d\x23\x2b\xb6\x13\xeb\x76\xc4\xb7\x61\x2b\x40\x65\xfd\x8e\x67\xe5\xf1\x53\xf7\x94\x2e\x4e\x45\x20\x09\x16\x9d\xe3\x37\xdd\xaf\xe0\x17\xba\xc3\x2c\x1a\x58\x44\x0d\x8c\x17\x8d\x99\x88\x08\x4a\x27\x1e\xdd\x54\x66\xf1\xea\x9e\xee\x2a\x29\x9d\xce\xec\x6c\x70\xe1\x17\xb8\xe7\x81\x31\x39\x0e\xc6\x00\x55\xec\x3a\xed\xb6\xd8\x62\x94\xb0\x63\x9d\x2a\x41\xc7\x83\x74\x83\x4b\xc1\x2c\x8e\x08\x8e\xd6\x88\xc9\x25\x56\x89\xe0\x9b\x36\x33\x37\xee\x87\x13\x6f\xd4\x1b\x2f\xe8\x0a\x52\x44\x7d\x88\x29\x9d\x76\x00\xc4\x73\xc2\xe4\x01\x16\xd2\xce\x97\x71\xa7\x83\x4e\x7c\x77\x0c\x76\xd8\x59\x59\xb7\x5d\xbd\xdb\xeb\x56\xcb\x59\x48\x83\x04\xca\x47\x2b\x1c\x4c\x3b\xd6\x55\x73\x8b\xc8\x9b\x75\x18\x32\xc2\xaf\x01\x80\x85\xc3\x20\xa8\xdb\xf9\x29\x6f\xe7\x22\xb7\xda\x39\x4b\xb0\xf6\xe2\xdc\xf8\xf0\xf1\xe2\xc5\x87\x9f\x21\x45\xbb\x5b\x0f\xa9\xc4\x77\x0d\x60\x2a\xf2\x18\x8e\x3b\x9d\xf4\x89\x4c\xda\x70\xf0\x28\xaf\x4e\x13\xfe\x38\x50\x87\xa3\xbb\xf9\x70\x04\xad\xd6\xde\xa2\xbb\x0c\x52\x96\x3f\xa9\x82\xa4\xdd\xce\x4f\x31\xb5\xe1\x93\x4e\xfb\x0d\x41\x9a\x9a\x84\xa9\x3c\xba\x4c\x3b\xf5\xf8\x88\xba\xdc\x1a\x83\xfe\x65\xa8\xb0\x26\x56\x8d\x57\x01\xe7\x68\x73\x25\xe4\x9f\xec\xdd\x3b\xa8\xcb\x3d\x5c\xae\x5c\xe9\x5e\xba\x29\x66\x90\xf8\x05\x1e\x1f\x79\x10\x8d\xad\x82\x58\x55\xeb\xe7\x50\x59\x07\x47\xc0\x96\x41\xb6\xaa\xf5\x94\xdb\x87\xb2\xaa\x7e\x4a\x44\xe5\x87\x44\x4a\x19\x37\x58\x29\xc6\x8b\xd7\x7d\x5c\xf9\x3d\x05\xee\xb9\x59\x6e\x2c\x62\xd6\x7f\x9a\x9c\x58\x3d\x32\xb3\x38\xfa\x82\x12\x72\x1e\x87\xf6\x33\xeb\x9b\xef\xda\xa5\x85\xff\x0e\x67\xb3\x4a\x41\xbd\xed\xb9\x3c\xd9\xf1\x54\xb6\xa1\xff\x2d\x0e\x65\xcf\xba\x49\xd9\xe9\xa6\xd7\x1b\xfb\xe1\xa6\x38\xf6\xc4\x49\x91\xfb\x63\xe6\xf3\xae\x68\x68\x54\xc8\x55\x5d\x98\x1a\x14\x42\x33\x2c\xd2\x02\x22\xd5\xdd\xc3\xc4\xc3\xed\x47\x75\x1d\x33\x75\x05\x09\xa2\xc2\xf0\x8c\xc8\xc7\x6d\x3b\xaf\xdc\x4a\x9e\xec\x31\x91\xdb\x8a\xab\x8a\xbf\x55\x6d\x00\x7b\x13\x63\x79\x52\xbb\xf6\xe9\xfe\xcd\xae\x9e\xb0\xf8\x2d\xe6\xe1\x41\xed\x20\xc7\x9b\x56\x93\x15\xec\xa9\x53\x74\x92\xcf\x51\x95\x7e\xfe\x1f\x32\xf5\xf3\xc5\x5f\x98\x61\x55\x03\xd6\x91\xa1\xf3\xd0\x6f\x7a\x17\x47\xf4\xd0\xaf\x97\x0b\xd0\x16\x72\x81\x7d\xd6\x64\xf5\xb3\x7c\xcf\xcd\x98\x99\xdd\x43\x85\xe0\x5b\xbd\x3b\x88\xe5\xb3\xe7\xd6\xf1\xe4\xdb\xb8\x6e\x25\x5b\x3e\x46\xe8\x1b\xb9\x24\xf1\xca\xd9\x7c\x88\x14\x15\x35\xe6\x4d\xf7\x43\x70\xc3\x37\x18\xbb\x18\xcd\x7a\x9e\x5b\x0a\x16\x9e\x56\x4c\xdd\x91\xfe\x8e\xaf\xc0\x2e\x4a\xdb\x54\x25\x94\xcb\xa0\x8a\xbc\x47\x35\xd3\xcc\xba\x0e\xbe\xe5\xe9\xa9\x10\xd4\xb2\x86\x59\xa7\x83\xfd\xf8\xdc\x42\x5d\x15\x27\xf8\x16\x47\x13\xd5\xd4\x86\x9d\x20\x27\xa4\x6e\x9b\xb1\x12\x03\xc0\xa8\xd0\x8a\xed\x30\xdc\xd0\x53\x15\xb6\x7b\x67\xe9\xf6\x5a\xd9\xba\xeb\x51\x81\x9f\x76\xa8\x6d\xc1\x50\xbb\x98\x83\xea\x86\xc9\xce\xcb\x36\xb1\x2b\x06\xaa\x91\x49\x2a\x2b\x8e\xb8\x9d\x19\x77\x17\xe7\x56\xf9\x39\xe7\x2a\xb0\xe7\x5c\xb6\xde\xb0\xec\x34\xb7\x09\xc8\x34\x9f\xdc\x07\x53\xeb\x56\xd8\xc4\xeb\x98\xa5\xb6\x9f\x13\xdf\x15\x62\x98\x46\xbd\x0b\x3b\xf9\x0c\x84\xda\xd5\xe2\xf1\xd1\x53\x52\x9e\x59\xdf\x29\xd6\x62\xe2\x8b\xee\xa7\x5b\x47\xac\xbe\x72\x6c\x74\xdf\x6f\xa2\x77\x47\x72\x0b\x75\x72\x5a\x73\x87\x60\x73\x0f\xd3\x87\xd6\x80\x85\xae\x06\xad\x39\x02\x57\x82\x97\x38\x65\x60\xd0\x7c\x80\x0d\x0c\x06\x27\xed\x87\xb3\x9b\x63\x29\xba\x00\x5b\x50\xb1\xf9\xb3\x11\x51\xc1\xff\xd7\xec\x54\x3e\x83\x8b\x5d\xea\xd8\xc5\x0a\xad\x9f\x9a\x0b\x59\x15\x52\xf5\x5e\xe9\xf7\x26\x79\x03\x9e\x68\x60\xe4\xc2\x72\xab\xbc\x81\x92\x27\xe3\x6f\x41\xb6\xcd\xaf\x71\xb7\x29\x52\xf6\xe4\xab\xa2\xcb\xaa\xb1\xa8\xe8\xad\xcd\xaf\xaf\x92\x2e\xeb\xc4\x37\xfc\xf9\x2c\x33\x45\x2b\x15\x52\x91\xf4\xdd\xcb\xe3\x70\xe7\x58\xe5\x42\x65\xb2\xf8\x84\xbb\xdb\xd8\x84\x1c\x12\xdc\xa4\x57\xb6\x8e\x4e\x47\x7d\x11\xfe\xa1\x02\xca\x7f\xc8\xca\x0b\x96\xbb\xbe\x7e\x8f\xb0\xc6\x35\xe5\x26\x7f\x78\xaa\x4d\xd2\xe9\x8c\xad\x57\x8f\x7a\x39\x6d\x2c\x51\x67\x36\x2f\xdd\xff\x06\xa4\xae\x12\xf4\xa5\x48\x6a\xd9\x8f\xa9\x6e\x90\x3d\x63\xa4\x74\xc3\x9b\x9b\xdb\x47\x7f\xd8\xdf\x3f\x3c\x70\x8f\xbc\x1e\x80\x3d\x1e\x85\x9d\x45\xc3\x56\xf1\x7d\xcd\xfa\x2d\xbf\x23\x01\xfa\x5c\x2e\x14\x6e\xeb\xb9\x36\x5b\x9a\x67\xd1\x6b\x4b\xca\x42\xe9\x9b\x4f\x9b\xbb\xde\x3a\x10\x18\xc7\xdd\x04\xad\xc2\x60\x86\x84\x66\x17\xe2\x4d\x4a\x5c\xbb\xea\x83\xa5\xbe\x6f\xb5\x9c\xd8\xb8\x5c\x01\x26\xdc\x22\x62\x76\x41\xa3\x1c\x3f\x9d\x72\xdc\x6a\x39\x98\xe5\x8b\xb6\x55\xdb\x82\x62\x25\xfe\x58\xdf\xb6\x99\xe9\xc8\xeb\x20\xf9\x8c\x12\xab\xc2\x5b\xd2\x01\x71\xa1\xc7\xa5\x40\x08\xbc\xbf\xcc\xde\x4a\x06\x24\xdd\x51\x1b\xa0\xcd\x3c\x11\xc9\xd4\x1d\xd1\xe9\x6e\xe5\xde\xfd\x46\xe9\x0d\xcb\x8e\x97\x27\x18\xb6\xeb\xd1\xbe\x59\x39\xc5\x5e\xba\xab\x74\x0e\x90\x80\x31\xae\x34\x0c\x18\xe3\x76\x1b\x28\x2e\x18\x13\x04\x53\xc8\xcd\x5d\x18\xdf\x24\x28\xf8\x2c\x02\x7c\xfe\xbd\xb8\x01\xed\x97\xa8\xb6\x07\xf7\xdc\x7c\xfe\x14\x0b\xeb\x14\x67\xb6\xa9\x94\xcf\x77\xdc\xf6\x4c\xed\x04\x18\xe3\x7c\x47\x7b\x12\xa7\x5c\x83\x53\x3d\x83\x53\xe5\x71\xd9\xcc\xad\xce\x6f\x4e\x53\x7f\xb4\x51\x77\x22\x02\x3b\x57\xce\x26\x74\xe2\xd6\xb1\x96\x24\xf8\x8e\x19\xf9\x55\x88\x7c\x6c\x2d\xfb\x75\x17\x56\x6e\x0a\x83\x60\x85\xf6\x79\x8e\xd3\x55\x3d\x3c\xad\xa1\xc3\x9b\x89\x80\x5c\xf6\x50\x20\x8e\x20\x33\x5a\x09\xdf\x3d\x7e\xbb\x7d\xa3\x6a\xae\xd7\xac\x9d\xdf\x62\x2b\x30\x56\xeb\x4e\x34\x54\x2f\x41\xaf\x80\xb8\xf7\x34\xc4\x96\x9e\xb0\xd5\x9d\x7d\xd7\x4b\xc7\x9e\x9b\x99\xf1\x62\x2a\x6e\xc3\x76\x61\xc6\x2e\x1c\xd5\xa8\x6c\xf9\xd5\x51\x5a\x9b\x15\xb4\xb6\x75\x17\xe1\xa2\xb6\xce\xbe\x8b\x56\x2a\x29\xa1\x3d\xae\x1e\x57\xd1\x54\xdf\xc0\x85\x8e\x28\xad\x01\xb6\x36\xc7\x96\x61\xd2\xde\x20\xed\xf1\x55\x2f\x92\x13\xa4\x1d\x0f\xd6\xd9\x33\x88\x6a\x15\x7b\xfd\x2d\x22\xcf\xc3\x20\xfa\xac\x4d\xa3\xd2\xab\xcf\x78\xe3\x44\x29\xe5\xe6\xda\xbc\xce\x8c\x1c\x5c\x35\xf7\x54\x33\xa0\xd0\xff\xce\x49\xc6\xc8\x4f\xd8\x98\x7f\xd7\x74\xab\x03\xae\x99\x6e\xdb\xcd\x33\xbc\xcd\x2c\x4b\xfe\x87\xce\x32\x33\x40\x5f\xd5\x2c\xab\x51\x70\x3d\xf9\x0d\x44\xf6\x9a\x9e\xef\x9b\x8d\x50\x0a\x8a\x87\x27\x5d\x0c\x9e\xa8\xfe\x04\xf9\x6a\xfc\xa7\xf3\x49\x90\xf1\xdf\x97\x4f\x5a\xf8\xb1\x87\xdd\x6f\xf3\xc6\x92\xda\x85\x4f\xf9\xbb\xc3\x16\x6b\x75\x77\xc4\x62\x9b\xf9\xa7\x2d\xf1\xda\x67\x15\x73\xa9\xab\x31\x90\xca\xe9\x7f\xf8\x28\x08\x66\xfd\x5d\x06\x82\xb2\x60\xf3\x28\x58\x62\xc7\xff\x73\xc6\x40\x84\x28\xad\x50\x89\xfd\x23\x0e\x64\xeb\xc8\x73\x3b\xc2\x3a\x34\x63\xb4\xd1\x22\x60\xdc\x6e\xa3\xdf\x42\xdb\x63\xec\x69\x2e\x24\x4f\xdd\xb3\x4c\x75\xcd\x66\x19\xff\xb7\x1f\x6d\x19\xfa\xf5\xdf\xc3\x5d\x37\xdc\xfa\x51\xff\x3f\x74\xb8\x8b\x31\xbc\xfe\x3d\xe0\xdb\x0e\xb8\x5d\x8b\xf0\x3f\x71\x0e\x14\xe3\xad\xfd\x7b\x0e\x6c\xbb\xc7\xff\xef\x99\x03\x46\x9c\xdb\x7f\xda\x9d\xc0\x7c\xe7\xb1\x32\xd7\xf2\xb1\x5d\x7a\xad\xff\x87\xdf\x15\x6a\xe2\xe0\x16\x4c\x2a\xaa\xfd\xbf\x98\x25\x68\x59\x0b\x51\xb8\x06\x25\x1b\x5d\xb2\xec\x9e\xf1\xdf\x3a\x09\x7c\xea\x1b\x9c\xb5\xdf\x2c\x4b\x19\xf7\x17\x4e\x01\x8c\x4a\x7e\xd0\xb1\xd0\x88\xff\x88\xb9\x6a\x27\xf0\xdd\x42\x6a\x4d\x59\x63\x9c\xf3\x28\xee\xce\xa4\x2f\xd7\x29\x61\xd9\xbf\xdd\x71\x74\x15\xb4\xdb\x53\x9f\x40\xd4\xf6\xc9\xc9\xfe\x70\xd8\x1f\x4e\x7a\x23\x2f\xa3\x88\x96\x7e\xa0\x21\xf5\xc6\x88\xf9\xcd\x21\x10\x31\x8f\x9a\x8f\x98\x2c\x99\xdb\xa6\x0b\x03\x00\x97\x6d\x3f\x30\x24\x67\xee\x88\x19\x41\x17\x2e\xb9\xe8\x53\x1b\x7b\x58\x25\xc5\xcc\xc7\xe3\xc4\x55\xef\xa4\x38\x75\x9a\xdf\x08\x4a\xee\x9a\x40\x6e\x83\xf4\x53\xf2\xed\x0b\xe9\x08\x47\x3b\xb3\x84\x1b\x00\x36\x81\x30\x94\xa9\x4d\x8e\xce\x22\xfd\x9d\x5f\x9e\xb5\x9b\x57\x13\x6f\xdc\x9b\x35\xa5\xbd\x0c\x45\x14\xe2\x68\xfd\xad\xa9\x4c\x28\xb7\x46\xb4\x3f\x6b\x82\xca\x6e\xeb\x31\x91\xb7\xee\xf8\x8e\x5d\x39\x71\xc7\xbd\x83\xfd\xb1\x6b\x76\xc7\xe4\xd8\xae\x28\x0f\x87\xe3\xa3\x61\x11\xa5\xe0\xd0\x36\xb8\xb4\x3e\xb6\x9b\x26\x16\x39\x60\xbb\x32\xfa\xe4\xb0\x3f\x1e\xb8\xae\xdb\x67\x64\xf1\x57\x73\x9c\x6a\x7c\x75\x7d\xdf\x17\xcc\xac\xb6\x17\xa5\x1c\x7e\x13\xdc\xa1\x76\xb3\x09\x78\x10\xb2\xb7\x0b\x07\x81\x2c\x0f\x68\xfc\x60\xe6\xd1\x45\x7a\xe6\x5c\x99\x63\x52\xf6\x8e\xc8\xb7\x96\xc1\xa8\xdc\x99\xa2\x53\xaf\xbf\xe7\x1a\x2f\x18\xf2\x7d\xa6\x40\x6c\x5c\x72\x8f\xf0\xd9\xc6\xa8\x8c\x16\x0a\xc1\x92\x9f\x44\xaf\x67\xa1\xb7\x68\xb3\x18\xe4\x91\xc9\xf8\xc9\xf5\x47\x74\x9f\x16\x3b\x21\xf1\x94\xcd\x5e\x65\x94\x1e\x17\x46\xea\xee\x2d\xe2\x45\x29\x8b\xc9\x6a\x28\xef\x49\x50\xbd\x27\x41\xf5\x2d\x50\xe6\xa3\xe5\xa6\x59\x65\x38\x19\xe9\xd9\x1d\xd5\x4b\x65\x29\x01\x3c\xfe\x1b\x72\x3c\x95\x94\xaf\xac\xa5\xce\x1f\x0f\x8d\x64\x6d\xdc\x5d\xc2\x20\x6f\x7f\x8b\xb1\xe4\xf6\xa7\x79\x44\x9f\xdc\xfe\xca\x85\xe6\x0b\xed\xc1\x16\xd8\x72\x6f\xf6\xc2\x74\xf0\x7a\x1b\xe6\x34\x37\x0e\x0a\x71\xf4\xb9\x00\x39\x18\x6e\xd1\x6e\xc9\x7b\xa3\x80\x64\x5f\xb2\xa2\x1c\x5d\xe5\x12\x25\x38\x08\x1b\xab\x38\x21\x0d\x11\x22\x09\xcd\x1b\xda\x14\x6f\xf0\x00\x7a\xdd\xe6\x36\xe6\xbc\x1a\xdc\x1f\x19\x58\xce\xd9\x8a\xa4\x73\x22\x0c\x84\x46\xec\x91\xd6\x61\x23\x93\x3f\x97\x0f\xde\x25\x31\x89\x67\x71\xe8\x37\xff\xec\xb9\x4d\x83\xc9\xa8\xbf\x2d\xe8\x9f\x3e\xf4\xdc\x02\xb0\xeb\xf6\xb6\x85\x7e\xf1\xfe\xf4\xa7\x22\xf0\xd6\x4d\x9f\xbe\xf9\x4b\x11\xd6\xb6\x49\x16\x39\x9b\xaa\xec\x81\x16\x8e\xaa\x04\x82\x65\x6e\x7a\xae\x3b\xac\x1c\xfc\x17\xe7\x67\x97\xe7\x1f\x58\x9d\x46\x14\x93\x46\xba\x5e\xd1\x89\x80\xe6\x0d\x27\x45\xa8\xf1\xbb\xde\xd0\x3d\x00\xcd\x22\xbe\xfd\xfa\xae\x9e\x47\xb3\x98\x0a\x9e\x7e\xf3\xf2\xa7\xf7\x85\xae\x7a\x5b\xd0\xe2\xed\x40\x8b\xb7\x0b\x2d\x32\xb3\xab\xb1\x4f\xdb\x96\x17\x4e\xf9\x1e\xf0\x33\x9e\xcf\x51\xe4\xef\x79\x66\xa3\x83\x43\x0e\xa3\xc7\x0c\x2d\xd4\x38\xb2\xd4\xe0\xcb\xf9\x60\x24\xeb\xc8\x0d\xc5\x9e\x63\x8d\xd1\x1f\x10\x74\x1a\x0a\xcb\x92\x4a\x0b\xae\x4a\xf2\x2f\x22\x4c\x70\x10\xe2\xbf\x21\xdb\x32\x2c\x45\x21\xb1\x9b\x02\x98\xae\xf0\x5b\x2f\xe2\xde\x76\xb3\xfa\x86\x5d\x81\x08\x9a\xbf\x0b\x52\xfe\xcd\x38\xd3\xf5\x7c\x0a\x7f\x47\xf1\xc3\x7b\xaa\xf8\xe1\x59\x48\xfd\xe7\x09\x20\xde\x3f\xe4\x6c\x3e\xac\x9e\x27\x7f\x9f\xa3\xd9\xfb\xcd\x8f\x66\xef\xc9\x47\xb3\xf7\x5b\x1c\xcd\xde\xb6\x47\x33\x9b\x23\x38\xba\x6d\xdc\x04\xb3\xcf\x0d\x12\x37\xa2\x38\xb9\x0b\xc2\xef\x3d\x91\xbd\xdd\x4f\x64\x75\xbe\xe6\x67\xe5\xce\x07\xdf\x9b\xb7\x6f\xce\xbf\xf3\xe4\xf3\x76\x39\xd9\xde\x5f\x3e\xe1\x64\xdb\xf9\x5c\x11\xf2\xf1\x4e\xe7\x1c\xa7\x6c\xfb\x73\x6e\xab\x43\xca\xb5\x1f\x52\x85\xa8\xd4\xa5\x73\xea\x69\xa7\xd2\x1b\x36\x11\xc5\xc1\x04\x20\xc5\xe4\xfb\xbe\xb6\x9b\x89\x4b\x6c\xa1\xf5\xff\x7d\x87\x95\x71\x02\xe8\xf9\x33\x48\x51\x17\x5c\x83\x19\x3e\x98\x6b\x65\x94\x40\x73\x9a\x8d\xd2\xcc\xb7\xcf\x47\x15\xb2\x4b\x43\x0f\x1f\xc4\x70\x8d\x02\x38\x8b\xc3\x74\xb4\xcc\x6c\x36\x3f\xb2\xd5\x51\x08\x83\x90\x8c\x66\x99\x1f\xa8\x18\x5c\x95\xa7\x06\x9c\xfb\xc8\x3f\x41\x13\x6f\xd4\x83\xd7\x36\x6f\x80\x85\x7f\x0d\x6f\x7d\x32\xe9\xf9\xbe\x7f\x3d\x19\x8c\x06\xec\xdf\xb9\x13\x95\xce\x5d\x30\xf2\x78\xa5\xfe\xa8\xe7\x8a\x5a\x6b\xed\x78\x05\x23\x77\xe4\x89\xef\xd8\x7e\xe6\x01\xe6\x26\x72\x3d\x59\x57\x1f\x66\x93\x43\x8a\x7b\x39\xe9\x8d\xbc\x7e\x8f\xfd\xe5\x8d\xdc\x91\x3b\xda\x57\x98\xf9\x39\x03\x46\x07\xea\x4b\x7e\x56\x80\xd1\xa1\x20\xf1\x48\x94\xb2\x5b\x87\xef\xfb\x89\x22\x9f\x51\x9d\x1f\x12\x60\xd4\x1b\x8a\xef\x7b\x51\x61\x95\x82\xd1\x60\xa8\x5a\x29\xbb\xdc\x8f\xf6\xf7\x6d\xfd\xe5\xfb\x36\x18\xed\x1f\x08\x9e\x7a\xa8\x2f\xa9\xe1\x17\x19\x41\x8f\xeb\x4a\x8a\xf8\x15\x45\x7d\x56\xd5\xe9\xe5\x43\x7d\x1d\xa8\xc6\xd4\x16\xcb\xbe\x0f\x65\x33\xae\x2b\xe9\x61\xa2\x3c\x0b\xf0\x33\xa2\x1b\x97\xaa\xe0\xe9\x15\xa4\x7c\x2d\xeb\x0d\x38\xef\xbc\xd1\x80\x11\xfe\xf8\x48\xb7\x17\xf5\x97\x64\x68\xe8\xfb\xfe\x0c\x8c\x7a\x3a\x3d\xe5\x95\x06\x46\x2e\x8c\xca\x6a\xb0\x4f\x3f\x3c\x48\x4d\x58\x76\xf5\xc3\x03\x99\x34\x9b\xa3\xe6\xa4\x99\xfd\xf0\xb0\xc8\xc6\x3f\x3c\xdc\x66\x3f\xdc\x7f\x02\x70\xcf\x1d\x7f\x09\x92\xc6\x02\xde\x66\xd7\xeb\xd5\x9c\x4a\xd5\x84\xc8\x94\x01\xdc\x9b\x04\xa6\x4a\x5d\xd6\x63\x4e\x4b\x0e\x7a\xf4\x87\x6e\xbf\xef\xed\x0f\x0e\x21\x6a\xf9\x1d\x6f\xff\xe0\xe0\xa0\xe7\xed\x43\xf4\xe8\x2f\xba\x4a\x93\xc9\x1c\x57\x58\x7c\x34\x8a\xee\xfd\x4f\xcf\x9d\x2b\x86\x6e\x0a\xc0\x68\x28\x3c\x63\x28\x38\xc3\x75\xe4\x0e\x28\x78\xbf\x3f\x1c\x0e\x06\xfd\xde\x63\x6f\x38\x6c\x61\x00\x51\x76\x2d\x54\xec\x1a\x4d\x72\xff\x48\xfc\x2b\x17\xba\x90\x05\x7b\x73\xa1\x3b\x65\xba\xee\xd4\x77\x59\x20\xda\x79\xcc\x02\xb8\x5d\xc5\xed\x74\xaa\x6d\xbf\xed\x78\x0a\x99\x53\xfc\xe5\xfa\xe6\x1d\xfb\xe6\x90\x76\x0c\xf2\x2d\x09\x31\xe5\xba\x51\xc8\xf0\x46\x1c\x27\x25\x3c\xb9\xf2\xa6\xad\x96\x93\xfa\x1e\x80\xb4\x81\xa8\xed\xd1\x46\xf0\x55\x34\xcd\xbe\x2e\x71\x88\x9c\x76\x3b\x3a\xc6\x2a\xaa\x69\xd4\x8e\x69\x8d\x63\x19\xcd\x54\xec\xb0\x19\x5e\x38\x39\xba\xb8\x9d\x9e\xf8\xbd\xc7\xc7\x9e\xf9\x65\x08\xf8\x6e\xac\xb5\xa9\xda\x88\xdb\x44\x8b\x9d\x1a\x1b\x2d\xe4\x9a\xf9\xde\x18\xa9\xef\x4c\x41\xdf\xf1\x58\x13\x88\xe2\xa3\xff\xf8\x2e\x90\x8e\x27\x49\x6e\x0a\xde\x3f\x1c\xe1\xee\x42\x86\xce\x2b\xce\x0d\x5a\x04\x29\x4d\x30\xb9\xea\xd3\xff\x0c\xe8\x7f\x86\x53\xe3\xf0\x18\x50\x14\x37\xd5\x28\x6e\x36\xa3\x18\x52\x14\x32\x4a\xb1\x9f\xff\xd9\x9d\x85\x71\x84\x1c\x00\xb5\x4f\xeb\x68\xce\x32\xa7\x20\x3d\x77\x79\xb9\xd5\x8a\xfa\x56\x52\xe4\x43\x60\x9c\x5d\xaf\x92\x78\x86\xd2\xf4\x17\x09\x24\x5c\x98\x73\xe2\x48\x99\x38\x67\xef\xbf\xd0\xe3\x23\x3a\x19\x02\x3a\xd5\xe9\x74\x21\x96\xe6\x59\xca\x34\x1f\x41\xd2\x5d\xdc\x3e\xfa\xbd\xfd\xc3\x41\x7f\x38\x18\xee\x33\x7b\x79\xc4\xde\xe6\x16\xb7\x2d\xbf\x23\x0b\x0e\x28\x16\xde\xad\x73\x81\xcb\x01\x8a\xbe\xcb\x9f\xde\xbb\xf4\x82\x85\xe8\xd8\x59\x2c\x98\xe8\xb8\x21\x3a\x28\xb6\xb2\x1b\x5a\xa6\x3a\x84\xca\x1d\x42\x95\xe4\xbb\xd6\x32\xc6\xd9\x96\xdf\xd9\x3f\xf0\xdc\xc3\xc3\xfd\x01\x44\x65\xca\x4b\x39\xf8\xe8\xba\xf5\x98\xcc\x24\xa7\xb6\xab\x4b\x50\xee\xb4\x18\xac\x35\xef\xb8\x38\xf0\x73\xc7\x39\xb6\xc3\xe5\xef\xdb\x62\x15\x70\x67\x2b\xb9\x89\x94\x80\xd4\xe2\x49\x7d\x77\x9c\x1e\x93\x71\xda\x6e\x03\xed\x35\x30\x9d\x42\x7c\xe2\xf7\xdd\x56\x0b\x1f\xfb\xfd\x83\x89\x93\xf0\x11\x52\x1b\x59\xc2\x46\x52\x6e\x8b\x8f\xb8\xd3\x77\xc1\x08\x9f\xf8\x03\x0e\x32\x60\x20\x37\x05\x90\x1b\x13\x64\xc0\x41\x8e\x38\xc8\xd1\x86\x56\x7a\x83\x47\xdc\x39\xe2\x20\x9e\xcb\x61\x3c\x77\x43\x3b\x0c\xc8\x73\x5d\x30\xa2\x0c\xc6\x93\x32\x3f\xe9\x69\xc8\x8a\x44\x5b\xfd\x41\xcf\x3b\x38\xe8\x1d\x32\xe1\x82\x7e\xa5\xc8\xe4\xe0\x32\x81\x06\x73\x3a\xf5\x79\x6c\xa0\xd5\xd6\x8f\xb9\x0b\xa7\x60\x52\xd8\x7a\x53\x70\xe5\x4e\x47\x1e\x4c\xc4\x79\x21\xa9\x50\x7e\x93\x4c\x2e\x91\x5f\x15\x15\x87\x3a\xc1\xee\x41\xff\x60\xe0\x1d\xf6\x06\x4c\x4a\x91\x9f\x7b\xde\xe0\x60\x70\xd8\xdf\x1f\x1c\x8e\x7a\x5a\x47\xf2\xee\xf5\xbc\x32\x43\x72\xca\x7b\x30\x01\xa3\x5e\x2f\xef\x2d\x3d\x03\x05\xec\x11\x14\x1c\x57\x1f\xc0\xa8\x97\x73\x2b\x5f\x0b\xc3\x51\x6f\x60\x60\x50\xeb\xbb\x8a\x61\x2e\xe3\x44\x2f\x67\x85\xee\x12\x3a\xea\x1d\xe8\xdf\xf3\x46\x0e\xf5\xcf\x8a\x1f\xc3\x51\xef\x48\x2b\x50\x0c\x39\x18\xf5\x8f\x0c\xaa\xd4\xca\x35\xe6\xf4\xb0\x65\xdf\x5a\xc0\x68\xa0\xc0\x6f\x0a\xe0\x37\x9b\xc0\x6f\x6e\xc1\xa8\xcf\xc8\x7d\x7c\x1c\x88\x7f\x87\x9c\xfc\xb4\x2d\x56\x69\x41\x18\x48\xe9\x48\x0c\xf5\xc9\xa8\x8d\xf8\x70\xa8\xb3\x5d\xeb\xfa\x50\xd1\xa8\xf6\xba\xa4\xbc\xd7\x25\x95\x27\x4b\xc7\x83\x49\x69\x1f\x63\xf2\xe1\x77\xb0\x0e\x3e\x91\x63\x55\x97\x69\x99\xf5\xff\xf2\xa7\xf7\x8d\x40\x6e\xaf\xa3\xc6\xef\xe7\xdd\x26\xc4\x9a\x47\x73\x21\x77\xe9\x43\x51\xfd\xa6\x04\x02\xdb\x4d\xbb\x5e\xea\x74\xa3\x4f\x05\xd5\x56\x8d\x27\xdf\x7d\xdb\x83\xf6\x48\xac\x6d\x6f\xbc\x6b\xcb\x3f\x3c\x20\x2a\xe4\x92\xec\xfd\x27\xcd\x73\xce\x9e\x56\x95\x1e\x37\xfb\x85\x03\xe6\xe1\x1f\x45\xe8\xc4\x4e\xa9\x9e\xa2\xb5\x10\x2c\xa8\x4e\x19\xbf\xcd\xed\xbe\xda\x24\xe9\x43\xbc\xf2\xad\x56\xd1\xba\xc5\x52\x8d\x8b\x0c\x2c\x1d\xa4\x56\x21\x43\xae\xaf\x72\x7f\x12\x9e\x41\xca\xfe\xfa\x6a\x16\x9a\xf4\x05\x5f\xd0\xfc\xcf\x15\xb4\xd3\xb2\xbf\x54\xfa\x13\x55\x82\x9c\x69\xce\xf7\x4a\x0a\x9e\x19\x1f\xb7\x82\xbd\xb1\xc1\xde\xd4\xc0\xf2\x5e\xd7\x07\x23\xdf\x45\x43\xcc\xdf\xff\xcd\xe4\xbc\xb6\x98\x05\x8f\x8f\x9e\x72\x3f\x57\x0a\x77\xe3\xc1\xbe\x56\x0b\xcc\xa5\xc0\xe6\x4d\x18\xcf\x3e\x37\x0b\xee\xbb\xfa\x73\xc3\x36\x48\xd4\x76\x6b\x20\x1a\x8e\x0c\xfd\xf8\x56\xd4\x04\x49\x33\x53\xba\xa6\xdf\xf7\x7c\xdf\x33\xed\xf7\xb7\x50\x6c\x63\xc1\xc1\x42\x5e\xe2\x2a\x16\x72\xd1\x92\x37\xa2\x42\xb4\x1c\xf7\x1e\x1f\x1d\x4d\x80\xf4\xa6\xe0\xa4\x6a\x1d\x3d\x3e\xb2\x53\x84\xde\x18\xaa\xfd\xb0\x01\xc4\x27\x15\x21\x40\xf2\xb5\x4c\xec\xf1\x5a\x8c\xd5\x8c\x3b\xf6\x37\x04\x66\x2b\x53\x4c\x81\xcc\x02\x26\x7e\x4f\x28\x55\x9b\xc9\xa9\x08\x62\xe3\x4d\x34\xee\x8c\xdc\x71\xe5\x31\xe4\x0d\x46\x22\x5a\x46\x61\xb3\xfb\xc8\x9a\x4a\x45\x5b\x3c\x9d\x24\xdf\xf3\xbe\x76\x7f\x3a\xff\x70\xfd\xf1\xe2\xcd\xf5\xe5\xc5\x7f\x9c\x0b\x5d\x8c\xa9\xef\x55\xb3\x6a\x5b\x6c\x2c\xbe\x70\x25\xba\x43\x9b\xaa\x78\x2b\xeb\x25\xe3\x74\x38\xa4\x27\x43\xc5\x14\xc8\x2a\xca\x66\x71\x98\x66\xc4\x3c\x78\x7b\xbd\x91\xcb\x79\xd6\x33\x22\x8c\xf0\xd1\x61\x29\x51\x45\xa2\x9a\x75\xba\x2c\x97\xc9\x4d\xb7\x54\x5d\x8e\x9d\x8a\x6e\x59\xaa\xc1\x42\xde\x39\x00\x40\xd1\xbe\x67\xb4\x8f\x45\x62\xd7\x52\xe3\xb2\x40\xb6\x6c\x56\x2c\x35\x6b\x16\xcb\x36\x0d\x0e\xf4\x0b\x1c\xa8\xed\x91\xc0\xab\xd2\xc5\x56\x71\x2b\x5e\x95\xbb\x56\x4d\x70\x8e\x55\x25\xb4\xb5\xb2\x81\x61\xd5\x64\x01\x3d\x97\x79\x4d\x80\x53\x71\x0a\xda\x04\x93\x27\x1c\x8c\x76\x6f\xee\xff\x91\xa7\x25\x7f\x82\x36\xd2\xb0\xd7\xc6\x89\xad\xe4\xed\xe3\xa3\x3d\x94\x60\x6d\x68\x07\xce\x67\x6b\xd0\x36\x26\x80\xa8\x90\x0f\x33\x1b\x0f\x37\xb1\xda\x02\x7b\xb3\x1d\xac\xe2\xaa\x9d\x6b\x02\x87\xce\xe5\x4d\xa3\x90\x07\x3a\xaa\xc3\x58\x09\x5e\x19\x6d\x90\x9f\xbf\x32\x71\xb3\x39\x74\xda\x9a\x54\x61\x0c\xe3\x88\xfd\x3e\x5b\x06\xd1\xad\x48\xa6\x83\x24\x16\x2d\x95\xb4\x89\x48\xae\x41\x1f\x89\x9a\x15\xf9\x9d\xd5\xb9\x7f\x35\x85\xf4\x44\x17\x99\xaf\xc6\x4d\xae\x72\x1d\x63\xb5\x3b\x8d\xf3\x5b\x04\x96\x7b\x12\x4c\xf2\xbf\xc7\x78\xe1\x3c\xfb\xbf\xbf\xce\xdb\x3f\x3c\xeb\xa2\x6f\x68\xe6\x20\x4d\x0b\xcd\x4c\xd5\x2f\x22\x2a\xff\xd3\x7a\xdf\x1c\x0c\x00\x5e\x38\xcd\x09\x7f\xa3\x20\x7c\xb3\x7c\x20\xf7\x2b\x34\x72\x21\x33\x4a\x1d\xe1\x0c\xb0\x50\xbf\xaa\x59\xc7\x85\x37\x3c\xe7\x11\xa3\x1e\x38\x09\x18\xd3\x53\x48\x07\xf6\x24\x30\x9c\xd1\x3a\x23\x94\x81\x2c\x53\xfe\x0f\x85\xc4\x5c\x71\xc4\x10\x89\xf8\xa8\x92\xa7\x7a\xc6\x6a\x4d\x2c\xd2\x38\x23\xf6\x32\x87\x28\x79\x88\x8a\x37\xe4\xca\x9b\x4a\xc3\xe0\x04\x05\x04\xe5\x88\x08\x93\x2d\xa8\x9c\x34\xda\xa3\x7f\x4b\x02\x16\x38\xc2\xe9\x32\xaf\x07\x40\x56\x82\xd5\x42\x4b\x56\xe7\x21\x29\x21\xd2\x6c\xfe\x05\xe1\xa3\x26\x10\x81\x05\x78\x51\xea\xe3\xee\x02\x47\x73\x9e\xc1\x97\xe5\x38\x63\x39\x92\xd2\x8f\x98\x2c\x9d\x26\x9e\xfb\x4d\xe5\x1e\xda\xa1\x87\x41\xca\x32\xc1\xe0\xab\x74\xda\x4d\x99\xa3\x6a\x1f\x3c\x3e\x7e\x89\xf1\xbc\x61\x5d\xf3\xb9\x22\xb9\xb2\xa8\x78\x77\xaa\xcc\xe4\x27\xdf\x2a\xcd\x6c\x2b\x32\xf6\x3b\x4b\xb6\xf2\x80\xe7\xa3\x04\xae\x13\x3c\x22\x99\x0d\x61\x51\xbf\xc1\x8c\xa7\x4b\x6c\xdb\x9c\x5a\xf0\x37\xe9\x8e\xbb\x2d\x81\xda\xc2\xbd\x5c\xa1\x19\x0e\x42\xf5\x6e\xa4\x3f\xf1\x14\x56\x6d\xee\x17\x91\x3f\xda\xec\x39\x44\x06\x6a\x4a\x35\x4c\xa9\x7a\x61\x69\xb7\x11\x6c\xb7\x49\xbe\x2c\xf1\x15\x9a\x02\xcb\x42\xb9\x32\x97\xa9\x05\xe7\x15\x99\x66\x53\x63\xf1\x26\xe5\xc5\xcb\xd0\x8f\x13\xeb\x5a\xbc\x32\x17\xb3\xbd\x09\xb1\xc2\x93\x6c\x0a\x0c\xdb\xf0\x72\x8e\xf8\x52\xe0\xc5\x0a\x9e\xba\x20\xb3\xe6\x83\xdf\x16\xde\x33\xe0\xcd\x74\xe5\xdb\xe2\xe8\x81\xcc\x9e\xe6\x9d\xdd\x56\x10\x28\xe4\x2f\x28\x33\xad\x97\x4d\x8d\x57\x02\xfb\xc6\x5e\x9e\x22\xec\x2d\xad\xb8\x87\xb3\x41\xca\xdf\x27\xd5\x36\xce\x07\xef\x9b\x93\x80\xc2\xfe\xdb\x13\x43\x96\x64\x60\x87\x5d\xb7\x94\x82\xbe\x98\xa6\xc1\xd2\x4d\xd1\x50\x6f\xb8\xcf\x3b\x9c\x95\xd2\xce\xef\x82\xe4\xc0\x44\x52\x37\x76\xf5\x88\x0e\x05\xa2\x3c\x3f\xfb\x86\x20\xfe\xec\xb3\xc8\x05\x4f\x01\x2b\x72\xa2\x3f\x94\xf2\x82\xfe\x77\xb4\xee\xce\x3b\x60\xa4\x61\xdf\x48\xfc\x3f\xd3\xfe\x0d\xaa\x38\x98\xc5\x74\xdf\xdb\xc7\x35\xaf\xac\x51\xeb\x02\xa2\x1a\x96\xb5\xf2\xa9\xd6\xdb\xcb\x1f\x0c\x45\xcc\x6c\x3b\x8d\x70\xcf\x05\x23\xa7\xf9\x8c\xee\xd8\x88\x29\x6d\x36\xd2\x72\x76\x45\x2b\x4e\x61\x9e\xbc\xfc\x0a\x5d\x79\xd3\xe9\xe3\xa3\x95\x46\x90\x89\xd9\xf9\xb0\x73\xa2\x88\xff\x99\x79\x4a\x9e\x9e\x3f\xac\x22\xad\xc0\x65\x79\x32\x19\xa8\xab\x83\xe3\xd2\x65\xc7\x76\x25\x66\x40\x74\x21\xc6\xa1\x2a\xc1\x46\x45\xb0\xfb\x1a\x66\x7f\x88\x57\xb5\x8f\x03\x9b\x02\x75\xe7\x6e\xd3\x96\x42\x11\xd5\x84\x5e\x0f\xce\x43\x74\x87\x22\x52\x13\x5a\xd4\x7a\x3f\x47\xf5\xf1\x52\x76\x75\x34\x7d\x6a\xa0\x9a\x1a\x6f\xde\xdf\xca\x71\x9a\xa7\x1f\xab\x9d\xf1\x25\x1f\x6a\x25\xf4\x2c\xd6\x61\xc8\x9f\x57\xaa\x92\x24\xe9\x6f\x0d\x56\x9b\x6d\x28\x0d\xdb\x1d\x79\xd9\xd8\xed\xdd\xc3\xe0\xd9\x45\x44\x50\x12\x05\x61\x1d\x5c\x56\x64\xb3\x49\xb9\x15\x5f\xe1\x45\xb1\xbe\xa6\x7a\x42\xef\xb7\x6a\x74\x30\x56\xe8\x2c\xdf\xdb\x4b\xef\x55\x55\x87\x00\x92\x21\x4f\xac\x09\xf4\xd5\x1a\x8b\xd0\xd7\xc6\x75\xf7\x0c\x85\x21\xb3\xcc\x40\xdd\x19\x4f\x66\xe2\x7b\xc7\xc7\xbd\xde\x63\xf3\xbc\x69\x66\xda\x84\xa8\x52\x01\x85\x36\xa8\x97\x0a\x56\xf4\xa6\x8b\x42\xd5\x5e\x36\xa6\x57\x80\xba\xd8\x06\xd5\xab\xab\x4d\xec\xf9\xd5\xb5\x78\xaf\x4c\xde\x77\x12\x1e\xc6\x18\x01\x98\x14\x82\x09\x6f\x8c\x53\x70\x1a\x86\x7c\xb1\x95\xd3\x2a\xb8\x22\xee\x7a\x55\xf6\xff\x42\xa7\x6c\x56\xcf\x8a\xfe\xca\x07\x00\xf5\x12\xe2\x9f\x38\x65\x89\xa4\x56\xfb\xfd\xc3\x03\xca\xb4\x9f\xbf\xfe\xfa\x89\x67\xb7\x74\xfe\xd0\xfc\xeb\x1f\xe8\xe1\x3d\xf9\xf4\xce\xfb\x21\xf9\xa1\xbc\xfc\xba\x38\xcd\x23\x74\x83\x89\x37\x72\xb3\xe6\x5f\x3f\x8d\xfe\xd0\x5c\x71\xb8\x3f\x50\xb8\x7d\x6f\xec\x35\x57\x7f\x18\x35\x93\xa6\x8e\x0c\x6b\x09\x33\xbc\x6c\x9c\x7f\x90\xc7\x6c\x96\x7c\x1a\x35\xef\x38\x4c\x93\xc2\xb8\x77\xcd\x51\xb3\xf1\x57\x03\xcb\x03\x7b\x07\x1b\xf5\xa0\x7a\xca\x1a\x0d\xe0\x4d\x90\x8c\xf6\xb3\xab\x44\x7f\xa3\x9a\x76\x9c\x44\x7f\x6e\xa2\xc4\x82\xac\xf1\xd7\x4f\xa3\xe6\x3b\xf7\x87\xa4\x09\xb2\xc2\xa6\xb9\x21\xe5\x48\xa1\x66\x96\x91\xee\x45\xb4\x5a\x13\x91\xd8\xcd\xff\xc0\x54\x1a\xe7\xfe\x2c\x0c\xd2\x94\x8f\x70\xb2\x9e\x11\x2e\xb5\x5b\x06\x5a\x2a\xd5\xf4\x4c\xe9\x99\xfe\x83\x03\x31\x45\x48\xcd\x44\x91\x47\x09\x8a\xe6\xb5\xb5\xb2\x3c\xe0\x03\x02\x0f\xe8\x38\x47\x3e\xd1\xda\x41\x23\x74\x22\xd1\x49\xd9\x83\x62\x46\x76\x6e\x21\xf6\x54\x76\xea\x23\x88\x7c\x02\x89\x7f\x0a\xa0\x8e\x59\x62\x10\xb8\x01\x24\x56\xe4\x84\x23\xcf\x17\x14\xef\x79\xa1\xc1\x5a\xe3\xfb\x2c\x1b\x2f\xd6\xd1\x8c\x5d\x2e\xbe\xe9\x5e\xe8\xc7\x3e\x6a\xb5\xd0\x31\xbd\x9a\x9d\xfb\x89\x73\x95\x3a\x2e\xbc\xed\x5e\x3c\xd7\x91\x80\x29\x3c\x07\x19\x3c\x1c\x0c\x46\xac\x5b\xfe\xc9\x83\x42\x86\xa5\x4b\x95\xb8\xc3\x36\xe2\x45\x03\x01\xd2\x9d\xe3\x74\x15\xa7\xc8\x01\x63\x29\x1a\xfb\x6e\xf6\xf6\xe6\x3f\xd1\x8c\x74\xe7\x68\x81\x23\x24\xb2\x0e\xdf\x3b\x04\x36\xaf\xaf\x51\xfa\x3a\x9e\xaf\x43\xd4\x84\x0f\x5f\x82\x70\x8d\x46\x7b\x6e\x06\x20\xa1\x7b\xd1\x0b\x8e\x8a\xc5\x97\xe0\x7f\x07\x37\x21\xf2\x55\x1b\xac\xc0\x27\x5d\x12\x1b\xa5\xaf\xd7\x84\xfe\x65\x7c\xd3\x7e\x70\x6d\x18\x34\xbe\x95\xa7\x66\x3e\xe1\x65\xa5\x94\xde\xd2\x85\xe2\x36\x15\xa4\xb1\xc0\x2d\xaa\xc7\x0f\xe5\x52\x1e\x03\x43\x1c\x2c\x94\x45\x25\xac\x00\x69\x2c\x2b\x95\xe6\x2c\x94\x8a\xb4\xd2\x69\xa7\xd7\x66\x97\x7c\x04\x20\xca\xd6\x91\x0e\x60\xc6\x24\xd1\x21\xf2\xd8\x02\x63\xa6\x40\x54\x6f\x9c\x7a\x25\x19\xf4\x0e\xd2\xf9\x04\x6d\x1c\xae\x66\xa0\xc9\xab\x5b\x44\x1a\x6c\x98\x8b\xb2\x44\x5e\x6d\xc2\x07\x48\xdc\x07\x58\x65\x7a\xd6\x0b\x30\x54\xc6\xfb\xf8\x88\x94\xf8\xcc\x2a\xa9\xb7\x3e\xf6\x6b\x92\xf3\x17\x6a\x9f\xe9\xca\x65\x9b\x8a\xa4\x94\x7f\xe5\x8d\xd7\x8f\x29\xdc\x02\xbb\xc0\x43\xb9\x65\x4c\x4f\xb9\x7e\xf2\x61\x7c\x10\x08\x46\x88\xd5\x36\xe6\x36\xae\x5d\x08\x35\xb8\x1c\xe0\x9f\xd0\x15\x9a\x65\x19\xf4\x86\xee\x50\xad\xdf\x27\xac\xc4\x97\xf1\x3a\xf9\x23\xba\x7f\x1d\xac\x7c\xd2\xfd\xf0\x35\x16\x7f\xf3\x1e\x8e\xd9\xc8\x37\xb0\x7d\xf1\x50\xb9\xf4\x21\xcb\xd8\xb5\x99\x5b\xd1\xe7\x05\x57\x68\xaa\x06\x4a\xfc\x66\x69\x44\x8c\x2f\x57\x64\xea\x63\x3a\x6b\x2c\xd9\x45\x45\x95\x49\x11\x60\x24\x78\x6f\x8c\xae\xa2\x25\xd3\xfb\x80\xcd\xee\xd5\x6c\x03\x14\x9a\xca\x85\x58\x75\x26\x81\x29\x8c\xf5\xf2\xae\x24\x53\x5e\xef\xd9\x47\x59\x9d\x01\xeb\xbd\x53\xd5\x59\x15\x8e\x4d\xf6\x14\x62\x98\x58\x7a\xab\x40\x26\x5c\x54\x83\x09\xb0\xf4\xb2\x2b\x3e\xd1\xb1\xdf\xf7\xbc\xc1\xf7\x8c\x3d\x4e\xcf\x96\x49\x7c\x87\xde\x5e\xfa\xf4\xc7\x2b\x1c\xad\xbf\xb1\xbf\x84\xad\x02\xfb\xfb\x62\xb5\x8c\x23\x24\xfe\x0c\xe6\xec\x8f\xd7\xc1\xcc\x67\x73\xf7\x32\x58\x04\x09\xfe\x13\x4a\x52\x1c\x47\xac\x88\x7f\xe1\xf8\xd0\x6d\x30\xbb\x3f\x9f\xdf\x72\xe8\x97\x38\x41\x8b\x98\x37\xf0\x26\x9e\x6b\x7b\xb5\xf8\xcd\xcc\x74\x28\xf5\xf3\xe6\x9e\x4f\xee\x57\x28\x5e\x34\x84\xcd\x6a\xab\xd5\x24\x98\x84\xa8\x89\x23\xf9\x29\x8f\xec\x2c\xe0\x27\xcd\x28\x9e\xa3\xe6\x28\x0a\xbe\xe0\xdb\x80\xc4\x49\x77\x9d\xa2\xe4\xf4\x16\x45\x4c\x2c\xae\xac\xb5\x0a\x03\xb2\x88\x93\xbb\xb1\x4e\x24\xee\xe2\x68\x16\xae\xe7\x28\x75\x9a\xe2\x5b\x93\xb3\x4c\xeb\x95\x5e\x89\x7e\x10\x35\x04\x0b\x9e\xfd\x5f\xc7\x99\xec\xcd\x18\x87\x1f\x83\x68\x9e\xc4\x78\x0e\xba\xe0\xc7\x94\x15\x3f\xc3\x5d\x82\x52\xc2\xb2\x41\x94\x39\xa9\x16\xbf\xc8\x29\xaa\xb0\x4a\xed\x73\x9e\xeb\x10\x77\xef\x02\x32\x5b\x3a\xcf\x04\xec\xaf\xcf\x9c\x5f\xe7\x6d\xf0\x4c\x45\xe3\x8a\xd6\x61\x48\x45\xc9\xc7\xc7\xdc\x7a\x68\xe2\x8e\xf2\x07\xc1\x2b\x6f\x0a\x32\x28\xc7\xf5\xaa\xf9\x3a\x98\xe1\x88\xc4\xe9\xb2\x09\xe9\xdf\xf4\x4e\x16\xf2\x3f\xdf\xbd\x3b\xe3\x7f\xec\x1f\xfe\xb1\x39\xcd\x7b\x9f\xf0\x8e\xb3\xf9\xd1\xc4\xef\x82\x39\x7b\x54\x84\xda\xf4\x69\xe2\x77\xf4\xdf\xfc\xbb\x9c\x62\x57\x4d\xf1\x57\x13\xd2\xbf\xbc\x7d\xfe\x6f\xbf\xc7\xff\x3d\x3b\xb7\xb4\xc3\x27\x6a\xa2\x8e\xb7\xe6\x2b\x1e\x14\xe8\xc4\x77\xcd\x59\xfd\xec\xd7\x9b\xb3\xe4\xed\xe5\xaf\x37\xcf\x24\xb3\xe9\xa2\x71\xf7\xbf\x67\xd1\x5c\x32\x07\xd2\x57\x38\x25\x72\x93\x64\x16\x5a\xf4\x4e\xa7\x97\xd5\xc8\xc3\xb7\x88\xfc\x11\xdd\xe7\x49\xf2\xd8\x61\x70\x35\x2d\x2c\x76\xf6\x39\x97\x10\xb8\x2f\x1f\x45\xc2\xac\x43\x4a\x55\x26\xca\xb8\x2b\x45\x41\xa2\x52\x37\xf0\xb6\x1c\x94\xa7\x61\x64\x30\x5a\x0c\x7a\x94\x6b\xe7\x58\x91\x90\x32\x44\x20\x41\xf1\xec\xa1\x65\x5a\xd0\xda\x94\xd6\x57\x5e\x21\x98\x9c\x6a\x74\x8c\x17\x0e\x67\x12\x85\xcf\xab\xe3\x45\x89\x5a\x00\x99\x17\x11\x36\x2a\x19\xe8\xb4\xf6\xaf\xf0\x14\xec\x19\x18\xb9\x73\x96\x59\x85\x4e\x7a\xf3\xb5\xa6\xd0\x79\x9e\x8e\x4b\x3a\x3f\xc9\xe4\x31\x7a\x0f\xa5\xbc\x64\x27\x81\x75\x4a\x2a\x81\xbc\xec\x47\x5e\xeb\x82\xa0\x24\x20\xea\xc5\xc8\x3e\x5c\x9a\x31\x9e\xe0\x00\x02\x70\xcf\xc1\xc7\xee\xe3\x23\x3e\xb1\xf1\x7a\x23\x29\x08\x80\x79\xfc\x70\x8f\x51\x38\x6f\x98\xa5\xdf\xd7\x45\x04\xb2\x45\x9c\x9c\x07\xb3\xe5\xf3\x7b\x36\xac\xf4\xac\xfe\xc7\x77\x8c\x14\x4b\xbe\xbb\x57\x6c\x59\xa7\x4a\x56\xbd\xea\x76\xbb\x5a\xbd\x69\x57\x96\x67\x79\x4f\x44\xd4\x6a\x17\x62\x4b\x4f\x3a\x22\x7e\x35\xed\xe6\x98\x57\x4d\x7c\xd2\xc6\x27\x27\x9e\x7a\xf1\xaf\xa4\x2a\x99\xb2\xd5\x92\x9e\x20\x80\xfd\xa4\xe3\xf1\xb7\x5b\xba\xf9\x3b\xe9\x31\x02\xfc\x36\x36\x4e\xf2\xbc\xcf\x36\x1c\x1d\x8f\xf7\x6d\x0c\x92\x4e\x47\xee\xff\x49\x46\xfc\xa4\xed\xe5\x36\x18\x54\x74\x38\xe8\xf5\xf8\x2e\x08\xf1\x13\xf7\xc1\x17\xe8\x26\x5e\x47\x33\x34\xbf\x98\x87\xe8\x43\x90\x7e\xf6\x49\x57\xfe\xf9\xff\xaf\xd1\x9a\x1e\xfa\xef\x12\x1c\x27\x98\xdc\xe7\xdf\xa4\x5c\x29\x9e\x33\xb1\x43\x65\x18\x20\xe4\x4c\xbb\x74\x46\x82\xf4\xb3\x7e\x3d\xf3\xdd\x0c\x45\x7f\xa5\xd8\xf2\x2d\x95\xd5\x51\x17\x24\x31\xfd\x58\x02\x1e\x90\x2d\x42\xfa\x59\x30\x50\xe0\x38\xd6\xc1\x64\xe0\x42\xed\x9b\x78\x0b\xc0\x53\x27\x8f\xf3\xd7\x6e\x8f\x73\xcd\x85\x53\x94\xcd\xf0\x3c\x44\x67\x41\x18\xde\x04\xb3\xcf\xb9\xdd\x52\x10\xcd\x50\x28\x3f\x3b\xe5\x9a\xca\x1c\x51\xfb\xe6\x9b\x16\x1d\x58\xd9\x2a\xe8\xd4\xfa\x6e\x26\x3b\x68\x21\x20\xb7\x87\xd4\xf1\xf2\x4f\x42\x3b\x57\x20\x4a\x08\x55\xdd\x1b\x1c\xcd\xd9\x27\x00\x72\x17\x40\xed\x5e\x56\xa6\x73\x9c\x2f\x09\x17\x26\x3e\xea\x12\x7c\x87\xde\xa3\xbb\x00\x47\x38\xba\x75\x00\x4c\x45\xac\xc8\x5a\xde\xb3\xdd\xdb\x7f\x11\x10\xd4\x8d\xe2\xaf\xea\xba\x55\x33\x18\x90\xe4\x56\x72\x1e\xcc\x21\x3b\x04\x40\xac\x19\xd0\x41\x4c\x49\x28\x93\xe5\x75\x87\x3f\xe2\x13\x99\xe4\xaf\x91\x74\xc8\x71\xa7\xe7\xb6\x5a\x74\x0a\xc6\x21\xea\x7e\x0d\x92\xc8\xf9\x44\x09\x68\xb0\xc9\xd6\x40\xdf\x66\x08\xcd\xd1\xbc\x11\x84\x61\x4c\x08\x9a\x37\xe6\x28\x98\x87\x38\x42\x8d\x9b\xfb\xc6\x0f\x0f\xac\xc9\xe0\x26\x75\xd8\x1f\xcc\xcb\xdc\x49\x3a\x04\x80\xec\x2e\xfd\x04\x20\xe3\x96\x31\x33\xc7\x89\x9f\x66\xc6\x94\xca\xf8\x3a\x88\x1b\xdc\x5a\x85\xae\x88\xd2\x78\xe5\x1a\x02\x66\xc3\x76\x87\xe2\x35\x71\xe8\x8d\x50\x3e\x9e\x70\xf3\xa5\x17\x82\x36\xc7\xdb\x67\x43\x59\x98\x8a\x08\x3c\xb0\x46\x25\x02\xa4\xec\x9e\x14\xa0\xa6\x59\xc8\xb9\xdb\x46\x62\x5b\x79\x30\xf8\xc9\xae\xa4\x7a\x7e\xe4\x4e\x0e\x02\xd8\xb5\xac\xbc\x15\xc4\xb0\xb8\x61\xec\x25\x42\x48\x6f\xb5\x9a\xa2\xdb\x17\xda\x84\xa3\xc2\x3f\x37\xcf\x9b\x70\x3e\x6d\xc5\x25\x0b\x22\xde\xdb\x32\x43\xd8\x97\x62\xc5\x6c\x14\x5b\x77\xbb\xea\xeb\x24\x9b\x2e\xec\x3e\x59\xe8\x60\x26\x5e\x98\xb5\x6a\x72\xe8\xa1\xfe\x2d\xdf\xde\xd4\xe6\xa5\x17\x8b\x6f\x74\x1b\x3f\xea\x1d\xf6\xbe\x6f\x1b\xe7\x46\x4f\x42\x06\x7f\x1d\xcf\x91\x78\x0d\x60\x61\x6c\x2d\xdb\xf5\xa0\x0f\xc6\x9b\xa0\x74\xd5\x45\x6e\xbe\x77\x53\x7c\x8c\xc8\xb5\xb4\x3c\x20\xb3\xfa\xd9\xf1\xe8\x12\x26\x13\x51\x4b\x64\x22\x67\xab\x78\x7b\x24\x60\x9c\xb6\x5a\xb8\xd5\x72\x52\xed\x89\x03\x5f\x25\xec\xc9\x9d\x3d\x84\x5d\x9f\xbd\x7d\x71\x7e\x7d\xf1\xe6\xc5\xf9\x9f\xa7\x7b\xbe\x9f\x74\xdf\xfc\xf2\xea\x15\xb7\xc3\xff\x7f\xec\xbd\x6b\x93\x24\xb9\x76\x18\x16\x7e\x7f\xf3\xfb\x4d\x3f\xaa\x93\xcb\x62\xe6\x16\xaa\x6e\xbe\xea\x95\xd5\xe8\xd6\x4c\xcf\xcc\xdd\xe1\xce\x8b\xd3\x33\xbb\xf7\xaa\xb6\x38\x9b\x5d\x85\xee\x02\xa7\x3a\xb3\x99\x89\x9a\x99\xbe\x5d\x79\x4d\xcb\x14\x6d\x4a\x94\x4c\xc9\x34\x45\xdb\xb4\x25\xdb\x94\x49\x3a\x14\x0e\xc9\xc1\xf0\x8b\x94\x1d\xb1\xfb\x03\xfc\x1f\xee\x2f\x71\xe0\x99\x40\x3e\xba\x7b\x66\x56\x22\x65\x32\x66\xa2\x1a\x09\x1c\x1c\x1c\x1c\x1c\x00\x07\xc0\xc1\x01\x4d\xe9\x76\xaf\x87\xfe\xf2\xb3\x87\x2f\xee\x1f\x3f\xbb\x73\x74\xbf\xcc\xe3\x14\x05\x08\xc6\xc1\x47\xad\xca\xa5\x01\xda\x1d\x42\x32\xba\x04\x37\xdc\x1f\xdc\x62\x63\xe6\xf4\x4c\xce\x18\x27\x2a\xa4\x6c\xe7\xa8\x54\x66\x45\x4e\x62\x82\x97\x1d\x92\x2a\x47\x0a\xaa\xbf\xcc\xd1\xc1\xc1\x81\x37\xea\xfa\xc3\x21\xa0\xc1\x09\x0b\xf9\xc3\x61\x17\x2d\x64\x3e\xc3\x05\x83\xca\x69\x33\xa0\xb9\xbb\x70\xf6\xf7\xbd\xd1\x4e\x7c\x7a\xf4\x73\xb2\xe3\x1f\x3e\x5d\xe4\xb0\xc3\x47\xe3\x38\x4e\x5e\x6f\xe9\x94\x47\x6d\xc6\xe9\x9a\x79\x8b\xdc\xa8\x50\x79\x91\xbc\xc0\xf9\xc3\x84\x1d\xd2\x97\xbb\x8f\xf2\xa0\xb2\x2b\x70\x16\x38\xbf\x9b\x6e\x56\x25\x80\xba\xa0\xab\x41\x94\xf7\x63\xcd\x4d\x9a\x75\x9c\x1b\x4d\x63\x3b\xe2\x7d\x55\x83\x1e\xf3\x16\xfb\xa1\x17\xa9\x6b\xcb\x3a\x11\xa6\xad\xa3\xba\x7f\xac\x81\x3c\x4c\xde\xe0\x1c\x9f\x6c\x34\x2a\xca\x9b\xa8\x3a\x1c\x89\x37\x78\xd9\x56\xe5\x13\x0a\x72\x0f\x9f\xb7\xd6\x98\x01\x1c\x93\x0c\xbf\x46\x64\x9d\xa5\xdb\xb3\x75\x09\x5a\x5e\x6a\xd6\xca\xd3\xce\xc1\x5a\xc8\x67\x28\x9f\xbe\xa9\xf2\xb0\x4a\xfd\xc9\x59\x71\x86\xa4\x89\xa0\x69\xa4\x24\x7d\x81\xa8\x62\xcf\x90\xb4\x05\xbc\x0e\x90\x15\xfc\xe0\x8c\x0a\xa5\x84\xd8\xb3\x15\xc8\x8f\x05\x32\x87\xf2\xff\x7a\xa0\x13\x06\xf4\xe0\xec\x59\xbc\x41\x84\xe8\x75\x10\xb7\xe9\x21\xb4\xab\x34\x3a\xbb\x9d\x74\x35\xd2\x94\xca\x0a\xbd\x3d\xbe\x93\x6b\xf1\x49\xfa\x84\x25\x52\x53\x45\x8c\x72\x6f\x82\xe3\xf8\xca\x71\xa6\x02\xde\x51\xab\xff\xd3\x33\xee\x3a\xa1\xde\x80\xb6\xba\xe7\x5b\x23\x41\xdc\xb2\x12\x55\xe5\x77\xee\x64\xd5\x22\x29\x6a\xc3\xa1\x84\x17\x77\xf3\x04\x96\xc8\xe4\x54\x09\xb5\xe2\x44\x46\xd2\x3c\xba\xd0\x84\xa4\x8d\x98\x93\xf7\x24\xe6\xe4\x56\xc4\x9c\x34\x11\x53\x1f\x2c\x54\xaf\x32\xc7\x83\x93\xb3\xa2\x6a\x77\x7c\x65\x8e\x28\x38\xbf\x7f\x7e\x41\x2e\x6d\xe1\xf3\xfa\xc4\xb8\xda\x1f\x89\x38\xcd\x3d\x02\x65\xc4\x4b\xe3\x7e\x39\xdf\x45\xac\x15\xdc\x15\xe2\xde\x72\x2b\xdd\x69\xe4\x61\x1b\xf0\x7b\x31\xb6\x05\xc9\x6d\xb8\xdd\x96\xd5\x6c\x02\x3e\x62\xeb\xe2\x59\xb4\x26\xd4\xd8\x65\x8e\x31\xef\xcb\xb6\xc3\x5b\xf1\x2b\xaa\xd0\xc1\xcb\xd4\x67\x1f\x35\xc1\x7e\x38\x25\xb5\x81\xad\xad\xf1\x38\x35\x6a\xf0\xac\x91\x51\x1b\xb8\xde\x9b\x94\xd6\x91\xae\x8d\xa4\x6b\x86\xbf\x9b\x6b\xa1\xe8\xad\xd5\xa4\x36\xb6\x7d\x0c\x53\x6f\x49\x8d\x2a\xd3\x10\x35\x7e\x75\xba\x8d\x8e\xd3\xb3\xc3\x1a\x65\x87\xd7\x69\x1a\x91\x17\xb9\x06\xfe\x2f\xe2\x0c\xc7\x09\x79\x7a\x7a\x5a\x37\x4b\xab\xe3\x30\xa0\xe9\x7a\xcd\xd4\x3a\xb1\x50\x38\xb3\xab\x33\x44\xe8\xba\xab\x7a\xc2\xcb\x6e\x55\x1c\xf6\xc3\xd1\x74\x3c\xf2\xdd\x70\x2a\x36\xa9\xd0\x3b\xc2\x57\xec\x26\xb1\xfb\xfb\xbe\xbc\x1f\x8b\xde\x11\x76\x00\x4c\x71\xaa\xa5\x11\x7a\x47\x20\x62\xc7\xc9\xdb\x16\x76\xe9\xa5\x0e\x23\x5b\x96\x3b\x29\xcb\x75\x0e\x0e\xfc\x11\x43\x5d\xc1\xa1\x97\xd2\x85\x25\xc9\xa0\x24\x19\x32\x0a\xbb\x0a\xab\x49\x8a\x1c\x53\x4d\x8d\x2b\xe8\x9a\x15\xaa\x80\x57\x4a\xad\x9a\xd0\xd1\x42\x15\x22\x51\x75\x5a\xb9\xc6\x1a\x73\xfc\x2c\x59\xa1\xe5\xd7\x5a\x2a\x4c\xab\xca\x80\xba\xc7\x15\x8c\x87\x13\x77\x3a\x0a\x26\xa1\xc9\xb0\xa9\xd2\xc4\xf7\xdd\xc3\xd0\x9f\x86\xd3\xd1\xd8\x9f\x4c\x7e\x01\x45\xc8\xac\x94\x89\xd9\xac\x9c\xd4\x07\xbd\x2a\x47\xa7\xdd\xb2\xdc\xc2\x38\x1a\xa1\xeb\x14\xe8\xea\xcd\x2f\x37\xbd\xcc\xeb\x3a\x4c\x30\x8c\x14\xa2\x56\x14\xf2\xb8\x8b\xae\x70\x6c\x05\xae\x03\xd3\xe1\x40\xcc\xa5\x35\xd5\xc6\x14\x12\x4d\xcd\x11\x2c\x2f\xaa\x0b\xb3\xac\x00\x53\x77\xfa\x91\xab\x6f\x6e\x90\x03\xc9\xe0\xf1\x9d\x1f\xbc\xba\xfb\xf2\xc1\x83\xfb\xcf\xd9\x1d\xf0\x86\x85\x77\x10\x4e\xe9\x12\x18\xdb\x63\xdf\x1f\x39\x20\x85\xd8\xa6\x2b\x4d\x07\x24\x10\xdb\x93\x30\x18\x3b\x20\x86\xd8\x0e\x47\x34\x6e\x0d\xb1\x3d\xf4\x3c\x07\x6c\xc4\x9a\x1d\x2c\x69\xda\x64\x14\x38\x60\x4b\x71\x78\xde\x88\xae\xe3\xab\xc5\xca\x26\x9f\x0e\x4b\xe2\x1a\x4e\xb2\xf4\xd3\xfe\x75\x9c\x73\x7b\x7e\xb6\x27\x88\x1a\x2f\xf0\x43\xd2\x64\xc5\x04\x31\x8f\xe5\xaf\x99\x8b\x26\xe6\x4f\xa3\xcb\x0f\x19\x50\xd7\x34\x48\x7c\x92\xc3\xab\x82\x7f\x88\x1b\xc7\xae\xf6\xf5\x03\xe3\x4b\xbb\x9e\x0a\x93\x9b\x2c\x68\x8d\xfb\xbf\xdb\xaa\x1d\x3e\x87\x39\x8f\xb3\xd7\x28\xd3\x76\xa3\x13\xf1\x0c\x11\x5c\x2b\x93\x52\xee\xa1\x70\x1d\x73\xab\xda\xb9\x0b\x36\xfa\xc6\xc2\x67\x77\x9e\x1b\x11\x5f\x3e\xbc\xf7\xe2\x33\x13\xe4\xe9\xbd\xfb\x0b\x75\x43\x7e\x8d\x09\xca\x2f\xc4\x3b\x4a\xd7\x97\x52\xdb\x90\xe0\x65\x55\xa3\x65\x89\x4d\xfb\x17\xaa\x5c\x9c\x1f\x6d\x50\x9c\xe1\xe4\xac\xbc\xc3\x71\x8e\xce\xd3\xec\x92\xc6\x27\xdb\x8b\x9f\x57\x9b\x5c\xb9\xb9\xc9\xd5\x04\xfc\x2c\xcd\x31\x95\x87\xf2\xda\x5d\xba\x69\x7e\x8a\x9b\xbd\x86\xce\x13\x32\x66\x81\xd0\x00\x43\x13\x38\x0c\xdb\x06\xe2\x7b\x1a\x83\x23\x9c\x2d\xb7\x9b\x38\x7b\x84\x73\x52\x1e\x1c\x1e\xa5\x59\x86\x96\xc2\xad\xfb\x23\xb6\xd9\x6c\x97\xe8\xe5\xa9\x68\xcd\x5d\x4d\x83\x83\x1a\xdd\x25\x4d\x8e\xc8\xf6\xe2\x45\x7c\x72\x4c\xd2\x8b\x9c\xcf\xeb\xea\x3d\x2a\xed\x8d\x1d\x79\x81\x42\x0a\xc9\xe0\xf4\x0c\xa2\xf2\x8e\xb5\x8a\x3e\xa1\xd1\x27\xb5\xe8\x06\xbf\x79\x4e\xd4\x80\xd2\x6d\xc0\x57\x8b\x33\x76\x80\x52\x73\x2c\x73\x2a\xc0\xb4\x3e\x5f\x1a\x82\xd7\x54\x2b\x53\x34\x2b\x75\xab\x24\x9a\x35\xac\x24\x5e\x57\xcf\x7a\x21\x6e\x6b\x09\x2d\x29\xb7\xa9\xb9\x99\xa5\x30\xae\x24\xe8\xb6\x49\x14\x45\x22\x06\x46\xed\xbe\x42\x9b\x0c\x9b\x72\x01\x08\x93\x94\x8e\x31\x62\x56\x27\x78\x23\x51\x9c\xf5\xf1\xdd\xce\xf3\xf8\x1d\x17\xe0\x83\x52\x20\x19\xbe\xd2\xad\xf3\x17\x18\xbd\xbd\x48\x33\x7d\xaa\x2f\x07\x55\x6e\x32\x7e\xd9\x2f\xc7\x5c\x35\xd9\x1f\x40\xb7\xdb\x15\x26\xac\x1c\x6f\x5b\xdf\x11\xb7\x20\x1b\x68\x95\x07\x29\xa8\xbc\xf8\xdc\x6b\x9a\x0b\x74\x67\x2e\xb9\xca\x2d\x49\xc1\x07\xb5\x49\xe9\xb0\x16\x13\xe1\xe2\x14\x6f\x36\xb2\xb6\xcf\xd3\xb7\x79\xd5\x4e\x81\xb3\x4c\x9c\x30\x5f\x29\x1b\x04\xc4\xdc\x66\x36\x4c\x05\xf2\xc5\xfa\x92\x05\xd5\xb7\x88\x39\xc6\xd2\xa5\x88\x29\x23\x0e\x3b\xbc\xd1\x0e\x04\xdf\x67\x52\xfb\xd3\x32\x8c\x89\x57\x07\xea\xb6\xfa\xba\x1c\xb7\x32\x2f\x83\x6e\xfd\x98\xbb\x91\x70\x71\xd2\xdd\x24\xdb\xf2\xe8\xb4\x12\x0d\x65\x4f\xd5\xdb\xf5\xc0\xd5\x2e\x62\xd1\x4e\xb7\x8f\x9c\x86\x3b\x16\x7a\x16\xf6\x1e\x44\xd6\x83\x3d\x2d\x85\xbd\x96\xe7\x0c\x54\xe5\xc5\x13\x77\x29\x74\x4b\x13\x14\xca\xb5\x7d\xa2\xb0\x67\xba\x9c\x64\xfb\x64\x96\xf5\x7a\x4e\xad\xb0\x7d\xd2\x2b\x5b\x5f\x9d\x09\xdf\xe4\xda\x88\x1d\xa7\xc8\x6b\xfd\xca\xc4\xe2\xc6\x5c\xcf\xc8\xe5\x80\x76\x24\x94\xac\x3e\x30\xf3\x16\x6f\x56\x4f\xb6\xe7\x27\x28\x3b\xac\x0a\x7c\x6d\xd8\xa3\x5c\x12\x2b\x5c\x56\x3b\x65\x96\x60\xd4\xbf\x3e\xf8\xf4\x52\x75\xad\x90\x45\xf7\xfb\x20\x95\x37\x14\x59\x8f\x51\x88\xd8\x57\xbf\x2f\x0a\xb9\x91\x16\x7e\xd7\xbd\x53\x7d\x61\x94\x35\x10\x3a\x20\x33\xd4\xef\xd7\x1b\xe8\xa0\xa9\x81\x4c\x80\x5a\x05\x3c\x83\x39\xe9\x85\x2d\xa7\x2a\x0e\xa5\xd7\xa5\xd7\x73\xb8\xa4\xef\x37\x89\x74\x65\x88\xd6\x8b\xed\x53\x9a\x5d\x93\x20\x92\xe1\xf3\x63\x76\x6e\x2c\x0d\x1c\xf8\xa0\x62\x7a\x8a\xe1\x4c\x2d\x7d\xc0\xf0\x51\xa8\x02\xc3\x38\x5b\xc2\x08\x2d\xda\x04\x12\x4e\x66\x10\xf3\xdc\xd5\xdc\x23\x0b\x31\x88\xf1\x8c\x38\xe1\x19\xdf\x01\xa4\x6e\x63\x5e\x56\xd2\x2e\x01\xa1\x69\xa9\xac\xd9\x65\x0f\xa6\x8e\xa1\xbc\x9b\xf0\x3c\x52\x43\xa8\x0d\x70\x85\xec\x9b\xe6\x18\xa7\xbc\x8f\xe1\xfc\x39\x3a\xdd\xa4\x6f\xef\x27\xf1\xc9\x06\xa9\x8b\x17\xaf\x32\x16\xcb\xc6\x38\x4d\x17\x3d\x40\xce\x77\x34\x74\x68\xfa\x2d\x32\x14\xd9\x56\x25\x5a\x1d\x01\x67\x07\x03\xef\xd3\x5a\xb9\x8a\xf2\xeb\x35\xea\x06\xbc\xf2\x18\xd9\x76\xa0\x74\x0e\x17\x93\xe5\x1a\xad\x1e\xeb\xb0\x36\x33\x0f\x68\x4e\xb9\xe2\x7d\x69\xcf\x9d\x5d\x43\xc2\x41\x5d\x80\x6f\xa4\x19\xc1\x3d\x4f\x4e\xb9\x86\x75\x48\x63\x86\x86\xc6\x70\x68\xf3\xf7\x60\xb5\x2d\xda\x71\xf4\x7a\x0e\x63\x74\xb2\xbd\xe0\x95\xa4\xcb\xbe\x03\xcf\x75\x4b\x17\x72\x52\x81\x61\x4a\x55\x55\x80\xaa\x2a\xd5\xad\x06\x55\x85\xb2\xdb\x45\xf5\x01\xb6\xaa\xeb\x59\xcb\x34\xb9\x20\x97\xec\xde\x97\x1c\xcb\x2b\x19\x0f\xa0\xef\x05\x63\xb9\x77\x56\xc9\xbf\xf7\x1e\x13\x4c\xa1\x77\x84\xab\x52\x68\xf7\x84\x8e\x74\x50\x46\x1d\xea\x1d\xe7\x51\x9c\x9d\x21\xee\xfd\x24\xd2\xe3\x8f\xcf\xe3\xcd\x46\x24\x38\x45\x1d\x58\xe9\x13\xb6\x0b\xe2\x81\x9e\xfc\x7d\xc4\xbc\x34\xe4\x2f\xd2\xe7\xe8\x3c\x7d\x83\x1c\x6d\xd4\xd3\x7a\x28\x40\xa0\x36\x18\xd7\x95\xec\x26\xe5\x84\x8d\xc1\x58\xd3\x19\x34\x87\x28\x26\x29\x47\xcc\x00\xe6\x09\x7a\xfb\x28\xbe\x4c\xb7\xc4\xa0\x04\x3b\xb3\x1a\xfc\x9d\x8b\x8b\xcd\x65\x33\x78\x36\xd8\xf0\x48\x50\xe7\xde\x9d\xd5\x2f\x6e\x73\xa2\x74\x75\x76\xdd\x60\xb0\x4c\xb7\x09\xe1\x1c\x58\x39\x45\x71\x53\x06\xed\xc9\x82\xdb\x6b\x68\x39\xc4\xbc\xaf\xe5\xfd\x7e\xe7\xc0\x9d\x39\x4a\x5d\x66\x5c\x95\x13\x73\x39\x07\xcb\x9b\xcf\xa6\x56\x63\x4c\xf5\x6d\x73\x72\xe6\x38\x6a\x66\x64\x93\x90\x5e\x92\x39\xc7\x03\x5d\x1f\x10\x23\xe8\x75\x93\x12\x06\xae\x12\x31\x5d\xee\xde\x4f\x67\x05\x19\x9c\xab\x07\x1e\xd4\xdd\xdc\xb4\x61\x36\xf6\x66\xe9\x01\x74\x67\x69\xbf\xcf\x07\xc4\x75\x75\xd8\x49\x99\x88\xed\xad\x77\xbb\xbd\x75\x69\x6c\xd2\xed\xae\x69\xea\x8b\x0c\x9f\x9f\xa3\x95\xd0\x7d\x9d\x7d\x88\x9c\x65\x9a\x10\x9c\x6c\xe5\x4a\x69\x03\xe7\xeb\x05\x6f\x18\x23\x7b\x4a\x9b\xa8\x56\x58\xbf\x9f\x3a\x60\x33\xd8\x26\xdc\xeb\xd7\x5a\x3a\x9a\x5a\xd6\xb5\x2d\x4a\xd5\xf2\x00\xa6\xdd\xee\x72\x3f\xed\x6d\xe4\x72\xa8\x52\xfc\x16\x6e\xe6\x1b\x55\xd7\x45\x03\xcd\x60\xa5\xf7\x15\xc1\xf2\xef\x23\x42\x45\x1f\x27\x88\x83\xe5\x8e\xbd\x31\xfa\xab\x03\x5e\xc1\x95\xc4\xbb\xd1\x3d\xe5\x9f\xce\x4e\xa1\xdb\x28\x10\x7b\x0d\xcb\xb7\xbe\x77\xa8\x5b\x96\xad\xcb\x45\x6c\x45\x25\xe9\xbd\x72\xa2\x2a\xa4\x81\xa8\x25\x93\xe0\xc3\x19\x95\x07\xd3\x33\xcf\xab\x19\xea\xf5\x2a\x03\xbf\xb1\xee\x6b\x10\x2c\xb0\xe7\x3a\xb3\x33\x65\x46\x7f\xa6\x06\x1e\x76\xef\x9a\x3b\xea\x61\x06\x80\x51\xd9\x24\xbd\x1c\x24\x9c\x97\x79\x74\x56\x38\x20\xef\x41\x99\x8f\xb6\x35\xcb\x34\x18\x0c\xce\x78\x37\xbe\x28\xd9\xea\x81\x73\xb8\x9a\x5f\x2c\x66\x94\x9d\xe7\xdd\xae\x4d\xbb\x13\x8f\xe2\xb0\x6f\xa0\x6a\xda\x57\x7d\x0f\x9c\xc0\x2d\x17\xb4\x37\x54\xa2\xcb\x9a\x29\xbd\xeb\x04\x9c\x9b\x56\xfb\x1b\x8a\x8a\xfb\xbd\xc4\xa7\x36\xfd\x62\xaf\x71\xb3\x57\xdd\x1f\x64\xe9\xb9\xbd\x99\xbf\x59\x80\x93\x3e\x02\xe7\x7d\x04\x10\xad\x3d\x38\xef\x43\x04\x1a\x28\x02\x27\x32\xe1\xc4\xb9\x7a\xd3\xef\xcf\xcc\xe2\xe3\x77\xf6\x1b\xf6\xda\x1c\x97\xb6\x33\x44\x44\x57\xa0\x8c\x31\x44\x92\x8a\x1a\xd2\x84\xcd\x29\x0a\x53\x7b\xdb\xe8\x4a\xdb\x6a\x4e\x16\xfb\xa8\xdb\xdd\xcc\xc9\x82\xae\x79\xd9\x90\x40\x23\xe5\x52\xef\x08\xbe\xea\x9f\x72\xbe\x1c\x35\x8f\x8c\x3c\xb8\x4f\xfa\x6a\xf5\x22\x35\x7d\x6d\x21\x70\xed\x4a\x40\x5b\x2c\xed\x9b\x5a\x6e\x45\x20\xeb\x72\xdb\xcb\x9d\xbe\xba\x54\xcc\xb5\x7e\x49\x1c\x45\xae\x0f\xa6\xaa\x54\x4e\x42\xd3\x60\x6a\x28\xd7\x3f\xec\xbd\x32\xa6\xd5\xbe\xe7\x50\xc5\x3a\xab\xcd\x96\x88\x6d\x79\xd7\x7b\x48\x5d\x33\xa3\xc5\x12\x6d\x9f\x44\x33\xd5\x73\x4a\xa7\x78\xf5\x7c\x7c\xf4\xc5\x7d\x0f\x50\x05\x31\x86\xd9\x3c\x59\xcc\x6a\x60\xf0\xfd\x79\x37\xe3\x63\x76\x39\xc6\x6f\xae\x47\xd2\xf7\x00\xee\xe5\x7d\xaa\x9f\xd2\x4e\xb2\xe9\xf7\xa9\xb2\x19\x77\xbb\x31\xbf\xd1\x7d\x90\xf6\xd6\xe5\x7b\x93\x08\xc6\x03\xd9\x77\xcb\x09\x03\xd1\x9c\x95\x35\x67\x8e\x88\xbd\xe9\xf7\x41\x09\xcf\x5c\x78\x6d\x7a\x3d\x80\xc4\xb8\xc0\x5d\x58\xa5\x3d\x0f\xc4\xe7\x54\x1f\x88\x6a\xb8\x0b\xfe\xf4\x7d\x35\x9a\xf1\xab\xd7\x4b\x16\x9a\x17\x13\xad\x54\x40\xe6\x69\xbf\x2f\x86\x84\x8d\xc6\x8a\xd2\x5f\x72\xdf\x9b\x11\x4a\x34\xe9\xf7\x1d\x44\x3b\x0a\xa3\xa5\x07\x37\x3a\x4f\xd3\xe4\x21\xbb\x86\x74\xff\x1c\x13\x82\x84\xfb\x26\x0a\xed\x80\x4d\x0f\xb2\x6c\x9c\x70\x35\x27\x69\xe3\x31\x65\x6a\xe3\x42\x78\xb6\xac\x6c\x1f\xa4\x09\xed\xed\x46\x21\x4b\xa7\x28\x48\x16\x27\xf9\x26\x26\xa8\x54\x34\x5e\xa4\xa5\x7f\x09\x6e\x80\x2e\x05\x36\xaf\xce\x9b\x48\x5d\x88\xcb\x0f\xe9\x72\x5a\xe0\x52\x18\xf8\xb5\xcc\xc8\xb2\x8a\x72\xe0\x61\xf7\xf0\x1f\xa4\x42\xa7\x91\xb7\x3f\x10\xc0\x10\x89\x45\x4b\x85\x72\xb1\x20\x54\x93\xf8\xcc\x21\xfd\xbe\xb8\x15\xd2\xf3\xea\xbd\xa5\x96\x19\xf7\x3c\x23\x3b\xee\xf5\xa4\xc1\xf5\x29\xce\x72\x12\x11\xb0\x89\x73\x12\x61\x76\xef\x56\xdb\xbd\x13\xf7\xf5\x93\xed\x66\xb3\x07\xc5\x80\xc5\xbc\x1a\xb1\x8b\xb8\x62\xee\xba\xc8\xd0\x1b\x0a\x4e\xbb\xa2\x18\xac\xe4\x81\x1a\x82\xae\x23\xfb\x33\x1b\x53\x67\xa8\x77\xe3\x4a\x87\xf0\xd2\xbf\xc4\x2b\xb2\x76\xf4\x22\xe1\x9e\x5b\x68\x85\x29\xd2\xe4\x0e\x2c\xdf\x2a\x70\x66\x7b\x65\xa6\x7e\x1f\x2d\xba\x5d\x44\x07\x5f\x6d\x5f\xba\xb6\x0c\xe1\xc6\xc0\x11\xda\x77\x0f\xdd\x08\x31\x27\x6f\xef\x51\x48\xaf\xc7\x0a\xd1\xab\xf9\x3e\xa5\xb1\x95\xfa\x63\x7e\x06\xa8\x5f\x56\x2f\xcf\xca\xdc\x26\x2f\x2f\xe2\xd4\x50\x9f\x93\xf4\x78\xda\x6d\xa8\x04\xc8\xd7\x99\x2a\x49\x95\x2b\xe8\x12\x99\xbc\xb6\xdf\xef\x03\xcf\x91\xfb\x0e\xc6\xb1\x1d\x27\xf7\xce\x66\x23\x29\xbe\x9e\x60\x6d\x40\xaf\x10\x8c\xaa\x04\xa3\x9b\xa8\x42\x8c\xaa\x46\xa2\xe2\xd5\x8a\xd3\xa3\x5b\x87\xd3\x05\xc4\x72\xa0\xe2\x0d\x9f\xfa\x12\x35\x9f\x52\x1c\x40\x94\xdb\x51\xbb\x36\x66\xd8\x08\x1e\x5c\x11\x16\xd5\x67\x0f\x60\xd1\xd0\x3e\xed\xa3\x25\xc1\x85\xd3\x8e\xe3\xa1\xb8\x65\xa9\xb0\x1c\x40\xc4\x47\x42\xf6\x6c\x16\x8d\xe9\x41\x24\x06\xb9\x6b\x31\xdd\x13\xd7\x27\x9b\x30\x09\xb2\xc4\x77\x4f\xe2\x33\xa8\x14\xb4\x1f\x54\x8b\xef\xb7\x17\x4f\x4b\x15\xd9\xcb\x2d\x9f\x8c\x2d\x29\x05\x67\x09\x73\xa5\x55\x98\x91\x0d\x72\x2c\xae\xd9\x54\x45\x4d\x8f\x2b\x5d\x4b\x30\xbf\x11\x05\x98\x84\xc1\xf8\xbb\x30\x86\xa0\x63\x2d\x24\x75\xbd\xba\x6e\x12\xc1\xcd\x1f\x72\x69\xea\x90\x4a\x53\x87\x84\x99\x3a\xf8\xce\xac\x09\x8b\xa0\xeb\x34\x43\xe8\x47\xc8\xe6\x67\x2e\x86\xad\x13\x9f\x24\x63\x28\x6d\xec\xd7\x75\xd3\x07\xb8\xe7\x09\x9e\x69\x37\x0b\x94\x3a\x7a\x7e\x82\x13\xb4\x52\x46\x0a\xaf\x90\x61\x36\xa2\xa2\x95\xd3\x81\x97\x38\x21\x81\xcf\xdc\x3f\xd8\xc1\xa7\xc8\x29\x9f\x11\xdb\xed\xf2\xf6\xf3\xfe\xb4\x6a\x55\x90\xd6\xac\x0a\xd2\x9a\x55\x41\x65\x74\x42\xcc\xd9\x14\x57\x07\x85\x5e\x4c\x40\x26\xfa\xad\x50\xb8\x10\x77\x5b\x50\x73\x33\x12\x93\x78\x1e\x7c\x8a\x7a\xee\x02\x60\xe8\xbb\xd3\xb1\x37\xf4\xba\x44\xf4\xdc\x79\x05\xc8\x5b\x00\x0e\xe2\x77\xc9\xa1\xc9\xa8\x39\x5a\x44\xf8\x90\xb9\x67\xcc\xd9\x4c\xfc\x80\xdd\x2e\x58\xa1\x67\x29\x4e\x88\x63\x63\x3a\x27\x03\x72\x70\xe0\xfb\xd7\xe1\xd0\x9d\x76\xd5\x13\xa5\x8e\xe3\x44\x78\x21\x7d\x3c\x18\xee\x2a\x38\x91\x90\xcc\x53\xed\xc6\x07\x93\x1a\x7e\xe3\x03\x98\x29\x2c\xc4\x53\xca\xf7\x26\xea\xe5\x42\x32\xf7\x16\xa0\xc6\x30\xc1\x2e\x7f\x87\x76\x26\x5a\xd6\x6c\x02\xef\xfe\xbe\xef\xcb\x3d\x36\x3d\x6f\x3b\x21\x86\xdb\xb2\x1b\x30\x33\x25\x87\x4e\xdb\x75\x8f\x33\x65\x59\x94\xe7\xc5\x3a\xce\xab\x80\x9e\x3f\x9c\xf8\xca\xde\x5f\xcf\xc1\x2d\xc2\xdb\x71\x7a\x0b\x6e\xa6\xdd\x0e\xe1\x2f\x68\x89\x47\xdc\x27\x9b\x06\x16\x7a\xd3\x30\x70\x83\xe6\x22\x95\xb8\x5c\x2b\xa7\x72\x56\xf9\x0e\xa4\x48\xc9\x7b\x81\xf3\x23\x01\xa1\xfb\x0e\x95\x25\x34\x11\x2b\x35\xd6\x8f\xa3\xb4\x24\xe1\x9a\xbe\xa3\x60\x98\x5e\xab\x5f\xde\x40\x6d\xb7\x37\x8c\x96\xd8\xa4\xf1\x8a\x1b\x2f\x68\x36\x10\x31\x0c\x3e\xa5\x53\xab\xf4\x9b\xa7\x65\x8b\xe9\x68\x40\x4a\x7f\x79\x22\x92\xf6\x81\xd2\x55\x9e\x88\xf4\xb5\x21\x41\xe2\x62\xb3\x9c\xac\x24\xb3\xda\xaa\xd5\xdb\x01\x9a\x5d\x2c\x33\xd7\xb5\x49\xd5\x35\xb8\x31\xe2\xb2\x3c\xcc\x24\xb3\xac\x49\x63\xc1\xf5\xce\x6b\x90\xd2\x54\x70\x63\x69\xda\xbb\x9d\x4e\x43\xdf\x57\x65\x56\xd3\xe8\xf0\x53\x1a\xd0\x68\xcd\x00\x69\x71\xb2\x02\xb2\x85\x2f\xb8\xb8\x4b\x6f\x32\x25\x6d\xd9\xb5\xb4\x65\xd7\xd3\xb6\xc3\x74\x70\x68\xa0\x2c\x6b\xa6\x8c\x16\x46\x35\x3a\x45\xd1\x8b\x54\x72\x19\x60\x75\x05\xbe\x26\xde\x92\xff\x59\x5d\xae\x7b\xb0\x5d\x9c\x49\xd9\xf1\xb2\xa6\xd1\xf6\xe6\x8e\x90\x39\xbd\xeb\xd0\x83\xac\x0b\xfb\x82\x38\x90\xed\xe4\x38\xed\x44\x74\x32\x66\xfe\x21\x01\xee\x76\x6d\x0a\x25\xc6\xc0\x80\x82\x31\xa6\x35\xf1\x33\x13\x6e\x3b\xd8\x6e\x99\x64\x0a\x3e\xb5\x6d\xf4\x33\x50\x9b\x63\x9d\x6e\xd7\x97\x5b\x3a\xe5\xb8\xdc\xf7\x9c\xf2\x81\x97\x86\xa6\x67\xaf\x14\x7b\x00\x3b\x40\x9e\x56\xf2\xe1\x09\x95\x47\x03\xdc\x3c\x4f\xf9\xba\x94\x93\x3f\x86\x06\x7c\x9f\xf4\xbd\x19\xa6\x8b\xff\x7e\x1f\x9b\xda\x00\xea\x91\x9e\xd0\x6c\xca\xb1\xa0\x47\x25\xae\x54\x25\x32\xe8\x32\x1b\x88\x5e\x2f\xab\x66\xce\x00\x16\x7e\x55\xb5\x0d\x87\x99\x41\x6e\x93\x06\x82\x9d\x59\x9d\x1f\x3a\xc9\xd7\x73\xc6\x80\x14\x3c\x12\xee\x4c\xaa\x0d\x61\xb6\xc3\x07\x30\xd2\x9d\xe1\xfd\x0a\x33\x67\xbd\x5e\x8d\x8b\x75\x1e\x92\x0a\x17\x91\xd1\x26\x44\x6d\xad\x95\x9e\xe1\x4d\x94\x1f\xcc\x59\xf4\x91\xc2\xa6\xcc\x4a\x34\x0d\x42\xac\x17\x8c\x89\x5b\xc4\xb5\x0c\x5b\xa2\x55\x32\x74\xb1\x11\x46\x77\xb9\x1c\xcc\x98\x76\x8d\x4f\xed\x8c\x9d\xc8\x5f\x43\xee\x9e\x50\xc1\xb5\x59\xed\x03\xfb\x4c\x53\x19\xa4\xa5\x0c\x72\xbd\xec\x09\xfc\xb4\xfd\xd4\x46\x83\xe1\x60\xc2\x9c\x85\x4d\x2e\xb1\x66\x05\xa8\xd7\x2b\xad\x59\x3e\xb6\xb9\x6e\x59\xcf\x8f\xa9\x51\x29\xe6\x3d\xde\xa6\xa5\x15\x19\xed\x62\xca\x24\x4f\xf7\x19\xd4\x09\x3f\x2d\x87\x4b\x91\xf4\xa9\xbf\xaf\xc5\x89\x7b\xdc\x27\x97\x44\x1c\x30\xa9\xbd\xe3\xe0\x53\x34\xa3\x88\x0f\x74\xb4\xa5\x25\x58\x73\xee\x03\x18\x7e\x2a\xba\x65\xf3\xd2\xab\x96\x19\xb8\xac\xd6\xfa\xfb\x37\xd5\x3c\x34\x5d\x73\x82\xbd\x62\x6a\x82\x56\x06\x2a\x1a\x87\xdc\x19\x66\x2b\xaf\xca\x28\x81\x01\xe1\x5d\x5a\xf7\x4a\xa7\x51\x95\x6f\x4f\x98\x9b\x17\x9b\xd1\x25\x75\x47\xb1\x9e\x7d\x8d\x2e\xf3\xca\x8c\xe8\x54\x87\x29\x55\x7a\x79\xa6\xa5\x3d\x28\x41\xe6\x78\x01\x3c\xd7\x99\x65\x07\x10\x75\xbb\x7c\xbc\xec\x54\x26\xd9\x6c\x51\xc8\x8c\xf5\x82\x0d\x65\xa3\xba\xd4\xcc\xf4\xdd\xaf\xfa\xab\x44\xd9\x9c\xf0\xd2\x71\xbd\x74\x53\x89\xc1\x8b\xc2\xb8\xcb\x27\x97\xa9\x20\xfc\x14\xdf\x20\x41\x45\xc5\x00\x84\xca\xcc\xfb\xcb\xa1\xd3\x2a\x0e\x35\x4c\xe5\xde\xe2\xb5\x52\x02\x3c\x59\x23\xb7\xe0\x8e\x99\x01\x91\xa3\x20\x69\xb4\x4b\xaa\x0c\xf0\xe6\xf8\x54\x19\x53\x08\x40\x42\x8c\x6f\xbb\x43\xd1\xb4\x87\xd9\x3e\xa7\x20\xa7\x28\x96\xe9\xc5\x25\x3b\x0d\x94\x9b\x49\x1c\x5c\x7f\x42\xe1\x9a\xae\x87\x04\x53\x22\x5d\xda\x99\x6f\x07\x9d\x59\xb2\xa1\xd5\x64\x5d\xad\xcd\x4c\x77\x58\x8b\x29\xd3\xcb\xbe\x50\x91\x63\xb2\x80\xc8\xf8\x9c\x5d\xc3\x09\x13\xa5\x29\xe5\x4d\x12\xca\x91\x57\xe3\x66\xa2\xa5\xe4\x86\x11\x2a\xc3\x8d\x4e\x11\xd6\xb6\x4b\x47\x97\x9b\x06\x2b\x07\x28\x4f\xbc\x7a\x3b\x55\xe8\xae\x8c\x0c\x66\xdd\xab\x8b\x2c\xb2\x68\xce\x6e\xd6\xbc\xa1\x8a\x8d\xcb\x2f\xb2\x28\x3b\x41\x59\x7b\x93\x19\x80\x6d\x32\x55\xac\x0e\xae\x9a\x55\x23\x71\xb8\xd6\xef\xb3\xb7\x72\x5a\xb7\x05\x94\x39\x7a\xcf\x6e\xdc\xd7\x50\x5d\x93\xdd\x9a\x7c\x92\xde\x3d\xfb\x4e\x8b\xdf\xed\xcc\x5b\xa2\xfa\xaa\xe9\x3d\x48\x33\x8f\xda\x85\x82\x04\x72\x29\x29\x29\x14\x02\xc2\xcc\x4c\xd5\x48\x91\x33\x07\x62\x39\xa5\x33\xef\xf7\xf5\x9a\xb8\x33\xb4\x1f\x94\xfb\xf9\xb2\x64\x1b\xf7\x72\xa7\x87\x16\x30\xa5\x1f\x84\x7f\xcc\xca\x35\x65\x19\xed\x2f\x5a\xd6\x96\xb8\x97\x37\x89\x7d\x2f\x5f\x54\xf4\xd4\x9c\x52\xb5\x9f\xcd\x72\x3a\x0f\xfc\x49\x53\xc6\xd9\x98\x18\x93\x19\x6a\x9a\x42\xf9\x22\x27\x91\xdd\x2b\x2b\x27\xb1\xbc\x9c\xc4\x92\x79\xc6\x27\xb1\xfc\x00\x36\x6c\x29\xe4\x7d\xd2\xc3\xe6\xc0\x43\x69\x28\xea\x67\x91\x6a\x59\x4f\x20\x39\x3c\x74\x01\x86\xf8\xf0\x50\x5f\xa8\x20\xe6\x66\x4f\x1d\x63\x63\x65\x09\x57\x11\x62\x87\x2e\x69\xbb\xea\x3c\x1f\xba\xd2\x10\xcc\xb2\xc4\x01\xe6\x3e\x9e\x55\x2d\x1b\x05\xeb\x89\xb9\xb5\x8b\x40\x2c\xd7\xc3\x5d\x54\x5d\xb7\x93\x1b\xf7\x70\xd3\xc6\xeb\x69\x4c\x6e\x7b\x30\x06\x99\x63\x8a\x42\xac\xaf\x7c\x32\x79\xf6\x33\x23\x3d\x88\x68\x17\xd9\xed\xd4\x94\x99\x75\xbb\x2a\x1d\xe4\x45\x61\x9c\x23\xac\x0b\x10\x4e\x42\xef\x63\xdc\xf1\x9c\x21\xc2\x8e\x81\x85\xd9\xb3\x72\x5a\x5b\x89\x2f\x7d\x1e\x49\xbd\x97\x5b\x0b\x0c\x2e\x0f\xd0\x00\x25\xab\xc1\xa5\x43\xd6\x59\xfa\x96\x5d\x21\xba\x9f\x65\x69\x66\x7f\xcd\x09\xed\x64\x14\x4d\x07\x25\xab\x8e\xfd\xc9\x15\x07\x7e\x57\x80\x8e\x0c\x5f\x16\x4e\x67\x19\x27\x49\x4a\x3a\x27\xa8\x73\x82\x4e\xd3\x0c\x75\x18\x6e\x0e\xcf\x8b\x91\x39\x44\xa1\x85\xf3\x75\x79\x8a\xf6\xa9\x2d\x30\xf5\x55\xba\xd3\x13\x71\xef\x54\xdc\xbb\x1e\x73\x00\x1e\x8e\x82\x66\x87\xf0\x6a\xd1\x4c\x20\xd4\xcc\x06\xd4\x68\x36\x27\x4d\xb6\x63\xea\x34\x63\x8f\x01\x68\x4b\x44\xcc\x16\x1e\x1e\x7b\x35\x89\x67\xe5\x0b\x12\xcc\x7d\x3d\xf9\x3c\xa1\xe7\x69\x49\xae\xaa\x53\xd6\xed\xe6\x87\xb8\xef\x45\xf8\x03\xdd\xcf\xb7\x99\x16\x41\x72\x83\x99\x9b\x02\x68\xb2\x01\xad\x24\x56\x0c\x4a\x2b\xa9\x55\xcb\xd7\x52\xb6\xae\x85\xd2\x25\x4d\xfa\xa9\x96\xe3\x98\x66\x9f\x13\x43\x77\x16\xef\x6b\xe6\x1d\x31\x1d\xb3\xb8\x2d\x4c\x0c\x36\x10\x31\x7b\x83\x5e\x6f\xcd\x8d\x17\x37\xe5\x6c\x5c\x35\x10\x5c\xc2\x39\x07\x8e\x1d\x69\xa6\xa8\xf0\x76\xbb\x1b\xdd\x5c\x61\xc9\x7b\xe2\xc6\xa9\x15\x90\x1f\xc0\xb8\xdb\xcd\xf7\xd7\xce\x55\xdc\x83\xcb\x92\x2c\x59\x58\x41\x49\xdb\x42\x17\xac\x20\xb6\x97\x60\x0b\x88\x03\x5e\x41\x0f\x9c\x4a\x03\xf1\x57\xfb\xcb\xd2\x5d\xa0\xf2\x7e\x6c\x2f\xc1\x2b\x0a\x9a\x43\xd4\x3f\x05\x09\xcc\xfa\x2b\x10\x97\x23\x63\x0e\x12\x67\xb6\x9c\x6f\xab\x56\x6b\xcb\xf9\xab\x05\x38\x05\x2b\x10\x83\x3d\xcf\x01\x2b\x3a\x06\xad\x20\x84\x74\xb4\xdc\xf6\x7a\x60\x05\x5d\x07\x9c\xd2\xd8\x53\x71\x2c\xff\xaa\xd7\xa3\xb4\x38\xcc\x7e\x6d\xc5\x5d\x3f\x6d\xf9\x82\x7a\x39\xdf\xf6\x75\x31\xcd\x98\x64\xdb\x8d\xc5\x52\x48\x90\xf5\x3d\xb0\xea\xf5\x80\xc7\x0a\x17\xd9\xa5\x46\x4d\x13\x53\xc7\x29\x58\x76\x63\x83\x64\x05\x32\x90\xf2\x11\xfc\x0c\xea\x07\xf7\x4b\x5d\x3b\x71\x99\xfd\xf6\x96\x3f\xfb\xbe\x9c\xa3\xa6\x5e\xe9\x30\xe3\xa4\xb3\x5e\x6f\x76\xc6\xe0\x13\xde\x6e\x71\x4f\x61\x3a\x73\x80\x88\x3c\x73\x1c\x60\x34\x99\x1c\x79\x93\x02\x5c\x2f\xee\xe6\x98\x28\xd7\x7c\xc2\xea\x36\x83\x2e\xc8\x21\xa1\x53\x66\xaa\x55\x26\x81\xee\x2c\x51\xe2\x35\x4b\x7a\x3d\xaa\x67\xe5\x10\xc2\x44\x33\xf0\x9d\xf7\x7a\xd9\x62\x86\xd4\x39\xbb\x61\x2b\x24\xcc\xa8\x92\x7e\x2a\xcd\xa8\x70\xe1\x80\xa4\xc7\x8c\xcb\xd2\x1e\xc4\xac\x5c\x8a\x81\x6b\x26\x58\x18\x31\xcb\xc1\xe5\x8a\x9b\x6e\xb3\x17\x6c\x4b\xa3\xec\x28\x2d\xaa\xf5\xad\xf4\xfd\xd6\xea\x56\x76\x4a\x75\x25\x42\x94\xcd\xfb\x0a\x65\x86\x53\x5d\x38\x63\x7d\xe1\x2c\xd6\x91\x00\xcf\xc9\x42\x7b\x83\x43\xa2\x2c\x09\x6c\x1d\xbd\xcc\xd1\xa3\x54\x62\xe6\xb4\x19\xd0\xe0\x3c\xbe\xb0\x6d\xaa\x61\xb2\x17\x06\x40\x0e\x88\xe3\x0c\x32\xb4\xda\x2e\x91\x2d\x26\x05\xd4\x23\x5c\x06\xb9\x9d\x9e\x0b\xa4\x6d\xdd\x6c\xbd\x9f\x72\x4f\x9e\x69\x7f\xbd\x9f\x39\x57\xc2\x66\x23\xed\xaf\xc5\xd3\xe9\x45\xd2\x83\x99\xb2\x7a\xa6\x05\xc4\x80\x38\xb3\xe4\x60\x43\x65\xb0\x0f\x37\x80\x0e\x52\x6a\xd8\xe1\x53\x40\xac\xf5\xac\xa4\xef\x39\xb3\x65\xb7\x9b\x28\xe3\xd1\x2d\x5c\x1e\x66\x7d\x2f\xca\x66\xa2\xb4\x2d\xb3\x90\xdb\x4a\x21\xcd\x8b\x1b\xc6\x7b\x5c\x80\xa1\x3f\x1d\x7e\x17\xa6\x0b\xc7\x88\xd4\xad\x14\x26\xe1\xc8\xe5\x56\x0a\x93\x30\xe4\x56\x0a\x53\x77\xea\x4b\x9f\xb7\x49\xe9\xc5\x52\x7b\xb3\xa4\x6a\x73\xe0\x5c\xe5\xdb\x0b\x54\xfa\x89\xac\xb8\x57\x40\x8d\xee\x15\xe4\x09\x53\x9a\x70\xf2\xee\x2c\x09\x7b\xac\x91\xab\x79\xca\x6e\x84\xdb\x40\xb0\xe7\x92\x44\x37\x12\xa5\x34\xe7\xab\xa1\x1b\xa0\x37\xea\x34\xcb\x78\xe7\xcc\x34\x8c\xa9\x9a\x91\xa5\x09\x7b\x77\xf5\x14\x2f\xb9\x35\x19\x7f\x5d\xdb\xb6\xca\x3b\xc1\x16\x50\x66\x2c\x62\x4f\xb1\xa1\x96\xba\xc7\x80\xba\x9b\x00\xf5\x74\xdc\x87\xd1\xa2\xdb\xb7\x69\xd4\x54\xee\xcd\xb2\xb7\xf5\xf5\x87\xdb\xf8\xd3\x99\xe2\xbe\x39\x67\x96\x5d\xbe\xde\x69\x14\xdd\x44\xb9\xba\x8e\xcf\xd0\x0c\x6a\x57\x9d\x95\x2b\xf7\x0d\xa9\x94\xe1\xbd\x77\x19\xfa\x3b\x61\x50\x2f\xb6\x45\x76\xc4\x08\xab\x67\x8b\x8c\x6c\x38\x69\x48\x8b\x37\xea\x49\xe8\x06\xd7\x09\x9d\x78\x53\x7f\x9d\x71\x43\x78\x12\x43\x76\xdd\xdb\x8d\x0c\x8c\x17\x5e\x05\xe3\xb1\x45\x2c\x68\x7f\xc2\x3e\x05\xaf\x94\x9b\x7d\x0d\x95\xba\x30\xcb\x33\xaa\x15\x9c\x68\x08\xf5\x90\xff\x86\x0c\xde\x99\x6d\x74\xa9\x25\x5d\x96\xcd\x33\xa8\x59\xe0\x55\xd3\x1a\x5f\x8c\xfc\x47\xdc\x10\x8e\xe2\xc8\x9d\x8d\xb8\x99\x5d\x1a\x81\x35\xf2\x23\xde\x94\xcb\x59\x4a\x7a\xc3\xed\x7b\xad\x62\xef\xa0\xc9\x36\x2d\xe9\xd2\x4c\x6a\x7a\x0f\xb2\x2c\xf2\xbd\x6b\x4e\xf3\x34\x56\x5b\x08\x82\x63\x1e\x4e\x18\xa4\x68\x09\x1a\xbd\xb5\xd8\xaa\xd1\x6d\xdd\x0a\xd7\xc0\x5a\x4d\xd5\x50\xd7\x30\x15\xfa\x34\x92\x14\x60\xe8\x79\x1f\x37\x29\xc9\xe3\xca\xfa\x9c\x14\x4e\x7c\x3e\x25\x31\x7b\x39\xe5\x4a\xa8\x36\x25\xa5\xa6\x69\x5c\xc5\xdb\x2c\x9f\x92\x06\x83\x41\x9c\x9d\x6d\xd9\xe3\xa2\xa2\x7e\xd2\x32\x44\x0c\x79\x37\x3a\xa4\xad\x38\xe5\x90\x48\x34\x33\x10\xcb\x32\x7c\xcf\x4a\x33\xb8\x8a\x05\x69\xa2\x56\xbc\x94\xbb\x0f\x4c\x48\x60\xd8\xea\x34\x9b\xea\x08\xc2\x4b\xe3\x28\x73\x40\x11\xc9\xcc\x2c\xea\x0c\xf1\x17\x80\xaf\xc7\x74\x58\xab\x4a\x69\xb7\xa3\x83\xd9\x2e\xc8\x6e\x30\xe1\xd1\xc0\xa5\x95\xfa\x51\xfd\x69\x67\xbd\x8a\xf5\xc2\x6b\xe6\x4d\x46\x62\x83\x79\x93\xce\x94\x3a\x4b\x95\xbf\x61\x34\xcf\xdb\xcc\xe6\x64\xb3\x8b\xcb\xbe\xfc\x5d\x0f\x13\xbe\xc1\x98\xce\x77\x08\xdc\x73\xf9\x29\x28\x3e\xb5\xb9\x22\x78\x7d\x1e\xed\x35\xfe\x56\x48\xc3\x42\x8e\x12\x32\x1c\xfa\xd3\xd1\x3e\xc4\xdd\x2e\xde\x87\xc3\x51\xe0\x4d\xcb\x93\xb1\x5b\xa1\xf1\x9c\xd9\x70\x14\xf8\xee\x3e\x5d\x39\x66\xfb\x70\x38\x0e\xc2\xe0\xd0\xe8\x05\x9e\xeb\x87\x9f\xda\xb8\xcf\xca\x72\x7a\x59\x9f\x65\xe8\x8d\x86\xc3\x60\xb4\x33\x0b\xa9\x5a\xe9\x45\x94\x0b\xe2\x4a\x47\x19\xd2\x91\xdf\xb2\xae\x37\x94\x33\x53\xc3\xbb\xd1\xeb\x5a\x91\x9b\xdd\x5c\x59\x33\x5e\x5b\x06\x9b\xea\xef\xe4\x4a\x7c\x94\xc3\x69\x21\x44\x6a\x0b\x53\x74\x2b\xf5\x2d\x7a\x62\x99\xce\xa4\x7e\x41\xc7\x4b\x35\xc2\x25\x05\x18\x85\xc1\xc7\x6c\xf3\x35\x79\xc3\x82\xf5\x68\x56\xab\x86\x78\x5a\x6f\x48\x2a\xf6\xb6\x46\x84\xcc\x69\x5a\xed\x42\xd2\xe8\x61\xdc\x88\xd6\x38\x69\x82\xab\x06\x31\xa2\xcb\xee\xa7\x99\x51\xdf\xff\xc1\x8b\x8a\x51\xb5\xf6\x79\xf4\xf4\xd1\xd3\xe7\xda\xd3\x89\x46\xb4\x1e\xc3\xf2\xf9\xc3\xd1\xae\x02\xb4\xbf\x3f\x05\x66\x59\x34\x57\x23\x49\x66\x82\x56\x05\x0f\xb4\xd5\xd9\x07\x2d\x4c\x0a\x40\x8d\x9d\x96\x05\xea\x4c\xf7\x40\xad\x65\xdc\xa6\x26\x67\x08\x3a\x56\x43\x52\x89\xa7\x51\x4e\x02\xbf\x00\xe1\x64\x14\x7c\xdc\x7c\xcd\x95\xc4\x9b\x56\x90\x62\x92\x4e\x99\x27\x4e\x5c\x73\x10\x89\x57\x45\xd3\xa3\x53\xec\x7e\x89\x58\x09\x18\x8f\x36\xca\x83\xe8\xc6\x97\x30\x57\x30\x1d\xbc\x4a\xd0\x3b\xf2\x70\xa5\xde\x91\x57\x97\x0c\x6e\xbf\x8c\x34\x32\x94\x08\xf8\xc2\xb1\xfa\x1a\xa3\xfe\xf4\xa3\x5d\xa3\x57\xbb\xd6\x0b\x95\xaf\x8f\x12\xa3\x78\x4a\xdb\x76\x41\x6e\xbc\xb5\xe8\xd8\xb5\x6a\x3a\xf5\x9a\x97\xa7\x24\xef\xfb\x20\x67\xa1\x5a\x2f\x05\x8a\x65\xd0\x2b\xc0\xd8\xf3\x3e\xea\xb5\xb1\x8a\x17\x42\xd1\xd1\x8f\xef\xbf\x38\x2e\xfb\xab\x8a\xb9\x2a\xae\xcd\x31\xb8\xab\x01\xcf\xdd\x05\xbc\xb2\xbe\xb6\x22\xeb\x27\x7f\xeb\x57\x2d\x10\x47\xd6\x4f\x7e\xeb\x6f\x5a\xe0\x24\xb2\x7e\xf2\x1b\xbf\x66\x81\x25\xfd\xfb\xeb\x16\x58\xd1\xbf\x7f\xcd\x02\x88\xfe\xfd\x2b\x16\x38\x8d\xac\x6f\xfe\xbe\x05\xce\x22\xeb\x9b\x7f\x60\x81\x35\x8d\xfd\x5d\x0b\x60\xfa\xf7\xaf\x5a\xe0\x17\x23\xeb\x27\xbf\xf9\xdb\x16\x78\x4d\xff\xfe\x86\x05\x36\xf4\xef\xaf\x5b\xe0\x9c\xfe\xfd\x4d\x0b\x24\xf4\xef\x1f\x5b\x20\x8d\xac\x9f\xfc\xf5\xff\xcb\x02\x17\xf4\xef\x1f\x59\xe0\x97\x68\xfc\x2f\x5b\x20\xa3\xdf\x7f\x6c\x81\x9c\xfe\xfd\x87\x16\x20\x34\xfe\x77\x2c\xb0\xa5\x7f\x7f\xd7\x02\x6f\xe8\xdf\x3f\xb4\xc0\x5b\xfa\xf7\xef\x59\xe0\x1d\xfd\xfb\x97\x2c\x70\x19\x59\x3f\xf9\xb5\xdf\xb5\xc0\x8f\xe8\xdf\xbf\x6b\x01\xeb\xca\x8a\xac\xff\xf7\x97\x2d\x60\xed\x68\x05\x7f\xed\xef\x58\xc0\x2a\xac\xc8\xfa\xe6\x7f\xb4\x80\xf5\x63\x1a\xf8\xdf\xad\x42\x63\xc6\xe0\x0e\xbc\xb2\x7e\x9a\x03\x18\xf1\x77\xeb\x5c\x9e\x87\x8b\x12\x18\x58\x7f\x81\x06\xfe\x6f\x0b\x58\x73\x2b\xb2\xf0\x2f\x5a\xc0\xfa\xea\x2b\x1a\xf5\x0f\x2d\x60\x2d\xac\xc8\xda\x09\x6a\xbe\xf9\x7d\x41\xcd\xa9\xa4\xe5\x8f\x25\x2d\x7f\x68\x96\x79\xa4\x35\xd9\x7c\x48\x0b\xa3\xa8\xbf\xfd\x15\x89\xfa\xdb\xdf\x12\xa8\xbf\xfd\xcb\x16\xb0\x7e\x81\x06\x7e\xc7\x02\xac\x29\xbf\xfd\x03\x51\xda\xb7\xbf\x2b\x4a\xfb\xf6\x7f\x13\xc5\x7d\xfb\x77\x45\x71\xdf\xfe\xb1\x59\xdc\xf3\x6a\x6d\xbe\xfd\x3b\xa2\x36\xb4\xa1\x45\x91\xbf\x27\x8a\xfc\xe6\xf7\x64\x01\x7f\x20\x0b\xf8\x3f\x65\x01\xbf\x2f\xeb\xf3\xfb\x66\x01\x3f\x0f\xaf\x4c\xbc\xdf\xfe\x0f\x35\xbc\xdf\xfe\xcf\xb2\x2a\xff\x8b\xac\xca\x1f\xde\x5c\xd2\xb7\x7f\x64\x96\xf4\xb9\x28\x89\x51\xd9\xc6\xb4\xdf\x69\x67\x91\x6c\x91\x6f\xff\xb6\x89\xf7\x87\xb5\x06\xff\xbd\x76\x16\x31\x7a\xbf\x96\xf4\x5e\xc9\x8a\xb3\x92\xfe\xd7\x5a\x0d\xfe\x9e\x59\xd2\x7d\xbd\xed\x47\x0b\xc9\xb9\x5f\x91\xf5\xf9\x55\x55\xdc\x6f\xb7\x0b\xc1\xef\xca\x72\xff\x27\x59\xee\xff\x71\x93\x10\xfc\xc5\xf6\x1a\xfe\xf7\xaa\xc8\xbf\x21\x85\xe0\xff\x91\x32\xfd\xf7\x65\x01\xff\x40\x16\xf0\x7b\x26\xde\xcf\xf4\xfa\x8c\x55\x7d\x7e\xed\x9a\xf6\xf9\x2e\x84\x7a\x6e\x41\x4b\xf6\x52\xd6\x0c\xa6\xfc\xfd\xc1\xf5\xf2\xf7\x4a\x34\x90\x29\x86\xd7\x88\xcb\x1f\x59\x45\x01\xfc\xe1\xa4\x3c\x37\x7d\x13\x67\x1d\x66\xa9\x31\xfb\x90\x75\xbb\xf7\xea\xfe\xf1\xd1\x9d\x67\xf7\xef\x51\xee\x79\xf4\xc7\x95\xe3\x90\xfe\xb4\x0e\xa2\x4a\x0d\xb4\xbe\x72\x2d\x80\x06\xc7\x4f\x3f\x83\xd6\x3f\xc5\x42\x2f\x7e\x00\xad\x7f\x9a\x86\xee\xd3\xd0\x3f\xc3\x42\x4f\x5f\x40\xeb\x9f\x65\xa1\x27\x3f\x0f\xad\x7f\x8e\x86\xee\x1c\x7d\x0e\xad\x7f\x9e\x86\xee\xde\x7f\x04\xad\x7f\x81\x85\x8e\xa1\xf5\xd5\x09\x0d\x7d\xf6\x02\x5a\x5f\x11\x1a\x7a\xf4\x00\x5a\x5f\x25\x34\xf4\x05\x8d\x7b\x43\x43\x0f\x68\xdc\x29\x0d\x1d\x3d\x87\xd6\x57\x19\xa7\x00\x5a\xff\x22\x0b\x3c\x84\xd6\xbf\x44\x03\xf7\x1e\xdd\x87\xd6\xbf\xcc\x42\x47\x1e\xb4\xfe\x15\x1e\xf2\xa1\xf5\xaf\xf2\x50\x00\xad\x7f\x8d\x87\x42\x68\xfd\xeb\x34\xf4\xe4\xce\xe7\xd0\xfa\x37\x18\x92\x1f\x3e\x81\xd6\xbf\xc9\x6b\x71\x17\x5a\xff\x16\x2b\xeb\xce\x13\x68\xfd\xdb\x2c\xee\x31\xb4\xfe\x1d\x06\xf6\xf2\x2e\xb4\xfe\x5d\x16\x75\x7c\x04\xad\x9f\x62\xc4\x1d\x43\xeb\xdf\xa3\x81\xef\x1f\x43\xeb\xdf\xa7\x81\xe7\xc7\xd0\xfa\x0f\x68\xe0\xe5\x31\xb4\xfe\x43\x96\xef\x19\xd3\xf4\xd0\xe0\x1e\xad\xfb\x7f\x64\x15\x36\xa6\xea\x06\xe5\x34\x86\x57\x85\xe3\x54\x38\xfd\xec\xce\x3d\x68\x7d\xf3\xcb\x8c\x33\x4f\x9f\x41\xeb\x9b\xff\x98\xb1\xeb\xd9\x67\xd0\xfa\xe6\x2f\x31\xca\xef\xd2\xe0\x7f\x42\x83\x0f\x9f\x50\xd8\x5f\x61\xb1\x14\xfb\x37\x7f\x99\x95\x78\x7c\x07\x5a\xdf\xfc\x2a\x27\x95\x06\xff\x53\xce\xe6\x63\x68\x7d\xf3\x9f\xf1\xe0\xcf\x41\xeb\x9b\x5f\xe3\x8c\xa6\xb1\x7f\x85\x06\x9f\x3d\xa2\xc8\xfe\x2a\x0f\xbe\x84\xd6\x37\xbf\xce\x2a\xf4\x10\x5a\xdf\xfc\x35\x8e\xd6\x87\xd6\x37\x7f\x9d\x07\x03\x68\x7d\xf3\x9f\x73\x8e\x52\x04\xbf\xc1\x72\xbd\xf4\xa0\xf5\xcd\xdf\xe0\x41\x0a\xfb\x37\xb9\x90\x50\x80\xff\x82\x71\xf5\x88\x52\xfe\x9b\x34\xf8\xf8\x4b\x68\x7d\xf3\x5f\x72\xfe\x50\x12\x7f\x8b\x51\xcb\x82\x7f\x8b\x37\x31\xcd\xf5\xdb\x2c\xf8\xfd\x23\x4a\xc3\x7f\xc5\xc2\x2c\xf8\x5f\x33\x64\xb4\xf1\xbf\xf9\x6f\x78\x11\xd0\xfa\xe6\x77\x68\xe8\x29\x6d\x9a\x6f\xfe\x5b\x46\xc2\x63\x68\x7d\xf3\xdf\x31\xf1\x7b\x46\x23\xff\xb6\x55\xd8\x19\xe7\xbc\x07\xb3\x26\xce\x1f\xbf\x80\x5f\x7f\x72\x85\x69\xfb\x16\x5f\x7d\xf5\x75\x61\xe7\x02\x5c\x75\x92\x9c\x65\x2b\xc0\x38\x98\x4e\x3f\x4e\x03\x47\xf4\x2b\x26\xe8\x73\x74\x79\x92\xc6\xd9\x8a\x69\xb3\x75\x85\x9c\x76\x75\xaa\x90\x5f\x85\x93\x68\x6e\xb9\x16\xb0\x1c\x6b\x01\xc2\x69\x34\xb7\x3c\x0b\x58\x7b\xd6\x02\x0c\xdd\x68\x6e\xf9\x6c\xe4\x59\x80\xa1\x17\xcd\xad\xc0\x02\xd6\x4f\xd3\x0f\x3f\x9a\x5b\xa1\x05\xac\x4f\xe8\x47\x10\xcd\xad\xa1\x05\xac\x9f\xa1\x1f\x61\x34\xb7\x46\x6c\x20\x5a\x80\xe1\x30\x9a\x5b\x63\x0b\x58\x5d\xfa\x31\x8a\xe6\xd6\xc4\x02\xd6\xa7\xf4\x63\x1c\xcd\xad\xa9\x05\x2c\xdb\x5a\x00\x6f\x42\x93\x66\x16\xb0\x22\xf6\x45\xd3\xa0\x05\xac\x1e\xfb\xa2\xe4\x01\x0b\x58\xfb\xec\x8b\xd2\xd7\xb7\x80\xf5\x8a\x7e\x4d\x29\x81\x03\x0b\x58\x07\xec\x8b\x52\xf8\x3d\x0b\x58\x87\xec\x8b\x92\xf8\x35\x1b\xdd\x16\xc0\xf7\x68\xbe\x39\x1b\x06\x17\xc0\xf7\x69\xbe\xaf\xbe\x62\x83\x21\xfd\xa4\x19\x17\x6c\x44\xa4\x5f\x34\xe3\xcf\x5a\xe0\x67\xad\x9f\x5d\x14\xb3\x36\x7e\x1a\x47\x90\x58\x37\x5f\xb8\x22\x97\x17\x28\x72\x01\x7f\x89\x2d\xda\xf3\xc0\x6b\x74\x29\x5f\xfc\x06\x31\xb4\xd1\x80\x79\x3d\xfa\x1c\x5d\x1e\x7a\x91\xeb\xec\x6c\x34\x88\x37\xec\xd3\x17\x9f\x4b\x92\x6d\xe8\x77\x28\xbe\xcf\x11\x89\xe9\xf7\x24\x72\x9d\x99\x78\xd1\x04\x0d\x5e\xa3\xcb\xa3\x74\x85\xc4\xab\x25\x6e\x64\xbd\x7c\xf8\x39\xba\x7c\x98\x5c\x6c\xc9\xcb\x8b\x3b\x59\x96\xbe\xe5\x5e\xd8\x5e\xa3\xcb\xc3\x84\xfe\x42\x72\x98\x0d\x8e\x5c\x2a\x85\x3d\xeb\xe9\x1d\x2b\x2a\xbf\xe6\x77\x2c\x3d\xff\x23\x74\x4a\x6e\xc6\x70\xcf\xc0\x70\xcf\xc0\xf0\x1c\x9f\xad\x6f\x81\xe2\xc8\x40\x71\x64\xa0\xb8\x97\xbe\x4d\x4c\x0c\xec\x90\xbf\x86\xe3\xae\x81\xe3\xae\x25\xce\x69\xf9\x43\x2c\x93\x88\xe7\x28\x99\x4a\xe7\x06\x9e\xe1\xde\xfd\x47\x40\xf2\x5e\xa1\x56\xa8\xd8\xa7\x81\x6b\x1a\x71\x93\x28\xd1\x7a\xce\x55\x25\x87\x35\xff\x8b\x96\x3c\x23\x2e\x53\x3e\x7b\x01\x92\x01\x17\x06\xb8\xe7\xea\xf8\xbc\x40\x11\x27\x04\x40\xa1\x62\x81\xa3\xe7\x91\xf8\xdb\x86\xc1\x1f\x47\x26\x0d\xd7\xd4\x47\x06\x9c\x36\x64\xc1\x98\xd7\x4f\x48\x9b\x70\x98\x14\x1f\x56\x11\x59\x73\x6f\x66\xf5\xec\xb8\xe7\x39\x3d\xeb\x9e\x05\x78\x32\x34\x01\x82\x7b\x56\x9d\x04\x1b\x1f\x5a\x27\x56\x44\xd3\x87\xf7\x2c\xc7\x71\xa2\x5b\x48\x95\x41\xe2\xf4\x03\x48\x3c\x6a\x23\xf1\xa8\x85\xc4\x53\x41\xe2\x51\x1b\x89\x55\xa9\x35\x48\x9c\x7c\x00\x89\x77\x2c\x80\x77\x3b\x06\xb1\x57\xa5\xf2\x8e\xb5\xdb\x35\x65\x1e\xde\xb1\x9a\xa9\xab\x76\x6c\x9d\xba\xd0\xfd\x00\xea\xee\x5e\x43\xdd\xdd\x36\xea\xee\xb6\x50\x57\xed\xad\x06\x75\xc3\xa8\xec\x5e\xbb\x9d\xea\xb3\x4d\x45\xf8\x3f\x36\x3b\x7a\x38\x12\xa5\xc5\x5a\x69\xf3\xa0\xac\xc5\x8f\x8d\x82\x83\x1f\x9b\xad\xd6\x98\x5b\xe3\xc1\x67\x56\x64\x54\xe3\x33\x03\xdb\x67\x26\xb2\xe1\x0d\xc8\x1e\x54\x90\x3d\x30\x90\x3d\x30\x91\x05\x1a\x4f\x0e\x93\x01\x9d\x5d\xa0\x1f\x95\xe3\x59\x8d\x33\x43\xa3\xce\xf5\xe4\x4a\xcd\xc3\x06\xfc\xc1\x75\xf8\x47\xd7\xe3\x1f\x99\xf8\x3d\xcf\xbf\x81\x1b\xcf\xf4\xda\x3f\x7d\x56\xc9\x1d\xdc\x90\xfb\xe7\x8d\xdc\x3f\x5f\xc9\x1d\xde\x90\xfb\xb9\x91\xfb\x79\x25\xf7\x4d\xed\x78\x6c\xe4\x3e\xae\xe4\x6e\x16\xa9\x61\x9b\x44\x7a\xc3\x2a\xe3\xc6\x8d\x08\xc6\xad\x08\xc6\x55\x04\x93\x46\x04\x93\x56\x04\x93\x2a\x82\x69\x23\x82\x69\x2b\x82\x69\x05\x81\xef\x36\x21\xf0\xdd\x36\x04\xbe\x5b\x45\xe0\x35\x22\xf0\x5a\x11\x78\x55\x04\x8d\xd2\xe7\xb7\x8e\x0b\x7e\x50\x45\xd0\x28\x80\x7e\xd8\x8a\x20\x54\x08\xe4\x73\x6e\xf8\xd4\xde\xd3\xc6\x32\x73\x88\xe3\xd3\x35\x0d\xc9\x31\x19\x9f\xda\xb8\xdb\xdd\x4b\x77\xbb\xbd\xa6\xe4\x3d\x6c\x66\x6b\xc4\xbb\x57\x2a\x8d\x42\x73\x2a\x29\x60\x61\xa9\x25\x94\x80\xdd\xae\x52\x29\x0f\x60\x38\x11\x56\xcd\x34\x4a\xde\x7e\x92\xca\x0a\xd5\x67\x05\x56\x0d\xa9\x6d\xbd\xaa\x2b\x6a\x8c\x31\x2f\x8f\x1d\xba\x86\x68\x4e\x7c\xf2\xf2\x91\xe3\x44\xa3\xa1\x4c\x3d\x62\x4f\x27\xdb\x62\x20\xf2\x8c\xcb\x8b\x04\xe6\x73\x05\xb4\xe0\xcf\xeb\xce\x4d\x75\x7a\xc1\x1c\xe5\x3a\x95\x51\x09\xab\x53\x58\xad\x8e\xa3\xa1\x56\xe5\x7d\x38\x75\xf5\x87\x7e\xe5\xe8\xa7\x00\xfa\xa3\x30\x52\x1f\xbd\xc0\x9f\xf1\x4b\x89\xfc\xb2\x83\x72\x6c\xc3\xce\xf5\x08\xbb\x51\x29\x88\x62\x97\x1c\xf0\x80\xa4\x2f\x2f\x2e\x50\x76\x14\xe7\xc8\x76\x1c\x50\xa5\xaf\x90\xf4\x05\xbe\xce\x88\x6a\x3d\xb4\xb5\x81\x64\x5e\x64\x75\x2c\x47\x55\xcf\xba\x87\xe2\x95\xc6\x69\x34\x58\xa6\x2b\x61\x1c\x9f\x7f\x89\xc9\xda\xb6\x3e\x47\x97\x96\xa3\xdc\xc0\x89\x74\xe6\x1b\x29\x00\xa1\x4e\x39\x5d\xa2\x42\x32\x20\xe9\xa3\xf4\x6d\x2b\xe5\x44\xd7\x26\x0b\x5e\x8d\xeb\x78\x2c\x84\xa8\x89\x6d\x3a\xab\x9d\xc8\x64\xc4\xa1\x29\x31\x91\x56\xc4\xd0\x33\x8a\x18\x0e\x6f\x55\xc4\xd0\xeb\xf9\x63\x27\x1a\x8e\xda\x4a\xb9\x77\xff\x51\xe4\x7b\xd3\xb6\xe4\xfb\xc7\x47\x91\xef\xbb\x6d\xc9\x0f\x8e\x23\xdf\xf7\x6a\x32\xad\xd2\xbf\x7f\xec\x94\x16\xc8\x05\x08\xc5\x0b\xd8\x1f\xb8\xe4\x7f\x49\x4e\x27\x2f\xd2\x97\xe4\x34\xf0\x21\x19\xf0\x8a\x97\xdf\x5b\xfa\x57\x5e\xcb\x81\xa4\xc9\x44\xa3\x3c\x21\x68\x4a\xd4\xf7\x32\x94\x9f\xb9\xd1\x70\x18\x0c\x0f\x6d\xd4\x87\xcc\x08\x00\x34\xb1\x9b\x59\x0b\xf4\x6c\x74\x70\xe0\xb9\x8e\xd3\x6b\x6c\x91\x9f\xf1\x5c\x3f\xec\x31\x73\x02\xc7\x89\x1a\x41\x9c\x02\x54\x6b\xa1\x2f\xbf\xd9\xb3\xfd\x48\x59\x50\x70\x23\x65\x71\x37\x88\x5f\x14\x22\xb3\x7c\x1f\xcf\x7a\xbd\x5c\x89\xfd\x3c\x5f\xcc\x88\xac\x03\x91\x75\xc8\x7a\x8d\x52\x23\xaa\x41\xae\xa9\x06\x31\xab\xd1\x82\x88\xa8\x46\xcf\x68\x95\xcc\x86\x6a\x7f\x8b\x1d\x27\x04\x65\xf8\x1c\xba\xe6\xeb\x2c\x5a\xfc\x0a\x2d\x19\xa7\x74\x9b\x6d\x65\x7e\x4e\xa7\x1f\x2c\x6f\xb8\xb8\x9a\xdd\xba\xf6\x36\x88\x40\xa5\xe7\xd6\x6c\x2f\xf2\x5e\x4f\x99\x88\x08\x33\x13\x6e\x22\x32\xcf\x7a\xbd\x85\x30\x0e\x31\x10\x49\x43\x11\xac\x1b\x8a\x44\xb6\xc8\x60\x80\x02\x11\x89\xd5\xb3\x5d\xaa\x5a\xa5\x43\xeb\x7c\x96\xb2\x16\x4c\x4b\x63\x6f\x83\xc2\x54\xb7\x84\xc9\xbb\xdd\x5c\x59\xc2\xe0\x53\xbb\xd7\x4b\x0f\xa0\xe2\x80\x59\x48\x0e\xa4\x2d\x77\x52\xc3\x28\x6a\x9c\x74\xbb\x49\x63\x8d\x73\x59\xcb\xa4\xb1\x96\xb9\xac\x59\x22\x6e\x0f\x8e\x86\xfe\x78\xba\x07\x29\x7d\x0a\x46\x93\x88\xa2\xd2\x93\x5b\x05\x42\xd2\x2e\x2f\xd4\x4e\x84\xdf\x35\xc7\x94\x0f\x01\xc6\x0c\x1d\x6d\xd7\x79\x7f\x21\x01\x39\x48\x41\x22\xcd\xe3\xc1\x46\x13\x18\x81\x7b\xee\x2e\x64\x87\xdb\xf3\x80\x70\x57\x5a\xa6\xcd\xf2\x2e\xf4\xa6\x3e\x84\xb6\xef\x87\xdd\xdc\x39\x0c\xbc\xc8\xf7\x43\xfa\x1d\xba\xf4\xdb\x1b\x46\x63\xee\x34\x17\x24\xd2\x00\xdf\x4e\xa1\x7c\x87\x52\x62\xea\xf5\x92\x85\x43\x5b\x21\x9c\x39\xf9\xfe\x3e\x1c\x81\x7c\x07\x53\xd1\x6e\x6b\xad\x88\x2a\x6d\x87\xbe\x56\x5e\x2d\x31\x88\x42\xb0\x84\xeb\x7e\xc2\x0b\xde\xec\x2f\xb9\xe5\xff\x46\x93\x16\x56\xe5\x14\xa2\xf9\xa6\xd7\x5b\x00\xcf\x9f\xec\x41\xdb\x9b\xfa\xdd\x94\x4e\xa1\xfd\x3e\xc8\xd4\x26\x4a\x61\xe0\x4f\x68\xeb\xa6\x40\x51\x3b\x0a\xba\x69\x91\xed\x76\xcc\x0c\x6c\x7d\x98\xef\x7b\xfe\xe4\x70\xd3\xef\x47\x64\x1e\x33\x41\x88\x02\x91\xe0\xbb\xe1\x64\xb7\xcb\x0f\x20\x13\x2e\x2e\xca\x54\xf6\x76\x3b\x26\x3f\x10\x42\xb6\x79\x2c\xb2\x39\x51\xbe\xcf\xad\xb0\x76\xf9\x81\xe7\x79\xa1\xe7\x79\x7a\xb2\xe8\x54\x55\x59\x90\xb7\x13\x70\x3f\x9c\xf1\x3b\x4b\x1b\xce\x84\x2d\xbb\x4b\xc9\x82\x7b\xf6\x9e\xbd\xdd\x5f\x3a\xbb\x9d\xe7\x4f\xba\x76\x06\xd1\x7c\xbb\x90\x5f\x39\xfd\xea\x79\xea\x3b\x65\xdf\xbe\xfa\x4e\xd8\x77\xb0\x70\x9c\x99\x23\x88\xc9\x80\xa4\x4a\x06\x52\x19\x48\xc0\xb6\x07\x43\xca\x6a\x56\x0a\x65\x75\x46\x39\xa4\xb2\x2a\x05\xa7\x6c\xeb\xcc\x61\x8d\xb5\xad\x76\xed\xb2\x85\x61\x06\xf8\xa5\x62\x89\xb3\x6c\xbe\xdc\x71\xae\xb6\xfc\xfe\x05\xbf\xb8\x85\x4f\xed\x35\xb4\x03\xaf\x9b\x39\xfb\xfb\xa3\xdd\x28\xe8\xe6\x60\xcd\x48\x30\xe1\x04\x41\x6b\xa5\xb0\x95\xf2\xf5\x9d\x13\x74\x3d\x26\x23\xc6\xa3\x5c\x8d\xa5\xac\x6e\xeb\xb2\xda\x50\x59\x6f\xc8\x2a\xeb\xf9\x3b\x9b\x56\x57\xd6\x3b\x05\x6b\x21\x83\x6b\x25\x83\xeb\x9a\x0c\x6a\x1e\xf8\xeb\x2c\x09\x5d\xc6\x92\xc9\x3f\x59\x2c\x79\x5f\xdc\x46\x8c\x4f\xa5\x99\x95\x96\xd4\x4b\x4b\x9a\x1b\x60\xcc\xf9\x3f\x51\xfc\x17\x4d\x91\xca\xa6\x48\xc0\x5a\x76\xee\xb5\xec\xdc\x0d\x7c\x97\x53\x48\x5c\x14\x05\xf0\xfd\x8f\xbc\x06\xf4\x32\xc1\x74\x9e\xf8\x62\x54\x3f\x33\xf2\xc2\x09\x33\xe2\x9a\xcf\xc7\xa3\x09\x98\x8c\xa7\x0b\x30\xf7\xbc\xe1\x10\x78\xde\x70\xc2\xc2\x23\x17\x78\xde\xc8\xa3\xe1\xd0\x1f\x02\x2f\x1c\x31\x98\x70\xec\x01\xfa\xc3\xc3\x01\x0d\x87\x3c\x3c\xa2\xe1\x31\x0f\x4f\x69\x98\xc1\x53\x65\xcc\x1b\x06\x3c\x3c\xf4\x81\x37\x1c\x32\x98\x91\xe7\x01\x6f\x14\xb8\x2c\x1c\x4e\x00\xfd\xa1\xe1\xf1\xd0\x05\xde\x78\xc4\x70\x8e\x47\x63\x1a\xe6\xf1\x63\x1a\x3f\x0e\x68\x78\xe2\x8e\x01\xfd\xe1\xe1\x29\x0d\x33\xfc\x93\xd0\x05\xde\x64\x34\xa2\xe1\xe9\x70\x02\xbc\x29\xcb\xeb\xbb\xfe\x18\xf8\x6e\x30\xa4\xe1\xc0\x1d\x02\x3f\x70\x47\x2c\x3c\x0a\x01\xfd\xe1\xe1\x29\xf0\x83\x31\x8f\x9f\x78\x80\xfe\xf0\x30\x85\x9f\x30\x3c\xa1\xeb\x03\x3f\x74\x03\x16\x0e\x02\x40\x7f\x58\x78\x4a\xe3\xa7\x3e\x0f\x8f\x81\x3f\x74\x69\xbd\xfc\xa1\x3b\xa5\xe1\x29\x0b\x07\x2e\xf0\x87\x01\xc3\x39\x1c\x79\xc0\x1f\x8e\x18\xfc\xc8\x77\x01\xfd\xe1\xe1\x21\x0d\x33\x1a\x46\x81\x07\xfc\x51\xc0\x61\x02\x1a\x1f\x8c\x59\x78\xec\x03\x7f\xc4\xf8\xe0\x8f\x26\x53\xe0\x8f\xa6\x2c\xef\x38\x9c\x00\xfa\xc3\xc2\xc3\x00\xf8\x63\xc6\x67\x7f\x3c\x9c\x02\x7f\x3c\xe2\x30\xa3\x21\x0d\x33\x3e\x8c\x27\x23\xe0\x8f\x27\x0c\x66\xe2\x8d\x01\xfd\x61\xe1\xf1\x08\xd0\x1f\x1e\x9e\xd2\x30\xa3\x7f\x42\x79\x32\x99\xb0\x72\x27\xd3\x00\xd0\x1f\x1a\x9e\x52\x9e\x4c\x5d\x46\xe7\x34\x1c\x01\xfa\xb3\x00\xf3\xc0\x75\x27\x80\xfe\xb0\xb0\xef\x01\xfa\x43\xc3\x5e\x10\x82\xc0\x0b\x18\x8c\x17\xfa\x20\xf0\xc2\x90\x87\x47\x34\x3c\x65\xe1\xe1\x18\x04\x5c\x0e\x03\x7f\xe4\x02\xfa\xc3\xc3\x01\x0d\x07\x2c\x3c\xa6\xf1\x63\x1e\x3f\x1e\xd1\xf0\x98\x85\xa7\x13\x10\xf8\x53\x86\x27\x98\x06\x20\x08\xa6\xb4\xbe\x41\xe8\x0e\x01\xfd\xa1\x61\xda\x16\xf4\x87\x87\x27\x20\x18\x86\x3c\x4c\xe9\x19\x86\xb4\x2e\xc1\x28\x08\x00\xfd\xe1\xe1\x11\x08\x46\x22\x7e\x38\x04\xc1\x88\xb5\x5d\x30\x1e\x79\x80\xfe\xf0\x70\x48\xc3\xac\xdc\xf1\x98\xc6\x8f\x39\xcc\x84\xc6\x4f\x58\xfc\x84\xc2\x4c\x18\xff\x03\xca\xc3\x80\xf3\x30\x98\x4c\x87\x34\x2c\xe2\xc7\x34\xcc\xea\x32\x1d\x06\x20\x98\x32\x79\x0e\xa6\xa3\x09\x08\xa6\x1c\xe7\x74\x1c\xd2\x30\x83\x9f\x52\xfc\xd3\x29\xa3\x61\x3a\x0d\x40\xe8\xfa\x94\x6f\xa1\x1b\x4c\x00\xfd\xa1\x61\x2f\xf4\x40\xc8\xf9\x1c\x52\x3e\xd3\x1f\x16\x1e\xba\x20\xf4\x86\x1e\x0f\x07\x34\x1c\xb0\xf0\x24\x04\xa1\x37\xa1\xf8\xc3\x30\x9c\x80\x70\xc4\xfa\x5a\x38\x1d\x4e\x01\xfd\x59\x80\xf9\x70\xea\x8e\xc0\x70\xca\xda\x77\x38\x0d\x26\x60\x38\x65\x3c\x1c\x4e\xc7\x2e\x18\x4e\xd9\xf8\x30\x72\x5d\x1f\x8c\x5c\xd6\x5f\x46\xee\x68\x02\x46\x2e\xe3\xcf\xc8\x1d\x7b\x60\xe4\xb2\xf6\x1a\xb9\x93\x11\xa0\x3f\x3c\x3c\x05\x23\x97\xb5\xdd\xc8\x73\xa7\x80\xfe\xb0\xf0\x70\x08\x46\x1e\x93\xe7\x51\xe0\x05\x80\xfe\xd0\x70\x18\xf8\x60\x14\x06\x21\x0f\x4f\xc1\x28\x64\x34\x8c\xc2\xa1\x0b\xe8\x0f\x0f\x8f\x69\x98\xe1\x19\x8d\xa7\x60\x34\x9a\xb0\xf8\xa9\xe7\x83\xd1\xd4\x1b\xb2\xf0\x28\x04\xf4\x87\x87\x47\x60\x34\x1d\x73\x98\x31\x85\x61\x3c\x1f\x4d\xc7\x13\x1a\xa6\xf5\x1d\xbb\xde\x14\x8c\x5d\x9f\xd2\x33\x1e\x79\x23\x30\xe6\x7d\x76\x3c\x1a\x4f\xc0\x78\xc4\xfa\xcb\xc4\x77\x03\x30\xf1\x19\xdf\x26\x7e\x10\x82\x89\xcf\xda\x62\xe2\x4f\x26\x60\xe2\xb3\xf6\x9a\x50\x59\x9d\x04\x8c\x3f\x93\xd0\x75\xc1\x24\x64\xe3\x83\xe7\x07\x81\x0b\xe8\xef\x90\x7d\x85\xa1\x07\xe8\x2f\xa5\x23\x0c\x5c\x2f\x04\xec\x57\x7c\x4d\xd9\xd7\x94\x7f\x85\x43\xfa\xc5\x5a\x77\x14\xfa\x94\xb5\xf4\x97\x7e\x0d\x5d\x3f\x04\xa3\xa1\xcb\x46\xe2\xd1\xd0\x1d\x8e\xe8\x17\xe7\x0b\x55\x04\x00\xfb\x65\x5f\x43\x9f\x7e\xd1\xb1\x6a\x01\x52\x38\x9f\x8f\x26\xee\x74\x0c\xe8\x2f\x4b\x9f\x78\xae\x07\xe8\xaf\x2f\xbe\x26\xf4\xcb\xf3\xf8\xd7\xd0\xa7\x5f\xc3\x50\x7c\x4d\xd9\x17\x9f\x5d\xa6\x5e\x18\x00\xf6\x67\x28\xbe\xd9\x7c\x33\xf5\x18\xb7\x59\x80\xa7\x8b\xd9\x68\xea\x7b\x74\x0e\x9a\xfa\xac\xb5\x3d\x6f\x1a\x8c\x7c\xc0\xfe\x50\xec\x53\x3a\x55\x0c\x01\xff\x23\xbe\x83\x11\xfd\x1e\x31\x2e\x4e\xbd\xf1\x78\xe4\xd2\xef\xe9\x74\xba\xe0\x97\xbc\x93\x99\x3e\x29\x36\xad\xca\xe4\xaa\xe8\x0d\xca\x72\x9c\x26\xd0\x1a\x59\x60\x2f\x71\xae\x92\xea\x12\x8d\x4d\xe6\x0e\x48\xb8\x1e\xee\x39\x20\xa1\xca\x85\x2b\x23\x5c\xe0\x81\xc0\x77\xb4\x4f\x7f\x0c\xbc\x91\xab\x62\x7c\x10\x06\x43\x1f\xd0\xfe\x45\xf3\x4e\x5d\xd7\x5b\x40\x9f\x87\x7c\x16\x92\x70\x9e\x37\x75\x43\x10\xfa\xde\x94\xe2\xa3\xd2\x31\xf4\x16\xd0\xd3\x10\x85\x6e\xe0\x83\xe1\xd0\x77\x43\x0d\xfd\x28\x18\x87\x21\x6d\xff\xe1\x48\x8f\x1d\xba\xa1\xcb\x5a\xde\x35\x63\xa9\xa8\x0f\xbd\xc0\x84\xf5\x27\x14\x36\x18\x8f\x8d\xd8\xa1\x4b\x25\x69\xe8\x79\x4e\xc5\x59\xbf\xe1\x1f\x52\xd5\x3c\x9f\xa3\xc5\xdc\x5d\xf0\xbf\xde\x82\xb9\xf5\x78\xbb\x7c\x5b\x71\xe2\x8c\xf6\x03\xff\xd0\x8d\xd0\xbe\xe7\x8f\x0f\xbd\x08\x71\x6d\xe9\x30\x99\xa3\x45\x64\xde\x64\x67\xbb\xb5\x40\xdc\xd7\x2f\x3d\x0d\xe0\x53\x1b\xed\x93\xb9\x4b\xcb\xda\xed\xd0\x01\x99\xe7\xb4\x38\xf9\x9e\x9e\x27\x9e\x1a\x3b\x80\x19\x7b\xad\x0f\xc3\xac\x97\x1f\x1c\x78\x80\x42\x62\x0e\x09\x71\xcf\xe3\x9b\xd4\x74\x0d\xcd\xd0\x61\x8a\xce\x29\x1f\xe5\xcb\x21\x56\x1e\x07\xf6\xbc\xc2\x46\x20\x75\x28\xd9\x07\xd0\x0b\x3c\x77\xec\x77\xbb\x68\x1f\x7a\xd3\xd1\xc8\x1d\x52\x22\x78\x70\xc2\x62\xfd\x91\xef\x85\xde\xa1\x1f\x79\xc5\x72\x1d\x67\x42\x85\xc3\x28\xd7\xaa\xc5\x97\xdd\x25\x77\x40\xce\x5e\xa6\xc2\xdc\xbf\x03\xe1\x7e\x95\x94\xb7\x89\x4c\x0a\xb3\xbc\x38\x8c\xde\x91\x2c\x5e\x4a\x4f\x8a\x0e\x7b\x86\x09\x1d\xe6\x70\xcf\x8b\xd0\x01\x66\xfb\xd7\xa8\xdc\xa6\xa8\xe6\x5e\x32\x7f\x09\x52\xb5\xfc\x82\x6a\x92\xb6\x0b\x30\xc8\x99\x43\xfd\xe1\x74\xf2\x91\x17\x00\xbf\xcc\xb0\x7c\x2c\xe5\xb6\xb7\x0a\x6e\x71\x1b\xbd\x7a\x17\x3d\x66\xa2\xa2\xee\xa0\xbf\xd5\x0a\x55\x37\x09\x96\x31\xbf\xd2\xad\x5d\x2e\xb8\x40\xc9\x0a\x27\x67\xec\xfa\x8e\x6b\x5c\x51\x7e\x7a\x7a\x9a\x23\x75\x7b\xf0\x15\xce\x8f\x2f\x93\x25\xad\x8b\xf1\x1a\x7d\x7e\x99\x2c\x8f\xe2\xcd\x26\x57\x80\x2b\xbc\x7a\x99\xa3\x8c\x19\xc0\x94\x70\x69\xc2\xd8\xf0\x2c\xce\x72\xe9\x77\xec\x36\x77\x16\x6a\x99\x4c\x44\xe2\xee\xc2\x3a\x4e\x56\x1b\xa4\x4a\x55\xdb\x8b\x26\x29\x6e\xc1\x98\x42\xab\xa1\xdc\x03\x95\x4f\xf4\x0a\xe7\x9b\x65\x85\x0e\x88\x5c\x4a\x51\x20\xbb\x56\x5d\xa7\xdc\x7b\xd4\x98\xd8\xab\x7a\xc6\xd3\x1a\x42\xdd\x54\xa8\xb4\x06\x8f\xe7\xa4\x38\x55\xbe\xaa\x1b\x1f\x46\x03\x08\xd2\xf8\x11\x0e\xeb\xe2\x8d\xad\xe4\xce\x44\xd7\x32\xc8\xe0\x4f\xd6\x39\x33\xfd\xb2\x71\x9a\xd8\xca\x9d\xa5\xbc\x22\x52\x12\x28\x73\xa0\x6e\x17\xd9\x4e\x71\x4b\xd1\xf1\xe9\x22\x69\x12\x8c\xc2\xf1\xad\x65\x88\x37\x91\x6a\x9e\x5a\x41\x07\x43\x34\xae\x79\x70\xb2\x58\xa6\xce\x2a\x26\x71\x67\x85\xf3\x65\x9c\xad\xd0\x0a\x74\xb6\x39\xea\x9c\x6e\xd2\xb7\x1d\xba\xde\xcc\xd2\x4d\x87\xa4\x9d\x98\x71\x79\x93\xe6\x38\x39\x63\x19\x2c\xee\x77\xa7\xce\xa4\x9a\x43\xd3\xc6\x5e\xa1\x4b\x98\x53\xb9\xa1\xd2\xd4\x0d\xbe\x13\x49\x21\x0e\x60\xd5\x90\xfb\xc0\x09\xca\x58\x9f\xb0\x9d\x59\x8e\xc8\x0b\x7c\x8e\xd2\x2d\xd1\x1e\x1f\xd1\x21\x1a\x1a\xef\x63\x08\x29\x74\xe4\xec\x6d\x75\xb8\xe7\x6a\x9b\xb3\xbb\xdd\xbd\x98\xa0\x41\x92\xbe\xb5\x1d\xfd\x81\xd9\x3a\xa7\x0f\xea\x5c\xae\xb9\x44\xd3\x72\xcd\xeb\xe0\x0b\xa0\x6e\xad\x97\xd3\x26\xdb\x91\x2b\xf1\x20\x78\x50\x12\xd4\xc7\x07\xd0\xf3\x0f\x6f\xe2\x99\x0b\x90\x7c\x65\x5b\x8f\xc6\xa0\x7c\x21\x87\x35\x47\x36\x58\xc6\xcc\xae\x11\x1e\xd8\xec\xc9\xdf\xc7\x78\x99\xa5\x24\xce\x5f\x33\xbc\x57\x5c\x6c\x51\xe1\x80\x67\x59\x7a\x8e\x73\x34\xc8\x50\x9e\x6e\xde\x20\x7b\xcf\x73\x1c\x67\x40\xd6\x28\xb1\x91\xdc\xd9\xcc\xab\x9d\xb0\xa9\xc6\x6c\x62\xec\x76\x4b\x8f\x06\x7a\xaa\x1a\x39\xb4\xb6\xee\x97\x6d\x5d\xe5\x83\xa3\xed\x01\xdf\xae\x7d\x0e\x1b\x7a\xc6\xc1\x50\xbd\x98\x6d\xcc\x41\x0d\xa3\x50\xf9\x9a\x8d\x81\xa1\x26\x6b\xf5\xd1\xe8\x86\x9c\x66\x4f\x75\xc0\xcd\x9d\x42\x3e\xc3\xd5\x50\x6f\xd5\xd5\xcb\xf2\x2b\x09\x37\x4f\xa1\x4e\xd3\x24\x28\x6e\xc9\x15\x85\xa9\x21\xa4\x54\xe5\xf8\x38\x5f\x79\x24\x7d\x7e\x76\xa2\x0e\x4b\x99\x5f\xc4\xa3\x74\x93\x56\xb4\x0f\x0c\xbf\xf7\x0b\xf6\xfc\xab\x55\xdc\x3f\x5d\x38\x5f\x7d\xaf\x29\xf8\xc9\x4e\x41\x5c\xf9\x85\x96\x52\xff\xd2\x41\x03\x23\xb1\xf6\xa5\x83\x86\x46\x62\xed\xeb\x93\xef\x81\x0c\x7e\xef\x17\x44\x4c\xef\x93\xef\xcd\x94\x2b\xbc\xbc\x7a\x0c\x44\xa4\xdb\x46\x6f\xe4\x80\x0c\x4a\x87\x4d\xfb\xfe\xa1\xe5\x5a\x3d\x1c\x61\x69\x77\x4c\x84\xbd\x71\x18\x89\xde\x8b\xe7\xee\x42\xda\xda\x4a\x25\x51\xda\xce\x88\x08\x3b\xeb\x65\x8e\x10\x3c\x17\x04\x8e\xb2\x8c\x91\xf0\xbd\x8c\x36\xa4\xc6\x6b\xfd\xc8\x99\x99\xcf\xe8\x53\x36\x61\xf4\x6a\x56\x09\xb4\x23\xb3\xc7\x2e\xd5\x8b\x4e\x56\x76\x76\x12\x59\x0e\x73\x3e\x29\x0a\x0e\xcb\x09\x1a\x0f\xd0\x3b\xb4\xb4\xf9\xf8\xa6\xf9\x5f\x40\x73\x6f\x71\xe8\x0d\x23\x34\x0f\x17\x87\xfe\x90\x06\xc6\x8b\xc3\xd0\x9d\x0e\x23\x76\x54\x2c\x1f\x06\x62\x9e\xd9\xb2\x74\x9b\xac\x6c\xe5\x37\x93\xe6\xdd\xed\x68\x4e\xfa\x3b\x66\xbf\x9e\xbb\x00\xde\xc8\xf9\x1e\xf9\xd4\x1f\x0e\x1d\xd0\x9c\xcd\x67\xa0\x43\xf6\x3b\xe1\xd9\xbc\x5b\x64\x0b\x18\xe8\x88\xfd\x4e\x79\x36\x5f\xcf\xb6\x28\xd4\x7e\x7c\x85\x35\x3f\x6d\x39\x74\x90\x51\x8c\xf1\x1c\x90\x49\x86\x74\xbb\xf3\x00\x8c\xc0\x14\x78\xfe\x62\x80\x93\xe5\x66\xbb\x42\xb9\x2d\x17\x4c\x8e\xa3\xcd\x29\x22\xee\x7b\x01\xc0\x70\xee\x02\x17\xb8\x55\x27\x61\x01\x7b\x4e\xa1\xee\x62\x54\x16\x8c\x3e\xcd\x00\xfa\x34\xeb\x21\x87\xd2\x3d\xc3\xf3\x6c\x01\x3d\xbe\xf8\xd8\xdf\x0f\x23\x9f\x07\xd9\xc1\x18\x3a\xcc\x0f\x0e\xc2\x28\x3f\x38\x98\xc8\x95\x08\x66\x07\xa6\x7a\x6f\x35\x8c\x02\xbc\x91\x28\x79\x8e\x41\x06\xd2\x05\x44\xa2\xf5\xbe\xa6\xa2\xf1\xc9\x55\xce\x7d\x95\x7f\x8f\x86\x32\x15\x4a\x69\xe8\x6b\xba\x70\x19\x8f\xdd\x8f\x19\x45\x9e\xdd\xf9\xe1\xa3\xa7\x77\xee\xbd\x7a\xf4\xf0\xf1\xc3\x17\xa5\x79\x85\x19\xed\xa1\x71\x01\x46\xc1\xf0\x23\x97\x48\xf7\x96\xf9\x67\x4c\x87\xcf\x20\xfb\x60\x23\x64\xc3\x6a\x49\x79\x4c\x99\x8c\x43\x9f\xbb\x4c\xa1\xd5\x74\x00\xf3\xb9\xa8\x67\x6d\xb7\x45\xe0\x8b\x85\x2c\x97\xde\x66\xf9\xf2\x8f\x3d\x59\x68\x7a\x01\x82\x89\xba\x80\xad\xb9\x51\x91\xf9\x1f\x9c\x40\x36\xab\x4b\xef\xdd\x39\x89\x97\xaf\xe1\xd5\x45\xbc\xcd\xd1\x2a\xda\xf3\xc0\x26\x4d\xd5\xb3\xf7\x91\x0b\x4e\xe3\xcd\xe6\xc5\x3a\x4b\xb7\x67\xeb\x68\xcf\x2b\xaa\xf7\xad\x6f\x43\x56\x4b\xc9\x92\x5a\x75\x5b\x5a\xb0\x92\x0f\x90\xea\x09\x61\xb3\x98\x39\x2a\x1d\xf5\x6a\x71\x70\xbe\xa8\xbc\x0e\xab\xa7\x4a\x75\x07\x2b\x3d\xf4\x4a\x54\x23\x62\x14\x95\xa3\x93\xec\xaa\xc4\x99\xf5\x3d\xfe\x9a\x3d\x56\xaf\x12\xf2\xa7\xea\xd8\x49\xbf\x22\xb5\xca\x06\x46\x9f\xe1\x7f\x5e\x4b\x29\x72\x44\x44\xce\x07\x62\x56\xae\x61\x78\x70\x02\x91\x72\x08\xa6\x94\x78\xce\x2b\x39\x18\x54\x7c\x4b\xf3\x36\x1c\xf0\x26\x3c\xd4\xa3\xf4\xb6\xec\x7b\x51\x03\x2e\xdd\x23\xb5\x9e\x3c\x47\x8b\xc1\x36\x59\xa7\xe9\x6b\xaa\xe5\xcd\xea\xe5\x94\x6b\x83\x66\xa9\x2b\x58\x5e\x63\x41\x64\xb8\x77\x13\x70\xc8\x44\x52\x63\xd9\x6e\x97\x80\xdb\xb0\xa0\xb1\x52\xea\x09\x5d\xad\x52\x8c\x2c\x22\xec\xf6\x2a\x9c\xb7\x35\xca\x80\xf5\xd9\xd3\xa7\x9f\x5b\x74\x54\xa2\x4b\x73\xcd\x7f\xed\x35\xd4\x64\x2d\xd4\x64\x94\x9a\xac\x4a\x4d\xb6\x18\x94\xa8\x6f\x41\xd0\xb3\x97\x2f\x2c\xc0\x7c\xfd\x18\x26\x59\x8e\xc0\xe0\x14\xa2\xc1\x90\x58\xcd\xb4\x10\x2b\xb6\xae\xf6\x3c\xd0\x42\x2e\xc8\x85\xa3\x9d\x7a\xab\x77\xbb\x76\x06\xdb\x25\x0c\x60\x48\xa4\x31\x8a\x00\xd0\xc6\x0f\xd0\x28\x45\x0e\xd8\xcb\xbb\xdd\x3d\x3a\xfd\x60\x61\xff\x40\xd9\xc5\x76\xbf\xaa\xec\x92\x15\x74\xc0\x9e\xbb\x47\xe1\x19\x53\xf1\xa9\x8d\x3b\x38\xc9\x49\x9c\x2c\x51\x7a\xda\x11\xcb\x14\x73\x5d\x6b\x96\xea\x82\xb6\x4a\xc8\x03\xe7\x3a\xf9\x94\x63\x98\x16\x58\x28\x22\x55\xf1\x6d\x94\xd2\xea\xfd\xe3\xa1\xcd\x05\xb8\xb8\x59\x84\x5e\x3e\xe1\x52\x8d\x64\x97\x6e\xe9\xbc\x85\x18\x4c\x63\xf1\x76\xd1\xb3\x38\x8b\xcf\xf3\x59\x3c\x88\x57\x2b\x16\xb6\xdd\xca\xfc\x57\x9f\xb8\xaa\x23\x9b\xea\xeb\x2b\xee\x93\x4b\x2e\x43\x18\x6a\x18\xcb\xc9\x02\x93\x47\xf8\x1c\x13\xb8\xe7\x89\x21\x44\xa2\x11\x80\x48\x3d\x99\xb8\xdb\xa1\x01\x8f\x9c\xbb\x8b\x43\x34\x10\xef\x20\x44\x71\x63\x39\x3a\x62\xad\x47\x9b\x89\xd2\x69\x08\xcb\xcb\x1e\x13\x6b\xe9\x6c\x5a\x11\x92\x9e\xd4\xd4\x31\xd4\x34\xd5\x46\x86\xab\xf5\x58\x69\x1e\xa9\xf7\x3b\x09\xe9\xb0\x68\x65\x46\xcd\x35\x48\x9d\xb1\x5a\x39\x06\x4f\x1d\x40\x9a\x44\x4f\xc9\x9e\x58\xb9\xc3\x03\xbb\xb1\x25\x5a\xd9\x07\x90\x63\xbe\xb1\x7b\xfb\x9c\x84\x19\x4a\xb8\xde\x47\x5a\x4a\xdc\xcf\x97\xf1\x05\x3a\x46\xbf\xb4\x45\xc9\x12\x09\xd5\x89\x0c\xbe\x78\x31\x74\xdd\x57\x2f\x9e\xdf\x79\x72\xfc\xf0\xc5\xc3\xa7\x4f\x5e\xbd\xb8\x73\xf7\xd1\x7d\x48\x06\x2f\xb2\x38\xe1\x5d\xe8\x45\x7c\xb2\x41\x4d\xdb\xd9\x61\x55\x41\x1b\xf9\x34\x94\xd0\x50\x30\xf4\xe4\x16\x77\xdc\x28\xe2\x84\x61\xad\x1c\x39\x71\xf7\x7e\xf7\xf8\x82\x4b\xf3\x19\xc8\x80\xf9\x69\x0b\xda\xdf\x0f\x77\xc4\x29\xe2\xd5\x4a\xf3\xda\xaf\x80\xe6\x64\x7f\x7f\xb2\x43\x0b\x88\x29\x5c\xc6\x1f\x3f\x4e\x2e\x4b\x50\xf3\x55\x04\x65\x52\x98\xcb\x77\x10\x74\x2c\xf3\x7c\xa1\x10\x15\x75\x96\xc4\xa5\x51\xdf\xc8\x9d\xb5\xf2\x52\x69\xfa\xe6\x73\x23\xb1\x4d\xd7\x6a\x0e\x20\x90\xd5\x7d\x10\x5f\x5c\x6c\x2e\x99\x12\x08\x38\x33\xfc\xe1\xc8\x71\xb8\x7f\x60\xae\xda\x13\x07\x60\xc8\x5e\xac\x82\x07\x6a\x59\x42\x3b\x16\x7b\x9b\xd7\x07\x9e\x3f\xe6\x2d\xe2\x02\x3f\x74\xa4\x7b\x5e\x7f\xe8\x00\x1e\x14\x45\xe4\x00\xdb\xfe\x04\x04\xbe\x23\xf5\xbf\x94\xe5\xf1\x42\xe1\x65\x98\xad\x8c\x12\xfe\xfa\x8a\xd6\x1c\x1e\x70\x1d\x80\x06\x92\xa3\x19\x70\x81\x4f\xa3\x52\xa7\x8c\x9c\xfb\x21\xf0\x99\x39\x0c\x60\x27\xa4\x09\x08\xcc\x5c\xd8\xf6\xfc\x09\xf0\xa8\xec\x34\xa5\x85\x21\xf0\x86\xbe\x99\x66\x7b\xc3\x11\x48\xe8\x9a\x4d\x46\xf8\x63\x90\x00\xcf\x03\x5e\x09\x41\x63\x42\x30\xd1\xd1\xcd\x3d\x66\x8c\x33\x01\xec\x74\x96\x22\x18\x97\xf0\x43\x8e\x21\x50\x31\x61\xc8\x63\xa6\xda\x13\x42\x12\x53\x0e\xdc\x2a\xad\x39\xf0\x40\xa0\x11\xe0\x8f\x01\x7b\x01\xcc\x84\x99\x00\xd7\xa4\x29\x07\x01\xfd\xa7\x67\x0b\x28\x72\x13\x26\x04\x01\x08\x75\x98\x10\xb8\x2a\x42\xc0\x8c\x40\x00\x46\x66\xd4\x10\x04\x60\xa8\x67\x1b\x02\x57\x45\x08\x18\x1f\x04\xc0\xd7\x61\x7c\xda\x8c\x32\x62\x1a\x00\xaf\xca\xc6\x0c\x4c\xc0\x50\x45\xb1\x3c\x7a\x84\x64\xf5\x08\x50\x64\xac\xf5\xc7\x0b\x30\x01\xa3\x6a\xdb\x72\x91\xab\xb3\x64\x3e\x99\x80\x69\x08\xa6\xc3\x05\xe3\xe0\xd8\x2c\x7b\x5c\x8d\xca\x8d\x28\x26\x1b\x63\x5d\x36\x28\x7d\x06\xc4\xd4\x03\x9e\xde\xd4\x82\x9c\x51\xc8\xfb\x4b\x40\xa1\xcd\xa4\x70\x02\x46\x2e\x4d\x99\x98\x4c\x9f\x8f\x5c\x30\xf2\xc0\xc8\x07\xa3\x60\x01\x02\x30\x35\x93\x55\xc6\xb0\x9a\xb1\x2c\x2d\xac\x96\x66\xe2\xa4\xed\x3c\x32\x73\x32\x03\x10\x87\xb2\x53\xa5\xb0\x3a\x8e\xea\xa0\xb2\x90\x91\xc6\x8f\x12\x4b\x38\x71\x18\xcd\xc3\xc6\x94\x61\x3d\x85\xd6\x26\x74\x98\x10\xb5\x14\x34\xac\xf3\x4e\xa0\x0b\x5b\x0b\xf2\xc0\x54\xc9\x9b\x99\xe2\xd7\x53\xc2\x09\x2f\xc8\x07\x5e\xad\x4a\xe1\x04\x4c\x5c\x8a\xaf\x9e\x34\xf1\xc0\x64\xd2\x94\x34\x9f\x4c\xc1\xd4\x05\x53\x7f\xd1\x98\x6f\x3a\xe2\xc5\x19\x69\xf6\xc4\xe5\x02\x34\x35\xc5\x70\x0a\x5c\x15\xc5\x5a\x44\x8f\x30\x65\xbe\x21\x45\xd4\x79\xca\x76\xaf\x1a\xa5\x68\x0a\x26\xc0\xbb\x46\x56\x58\xd6\xea\x98\xc4\xc6\x20\xaf\x56\x94\xe7\x53\x76\x34\x25\x0a\x0a\x1b\xd2\x72\xc6\x84\xb2\x08\x3e\xc6\x19\x51\x15\x1c\x4d\x69\xa2\x32\x9e\x7b\x43\x6d\x78\xe6\x3a\xe5\x4c\x64\xdc\x1a\x97\x72\xe0\xd1\x81\xcb\x33\x86\x32\x33\xaa\x42\x5c\x53\x9a\xc4\xef\xb7\xb4\x42\x28\xf3\x79\xcd\xf2\xef\xf9\xec\x7f\xcb\xc8\xe2\xb9\xd7\xa5\x4e\xeb\x89\x39\xf0\x02\xfe\xdf\x1c\x03\x2b\xb1\xbc\xae\x74\xda\x30\x01\xe7\x34\x9a\x8e\xc3\x74\x10\x5e\xb0\x2c\x61\x29\xc5\x6b\x39\x5d\xcb\x4f\x63\x54\x5f\x9b\x03\xcc\xba\x22\x10\x34\xa2\x24\xa2\xb0\xa5\x6a\xb7\x51\xd6\x0b\x59\xab\xf5\x42\xab\x92\x59\x35\x6b\x20\x4a\xbd\xca\xd5\xba\x87\x6d\xc3\x1e\xf3\xfd\xb6\x9c\xc4\x04\x45\x2e\x90\x5b\x1d\xd1\x7c\x21\xc3\xcf\xd2\x3c\x72\x41\x89\x20\x72\xc1\x72\xbd\x4d\x5e\xb3\xf8\x42\x1a\x3f\x63\x82\xe3\xcd\x31\xc5\x22\x77\xf8\x96\xdb\x2c\x43\x09\xe1\x71\x35\x28\x73\xb5\xa5\xaf\xea\x8c\x14\x73\x81\xc7\x0f\x90\xd2\xcd\x06\x2d\xd5\x46\xe2\x45\x86\x96\x68\x85\x93\xb3\x9f\x4b\x71\x62\x10\xf0\xea\x22\xc3\x89\xda\xe0\x3a\x81\xa5\x8a\x5f\x3e\x15\x88\x96\x5b\x82\x4a\x10\xa4\x25\x2e\x73\x6c\xe6\x35\x72\xe6\xcb\xe6\x5c\x28\xcb\xd2\xcc\x48\x42\x0d\xd4\xc0\x26\x02\x1b\x89\xba\x6e\x23\xb3\xa4\xf0\x3a\xa8\x92\xd4\x6b\xa0\x94\x11\x09\x5b\x62\x92\xb4\x14\x38\x47\x9e\xba\xbe\x47\x89\xb7\xae\xc1\x0d\xb4\x15\x8e\x3a\xf2\xcb\x97\x72\x59\xb5\xae\xda\xbc\xa4\x83\xa7\x32\x55\xad\x83\xd5\x06\x76\x1d\x3c\x29\xb7\xb7\x9d\x86\x46\x83\x4d\xed\x68\x32\xe9\xbe\xa2\xda\xbe\x3a\xc5\x49\xbc\x89\xac\xaf\xbe\xb2\x0a\xf6\xa4\xc2\x9e\xeb\x14\x7c\xdb\x02\x9f\x62\xbe\x79\x0c\xe7\x6c\x5c\x1a\x2d\xe4\x56\x17\xbb\x4a\x84\xa8\xe4\x9e\xe2\x77\xe2\x79\x2d\xfe\xa1\xf6\x12\xea\xc6\x19\x69\xb2\xb9\xec\xa4\x09\xea\x9c\x5c\x12\xd4\x89\xf3\x0e\xcf\xd1\xc9\xb7\x17\x17\x69\x46\xd0\x8a\x9b\x60\x60\xa8\x70\x19\x3e\x93\x01\xee\x76\x47\xee\x01\xde\xed\xf0\xc1\x28\xa8\xa3\x17\xd8\xce\xb7\x39\x7b\x98\x0b\x27\xe2\x21\x2f\xf7\x5d\xb0\xec\x0c\x06\xf4\xef\xa9\xe5\x14\x8c\x56\x76\xd5\xe1\x1c\xad\x70\x4c\x50\x2e\xe8\x37\xe2\x34\xc7\xd7\x8d\xd5\x20\x6f\x53\x56\x8d\x9c\xd6\xc3\xc8\xd9\x89\x33\x64\x54\xc9\x7c\x3e\xa6\xb9\x1c\xf6\x8e\x67\xe9\xe9\xba\x02\xa3\x7b\x09\x67\x2c\x0a\xfc\x83\x6c\xb7\xcb\x0e\xc2\x06\x13\x18\x3d\x6b\x13\x33\x7c\x97\x33\xc3\x3f\xa5\xec\xde\xdf\x87\x13\x80\x77\x30\x2b\x28\x63\xd8\x06\xfd\x80\x09\x84\xdc\xdb\xac\xe1\x67\xa9\x0a\x71\xdc\xc9\x71\x72\xb6\xe1\x6d\x6a\x95\xaf\x8b\x49\x2c\x35\x0f\xdf\x64\xee\x2e\x38\xf1\x64\xee\x2d\xea\x6f\xb0\x99\xe8\x15\xdd\x9f\x5c\xd1\x8c\x05\x25\x9d\x06\xbd\x45\x51\xbe\xa7\x56\x56\x02\xe0\x82\x09\x6e\xf9\x70\x5f\x79\x20\x2a\xde\xfd\x99\xa1\x99\x43\xf8\xd2\xb7\xe9\x5a\xab\x3f\x1c\x76\x91\xe3\x00\x74\x70\x00\x27\xa5\xfb\xfa\x0c\xbd\x41\x59\x8e\x6c\x67\xf0\x8b\x29\x4e\x6c\xcb\x62\x3b\x11\xcf\xb4\xc1\x4f\xdb\x55\xd3\x47\x49\xc4\x4f\x37\x0c\xc8\x46\xc0\xa6\xe1\xb4\x68\xe8\xae\xc6\x59\xb7\xb6\xc5\x28\xfb\xea\x9c\x29\xc5\xa3\x85\x33\xab\x9c\xf7\x68\x03\xd5\x1c\x6b\x6f\x33\x1a\xd1\xda\xa9\x4f\xd6\x98\x4f\xbd\xf7\x76\xc3\xc1\x4f\xd6\x74\xf0\x93\x35\x1d\xfc\xe8\x75\x93\x9c\xd1\xcb\xbc\xae\x8e\xd5\x93\xa1\x5b\xe7\xa3\xad\x57\x16\x5c\x3f\x3a\x32\x27\x47\x06\x6d\xcc\x08\xfa\x83\x15\x95\xb9\x62\x8e\x4c\xa1\x5f\x40\x22\x2a\x5a\xc1\x70\xdb\xfc\xb5\xd7\x97\xaf\x07\xaf\x13\xdb\x50\xbd\x9a\xd6\xa0\x44\xed\x48\xcd\x8f\x37\x89\x5a\x4d\xc2\xb4\xa9\x55\x97\x30\x33\xba\x41\xc2\x4c\x80\xef\x5e\xc2\xf4\x2a\x39\x75\x35\xa0\x41\x52\x6a\x4c\xbf\x09\x9c\x32\xbd\x2c\xa6\xce\x70\x43\x13\x2b\x99\x5d\xee\xf6\x73\x66\x9b\x76\x83\x72\x8e\x1f\x54\x8f\x73\x1b\x28\x00\x44\xdc\x98\xd6\x51\x2a\xeb\x57\x85\xc9\x38\x6a\x6d\x40\xc3\x37\x58\x15\x8a\x7a\x45\x4a\x54\x8d\x27\xaf\xaa\x66\x4f\x2b\x23\x96\x51\x33\xa5\x0a\xd5\x6a\x86\x54\x3d\x9e\x36\x0c\x0b\x65\xbe\xca\x91\x31\xa5\xfa\xe9\x35\xdd\xb9\xcc\xd8\x4c\x35\xed\x32\x9a\xb6\xa4\x75\x14\x5d\xad\x12\x63\xb9\x01\xd9\x08\xd8\xa4\x7f\x99\x4f\x52\xdd\x6a\x65\xa1\xb3\x49\x3f\xe7\xd5\x05\x43\x8f\x17\xeb\x8d\xc6\xc8\x0f\x5b\x84\xb8\xea\xc5\xa1\x72\xa5\x35\x60\x0b\x2d\xd5\xbb\xab\x09\xd0\xaf\xad\xcd\x06\xca\xa2\x61\xbe\x70\x8a\x57\x17\x94\xc0\xec\x0d\x4f\xd3\xdf\x50\x6e\x41\x58\x5f\xec\x95\x08\x49\x6b\xda\xb3\x34\x87\xb8\x9e\x5a\x2e\x02\xd5\xd1\x9f\x96\x2a\x57\x85\x30\x2f\x58\xac\x3c\xd2\x12\x2e\x04\xa0\x0b\x52\xe8\xb2\xeb\xfd\xa5\x49\x72\x85\x5c\x47\x3c\x8f\xd2\x92\xda\x52\x47\x8a\xb4\x95\x1a\xed\x4e\x86\x1a\x71\xf1\x6e\xe7\x5d\x57\x0a\xd5\xaa\x5a\xca\xf2\x80\xae\x2d\x9e\x5f\xb0\xf3\xa1\x8e\xb8\x8a\x1b\x33\x93\xba\xd5\x16\x75\x48\x4a\xf5\xf3\x37\x38\xdd\x52\x1d\xf7\x32\x59\x76\x04\x67\x41\xe7\x0c\xbf\xc1\xc9\x59\x67\x7b\xd1\xa1\xc8\x71\x72\xa6\x14\x3f\x52\xa7\x48\xb6\x15\xf7\x8d\xd0\x9a\xfe\x2c\xcd\xfb\x9e\x32\xcc\x6b\xae\x16\xb7\xd6\x0b\x98\x13\x2a\x8f\xdf\x0a\x49\x0f\xfa\x1e\x33\x16\x98\xa5\xfc\x88\x3b\x83\x64\x9e\x2e\x6c\xf3\xd4\x8e\x9d\x6d\x67\xce\x2c\xe5\x87\xcb\xd9\x8d\xe7\xc7\xcd\xf2\x94\x82\x6c\x76\x9d\x70\x1b\x3e\xfc\x6e\x43\xe5\x9f\x08\x65\xa3\x48\xdc\x51\x6f\x15\xb8\xd2\x7e\xba\x1c\x6a\xc4\xb9\xaa\x1f\x72\xa7\x1f\xfe\x88\xfe\x65\xa7\x4b\x8e\xb2\x94\xf4\xc7\x50\x78\x04\x69\xef\x76\x3b\xe8\x7d\xe4\x78\xa5\xd7\x65\xf8\x1e\x75\x29\x87\x53\x94\xac\xfe\x34\x54\xa4\xf8\xb0\xc1\xe0\xa6\x4d\x23\x63\x6e\xf1\x86\xdd\x6b\xea\xa0\xbc\xd2\x60\x98\xcc\xf0\x3e\x99\xf5\x7a\xd8\xb9\x12\x9d\x90\xb2\x15\x2f\x80\xec\xb2\xda\xfe\x9b\x3c\x05\xad\x96\xb6\xbf\x3f\xd9\xd9\xf9\xbe\x37\x72\x0f\xf3\x68\xed\x2c\x40\x7a\x70\x10\x8a\x5e\xeb\x47\xa5\x49\x0f\xee\x79\x33\x6e\x4f\x49\x45\xfe\x00\x92\xdd\x8e\x95\x96\x2d\x9c\xfd\xc0\x67\xde\x3f\xfc\x91\x78\x9c\xb8\xbe\x2e\xb2\x11\x3b\xaa\x05\x98\xbd\xaa\xcf\x6d\xd5\x99\x67\x9c\xff\xdf\x62\x2a\x74\x1f\x97\x51\xf3\x32\x20\x5f\x1c\xb6\x25\xd8\x4e\x63\x9e\x07\x27\xb6\x7c\x74\xa5\x49\x98\xf4\x6e\xe6\x46\xba\x1b\xc1\x48\x4d\x7e\xba\x8a\x63\x5f\x5d\x48\x1b\x47\x0c\x96\xe9\x0a\x45\x39\xd0\x85\x23\xaa\x89\x0b\x10\x3d\x21\x32\xfa\x05\xe0\x1d\x27\xd2\x7b\x11\x88\x4f\xd2\x8c\x44\x7b\x5e\xe1\x0c\x58\x50\x9a\x50\x6b\x64\x8d\x23\xe9\xfb\xa8\x4d\x65\x17\x05\x50\x29\xcd\xf9\x75\xd8\x18\x26\x87\x89\xb2\xd2\x8a\xfa\xe2\x8e\x64\x2c\x07\xe9\x64\x1e\xb7\x4d\x25\xf1\xad\x07\x6c\x43\xdd\x09\x40\x02\x62\x90\xb2\xf1\x66\x16\xef\xbb\xf2\xb2\x99\xbe\x40\xb0\xeb\xe4\x56\xad\x50\x6e\xd3\x68\x93\x68\x95\xaa\xbe\x2c\x7a\xe1\x70\x1a\xb5\x8d\x4e\xc6\xb0\x3a\xa9\x81\x1d\x6f\x4f\x38\x64\xdf\x73\x2a\x3e\x21\xab\xa0\xf7\xf0\x19\x26\x76\xde\x0f\x27\x4e\x51\xbc\x5d\xe3\x0d\xb2\x7b\x3d\xbc\x4f\xba\x5d\x31\xa6\x38\x07\xe1\x98\x76\x80\x91\xeb\xcc\x70\xbf\x6f\xfa\xa5\xae\x54\x1e\x4e\xcc\x61\x73\x07\x73\xc3\xa7\xa5\x1b\xc9\xe7\x8b\xdb\xb6\x00\xea\xcd\xbe\x84\x9b\xc3\x4d\xbd\xd9\x97\xb2\xd9\x37\xf3\xa5\x3e\x37\x2f\x3f\xac\xa9\x43\xb0\x01\x4b\xd9\xd4\xcb\xb2\xa9\xf5\xbd\x85\x86\xa6\xbe\x65\xeb\x7a\x5e\xf4\x9d\xcd\xa2\x9e\x1f\x55\xa7\x7b\x6e\xd4\x79\x83\x1c\x56\x1c\x80\x37\x0c\xf0\x6a\x7c\xf7\x43\x08\xa1\x1c\x06\x77\x3b\x7f\xc4\x7d\x3f\xf1\x89\x96\x8f\x89\x63\x63\x4c\x2c\x49\xe1\xa6\x65\xb5\x41\x51\x2f\x9b\x29\x5b\xb7\xd4\x59\xb4\x89\xbe\xa9\xd5\x46\x60\xbe\x00\xae\x6c\x36\xa5\x08\xa4\x1f\x3f\xdd\xdf\xae\x5d\xc3\xa8\xb6\x64\x25\x71\x46\x6c\xb3\x7f\x56\x79\x9d\xf1\x67\xd9\x5b\x66\x1b\x93\xb3\x25\xe6\x9b\x39\x3b\xd2\x19\x7b\x9d\x02\x75\x03\x57\x87\x7f\x02\x5c\x2d\x1a\xb5\xa1\xb4\x28\x8a\x16\x73\xb7\x4d\x01\x46\x7e\xe8\x7f\x9c\x21\x5d\xb9\x0d\x01\x49\x79\xaa\x53\xb7\x8f\xe3\xb7\x15\x72\x79\x95\x21\xe5\xd7\x16\xca\x0c\xed\xd7\x16\x72\xe3\x84\x50\x98\x9b\xa6\xca\xdc\xb4\x7c\x86\xed\xc3\x2f\x12\xbc\xef\x15\x86\x3f\xbf\x6f\x80\x2b\xf7\x0d\xbe\xf3\x4b\x1d\xa9\x7e\x85\xa1\xdc\x60\xe0\x0b\xe3\x7f\x4c\xd7\x17\x68\xb7\xbf\xe5\xdd\x85\x26\x79\x14\x82\x5b\xbc\x12\x23\x5a\xd5\x9c\xbe\xda\xec\x12\xc3\x62\xb7\x4b\xbf\xdb\x2b\x0b\x72\x48\xbd\xd6\xbc\x1b\x58\xc7\x2f\xee\x3c\x7f\x61\x39\xc5\xab\x3f\x05\xf7\x15\xca\xcb\x0a\x79\xdb\x65\x05\xc9\x56\x96\xc5\x1c\x47\xc5\xce\x4f\xe5\xe2\x45\xb0\x67\x8a\x11\x8d\xf3\x1a\x44\x6b\x46\x98\x27\xc5\xf2\x3d\x5f\xd2\xeb\xb1\x1b\xc7\xc3\x29\xbf\x63\xa0\x17\xe2\x97\x45\x96\xd3\x16\x5d\x0c\xe1\xfd\x70\xb2\xdb\x0d\xc7\xfb\xb8\xc9\x9d\x02\xcb\x1b\xd0\x4e\xab\x08\xc0\x2b\x35\x50\xe0\x55\x79\x77\x16\xaf\xa0\xe7\x7e\x2a\xc3\x3d\xdc\x0f\x27\x45\xa5\x43\x74\xbb\xb8\x4f\x0e\x94\xc6\x55\xd6\xba\x28\xa8\x0c\x6b\xd7\x39\xdc\x06\x16\x54\xd9\x52\xe7\x8a\x72\x11\xc1\xeb\xd8\x28\x9c\xff\x04\x5f\x0a\x61\x3c\xfa\xd3\x7f\x23\x44\x0c\x47\x7f\x5a\xae\x83\x00\xeb\xfe\x93\x7b\xf5\x8b\x20\xd7\x8d\x84\xec\xda\xa7\xa6\x31\x7c\xf0\x95\x0f\xfd\x2a\x86\x31\x0c\x7c\x37\x57\x36\x5a\x86\x9c\x86\x2b\x1b\xd9\x07\x5c\xd9\xe0\xe2\xf6\x1d\xdd\xd7\x78\xdf\x2b\x1a\xef\x71\x27\xe3\x86\x4b\x18\x93\x71\xf8\x51\x9e\xcf\xb9\xed\x58\xf5\x6a\x7e\xe9\x3a\x45\x18\xd5\x65\x57\xda\xcb\xfb\xf2\x5e\x84\xf1\xec\x7e\x36\xe3\xaf\x34\x88\x81\x48\xd6\x61\x56\x6e\xf6\xf1\x2b\x05\x38\x17\xd9\x99\x07\x61\x2f\x72\x67\xb8\xbc\xf1\xc0\x76\x02\xcb\xa7\xd7\x31\x1b\xef\xcd\x7c\x99\xe3\x98\xee\xaf\x32\xdd\xfd\x15\x31\x76\x0d\xb2\x39\x5a\xc8\x19\xae\x54\xe7\x33\xe5\x8b\x89\x98\xaf\x24\xc3\xc0\x07\x04\x06\x7e\x39\xdf\x9e\xc7\xef\x1e\x71\x6f\x0b\xa2\x07\x9c\xc7\xef\x24\xf6\x5c\xa4\x10\x40\x0e\xfc\xe1\xa8\x6e\xb3\x52\x87\xe5\x16\x26\x49\xca\xac\x4c\xce\x98\x32\x96\x75\xc8\x3a\x4e\x3a\xfe\x70\x64\x89\x2e\xac\x99\xf6\x3d\x4c\x48\xe0\x4b\x6e\x73\x02\x2a\xce\x1f\x72\x59\x40\x15\x5e\x79\xa3\xc8\x2b\xe4\xd6\x72\x3e\x5c\xbd\x53\x57\x5e\xbc\x91\x59\xda\xab\x0c\x51\x89\x62\x7b\x2b\x79\xa9\x6e\xf1\xd8\xe3\xed\x49\x35\x61\x45\xbf\x1f\xe6\xc7\xdb\x13\xda\xd7\xc5\x45\x2e\xe3\x86\x49\x56\x61\x6c\x1b\x5b\xb5\x1b\x0f\x62\x39\x46\x35\x0b\x8d\x41\x0e\x90\x52\x03\x35\xc6\x00\xa4\xd5\xac\xcc\x52\xc6\x39\x06\xc4\x23\x0d\x41\x35\xd6\x00\x7c\xb8\x7a\xd7\x84\xed\xe1\xea\x1d\x43\x68\xb0\xa9\xce\xb9\x12\xa4\xe4\x59\x23\x27\x29\xa0\xc6\xc3\x2a\x53\x01\x2a\x48\xca\x5b\xa8\xe4\xea\x7c\x51\x31\xf6\xd2\xd8\xc1\x2d\xbc\x90\x58\xbf\x94\xcc\x9b\x93\xda\xba\x47\xaf\xd3\x9c\x2c\x0e\x0e\x26\x20\x83\xfe\x50\xee\xe4\x57\x92\x67\x59\x1f\x53\x55\x47\xa0\xe6\x5d\xf4\x22\x4b\x49\x4a\x2e\x2f\xc4\x73\x18\x83\x65\xbc\xd9\x54\x39\xc6\x16\xfe\xaa\x03\x22\xf3\x80\xba\x4d\xb8\x2b\xa2\xfb\x51\x42\xa9\x86\x01\xa4\xa9\xd5\x06\x88\xde\xd1\x0e\xa0\x29\xae\x4e\x13\x05\xae\x3a\x29\x45\xfb\xfd\x06\x13\x44\x36\xe0\xe6\x9d\x0d\xca\x73\xd9\xdf\xfb\x1e\xb3\xd8\xa3\x43\x41\xbc\xd9\xa4\x6f\x99\xcd\x5e\x13\xa7\x4b\x52\x16\xcd\x62\xba\xbf\x3f\xd9\x35\xcb\xaf\xd1\xde\x25\x9e\x5e\x6f\x01\xd1\x01\x3e\xc4\x11\x2a\x0a\x7d\xb4\x6c\x63\x88\xab\x33\xc4\x51\x20\x3a\x0f\x76\xcd\x24\x94\xdc\xab\xf6\xee\x96\x26\xfb\x47\xc4\xc9\x79\x23\x75\x1a\x23\x1a\xc6\x44\x9d\x65\x7d\x6f\xd1\xeb\x15\xc5\x3a\xce\x55\x3d\x4a\x1f\x8a\x76\x4b\x27\x41\x0b\xa7\xdf\x30\x5e\xcc\x11\xed\x5b\xce\x81\x5b\x9c\x21\x62\xa0\x33\x0f\xb3\xeb\x79\x00\x6e\xeb\x8f\xda\x56\x05\x5d\x81\x1c\x56\x40\x06\xf9\xf6\x24\xe6\xb3\x02\xc0\x4e\x44\x97\xff\x46\xe1\x77\x36\x1b\x6d\x3c\xb9\x2a\x6e\x1a\x4f\xbe\x8b\x81\xc3\x46\x73\x52\x93\x68\x71\x7f\xb0\x32\x44\xa8\xcd\x7d\xa9\xae\xcd\x5a\x64\x70\x4f\x69\x68\xa5\xf8\x56\x79\xc1\x9b\x3e\xd2\x25\x5a\x0a\x6f\x99\x49\xae\xb4\x2a\xf2\x29\xcf\x7f\x4c\x43\xb2\xf6\xb2\x22\xad\x07\x82\x1c\x66\x73\xd2\xf7\x16\x33\xfe\x07\xfe\x38\x3f\x64\x7e\x69\xce\x71\x62\x7b\xee\xa7\x79\x0f\xd1\xb6\x41\x45\xa1\x74\xb2\xac\x00\xc3\xf1\xc7\xb9\x62\xba\xb3\x5a\xa5\xc9\xe3\x38\x89\xcf\xd4\x6e\x60\x35\xb6\x7d\xcb\x2f\xa6\x60\x39\x9c\x2f\xb4\x7d\xa5\xda\xe6\x07\x83\x69\xdf\xfc\x60\xc9\x73\xb4\x18\x48\xed\x78\xa0\x70\x15\x9b\x34\x5e\x31\x52\x4c\x9b\xbf\x2b\x09\x1a\x11\x20\xb7\xdb\x88\xcc\x06\x70\xce\x4d\xec\xd9\x0e\x61\x31\x33\xa8\x60\x53\x11\x5d\x20\x48\x68\x58\xfa\xdb\x7a\x9b\xc5\x17\x17\x88\x97\x27\x30\x70\x50\xb6\x60\x8a\x09\x7b\x25\xa7\x11\x0a\x49\x4b\x6d\x55\xb2\xe9\x4a\x49\x1c\xe4\x28\x13\xf5\xfd\x06\xce\xcc\x30\xdf\x2a\x37\xb8\x82\x17\x10\x42\xba\xd4\x82\xb8\xdc\xaf\xe0\x3b\x11\xf5\x91\xef\x28\xdd\x6e\x56\x6c\x94\x13\x75\xeb\xc4\x49\x87\x21\xa2\xc3\x20\xe9\xac\xe3\x5c\x28\x96\x28\xe9\x50\xce\xb2\x71\x50\xa7\x9a\x0e\xe4\x8a\xfd\xe2\xda\x2d\x52\xed\xa2\xb6\x13\x38\xd9\x62\xef\x92\xf0\xbd\x4b\x30\x19\x8f\x3f\xd2\xc5\x0e\x77\x2f\x76\xe7\x02\x7f\x81\xd1\xdb\xfa\xc6\x74\x30\x9e\x0c\xf9\xc6\x34\x73\x70\x5b\x85\x6f\x58\xa2\x96\xa6\xb0\xdc\xd9\x99\xd4\xd0\xd9\xab\x67\xa4\xc0\x09\x1f\x30\x8c\xb5\x94\x01\x49\x87\xc0\xce\x72\x9b\xe5\x69\xf6\x43\xbb\x11\x70\x70\xa9\xc1\xfc\xa0\x05\xe6\x1d\x83\x79\x83\xd1\xdb\x8b\x34\x23\xad\x98\x28\xdf\x19\xe4\x49\x9c\xa3\x56\x28\x9a\xc8\xa0\xb8\xd8\xb4\x80\x6d\x70\xa2\x6c\xf8\x29\xf4\x23\x9c\xa0\xfa\x04\x62\x00\x9f\x21\xca\x0d\x36\x70\xca\xa5\x19\x77\x7b\xca\xf9\x4c\x31\x08\x5e\xdb\xc4\xa1\x38\x9f\x6c\x37\x9b\x23\xc4\x26\x06\x0d\x3e\x1f\xd0\xb8\x7b\x31\x61\x2f\x25\xd0\x46\xfb\x2e\xa4\x42\x2b\xbd\xe1\xc8\x42\x97\x07\x1d\xf2\x9a\x6d\x0b\x5a\x67\xc8\x19\x89\xf3\x2f\x79\x9f\xae\xf2\x92\xc2\x0c\x54\xea\x35\x4c\x67\x80\x25\xb3\x19\x53\xa4\x3f\x9c\x3d\x1b\xed\xbb\xcc\xe3\x70\x0d\xb6\x5c\xfc\x4b\x3f\x85\x3c\x31\x8d\x57\x0a\x05\x20\xd2\x48\xa2\x9a\xc6\x1b\x47\x32\xdb\x29\x98\x1d\xcc\x26\x26\xa8\xbc\x64\xc0\x37\x51\xea\xa4\xb6\x81\xb2\x7e\xec\x7f\x37\x2d\xf6\x24\x3e\x47\xf9\x45\xbc\xa4\x8d\xd1\xe0\x85\x61\x3c\xf6\xa4\x53\xe1\x91\xcb\xdd\x30\x68\xee\x85\x13\x75\x41\x2f\xbd\xb5\x7b\xe1\x65\x9a\x95\x36\x99\x69\xc2\xa9\x38\x5a\xc7\xc9\x19\x6a\xb8\xaa\x94\x37\x7b\xf3\xad\xe7\xaa\xa0\xe2\xfe\x7c\x45\x29\x49\x9a\x9d\xc7\x1b\xa8\x77\x13\xd5\x45\x14\x4d\x03\xde\xcb\xf2\x01\x87\x06\x16\xff\x6b\xa9\xe1\x74\x43\x50\x96\xc4\x04\xdd\x16\x4f\xbc\x21\xc0\x52\xb9\x2c\xbd\xfe\x0a\x46\x12\x7d\x47\x4e\x5d\xe5\x34\x57\xa9\x0f\xf3\xf1\xc8\x52\xf8\xbe\xa0\xc3\xfa\x76\x87\x7f\xe8\x67\x21\x26\x0d\x7c\x0f\x51\x59\xd8\xd7\xeb\x69\x6c\x74\xf2\xa8\xd9\xfb\xe3\x8a\x37\xa6\xd3\x5a\x55\xed\x59\x6d\xfa\x63\x55\x45\x1d\x9e\xb3\x83\xf3\x4e\x82\x30\x59\xa3\xac\xc3\x0b\xa7\x7f\x3a\x1a\xd7\x58\x2d\x79\x52\xb5\x3b\xf3\x58\x66\xf9\xdc\xde\x8e\x82\x4d\x12\x61\x15\x87\x4a\x68\x45\x43\xab\x46\x55\xb9\x86\xee\x92\x14\x60\x3c\x1d\x0f\x3f\x72\xd3\x2e\x67\x52\xa4\xf9\xc5\x53\x51\xd7\x8c\x8b\xbc\x17\xb5\xde\xba\x30\xea\xc8\xaa\xd3\x08\x89\xe0\x01\xb1\xd1\x40\xed\x44\x38\xcc\xf1\xc9\x75\xc8\x5a\x0a\xbc\xdd\x8d\x04\x83\x10\x03\x52\xba\x1d\xa1\x7f\xab\xe4\x5c\x87\xb2\xa5\xd8\xd6\x8b\x4f\xed\xe4\x54\x20\x69\xc1\xd7\x65\x6e\xcb\x76\xab\xfb\x0b\x46\xc1\x4f\xeb\x05\x5f\x97\xb9\x2d\x5b\x51\x80\xb1\x3b\xfd\x28\x3f\x8d\xc2\x9b\xbd\x21\x8c\x5a\xdc\xed\xa5\xd1\x4c\x18\x6c\x4d\x2f\xf9\x1a\x14\x57\xb8\xf8\x4b\x11\x79\xb5\x6b\x36\xe5\x95\xb0\xda\xd8\xf7\x05\x8f\xba\x4d\x6e\x23\x43\x91\xd7\x50\x5c\x4b\xb6\x01\x0a\x11\x63\x78\x18\x1a\x4f\x2b\xd0\x59\xfc\x4d\x9c\x89\xf5\xa4\x5c\x7a\xbe\x5a\xa1\x65\x9a\xc5\x04\xed\x76\x26\x30\xc8\x38\x78\x0e\x52\x18\x67\x67\xdb\x73\x94\x10\xb5\xfb\x99\xc0\x74\x3f\x38\x24\x6c\x89\x0f\x21\xcc\x0e\x33\x79\xf4\x7f\x86\xc8\xd3\xb7\x89\x6c\xd2\x7b\x28\x5f\x66\xf8\x82\x36\x07\xdb\x12\x60\x9b\xf7\x56\xca\x40\x2d\x08\xa9\x0e\x9d\x9e\x76\x9e\xa3\xd3\x0d\x5a\x92\x6e\xd7\x92\x24\xd4\xd2\x06\x92\x4c\x27\x81\xd5\x28\x45\x2f\xdf\x81\xa7\x8b\x24\x4a\x78\x0c\xb5\x13\xea\x98\xae\x17\xe3\x7e\xdf\x61\xe6\x43\xf1\xc2\xe9\x76\xed\x04\xda\xb4\x16\xb9\x9d\x38\x51\x7a\x40\x03\x14\x4d\xe2\x44\x2c\xe0\x38\xbb\x5d\xa2\x76\x87\xd3\x83\xa0\xdb\x4d\xba\xdd\x36\xc1\xa5\xf9\x40\x52\x88\x73\x4b\xc5\x5c\xb6\x26\x37\x39\xab\x24\x41\x45\x72\x2f\x4e\xf4\x0f\x40\x4e\x51\xcc\x3e\x58\x5b\x12\xc2\x00\xc9\xe0\xf1\xc3\x27\x0f\x1f\xbf\x7c\xfc\xea\xf9\xd3\x2f\x8f\xb5\xcf\xa3\xa7\x8f\x8e\x4d\x35\x2a\x55\xca\x53\x22\xdd\x5a\xc5\x54\x19\xf6\xa7\x43\x07\xac\x21\xb6\xfd\xe1\x64\x48\xf5\x62\x03\x85\x0f\x2a\x45\x78\x6c\x8d\xba\x81\x55\x4a\xb8\x22\x26\xd5\xb0\x44\x57\xc3\xd8\x1a\x85\x01\x57\x3a\x87\x39\xa3\x17\xd7\xa9\x6b\x38\x7f\x99\xa3\xec\x78\x99\xa5\x9b\x8d\xe1\x6a\x3f\x4d\x9e\xa3\x1c\xff\xa8\x49\x67\x4b\x9b\x75\x36\x1d\x5e\x65\x37\xf4\xb4\x34\xe1\x05\xdd\x1e\xa7\x0e\xaf\xb2\xeb\x38\x97\xe9\x26\x87\x7c\x77\x26\x7e\x67\xa3\x41\x16\xbf\x7d\x7a\xc1\x8d\xd0\x69\xd2\x6e\xe7\x02\x93\xf3\xd2\x1b\x40\xfa\xb6\x2d\x1f\x4d\x32\xf3\xd1\x06\x12\xf9\x04\x6b\x1b\x6a\x10\xab\x86\x63\xc7\xa6\x6b\x9c\xb3\x9d\x31\xca\x04\x6d\x09\xcc\xe8\x45\x1a\x0d\xc4\xc0\x3b\xd0\x32\x54\x1a\x82\x6b\x88\x57\x14\x41\x84\x00\xcd\x1b\x91\xc2\x31\x77\xe5\x35\x2c\xa5\x71\x47\xbd\x89\x8b\x9c\x7d\x70\x3b\x07\xaf\xb2\x4b\xc8\x71\xf0\x57\x51\x67\xea\x0a\x66\xbc\x5c\xa3\xd5\xdd\x4d\x9c\xbc\xa6\x0b\x3b\x90\x75\xbb\xca\xed\xb9\x50\x18\x29\x61\x34\xf6\x0c\x91\x07\x67\xb6\xeb\xb0\x07\xa1\x4f\xcf\x44\xd4\x5d\x15\x75\x72\xb6\xdb\xd9\x19\xc4\x2c\x56\x22\xd4\x2b\x5c\x29\x0b\x66\x0e\xc8\xca\xe5\x1f\x24\x33\xe9\x64\x19\xf3\x55\x78\x0f\x0f\x78\x7d\x5e\xa4\x17\x74\x01\x53\x89\xbd\x9b\x12\x92\x9e\x4b\xb7\xd9\x1a\xac\xa3\x59\x85\xf1\xa5\x37\xce\x1f\x6c\x37\x9b\x59\xca\xe0\xf4\xa5\x7b\xdf\x3b\x44\x87\x32\x2a\x43\xcb\xcb\xe5\x06\xd9\xce\x60\x99\x5e\x5c\x3e\xc8\xd2\x73\x3b\x73\x22\x99\xca\x76\xb6\x32\xe9\x19\xb1\x8c\x17\xdb\x34\x69\xcf\x03\x2e\x28\xd3\x01\x3a\x6c\x6a\xa4\x6e\xd7\xc6\x7c\x27\xa2\x14\x52\x11\xd1\xf7\x80\xeb\x38\x91\x2d\xeb\xd9\x6b\x6c\xe5\xdd\x4e\x80\xf7\x7a\xfc\x45\x5e\x55\xd9\xb4\x9f\xf7\xbc\x99\x22\x6b\x8d\x4f\xc9\xfd\x0d\x62\x73\x93\x9d\xf7\x3c\x80\xfa\x1e\xe8\x7b\x0e\x50\x10\x88\xd8\xa9\x46\x71\xd1\x5c\x9c\xa2\x57\xd0\xe5\x54\xfa\x3c\x17\x5f\x01\xe4\x08\x09\xa4\xed\x9b\xcb\x99\xd5\xd8\xab\x15\x52\xc8\x8e\x17\x84\x25\x0e\x9d\x25\x45\x76\xb1\xab\xd7\x2c\xde\xae\x78\x99\xbd\x27\xa0\x0f\xa0\xd8\xae\x91\xc6\x06\xf5\x0e\xe1\x28\x99\x12\x79\x66\x59\x95\xfb\x6a\x07\x58\xa4\xf4\x10\xc8\x64\x4d\x5d\x07\xe4\x7b\x8a\x3a\x5a\x8c\xdc\xa8\x36\x6b\x2f\xc9\xa7\x53\x54\x75\x9c\xdf\xc0\xcc\x9e\xe7\xb6\x0b\xd6\x83\x87\x62\x24\x12\x49\xce\x02\x6c\x1c\xba\x12\x99\x86\x1f\xa3\xfd\x1d\xad\xe9\xba\x83\xc8\xf2\x94\x06\x58\x89\x6f\xdd\x64\x3e\xdb\xa0\x37\x68\x53\x3e\x72\xc0\xb3\xb1\x4d\x67\xf3\xea\x2a\x4f\x50\x05\x54\xa1\x81\x81\x8d\x6a\x69\x67\x8f\x68\x58\x69\x67\x22\x49\x0c\x92\x12\x9d\x89\x47\x98\x5a\x9e\x09\xe2\xf5\x3d\x46\x0d\x44\x0e\xae\x02\x23\x33\xf6\xb4\x4d\xac\x4c\xb1\xf6\xc6\xc3\xe0\xcf\x15\xbd\x3f\x23\x8a\xde\x51\x9a\xa1\xc7\xe9\x36\x47\x66\x4f\xd0\xb4\x39\xa6\xb0\x09\x6d\x8e\xea\x75\xb1\xd4\xeb\xd6\xf0\xea\xc9\xd3\x27\xf7\xa3\x2b\xa6\x80\xe4\x91\x0b\x32\x94\x93\x0c\x2f\x09\xb3\x32\xde\xf3\x0a\xf0\x03\xcf\x55\xc9\x5e\x99\x8c\xe0\x41\xc8\x7c\xa7\x9c\x6c\x09\x49\x93\x6e\x97\xf9\xfe\x1f\xf0\xe7\x67\xba\x5d\x1b\x0d\x96\x24\xdb\x30\xab\xa2\x41\xbc\xe1\xe6\x45\x7c\x6c\xa6\xc1\x3d\xd7\x29\xc0\x17\x2f\x7c\x57\xc3\x3d\x35\x90\x07\xfe\x5e\x89\xaf\x00\xf7\x9e\xdf\xf9\xbe\x02\xf5\x83\x76\xd0\xdd\x2e\xd0\xc8\x2a\xc0\x9d\x27\x3f\x54\xf9\x02\x93\xfe\x3d\xb7\x28\xca\x47\x35\x36\xfa\x9b\x6c\x82\xfc\x43\x6f\x14\xb9\xce\xce\x16\x94\x1f\x86\xe2\x2b\xde\x90\xc3\x49\xe4\x2a\x01\x09\x61\x59\xe4\xa1\x8d\x77\x70\x14\x02\xbc\x53\x34\xd1\xb9\x6d\x07\x83\xae\x04\x01\x61\xb7\xe4\x1b\x07\x77\xc0\xa4\x12\xc7\x5c\xd4\x05\xbe\xc6\xd5\x43\x8a\xc4\x8f\x5c\xa3\xb6\x84\x4e\x54\x3b\x18\x38\x0e\xc0\xea\x61\xf0\x06\x3f\x2f\x60\x0b\xaf\xee\xdd\x7f\x70\xe7\xe5\xa3\x17\xb4\xee\xa5\x93\x18\x5a\xef\x3d\xcf\xe9\x05\x3e\x40\x54\xe5\xe1\x81\x2c\x7d\xdb\x0b\x7c\x75\xb4\xcb\x7c\xd8\xf8\xc3\xe1\x6e\x47\xe6\x9e\x0a\xf9\x2c\x74\x68\x59\xd1\xd7\x3f\x35\x7f\xfc\xc9\xd5\x92\xf9\xba\x71\x0a\x1e\xf2\x54\xc8\x5f\x38\xc5\xd7\x05\x38\xfe\xfe\x73\xa3\x68\xd7\x90\x18\x5d\x9a\x0e\xad\x73\x2b\xb2\x1e\x5b\xf2\xd1\x87\x9f\x9a\xef\x7f\x72\xc5\x08\x75\x9d\x62\xf6\xc9\x15\x23\x94\x07\xb2\xf4\x6d\xf1\xc9\x15\x11\xf8\x5f\x3d\x7b\xf8\x83\xfb\x8f\x8e\xbf\xb3\x62\xde\xf1\x3f\x97\xa2\x88\x82\x29\x91\x2b\xd8\xd0\xe7\xcc\x55\x4d\xdc\xba\xb9\x4c\x65\xcc\xdc\x5e\x3e\x31\x66\x4d\xa4\x6d\xba\xaa\xb5\x9b\xf2\x46\x96\x92\x94\xe9\xdb\xa5\xeb\xb2\x64\x99\xae\x70\x72\xa6\x45\xf1\x35\xd2\x33\x01\x5b\x9a\xef\xf1\xf8\xfb\x22\x43\x19\xbf\x89\x73\xc2\x96\x2a\x90\xf9\xda\x95\xd3\xbc\x44\xd0\xba\xd1\x9d\x34\x2f\x70\x9a\xf2\xd5\xd0\xf1\x05\x0f\x3b\xbb\x14\x5a\x5c\x27\x3d\xed\x88\xb1\xef\x35\xba\xcc\xed\xb5\xc3\x8f\x71\xe3\xd5\x4a\x66\xb5\x11\x58\x33\xa3\xba\x6b\xb2\x6d\xcb\x6c\xb2\xa6\x36\x02\x5b\x96\x4d\x54\x81\xcd\xec\x85\x89\x97\x94\x17\x53\x05\x8b\xd9\x64\x5b\x98\x68\x4a\x07\x38\x92\xeb\x1c\xaa\xdc\xda\x51\x28\xab\x9b\xb6\x46\x2a\xcf\x20\x04\x88\x31\x31\xbf\x23\x77\xc5\x45\x36\xcd\x0f\x85\xa2\xa8\x09\xd5\x82\x73\x32\xd7\xf6\x86\xca\x6a\xf1\x63\xa2\x7a\xc5\xea\x3e\xa8\xb6\xc9\xeb\x24\x7d\x9b\x74\x24\x54\xc7\xfa\xe4\x0a\x15\xd6\xd7\xa6\x65\xaf\x92\x29\xd4\x22\x25\xda\x9e\xbf\x51\xa0\x20\x52\x3f\x00\x50\x6c\x6d\xe4\x94\x4c\xd5\xaa\x55\xb6\x83\x5e\x2d\xbd\x25\xda\xab\x25\xa1\x9a\xab\xa5\xba\x44\xc5\x22\xac\xda\x91\xe8\x4c\x29\x3a\x4d\xb5\x2f\x89\x91\xb5\xb9\x4b\x15\x24\xc3\x67\x67\x28\x2b\x9b\x5b\x9d\xeb\x2f\xd3\x0d\x3b\xc3\xa3\x81\x03\xd8\x30\x1e\x88\x35\x3f\x1b\xe7\x38\x64\x96\xbe\x6d\x86\xa4\x0b\xe8\xf2\xe9\x53\x7c\x6a\xeb\xb3\x52\xb7\x6b\x4c\x25\x06\x5c\x50\x81\xdb\x6b\x81\x33\xe7\x7b\x5b\xc7\xb7\xdb\x05\x3a\x76\x23\x1b\x9f\x55\x7a\x62\x52\xe9\x99\x73\x9a\x54\x96\x14\xc7\xd4\x9d\xd1\x5f\xda\xc6\x1b\xde\x37\xec\x0a\x08\x40\xc0\x2a\xc7\x7a\x4b\x9d\xef\x98\x8d\x62\x12\x51\xeb\x05\xcd\x9d\x49\xaa\x07\x36\xd2\xb2\x9b\x47\xdb\xa5\xc4\x35\x95\xba\xb0\xcb\x97\xf1\x48\xb7\x6b\x2b\xc9\x68\xa1\xf2\xb0\x36\xda\x0f\x84\xb4\xdc\xc5\x49\x9c\x5d\x72\x71\x51\x47\xb5\x0d\x70\xf7\x62\x12\x0b\x28\x3a\x6f\x39\x35\x11\xa4\xd3\x59\x81\xde\x5d\x6c\x62\x9c\x08\x86\x2a\xdb\x84\xab\x55\xfa\x36\x89\xf6\xf6\x6c\xaf\x8b\x1c\xb0\xbd\xa0\x41\x9f\x06\x57\x59\x7c\x46\x3f\x42\xfa\x71\x9e\xbe\x41\xf4\x63\x42\x3f\xde\xae\x11\xda\xb0\x2c\xa3\x2e\xd5\x58\x8d\x96\x2a\x6f\xda\x60\x21\xe1\xef\xe8\x40\x36\x78\x57\x91\x88\x4b\x16\x7b\xa9\x62\x0b\x65\x7a\x47\x85\x85\x25\x2e\xd3\x4d\x25\x53\x96\xbe\x65\x29\x59\xfa\xb6\xcc\xa8\x2c\x75\xb9\x5c\xb2\xc7\xb2\xa4\x88\x4a\x21\x63\x91\x52\xde\x84\x62\xca\x8a\x20\xd9\x86\x41\x6d\x08\x07\xd9\x10\xfa\xc9\xb5\x54\x1a\xc1\x42\x6c\x69\x5b\x9b\xef\x57\x72\x75\x9b\x0e\x1e\x1a\xeb\x5e\x07\xe4\xb6\x47\x63\x8f\xca\xb6\x72\x16\x60\xe5\x14\x60\x34\x1d\x0f\xff\x7c\x55\xf6\x67\x68\x55\xd6\xba\x20\xf3\xc2\x60\xda\xb2\x20\x93\xab\xb5\x8d\x6c\xbe\xd3\x0c\xa1\x1f\x21\xfb\x0a\x27\x39\xca\xc8\xe3\x74\x85\x98\x5b\x08\xb0\xac\x02\xc4\x17\x17\x1b\xbc\x64\xfe\x8c\x8e\x98\xd9\xd0\xe7\xe8\x32\x8f\xf6\x3c\xa0\x25\x7c\x8e\x2e\x2f\x62\x76\xc1\xf5\x24\x8b\x97\xaf\x11\x41\xab\x67\x71\x4e\x90\x40\x0b\xd2\x0c\x9f\xe1\x84\x86\x84\x03\xc8\x2f\xb3\xf8\x22\x66\xef\xd7\xd1\xc8\x1c\x25\xab\x07\xe9\x72\xcb\xd0\xbe\xd5\x92\xdc\x82\xbf\x95\xb0\x85\x66\xcd\x6f\xaf\x16\xd3\xbe\x70\x1b\xc5\x78\x93\x9e\x55\xf5\xe2\xd4\xd8\x5d\x92\x4e\xb0\x70\xce\xb9\xf0\x90\xfb\x19\xc3\x3f\xd2\x2e\x6d\xca\xb4\xcf\xf0\x6a\x85\x12\xfd\x8c\x80\x3d\x65\x79\x6b\x65\xb7\x84\x16\x59\x2b\xa7\x03\xe5\x33\xb8\xb7\x46\x59\xc9\xa2\x23\xa9\x20\xe7\x33\xc4\xed\x31\xeb\xf0\x2a\x7b\x05\xe7\x73\xf4\x4b\x5b\x94\x93\x63\xb1\xa5\xcc\xb7\x9a\x6f\x5f\xc4\x35\xd9\xdb\x90\xeb\x04\x9c\xa7\x2b\x94\x43\x36\xa8\xb2\xcd\x59\xc7\x96\x77\x85\x57\x68\xf9\x2c\x63\x06\x27\x8f\x6b\x30\xcb\xca\x99\xc1\x07\x63\xa9\xcd\xa8\xf2\x38\x41\x99\x97\x98\x92\xa6\x9f\xb1\xac\x30\x93\xea\x63\xb2\xc2\x89\x69\xab\x8b\x1b\xb5\x35\xb1\x1d\xac\xf4\x9d\x76\xcc\x7c\x63\xf9\x69\x29\x06\xdd\xae\xd8\x91\xde\x83\x10\xcb\x1d\xda\xeb\x79\xcc\xdf\x5b\x05\x65\x69\x9a\x50\xc9\xb4\x4a\xef\x1a\xac\xd0\xc9\xf6\xcc\xfe\x3a\xe7\x4f\xbc\xf2\x27\xa6\x85\xfe\xcc\xbc\x26\x23\x76\x02\x40\x6c\xcb\xe2\x8f\xb2\x20\x1a\x65\x78\xe6\x2c\x3d\x41\xf3\xbe\xc1\x4a\x42\x8a\xcf\xba\x86\x53\x3a\x2e\xbc\x15\x87\xd5\x85\xbd\x76\x7a\x4f\x18\xf6\x0f\xa7\x58\x74\x0f\x41\xb3\xa3\xb4\x00\x39\xca\x6c\xb5\xed\xed\x06\x05\x60\x3d\x78\xf8\x48\xd1\x46\xa3\xfc\xc6\x7d\xf0\xad\x53\x80\xa9\x3b\x0e\x3f\xf2\x0d\x49\x3e\xed\xe2\x34\x69\x9c\x71\x98\x5d\x9c\x3b\x1c\x36\xd9\xc5\xf1\xd7\x89\x3c\x77\xe4\x08\xff\x40\x2e\x58\x43\xb7\xe6\xce\x3e\xad\x1e\xd3\xae\x54\x91\x35\x33\x08\x2d\x69\xc0\x2f\x4d\xd8\x4e\x61\xee\xbf\x9b\x03\xbd\x96\x01\xf2\xc1\xe5\x98\xb9\x92\x7e\x84\x73\xc2\x1a\xe9\x70\x70\x1e\x67\xaf\x85\x41\xa9\x26\x54\x2a\xdf\x73\x31\x36\x35\xbe\xaf\xdf\x62\x91\xd7\x9e\xbb\x05\x75\x65\xa8\xd4\x41\xa8\x86\xfc\x81\x45\x6b\x59\x9b\x90\xea\x85\xea\x0e\xdf\xd3\x06\x87\xef\xfa\x06\x87\xa3\x59\x38\x29\x9c\x6a\xdd\x29\xd8\x59\x37\x2b\xd7\x6f\x55\x2e\x95\xd5\xae\xf6\x6e\xac\xc8\x59\x9a\xa8\xb3\x82\x4b\xcb\x7a\x67\x46\x2a\x89\x57\xa4\xbc\x13\xab\x49\x06\x77\x38\xc1\x5e\xad\x6d\xaf\x3c\xdf\x4f\x70\x80\x66\xba\xef\x14\x0d\x62\x33\xe0\xca\x91\x4d\xae\x17\x0e\x89\xaf\xbc\x83\x29\x27\x8e\xca\x96\x52\xbb\x20\x3b\x1a\x29\xb3\x3a\x18\xf3\xb4\x61\x3b\xc5\xa7\x67\x88\x94\x14\xe4\x77\x94\xe9\xae\x72\xae\x09\x5d\x90\x43\x57\xdb\xcb\x4a\x9b\x0b\x3e\x43\xe4\x73\x74\xf9\x90\xa0\x2c\x66\x3a\xbb\xe3\x64\x30\x1d\x88\x61\x72\xf0\xee\xf0\x90\xe2\xc9\x7a\x76\x19\xf7\x16\xaf\xc8\xfa\xf0\xd0\x73\x00\x3a\x80\x59\xb7\x8b\xf6\xf3\x6e\xd7\xde\xc3\xbb\x9d\x06\xb4\x89\x2f\x51\x76\x78\x68\x9d\xb0\x09\xc2\x72\xd8\x2d\xf9\x6e\xd7\xbe\xc4\x68\xb3\xea\xa4\x4e\x71\x9a\x66\xf7\xe3\xe5\xba\xac\x84\x5e\x07\xf5\xc6\x98\x41\xaa\xc8\x72\xf7\xf2\x73\x44\x07\x2c\x02\x0f\xae\x62\x48\x4c\x5a\xd7\x30\xee\xd9\xa4\x99\xd6\x98\xd2\xba\x96\xb4\x92\x9b\x68\xa5\xcc\x28\x98\xa5\x63\x7d\xfc\xdb\x88\x11\x6c\xd9\x3e\x82\x95\xc2\x5f\x1d\xc0\xca\x14\x61\x35\xbf\x7c\x7d\xc6\xf4\x5c\xf6\xbc\xf5\xf3\xef\xdf\xd5\x0c\xd3\xf9\x6a\xcb\x38\xe7\x3f\x93\xf2\x2e\xe9\xaf\x20\x38\x34\xa1\x61\x36\x58\xe6\xf9\x80\xa4\x2c\xf1\xda\x9c\x6a\x1b\x40\x66\xe5\xc3\x7c\xc5\xce\xe0\x8c\x51\x7d\x9a\x66\xe8\x3d\xa8\x7e\x50\xa3\xba\x82\xe0\xd0\x84\xbe\x8e\xea\x4a\x4e\x93\xea\x07\xcd\x54\x3f\x38\xbb\xd6\xaa\x47\xa0\x96\xab\x00\xda\xa9\x93\x15\xca\xc4\xc0\x7a\xfb\x91\x97\x67\x83\x4d\x48\xaa\xc3\xbb\xb8\xc6\x73\xfb\x41\x5d\xcf\x50\x22\x30\xd0\xaa\x86\xd3\xb6\xda\x15\x5b\xca\x38\x3e\xc8\x42\x39\x4e\x1b\x2c\x18\xa4\x6f\xa8\x8c\xa3\xb7\xcf\xb7\x1b\x94\x09\x85\xa2\xdb\xdd\xbb\x11\x66\x20\xbd\x15\x56\x1b\xfa\x5a\x60\x68\x9d\x6e\x37\x1b\xcb\xa9\xf9\xf7\x29\x2b\x28\x14\x48\xd6\x5e\xda\x15\xab\xa2\x00\x61\x10\x4e\x3e\x4e\xb3\x79\xc8\xae\x08\x11\x6c\x74\x6e\x32\x10\xa1\x23\xee\x13\x8b\x92\x59\x53\x78\xf8\x2a\x9a\x29\x3c\x41\x18\x48\xfb\xff\xd4\x58\x76\x0e\x06\x83\xd2\xf1\x75\x42\x32\x8c\xb8\x02\xf2\x38\xbe\x28\x07\xe6\x39\x01\x78\x91\x9e\x76\x84\x77\x20\x76\x13\x1b\x60\xe6\x42\xbb\xc9\x61\xbc\xc0\x23\x6f\xbd\x18\x03\x8b\x4c\x93\x59\x01\x96\xc3\x2c\x15\xf8\x5a\x89\x66\x26\xf1\x97\x4e\x41\x9c\x80\x75\x9c\xd7\x6e\x19\x49\x60\x9e\x56\x70\x22\x9a\x41\x78\x1a\x1d\x3e\xeb\xdc\x4c\xdb\x58\x7f\x8d\x93\x2e\x0e\xc1\x19\x28\x5d\x80\xc8\x48\x56\xe3\x6c\xf0\xb0\x09\x27\xb7\x2c\x2b\x4a\x8b\x0d\xfd\xa4\xc5\x40\xc0\xcc\x86\xcf\x34\xb8\x4a\xcd\x14\xb0\xa8\x1a\x77\x39\xf5\x50\xdc\x32\xb3\x11\x18\x0c\x06\x5a\x7b\x31\x37\x1f\x25\xba\x7b\xe8\x82\x0e\x07\xc9\x12\xa3\xdc\xb1\x91\x33\xc8\xd3\x8c\xc8\xa7\x26\x11\x77\xb3\xd5\x17\x2f\xf1\x3b\x20\x93\x77\xdf\x85\xc6\x44\x27\x6f\x5c\xbb\x9e\xaa\x13\x44\x06\x78\xc5\xf4\xa9\x3d\x5c\x3f\xa9\x98\x9b\xb4\x2e\x3a\x9f\x5c\xa1\x41\x12\x9f\xa3\xa2\xb3\x62\x74\xe5\x9d\x34\xe9\xbc\x7c\xf2\xf9\x93\xa7\x5f\x3e\xe9\x08\xbc\x9d\x4f\xae\x28\xd2\x62\xf0\xb5\x33\xcb\xe4\x0d\xc4\x42\xed\x32\xc9\x6b\xe4\xee\x21\x9e\xbb\x0b\x4e\x78\x44\xd4\xad\xc0\x53\x5b\x86\xf7\x20\x4c\x6f\x41\xd2\x03\x9c\xe5\x44\x95\xbd\x92\xec\xba\xa4\x55\x2f\xc9\x8d\x49\x47\x8e\x1d\x9d\x4f\xae\xd2\x9e\x57\x74\x96\x69\x72\xba\xc1\x4b\x92\x77\xde\x62\xb2\x66\x54\x8b\x3b\x4d\x1d\xe1\xd9\x43\xed\x66\x96\x6f\x9c\x50\x4a\x10\xed\xa1\x73\xda\x6a\xb4\xe9\xb2\x05\x37\x1a\x9f\x8c\x46\x7f\xbe\x8b\xfa\x67\x64\x17\x95\x64\xf1\x12\x1d\xc5\x9b\x0d\x24\x74\x08\x78\x41\x3f\x1f\xa5\x67\x67\xcc\xd9\x60\xb9\xc0\x6e\x32\x60\x16\x6b\x5b\x3e\x0f\xc4\xf0\x8a\xa1\x8a\x12\x9a\x8b\x99\x67\xdd\x4f\xb6\xe7\x83\x17\xcf\xef\x1c\xdd\x07\x6c\xeb\xa0\x9a\x74\xef\xfe\xdd\x97\xdf\x07\x38\x39\x4d\xab\x29\x0f\x9f\x3c\x78\x0a\xde\xc6\x59\x52\x4d\xf8\xf2\xce\xf3\x27\x80\xb9\x08\xae\xa6\xdc\x7f\xfe\xfc\xe9\x73\x90\x9e\x9e\x56\x13\x9e\x3e\x78\xc0\xad\x0a\xd6\x60\x63\x56\xc9\xdc\x3a\xad\xa9\xaf\x1b\x81\xa5\x76\x65\x50\xc4\x5f\xab\x4e\x55\xb7\x4c\xb5\xcd\x55\x96\x19\xd6\xa9\x14\x10\xdb\x8b\x55\x4c\xd0\x23\x55\x78\x65\x65\xda\xb8\x89\x93\x26\xc7\x17\x68\x89\x4f\xf1\x92\x6b\x17\xfc\xb0\xd8\xb6\x64\x69\x16\x28\x2f\x91\x55\xf1\x3b\x0e\xe0\x3e\x52\x8a\x5a\xd2\x55\x85\xe6\x78\x7e\xd3\x16\x92\x04\x5d\x14\xaf\xd0\x9b\x78\xf3\x28\xfe\xd1\x25\x4f\x8a\x37\xa5\x2b\x84\xea\xeb\x55\x62\xbc\x24\xbd\x9e\xd3\xd0\x8d\xd1\x9c\x2c\xa4\x47\x01\xfa\x43\x17\xa8\x94\x24\xd3\xd1\x54\x4b\x69\x98\xae\x6c\x99\xa7\x12\xda\x58\xe9\x06\x81\x16\x06\x96\xf4\x9f\xa1\xec\xd0\xb2\x22\xeb\x1d\x41\xd9\xf9\xe0\x17\xf3\xa8\x63\x39\x3d\x36\x3c\x62\x76\x53\x53\x9b\xe7\x4c\xf6\xec\x57\xdb\x94\x89\xbe\x3a\x7f\x4d\xcf\x6e\x55\x34\xef\x90\x83\x13\x9c\xac\x6e\x03\xef\x1c\x1e\x8a\x9a\xd1\x08\xc0\x26\x70\xbe\x4f\x77\x4b\x22\x59\x27\x7c\x6f\x22\x59\x11\x1f\x45\x24\xed\xf6\xb7\xa5\x91\x0e\x07\xef\x4d\x22\x2d\xe0\x43\x28\xa4\xf9\x38\x89\x74\x00\xba\x2d\x89\x74\x60\x7a\x6f\x12\x69\x01\x1f\x42\x22\xcd\xc7\x49\x64\x43\xe1\x6d\x69\x64\x43\xe4\x7b\x13\xc9\x8a\xf8\x10\x2a\x59\x46\x4e\x66\x31\x33\x06\x5e\x65\xb8\x9c\x34\x1a\x2e\x83\xda\x4c\x54\xce\x82\xce\xd5\x1a\xa2\xc2\x98\xb7\xaa\x9a\x0a\xd5\x13\xd4\x30\xb2\x27\x87\x11\xcc\x37\x98\xea\xbe\x17\x92\x94\x18\x6f\xeb\xa9\x05\x0e\xcf\x30\x13\x7f\xcb\x62\xf8\x9a\x06\x9f\xda\x6b\x35\xdc\xed\xc1\xc6\xbe\xaf\x5e\x7f\x10\x0e\x19\x28\xff\x00\x72\x66\x6b\x4e\xbd\xfd\xf5\xf7\x37\x97\x17\x6b\xbe\x46\x46\xd9\x4f\x7f\x72\x95\x71\x15\xcf\xa6\xca\x9e\xd8\x3f\xff\xb9\xe3\xa7\x4f\x06\x39\x33\x37\xc4\xa7\x97\x36\x72\xe4\x7b\x71\xa0\x63\x39\x85\xf3\x75\xf9\x4c\x4a\xb5\x14\x51\xf8\x4d\x85\x75\x84\x6d\x1e\xbb\x4d\xc1\xd4\xbf\xc0\xfd\x58\x87\xc5\xe6\xdc\x47\x06\xc2\x46\xe3\xd5\xd3\x67\x2f\x1e\x3e\x7d\x72\xdc\xf4\xb4\xff\xc8\x95\x9b\xe7\xa1\x78\xda\xdf\xf3\x42\x67\x56\xcf\xcb\xaf\xb3\x4c\x5c\x7e\x9f\xc5\x0f\x01\xf7\xe0\x70\x77\x83\x93\xd7\xd1\x9e\x27\x3e\x8f\xc9\xe5\x06\x45\xd6\xc9\x26\x5d\xbe\xb6\x44\xdc\x97\x78\x45\xd6\x91\x84\x78\x98\x70\x43\x11\x01\x99\x6e\xc9\x06\x27\x88\xc2\xe6\x24\x3d\x67\xcc\xca\xa3\x3d\x17\xac\xb2\xf8\xed\xdd\x74\xb3\x7a\x81\xde\x91\x87\xc9\xdd\x0c\x9f\xad\x09\xdb\x75\xe1\xa9\xe9\x92\xe9\xb7\x4f\xdf\xa0\x2c\xc3\x2b\xc4\xf4\x5a\x70\x1a\xcb\x03\xa2\xc7\xe9\x8a\x3d\x84\x15\x59\xf1\x86\x58\x5a\xc2\x31\x62\x4f\x5f\xbc\xc1\xe4\x32\x1a\x82\xd3\x34\x21\x0f\xe2\x73\xbc\xb9\x8c\xac\x65\xba\xcd\x30\xca\xfa\x09\x7a\x0b\x3a\xe2\x03\x74\xce\xd3\x24\x65\xb7\x8c\x2d\x06\x7c\x8c\x7f\x84\x22\x8f\x67\xfc\x12\x51\x9a\x22\x79\x3b\x5d\x8b\xa3\x74\x47\xd6\x49\xba\x59\x59\x00\x9f\x25\x69\x86\xee\x36\x1e\x4a\xd3\x9a\x7f\xc6\xb1\x78\x60\x83\x08\x41\xd9\xf1\x45\xbc\xc4\xc9\x59\xe4\xd2\xc4\xd7\xe2\x5e\x29\xaf\x9d\x94\xfa\xc8\xa2\x63\xa5\x05\x78\xcf\xe7\x69\xfc\x2c\xed\x24\x5e\xbe\x8e\x3c\x14\x80\xda\xd1\x1a\xe5\x59\x5e\x63\x80\x47\xe3\x10\x4a\x9e\xa3\x78\x85\x32\x49\x55\x7e\x9e\xa6\x64\xcd\xd9\x75\x6f\xcb\xb7\x1f\x23\x17\x9c\xc7\x42\xcb\x79\x98\x3f\x46\x24\xa6\x90\x2a\xea\x68\x83\x97\xaf\x1f\xa4\xd9\x12\xe5\xc7\x48\xac\xb5\x19\x00\x4e\xf0\xf9\xf6\xfc\x28\x4d\x48\x16\xe7\xe4\x39\xc5\x15\x79\x40\x3f\xf1\x62\xe7\xf8\x9b\x4d\xfa\x96\xca\x78\x9a\xa3\xd5\x9d\x0b\xac\xe2\x5e\x64\x71\x92\x5f\xc4\x19\x5d\x8d\xd1\x48\x12\x9f\x1c\x93\xf4\x82\x4b\xd4\x04\x90\x35\x3a\x47\xd1\x55\x01\x32\x94\x2f\xe3\x0d\xa2\xd2\xb0\x89\x2f\x2e\x70\x72\x26\x05\xc9\x03\x5c\x72\x28\x81\x9c\xb4\xfc\xcb\x34\x5b\x45\xe9\x00\xe7\x8f\xe3\x25\x78\x8b\x93\x55\x2a\xf5\x28\x8a\x8a\x47\xe4\x92\x19\xe2\xf3\x19\xb9\x64\x89\x69\xb6\x3a\x46\x74\x8d\x40\xd2\x2c\xb2\x3a\xb6\x33\x5f\x5c\x15\x3f\x0b\xbe\xb2\xbe\xb6\x40\xbc\xe1\xc5\x3c\x4e\xdf\x20\x71\x0c\x4f\xd9\xbe\x4c\x93\x37\x28\x23\xf7\xd3\x0d\xab\x01\xca\xce\x9f\xc4\xe7\x48\x28\x3a\x16\x58\xd2\x35\xa8\x30\x33\x62\x86\x0a\xfa\xa6\x15\xaf\xa8\x5b\xcc\xe4\x83\x18\x73\x25\x6d\x42\xbc\x2c\xcf\x75\x2d\x60\xf9\xec\x37\x60\xbf\x21\xfb\x1d\xb2\xdf\x11\xfb\x1d\xb3\xdf\x09\xfb\x9d\xba\xae\xb5\x10\x9b\x46\xb1\xd2\xc2\xf3\x5b\x3b\x8d\x48\x13\x5d\xd7\x6d\xd8\x45\xcc\x9a\x77\x11\xeb\xb9\x2a\xa8\x84\xe9\xac\xf2\x58\x44\xe7\xd6\xea\x28\x54\x18\x3b\x13\x38\xe9\x30\x97\xbe\x2c\x84\x1d\x92\x5d\x6a\x6e\x2e\xc9\x62\x86\x35\x6f\x58\x71\x82\x09\xfe\x11\xba\x93\xac\xbe\x88\x37\x98\xea\xdb\xbc\x6c\x9b\x80\xcc\x29\x96\x31\xe1\x5b\x55\xc6\x24\xca\x8e\x74\x59\xfd\x94\xa6\x2d\x6d\x30\xe4\xb6\x2d\xa5\x12\x2b\x5f\xeb\x88\x6c\x2f\x04\x60\x6d\x01\xc1\x36\x65\xda\xde\x32\xd6\x55\xf9\xb2\xdb\x6b\x1b\xa7\xfa\x71\x71\x65\xe8\xe3\xa6\x98\x8e\x53\xb4\xac\x46\x6a\xf7\xd6\x4d\xb6\xdb\x18\x1e\x5c\x61\x7e\xe3\x46\x78\x5d\x28\x0b\x9b\xa3\x85\x53\x50\xcc\x8f\xb7\x1b\x82\x2f\x36\xe8\xbd\x31\x73\xcf\xed\xca\x97\x3b\x76\x68\x29\x14\x67\x85\x5b\xea\x24\x0e\x51\x72\x98\x13\x18\xda\xaa\x35\x09\x70\xea\xfb\x39\x4f\xd2\x0e\x6f\x0e\xbe\x0b\xf3\x1a\x5d\x96\xe6\xb0\xc6\x7d\x7d\xbd\x5a\x05\xc0\x50\xb8\x3a\xf8\x0e\x8b\xc3\x37\x8a\x1b\x52\xce\x76\x0d\x72\xf6\xd8\xe3\x62\x0d\xec\x57\x2f\xdf\x55\x3a\x8b\x3a\xbe\xaf\xf6\x88\x0a\x8a\xf2\xb2\x1e\x5d\x5c\x47\xda\x0a\x87\x2a\x1e\x39\x22\x11\x36\xa2\x5a\x37\x33\x34\xa9\x07\xac\xcf\x14\x37\xd4\x52\x3e\x58\x23\x1e\x7b\xb3\x34\x05\xc1\x8a\xf0\xa9\x8d\x77\x3b\x1b\xd7\x95\x14\x2a\x72\x60\x4f\xd7\x3c\x79\x1b\x0a\x9d\x82\x0a\xea\x6e\x67\x6d\xa9\x3a\xc5\x14\x07\x11\x71\x12\x67\x2c\x58\xd8\xb8\xa1\xcd\xac\x4f\xae\x70\x61\x31\x17\x27\x29\xe9\xc4\x9d\x37\x94\xdc\x0e\x53\x9e\x3a\xa7\x69\xd6\xa1\xed\xf7\xb5\xfe\x2e\x87\x65\x8c\xf4\x56\x74\x0d\xb1\x7a\xae\x52\x05\xb0\xa2\x4a\x04\xd5\x09\x58\xbd\xad\x64\x7b\x7e\x82\xb2\x72\xa5\x8d\xbb\x5d\x6f\x9f\x36\x3f\xde\x87\x1e\x0a\x1c\x8e\x0f\xc3\x64\x80\x93\xe5\x66\xbb\x42\x74\x3d\x7d\x88\xa3\xa6\xd2\xf5\xc2\x35\x6d\xcb\x8a\x30\xbf\x0f\x79\xba\x49\xd3\xcc\xc6\x0e\x87\x28\xf5\x0d\x41\x9e\x3e\x9f\xf2\x46\xd9\xaf\x3b\x88\xfc\x9a\x72\xa7\xb3\x8c\x13\xe1\x63\x77\x83\xf2\x9c\xbb\x89\xf4\x00\xe7\x61\xd4\xa1\xfc\x35\x19\xd8\x34\xf5\x2b\xb2\xce\xe3\x77\xb6\x07\xd4\x45\x4d\x5f\x84\xd9\xd1\x9a\xed\xb9\x9f\x62\xe7\x7b\x9e\xeb\x18\xf8\x4a\x0d\x87\x11\x6a\x4b\x4c\x38\xb1\x31\x08\xfd\x69\x38\x1d\x8d\xfd\xe9\xd0\x71\xf6\xdd\xf7\xa8\x81\x7b\x4d\x0d\x1a\x95\x46\xc1\xb8\x9a\x2e\x25\xb8\x07\xdf\xa7\xf0\x34\xeb\x30\x1b\xe3\x0e\x49\xaf\x25\x84\x6a\xdc\xa2\x5c\xaa\x84\xb3\xa2\xf6\x70\xb7\xcb\x9d\xba\x37\x97\x27\x9f\xdd\x4e\xb6\xe7\x28\xc3\xcb\x6b\xb0\x97\x1a\x0e\x6d\x1e\x7c\x78\x78\x55\x48\x33\x02\x5c\x14\xb5\x55\x45\x5c\x00\x7f\x34\x72\xff\x7c\xa3\xfa\xcf\xc8\x46\xf5\xd3\x7c\xf9\x08\x27\xaf\xaf\xbf\x82\xc9\x36\x7a\x13\x58\x83\xbe\xc6\x51\x4d\xb3\x11\x6c\x42\x57\x7b\x2b\xe8\x01\xe3\x48\xef\x4b\x4c\xd6\x0f\x57\xf2\x04\x53\xf3\x55\x7f\xf7\x92\x96\x56\x26\x29\xd3\x20\x1a\xdd\xe6\xbd\xaf\x62\xa9\xa8\xbf\xc5\x8a\x06\x78\xa5\x9d\x75\x0d\xe2\xd5\xea\x31\x3b\xa9\xb6\x89\xb8\xc3\x4f\x06\x97\x0e\xc8\xe0\x15\x2d\x3d\x42\x00\xaf\x22\x9d\xf0\x5e\x8f\xad\xe9\xf2\x68\x8e\x17\x45\xf9\xd2\x4d\xc5\xa8\x88\x65\xc8\x98\x25\x10\xc7\xfe\x20\x4b\xcf\x19\xc5\x19\x15\x8e\x86\xfa\x89\x63\x46\xbc\x02\xdc\xc5\xc2\xaa\x50\x2f\x78\xa8\x37\x29\xce\x10\xb9\x9f\x90\xec\xf2\xe1\xea\x73\x74\x69\x63\x47\x3d\x2b\x61\x30\x91\x9d\xd8\x65\xec\xb8\x2e\x37\xfd\x84\xad\x56\x8f\x70\x82\x5e\xa4\x8c\x90\x9c\x96\x65\xd4\x99\xc6\xa8\x66\x6f\xe5\x4c\x02\xaf\xea\x2c\x79\x8d\x2e\xa3\x16\x1a\x19\x1b\xb1\x64\x5a\x5a\x32\x2d\xbd\x3d\xd3\x12\x90\x2a\xa6\x99\x75\xa5\x5c\x4b\x06\xaf\xd1\x25\xed\x42\x2d\x5c\x4d\x68\x4d\x69\x0f\xa3\x5c\x35\x99\xd0\x70\x08\x6e\x64\x2f\xfd\x3f\xd2\xc9\x5b\x38\x61\x40\x6f\x50\x76\xc9\x2d\x30\x69\xc4\x1e\x84\xc4\xd1\xec\xcc\x5a\xe5\x50\xe7\xa8\x33\x33\x7c\x54\x20\x07\xa0\xdb\xb3\x03\x03\x66\xd5\xc9\x5d\x58\xbe\xbe\x17\x93\xb8\x76\x9e\xdc\x50\x8b\xc3\x01\x8d\x2c\x2a\x2d\xa4\x32\xd2\x49\x85\x32\x68\xc6\xae\x8d\x6e\x33\x5c\x7c\x5d\x34\x17\x6f\x30\x0d\x49\x77\x1d\x95\xa7\x9c\x30\xbb\x48\x6d\xb8\xdb\xc0\xc0\x73\x00\xef\x83\xba\x3f\x8f\x6e\x57\xf4\x4e\xb6\x8c\x60\xef\x53\xe0\x95\xba\x4b\x65\xb4\xb6\x30\xbc\x43\xb4\xc1\x1b\x9b\x5b\x01\xe0\x95\x23\x0c\x5f\x2b\xe3\x55\xd2\x7a\xf9\x65\x01\x12\xa7\x00\x93\x20\x0c\x3e\xc6\xb3\x03\x3f\x79\x16\x56\x5d\x69\x06\x49\xcb\x31\x3d\x3b\x14\x64\xb1\xdc\xc6\x2f\xbb\xac\x3e\x26\x61\xad\xf0\x27\x24\xce\xce\x10\xb1\x40\xc6\xbe\x56\x5a\x7e\x6b\x56\x47\xa0\x46\xcf\xb6\x32\xeb\x3a\x77\x07\xcd\xb3\xc5\x6e\x37\x5f\x14\x0d\xb4\xeb\xe0\xec\xcc\xbd\x52\xa0\x30\xd5\x28\x9f\xeb\xa8\xa6\x8b\xee\x23\xfd\x79\x18\x3a\x42\xaa\x9e\xef\xa9\x2a\x08\xf5\x9d\xe4\xbf\xf0\x50\xd4\xe6\x49\x7c\x8e\xfa\x2b\x49\x20\x55\xb9\x3a\x69\xb2\xb9\xa4\x6a\xd0\x36\x47\x2b\xaa\x66\xc9\x89\xbd\x13\x77\xd8\x04\x8a\x08\xca\x2c\x67\xb6\x67\x14\x9e\x3b\x57\x84\x3b\x12\x26\x87\x84\xbf\xec\x94\xaf\x6d\x3a\xb0\x21\xc0\x8d\x0d\xf2\xc2\x89\x6c\x9a\x04\xe7\x66\xf4\x02\xb0\x9c\xc4\x29\xec\x1c\x20\x90\x3a\x6a\x40\xa3\x8b\x7f\x7e\x7d\x9d\x39\x50\x46\xa0\xce\x10\x6e\x0a\x92\x3b\x20\x2f\x0a\x40\xe7\xd5\x8f\x34\x31\xaa\x5b\x0f\x92\xc1\xc3\x97\x86\x2f\x35\x1a\x53\xe9\x03\xa4\x7a\x38\x40\x63\xb4\x53\x04\x62\xec\xb8\xd3\xc4\x16\x5b\xa6\x87\x15\x7f\x25\xc4\xb8\x3a\x26\x3f\x8d\xcb\x67\xa4\xd2\xed\x1a\x76\xac\x99\xcd\x13\xd3\x1e\x67\x35\x68\x9b\xf9\xeb\x31\xe5\xd4\xb1\x2d\x03\xc8\x62\xac\xa9\x95\xdc\x92\xb5\x0a\x57\xe6\xbe\x45\x46\x33\x8f\xc9\x8c\xb6\x6c\x06\x14\xcf\xd9\xc8\xde\x96\xfc\x4d\xb0\x96\x03\xf4\xbe\x8a\xe6\x88\x1f\x93\x40\x77\x01\x2d\x16\xb2\x00\x8d\x64\x47\x92\xd0\x5b\x40\x8b\x85\x78\xe4\xc3\x27\x0f\x9e\x42\x7f\x01\x2d\x1a\xe0\x51\x5f\xde\x79\xfe\x04\x06\x0b\x68\xd1\x00\x8f\x62\x47\x5c\x30\x5c\x40\x8b\x85\x78\xe4\xd3\x07\x0f\xe0\x70\x01\xad\xa7\x0f\x1e\x58\x85\x9d\x33\xcb\x57\x43\x74\x72\x78\x55\x38\xac\x8a\x9a\x78\xb5\x54\xac\x84\xe0\x4c\xa9\x88\x68\x4b\x2e\x13\x4a\xe4\x34\xc5\xbd\x2d\xa7\x01\xc5\x73\x56\xba\x4e\x4b\x4e\x13\xca\x6a\xe9\x89\x2d\x99\x6b\x80\x96\x53\x00\x2f\x9c\xb8\x1f\x37\x14\x54\x28\xbf\xe6\x1c\xc8\xf7\x87\xa5\x49\xa1\x30\x62\x42\xef\x48\x16\x2f\xc9\xf1\x3a\xdd\x6e\x56\x3f\x97\x62\x6d\x86\x10\x37\x6c\x0b\x13\x92\xed\x27\xe8\xd3\xc8\xc1\x81\xd7\x0d\x2a\x40\x54\xd4\x3f\xc7\xfc\xc1\xa8\x12\x4e\x41\x71\xde\xc8\xea\x7d\x41\x6b\xc3\x59\xc0\x2e\x2e\x89\x57\x22\xbc\xd1\x78\x3c\xf6\xbd\x61\x17\x39\xfb\xfb\xc1\xce\x0e\xba\xc4\xd9\xdf\xf7\x76\x36\x3e\xf4\x22\xb7\x7a\x39\x83\xab\x04\x17\x59\xfa\x06\xaf\xae\x7f\xc0\x51\x38\xd8\x55\xae\x24\xd4\xc6\x75\x7d\x83\x5b\xee\x6f\x57\x76\xb6\x1b\xf6\xb4\x79\xee\x5c\x36\xc6\x17\xa3\x99\xb9\x43\x8c\x2a\xa5\x2b\x1f\x9b\x55\xff\x17\x8c\xfc\x86\x97\x29\x55\xa9\xa5\xad\x6a\xb3\x57\x4f\xdd\xb1\x44\x85\x29\xce\xcd\xfe\x3c\x85\xaf\xc2\x46\xa7\x9d\xc6\x8d\x74\x8e\xf1\x5a\x07\x06\x82\x17\x92\xc6\x66\x3f\x06\x6a\x75\x58\xe1\x40\xbd\xa0\x4a\x73\xa9\x8b\x59\x75\x77\xa8\x5a\x2e\xc9\xe6\x05\x44\xc5\xdb\xe5\xdb\x8a\xec\x36\x95\x3c\x28\xc1\x98\xd9\x26\x9b\xd6\x8f\xd0\x66\xa3\x04\x5f\xd8\xd9\x00\x0c\xcb\x6e\xa6\x2c\x6e\xa4\x21\x4e\x0e\xdd\x59\xbe\x9f\xcd\x7a\xbd\x9c\xe7\x48\xa0\x71\x6d\x2b\x67\x6b\x8b\xe1\xd0\x9f\x8e\xf6\x61\xd2\xed\x26\xfb\x70\x38\x0a\xbc\x29\x63\x73\xaf\x97\x1f\xc0\xf2\xa5\xde\x1e\xa3\x53\xd2\x95\x94\x0f\x11\x55\x31\x0e\x47\x81\xef\xca\xed\xc6\xe1\x38\x08\x83\xc3\x04\x7a\xae\x1f\x7e\x6a\x27\xfd\xff\x8f\xb9\xbf\xdd\x6e\x1c\x39\x12\x05\xc0\x07\x99\x3f\x14\x6c\xb3\x81\x66\x4a\xc2\x37\x01\xb2\x50\x1a\xb6\x54\xb2\x7b\xba\xba\xdd\xae\xaa\xb6\x67\x86\x45\xeb\x42\x64\x4a\xc2\x14\x05\xd0\x00\x58\x1f\x96\x78\xef\x39\xfb\x16\xf7\x9c\x7d\x82\xfb\x0e\x7b\xf6\x5d\xee\x0b\xec\x2b\xec\x89\xc8\x0f\x64\x02\x20\xa5\xae\xf1\xcc\xae\xdb\x42\x25\x33\x22\x33\x23\x23\x23\x23\x22\xbf\xb1\x2c\x6b\x94\x1d\x23\xd6\x28\x0c\x02\x2f\x9c\xd4\xa3\x44\xcb\x5c\x6e\xc5\xe4\x27\x44\x21\x7f\xde\x4f\x33\x5a\x99\x39\xc9\xd8\x7c\xc0\x5d\x52\x9c\x68\x0a\x21\xb5\xa6\x32\x46\x51\x26\xa9\x35\x1c\x9a\x77\xc7\x6d\x6c\x1c\x09\x8f\x92\x3b\x92\x25\xa9\xf2\xb6\x98\x5e\x58\xf7\x46\xdf\x56\x4b\xf5\xe0\xef\x76\x1d\x85\x58\xec\x76\xa4\xc6\x47\x5a\xc4\xad\x49\x99\x29\x26\xa9\x12\xf0\xf3\x9a\x59\x02\x7c\x22\x59\xfa\x74\xf4\xf3\xa6\x28\xeb\x0a\x1d\x92\x02\x31\x93\x07\x1e\x37\x79\xd8\x49\xe7\x0f\x1f\x39\xc4\xfd\x50\x85\x48\x42\x0a\xd2\x84\x33\xab\xf9\xb1\x63\x33\x69\x0f\x22\x31\x5b\x26\x82\x48\x9a\x94\x7b\x66\x70\xe8\x7e\xe5\x4f\x4f\xde\xd1\xf2\x3e\xcb\xd3\xb5\xae\xf6\xeb\x24\x33\x63\xdb\x77\x99\xda\xf7\x5c\x2f\x6c\x9d\x9d\x0b\xc6\xbe\xc3\x0f\x70\xbb\x11\xbf\x20\x75\x1c\x8f\xf1\x04\x77\x66\x8e\xed\xd8\xb6\xc8\x32\x99\xb3\x29\x49\xc2\x26\x29\xc5\xc2\xe2\xf6\x6b\x6f\xa3\xef\x2e\x27\x56\x92\x7e\x18\x4c\xa8\x0f\x6a\x88\xc7\x56\xba\x69\x72\xed\x35\x16\xf9\x02\xf5\xf6\x7a\x2d\xd6\xc6\xd8\xca\x5d\x53\xb0\x58\xda\xd8\x49\xee\x50\x31\xc8\x56\xc1\xa0\x62\x70\xdd\xa8\x96\x4b\x77\x57\xcb\x3b\xba\xfc\xf0\x86\xa6\x2b\x18\x6b\x88\xf5\x2c\xaa\xdd\x31\xdf\xa4\x4e\xea\x9d\x76\xcb\x4f\xa6\x5d\x92\x5c\xf4\xae\xd9\xd4\xca\x02\x0d\xed\xae\xd9\xd0\xc3\x6b\x36\x7a\xb5\x09\x65\x4b\x37\x7b\x88\x06\xc5\xb2\x6c\x96\x1d\x68\xcf\x52\x0a\x43\xe6\x8a\x5a\x1b\x63\x81\x41\xc0\xfa\xd0\x81\xd2\xd0\xff\xc3\xe2\xa5\x29\xeb\xfb\xa6\x6a\x28\xd4\x9a\xf7\x6c\x6d\x6c\xef\x0d\xe8\x8e\xff\xfe\xad\xd8\xb2\xe9\x6e\x20\x00\x4a\x6f\x27\x11\xeb\x75\x75\x31\xa8\xcb\x2d\x85\x7f\xb7\x15\x1d\x6c\x38\xc6\x60\xf6\xf3\xf7\xfc\x76\xfb\x22\xff\x4e\x7b\x9e\x43\xa5\x10\x41\x02\x0b\xcf\xd0\xee\xc3\x43\x20\xc7\x64\xfb\x00\x7e\x2c\x3e\x76\xee\xbb\xe7\xd8\x0d\x02\x4f\x81\x33\x36\xfd\xb8\xf8\x46\x08\xc3\xfa\x81\xee\x2b\xfe\x07\x2a\xca\x7e\x9d\xe5\xf4\x92\x76\x8f\x81\x71\x44\x01\xe6\xd8\x6c\x8b\xd2\x1e\x5c\x06\x94\x98\x78\xf3\xed\x3e\x4c\x00\x72\x4c\xb6\x7c\xb2\x07\x93\x01\x05\xa6\xd8\x36\xc2\xd7\x8e\xf7\x24\xd1\xb1\x78\xda\x77\x59\xbd\xa6\x07\xd3\x29\x18\x3c\xcd\x5f\xca\xac\x66\xaf\xc5\xef\x63\x8f\x82\x81\x69\x28\xbb\x7a\xb5\x17\x9b\xc3\x10\x6f\x83\x8f\x06\xb4\xd1\x58\xac\x3c\xde\xcd\x7e\xa2\x43\x78\xd7\x3c\x33\xa0\x3c\x7a\x60\x29\xef\xe6\x57\x9c\xf3\xfc\x1a\xf4\x0e\x05\x9d\xde\x85\x2f\x9d\xac\x95\x1b\xe3\xd5\x8c\x31\xab\x9a\x7e\xae\xd3\x92\xf6\x0b\x9a\x00\x22\x26\xe8\xf5\x5e\x2c\x00\xb0\xa7\x7c\x8a\x75\x3f\x06\x00\x76\x7b\xaf\xbe\xe6\xb3\xa0\x92\x25\xfc\x1d\xa1\xae\x36\x4f\x7b\x1e\x7c\xd0\x38\xa5\xdf\xab\x81\x25\xb2\xf3\x65\x5d\xb2\xba\xac\x52\xe8\xe5\x89\x58\x06\x05\x28\xc0\xf6\xc4\x2d\xaf\x56\x73\x57\x51\xeb\xe2\x05\xfe\x7a\x95\x91\x17\x39\x35\xa6\x7c\x01\xbc\x95\x54\x9d\x4e\x68\x5d\xc5\xc5\x57\xca\xff\xd5\xb1\x8d\x49\x9d\x18\x9f\x1d\xdb\x50\x57\xea\xf0\x5e\x49\x84\x7c\xac\x21\xa4\xc2\x2e\xde\xcc\x7e\x8f\xa0\x55\x99\xde\x6a\x90\xd9\x4f\xff\x86\x80\x34\xff\x62\x70\x3f\xaa\xff\x46\x15\xdc\xf2\xc4\x1e\xb1\xea\xc0\xba\x57\xad\x74\xb1\x59\x7c\xdf\xfd\x2b\xf4\xa4\x1b\x49\x94\x6b\x5f\xf6\x30\x17\xdb\xe0\xa4\xc1\x23\xf7\xc0\xba\x77\x90\x55\x96\xdf\xb2\x94\xfc\x62\x17\x5e\x0c\xfb\xd1\xbd\xe2\x85\x83\x3b\xf1\xcd\xbd\x2f\x1c\x43\xfe\x56\x2e\x81\xe1\xa0\x26\x62\xc7\x74\x88\xdc\xba\xa2\x77\x74\xd5\xdc\xe2\x20\xa9\x68\xcc\x6b\x67\xf7\x52\x4f\x1a\xb1\xe1\x7e\x77\xbd\xde\x36\xa3\x56\xf6\x10\x0a\xc6\xec\x6e\x80\x40\x1d\xc2\xa3\x76\x59\xce\xdf\x82\xc6\x57\xd1\x15\x04\x09\xe8\xb9\xe9\xfc\xea\x23\x2d\xb3\x9b\x2f\xdf\xe7\x35\xbd\x85\x4e\xa3\xde\xf0\xcd\xde\xc7\x90\x09\x76\xc5\x86\xb6\x5f\x67\xe0\x51\xbb\xb4\xae\xd3\xe5\xdd\x39\xee\xe3\xfc\x81\xb2\xfb\x2f\xe4\xc3\x18\x5a\x8a\xc3\x98\x5a\x46\x7f\xb9\xa3\x7c\x77\xdc\xd3\x59\xf5\xe1\x6a\x2b\x82\x62\x54\xd0\x19\xde\x69\xcf\x80\xb4\x30\x9b\x97\x5d\xee\x52\x18\x9d\xd0\x12\x46\x2d\x7d\x99\x1c\x54\x2e\xfb\x73\xd9\xad\xe8\x81\x22\x9e\x93\xf7\xa1\x0c\x24\xf9\x7c\x71\x89\x26\x76\x8b\xee\x76\xeb\xf7\x92\x2d\x52\xef\xbb\x7d\xe1\x79\x9c\x60\x45\xb1\x37\xda\x3f\xd2\xa6\x48\x76\x84\x9e\x8a\x53\xf3\x10\xbc\xc3\x7d\x2a\x67\x67\x76\x2f\x39\x5a\xe1\xf8\x86\xa8\xf0\x0c\x7a\x2d\x91\x8e\xb0\xab\x30\xac\x9f\x64\xe9\xf6\x81\xe6\x59\x74\xcc\x43\x4b\xc4\x4e\x6b\x1e\x2a\x52\x47\xd0\xf0\xc5\x1b\xf5\x4f\xa6\x6b\x10\x77\x78\xff\x82\x5a\xa2\xaa\x33\x5b\x30\x5e\x3f\xf6\x02\x69\xa7\x06\x18\xcd\x51\xe4\xad\xee\xcf\xd4\x04\xed\x54\xca\x14\x54\xfb\x94\xb4\x76\x6d\xfc\xbe\xec\xf5\xcc\xb5\x14\x3c\x83\x9f\xd3\xdb\x5f\x99\x81\x48\xb1\x13\xcf\x07\xbc\x2b\x36\x2d\x3e\xa8\x00\x89\xc6\x6e\x14\xea\xc7\x14\x30\x89\x2c\x5e\x07\x7c\x36\x55\x32\xc9\x8e\xdf\xa4\xd1\x69\x40\xd3\xda\x7d\x02\x97\x53\xbb\x21\x1d\xa0\x4d\x2c\x43\x58\xe7\xfb\x50\xb4\x72\x59\x9c\xf1\xbe\x7c\x9f\x1b\x90\x76\x03\x96\xb7\xa5\x3d\x45\xdc\xae\xa4\x37\x25\xad\xee\x7e\x95\x51\x68\x52\xe8\xd7\x54\x49\xa3\x81\xf7\xd1\x62\xdd\xde\xd1\xcf\xf5\xb6\xa4\xb3\x7a\x9d\x56\x3d\x55\xd7\xc1\xea\x1b\xa6\xda\xb3\xa9\x7c\x3c\x7f\xd2\xc0\xc5\x00\x98\xcf\x19\x83\x59\x66\x67\x36\x54\xb3\xbc\x6b\x57\x85\x9d\x24\x69\x9d\x71\x66\x3b\x89\x93\x24\x71\x4e\xed\xc7\xc7\xac\xfa\x29\xfd\xc9\xac\xad\xc7\xc7\xfa\x77\xce\x51\xcf\xae\x2e\xe3\xdd\x5d\x56\xc1\xc8\x91\x0d\x7f\xd3\xe5\x92\x6e\xea\x6a\x90\xf1\x32\x0c\x6b\xb7\x4f\xd9\x1d\x28\x7d\x38\xdc\x4f\xc1\xe3\x63\xfd\xc2\xee\x8e\xc7\xf7\xd0\xb1\xe1\xa5\xaa\x04\xed\x94\xa9\xa0\xed\xce\x32\x2d\x52\xe2\x97\x8a\x99\xa7\x04\xda\x8b\xb8\xe3\x18\xaf\x99\x36\x60\x8c\xcc\x6e\x0d\x35\xb4\xe9\xaf\xee\x43\xaa\xdf\xfc\x7e\x5d\x5c\xa7\xeb\x81\xb1\xce\xae\x8d\x01\xdb\x83\x35\x48\xd7\x25\x4d\x57\x5f\x06\xf4\x73\x56\xd5\xd5\xc9\x37\x6c\xd5\xae\x4e\x1e\xca\x6d\x5e\x67\xf7\xda\xda\xf3\xd5\xe4\x61\x47\xb2\x3c\xab\xcf\x53\xb6\xc7\xaf\xba\x9a\xcc\x17\xa4\xac\x57\x74\x33\x51\x17\xaf\x20\x8b\x6c\x5a\x97\x5f\x1e\x5a\x34\x34\x5b\xb8\xd9\xf4\x19\x3d\xa9\xea\x74\xf9\x41\x5c\x8c\xf5\x3e\x37\xac\x69\x96\x94\xf2\x05\x72\xef\xac\x9c\xbb\x8b\x93\x92\x6e\xd6\xe9\x92\x9a\xa7\x7f\x7d\x5f\x7d\x9b\xd6\xef\xab\xd1\x29\x31\x0c\x6b\x52\xce\x9d\x16\xf0\x96\x55\x11\x06\x54\xff\x8c\x38\x3b\xb1\x1b\x8c\x4d\xe3\xb6\xd7\xa9\xa7\xd5\x68\xc4\x88\x51\x36\xb9\xcd\x2b\x9c\x49\x2c\x06\xe2\x85\xd8\xe2\x66\x80\x2f\xac\x59\xf5\x09\x56\x56\x9c\x25\x22\x05\xdb\x72\x86\x19\xe4\x7c\x50\xd4\xc3\xb7\x79\xb1\x98\xe6\x8f\x8f\xe6\x61\x94\x64\xbe\xb0\x48\x2e\x0f\xd2\xef\x76\x84\xe6\xd5\xb6\xa4\x6f\xfa\x5a\x42\xb2\xdb\xe2\x93\x8e\x47\xec\x32\x1f\x64\x3d\xdb\x24\xdd\x57\x8c\x25\x70\xca\xa4\x1f\x61\x9e\x2d\x48\x95\x64\xa2\x45\x4e\x0c\x8b\x14\x09\xdb\x7c\xf8\xf8\x58\xd1\xf5\x0d\xc9\x13\x7b\x9a\xbf\x90\x0c\xcc\x81\x81\xb8\x37\xbb\x9a\xe7\x8b\x2c\x1f\x14\x56\xb3\x41\x1f\x0f\x09\x7e\xf3\x63\x56\x55\x78\xfd\xf1\x37\xa3\x6c\xf4\x0d\xdb\xe0\x4b\xe9\x8a\xae\x06\xd7\x5f\xbe\x21\xa5\x45\x68\x72\xe4\xf0\x77\x80\x8b\xa4\x98\x43\x46\x8b\x1d\xe4\xd9\x73\x22\xed\x32\xcd\xd6\x74\x35\xe0\xb4\xab\xf7\x00\xa0\x3f\x63\x58\x3b\x22\xdc\x8f\xef\xf3\xac\x56\x77\x40\x2a\x6f\x86\x9e\xe8\x62\xcc\x98\x3e\xa7\x24\x5b\x58\x24\x63\x42\xde\x4a\x29\x98\xa6\x27\x24\xca\x8e\x08\x64\x83\x90\x5d\x21\x54\x25\xbb\xc5\xd5\xb4\xa6\xd9\x70\x98\x99\x06\xe6\x3c\x30\x46\xc5\xdc\x5e\x58\xa4\x98\x3b\x0b\xb3\x3e\xb9\x39\x49\xd7\x69\x79\x6f\x56\x96\xc5\xdf\x5a\x31\xad\xdd\xb4\xff\xa8\x5e\x0f\x4b\x04\x7f\x8b\x72\x90\xe5\x6c\xd3\xb4\x90\xe5\xc9\xa0\xc8\x81\x0d\x86\x35\xad\x4f\xf6\x8b\x93\x89\x13\x96\xef\xb2\x7b\x5a\x6c\x6b\xb3\x22\xb6\xb5\xdb\x4d\xf9\x35\xfe\x78\x69\x31\x14\x7e\xb2\x49\x57\x6f\xeb\xb4\xac\x1f\x1f\xcd\xbd\xb0\xa4\x6f\xab\xa3\x49\x8f\x99\xe4\x73\xde\xbc\x48\xec\x33\xfe\x40\x2b\x44\x5b\x93\x66\x6f\x1f\xd3\xae\xc6\xc0\xb0\x08\x7d\x59\x37\xdb\x8b\x6a\x90\x57\xba\xa1\x69\x6d\xd2\x53\x11\x3f\x72\x70\x61\x9a\x3d\x9d\x6e\x13\x6a\x8d\xd4\x5c\xad\x9d\x45\xfa\xe8\x7c\x95\xaf\xf6\xd4\xe0\x55\xbe\xfa\xef\xa7\x5f\xcd\x68\xa4\x56\xc6\x62\x9b\x91\xf0\x34\x1d\xde\xaf\xcf\xc3\x27\x25\xbd\x4a\x1e\xee\xe8\x67\x27\x9c\x9c\xfe\xc6\x9c\xa7\xc7\x37\xf6\x71\xbc\xb0\xfa\x42\xa7\x19\xb9\xa3\x9f\x5d\x5f\x45\x7c\x70\x77\xd6\xfe\x1f\xa7\x19\x29\x6f\xaf\x27\x20\x5e\x6f\xe8\xed\xab\xcf\x1b\xd3\xf8\xeb\x69\xf5\x6d\x79\x7b\x7d\x5a\x7d\x7b\x6a\x9e\x56\xdf\x9a\xa7\xab\x07\x87\x78\x3b\xeb\xb4\xfa\x96\x3c\xf1\xfb\x14\x3e\xbf\x35\x1a\x25\xfd\xfe\xf4\xf4\x96\x18\xef\xdf\x1b\x16\x31\x32\xc3\x82\xb2\xd2\xbe\xc2\xd2\xaf\x29\xcd\x3c\x9b\xf0\xa8\x91\x79\x36\x39\x3d\x39\x5d\x8d\xac\x33\x00\x58\xcf\xa1\xe3\x73\x2f\x1d\x67\xff\x58\x42\xce\x9e\xa4\xe4\xb3\xe3\x40\x03\xa0\x39\x83\x40\xd3\x3a\x0e\xf1\x77\xd6\xfb\xd3\x27\x23\xaa\x6f\x7f\x7b\x9a\x91\x3c\xbd\xa7\x93\xd3\x79\x7a\xfc\xf7\x05\x7c\xec\xe3\xf8\x7d\xb5\x18\x9d\xaa\x72\x74\x7b\xfd\xae\xf8\x57\xc7\xd1\x36\x89\x29\x6b\x6b\xca\x92\x7f\x62\xba\xc1\xf8\x5b\xb9\x97\x9f\x12\x37\x08\x2c\x4b\x6e\x96\x32\x9d\x10\x64\xf5\xe6\xe4\xef\x9b\x74\x65\x52\xe2\x5b\x3b\x61\xe0\xef\xd1\xe2\xab\xb2\x0b\xe5\x7e\x96\x1b\xab\xcb\x33\x03\x6a\x69\x8c\x32\x13\xcc\xb9\x35\x32\x4e\x59\xd8\x55\xc2\xde\xc2\xc2\xad\xe6\x0a\xf1\x9f\x1d\xe7\x0f\xf4\xf3\xbb\xe2\xfc\xed\xdb\xf6\x26\xb7\x23\x74\x2b\xca\x1a\xb7\x1c\x9a\xc6\x6f\x0c\xb9\xbd\x0d\xf2\xc0\xdb\xbc\xc1\xf3\xd8\x5e\x57\x75\x69\x3a\x16\x39\x76\x92\x64\xee\x91\x90\xc4\xc4\x71\x17\x72\x1b\x64\xe7\x39\x6b\x99\x9a\x57\xea\x74\xfe\x57\xce\xf8\xd3\x4c\x47\x42\x2b\x2c\x97\x92\x4f\x3d\x52\x36\x05\xda\x04\x77\xfd\xca\xdf\x19\xae\x2b\x2a\xbf\x47\x10\x23\xcf\x44\x89\xfa\xa6\xe0\x80\xbc\x2b\xde\xfc\xfe\xbb\x99\x39\x2f\x49\x45\x8a\x05\x9e\x82\xee\xdb\x0f\x98\xe0\x74\xf4\xf7\x78\x85\x2c\xb4\x8c\x9b\x24\xd9\x19\x9d\x38\xf8\xcf\x8b\x17\xfe\x84\xbe\x7c\xe9\x7f\x6b\x66\xc7\xae\xb5\xb3\x2c\x9d\xa9\x5d\x8e\x8a\xca\xf4\xb4\x24\x93\x55\x49\x6c\x76\x66\x66\x62\xa7\xa8\x4d\x9c\x46\x7d\x69\xd4\x67\xfb\xe8\x76\x12\xc9\xb2\xb3\xa6\x06\x23\xac\xc3\xc4\xed\x05\x22\xc8\xf4\x1a\xd8\x70\x68\xd2\x51\xc3\x4c\xd7\xb2\xd4\x43\x2b\x7a\xc2\x53\x37\x18\x83\x96\xb5\xac\x49\x47\x62\xce\xfa\x04\xcd\xa4\xd6\x44\xc6\x43\xff\xc2\x1a\xc1\xc8\xac\xa9\xe9\x1d\xe0\xbe\xf9\xfd\x77\x3d\x2c\xd4\x58\x87\xfa\x9b\x94\x9d\x48\xd7\x6f\x96\xb7\x71\x48\xed\xeb\x95\x4b\xa8\x54\x1d\x19\xe9\x9e\xd8\xe0\xc7\xb0\x7e\x63\x8c\xea\x51\x3d\xca\x46\xd9\xa8\x1c\x95\x3b\x4b\xb8\xf5\xa2\x15\xcb\x46\xc0\xb0\xff\x99\xc6\x48\xf2\xa6\x9e\x3b\x0b\x60\xcf\xc8\x20\x03\x2d\xda\xed\x8f\xf6\x78\xb4\x65\xb0\x3e\x0a\x3d\xa4\xeb\x3a\x0b\xc7\xb3\x48\xec\x69\xd1\xdc\x6b\x52\x8c\x46\x16\x05\xe7\xb7\x32\xe1\x1f\x7e\x84\x83\xc2\x4f\x49\x22\x6d\xeb\xac\x3f\xd0\xcf\x07\x74\x56\x8b\xd9\xcb\x32\x5d\x7e\x60\xcd\xd4\xc8\x29\x32\x48\xe8\xab\x46\x2c\x32\xf0\xca\x5e\xbc\x70\xc2\x47\x25\xca\x81\xa8\x48\x8d\x71\x17\x6d\xdd\x17\x5a\xcf\xa9\x7b\x99\xd8\xd3\xb2\xa9\x7b\x89\x75\x2f\x17\x49\x66\xc2\x3f\xb2\xee\xd9\x9e\xba\xb3\x43\xc5\xd9\xdf\x69\xbb\x87\xca\x57\x08\xf6\x0a\xb1\x90\x4a\x4d\x82\x85\x2e\x3e\xa9\x69\x85\xbb\xcb\xe9\x93\xd2\xad\xf4\xe3\x8e\x80\xd7\x52\x4e\x5f\x7a\x67\x74\xee\x2d\x26\x0e\xaf\x05\x48\x58\x6a\x1a\x23\x3a\xb7\x17\x4c\x7c\xe8\xdc\x91\x21\x97\x87\x6a\x10\x21\xa5\xac\x8a\xd6\xb3\xf5\xe6\x2e\x4d\xfa\x1d\xf1\xfd\xcd\x0b\xf6\x22\xc9\xfa\x95\x4f\xa9\xd6\xe6\x3e\xfb\xac\x65\x0e\x1d\xa8\x19\x2f\xf6\x15\x41\x8a\x9e\xe8\xcc\xe2\x83\x22\x7f\x3a\x1a\xe5\x8c\xc2\x34\x29\xe6\xf9\xe2\x18\x86\x32\x53\xf8\x24\x7d\x5a\x08\x00\xd6\x28\xfd\xb6\x6c\xae\x84\xed\xa3\xb9\x52\x69\x16\xa5\x76\xf5\x0b\x33\x4d\xaa\x08\x00\xdb\x0d\x8b\x3d\x88\xb1\xd7\x14\xa7\xd2\x74\x65\x62\xac\x42\x32\x36\x0c\x39\x98\xae\x2f\x19\x1b\x47\x39\x16\xc9\x44\x5b\xe8\x47\xb5\x8d\xf3\x62\xbb\x5e\xe5\xdf\xd4\x03\xac\x06\x0c\x84\xa8\x45\x5a\x96\x5d\x8a\x5e\xaf\x8c\xb3\xb1\xad\x60\x06\xfc\x83\x2b\x8e\x8f\x8f\xa8\x1a\xeb\xe2\x75\xf1\x89\x96\xe7\x29\xde\xd5\x7b\x10\xb5\x71\xc0\xaa\x11\x78\x60\xc6\x3e\xfc\xb3\x9e\xb8\x39\x5d\xb4\x1d\x92\xaa\x2e\x96\x1f\xf0\xee\x8b\x9f\x53\xbc\x25\x22\xe9\xf6\xbe\xb9\xf1\x1b\x1b\xff\x67\x10\xe3\x37\xe7\xe7\x22\xe4\xbf\x8a\x67\x76\x88\x71\xfe\x8c\xc7\x79\x7e\x18\xcc\x7c\x08\x8d\x83\xc0\x1e\x7f\x07\x21\x3b\x8c\xa3\x78\x06\xa1\x0b\xef\x62\x7c\x7e\x09\xa1\x20\x08\xc6\x81\x07\xa1\x57\x97\x6e\xec\xc6\x88\x67\x7f\x37\x73\x30\xee\xf2\xfc\x55\xec\x23\xde\xd8\x8d\x2f\x59\x8a\x4b\xd7\xb6\xcf\xbf\xe3\x78\xc1\x77\x17\x98\x16\xfe\x77\xce\xe2\x04\x55\xf0\x6f\x70\x29\x42\xd1\x58\x84\x66\x32\xee\x42\xc6\x5d\xf2\xb8\xe0\x52\xa4\x0d\x2e\x03\x19\x27\xd2\x06\x97\x33\x19\x77\x21\xe3\x44\xda\x68\x2c\xd2\x46\xe3\x40\xc6\x89\xb4\xd1\x78\x26\xe3\x2e\x64\x9c\x48\x3b\x93\xe5\xce\x64\xb9\x33\x59\xee\x4c\x96\x3b\x93\xe5\xce\x64\xb9\x17\xb2\xdc\x0b\x59\xee\x85\x2c\xf7\x42\x96\x7b\x21\xcb\xbd\x90\xe5\x5e\xca\x72\x2f\x65\xb9\x97\xb2\xdc\x4b\x59\xee\xa5\x2c\xf7\x92\x97\x0b\x9c\x62\x69\x21\x14\xc8\x38\x96\x16\x42\x33\x19\x77\x21\xe3\x44\x5a\xc1\x67\x08\x05\x32\x4e\xa4\x15\x7c\x86\xd0\x85\x8c\x13\x69\x05\x9f\x21\x14\xc8\x38\x91\x56\xf0\x19\x42\x17\x32\x4e\xa4\x9d\xc9\x72\x67\xb2\xdc\x99\x2c\x77\x26\xcb\x9d\xc9\x72\x67\xb2\xdc\x0b\x59\xee\x85\x2c\xf7\x42\x96\x7b\x21\xcb\xbd\x90\xe5\x5e\xc8\x72\x2f\x65\xb9\x97\xb2\xdc\x4b\x59\xee\xa5\x2c\xf7\x52\x96\x2b\xf8\x0c\xb5\x65\x69\x21\x14\xc8\x38\x96\x16\x42\x33\x19\x77\x21\xe3\x44\x5a\xc1\x67\x08\x05\x32\x4e\xa4\x15\x7c\x86\xd0\x85\x8c\x13\x69\x05\x9f\x21\x14\xc8\x38\x91\x56\xf0\x19\x42\x17\x32\x4e\xa4\x9d\xc9\x72\x67\xb2\xdc\x99\x2c\x77\x26\xcb\x9d\xc9\x72\x67\xb2\xdc\x0b\x59\xee\x85\x2c\xf7\x42\x96\x7b\x21\xcb\xbd\x90\xe5\x5e\xc8\x72\x2f\x65\xb9\x97\xb2\xdc\x4b\x59\xee\xa5\x2c\xf7\x52\x96\x2b\xf8\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x3c\x93\xf2\x7c\x21\xe5\xf9\x42\xca\xf3\x85\x94\xe7\x0b\x29\xcf\x17\x52\x9e\x2f\xa4\x3c\x5f\x48\x79\xbe\x90\xf2\x7c\x21\xe5\xf9\x42\xca\xf3\x85\x94\xe7\x0b\x29\xcf\x17\x52\x9e\x2f\xa4\x3c\x5f\x48\x79\xbe\x90\xf2\x7c\x21\xe5\xf9\x42\xca\xf3\x85\x94\xe7\x0b\x29\xcf\x17\x52\x9e\x2f\xa4\x3c\x5f\x48\x79\xbe\x90\xf2\x7c\x21\xe5\xf9\x42\xca\xf3\x85\x94\xe7\x0b\x29\xcf\x17\x52\x9e\x2f\xa4\x3c\x5f\x48\x79\xbe\x90\xf2\x7c\x21\xe5\xf9\x42\xca\xf3\x85\x94\xe7\x0b\x29\xcf\x97\x52\x9e\x2f\xa5\x3c\x5f\x4a\x79\xbe\x94\xf2\x7c\x29\xe5\xf9\x52\xca\xf3\xa5\x94\xe7\x4b\x29\xcf\x97\x52\x9e\x2f\xa5\x3c\x5f\x4a\x79\xbe\x94\xf2\x7c\x29\xe5\xf9\x52\xca\xf3\xa5\x94\xe7\x4b\x29\xcf\x97\x52\x9e\x2f\xa5\x3c\x5f\x4a\x79\xbe\x94\xf2\x7c\x29\xe5\xf9\x52\xca\xf3\xa5\x94\xe7\x4b\x29\xcf\x97\x52\x9e\x2f\xa5\x3c\x5f\x4a\x79\xbe\x94\xf2\x7c\x29\xe5\xf9\x52\xca\xf3\xa5\x94\xe7\x4b\x29\xcf\x97\x52\x9e\x2f\xa5\x3c\x5f\x4a\x79\xbe\x94\xf2\x6c\x47\xf0\x1f\x84\x1c\x17\xfe\xc3\xd0\x39\xfc\x07\x21\x37\x84\xff\x20\xe4\xd9\xf0\x1f\x86\x66\xf0\x1f\x84\x7c\xfc\x1f\x86\x5e\xc1\x7f\x10\x0a\x22\xf8\x0f\x42\x98\x14\xf3\x0b\xcf\xe1\x3f\x08\x8d\x43\xf8\x0f\x35\x17\x16\x8c\xa1\x19\xfc\x07\xa1\xd8\x87\xff\x30\xf4\x0a\xfe\xc3\x9e\x87\x60\x08\x7d\xe7\xc2\x7f\x18\x3a\x87\xff\x20\x84\x19\x63\x7e\x17\x36\xfc\x87\xa1\x19\xfc\x07\x21\x24\x0a\xf3\x43\xff\xea\x95\xb1\x50\xa6\x44\x96\xbd\xae\x62\xc7\x8b\x24\x3d\xde\x67\xf2\x90\xae\xb3\x25\xbd\x5e\x6f\xe9\x04\x47\xef\xae\x6f\x93\x81\xeb\x47\x64\xe0\x06\x81\x65\x90\x34\xaf\xb3\xbf\x6d\xe9\xa7\xbb\xac\x16\x18\x01\x60\x78\x01\x19\xb8\x4e\x1b\xc3\x11\x28\x00\xf5\x62\x40\x89\x5b\x28\x2e\x47\xf1\xa0\x08\xd7\x23\x03\xd7\xf6\x5b\x28\x1e\x47\xb1\x03\x32\x70\x62\x97\x0c\x9c\x71\xd8\x42\xf1\x19\x8a\x03\x65\x38\x9e\x43\x06\x8e\x6b\x03\xca\xdf\xb6\xe9\x7d\x5a\x66\x39\xa7\xd5\x71\xc7\x58\x11\x20\xc4\xd5\xe0\xce\x53\x08\x9c\x4e\xc7\x01\x3a\x81\x58\x27\x8e\x34\x04\x4e\xa5\x63\xbb\x50\x07\x20\x75\xac\x93\xc0\x69\x0c\x91\x44\xf8\x38\x58\x8b\xbf\x6f\x4b\x8d\xd7\x58\x38\xe3\x35\x80\x9c\x03\x30\xc1\x3b\xd7\xe7\x34\xb9\x5e\x24\x60\x82\x9c\xd8\xe3\xe4\xb8\xb6\x4c\x27\xb9\xe5\x08\x52\x3c\x68\x96\x6b\x9a\xdd\x4a\x52\x20\x05\x7e\x90\x91\xd7\x59\xf5\x37\x29\x12\x48\x85\x8b\x2c\x08\x25\xcc\x39\x04\xd4\x1a\xd9\xf1\xc8\xc0\x89\x3c\x09\xd4\x9a\x37\x02\x60\x10\x49\xa0\xd6\xb0\x2e\x60\xd8\x63\x00\xae\x61\x90\x87\x20\x9b\x0c\xe0\xff\x2c\x32\x5f\xde\xd1\x55\xba\xbe\x2f\xf2\x95\x26\x7a\xb2\xfe\x8d\x64\xb3\x74\x8c\x9b\x10\xeb\xf4\x47\xbb\x5a\x34\xf2\x17\xa2\x3d\x2d\x5a\x66\xed\xab\xd1\x9c\xab\xeb\x2d\xfd\x98\x15\x6b\x5a\x8b\xaa\x44\x64\xe0\x43\xab\xb8\xc8\xa0\xb2\xf8\x94\x73\x48\x18\x90\x81\xef\xc2\x9f\x00\xa8\x5c\x0d\x7d\xf8\x13\x10\x95\xa5\x41\x0c\x7f\x02\xa2\xf2\x33\x70\xe0\x4f\x40\x54\x66\x02\x4b\x3c\x24\x7b\x5b\xae\xbf\x7c\x2a\x0a\xc1\x30\x17\x3a\x58\xe4\x03\xf9\x1a\x58\x6b\x60\x07\x24\x27\xd0\xe0\x2a\x41\x4e\x3c\x26\x03\xc7\xd7\xe0\x5a\x33\x8f\x6d\x6c\x4e\x15\xae\xb5\xb4\x13\x90\x41\x04\xe0\x65\xba\xa2\x75\xd3\x68\x71\x80\xe2\x41\x06\x4e\x68\xab\x50\xd1\x7d\x03\x57\x88\x6d\xa0\xa5\x16\xbd\x17\xb8\xeb\xba\xb1\x68\x49\x09\x17\xbd\x05\x2b\x0f\xc4\xb3\x26\x95\x70\x4e\x1c\x4a\xa7\xe7\x8b\xa6\x5d\xde\xa5\x65\x5d\xd2\x6d\xd5\x51\x2f\xb6\x06\xed\x28\x17\x1d\xdc\x51\x2d\x3a\xb8\xa3\x58\x74\x70\x5b\xad\x30\x68\xb1\x2c\xd6\xa9\x54\xd1\x0e\xb0\x1b\x92\x7a\x1a\x54\x6d\x52\x24\xce\x0b\x55\xb0\xd6\xa2\x40\x9c\xe7\xa9\x60\xad\x41\x91\xb8\x58\x05\xab\xed\x89\xc4\x21\xb4\x28\xd3\x75\xbb\xd4\xc8\x16\x10\x8d\x20\xc7\x27\x83\x28\x14\x20\x8d\x18\x3b\x54\x53\xa9\x84\xc4\x0e\x94\x26\x20\x1a\x0d\xd0\xb1\xc6\x0c\x92\xdf\xac\x8b\x4f\xb4\x6c\xe4\xca\xb1\x81\x43\x3e\x0a\x86\xc0\xa9\xb2\xf5\x07\x55\xe6\xd1\x08\xba\xb6\x02\x75\x0e\x83\x35\xad\xe7\xb9\x52\xa8\x38\x58\x25\xdb\xc5\xf2\xc7\x6a\xd1\xba\x49\x0b\x85\x49\x5b\x7e\x49\x73\xa9\x64\x14\x83\x00\xf1\xce\x3e\x40\xa3\xc4\x14\x33\x01\x80\x46\x8d\x29\x36\x02\x00\x8d\x22\x53\x0c\xc4\x2a\x2d\x3f\xb4\x15\x68\x03\xd1\x28\x6b\xa5\xba\x2d\xd6\x2b\x9a\x97\x42\xc9\x70\xfd\x02\x1f\xa7\x8d\xa1\xc9\x40\x84\xfd\xbd\x8d\xa2\xc9\xc2\x18\xfa\xa4\xdf\x46\xd1\x84\xd3\x47\xe3\xd1\x46\xd1\x18\x6c\x3b\x64\x10\x09\x8c\x32\xfd\x22\x34\x32\xc0\xf8\x47\x42\x29\x55\xea\x69\x73\xe3\xc3\x41\x07\x12\x7e\xb8\x4b\x3f\x64\xa2\xfe\xb1\xb0\x75\x68\xce\x00\x7c\x9f\xde\xd2\xbc\x4e\x15\xa2\x34\xee\x16\xeb\xec\x23\x55\xca\x8e\x98\x2d\xe4\x32\xad\x63\x08\x16\x62\xa7\x64\x7d\xc9\xed\x20\x09\xad\x13\x49\x87\xc6\xf6\x3b\x48\x42\xf7\x84\x42\xf7\xc4\x76\x07\x47\xf0\xd1\x11\xcd\x1e\x8a\x36\x2d\xca\x34\xbf\x55\xbd\x06\xc7\x57\xb8\xc5\xa0\x1d\x1d\xa4\x83\x3b\x3a\x48\x07\x77\x74\x90\x0e\x6e\xeb\xa0\x06\xba\xbc\xcb\x84\x2c\x06\x1e\x19\xa0\x0f\xdb\xd4\x1f\xc1\x42\x6b\xa3\x4a\x71\x45\x77\x6a\xe0\x82\x81\x63\xb0\xc0\xb2\x57\x35\x70\xc1\xbb\xc0\x17\xf9\xeb\xe9\x05\x71\xb6\x4f\x06\x8d\x4d\x01\x78\x49\x57\xba\x18\x08\xba\x2b\x74\x6d\x04\x4b\xd0\x55\x42\x43\x2a\x5a\xb7\xa2\xa9\x22\x22\x8e\x8f\x9e\x16\x70\xce\xf7\x5a\x18\x8e\xea\x1e\x22\xef\xe3\x36\x8a\x14\x10\xa1\x36\x9c\xc8\x6e\xa1\xc8\x2a\x06\xc2\xe7\x95\x3c\x12\x28\xb2\x96\x81\x50\x0a\x92\x0d\x15\x98\x89\x46\x9f\x8c\x5d\x10\x1d\x95\x0f\x88\xd0\xf4\x46\x7f\x4c\x06\xe3\x18\xfe\xda\x70\x69\xfe\x1d\x4d\xf5\x69\x38\xd2\x05\x70\x34\x2d\xa8\xe1\x48\x37\xc0\xd1\x14\xa2\x86\x23\x5c\x01\xb7\xa3\xe4\x38\x0a\xdd\x47\x6e\xbd\x2d\xff\xb6\x2d\xb2\x8a\x2a\x4a\x37\x84\x8f\x40\xd0\xdc\x44\xb0\x27\x36\xba\x5a\x00\xa5\xd7\x59\x9a\x4b\xb9\x70\xc1\x3f\x02\xcb\xc9\x60\x74\xb3\xc9\x72\xcd\x56\xa1\x35\x1b\x2b\x40\xe7\x20\x54\xeb\x65\xf0\xe7\xa9\x50\xad\x93\x85\xd8\x0f\x15\xa8\xae\x46\xb9\x5d\x06\x60\xf5\xe1\x8b\x66\x2c\xb0\x23\xf1\x86\x69\xc0\xce\x13\xf0\xc6\x74\x61\x47\xe3\x8d\xd6\xc0\x1b\x0b\x86\x1d\x8d\x37\x58\x03\x57\x0c\x99\xdd\x74\xb2\xec\x5e\x51\xf2\x4c\x79\x04\x52\x34\x01\x48\xf7\x01\x8b\xd5\xad\xea\x38\x78\xc8\x4b\x5f\x12\x2e\xc1\xce\x13\x70\xc1\xf2\x88\x1b\x42\x5e\x31\x09\x17\x4c\x47\x1b\x19\xca\x8a\x49\xb8\x60\x7b\x48\x06\xe3\x48\xd4\xeb\x26\x2b\xe9\x75\x99\x89\xa1\x11\x72\xcc\x43\xf5\xa2\x02\x55\x59\x00\x29\xf3\x23\x15\xaa\xca\x02\x10\xee\x6b\x69\x55\x59\x00\x0c\x4f\x4b\xab\xca\x82\x0b\x44\x83\xfb\x76\xb3\x06\x57\x4c\x9b\x31\xc0\x1e\x8a\x13\x0b\x20\x2c\x37\x45\x49\xab\x5a\x51\x5c\x5c\x1b\x72\xba\x6f\xd3\x2c\xaf\xae\x8b\xb2\x10\x03\x14\x1b\x1d\x2d\xe1\x6d\xdd\xde\x15\x55\xad\xe6\x8e\x8e\x58\x33\x63\x71\x8b\x97\xb1\x2b\x43\x17\xee\x41\x43\xbc\xb3\x0f\xa0\xb9\x6e\xe0\x1b\x08\x80\x3e\x8a\xf1\x1a\x80\x3e\x7c\x19\x37\x00\xc5\xed\x71\xb1\x6f\xc1\x28\xcf\x73\x55\xa8\x66\x03\x41\x23\x63\xf7\xeb\x77\x77\x40\x1b\x33\xb6\xf4\xba\x3a\x58\x93\x58\x05\xeb\xfd\x13\xbb\x3f\x80\x1b\xf1\x8f\xb1\xef\xb1\x0f\x87\xd8\xaa\x87\x27\x22\x85\x44\x93\x01\xfc\x5f\x44\x72\x54\xd6\xda\xbc\xc5\x19\xc0\xd6\x5a\x5b\x2a\x65\x04\x3a\x8d\xf4\xb3\x3f\x01\xe0\x75\xf5\x1c\x32\x60\x7f\x02\xc0\x6b\x09\x46\x8f\xfd\x09\x00\xaf\x1f\x78\xc8\xec\x4f\x00\x02\x0e\x88\x14\x49\x45\x40\xc8\xf5\xb3\x43\x06\xec\x4f\x00\xc6\x1c\xe0\xb1\x01\xba\x2f\xcb\x88\x38\x20\x24\x03\xf6\x27\x00\x31\x07\x44\x4a\x4f\x52\x8c\x0d\x8c\xc0\xc9\x40\xd4\xda\xe5\x1c\x61\x83\x72\x3e\x30\x47\x00\x67\x07\x7a\x0a\xf8\x27\x00\x22\x9f\x90\x0c\xd8\x9f\x00\x70\x76\xb0\x91\x3f\x1f\xfd\x23\x40\x0c\x07\x1d\x66\x4c\x43\x59\x06\x67\x07\x9b\x45\xe0\x33\x09\x08\xe0\xec\x08\x43\x32\x60\x7f\x02\x30\x6e\x46\x96\xec\x4f\x00\x38\x3b\xc6\x0e\x19\xb0\x3f\x01\xe0\xec\x18\xfb\x64\xc0\xfe\x38\x80\x53\x1b\x91\x41\xc4\xdc\x6c\x8c\xe4\xec\x18\x83\x9d\xc4\x3f\x01\xe0\xec\x60\xc6\x93\x1b\x50\x04\xb8\x8d\xed\x65\x7f\x02\x20\x0a\x80\x21\x23\xfe\x09\x80\xb0\xd6\x60\x2c\xf1\x4f\x00\x38\x3b\xc0\x11\x67\x7f\x02\xc0\xd9\x11\xbb\x64\xc0\xfe\x04\x80\xb3\x23\xf6\xc9\x80\xfd\x09\x00\x67\x47\x3c\x26\x03\xf6\x27\x00\x9c\x1d\x71\x4c\x06\xec\x8f\x03\xa4\x4f\xc4\x2c\xa6\x23\x7a\x98\x6f\x0b\x80\xcb\xdd\x59\xc7\x16\xc5\xfb\x4e\xbf\x41\x42\x98\xf0\x6d\x60\x3c\x20\x3e\x02\xe6\xa9\xee\x39\xff\x08\x98\x74\xdd\x5d\x1c\x23\x88\x81\x02\xc2\x02\x01\x0b\xf8\x7c\x8c\xe3\xc8\xf2\x42\x01\x1b\x73\x65\xe7\x38\xb2\xbc\xb1\xf0\xa1\xd0\x33\xb5\xc5\xb8\x15\x61\x91\x80\xb9\xe8\xb5\x0a\xd7\x15\x61\xb1\x80\x05\x62\xa6\xcf\x15\xe5\x09\x52\x70\xf6\x05\xfe\x44\xbc\xe0\x17\x8c\x1b\xc4\x47\xc0\x04\xbf\xd0\x02\xf3\x8f\x80\x09\x7e\xa1\x0b\xcd\x3f\x02\x26\xf8\xe5\xa1\xc3\x1a\x88\x79\x30\x84\x49\x5d\x8a\x16\x97\x7d\x04\x4c\x10\xe9\xdb\x7c\x9c\xe3\xf8\xb2\xbc\x50\x75\xc8\xf9\x47\xc0\x04\xbf\x7c\x1c\x1f\x05\x62\xde\x0c\x61\x91\xe2\x0b\x8a\x8f\x80\x09\x7e\xe1\x08\x80\x7f\x38\x4c\x14\x87\x06\x81\x0f\xa0\x31\xde\x56\x86\x3c\xe2\x23\x60\xd2\x87\x06\x0f\x8f\x7f\x04\x4c\xf0\x0b\x67\xde\xf8\x47\xc0\xe4\x10\x11\x5c\x77\xfe\x11\x30\xe9\xa4\x40\x51\xfc\x23\x60\x82\x5f\xa0\x73\xc4\x47\xc0\x44\x05\x42\xb4\x97\xec\x23\x60\x82\x5f\xa0\x79\xc4\x47\xc0\x04\xbf\x70\x4e\x80\x7f\x04\x4c\xf0\x6b\x1c\xe2\x02\x82\x58\x45\x00\x98\xc8\x52\x78\xbf\xa2\xac\xb1\xe0\x17\x68\x21\xf1\x11\x30\xc1\xaf\x08\x48\xe0\x1f\x01\x93\x43\x27\x5f\xcc\xa5\x4a\x8d\x34\x16\xfc\x8a\x80\x04\xfe\x11\x30\xc1\x2f\x36\x3d\xc0\x3e\x02\x26\xf8\x05\x5e\xb2\xf8\x08\x98\xe0\x17\xe8\x25\xf1\x11\x30\x51\xb9\x38\xc4\x39\x79\x31\x31\x8f\x30\xc1\xaf\x18\xe7\xe7\xd8\x47\xc0\x62\xe1\x56\x38\xdc\x05\x72\x6d\x51\x5e\x24\x40\x6c\x2c\x21\xfb\x77\x24\x4c\xbe\x8d\x9e\xb8\x2f\xc6\xd4\x08\x93\x93\x12\x38\xbb\xca\x3e\x02\x26\x3c\x1c\x3b\xc6\xe1\x90\x18\x13\x21\x4c\xb8\x37\xa0\x9e\xc4\x47\xc0\x7c\x01\x83\xa2\xf8\x47\xc0\x02\x01\x83\xa2\xf8\x47\xc0\x42\x01\x63\x4b\x52\x62\x5d\x0a\x61\x63\xe1\x66\xe2\x54\x31\xfb\x08\x98\xa8\x38\x2e\xb8\xf0\x8f\x80\x09\x7e\xe1\x24\x2f\xff\x70\x98\x00\xc1\x58\x1b\xff\x44\xbc\xe0\x17\xce\x48\xf3\x8f\x80\x09\x7e\xe1\xc4\x21\xff\x08\x98\xf4\x08\xe5\xe2\x86\xd4\x51\xb1\xe0\x97\x37\xc6\xc9\x4c\x31\xa3\x89\x30\xc1\x2f\xb6\xa8\x27\x1d\x70\x84\x09\x7e\xe1\x14\x39\xff\x08\x98\xe0\x57\xb3\x2a\x24\x75\x54\x2c\xf8\x05\xc3\x5d\xf1\x11\x30\xc1\x2f\xf4\xf5\xf9\x47\xc0\x04\x53\x70\xca\x9e\x7f\x10\xa6\x4e\xaf\xc9\xd9\x72\x75\xd2\xa2\x13\xdf\x9a\xde\x94\xf1\xad\xd9\x4d\x19\xdf\x9a\xdc\x94\xf1\x5f\xe8\x7a\x5d\x7c\x52\x74\x08\x1b\x22\xb1\xea\xd0\xbd\xfe\x32\xed\xf3\x97\x69\x9f\xbf\x4c\xf7\xf9\xcb\xf4\x90\xbf\x4c\xf7\xf9\xcb\x74\x9f\xbf\x4c\xf7\xf9\xcb\x74\x9f\xbf\x4c\xf7\xf9\xcb\x74\x9f\xbf\x4c\xf7\xf9\xcb\x74\x9f\xbf\x4c\xf7\xf9\xcb\xb4\xcf\x5f\xa6\xfb\xfc\x65\xba\xcf\x5f\xa6\xfb\xfc\x65\xba\xcf\x5f\xa6\xfb\xfc\x65\xba\xcf\x5f\xa6\xfb\xfc\x65\xba\xcf\x5f\xa6\xfb\xfc\x65\xba\xcf\x5f\xa6\x7d\xfe\x32\xdd\xe7\x2f\xd3\x7d\xfe\x32\xdd\xe7\x2f\xd3\x7d\xfe\x32\xdd\xe7\x2f\xd3\x7d\xfe\x32\xdd\xe7\x2f\xd3\x7d\xfe\x32\xdd\xe7\x2f\xd3\x7d\xfe\x32\xdd\xe3\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x3d\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\xdd\xe3\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x3d\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\xdd\xe3\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x3d\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\x03\xfe\x32\x3d\xe0\x2f\xd3\xbd\xfe\xf2\x5d\x91\xd3\x2f\x2b\xfa\x49\xa5\x94\xed\x47\xb0\x15\x68\x77\x17\x99\x06\xee\x6e\x24\xc3\x76\x12\xe0\xce\x5e\x32\xb6\x58\x28\xc0\x3d\xdb\xc9\x1c\x04\xd7\xad\x65\x29\x66\x86\x23\xbb\x01\xea\x1b\x3e\xec\x16\xb4\xb3\xe7\xc3\x09\xc7\x0d\x54\xdb\xf6\x11\xe2\x32\x4b\x03\x54\x67\xbd\x41\x01\xe3\x66\xbd\x2c\x5f\x69\xab\x68\x98\x52\xf8\x2c\x12\xa8\xd1\x84\xa5\xda\xa1\x0a\x57\xa9\x92\x6e\x8a\x84\xaa\x54\x45\x62\x17\x93\x84\xb6\xc9\x42\xb3\x90\x7d\x2c\xca\x2f\x1d\xe7\x1f\x1b\x08\x41\xce\x01\x98\xbe\xc7\x44\xb6\x1c\xc2\xf4\x0d\x26\xb2\xd9\x10\xa6\xef\x2e\x91\x6d\xa6\xec\x51\x60\xb2\xe2\x49\xc3\x8c\x20\x7d\xc7\x4b\x28\x0c\x33\xc2\x74\x52\x6c\xe1\x24\x20\x4c\xdf\xc2\x19\x09\xe7\x08\x61\x3a\x29\xe0\x06\x03\x53\xd6\xe9\x47\xbc\x73\x54\x64\x2a\x88\x61\x3d\x42\x40\xaf\xd7\xdb\xea\x4e\xa3\xc9\x16\x9d\x4d\x43\x71\x9e\x81\xa3\xef\x44\xf5\x85\x72\xd1\x70\xf4\x7a\x78\xb8\x59\xac\x8d\xd3\xdd\x8b\x8a\xeb\x35\xeb\xf4\x53\xae\x2e\xce\x63\x09\x01\xdf\xb2\xb0\xa6\xf7\x45\xbe\xbc\xcb\x6e\x6e\xe4\xf2\x7e\xb3\x48\x86\x7e\xab\x8a\xe1\x3c\x8d\xa2\x37\x86\x27\xac\x9f\x8a\xa2\x8b\x07\x3a\x22\xed\x5c\xf4\xaa\x8c\x85\xbf\xbb\xce\x6e\xef\x94\x4d\x79\x6c\xa8\x8c\x8b\x94\xe8\x32\x4a\xb0\xba\x83\x82\x6d\xff\xc5\x11\xad\x84\xab\x3b\x28\xd8\xde\x5f\x74\x0f\x25\x5c\xdd\x41\x81\x1b\x7f\x79\x3d\x05\x5c\xdd\x41\x21\xb4\x8f\x80\xab\x3b\xcd\xd0\xbb\xc4\x95\x56\x57\xe6\xdf\xec\x56\x62\x6d\xdd\x0c\xb8\x25\xd8\x79\x02\xae\x59\xe1\x66\x47\x81\x84\x4b\xcf\x45\xdf\x5e\x25\xe1\xbe\xea\xdd\x37\x5b\x09\x10\xde\x5e\x39\x64\x42\xe9\x08\xaf\x5c\xc7\xd1\xb7\x59\x87\xfd\x19\xe9\xe2\x6d\xf7\xe7\xa4\xcb\xb7\xad\x35\x78\xff\x8a\x22\x58\x61\x74\x0c\x75\x1c\x75\x2a\x45\x31\x67\x4e\x53\xa4\x5c\x80\xc4\xcd\xa4\xe2\xd3\x80\x95\x6d\x2c\xc2\x2a\x31\x0d\x2f\xe0\x87\x92\xb7\x0d\x0f\xee\xd6\x40\xed\x27\xc1\x9a\x9a\x1f\xa3\xcf\x19\xa8\x70\xcd\xf8\x84\xae\xf0\x8d\x25\x5c\xdf\x61\xc6\xb6\x0f\xaa\x70\x95\x4b\xb8\x6d\xd5\x96\xd4\x69\xdb\x78\xb0\xfc\x50\x6e\xe3\x51\x10\x9c\x27\x31\x34\x1a\x71\x97\x9b\xe3\xeb\x18\x1a\x95\xd0\x56\x71\xa4\x23\xa8\x64\xc2\x88\x3f\x94\x6d\xa9\x6f\x26\xf2\x5c\xbe\x03\x83\x6d\x6b\x67\x18\xea\x0e\x0f\x87\x6d\xb2\x0e\xa5\x8a\x56\x30\x1c\x65\x2c\xe1\xe2\xb4\x57\xd3\x93\xf4\x7d\x1e\x4e\xe8\x8b\xd6\x6c\x3a\x93\xbe\xd5\x03\x77\xf0\x60\x8b\x2a\xfd\x49\xdf\xed\x81\xee\x80\xeb\x69\x1d\xa1\xb5\xdb\xc8\xf1\xc4\x18\x5e\xa5\x45\xdf\x70\xe4\x38\x72\xef\x65\xe0\xb5\x70\xe8\x41\x9c\x9a\xd2\xb5\xaa\x20\xc5\x58\xc2\x55\x5a\x50\xe0\x68\xbb\xf5\x5c\x5d\xcd\x48\x24\x6d\xb7\x9e\x63\xeb\xec\x11\x48\xea\x6e\x3d\x1c\x62\xa9\x0c\x12\x48\xda\x76\xbd\x16\x8f\xf4\x5e\x2b\xdd\x0d\xd7\xd7\x11\xba\x0e\x49\x1b\xa3\xeb\x96\xd8\xad\x42\xba\xce\x49\x64\xeb\x18\x5d\x17\x85\x33\xef\x5e\xdd\x07\x19\x08\xe5\xca\x85\x2e\xa7\xb9\xaa\x75\xb8\x13\x63\x19\x44\xdb\x5f\xc9\xe6\x8f\x05\xab\x39\xc8\x39\x00\x53\x2b\x24\xb9\xcf\x61\x6a\x55\xa4\x31\xe6\x30\xb5\x12\x72\x3f\xe7\x7d\x5a\x16\xa2\xff\xa3\x6c\xf8\xe0\x4a\x86\x12\xa2\x12\x12\xb8\x62\x14\xcd\x60\xda\xf6\x9c\x48\xb8\xc4\x0c\xa6\x12\x82\x9d\x04\xf5\x25\x83\x69\x5b\x73\x84\x43\x7c\x4f\x57\xd9\xf6\xbe\x73\x4a\xa6\x75\x84\x85\x61\x75\x4e\x4e\xb0\x6a\x22\x4c\xdb\x4f\x09\x63\xf4\x28\x10\xea\x58\x45\x50\x0d\xaa\x63\xcb\xae\xa7\xa2\xa8\x36\x35\x0e\x24\xa3\x15\x0c\xd5\xaa\x36\x4a\x40\xc5\x50\xed\x6a\x10\x48\xa6\x23\xc6\x66\x5b\x6e\xd6\xa2\x9e\xfe\x58\xa8\x00\xa7\x8d\x21\x35\x96\xc3\x67\xc3\x54\x52\x19\x8a\x9c\xe4\x41\xd1\x74\x74\x5a\x19\x8a\x9c\x1b\x1b\xf3\xed\x67\x2a\xb1\x0c\x45\x68\x2c\x8f\xcd\x0d\xab\xb4\xea\x0a\x18\x0d\x00\xce\xa9\xe0\x7c\x1e\x47\x69\x29\x35\xec\xcf\xb6\xaf\xd3\x52\x6d\xca\x2c\xbf\x6d\x2f\xac\xb0\x1d\x73\x12\xa9\xb5\x39\x71\xec\xca\x99\x85\x06\x87\xed\x4f\x6c\x76\xa7\xc6\x38\x13\x20\x1c\xfd\xfb\x6c\x95\xeb\x8e\x21\x53\x66\xc2\x89\xb8\xcf\xf2\x7a\x59\xd2\xf4\x5e\x1d\x1c\x73\x17\x16\xc1\x55\xfd\xa5\x2c\xaa\xce\x29\x23\x17\xe7\x35\x25\xb8\x73\xd0\xa8\x05\xef\x9c\x35\x62\x4e\x87\x84\x77\x8f\x1b\xe1\x3c\x94\x84\x77\x4f\x1c\xe1\xfc\xc3\x7d\xb1\x5c\xa6\x55\x96\xb7\x4b\x67\xa9\xf3\xf4\x63\xfa\x1f\x45\x67\x8f\x9b\x2b\xdd\x06\x05\xc1\x79\x12\x43\xdf\x7d\x36\x16\x53\x84\x0a\x86\xbe\x0d\x4d\xba\x8e\x0a\x86\x5e\x0d\x87\xcf\xbf\xe7\xe9\xc7\x2f\x6a\x27\x66\x0e\x31\xc4\x76\xf6\xf5\x23\xa4\x58\xaf\xd6\xe9\x52\xd6\xc9\x13\xd3\x19\xa8\x51\x71\x0b\xf8\xaa\x4c\xaf\x85\xda\xc0\x43\x3f\x2e\x3f\x57\x24\xa1\x72\x14\x20\x76\xa3\x87\xae\x0a\x96\x83\x00\xe1\x45\x07\x91\x0a\x56\xc7\x00\x8d\x9e\x97\xe0\xce\xf6\x62\x1c\x6b\x75\x37\x9e\x87\x7c\xfd\xaf\x67\xd3\xb9\x0e\xd2\x5c\x2a\x28\xb4\x01\x69\x4c\xf7\x3c\x15\xa4\x39\x7b\xb6\x0a\x69\x66\x1b\xb0\xea\x71\x0b\xe6\x1c\x02\xaa\xb4\x84\x7e\x0b\xa8\x1d\xf3\x0a\x5a\x40\xed\xa4\xd7\x58\x00\x1b\x25\xcd\x76\x22\x32\xd5\xe7\x4b\x98\xc6\x16\xcf\x11\x3d\x53\xd7\xcc\xc8\x18\x9c\xe7\xc3\x5e\xaf\x29\x65\x57\x2e\xb6\xb0\xc9\x4f\x5d\x1f\x03\x31\x4c\xc7\x81\xc9\xda\xa4\x6b\xda\x3b\xca\x61\x9e\xa6\x2d\x50\x94\x81\x00\x9b\xf5\xc2\xa3\x67\xae\x0a\x76\x54\x19\x41\xe2\x51\xb1\x49\xb8\xdb\x3f\x90\x90\x70\x4f\x1d\x92\x33\x4f\x59\x83\x8b\x45\x31\xb1\x2d\x35\x12\xd0\x96\xd2\x74\xc6\x81\x36\x12\xd4\x50\xe4\xfc\xf7\x58\x1b\x4d\x6a\x38\xb2\x2f\xf8\xfb\xf3\x91\x1d\x42\x1f\x55\x6a\x38\xbe\x62\xc8\x95\x91\x25\xe0\xb4\x74\x38\xce\xe6\xb2\xa5\x2c\x7f\xdc\x46\xd1\xe5\xc1\x16\x4b\x07\x1a\x8e\x2e\x16\xd8\x36\x9d\xa2\x74\xe9\xf0\x55\x09\x90\x38\x6d\x21\xc1\xc1\xda\x26\xdd\xa4\x5f\xd2\x4f\x77\xd9\x46\x1b\xe1\xa2\xd9\x41\x38\x4d\x97\x77\x9b\xed\xcd\x8d\x0a\x66\x4b\x12\x81\x0a\x76\x9e\x80\xeb\x0a\x57\xae\x83\x48\xb8\xae\x6e\x03\x31\xd6\x93\x70\x7d\xf3\x6f\x2c\x06\x7b\x1b\x5a\x6e\xdb\x3a\x03\x17\x74\xda\xc3\x53\x36\xb7\x21\x20\xfa\x09\x28\x47\x4c\x32\x75\x07\xa5\xb1\x58\x28\xe9\x8e\x47\x03\xb1\xe6\xd4\x19\x8a\x22\x75\x08\x59\x6f\x85\x29\xc6\x76\x0b\x71\x4b\xb5\xc3\x21\x3a\x11\x63\x29\xae\xeb\xed\xbd\x7e\xfc\x4a\x3a\x1b\x00\xd2\xf7\x22\x4b\x2f\x11\x40\xfa\x3e\x64\x57\xca\x64\xf1\x69\xa5\x9d\xc4\x63\x63\x44\x5f\x18\x19\xcd\x61\x03\x12\x71\x6a\xdf\x6f\x40\xb2\xf3\xf3\xdd\xec\x9c\x4e\xcd\x45\x03\x76\xf8\x0d\xa1\x9a\x6f\xe6\xf2\x9d\xec\x9c\x52\xd5\x29\x43\x2f\x56\x4e\xa7\xe8\x9a\x9c\x2b\xf9\x56\x2f\x69\x62\x5b\x03\x06\x1e\xdb\x1a\x2a\xf0\xd8\xd6\x20\x01\x63\x8b\xea\x8b\x7a\x34\x98\x9f\xe2\x11\x13\xae\x12\xdc\xd9\x3a\xce\x66\x39\x24\xbc\xb3\x77\x9c\x0d\xb3\x24\xbc\xb3\x79\x9c\x9d\xe0\x91\xf0\xce\xee\x71\xb6\x8a\x5e\x16\x5f\x52\x65\x80\x1b\x4a\xb5\xef\x6a\x50\xa7\x71\x26\xd9\xe9\xd6\x40\x03\x73\xe2\xc2\x31\x9f\xfc\x67\xcd\x23\xc1\x62\xcf\x46\xc4\x87\x02\x7a\xc9\x62\x1f\x4b\xcc\x6c\x23\x6b\xa3\x2a\x5d\xad\xd6\x54\x65\x9c\x76\xfc\x54\x9f\x78\x91\xb3\x82\x68\x02\x7b\xe6\x5c\x7c\x5b\xd4\xb7\x67\xba\x05\xf4\x21\x0e\xa2\x7a\x26\x5a\x40\x9f\x46\x4d\xa6\x9a\x6e\x0b\xc9\x20\x18\x23\x28\x5f\xa9\x4d\xec\x82\x80\xe2\xf4\x07\x8e\x04\x75\xe7\xdf\x0f\x85\xe9\x19\x2b\x30\xa7\xb1\x4b\xdc\xec\xc5\x0a\x94\x53\x3b\x96\xe7\xfb\x70\x2d\xbc\x75\x74\x2b\x1c\x4b\x93\xa7\x42\xfd\x3d\xc5\x56\x77\x74\xad\x9e\xdf\xe5\xde\x60\xa4\x40\x9d\xc3\x60\x7d\x1a\x32\x16\x53\x22\x02\xac\x4f\x40\x8e\xc5\xbc\xb5\x00\x77\xd6\x0a\xd8\x24\x66\x95\xd1\x3c\x4f\x15\x25\x01\x03\x43\x9c\xe1\x67\x90\x8e\x21\x43\x3b\xc6\x60\x1d\x03\x86\x33\x60\x0c\xd6\x31\x5c\xac\xe5\x10\xd6\x36\x58\xac\x96\x7b\x66\xc4\xd0\x23\x6e\x4d\x86\x29\xf3\x65\x0a\x54\xa8\x2c\xd4\x3b\x68\x17\xd4\x8c\xe5\x59\xf0\x88\x6f\x02\x60\x9d\x42\x9f\xfd\xc2\xc9\x4c\x47\x6a\xd8\xf6\x18\x11\x8a\x8c\xa5\x6a\x96\x50\x49\x16\xd8\x02\x47\x1e\xc5\x92\x70\x49\x18\x6e\xb3\x91\x93\xf5\x12\xee\x29\x9e\x78\x14\x77\xb2\x17\xb4\x01\x83\x6d\x8d\x34\x75\xbe\xcd\x15\x5d\x12\x1d\xb4\xce\xf9\xbe\x38\xd2\xe6\x0f\x3b\x67\xfb\xa2\x40\x9b\x3c\xec\x9c\xeb\xc3\xa1\x7a\x33\x69\xd0\x3e\xd3\xc7\xd8\xda\xcc\x89\x75\xa6\xfa\x5a\xe4\xe5\xad\xb9\x32\xb9\x3c\x05\x90\xee\x22\x8d\x04\x75\x16\x67\x98\x2b\x0d\xa0\xce\xa2\x0c\x73\xa4\x01\xd4\x5d\x8c\x41\x2f\xaa\x7f\x74\x1f\x88\xbd\x3d\x0a\xd8\x79\x02\xde\xda\x46\xc9\x8e\xf9\x29\xf0\xd6\x76\x4a\xb6\xd7\x4a\x81\xb7\xb6\x55\xe2\xfe\xb7\xd6\x4c\xe8\x58\x6e\x2e\x42\x33\xd4\x9e\x03\x8d\x63\xbe\xff\x83\xb7\x6f\x6b\xf6\x93\xdd\xfd\xd2\xf4\x89\xd6\xbc\x27\x8e\x83\x7d\x69\xca\xdb\x33\x9e\xb8\x8a\x64\x4b\xd9\xab\xe5\xfa\x0f\x5f\x77\x16\x0b\x9d\x75\x9a\x77\xc6\x87\x63\x9e\xa2\x33\x3a\x44\x3f\xb1\x4e\xf3\xce\xd8\x30\xe4\x80\xf6\xc8\x10\xcd\x77\x7d\x97\x55\xf5\x5a\xde\xce\x10\x8a\xc3\x8f\x78\x23\x0c\x07\xea\xd3\x04\x72\xbc\xc0\xa1\xfa\x2c\x87\xb4\x9d\x1c\xaa\xcf\x71\xc8\x89\x60\x0e\xd5\xa7\x06\xa4\xb4\xd7\xc5\x7d\x5a\x17\x4a\xa9\x71\xcc\x15\x25\x83\x38\xfb\x41\xda\x92\xb8\xcb\x55\x28\x03\xa9\xa4\x40\x03\xa1\x06\x65\x20\x6d\x31\xdc\xe7\x1a\xb4\x35\xa4\x0a\xe5\xce\x11\x5b\x83\x2a\xb2\xdc\x5c\xf7\xd1\x1e\x47\xd9\xda\x65\x1f\xed\x11\x94\xad\x5d\xf5\xd1\x1e\x3b\xd9\xda\x4d\x1f\xea\xc9\xdc\xc6\xfc\xb3\x7c\xdb\x23\x2a\x50\x22\x38\x86\x45\x25\xd1\x3b\x98\xc2\x09\x7a\x54\x07\xbd\xe3\x28\xdc\x31\xe6\x6b\x60\x6d\xb4\x2f\x37\x09\xf6\x8e\x9e\x80\x6a\xdc\xe9\xf9\xe9\x8e\xa6\x82\x66\xbf\x99\x6c\x8a\x05\x48\x5f\x36\x74\xc4\xce\x2a\x84\xe9\xf2\x85\xbb\xbf\x7c\x01\xd3\xa5\x2b\x14\x55\x41\x98\x2e\x5b\xa1\xd0\x12\xdd\xd3\x9f\xb2\xd1\x10\x54\xdd\x17\x1f\xba\x57\x0f\xa1\x05\xef\x5f\x93\xb0\x25\xa4\xb3\x18\xd1\x80\x3a\xab\x10\x0d\xa8\xb3\xfc\xd0\x80\x3a\xeb\x0e\x0d\x48\x9b\x8c\x50\x27\xa4\x76\xa4\x3e\xb9\x61\x4f\x29\xdc\xf0\x07\xe5\x5f\xe5\xdb\xfb\xbe\x7b\x66\x73\xfa\x69\xc0\xef\x77\x66\x17\x20\xdf\x88\x0b\x63\xff\x9c\x96\x55\xd2\xfb\xaa\x88\x72\xa7\xec\xef\x4c\xbc\x78\xff\x5b\xeb\xbd\x69\xce\xff\xfa\xde\x5a\x8c\xac\xf7\xd6\xe9\xad\x76\x63\x77\x49\x2a\xbc\x9a\x57\xbe\x1d\x91\xcd\x2b\xfe\x08\xbb\xf1\x0b\x7f\x79\xfd\x63\x5a\x66\xe9\xf5\x9a\x4e\x06\xc6\x48\xbc\x5f\x9d\xf1\xf7\x69\x4a\x76\x15\xae\x46\xd8\x89\xc8\xbf\xb2\x8a\x64\x2f\x6c\x5e\x2e\x4c\xfe\x74\xcd\x00\x32\x6a\x15\x4a\xab\x65\xba\xa1\x03\x81\x0e\x65\x97\xe2\x3e\xdf\x62\xd7\xe5\x46\x93\x71\xf2\x40\xf3\x65\xb1\xa2\xbf\xbc\xf9\x9e\xc8\xd0\x79\x71\xbf\x29\x72\x9a\xd7\x84\x65\xfc\x87\x77\x3f\xbe\xee\x3c\x17\x54\x27\x0f\xc6\x0b\x63\x62\x0c\xd7\xf5\xd4\x20\xc6\x4b\x08\xde\x62\x70\x08\xc1\xf4\x7e\x33\x35\xc8\x37\xc6\x37\x13\x63\xf8\xb7\x6d\x81\x80\x6f\x00\xf0\x1b\x2f\x9e\x1a\xcd\x0b\xde\x4d\x0b\xcc\x5f\xbc\x1c\xbe\x37\xde\x7f\xb3\x38\xbd\x25\x3d\xed\x5b\xcf\xe9\x62\x67\xed\x58\x5d\x6e\x69\x3d\xc3\x27\x99\x5e\xa7\xf9\xed\x36\xbd\xa5\x95\x26\x12\xfd\x28\x27\xcb\xbb\xb2\xb8\xa7\x6f\xb7\x9b\x4d\x51\xd6\x74\x65\x5a\x67\x2c\xe6\x24\x73\xa2\xbc\x27\x81\x49\xad\x89\xf2\xca\x8a\xf2\x6e\x0c\x35\xe7\x79\xfa\x31\xbb\x4d\xeb\xa2\x3c\x59\x73\xfc\xa6\x2a\xc7\xa7\xb7\xc4\xb8\x32\xac\x85\xb5\x23\xb6\xb5\x8f\xe4\x36\x3d\xea\xc3\x34\xbc\xd2\xec\x1d\x1f\x8e\x38\x1c\x2a\xe4\xb2\x4c\xf1\x62\xea\x3f\x6d\x69\xf9\x45\xab\xbf\x7e\xa9\xf4\x99\x61\xf1\x7b\xe8\xe5\x0b\x0a\x96\x7c\x7a\xa8\x86\xde\x95\x01\x8c\xbd\x1f\x34\x34\x2c\xc2\x6e\x3d\xcf\xd4\x5b\xcf\xf9\x9b\xed\xd9\xbc\x5c\x08\xcc\xc4\xb0\xa6\xf5\x7c\x45\xdb\x42\x63\x56\x73\x7b\x61\x2d\x92\x5e\x88\xb3\x68\x6e\xce\x96\x7c\xf9\xe5\xcd\xeb\xbe\x1e\xdd\x40\xf7\xb7\x1c\x7f\x55\x88\xe3\x41\x83\x51\x35\xdb\xaf\x66\x31\xcf\xb7\xfd\x9b\x67\xcb\xf5\xd1\x3a\xbd\xdf\x24\xfa\x8d\xfe\x8d\x6a\x79\x51\x9f\xd5\x13\xfa\x32\x3b\xcb\x04\x49\x7f\xdf\xa4\xfd\xaf\xd5\x34\x7a\x4b\xbe\xca\x63\xd6\xc4\xb0\x8d\x46\x74\xfe\x82\xda\x7c\x93\x2e\x69\xfb\xed\x0c\xfa\x22\xb1\xf9\xc5\xde\x86\xc1\x1f\x0d\xc0\xa7\x6f\xb4\x54\xd8\xde\xf5\xc9\x27\x19\xf1\xf8\xa8\xfd\x4c\x8c\x81\xfc\x9f\x61\x4d\xe9\x4b\x15\x28\x04\xc1\x52\x23\x47\x89\xfa\xab\x79\xfd\x42\x49\x26\xdf\xcf\x10\x0a\x19\x1f\x4d\xea\xbb\x1d\x9e\x54\xa4\x48\xb2\xc7\xc7\x80\x7a\x24\x4f\x78\x9d\xdf\xd6\xe9\xf2\x83\xe9\x34\xb7\xc4\x27\xfd\x9d\x91\xd5\xd9\x60\x2f\xd4\x19\x89\x7c\x77\x09\xf8\x8f\x77\x93\x4f\xeb\xa4\x3e\x33\x40\x2b\xd6\x13\xc3\x20\xda\x5b\x57\xc6\x3a\xbb\x16\x94\x4d\x06\x35\xcb\x7d\x40\x3f\x6f\x32\xf0\x3c\x06\xc6\xa8\x38\x75\xa8\x37\x32\x2a\x63\x54\x5b\x32\xe9\xba\xb8\x35\x73\xe8\x28\xec\x4a\xf1\xc2\x22\x55\x9f\x04\x77\xa5\xad\x1c\x0e\x4d\xf6\x36\x1f\xaf\x47\x29\x72\xb1\x08\xe5\xaf\x94\xc1\x2f\x22\xdf\x36\x03\x95\xd7\x53\xb7\x6a\x52\x49\x3b\x27\x78\xd5\xbd\xe0\x1f\x7a\xf6\x19\x1d\xb9\x13\xf7\xf0\xe3\x6e\x75\xdf\xc3\x6e\xbb\xe6\x15\x84\x87\x1d\xa9\x92\x6c\x5a\xbd\xa8\xd5\x67\xd8\xca\x79\x75\x9c\x2d\x92\x7a\x5e\xed\x7d\xf1\x4d\xb6\x1d\xa3\xb4\xba\x4f\xcb\xfa\x72\x5d\x14\xe5\x45\xf6\x31\x5b\xd1\x56\x77\xe0\x0f\x97\x9c\xd6\xa4\x64\xd7\xef\x2f\x69\xb6\x36\x9b\xb7\x55\xca\xe3\xec\x85\x43\x8f\xfd\xb3\x72\x82\xe0\x1b\xc8\xc9\xcc\x84\x81\x4b\xf3\x55\x71\xff\x7d\xde\xff\xa4\xd5\x40\x49\xc1\xae\xf6\x47\x74\xd3\xfa\xd6\xac\x8f\xe9\xc8\xb1\xac\x11\xf6\xd3\x1f\x69\x55\xa5\xb7\x94\x3f\x8a\xa8\x9b\x15\x7c\x51\x4a\xa8\xef\x2b\xbc\x68\xbf\xff\x3d\x97\xae\x29\xd8\xb1\x57\x6b\x5a\x59\xc8\xa7\x6b\x0c\x9a\x83\x96\x6e\x83\xb7\x39\xbb\xa9\x1f\xc1\xec\x99\xc8\x7b\x46\x5f\x95\x3c\xec\xba\xe4\x2a\xaf\x63\xa5\xab\xd5\x8f\x02\x55\x7b\x7a\x43\x28\x7e\xf6\x52\xb2\xe0\xf9\xbc\x5e\x4c\xb3\x13\x24\xfa\xae\x58\xaf\x68\x59\x9d\x69\xc5\xcd\xeb\x45\x92\x89\x5f\xca\x55\xfc\xbf\x65\x7e\xd3\xfc\xaf\xef\xab\xf7\xbf\x05\xa7\xe9\xb7\x9a\xd3\xa4\x3c\x71\x32\x80\x32\xb4\x12\xe6\xa5\x7e\xfd\xff\xe2\x64\x59\xe4\x35\xcd\xeb\x9d\x35\xd9\x5f\xf8\xe1\x6a\xdf\x64\xf9\x6a\x96\xaf\x5e\x17\x69\x5f\xf5\x1b\x21\x6b\x73\x7a\x59\xe4\xcb\xb4\x36\xa1\x37\xce\x17\xa4\x4a\xe6\x8b\xe6\x55\x97\x02\x6d\xea\x59\x99\xc8\x87\x13\x26\x55\xa2\x3e\xa2\xc0\x5f\xb9\xc9\x4d\x6b\x52\x9b\xe0\x25\xee\xd8\xfb\x82\x4a\xff\x67\xe5\x29\x54\x99\xfc\x45\x76\x64\xc8\x1b\x7a\x43\x4b\x9a\x2f\xf1\xfd\xd7\xcc\x22\xc5\xc9\x75\x96\xaf\xd8\x3b\x9c\x47\x76\xeb\xb7\x63\x59\xbb\xe6\xb7\x35\xcd\x4d\xeb\x20\x4b\xd6\xfb\x78\xd1\x3c\xce\x01\x2a\xe1\x5f\x7f\x7c\xfd\x87\xba\xde\xbc\xa1\x7f\xdb\xd2\xaa\x9e\x96\x27\x45\x0e\x29\x69\xae\x59\x4d\xd7\xb6\x93\xa4\x04\x65\x51\x6f\xab\x33\x56\x09\x45\xd4\xcc\x7f\x79\xfb\xc7\x9f\x98\x5b\x62\x96\x27\x25\xad\x36\x45\x5e\xd1\x77\xf4\x73\x6d\x59\xa4\x36\x2d\x6b\x82\xaf\xea\x89\x0c\xb4\x8a\x90\x92\xbd\x79\x6d\xfc\xfe\xd5\x3b\x83\x50\xf8\x5d\xd1\x7c\xd5\x5b\xbb\x0e\xdf\xfa\xfb\xbc\x2e\xa9\xef\x57\x23\x4b\x73\x2e\xd5\x07\x06\xe7\xd9\xb1\xb3\xd8\x1d\xe6\x64\xb7\xd4\xa7\x09\x3b\x94\xdf\x2d\xad\xfb\x1b\x64\xca\x9f\xa5\x19\x68\xdd\xc0\xe2\xcf\xf8\xcb\x6e\x41\x17\x72\x48\xa0\xb9\x31\xe8\x21\x0e\x87\x66\x99\xb4\x1c\x5c\x4e\x89\x49\x2d\x8b\x1c\x95\x56\xeb\xc9\x0f\x66\x10\xc5\xa0\x82\x97\xc2\x9f\xfc\x68\xc6\x3c\x67\x74\x92\x35\x6f\x11\x99\x75\xe7\xf5\x1c\x70\x2d\x92\x79\xbd\xe0\x0a\xab\x2b\xe2\x25\xa9\x2d\x6b\x52\x1e\x64\xf5\xa6\x2c\x96\xb4\xaa\xbe\x77\xa2\x7c\x56\xd7\x65\x76\xbd\xad\xf7\x29\xb2\x84\x9e\xfc\x0d\x5c\x60\xf6\x54\x73\x51\xce\xd6\x6b\xd3\x98\x43\x95\x17\x86\x45\xb2\xc4\x9e\x66\x8d\xdd\xca\x46\x23\xf6\x3a\x7c\x5f\x01\x66\x3d\xcf\x16\x87\x45\xa0\x2f\x59\xff\xd3\x46\xf5\x61\x83\x70\x52\x17\xbf\x6c\x36\x42\xf5\xed\xc4\x9b\x5d\x30\x4c\x90\xe4\x18\x50\x09\xc3\x02\x69\xc8\xac\x07\xb0\xe0\x59\xa2\x74\xb0\xcc\xe2\x16\x1c\x1f\x17\x06\xd3\xde\x7e\xbc\x25\xcd\xbf\xa9\x07\x88\x0c\xad\x78\x52\xa7\xb7\x3f\xa5\xf7\x74\x64\xfc\x06\x7e\x65\xab\x11\x3a\x45\x99\x45\xea\xc6\xd6\x83\xd4\x65\xc2\xdf\x2f\xc1\x2d\x9b\x97\x8b\x69\xa1\x8d\x28\x12\x1c\x51\x94\x49\xa1\xbc\xc9\xc6\x10\x41\x55\xa9\x98\xbf\x45\xcc\x22\xa9\xcd\x56\xd5\x94\xa4\xd6\xc8\xb8\x32\x46\x25\x7f\xf2\x2a\x97\xde\x2b\x8c\x78\x8d\x2b\x23\x49\xaa\x33\x7a\x52\xd3\xcf\xf5\x39\xb3\x0e\x49\x3e\xa1\xf8\xd6\x90\xcc\xac\x22\x39\x3e\xbf\x5a\x9f\xfc\x5c\x0a\x31\xeb\x1a\x70\xf9\x06\x73\x55\x17\x65\x7a\x4b\x13\x4a\xd4\x9f\x7f\xbc\xae\x68\xf9\x91\x96\x57\x8c\x80\x22\x7f\xcb\xe2\xcf\xef\xd2\xfc\x96\x5e\xa9\x8a\x0a\x11\xb2\x6a\xb6\xac\xb3\x8f\xf4\x2a\x39\x72\x58\x4c\x0a\xbf\xd3\x9a\x8a\x77\xd9\xeb\x12\x3c\xeb\x23\x87\xbf\x2e\x57\x3f\x3e\x1a\xa7\xc6\x34\x3b\xa1\xf9\x8a\xb3\xe7\xd4\xb0\x1e\x1f\xcd\x6c\x94\x40\x88\x70\xb9\xa4\x37\xd9\xe7\x24\x6b\x7e\xbd\xa1\xcb\xa2\x5c\x55\x57\x38\x0f\x82\xbc\xc1\x37\x73\x05\xbd\xd5\x15\x58\x2c\x04\x2c\xef\xb2\xf5\xea\x32\x85\x4e\x90\x51\x25\x01\xc6\xbf\xce\xaa\x1a\xe3\x7a\xf9\xa4\x88\xf8\xc5\xab\xcb\xd9\x2f\xaf\xdf\x5d\xfd\x79\xf6\xfa\x97\x57\x89\x3e\xf3\x62\x1a\x1c\x0a\xe4\xf6\xe4\xc2\x68\xed\x63\x3a\x38\xe2\x82\xe3\x2b\x7a\x93\x6e\xd7\xf5\x9f\xd3\xf5\x96\x26\x35\xa7\x71\x5b\x96\x34\x17\x71\x10\xa3\xd1\xc1\x90\x0a\x51\xe7\x64\xbe\xe8\xaf\x06\x23\xe0\x40\x6d\x9e\x5d\xf3\xe7\x65\x9f\xae\x56\xa2\x21\xba\xbe\xa2\x24\x97\x3d\xb3\xc4\xfc\xf5\x67\x64\x5a\xd2\xfb\xe2\x23\xed\xcd\x57\x19\xe0\x35\xb9\xcb\x07\x10\xad\x69\xfd\x32\xb1\xb9\x1f\xd9\xc0\xf9\x0b\x7f\x35\x71\x9e\x4b\x81\x66\x99\x1a\x23\xd9\x69\xa8\xa4\xa7\xa9\xce\x4e\xff\x6a\xb2\x01\xcb\x63\xbe\xbd\xbf\xa6\xa5\xf5\xdb\x53\xf6\x62\x19\x1f\xbd\x74\x64\xc0\x3a\xeb\x44\x4d\x0c\xf6\xde\x75\x33\xe6\xe9\xa0\x9c\x29\xaa\x10\x83\xac\xd0\xec\xe6\x8b\xd9\x2d\x81\x7b\x94\x5a\x11\x9d\xea\x3c\xd5\x33\x56\x54\x74\xf1\xd6\x23\xc2\x47\xba\x46\xe8\xbe\xf8\xfb\x53\x51\x0f\x44\xda\x95\x61\x4d\xf7\x68\x10\xae\x8a\x5a\x02\x60\xf6\xaa\xa9\x3d\x4d\xa9\x88\x66\x3f\xad\x4f\x91\x3a\xe3\x0f\x8c\x1f\x22\xd7\xd6\xc9\x55\x3a\xc1\x57\xd2\x0a\x45\x72\x7d\xdb\x23\xee\xf6\x54\x79\x30\xd0\x7a\xb0\x93\xe4\xf8\xb8\x1e\x0e\xe9\x70\x28\x4c\x67\x99\xfc\x11\xc5\xe5\xe4\x03\xfd\xc2\x5d\x6b\x55\x75\x5a\xfb\x46\x6a\x8a\xca\x1d\x51\xd5\x19\xe5\x75\x46\x15\x3e\x1c\xaa\xe3\x7e\xa3\xa9\x47\x35\x00\xba\x71\x62\xa1\xc9\xc7\xd2\x79\x73\x4b\xeb\xef\x6b\x7a\x0f\x5e\x8f\x2c\xbf\x14\xf6\x55\x49\x26\x1c\x14\xf9\xec\x22\x18\x62\x8e\x98\x27\xe5\xbc\x58\x90\xb4\x31\xb8\x95\x45\xee\x92\x54\x7a\x88\x8a\x82\x1f\x0e\x5b\x7d\x21\xb7\x8e\x92\xbe\xee\xa1\xf2\x67\x9e\x2e\xb4\x8e\xc0\x6b\x7f\x08\x25\xc9\x09\x3e\x93\x3c\x1a\xf1\xfa\x7e\xc9\x97\xe7\x82\x0c\x33\x25\x99\x65\xed\x6c\x7c\x5e\x99\x0e\x87\xca\xc4\x0d\xd5\x7c\xfe\x27\x05\x63\x45\x6f\xb2\x9c\x36\x18\x9d\xe7\xff\x5a\x8c\x94\xe4\xd2\xc5\x94\x0f\x61\x97\x68\xc0\x2f\x58\xcf\x47\xa7\x7f\xd2\x9f\x00\x87\x41\xfb\xd5\x23\x1b\x9a\x95\xc3\x61\xa5\x09\x7c\xf9\xab\xeb\xb0\xcf\x8f\xb5\xa7\x75\xf3\xd6\x64\x2d\x1c\xd5\x76\x6a\x13\xc6\xd1\x73\x7b\x41\xf0\x5f\x87\xff\xeb\x2e\x9e\x49\x06\xb6\x51\x49\xf3\x3e\x1b\xdd\x2d\x8a\x08\xd7\xa2\xc8\x65\xe3\x76\x1c\x22\x02\xc3\x89\x3e\x07\x04\x78\x5a\x77\x5c\x10\x88\x7d\xda\x0b\x51\x58\xdc\x1e\xdc\xc1\xe0\x68\x38\x7c\xde\x53\xeb\xdf\xf3\xf7\xd5\x37\x69\x99\xde\x4f\x06\xcc\x75\xaa\x98\x4f\x4d\xb9\xa1\x6c\xfb\x53\xc2\x5a\x93\xda\xd2\x5f\xe8\xe7\xef\xe6\x67\xb2\xdf\x69\x3a\xa6\x5b\xb8\x18\x4a\x6d\x64\x3d\x99\xbf\xdd\xd3\xbb\xb2\x85\xae\x45\x71\x20\xf2\x14\x8f\xf2\xa2\xce\x6e\xbe\xcc\xd6\x6b\x55\xc5\x0b\x92\x69\x3f\x95\xcc\x19\xc3\x84\xbc\x21\xf7\xfa\x25\xed\x82\x38\xfe\x3e\x7f\xa4\xdd\xfd\xd0\x2e\x3e\x97\x29\xb4\x59\x92\xc8\x92\x1a\xdd\x7f\xb1\x10\xd1\xdf\x46\xca\xe2\x44\x2f\xc2\xbc\x5c\x60\x87\xc5\x6c\x79\x46\x8a\x4b\xa4\x26\x6f\xa2\x21\x51\x46\x98\x97\xfa\x24\x53\x98\x57\x8c\xdd\xa2\x5f\x2b\x91\xa2\x19\xcb\x50\x94\xb8\x12\x25\x08\xc6\x55\xc7\xce\x51\x52\x48\xc7\xad\xea\x11\x9e\x8b\x2d\x78\x6d\x69\x4d\x07\xd8\x77\x90\x49\x6c\xc0\x56\x59\xec\xb5\x4f\xa8\xd9\xf4\xa8\x7a\x7c\x6c\x67\x36\xb5\xaa\x44\x9b\x11\x35\x1d\x12\x06\x81\x17\xb4\x1e\xc1\x65\x58\xf8\xa4\x6e\x45\x7c\x8b\x64\xc3\xa1\x59\x25\xd9\xc8\x98\x40\x21\xea\x70\xac\xdb\xb1\x59\xcf\xaf\xe4\xdc\x6c\xce\x87\x3b\x8d\xd9\x24\xf9\x49\x49\xf1\x4d\xd8\xb5\x69\xf5\x69\x81\x79\xb5\x48\x72\x52\xb0\xee\x26\x86\x55\x15\x30\x8b\x14\x16\xc9\x9f\xf6\x19\xc0\x49\xea\xf0\x5f\x28\xb3\x5b\x5a\x23\x0c\xa3\x14\x4a\xa6\xca\x04\x20\x6b\x19\x52\x26\x99\xe4\x5e\x6d\x4d\x81\x9d\xe5\x70\xd8\x3c\x8d\x5d\xe2\xd3\xd8\x0d\x75\x99\x65\x91\x15\x5d\xd3\x9a\x76\xcc\x2f\x54\xab\xde\x33\x36\xd1\xdc\xeb\x2e\xdd\x24\xe3\xfa\x85\xf6\xd9\xf5\x03\xea\x05\xb1\x06\xeb\xac\xaa\x79\x4f\xe2\x2f\xee\x76\x49\xc3\x3e\x89\x53\x36\x83\xd2\x6a\xad\x65\x77\xf2\xff\x46\xe4\x6f\x7c\x33\xa2\xa3\x6f\x0c\x21\x87\xdf\x8c\xea\xe6\x61\xe6\x9d\x7c\xc2\x77\x5f\xad\x57\xd9\xcd\x8d\xb4\x1d\x6d\x55\xde\xf4\xf9\x87\x74\xb5\xa2\xab\xc9\xc3\x8e\xb0\x76\xc5\xe0\xb2\xb8\xbf\x2f\xf2\x09\x58\x8b\x9e\xa7\x98\xa1\x9d\xea\x66\xf0\x33\x2f\x17\xd6\x59\x76\xc2\xd2\xcc\xe1\xe7\x22\x39\xb2\x27\xd9\x09\xe6\x2c\x23\x34\x85\xa0\xaa\x81\x79\xb9\xc8\xf2\x01\x47\x7f\x7c\x94\xbf\x59\x86\x30\x4e\xe7\x22\xb7\x9a\xd7\x3c\x2f\x85\x0f\x4f\xb4\xb8\xe6\x1e\xf5\x3e\x90\x6c\xab\xcf\x88\x73\x27\xb7\x1c\x0e\x71\xbe\xb4\x59\x8b\xd1\x54\x0a\xc9\xbb\x6e\xaf\xde\xe0\x16\x49\x13\xf3\xe9\x56\x31\x0b\x92\x5b\xc4\xb6\xa6\xe9\x8b\x42\xf0\x24\x15\xcb\xbe\x77\x49\x31\x4f\x17\x64\x9d\xe4\x92\xd7\x77\xa8\xcd\xd6\x38\xd6\xcc\x45\x2f\x59\x43\x2f\x39\xea\xeb\x10\x77\x0b\x96\xd3\xf2\xb0\x32\x61\xb9\x1e\x2d\xad\x87\xf6\x8c\x64\x7a\xbd\xa6\x83\xba\x18\x94\x14\xdc\xea\xae\x46\xbc\xb3\xa6\xcb\x22\xaf\xb3\x7c\x4b\x77\xcb\xae\x22\xea\xa7\x29\x59\x92\x72\x34\x22\x4b\x75\xf0\x61\x56\xd6\x0e\x79\x9d\x26\xf6\x34\x7d\x91\xab\xcc\x38\xd0\xe3\xf3\x79\xba\x58\x4c\x8f\x58\x73\x29\xce\x6e\xf6\x8c\x81\x4f\xa5\x4d\x02\xff\x43\x2d\x6a\xcf\x98\x12\xc6\x22\xa6\x36\xea\xc1\x17\xee\x14\xc7\xfe\xa8\x6f\x4c\x0f\x9e\xfe\xf3\xa6\x68\xda\xae\xc5\xf3\x38\xd0\xf2\x61\xd0\x7f\xc1\x35\x18\x75\xb5\xaa\xa3\x12\xd5\xb5\x1c\xb5\x45\xea\x26\x21\x9f\xcf\xc4\x8d\x0b\x8d\x0d\x90\xdd\xa9\x3a\xe0\x24\x69\xdc\xaf\x16\xcf\x63\xd2\x53\x09\xfb\xf8\x46\x85\x05\xb4\xf8\x86\xa1\xff\x9a\xb1\x6c\x57\x10\x2a\xb3\xb0\x08\x3d\xb9\x29\xca\x57\xe9\xf2\xce\xec\xb6\xdf\xaf\x1a\xa9\x65\x37\x37\xfd\xab\x30\xc2\x3b\x97\x7e\x7a\xfd\xf8\x78\x74\xfa\x57\x73\x9b\xb3\x01\xc7\xea\xf1\xba\x28\xd6\x34\xcd\xf9\x7c\xd1\x23\x1b\xa9\xb6\xa7\x8d\xa8\xf5\xf8\x88\x8c\x7f\xd2\x31\x53\x07\x7c\xfb\x57\xff\xfa\x7a\x57\xd7\x0a\x3e\xd1\xbb\xa0\xd6\x66\xa6\xcd\x2b\x91\xda\x42\xe7\xe1\xe9\x89\xb2\x56\x42\x31\x56\xea\x74\xa1\x49\x1b\xef\x69\xdf\x54\x65\xc1\xc1\x05\xe0\x9e\x21\x72\x8d\x43\xca\x27\xcb\xa8\xe8\x7f\x21\x73\x99\x4d\xcc\xd8\x40\x40\x61\x75\xc9\xb8\x7b\x80\xf7\x67\x6d\xd6\xd7\xfa\x84\x4c\xc5\x26\x64\x74\x25\x88\x2b\x52\x9d\x84\x7b\x54\xdc\x93\x1a\xd5\x22\x8a\x0d\x38\xd4\xab\x08\x05\xab\xfb\x24\xa7\x6f\xff\xeb\x4c\x84\xdc\xb7\x83\x8c\x7e\x8a\x10\xfa\x79\x53\x94\xf5\xac\xfa\x97\xaa\xc8\xbb\xfa\xfa\x61\xd7\xa3\xaf\x35\xd5\x95\xdd\x98\x7b\x34\x39\x48\x9c\xaa\xf0\x15\x07\xbd\x7e\x6a\x47\xda\x94\xed\x2c\x00\x1d\xfa\x90\xad\x26\x15\xf9\x8f\xaa\xc8\x27\xfa\x20\xa0\x26\x95\xa5\x91\x6f\x5a\x3b\x6b\x87\xe3\xa8\x07\xc5\xaf\xd2\xd8\x59\x2f\xa6\x45\x4b\xeb\xf7\x2a\x7d\xa4\x5d\xc7\x94\xbb\xdc\x9e\x9c\x53\xce\xee\x81\xa6\xcb\xb2\xb8\xd7\x99\xda\xed\xa9\x7b\x99\xd7\xf0\x0c\x28\x79\x6a\xfb\x5e\xb6\x12\xe3\x52\xdd\x64\xce\xab\xc5\xb4\x78\x7c\x34\x05\xb0\x19\xdd\x9a\x35\xc1\x3d\x49\x95\x65\x91\xa2\x45\xb0\x89\x79\x02\xc3\xf9\xa0\x54\x0e\x93\x9e\xa9\x45\xba\x13\x4b\xdd\x75\x14\x7d\x6e\xf1\xe9\xe9\x8a\xf6\xda\xdd\x13\x5c\x3d\x52\x7a\xef\xe3\xa3\x9d\x24\xf5\xc9\x3a\xad\xea\xef\xc5\x88\xb0\x81\x42\x67\x15\x5a\x4e\x4c\xc5\x76\xe7\x70\xd9\x82\x6d\x7f\x0f\x78\x50\xc6\x66\xad\x09\x20\x52\x61\xfb\x9d\xe4\xf4\x13\xd3\x65\x45\x52\x6a\x42\x35\x2d\x92\x24\x29\x3b\xe2\x57\x24\x6c\x10\xc7\x87\xa8\xa8\x15\x0b\x52\xe1\x12\x6d\x6b\xca\x76\xbb\x5e\x27\x49\x75\xd6\xca\x63\x52\xf5\xd9\x9d\xcc\xe2\x6b\xaa\x25\xad\x8a\x6d\xb9\xa4\xc9\x83\x08\x55\x57\x93\x07\x0d\x04\x63\xa6\xce\x1c\x88\x02\x6e\x12\xe2\xe4\x1f\x34\xd2\x24\x23\x79\x7a\x4f\x27\x94\xac\xd2\x3a\x9d\x94\x7a\x7e\xad\x9d\x11\xfa\xc8\xb8\x2f\xdf\xfe\xd1\xac\xd4\x7b\x02\x11\xb5\x5e\x67\xf0\xba\x8f\xd2\x36\x49\x17\x69\x9d\xfe\xff\x01\x59\x27\xc0\xb1\x3e\xda\x7e\x29\xd7\xbd\x43\x4b\x1d\x93\x4d\x8b\xf1\x2d\xa3\xc8\x7c\x63\x54\x9e\x40\x9b\x8c\x0c\x02\x41\x91\xbd\x58\x90\x01\x3b\xc2\x5c\xd2\x26\xf2\xe4\x1c\x77\x96\xf4\xf4\x55\x06\xbf\x12\x6b\xbd\x85\xb6\x4c\xcd\xf7\xa3\x08\x0b\x0a\x9d\x1f\xa4\x6d\x05\x02\x04\x9d\x9b\xe6\x62\x09\x49\x82\x3a\x4e\xa8\x4e\x41\x4b\x95\xb0\x24\xdd\x09\x63\xbd\x60\x50\xd8\x89\x46\xae\xa2\x44\x71\xbf\x88\x4e\x7a\x67\xf7\x48\x03\x9a\x67\x0b\xae\x91\xf6\xd2\xf5\xbc\x35\xe2\x2b\x75\x91\x78\x6f\x5e\xbf\x72\x69\xf8\x4a\x5d\x1b\xc6\xf9\x92\xf6\xe2\xf0\x55\x7b\x75\x78\x6f\xd1\xb8\x6f\x75\x7f\x83\x33\xb8\x69\x91\xd6\x7a\x0f\xdf\x01\xbf\x37\x5b\xbe\x40\x76\x60\xa3\xc6\x15\x97\xda\xfa\x59\x19\xb5\xa7\x98\xbe\x22\xa7\xaa\x87\xa4\xa6\x37\x3d\xec\xa6\xa5\xb2\xb2\x21\xb3\x06\xa3\x57\x92\xec\x59\x59\x1f\x26\xb2\x7a\x0e\x91\x8d\xf7\x79\x30\x2f\x86\xf6\x6b\xb2\x3b\x4c\xdb\x9e\xfc\x5e\x17\xcb\x74\xdd\xd9\xf0\x58\x74\xf7\xa8\x48\xfd\xc0\x77\xac\xad\x21\x21\xcf\x85\xf0\xb8\x74\xb5\x7a\xf5\x91\xe6\xb5\xd4\x08\x06\x4f\x65\x88\xc5\xa8\xb7\x82\x9c\x3d\xba\x01\xc9\xe9\xf3\x08\xae\x3a\xfb\xe7\x05\x45\xb3\x92\xa6\x6d\xa5\xf0\x20\x36\x98\x15\xeb\x55\x67\xcf\x41\x13\x6b\x4d\x9a\x30\x1e\xa6\x10\x26\x5c\x47\x17\xb1\x80\x2e\x8d\xbc\x90\x27\x18\xed\x2f\x92\x07\x91\xcd\xa4\x26\x02\x65\x92\x35\x7e\x75\x95\xd8\xd3\x6a\x9f\x76\xaa\x7a\xb4\x53\xb5\x30\x4b\xb6\x90\xb4\x8f\x35\xff\x09\xed\xd4\xce\xea\xbf\x4f\x39\xb5\x4b\xfe\xc7\xe8\xa6\x76\xae\xfd\xaa\x49\x19\x9e\xa8\x6a\x05\xc7\x81\x6c\x99\xa7\xb3\x5f\x3f\xb3\xf6\x6f\xde\xa3\xd6\xc3\x4e\x1d\x2e\x32\x91\x46\x87\x3b\xb3\x9e\x47\xe0\x81\x59\xf5\x1d\x29\x13\x31\x69\x7e\xec\x4c\xcb\x97\x30\x38\x38\x3e\x16\x23\x02\x3a\x2f\x17\x62\x38\xd0\xa9\x4c\xd5\x5f\x99\x82\x55\x66\x5e\x2d\xd4\xfa\x14\x4a\x7d\x10\x56\xb0\xf1\x00\x55\x17\x51\xbe\xba\xa2\xfb\x34\x72\x47\x6f\xb2\x56\x20\xed\x0d\x0f\x16\x2e\x6e\xa9\x33\xb3\xcf\x2b\x70\x2f\x67\x95\xc9\x93\x4e\xf1\x59\xbb\x78\x3a\xcf\x16\x96\x35\xad\x35\x0a\xea\x27\x28\xf8\x55\xfa\x9d\x0b\x1f\xf9\xda\x22\xf6\x4b\x10\x78\x43\xb4\xe3\xff\xf4\x16\x0f\xb5\x7c\xa2\x92\x3f\xd2\xfb\x42\x3d\xac\xf6\x0c\x3b\xf1\xb0\xeb\x66\xf0\x8f\x51\x5f\x9d\xbc\xfe\xfb\xf4\x57\xa7\xe8\xae\x02\x13\xa7\xf3\xa6\xfa\x1e\x04\xcd\x3e\xd5\xf3\x4c\xb3\x19\x2a\x10\x46\x94\xd2\x84\xb0\x11\xc8\x6e\xda\x66\x2d\xe9\x3f\x52\x25\xf7\x10\x24\xf6\x94\xee\x33\x37\xb4\xc7\xdc\xd0\x85\x59\xeb\x9b\xfa\xed\xa7\x94\x6e\x87\x15\xcf\xd6\xba\x7c\xbe\xeb\xbf\x4c\xdb\xee\xa3\xec\x1f\xab\x6e\xf9\xe1\xe0\xff\x9f\xa8\xd9\x4e\x0d\x0f\x7b\xbe\x1d\xee\xb7\x23\x3a\x1b\xcd\xd8\x44\x6e\x05\x62\x5c\xe1\xd0\x5f\xca\x6a\xd9\x08\x67\xfd\x5f\x21\x86\x55\x47\x0c\x0f\x1b\x80\x7d\xac\xe8\x3f\x3e\xa4\x74\xcb\x92\xcf\x23\xcd\xcb\xfd\x5d\xb1\x54\xba\x22\xc8\xc0\x8e\xb4\xe1\x6d\xce\xe1\x6a\xf6\xf4\x1f\xcf\x96\x4c\xdf\x7e\xf7\x84\xc1\xd8\xa3\x21\x7b\xba\xa7\xba\x38\xaa\x08\xc4\xd7\xe7\xff\x2b\x2c\x52\x7f\xd9\xf3\x6c\xb1\xd8\x63\x8d\xde\xd1\xaa\xde\x7f\xc0\xaf\xb8\x4d\xe8\xe3\x23\xdb\x0b\xa8\x60\x9e\xbc\x2e\x6e\x5b\x89\x3b\x9b\x81\x00\xf6\x66\x9b\xef\xbb\x9f\x40\x4f\xcc\x91\xc5\x42\xc0\xfe\xbc\x8b\x9c\xa3\x9e\x17\xf7\x1b\xa8\xaa\x96\xff\xfe\x74\x35\xad\xea\x9f\x4b\x9a\xde\x5f\xaf\xdb\x27\x2d\x9f\x48\x54\x54\xf5\x73\x52\xbd\x2e\x6e\x15\x8c\x84\xaf\xda\x0b\x0f\x25\xfd\x48\xe5\xc6\xe6\x55\x5a\xa7\x89\x61\xa8\x47\x1c\xae\x5a\xbf\xf1\x08\xeb\x55\xc2\xb7\x16\xf3\xbc\xae\x12\x4a\xe6\xc6\xba\xb8\x35\x88\xb1\xa2\xd7\x5b\xf8\x37\xcb\x6f\x0a\x83\x18\x9f\xd2\x32\x37\x88\x81\x47\x5d\x8c\x85\x5c\xc4\xa4\xc9\xcb\x87\x35\xad\x07\x75\x62\x18\xd3\xea\x53\xc6\x75\xe5\x32\xad\x28\xcf\x61\x82\x61\x4c\xce\x82\x2c\x8b\x09\x8c\xf3\xb4\x43\x39\xb8\xb7\x60\x07\x94\xd4\x72\x95\x99\x93\x25\x94\x1f\xce\x03\xb4\x00\x89\x79\x72\x72\x42\xad\xe4\x65\xc3\x07\xb9\x62\x95\xd6\xe9\x48\xdd\xf5\x7b\x35\xaa\x47\xf4\xe4\x3f\x8a\x2c\x37\x8d\x81\x61\x8d\xf0\xe0\x2d\xc9\xf8\x49\x60\x2d\x67\x10\x91\x9d\x45\xe6\xc6\x6d\x59\x6c\x37\x06\x61\xff\x9e\x17\xeb\x75\xba\xa9\xe8\xaa\xc5\x02\x46\x75\xfd\x6b\xa8\xa6\x89\x61\x20\xd5\xe8\x48\x3e\x83\x74\xca\xc9\xd5\x1b\x75\x30\x30\x4e\x4a\xba\xa1\x69\x6d\x8e\x46\x9d\xf6\x85\x3a\x4c\x7b\x89\x3b\xc1\xfa\xbc\xca\x57\xcc\xaa\x88\x5f\x7b\x90\x12\x93\x91\x7a\xa0\xf4\xe3\xe3\xbe\xd2\x5b\x22\xfc\x76\x9b\xed\x3b\xc0\x95\x99\xcd\x10\xa3\x6e\x92\x5c\xc9\x89\x1f\x48\xfa\x93\x72\xac\xa5\xa2\xf5\x76\x03\x1a\x56\x4c\xe4\x6a\x28\xb8\xb1\x08\x8a\x4e\x7a\x28\x10\x30\x92\x9d\xac\xb2\x2a\xbd\x5e\xd3\xbd\x98\x0a\x9c\xe0\xfa\xe8\x5e\x4c\x0e\x6b\xb0\x70\xef\xd1\x01\x4c\x80\x93\x0c\x2b\x0b\x41\x74\xc6\x33\x5e\xf7\x0d\xba\x8b\x59\xa3\x29\xc4\x2e\x05\xa6\xf9\xcc\xbe\x6c\x25\x2e\x88\x34\x36\x7a\xb9\x5d\xd6\x45\xd9\x47\x43\x5f\xbb\x9c\x54\xdb\xeb\xe5\x3a\xad\x2a\xca\x4f\xd0\x64\x16\xc9\x7a\x5b\x50\xc1\xc4\x11\xc4\x7e\x0e\x77\xe7\xef\x9b\xed\x76\xa2\xa6\x7c\x96\xbe\xd9\x81\x09\x80\x01\x2e\x57\xe0\x44\x7d\x73\x68\xb6\xab\xd1\xb9\x3a\x27\x62\x97\xaf\xc8\x13\xba\x58\x49\x64\x14\xf2\x97\x55\xaa\xec\xa8\xfe\x4e\x43\xff\x37\x12\xad\x1d\x75\xb8\x60\x24\xac\x30\x2f\xbc\x56\xe6\xe4\x66\xbb\x5e\x83\x44\xef\x21\x5a\xc8\xe3\xbe\xfd\x29\x0a\x3b\x0e\x66\xa0\x6f\x93\xeb\xe6\x81\xfc\xeb\xcf\x41\x73\xe1\x7a\xb6\x40\x74\xc6\xf1\x35\x3a\x4a\x30\x94\x62\xc3\xfa\x33\xf0\x1d\x26\x30\xb6\x7a\x46\x01\xdb\xcd\x41\x6b\xdc\x4e\xb1\x79\x9e\x3d\xee\x24\x7b\xa6\x45\x6e\x0b\x8b\x32\x49\x02\x39\x9e\x43\x17\x11\xea\x0a\xd8\x88\xba\x89\xeb\x33\xd1\xb2\x78\x51\x0c\xd7\x5b\x23\x63\x6e\x8c\xea\x91\xb1\x30\x9a\x34\x97\x3c\xfb\xab\xa4\xd3\x17\x21\xac\x7a\x73\x2d\x57\x88\xdd\x41\xd1\xce\x86\x1b\x3b\x5e\x2a\x99\x53\xc2\xbc\x90\x37\xdb\xfc\x64\xf9\x79\x21\x06\x3c\x4c\xee\x33\xf5\xb8\xb1\x5e\xf8\x1b\x5a\x6d\xd7\x2c\x4a\x38\x4a\xfc\x84\xf3\x14\x58\x99\xe5\xf5\x3a\x37\x0d\x00\x0f\xca\x34\xab\xe8\x6a\x90\xe6\x03\xfa\x79\x49\x37\x35\xbf\x34\x09\xd4\x0b\xbb\x07\x83\xed\xfe\x85\x50\xe7\x78\xf3\x59\x93\x19\x47\xe1\xf6\x1b\x6c\xa1\x35\xe9\x40\x2d\x8b\xd0\x93\x25\x27\x08\x4a\xbf\x32\xe9\xc9\xe5\xec\xfb\xd7\xaf\x2e\xc8\x91\xd3\xb5\x48\x5d\x1f\x52\x4e\xfa\x28\x56\x48\x34\x22\x7a\xab\xf0\xe5\x6e\xd3\xe7\xa4\x7e\x7c\x14\xe7\x3e\x6f\xd2\x6c\xbd\x2d\xb9\x4a\x44\x5b\xd8\x68\x48\xe6\x2c\xa7\x65\x7d\x91\xd6\x6c\x65\x98\x7b\x6a\xdb\x32\x85\x62\x95\x28\xbe\x86\xcc\xf8\xab\xc4\xdf\xa7\x9f\x2f\x45\x09\xb6\x28\x20\xcf\x96\xd2\xeb\x03\x7a\xff\xb4\xa5\x5b\x7a\xc5\xcf\x6b\xf6\xd4\x53\x11\x97\xd9\xeb\xd7\x57\xef\x5e\xbd\x7d\xf7\xb6\x73\xe8\xf4\x45\xba\x5e\x1f\x43\x6e\xd5\x4b\x3c\x78\x7a\x38\x9f\x0a\x0f\x82\x77\xd4\x50\x8b\x24\x75\x46\xe8\x39\xf9\xb5\x3d\x05\x7d\x50\x52\x3f\x3e\x62\xfe\xb2\x0e\xa4\x4c\x6c\x52\x25\x9a\x42\x33\x2d\x52\x24\xf6\xb4\x78\x21\xcf\x1f\x14\x62\x73\x46\x9e\x54\xf3\x02\x27\x02\x32\xb1\xb7\x50\x66\x65\xb5\xe5\xfe\x0d\xbd\x7d\xf5\x79\xc3\x16\x9f\x99\x7d\x36\x73\xd9\x9d\x2d\x4b\x6e\x85\x15\x97\x03\x34\xc0\xa3\x24\x93\x60\x3e\x7a\x97\xcc\xc2\x1b\x6d\x46\xa3\x9d\x7a\x65\xcb\x73\x18\xf3\x73\x5a\xd7\xb4\xec\xdf\xba\x92\x25\xb6\x38\xc5\x71\xd8\xbc\x2b\x9b\x55\x32\xee\x66\x2a\x6c\xef\xf5\x2e\x9a\xd4\x30\xbe\x6e\xf6\x32\x65\xbc\x29\xd6\xc5\x2d\xdf\x40\xfc\x53\x81\x06\xac\x1a\xdc\x83\x26\xa1\xab\x01\xcb\x1a\x9c\xbc\x65\x99\xd5\xb4\xcc\x52\x7e\xcd\x41\xaf\x46\xd3\x2b\x5d\xe4\xbf\xe4\xcb\x74\x7b\x7b\x57\xbf\x12\xba\xe3\xaa\x6f\x1f\xbf\x9d\x24\xb4\xb9\xdf\x45\xa4\x19\xac\xb3\xeb\xa7\xb4\x96\x61\xb1\x23\x1d\x4a\x72\x76\x5d\xc6\x64\x80\x1d\x78\x65\x58\x5c\xb1\x1d\xd9\x53\x71\xa2\x53\xeb\xa4\xc3\x21\x3d\x4a\x9a\x32\xf9\xf9\x44\x0d\xe5\x84\x7e\xde\xd0\x65\x4d\x57\xb8\x43\x8c\xdf\x77\x20\xf7\xa7\x18\xab\x2d\xce\x46\x4d\x7b\x4e\xfe\xf2\xf4\x8c\x24\xbe\x25\x4a\x07\xfd\xfc\xea\xa7\x8b\xef\x7f\xfa\x3d\xde\x11\x60\xa4\x37\x35\x2d\xc5\x28\x01\xda\x84\x8a\x2d\x69\x9c\x3a\xa9\x82\xc1\xbf\x18\x19\xcc\x6f\x81\x81\xd9\xa4\x9f\x70\x80\x37\x6e\x48\x3b\x5f\x3a\x32\xc8\x00\x6d\xd6\x84\x5d\x6d\xd0\xcd\x40\x57\xc6\x3d\x08\x8d\x76\x26\x47\xce\x3e\x05\x7d\x68\x80\xae\xaf\x32\x52\x7e\x4f\x4a\xa3\x5a\xe9\xa7\x01\xa8\xdd\x63\x5d\x0b\x37\x55\x11\xa3\x1c\x53\xa9\x1e\x0c\x7b\x4d\x45\x8b\xf3\x2e\x33\x32\xb8\x50\x10\xc1\x2d\xa1\xf5\x1b\x04\x88\x51\x10\xee\xab\x77\xc5\x5b\xba\x2c\xf2\x55\x75\xa5\x53\x26\xce\xf1\x55\xdb\xfb\xfb\xb4\xcc\xfe\x4e\x4d\x4b\xac\xc9\x16\x39\xf2\x57\x51\xff\x8a\x35\xea\x72\x80\xcf\x2f\x4d\xda\x1b\x21\xbb\xac\xd2\x66\xe9\xc8\x51\x67\x86\xa6\x97\xdf\xac\xa1\x7a\xe7\x43\x34\x27\x43\xe4\xa1\xcd\x6a\x98\xe2\x44\xc0\x67\x30\xcd\x15\x73\xb5\x3a\xc0\xfa\xb3\x32\xd5\xda\x15\x5e\xd1\x7d\x14\xf1\xcd\xf2\x81\xcc\x06\x64\xd7\xe4\x97\x6a\x9d\xf1\x7f\x27\xf2\x9c\x24\x37\x93\xf6\x8e\x2f\x40\xb3\x9e\x44\x4f\x7e\x9e\xbd\x7d\xfb\xea\xe2\xac\x2d\xd2\xe2\xb6\x9c\x09\x95\x2d\xf5\x32\xb0\xc5\x39\xff\x46\xcf\xbd\x5d\x17\x9f\x58\xf7\xa9\x8b\xe2\x43\x6f\x73\xd3\x4e\x5b\xb7\xe4\x4d\x14\x06\xda\x8b\xf5\x03\x4b\x97\x2a\x79\x38\x52\xe9\x37\xcc\x36\x82\x68\xe0\x85\x34\x0f\xbd\xd5\xb2\x54\x5d\xa2\xf1\x52\x6e\x86\xda\xae\xeb\x81\x50\x75\x78\x61\x89\xda\xd5\xd9\x51\x0f\xc9\x0c\x9d\x93\x53\xb5\x67\x08\xcb\x8e\x71\xe5\x36\xff\x89\x7e\xae\x59\x67\xff\x15\xc2\xf5\x86\xf6\x88\x97\x74\xc5\x14\xfa\x5f\xe3\x19\x3d\x8e\x3b\xb8\x29\x4a\x39\x5a\xea\xad\x40\xad\x9d\x40\xe3\x14\x2b\x0b\x49\x19\x9e\xaa\xd1\x7a\x3a\x9f\xda\xcf\xe4\x31\xb4\x76\x63\x3c\xa3\x5a\x2a\x1b\xfa\x6e\x04\x40\x46\x3e\x3e\x1e\xb5\xbd\x24\xbe\xa5\x51\x6d\xbb\x6e\x1f\x36\x2d\x69\x87\x14\xa7\x90\xcb\x67\x4b\x1f\xbd\x4c\xda\x78\xfb\x04\xe3\xc7\xf4\x73\x76\xbf\xbd\x1f\xf0\x0c\x06\xcb\x62\x9b\xd7\x83\x92\xa6\x60\xc3\xc9\x20\xbd\x2e\xca\x3a\xcb\x6f\x99\xc4\x97\xdb\xfc\x44\x58\x99\x5e\x02\xd9\x8c\x79\xab\x7a\x73\x7b\x41\xb2\x1e\x13\x76\xd6\x67\xf0\x40\xc8\x27\x28\xe4\xb8\x32\x33\x1c\x6a\x4e\x19\x55\x86\x58\x8f\x8f\x66\xa6\xf4\xce\x3e\x75\x8e\x71\xa6\x9a\xa8\x19\x75\x59\x24\x43\x1b\xa1\x42\xcd\xb6\x4e\x93\x3a\x4c\x51\x53\x7b\x18\x29\x1d\x95\x01\x33\xeb\x03\x1c\xb7\x3e\x4f\x45\xb1\x9b\x9f\xf6\xb2\x75\x27\xd5\xad\x5a\x29\xe9\x8b\xf6\x0e\x20\x3a\x53\x10\x0c\xc0\x26\x21\x32\x22\x52\x75\xf4\x37\x1f\x3a\xf7\x58\xec\x46\x9f\x67\x72\x84\x7d\x10\xad\x2d\xe5\xfc\x2e\xb7\x27\x39\xd9\xab\xf7\x39\x53\x51\x0c\x45\xe9\x87\x99\xdb\x27\x14\xbf\x9a\xe1\xba\x74\x96\xdb\xdc\xfc\xb5\x06\x4b\x25\xbc\xdc\xe6\xcf\xb4\x59\xcf\xd2\x35\x3d\x77\xdf\x71\x17\xc6\x78\xb3\xcd\x73\x28\x96\x9b\xa7\x8e\xae\xe1\x2e\xa0\x59\x59\x46\xc7\xfb\xe0\x6c\xe9\x7a\xe0\x9d\xeb\x99\x94\xb1\x2d\xf7\xb6\xc8\x57\x99\x03\xd5\x7a\xf6\xcc\x6a\x99\xf4\xd4\xa1\x9e\x75\x52\x17\x97\xd9\x67\xba\x32\x5d\x6b\x64\x54\xc6\x33\x86\x4e\xc2\xc3\xea\xd3\xc5\x2d\x8d\x69\xf5\x2c\xf8\xb5\x50\x9a\xe5\x3e\xa5\xcd\x99\xf9\x9e\xb4\xfd\xc2\x39\x5d\xb4\x7c\xe8\x69\x7f\x43\x74\xfc\x8b\x77\x5c\x50\x06\x59\x2e\xec\xdd\xe4\x19\xcd\x38\xf8\x44\x4b\x3a\xc8\x0b\xa1\xa4\xdb\xdc\xe1\x7a\xa1\x77\xda\x8a\x4f\x04\xc9\x29\x76\x74\x34\xea\xa6\xff\x8a\x8b\xb2\x9e\x39\x95\xc1\x7d\x1b\x0c\xf3\x51\x0a\x03\xf4\x8e\x86\xf8\xf5\xae\xbd\xd3\x4c\x4d\x53\xf2\x7c\x12\x63\x43\xf3\x15\x0c\x9a\x9e\x4a\xc0\xda\x25\xe1\xed\xf3\x24\x3a\xf3\x9e\x12\x83\x8f\xfd\xfa\xd1\xd5\xf1\x63\x77\xd6\x83\xb9\x56\x09\xdd\x53\x17\x35\xb1\xba\x14\xc8\xef\x0a\xe8\xce\xc3\x1a\xcf\x18\xc5\x4a\xc9\x28\x7b\x86\x6d\x30\x48\x6b\x1c\x3d\x15\x8d\xc5\x3e\xc9\xf4\x3e\x15\xb3\xaf\xcb\x63\xc9\x25\x5f\x69\xb5\x54\x41\x38\xd2\x24\x81\xcf\x1b\xf0\x4b\x80\xaf\x1e\x1f\xc5\xd9\x0e\x75\xea\x70\x95\xad\x98\x28\x33\x03\x91\x0e\x3e\xa6\xeb\x2d\x1d\xa4\xf9\x4a\x01\xe1\x15\x9a\x83\xfb\xa2\xa4\x78\xa5\xb0\x74\x4c\x7a\x46\x9e\xcd\x58\x73\x4f\xbf\xd0\x8f\x5f\xd1\x65\xad\x8a\x68\xb7\xa9\xfb\x05\x79\x5f\xcb\x6b\x63\x58\x5e\xef\x0e\x5f\x05\x43\xba\xfd\x48\x63\x5f\x73\xfc\x55\xe5\x17\x24\x5e\x0d\x8a\x6d\xfd\x8f\x62\x02\xe7\x2e\x50\xdb\x33\xbd\xc7\x49\x1d\x0e\xb5\x5b\x96\x35\x98\xb0\xfe\xa2\x56\x3d\x43\x54\x0e\x52\x8d\x4a\x77\xa2\xb0\x43\x99\x56\xb1\xee\x92\xcd\x5e\xc6\xfd\xaa\xe9\x01\x9e\x81\x22\xda\x60\x58\xda\x23\x62\x31\xfc\xee\x45\x6a\x46\x36\xf2\x10\xa2\xbc\x6e\x9a\x2b\xef\x17\xee\xe3\xa3\x7a\x5c\xf3\x49\xb5\xc1\x0a\x7c\x92\x45\x69\x59\xa6\x5f\x5e\xfd\xa9\xe7\x80\xc6\x11\x85\xc1\x87\x98\xd7\xa2\xc3\xe1\x51\x8d\x77\xf4\x70\x82\x8e\x92\x5a\x1f\x8a\x1c\x39\xd3\x3d\x5b\x42\x46\xa3\xcc\x82\x94\xf3\x6c\x71\x94\xe0\x45\x3a\x32\x85\x98\x35\x7b\x9a\xce\xaa\xa2\x65\xfd\xea\x4f\x1d\xa3\x24\x57\x87\x4b\xbe\x7f\xdc\x60\x67\x96\x95\xbb\xb9\xc5\x70\x86\xf2\xdb\xd8\x9b\xdb\xdd\x95\xcb\xb5\xf7\x1d\xe2\x6e\x6f\x03\xb2\x76\xca\x19\x4d\x3e\x80\x72\xce\x20\x8b\x51\xad\xac\x3b\x4c\xd4\x1f\x38\xab\x70\x84\x77\x6f\x1d\xf5\xdc\xcf\xca\xcd\xba\x68\x0a\x6c\x01\x4b\x1e\x11\x3c\x33\xe6\xc6\x28\x1b\x19\x0b\x63\x62\x18\x53\xe9\x38\x98\x86\x60\x89\x31\xaa\xf8\x40\xf6\x8e\x1f\xb0\x4c\xd7\x6b\x5a\xbe\x2e\x96\x28\xbd\x57\xa6\xc3\x36\x4e\x8c\x80\x43\x23\x63\x70\x94\x24\xf8\xa3\xb6\xba\x6b\x1d\x7b\xf8\xde\x23\x1d\xf6\x51\x92\xc8\xdb\xaa\xeb\x33\xb9\x2c\xd5\x4b\x24\x56\xe0\x39\x24\xca\xa6\x79\x06\x69\xdd\x6c\x7a\xa6\x9d\xfa\xee\x57\xcf\xc4\x5e\xce\xac\x7b\xc7\xfa\x9c\x8e\xdc\xc5\x09\x4e\x4b\x9b\xa7\xe6\xfc\xaf\xa7\x8b\xd1\xe4\xfd\x6a\x64\xc1\xe7\xbd\x75\xf6\xdb\xd3\xa6\xf5\xcf\xea\xb9\xb3\x98\x18\x67\x67\x67\xc6\xd3\xc4\x72\x1d\xdc\xbf\xfe\x01\xba\x40\xba\xe3\xcf\xd0\x6b\xc0\x5a\x2d\xa7\xb6\xb6\xe0\x12\x25\x14\x3f\x7d\x5a\xd1\x77\x67\xf9\xba\x55\x48\xab\xaa\x63\x8a\x7a\xb2\x64\xee\x91\xc8\xf2\x97\x77\x97\xd1\x05\xbe\x3c\x51\x76\x12\x5f\x7f\xa9\x69\xf5\x9a\xde\xd4\xcd\x26\xa3\x15\xfd\xb9\xc8\x72\x19\xb1\x2e\x3e\xd1\xf2\xbb\x62\x9b\xaf\x12\xbb\x95\x9b\x76\x91\x1a\xc4\xec\xb9\xc4\xcd\x30\x48\xcf\x16\x35\x3e\xad\x8e\x07\xf3\xcb\xf3\x62\x45\x67\xb5\x99\xe1\xa4\x89\xcd\x6d\x81\x24\xce\x2a\x5f\x24\x8e\x3b\x3e\xab\x47\x1c\x1d\x51\x27\x4e\xec\xbe\x48\xca\xe1\xb0\x7c\x91\xb8\xae\x77\x66\xb6\x2a\x50\x1e\x3b\xb1\x4b\x5a\xd5\x74\x3a\xb5\x72\xdc\xc8\x9a\xb8\xae\x2f\xb3\xf2\xe2\x9e\xac\x5c\xd7\x6f\x67\xe5\x76\xb2\x72\x6d\x1f\xf2\xf2\x6d\x99\x97\x3f\xee\xcb\xcb\xb7\xdb\x79\x79\x9d\xbc\xc2\x20\xf0\x42\xc8\x2c\x92\x99\x05\x4e\x6f\x66\x51\x3b\x33\xbf\x87\xb0\x78\xec\x04\xae\x35\x71\x83\x86\x65\x41\x1f\xcb\xdc\xa0\xc3\xb2\xa0\x4b\xdb\xd8\xb1\xa3\x28\xf4\xad\x49\x3d\x4a\x8c\xff\xcf\xff\xfb\xff\x65\xc8\x4b\xb7\x1d\x57\xd2\xeb\xc4\x4e\x63\xe4\x65\x76\xc7\xc7\x6d\x41\x6b\x11\xf1\xe2\x45\x68\x8d\xcc\xf2\x18\xda\x85\x74\x45\x41\xbd\xdd\x50\xa6\x11\x07\x80\x1a\x1a\x1f\x1f\x83\xc0\x8d\xc3\x17\x49\x35\x1c\x56\x2f\x92\x60\xec\xf9\xde\xe3\x63\xf5\xd2\x71\x1c\xdf\x71\x9c\x33\x41\xf8\xa4\x7a\x81\x9c\x86\x08\xa6\xfa\x4e\x6e\xca\xe2\xfe\x9c\xcb\xa4\x59\x59\x13\xb3\x3a\x66\xad\x41\xf6\xe0\x60\x49\x23\xb3\x7a\xf9\xf2\xa5\x63\x0f\x1d\xdb\xf5\x2c\x12\x84\x9e\x6b\x8f\x4c\xf8\x31\xac\x2c\x8b\x9f\xab\x1f\x88\x62\xdb\x3c\xb6\x49\x76\x7c\xac\x3d\x03\xc3\xdf\x8a\x79\x77\x19\xf5\x0d\xb1\x99\x03\xa2\xf4\x45\x8b\x27\xe0\xca\x8b\x3f\x5c\xd4\x4e\xfd\xbc\x3e\x89\x6b\xb4\x9d\x5e\x89\x35\xd2\xf8\x69\x55\xc8\x17\x4f\x36\xbe\xce\xf2\xd0\x73\x62\x5c\xa7\x1d\x39\xb2\x14\x8b\xdf\x2c\xa0\xe7\x3f\x72\xac\x29\xcf\xbe\x18\x0e\x0b\x9e\xfd\x99\xc9\xf2\x0f\x47\xa6\xe0\xe3\x8b\x17\x8e\x6d\x71\xae\x16\x16\x01\x92\x27\x9c\x08\xc6\x5f\x41\x51\x76\x63\x56\xa8\x33\x2c\x5d\x67\x4c\xe5\x2d\x71\xd5\x0b\xe8\xae\xd0\x3d\xfb\x1b\xd5\x89\xdd\x47\x68\xd1\xd0\x22\x65\xe2\x58\x93\xea\x05\x66\x1d\xec\x4d\xe0\xba\x3e\x26\x70\x5c\x48\xe1\x5a\x93\xbd\x88\xbe\xcd\x10\x23\x40\xf4\xac\x69\xf9\xd2\x9e\x5a\x25\x74\x8c\x3d\xa4\xb8\x11\x23\xe5\xdb\x72\x18\x7a\xfa\x6b\x41\x9f\x96\xec\x2d\xb0\x4f\xcb\x93\x7c\xbb\xfe\x4b\xb6\xaa\xef\x40\x73\xc3\xef\x65\x91\xd7\x65\xa1\xc7\x95\xf4\x36\x2d\x57\xe7\xff\xf1\x61\x76\x7f\x9d\xdd\x6e\x8b\x6d\x85\x3b\x13\x10\x5d\x89\x64\x69\x5c\x91\xcf\xfd\x75\x96\xc3\xa0\x77\x3e\x1f\x87\x11\x89\xc6\xf1\x82\xcc\x1d\x27\x08\x88\xe3\x04\x11\x86\x43\x9b\x38\x4e\xe8\x40\xd8\x77\x03\xe2\xf8\x21\xe2\xf8\x63\x87\xc0\x87\x85\x3d\x08\xfb\x2c\x1c\x42\x78\xcc\xc2\x31\x84\x11\x1f\x3a\x99\x13\x78\x2c\x1c\xb8\xc4\x09\x02\xc4\x09\x1d\x87\x38\xa1\x67\x63\xd8\x8f\x08\x7c\x20\x3c\x0e\x6c\xe2\x8c\x43\xcc\x73\x1c\x8e\x21\xcc\xe2\xc7\x10\x3f\xf6\x20\x1c\xd9\x63\x02\x1f\x16\x8e\x21\x8c\xf9\x47\xbe\x4d\x9c\x28\x0c\x21\x1c\x07\x11\x71\x62\x4c\xeb\xda\xee\x98\xb8\xb6\x17\x40\xd8\xb3\x03\xe2\x7a\x76\x88\xe1\xd0\x27\xf0\x61\xe1\x98\xb8\xde\x98\xc5\x47\x0e\x81\x0f\x0b\x03\x7e\x84\xf9\xf8\xb6\x4b\x5c\xdf\xf6\x30\xec\x79\x04\x3e\x18\x8e\x21\x3e\x76\x59\x78\x4c\xdc\xc0\x86\x7a\xb9\x81\x1d\x43\x38\xc6\xb0\x67\x13\x37\xf0\x30\xcf\x20\x74\x88\x1b\x84\x88\x1f\xba\x36\x81\x0f\x0b\x07\x10\x46\x1a\x42\xcf\x21\x6e\xe8\x31\x1c\x0f\xe2\xbd\x31\x86\xc7\x2e\x71\x43\xe4\x83\x1b\x46\x31\x71\xc3\x18\xd3\x8e\xfd\x88\xc0\x07\xc3\x81\x47\xdc\x31\xf2\xd9\x1d\x07\x31\x71\xc7\x21\xc3\x09\x03\x08\x23\x1f\xc6\x51\x48\xdc\x71\x84\x38\x91\x33\x26\xf0\xc1\xf0\x38\x24\xf0\x61\xe1\x18\xc2\x48\x7f\x04\x3c\x89\x22\x2c\x37\x8a\x3d\x02\x1f\x08\xc7\xc0\x93\xd8\x46\x3a\x63\x3f\x24\xf0\x59\x90\xb9\x67\xdb\x11\x81\x0f\x86\x5d\x87\xc0\x07\xc2\x8e\xe7\x13\xcf\xf1\x10\xc7\xf1\x5d\xe2\x39\xbe\xcf\xc2\x21\x84\x63\x0c\x07\x63\xe2\x31\x39\xf4\xdc\xd0\x26\xf0\x61\x61\x0f\xc2\x1e\x86\xc7\x10\x3f\x66\xf1\xe3\x10\xc2\x63\x0c\xc7\x11\xf1\xdc\x18\xf3\xf1\x62\x8f\x78\x5e\x0c\xf5\xf5\x7c\x3b\x20\xf0\x81\x30\xb4\x05\x7c\x58\x38\x22\x5e\xe0\xb3\x30\xd0\x13\xf8\x50\x17\x2f\xf4\x3c\x02\x1f\x16\x0e\x89\x17\xf2\xf8\x20\x20\x5e\x88\x6d\xe7\x8d\x43\x87\xc0\x87\x85\x7d\x08\x63\xb9\xe3\x31\xc4\x8f\x19\x4e\x04\xf1\x11\xc6\x47\x80\x13\x21\xff\x3d\xe0\xa1\xc7\x78\xe8\x45\x71\x00\x61\x1e\x3f\x86\x30\xd6\x25\x0e\x3c\xe2\xc5\x28\xcf\x5e\x1c\x46\xc4\x8b\x59\x9e\xf1\xd8\x87\x30\xe2\xc7\x90\x7f\x1c\x23\x0d\x71\xec\x11\xdf\x76\x81\x6f\xbe\xed\x45\x04\x3e\x10\x76\x7c\x87\xf8\x8c\xcf\x3e\xf0\x19\x3e\x18\x0e\x6c\xe2\x3b\x81\xc3\xc2\x1e\x84\x3d\x0c\x47\x3e\xf1\x9d\x08\xf2\xf7\x7d\x3f\x22\x7e\x88\x7d\xcd\x8f\x83\x98\xc0\x67\x41\xe6\x41\x6c\x87\x24\x88\xb1\x7d\x83\xd8\x8b\x48\x10\x23\x0f\x83\x78\x6c\x93\x20\x46\xfd\x10\xda\xb6\x4b\x42\x1b\xfb\x4b\x68\x87\x11\x09\x6d\xe4\x4f\x68\x8f\x1d\x12\xda\xd8\x5e\xa1\x1d\x85\x04\x3e\x2c\x1c\x93\xd0\xc6\xb6\x0b\x1d\x3b\x26\xf0\xc1\x70\x10\x90\xd0\x41\x79\x0e\x3d\xc7\x23\xf0\x81\xb0\xef\xb9\x24\xf4\x3d\x9f\x85\x63\x12\xfa\x48\x43\xe8\x07\x36\x81\x0f\x0b\x8f\x21\x8c\xf9\x84\xe3\x98\x84\x61\x84\xf1\xb1\xe3\x92\x30\x76\x02\x0c\x87\x3e\x81\x0f\x0b\x87\x24\x8c\xc7\x0c\x67\x0c\x38\xc8\xf3\x30\x1e\x47\x10\x86\xfa\x8e\x6d\x27\x26\x63\xdb\x05\x7a\xc6\xa1\x13\x92\x31\xeb\xb3\xe3\x70\x1c\x91\x71\x88\xfd\x25\x72\x6d\x8f\x44\x2e\xf2\x2d\x72\x3d\x9f\x44\x2e\xb6\x45\xe4\x46\x11\x89\x5c\x6c\xaf\x08\x64\x35\xf2\x90\x3f\x91\x6f\xdb\x24\xf2\x51\x3f\x38\xae\xe7\xd9\x04\xbe\x01\xfe\xf2\x7d\x87\xc0\x17\xe8\xf0\x3d\xdb\xf1\x09\x7e\xf9\xaf\x18\x7f\xc5\xec\x97\x1f\xc0\x2f\x6c\xdd\xd0\x77\x81\xb5\xf0\x85\x5f\x81\xed\xfa\x24\x0c\x6c\xd4\xc4\x61\x60\x07\x21\xfc\x62\x7c\x09\x5c\x60\x0c\x7c\xf1\x57\xe0\xc6\x78\x91\x2a\xb6\x61\x64\xc7\x63\x02\x5f\x84\x45\x8e\xed\x10\xf8\xba\xfc\x57\x04\xbf\x1c\x86\xe9\x04\x2e\xfc\x0a\x7c\xfe\x2b\xc6\x5f\xcc\xb2\xc4\x8e\xef\x11\xfc\x27\xe0\xbf\xd1\xd6\xc4\x0e\x72\x1a\x03\x0c\xce\x2d\x51\xec\x3a\x60\x7f\x62\x17\x5b\xda\x71\x62\x2f\x74\x09\xfe\x03\xb9\xc7\x60\x26\x02\xc2\xfe\xe1\xbf\xbd\x10\x7e\x87\x48\x75\xec\x8c\xc7\xa1\x0d\xbf\xe3\x38\x5e\x2c\x98\xd1\x4b\xa5\x7d\x9c\x83\xf9\x21\xdc\xb8\x85\x3e\xd8\x1e\x0c\x8d\x89\xc3\x8d\x0d\xd8\x1a\x24\x6c\xec\x13\x67\xcc\x8d\x11\xd8\x19\x34\x33\x2e\x58\x19\x0c\x81\x8d\xc1\x5c\x62\x08\x31\x63\x13\x11\x17\xbb\x85\xeb\x04\xc4\x75\x50\x91\xba\x2e\x71\x5d\x6e\x7e\xc0\xfa\x60\xc8\x25\xae\xc7\x4d\x0f\x58\x1e\x66\x60\xc0\xbe\x60\x08\x2c\x0a\x33\x2e\x68\x4f\xd0\x6c\xb8\xc4\x0d\x50\xd1\x06\x3e\x71\x91\xcd\x6e\x00\x50\xa6\xe8\x41\xe7\x7b\x4c\xe5\x83\xf6\x47\x45\x0d\x7a\x9a\xa9\x69\x9f\xb8\xa8\x60\xdc\x38\x26\x5c\x3d\x82\x46\x44\x01\xf5\x1c\xd0\xc3\xa8\x5a\x9c\x98\x78\x2e\x86\x5c\x9f\x78\x2e\xaa\x66\x37\x22\x1e\xb2\xd5\x03\x9d\xc8\x54\x22\x68\x4d\x14\x25\x2f\x00\xfd\x19\x33\x35\x09\x1a\x13\x04\x31\x74\x89\x8f\x2a\xd2\x0f\x7d\xe2\x23\x77\xfd\x30\x24\x3e\xaa\x32\x3f\x04\x8d\x82\x8a\x69\x6c\x13\x1f\xf9\xec\x8f\x5d\xe2\x63\x47\xf3\xc7\x3e\x61\x2e\x05\x78\x14\x3e\x1a\xa2\x20\xf6\x48\x10\x33\x35\x82\x1a\x02\x3b\x61\x44\xc6\xc8\xe7\xb1\xe3\x90\x31\x8a\xe0\xd8\xf1\xc8\x18\xbb\xf4\xd8\x19\x93\x31\x1a\xb4\xb1\x6b\x93\x31\x9a\xd7\xb1\x1b\x91\x31\xd6\x63\xec\x79\x64\x8c\xf5\x18\x7b\x01\x19\x7b\x4c\x84\x3c\x12\xbb\x90\x73\xec\x39\x24\xc6\xf6\x88\xfd\x80\xc4\x28\x25\x71\xe8\x91\x98\x39\x40\x36\x38\x43\x36\xb6\xa6\x63\x83\xc3\xe1\xd8\x4c\x44\x6d\x10\x68\x14\xc7\x08\x84\x20\x62\x52\x10\xb9\x8e\x43\x22\x17\xbb\x6b\xe4\x3a\x21\x84\x99\x52\x70\x6d\x12\xb9\x2e\x53\x04\x2e\x28\x08\x54\x22\x91\xeb\x42\x5a\x8f\xc5\xfb\x80\x83\x12\x11\x81\x48\x44\x4c\x26\x22\xd7\x0f\x20\xcc\xca\x0a\x20\xff\x80\xe1\x07\x90\x0f\x4a\x46\xe4\xd9\xa8\x5c\x90\x06\x68\x56\xf8\x60\xd8\x75\x48\xc4\x5a\x36\x02\x07\x28\x62\x5d\x2a\xf2\x21\x1f\x9f\xe5\xe3\x07\x1e\x84\x99\x62\x0a\xc6\x10\x46\x9a\xfd\x10\xc2\x21\x0b\x8f\x41\x61\x61\xeb\x45\x7e\x04\x69\x23\x97\x85\x43\x08\x63\x5d\xfc\x18\xe2\x99\xb2\x0b\x3c\x87\x44\x01\x3a\x34\x51\xe0\xc5\x24\x62\x86\x36\x0a\x7c\x9f\x44\x41\x80\x75\x09\x42\x9b\x44\x01\xf2\x39\x0a\x62\x97\x44\xa1\x8d\x69\x43\x0f\xc2\xd8\x62\x51\x18\x44\x04\x3e\x18\x06\xfc\x10\x9d\x83\x08\x94\x7b\xc4\x95\xef\xd8\xf6\x09\x7c\x58\x38\x84\x30\xd2\x0c\xa2\x12\x8d\x51\xd2\xa3\xb1\x13\x40\x38\x60\xe1\x18\xc2\x2c\x2d\xf0\x67\xcc\xda\x65\xec\x02\x8e\xcb\x70\x3c\x9b\xc0\x87\x85\x3d\x08\x87\x2c\x0c\x69\x3d\x96\xd6\x87\xb4\x3e\x4b\xeb\x03\x0e\x3a\x64\x11\x38\xb5\xf0\x61\x61\xa0\x27\x60\xf8\xc0\x7f\xe6\x90\x45\xe3\x31\xc4\x8f\x59\x9e\x11\xe0\x47\x0c\x1f\xf8\x39\x66\xfc\x8c\xc0\x48\x44\x8c\x27\x11\xd4\x91\x39\xc1\x51\xe4\x40\xbc\xc3\xe2\x1d\x88\x67\xf5\x8a\xc0\xf0\x44\x1e\x0f\x47\x10\xc6\x72\x23\x68\xdf\x88\xb5\x6f\x04\xed\x1b\xb1\xf6\x8d\xc2\x98\xc0\x07\xc3\x71\x40\x22\xe6\x94\x44\x60\xfc\x22\x66\xfc\x62\x50\x16\xb1\x8f\x8e\x5a\x0c\x32\x13\x07\x3e\xf6\x15\x70\xee\xe3\x00\x1d\xca\x38\xb4\x6d\xe8\x38\xd8\xaf\x42\x27\x22\x71\xe8\xf2\x5e\xe4\x92\x98\xb5\x63\x0c\x4e\x6d\x1c\xfa\x2c\x3e\x00\xfc\x80\x87\x7d\x08\xb3\xb4\xa0\xc4\x43\xde\x03\x43\x88\x0f\x59\xfc\x18\xe2\x51\x5f\xc4\xe1\x18\xf2\x19\xf3\x78\x28\x2b\x62\xf8\x71\x44\xe2\x31\xf2\x2a\x86\x76\x8f\x99\x8e\x88\xa1\xed\xe2\x31\x6a\xde\x78\xec\x8d\x21\x8c\x34\x8f\x7d\x97\xc4\x63\xec\x5f\x31\x38\xd3\xf1\x98\xd5\x11\xda\x0b\x3e\x2c\x0c\xf1\x28\x7b\xf1\x38\x06\x7c\x74\xfa\xe3\x71\xec\x43\x18\xf3\x8c\x5c\x9f\xc4\x11\xca\x4c\x1c\xb9\x63\x08\x63\x3e\x11\xa8\x95\x88\x95\x1b\x81\xb1\x8a\x58\xb9\x91\x17\x43\x98\xe9\x16\x30\xe0\xf8\xc5\x5f\x8e\xed\x12\xc7\x66\xe6\x15\xc6\xcf\x3e\x09\x3d\x46\x21\x0e\x89\xd1\x48\x7b\x2c\x0f\xd4\x44\xb6\x1f\x05\x6c\x84\x84\xa1\x90\xe0\xd4\x88\x2d\x2d\x60\x56\xbd\xed\x3c\xae\x8a\x73\xcd\x7c\x1b\xb7\x3e\x36\x6c\x0e\x78\xe3\x03\xac\x3a\x70\x6e\x2f\xe6\xf6\xe2\xf1\x11\xdf\x50\x55\xe3\xab\xc5\xdc\x59\xe8\xab\x17\xd3\xea\x65\x52\x4e\x71\xde\x20\x51\xde\xa7\x34\xcb\x51\x65\x9d\xba\x16\xe9\xe4\x91\xb1\x3c\x92\x6c\xe4\xc8\x9d\x76\x47\x5d\x12\x32\x20\x41\xd9\x24\x5c\x25\xd9\xb1\xb3\x13\x45\xef\x44\x9d\xb5\xa1\xf1\xc1\xaa\x4b\x0f\xa1\xaf\xea\x12\xd8\xaa\x7a\x13\xff\xf5\x55\x6f\xf2\x38\x58\x75\x0d\xed\xe9\xaa\x2f\xef\xd2\x92\x0d\xfb\xfb\xce\x29\xf5\xcf\x1d\x9c\xe9\x29\xdf\x20\x82\x84\x9a\xd4\x9a\xe8\x08\x17\x59\x55\x76\x70\xda\xe5\x77\x91\xfa\x28\xb2\x93\x24\xa1\x67\xda\xbc\xc7\x84\xbe\xf0\x5c\xe0\x74\xe2\xb8\xe3\xe1\x90\xbe\x70\x42\xfb\xac\x33\x13\x32\xa1\x2f\x1c\x77\x7c\xe6\x4c\x54\x21\x37\xa9\x75\x66\x4f\x9c\x91\x49\x5f\x26\xbe\x17\xb8\xc3\xa1\x49\x5f\x24\xbe\xef\x8f\x1f\x1f\x63\xdb\x76\x92\x84\x62\xc0\xc5\x00\x94\xe0\xc4\xb6\x0f\x65\x24\xbe\xeb\xc4\xce\x70\xe8\xb8\x5e\xe0\x1c\x71\xa8\xef\xdb\x9e\x8b\xd0\x20\x70\x6d\x0f\xe3\xa0\x33\xb2\x14\xa1\xef\x06\x01\x8b\x0b\x6c\xdf\x66\x71\x81\xed\xc7\x22\x6e\xec\xf2\x38\xc7\x13\x78\x6e\x24\xf0\xbc\x71\xc8\xe3\x02\x4e\x41\x18\x04\x8e\xcd\xa8\xf2\x1c\x91\xd8\x01\x75\xc8\x52\x63\x30\xc2\x58\x37\x74\x1d\x9f\xaf\x28\x1f\x68\xb9\xbd\x22\xa0\xf7\x0f\xe0\x5a\xff\xd4\xd1\xaf\x68\xf7\xaa\xee\x11\x3b\xb9\x8c\xc9\x3b\x9c\x3d\xad\x9a\x89\x4a\x65\x0e\x51\xcc\xff\xce\x6a\x7e\x33\x8f\x99\x25\x7a\xd1\x66\x61\x59\x2f\xc4\x6b\xd0\xc7\xce\xb4\x1c\x25\x19\xa9\x46\x49\x21\xa6\xf3\x9c\x89\xab\x1d\xef\x00\x92\xf0\x16\xcb\x7d\x0f\x58\x90\x1c\x3b\x6b\x95\xd8\x24\xd7\x08\x1b\x0e\x8f\x4c\x33\x1f\xb5\x09\xd0\xa6\x3a\x2b\xcb\xb2\x5e\x66\x16\xde\x4b\x05\xf4\xe6\xdb\xf5\xfa\x28\x29\x59\x8d\x8b\xa4\xc2\x2c\x0b\x25\xcb\xfc\x45\x52\x4e\x9f\xc8\xb4\xb0\x2c\x52\x40\x86\xe2\x5c\xfd\xcb\x72\x38\x2c\x8e\x8f\x89\x78\x6f\x3a\xcb\x6f\xcd\x8a\x14\xcd\x0d\xac\xcd\x9b\x49\x5a\x95\xb5\x8d\x2d\xbc\xd6\x6a\xf3\xf3\x54\x08\x39\x66\xb7\xba\xa9\xd7\x5d\xe2\xcb\xd1\xab\xa2\x3e\x65\x77\x27\xaf\x8b\xdb\xd3\x8f\xb4\xac\xb2\x22\x37\x88\x51\xd3\xcf\xf5\xe9\x66\x9d\x66\xf0\xc3\x39\x71\x42\x3c\xb5\xf4\x44\xf2\x55\x5a\xd3\x76\x5a\xd7\x76\xc6\xc7\x76\x74\x2c\x72\xa8\x57\x74\xc3\xde\xac\xe6\x57\x28\x18\x62\x37\xf1\x03\xdb\x29\xf7\xee\xcb\x86\xed\x51\x25\x7f\x2f\x8a\xfb\xbf\xa4\x25\xd8\x03\xbe\x0d\x64\x62\xfc\xfb\x1f\xff\xf8\xe3\xe0\x28\x19\x38\xb6\xfd\x3b\x83\xf0\xfb\x3e\x8b\xcd\x17\x89\xf0\x7f\xff\x9f\xff\x0f\x83\xac\x68\xf5\xa1\x2e\x36\x3f\x01\x38\x63\x6b\x9d\xef\xb2\x7a\x0d\xe0\xff\xfd\x7f\x06\xbf\x33\x6b\xf8\x61\x0d\xfe\xef\xff\xfe\x3f\x06\xa9\x69\x55\x5f\xd0\x4d\x35\x99\x1b\x77\x35\x2d\xef\x4f\xde\x2e\xcb\x62\xbd\xfe\xb9\x28\xd9\xf2\x5e\x65\x90\x06\x40\x69\xde\x8a\x7c\x47\xcb\xfb\x2c\x4f\xd7\xad\xe8\x3f\xbf\xeb\x46\x9c\xa7\x79\x4e\x57\x2c\x7a\xb1\x9b\x02\x3b\x6f\xb3\xaa\xa6\xe5\xf7\x79\x56\x9b\x0c\xcf\x20\xbd\x27\xb9\x4b\xb3\xb6\x1e\xb2\x93\x86\x43\x49\x8d\xf7\x5d\x92\xf6\xb5\x34\xf2\x32\x69\xce\xdd\xc7\x47\xb3\xff\x7d\x78\x7e\xcd\x44\xfb\x37\xde\x54\x7b\xd6\xce\x85\xef\x78\xd5\xaf\xde\x33\x7b\x52\x2a\x17\x7d\xf7\x27\xc5\x0b\x9c\xc4\x9d\x2a\x47\x68\x83\x7f\xf5\xfb\xf5\x3f\xa6\x79\x76\x43\xab\x5a\x68\x96\xfd\x18\xa6\x35\xad\x92\xe2\x24\xdd\x6c\x86\x43\xfc\xe7\xe4\x3a\x5d\x7e\xb8\x2d\x8b\x6d\xbe\xda\x55\x67\x0a\xf3\x4a\xe5\x92\x19\x76\xbb\xab\xb1\x29\x36\xdb\x8d\xb1\xb3\x88\x6d\x4d\xfa\x69\xac\xd3\xeb\xea\x4c\x09\xe3\x0a\x3b\xdb\xd3\xda\xec\x8c\xa8\xad\x87\x7a\x38\xd4\x32\x10\x69\x58\x24\xbf\x23\x9a\xff\xfa\x7e\xc5\xae\x2a\x2e\xf1\x36\x6f\xa5\xc1\x8d\xbc\x28\xef\xd3\xb5\xd1\x6e\x72\x6b\xa7\x9d\x51\xe9\xa9\x08\x4f\x88\x35\xd9\x59\xec\x30\xfd\xf9\x3a\xa3\x79\xfd\x56\xdb\xbe\xa9\xbe\xf6\x7a\x4b\x6b\x5c\x98\xcb\xf2\x5b\x86\xfa\x86\x2e\xf1\x7a\x6d\x25\xf5\x5e\xff\x63\x6f\xf2\x93\x4f\x90\x44\xcb\xe4\x0f\x34\xbb\xbd\xeb\x3d\x6d\xbd\x3f\x97\x3b\x4c\xb3\xc3\x23\xf9\x1b\xfe\x6a\x2e\x74\xf1\xe2\x7c\x9d\x6d\xae\x8b\x54\x7b\xbf\x93\x6d\x6c\xa0\x27\xf4\x33\x5d\x9e\x17\xf7\xf7\x69\xbe\x32\x0d\x48\x67\xa8\x37\x2a\xe1\xc5\x00\x69\x55\xd3\xcb\xb2\xb8\xdf\x9f\x8d\x24\x4d\xcb\x0d\x13\x1a\x9d\xbd\xd7\x78\xf2\x2a\xe3\x97\x12\x77\xbc\xd3\x32\xc1\xbd\x21\xc9\x4b\x76\xb3\xd5\x11\x38\x48\x74\x52\x4f\xd9\x15\xc7\x14\x7c\x9a\xe4\x61\x27\xaf\x1f\xba\x2e\x56\x5f\x26\xf4\x04\xfe\x21\xd9\xb2\xc8\x27\xa5\x49\x4f\x20\xd0\x7f\x8b\x2e\x57\x27\xa7\xd9\x7d\x7a\x4b\xab\x53\x40\x3c\x8e\x43\x03\x7c\x89\x22\x81\xa4\xa8\x02\xc5\xe6\xe4\x55\xb1\xc4\xed\x10\x2c\xd6\xe2\xb7\x68\x73\x8d\x64\x91\x82\xbd\xc5\xc4\x1e\x00\xfe\x73\x5a\x56\x78\x67\x7d\xbf\x8a\x25\x0f\x98\xc7\xa4\xd8\x89\xe7\x97\x40\x01\xa8\x68\x78\xb5\x73\xf3\xe8\x52\x91\x2f\xd7\x99\xfa\xf4\xbf\xc5\x0d\xc1\xc9\x4d\xb1\xdc\x56\xf2\xe1\xa5\x75\x81\xcf\x0c\x93\x1c\x78\xda\x12\x5c\x79\xa8\x05\xe5\x4b\x6c\x2d\x63\x62\x92\xd4\x22\x81\xfe\x64\xc7\x7f\x32\x87\xe5\xba\xc8\x69\xcf\xf9\x7e\xa8\x2d\x43\x36\x9b\xfc\xd4\xdc\xac\x9e\xcc\xa0\xff\x16\xdd\xad\x2e\x9c\x96\x6e\x1e\x09\x55\xfa\x40\x2b\x2f\xfa\xb7\x6d\xba\xee\xf7\x09\x9b\x3c\x45\xa6\x7c\xdf\x0b\xcf\xf5\x50\xb6\x07\xb6\xd2\xce\xb9\x79\xcc\xfe\xde\x6c\x99\xc5\xdc\xf9\x41\xc6\xa6\x84\x91\xb1\x30\x20\xef\x37\xc5\xa7\xf3\x62\xdd\xbf\x5f\xba\x2c\x3e\x09\xf6\x2f\x8b\xf5\xf6\x3e\x17\x9b\xa5\x8b\x8f\xb4\xbc\x59\x17\x9f\x92\xa3\xa3\xac\xc9\x44\xdd\xe8\x5e\x7c\xa4\xff\xe8\x3c\x0f\x37\x33\x43\x37\x45\x19\x6a\x09\x7a\xfe\x56\x6f\xe6\x7b\x9a\x1d\xa9\x6d\xe7\x87\xfe\x73\x37\xe3\x84\xca\x60\x6f\x11\x4f\x48\x03\x14\xc5\xca\xe2\x92\xc0\x0b\x93\xa5\x89\xfb\x00\x45\x71\x4f\x95\xf7\xb4\x98\xb0\x24\xcd\xa6\xe9\xe2\x93\x22\x26\xac\x50\x25\x42\x14\xc6\x24\x47\xf3\x1f\x6f\xf0\x9e\xa1\xcb\x32\xbd\xdf\xd3\xea\x35\x77\xcd\xe4\x4d\xde\xab\xec\xe3\x55\x42\xf1\x1f\x16\xb1\x2d\xd7\x52\x12\xf0\x14\x46\x95\x64\xcd\xe5\x03\xd9\x0d\xe4\xad\x6e\x1a\x86\x91\x69\x9a\xe5\xb4\x54\x23\xf9\x33\xf3\xe7\x77\xe0\xde\xad\xc5\x96\x7b\x4e\x99\xb6\x3f\x59\x6e\x66\x56\x9b\x43\xdc\xf0\x84\xf7\x13\xe1\x23\xd3\xfc\xae\xa7\x6c\xb3\x3c\xce\xf2\xac\x3e\x2e\x3e\x18\x13\xde\x68\xcd\xc9\x9a\x8a\xe6\x2b\xe1\x7b\x7e\x9f\xdf\x14\x57\xa6\x35\xc5\x64\xa2\xd6\xc7\x59\x7e\x53\xa8\x69\x5b\x35\x38\xa9\xea\x2f\x6b\xbc\xa3\x65\xb3\x4e\xbf\x24\xc6\xcd\x9a\x7e\x36\x7a\x6b\x74\xb2\x29\xca\xda\x39\x29\x72\x1e\x2f\xce\xb0\xf0\xea\xa8\x7b\x8c\xd5\x93\x3f\xaf\x8b\x74\x65\x5a\x53\xee\x0e\x6a\x35\xd0\xae\x68\x69\x3d\xd7\x3f\xb8\x29\x8b\xfb\x01\xb2\x7e\x62\x10\xc6\x16\x6b\x77\x90\xa1\xaa\xb0\xf5\x23\x02\x2d\xdd\x6d\xe1\x9d\x96\xa3\x9f\x06\x3f\x6a\x71\x5f\xc3\x8f\xee\x49\x9e\xfe\xf4\xb8\x2d\x5a\x98\x37\x2e\x6b\xd8\x3e\xe8\x5a\xa1\x05\xdc\x14\x55\xcd\x73\x35\x1f\xf0\x22\x1c\x29\x15\x06\x49\xcb\xdb\x8f\x93\xf9\x03\xcf\x1c\xc6\x2b\x93\xbd\xa5\xb9\x3b\x71\x63\xdf\xb6\x5c\x93\xf9\x7e\xbc\x85\xb5\x9f\x81\x4f\xb1\xb9\x23\x92\x1a\xc3\x4f\x6e\xf0\xfd\xfc\xe5\x92\x6e\xea\xd7\x69\x7e\xbb\x05\xc7\xc4\xec\x28\x3f\xb5\xca\xba\x2c\x1b\x64\xfe\x90\xea\xc9\x27\x94\xdc\x14\x25\x65\x0e\xfd\x79\xb1\x2e\xca\x89\xde\xf3\xa1\xc8\x4b\x1d\xc3\xb4\x48\x33\x08\xd8\x97\xe6\x3b\x1d\xc3\xb4\xc8\x72\x5b\x56\x45\xb9\x0f\xff\xbc\x81\x9a\x16\xb9\x29\x98\x6b\xdd\x4b\x0c\x03\x71\xac\xcb\xf4\x3e\x5b\x7f\xd9\x83\xc7\x80\x48\x6f\x45\x7f\x79\xf3\x7a\xc2\x79\xf8\xcb\x9b\xd7\xf8\xf0\xfe\x6e\xd1\x7e\x89\xb8\xaf\xe5\xce\xc1\x71\x3a\x07\x17\x8b\xf6\x74\x01\xe9\x56\x75\x93\x22\xa8\x67\xff\xaa\x50\x20\xd2\x62\x48\x8d\xb2\x49\x61\xe8\xf3\x53\xb1\x92\x77\xae\xf5\x02\xd5\x77\x2f\xdb\x68\xf2\xfc\xeb\x39\x23\xec\x50\xa5\x9e\x92\x47\x45\x94\x7a\xf6\x63\xf7\xf5\x81\xee\xb3\x43\x3c\xfd\x60\xc9\x30\x06\x59\x85\x07\x64\x2a\x5a\x0f\xb6\x9b\x13\xf1\xb0\x78\x7f\x07\xef\xf6\x5e\xca\x3a\x6d\xbd\xeb\xad\x56\x75\x57\x7c\xea\xbe\x49\x04\x05\x34\x0f\x2b\xd6\xec\x4a\x37\xa1\xd2\xf1\xb6\x27\x61\xbb\xce\x64\x68\x5e\x2f\x26\xd9\x8e\xa7\x95\xf7\x6b\x3c\xab\xe5\x2c\xa1\x9b\xc5\x11\x3c\x20\x72\x90\xf2\x27\xd5\x3f\x66\x55\x76\xbd\xa6\x06\xdb\x99\xf7\xa0\xbc\x71\xd5\x0c\x28\x4d\x69\x6b\xf1\x7d\x56\xd3\x40\x5f\xd0\x20\xa1\x6f\xe3\x50\xc2\x34\x98\x33\x68\x10\x3f\xb2\x2d\x92\x27\x66\xc9\x3d\xdc\x92\xbb\x89\xa4\xd5\x1f\xc4\xf0\xe4\xca\x22\x69\xd2\x31\xc4\xe2\x9e\x9d\x35\x05\x1c\xd3\x58\x65\x1f\x0d\x6b\x9a\x72\xfb\xb6\xac\xaa\x77\xf4\x73\x9d\x18\x9b\xa2\xca\xd8\x35\x49\xe9\x75\x55\xac\xb7\x35\x9d\x72\xdb\x37\x19\xe4\x45\x4e\xa7\x60\x00\x8f\x57\x59\xc9\x06\x93\x93\x01\xf3\x45\xa6\x75\xb1\x99\x0c\x1c\xfb\x77\xd3\x35\xbd\xa9\x27\x03\xff\x77\x53\x24\x76\x32\x88\xed\xdf\x4d\x19\xbd\x93\x41\x64\xff\x6e\x7a\x9f\xe5\xc7\xe2\xb7\x0b\xbf\xd3\xcf\xc7\x2a\xfc\xba\xf8\x7c\x5c\xdd\xa5\xab\xe2\xd3\x64\x60\x0f\xec\x81\xbb\xf9\xdc\x1c\x3d\x3c\xa4\xaf\x46\xc6\xf4\xba\x28\x57\xb4\x9c\xfc\x9a\x34\x83\xaa\x58\x67\xab\xa9\x31\x65\x2f\x60\xea\x1e\x4d\x9b\x67\x0c\x60\x58\xd3\xbb\x93\x22\x5f\x83\xae\x57\x8c\xb8\x66\xd0\xee\xda\x7c\x95\x4c\x04\xfe\x21\x13\x27\x03\x47\xf0\x88\x4d\xd3\xdd\x81\xa7\x3b\xab\xeb\x32\xbb\xde\xd6\xd4\x34\xaa\x72\x69\x48\x6b\x64\x75\xc1\x34\xbd\x5f\xd3\xaa\x32\xc8\x91\x6d\x91\xf4\x24\xdd\x6c\x68\xbe\x62\xea\xe2\xce\x6a\x5c\x39\x0d\x90\xb2\x03\x10\xdc\x3f\x64\xae\xe6\x0f\xf4\x0b\x0e\xe3\x21\xf0\x63\xba\x41\x7f\x51\xc4\xf5\x1d\x2c\x60\x0c\x15\xde\xe2\x07\x8e\xc9\x99\xa4\xba\x7c\x77\x69\xbe\x5a\xb3\xcb\xbe\xe7\x06\x0e\x53\x8b\x6d\x2d\x9f\x76\xb8\x84\x88\x3f\xea\xa7\xaf\x16\x64\x6e\x7c\xa0\x5f\x56\xc5\xa7\x5c\xe2\xfd\x40\xbf\x5c\x14\x9f\xf2\x1e\xb4\x4d\x89\xd5\x6f\xf0\x7e\x86\x88\x1e\xc4\xed\x46\xc5\xfa\x65\xd3\x46\xa9\xe9\xe7\xfa\xfb\x7c\xa3\x10\xf7\x4e\xc4\x68\xa8\x0b\x59\xe5\x1f\xd3\x4d\xc2\x06\x37\x2d\xee\xa9\x0e\x0d\xa4\xcc\xf2\xdb\xaa\x8d\xf9\x1d\x8f\x57\x71\xd3\x75\xfd\xfb\xf2\xc7\x62\x85\x33\x58\xb9\x78\x00\x03\x8f\xab\x7f\x9f\x57\xb4\xac\x7f\x4e\xab\x9a\x26\x47\x7c\x93\xfd\x5d\x71\x4f\x7f\xa0\x5f\x2a\x36\x0b\x2b\x2f\xe2\xda\xa4\xb7\x7d\xd1\xcb\xba\x5c\xff\xbc\xde\x56\x3f\x66\xf9\xb6\xfa\x77\x5a\x16\xff\x5e\x14\xf7\x32\x2f\x80\x9e\x9f\x17\x9b\x2f\x1a\xfe\x9f\x79\x81\x3c\x2a\xdd\xb0\xeb\x06\x33\x64\xe1\x26\x5d\xf5\x41\x98\x7d\x97\x10\x70\x20\xaa\x4d\xba\xa4\x6f\x69\xbe\xaa\xbe\x13\xbf\x9a\x62\xee\xd2\x32\x5d\xd6\xb4\x7c\x95\x2f\x0b\xe0\x48\x62\x6c\xeb\x9b\xe3\x48\xfa\xd7\x75\x8a\x29\x5f\x55\xcb\x74\xd3\xd4\x7d\x93\x56\xd5\x8f\xb4\x4e\xff\x2c\x63\xd2\x75\x8d\x88\x7f\xb9\x4b\xeb\xc4\xa0\x88\x6e\x48\xd0\xf7\x88\xdd\xd0\xbb\xae\x25\x29\x0c\xd4\xa5\x2c\x5d\xd7\x42\x9c\xe8\x4a\x1c\x1a\xb9\xa7\xab\x2c\x05\xee\xce\x4a\x7a\x09\xff\x36\x6c\x2f\xe9\xc7\xac\xd8\x56\x33\x85\x8e\x66\x84\xa3\x4a\xc8\x6c\xc9\xc6\x4f\x0f\xe7\xb3\x9f\xce\x5f\x31\x5f\x45\xbd\x00\x8d\x45\x1b\x16\xe1\x0f\x77\x75\x10\x78\xbc\x61\x91\x9f\x67\x6f\xdf\x76\xc0\x10\x69\x58\xe4\xed\xbb\x37\xdf\xff\xdc\x01\x62\xac\x61\x69\x34\x29\x63\xe0\xbc\x73\xda\x85\x0f\x49\x59\xa3\x24\x49\x7f\xa3\x9d\x69\x6a\xe1\xe4\xa3\xba\x4f\xdf\xa4\xd6\x84\xee\x29\x0f\x8f\xab\xad\xd7\xbd\x9a\x86\x1d\x6c\xeb\xd5\x2f\xd6\x83\x78\xce\xbf\x0d\xe1\xd1\xad\x7c\x71\x8e\xb7\x79\x74\xbe\x4e\xec\x69\xfd\x42\x57\x4f\x62\x0d\xae\x16\x87\x05\xf8\x4d\x21\x12\x61\x5e\x2f\xa6\xf4\x8c\x76\xdf\xab\xc9\xf0\x5e\x91\xb9\xb3\xe0\x27\x30\xdb\x24\x71\x1f\x6e\x5f\xa2\x5d\xbf\x06\xa5\xbb\x3d\x2c\xdb\xe6\x7b\x99\xc6\xb5\x73\x6f\xe5\xf7\xe4\xa6\x6a\x39\xfd\x1e\x2b\x1c\x4d\x0e\x87\x7c\xb0\xcd\x8f\xb1\x19\x96\xfe\x80\xac\x6c\xf1\x22\xff\xf3\x3b\xe8\x0e\x75\x59\x7c\x50\x86\xb9\x12\xc1\xda\x4f\x80\xd4\xd9\x3d\x2f\x22\xf4\x1d\x1a\xa0\x27\x9f\xee\xb2\xe5\x9d\x75\x52\x17\xaf\x8b\x4f\xe2\xfe\x66\x7c\x0c\x93\xa2\xd6\xfa\x81\x7e\x19\x0e\x8f\x28\xea\x8e\x1f\xe8\x97\xc7\x47\x63\x69\xe0\x7b\x0d\xc6\x47\xf8\x97\xbf\x04\xc4\xba\xf7\x70\x68\x5c\x97\xc5\xa7\x8a\x96\xc7\x1f\xe8\x17\x21\xdf\xaa\x2e\x19\x0e\xf1\x72\x37\xb1\x2a\x29\x84\xa3\x9f\xb2\x0f\xf4\x0b\x22\x4d\x29\x53\xdb\x58\xbc\x99\x25\x99\x4e\x2c\x5e\x91\xdb\x2c\x73\xda\xd6\xc8\x71\x23\x71\xb7\xbf\x00\xbc\x4c\x3c\x77\x38\x34\x33\xb5\xf0\xa9\xb8\x69\xa6\x9f\xf1\x66\x1f\x55\x19\x5e\x4a\x09\xea\x89\xe6\xe2\x8a\x54\x7e\xf7\x53\xb1\xf9\xb9\x2c\x36\xe9\x2d\x9b\x6c\xb6\xf6\x89\x1c\x4f\xcb\xd6\xb2\x66\x9b\xcd\x4f\x45\x7e\x5e\x97\xeb\xb7\x50\x43\x9e\xa1\xde\x78\xad\x35\x20\xed\x27\x5b\x62\xea\x44\xf1\xf5\x9b\xe1\xd0\x54\x1a\x51\xe5\x62\xb7\x0a\xfb\x45\x4a\xba\x15\x5d\xd7\xa5\xa5\xd5\x0f\x49\xe5\x2f\x1b\x3d\xbd\x13\x81\x20\xf0\x26\x16\xc3\x36\x3d\xbf\x6e\xd4\xf0\x7f\x9a\xce\x8b\x17\x14\x9f\xbe\x82\x8c\x8e\x1d\xcb\x22\xee\x58\xcb\x49\xda\x8f\xa7\x98\x8c\x9b\x0b\xf6\x13\x8c\x2e\xd2\x7f\x9e\xe4\xc7\x36\xc1\xff\x19\x7a\xa7\xca\x63\x2a\xcc\x67\x82\x7f\x2e\xe8\x4d\x35\x97\x39\xe2\x55\x98\x75\x73\x46\x0b\xbd\x47\xf6\x72\x06\xc9\x93\x5e\xe3\x79\xc2\x8c\x24\x49\xf7\x80\xb9\x89\x24\x77\x7b\xe0\x60\x23\xc9\x7a\x0f\x10\x6d\x24\x59\x26\x52\x12\xc9\x36\x39\xd2\x3d\x09\x90\x4d\xc6\x34\xd2\xb0\xb0\x0d\x02\xa1\xe5\x4a\x88\x5c\x25\x47\xa7\x7f\x7d\x3f\x7f\xff\x69\xf4\x7e\x21\xdf\xba\x46\x06\xa4\x1b\x4b\xdc\x5d\xaf\x7b\x81\x7c\x72\x13\x68\x38\x4e\xd7\xb5\x31\xb9\x1a\x0e\x97\xc3\xe1\x76\x38\x34\xf1\xda\xd5\x6d\x72\xe4\x58\xd3\xeb\x92\xa6\x1f\xd8\x7c\x66\x09\x23\x28\x89\xea\xb6\x34\x85\x30\x31\x2d\xf9\xdc\x97\x19\x8c\xe1\x64\x5e\xce\xaf\xcf\x6b\x57\x26\xd7\xe6\xf2\xcc\xe0\x5b\x94\x8c\xc9\xf6\xcc\xc0\xec\x56\x67\x06\x30\xc5\x90\xab\xad\x4c\x46\x6e\x12\x50\xd9\x69\xf5\xe1\x2d\xef\xf2\x6a\xf7\x27\xb7\xc9\x03\x17\x96\x89\x14\x1b\x82\xd0\x89\x82\x05\xac\x9a\x2c\x49\xba\xae\x27\x5b\x02\x85\x4c\x56\x3b\xb2\x49\x34\x47\x1c\xe7\xac\x58\xd8\xbc\x45\xb3\xb1\x19\x0e\xcd\x9b\x64\x99\x6c\x13\x74\x68\xab\x66\xfd\xd8\x10\x7d\x49\x9e\xf8\x37\xcb\x64\x73\x92\x62\x1c\xbe\xb9\x9a\x94\x27\xcb\x74\xcd\xd6\x35\xf4\xb1\x38\xb9\xb5\x2c\x8b\x6c\x9f\x63\x60\xca\x24\x49\x31\xb3\x3b\x8b\x94\x47\x49\x72\x07\x3f\x8e\x92\x24\x7d\x7c\x5c\x3e\x3e\x6e\x1f\x1f\x57\xac\xac\x24\x59\x0f\x87\xe6\x36\x41\x26\xf7\xd2\x56\x9f\x30\xd2\x05\x6d\xca\xd3\x02\xac\xf3\x91\x39\x25\xf5\xc2\xb2\x08\x2b\xd3\x4d\x12\x21\x84\x72\x63\x0e\x66\xc3\xe3\xf8\xbe\x98\x9b\x33\x67\x62\x13\xc7\x7a\xb6\x25\xc1\x6a\xe4\x96\x95\xdd\x20\xd9\xe9\xe3\x63\xe7\xc9\x9b\x92\xdd\xa8\x20\xc4\x23\x49\xaa\x33\xa8\xd7\x04\x85\x04\x7e\x6d\xf1\x17\x8a\x4a\x92\x54\xc3\xa1\x09\xad\x63\x11\xe3\x9f\xe6\x46\x92\x94\x82\x34\x9b\xb8\x50\xd9\x2d\xb2\xea\x86\x5f\x6d\x70\x3f\x3d\xba\x41\xc6\x2d\xcf\x8e\xb6\x8f\x8f\x37\x10\xb8\xc1\x9e\x73\xb4\x3c\xbb\x4f\x8c\xa9\x6f\x4c\x8e\x96\x08\xd8\x02\x60\x39\x1c\x1e\x6d\x11\x10\x1a\x93\x2d\xfb\x7d\x83\xbf\xc7\xc6\x84\x25\x5c\x0e\x87\x26\x44\x44\x86\x35\x81\x7f\x03\x03\xff\xf1\xd8\x3f\xae\x41\xca\xc4\x03\xb2\x18\x17\xcf\x8c\x7f\x9a\x3b\xc6\xe8\x7e\x24\xe9\x74\x89\x63\x4d\x14\xaa\x4b\xb9\xb9\xd2\x52\xd1\x94\xe8\x9d\xd8\xf8\x88\x1c\x64\xac\xdc\xd7\x30\x64\x69\x99\x1f\x3b\x50\x80\xe8\x7e\x86\xf5\x32\x09\xfd\xe1\xf0\xe3\x8b\x24\x0e\xb0\xa5\xfb\x1c\x86\x8f\xc7\xa1\x6f\x61\xcf\x00\xe9\x8d\x8e\xaf\xb3\xba\x5f\x6e\x9d\xa6\xc2\x8c\xef\x1f\xa1\x3b\xb4\xfd\x9a\xe9\x9e\x52\xac\x1d\xe6\xcf\x47\x6a\x3d\x05\x3c\x3e\xae\xb8\xad\x69\x8d\x02\x99\x74\x1b\xff\x64\x8c\x4a\xee\x3e\xef\x71\x87\x4a\xfe\x4e\xb5\x98\xa8\x63\x37\x5b\x7d\x9f\x7f\x4c\xd7\xd9\x6a\x90\x2e\xc5\x5d\xe0\xad\x8b\x38\x4a\xab\x37\xdd\x4f\xc5\x60\x45\x6f\xb2\x1c\xe7\xc6\xf0\xee\x47\xa1\x92\xf0\xfa\x47\xe9\xfb\xc9\x19\xc8\x6b\x33\xb3\x1e\xaa\x24\xe3\xd7\xf1\xd7\xf3\x6c\x21\x9e\xe2\xed\x74\xde\x41\xa9\x75\xd9\xa2\xa7\xbf\x42\x87\x15\xaa\xe9\x28\xc9\x10\xff\xda\x94\x5a\xd4\x22\xa5\xee\xc0\x89\x29\x86\xee\xdd\x08\x1c\xc0\xde\x5b\xeb\x49\xb1\xff\xad\xb2\xaf\xc8\x21\x5d\xad\x78\x6c\xfb\x26\x18\xfe\x4a\x01\x3e\x37\xae\x2b\xe9\xab\x96\x73\x50\xc9\x6b\xd1\x7a\xee\xd4\x06\xf8\xbc\x58\x40\x02\x7e\x3d\x35\xbb\x64\xe3\x07\xf9\xdb\xa4\x96\xf5\x50\xb2\x5b\xb7\xd1\xc4\xed\xca\xb3\x92\xab\xf1\xa4\x9e\x98\x25\x5a\x17\x8e\x3c\xa1\x84\x4b\x46\xbd\x23\x15\xbf\x49\xa0\x8f\x30\xf1\xa2\x03\xa9\x4e\xaa\xa2\x54\xf6\x31\x61\xe5\xe4\xbb\x20\xaa\x87\x21\xe8\x03\xfc\xf3\xe2\x7e\x93\x96\x7c\xd4\xc0\x01\xa4\x56\x7e\x58\x3b\x71\xa9\x4f\x5f\xe9\xc9\xbc\x5c\x58\xcf\xe7\x7d\x77\x5a\xbf\xa3\x91\xa9\xe2\x81\xe1\x64\xd5\xcf\x69\x59\xd1\x72\x8a\xd7\x75\xd1\x1a\x9c\x39\xdc\xd8\x93\x54\xec\x7d\xb2\x1f\xe8\x97\xb7\xf4\x6f\x5b\x9a\x2f\x69\xcf\x6d\x8a\xda\xea\x25\xbf\xdb\x16\x6f\xab\xa9\x4e\xb2\x4a\xde\x24\x64\xf5\x93\x52\x5b\x0f\xa2\xd4\x9a\x95\x5a\x2b\xa5\xce\xb8\x2c\x3e\xb3\xcc\x9d\x5e\x22\x9b\xab\x50\xa4\xd2\xec\x4e\xe2\x09\xb9\x29\x2d\x52\x5b\x13\x3d\xc7\xaa\xb9\x69\x53\x5c\xb2\x98\xaf\x06\xc5\xcd\xa0\xe2\xcc\xc0\xfb\x70\xda\x2a\xe4\x6b\xd2\x76\x08\x65\x0f\xf1\x3e\xb7\xc9\xab\xfe\x1b\x12\x94\xd7\x2c\x1b\xdc\xe6\x05\xff\xc3\xb9\x37\xce\xd3\xbe\x17\x13\xf7\x75\x61\x79\xdf\xd3\x00\x6f\x55\x6d\x3d\xc1\xdd\x73\x7f\x0a\xaa\x4b\xb0\x7a\x7d\x1d\x1b\x86\x3a\xd0\xab\xe5\x06\x67\x25\xef\x83\x93\xdb\xdc\xc7\xd7\x26\xb8\xf9\xb4\x6d\x77\xb0\x28\xdc\x5c\x65\x9e\x1b\x46\x2e\x89\xd8\xf6\xc0\x24\xd4\x6a\x4f\xf0\xc1\x20\x47\x6b\x90\x1f\x30\x5d\xab\x0b\x36\xaf\xba\xf0\x6c\x87\x43\xdd\xde\x34\xaf\xbb\xa8\x76\xc6\xd2\x48\xc1\xd7\x9d\x9e\x59\xfe\x1e\x79\xc0\xc9\xb0\xf6\x2d\x3f\x38\x0f\x26\x64\x84\x25\x37\x25\xce\xbc\x5e\xcc\xed\x05\x79\x60\xde\xc6\x44\x8b\x77\x16\x84\x19\x24\x3d\xda\x5d\x10\xee\xe9\xe9\xf1\xde\x02\xbd\x75\x2d\xce\x5f\x30\xdf\x5d\x8b\x0c\x16\xbb\x27\xf8\x8c\x8d\xd1\xb1\x54\x4d\x93\x4d\xf7\x2e\x12\x36\xbb\xc1\x7b\xec\x72\x7d\x56\x8b\x47\x4b\xc8\x3c\x23\xe5\xc2\x9a\xd4\x3b\x65\xb7\xb1\xba\x97\x5c\x16\x5e\x91\xa2\x59\x79\x34\x2b\x65\x1a\xa3\x12\x63\x4a\x08\x8a\x61\x62\xd5\xcc\x55\x1d\x51\x65\x70\xd5\x9e\x55\x3f\xcb\x26\x25\xc1\xfd\xee\x0d\x05\xd5\x73\x28\x50\x32\xdd\x33\x21\x7f\x56\x4e\xb2\x76\xd6\x05\xbb\xce\xae\x9d\x75\x49\x2a\xb1\x9f\xb8\x94\x35\x3b\xcb\x26\x54\xec\x54\x2c\xb5\x71\x1c\xce\xd0\x9b\x05\x81\x64\x4a\xe6\xf9\x81\xcc\x25\xdd\x25\x67\x11\xe4\xde\xce\x20\x7d\x5e\x06\x0d\xeb\xcb\x86\xf5\xa5\x64\x7d\x29\x58\xdf\x57\x84\x6a\x5b\xfa\x27\xfc\x34\x6f\x17\xfc\xe6\x26\xf1\x5a\x49\xdc\x6c\x71\x56\x97\xa4\xd9\xeb\x6c\x18\xa7\x14\xba\x34\x9f\x68\x4e\xa5\x31\x3b\xcb\x11\x67\xb5\xc9\x24\x64\xe2\x84\x61\x92\x54\x42\x05\x3f\x3e\x3a\xe1\xb8\xf5\x3b\x52\x7e\x9f\x1d\x9a\x65\x99\xec\x9f\x43\xd9\xed\x40\x10\xb6\x87\x27\x69\x56\x4f\x4c\xd2\x5c\x1d\x9a\xa4\xb9\x39\x34\x49\x33\xd5\x55\x54\x65\xce\x6d\x62\xcc\x7f\xf9\xe9\x87\x9f\xfe\xf8\x97\x9f\x16\x06\xb9\x62\xff\xe1\x71\x70\x62\xcc\x5f\xbd\x3d\x5f\x18\xc4\xf8\x27\x83\xac\xe0\x3f\x3c\xaf\xec\x12\x63\x7e\xe9\x2c\x0c\x92\x9a\xc6\x3f\xfd\xf1\x67\x00\xcf\x7f\x36\x2c\xb2\x82\x80\xeb\xfd\x4f\x83\xe3\x79\x80\xe7\x0a\xbc\x3f\x21\xde\x9f\x24\x9e\x2f\xf1\x7c\xc0\xf3\x04\xde\x1b\xc4\x7b\x23\xf1\x02\x89\x17\x00\x9e\x2f\xf0\xde\x22\xde\x5b\x89\x17\x4a\xbc\x10\xf0\x02\x24\x7b\xee\x60\x72\x44\x88\x24\x02\x54\xec\x32\xe4\x08\x63\x89\x10\x4b\x84\x08\x10\xc6\x1c\x21\x12\x08\x9e\x23\x11\x62\x40\x88\x38\x42\x2c\x11\x5c\x81\xe0\x02\x53\x2f\x63\x86\xe0\xda\x12\x41\x32\xc7\x75\x90\x89\x36\xc7\x70\x24\x86\x64\x8b\xcb\xd8\xec\x70\x0c\x4f\x60\xf8\x4d\x21\xc8\x60\xc7\xe5\x18\xbe\xc4\x90\xa5\xc4\x2e\x31\xfe\x07\x46\x17\xe6\x9d\x69\xfc\xb3\x61\x91\x3b\xd3\xf8\x2b\x8c\x7c\x56\xd8\xc6\x7e\x4c\x0c\xe7\x08\x10\xd6\xa6\xc1\xa6\x23\x7f\xda\xde\x5f\x19\x16\xfb\x3d\x5b\xd7\xea\xcf\x1f\x69\x9d\xb2\xdf\x0b\x32\x0f\x6c\x62\xb8\xff\xfc\x75\x49\x1d\x62\x78\xbf\xf9\xba\xa4\x2e\x31\xfc\xdf\x7e\x5d\x52\x8f\x18\xc1\xef\xbe\x2e\xa9\x4f\x8c\xf0\xaf\x5f\x97\x34\x20\xc6\x78\xf8\x75\x49\x43\x62\x44\xdf\x7e\x5d\xd2\x31\x31\x62\xf3\xab\x92\xfa\x11\x31\x6c\x4b\x26\xd5\x16\xc0\xf7\x65\xd0\x46\xc2\x2b\x2e\x62\x62\x1c\x5f\xed\xcf\x67\x4f\x3c\x26\x1d\x13\x23\x19\x7d\x55\xd2\xb1\xf7\xb5\xa5\x86\xce\xd7\x17\xea\x10\x63\xf4\xed\xd7\x24\x05\x45\xf3\xdd\x0f\x6f\x7f\x5e\x18\xa4\x32\x8d\xff\x65\x10\xe3\xfd\xb5\x61\x41\xf8\xfd\xb5\x41\x8c\xff\x85\x89\xa1\x2b\x83\xc2\x79\x37\xfb\x6e\x61\x90\xc2\x34\xde\xd7\xd8\xe3\xff\xdd\xb0\xc8\x0d\xb9\x42\x78\xe4\x10\xe3\x6f\x7f\x02\x12\xee\x4c\xe3\x4f\x32\x19\x70\xf2\xd3\x5f\x78\xf4\x5f\x64\x74\x18\x13\x83\xbe\xe2\xd1\xaf\x1a\x6c\x97\x18\xe5\x1b\x1e\xfd\xa6\x89\xf6\x89\x51\xbf\xe3\xd1\xef\x9a\xe8\x98\x18\x5f\xfe\x8d\x47\xff\x5b\x13\x1d\x10\x63\xfb\x0b\x8f\xfe\x45\x46\x43\xc3\x64\xdf\xf3\xe8\xef\x9b\xe8\x98\x18\xc5\x1f\x79\xf4\x1f\x9b\x4c\x6c\x62\x6c\x7e\xe6\xd1\x3f\xcb\x68\x17\x15\xef\x03\x8f\x9f\x37\xf1\xa0\x4e\x17\x3b\x1e\xbf\x50\xe2\x6d\x62\xbc\x7f\xff\xc8\x01\xef\xdf\x37\x10\x50\xd0\xe7\xb3\x9f\xdf\x4a\x93\x87\x7c\x09\x88\x91\xce\x38\xf6\xac\xa1\xc6\x23\x46\xf5\x96\x47\xbf\x6d\xb8\x18\x11\x63\x75\xc1\xa3\x2f\x9a\x2a\xd9\xc4\xb8\xb9\xe4\xd1\x97\x4d\xb4\x43\x8c\xdb\xdf\xf3\xe8\xdf\x37\xd1\x2e\x31\xee\xfe\xc0\xa3\xff\xd0\x44\xfb\xc4\xf8\x8f\x7f\x91\x9a\xfb\x5f\x0c\x8b\x5c\x49\x58\x40\x8c\x0f\x3f\x48\xd8\x0f\xa2\x17\x9e\xaf\x69\x5a\x5e\x31\xe5\x8e\x78\x21\x31\xd6\xaf\x25\xde\x6b\x35\x0f\x27\x0a\x89\x31\x9d\x00\xf0\x46\x32\xcb\x25\xc6\x37\xef\x0d\x35\x0e\x6d\xf8\xab\x9f\xde\xbd\x7a\x03\x46\xe6\x7d\x69\x90\x2d\xd9\x32\x08\x58\xd9\xb7\x7f\xf8\xfe\xf2\x9d\xc6\xc1\xd8\x26\xc6\xdf\xff\x9d\x57\xe7\xdf\x1b\x0e\x46\xc4\xf8\xfc\xaf\x3c\xfa\x5f\x1b\x0e\x8e\x89\xb1\x3c\xd7\xd4\xd4\xb9\xd2\x61\x40\x2f\x9d\xf3\x8e\x12\x12\xe3\xe3\x9f\x35\xcc\x3f\xb7\x30\xff\xcc\xfb\x71\x48\x8c\xeb\xef\x64\xad\xbf\x13\xb5\x2e\xcc\x15\xb9\x02\x84\x71\x44\x8c\xfc\x27\x5d\x37\xb6\xb2\xfa\x89\x65\x35\x1e\x13\xe3\xfe\x47\x4e\xf5\x8f\x46\xc3\xbb\x88\x18\xe4\x05\xc4\xe7\xe6\x8d\xc2\x53\xa8\xfc\xc9\xcb\x9e\x78\x87\x18\xa7\x67\x92\xa4\x2b\x66\x86\xcf\x9a\x96\x42\x8f\xe4\xfc\xdd\x9b\xd7\x9a\x03\x86\x6e\xc8\xec\xf5\x3b\x2d\x12\xf2\x9a\xbf\x9e\xfd\xac\xa3\x7a\x2e\x31\x06\x9c\xd0\x7f\x6e\x94\x06\xb8\x10\x6f\xda\xb8\xff\x5f\xf6\xfe\xed\xbb\x6d\x5c\x49\x18\xc5\x1f\x7e\x0f\xbf\xb7\xf3\x78\x5e\xe6\xe1\xd0\x9c\x19\x87\x6c\x91\x8a\xe4\xdc\xa9\x30\xf9\x1c\xc7\xe9\x9d\x93\x8b\x7d\x6c\x27\xe9\xd9\xb6\x3b\x03\x4b\x90\x85\x1d\x8a\xd0\x00\x90\x2f\x1d\x7b\xbe\x7f\xfd\x2c\x14\x00\x12\x24\x41\x4a\x4e\xba\xf7\xfa\xd6\x3a\xdf\x5e\x33\x1d\x0b\x04\x0a\x85\x02\x50\x28\x14\xea\xf2\x4c\xce\xe9\xc1\x87\xdd\x8f\x9f\x2a\xc5\x0f\x65\xe5\xfd\x83\xa3\xc3\x9d\x83\x2a\x16\x0f\xa5\xdc\x75\xb8\x73\xf0\xfe\x5d\xb5\x5c\x6e\xc5\x57\x07\xbb\xdb\xd5\x62\xa8\xfd\xf6\xe3\xe1\xee\x81\xc4\x1b\x28\xfa\x0e\x5f\x2b\x63\x2c\x45\x65\x85\xdb\x03\xb9\x7e\xfe\xb6\xf7\x61\xd7\xaa\xf5\x37\x3a\xc7\x95\x3a\x12\xd3\xfd\x5f\x3f\xed\x5b\x75\xf6\xd1\x39\xfe\xb4\xb0\x6b\x3d\x94\x90\x5e\xef\xbe\xb7\x2a\xbd\xc6\x59\x05\xce\x23\x58\xc5\xaf\xad\x1a\xbb\xf9\xa4\x52\xe3\x21\xf4\xf4\x5a\xc9\xc0\x76\x5f\xf0\x42\x6c\xd7\x94\x93\x52\xc1\x68\x9b\x31\x7a\x59\x43\x49\x72\x97\x1a\x30\xa8\xd6\x80\x26\x89\x78\xf0\xf6\xd7\xbf\x49\x62\xb1\xc0\xff\x97\xe3\x1d\xc9\xda\xf7\x76\xec\x3a\x72\x71\xbc\xdf\x7d\x53\x54\x79\x0d\x55\x5e\x5b\x55\x86\x0f\x25\xfe\x1f\x3f\x7d\x78\xbf\xb7\x53\x9d\x8e\x67\x92\x38\xef\xf6\xa5\x9c\x39\x29\xaa\x3f\x7b\x02\x85\xc3\x6a\xe1\x53\x28\xdc\xaa\x16\x3e\x83\xc2\x07\x95\xc2\xe1\x60\x00\xa5\x0f\x6b\xa5\x43\x28\x7d\x54\x2b\xdd\x82\xd2\xc7\xb5\xd2\x07\x50\xfa\xa4\x56\xfa\x10\x4a\x9f\xd6\x4a\x1f\x41\xe9\xb3\x5a\xa9\x1a\x43\xef\xf4\x87\x4e\xec\x81\x1a\x57\xfc\x83\xad\x15\x51\x7f\xa9\x62\x34\x54\xe3\xbf\x5f\x2b\x55\xb4\xea\x57\x4b\x25\x93\x3a\x7e\xb5\x0d\x93\x35\x0e\xaa\xf7\xa8\xc6\x45\xea\x31\xdc\x57\xbe\xbc\x2e\xeb\x16\x77\xa9\xc6\x65\x4a\x9e\x49\xc7\x07\xbb\xef\xf7\xb6\xad\xea\xc5\x95\xaa\x71\xa7\x7a\x0a\x57\x08\xb5\xe5\x75\xe5\xe2\x5e\xd5\xb8\x58\x49\xf1\xe0\xf8\xcb\xdb\x8f\x87\x50\x59\x5f\xae\xc2\xda\xed\x6a\x0b\x0e\x86\x57\x07\x6f\x8f\xe2\xa2\xda\x93\xb2\xda\xb3\xa2\xda\x13\x5d\xad\x57\x54\x7b\x5a\x54\xd3\x37\xad\x15\xea\x2b\x9b\xb3\xb4\x3a\xa1\x15\x17\xff\xba\x51\xa8\xfd\x58\xde\x72\x97\x07\x5b\x41\x89\xf5\x7f\xfb\x6b\x60\x02\xdc\xcb\x81\xc7\x46\x15\x8f\xaa\x0d\xea\xef\x16\x12\x60\x04\xa1\x6c\x20\x0a\xb5\x8b\x6d\xcf\x53\x03\xd4\xd4\x75\xf9\xff\x72\xfc\x37\x3f\xf1\xff\x65\xef\x6f\x7e\x12\x54\x2b\x17\xcf\x7d\x1c\xba\x95\xb8\x06\x75\x85\x6e\x55\x07\xb1\x0e\xf1\x25\x17\xfd\xe9\x11\xbf\xfb\xc9\x21\xbf\x81\x21\xbf\x59\x35\x64\x95\x4b\xea\x67\x47\xac\x8f\x9f\xd5\x83\xae\xda\x14\xdb\x83\xf6\xff\xe5\xf8\xd1\x7f\xaf\xc2\x56\xf5\xf3\x27\x20\x2c\x8f\xc2\xd5\x9b\xa3\xc3\xba\xb7\x66\x36\x5a\xb7\x5f\xd9\x30\x73\xf8\xd2\xff\x97\xff\x29\x67\xe2\xf8\xc1\x5a\xbb\xa5\x38\x5b\x7f\x92\x94\x8f\xd7\x22\x25\x3c\x7e\xfc\x3c\x31\xcd\x51\xbf\x1a\xe7\xc6\x4a\xad\xb0\x9b\x6e\x84\xdf\x93\x7c\x8d\xb9\x4f\xaa\xa6\x7e\xd6\xf6\x69\x98\x52\xad\xb7\x8f\xb6\x61\x1f\x6d\xaf\x33\x79\xa5\x2c\xf3\xd7\x53\x62\x9d\xa9\xfb\xd3\x69\xf1\x0a\x68\xf1\x6a\x25\x2d\xd4\x95\x2b\x75\xbe\x63\xb7\x8c\xec\x92\x2c\xf0\x8e\x72\xc4\xe4\x2b\xc6\xb5\xb2\x77\xad\xd6\xa9\xa7\xdd\xae\x24\x61\xb9\xa3\x32\xde\x38\x74\x35\x11\x5f\x20\xce\x75\x8f\x67\x98\xc1\xce\x37\x44\x0f\x9d\x4f\xf7\xf6\x31\x5a\xd8\xeb\x39\x0c\x6e\xb4\xd5\xde\xd0\x38\x13\xfb\x43\x5f\x19\xd4\x6d\x15\xee\xc5\x0c\xae\x35\xaa\xf4\x81\x5d\x7a\x6c\x4a\x1f\xda\xa5\xf2\xa2\xaf\x8a\x1f\xd9\xc5\xa7\xa6\xf4\xb1\x5d\xfa\xbb\x29\x7d\x62\x97\x7e\x35\xa5\x4f\x0b\xb4\xfe\xa7\x46\xeb\x59\x51\xf2\xcc\xbf\x5d\x35\x47\x5a\x53\x76\xa7\x25\x22\x29\xad\xda\xd5\x09\xdd\x25\xa8\x74\xbe\x18\xac\x42\xd3\xa8\x00\xef\x8c\xa7\x6e\xf8\x4f\x43\x54\xe9\x08\x9c\x66\x31\x2d\x58\x9e\x63\xf1\x5a\xfb\xf8\x05\xa1\xfc\x55\xc4\x74\xd1\x36\xf0\x0c\x8c\x1d\xb2\x0c\x2d\x38\x9e\x94\x69\x2a\x0a\x48\x85\xa7\x8f\x73\xcd\xb7\xf4\x0a\x56\x40\x45\x4f\xdb\x53\x81\x99\x02\x51\x09\xa7\x33\xd6\xdd\x1e\xd1\xdd\x7c\xa2\x9c\x00\x58\x18\x3d\x1a\xb4\xf1\x05\xd8\x4a\x85\x83\xa9\x0b\xc3\x7f\x1a\x82\x6d\x60\x5b\x82\xe6\xac\x62\x75\x7a\x47\xfd\xff\x56\xb3\x5c\xd0\xd7\xb8\xd7\xa9\x7d\xb0\x98\xd4\x98\x0b\x9c\x07\x45\x08\x1a\x63\xa2\xdd\x9f\x31\x3c\x8d\x7c\x3f\xf2\x95\x3d\x7d\x9a\xd3\x48\xb9\x24\x5f\x63\x1e\xe9\x00\x2e\xf2\x4f\x75\x0e\x9d\x21\xc6\xe1\xe7\x9c\xe4\x64\x4e\xfe\x40\x67\x99\xfa\xac\x02\x9e\xf8\x3d\xdd\x19\xc9\x73\xac\xa2\xb2\xf5\xfc\x48\xc7\x3d\xa9\x7e\x54\x11\x89\x56\x1d\x67\xfe\xff\xb1\x16\x19\x3e\xbb\xc9\x60\x2d\xd2\xba\xf0\x56\xba\xa8\xd9\x72\xf6\xe6\xa6\x63\x3d\xa9\x6a\x2f\xdb\xb7\x3e\x58\x06\xfd\xe0\x23\x68\xe2\xff\x9f\x2b\x47\xa8\x14\x71\xff\x6b\x4e\x34\x5d\x8a\xf6\x89\x86\x8f\xeb\x4d\xf4\x4f\xf3\xec\x9f\x60\x85\xa3\x06\x2d\x6f\x6e\x58\x8d\x3f\xda\x9c\xf1\x65\xfd\xec\xb6\x26\x41\xd9\xd4\xb6\x0a\xe2\xeb\xf0\x1a\x3b\xa6\x4b\x1d\x8b\x0a\x17\x0a\xc2\xdb\x15\x1c\x72\xa5\x28\xaf\xd4\xc5\xab\x96\x96\x4e\x78\x69\xdd\x43\xb4\x07\xe5\x5f\x76\xb8\x55\x95\x4d\x8e\xb8\x02\x8e\x93\xa9\xe1\xa1\x6a\x5d\x90\x8c\xb5\x97\x1f\x7f\xf5\x4b\xbb\xf5\x97\xfe\xff\xe5\xb7\xe0\xa9\xd6\xa5\x3c\x61\x86\x1b\x1d\x8b\x48\x76\xf3\x06\x8d\x05\x65\x41\xb8\x86\xec\xa7\xd7\xa4\x43\xf4\x93\x3d\xf9\x03\x3f\x4d\x59\xd8\x76\x11\xb0\xc2\x5a\x0c\xac\xc8\x00\xbc\x03\xbd\x32\x0e\xc6\xc8\x8f\x25\xf0\x9b\x1b\xad\xed\xb3\x88\xc0\xe3\x74\x98\xf0\x9e\xc9\x02\xd6\xdd\x33\x2f\xe2\x65\xde\x45\x5e\xd7\x26\x78\xae\xd8\x5b\xd9\x64\x8c\xd8\x64\x87\x2e\xcb\xec\x6a\xda\xae\xa4\x74\x1b\x72\x43\xeb\xcf\xe9\x84\x4c\x09\x66\xbc\x70\x2c\xac\x84\x03\x9c\x11\x7e\x2c\x4e\x53\x7c\x2c\x4e\x6f\x6e\x36\x86\x91\xff\x8b\xb6\x14\x3f\x16\xa7\xfa\x38\xa8\x74\xdf\xeb\x35\xe2\x7c\x74\xf6\x9a\x1e\xfb\xb0\xbc\x24\x4b\x15\x2c\xf3\x23\x70\x3f\x88\x94\xdb\xc1\x69\x4b\x6b\xcb\x7a\xb7\x6d\xd7\x55\x90\x7a\x2e\xaa\xbf\x5f\xc6\xc3\xa4\x56\xe5\x45\xbd\xca\x30\x19\xb4\x21\x6f\x85\xf1\x42\x62\x3c\x73\xec\x2c\x7b\x06\x36\xca\x29\x28\x83\x32\xab\x35\xbc\x31\x18\x75\x5a\x29\x77\xcc\x0d\x29\x72\x48\x82\x39\xe9\xe6\x26\x06\xe3\xf6\xcd\xcd\x40\xdc\xdc\xf8\xbf\xf8\x6a\xbf\x1d\x93\xd3\x50\xcd\x12\xe4\xe7\xe4\x60\xb2\xbe\x31\xac\xc6\x62\x89\xd8\x9a\x03\xd5\x66\x9f\xad\xfa\x1f\x45\x8d\x00\x47\xb2\x87\xb5\x41\xba\x96\xb5\x1b\xea\x00\xa0\xee\xe9\xe8\x57\xcd\x6d\xc0\xd0\x02\x41\x60\x89\x74\x03\x04\x92\xb2\xc0\x58\x8b\x5e\x60\xc6\xf1\x17\xab\xde\x06\x28\x6e\x1b\x1f\x74\x04\x02\x46\xce\x49\x0e\xf1\x00\x74\xc5\xb2\x44\xbb\xa8\x2f\x05\xdd\x41\x8c\x11\x74\x8e\x0f\x00\x67\x53\xb3\xf9\xa5\xc8\xce\xcf\x29\xfb\xac\x62\x93\x98\xca\x95\x42\xbb\xde\xab\x8c\xe4\xdf\xaa\xb5\xa0\x28\x32\x7e\xc6\x98\x09\x1b\xbf\xb2\xa4\x32\xe2\xcf\x64\x82\x69\x6d\xb0\x50\xa6\x43\x04\x30\x34\xfe\x86\x05\x9e\xe8\x68\x03\xaa\x5e\xb5\x74\x6d\x9b\x5e\x65\xb3\xde\x4c\x17\x0d\x51\x1f\x53\x5f\x47\x04\x58\x50\x5e\xe4\x85\x9c\x15\x4e\xfa\xaa\xad\xed\x0e\x0f\x79\xe8\x1d\x2b\xc3\x0a\x7b\x03\x8d\x3c\xa8\xe9\x21\x61\x42\x8e\x2c\xa8\x4e\x9c\xaa\x3c\x36\x1b\x90\x4b\x83\x74\x47\xc4\xbc\x02\xc5\xd4\xc2\x5d\x1b\xe6\x3a\xa1\xd5\x4c\x5f\xcb\x10\x8d\x7a\xd8\xb8\x1c\xb5\xb8\xb9\x29\x07\x8e\xed\xd3\xcb\x09\xb9\x6e\xe8\xdf\x0c\xba\x53\xf8\xe5\x01\x15\x47\x15\x33\xf3\x02\x20\x99\xe0\x5c\x68\x5e\x62\xb8\xca\x3b\x7c\xcd\x43\x7c\xbc\xb2\xce\xb1\x38\x3d\x4d\x4d\x20\x79\x33\x8e\xe7\x4d\xca\x8c\xcc\x98\xbf\x91\x85\x8a\x7d\x1e\x8e\x2c\xf9\x11\x46\x72\x44\xbf\x61\x7d\x51\xf6\x49\x2e\xf0\x39\x24\xf3\x65\x10\x20\x38\x2c\xf8\x64\xca\xfa\x90\xe8\xbb\x48\xff\xe7\x97\xb8\x95\xd5\x35\x03\xd4\x75\xfb\x82\x7e\x5a\x2c\x6c\x6f\x74\xbe\x16\x05\x36\x37\x57\x56\xe9\xcf\x10\xdf\xbb\xcc\xf7\x19\x5d\x60\x26\xae\x03\x1e\x1a\xf3\xdb\xd5\xb4\xe3\x60\x42\x8f\x8f\xe9\xe9\xe6\x26\xb0\x65\xf9\xa7\x8e\xdd\x04\x64\xd1\xfe\x08\xa5\xad\xb9\x69\x0e\x9e\x08\x6a\x6c\xe1\x48\xb6\x4a\x37\x06\xb7\x65\x2c\xfe\xf6\xd1\x69\x22\xf2\xf0\xe6\x66\xa3\xb3\x82\x63\x5c\x4d\xc4\x4c\xc8\xbb\x6f\xf8\xba\x8a\x51\x31\x59\x9d\x7d\x1c\xf3\xd3\xdb\x02\x6b\x9f\x5f\xcf\xcf\x68\xe6\x6f\x98\x29\x6c\x76\x57\xf8\x65\xe8\xd5\xe1\x51\xe6\x59\x93\xaf\x56\xce\x2f\x00\x41\x21\xe2\xc2\xd8\xa4\x65\xf7\x54\x7f\x15\xbc\xcd\xfe\xc8\xd7\xdb\x1f\x30\xd1\x68\x8d\x89\xce\x4f\x47\xf8\x18\x9d\xde\xdc\x04\xf2\x9f\xd4\xff\xc5\x0f\x6f\x0b\xf5\xa7\xb5\x25\x22\x3f\xd6\x87\x73\x7f\x3c\x0b\x95\xbf\x6f\x11\xae\xbd\x94\x14\x5c\x94\x11\x0c\xd9\x0e\x70\x48\x5e\x7c\x3c\x81\xd8\x39\x16\x72\x7a\x4c\x84\x2f\x34\xb9\x40\xf9\x18\x07\x43\x50\xbf\xea\x18\xbd\x1d\x80\x3f\x10\xce\x49\x7e\x5e\x85\x64\x04\xa9\x4e\xa6\xa4\xf8\x7e\x93\xd7\xd7\x18\x00\x6e\x61\x00\x85\xd3\x11\x56\xab\xa1\x10\xde\xd4\xe6\x6f\xec\x7b\x5d\x4d\x85\x8f\x80\x3a\xad\x73\xa8\x1c\xc8\xda\x36\xb7\xfe\x5a\x5f\xff\x1a\xa8\x75\x07\x69\x6f\x7b\xac\x2b\x9f\x8e\x3a\xb7\x8c\xe5\xe3\x68\xa0\xdf\x76\x2c\x7a\x45\x91\xfa\x9a\x77\xcf\x01\xc6\xdf\x5a\xe3\x97\xde\x2b\x03\xc5\xdc\xdc\xdc\xf3\xef\x15\xbf\x5a\x41\xbd\x2d\xfa\x6b\x3b\x0f\xc7\x33\x93\x3a\xfb\x18\xc5\x7f\x7c\x3d\xbd\x4f\xda\x11\x7b\xab\x36\xef\x1a\xa0\x06\xf1\xb3\xd3\xfb\x1d\x47\x1f\xac\x17\x1b\x8e\xda\xff\xc5\x80\x8a\x53\x50\xc5\x0f\xd7\x0c\x26\x02\x52\x27\x66\xd0\x23\xbb\xf3\x72\x7b\x44\xb8\xd8\xa0\x55\x12\x14\xd7\x50\x0d\xd5\x9a\x0c\x1b\x32\x20\x68\xb7\xba\x1d\xd9\xf0\x74\xbe\xf3\x1a\x2c\xbd\xe8\x1b\x70\x4c\xed\x2a\x0c\x4d\xc8\x06\x42\xfa\xe8\x6c\x62\x63\xea\xdf\x3a\xd7\x65\xc1\x18\x85\x24\x6b\xdb\xca\xaa\x0e\xab\x46\xfc\x0d\x37\xbd\xba\x38\xb9\xcd\xbe\x2b\x12\x96\xec\xc8\x78\xfa\xc1\xaa\x1a\xc4\xcf\xbe\x9e\xf6\xee\x9f\xb7\x2d\x2d\x6b\x88\x8e\x55\x3f\x28\x97\x85\x89\x91\xe1\x14\x54\xe2\xe1\xe6\xa6\x7f\xe5\x57\xa5\x3b\x2d\x88\x15\xc2\xe3\x30\x1a\x86\x2f\x4d\x87\x81\x03\xdf\xc1\x95\x5c\xbc\x28\x9e\x2a\x84\xc3\xa4\xab\xf2\xc9\xa4\x77\xff\x3c\xec\x18\x55\x73\x2b\xab\x75\x2d\x05\x66\x33\x28\xb9\x32\xee\xf9\xf7\x54\x28\x9d\x7b\x10\x4a\xa7\x49\x76\x05\xc8\x33\x33\xdd\x3c\x14\x2c\xcf\x3f\x29\x45\x1f\xe0\xf3\xdd\xab\x45\xe0\x1f\x9f\x9c\x9c\x9c\xe8\x3c\xff\x91\x7f\x6e\xda\xb5\x8a\x7a\x64\x1a\x90\x7e\x86\xb8\x78\x9b\x4f\xf0\x55\x6a\x2a\x47\x1b\x04\x02\xce\x07\x56\x23\xb7\x58\xa1\x35\x23\x16\xdb\xcb\x88\xc0\x0c\xe2\x51\x48\x0e\xdf\x73\x4c\x0f\x38\x4a\x9a\x9e\xac\xee\xe3\xa1\x89\xe0\xa6\x87\x69\x7f\x33\x0d\x64\x25\x45\xbe\x9b\x1b\xff\xe4\xc4\x3a\x85\x25\x4f\x01\x7a\xd6\x3f\x14\x77\xf9\xf1\x2c\x4d\x45\xd8\xca\x46\x54\xe4\xa0\x9e\x69\x17\xd5\x49\x6e\x7b\x93\x96\xcd\x7a\xd6\xb9\xa8\x1c\xeb\x03\xd7\xe9\xd0\x49\xaa\xf6\x15\xa5\x03\xb6\x35\xef\x0b\xf7\xfc\x7b\xc9\x3d\xff\x5e\xe4\xdf\xf3\x13\xff\x9e\x1f\xc9\x21\x27\xf2\x3f\x11\x4a\xfc\xff\xbf\x1f\x9d\x25\x60\x2e\x8e\x13\xff\x5f\xfc\x68\x9a\xf8\x27\x53\x3f\xca\x13\xff\x24\xf7\x23\x96\x80\xd5\xae\x48\xc0\x68\xfc\x22\xf1\x4f\x2e\xfc\xe8\x2a\x71\x06\x02\x75\x6f\xef\xd3\xef\x5b\xb7\x72\xbb\x8c\x3a\x1e\x92\x8b\x8d\x84\xa3\xe1\x63\xb9\x69\x96\x77\xeb\xe1\xe1\x9d\x7b\x00\xa6\xbb\x61\xa6\x5a\x39\xe8\x82\x2b\x60\x4d\x42\x30\xeb\xa2\x43\x4e\x56\xe1\x14\x8a\x98\xe1\xe3\x99\x89\xc0\x83\x8f\x75\xc1\x69\xdb\x71\xe4\x72\x7e\xdc\xdc\x0c\x44\x2a\xca\x18\x27\x61\x18\x89\xf6\x39\x77\xe9\x52\x54\x5c\xae\xf3\x8c\x9e\xa1\xcc\x81\xb7\x64\xa7\x2c\x47\x99\xba\x41\x27\xde\xe1\x02\xe5\xde\x42\xc1\xe1\xde\x7c\xc9\x85\x77\x86\x3d\xd5\xdc\x97\x62\x7f\x73\xcf\x9b\x01\x36\x37\xbe\x7a\x5c\xbc\xb9\xc1\xf6\x76\x3c\x1e\x9c\x6a\x36\xb2\x51\x80\xe8\x3a\x3f\x40\x54\xf0\xa6\x94\xa9\xeb\xfc\xa8\x7e\x49\xb7\x81\x0f\xeb\x5b\x2f\x92\xdd\x39\x09\xa6\xeb\x34\xf5\x48\x92\xfb\x17\x21\xf8\x67\x5d\x87\x44\xdb\xa5\xbd\x10\x80\xeb\x13\x71\xff\x84\x9b\xd0\x43\x66\x25\x69\xd7\xed\xfb\x27\xbc\x77\xff\x7c\x3e\x12\x6d\xf4\x25\x36\x22\x20\x23\x28\x72\x93\xd0\x84\x95\x02\xed\x42\xd9\x3c\x5c\x73\x04\x11\xde\xdc\x8c\x87\xc5\xc9\xd9\x27\xb2\xf1\xde\x34\x70\xb2\xed\x62\x52\x68\x8e\x3d\x3a\x95\x13\xd2\xf3\x23\x6f\x4a\x97\xf9\xc4\x5e\xf3\xb7\x16\x5d\x2c\xe9\x39\xfd\xee\x2e\xaf\x5c\xa5\xd2\xef\xe0\x08\x90\x18\xc5\xf0\xce\xd1\xc1\xfb\x44\x6b\x87\x77\xf6\x3e\x1e\x1d\xec\x15\x3f\xb7\xdf\x1f\xa9\x78\x35\xd1\x87\xdd\xa3\x6d\x1d\xac\xa6\xa5\x0b\x73\x23\x4d\xbf\xef\x1e\xee\x6c\xef\xef\x26\x5b\x4f\xa2\xdd\xc3\x1d\xf9\xcf\x9b\x61\x32\x1c\x6e\x45\x6f\xb6\x92\xe1\xf0\x41\xf4\xe6\x41\x32\x1c\x3e\x8c\xde\x3c\x4c\x86\xc3\x47\xd1\x9b\x47\xc9\x70\xf8\x38\x7a\xf3\x38\x19\x0e\x9f\x44\x6f\x9e\x24\xc3\xe1\xd3\xe8\xcd\xd3\x64\x38\x7c\x16\xbd\x79\x96\x0c\xb7\x06\xd1\x9b\xe1\x20\x19\x6e\x0d\xa3\x37\xc3\x61\x32\xdc\xda\x8a\xde\x0c\xb7\x92\xe1\xd6\x83\x68\xef\xe3\x6e\xf2\xf0\x59\x74\xf4\x65\x2f\x79\x34\x88\x8e\xfe\x76\xb0\xbb\x9b\x3c\x1a\x46\x6f\xf6\x3e\x1d\x24\x8f\xb6\xa2\x37\x6f\x3f\xef\x26\x8f\x1e\x44\x87\x6f\x7f\x4b\x1e\x3d\x8c\x0e\x77\x3f\xef\x7e\x4c\x1e\x3d\x8a\x76\xdf\xfe\xfa\xb7\xa3\xe4\xd1\xe3\xe8\xe3\xdb\x8f\xbb\xc9\xa3\x27\xd1\xdf\x77\x0f\xf6\x92\x87\x4f\xa3\x57\xdb\x3b\xef\x0e\xf7\xb7\x77\x76\x93\xa7\xd1\xab\x77\x87\xfb\xf2\x9f\xc3\xe4\x69\x74\xb4\xfd\x2a\x79\x16\xfd\x3f\xc9\xd3\x61\xf4\x25\x79\xfa\x24\xda\x4d\x1e\x3f\x8b\x0e\x92\xa7\x5b\xd1\x51\xf2\xf4\x61\xf4\x1f\xc9\xd3\x67\xd1\xa7\xe4\xe9\xa3\xe8\x6d\xf2\xe4\x41\xb4\x97\x3c\x79\x16\xed\x27\x4f\x07\xd1\xce\xf6\xfe\xe1\xd7\xf7\x7b\x3b\xef\x92\x2d\xf5\xc3\xfe\x5b\xfe\xbb\x9d\x3c\x7e\x14\x1d\x26\x4f\x1f\x44\xaf\x93\xc7\x4f\xa3\x37\xc9\x93\x41\xf4\x6b\xf2\x64\x18\xfd\x2d\x79\xb2\x15\xfd\xdf\xc9\x93\x87\xd1\xbb\xe4\xc9\xa3\xe8\x7d\xf2\xe4\x71\x04\x7e\x1d\xc9\xf0\x81\xfc\x43\xfe\x73\xb0\x7b\xf4\xe9\xe0\xa3\xfe\x4b\xfe\xf3\xf7\xe4\xd9\x20\xfa\x2d\x79\xfa\x34\xda\x49\x1e\x3f\x89\x3e\x27\x4f\x1f\x47\xaf\x92\xc7\x8f\xa3\x8f\xc9\x93\xa7\xd1\x87\xe4\xc9\x93\x48\x8d\xee\xc1\x56\x74\xb8\x2f\xff\xbb\x7f\xf0\xf6\xe3\xd1\xd7\xc3\x9d\x83\xdd\xdd\x8f\xc9\x43\xf9\xfb\xe8\x70\x47\xfe\x71\xb8\x73\xb0\xf7\xfe\xbd\xc2\x7d\xf8\xf0\x51\x04\xfe\x04\xf0\x17\xb8\x10\x24\xc3\x67\xd1\xab\x03\xf8\x47\xf9\x0e\x24\x0f\x1f\xc9\xbf\xe4\x3f\x7f\xdb\xfb\xb0\x9b\x3c\x78\x1c\xed\x6f\xff\xba\xfb\xf5\xd3\x7e\xf2\xe0\x41\xb4\xff\xab\xfa\xf7\xf5\xee\xfb\xdd\xa3\xdd\xe4\xe1\x63\xf9\x97\xfc\x67\xf7\xe3\xeb\xe4\xc1\x23\x55\xf5\xf5\xde\x97\x8f\xc9\x83\x87\x91\x32\xeb\xd7\x7f\xc1\xbf\xb2\xf1\xd3\x08\x4a\x1f\x0e\x22\x30\xbf\x4f\x1e\x3c\x8b\xde\xef\xbe\x39\x4a\x1e\x3c\x89\xb4\x1d\x7d\x32\x7c\xf8\x30\x7a\xb7\x3f\x48\x9e\x3d\x8e\xde\xed\x0f\x93\x67\x4f\xa2\x77\xfb\x5b\xc9\xb3\xa7\xd1\xbb\xfd\x07\xc9\xb3\x67\xd1\xbb\xfd\x87\xc9\x70\x30\x88\xde\xed\x3f\x4a\x86\x83\x61\xf4\x6e\xff\x71\x32\x1c\x6c\x45\xef\xf6\x9f\x24\xc3\xc1\x83\xe8\xdd\xfe\xd3\x64\x38\x90\x30\x9e\x25\xc3\xc1\xa3\xe8\xdd\xfe\xd7\xfd\xf7\x9f\x0e\x93\xe1\x40\x42\xfa\xba\xfd\xfa\xb5\xf9\xf3\xc3\xdb\x8f\x50\x2e\x61\x7e\x3d\xfc\xf4\xea\xe8\x60\x7b\xe7\xa8\xf8\x7d\xb4\x7d\x90\x0c\x07\x8f\xa1\xe2\xa7\xf7\x47\x6f\xf7\xdf\xff\x87\xf9\xfd\xfa\xed\xe7\xb7\xaf\x77\x93\xe1\x70\x08\xbf\x76\x77\xde\x7e\xd8\x7e\x9f\x0c\x87\x03\xe8\x6c\xf7\xe0\xed\xde\x6b\xf8\xf5\x71\xfb\xf3\xdb\x5f\xb7\x8f\x76\xbf\xca\x15\x99\x0c\xe5\x14\x9a\x92\x37\x7b\x07\x5f\xb6\x0f\x5e\x27\xc3\xc7\x4f\x22\x65\x38\x9e\x0c\xe5\xd2\xf9\xf4\xfe\xbd\x99\xc8\xe1\xd3\x07\xd1\x97\xb7\x1f\x5f\xef\x7d\xf9\xba\xf7\x79\xf7\xe0\xf3\xdb\xdd\x2f\xc9\xf0\xe9\x56\xf4\x0a\x48\xf7\x71\xf7\xf0\x50\xce\xcb\xd6\xf0\xb1\x5d\x02\xe4\xdd\x1a\x3e\x69\xd9\xdc\xfa\x56\x5e\x84\x74\xed\x74\x87\x36\x61\x5d\xbb\x9d\xa2\x3b\xde\x5f\xc1\x2f\xda\xb6\xac\x4d\x9c\x39\xa1\xee\x60\x7b\x7b\x1b\x55\xad\x4b\x57\x01\x5c\xc3\x8c\xd1\x80\x3c\xa2\x47\xb4\x13\xc1\xd5\xa6\xcc\x25\xa8\x57\x54\x08\x3a\xff\x59\x68\xea\x01\x5f\x9b\x48\x8c\xbf\xb9\xc1\xdd\xc5\xb2\xb1\x91\x6e\x25\xaa\xa6\xed\x93\x8b\x86\xe1\x29\x66\x38\x1f\xe3\x0f\x28\x47\x95\x0b\xa4\x3c\xf8\x9b\xdf\xad\xb8\x72\xf5\x44\x71\x91\x7f\x5f\xa5\xac\x5a\x30\x3a\x25\x19\xe6\xf7\x41\x30\x31\x21\xe6\x9b\xa0\x74\xf3\xf2\x03\x1f\xed\x9d\xfd\x03\x8f\xe1\xf9\x98\x07\x2c\x6c\x3e\xf0\x19\x69\x04\x14\x7e\xb8\x6c\x19\xe0\x88\x1d\x63\x48\xcf\xda\x78\x69\x75\x8d\x41\xe0\x73\xca\x08\x36\x47\x6f\x47\x8d\x82\xc0\xa9\x6f\xfe\xf2\x57\x35\xd9\x5e\x2c\x30\x62\x20\x47\xf9\xe5\xdf\x2b\x9b\xed\xd0\xc5\xb5\x7a\x6c\xf2\x8b\x3f\x57\x36\x3a\x94\x42\x06\x4f\x7d\xf5\xef\xea\xea\xb0\xbe\x20\xa0\x75\xf1\xe7\xca\x46\x65\x10\x6c\xf3\xd7\xca\x26\x1f\x08\x1f\xe3\x2c\x43\x39\xa6\x4b\x9e\xfa\x95\x9f\x9d\x8d\xaf\x5f\x17\xba\x5c\x9e\x1e\x7f\x27\x93\x64\x6d\x62\x47\x02\x5f\x89\xc4\xa2\xb8\x17\x4c\x69\x2e\x78\xe4\x8d\x69\x46\x19\x8f\x3c\x95\x4c\x2d\xf4\x6f\xa3\x35\x00\x17\x73\xa0\xe1\xca\xdf\xde\xa6\xa7\xa6\x65\x2d\x08\x86\x5a\x1a\x40\x41\xbc\xb5\x1a\x9b\xd5\xa6\x1b\x17\x8b\x6f\xad\xc6\xc5\xdc\xea\xd6\xe5\x5c\xaf\xd7\x1c\x16\x93\x69\xab\x56\xd6\x5a\x0d\x2b\xf3\xac\xdb\xcb\xb2\xbe\x7f\x7b\xea\x9c\xf5\x26\x0f\x48\xbf\x4b\xd9\x35\x3e\x67\xf1\x9c\x4e\xb0\x9f\x1c\xaf\x4b\x27\x88\xd8\x76\x0c\xff\xd5\x81\xea\xcb\x20\xa5\x51\x19\x38\x34\xb2\x02\x92\x9e\x46\xbe\x32\x81\xf2\x50\xee\x6d\x67\xe2\x57\xe6\x4d\xb0\xc0\x3a\xcc\x0a\x1a\x7f\xfb\xfd\xcb\x0c\x2f\x19\xe1\x82\x8c\xfb\x27\xf9\x49\x7e\x4f\x82\xbf\x97\x78\xdb\x4b\x41\x55\x4d\xef\x0c\x71\x90\xfc\xbd\x1c\x5d\x90\x73\x24\x28\xeb\x67\x3a\xbd\x4d\x72\x92\x7b\xf0\xbf\x7b\x38\x8f\x97\xfc\x9e\x97\xbe\xf0\xee\x49\xd4\xee\x45\x1e\x28\x3f\xe4\xef\x02\x9b\x7b\x12\xbc\xfc\x98\x78\xaf\x09\x47\x67\x19\xf6\x50\x7e\xad\xd1\x62\x38\x03\x4d\xc7\x7c\x99\x9f\xcb\x8b\xfb\x49\x7e\xcf\x0c\x4e\xa2\xc3\xf9\x72\x8e\xbd\x1d\xc1\xb2\xde\x76\x26\xbc\x39\x46\x39\x57\x2d\x65\x4d\x33\xf6\xb2\xa6\x2c\xf1\x1c\x35\x4b\x64\x8a\xaa\x50\xe4\xa8\x2b\x89\x27\x27\xaa\x88\xdc\x13\x13\x1e\xcb\xab\x46\x59\x72\x87\xc9\xdb\x18\x46\xfe\x19\xa5\x99\x1f\xf9\x6f\xa7\x1e\xc7\x22\xf2\x96\xf9\x84\x62\xee\x89\x19\xf6\x54\x38\x5f\x6f\xef\x50\xf6\x1e\x17\x6e\x33\xf1\x8b\xd7\xbb\xef\x3d\x86\xe7\x68\x11\x79\x9c\x7a\x62\x86\x84\x57\xc1\xc9\x93\xf7\x36\x3c\xf1\x08\xaf\x96\xf7\x0d\xf6\x1a\xe7\x1f\xc3\xf4\x10\x0b\xef\x72\x86\xc5\x0c\x33\x40\x13\x65\xc2\x3c\x6f\x70\x0f\x71\x0f\x79\x12\x36\x14\x51\xa6\x0a\x26\x72\x2d\xe5\x63\x61\xea\x16\x88\x70\x9c\x4f\x78\x7c\x39\x43\xe2\x0e\xb8\x14\x09\x05\x8e\x8b\xbf\x74\x64\xcc\xa8\x12\xdf\xf5\x34\xf2\x77\x54\x9c\x2b\xee\xcd\xe0\xf2\x5a\x22\x4b\xb8\xa7\xa2\xc9\x4f\x60\x85\x7b\x5a\x57\xd3\x57\xff\xf3\x0e\x71\x3e\x91\xbb\x63\xf7\x70\xc7\x5b\x30\x3c\x25\x57\x7d\x59\x09\x7a\xe9\x9b\x4a\xdb\x93\x89\x37\xdc\x7a\xea\x09\x0a\xa0\x97\x39\x5c\x52\xf1\xc4\x2b\x42\xf2\xcb\xd1\x93\xdc\xbb\x02\x2b\x09\x09\xc0\x42\xaf\xdf\xf7\xbe\x20\x22\x20\x76\xa5\x6c\x6e\xf2\x67\x78\x10\xd1\xd5\x43\xf9\xc4\xe3\x18\x7b\x92\x36\xf0\x5d\x37\xf5\xcc\xee\x2a\xff\xc7\xd1\x35\xef\x7b\x5e\x70\x34\x23\xdc\xbb\xa4\xf9\x3d\xe1\x5d\x52\xf6\xcd\xbb\xc4\x59\x26\xb7\xe8\x22\x43\x62\x4a\xd9\x9c\xcb\x69\x63\x18\xa0\x35\xa1\x18\xf8\x0b\xcc\x54\x65\x78\x60\x94\x6c\x4a\x3f\x5c\x01\xa6\x9c\xce\x15\x11\x4d\x90\x3c\xde\x0f\x61\x32\x97\x13\x72\x96\xe1\xf8\x0c\x67\x59\xcc\x25\xef\x5c\x3d\xa1\x9a\xdf\x4a\xf1\x2c\x36\xb9\x40\x13\x25\x4c\x49\x70\xf4\xbe\x04\xe6\x47\xfe\x12\x6c\xc1\x3e\x1d\xbc\xf7\xe8\x14\x90\x37\x86\x74\x9e\xac\xe0\x41\x6f\x7d\xcf\xdb\x9d\x2f\xc4\xb5\x51\x8a\x4a\x5c\x73\xea\x69\xb4\xa0\x22\x2c\x3a\x9d\xff\x33\xce\xad\xcc\x9e\x80\xf4\xda\xe8\x96\x3b\xe1\xde\xdb\xa9\x27\xd8\x12\x47\x55\x84\xb8\x8a\x25\x87\xbd\x32\x5f\x97\x77\x49\xb2\xcc\x53\xa9\x1f\x3c\xe4\x7d\xc1\x67\x95\xd4\xa2\x7d\x6f\x26\xc4\x82\x27\xf7\xef\x5f\x5e\x5e\xf6\x2f\x1f\xf4\x29\x3b\xbf\x7f\x74\x70\xdf\x46\x92\xdf\x97\xeb\xf4\xb5\xca\x5a\x23\x47\x58\xf9\xe8\x31\xfc\x5f\x4b\xc2\x30\x97\xd3\x37\x27\x9c\xc3\x7c\x31\x3a\x57\x2b\x53\x5e\x91\xbc\x2f\x33\xac\x34\x65\x9e\x4a\xb7\x24\xf7\x00\xc7\x02\x96\x2f\x8c\x02\x48\xaf\x50\x45\x42\xe0\xf9\x02\xbe\x21\xfe\xad\x00\x02\x64\xb5\x7a\x20\x53\x2f\xc7\x63\xcc\x39\x62\xd7\x7d\x39\xa4\x62\x99\x72\x6f\x8e\xae\x55\xce\xa9\x99\xd6\x1b\xd9\x0d\x25\xba\x98\x0b\x09\x80\x08\x6f\x42\x26\x50\x55\x99\x54\x49\x1a\x01\xea\x48\xf5\xa9\x56\x1f\x6c\x53\xcd\x11\xf1\x95\xc0\x39\x87\x71\x5f\x12\x31\x03\xf4\xfc\x0a\x3d\x7c\xbb\xb3\x19\xba\xc0\xf6\x6f\x41\x3d\x9d\xfd\xa7\x4a\xc4\xfe\xbd\xd3\xc8\x2f\x27\x2d\x06\xf9\x69\xf5\xba\xb0\x44\x31\x9f\x9d\x9f\x05\xc3\xc7\x91\xa7\xfe\x3f\x94\x87\x31\x00\x89\xfc\xa3\xea\x82\x80\x62\xb5\xf7\xf1\x95\x50\xc3\xc8\xa9\x47\x81\xab\xaa\x8f\xc8\xa4\x16\xe2\xb0\x72\x2d\xc4\x40\xa0\xbb\x1b\x62\x7e\x54\xbc\x36\xfa\x3b\x87\x87\x9e\x7a\x32\xd7\xfb\xc9\xc2\x0b\x40\xb7\x6c\x26\xf5\x4d\xce\xc3\x1b\xca\x3c\x7c\x85\xe6\x8b\x4c\x9d\xf6\x4b\x96\x05\x66\x09\x9f\x53\xda\x3f\xcf\xee\xa3\x1c\x4f\x8e\xde\x85\xf2\x6b\x46\x72\x8c\x58\x7c\xce\xd0\x84\xe0\x5c\x04\x82\x2e\xbc\x33\xb8\x3c\x46\xde\x59\x26\x57\x1e\xc3\x93\xb0\x36\x46\x4e\xfe\xf8\x2b\x87\xe8\x49\xf8\x7d\xcf\xd3\x91\xb3\xb9\x5c\x14\x52\x0c\xa9\x93\xda\xa4\xdf\xfa\x2b\x51\x31\x7d\x38\x49\x3b\x1c\xfc\xbb\xfc\x7f\xf9\xe7\x18\xe7\x02\x33\x83\xa0\x92\x05\xd4\x01\xfa\xf3\xb2\x87\xe6\x63\x1a\x3d\x25\x45\xf0\x19\x5d\x66\xf2\x14\xca\x27\xde\xab\x43\x2f\xb8\x77\x72\x72\x35\x78\x7a\x2f\xf2\xd0\x37\xe4\xfd\xfe\xb7\xb0\xef\x79\x7b\x72\xbd\x5e\x12\x8e\x6b\x4d\xe5\x11\x6b\x37\x97\x4d\x9f\x4c\xef\x01\x75\x8b\xd3\x31\x9e\xa3\x45\x4c\x2f\x30\x63\x64\x82\xf9\x9d\x28\xac\xe4\x5d\x20\xab\x1f\xdd\x83\x83\x4f\x72\xb3\x05\x1e\x93\x29\xc1\x13\x90\x3a\x72\x8f\xaa\x7b\xb5\xf7\x56\x80\x28\xe4\x71\x78\x18\xf1\x10\x63\xe8\x3a\xd2\x87\x21\x46\xe3\x99\xb7\xd0\x8f\x3a\xb2\x9a\x1c\x48\x79\x80\x4b\x06\x39\xa6\x13\x0c\xe7\xb1\xfc\xa4\x6d\x4d\x2c\xf8\x4a\x00\x6b\x74\xe0\x11\xc1\x71\x36\xed\x7b\x6f\x73\x55\xa3\xda\xbb\xb3\x5f\x86\xc7\x98\x5c\x54\x25\x88\x7a\xbf\xf2\x87\x66\x5f\x76\x45\xe7\xe2\xf9\xee\x0f\xfc\xe4\xbb\xdf\x83\x37\xbd\xe5\xd6\xf0\xd9\x96\x1f\xf9\x51\xf1\x6b\xe0\x47\x7e\x5c\xfc\x1a\xfa\x91\xdf\x2f\x7e\x3d\xf0\x23\x4f\xb6\x86\x9f\x8f\x9e\x3e\xf5\x6f\x6f\x25\x7b\x04\x0f\x97\x98\xe6\x31\xbe\x22\x6b\xc8\x6c\xd5\x9b\xd1\xc6\xa0\x58\x72\x5f\xb4\x00\x09\x9c\x05\xce\x19\x80\x0c\xa3\x53\xce\x2e\x72\x7e\xd4\x39\x3a\x56\x09\xcb\x3d\xd9\xa5\xe2\x85\xca\xfc\x35\x3e\xcb\x48\xfe\xed\x4e\xeb\xc6\x5a\xf4\x4d\x0c\x00\x9c\xea\x11\xe0\x7b\x67\xd7\x46\x04\x6a\xf4\x1a\x8f\xaf\xc7\xd9\xdd\x18\xd4\xf1\x10\x3f\x88\x1e\x0d\x06\xa7\xc5\xc2\x85\x43\xc1\xf4\x05\x9d\x33\x79\xf8\x91\xdc\x9b\x93\x2c\x23\x1c\x8f\x69\x3e\xe1\x30\xb3\xdb\x9e\xb8\xa4\x1e\x56\x19\x89\xcc\x1a\x92\xa8\x4e\x09\xe3\x42\xb2\x16\x48\xc4\x03\x72\x2d\xbd\xf4\x32\x9a\x9f\xdb\x23\xd1\x7b\xf1\x0c\x7b\x34\x8f\x3c\x05\xb8\x52\x97\x08\xbb\xce\x74\x6a\x0f\xf8\xc7\xce\x41\x14\x6c\x3d\x7a\x14\x79\x03\xf5\x7f\xfd\x47\xf5\xc3\x50\x1d\x72\x9a\x27\xea\x04\x8d\x1a\x5d\xd5\xb9\xfc\x1e\x2f\x50\x86\x85\xc0\x7f\x06\x9b\xf0\xf7\x34\x0c\xad\x18\x31\x62\x9a\x91\x72\x75\x57\x40\x6e\xe0\x28\x63\x94\x4b\x6a\xd4\xb9\x8a\xda\xdd\xf2\x80\x2e\x39\x8c\x27\xaf\x6f\x4e\xee\x23\x29\x2b\x79\x03\x5c\x2b\x27\xb0\xcc\xf0\xba\xac\x08\x79\xf9\x72\x8e\x19\x19\xc3\x85\xee\xca\x23\xb9\xbe\x6a\x28\xda\xd9\x08\x7f\x96\x63\x6c\x41\x39\x9b\x53\x2e\xe0\x56\x3d\xe6\x5c\xb7\x55\x76\xb2\x9e\xa7\x58\x67\x3e\xce\x96\x13\xcc\xbd\x7f\x3d\xf8\xf5\x55\xe4\xfd\xeb\xc1\xc1\xaf\xbf\xbe\x7a\x15\x79\x52\x9a\xe9\xf7\xfb\x21\xfc\x85\xf4\x9f\x08\x6e\x46\xd7\x1a\x4e\x8e\xe6\x70\x5b\x95\x57\x50\x26\x6f\x06\x9c\x7a\x0b\xc4\x84\x99\x58\x2e\xe8\xf8\x9b\xf7\xdb\x70\x28\x41\xf4\xc5\x95\xf0\xa6\x24\x53\x28\xff\x07\x5d\x02\xbe\x4b\x8e\x3d\xa5\x61\x90\xd4\x51\xa8\x5f\x2b\x90\xf6\xf4\x28\x06\x58\x2e\x52\xb9\x69\xcf\x54\x86\xd3\x73\x3c\x29\x86\xc2\x25\xbc\xe9\x32\x53\xb7\x95\x6f\x64\xb1\x90\x12\x0c\xf2\xf8\x1c\x65\x99\xa4\xe7\x19\x86\x55\x47\xf2\x09\x19\x63\x5e\x72\x99\x82\xc1\x3a\xe7\x5b\x2f\xc9\xc5\xb5\xe4\x7d\x1c\xb4\x27\xab\x57\x62\xa9\x4b\xb3\x38\xdf\xf6\x52\xd0\x39\x12\x64\x8c\xb2\x4c\x52\x71\x71\xed\xcd\xa9\xa4\x01\x37\x6e\x69\xe6\x42\x39\x36\x1e\xae\xd0\xf9\x92\xe3\x58\xd3\x22\x56\x1c\x32\x96\x8d\xef\x84\x45\x93\xfb\x09\x0a\xf4\xb7\x09\xad\xd9\x2f\x60\x76\x86\x67\xe8\x82\x50\x10\x3a\x40\x53\x1f\x17\x58\xc6\x60\x73\x7a\x77\x1c\x9a\x67\x00\x30\x7f\x8c\xd4\x35\xb8\xa4\x82\xb2\x69\x95\xf0\x49\x7e\xae\xe8\x2f\x58\x16\x2f\xb2\x25\x8f\xe7\x24\x5f\xf2\xf8\x0f\xcc\x68\xfc\x07\xa5\xf3\xbb\x88\x3d\x83\xa6\xd8\xb3\x23\xe1\xee\x67\x4b\x7e\x1f\xdc\xdd\xee\xff\x1d\x33\xea\x8d\x8d\xea\x40\x76\xd0\x3f\xc9\xdf\x4e\xbd\x29\xca\xb8\xa9\x0e\x11\x95\xbb\x1b\xe9\x9a\xf0\x19\xc4\x20\xee\xfd\xfe\xd5\xee\x0d\x9a\x4c\xa4\xe0\x29\x66\x95\x31\x8e\xd7\x24\xab\x4b\x98\x03\x75\xd8\x8e\xa4\x1b\xc1\x5c\x5e\xb0\xd4\x18\x41\x0c\xfb\x7d\x47\x12\x7b\x46\xd5\xcd\x0b\x86\xd3\x3f\x01\x87\xdf\x1e\x8c\xa7\xb7\x63\xf0\xac\x54\x54\x10\x4a\x88\xaa\x61\x81\xed\x45\x0c\x3e\xbb\x3f\x81\xee\x67\x0f\x20\x34\xd0\xfd\xbc\x02\xdd\xcf\x06\xdd\xcf\x4d\x74\x4b\x88\x25\xba\x18\x71\x11\x23\x4e\x50\x1e\xa3\xf9\x19\x39\x5f\xd2\x25\x8f\x11\x8f\xc5\x25\x8d\x55\xde\xdc\x9f\x57\x89\xed\x22\x2e\xbc\x6d\xd9\x87\xb7\x6d\xfa\x28\xc5\x34\xae\x6e\xa3\xf2\x30\x57\x1d\x7a\xe0\xff\xab\xb0\xcb\xd1\x59\x86\x63\x50\x32\xc5\x45\xaa\xa6\x1f\xc1\xe7\x88\x2d\xb1\xa4\x88\x82\xa8\xd4\x56\x66\x6d\x5a\xb8\x44\x8a\x34\xb2\x26\x39\xcf\xa9\x52\x0d\xcd\x81\x39\x7f\xc1\xf7\xb2\xcc\x63\x58\x32\x43\xc5\x87\x25\x8d\xce\xae\x05\xf6\x2e\x30\x53\x77\x6f\xc5\xe2\x55\x5e\x85\x1a\x64\x8f\xe1\x73\xc4\x26\x19\xe6\xba\x9a\xd2\x35\x08\xb3\xca\xf5\x50\xcf\x68\xb6\x86\x9e\xa8\x71\xa0\x0b\x46\xb8\x40\x02\x9b\x91\x92\xa9\x77\x59\x1c\x0d\x92\x9d\x49\xb8\xde\x25\xf8\x49\x7b\x53\x9a\x8b\xda\x45\x1b\xee\x2a\x34\x9b\xdc\x3f\x53\x6a\xde\xe2\xa6\xdd\xf7\xbc\x37\x86\x22\x86\x2d\xaa\x08\xfa\x36\xb4\xbe\xe7\x7d\x5c\x66\x19\x28\x47\x0a\x8d\x78\x7d\x58\x72\x59\x29\xf0\x77\x13\x50\x07\xd5\x49\x6c\x0e\x4d\xa1\xac\x45\x98\xe0\x69\x3c\x7c\xe4\x49\x66\xe9\x0d\x1f\x57\xc5\x82\x10\x06\x2d\x4f\xea\xe6\xc0\x1d\x23\xa6\xe6\x26\x57\x19\xc8\xdd\x05\xec\x2e\xfc\xed\xe5\xa4\xe4\x5d\x27\xe5\xf5\x5a\x24\x92\xd0\x16\x32\xc5\x71\x08\xca\xbb\x75\xee\xba\xce\x53\xe7\x50\xca\xbc\xc8\xd3\xb9\xcf\x8d\x10\x58\x68\xf0\x0a\x79\x00\xb8\xc9\x25\x23\x92\x89\x38\x0f\xe4\x06\x5a\x50\xf9\x47\xa5\x82\x2c\xd3\x1a\x6a\xe8\x57\x50\xd5\xb5\xa7\x12\x7b\x67\xd7\x06\x05\x7e\xcd\x05\x9e\xbb\x31\x99\xe0\xf1\x70\xeb\xce\x77\xb2\x92\x6b\x1c\x58\xd3\x23\xb1\xb8\xc7\x6d\x3d\xa0\x12\xb4\x2a\xd7\x23\x98\x42\xb9\x13\x97\x52\xea\x92\x72\xd6\xeb\xdd\x1d\x6f\x9f\x91\x0b\x79\x8d\xf9\x20\xaf\xcd\xc3\x2d\x89\x21\xce\x2f\x08\xa3\xb9\xbc\xbb\xdc\x11\xbd\xef\x47\xbb\x07\x1f\x12\x1f\x34\xe8\xf1\xd6\xa3\xc7\xea\x06\x71\x5b\xbd\x42\x19\xc9\xc5\xea\xc6\xbb\x40\x8c\x48\xaa\xf0\xa8\xaa\x0c\x90\xf4\x92\x9b\x38\x9e\xa2\x39\xc9\xd6\x38\x63\xad\xc5\x7d\xcf\x7f\x8d\xff\x81\x3e\x2f\xbd\x43\x94\x73\xef\x03\xcd\xa9\xbc\x24\xef\x4a\x86\x48\x73\xf3\xfb\x0d\xc3\x58\xfe\x19\x79\xfe\x07\x9c\x67\x50\xe5\x48\xaf\x2e\x3f\xf2\xe6\x34\xa7\xa0\x23\xb9\x67\xe9\x88\xb4\x16\x4a\xf3\x2a\x40\xac\x78\x17\x28\x56\xa6\xdc\xc6\x25\xfa\x77\xd6\x8f\x0d\x1f\x45\x3e\xc9\x45\x8d\x64\xd0\xa3\x84\x25\x37\xc2\x82\x5c\xe1\x8c\x5b\x7d\xcc\xa9\x92\x4c\xee\x76\xf9\x43\xb9\x20\x28\x23\x88\xe3\x49\x5d\x11\x56\x05\x5b\x5c\x76\x74\x97\x26\x19\xfc\x8f\x6a\x5e\xb7\x1e\x0e\x22\xcf\xfc\xa7\x7e\xdf\x2c\xc1\xff\x80\xf2\x75\x46\xe7\x38\xfe\x86\xaf\x79\xac\x2c\x5b\x7e\x52\xcf\x26\xc1\xdd\xc7\xc5\xbb\x80\x3e\x3e\x2b\xb3\x5d\x44\x0d\x51\x2f\x41\x52\xdc\xa9\x35\x03\x11\x49\xb6\xf9\x7c\xe4\x7d\xc3\xd7\x63\x70\xe3\x83\x9b\xa8\x3e\xd5\x25\x27\x2b\x9a\x28\x41\xe9\xf3\x11\x68\xb3\xb8\x0b\xa8\xea\x11\xc6\xfb\x0d\x5f\x9b\xd4\x41\x77\x7c\x89\x2e\x74\x72\xdb\xde\x1c\x2d\xe4\xd9\x0f\xaa\x40\xfd\x58\x24\xf9\x48\xe9\x09\x25\xb1\x7d\x67\x7d\x2d\x2e\xa2\x9e\x14\xec\xe5\x0d\x7b\x2e\xcf\x01\x63\x0f\x2a\x5b\x72\x6f\x4a\x25\xa7\xc4\x13\xef\xec\xda\x53\x8f\x8c\x72\x40\x1a\x92\x1a\x9b\xbe\x04\x4f\xf0\x98\xc8\x93\x9b\x32\x6f\x86\xaf\x90\xf9\xa9\xae\x80\x3c\x82\x1b\xbc\x7a\x0b\x2c\x8c\xc7\x34\x18\x8d\x9e\xe3\x36\x6d\x34\xe2\xf2\xa2\x0a\xe4\xa7\x05\xb7\x8c\xb4\x4a\x40\x3f\x96\x55\x80\xbe\x81\xbe\xa6\x52\x68\xc0\x57\x8b\x0c\xe5\xf0\xe0\x60\xee\xc8\x53\x29\x61\x88\x08\x9e\xfb\x6a\x5a\xf4\xf7\x5f\x0e\xf2\x89\xd2\xed\x1d\x82\x5a\xcf\xb3\xa7\xe6\x24\xff\x7e\x92\x7b\x1e\xc8\xd0\xf1\x76\x26\xe2\x77\x7e\xe2\xf9\x35\x8b\x2a\x3f\x2a\xeb\xa8\x4b\xcb\x7b\x59\x0b\x12\x93\x5b\x9f\xfe\x26\x0b\x4f\xee\xfd\x6d\xf7\xfd\xfb\xbd\x93\x93\xfc\xe4\x9e\x7f\x92\x83\xc6\x6f\x8e\xae\x62\x35\xea\xd8\x4c\xd4\xea\xd5\x5f\xd8\x80\x0c\x71\xc1\x76\x3e\xa0\x2b\x4f\xd9\x7a\xcb\x81\x23\xef\xf5\xce\x61\xe4\xed\x1d\xee\x44\xde\xfe\x07\x20\xde\xf6\xfe\x61\xb9\x52\xce\xb0\xdc\xb0\x52\x78\x38\x27\x17\xd8\x5b\x2e\x60\xc9\x96\x62\xaa\x9a\x76\xb9\x37\x21\xef\x8a\xda\x9c\x88\xe1\x78\x2a\xff\xfa\xc9\xfd\x39\xa6\xf9\x05\x66\xc2\x03\xd0\x6a\xdd\xa9\x99\x26\xcc\x7b\x23\x97\x0c\xfe\xaf\x25\xb9\x40\x19\x96\xc2\x60\x79\x31\xcc\x70\xf5\xa9\x56\xbd\x30\x9b\xd7\x5d\xae\xb1\x15\x48\x6b\xed\xf5\xe3\xf5\x0f\xdd\x5d\xeb\x8f\xf0\xc5\x93\xbb\xda\xe7\xc8\xcb\x30\x9a\x80\xf3\x0f\x74\xa2\xb5\x9c\x0a\x03\xba\xe4\x38\x56\x36\x0f\xe3\x8c\x8c\xbf\xad\x7b\x7d\x73\x09\x2e\xf7\xa0\x40\x4a\xa0\x4a\x2e\x55\xaa\x8c\xb3\xa5\x10\x34\xf7\x00\x3a\x2f\x15\x6a\xe5\xbb\xa3\xdc\x24\x17\x4a\xd7\x39\xc1\x0b\x9c\xcb\xcd\x62\xb6\x83\x46\x10\x90\x8a\x15\x24\xbf\xb8\x3c\x48\x58\x1f\xa9\xc0\x89\x52\xf7\x00\x23\xd4\x64\x06\xeb\x8e\x4d\x8d\x87\x2c\xc3\x13\x6f\x4e\xc6\x72\xa5\x30\x25\x44\xc1\x03\x9f\x03\xfa\x1d\x46\x6e\x99\xdb\x0c\xa2\x61\xb4\x15\x3d\x88\x1e\x46\x8f\xa2\xc7\xa7\x91\xff\x01\x86\x0e\x80\x35\x01\x60\x55\xe7\xcd\xab\x82\x51\xd5\x97\x45\x91\x77\x09\x17\x2e\x73\xe9\x98\x93\x89\x1c\x52\x85\x9a\xea\x15\x2e\x8f\x7f\x1b\x0e\xad\x27\xfd\x40\xf1\x4c\x39\xd5\x85\xbd\x08\xbc\xcc\xe4\xde\x6f\xc3\x61\x1d\xae\x63\x92\x02\x4e\x80\x33\xcb\xab\x0e\x12\x72\xaf\x69\x05\xd0\x5c\xd1\xc1\x08\xef\x6a\x60\x17\x04\xb5\x21\x18\xc2\xb8\x06\x5e\x9a\xaa\xa9\x08\x16\x8c\xcc\x11\xbb\x0e\xf5\xf7\xfe\x49\x3e\x94\x1f\x75\xd3\x00\x2d\xaf\x48\x46\xaa\x15\xb6\x64\x05\x85\x64\xa0\xb4\xd4\xd5\xef\x77\x5a\x48\x27\x6d\x4b\xfd\xe4\xcf\x5a\x4f\x72\x3b\x5d\x52\x36\x89\xc1\x77\x3b\x06\xef\x94\x58\xb6\xbb\xcb\x92\xf2\x8f\x7f\x3f\x39\xe1\x27\x27\xc7\x27\x27\xa7\x41\xf8\xfd\xf6\xf9\x8b\x13\xff\xde\xc9\xc9\xef\x1b\xff\xe3\x5f\xff\xed\xdf\x37\x7f\x89\x46\xc9\x7f\x9e\x5a\x72\xd4\xbd\x03\x7c\xbe\xcc\x10\x93\x27\x09\xc3\xc5\x8b\xf6\x0c\x65\x42\xb9\xc7\xe8\xf3\x49\x52\x40\xcd\x03\x17\x88\x89\x50\x31\xdd\x42\xbd\xa6\x47\x2e\xef\xb6\xf2\x76\xa1\x75\xa7\xc8\x7a\x79\x1a\x67\x88\x03\xdf\x63\x18\x14\xd9\xfa\x18\x1c\x5b\xd7\xfc\xfe\x49\xfe\x05\x7b\x08\xee\x2e\xfe\x7f\xfb\xc0\xa2\xfd\xbe\x6f\x3d\x9c\x48\xe1\x7b\x81\xc4\x8c\x7b\x53\x78\xf3\xcf\xe5\x5d\x06\x10\x32\x37\x52\xca\x31\xec\xcb\x06\x1d\xd7\xbc\x3c\xdf\x85\x90\xff\xdd\xaf\x90\xd2\xbf\x03\x29\xf5\xa2\xc4\xf9\xe4\xaf\xa1\xa4\x73\x29\xa9\xad\xf2\x67\xd0\xe0\xf4\x97\xd5\xe3\x56\xce\x55\x28\xcb\xaa\x6f\xa0\xc5\x43\x89\xc2\xe6\xcf\x5a\x38\x27\xf9\x27\xae\x1e\x44\xf0\xd5\xc2\xbc\x72\x96\xda\x5f\xbe\x64\x20\xac\x13\xfd\x90\x05\x6b\x06\xee\x0c\x94\xe4\xea\x20\x5b\xa0\xf3\x3f\x53\x28\x97\xe0\xbc\xe5\xe2\xfe\x84\x5e\xe6\x77\x14\xcc\x9b\x4d\xd7\x12\xce\x2b\xcd\x5a\x05\xf4\x6a\xad\x52\x48\xf7\x17\x88\xf3\x18\x65\x22\x56\x22\xed\x5d\x8d\x46\x6d\x35\x9a\x2d\x4e\x94\xfa\x1a\xd9\x01\xd8\x1e\x0e\xfb\xfd\x67\x66\x23\x68\xe1\xa6\x64\xc6\xda\x94\xee\x5a\xa9\x4e\xd8\x32\xcf\xe5\x34\x29\x63\x22\x92\x7b\xa8\x10\x87\x04\x3a\x2b\x0d\x16\xaf\xe9\xd2\x9b\x80\xad\x1a\xbc\xfb\xaa\xb3\xeb\x1e\xf7\x4e\x7c\x15\xcf\x17\xba\x43\x67\x27\xbe\x67\xe2\xa7\x79\x68\x3c\xc6\x19\x66\x48\x50\x26\x69\x09\xf6\x4c\x39\x15\x45\x97\xd0\x99\x40\x67\x1e\x11\xf7\xb8\x77\x86\x85\x50\x8f\x0b\x66\x2e\x38\xb6\x45\x39\xa5\x68\x01\x74\xe4\xcd\x41\x89\xfa\x4b\x0e\xe1\x46\xbc\x0b\x32\x97\x67\x37\x9e\xa3\xb1\x5a\xab\xc5\x2a\x29\xc8\x01\xd3\x7c\x86\x8d\x19\xa1\xe4\x79\x36\x79\x3c\x4b\x2e\x6c\xb4\xe1\xf2\x94\xb2\xd0\x50\xb5\x61\x56\x2c\xa1\xa0\x34\xb2\x2d\x6c\xf3\xf4\xb1\x0f\xab\x43\x1f\xd3\xe0\x65\x58\x2c\x07\x50\xc8\xff\xa5\xeb\x01\x6e\x0b\xff\x7b\x41\x54\x1f\x8f\xee\xba\x22\x9a\x8d\xfe\xba\x25\x01\x37\x8e\xbf\x74\x49\x7c\x90\x3d\xfc\xef\x25\x51\x2c\x89\x92\x1e\x77\x58\x12\xcd\x46\x7f\xf1\x92\xb8\xf8\xf9\x9b\x27\xc0\xf9\xec\x9d\x63\xc1\x61\x25\xa8\xf3\x1c\x70\x95\x7d\x69\x73\xa6\x18\x1b\x17\x90\xf5\xf5\x06\xfe\x52\x4c\xe3\xa7\x7e\x74\x6c\xfe\xf0\x19\xba\x54\x9e\x0b\xea\x8e\x8d\xcb\xa4\xdd\xaa\x09\xdc\x8f\x26\x48\xa0\xd2\x8a\xaa\x30\x80\x05\x8c\xb4\x99\x04\x99\xa8\xa7\x7e\x0e\x06\x0b\xf7\x00\xfc\x3d\x20\xd5\x3d\x86\x2e\x95\x89\x9a\x3a\x65\x63\x9a\x83\x78\x21\x18\xfd\xb6\x86\x10\x56\x7a\x9f\xb8\xde\x98\x15\xc8\x62\x83\x80\xf9\x23\x3c\xdc\xe4\xd7\x5e\xd1\x49\xad\x73\xba\x14\x8b\xe5\x1a\x22\xb0\xd5\xb3\x43\xae\x69\xeb\xb9\x90\x68\x54\x37\x56\xdf\x67\x88\xc5\xda\x22\xe7\x07\x87\x7d\x34\x83\x77\x42\xb0\x72\xb0\x24\xa6\xb9\xd1\xd9\xe8\x31\x5e\xce\x30\xce\xe2\x39\xba\x06\x8d\x48\x8c\x18\xa3\x97\xf1\x7a\xfa\x1b\xe7\x98\x61\xbb\xab\x97\x08\x6d\xec\x8f\x99\xbe\xd4\xf2\x31\xc3\x38\xf7\xce\x96\xd3\x29\x66\xca\x8a\xe5\xf5\xee\xce\xce\xbb\x0f\x5e\xb0\x5d\xe6\x69\xf0\x54\xa2\x06\x0f\xe2\x7d\x15\xf7\x4b\x1c\xe9\x8b\x2e\xe0\x6b\x08\x0a\x76\xfa\xfa\xca\x88\xe7\xcb\x0c\x6c\xbb\xe5\x08\x94\xb2\x07\x38\x82\x30\x4c\x43\xe0\xf9\x82\x32\xc4\x48\x76\xed\x4d\x94\x9f\x0b\x70\x83\x19\xcd\x4a\x11\x17\xc4\xbd\x6f\xf8\xba\xe4\x9b\xd6\xa5\x69\x4c\xe7\x98\x7b\xcb\x85\x62\xa1\x6a\x90\x52\x34\x64\xdc\x0b\x32\xcc\x79\x28\x99\x11\xd3\x5a\x9f\x39\x52\xd2\x25\xf7\x8c\x92\x1b\x4f\x88\x80\x17\xc3\x0b\x72\x3f\x47\x39\x85\xea\x0a\x8a\x22\xcd\x7d\x31\x5f\x5e\x39\x26\x87\x5e\xe0\x78\xbe\xcc\x04\x59\x64\x64\x9d\x13\xa4\x9c\x98\xa1\xfd\xe0\x50\x82\x28\x5e\x36\xe0\xb9\xc1\x9b\xe0\x4c\x20\xc9\x4f\x15\x71\x35\x55\xc7\x08\xd8\xac\xe6\x97\x9a\xe2\x50\xa3\x2f\xc5\x29\x78\x48\xa7\x97\xde\x14\x71\xc5\x0e\x40\x48\xb6\x85\x63\x58\x50\x7f\x09\xe3\x69\xf0\x1b\xc3\xa7\x0b\xbe\x67\x76\xd6\x0f\xf5\x4f\x38\x8d\xb7\x06\x5b\x5b\x12\x85\xf2\xef\x02\x1b\xf8\x37\xce\xe8\xf8\x1b\x9e\xc8\xbe\xec\xc7\x9c\x62\x47\x17\x38\x06\xaf\xf7\x76\x0e\x95\x62\xe6\xed\xe1\x1e\xc0\xd2\x46\x01\x96\x4d\x02\x68\xea\x05\x43\x39\xcf\xb4\x37\x41\x90\x91\x6f\xd8\x3b\x67\x68\x31\x23\x63\x2e\xbf\x73\x09\xe4\xd3\xd1\x9b\xf8\xa9\x59\xbe\xdc\xe3\xcb\xc5\x82\x32\xe3\xc1\x42\xb9\x31\x9d\xc3\x9e\x42\x4f\xbd\xc1\xe5\xc6\x85\xaa\x42\xbc\x31\xca\xab\x06\x5c\x1e\x82\x43\x5a\x90\xb9\x56\x32\x15\x63\x51\x0a\xcc\xd2\xdf\xc4\xd8\x8e\x19\xfb\x62\x41\xc6\xdf\x94\x32\x41\xe1\xb7\xcc\xc1\xec\x40\x0a\x0f\xea\xa1\x58\x1e\x8c\xdf\xa4\xd8\x81\xf3\x09\x06\xf5\x3d\xd4\xce\xf0\x39\x1a\x5f\x7b\x56\x96\x16\xbd\x72\x40\x49\xae\xc2\xa7\xde\xdd\xb2\xc5\x7e\x68\x96\xdb\xb9\xe7\xa9\xcc\x60\x2e\x0b\x17\xd1\x34\x6f\xd1\x96\x5e\x2c\x1e\xf3\xbb\x99\x3a\xfa\x75\x47\x19\xf0\x9d\xe0\xe2\x3a\xc3\x7c\x86\x95\x9b\x87\x79\x5e\xa9\xbf\x79\x17\xb1\xed\xed\xde\x63\xc9\x36\xee\x8c\x02\x6c\xf3\x8c\xe4\x38\x2e\xdf\xfd\x96\x5c\x9e\x38\x3b\x87\x87\x8a\x13\x81\x61\x9e\xb8\xce\x0c\xdb\x2b\xc2\x62\xfb\xa7\x6e\xb7\xe4\x22\x98\x4a\xaa\x1d\xa5\x95\x23\x4d\xe0\x72\xd4\x2e\xea\x3a\xfd\xbc\xfb\x63\x9a\x73\xc1\x96\x63\x41\x9d\xce\xd9\xb2\xcd\xf2\xec\x70\x79\xd6\x88\x63\x48\xcf\x38\x66\x17\x98\xf1\xaf\xe9\x77\x15\xd0\x04\xea\xf5\xd1\x64\xf2\x4a\xdb\xc8\x55\x9c\xc8\x55\x24\x97\x1c\x5f\x7a\xa6\x6a\x11\x6b\x8b\xe9\x48\x85\x0a\x40\x89\x30\x3e\x66\xa7\x69\xb3\xfc\x98\x9d\x6a\xdf\xee\xd0\xea\xd7\x0a\x30\xb3\x3c\xe3\x63\x46\xce\xea\xe1\xaf\xf5\x34\x57\x70\xbf\xb9\x09\x6a\x25\xc7\xf8\x34\x3d\x3e\xd5\xf1\x61\x2a\xc5\xfd\xc5\x92\xcf\xda\x3a\x5d\xe6\x6d\xdd\x5a\xf1\x69\x2a\xe0\x20\xfc\x0f\x51\x61\x64\xfc\xb7\xf9\x05\x08\x62\x7c\x09\x13\x0a\xc1\x7c\x0a\x97\x79\x13\x74\x46\x40\xc8\x20\xf6\x7c\xa0\x1b\x7d\xa4\xc2\x2b\x7a\x9d\xa8\x36\xa4\xcf\xe5\xee\xc5\x01\x33\xf1\x77\xea\x98\x2e\x96\x67\x19\xe1\xb3\x0a\x96\x11\xa9\x64\x33\xa8\xe2\xc9\x20\x30\xf6\xf1\xa9\x5c\x2b\x63\x24\x02\x16\x86\x11\x91\x65\x2f\x99\x22\x09\x09\x13\x96\x1e\x93\xd3\x30\x62\xce\x34\x03\x1e\x0e\x48\xf8\x9d\x3c\x67\x56\x88\x39\xab\x1a\x8e\x06\x11\xe9\x0d\xc3\x88\x1d\x93\x53\xa0\xef\x20\x1a\x84\x2d\x51\x0b\x2e\xc7\x7e\xa4\x83\x2c\x1f\xd0\xcb\x1d\xe0\x2b\xea\xe7\x21\xf9\x03\x17\x3f\x8e\xf0\x95\xd8\x2e\x5e\xac\x21\xc6\xc1\x21\x1c\xea\xcd\x88\x46\xf2\x8e\xb0\xcd\x18\xba\x4e\x8f\x4f\x75\x54\x20\xb0\x43\x83\x48\xe7\x5f\x53\x7c\x73\xf3\x54\xc7\x24\x16\x15\xa0\x7a\x2d\x57\x7b\x32\x19\x32\x0c\x03\x09\xed\x80\xd5\xfb\xda\xad\x45\xb7\x54\xf8\x07\x72\xb0\x76\xad\x03\x7a\xf9\x91\x4e\xf0\x57\x08\xfc\x6c\x7f\x70\x97\xee\x4d\xa7\x1c\x0b\xbb\xfc\x92\xb2\xc9\x2b\x86\xd1\xb7\x0f\x48\x8c\x67\xef\xf1\x54\xb4\x7e\x3c\x80\x6c\x1a\x6d\x5f\x3f\x80\x7a\xb3\x08\x40\xad\x08\x68\xad\xa4\x73\x0c\x11\xfb\x1d\x81\x2c\xd5\x00\x21\x9c\x7f\x83\xa2\x51\x95\xea\x7a\x4d\x84\x6d\x3d\xa8\xe4\x1e\x6d\xc1\x32\xeb\x60\xda\xa0\x40\xfe\x90\xd6\x88\x9b\x16\x76\x4e\x00\x1c\x8b\x9d\xb2\x4e\x73\x09\x55\x17\x8c\x6b\xca\x75\x95\x17\xa9\xc9\xf1\x27\x41\x56\x6a\x04\xae\x56\x8c\x5e\x46\x38\x1e\xba\x89\x03\xc7\xf2\x01\xbd\x6c\x1b\x96\xf9\xce\x83\x61\xa8\xe3\x7c\xb5\xc2\xe0\xad\x11\xe6\x4b\x0a\x6b\xc6\x32\x88\xb0\x1b\x1f\xed\xee\x5b\xc1\xa8\xb1\xc9\x4a\x28\x6b\xc0\x71\xc4\xb1\x2f\x01\xe9\x6a\x90\x54\x4e\x07\x9f\x2b\x3e\xb6\x81\x5e\xd0\x45\x07\xc1\xd4\xd7\x2e\x72\xe9\x1a\xeb\x13\xcb\xb9\x48\x63\xdc\x8a\xdf\x92\xcf\x56\xd0\x0f\x38\x6e\x77\xf3\x2a\x7e\xaa\xf8\x4e\x64\x52\xa2\x5e\x15\x91\x22\x6a\x7b\x63\x8c\x92\x7f\x8b\x15\x80\x78\x3d\x6f\x5e\x11\x66\x73\x30\x22\xcf\x85\x89\x9c\x49\x7a\xbd\xb0\xa5\x93\x1e\x91\xdd\xc8\x53\xc6\xd9\x13\xc3\xf2\x5e\x56\xa7\x5d\xe7\xdc\xe0\xa8\x7d\xa2\x0b\x70\x75\xc4\x57\x40\x6c\xa5\x03\x1c\xef\x48\xe0\xea\xa6\x6f\x48\x55\xb5\xfd\x2f\x91\xf8\x33\x0f\x08\x27\x72\x60\x1e\xb3\x63\x40\x37\x62\x62\x8e\x1c\x5d\xeb\x04\x5b\x47\x1f\xde\x17\x49\x0b\x6a\x15\x14\x01\x8b\x83\x51\x1e\xe2\xb9\x72\x5a\x9a\x66\xf4\xd2\x0f\x5d\x18\x0e\x3a\x38\x67\xcb\x47\x03\x30\xdd\x18\x46\x3a\xee\x65\xf5\x94\xee\x13\xae\x6d\x09\x83\xf0\xa5\xef\x27\xa2\x3f\x85\xf3\x60\x46\x04\x06\xab\xc3\xe6\x01\x15\xda\x21\x05\xeb\xd0\x72\xc8\x0f\x31\xea\xf8\x26\x51\x71\x7d\xe6\xd7\xf9\x78\x07\x8c\x94\xab\xa1\xff\x6b\xd5\x94\x28\xbf\x43\x73\x81\x48\x8e\x59\x80\x43\xe7\x04\xa0\xc5\x02\xe7\x93\x9d\x19\xc9\x20\x4b\x5c\x63\x15\x30\x27\x0e\x06\x45\xb2\x12\x43\xf7\x4a\xa1\xf3\x39\x11\xef\x49\x8e\xf7\x0c\xdd\xdd\x0b\xb8\x40\x93\x63\xd1\xba\x06\x4c\xce\x12\xe7\x71\xdb\xb2\x4d\x2a\x39\x64\x1a\x32\xc4\x77\xfc\x22\x75\x7e\x79\x19\xc8\x7b\x0e\xcd\xb0\x09\xd5\x78\x40\x2f\x3d\xba\x04\xc3\x88\x33\x88\x62\xa0\xc2\x67\x9a\x35\xd4\xe0\xd8\xc3\x30\xc1\xcf\x07\x9b\x9b\xeb\xc3\x91\x7b\x56\x63\x63\x2f\xae\x06\x26\x4a\xb0\x68\x02\x91\xa2\x63\xb3\xb9\x44\x44\xb8\x10\xe9\x04\x33\x70\x8a\xa1\xf6\xe6\xb1\x17\x64\x31\xf8\x63\x7c\x1a\xf1\x94\xf5\xc1\xa3\x12\x96\xda\x88\xdf\xdc\x04\xb2\x88\x5e\xe6\x98\x99\xfc\x66\x7a\xcd\x4a\x49\x58\xce\x7a\xe0\xfb\x61\xc4\x2a\x2b\x94\x87\x6a\xc9\xd3\x74\x00\xb7\x3e\x66\x22\x6a\x56\x56\xcb\xcb\x82\x60\x2e\x0e\x10\x37\x39\xc6\xe6\x66\xc0\xd3\xfa\xd2\x8f\xe8\xdd\x80\x84\x89\x8b\xb7\x32\x27\xc5\x80\x1f\xcb\x35\x38\xe2\x23\xc5\x1e\xf3\x54\xc4\x34\x42\x69\xfd\x22\xd0\xcf\xe9\x04\x83\xd4\x19\x70\x15\xe9\x95\xf7\x73\x7c\x25\x0e\xc9\x99\xbc\xe7\xdf\xdc\xa0\x17\x79\x25\x64\xb2\xbd\x79\x79\x74\x41\xc9\x24\x70\x31\xf1\x70\x44\x7b\x29\x8a\x78\x5a\x01\xa7\xb2\x48\x78\x66\x4d\x5c\x22\x96\x07\xfe\x76\x69\xaa\x0e\x4e\xdb\x4a\x91\x6b\x7c\xeb\x3d\x79\x2f\x53\x31\x0d\xd4\xfe\xf3\x5b\x36\xe3\x75\x3e\x2e\xf2\xc3\xed\x20\x86\x6b\xf2\x2f\xbb\xfe\x8e\x8b\xa4\x71\x41\x63\x32\x1c\xf4\xbe\x1d\x43\x78\x7b\x1c\x2a\xbd\x41\xb3\xc7\x45\x46\x84\x22\x84\xb5\xef\x99\x49\x69\x22\x0f\x2c\x9a\x63\x58\x69\x1b\xc3\x30\xa2\x29\x06\x46\xa6\xc3\xe1\x8d\x2a\xbf\xdc\xf3\x72\xa8\x93\xea\x45\x83\x88\x85\x11\xaf\x34\x10\xfd\xcb\xb1\x09\x04\x4b\x1b\x9f\x37\x37\x21\x98\x30\xce\x01\x41\x2d\xdf\xbc\x02\xcb\xcc\x80\x47\xd8\x9e\x93\x30\xaa\x60\x72\x73\x53\x69\xa9\xce\x47\xb5\x3b\x5a\xa4\xb0\x39\xba\x3e\xc3\x3b\x19\x59\xec\x2c\x99\x6c\xe7\x3a\x9c\xbb\xd6\x9d\x63\x59\xab\xe0\xe1\xcf\x9b\x7c\x25\xec\xba\xb3\x34\x6a\x9b\xa0\xba\xeb\x5f\x62\x5c\x8c\x6c\x05\x4f\xb2\x33\xd0\x89\x8e\x2d\x3d\xfa\x33\x50\x59\x97\x90\x8a\x8a\x8e\x55\xfd\x1c\xc7\x43\x43\x16\xab\xea\xda\x6b\xb1\xb1\x71\x06\x8e\x4e\x7a\xc3\xb0\x8c\x50\xcf\x5c\x2c\x34\x6a\xf2\x43\x7b\x4d\x4a\xb6\xc5\x2a\x6b\x8f\x87\xab\x9a\x88\xe7\xcd\x43\xec\xae\x24\xaf\xf0\x58\xd7\x5c\xbb\x39\x81\xda\x5e\xf5\xe8\xff\xb8\xa2\xab\xb2\x69\x26\x4f\x26\x9b\x15\xfc\x88\x60\xaa\xcf\x29\xc5\x06\x84\x4a\x3c\x5a\x13\xc2\x6a\x0b\xb0\x97\xd2\x91\x3e\x0a\x1a\x33\xd6\x7d\x32\xb0\x30\xce\xe5\x8e\x44\xcf\x07\x6a\x4c\xb3\xb4\x29\x9f\xc6\x28\x2c\xb2\x5e\xd4\x04\xb6\x65\x3e\xc1\x4c\xe2\xaf\xd3\x67\xd6\xe5\x39\xc1\xc8\x37\x2c\x66\x8c\x2e\xcf\x67\xee\x2a\x65\xe8\x15\xf7\xf7\xcb\xb1\xa4\x9a\x49\xe4\x5e\xfb\x88\xf8\x98\x10\xf5\x5d\x65\xe8\x71\x55\x12\x24\xc3\xaf\x91\x40\x21\x99\x06\x0f\x36\x52\x06\xc3\x3f\xba\x5e\xe0\xcd\xcd\x80\x95\xf0\x99\x0d\x8d\x41\x2b\xf3\x37\xa8\xec\x01\xec\x6b\x3c\xa6\x0c\x1e\x26\xca\xf2\x72\x04\x20\xba\xea\x98\xe1\xd9\x2a\x19\x65\xe6\x16\xab\x2b\x0c\x3d\x8b\x58\x95\xa1\x37\xa5\xec\xd4\x7d\xd5\x4a\x63\x79\x44\xcf\xd4\xa9\x5c\x59\x93\x29\xef\xa5\x33\x95\xf2\x00\xa7\xb3\x1e\x1e\xa1\x74\x70\xdb\x32\xbd\x60\x7e\x88\x79\x79\x17\x60\x45\xf6\x9d\x2a\xcc\x41\x9a\xa2\x97\xbc\x87\x93\x41\x9a\xe6\x2f\x71\x8f\x27\x5d\xac\x86\x45\x83\x28\x0f\x7b\xb8\xd7\x5d\x29\x0f\xdb\xa4\x90\x5e\x4a\x61\x49\xca\xde\x14\xb9\xc7\x29\xeb\x2f\x18\xbe\x20\x74\xc9\x0d\xdf\x20\xd3\x60\xac\x95\x5d\xab\xc6\x35\x2e\xc6\x35\xb6\xc7\xd5\xab\xea\xd2\x14\xc9\xc7\xad\xb2\x51\x75\xcb\x56\x20\x69\xf1\x73\xb9\xee\x8d\xab\x29\x98\xb9\x57\xc8\x32\x72\xdd\xbd\x96\xad\x28\x52\xc8\x3a\x25\xa7\x4b\xd1\x6d\x92\x56\x56\x98\xa4\xd9\x64\x4d\x9a\x4d\x0a\x9a\x4d\x2a\x6b\x01\xf7\x2a\xbf\x9b\xd8\x4d\xd6\x24\x20\x0e\xc3\xd1\x5f\x40\xb0\xc9\x9d\x08\xd6\xc1\x3c\x97\x61\x78\xab\xce\xa1\x42\x5e\x84\x55\xbb\x3e\xd2\xeb\x4c\xef\x0a\x06\xb0\x74\x6d\x7f\xea\x3c\xcc\xe4\x11\x03\x2e\xac\x2d\xe7\x19\x71\xdc\xf6\x3a\xa4\x1e\xf5\x7a\xa4\xe8\x7e\x8c\x4f\x8b\xc4\xbf\xb5\x63\x6b\x5d\xd6\xd2\x90\x71\xf4\x32\x6c\x91\x65\x2a\xa9\x12\xaa\xe2\x7d\x9a\x62\xc7\xc5\xa6\x60\x1d\xac\x31\xd7\x8d\xe3\x94\xe9\xa9\x99\xe0\x0c\x0b\xbc\x33\x43\x8c\x07\x1f\x90\x98\xf5\xe7\x24\x0f\x58\x44\xc2\xd0\x4e\xf1\xa9\x73\x43\xb5\x08\xd1\x16\x0c\xc7\x73\x64\x43\x82\x60\xae\x33\x9c\x77\x49\x9f\x90\x1b\x05\xa7\x05\x7e\xd8\x21\x60\xf2\xb0\xd8\xac\x83\x42\x7e\xa3\x51\x1e\xa1\x14\x8f\xe4\x9d\x42\xa5\x0c\xa2\x9d\x42\x68\x18\x89\xf5\xa5\x49\xb8\xd9\x74\x32\x78\x11\x31\x50\x54\xc4\x29\x8d\x83\xbc\xbb\xe7\x30\x62\xcf\xe9\xe6\x66\xbe\xb9\x49\x0b\x96\x3f\x5b\x6b\x97\xf9\x9e\x1f\x8e\x44\xeb\x95\x69\x16\x89\xda\x06\xab\x0c\xd1\xf7\xa3\x3c\x1d\x48\x1c\x87\xb7\xea\x54\xaf\x54\x1f\xc9\x03\x68\x73\x53\x6c\x34\xe6\x71\x73\x53\xb4\x5d\xb6\x40\x21\x92\x45\x4c\x1d\xbb\x0f\x9a\x6d\x2d\x01\x65\xa3\x6b\x0b\x98\x93\xaf\x5e\x07\x0e\xbe\xfa\x69\x18\x36\xcf\xb1\x7a\x15\x17\x27\xe9\x98\x95\x66\x17\x45\x42\xd0\x71\x85\xa6\x8e\x9e\xad\xcf\x4e\x3d\x6c\x79\xf1\x5a\xba\x2e\x19\x2b\xb5\x3f\x2b\x35\x96\xcb\x75\x59\xe9\xe0\xb6\x5d\x86\x57\xa0\xc6\x45\xba\x70\xd4\xf6\xf8\xf7\x9e\xe4\xf8\x50\x20\x78\x88\xf8\x5a\xe1\x02\x90\xb5\x15\xd7\x29\x09\x97\xfc\x6a\x51\x7f\x86\x78\xc7\x9d\x21\xc4\x69\xa3\x49\x25\x4b\x64\x1b\x5a\x92\x6a\x4d\x94\x14\x73\xf2\xfd\x91\x14\x92\xa5\x18\x54\x39\xd1\x71\x37\x32\x1a\x1b\x7b\x9f\x18\x76\xdc\x86\xc9\x6f\x07\xf4\x72\x3b\x1f\x63\x2e\x28\x73\x11\x68\x73\xd3\xff\x2d\x3e\xd8\xfb\xe2\x6f\xa4\x12\x32\x9d\xe0\x8f\x68\x8e\xf5\xa8\x8b\x6d\xb6\x72\xc0\x86\x75\x7e\x21\x62\x66\x14\xc8\xd5\xfc\xe0\x11\xd3\x69\xf4\x34\xbb\x8c\x95\x62\x52\x33\xe0\x3a\xa6\xda\x20\x62\x83\x97\xb5\x0b\xe6\x9a\x0e\x46\x7c\x23\x35\x8c\xb5\xd7\xb5\x93\x70\x18\x6d\xac\xa0\x29\xa4\xbb\xb2\x37\x55\xd1\x61\x8d\xd4\x66\x2d\xd2\x9e\xc1\xd8\x1e\x34\xc9\xe5\x0a\xd4\x03\x5d\x87\x4a\xaa\x81\x8b\x44\x36\x7f\xdb\x28\x4f\x5c\x95\xd0\xd4\xfe\xf8\x32\x1e\x26\x1d\xb8\xd8\x55\x01\xf8\x0a\xc4\xed\xea\x83\x52\x19\xc1\xd3\x41\x24\x69\x4e\x9f\xe3\xfe\x58\xee\xcb\x8f\xe0\xdf\xa3\x9f\xf5\x68\xaf\x67\xb4\xa5\xf6\xe7\x63\x0a\x46\x30\xb9\x95\x3d\x8e\xf7\xd8\x88\x77\xce\x56\x6e\xf6\x7b\x3c\x6c\xa3\xa0\x04\xbe\x9d\x4f\x14\x0f\x69\x5f\x6c\xe5\xea\x16\x2f\x3a\x97\xc7\xc8\xe4\x09\xfb\xc1\x35\x22\xe2\x15\xcb\xaf\x65\x11\x99\x99\x68\x8c\xa7\x9c\x8e\xd6\x55\xd4\xd2\xa6\xe5\x19\x96\xa5\x83\x11\x73\x4e\x1d\x33\x53\xc7\xab\x53\xc7\x4e\xa3\x4e\x71\x45\x29\xbd\xc5\xf3\x94\x6a\x3a\xf8\x87\xfb\xdb\x1f\xfd\x34\x4d\x79\xc1\x40\x5e\xae\x1a\x20\x8f\x44\x98\x1c\xf3\x48\x9c\x4a\x1a\xd2\x5b\x6b\x91\xb7\x3d\x1c\x1d\xa0\xfc\x1c\xd7\x76\x0c\x29\x95\xc7\xad\x3d\x16\x4b\x44\xa9\xf7\x8b\xa4\xc3\xdc\x64\xb3\x5e\xab\x25\x09\x47\xaa\x19\x05\xed\x06\xc7\x02\xce\x9d\x80\x1f\x0f\x4e\x23\x7e\x3c\x3c\x0d\x23\x28\xdd\xcd\x27\x01\x95\x65\x54\x96\x85\x6e\xed\x97\xf2\x02\x2c\x74\xef\xf5\x74\x69\xc5\xb5\x01\xe6\x1b\xc6\xbd\x2d\x82\x01\xe0\x4e\x36\x37\x37\x48\x5f\x50\x93\x37\xd5\x64\x94\x3d\xe1\xf7\xc3\x8a\xf6\xac\x7e\x3a\x06\x6e\x46\x4b\xfa\xe0\x6d\x58\xc8\x75\xa1\xb2\x44\xab\x53\xd5\xc9\xe0\xa5\xc4\x5e\x6b\x6e\x0a\x14\x11\x01\x56\x3c\x74\xd0\xba\x1d\x9e\x94\x24\x2c\x68\xd8\x4c\x48\x01\x8b\x16\xcf\x33\x33\xa7\x49\x54\x84\x5c\x5f\xc0\x1e\x2a\x9a\xb9\x3e\x29\x63\xa8\x28\xab\xd0\x0d\x8e\xef\x80\x85\xd1\xd8\x7e\x37\x90\x24\xcf\xa2\x41\x44\xc3\x68\x69\xa7\x11\xcd\x7b\xb3\x9e\xff\x6f\x7e\x18\x4d\xd2\x71\x9f\x63\xc4\xc6\xf2\x16\xab\x6e\x10\xf1\x30\x4d\x27\x37\x37\x93\x17\x26\x7f\xfa\xd7\x26\x44\x1e\x55\xaf\x77\x59\x18\x46\xd3\x4a\x9e\xd2\xdf\xfd\xde\xac\x87\xc2\xe8\x3c\xfd\xaa\xa7\x7c\x0a\xf0\xcf\x15\xcc\x45\xca\x7b\x55\x10\xe7\xc7\x83\xd3\x70\x24\x3b\x5f\xdc\xdc\x2c\x9e\x53\x63\x0f\x59\xec\xa4\x80\x45\x93\x68\x11\x91\x30\xc2\x7d\x34\x99\x40\x61\x40\xe4\x92\x55\xff\x6b\x5a\xe9\x29\x03\x3c\x65\x76\x58\x35\xce\xd3\x56\x78\x34\xcb\xf6\x29\xab\x3e\x23\xb9\xcc\x47\x55\xee\x9e\xc2\x5c\x6c\x9f\xd1\x0b\x32\xc1\xac\xb4\xb0\x32\xe6\xda\x60\x84\x66\x99\x9c\x0d\x07\xd1\xd0\x3c\x79\xb2\x65\x26\x9b\x94\x46\x11\x85\x43\xad\x69\x51\x20\xd4\x2f\xb6\x9a\xdd\xf3\xb8\x78\x7c\x91\x3b\x7f\x07\x8d\x67\x15\x1b\x0b\x23\xf4\x55\xbf\x7f\xbf\x55\x5f\x33\xc4\x85\xda\xd7\x40\x6e\xbb\x61\xf9\x49\x59\xb8\x39\x71\xdc\x05\xcb\xf4\xc9\xd7\x74\x63\x50\xb6\x02\xbb\x41\x30\x35\xd3\x85\xca\xca\xff\xcb\x0c\xe3\xec\x43\xe1\x54\xf0\x35\x1d\x96\x4d\x8e\xe8\x72\x3c\x2b\xd1\x22\x5c\x8d\x1a\x4f\x76\xf3\x49\x01\x5b\x8f\xd4\x04\x4a\x51\x2b\x64\xff\x2a\x1d\x3e\xd6\xdf\x05\xcb\x3e\xab\xc4\x44\xc6\xc4\x61\x42\x2e\x6c\xbc\x8d\xd5\xa3\x5d\x26\x94\x95\x27\x2f\x7b\xaf\x58\x0e\xab\xa2\xd7\xbb\xaf\x3e\xfd\xfa\x35\xdd\x30\x47\x7a\x63\x46\x9a\x16\x51\xbc\xa8\x55\x2c\x08\xae\xb9\x98\xd5\x3b\xce\x27\xd5\x02\xc2\x3f\x18\x83\xec\x4a\xe9\x8e\x7e\xc1\x9c\xd8\x76\x32\x0d\x34\x2c\xee\x3c\x25\xf9\xe4\x4d\xf1\x30\xde\x6a\xde\x84\xed\xd7\x73\xa2\x24\x09\xc9\x9f\x44\x61\xd5\x4b\xca\x94\xea\xc0\xba\x9b\x87\x70\x85\x63\x57\xfb\x0d\x88\x3e\xad\x58\xa1\x19\xbe\x25\x29\x71\x49\x13\x6b\x8e\x8b\x5f\xe7\xe3\xe6\x33\xa3\xec\x7a\x54\xd8\xf3\x8a\x20\xfc\x8e\x4b\x72\xf3\x48\xff\x90\x48\xa7\xac\x8f\xf2\xf1\x4c\xdd\xea\xcc\x07\xc5\x9c\x8b\x4f\xea\x67\x84\xcd\xf4\x50\xf5\xa7\x6e\x3e\xa5\xe3\x25\xd7\xad\x0b\xc6\x6e\xca\xd5\xaf\xdb\x02\x15\x52\x45\x85\xd6\x50\xb1\x61\x55\x31\xb1\xa0\x95\x88\xf0\x0a\x22\x95\x71\xd8\x98\xd8\xa3\xb8\xb5\xe6\xc6\x5a\x93\xf2\x84\x30\x37\xe4\x20\x04\x53\xd9\x82\xbb\x94\x5a\xb9\x3f\x67\xc5\x6e\xb0\x9b\x1b\x66\x97\x44\x1b\xf5\x3a\xe5\x92\xe4\x95\x81\x8d\xf8\xe6\xe6\x46\xe0\x33\x7a\x09\x69\x51\x7d\x92\x7b\x3c\x1c\x85\x3c\xe5\xf6\xc5\x8e\x4c\x03\x5e\x42\xa0\x36\x5d\x47\xb4\x01\x80\x86\xa3\x90\xa6\xb4\x06\x80\xc2\xd2\x07\x4e\x0e\x35\x9f\xd3\xe2\xcf\x50\x04\xa5\xf2\xa2\xac\xf1\xc2\xaa\x41\xac\x1a\x56\xef\x69\x65\x30\x61\x75\x66\x9e\x57\x26\xf9\xa5\x08\xc2\xc4\x80\xb1\x65\x83\xda\x86\xe2\xd1\x71\x65\xe6\xad\xde\x4e\xd5\x59\x9d\xeb\xd4\xaf\xf2\xfc\xd8\x6d\x24\x8f\x07\x7b\x1c\x4f\xee\x22\xf0\x24\x2b\x76\x98\x1f\x8e\xf2\x2a\xba\x06\xa3\xdb\xc6\x34\x97\x34\xd8\x48\x4b\x22\x54\x6d\x3c\x4c\x46\xf3\x22\x3e\x04\xa0\xe9\x11\xae\xbc\x7b\x29\x15\xca\x29\x17\x79\x80\x2b\x9d\x40\xda\x65\x6b\x34\x85\x18\x1e\xae\x00\xac\x30\x5e\x0d\xb9\x1c\x99\x05\xba\xc6\x71\x6c\xc5\x2c\xbc\xe5\x39\x52\x0c\xc3\xa1\xa2\x59\x3a\x99\x32\x34\xc7\x5f\x53\xec\xd4\x39\xed\xaa\xe8\xef\x81\xaf\xaa\x19\xab\x42\xdd\x48\x3f\x10\x8e\x39\x97\x62\x5a\xea\x9f\x51\x36\xc1\x2c\xf1\x06\xa3\x19\x9c\xb8\x89\x37\x1c\x0c\xfe\x7d\x64\x0c\x62\x12\x0f\x9d\x71\x9a\x2d\x05\x1e\x41\x04\x5a\xf5\xd9\x8f\xfc\x39\xfd\xe3\x6d\x9e\x63\xa6\x4e\xeb\xdf\xe4\x12\x57\x56\xfe\xe6\xbd\xbf\xe8\x8f\x8d\x53\xff\x5f\x7d\x10\x95\x2c\x65\x97\x5d\xa7\x86\xe1\x58\xa9\x74\xbe\x28\xa7\x01\x34\x99\xec\x5e\xe0\x5c\xbc\x27\x5c\x60\xd0\x9e\x32\x0c\x51\x0d\xf5\xb9\x99\x1f\xc0\xcf\xaf\x76\x66\xc3\x91\xa5\xc8\x2e\x8f\x5f\x57\x27\x86\x76\x23\xd1\x3f\xa3\x93\xeb\x3a\x75\xe6\x88\x9d\x93\x3c\xf1\x06\x8b\xab\xd1\x02\x4d\x26\x24\x3f\x57\x3f\x2a\xc4\xb2\x28\x33\x32\x57\xdf\xc4\x9b\x91\xc9\x04\xe7\x23\xa5\xa5\x4b\xbc\x0b\xc4\x82\x38\x06\xc1\x2f\x56\x01\x87\x74\xdc\x7c\xe8\x32\x1c\xc5\x97\xf8\xec\x1b\x11\x31\x38\x56\xa9\x1d\x92\x40\xae\x91\x51\x3c\xa7\x7f\x38\x8a\x7d\x5b\x4a\x30\x54\x2f\x46\x6b\x0f\x47\x63\x7e\x44\x17\xe9\xca\x4a\x2a\x5d\x67\xea\x8f\x51\x36\x0e\x6c\x9c\xa5\x60\x29\x09\x1d\xab\xa1\x87\xde\x2f\xde\x83\xd0\x2f\xcc\x42\xeb\x8b\x0f\x80\xfa\xe1\x88\x54\x75\xd7\x57\xb1\xdc\x1e\xdf\x3d\x93\x9b\x22\xf1\xce\x32\x3a\xfe\x36\xf2\x3c\x43\xd1\xae\x3e\x47\x2a\x4b\x4c\xbc\x56\xdd\x5b\x3f\x12\xfd\x19\x46\x93\xca\xba\x23\x7a\xb1\x49\x7a\xee\x70\xfe\x9e\xe4\xdf\xbe\x36\xb1\x87\x80\xb6\x8e\x9a\x35\xd3\x4d\x86\x33\x88\x97\x63\xbc\xe7\x6a\x4d\x94\x1e\xb3\x8d\x34\x2e\xec\x1a\xad\xc3\x42\x98\xc5\x38\x77\xc0\xba\x8a\xd5\x27\xbf\x5a\xb1\x86\xa7\x5e\xec\x78\x42\x84\x14\x9d\xfd\xc8\x17\x6c\x89\xbb\xdb\xf0\x05\xce\xb2\xf1\x0c\x8f\xbf\xf9\x91\x0f\x5e\x87\xdd\xf5\xd1\x52\xd0\x31\x9d\x2f\x32\x0c\x71\x20\xe8\x74\xba\x4e\x7d\x08\x91\xb5\x76\x75\xb4\x10\x28\x53\x1e\x4d\x90\xc4\xb0\xb3\x05\xa3\x6a\xa4\xf8\x4a\x9c\xd1\xab\xee\xba\x02\x9d\x81\xe4\xe9\x47\x7e\x3c\x6c\x54\xad\xf2\x84\x31\x62\x58\xa8\xd8\xa3\x89\xf2\x87\x55\x67\xfa\xa8\xb6\xa4\xad\xf0\xb1\x49\x19\xcf\x75\x54\x84\x65\x4d\xbc\xe1\xa3\xc5\x95\xfa\xad\x5d\x60\xe3\x8c\x9c\x23\xb1\x64\x98\xeb\x3d\x5e\x61\x33\x86\xb5\xc4\xd7\x89\xf6\x61\x1e\x79\x45\xd9\x55\xc1\x70\x2e\x67\x44\xe0\x18\x3a\x4b\xbc\x05\xc3\x55\xf6\xb4\x14\x72\x07\x29\xf0\xde\x06\x99\x2f\x28\x13\x28\x17\x72\xaf\x00\x33\x68\xac\x46\x4d\x85\x1a\x4d\x9a\x5c\x59\x07\x57\x32\x5c\x59\x1d\x6f\x15\xae\xbc\x0a\x02\xf8\x6d\xd7\x00\xc0\xfd\xed\x4e\x50\x84\xbc\xd5\x81\x08\x59\x80\x52\x17\xbd\x3b\x03\x99\xd3\x0b\xfc\xb3\x30\x70\x3e\xf9\x59\x10\x63\x94\x8f\x2d\xba\xdc\x1d\x0a\x24\x09\x30\xcd\x77\xe8\xe2\xfa\x4e\xad\x95\x6b\xb3\x69\x0e\x37\xdd\x3b\xb5\x9f\x30\xba\xf0\x23\x67\xbe\xe6\x05\x03\x37\xfe\xc2\x15\x21\xda\x18\xde\x86\xc5\x42\x6c\x40\xfa\x86\xaf\x27\xf4\x32\x2f\x70\x79\x45\x27\xd7\xef\xf0\xf5\x6b\x7a\x99\x3b\x30\x62\x4a\xf7\xc0\x1d\x4c\x73\x42\x2e\xfc\x7a\xad\x3e\x99\xa4\x4a\x2d\x93\x30\x7a\x19\x4b\x59\x8d\xfb\xf5\x3a\x35\x4e\x50\xdb\xf0\xa5\xcc\x34\x25\x57\x78\xd2\x14\x05\x9c\x47\xbc\xe4\x4f\x8e\x23\x1e\x8a\xfd\x1a\x71\xeb\x7b\xb3\xc0\x4c\x8f\x46\xd0\x85\x92\x50\x5f\xa1\x73\xf7\x61\x01\x5f\xe3\x33\x74\xee\xbb\x9a\xac\x18\x60\x63\x40\x6b\x9d\xc3\x0d\x7e\xa4\x47\xa5\x42\x8c\xd8\xf8\x36\xf1\x29\x8d\x9a\x4b\x74\xdf\xd0\x6c\xe2\x1c\xdc\x94\x66\x13\xbf\x56\xcf\x9a\x56\x41\x17\x50\x25\x9e\x52\x26\xa5\x90\x32\x47\x89\x5f\x6b\xd3\x4d\x85\xc6\xaa\x68\x4c\x8b\x01\x14\xda\x03\xd5\x68\x57\x3a\x6a\x0c\xcf\xaa\x6a\x61\xae\x4a\xbb\x91\xef\x40\xc7\x02\x1a\xda\xba\xb1\x6d\x86\x51\xf7\xee\xb0\xea\x59\xe8\xa8\x52\xc4\x30\xf2\x9b\xd5\x6a\xb4\x83\xf8\x30\x24\x23\xe2\xda\x2c\x9a\x55\x6b\xda\x02\x66\x3c\x82\xfc\x99\x10\x8b\x6a\xda\xcb\xad\xc1\x60\x70\x9f\x5f\x9c\xfb\xda\xd0\xf9\xc2\xac\x1f\x79\x4f\xea\xba\x16\x7d\x3c\x0c\x58\xe4\xcb\x96\x66\x8c\x17\xe7\xf6\xe0\xfe\xa0\x74\x1e\xab\x90\x49\x94\xf9\x56\x95\xaa\xc0\x70\x35\xcf\x72\xee\x17\x86\x6e\x8e\x1a\x3a\xff\x85\x1f\xf9\xc3\xfe\xb0\xd2\x59\x8d\x44\x8e\xab\x96\xa0\x0b\x79\x23\xcb\xf0\x54\xc8\x7f\x5b\x89\x08\xbc\xf9\x08\xb1\x73\xec\x92\x33\x25\x0b\x81\x59\x0a\x9b\xb5\xad\x11\xdb\xc9\x59\x62\x01\x9f\x1d\xe0\xd7\x11\x98\xaa\xf5\x57\x8e\xb2\x10\x6e\x16\x57\x85\x8c\xb2\xb8\x32\xa3\x5e\x5c\x8d\x74\x14\x22\xf5\x83\x2e\xd0\x18\x28\x30\x70\x61\xa7\x25\xdc\x5d\x2d\xe1\x16\xea\xdb\xd6\x65\x66\xb7\x76\xa1\xef\x38\x8c\xf1\x95\x78\x9b\x2f\x96\x86\x3a\x2a\x58\xd7\x7e\xd9\xe8\xc8\x54\x70\x9d\x46\x70\x49\x2d\x3c\xc8\x9a\x37\x7f\x8e\xc5\x1b\x9a\x8b\x37\x20\x2f\xba\x3c\x4c\xab\xd2\xe8\xb4\xac\x8b\x5d\xd2\xaa\x3a\x69\x24\xc4\x43\x13\x46\x3f\x15\x37\x37\xc6\x2f\x11\x9c\xda\xec\x97\x82\x0e\xcc\xce\xdd\x98\xd5\xdc\xaa\x5b\xb0\xeb\x1a\xef\x27\x75\xcf\xf9\xc4\xb2\xaa\x6b\xee\xcb\x60\xd5\xbd\x6b\xc6\xf0\xd4\x8f\xb0\xeb\x82\x56\xea\xd7\xb4\xed\x76\x79\xd9\xed\xbc\x6d\x41\xeb\x50\x9b\xe4\xb7\x40\xd4\xd6\x7f\x35\x88\x15\x3b\xaa\x06\xc4\x35\x08\x00\x1b\xa4\xa1\xf0\xb1\x6f\x81\x55\x5b\xd6\x56\x90\xa0\xc5\x6a\x38\x1f\x1a\x8d\x07\x7c\x0d\x6a\xf2\x9a\x2e\xec\x9e\x7c\x93\x11\x01\x6c\xc9\xd7\x5b\x01\x70\x3d\xea\x5e\xec\x2d\x50\xb1\x73\xbd\x03\xbc\x8e\xa1\x9f\x63\xf1\xaa\x6a\xf3\xbe\x1e\x9e\x35\x43\xf9\x2e\x8c\x5b\xe1\xbb\x31\xae\x41\xee\xc0\xbd\x02\xfb\xed\x1c\x9d\x3b\xd4\x7f\x6d\xb0\x55\xf5\x35\x61\x57\xe3\x52\xac\x02\x0d\xb5\xd7\x84\xec\xf0\x49\x5d\x01\xbd\x68\xd1\xd9\xc3\x4e\xf9\xba\xd6\x8c\x2f\x51\x7e\xeb\x5c\x17\x4a\x43\x59\x8f\xc9\x61\x1c\xc5\xce\xb1\xd8\xc9\x08\xce\x45\x19\x97\xc3\xdc\x78\xb5\xe9\xd6\x77\x7d\x4e\xe1\xbe\xfa\x23\x52\x67\x15\xee\xc3\xbf\x85\x35\xb2\xeb\x95\xb0\x5d\xd1\x5b\xe0\xd5\x19\x83\xa3\x82\x7d\x10\xaa\x1e\x57\xc3\xec\x8e\x0e\x52\x07\xaa\x46\xd5\x05\xd5\x48\x52\x6d\x10\x0b\x86\xb8\x1a\x35\x78\x9f\xe8\xde\x99\xad\x40\x18\x96\x2b\x02\x8d\x67\xd8\xe5\x60\xfd\x23\xef\xd1\x5d\x4b\xef\xa0\x7c\x5c\x77\x44\x9e\x28\x50\x09\x3a\xde\xe2\xf9\x78\x86\x27\xcb\x0c\x1f\xe0\x09\x43\x97\x1d\x5c\xb6\x8c\x84\x60\x8f\xcc\x3c\x2d\xe1\xda\xad\xc1\x36\x62\xc4\xda\x54\xd7\x92\xf1\x47\xc6\x8e\xbb\x6a\xee\x68\x8c\x12\xb5\x78\x58\xf3\xb5\x8c\x70\x2a\x6e\x3b\x68\x25\x69\x69\x47\x00\x90\xe2\x0e\x84\xfd\x80\x47\x98\x20\x8c\x4a\xd3\x19\xa5\x41\x2e\x3e\x11\x63\xb7\xce\xd0\xe5\x67\x15\x2d\xf2\x80\x5e\xf2\xaf\x01\x29\xcd\xfd\x1c\x13\xa0\x49\xf7\xd6\x49\x19\xb0\x86\x9c\xd9\xef\xe8\x16\x09\x2b\xaf\xb3\xad\xb5\x52\x47\x48\xa6\x20\xfc\xae\x2c\xe3\x3d\xec\x6c\x13\xd9\x33\x25\xa7\x73\xd0\xf1\x94\xa3\x05\xba\x75\x78\xee\xd4\xd4\xc3\x3d\x7f\x71\xf5\xe3\x22\x5a\x4b\xdc\x21\xc8\x21\xfb\x36\x17\x41\x47\xd7\xed\xb0\xe7\x18\xf1\x25\xc3\x15\x54\x1c\x1b\x02\x2c\x4a\x8c\xa1\x8c\xb6\x2f\xa9\x49\x4b\x1d\x5a\x18\xa8\x6f\xab\x60\x64\x41\x5c\xa6\x00\xb7\x1e\x7c\x74\xdd\x3f\xe1\x12\x55\x5c\x40\xd0\x52\x50\x4b\x17\x6a\x2e\x23\xf5\x62\x1b\x81\xc3\x05\xca\x57\x0d\x90\x2f\x50\x5e\x19\x21\x34\x6a\x8c\x52\x56\x8b\x2f\x29\xfb\x86\xe0\x60\x6c\xf4\x62\x85\x15\x09\xfc\xdf\xfc\x3e\xc3\x0b\x8c\x44\x30\x1c\x0c\xc2\x9e\x7f\xc2\xfc\xd0\x2e\xa9\xd0\xa8\xa9\x2f\x2a\x80\xda\x15\x5f\x21\x8e\x33\x92\xe3\x3f\x69\x3c\x67\x1a\x9c\xef\xea\xa2\xbe\xe2\xfd\x41\xb1\xe0\x6b\x15\x2b\xcf\x46\xbf\x39\xfa\x2d\x21\x7d\x51\xe7\x1d\x2e\xef\x37\x1d\xda\x10\x45\x1b\xf3\x44\xe8\x14\x00\x6c\x32\x31\xdb\x86\x4a\xa8\x13\xf8\xfe\x70\x30\x80\xd7\x1b\xd9\xad\xfc\x51\x75\xf5\xea\xa4\x7e\x31\xc0\x30\x62\x7d\x43\xaa\xd4\x45\x00\x0a\x2f\xf4\x47\x74\x51\x99\xd3\xc6\x6d\xa3\x0e\xb5\x36\x7e\x77\x7d\x53\xcf\xa1\x2d\x69\x79\x05\xb8\x38\x07\x8c\xff\xa0\x74\xfe\x06\x41\x60\xc4\x52\xa1\x51\x48\x3f\x28\xc3\xdd\x70\x1b\xd8\x68\xb8\xed\x5c\xb4\xce\x05\x9b\x47\x7f\xe5\x2b\x14\xb9\x58\x56\xb0\xee\x45\x5c\x55\x68\x93\x30\x1a\x76\x60\xd6\x02\xb2\xfc\xe2\x8d\x08\x19\x57\x58\xee\xb8\xac\x56\xf2\x78\x05\x51\x89\x6c\xc5\xed\xec\x3a\x1f\xeb\xf3\x97\xbf\x26\x73\x9c\x43\x26\xd5\xaf\x3a\x44\x8e\x7d\xb4\xe9\xb8\x85\xe5\xa3\xf8\xf7\xd2\xdc\x06\xee\xb2\xb7\x91\x35\x12\xac\xb5\x6b\x07\xf4\xf2\x88\xaa\x73\x3a\xc0\x15\xd1\x05\xac\x66\xb5\x29\x5d\x10\x86\x11\x6e\x0a\x31\x1d\x87\xb6\x1b\x6d\xb7\xe1\x54\x5d\x0e\x55\xe3\x69\xd8\x06\x6a\x31\xbb\xcd\x3c\xb0\x10\xca\xe1\xfb\x45\x21\x5f\xa8\x98\x74\xa2\x3f\xed\xf3\x39\x62\xe2\x4d\x46\x29\x7b\x4d\xe4\x18\x83\x6a\x93\xca\xf2\xe9\x1b\x9d\xb5\x65\xbe\x54\x83\xf9\x4b\x6b\xab\x51\xad\xfa\x11\x5d\x7c\x00\xf3\x01\x63\x91\x58\x7e\x52\xa4\xd7\x5f\x4d\xfb\x98\x39\xd5\xd0\xca\x04\x41\x3f\xcb\xb7\x75\x01\x72\x43\xcd\xef\xa0\x0a\xac\xee\x87\x43\x47\x21\xb8\x14\x14\xab\x57\xaf\x40\x1a\x46\x60\xa6\x54\xab\x5e\xe3\x2a\x5a\xc9\x04\x77\x17\xfd\xaf\x25\xba\xd4\xeb\xa9\xf1\xa5\xac\xc7\x3b\x2a\xc9\x73\x3a\xad\x6c\x17\xc5\x00\xdf\xe3\xa9\xe8\x68\x26\x8c\x51\x43\xb5\xd5\x11\x5d\xc4\xaa\xb7\xce\xd5\x6a\x6f\xbe\xc6\x96\xaf\x9a\x95\x36\xa4\xfc\xea\x56\x69\xd3\x84\xeb\xb1\xb7\xae\x9a\x5f\x9a\x5d\xf5\x5a\x67\xb9\x63\x19\xad\x18\x6b\x65\x13\xaf\x10\xa5\x19\x54\xea\x12\xa3\x55\x8d\xf5\x45\x68\x55\x3f\xc2\xfa\x8f\xaf\xab\x64\x67\x5d\xad\x31\x23\x70\xed\x2a\x9e\x87\x24\x43\xac\x99\x06\xc3\xa4\xda\x5c\xd4\xc5\x5d\x9d\x97\xc5\xef\xb7\xa3\x2a\x6f\xaa\x5e\x6f\x44\xdb\xf5\x06\x5b\xd7\x9b\x23\xbd\xd9\x02\xa3\x99\x94\x85\xaf\xca\x9b\x59\x20\xac\xf2\xca\x5d\x08\x47\x62\x15\xeb\xef\xba\xc9\xb6\x0e\xab\x63\xc0\xb6\xd5\xa4\x6d\xf8\xec\x1c\x7f\x7d\xe5\xc1\x42\xd5\x31\x70\x2a\x6b\xb7\xdd\xb2\xcd\xa2\x4f\xdd\x69\x63\xa3\x3e\x89\xda\x00\x54\x6b\x70\x9b\x1f\x4a\x6b\xc8\x14\x87\x35\xb6\x50\x5a\x16\x6f\x54\x59\xa0\xd6\xde\x5a\x2f\xbe\xb6\xd3\x6d\xa5\x6a\x9d\xd5\x94\x30\xb5\xa5\xa4\x03\x69\xcb\x54\xb1\x81\xb7\x32\x5f\x6d\x62\xed\x18\x99\x75\x65\xff\x59\xfc\xbb\xa1\x6b\xd3\xd1\xa9\x76\x29\x68\x62\xfb\x97\x60\xd2\x84\x1d\x8e\xd6\x27\x45\x1d\xce\xa8\x3e\xf9\x4d\xf9\x72\x05\x0d\xc0\xd9\x6d\xd5\x0a\x6a\x02\x59\xdd\xb1\x73\xf1\x74\x18\x7e\x56\x39\xc5\xaa\x1d\xa2\x86\xbf\x6a\x9d\x3d\x6f\xee\x0e\xb9\x59\xed\xa1\x59\x7a\xa3\xc6\xac\x76\x3e\x24\xff\xd0\x3e\x68\xec\xdf\x02\x43\xfb\xe1\x7b\xf5\xbc\xaf\xb1\x00\x2d\x80\xee\x35\x58\x5f\xff\xeb\x62\x60\xc6\xf0\x73\x38\x18\x28\xff\xeb\xad\xfe\xfa\x0a\xb9\x7b\xaf\x0e\x58\x2b\x56\xbe\x7d\x16\xb6\x06\x8a\x2f\x3d\x2d\x98\xed\xa8\xba\x91\x0a\xe3\x8a\xaa\x23\xc0\xbf\x26\x13\x30\xca\xc6\xf9\x58\x9e\x49\x90\x2e\x8a\x9d\x63\x01\x56\xd9\x3e\x04\x7b\x4b\x53\x52\x59\xcd\xaa\xe1\xae\x69\x80\x27\x26\x01\xce\x94\x66\x13\x93\x64\xb8\x02\x45\xdd\x10\x70\xdd\xd5\x39\x62\x6d\x21\x16\x58\x78\x7b\x5b\x0a\xe8\x2d\xd3\x63\xc4\xf6\x3a\xd1\xa3\xbc\xb1\x5d\x8d\xaf\x9e\x4b\x2d\x1c\xcd\xca\xd0\x1b\xae\x93\xbb\xa9\xb2\xae\xdf\xfb\xb2\x74\x30\xca\x9e\xcf\x46\x99\xf1\x74\x1d\xa7\xb8\x97\x41\x58\xae\x8d\x34\x0f\xe5\xbf\x96\x39\xfe\x58\x16\xf0\xcd\xcd\xd2\x44\x3f\x4d\xc7\x21\x0b\x50\xc4\xc3\x08\x55\xa3\x32\x16\x1e\x0b\x74\x73\x93\x36\xea\x53\x59\x9f\x3a\xeb\xa3\x8d\x94\x6f\x6e\x22\xf0\x62\x04\xef\x40\x1d\x86\x61\x8a\xc5\x78\x66\xa2\x20\x04\xe3\x30\x0c\xbf\x1b\xab\xfd\x8c\x9e\x07\xfe\x0e\x5d\x66\x93\xfc\x9e\xf0\xa0\x22\x98\xe7\x83\xe9\x42\xe2\xf9\xbd\x71\x38\x82\x44\x9a\xb7\x68\x23\x5d\xbe\xac\x2f\xdf\x5a\xd8\x1b\x14\x46\xcb\x66\x94\x08\xf7\x46\x40\x72\x1c\x95\xda\x61\x82\x52\x54\x71\x41\x2a\x38\xe8\x9f\x3a\x92\x55\x63\x50\x7e\x0d\x35\x5c\xac\xd8\x16\xa3\x7f\x3e\x46\x92\xfa\xcd\xd3\x48\x2e\x87\xbc\x53\x4f\x53\xb9\x0b\x34\x2e\x0b\x55\x4b\x32\xfb\x15\x3f\x70\x7c\xaf\x45\x58\xe9\x84\xd0\x64\x79\x95\x9a\x61\xe8\x36\x70\x73\xe0\xd0\xa8\xe2\x42\xa3\x03\x4e\x13\x93\x7a\xe5\xb0\x9d\x82\x63\x79\x11\x28\x62\xbb\x36\xdf\x57\x1d\xb7\x86\x63\x5c\xec\xd8\xd3\x2e\x43\x04\x7b\xd9\x34\x23\x0c\x15\xda\xd2\xb4\xfd\x4e\xb3\xb9\x59\x66\x26\x71\x56\x78\xd9\xfe\xe9\x18\x9f\x26\x6d\x1c\x0e\xac\xed\x70\xc7\x4d\xd0\x84\x78\xb2\x89\x03\x17\xb7\x8e\x97\x1e\x49\xec\xed\x2c\x6b\x46\x09\x27\xd3\x60\xb0\xd1\xce\xa7\x4b\x57\xae\xef\xe5\x51\xdc\xaa\xb2\x59\x79\xf0\xb6\xb5\x0c\x47\xd8\xb5\x9d\x07\x4d\x1b\x58\x7b\x6b\xe2\xaa\x3a\x6a\xd5\xfd\xf4\x56\x87\xef\x6b\x1d\xac\xd2\xb8\x47\x64\x95\x26\x25\x1e\x16\x9e\x80\xb6\x4c\x56\x8f\x3d\x53\x9e\x3e\xc4\xa6\x5e\x8b\x18\xb7\x9a\x78\x2d\x0d\xc3\x91\x70\xd1\x8e\x34\x68\x57\x91\x96\x35\x35\x44\x83\xad\xb5\x0e\xc3\x56\x39\x96\x2f\x30\x35\x0f\x49\x56\xc6\x14\xc6\xd1\x20\x8c\x58\x1f\x5f\x09\x9c\x4f\x02\x11\x09\x87\x87\xac\x5b\x39\xb2\xe2\x91\x9e\x66\xd9\x07\x74\xf5\xd5\x95\x31\xa0\xa9\x2d\xac\x2b\xbd\x1a\x8a\x82\xb5\x74\x57\x71\x3b\x60\xd0\xa2\x77\xa8\xb5\x0a\x6d\xf6\x11\x5d\x38\x9e\x59\x5b\x34\x40\x55\x8d\x07\x5e\x5b\xbb\xa1\x1f\x8d\x70\xbb\x12\xb8\x75\xfc\x11\xb1\xb5\xde\x9a\xc8\x41\x38\x12\x2f\x88\x3c\x0c\x52\x52\x77\x3a\x81\x4a\x47\x74\xb1\x91\x8a\x22\xb2\x70\xfd\x5b\x2a\xdc\x86\x06\x6b\x51\x4c\xab\x94\xff\x57\x26\x5a\xd7\xa2\x19\x05\x22\xbe\xa3\x86\x3e\x84\x18\xf1\x65\xe4\xf7\x3b\xd2\xba\x73\xe7\x58\xea\x32\xc7\x13\x3c\x48\xe3\xf0\xbc\xdb\x02\xfd\x7e\x3b\xd2\x9d\x36\x6f\x15\x65\xa4\x6b\xcf\xba\xe7\x29\xae\xc7\x14\xb0\x22\x32\x1a\xd7\x9d\xb6\xc8\x80\x8d\x77\x1b\xfd\x0e\x50\x4e\xbd\xfd\x80\xb3\xb9\x69\x1e\x4a\x1b\x15\xf4\x1b\x8e\x11\xbb\x8d\x6a\x58\x2b\x3a\xcd\xc3\x96\xf1\x2b\x6a\x3c\x6c\x19\x63\xcd\x95\x2f\x7a\x15\x5f\xa2\xca\xa8\xd6\x6b\xd2\xd0\xc6\x40\xb7\x95\x2a\x3a\x5c\x96\xce\xb0\xb8\xaf\xfc\x5a\xf0\xa4\x42\x37\x2b\x20\xc5\x6b\x9c\x09\x24\xdb\x90\xd4\xbd\x1c\x62\x31\x22\xb0\x58\x49\x3a\xa8\xbc\x46\xd5\xd9\x07\x79\xc1\xa0\x16\x0b\x23\xb2\xd1\x02\xac\x7d\x49\x93\xa8\xe9\x84\xd3\x65\xd2\x52\x1b\x81\x43\xb2\x53\x19\x97\x03\x08\x31\x29\xd0\x07\x3a\xc1\xe1\xf7\x31\xe2\xd8\x83\x56\x60\x51\xdd\x7f\xbd\xf7\xe1\xeb\xeb\xdd\xf7\x47\xdb\x5f\xf7\xdf\xfe\xb6\xfb\x3e\x11\xa9\xae\xfe\x1f\xbf\xd4\x09\x65\x45\xee\x50\x97\x89\x51\x3b\xb0\xf7\x6f\x3f\xee\x36\x60\x39\x1f\xea\x56\x41\xda\xdf\xfe\x75\x3d\x48\xbf\x54\xe8\x5a\xe4\xe5\x0a\xca\x68\x5c\xbf\xb4\x8b\x8d\xda\x95\x6b\xdd\x05\xa9\xa3\x95\xb8\x97\x22\x7c\xec\x5e\x84\x11\x89\x98\x83\x41\x7c\x27\x93\x04\xf7\xc9\x04\xe7\x82\x4c\x09\x66\xd1\x75\x82\xf5\x43\xf5\x7f\x44\x57\xc5\xdf\xbf\xdd\xde\x96\x73\x0b\x79\x08\x61\x5a\x6d\x6f\xbb\x04\x54\x69\xe9\x60\x24\x20\x66\x16\xa4\xeb\x04\xbc\xca\xb8\x59\xbd\x9e\x08\x49\xca\x82\xfa\xf7\x63\x61\x72\x0b\x96\x71\x59\x8e\x49\x9f\x4c\x4e\x53\x62\xcd\x56\xc5\x1f\x2e\x29\x4b\x70\x3e\x59\xb7\x77\xfd\x38\x55\xef\xcb\x81\x90\x45\x93\xd3\x06\x0e\xe0\x1a\x98\xe8\xb7\xd6\xd1\x4f\x0e\x9c\xf7\x52\xe7\xd8\xfb\xd7\x31\xe9\x5f\xb7\xd2\x85\xff\x92\xea\x48\x80\xb4\x8d\x8b\xf0\x11\x05\x2e\x42\x0d\x17\xc9\xdd\x5c\x84\xbe\xc8\xa1\x56\x1e\x46\xf4\xee\x5c\x84\x86\xb7\x4d\x36\xd2\xce\x45\x0a\x8f\x7d\xb7\xe8\xf1\x63\x56\x1b\xca\xb1\x71\xdd\xbd\x04\x4e\x90\x2d\x5b\x49\x7e\x6b\xd9\x49\x86\x04\x77\x7c\x86\x74\xa8\x8e\x37\x5a\xde\x5c\xcc\x6d\x20\x6e\x53\xdf\x16\x8a\xf3\xad\x30\xb4\x37\xb6\x99\xd6\xea\xab\x25\x6f\x7b\xb5\x64\x56\xb4\x95\x8e\x4e\x58\x28\xdc\xfa\x48\xab\xca\xcb\xee\x0a\xc9\xea\xcb\xaf\x4b\xd9\x52\x49\x3e\xd2\x72\x5f\x04\xd3\xbf\x95\x83\xe8\x0d\x8b\xb7\xd5\x15\x0f\x56\x65\xf7\x6b\xbd\x9f\xad\x32\xd5\x69\x12\xb8\xfe\x0c\xc8\x43\xd2\xa6\x08\xb6\x2a\xd5\x09\xec\x18\x61\xb2\xf6\x35\xb3\x37\x6c\xd1\x29\xad\x4f\x70\xd2\xf2\xa6\x57\xe8\x32\x56\x13\xbb\xde\x7b\xcb\x0b\x4d\x17\x0f\xb1\x9d\x7f\x9d\x3b\xb9\x74\x0f\x30\x52\x98\x8a\xfb\xd7\x9f\x32\x3a\x97\x4c\x66\x07\x34\x41\xfd\xcb\x19\x19\xcf\xc2\xbe\xa0\xef\xe9\x25\x66\x3b\x88\x4b\x99\x56\x32\x6a\xc1\xb2\x77\xf8\xfa\xe6\x06\xf7\xe7\x58\xa0\x77\xf8\x3a\xdc\xdc\xf4\x2f\xfc\x54\xde\x11\x94\x88\x6a\xfb\x8b\x19\x47\x9a\x0e\x94\x95\xef\x74\x93\xeb\xb9\xe0\x58\x11\x4c\x46\x6e\x33\x0b\x51\x8a\xc8\xda\x45\xfb\xbb\x9c\xc3\x44\x54\xe1\x5d\xa0\x6c\x89\xc1\xab\xba\x59\x0c\x1a\xc6\xa6\x2b\xd0\xa0\x9d\xcd\x76\xf8\xbc\xd5\xd2\x2b\x72\x41\x17\xfb\x8c\x2e\xd0\x39\x52\x08\x77\x19\x4a\x17\x56\x75\xfa\x21\x68\x95\xc1\xb4\x71\x44\xfe\x8f\x14\xbf\x34\x17\x84\xc4\xd7\xae\x91\xab\x3b\x52\xa2\x25\xbd\xc0\x5a\xbc\x74\x59\xf8\xb7\x84\x8f\xc3\xb5\xd8\x7e\xe0\x97\xc4\x75\x1a\xde\x46\xa2\x68\x5d\xce\x30\xa7\x4b\x36\xc6\x76\xb6\xde\x6a\x60\x40\x93\x18\xbc\x28\xd8\x5b\x48\x6c\x78\x19\x39\xd0\x01\x5a\x07\x11\x54\xf1\x3f\xac\x9f\x7a\xe4\x6b\xe5\x00\x36\xc5\x9f\x8f\x20\x10\xe1\x91\x4e\xb2\xed\x58\xa4\x8c\x4e\x49\x86\xdf\x4e\xaa\x7e\x15\x64\x8e\xd8\xf5\xa1\x8e\x4e\x52\xc4\x0e\xc4\x38\x57\x15\x50\x26\x30\xcb\x91\xc0\xed\x55\x8a\xd0\x26\x4d\x80\x76\x85\x7a\x38\xc3\x32\xff\xa3\x1d\xf3\xae\x1e\xbd\xd0\x8e\x59\x68\xc7\x21\x2b\x12\x44\xaf\x13\x4d\xa8\xb3\xf9\x1d\xc2\x5e\xb8\x9a\xaf\x1d\x5d\xa1\x68\xac\x25\x1d\x4b\x5a\xb1\x1b\x94\xe6\xb7\xce\x08\x84\xb5\x44\xcc\x36\xf4\x33\x34\xfe\xa6\x1e\x60\x4d\xc6\x67\x81\xce\x0e\x05\x5d\x58\x25\x5a\x20\x3a\xd2\x1f\x0a\x2f\xdb\x0b\xbd\xb1\x8e\xe8\xc2\xee\xd7\x14\x2b\xe1\x63\xdd\xd4\x9c\x87\x33\xb4\xc0\x2a\xca\xbb\xce\xf8\x6e\x95\xf7\x5f\xbd\xdf\xdb\x79\x67\x57\x07\xef\xba\x26\x94\x57\x19\xc9\xbf\xed\x5c\x8f\x33\xfc\x35\x3d\x1e\x0e\x06\xd1\x70\x30\xd0\xa3\x98\x5f\xef\xe5\x3b\x65\xa5\xaf\x05\x2d\xad\xb2\x06\x49\x6b\xee\x7c\x76\x87\xd3\xaa\x2b\x63\x25\x66\x25\x8c\x7f\x2f\xdf\x5b\x0a\xe0\x91\xcd\x2f\xef\xf0\x35\x17\x8c\x7e\xc3\xcd\x8f\xc0\x7c\xb6\x19\xa3\x97\xb2\x52\x65\x42\xf1\x14\x23\xf1\x81\x2e\x39\x3e\xc0\x0b\xca\x04\xff\x5a\x44\x9f\x3c\xc3\x59\xb6\xbd\x9c\x10\xba\xca\x9c\x1f\xc9\x4a\xc6\xae\xbe\x6c\x65\xc7\x1d\xc0\x59\x16\xab\x6a\x8d\x5a\x55\x87\xdc\x05\xc3\x19\x45\x92\x7d\xa1\xa5\xa8\x00\xfd\x48\xe5\x1d\x6a\x0c\x87\xc0\x7b\xc2\x85\xbd\x98\xf8\x37\x41\x17\x76\x85\x57\x38\xcb\xca\x91\x70\x74\x81\x27\x9a\x11\x5a\x81\x32\x4d\x81\xda\xeb\xfa\xbb\x5e\xb1\x8d\xb0\x9a\x17\x26\xbb\xfe\xe7\x23\x7b\x36\xbf\x69\x7e\xab\x3f\x1a\xf6\x6b\x57\x21\xb4\xc8\x65\xae\x97\xe1\xdb\x3d\xfb\x3b\x86\x28\xa4\x30\x07\xaf\x19\x3a\x57\x2b\xbd\x0c\x1b\x4a\x17\xd7\x7b\xb9\x92\x70\xac\x89\x83\xc0\x5f\x10\x4f\x77\x27\x23\xe3\x6f\xca\x7b\xb1\xf6\x19\x0a\x5f\x2d\x85\xa0\xb9\xf5\x49\x76\xa3\x76\x9f\x8a\x8b\x06\x4c\xc0\x50\x0a\x92\xd5\x16\x0f\x05\xdb\x53\x81\x99\xfa\x3e\x30\xd7\x27\x08\x9b\x24\x19\xe7\xd7\xe0\xe9\x20\xda\x7a\x58\xdc\x4d\xcc\x8d\xcd\xec\xe9\xf2\xd6\x22\xf6\x15\xcb\x0f\xf0\xcd\x8d\xaf\x77\xbe\x1f\xd5\x5f\x59\x69\x6e\xe8\x73\x80\xd1\xe4\x3a\x08\x6f\x6d\xf6\x75\x1b\xb9\xb7\x71\xfa\x1d\xf6\x71\xe2\xc3\x3f\x7e\xf4\x6a\x77\xfb\x43\xe2\xcb\xff\xfa\xd1\xa7\x8f\xaf\x77\x0f\x40\x99\xe3\x17\x7f\xfa\x15\x40\x15\xb5\x88\xdd\xbb\xad\x79\x6d\x69\x21\xd0\x99\x72\xb9\x7c\xea\xfe\x5e\x8e\xbb\x96\x67\xb1\x7e\x0a\xe2\x3e\xc3\x8b\x0c\x8d\x71\x70\xff\xe4\xfe\xfd\xf3\xc8\xd7\xb1\xd0\xb8\x6d\x9d\xcf\xf0\x94\x9b\x17\x45\xf5\xa3\x3f\xc1\x68\x2c\xc8\x05\x78\x90\x45\xd6\x07\xbd\xda\x1a\x07\x7d\x50\xeb\xb8\xd2\xa8\x8f\x26\x93\x3d\x13\x39\x16\x82\x73\x47\xdf\x7d\x94\x89\xf8\x9c\xc5\x73\x3a\xc1\x7e\x52\x91\xca\x52\x15\x09\x1f\xbf\xf4\x71\x1e\x2f\xb9\x9f\xa6\x39\xba\x20\xe7\x48\x50\xd6\xcf\x50\x7e\xbe\x44\xe7\xb8\x2a\x09\xbf\x54\x81\xb6\x12\x9f\x81\x89\x3a\xca\x84\x9f\xf8\x2a\xf6\xb2\x94\x84\xaf\x17\x98\x4e\x3d\xfc\xb2\xd6\x2a\x51\xad\xa2\xfb\xbf\x07\xf2\x8f\x1b\x08\x31\x81\x32\x71\x93\xe1\x29\x00\xb9\x29\xc0\x85\xff\x76\xbf\x2f\x30\x17\x01\x0e\x6f\x6e\x02\x9c\x9a\xc0\x5e\xe5\x1e\x95\x42\xc4\xaf\xec\x03\x9d\x80\x9f\x2f\x8c\x4e\x32\x63\x08\x28\x13\x13\x1e\x4b\xe9\xbc\x2c\xa9\x8e\xb8\x0a\xe5\x95\xa9\xf4\x96\x7f\xc0\x02\x15\x3f\x0b\xb8\x1a\x5a\x17\x0c\xd5\xb4\x68\xc1\x71\x3e\xe1\xf1\xe5\x0c\x89\x6a\xa3\xfb\xbf\x07\x98\x8f\xd1\x02\xdf\x3c\x8d\xcf\x88\xb8\x39\x63\xf4\x92\x63\x16\x7f\xc3\xd7\x8d\x11\xab\x8a\x8d\x31\x1f\x4a\xd0\x5f\x66\x48\xa8\xce\x96\x13\x29\x19\xc7\xc0\x93\x39\x38\x8a\x25\xcd\x64\x49\xd8\xc4\x34\xff\x3d\x23\x67\xb1\x91\x3b\x93\xe0\xe4\xb0\x17\xde\x0f\x47\xe4\x65\x07\x0f\xe7\x6c\x2c\xaf\x03\xa6\x11\x38\xfe\x22\x81\x3e\xb1\x2c\x20\x10\x90\x3d\x59\xd5\x18\x87\xb7\x91\xaf\xd9\x7a\x9c\x5b\x7c\x1d\xb0\xae\xad\xc5\xcd\x4d\x9b\xf3\xbf\x0c\x3a\x0e\x04\xff\x9c\xa1\x5c\xe0\x89\x9f\xa6\xa9\xfd\xb5\xbf\x90\xfb\x97\xcb\x1b\x77\xd4\xde\xfc\xe6\xa6\x9a\x01\xb6\x15\x41\x8f\x70\x4f\xb0\x25\xf6\xce\x96\xc2\xbb\xc4\xde\x84\x82\x19\xd9\x0c\x5d\x60\xaf\xec\xc9\x13\xd4\x04\x2f\xf4\x6c\x10\xbc\xef\x03\x89\x3a\x8e\xb5\xdb\xc8\x2f\xc5\x08\x15\x41\xae\xbe\xd4\x9a\x71\x06\x20\x87\x93\xdd\x8e\xcc\xd1\x79\x63\x99\x57\xc4\xcb\x46\x3c\x81\x06\x0c\x10\x79\xd7\x05\x01\xf2\x76\x1d\x82\x71\xb8\x5c\x1b\x4a\x91\x0f\xb3\x80\xa4\x76\xb0\xda\x41\xab\xf7\x6f\x51\x03\xf6\x45\x75\xef\x96\x8e\xa2\x73\xb4\x80\xec\x13\x8c\x4c\x30\xaf\xc2\xd2\xbc\xef\xe6\x06\x7b\x24\xe7\x02\xe5\x63\xc9\xbb\xf6\xce\xfe\x81\xc7\x42\x2e\xbf\x0b\x51\xea\xf8\x3f\xa0\x85\x56\xf3\x05\x72\x5b\x36\x3e\x71\x2c\xf6\x4c\x2f\x01\x0e\xc3\xa4\xba\xc4\x4a\x26\xee\x55\x51\x9b\xd3\x49\xb9\x60\x4c\xf0\x58\x94\x7b\x14\xb0\x50\x69\xb2\xe5\x78\x54\x64\xd0\x33\x08\x43\xd9\x5c\x21\x96\xa0\x1a\x6c\x6c\x34\x5a\xc4\x63\x29\xf6\xd6\xb6\x9b\x3d\x66\xc8\x63\xbd\xb9\xe9\xe7\xcb\xf9\x19\x66\x16\x1f\x3f\x1e\x9c\x3a\x8b\x87\xa7\x2f\x5d\x72\x35\x4e\x5c\xa5\xcd\xf6\x2f\x8f\x71\x84\x4f\x93\x42\x0c\x2f\xf1\x6d\xdb\x03\x3b\xa5\x68\xaf\xd6\x0b\x54\x8c\x17\x28\xc3\x42\xe0\xb6\x19\xd6\xf9\x29\xda\x26\xb9\x56\x08\x54\xd0\x69\x63\xd4\x35\x5e\xfd\xb3\xaf\x3a\x49\x8b\x52\x2e\xe8\xf8\xdb\x8e\xf5\xa9\x3f\xa6\xf9\x18\xc9\xa5\x81\xc3\x22\xa8\xb9\x47\x72\xaf\x48\xc2\x5a\xb8\x5c\x13\x95\x79\x82\x7f\x44\x1f\x03\x16\xde\xdc\xb0\xe7\x83\x9b\x1b\xf6\x62\xeb\xd1\xa3\xb0\x62\x48\xa7\xfd\xdc\x3d\xd0\xcb\x48\x50\x7a\xa8\x72\x49\x90\x9e\x0f\x2b\xe3\x98\x9c\x96\xf1\x9e\xf1\x31\x3b\x2d\x32\x43\x18\x4c\x73\xca\xe6\x20\xe9\xed\x1c\x1e\xaa\x1a\x23\xba\xb9\xe9\x1e\xdf\x31\x3b\x4d\x69\x78\x7b\x5b\xbf\x74\xd7\x93\x97\xa9\x50\x07\x56\x43\xd8\x11\xf5\x8b\xfd\x1a\xad\x5c\xd9\xb8\xed\x8d\xe2\x9e\x61\x6b\x93\x20\x39\x61\x1e\x65\x8d\xdd\x42\x17\xd7\x31\xcd\x75\x48\xb4\xfa\x6a\xaa\x48\xe2\x1b\x1b\x92\x5d\x2c\x39\x8e\xb5\x40\x1b\xab\x1b\x71\x0c\x31\x12\x6b\x2d\xdd\x22\x37\x40\x00\x81\xbb\x8c\xc1\x16\x23\x29\x72\x3b\x81\xb4\x8a\xe6\x0a\x8e\x14\x8c\x16\xd9\x92\xc7\x73\x92\x2f\x79\xfc\x07\x66\x34\xfe\x83\xd2\x79\x2b\x1b\x94\x2d\xf6\xb3\x25\xff\x20\xeb\xff\x1d\x33\xfa\x77\x4a\xe7\x69\x01\x6b\xec\x44\xa2\xd2\x7a\x07\xfa\x2f\x5a\xe8\xc8\x5f\x9d\x4d\x4c\x98\x95\xa8\xc1\xdf\xcb\x00\x2d\x6a\x9f\x62\xc4\x45\x8c\x38\x41\x79\x8c\xe6\x67\xe4\x7c\x49\x97\x3c\x46\x3c\x16\x97\x34\x56\xd9\xff\xaa\x1d\x41\xe2\x0d\x86\xcf\x11\x9b\xec\xfc\xe3\xdb\xb6\x69\x02\xe8\xa9\x1b\x56\x0c\x02\x54\x3c\xa6\xb9\x60\x34\xab\xa3\x79\x21\xf4\x45\xec\xe9\x2b\x02\xfa\x6b\x46\x33\x4d\x5b\xdd\xfc\x8c\x66\x93\x06\x87\xb9\xce\xc7\xaf\x68\x36\x39\x44\x53\x7c\x28\x74\x30\x07\xbb\x81\x44\xf9\x0c\x64\xd4\x7a\xd3\xee\xcd\xa2\x40\x48\xd0\xdb\xfc\x15\xb4\x97\xc8\xac\xb1\x5f\xdc\x0d\x2d\xa4\x9c\x47\x81\x1c\x86\xfc\xd0\x18\xc3\x38\x23\x0b\x98\xbe\x18\x92\x6b\xb6\x52\x6d\xc7\xd4\xfb\x22\xab\x55\xbb\x9c\xe0\xf1\x70\xab\xb5\xe5\x6b\xf9\x55\x37\xb0\x22\xdd\xba\x50\x2c\xa3\x87\x01\x8a\x45\x00\x5c\x07\xdf\x37\x51\x2c\xd4\x62\x52\x35\x4d\xfc\xb2\xb5\x40\x1b\x4d\x4c\xeb\xc9\x52\x8b\x3b\xa5\x3a\x9a\xd1\x39\x96\xa2\x39\x8f\x8d\x32\xb9\x65\x33\xc8\x8a\xef\xf0\xb5\xb6\x84\x92\xab\x54\x7e\x22\xf9\x84\xe4\xe7\xbc\x7e\x16\xd9\xc2\x8b\xae\xa2\xd8\x01\x1c\x1c\x92\x87\x37\xcf\xa8\x50\xb0\xeb\xef\xae\x86\x68\x32\x79\xa5\xff\x96\x38\x8f\x41\xcc\xc7\xa5\x39\xb6\x0e\x50\x0f\xa1\xf7\xe5\xf9\x61\xe1\xe5\x2d\x0a\x2e\xab\x79\xa6\x2b\xb4\xfd\xca\x96\xbb\x26\x98\xbf\x62\xbf\xbe\x24\xdc\x1c\x5d\xc5\xea\x36\x18\x73\xfc\x5f\x4b\x59\xd1\xb1\x62\xe6\xe8\x4a\xbd\xbd\x1c\xea\x3a\xb0\xbd\xe7\x78\x42\x90\xa2\x3a\x62\x38\x9e\xca\xbf\x5a\x09\x0f\x95\x25\xe5\xb7\x19\x7e\x23\xff\xd5\x20\x04\xd2\x02\xa4\xbe\x44\xb5\xb7\x17\x08\x04\xc7\x5d\xa8\xa7\x5a\x43\x14\x76\x75\x13\x1d\x67\x64\xfc\xcd\xcd\x09\x9d\x3a\x9b\xb2\xbd\x8a\x9b\x78\x06\xfa\x1a\xd7\x12\xfd\x50\xd3\xe9\xc0\x42\x5d\xa0\xf3\xf5\x16\x9c\xac\x58\x5d\x70\xfe\x02\x71\x2e\x6f\xce\xb1\x96\xb3\x5c\x42\xee\xe6\x66\x80\xd3\x0d\xad\xed\x2d\xef\xf8\x4b\x8e\xd9\xf6\x39\xce\x85\xb9\x26\x7e\x40\x63\x6f\xef\xd0\xfb\xed\x7e\xb8\xb9\xe9\x2f\xe8\x62\xb9\xf0\x37\x52\xd2\x57\x0d\x8f\xae\x17\x38\x1c\xc1\xfb\x14\xdf\xce\xc4\x47\xe8\xae\x44\x01\x4e\x8f\x7f\x26\x0e\xf2\xac\xa9\x23\x01\x2b\x60\x15\x12\x7f\x22\x0e\xf2\xf2\xef\xc4\xe1\xa2\x63\x0a\x55\xb3\xcf\xd0\x82\xe1\x31\x26\x17\x38\xc6\xf9\x98\x4e\x1a\x5c\xed\xfe\xef\xc1\x52\x4c\xe3\xa7\x37\x0c\x5d\x56\xf5\x04\x15\xb9\xe9\x5e\x55\x5c\x9c\x52\xe6\x39\x00\x7b\xf7\x20\x97\x6d\xea\x03\x48\xbf\x7e\x91\xd9\xd5\x15\x01\x2d\xb5\x0c\xa5\x14\xf5\xcd\x28\xa4\xdd\x37\xbb\x8a\xc6\xba\xda\x92\x82\x92\xbb\xad\x99\x51\x81\x97\x6d\xce\x10\x8b\xb5\x5d\xa2\x83\x51\xd7\xdf\x04\x15\xa7\xd6\xbd\x41\xa8\xf0\x78\x8e\xae\x61\xf7\xc7\x88\x31\x7a\x19\xbb\x18\x88\x5b\x93\x8e\x1b\x90\xe8\x05\x8e\xe7\xc5\x3b\x5f\x2b\x3a\xcd\x97\x43\x8d\x96\xc4\xe2\x4f\x9f\xd2\x1a\x54\xc7\x7c\x96\x52\x9a\x7b\x56\x67\x64\x2a\x62\xf5\xfe\xbe\x42\xcc\x83\xaa\x6f\xa1\x66\xc9\xe1\x84\xd6\x8f\xb6\x0c\x0d\xd6\x13\x24\xee\x53\x5f\x15\x2d\x20\x8c\xf5\x98\xb7\x4c\x45\x21\x39\x96\xd1\x3f\xab\xcd\x62\x29\x19\xad\xd7\x16\xcc\x11\xa0\xf1\x25\x65\x93\x18\x8c\xb4\x62\xd8\xd1\x71\x86\xa7\xab\x44\xb7\x66\xfa\xbb\xd4\x29\xa9\xb9\xea\xb9\xba\x5c\x47\x5c\x74\x24\xd6\x5b\xa7\x53\x5d\xd1\xd5\xeb\x1c\x32\xf0\xdd\xa9\x5b\x95\xb4\x6f\x9d\x7e\x4d\xcd\xdb\xdb\xaa\xd6\x99\x61\x34\x39\x14\x94\xa1\x73\x1c\xd4\x1f\x04\x74\x15\x50\x8d\x5d\x6f\x67\x59\x10\x46\x6c\x73\x93\x75\x3d\x0c\x54\x33\xbd\xca\xf6\x6d\x21\x02\x15\xf0\x96\xc6\x1c\x8b\x57\x0c\x8d\xbf\x61\x81\x27\x2d\x31\x23\xcd\xe3\x51\xff\xac\x5a\x11\xb7\x83\xb4\x54\x11\x4e\x1f\xa9\xf2\x09\x12\x37\xde\x36\xdb\x42\x81\xb6\x56\x84\x64\x3c\x56\xbc\x50\x37\x89\x9c\x28\x55\x09\x65\x23\xd6\x3e\xb6\xc3\x5a\x4a\xbd\xe6\x00\xdd\xaf\x5c\x1d\xe4\x5a\x19\x25\xb5\xf1\x90\xda\xa2\xbd\x08\x5d\x26\x06\xf5\x6b\x53\xf9\x7e\xc5\x03\xe7\x5b\xac\xfb\xf1\x36\x74\x5b\x27\xfc\xb9\xd0\x5b\x35\xa1\xe5\xc5\xa3\x6d\x82\xd7\x0c\x65\x5b\xef\xb8\x7d\x56\x56\x46\xdb\x6d\xbc\x61\xff\x7f\x64\x56\x5c\xd7\xc1\xb6\x59\x59\x33\x10\x72\x1d\x9d\x16\x80\x6c\x99\xef\xd0\xf9\x1c\xe5\x93\x9d\x0c\x71\xde\xea\xf6\x6e\x18\xea\x39\x16\x81\x8f\xf3\x0b\xc2\x68\x3e\xc7\xb9\xf0\xc3\x91\xaf\x6f\x62\x85\xa6\x95\x6c\x6e\xaa\x4c\xbb\xe4\xe6\x26\x20\xe9\xf7\x5b\xdb\x77\x40\xe7\x9f\x57\x7d\xc2\x6b\x23\x0e\xbe\x23\x76\xae\xae\x66\x89\x8a\x0e\x4e\x68\xa2\x5f\xbf\xfb\x8b\x25\x9f\xc9\x9b\x6a\xd9\x65\x42\x22\x9a\xef\x5e\x11\x51\x39\x6d\x18\x54\xa6\x0b\xc9\xe8\xfb\xcb\x1c\xae\xb4\x59\x56\x3c\xa9\xcb\x52\x7b\x08\xe3\x8c\x72\x2c\xc5\x45\x7c\x45\x84\x1f\x6e\x6e\x6a\xe9\x1c\xca\x83\xb0\x38\x6a\x9a\x70\x6c\xfc\x25\xf9\x82\xb6\xb9\x22\x7c\xdf\x5e\x9f\x2b\xe2\xcd\xa6\x2e\xd3\xa3\x36\xc8\x55\xa4\x1a\x3e\xc7\x85\x38\x55\xc7\xbe\xb1\xf6\xaa\x99\x10\xcf\xe8\xe4\xba\x6d\x34\x0d\x92\xae\xdf\xab\x5c\x0c\x6d\x60\xe5\xd1\xc6\xf9\x67\xc4\x6a\x69\xa1\x53\xdf\x64\xf2\xf0\x4d\xea\xb9\xc2\x82\xc4\xfc\x65\x62\xc8\xaa\x53\x4b\x3d\x99\x2f\x30\x13\xd7\xc1\x7f\xfe\xdb\x77\x72\xfb\x6f\xdf\xf1\xed\x7f\xea\x34\xdc\x6d\xfc\xc8\x11\x19\x75\x90\x9a\x0b\x5b\x63\xdd\x97\x3a\x23\xa7\x3d\x55\x45\x71\x54\xd8\x2f\xa8\xe1\x05\x7e\x91\x91\x04\xfc\x94\xfc\x66\xfb\xaa\x6b\x47\x19\xcd\xac\x03\x94\xf2\xff\x58\x09\x4b\xfb\xb7\x01\xb0\x2e\xc6\xd2\x1a\xbb\xd5\xb5\x6e\x8a\xb1\xae\x00\xb9\x32\x62\x7f\x1d\x68\xa9\x49\x73\xcf\x5b\x45\xe1\xd6\x58\x85\x8e\x19\xd1\x00\xdd\xd3\xa9\x15\x86\x55\xc9\xd2\x9a\xed\x42\xef\x17\x5a\xa6\xd6\x0d\xad\x6d\x2b\xa6\x75\xbd\x4b\x4b\x14\x42\xbb\x5f\x87\x42\x07\x9e\x6f\xcc\x8b\xd6\x46\xf1\xa2\x65\x4c\x8a\x3b\x54\x0a\x27\xc1\x6f\xc3\xe1\xe8\x84\xf7\xcc\xe3\xbb\xd8\xdc\xf4\x77\xd8\xde\xa1\x04\x73\x3c\x3c\x7d\xe9\xb6\xf8\xd9\x4a\xdc\xe5\x43\xed\x51\xec\xfc\xd8\x2a\x8f\xd5\x29\xb6\x06\x11\x6c\xb5\xb9\x95\xf2\x3d\xc5\x61\x55\x10\x5f\x4f\x0d\x9e\xe2\xe8\x82\x12\xcd\xff\xd6\x57\x82\xa7\xb8\x92\xc3\xd1\x5e\x5a\x2d\xc1\x3d\xc9\x9a\x35\x7d\x35\xb0\x88\xa5\xa2\x8f\xff\x6b\x89\x32\x1e\x90\x70\xc4\xea\x46\x02\x12\x89\xf2\xed\x96\x7b\x13\xc2\x41\x42\x4e\x3c\x09\xc5\xa3\x53\x4f\xc2\xf1\x2e\x61\x7f\x7b\x13\x32\x9d\xca\x5a\x53\x46\xe7\x9e\x12\x98\xfa\x9e\x27\x77\x80\xa7\x56\xb9\x47\x78\xe2\xf9\xbd\x55\x1b\x6f\x2d\xe9\xca\xa2\x12\x5b\x4f\x62\xb2\x5b\x74\xad\x94\xe2\x29\xa1\xb9\xb7\x4b\x16\x98\xd3\x09\x8e\x27\x4b\x06\x6f\xd8\x7e\x73\xf3\x56\x1e\x2c\xc2\x97\xfe\xa0\xff\x84\xfb\x89\x3f\x68\x65\x80\xc5\x66\x3d\x94\xa7\x49\x57\xd7\xcd\xb4\x99\xbe\xb1\xf2\xd3\x5a\x5a\x30\x86\xd4\x07\xfa\x85\xe8\x7f\xd8\xfb\x74\xb8\xfb\xf5\x60\x77\x7f\xef\xe0\xe8\xeb\xeb\xb7\x87\xdb\xaf\xde\xef\xbe\x7e\xe9\xb7\xa6\xe2\x94\x74\x0b\xfd\xa4\xbd\xc2\x82\x92\x5c\x60\x16\xb6\x0f\x06\x5d\x60\x75\x3d\x5b\x95\x7f\x42\x41\x34\x56\x11\x2a\x15\x54\x17\x47\xaf\x1a\x6e\xaf\x82\x5e\x5d\x01\xed\x07\x71\x1b\xd4\xba\xdd\x7d\x15\x5e\xd7\xe5\xf4\xef\x65\x84\xe0\x35\x4e\x9e\xea\x71\x59\x46\x17\x6e\xc7\x58\xbd\xc5\x1e\x11\x51\x73\x13\xa8\x99\x36\xf7\x05\xd4\x68\x43\x94\x61\x2e\x28\x6b\x4c\x55\x61\x48\x25\xfa\xd3\xfe\x38\x43\xf3\x85\x8a\x8f\x1b\x0d\xea\xb6\xe8\x26\x68\xeb\x50\xb1\x92\xb2\xb6\x7a\xe5\x74\x34\x50\xe9\x22\x86\x26\xe2\x57\x99\x87\x72\xa7\xb2\x12\x20\x2e\x7e\x54\x00\x7a\xc1\x6e\x6e\xcc\xdf\x69\xca\x36\x37\x4b\xef\x87\xb0\xee\x92\x57\x5b\x52\xa6\x5e\xba\x31\x68\x5b\x57\xf0\x1c\xa5\xfa\xdf\x33\xb5\x1d\xe7\x7a\x37\xf4\xe1\x2a\xe5\x89\x32\xf9\x6c\x51\x9e\x68\x73\x6f\x5c\x38\xfa\xc9\x7d\xad\xda\x7d\xed\xda\x0f\x4e\xd0\x2e\x25\x88\xea\xa0\x6b\x41\x55\x32\x70\xe8\xb7\x83\x8d\xd4\xe4\x21\x82\x58\xd6\x76\xc0\x5b\x70\xe6\x1f\x63\x92\x35\xa5\x7a\x87\x24\xf9\x0b\x6e\xb2\xfd\x96\x60\xd2\xa1\x1d\xe7\xd6\x36\xd9\xc5\x2d\xab\x2f\xac\x86\x7f\x38\xbc\xce\xc7\xd5\xc5\xf4\x35\x30\x5e\xf2\x8d\x51\xf8\x90\xc8\xb9\x9d\x2c\xf5\xa0\xb8\x5d\x74\xb1\x83\xdc\xae\x12\x86\x7f\xc1\x6d\xa3\x74\x6e\x98\x22\xcb\xd3\x1d\x07\xa9\x51\xea\x1c\xa5\xdd\x7b\xed\xfe\x8d\x2b\x6e\xb0\x25\x3a\x26\xea\x9f\x6a\xa9\x42\x1c\xc0\x9d\xa3\x59\x5f\x61\x50\x6d\xa0\x43\x1e\x14\x81\x60\x09\xad\x98\x30\x73\x33\xdb\x6d\xeb\xbe\xd2\x6f\xdd\xed\x0d\x3f\x4f\x07\xcd\x2c\xec\xdb\x42\xe0\xf9\x42\x78\x82\x7a\xba\xb5\x77\x86\x26\x9e\xce\x71\xe0\xf7\x0a\x49\x0b\x57\x83\x95\x9f\xeb\x9d\x61\x7b\x32\xd6\x88\xd1\x48\x3d\x06\x26\x3f\xcb\x79\xae\x22\xf9\x48\xb2\xbc\x18\xa8\xc0\x3b\x35\xcf\x11\x4d\x15\x87\xf9\xb9\x9b\x6b\x0a\x2b\x5a\xa3\xa5\x1a\x29\x3c\x54\xb4\x9f\x75\x3c\x1c\x91\x17\xe9\xa0\xf0\xaf\x2d\xbe\x1f\x93\xd3\xe7\x38\x1c\x91\x38\x0e\x6b\x0d\x41\x71\xd1\x64\xc9\xd6\x30\x9c\x18\xad\x98\x20\x13\x9e\xfc\x67\x66\xc8\x64\xa7\xe8\x9c\x22\x13\x70\x60\xe4\x5e\x7d\x29\xb6\x93\xb6\x94\xc2\x89\x9e\xd4\xe7\x03\x15\x3a\x49\x80\x2b\xb9\x18\x19\xf3\x35\xa8\xed\x08\xca\xc4\x62\x6b\x8b\x17\x0e\x43\x9a\xf8\x69\x4a\xe4\x51\x19\x2a\x5f\x79\xb3\x66\x14\x14\x78\xa9\x61\xa1\xfe\x56\x19\xc4\x02\x3c\x96\x83\x30\x12\x71\x7c\x6b\x07\x47\x34\xb3\x31\x23\x53\x70\x3e\x0d\x44\x39\xca\x4a\xf7\x8b\x25\x9f\xf5\xd1\x62\x61\x6e\x9a\xb5\xef\x11\x0f\x23\xc0\x4c\xc7\x44\x44\x57\x01\xfc\x8c\x45\x34\xd0\xa6\x10\x12\xd9\x17\x03\x65\x0b\xf8\x3c\xed\x18\xa3\xb1\xb8\x2b\xa3\x2b\x3a\x5d\xa8\x8a\x00\x4c\xb9\x1b\x18\x5f\x64\x64\x8c\x9d\xd8\x9a\x95\x4c\x23\x5a\x5b\x96\xcb\xbc\x24\x45\x2e\xc9\x95\x52\x35\xae\x5e\x4a\x6f\x0d\x9f\x51\x51\xa8\x54\x50\x69\x11\xde\x9a\x5d\xf6\xf9\x48\x9d\x35\x07\xf8\x5c\xae\x46\x70\x14\x00\xe5\x50\x79\xea\x16\xd2\x50\x40\x5a\x85\x5b\x15\x15\x88\xce\x1d\x52\xba\x7d\xf9\xaf\x44\x65\x0a\x5a\x85\x0f\x55\x6f\x37\x6f\x2a\xb4\x5a\xa0\xe9\x8c\x05\xcd\xd5\xd9\xdd\xc3\x3e\x3a\xc7\x9f\x16\x2d\x57\xdf\xda\x6d\xac\xe2\x3f\x3f\x5a\x35\xb4\xca\x7e\xb4\x15\x3e\xc3\xd5\x18\xbd\xa6\x97\x6d\x3a\x89\x9f\xc3\xa9\xd7\x2a\xa9\x76\xe2\xf4\x9e\xe4\x7f\x19\x95\xd6\xe8\xfa\xaf\x23\x47\x6b\xe7\x97\x64\x81\xb5\xcb\x7b\x33\x6b\x62\x0b\x8f\x1b\x34\x35\x7e\x95\x5c\x60\xc7\x8e\x0b\xbc\xfb\x92\x7e\xda\x9f\x52\xb6\x8b\xc6\xb3\xa0\x19\x67\x09\x57\x59\xfb\x8b\x41\x19\x79\x42\xa9\xa2\xd4\x06\x1f\x14\x91\x0d\x40\x8e\x97\x1b\x33\xc0\x61\xf5\xa1\xb5\x54\x9d\x35\x84\xa6\xe6\x50\xaa\xd9\xad\xda\x2e\x4e\xb8\x99\x2a\x01\xfa\xdf\xce\x32\x87\x17\x59\x8b\x7f\x59\x89\xb1\x83\x62\x6b\xe9\x41\x8c\x79\xbe\x0b\x5c\x9d\xd8\x6b\x3e\x2d\x55\x40\x36\x0c\xed\x1b\xaa\x8e\x8a\x99\xbe\x21\xf5\x85\xa8\x81\xa1\x53\x71\xa0\x0a\xda\x36\x81\xa9\xd1\x20\x6b\x97\xaf\x63\xf1\x94\x6d\x59\xe0\xa7\x1b\xf5\x5c\x0e\xd6\xc7\xb5\x69\x5a\x33\xf6\x5e\x9f\x72\xae\x86\xab\x0f\x9f\x82\xce\xc6\xd0\xa7\xfd\xba\x3a\xa5\xec\x12\xb1\x89\x5e\x4b\x1d\xb9\xf2\xda\x94\x2c\xea\x6e\xae\x62\xf5\x38\x25\xc8\x91\xe8\xf5\x42\x23\xbb\x94\xe2\xa3\x38\x7d\x51\xe8\x3f\x2f\x28\x99\x78\x55\xcc\x95\xb8\xd8\x6c\x14\x56\xa4\xaf\xee\x7b\xf4\xa8\x1d\xa4\x43\x89\x10\xad\x75\x35\x27\x2d\x74\x94\x6c\xed\xcf\x21\x64\x9b\x18\x2e\x5e\x48\x1a\xc7\xb1\x93\x96\xcf\x7f\x8c\x96\xce\x7a\xed\x47\x0b\x16\x8d\xe1\xe1\x72\x7c\x6b\xa0\xfe\xdd\x85\x7b\xa9\x08\x1f\xad\x3b\xb4\xb2\x0f\x23\xf7\xf5\x86\xd1\x20\xc2\x5a\x3c\x6b\x7c\x1e\xa8\x8f\x1d\x1a\x1b\x3d\xb0\x6d\xd1\x54\x35\xfe\xf8\xdc\x41\xe0\xe6\xbd\x69\x80\xc3\x51\x3c\xdc\x28\xa2\x9c\x34\xb1\x8f\x5a\x69\x5e\x3f\x06\x9a\x31\x99\x6b\xe4\x36\xe7\x69\x23\xb0\x40\x87\x4e\xa9\x76\xa0\xb4\xcc\x2e\xbe\xb9\x19\x44\xe5\x35\x51\x25\xdd\x62\xa9\x48\x45\x3c\x8c\x03\x29\x0d\xfd\x3b\xe9\x91\x11\x7b\xee\xdc\x61\x23\xd6\x4b\x89\xc9\xd1\x61\xba\x0a\x98\xc9\xf5\xd2\x08\x83\xd0\xfa\x5c\x2c\x30\x5b\x30\xec\x48\xef\x7c\x21\xca\xaf\xc1\x5a\x3a\x8e\x96\x3e\x26\x78\x4c\x19\x72\x19\x3b\x41\x14\x08\xdc\x3c\xe5\x4d\x0b\xab\xdb\x4e\xe7\xc1\xc6\xb9\xd7\x70\x46\x6c\x79\x94\xad\xb9\x10\x76\xc1\xe9\x7a\xdb\x75\xf8\x10\x76\x81\x2a\x3c\x13\x5b\xc0\x59\x86\x87\x0d\x30\x85\xed\x62\x77\xdb\x32\xf0\x94\xab\xb1\xb2\x60\x0c\xed\x14\x7b\x2a\x33\x37\xfc\x86\x3f\x1b\xe1\x25\xec\x27\xec\x06\x60\xc7\xeb\x77\xcd\xf7\xa1\x00\xd2\xb0\x9a\x6d\x00\x6b\xda\xde\x86\xf5\xe6\x0e\x2b\xd7\x16\x30\x2d\xe6\xb3\xc5\xd8\x8b\xc0\x23\x2e\x41\xbe\xb4\x7f\xa8\xd5\x56\xb9\x02\x69\x0e\x49\xfd\xaf\xc4\x1c\xe7\xcb\xa6\x8a\x77\x63\x78\x6b\x3f\x11\xd2\x1c\xde\x90\x2a\x81\x3b\x1c\x6f\x82\x95\x44\xc4\x41\x38\x22\x8e\x44\xff\xf0\xe2\x33\xa1\x97\xb9\x2f\xe5\xeb\xd6\x1a\xcb\x45\xf7\x77\x88\x11\x58\xe6\x75\xaa\x84\x70\xb1\x03\x92\x0a\x27\x08\x58\x26\x45\x60\x98\x37\xf2\xd7\x0e\x84\x0e\xb4\x46\x18\x6d\x0c\xc2\x0e\x04\xd4\x10\x2c\xc2\x59\x81\xa4\x56\xc3\xad\xde\x22\x5c\x9d\x9c\x65\x4b\xb6\x12\xc3\x61\x18\xba\x43\x5b\xd7\x93\x8b\xc2\x73\x5e\x38\x62\x95\x48\x64\xf7\xf4\xe1\x15\xe7\x74\x82\x8f\xd5\x2e\xf2\xa7\x28\xe3\xd8\x3f\xf5\xbe\x7b\xde\x19\xbd\x92\x1b\x83\xe4\xe7\x89\xa7\x8c\x27\xe3\x33\x7a\x35\xf2\xbc\xba\x9f\x75\xe2\x09\x86\x72\xae\x22\xe7\xdb\x49\x5d\x3d\xd3\x4e\x2b\x44\xb7\x16\x57\x65\x19\x20\x95\x78\x9c\x66\x64\x32\xba\xed\x5f\x8e\x01\x0f\xd9\xb1\xf6\x00\x4f\x3c\x92\x67\x24\xc7\xf1\x59\x46\xc7\xdf\x46\x9e\x27\x91\x8f\x51\x46\xce\xf3\xc4\x1b\x63\xc9\xe0\x47\x9e\xd1\xb5\x8e\x51\x36\x0e\xec\xa7\xc5\xaa\x61\x4a\xe8\xfd\xe2\x6d\x85\x23\xcf\x03\x80\x46\xfb\xe7\xac\x6f\xd2\x14\xde\x26\x8c\x52\x21\xf1\x71\x83\x4c\xbc\x7b\x8e\xc7\x07\xb7\xb5\xcb\xc8\x01\xa4\x54\x41\xae\x80\x52\xda\xb9\xd8\x60\xd4\xd4\xa9\x84\x7c\x72\x1a\x12\x6f\xd0\xfa\x99\xd1\xcb\xea\x67\xe5\xca\x5c\x79\x6d\x4e\xbc\x41\xff\x09\xb7\xea\x34\x1e\x6f\x13\x98\x80\xb6\x1a\xfa\xf5\x36\xf1\xf4\x01\xde\x56\x4f\x4f\x7b\xf7\x33\xf1\xe8\xf6\x7f\x7c\xc3\xd7\x53\x86\xe6\x98\x7b\x80\xac\x9c\x07\xb0\x00\xf8\xee\xd1\x05\x1a\x43\xa6\xe1\x61\x7f\x30\xf2\x6e\x3d\x4f\x50\xbb\x74\x00\xa5\xb7\xfd\x72\x8c\xb2\x2d\xca\xc9\x5c\x45\x23\xc8\xd1\x1c\x27\x0a\xe8\xc8\x2e\x2f\x09\x61\xe3\xe6\xa0\x54\x58\x69\x46\x04\x56\xc5\x31\xe4\xb7\x91\x8b\x76\x4a\x72\x22\x70\xa5\x96\x20\x73\x92\x9f\xc7\x86\x5f\x24\x1e\x46\x1c\xc7\x04\xfc\x3a\xaa\x58\x10\x86\x75\x95\xe2\x5a\x38\xba\xf5\xeb\x4c\x7c\x86\xd1\xa4\x12\x15\x9f\x85\xcd\xe0\x4f\xdd\x4c\xc1\x4a\x11\x6d\x1b\x4b\x97\x11\x8a\x0a\x07\x05\xf5\xd9\x6f\xd6\x1d\x67\x88\xf3\x8f\x68\x8e\x53\xdf\x62\x25\x8e\x8a\xab\x13\x4a\xab\x4c\xd2\x6b\xec\xe2\xca\xd7\xfa\x26\x08\x43\x95\x99\xba\x1d\x8e\xde\xdd\x9d\x80\x18\xbd\x0c\xc3\x51\xc1\x85\x14\xfb\xd1\x7b\xbe\x03\xb9\xd1\x5a\x6c\x25\xbe\xc4\x67\xdf\x88\x88\x81\x65\x6a\x2a\xe8\xb5\x1b\x35\x38\xab\x37\x1c\x0c\xe6\x1c\x98\x16\x62\xa3\x78\x4e\xff\xf8\x91\x76\x7e\xd4\xb8\xdd\x51\x87\xd4\x51\x09\x1b\x10\xfe\x9c\xa2\xa6\xfe\xd4\xec\x14\x42\x1a\x39\xd0\xac\x25\x53\x39\xd9\x5f\xc9\x19\xc0\x77\x5d\xd5\xcd\xb6\xd6\xe2\x56\x3c\x67\xc2\xd0\xb9\xf6\x12\x54\xa7\x0c\x66\x7e\x6b\xe3\x35\xb3\xa2\xc7\xcf\x9e\x2d\xae\x5a\x56\xcf\x70\xb0\xb8\x2a\x96\x09\xfc\x68\xec\xec\x96\x14\xd1\x0d\x74\xd6\x10\x7d\x8e\x6d\x51\xa5\x94\xab\x6c\x09\xca\x07\xdf\x4c\x3f\xf2\x27\x67\x99\xfa\xd3\xad\x3a\x6d\xa3\x49\x43\x70\x29\x93\x6d\xda\xfb\xbf\xa3\x5a\x39\x72\x67\x25\x87\xbe\xb5\x13\xf0\x9a\xd2\x59\xfd\xa2\xe0\xd4\xeb\x62\x71\x80\x2f\x30\xe3\xf8\x33\x99\x60\x1a\x6c\x0c\x1d\x34\xd7\x81\x3d\x1d\x17\x9a\x7a\x6a\xe7\x56\x63\x0b\x23\xaa\xb7\x59\x5a\x14\x14\x6a\x55\xdc\x49\xc9\xad\xeb\x99\xa7\x88\x3e\xda\x86\x82\x0e\xb2\xdb\x7c\x52\x15\xed\xea\xfa\xb0\x69\x76\x54\x54\x39\xc6\xa7\x8d\x57\x55\x07\x88\x91\xcb\xba\x8a\xd1\x4b\x0e\xe1\x43\x8e\xc5\x69\x27\xc6\x6a\x1f\x56\x4d\x0b\xca\x37\xec\xe3\xd3\x88\xa5\x78\xc4\x9e\x8b\x11\x33\x79\xd6\xb8\xfd\xf8\x0a\x97\x14\x26\x6f\x29\x60\x8c\xcf\x6d\xd9\x38\x8c\xd8\x73\x11\x0f\x37\x37\x37\xa0\xb6\x15\x8b\x09\xe4\x47\xa3\x03\xf4\xc3\xcd\x4d\xdd\xdc\x3f\xc9\x7d\x13\x99\xde\x23\xfd\x7f\x50\x92\x07\x7e\x97\x5d\xb2\x7e\xb8\x75\xa5\x95\xa8\x23\x89\x43\x1b\xb7\x4e\x90\x2a\x35\x77\xa7\x6d\x58\x7d\x12\x7a\x6e\xea\xeb\xaf\x2d\xbd\x59\x4f\xa1\x5d\x1a\xc0\x36\xa8\xd5\xdb\x63\x13\xa3\x88\xa5\x83\x11\x7b\x8e\x1b\x53\xd7\xca\xf7\xaf\xe4\xa9\xed\x87\x23\xde\xe4\x9d\xf5\x36\x92\xec\x40\x57\x5f\x1e\x57\x56\x5a\x3d\xd2\x63\x55\xd5\xaf\x9c\xd9\x03\x7a\x19\xf0\xf0\xd6\x11\x0a\xbe\x3e\xa8\x96\xf7\xca\x11\x99\x06\xf4\xc5\x40\x0d\x23\x6f\x7b\x7f\xa7\xe1\x48\xc1\x2a\x69\xbc\xea\xe9\x3d\x77\x3d\x32\xd9\x79\x64\x8c\x21\x88\x51\x7c\xc1\x17\x08\xea\x1c\x84\xb7\x26\x9d\x4c\xdb\x68\x20\x99\x4b\xf7\x78\x87\x25\xa3\xdc\xd6\x47\x60\xcd\xdc\x4e\x44\xad\xcf\x0d\xf2\xfc\x69\xe6\xa4\x8c\x88\x36\x93\x88\x78\x54\x27\x37\x36\x4d\x60\xab\x57\xdf\xef\x95\x1b\x2e\x7c\x24\x11\x0d\x23\xfc\x9c\xbc\x0c\x58\x8a\x23\x9e\x92\x9e\x08\x93\x80\xa5\x24\xe2\x29\xee\x15\xe1\xca\x2b\x8f\x7d\x2c\x72\x06\xb2\xd5\x84\x7b\xbb\xce\xcb\x9d\x05\xae\x31\x22\xb3\x2b\x58\x4a\x4c\xda\x56\xfd\x7a\xc9\xbb\xf6\x41\x44\x53\x3c\xa2\xcf\xc5\x88\xf6\x7a\x21\xb3\x18\x23\x3d\x2d\x17\x2d\xef\xd1\x16\x9c\x16\x8c\xe4\xc2\xb9\x3b\x59\x3a\x90\x3d\xf7\x2f\xc7\x7d\x2e\x94\x81\x5c\x80\xc3\x11\x7b\xce\x47\x75\x5f\xce\x4b\x86\x16\x08\x24\xcb\x62\x35\x75\x3e\x8b\x34\xcc\x26\xe9\x7c\x4e\xc4\x7b\x92\x63\x63\x03\x69\x0e\xcb\x1c\x5f\xca\xe2\x40\xeb\x30\x68\x94\xa7\x3c\x66\x11\x4a\x37\x86\xa3\xd5\x2a\xf6\x5e\xfe\xa2\xcd\x88\x2c\x40\xe9\xc6\x20\xca\xdd\x9f\xe3\xd5\xa0\xc3\x08\x6d\x6e\x6e\xb4\x91\xe1\x65\x40\x35\xe5\x96\x67\x5c\x48\x21\x85\x45\x79\x3c\x0c\x7b\xd5\x42\x2e\x77\x47\x9e\xf2\x30\x71\x54\x57\xc9\x61\xe5\xa8\x67\x10\x8a\xb7\xea\x82\xb7\xc8\x88\xf8\x42\x26\x58\x5e\x1d\x94\xff\x58\x40\x8b\xa4\xa1\xe6\xe4\xcc\x7a\xbd\xb0\x32\x94\xda\x9b\xe1\xe5\x18\x0e\xf4\xd9\x71\x76\xaa\xff\x8e\xba\xaa\x23\x3e\x26\xa4\x6c\x51\xfc\xac\x3d\x87\xaa\x6d\xf6\x81\x4e\xf0\x4b\xc7\xf6\xd3\xc8\x02\x04\x2e\x98\xb6\x1b\x34\x75\xe4\x0a\x81\x80\x39\xf5\x6a\x9d\x88\xe9\x71\x14\x61\x6b\x57\xa1\xbf\x31\xa8\x2e\x9e\x39\xba\x3e\x83\x48\x3c\x3b\x45\x3a\xc2\x20\x8c\x58\x2f\xcd\x6f\x57\xbf\x0a\xd8\x2c\xa1\x08\xb2\x50\xee\x83\x3f\xc7\x8c\xa6\xfe\x86\x5b\x93\x68\x06\xe0\xb7\x65\xec\xee\x1d\x96\x27\xda\x62\xf4\x0e\x61\xa2\xc3\xc4\xd1\x04\xbb\xeb\xb7\x5a\x4b\x9e\x97\x78\x1f\x55\x5f\x39\xb5\xc8\xa1\x0c\x5a\x1b\x1d\xbd\x6c\x94\x24\x6d\x2f\x3c\x56\x17\xf5\x7c\x6a\x5d\xbd\x68\xd4\x5f\xba\x0a\x93\x36\x2a\xb6\xa0\xa0\x99\xd4\xdd\x1e\x01\x19\xbd\x4c\x57\x1d\x9d\xa3\x55\x88\xaf\x84\x5d\x6f\x55\x9d\xd3\x4f\x8b\x60\x8d\xe3\xb9\xbb\xa3\x68\x10\x86\x89\xd9\xe9\x3f\x01\x24\xf9\x39\x08\xbd\xa1\x84\xa1\xf1\xb0\x6d\xf0\x86\x7f\x0a\xe4\x96\x99\x97\x82\xfe\x1b\x8c\x27\x3f\xf2\xfe\x3b\xaa\x1e\x70\x4d\xf5\xcb\x72\x9e\xb7\x7b\x43\x4f\x29\x9b\xd7\x7b\xae\xb2\x61\xb4\x14\x74\x07\x31\x46\xd0\x39\x3e\x80\x7d\xf0\xb2\xda\xa3\xa2\x8b\x19\x42\x87\xd4\x02\xd7\xdb\xf7\xdd\x43\xad\xee\x74\x39\x9c\x55\xab\x7f\x24\xd2\x54\xcf\x97\x3a\x19\x64\x0f\xbc\x7d\xbe\x24\x53\xee\xb0\xa1\xc3\x0c\x71\x7c\x44\x21\x3a\x48\xcb\x6c\xd8\xc6\xb7\x4e\x6a\xd7\xd3\x12\xd6\x4f\x23\xd1\x9f\x82\x55\xf6\x8c\x08\x0c\xb1\x4f\x0b\x27\x91\xde\x30\x74\x5a\x72\xb6\xce\x9f\x46\xf7\xa0\x61\xe2\x5f\x26\xf4\xef\x96\xa1\x2a\x96\xc2\x3f\x20\xc0\x48\x41\xf7\x65\x61\x45\x8b\x23\x16\x26\xac\x66\x67\xde\x38\x41\x4b\x0d\x62\x5a\xe3\x5d\xb5\x8a\xaf\x77\xdf\x6c\x7f\x7a\x7f\xf4\x75\x67\xef\xfd\xde\x41\x11\x24\xb3\xe5\x02\xdf\xbd\x4c\x4e\x21\x7c\x67\x5d\xfe\xc9\xe9\x44\xd9\xe0\x07\x34\x7c\xbe\xc6\x66\xeb\xf1\xba\x26\x02\xea\xaa\x64\x64\x3b\x33\xc4\x78\xc0\xc3\xa8\xb4\x18\x71\xb8\xe5\x04\xea\x7e\x97\xb7\x2e\xa6\xb5\x17\x0d\x77\xaf\x95\xdc\xb6\xa4\x6b\xf4\xdd\xb5\x8e\xba\x4e\x9f\x56\x3c\xad\x6e\x0e\x4a\x81\xbb\xbe\x7c\xbb\x50\xea\xc0\x68\xfb\x8c\x5e\xac\x8f\x92\xb5\x77\x83\x52\xec\x35\x09\xdd\x80\x57\x14\x92\x6c\xe7\x35\x32\xea\x1c\xe1\xe8\xcf\x1c\xe1\x2b\x5c\x73\xd5\x5a\x67\x84\x07\xda\xa0\xd4\xa9\x01\xa9\x88\x1a\x11\x49\xb1\x3a\x7d\x46\xe4\x79\x2a\x46\x64\x35\x01\xc8\x3f\x8d\x00\x53\x92\x65\x6d\xc9\x49\x9d\x5c\xb6\x05\xe3\x41\x34\x28\x69\x41\xd2\xc1\x88\x34\x8c\x81\x8c\x7a\xa4\xd7\x0b\xad\x8b\x69\x87\xd5\xd0\x1a\x64\xaa\xdf\x26\xea\x3b\x16\x3b\x09\xd5\x2a\xe4\x16\x96\xaf\x0e\x92\xe0\xda\x55\x9e\xa4\xa2\x62\x59\xac\xd2\x93\x57\x6e\xff\x72\x70\x44\x0d\xc4\xe1\x9b\xc8\x60\x92\x1d\x33\xeb\xa8\x2b\xc9\xdb\xc6\x37\x00\xc0\x9a\x08\xbb\x1d\x65\x47\xe5\xb2\x51\x66\xbf\x12\x2f\x87\x33\x25\xc8\x77\xc4\x5c\x9b\xdb\xc3\x7a\x18\x09\xa0\x75\x61\xb5\x4b\x8f\xa4\x21\x83\xe8\x1b\x56\x18\xb1\x94\xc4\x22\x0e\x70\x6a\x1d\x75\x24\x16\x61\xd8\x1b\x8e\x98\xbe\xa5\x15\x5a\xa6\x40\x44\x2c\x12\x3d\x5c\x2e\x4a\x9e\xe2\x78\x38\xe2\x2f\xd2\xc1\x88\x1b\xd7\xa5\x0e\x16\xd4\xe3\x2b\xf7\x60\xab\x11\x99\x3c\x89\xba\x09\x60\xed\x2c\x98\x17\x39\x74\xd6\x3e\x74\x9e\xb2\x98\xf4\x86\x11\x4d\x59\x8d\x00\x1c\x86\x8f\x37\x52\xde\xa0\x00\x89\x70\x44\xcb\xf1\xe7\xe9\x60\x94\x3f\xc7\xa3\x7c\xf5\xbe\xa2\xbd\xfc\x87\x18\x90\xf8\x01\x06\xa4\x55\x09\x10\x7e\xde\xe1\x3a\xdc\xa0\x96\x72\x10\xae\x89\x6e\x37\x37\x75\x57\xe0\x8a\x86\xa2\xce\x25\xdc\x4a\x02\xc7\x80\xc8\x0f\x0c\xc8\x12\x44\x5a\x07\xe4\x90\x59\xb0\x0a\x6e\x6e\x34\x51\x2d\xd2\x18\xe1\x65\x6e\xe1\x8a\xd4\xb8\x52\x20\x76\x0b\x97\xf5\x4c\xe9\x15\xb2\x35\x09\x4d\xdc\xe2\x0e\xd3\xd6\xb7\x77\x21\x53\x79\x71\xfd\x89\xe3\x07\x2e\x12\xae\x3b\x8b\x79\x6c\x2c\xb7\x62\x71\x3a\xae\x79\x14\x18\xfc\xaa\xbe\x34\x3f\x7e\x40\xba\xaf\x56\x83\x32\x40\x53\x71\x6d\xba\x23\xa2\x0d\x3e\x5d\x53\x28\x55\xaf\x92\x94\x91\x73\x92\x5b\x1a\x3d\x2c\x0e\x70\x86\x04\xb9\xa8\x23\x2c\x1b\xaf\xba\x6f\x77\x78\xd7\xb6\x02\xb6\xd1\x23\x75\x27\xc9\x0a\x75\x46\xd8\x0e\x06\xd0\x63\x91\x7e\xae\x71\x70\x48\xc5\x45\x4d\x5d\xd2\x11\x31\xa0\xe9\x65\x5b\x1f\x52\xbb\xcb\x5e\x1b\x1d\x6a\x43\xaa\xa0\xdd\x19\xed\xe0\x9f\x83\xb4\xcd\x07\x1c\x51\x29\x7e\x58\xd3\xd3\x15\xdf\xcd\xdd\xe7\x7a\xd1\x3b\xa0\xd1\xba\x73\x70\x60\x8b\xee\xab\xc7\x84\x3b\x9d\x3d\xba\x25\x9b\x62\x58\x07\xd5\xeb\xc2\x1a\x63\x62\xf4\xb2\xd5\x6b\xcf\xb6\x1b\xf8\x6a\xc3\x2d\xf4\x07\xa5\x0b\x92\x4a\xec\x6f\xdf\x50\x46\xce\x1a\xa9\x3b\xcf\xa9\xce\xd8\x8d\x1b\xf5\x23\x5c\x73\xc3\x03\x64\x74\x02\xd3\x15\x98\x5b\xef\x8c\x2b\xb0\xe7\x45\xcd\xae\x11\x94\xb5\xd6\x1f\x45\xd9\xa6\x36\x92\xa6\xaa\x1e\x37\xf4\xf4\xc3\x0e\xd9\x1a\xa6\xb1\x76\x46\x35\xc3\x62\xc8\x8e\x83\x58\xc9\x21\xad\x77\x8b\xa2\x66\x35\xbb\xab\x94\xd3\x87\xb6\x6f\x53\x2b\xaf\xae\xf3\xc7\x64\x60\x64\xc6\x75\x9a\x18\x56\xd9\xaa\x12\x87\x27\x42\xc3\x8d\x56\x69\x52\x71\x24\x2f\x5f\x1d\xc7\x32\xef\xa6\x43\x55\xb9\xa7\x95\x65\x41\xa0\xa8\x11\x3e\x1f\x86\xeb\x5c\x18\xb4\xf6\xb5\xc8\x37\x6e\xa8\xa0\xf5\x9c\x5f\x8a\x47\xbc\xd2\xfd\x68\xf5\x73\x26\x8e\xe3\x0e\xa1\x2f\xda\xc0\xa1\xf1\x59\x5a\xed\x8f\xc6\xe8\xe5\x28\x60\xa9\x88\x71\x08\xb9\xe3\x03\x92\x92\x18\xa4\xf7\x69\x46\xe5\x8d\xfd\xbe\x93\xe3\x87\xf1\x50\xd5\x27\x2d\x4a\x85\x1e\xf9\x77\xf7\x87\x30\x6a\x51\x23\xf6\x58\xa3\x85\xea\xaa\xa6\xac\x2e\x18\x65\xe9\xdf\x2f\x85\x14\xa6\x9c\xfb\xf5\x69\x5d\x7c\x13\x31\x96\xf7\x7e\xa7\xc0\xc9\xc2\xdb\xee\x5d\xe5\x56\x98\x36\xd7\x00\x59\x73\x59\x6a\xf5\xa0\xeb\xc4\xad\x85\x0b\xaa\x61\x4a\xda\x59\x5c\xd5\x24\xac\x23\x06\x32\xb3\xab\xe1\xc8\xc4\x75\x59\x11\x21\x15\xea\xb4\xb8\xde\xd4\xec\x32\xbb\x03\xe0\x36\x00\x35\xb2\x77\x84\xa1\x79\x06\xbc\x2b\x4e\x0e\x50\x3f\x86\x93\x63\x70\xad\x2f\x15\x24\x3f\x7f\x85\x6d\xd5\x54\x25\xce\x51\x57\x40\xe8\x06\x6a\xcd\x68\xb3\x3a\x25\xb8\x3e\x7e\xc8\x34\x70\x9f\x33\x78\x9d\xf0\xd3\x1d\x26\xb5\xb7\xd1\xd6\x60\x10\x46\xea\x14\x3c\xc3\x59\x76\xf8\x5f\x4b\x9c\x8d\x67\xba\xab\xaf\xc6\x76\xc2\x4a\x04\x78\xde\x48\x04\x18\xbe\x6c\x54\x5a\x64\xa8\x70\x53\x02\xb0\xb8\x0a\xb7\xfb\xd8\x6c\xc3\xc6\xb6\x88\x8c\x1e\x0d\x06\x61\x98\xac\x68\x61\xee\x58\xee\x1c\x7d\xe6\x26\x6b\x19\xb1\x23\xfe\x46\x59\x26\x16\xdc\x9d\xe8\xd8\xe6\xe6\xfe\xe4\xcc\x72\xab\x2c\xee\x40\x29\x45\x73\xb0\x5a\x4d\xab\xb3\x94\x51\x50\xe2\x56\x5a\x72\x29\xbd\x74\xec\xeb\xbd\xe2\xa4\xec\xd8\xd5\xe5\x71\x5a\xf8\xfe\xb9\x55\x73\xad\xdd\xbc\x2d\x2c\x28\x3a\xba\x29\xcd\x2c\xba\xa2\x81\x6f\x37\x5e\x01\x3b\x40\x36\x9f\x0c\xbb\x40\x97\x27\x65\x07\xc8\xd2\x26\xa6\x0b\xd4\x41\xfd\xec\x5d\xcd\x34\xbf\xac\x05\x78\xdb\xb8\x47\x34\x88\xd9\x76\x23\xaf\x9d\xf9\xe6\x89\xb2\xee\x7e\x9f\x68\x46\xd5\x96\x2d\xdd\x65\x2b\xe7\xfe\x7c\x3c\x28\x0d\xb5\x36\x3a\x43\xdf\xd4\x62\x2f\xb5\xd8\x83\xb1\x96\x87\xb6\x88\xa7\x83\x11\x7f\xce\x8c\x71\x10\xef\xf5\x42\x76\xcc\x4f\x6d\xd3\x46\x6e\x14\x74\x76\x70\xad\x2e\x11\xa0\x1e\x55\xab\x45\xbe\x68\x72\xfe\xeb\x7c\xac\x24\x4c\xa3\x0a\xef\x8e\x85\xe1\x56\x6e\x38\x43\x81\x74\xc5\xe5\xad\x3a\x2a\x74\x2c\x32\x3b\xa4\x03\x8e\x36\xb0\x71\xc5\x76\x85\x75\xd8\xdc\x0c\x94\x4f\xb8\x6d\x3b\xee\xac\x19\x46\x36\x73\x6c\xa9\xe2\x42\x44\xfb\x92\x96\x41\xbb\xd6\x8d\xd7\x50\xaf\x5a\x97\x9c\x3a\x3a\x83\x71\x57\x5e\x4d\xff\x19\xa3\x2f\x63\xd5\x36\x8f\x51\xed\xc9\x92\xfa\x03\xdf\xda\xa7\xed\x36\x59\x1d\x10\x86\x7e\x7b\x0c\x0f\x2b\xec\x80\x13\x47\x2d\xc8\xab\xf6\x95\x9c\xf5\x26\xc5\xe2\x3f\x8b\x5a\x1d\xf1\x5c\x6b\x24\xf9\x81\xc0\x3e\x91\x23\x9c\xe0\x39\x16\xea\x46\x58\x54\xc3\xe1\x2a\x33\xed\x15\x37\x1d\x32\x0d\xc8\x0b\x51\x3c\x2e\x14\x71\xbe\x95\x50\x54\x3a\x5b\xf9\x91\x1f\x0f\x7d\x15\x85\xce\xb9\x59\x8b\x3d\xa2\x12\x58\x6b\x03\x85\xe6\x1a\xd0\x4e\x37\x46\x8e\x6a\xad\x90\xfa\xae\xf0\xe3\x4d\xb4\x48\x8c\x7b\xbe\xd7\xf3\xfc\xde\x7f\xfe\x5b\xd3\xab\x42\xbb\x78\x83\x2e\x61\xf1\x01\xb1\x73\x92\xdf\x2e\xae\xfe\x73\x15\xe4\x31\xcd\xfc\x75\x94\x4e\x8e\x85\x5e\x11\x06\x21\x06\xab\x1f\xf9\x81\xdf\x39\x11\xfa\x16\xe4\x47\x5e\x77\x3d\x79\x89\xf7\x43\xbf\xc5\xa1\xf8\xdc\xca\x67\x12\x84\x23\xb6\xb9\xc9\xfa\x84\xef\xd0\x2c\x43\x0b\x8e\xeb\xb6\xc1\x70\x04\x98\xea\x3b\x88\x61\x01\xb7\xbf\xf6\x68\xb1\xa5\xab\x58\xcb\x6a\xb6\xa3\x8d\x8e\xb4\x93\xb2\x63\x19\x54\xc5\x65\xe5\xe6\x1d\x42\xd4\x7b\x77\xaa\xfc\x3e\xa4\xc8\xaf\x84\xc3\x6e\x2c\x9a\x11\xbf\x24\x26\x1f\x20\xe2\xd8\x6b\x83\xb4\xbb\xfd\x21\x11\x45\x68\xcc\x2e\x1f\x40\x3f\x12\x8d\x7b\x83\x6f\xb9\x50\xc3\x77\x70\x92\x56\x3b\x52\xc5\x6e\x56\x36\x9d\xfa\xc3\x7b\x3c\x15\xaa\xd8\x07\x07\x6a\x7f\xa4\xa2\xff\x75\x61\x58\xe6\xfe\x17\x6b\x06\x15\x3d\x43\x1c\x67\x24\x37\x41\x45\x7f\x00\x69\x8d\x9d\x03\x6f\x39\x1c\x8d\xb4\xf6\x18\xfe\x09\xea\x59\x33\x67\xd2\x94\xac\x4f\x41\x59\xbc\x52\xa7\xd9\xcd\x77\x5d\xba\xcd\xa2\x45\xa7\x6e\xb3\xa8\xd5\x72\x49\x73\xb2\xfc\xa0\x38\x41\xb0\x13\x56\xa7\x96\x76\x46\x2f\xff\x4e\xe9\xfc\x0b\x62\x39\xc9\xcf\x1b\x61\x34\xd5\x38\xfe\x28\x6b\x28\x6f\x43\xf8\x84\x2b\x07\x64\xbd\xce\xfa\x9e\x99\xf5\x96\x96\x5f\xa6\xfc\x14\x5f\xaa\x6f\x7e\x4b\xed\x9a\x23\xa6\x8e\x41\x70\x96\xa1\xf1\xb7\x51\x33\x36\xc1\xbf\x4e\xa7\x5b\x5b\x5b\x5b\xa3\x22\xd0\x47\xe2\x65\x88\x9d\xe3\x91\x8e\x43\xc0\xd0\x84\x2c\x79\xe2\x3d\x5d\x5c\x8d\x2c\x27\xf2\x27\x8f\x46\x0b\x34\x99\x40\xf4\x83\x41\x7f\x0b\xcf\xbd\x41\xff\x11\xfc\xb7\xf8\x5b\xf9\x7b\xaa\x3f\x99\xf6\xe9\x94\x5f\x47\x0e\xd7\xd0\xc2\xed\x17\x5f\x29\x2c\x62\x34\xf9\xc7\x92\x8b\xc4\x93\x47\x5a\xf1\x19\xc2\x9c\xa8\xd4\xc7\xe6\x0b\x38\xfd\xb6\xb4\x92\xdf\x9a\x4d\xda\xe8\xd6\x74\x96\xd4\xde\x9f\x0d\x61\x59\x6d\x69\xd9\x4a\xbb\xdd\x94\xee\x54\xe1\xad\x7e\xdc\x6d\x80\xb7\x63\x4b\x88\xfe\x07\xcc\x39\x3a\xc7\x1f\x50\x8e\xce\x31\xeb\x33\xbc\xc8\xd0\x18\x1f\x98\x94\xa7\x3c\x20\x36\x04\x5d\x3b\x3a\x2e\x92\x7b\x0f\x07\x83\x5f\x56\xb0\xa7\x32\xa2\x79\x78\xda\xb6\xb2\xd4\x5a\x99\x96\x99\x35\x1c\xea\x2c\x3b\x5f\x86\xbe\x13\x36\xe0\x94\x14\xd1\x56\x34\x10\x7a\xc6\xa2\x53\xc3\xed\xac\xb1\x85\x92\x55\x90\xf5\x29\xda\x51\xa3\x31\x1b\xcd\x5e\x3a\xb6\xfd\xde\x05\x66\x52\xfa\xa9\xbe\x07\x17\x7b\x9e\xaa\xcf\xd6\x7e\x2f\x06\x5a\x15\x8c\xad\x7a\xeb\xef\x79\xbb\x55\x7d\x07\xd7\x76\xe2\xf0\xd1\xe2\xca\xde\xae\x57\x57\xb1\xda\xb1\x77\xdc\x9e\x1d\xdb\xd0\xb1\xcf\xda\xfd\xf2\xbd\xe1\xd3\xc1\x9c\x9b\x90\x0d\x6d\xbb\xae\xcd\x3b\xbf\xd6\xda\x77\x90\x63\x3d\x2f\x66\x2c\x4f\x83\x05\xc3\xb2\x66\x61\xf5\x11\xe1\x3e\x17\x74\xb1\xcf\xe8\x02\x9d\x23\x75\x68\xdc\x46\xf2\xd6\xd8\x4a\xf5\xf2\xc4\xec\x56\xc6\xb6\xce\x9b\xf3\xf4\xed\xd6\x10\xb7\xc2\x5a\x7f\x67\x36\x21\xd8\x0c\x07\xb7\xf6\x50\x5e\x2d\xfb\x4f\x1e\xb9\xa8\xef\xde\xda\x8d\xfd\x5c\xd9\x1e\x5a\x4a\x26\xf0\x06\x9c\x11\x6c\x47\x97\x82\x0d\x13\x71\xf7\xc7\x2a\x94\x36\x9c\x05\x5d\xa4\x01\x33\x2f\x71\xdc\x28\x5b\xee\x6f\x59\xe1\xdd\x1d\xcd\x32\x3c\x15\xb2\x9d\x7a\xde\xe0\x35\x83\xf1\x95\x11\xf2\x35\xf8\x51\x69\xd3\x5d\x41\xb0\x54\x53\x37\xef\xb9\xb5\x2a\x61\xa4\x13\xdb\x08\x73\x17\xab\x55\x68\x91\x76\x68\xf7\x04\xfa\x11\xfd\x31\x40\x36\x8f\x6d\xfd\x54\x61\xae\xd5\x5a\xa1\xa3\x63\x90\x26\x57\x20\x2c\x57\x9c\xd2\xfa\xdf\x46\xe2\xe6\x66\x08\x6a\xf4\x36\x77\xcd\x6a\x56\xcd\xe2\x59\x99\xa8\x2f\x6f\x18\x9d\x17\x19\xe5\x6b\x8e\xcd\xad\x4f\xab\x74\x71\xad\x6c\xb7\x8e\x68\xd1\xb6\xa9\x1a\x73\x64\x98\x29\x73\xdc\xe7\x54\x90\x31\x96\xb7\xa8\xff\x97\xb9\x7f\xfd\x71\x5d\xc9\x16\xc3\xf0\x4f\x3f\xf8\xdb\x2f\x08\xf2\xc5\xc8\x7c\xe9\xcd\x7b\xbd\x47\x1a\x69\xb7\x48\xea\xdd\x7d\x74\xfa\x16\x29\x4a\xa2\xa8\x17\x45\x89\x92\xd8\xa7\xe7\x0c\x45\x52\x14\xc5\xa7\x48\xea\x79\x7a\x8f\x8d\xc0\x36\x72\x13\xdb\x71\x02\xc3\x36\x92\x9b\xd8\x49\xae\x73\xed\xc0\x08\x6c\xc3\xc8\xcb\xd7\x09\x30\x27\xdf\xf3\x3f\xcc\x5f\x12\xf0\x25\x51\xaf\xee\xbd\x8f\x67\x92\xbb\x71\xfa\x50\x2c\x56\xad\x5a\xb5\x6a\xd5\xaa\x55\x55\xab\xd6\x3a\xf7\xa1\x10\x9b\x52\x62\x4e\xa9\xa2\x1d\x7c\xdc\xb4\x76\xd1\xac\xee\x35\xdb\xa7\x42\x7c\xa1\x75\x73\xd2\xb0\x6c\x09\x4a\x3e\xba\x31\xa5\xd0\x6b\xc7\x27\xd7\x8c\x61\xe5\x98\x2b\x5b\x90\xbc\xa5\xc0\x99\x10\x38\x9f\x5a\xae\x0a\x7c\xdf\x8f\xd1\xa5\x18\xf7\x93\xdf\x74\xeb\xf1\x05\xde\x3a\xbe\x68\x01\x9d\x76\x2a\xf6\x3d\x6f\x08\xf3\x60\xa5\x99\x36\x0f\xaf\x5d\x7f\x93\x20\x6d\x54\xec\xc0\x6b\x83\xff\x99\x8f\xde\x82\xaf\x8f\xf6\x7d\x80\x32\xd0\x34\xbf\x56\x5b\x32\x12\xbe\xb7\x34\xbf\xc3\xa3\x6a\x62\x7d\x7e\xce\x2f\x69\xfb\x5e\xda\xba\x92\x21\x7e\xfc\x98\xb0\xbd\x19\xc1\x5f\xc6\x27\x9c\xb4\x79\xfc\x94\x30\xd2\x7c\x32\x99\x76\x6f\xaa\x1f\x6f\x98\xc5\x1c\x71\x38\x71\x71\x70\x73\x83\xca\x89\xf2\x3f\x2a\xb3\x44\xb0\xe4\xf1\xa7\xb6\xd8\x16\x43\x32\x76\xe1\x2f\x24\xb1\x37\xf5\xf1\xb6\x1b\x92\xcc\x89\xde\x3d\x4c\xfd\xc8\x62\xe3\x4f\xfd\xee\x08\xfa\x50\x09\xee\x94\x74\x78\x5d\xf2\xf7\xd9\xa1\x3f\xf0\x7d\x08\x56\x62\xe9\x1f\x3f\x42\x4c\x0f\x74\xfc\xb4\x58\x73\x8f\x9f\x13\xce\xc9\x17\x3f\x62\xb9\x2d\xad\x15\x73\xe5\x30\xca\x54\x53\x0c\xf9\x31\xe9\x67\x39\x4d\x4c\xdb\xa9\xcb\x0b\xbe\xc7\x0b\x2e\x4e\x78\xf5\xf9\xad\x3c\xd2\xbd\x64\x88\x7e\x9d\x9f\xfc\x9f\x21\x0b\xc4\xdb\x97\xf0\x9a\x1e\xe5\xfa\xbd\xb4\xd5\x90\xb6\xee\x49\x3b\x63\x09\x69\xf3\x4b\xda\x68\xc4\x5d\x6f\x84\xc1\xa5\x83\xee\xea\x9b\x9b\xc3\x39\x45\xda\x6f\x47\x3c\x25\x85\x24\x0f\x5e\x42\x8e\xd7\xa8\x15\x43\x4e\x18\x69\x3b\x7d\x7a\x85\xdd\x48\x7e\x32\xdf\x14\x85\x57\x46\xc6\xed\x3b\x6f\x27\x3c\x9c\x48\x86\x17\x36\x23\x25\xfd\xaa\x68\xbd\x7d\x27\x2c\x9c\x25\xce\x03\x11\x9e\xcb\xd1\xeb\x07\x32\x29\x68\x0b\xdd\x70\x3c\x7f\xb3\x3e\x83\x1d\x1c\x62\xc9\x5f\x8d\x3c\x75\x16\x6e\xfe\xa7\xde\x6a\x0e\xcd\x55\xcd\xd3\x1a\x83\x9c\x87\xd0\x99\x7e\x84\xf3\xc0\x7d\xfa\x0d\x74\x2d\xc9\x18\xda\xda\xb5\x98\x53\xc2\xdc\x36\x3d\xae\x3c\x79\xbd\x9f\xda\xe6\xc6\x91\xec\xa7\xd3\x57\x1f\xce\x80\x9f\x26\x7e\x58\xd9\xda\x83\xf4\x39\xf9\x10\x96\xf2\xd2\x13\x52\x1a\xfa\x7e\xaa\xf1\x86\x0a\x25\xdf\xf1\x88\xe3\x65\x0f\xba\x5f\x12\x87\xb6\x76\x6b\x53\xf2\x0a\x93\x28\xb3\x44\x18\xd3\x4f\x7a\x7d\x3d\xb5\x4e\x91\xb6\x16\x6f\x88\xc7\x49\xe0\xcd\x09\x22\x52\xa0\x12\x37\xab\x4a\x26\x93\x1f\x3f\x7e\x48\x48\xe1\x66\xfc\xb7\x28\x9c\x2b\xbd\xbe\x4a\xf7\x8e\xc4\xdb\xc2\x3c\x91\x79\xfe\xce\xf9\xee\xf9\xbb\x97\x44\xf2\x87\xcf\xdf\x7c\x0b\xfd\xfc\xbb\xef\x7e\xf9\xab\x97\x4c\xf2\xdb\x0a\x9c\x0c\x5c\xfb\x44\x19\xa1\x5f\x3e\xf3\x9f\xf6\xe0\x13\xf7\x12\x3e\xe1\x4f\xe5\xd4\xfd\xa7\x97\x5f\x3c\x64\x32\x50\xf2\x1b\x38\xe9\x49\x1a\x9d\x57\x34\xd7\x84\x2a\x15\x4f\xc6\x5a\x9a\xe2\x26\xa0\x07\x28\x8d\x24\x9f\xe1\x97\x30\x78\x8c\xe4\xcd\xd5\xae\xe5\x15\x4a\x49\xa1\xda\x18\x74\xaa\x37\x28\x6e\x72\x69\xe0\x57\xf4\x62\x0f\xca\x5b\xe7\x98\x82\xe4\x38\x92\x88\xed\xa2\x82\x0d\xde\x10\x35\xc9\xfe\x3e\xb2\x02\x0a\x97\xa7\xd2\x4c\xe2\xdd\xf6\x31\x42\x9d\x13\xf1\xf2\x69\xe0\xba\x0f\x6f\x07\xae\x0b\x26\x9e\x37\x6a\xad\x7c\x80\xd3\xd2\x7d\xe4\x13\xaf\x6f\x6e\x2a\x87\xad\x8a\x84\x74\x2f\xf8\x6a\xfe\xe4\x52\xd7\xbe\x72\x48\x90\xcc\xbc\xb3\xaf\x11\x0e\xed\x14\x12\xab\x30\xb4\x9c\x3d\xd4\x19\x55\x39\x7e\x0f\x58\x70\xa4\x9b\x42\xd2\x1f\xe2\xab\x4a\xaf\x23\xbd\x2e\xf8\xf8\xf1\xbc\x8a\x6f\xaf\x9f\x09\xbf\x77\xa4\xf8\xf1\xe3\x07\xe5\xe3\xc7\xc4\x09\x85\x3e\x21\x95\xf7\xac\xe1\x2e\xeb\x7f\xaf\x50\x70\x9e\xf1\xf4\xde\x01\x8f\x7f\x50\xf4\xf0\x3b\x3c\x2f\x4a\xa6\xaf\x92\x2f\x21\xdd\xf3\x9a\x4b\x49\xbb\xd7\xd7\x0f\x4a\x14\xbc\xeb\x92\x25\x3d\xee\x89\x8e\x85\xce\x03\xc3\x27\x3e\xc0\x07\x5b\xac\xab\x45\x91\x73\xad\xf3\x54\x56\x1c\xf4\xb7\x81\x49\x18\x62\xdc\x5f\xf1\x45\x45\x88\xa7\x54\x9d\x6f\x21\x24\x93\x69\x25\x19\xe3\xa2\x13\x07\x6f\x92\x21\xf3\xb2\x24\xbe\xbe\x5e\xe3\x9e\xa7\x5b\xce\xe9\xa2\x62\xc7\x66\xdf\x72\xa7\xe7\xad\x74\x8f\xc3\x27\x1f\x5b\xdf\xde\x2c\xe2\xaf\x72\x0f\xfc\x1f\x96\x49\x3e\xc4\xdc\xda\xc5\xba\xe7\xeb\x28\x77\x95\x38\xe1\x69\xb0\xdf\x29\x09\x29\x3c\xa6\xf4\xa4\xe2\xc1\x67\xde\xb1\xbe\x83\x6e\xd0\x0d\x27\x90\x73\x7f\x38\x5f\x39\x0b\x1c\x75\x8d\x2f\xd0\xea\x93\x91\x3b\xbf\x23\x3e\x1f\xa4\xc0\xc7\x14\x25\xed\x7c\x5e\x15\x5c\x5b\xf3\x99\x55\xba\xd7\x25\x97\xa7\xa4\x5d\x64\xbd\x7a\xf7\xd6\xe1\x75\x28\xca\xe3\x67\xf8\x17\x1f\x2b\x17\x1e\x90\xcf\x66\xd1\x0b\x7b\x32\x5f\x89\xbd\x3a\xa8\xfc\xf2\x81\xf0\xf6\x44\x21\xee\xb5\xca\x8f\xc9\xfb\xf1\x23\xea\x65\x0b\x02\x08\x7b\xad\x08\x7e\x85\x23\xfc\x3c\x76\xef\x21\x88\xa3\xbf\x82\x4e\x24\x4f\x03\xd1\x7a\x4a\x24\x84\x9b\x2b\x4d\xbc\x33\x4c\xf7\xce\xcf\x73\xa7\xf3\xc6\x8a\xd7\xb4\xdd\x9d\xb8\x92\xee\x5c\xf3\x6e\x23\x4d\xef\x6c\xc9\x53\x39\x7d\xea\x3b\x47\x41\xb0\xb2\x62\x18\xc3\x47\xac\xae\x32\xc1\xb9\xe9\xdb\x19\x1f\x5e\x1e\xa5\x7e\xf1\x4a\x2e\xc6\xf6\x1f\x0e\xe8\x1c\x30\x8c\x92\x5e\x5f\x3f\xbc\x3f\xc2\xdf\x1d\xcc\xc8\x17\x0c\x66\x28\x58\x28\x9f\x18\xf0\xf8\x0e\x29\x81\x6d\x9b\x1b\x4f\x43\xfc\xfe\x8c\x2d\x4f\x75\x45\xde\xb2\xb4\xd0\x64\x2f\x38\xcc\x8a\x88\x77\x16\x78\x3e\x91\xfc\xf8\x11\xf2\x3d\xa4\x1f\xba\xe1\xdc\x6f\xc2\x99\x26\xeb\x63\x51\x95\x34\x97\x4f\x48\xc9\xd0\xb8\xdd\xd1\x79\xdb\xad\x69\xa6\x69\x57\x95\xb5\x22\x4a\x81\x99\x33\x3f\x75\xe2\x77\x04\xdf\x9e\xa6\xd3\x66\x05\xfa\x59\x17\x4a\x25\xec\x6f\xe0\x27\x08\x83\x1e\x20\x00\x85\x3b\x7b\x8a\x79\xef\x48\x86\x18\x39\x71\xba\xb7\x25\x4b\xe2\x5d\xdf\x49\xc0\xa5\xa4\xf9\xfc\xf9\x0a\x5f\x7d\x05\xdb\xbc\x35\x81\xdc\xb6\x7c\x0c\xe5\xda\x89\x06\x76\x33\x6b\xdc\x0f\xf9\xad\x90\xa3\xd7\x4c\x15\x42\x7f\xeb\xd2\x2d\xe7\xb0\x1f\xc2\xe8\xf4\x01\x98\x9b\xd6\x9b\xb7\xd0\x0a\x36\x32\xbf\xbf\xe2\x02\xf3\xeb\x23\x3e\x98\x86\x2f\x3f\xbe\xbf\x76\x7f\xda\xdf\x6b\x8a\x4e\xb2\x12\x99\xef\x8c\x8c\xac\xa7\xa1\xef\x6c\xaf\xbb\x2b\x57\x57\x3c\xee\xb9\xcd\xd7\xd4\xe6\x05\x55\x72\x25\x31\x94\x66\x09\xb7\x02\xfd\xec\x19\x85\xe1\x5f\x43\x29\x37\xe5\xff\x44\x7e\x0d\x1d\x57\x55\x31\xf6\x79\x63\xad\x87\x9b\xd6\xee\x4a\x87\xac\x1c\x29\xe4\xae\x20\xae\xaf\x97\xed\xf5\x35\x71\xe5\x10\xe1\x5c\x74\xdf\x92\x3e\x71\x11\x7e\x7b\x27\xd3\x34\xc2\x68\x9b\x97\xeb\xa6\xd8\x5d\x87\x8b\xd1\x75\x08\x1f\x10\x86\xc6\xfc\x32\xcd\x36\x0c\x45\x72\x6d\x2c\xdf\xae\xe1\xb6\x65\xe2\xd5\x21\xfe\xfa\x0a\x3f\xfa\x77\x11\xa4\x6f\x2a\xf0\xeb\xab\xf2\x8d\xbf\x8a\x0a\x37\xa1\x6e\x04\x33\x7d\x7d\x55\x6e\x85\x2d\x3d\xb1\xc4\x8c\x82\xd0\x1e\x6e\xde\x9e\x9d\xcf\x27\x90\x0f\xef\x99\x69\xc4\xce\x41\xd3\xd1\xc5\xf7\xd8\x86\x43\xe2\x4d\x9f\xcc\x6f\x0f\x92\xdb\x2c\x17\xb3\x8d\xbb\xed\xa8\x28\x66\xd1\xf6\xf4\x95\x56\x3b\xaf\xaf\x10\x7c\x5b\x73\x0f\xb7\xd8\x9f\xde\xb5\x27\x8c\xac\x01\xaf\x5a\xd9\x5d\xa8\x2c\xfa\xae\x7b\xd2\xb2\xb8\x0d\x96\x9f\x82\xef\x04\x4d\xfa\xde\x5b\xf6\x46\x1a\xfb\x9b\xb6\x8c\xbf\x8f\xba\x91\x97\x33\x4b\xfc\xab\xe0\x6f\x1b\x8d\x9e\x47\x31\xb9\xb5\x3b\x74\xb8\xc7\x71\x11\xf6\xe4\xe6\x2e\xd7\x1b\x41\x4e\xbe\xb0\x96\x2b\xd1\x51\xde\x88\xd6\x74\x75\xa2\xb8\xe0\xc6\xeb\x77\x08\xae\x79\xb9\x0e\x61\x26\x92\x9f\x63\xb7\x29\x2e\x8b\x46\xe1\x95\x3e\xa7\xdd\x7b\xdb\x15\x25\x2b\x01\x69\xca\x34\x94\xf9\xc3\x41\xad\x04\x25\xe3\x18\x93\xdd\xcb\xc6\x47\x6b\xde\x83\xdf\xbd\x68\xe3\x98\xec\x06\x27\x4b\x9f\x4f\x21\x7c\xd1\x49\xfe\x29\xe4\x93\x7d\xc5\x8b\x8b\xd9\x27\x20\x83\x03\x98\x9a\xcd\x9f\x38\x3a\xf1\x40\x46\x9b\xee\x7e\x88\x3c\x3f\x43\xe2\xb4\x96\xf4\xdb\x90\xfd\x28\xf8\xc1\x87\x9e\x6d\xce\x94\x6b\xec\x16\xc3\x58\x72\xc3\x5c\xe7\xbd\x7e\x02\xd4\x5a\x39\xf3\xcb\xa9\x25\xc0\x31\x56\xe2\x0c\xd3\xc3\x3e\xb2\x74\x98\xa6\x71\xde\x72\x57\xb6\x24\x7e\x7f\x3a\x7b\x1f\x92\xd3\x91\x0f\xb0\xc0\xad\x72\x38\x35\x1e\x12\xd2\xbe\x1b\x9f\xd8\xb7\xe8\x2d\xd4\xee\xa2\xfe\x3c\x6b\xa5\x62\xa6\x2f\x52\x2a\x52\x5a\x7a\xa3\xc1\xa7\x0e\x16\x2f\x4b\x9f\xb3\xd0\x5b\x1d\x12\x29\x14\x27\x1d\x11\xad\x8b\x34\x53\x4e\x40\x43\x63\xee\x6f\x7a\x89\x77\xc7\xdc\x41\xa8\xe4\xdb\x70\x6f\x6f\x38\x9f\x81\x36\xa7\x8e\x64\xaf\x25\x5b\xbc\x63\x07\x77\x6a\x54\xc2\x03\xdf\x64\xba\x9d\xfb\x60\x73\x5f\x99\xed\x2e\x76\x8b\xcf\xaa\x3b\x0b\xec\x7d\xd3\x0f\xb8\xeb\x5f\xe9\x7a\x4c\x2a\x27\x5d\x29\x05\xd1\x7d\xc3\xbe\x4b\x2b\x15\x25\x4e\xbe\xc8\x00\xfc\xb4\x8e\x77\x06\xd1\x79\xf6\x33\x8c\x6e\x17\xf4\xfd\x13\x79\x62\xe3\xaa\x05\x7f\xbc\x9f\x03\x4d\x20\x08\x72\x1d\x8f\x6c\xed\x7b\xfa\x0d\xc2\xa3\x28\x06\x2f\xb8\xca\x5a\xba\x23\xbb\x77\xe6\x74\x21\x09\xee\x3d\xf4\x78\x0e\x28\x16\x1b\xed\x1d\xb4\x34\xe3\xff\x23\xc4\x52\xd0\x77\xb6\xef\x52\xfd\xf6\xa0\xf0\xdd\x1b\xbf\x47\x54\xa4\x70\x29\x70\x0e\x04\x4f\xb8\x31\xa1\xfd\x36\xc3\xf9\xb5\x69\xc6\xdb\xf5\xf9\xd4\xba\x59\x63\x40\xcb\x2b\x75\x9e\xcc\x22\xbe\xc1\x8c\x13\xce\x20\xf1\x33\xb5\x2b\x31\xe8\x0e\x11\xc0\xc2\x49\xe4\x68\x77\xc3\xf8\xe7\xe3\x81\x5c\x60\xfa\xf8\xf7\xa1\xd7\xbe\x70\x56\x3b\x86\x8e\x7b\x2b\xdb\x11\x5a\x90\xe1\xc4\xf3\xdf\x39\xa4\x9b\x59\x42\xe3\xde\xe3\x8d\xcb\x0a\x64\xcb\xd3\x04\x9a\xcf\xa7\xef\xa2\xff\x25\xa1\x93\xbc\xc7\x8b\xa3\x41\x5e\x38\x7d\xe7\xfd\x17\xe5\x9a\x9a\xda\x71\x2f\x62\xc6\x7b\x5c\x10\xbd\x29\x2e\xaf\x29\xc2\xe1\x75\x1a\xc4\x6d\x0d\xdf\x56\x86\x28\xd9\x9a\x62\xc4\xbc\x09\xbb\xb6\xa2\x4a\x1e\xd7\xae\xe4\xf9\x11\x88\xe1\xdf\x42\x8b\xbf\x87\x9a\x52\x94\x72\xe6\x94\x38\xee\x7d\x38\xd2\xf8\x34\xa9\xca\xbb\x7c\xcc\x11\xaf\x10\x8b\xdf\x1a\x4b\xbe\x12\xdb\xf5\xf3\x45\xd7\xc7\x1d\xd4\xf9\x5b\xb9\x98\x4f\x02\xf8\xcb\x32\x02\x07\xf3\xad\x53\xdf\x29\x70\xd2\x77\xc1\x15\xeb\xc0\x2e\xc3\x58\xe9\x09\xe8\x0a\x43\xc6\xca\xc6\x78\xa7\x02\x85\xbd\x08\xbd\x57\xa0\x5f\xc7\xfc\xfe\x7d\x33\xa3\x73\x2d\x3e\xc6\x95\x01\xf0\x26\xd1\x7c\xb7\x66\xb7\x35\x86\x78\x29\xff\xf4\x2e\xe6\xc5\xef\x4e\x09\x6e\x48\x25\xa5\x67\xf7\xc5\x67\xf2\x67\xf7\xe5\xa8\x49\x9c\xf4\xea\x45\x3f\xdf\x0b\xa6\x21\xf0\xbe\x95\xde\x9b\xf8\x5d\x8f\xfb\xfc\x17\x71\x34\xff\x85\x1e\x7b\xef\xd3\x38\x3e\xd0\x2e\xaf\x92\x9f\xf4\x65\x28\x88\x6f\xf4\x67\xd0\x04\x6f\xc9\xec\xe7\x7a\x67\xd0\x1e\xbc\x74\xdd\xf2\x12\x73\xd1\xd5\x17\x9d\x18\x2e\xeb\x2f\x3a\xfb\x4a\xc6\x0f\x87\x9e\x8a\x7e\xfb\x1d\x75\xd8\x47\xf5\xfb\xe9\x90\x2d\xb8\xba\xf6\xe1\xb4\x97\x0e\x5e\xc7\xe2\x9d\x74\x00\x10\xf4\x51\xec\xf5\x70\x04\x18\xeb\xa1\x10\xe1\x43\xff\x7c\xfc\xe8\x8d\xac\x10\xdf\x48\x3e\xbe\x3d\x6a\x7d\xf1\x83\x9b\x86\xcb\x2b\xc6\xd9\x0a\x32\x52\x42\xe2\xfe\xcf\xae\xc6\xcc\x39\x8f\xf9\x21\x7d\x99\x0d\x9a\x63\xf1\x06\x14\xf8\x63\xf2\x17\xf5\x69\xbb\xf2\xfc\xf2\x78\xd6\x57\x1f\xae\x0c\x93\x8f\x1f\x13\x4a\xdc\xc4\xf6\x98\x3b\x79\x3e\xc8\x6e\x16\xbf\x6a\x5f\x7b\x4c\x0c\x01\x1d\x05\x7c\xc4\x1b\xfe\xcf\x84\xe2\xdb\xd4\x8e\xc2\x9b\x34\x5e\x62\xb4\x9f\x18\xb2\x41\xc2\x8d\x46\xee\xc1\xdb\x58\xc8\x12\x61\xd9\xf0\xea\x4e\x90\x1a\x15\x0e\x19\x25\x61\x87\xf1\x6e\x8e\x81\xf1\xbc\x1c\xc1\xe7\x70\x1c\x06\x24\x76\x2a\x10\x74\x12\xe0\x27\xc6\x5d\x09\x27\x55\x81\xee\x0e\x09\x50\xda\x8d\x4b\x88\x83\xab\xc1\x53\xee\x0b\x0a\xf9\x01\x78\xc2\x34\xc8\xb7\xf7\x3b\x91\x23\x70\x32\xed\xf8\x0d\x71\xa5\xad\x5b\x0d\x82\xf1\x2a\xa6\x51\x89\xe2\x7b\x44\xcc\x79\x68\x47\x18\x77\xd2\x6f\x44\x24\x5b\xe0\xb4\x1b\x17\x2c\x48\x64\x8d\x71\xc2\xbb\x31\x18\x5e\x12\x94\x4c\xc7\x5f\xbf\x0f\x2d\x76\xa2\xdc\x1e\x78\xef\x77\x44\xa2\xb4\xbf\xf9\x7b\x6a\xbd\xe8\x41\x38\x06\x5f\x89\x45\xd7\xb3\xc3\x78\x42\x77\xbe\xab\x8d\x37\x07\x8d\xce\xbb\xc2\x5c\x72\x6e\x8e\x1a\x28\x58\x60\x41\x95\x8a\x97\xdd\x9c\xdd\x49\xaf\xaf\xd9\x4a\x25\xb0\xff\x1a\xec\xac\xd3\x6b\xc1\xb1\xe1\x15\xc5\x73\x0a\x2f\xc5\x85\x71\x62\x13\x31\xa2\xbe\xbe\x4a\x87\x5f\xa7\x63\x3f\xa4\xdc\xe1\xfd\xf5\xf5\x0a\x3d\xbd\xe2\x11\x85\x42\x00\x27\x43\x2d\x18\x55\xe1\x97\x93\x51\x74\x3e\x60\xa2\xa3\xac\xab\x23\x24\xf9\xa1\xf2\xe1\x83\x1b\x1b\x23\x11\x44\x8f\x81\x3f\x54\xa4\x23\x27\x87\x1f\x82\x61\x70\x2c\xe5\x8f\x8e\xd7\xd7\x0f\x67\x22\xd3\xcb\x20\x1d\x5f\x0f\x19\x4e\xf8\x33\xc8\x74\x92\xf4\xf6\xcc\x71\x0c\xc9\xed\x5c\xdb\xec\xb9\x54\xae\xa5\x5b\x9a\xb4\xfb\x95\x73\xd6\x31\xe3\x85\xe2\x14\x5d\x0b\x3e\x9f\xb5\xd2\x17\xa2\x2a\x4c\x77\xae\xe9\x13\xe6\x95\xc4\xc3\xd5\xef\xc3\x1c\x13\xb9\x3c\xba\x80\x79\x21\x5f\x4f\xeb\xba\x20\x40\x54\xdf\x05\xc9\x2e\xc4\x69\xa4\x2f\x9f\x88\xd5\x68\x33\xff\x64\xa6\x8d\x27\xf6\xeb\x98\x8f\x6d\x42\xaa\x28\xc9\x6f\x4a\x4f\x52\xaa\xf4\x20\x25\xd3\xe7\x53\x64\x42\xa9\xd8\x37\x71\x4c\xa6\x2f\x21\x9e\x2b\x6f\xca\xe5\x94\xff\xe4\x3c\x5c\x28\x30\xcf\xca\xcb\xa9\xd4\x3f\x9b\xac\x4f\xc2\x51\xc5\xc0\x5f\xe9\x94\xa7\xeb\x74\x7b\x38\x2b\x7a\x3e\x3b\x1e\x55\x28\x5d\xd9\x26\x8c\xf4\xd9\x52\xee\x3e\x9b\xcd\x66\x93\x9f\xed\xeb\x0d\x8e\xa9\xa2\xf6\x95\x06\x9b\x57\x1a\x6c\xbf\x5c\x63\x68\x21\x12\x84\x4e\xdb\x93\x8c\x97\x77\x9f\x2e\x05\x62\xf2\x60\x78\x7f\x0b\x16\x79\x10\x8b\x6e\x32\x30\x1c\x8b\xa4\xa7\x27\x8d\xce\x24\xe9\x07\xc4\xcb\x72\x4d\xc6\x7e\x80\x63\x86\xcc\x9e\x92\xe1\x44\xea\x46\x34\x6f\xda\xa1\x2a\x51\x09\xdb\xfa\xf1\xa3\x7d\xa1\x1d\x54\x9c\xf3\x24\x2f\x57\x4c\x07\xa8\x38\xb1\xb7\xe8\x5b\x30\xc7\x87\x9f\xfc\x17\xef\xcb\xd9\xa4\x59\x71\xce\x52\xde\x22\x30\x79\xa9\xe4\x1e\x7c\xe3\xbd\x3b\xeb\x5c\x01\x7c\x30\x21\xbe\xe6\x6b\x4f\x3a\x4e\x26\x4f\x52\x7c\x16\x0d\x27\xd0\x87\xb3\xe0\x56\x27\xc1\xfd\x6e\x54\xc6\xf8\xa6\xc5\x27\xbe\x3b\xd3\xf6\x17\xd4\x18\x46\x76\xf2\x32\x3f\x9c\x84\x7a\x8a\xe7\xf2\x61\xbd\x59\xf1\xe9\x96\xec\x57\xd5\xad\x18\xf2\x45\xf5\xbe\xb7\xf3\x2f\xc1\xe0\x4a\xbc\xa9\xab\x41\xc3\xc2\x90\x8a\x70\xda\xa9\xc0\x69\x33\x08\xb1\xe5\x7b\x90\x8e\xbc\xce\x04\x22\x85\xaf\x78\xcb\x24\x51\xea\x99\x8a\xe1\x02\x37\x61\x24\xd3\xf3\x0a\xff\x4d\xa5\x90\xcf\x67\xf3\x4f\xc8\x03\xfa\xc8\x7f\x83\xa0\xa5\x27\x27\x55\x09\x7b\xc9\xab\x37\xe8\x26\x3e\xf9\x4d\x05\x79\xf2\xf4\xbc\xb9\x57\x03\x92\x7c\x48\x04\xca\x9c\xaf\x57\xfd\xe0\xb8\xf6\x83\x14\x51\xd7\x0f\xd9\x76\x20\xcb\x83\xf9\x39\xe9\x23\x95\x4c\x5f\xcd\x6d\xa4\xe7\xc9\x74\xa0\x9c\x3c\x7c\x80\x63\xe5\x3e\x20\x9f\x93\x69\xbb\x62\xa4\xe6\x5e\xbb\x92\x69\x23\x55\x99\x47\x61\x1c\x9d\x43\x74\xc7\x77\xab\x56\xae\xef\xe2\xa5\xfd\x97\x59\xf8\x1c\x0e\x6a\x25\x6f\x2c\x89\x92\x0d\xa5\x83\xab\x2d\xf7\xec\xe0\x1e\x8f\x0e\x73\xdb\xbc\xe5\x6f\xb3\xb0\x83\xdb\x87\x24\x15\x29\x7d\x34\xda\xf0\xbf\x1c\xf7\x9d\x2f\x83\xf4\xfb\x19\x62\x46\xb0\x41\x89\xab\x06\xb0\xe1\x31\x14\x6f\x3b\x12\xe3\xf2\xae\xf4\x7d\xb8\x3d\xc2\x0e\xee\x7b\x87\xc4\xc4\x31\xd3\xd0\x50\x0d\x73\x63\x44\x71\x68\x35\x89\x17\x15\x43\x6e\x9b\xa2\x32\x53\x24\xfb\xfb\x0a\x14\x1d\x7e\xda\xbc\xa2\x5d\xfd\xc2\x6b\x9a\xb9\x09\x8c\x3e\xfd\xee\x0f\x0c\x4b\x62\x06\x8f\xa6\x23\x0c\x14\x5d\x6a\x29\xba\xe2\x7e\x5f\x41\xa5\x5c\xb8\x97\xe0\xce\x22\x32\x06\x48\xba\x71\xca\xc6\x67\xf3\x12\xa6\xf8\xdc\x6f\x9b\xda\x01\x68\xf0\xe5\x60\xd1\x30\xb2\x15\xf7\xb8\x6f\x17\x7c\xac\x4a\x02\x82\x1e\x0a\x1c\xce\xda\x09\x43\x30\xbd\x36\x56\xa0\x95\x3b\xfb\x54\x0a\x5b\xa1\xf3\xdb\x60\xd0\xf8\x5e\xd7\x0c\x41\xaa\x20\x30\x1a\x62\xba\xe1\x6d\x63\x68\x28\xba\x15\x2c\x2b\x63\xf6\x90\x42\xac\xcf\x9d\x23\xa5\xe3\xac\xe0\x04\x39\xeb\x70\xd0\x69\x75\x24\x7c\xa2\xe1\x33\x5b\xb9\x84\x74\x2f\x4b\x6e\x9b\xb7\x12\x10\x16\x2d\xdb\xea\xad\x0a\x54\x8f\x0e\xa2\xeb\xfd\xd8\x4b\xd0\x18\x66\xe7\xb8\x92\x3e\x74\x67\xa5\x23\xdd\xe3\x5f\x5a\xa6\xa0\x4a\x62\xec\x9b\x80\xf4\x78\xd7\x95\x6c\x23\x1e\x65\x6c\x65\x89\xfe\x4e\x61\x58\xd2\xe7\x9f\xc3\x2e\x09\xbf\x96\xc4\x73\x96\x0a\x0e\xba\x8f\x3c\xe5\x0b\x26\x76\x10\xd3\x3f\xaf\x32\x69\x05\x7e\x33\x1b\xde\x22\x71\xaa\x82\xbc\x0d\xaa\x0f\xea\x95\x6c\xfa\x8c\xb1\xdf\x52\xae\xc3\x2f\x91\x6a\x3d\x5d\xcd\x2a\x6e\xb0\x82\x09\xc7\x8c\xe9\x49\xc4\x40\xfb\x59\x19\x42\x94\x8f\xb7\x65\xa7\xf2\xfc\xf2\xf9\xbc\xaa\xdb\xfb\x7e\xd1\x58\xf7\x93\xfd\x02\xb5\x83\xe6\x1d\xdb\x2d\xc6\x56\xb3\x84\xf4\xfa\x7a\xf0\x61\xe3\x27\x02\x5b\xf6\x77\x32\x42\xb5\xfe\xcd\x1a\x4f\x40\x5f\x6e\x3b\x7a\x6d\xb8\x46\x80\x77\xe1\x62\xab\xd9\x65\x63\x3c\x72\x5d\x4e\xff\x4f\xd2\xc3\x19\x01\xdf\x85\x7e\x68\xe1\x65\x1d\x1e\xa9\x0f\xa7\xf2\x41\xa8\x1f\xf8\x83\x6f\x51\x96\x38\x7c\x7f\x86\x5f\x2a\xd2\x9b\xb4\x51\x78\x5b\x3e\xe3\x83\x98\x4b\x36\x1f\x86\x14\x84\x2c\x8a\x6c\x7f\x0e\xd6\xf8\x4a\x1a\x81\x0f\xe7\xcb\x70\xa5\x62\x7f\xfc\x98\xb0\x2b\x6e\x32\x6d\x47\x73\x89\xfb\x56\xcd\xbc\xb8\xe6\x0d\xe1\xca\xd1\xb8\x65\x3a\xa9\x60\x6f\xfb\x56\x51\x4b\x92\xd4\xbe\xa4\xf3\x8a\xa1\x18\xf2\x49\x07\x9c\xee\x30\x4e\x57\xb3\x68\xfa\x8a\x20\xbf\x49\x0c\x0f\xae\x27\x8d\xbe\x02\x5e\x1a\x79\x13\xa2\x60\x1a\xce\x4a\x97\xbe\x12\x68\x2a\xf5\x0e\x58\xc5\xc1\x4d\x4f\xc0\x5e\xbd\x3b\x1b\xdb\x72\x9c\xae\x66\xd1\x4a\x7f\x35\x0b\x99\x25\x0c\x2f\x65\x99\x4e\x58\x43\x4c\x2c\x5d\x76\xc6\xfa\x78\xd0\xe6\xc9\xb4\xc3\x40\x8b\x15\x8a\xaf\x9f\xf9\xf5\x95\x2d\xe6\xc0\xd5\x4b\x04\xee\x30\xab\x9f\x86\xb4\x08\x27\xfc\x93\xc3\xbf\xcb\x22\xb2\xe4\x9e\x1d\x5d\x24\xa3\xf8\x2d\x07\xd1\x7f\x28\x55\x6f\x1d\x66\x80\x63\x5a\xff\x74\x86\xf1\xd3\x42\x41\x16\xcd\x36\x7e\x5a\x28\xfa\xa3\x99\xc7\x4f\x43\xd3\x27\xb3\x90\x9f\x96\x7d\x93\x20\xa1\x87\xbf\x0b\x9a\x9c\x34\xea\xcc\x0d\xe0\x91\x66\x61\x9b\x4e\x89\x76\x41\x81\x2b\x94\x8b\x68\x12\x03\x10\x11\x26\x22\x4a\x40\x8c\x30\xad\x1f\x4b\x8b\xa6\x5e\x38\x96\x16\x4d\xc3\x48\x2c\x2d\x9a\x92\xd1\x58\x5a\x36\x9a\xa6\x2f\x66\xb6\xeb\xa7\x3d\x51\x65\xef\xcd\xe7\xc8\x5b\xd9\xe0\x43\x36\xf4\xcb\xa0\xfd\xbb\x2a\x11\x5f\x36\xb9\x7f\x8d\x1e\x7a\x41\xae\x73\xfd\xf6\xea\x39\xc0\xe5\x45\xaf\xab\xc0\x43\x89\xee\x87\x17\x3f\xb9\x19\x61\xbf\x56\x72\xc9\x74\xe2\x70\x2b\x22\x14\x15\x07\x56\x3b\x9a\xa7\x6b\x2e\xe9\xb4\x25\x97\xff\xf8\x31\xba\xf9\x93\x0c\xca\x97\x92\xe9\xc3\xfd\x8a\x20\x05\x29\x44\x3b\xe1\x81\x86\x78\x3f\xb3\x4d\xdd\x93\x7f\xb8\x6f\x1b\x7c\x8c\x09\x71\x76\x05\x2a\x95\x45\xd3\x59\x34\x8d\xe6\xf3\x49\x6f\x51\xf3\xa5\x85\xfb\xe6\x26\x5e\xf2\xe0\xb7\x2c\xb4\x8d\x17\x78\x47\x0a\x0d\xe6\x1f\x8c\x4a\xb9\x90\x4a\x7c\x42\x7e\xe1\x87\xa7\x71\xf9\xc9\xb7\xf0\x13\xfc\x80\x24\xd3\xc6\x6b\xc5\x4e\x2b\x15\xe8\x67\xcf\x6d\x28\x75\xad\x62\x23\x99\x72\x52\xe6\x15\xf3\xf5\x98\x03\xb2\xd8\x9d\x8e\x87\x60\x97\xe9\x18\xa0\x28\xbc\x24\x91\x46\x93\xa9\x2c\xfa\xf8\x85\xd5\x5d\xc0\x5e\x59\xd0\x43\x50\xec\x0f\xa0\xab\x19\xfc\xfb\x10\x0f\x17\x6c\x77\x8d\x35\xfa\xa0\xee\xf5\x65\x80\x97\xb7\xdc\x34\x2a\x59\x34\x8d\x1c\x93\x9e\x8c\x54\x05\x7e\xc8\x9d\x26\x20\x0f\xe8\x69\x02\xfa\x60\xa4\x2a\x59\x6f\xfd\x98\x45\xbf\x94\x8c\x27\x44\x0b\xae\xee\x3c\xf8\xbf\x0f\x37\x8b\x1e\x4e\x3d\xa4\x45\xb6\x54\x92\x6d\x9b\x76\x02\x0a\xd7\x60\x77\x7e\x13\xef\xfc\xfe\xf0\xed\xb4\xfc\x1e\x4f\x4b\xc9\xcf\x4a\xe4\xdc\x34\xe2\xe3\x53\x93\xf2\xd0\xd1\xf9\xc9\x70\x3b\xd8\xe0\x5c\x6c\x02\x9c\x2f\x10\x8f\xda\x68\xa8\x2d\x46\x97\x7c\x1f\x3f\x5c\x64\x3d\xce\xd2\x89\xe4\xe3\x89\x87\xde\x78\x2e\xaf\xc6\x68\x73\x39\x9e\x6e\x99\xce\xa3\x74\x99\x3c\x5d\xcd\x0e\x1b\xc6\xe7\x60\xee\x05\x5e\xd3\x02\x8f\x14\xe7\xdf\x93\x17\x29\x81\xce\x5b\x89\x76\x7c\xcf\xaa\xae\x54\x94\x2b\x1f\x3c\xbd\xb6\x22\x85\x26\x4f\xbe\x66\x62\xdf\x89\x4a\x70\x95\xc8\xf7\x28\x7c\xe7\xce\xa5\x3b\xc7\xcb\xfc\x01\xba\x24\x73\x40\xad\x6b\x5b\x65\xc1\xe2\xb2\x52\xb9\xbe\xf8\x7c\x8a\xd1\x3a\xb4\x20\x7a\x90\x2e\xa0\x1f\x2d\x8c\xae\x06\xaa\x38\xb5\x40\xba\x81\xdb\xcd\xd2\xe7\x6b\xf0\x63\xcf\x5f\x40\x72\x24\xf7\xb0\x6a\x8e\x83\x3a\xba\x54\x3c\xe7\x6c\x6f\xc9\x9c\xf8\x79\x18\x71\xff\x6e\xcd\x6b\x2b\xe9\x6e\x66\xda\x77\x50\xc4\xc2\x9f\xa4\x10\x20\xf4\x70\xf7\xf3\x94\x94\x0c\x06\x8f\xe2\x98\x9f\x50\x18\x45\xa1\x87\x9f\xb4\xb6\x8d\x8f\x43\x9f\xfe\x9f\xfc\xcb\x4d\xe2\x6d\x70\xf0\x1b\xe0\xe0\x0b\x70\x3f\x0d\x0e\xf2\xf9\x8d\xc5\xf5\x05\xad\xaf\x65\xbb\xb4\x79\xe9\x06\xa6\x77\xaa\xb4\x73\x12\xc1\x64\x8d\x23\xc9\xfb\x99\xe2\x71\x6c\x42\xaa\x7c\xfb\xe1\x3a\xa2\xaf\xaf\x92\xcf\x8b\x9e\xf0\x02\x6e\x22\xf9\x0d\x82\x96\x92\xf7\x3a\x6f\x79\x65\xa0\xef\xbe\xdb\x42\x29\x6f\x4a\xda\x5b\xbc\x98\x38\xcd\x79\xef\x9a\xa1\xb4\x41\x0a\xc9\x34\x9a\x4c\x86\x67\x99\xd1\x1d\xa9\x93\x0d\x05\x69\x73\xd7\x97\x64\x62\x6b\x25\x7e\xf5\xfc\x87\x3f\x48\x9f\x5f\x7e\x75\xd9\xce\x93\xdd\xa7\x1b\x7e\xbf\x1f\xa3\xe4\x3b\xc5\xfb\xf0\xc1\xbd\x6c\xd1\xc7\x8f\xee\xb3\x7b\x5f\x6f\xbd\xdc\xd7\x5b\xbe\x87\xd0\xe3\xab\x27\xc3\x7c\xcf\x32\x07\x93\x73\xc5\xf0\x6d\x25\xa3\xdd\xfa\xf3\x45\x57\xe8\xd0\x25\xbc\x51\x7f\xde\xac\xf8\xc2\xd0\x89\xae\x08\x2b\x8e\xc5\x7b\x43\x00\xc2\x71\x04\x4a\xdb\xd1\xb2\x07\x4e\x23\xc9\xb4\x14\x86\xab\x3d\x2c\x0c\x13\x48\x32\xf9\xf0\x09\xf1\x8b\x2b\x09\xfb\xf0\xd9\x17\xc0\x89\x64\xf2\xc1\x4b\x3d\x82\x38\x04\xa1\xbd\x55\x8b\x73\xbd\x16\x27\x15\x46\xab\xb9\xa4\x37\xce\x90\xd7\xaf\x44\x45\xeb\x44\x3f\x6e\xa1\xe4\xaf\x92\x1f\xdd\x6f\x2b\xd0\x1f\x41\x1f\x3f\xba\xdf\x54\xa0\x5f\x43\x97\x2d\x66\x48\xe8\xfa\xa6\x61\x78\x64\x7e\xbe\x63\x98\x72\x3d\x64\xaf\x6d\x5e\x78\x6d\x87\x1e\x3d\x61\xf9\x74\xbd\xe8\xd3\xf5\x52\x0f\x09\x25\x5c\x02\xbe\xbe\x86\x5b\xbc\x81\x85\x5b\xf4\x33\xf9\xe0\x35\x02\x0e\x1b\x51\x86\xbe\x12\x7c\x04\xfd\x49\x79\x56\x0e\x21\xdf\x5f\x52\x15\xf7\x41\x79\x86\x5f\x2a\xae\x0f\xfd\x2e\x84\xfe\x04\x7d\xfc\x08\x3d\x40\x1f\x2a\xee\xd3\xa1\xdc\x0d\x42\x78\x25\xaf\x12\x2e\xfa\x10\x63\xbb\x7b\x57\x72\xdc\x84\x9b\x7c\xba\xc6\x0a\x1e\x45\x1f\xae\x23\x9f\x8e\xb3\xdd\xad\xd1\xe7\x2a\x5a\xe8\xfd\x24\x18\x24\xee\x89\xeb\xde\x88\x3f\x7c\x96\xb8\x32\x58\xec\x8a\x72\xf0\x53\x91\xf8\x6e\x8b\x4c\xbf\xfb\xee\xf5\xbb\x2d\x5c\x4c\x66\x92\xbe\x1b\x1f\x9f\x8b\xa2\x4d\xf8\x43\x47\x25\xfc\x3d\x1c\x08\x4a\x3b\xcf\xc8\x8b\x2f\x2b\xaa\xbc\x2b\x25\xd3\xde\xc0\xb0\x9f\xfc\xaf\xa9\x8a\x92\xf6\x9e\x91\x53\x0c\xf7\xea\x0e\x6d\x70\xed\xce\x35\xcd\x3b\xcd\x0c\x2c\xdb\x63\x65\x3c\x78\x1f\x2a\x7e\x82\x62\x88\xd2\xb6\x3b\x4b\x40\x3f\xf3\x9d\x08\xbb\x15\x48\xd2\xa7\x92\x28\x4a\xe2\x9d\xe4\x08\xbc\x25\x1d\x8a\xc6\x73\x26\xd3\x11\x6a\x9f\x3c\x44\x03\x1c\x4e\xb6\xb2\xc3\xfa\x83\x6b\x3b\x77\xd2\xd6\x52\x6c\x49\xf4\x60\x9d\x14\x4c\xa6\xdd\xa7\xc4\x89\xf1\xfc\x1b\xb4\x7f\xb8\xe3\xa7\xa6\xed\x86\x86\xfa\xae\x4f\x84\xc3\x90\x49\x04\x6f\xfe\x79\xca\xb1\x73\x95\x43\x83\x7d\xff\x03\x31\x12\xa4\xec\x1b\x84\x7b\x4a\xc4\x21\xa6\x94\x10\x66\x48\xf9\xa3\x00\xb2\x6f\x8d\xd6\x18\x6f\xd9\x29\x8f\x5a\x95\x63\x31\x3b\x8d\x24\x9f\xd0\x07\x24\xe9\x23\x74\xa9\x94\x84\x0c\x7c\xb2\x43\x97\x0e\x9d\xeb\x3a\x15\x2f\xf7\xb3\xf4\xf2\xec\xbe\x3c\x3a\x4f\xce\x07\xff\xfd\x5e\x91\x0d\xd3\x96\x9e\x7c\x96\x0f\x2e\x98\x7e\x0b\xfd\x55\x28\x3a\x0b\xbf\x38\x23\x78\x3a\x51\x42\x20\xd2\x2b\xad\x18\xf2\x5d\xe9\xd3\x54\x71\xef\x84\x20\xd3\x9d\xa7\xeb\x3c\xdc\xc1\xfe\x8c\x17\x9b\xe8\xe0\xd3\x99\x2e\xf9\xe0\xf8\x57\x99\x03\x97\x3e\xe9\x67\x3b\xed\xbe\x84\x1e\x40\x2f\x4e\x05\x3e\x7e\xbc\x52\xb1\x24\x7a\x9a\x7c\x0a\x0a\xeb\xbb\xb8\x1e\xe1\x26\xbf\x14\x5c\xb4\x4a\x78\x0f\xdc\x35\xed\x0d\x74\x18\xf2\x2c\xbe\x46\xda\x4d\xfe\x90\x3b\xc4\xf7\x8f\x6f\xc6\x1c\x63\x9b\x24\xdc\xe4\x03\x0a\x5f\xcd\x74\x19\xb5\x24\xe1\x7e\x79\x4b\x62\x1f\xef\x3c\xdc\xee\xda\x61\x73\xae\x2b\x9f\x55\x02\xbf\x82\x7d\xa8\x7d\x1e\x7d\xa9\xa4\x11\x38\x19\x7a\xf7\x46\x1e\x6e\x2d\xfc\xcf\xef\xa5\x57\xdc\xb8\xcf\xed\x6c\x50\xee\xd6\x99\x56\xb4\x13\x1d\xa7\x44\x70\xe6\xe9\x3e\x21\x59\xf4\xa1\x04\x27\x4f\x2f\x05\xc5\xa2\x2f\x9f\x7f\x71\x8e\x31\xdc\xfa\x92\xec\xb5\xca\xdf\x4a\xf7\x0d\x97\xe3\x2b\xca\xbb\xfc\xc3\x45\xc1\x78\xf4\xaa\x84\x7b\x92\xbb\x70\x99\xfb\x18\x13\xe7\x2c\x6f\xf1\x32\xef\x31\x68\xcb\x59\x5e\x04\x7d\x88\x0d\x37\xff\x6c\xed\x7c\x55\x7a\x1a\xbb\xe3\xac\x3c\x7a\xa5\x19\xa7\x31\x32\x4e\xf3\x67\xe1\xcb\xfc\x17\x57\x18\x4f\x8b\xe4\xce\x8b\xdc\x3c\x9a\x3c\xe9\xf3\xdc\x6d\x02\xdf\xa4\x46\xe1\x9c\x74\x07\x06\x9b\xf2\x82\xea\x47\xd5\x65\x24\x43\x74\xb0\xe8\xed\xb4\x4a\x44\xca\x5e\xee\x6a\x84\xca\xcf\xe5\x51\xd8\xc3\xed\x9d\xb0\x73\x9e\xda\x19\x82\xbf\xbd\xe6\x9b\x82\x24\x4e\x3b\x10\x86\xd1\x2f\xab\xb4\xda\x07\xf5\xdf\x55\x9d\xc8\x45\x37\x86\x3e\xcb\xba\x2b\xd7\x5a\xb9\x67\x64\x81\x91\xf3\x81\x7b\xe1\xe2\xec\xbc\x44\xf6\x9c\xe1\x0f\x3d\xa1\x4b\x2e\xef\x77\x02\xe1\xcf\xf2\x17\x05\xcb\x0f\xee\xd3\x8d\xa2\xd1\x25\x32\xa0\xb9\x3e\x84\xd1\x9c\x77\xbf\x8f\xec\x11\xbf\x30\x7b\xe5\xf6\xd6\xe3\x21\x53\xfa\x0b\xf2\x54\xa0\x40\x4b\x81\x92\xb7\x1a\x7a\xb5\xfa\x0b\x51\x75\x1d\xf8\xd7\x80\xbc\x85\xed\xf5\xe6\x07\x37\x30\xe2\xe3\xac\xf8\x10\x92\x3e\x77\x45\xf0\x9c\xc4\x81\x3a\x97\x3d\x70\xae\xf4\x70\xbe\x51\x1d\x9e\xde\x1c\x72\x78\xdd\x99\xb8\x91\xe9\x52\xf4\x9e\x57\x77\x4d\x6c\x27\x0e\xb7\xc3\xdf\x2f\x19\xaf\x33\x3c\xfd\x48\x9c\x8a\x71\x14\x86\x73\x97\xcd\xc6\x4e\x3c\x49\x1c\xdb\x7d\x08\xa6\xf0\x13\x66\xd4\x2a\x81\xdf\xf5\x6c\x65\xcd\xbb\x52\x7c\x62\x0d\x67\xd6\x40\x9b\x8a\x6f\x29\x44\xe7\x3d\x38\x52\x89\x7e\x13\x0c\x7e\xf8\x8d\x33\xe4\xe1\x77\x37\x96\xce\x0e\xf2\x68\x25\x56\xf8\x19\xfa\x0e\x86\x5e\xe2\x2a\x5b\xec\xd3\xff\xef\xe6\x97\xbf\x04\xbd\xdc\xbc\x15\x7b\x08\x18\x78\x3c\xa5\xf3\xeb\x99\xbe\x55\xe6\x18\x89\xf4\xb8\xf2\x09\x8a\xb9\x6f\x15\x9b\x99\xf6\x86\xb7\xc5\x01\x3f\x65\x5c\xd3\x3a\xab\xd0\x78\xa7\xa4\x5e\x93\x24\xf1\xac\xcc\x3a\x6a\xf2\x01\x44\xfc\xeb\xec\xcd\xaf\xf6\x5b\xf5\x9d\x07\xba\x84\x4f\xea\xfd\xff\x5f\x29\xea\x9f\xfc\x20\x50\x3c\xdb\xbf\x77\x2b\x1b\x7c\x92\xed\xdf\xbf\xd9\x6f\xff\xc1\xcd\x2f\x7f\x39\x0e\x5a\x4a\xfe\xe0\x55\x5d\x89\xce\xea\x22\xb9\x14\xd6\x75\x73\x89\x71\xda\xe4\x60\xef\x06\x7a\x82\x4e\x9a\xfa\x1f\x9e\xd0\xf0\x2f\x9f\x90\xf0\x67\x67\x48\x48\xc1\xee\xf0\x61\x47\xc9\x1b\x6b\x87\x38\xa4\xb1\x43\xed\x44\xf2\x11\xfa\x19\xf4\xa1\xa2\x1c\x5c\xf1\x1c\x96\xdc\x04\x83\x43\x69\x25\xed\x47\x2c\x0c\xb6\x9a\xbd\xb5\xc8\xf5\xfd\x8c\xcf\x71\x3c\xff\xea\x4d\x52\xfd\xe6\xaf\x47\x9f\x08\x06\xbf\xaf\xde\xee\x73\x4d\x31\xa4\x4b\x1e\xfb\xcd\xdf\x88\x17\x27\xbe\x86\x65\xce\x05\xde\x31\xe0\xf1\xe9\xa0\xf9\xcd\x7f\x1c\xaf\xa2\xf1\x66\x15\xd1\xd8\x39\xfd\x70\x16\x36\x3c\x91\x3c\x85\xff\xb7\xe3\xf0\xdb\x6f\x88\x82\x40\x25\x6b\x5d\x27\xc4\xdf\x89\x43\xe9\xdc\xa2\xf6\x7f\x16\xcf\xd5\xbd\x95\xeb\xef\xc6\x73\xf5\xce\xb8\xe8\xdc\x4c\x27\x2d\xc5\x4c\x6d\xde\x58\xda\x9f\x60\xfb\xf7\xe3\x35\xb0\xb7\xf0\xf8\x07\xf1\x5c\xa3\x5b\xb9\xfe\x61\x3c\xd7\xf8\x56\xae\xff\x32\x9e\x8b\xbb\x4d\xe5\xd3\x93\x25\xe8\x67\xcf\x4f\xc8\x23\x2a\x9c\x0e\xbb\xdf\xfc\x57\x31\x60\xcf\xd0\xf3\xc5\x48\xbb\xa0\xd1\xd5\xdd\xae\xb7\x6d\x0b\x2f\xc8\x8a\x33\xe4\x29\x11\xff\xe4\x04\x8b\xef\xbe\xbb\x3d\xc8\xfe\xeb\x93\x9c\x2f\xef\xe3\x7b\x55\x58\x9c\x9c\x51\x5d\xef\xe4\x84\x9b\xf4\x24\x82\x57\xee\x43\x45\x3a\xca\x97\xd0\x72\x29\xb8\xd6\x93\xc8\xfc\x32\xf1\x9d\x98\x4a\x3e\x26\xee\x7f\x91\xfc\xc3\x4c\xf2\x51\x79\x4a\x1c\xb2\x54\x94\x67\xf4\xe5\x7c\xdb\xb7\xeb\x0b\x9e\x67\xe4\x25\xed\x26\x93\x0f\x67\xbb\x0c\xe1\x19\x4b\x97\xc1\xaf\xed\x07\x44\x70\x93\xa1\xef\xb0\x03\x4d\xfe\x9b\x13\x9a\xfc\xf2\x8b\x69\xf2\x55\x7c\xfe\x8f\xe2\x5c\xf7\xfd\xef\xb6\x06\x1f\xef\xbb\xb7\xa5\x7c\x7c\x8b\xfb\x54\xc6\xff\x14\xbd\xca\x09\xf7\xcf\x1e\xee\x08\x06\xbf\x83\xb7\x28\x7c\x07\xa5\xdc\x5b\x33\xd8\xe7\x38\x9e\x7f\xf0\x3e\x9e\x50\xc9\x77\x18\x77\x82\xe6\xf9\x0a\x7b\xa6\x68\x5a\x02\x22\x6e\xce\x9a\x27\x75\xfe\x95\x9f\x4a\x9b\x88\xd1\xaf\x9c\x66\x85\x57\x1e\xa0\x0c\xe4\x9f\xb3\x9e\x95\x3c\x39\xd0\x38\x43\x2d\xb2\x63\x70\x43\x13\x86\x3f\x0a\x0f\xd3\x62\x67\x8b\x89\xe3\xf9\xdf\xc9\x91\x7a\xfd\x5a\xd6\xe0\x40\xee\x24\x5f\x06\x7a\x88\x2a\x39\x6f\x53\x58\x69\x3d\x3c\x98\x6f\x84\x4f\xf2\x26\xe4\xe8\xe4\xf0\xa7\xea\xe3\xc1\x5e\x9d\xc7\x27\x7f\xe5\x2e\x73\xc7\x87\x5c\x7e\x63\xc7\xee\xdf\xbd\x8a\x77\x2a\xf8\x02\x6e\x49\x9c\xc8\x83\xe4\xc9\xdb\x2f\x4e\xde\x52\x27\x6f\x9f\x4e\xde\xee\x4f\xde\x32\x27\x1c\x98\x76\x6f\xf2\xa0\x72\x8d\x07\x83\x7d\xe5\xe4\xe1\xf2\xc4\x55\x35\x31\xe4\x38\x0f\x60\xe2\x24\x66\xc3\x55\x5b\x28\x25\xf9\x78\x30\x2b\xb5\x9f\xa0\xc4\xf1\xc8\xa9\x0e\x57\xec\x07\x28\xe9\x25\xbc\xbe\x42\x9f\x62\x1f\x10\xef\xc3\x2f\xc2\x0f\xf7\xb1\x0f\xa8\xf7\x21\x05\x7d\xf0\x06\x02\x94\xf1\x9e\xd1\x0e\x41\x3d\x5b\xb1\xdf\xdf\x0c\xd5\x4c\xf9\x78\x44\x7e\x40\xf7\xce\x91\xdc\xe0\xa8\xfc\xe7\x29\x37\xf5\x73\xff\x78\x5c\xf9\x92\xf1\x5e\xb8\x32\xfd\x79\xe9\xc5\x4b\x3d\xff\x72\x81\x1c\x83\x53\x7a\x3b\xff\x61\x71\x1b\x2b\x52\xbe\x51\x35\x54\x79\x6b\x19\x73\x6d\x4f\x96\x92\x76\x16\x2f\x86\x4e\x00\x22\x28\xdf\xfe\x54\x28\xc8\x11\xca\x7d\xed\x2a\x8a\xf7\xc2\x05\xe4\xf0\x34\x36\x7d\xae\x7d\xfa\xa9\x31\x80\xda\x71\x66\xd3\xaf\xc3\xbe\x34\xca\xf6\x17\x3d\x28\x14\x83\x62\x5e\xcf\x93\x85\xe2\x04\x78\xbd\xb6\x56\xeb\x5f\x64\xfb\x7c\x2b\x1b\x7a\x92\xed\xd7\xb7\xb2\x1d\x16\x88\x5d\x06\xf7\x54\x91\x9b\xb7\x57\x82\x6d\x6f\x43\x34\x37\x03\xc5\xd5\xa4\x84\x74\xd0\x32\x62\x00\xd0\x90\x29\x02\x60\xc7\xf4\xdc\xcb\x8d\x7b\x49\x07\x28\x91\x6f\xfa\x47\x28\x99\x8e\x5b\x67\x87\xe7\x5a\x19\x34\x19\x5d\xbd\x7c\xdb\x8a\x36\x76\xad\x30\x6d\x56\x9e\x5f\xc2\x9b\x4e\xf6\x63\x2a\x65\x44\xb7\x9c\x8e\xd0\x9f\xd1\x5f\x18\x2f\xc9\xf4\xbc\xe2\xff\x4a\x21\x2f\x8f\xfc\xb7\x95\xd8\xb1\x25\xf4\x04\x7d\xa8\xcc\x9f\x12\xf3\xe3\x8d\xc8\x2d\x82\x0c\x4c\x9c\x61\x12\xf3\x64\xf2\xe3\xc7\x84\xf3\xcc\xbf\x54\xe6\xc9\x87\x78\x16\x5b\x9e\x0e\xcc\x31\x82\xf8\x1f\xbd\x5c\x66\x70\x38\xcd\xa7\xa0\x47\x28\x35\x4f\x26\x3f\x9b\xa7\xd1\xc7\x6f\x6a\xe2\x2f\xb9\x47\x28\x65\x86\x66\x17\x8f\x50\x32\x05\xfd\x25\x28\x4e\xef\xf2\x29\x5d\x0f\x21\xf8\x7f\x98\x9a\xe2\xee\xe1\x40\xdc\xcf\xf1\x32\xc8\x59\x2f\x47\x96\x11\x97\x1d\xe1\x09\xe4\xc3\x29\xdd\x25\x01\xec\xc0\x0a\x33\x91\x4c\x3e\x3a\x57\x8e\x05\x8e\xd7\x4d\xfd\x9b\x8d\x09\xe7\x78\x47\xfe\x5b\x38\xf0\xbe\x1e\xaa\xbf\xf6\xb1\x81\x31\x34\x91\x97\x93\x53\x38\xe9\xe5\xb8\xc0\x0e\xbf\x5f\x9d\x52\xae\x37\xe3\x60\xf7\x7f\xd9\x0c\xe5\xd8\x0c\xfb\x4a\x33\xb0\xd3\x0b\x9a\x51\x34\xdc\x10\x8b\xfc\x15\x62\xba\x31\x2c\x42\xe5\x1f\x3f\xc6\x72\xad\x24\xee\x93\x19\x25\x50\xb8\x92\x91\xea\xf2\x8c\xbc\x84\xda\x0a\x02\xdd\x3a\x32\xf1\x4b\x27\xde\x08\x61\x7b\xa2\x17\xa1\x3f\x0d\xce\x21\xd0\xec\x55\x1d\xe8\x6b\x91\xf2\x23\xf4\x06\xc1\xb7\x4f\x15\x99\xb8\xeb\x6e\xdb\x91\xbc\x85\xcc\x5d\x1e\xf6\x34\x1a\x27\xb0\x82\xbc\x22\x5b\xf2\xe8\x17\x91\xfa\x97\xcf\x82\xe5\xc0\x08\x9a\xcd\xe5\x0b\xc5\x97\x5f\xf8\x0b\xae\x4c\x48\xee\x90\x49\xc2\xc8\x22\xbc\x6b\x4e\x03\xd2\x3f\x5e\x18\x5b\x5e\x8f\x11\x13\x2c\xd1\x02\x93\x39\xe5\x94\x1d\x8b\xc5\xe2\x15\xf4\xd2\x76\xda\x79\x84\x82\x41\x19\x84\xe0\xb8\x60\xcf\x20\x14\xc7\x53\x22\x71\xb5\x2d\xbf\x7c\x7c\x49\x3d\x26\xbc\xc7\x2f\x92\x89\xc7\xc4\xf3\x77\xce\x77\xcc\xcb\x2f\x92\xc9\xa7\x3f\xcc\xf8\xe2\xc7\xae\x78\x0d\xf0\x44\xe3\x73\xf6\x25\x99\x3e\x0a\x00\x3f\xc4\xf4\x83\x9d\xf6\x05\x81\xf3\xf9\x62\x09\x19\xa9\x92\x2b\x7b\xbb\x76\xef\x74\x53\x5c\x69\xd2\x55\xd2\xe3\x0c\xf9\x0c\xfd\x11\xf4\xd6\xcc\xa0\xf8\x87\xc7\x8c\xc5\x0b\xde\xb4\xa0\xf0\xb6\xec\x1b\x43\xc5\x20\xdc\x83\x37\x8a\x07\x2c\x33\xb4\x6e\x95\xc5\xde\x2d\xeb\x6f\x61\xdd\x28\x8d\xbf\x5b\xda\xf7\x53\x7f\xab\x78\xf5\xdd\xe2\xfe\xa6\xf3\x8d\xd2\xc4\xd7\xa3\x7e\x79\x6c\x71\x63\xdf\x97\x21\xef\x6b\x5f\x4b\xd5\xaf\x01\x5e\x7f\x5b\x17\x38\x29\x18\xab\xe3\x13\x12\x07\xd2\xf8\x12\x20\x91\xd7\xe2\x53\x30\xe9\xf0\x0d\xb9\x00\x4a\x5e\x15\xfc\x87\xa2\x8f\x81\x4f\xe9\xc0\xc6\x5e\x49\x23\xe7\x8d\x3e\x8f\x8f\x72\xf0\x18\x66\x57\xe0\x47\xfb\x1b\xe5\xd1\x4e\xa5\x92\x5f\x76\x4e\xc0\x90\xf7\xcd\xca\x71\x98\x3c\x35\x2f\x16\x3f\x67\xd3\x92\x27\x69\xe0\x0f\x15\xe5\x09\xa9\x54\x94\xb3\x93\x48\xc9\xe6\x1d\x09\x4c\x4d\x4f\x37\x7f\x48\xa0\x95\x8a\xe2\xdf\xb4\x57\x2e\x76\x04\xc2\x83\xaa\x87\x2b\xc5\x31\x49\x33\x37\x27\xf8\x51\x71\xfc\xa8\x7f\x67\xfc\x06\xa6\xcf\xef\xc9\x07\xf4\x68\x5b\x7d\x9a\xa3\xa5\x18\xd2\x75\xe4\x06\x66\x30\xd4\xe2\xe8\xb5\xde\x95\x2b\x1e\x3c\xe7\xd6\x00\x6b\xbf\x51\x3c\x70\xb4\xfc\x66\xf1\xde\xbb\xc5\xbd\xa5\xe9\xcd\xe2\xcc\x1b\xc5\xd7\xa1\xe5\xc2\x6d\xb9\x36\x38\xdb\xa9\x89\x5d\x85\xfc\xa6\x82\x9c\xd3\x36\x82\xf7\x86\xac\x7b\x86\xbe\x1d\x5c\xdd\x10\x65\xc8\xfb\xf1\x1b\xa8\x9e\x74\xce\x0d\x64\xb9\xff\xd7\xc7\xdc\x94\x17\xd4\x1b\x83\xee\x19\xfa\xd5\xe1\x14\xc8\x93\x54\x47\x34\xf9\xaf\x10\x5a\xef\x9c\x58\xa4\x6e\x50\x62\x7a\x9d\xc0\xc2\x95\xde\x7c\x86\x5f\xfc\xe1\x74\x78\x3b\xbf\x9b\xf4\xde\xce\xbb\xdf\xa7\xc2\xdb\x93\xef\x39\x88\x6f\xe1\x47\x34\x5f\x78\x84\x4f\xc0\xdc\x5f\x89\x1d\x7a\x72\xc0\x1d\x06\xcc\x0c\x48\xd0\x37\x37\xb7\x45\xfa\xec\x48\xf8\xc6\x31\x55\xfe\x92\xe6\x3f\x65\x63\x2a\xd0\x55\xa9\x06\x34\x2d\xec\x6f\xe7\x42\x86\x04\x51\x6e\x82\xaf\x20\xec\xac\xc4\x87\x13\xdc\xe6\x57\x97\x99\x6e\x05\x7e\x74\xbf\x39\x19\x60\x8f\x6e\xc4\x6f\x31\x4b\xb9\x68\x49\xe2\xbe\xc4\xcc\x18\x03\xc1\x39\x87\xae\xaf\x60\xdf\x03\x1d\x5a\xb1\xdd\x82\x7c\xaf\xc4\xa5\xb3\x72\x6b\xf0\x6a\xbf\xb3\x66\x21\xa7\xcd\xd2\x7e\x77\xcd\x3a\xe9\x07\xfd\x14\x6a\x74\xa4\xe2\x26\xdc\xb8\x63\x94\x98\xbc\x73\x53\xe8\xeb\x6b\xfe\xc0\x2a\x6e\x0a\x79\x79\x32\x56\x9a\xf6\x10\xb2\xa1\x9b\x42\xd3\x70\xf2\x73\xec\x6e\xc0\x6d\x48\xf9\xd7\x57\xf4\x0a\x24\xdf\x89\x11\x94\x3a\x01\x98\x82\xee\xd2\xb1\xa4\xec\x65\x52\xce\x4f\x4a\x42\x9f\x63\xdb\x8c\x6f\xed\x40\x04\x3e\x85\x62\x08\x1d\x89\xea\x54\xe0\x47\xe7\x8c\xa8\x4e\x2a\x15\x48\x53\x33\x92\xa6\x4e\x1a\xf6\x81\x98\xdf\x64\xe1\x24\x5c\xa9\x98\x4f\x76\xb4\x11\xf5\x80\x04\xaf\x81\x27\x4f\xd8\x9b\x82\xbd\xd7\xc8\x23\xe0\x43\x36\x78\x8f\xbc\x79\xc2\x0f\xb9\x20\x21\xee\x9f\xef\x21\x1f\xc2\x08\x7c\x7c\xc2\x0f\xc5\xb0\x50\xe4\xbd\x13\x7e\x28\x1d\x52\x22\xff\x9d\xf0\x43\x39\x48\x3b\xf7\xd8\xf7\x80\xfa\x38\x24\xec\x83\x77\xd1\x03\x3a\x48\xf2\x01\x3d\x43\x08\x79\x40\x2f\x31\x42\x1e\xd0\x53\x94\x90\x07\xf4\x1c\x27\xe4\x01\xbd\x44\x0a\x79\x40\x3d\xac\x7c\x5f\x7e\xe7\x1e\x49\xc3\xc8\x86\x3e\x19\xf3\x7e\x1c\x44\xf3\x9b\x6c\x29\x69\x5f\x7a\xeb\x34\x3f\x65\xe1\x43\xe6\xac\x57\x8b\x7f\xe8\x17\x86\x70\x34\x2a\x4a\xc2\x49\x26\xaf\x15\xb4\x23\xbf\x57\xe9\xf8\xc7\x8a\x91\x76\x52\x95\xfc\x21\xd0\x58\x70\x8b\x3d\xc1\x57\xfc\xd0\x41\xc9\x60\x4d\xad\xcc\x12\x4e\xaa\x82\xa6\xf9\x6f\x2b\xf6\xa9\x93\xd2\x90\x65\x04\xd3\x70\x15\x63\x25\x3d\x5e\xa9\x97\xff\xfc\xf9\x80\xae\xd7\xfe\xdb\xb8\x85\x1e\xb7\x62\xa4\xc8\x79\x24\xb8\xf0\x43\x6a\x7e\xca\x1d\x49\x90\x0b\x48\xe0\xdf\xfd\x7c\xbc\x46\x88\x8b\xe2\x71\x42\xc4\x7c\x7f\xc5\x09\xe1\x6f\xbb\x3d\xfe\x2e\xc8\x71\x51\x7b\x44\x8e\x9b\x88\x9d\x50\xc1\xfc\xb6\x52\x86\x3f\x7e\x34\xbf\xa9\x94\x8b\x4f\x57\xb9\xa1\x0c\xa7\x4a\x0f\xe6\xb7\x15\x04\x0e\xf2\x21\x70\xd1\xe7\xb0\x2b\x54\x43\x60\x38\x55\x4a\x7e\xb6\xe3\x9e\xfe\x2e\x95\x8a\xf3\x6d\xb0\xf3\x35\x98\x7c\xb9\xc5\x94\x4c\x46\x6d\x3a\xdd\x81\x0e\xd4\x01\xfd\xd6\x2c\x61\x9c\x5f\xaf\xce\xc7\x66\xdb\xe4\xdb\x5a\x03\x6c\x40\xc7\x31\x53\x88\x97\x8b\x5f\xf8\xbc\x54\x96\x3c\x4d\x21\x99\x42\xa2\x9b\x9f\x6f\x68\x53\xc8\xe3\x3b\x7a\x8b\x1f\x45\xe9\x11\x4a\x29\x29\xa8\x0f\x1d\x6d\x69\xfc\x36\x1b\x37\xda\xfc\x0c\x3d\x19\x67\x53\xd8\x5f\x14\xfc\x7d\x62\x22\xf1\x2e\x78\x7a\x57\xf7\x43\x0c\x28\xe9\x8b\xc3\x2f\x2f\x83\x06\x65\x0a\x5f\x55\x0f\xfa\x88\x3c\xc2\x8f\x5e\x9f\x3f\xe4\xdf\x52\xc9\x2e\x8b\xe6\x61\xe3\x4c\x3b\xb5\x6e\x76\xcd\x07\xeb\xca\xa1\xc3\xf5\x93\x16\xc7\x9c\xb9\xfd\x73\x5e\xbf\xff\x43\xeb\x56\xa7\xff\xe1\xcd\x5a\x7f\x0e\x59\x3f\xbf\x31\x3e\x96\x37\xa0\xdd\x2d\xa1\x37\x77\x16\x1f\x61\xff\x1c\x10\xa9\x54\x22\x63\xd3\x9f\xb4\x0f\x7a\x6b\xef\x25\x30\x9c\xf7\x2f\xf2\xa0\xbf\xdf\x2a\x90\x64\xd2\xd3\x11\x7e\x62\x15\xc7\xad\xe1\x2f\x68\x49\xee\xf7\x5f\x8d\xd7\x9a\xfc\x4f\x27\x18\x01\xda\x5f\xd2\x90\xc2\xef\xb5\x06\xe4\xe6\xbe\x6c\x00\xe9\xce\x77\x29\xe9\xdf\x0b\x8b\x8f\xba\x9f\x43\xcb\x5b\x4c\x6e\xdf\xe4\x64\x4f\xc6\x79\xd2\xe1\x70\xfa\xe5\xbd\xa5\x11\x38\xf9\x09\x09\x1c\x3a\x05\x7b\xc9\xf1\xef\x48\xfc\xfb\xe3\x45\x53\xce\xae\xb2\x28\x69\xfb\x66\x7b\x0f\x5b\x7c\x70\xfa\x6c\x65\x65\xdf\x9a\xce\xfe\xd0\xbe\x9e\xee\x7c\xf9\xd1\x76\x50\x83\x73\xab\x06\xf7\x46\xc5\xd7\xd3\x9f\xa1\x6f\xdd\x9b\xb2\xee\xee\xd6\xa7\xfb\xd5\x57\x9d\xac\x07\xc0\x56\x37\x69\xb2\xbe\x51\xff\xcf\x37\xb7\x8a\x6c\x6f\x94\xf8\xc5\xf6\x66\x25\xd7\x8b\xdc\xef\xcf\xe7\xd9\x0f\xa7\x2b\x9d\x6f\x90\xe4\xa5\xec\x54\x66\x09\x4f\x7c\x86\x81\xcb\xe3\xb9\xd1\xd0\xca\xe3\xf1\xfd\x53\xdd\x43\x4c\x8e\x10\x2e\xf2\x12\x4e\xaf\xbe\x41\xd2\xa5\xce\x75\x1b\x80\x7f\x41\xe1\x44\xb7\xf8\xf9\xfe\x26\x1d\xf6\xb7\x88\xfd\xc3\x4d\x3e\xf8\xf9\xeb\xed\x4f\x9f\x6f\x7f\xfa\xf5\xd9\xa7\x13\x87\x94\xb3\xe8\x58\x34\xee\x62\xf0\xba\xd7\x3b\x47\xb0\x15\x3f\x80\x5f\xe4\xed\xaa\xde\x8a\xb9\xfa\x93\x35\x9d\xb7\x30\xde\x91\xbe\x8f\xbb\x94\x3e\x3a\x24\x88\xc3\x3f\x73\x27\x7d\x19\xe7\xfd\x0c\xe2\xc7\x8f\x1f\x4e\xfd\x8f\x47\x35\xc7\xc3\xdd\xf9\xd9\xbf\x0f\xec\x77\x4e\xd3\x6d\x29\x8c\xdc\x14\x64\xa9\x48\x4f\xa1\xb7\x03\xde\x71\x14\xd9\x48\xfc\xf0\xf9\xbc\x09\x69\x29\xdc\x1f\x3a\x26\x3d\x06\xdb\x92\x71\x3f\x09\x31\x98\x5f\xe4\xf3\xe0\xfc\x2a\x68\xf2\xf1\x88\x60\xdc\xc7\x01\xf4\x0c\xa5\x94\x83\x3b\x84\x14\xf4\x02\xa5\x21\x39\xe6\x73\x49\xaa\x7c\x2b\x1d\xc2\x8d\x1e\x41\xa4\xa5\xca\xb7\x31\x94\x9e\xa5\x97\x77\x68\x7f\xdd\xe1\x54\x50\xfa\x43\x68\x5f\x1f\xef\x84\xaf\xe8\x55\xc9\xed\xae\x25\xdb\x56\xc4\x6b\xf1\x89\x02\x10\xd2\x3b\x30\xde\x0c\xce\x72\x56\x2c\x71\xce\xa2\xe7\x1d\x9a\x3c\x89\x38\x70\xbb\x89\xa7\xa8\x9f\xf4\x70\x5a\xba\x82\xef\xe5\x7c\xa1\xf3\x96\xf3\x7d\xe5\x32\xe3\x7d\xb8\x8a\x3b\x7a\xf0\xf4\x72\x86\x03\xe6\x50\xf0\x5a\x15\x31\x9a\x04\x56\x67\x37\xbd\xaf\xf8\x20\xee\xe7\xbc\xd3\xdd\x18\x3d\xdb\xb4\x24\xdb\xdd\x25\xa4\xf0\xa6\xbf\xff\xf1\x59\x7a\x79\x08\x0c\xd6\xde\xa9\x89\x17\xc5\x1b\x82\x20\x68\x60\xa5\x72\xda\x86\x43\x70\x6e\xff\xeb\xf5\xf1\x75\xc8\x1c\x9d\x15\x46\x28\x55\xdc\x77\xb0\xb9\xce\xa9\x7e\xf1\x0f\x95\x77\x88\x7d\x8a\xd9\xdb\x79\xaf\xb1\xa4\xf3\x25\x7c\x7d\x11\x17\xe8\x77\x44\xa6\xd3\xd8\xd5\xa1\xd1\xa1\x7b\x62\x74\x18\x03\xf8\xec\xbe\x54\xec\x53\x67\x7f\x51\xfa\x29\x5f\x4b\xcf\xee\x4b\x74\x4f\x3c\xe8\xe9\x84\x9b\xbe\x3e\xb2\xa0\x95\x23\xd9\xbe\xef\x80\xa0\xd0\xe7\xab\x24\x8a\xd1\xf0\x78\x83\xeb\x56\x8e\x67\xf8\xe5\xc6\x30\x86\x64\x9b\xb7\xe6\x8a\x00\xa5\x7f\x80\x7e\x05\x3d\x40\xbf\xfd\x07\x7f\x13\x4a\xf3\x0f\xd0\x6f\xff\xfe\x7f\x01\xa5\xa7\x0f\xd0\x6f\xff\xee\x1f\x43\x69\xc1\x7b\xfe\x2d\x28\x2d\x7a\xcf\xbf\x0d\xa5\x25\xef\xf9\x9f\x40\xe9\xd9\x03\xf4\x9b\x7f\x01\xa5\xe5\x07\xe8\x37\xff\x12\x4a\xcf\xbd\xd4\x3f\x85\xd2\x8a\xf7\xfc\x4f\xa1\xf4\xe2\x01\xfa\xed\xdf\xfb\x87\x50\x5a\xf5\x9e\x7f\x17\x4a\x6b\xde\xf3\x6f\x41\x69\xdd\x7b\xfe\x3d\x28\x6d\x78\xcf\x3f\x87\xd2\xe6\x03\xf4\xdb\xbf\xf3\xbf\x43\x69\xcb\x7b\xfe\x1b\x28\xbd\xf4\xd2\xff\x1a\x94\xb6\xbd\xf7\x3f\x87\xd2\x8e\xf7\xfc\xb7\x50\xda\xf5\xd2\xff\x04\x4a\xaf\xbc\xe7\x9f\x42\xe9\xb5\xf7\xfc\xd7\x50\x7a\xe3\x3d\xff\x39\x94\xde\x7a\xcf\xff\x08\x4a\xef\x1e\xa0\xdf\xfe\xf1\x9f\x42\xe9\xbd\xf7\xfc\x27\x50\x1a\xfa\x01\x7a\x80\xfe\xef\xbf\x06\xa5\xa1\x57\xaf\x81\x7f\xfc\x8f\xa1\x34\xf4\x19\x7a\x80\x7e\xf3\xdf\x43\x69\xe8\xd7\xde\x8f\xff\x05\xfa\x7c\x65\x4e\x3e\xa1\xe0\x3d\xb8\x45\xc0\xa9\xad\xb8\x8a\x33\xf7\x08\xf8\x07\x01\xd4\xf7\x81\x61\xb7\x80\xad\x1c\x28\xb8\x3e\xfe\x5e\x87\xe6\x6e\x76\xa8\xb8\x72\x85\x38\x36\x69\xe8\x8f\xbc\x1f\xff\x07\x94\x86\x9e\xa1\x07\xe8\xff\xfa\x57\x50\x1a\xfa\xee\x3b\x2f\xe9\xdf\x42\x69\xe8\x05\x7a\x80\x5e\x43\x1a\xfd\xe6\x9f\x86\x34\x9a\x45\x14\xfa\xf3\x88\x42\xff\xfa\x0b\x1a\x85\xbf\x33\xd4\x9f\xf3\x37\x71\x9e\x29\x86\x11\xd2\xd0\xc3\xf1\xc7\xbf\x1e\xe1\xf8\xe3\xdf\x0f\x71\xfc\xf1\x6f\x40\x69\xe8\x97\xde\x8f\x3f\x81\xd2\x3e\xa7\xfe\xf8\xcf\x42\xb4\x7f\xfc\xd3\x10\xed\x1f\xff\xe7\x10\xef\x1f\xff\x49\x88\xf7\x8f\x7f\xfe\x05\x78\xf7\x6f\x62\x65\x4b\xc6\x15\x52\xfe\xf8\x8f\x43\x52\x7a\xbc\x1f\xa2\xf9\x67\x21\x9a\xbf\xf9\xb3\x08\xa9\x7f\x16\x21\xf5\xbf\x45\x48\xfd\xd3\x88\x98\xff\xf4\x0b\x90\xa2\xdf\x46\xea\x4e\xe0\x0d\x5e\x54\x78\xc3\xc3\xee\x04\xa9\x1f\xff\xbb\x0b\xa4\x7e\xfc\x1f\x23\xda\xfd\x4f\x11\xed\xfe\xf5\xfb\x68\xfe\xf8\x6f\xbe\x00\x4d\xea\xa6\x58\x91\x6c\xfd\x88\x9d\x4f\x96\x5b\x3d\xfb\x27\xb7\xfb\x31\xe2\xbf\x1f\xff\xd1\x17\xe0\x32\xb9\x85\x8b\x7f\x60\x11\x20\x73\x3a\x26\xfe\xec\x76\x47\xfa\x84\xf9\x55\x44\x98\x1f\x22\x0a\xfb\xe8\xfd\xab\x0b\x52\xfd\xf3\x2f\x40\x8f\x78\x6f\x78\x14\x6e\x0e\x0f\xc3\xb4\x37\x92\xac\xf0\x46\x46\xe4\xa3\x71\xf2\x47\x11\x35\x7d\xb2\xfe\xcd\x43\x03\xfe\xe1\xed\x01\xf3\xa7\x51\x4b\xfe\x87\xa8\x25\xff\xeb\x4f\x1a\x30\xdc\x2d\x3c\x1d\xeb\x80\xde\x0d\x42\xff\xb7\x07\x3c\xff\xf3\x68\xc4\xfc\x9f\x91\xf4\xf9\x17\x11\x56\xff\x32\xc2\xea\xcf\xde\x47\xe6\xb9\xf8\xf2\x0e\x5d\xef\x1b\x37\xd1\xdd\x48\x62\x9c\x9a\x7f\xfc\x06\x93\xfe\xde\xc4\x4f\x60\x61\x7f\x13\x43\xc5\x71\x22\x72\xfa\x9c\x78\x3a\xd6\xff\xd9\xdb\x63\xfd\xfb\x90\x47\x4f\x87\xfc\x1b\xc3\xcc\x1f\xf2\xfe\x75\x58\xff\x54\xc4\xd3\x54\x12\x41\x78\x84\x0c\xbf\x12\x15\x33\x33\x95\x34\x0d\x4a\x43\xc1\x8b\x29\xcb\x8f\x53\xde\x91\x0a\x39\x28\x0d\x0d\x50\xd1\x18\x6e\x00\x0e\x0e\xff\xaa\xf3\xe5\x28\x4f\xf9\x3f\xdb\xb5\x35\xb1\x98\x60\x0d\xb9\x86\x4e\xb3\x4d\x85\x1f\xb7\x83\x2c\x13\xbc\x78\xc8\xde\x10\xb0\xe0\x07\x9e\x03\xc3\xb2\xc1\x21\x6d\x10\xff\x97\xe3\xb5\x15\x23\x13\xfe\x6f\xc9\x21\xb3\x04\x9e\xcd\x5c\xfc\x2b\xa9\x55\x51\x2f\xef\x26\xba\xb6\x6f\xd0\x00\x80\xda\xdc\x12\xea\xf2\x6a\x90\x6d\x1a\x64\x7d\x6b\x4d\x34\x6e\x2d\xe8\x4d\x4b\xd8\x61\x4d\xb2\x4a\x6e\xda\x55\x75\xd3\xd9\x83\x7c\x50\x03\x51\x8b\xca\x52\xc3\x66\x95\x95\x89\xa0\x31\xd5\x5a\x9b\x6c\x8f\x00\xdc\xc4\x58\x00\x00\x0d\x00\x26\x37\x71\xb5\xab\xa2\x5c\x93\xe2\x47\x43\x93\x99\xe7\xf5\x66\x9f\x64\x18\x5d\xd3\xda\xc3\x8d\xc2\x29\x43\x45\x18\x4e\x26\xb9\xcd\x76\x3b\x9f\x2f\x16\xd5\x46\xbd\x5e\xef\xb6\xc9\x6a\x5f\xad\x79\xa5\x01\x0e\x28\xa0\x77\xcd\x14\xd7\xe4\x9d\x5c\x9e\xdb\xca\xc6\xc2\xa0\xe4\xee\x48\xeb\x76\x29\x41\xc6\x72\x56\x3f\x57\x55\x9b\x9b\xf5\x50\x9f\xa0\x05\xdd\xa5\x38\x7b\xea\xe4\xac\x26\x2d\x77\x46\xf4\x10\x00\x40\x02\x9a\x90\xe7\xf3\x7e\x9f\x61\xf0\x7a\xad\x56\xa7\x48\x72\x32\x99\x4c\x4c\x79\x3e\xdf\x6e\x77\x3b\xbc\x6e\x18\x0d\x92\xa2\x96\x8a\x2c\xcb\xe6\x6e\x87\xe3\xd5\x41\xb5\x65\x59\xcd\x4e\xb7\xbb\xd2\x4d\x33\x97\x2b\x14\x14\x05\x86\x09\xb2\xd5\x9a\x0e\x18\x46\xdd\x6c\x11\x96\x5b\xd8\x36\x5c\x1f\x8f\xb7\xfb\xfd\xc2\x30\x8c\x46\xaf\xdb\x95\x24\x41\x28\xe5\x9a\xb4\xda\x19\x01\x1a\xc8\x1e\x81\x68\x79\xc2\x71\x18\x86\xe3\x5e\xbd\x35\x8a\xa4\x78\x7e\x22\x78\x75\x90\x55\x5a\xad\x0d\x81\x47\x30\xd9\xa7\x25\xd6\x50\xfb\xfd\xa6\xd3\x1f\xb4\x9c\xfe\xbe\x03\x33\xfd\x5e\x49\xd9\xf6\x89\xfd\xb8\xdf\x86\xd9\x01\x4b\x20\xac\xf7\x4f\x64\x91\xb1\xa8\x8f\xc7\xa2\xe1\xfd\x21\x9c\x4e\xb2\xd3\x55\x03\xe1\x56\x24\x3b\x45\x49\x56\x2c\xe7\xd8\x79\x9d\xe4\x0e\x7f\xa9\x46\x76\x56\xce\x7a\x7f\xb0\xdc\xa9\xd3\x2c\xc0\x01\x06\x28\xb0\xe8\x72\xd3\x05\xc5\x93\x4a\x7d\xd9\x52\xba\x3c\x59\x9d\x93\xbc\x03\x64\x4c\xf5\x70\x06\x38\x68\xaa\x0a\x69\xa9\xcb\x4e\xd3\xd2\xb9\xa5\xad\xeb\x53\x57\x57\x6c\x57\xcf\xb6\x1c\x65\xdf\x72\xe4\x1d\x31\x5f\x6e\xbc\xae\xc6\xfc\xee\xf5\xfe\x51\x98\xa5\x2f\xb9\xeb\x7f\x3a\xc7\x69\x3a\xfb\x55\x7f\x74\x7d\x41\x52\x32\x06\x80\x8c\x81\x6d\x96\x10\xb6\x59\x42\xed\xb3\xa4\xba\xcd\x92\x0e\xb6\x09\xfa\x75\xe7\x71\x3e\xc0\xc0\x50\xd9\xd7\x84\x45\xbf\x21\xec\x07\x0d\x61\xbf\x6f\x08\xfb\x6d\x43\x24\x06\x4d\x8d\xd8\x77\xca\xc4\xa6\x87\x03\x84\xc3\x3c\x34\x65\x40\x06\xc8\x62\xa0\xdd\xdf\xd7\x84\xfe\xbe\xe9\xd1\x79\xa8\x64\x07\xc2\x82\x1d\x0b\xfb\xec\x58\x80\xb3\x63\x8f\xc6\xec\xd7\xfc\x9b\x34\x82\xbe\xf4\x68\x81\xd7\x45\xce\xe2\x96\x32\x90\xf7\x6a\x9d\x08\x68\x1e\xd4\x3a\x31\xe9\x79\xb5\x0a\x22\x9e\xa4\x01\x20\x95\x79\x1e\xc7\x79\xb8\x69\xef\xf7\x03\xb5\xab\xaf\x46\xf2\xb2\xcf\x4c\xe1\x52\xbd\xc9\x36\x1d\x63\xc5\xeb\x13\x3d\x1b\xf0\xd5\xb4\x9d\xe3\x72\xf9\xed\x7e\xaf\x18\x94\x2e\x8c\x64\x5d\xc4\x79\xa1\x94\x6f\x56\x9b\x4b\xcd\x6c\x1a\xb4\x6e\xf4\xba\x52\x9f\x9a\x62\x05\xd4\x82\x2d\x6b\xbf\x9f\x1b\x86\x01\x8a\xf5\xfa\xa8\x2e\x08\xa5\xbc\x05\x5b\x66\x63\x29\x6a\x3e\xbc\x91\x88\xf3\xf9\xa5\x92\xaf\x35\xdd\xfd\xde\xd4\x87\xfa\x4e\x42\x56\x2c\x33\x15\x4a\xb9\x7c\x3e\x7f\xe4\xe7\x25\x5b\x10\xf6\x0e\x91\xcf\x71\xdb\xfd\xde\x34\x78\x1d\x5d\xe5\x71\x16\x15\x84\x52\x31\xcf\x35\xf7\xab\x3d\x6d\xcc\x63\x7c\x1f\x94\x95\x35\x9c\x46\x26\x18\xf0\xc5\x4e\x7f\x8e\x62\x8b\xba\x31\x21\xe5\xd9\x24\x57\x9f\xcc\xe9\xb9\xa5\xd4\x07\x0d\x83\xe9\x55\xad\xae\xdc\x16\x64\xcb\xc2\x0a\x9d\x85\xca\x51\xcb\x49\x87\x1e\xce\x55\xc3\x1a\x33\x78\x28\x37\x64\x00\x70\x82\xa8\x35\x49\x72\x32\x1c\x0e\xd5\xc3\xf8\xad\xd7\xbd\xf1\xcb\x4b\x82\x20\x9b\xcb\x25\xc5\x30\x8a\x62\x53\x54\xab\xd7\x6e\x3b\x8e\xe3\x94\x36\xbb\x5d\x61\x5f\xdd\x2f\x6c\xdb\x69\xb7\x69\x7a\xb3\xd9\xba\x9d\x26\xd5\xaa\x8e\x59\x56\xef\x76\x5c\x89\x97\x84\x42\x2e\xcf\xd4\x57\x9a\x2b\x72\x3c\x55\x18\x0d\x87\xaa\x69\x59\x0c\x80\x39\x2c\x94\x15\x38\xa6\xaa\x04\x51\xaf\x47\xf5\x5a\xf3\xdd\x4e\xd1\x0d\x93\x24\xa9\x73\x5e\x2a\xe1\x83\x1e\xd1\xcf\xf6\xcf\xfe\x7a\xa5\xfe\xb6\x4f\x28\x6c\x9f\x50\xc6\xfd\xb6\x82\x0c\xda\x7b\x84\x65\x6b\xec\x58\xd4\x11\x4e\xcb\x8e\xa7\x6e\x8e\x15\xd1\xc6\x78\x86\x64\xb3\x33\x24\x87\xcc\x6a\x39\x4e\x1b\x71\x97\x7f\x78\x28\x57\xfd\xca\x08\x92\x24\x27\x74\x80\x13\xd7\x57\x16\xd5\x46\xc3\x20\x3b\x5d\x5a\xd6\xb1\x03\xcd\x42\x0e\xef\x67\x89\xe1\x36\x4f\x08\x3b\x8e\x50\x99\x22\xa9\x0e\x44\xd2\xd9\xcf\x48\x78\x90\x69\xc3\x70\xbf\x53\x1b\x0e\xfa\x9d\xe1\x96\x15\xe1\x3e\x8b\xc0\x5b\x4e\x1b\xee\x39\x11\xde\xb3\x1a\x8c\xb0\x1a\x32\xe6\x34\x74\xca\x69\xa3\xa2\x58\x1e\x4d\xb9\x72\x36\x23\x9e\xfe\x95\x45\x24\x94\xcd\x32\xa0\x71\x99\xdc\xeb\x0c\xa9\xe8\x0c\xb9\xd0\xbb\x39\x58\x61\x30\x92\xa9\xdb\x80\x04\x9c\x3f\xd2\x70\x99\x22\x8b\x4a\x97\xcc\x2d\x18\x8e\x54\x47\x1c\xa9\x4b\x1c\x67\x28\xdc\xd2\xd2\xb9\xa2\xb5\xe4\x49\x2a\x90\x3d\xfe\x90\x20\xc2\xf9\x4c\xe6\xc9\xa5\xa1\x93\x4b\x43\x21\x6d\x43\x21\x73\xa6\xc2\x71\x96\xc2\x2d\x97\x2b\xbe\xe9\xec\x96\x45\x7b\xf5\x35\x7f\x2a\x66\xee\x70\x13\xd0\xfe\x3c\x20\xee\x9a\xfe\x1f\xcb\x34\x09\x76\xd7\x04\x02\x59\x65\xd5\x1a\x68\xcb\x3e\xf9\x36\x55\x42\xa0\x11\x52\xdd\x16\x49\x67\x30\x6b\x87\xf4\x6a\x97\xe1\x41\xbb\xcc\x8e\xfb\xb5\xda\xe6\x38\xa7\x44\x13\xf7\xa6\x09\xda\x4c\x91\x10\xf6\x22\xa1\x0e\x59\xd2\x45\x58\x12\x41\x58\xd2\x65\x59\xba\xfc\x35\x62\x04\x19\xf4\x3b\xf0\x9e\xc1\xe0\x26\xee\xf5\xa5\x47\xbe\x05\x4d\x4f\xb8\x39\x86\x53\x82\x85\xe1\xd3\x05\x32\xc1\xab\x0d\xbd\x09\x46\xf3\x2e\xcd\xcf\xb7\x98\x42\x58\x5b\xb0\xaf\x56\xd5\x0e\x69\x30\x34\xcd\x08\xe5\x55\x93\xcc\x6f\x36\xfb\x7d\xae\x46\x9a\xb5\x61\xbf\x2d\xe7\x60\xad\x93\xcb\xc9\x55\x81\xd2\xc7\x84\xa1\x75\xc1\xdc\x1b\x9f\x04\xa8\x11\x5e\x13\xb6\xbb\x6a\x83\xa8\x37\x5a\x5d\x46\xd0\xe5\x7e\x3b\xb7\xc5\x39\x74\xb8\xab\xaa\x86\xc5\xf5\x18\x86\x51\x5d\x6d\x2e\xef\x29\x66\xa4\x13\x7a\x6f\x61\x50\x3d\x86\x11\x74\x55\xc3\xe6\x2d\xc5\x42\x55\x42\xef\x36\x6d\xda\x1f\xa8\x0d\x8f\xef\xf0\x42\x83\x56\xb1\x21\x46\x7b\x03\xa4\x4e\xb6\x87\xb2\x69\xcd\xb9\x3e\xb3\x57\x0c\x5d\xad\xb5\xa8\xb6\x34\x14\x86\xaa\x99\xb7\xf2\xdb\xc1\x7e\xa1\x92\x8d\xc9\x80\x6a\xd3\xbc\x28\x6f\x81\x65\xf5\xb7\x83\xbd\x62\x34\x1a\xe4\xa0\x4d\x4b\x23\x41\x2e\x63\x98\xa7\x08\x91\x6d\x8f\x85\xaa\x80\x56\x64\x98\x23\x86\x80\xc0\x05\x90\x6b\x00\x75\x9f\x6f\xc3\xcc\x96\xd6\x98\x6d\xa7\xb6\xdf\xf6\x35\x64\xdb\xe9\x20\xf9\x21\xbc\x1f\xd0\xc8\x90\xed\xb3\xbb\x6d\x87\x45\xd8\x3e\x8b\x6e\xb9\x0e\x3b\x9d\x68\x83\x7e\xa7\x33\x98\xf5\x87\x6c\xbf\x53\x63\xfb\x2c\x0b\xe7\xbd\x74\xd6\xdd\xef\xfb\x1a\xca\xf6\xd9\x6c\x9f\x63\x91\x29\xa7\xa1\x5b\x2e\xc5\xe6\x39\x24\xbb\xef\x74\x46\x5e\x9a\xe8\xe7\x43\x90\x3c\x57\x1e\x97\x39\x77\xcc\xc9\x87\x3a\x06\xfd\x7e\x50\xc7\x9e\x63\x91\xe2\x04\x19\x8e\xfb\xec\x90\x65\xb5\x11\xdb\x67\x47\x63\x4e\x1b\xcd\x44\x96\x2d\x73\x65\x66\xeb\xe5\xeb\x74\xd0\x3e\xcb\xb2\x53\x8e\x45\x67\xac\xcb\x72\x5c\x39\x37\xee\xb3\x63\x56\xd4\xd0\x99\xc8\x8e\xfa\x5c\x6a\x54\x96\x6a\xb9\x19\x57\xce\xf5\xe7\x7e\xbd\x48\x99\x45\xbc\x7c\x13\x91\xd3\x26\x53\x11\xc9\xee\xe6\x96\xae\x6b\x4b\x73\xa9\x2c\x75\x45\x59\x2e\x97\xfa\xd2\xd5\xd1\xa5\xbd\x44\xa6\xe6\x4a\x59\x9a\x4b\x9b\x72\x74\x69\x69\x2f\xf7\x94\xb3\x4c\xd9\xb6\xbe\xb7\xbd\x7c\xf6\x52\x59\x3a\xca\x6e\xb9\x54\x76\xb6\xb3\xdc\x17\x97\xca\xde\x76\x97\xca\x72\xb5\xcc\x52\x8e\x8d\x4f\xed\xe5\xda\x76\x57\xa5\xd6\x66\xb7\xb7\x57\x06\xbe\xb4\x97\x05\xdb\x59\x05\xf9\x56\xcb\xac\xbd\x35\x1a\xf6\x6a\x81\x95\x2c\xc5\x68\x59\xcb\xf5\x72\xb5\xd4\x0b\x2b\xbd\x68\xaf\x8c\x46\xdb\xd5\x61\xc1\x2c\xd8\xcb\xb5\x62\xb7\x36\x76\x95\x72\x56\x19\x7b\xa5\xa4\x60\x91\xa9\xf5\xd9\xf1\x58\xd4\x6a\xd9\x05\x8b\xb2\x5c\x19\x45\x66\x62\x3e\x3f\x2d\xe7\x46\xbb\xe9\x60\x95\xb1\x67\x6b\x4a\x90\x56\x05\x78\x2d\xe7\xf7\x68\x49\x58\x4d\x39\xb7\xd1\xea\xac\xea\xc5\x94\x9b\x2a\x4d\xf7\xd4\xbe\x3c\xef\x92\x05\x8d\xcb\x2f\xd1\x29\xbf\x5c\xda\xdc\x6a\xb9\x4c\xad\x76\x53\x65\x5d\xb5\xbb\x2e\x3e\x64\xd9\xf2\x98\x63\xb5\xec\x5e\x14\x47\x7d\x71\x95\xdd\x4b\xdd\x51\x59\xea\x98\x4b\x7b\xb9\x52\xec\xd6\xda\xc3\x65\xd1\x10\xb6\x7a\x49\x58\xed\x81\x30\x16\x1d\x74\xa1\xad\xc7\xc6\x94\x72\xf1\x2c\xb2\xd8\xf5\x84\xe6\x1e\x5d\x4f\xb7\x46\xa3\xd8\x5d\xf5\x50\x91\xef\xae\xab\xc0\x68\x2c\x36\x1e\x3f\x13\x3e\x3f\x13\x25\x0b\x98\x0c\x61\x03\x13\xe4\x00\x0d\xea\xa4\x24\x0c\x87\x5b\xb0\xdc\x32\x18\x4c\xd4\x5a\x4b\x92\xea\x0f\xdb\xf4\x64\x2e\xc0\x79\x6a\xdb\xdf\x0d\x87\x84\xb5\x24\xb9\xc1\x90\x72\x26\x32\x4b\xe6\x9b\xbb\xe6\x6e\x40\xa8\x96\x49\x71\x03\x66\x28\x4b\x73\x8b\xc5\x28\xbe\x50\x1f\x22\x5a\xd3\x76\xf8\xe9\x70\xb2\x82\x65\x0b\xe3\x28\x9e\x41\x87\xb0\x66\x2d\x97\xc2\x74\x38\x32\x37\xfd\xc9\x16\xec\xf2\x85\xbe\xba\x57\xd5\xa6\x35\xa5\x47\x8c\xae\xba\x5e\x1d\xf9\x02\xae\x56\xd5\x26\x65\xf1\xf4\x90\x81\x4d\x97\x75\xb6\xcd\x1d\x8f\x2f\x60\xb5\x46\x2e\x79\x9a\x19\xc2\xba\xe5\xfa\x75\x8c\xd4\x9a\xea\x52\xed\xe9\x64\x38\x42\x73\x5b\x64\xbe\xf5\xea\x50\x09\xcd\x6d\x52\xc2\x64\x38\x44\x61\x77\x6b\x99\x8b\xad\x82\xa9\x7b\xd5\x68\x1a\xcd\x36\xe3\xd5\xa1\x75\x9a\x7c\x9e\x53\x86\x5e\x1d\xfa\xa4\xcb\x30\xea\xd2\xd5\xb8\x26\xb3\x6f\xee\x06\x7e\x1d\x93\x6e\x97\x51\x55\xcb\xb5\x9a\xd4\x80\xaa\x0f\x11\xd5\xa2\x9c\x09\xcb\x8c\xf4\xcd\x16\xb1\xb6\xcc\xb4\x3a\xf2\xda\xd1\xa4\x04\x9e\x61\xf4\x8d\xbb\xd5\xac\xe9\xa0\xc5\x22\x44\xcd\x6c\x05\xed\xd0\x5d\x97\xe5\x6c\x7e\x99\xad\x0f\x09\xcb\x6e\xf2\xc3\x09\x03\x2f\xb7\x6e\x9f\xb3\xa7\x8b\x86\x5e\x57\x2d\xcb\xe6\x69\x66\x04\xeb\xd6\xb6\xcf\x4d\x17\x4a\xb6\xae\x6b\x1d\xbb\xc3\x4f\x47\xbc\x9e\xdb\xe6\xe7\xd6\x74\x3a\xc8\x8e\x74\xa3\x43\xd9\xe2\x74\x38\x34\xbd\x76\x58\x8b\xe9\x34\xcb\xea\xc6\x7a\x4d\x52\x01\xad\xb4\x4e\x53\xe1\x95\x6c\x1d\xd1\x29\xd7\xe4\x06\x23\x46\x59\x6e\x35\xae\xc9\x4f\xab\x0d\x1d\xd5\x96\xed\x2e\x37\x60\x26\xaa\x6e\x6d\xb9\x26\xb3\xc0\xbd\x3a\x5c\x67\xc5\xf3\x23\x5e\xdf\x6c\xf3\x96\xc5\x28\xc5\xb1\x8e\x1a\x1d\xa7\x33\x9b\x0e\x47\xcb\x8d\x57\xc7\x80\x29\x8e\x47\x23\xa3\xdb\x5b\xcd\xd8\x11\x00\x55\x20\x83\x36\xa0\x49\xd0\xe4\xf8\x2a\xad\x36\x87\xc0\x97\x79\x44\x9d\x1c\x3a\xf9\x26\xdf\xc7\x76\xfb\xaa\xba\xc4\x87\xad\x76\x97\x91\x2c\x41\xdd\xe2\x14\xa3\xb1\x7b\x82\x20\x9b\xd3\xb1\x47\x44\x6b\x2b\x4e\xf2\x38\x3e\xd2\x6a\xaa\xb3\x6c\x09\xec\x88\xdf\xa9\x96\x47\x87\x16\x0d\x80\x19\xca\x3c\x4c\x45\x9b\x5b\x9a\xa0\xaa\xac\xda\x04\x04\xed\xa5\xd5\x49\x8f\xe1\xc0\x84\xb3\xfa\x4a\x15\xc6\x14\xb5\x56\x6f\xd3\xe4\x72\x38\xf1\xf8\xc3\xea\xf7\x17\x5e\x7f\xd6\x1b\xed\x2e\xad\x98\xdc\xa4\x94\xc7\x28\x5c\x27\x86\x84\xb9\xa4\x26\x43\x9a\x51\x55\xcd\xa2\x3d\x05\xc1\x14\xbc\x49\x76\xda\xc1\x87\x23\x6c\x27\xc3\x4d\xc0\x82\x21\x18\x7a\xeb\x34\xaf\x86\xf6\x64\x22\x8b\x35\x7a\x47\xcd\xeb\xc4\x80\x30\x8d\xe5\x84\xa0\x47\xf2\xca\x15\x45\x8e\xe1\x0b\xe3\xda\xbe\x66\x2d\xed\xe9\x60\x42\x03\xc5\x9d\x8b\x93\x1d\xb3\x1b\xd7\x91\x9a\xa5\xdb\x02\x33\x19\x29\x0e\x00\xdd\x3d\x00\x74\xd5\xd9\x10\xa4\xd9\xa9\xd3\x1a\x68\x82\x06\x20\xc0\xc4\xdc\xf6\x17\xfb\x85\x66\x10\xf5\x56\xbb\x2b\xc9\x42\x07\xc8\xdb\xfc\x7c\x47\x54\x15\xbb\x6e\x90\xed\x2e\x2d\xcb\xac\x87\x33\x8e\xd7\x89\x7d\x55\xf5\x74\x1d\x9a\x5e\x4d\x84\xb9\xb7\x7e\xa2\xea\x55\x82\x20\x49\x8b\x1b\x30\x34\x2d\xcf\xe7\xb5\x26\x55\x60\x70\x82\x20\x48\xcb\x1a\xd3\x34\x2d\x2b\x73\xad\x46\x7a\x53\xc6\xd2\x6f\x5c\x0b\xeb\x73\x8d\x2e\xae\xf2\x98\x37\xdf\xe1\xa0\xa1\xfa\xf3\x1d\xb3\x50\x1b\x26\xd7\xaf\x53\xc2\x44\xd6\x9a\x4d\xc6\xc3\x89\x20\xac\xe6\x72\x4c\xb6\x69\x45\xb5\xb6\xec\x24\x8f\x15\xea\x43\xad\x66\x3b\x64\x73\xe0\xf1\x36\x22\xce\x31\x8a\x67\xb2\xf5\x91\xda\xa1\x6c\x81\x9d\xf0\x85\xdc\xdc\x12\x39\xc5\xae\x8e\xc7\x48\x6d\xd9\x76\x25\x9e\xe7\x61\xd3\xe3\x77\x7b\x3f\x55\x01\xe8\x6c\x6a\xd8\x06\xdf\x80\xad\x5b\xeb\x28\xc2\x04\x67\x4c\x98\xc3\x87\x40\x05\x02\x90\x71\x5c\xad\xd5\xbb\x1e\x8d\x87\x13\xd3\xdc\xe6\xf3\xdb\x2a\x8e\x1b\x35\xbd\xd1\xeb\x52\xfc\x64\x12\xe8\xd1\x9e\x6e\xe7\xe9\xe0\xdd\x76\x3b\xd4\xad\xb7\xd6\xdc\xd7\xcb\x1b\x91\xbe\x9d\x3b\xd5\xd5\x4f\x75\x70\x15\x00\xdc\xda\x78\xd3\xa7\x53\xab\xa9\x42\x8e\xea\x9b\x84\xa7\x47\x92\x60\xe9\xe9\xae\x58\x6d\x34\x31\xbd\xb5\xb6\x3c\xc5\xc3\xb5\x76\x7b\x38\x61\x82\xb4\xf9\x62\x1a\xa5\x09\xfc\x24\x4a\x5b\x1c\xd2\x26\x17\xeb\xf4\x2f\x4a\xab\xb9\xb6\x3d\x1d\x8f\x46\xfa\xca\xf5\xf4\x6e\xbe\x80\x22\x88\x66\xd9\x36\x8d\x81\xf5\xc6\x6c\x80\x5e\xa9\x51\x47\x82\x1e\xc3\x77\x1b\x9f\x5e\x04\xc8\x01\x80\x2d\xaa\x7a\xa3\xdb\xed\xd2\x13\x71\x4e\x4e\xac\x02\xc5\x10\x1e\x6b\x98\xc3\x0e\xd5\x65\x64\x6d\x5e\xc3\x28\x8a\xd1\xf6\x03\xd5\xa2\x2c\x9e\x19\x8e\xd4\x25\x27\x20\x4d\x86\x52\x46\x9a\xa6\x79\x32\x7a\x30\x1c\xa9\xa6\x5f\x27\xb6\x1b\x69\x88\xd6\x5c\x7a\x78\x74\x65\x45\x73\x3b\x7d\x1f\x0f\x94\xa8\x91\x14\x3f\x1e\x8d\x4c\xc7\xdd\x6a\x18\xc5\x2c\x51\x04\xad\x53\xed\xce\x84\x63\x86\xfa\xd2\xdd\x8a\x73\xc5\xae\xd6\x55\x58\x6b\x3a\x2d\xaf\x5d\x85\xdd\x5c\xeb\x70\x3c\xbf\xf7\xda\xea\xb8\xd4\x74\x3c\x9a\x98\x3b\xc4\xeb\x7f\x86\xd7\x11\x44\xa7\x5a\x1d\x91\xe3\xf1\x4d\x55\x9e\x1a\x00\xc8\x84\xb2\x11\x26\x3c\x6b\xb5\x7a\x38\x2c\x85\xfc\x88\x13\x18\x00\x7d\x3c\xe8\xe7\x36\x4d\xcb\xf2\x7c\xe8\xf1\x43\x01\xf7\xf9\x9c\x1c\xf6\xa9\xb6\x34\x11\xc4\x60\xef\x80\x58\x54\x1b\x86\x49\x06\xf9\xe6\x4d\xb0\xcd\xcf\xb7\x30\x11\xac\x07\xe8\xee\x4a\x88\xc6\x08\x31\x54\x6d\xa3\xd1\xa0\xfd\x7c\x5a\x0d\xc3\xc3\x31\x42\x9a\x93\x3e\xc3\x28\xaa\xe8\xe5\xa3\xfc\x7c\xa6\xd5\xf4\xc6\x97\xac\x6b\x5a\xad\x49\x51\xfc\x28\xcc\x47\x33\x8c\xa2\x6b\x9a\x0f\x2f\x5c\x1b\x71\x34\x13\xc0\xf3\xf3\x0d\x87\x1e\xfd\xb9\x3e\xed\xe7\xab\x35\x29\x0f\xbf\x20\x5f\x9f\x61\x64\x75\xee\xf7\x09\x1f\x94\x25\x23\x78\x7e\xd9\xa1\x37\x06\xab\xd8\x06\x07\x00\xef\x99\x4d\xaa\x47\x91\xfa\x06\xce\x09\x64\x75\x58\x5f\x90\x8c\x8c\x83\x2a\x00\x40\x10\xe7\xcb\xc2\xce\x18\xed\xf0\x6a\xcd\x20\x99\x11\x93\x63\x68\x61\x8e\x29\xad\x79\x8d\x51\x16\x5a\xc3\x19\xb1\x64\x5d\x18\x4e\x10\x8e\xde\x5a\xfd\xfe\x60\xa8\xaf\x4d\xa3\x4e\xb5\x87\xc3\x94\x38\x81\xcd\xed\xa6\xb0\x1b\xb2\xaa\x69\xaa\x93\x16\x23\x2c\x77\x88\xe8\x6c\x30\x4f\xb9\xc7\x01\xd8\x10\x38\xb1\x97\x87\x00\xab\x61\x0b\xd2\xc3\x65\x0e\x68\x0b\x50\xf8\x66\xd3\x01\xdb\x31\xa0\x89\x3c\x46\xee\x70\x79\x43\x6d\x73\xfd\x3d\xac\xab\x55\x80\xe1\xc4\x0e\xec\xfa\x4a\x4d\x6e\x13\xf3\xee\x52\xe6\x9b\x4a\x57\xc6\x26\xe3\x7a\x95\xc4\x72\xa0\xbd\x98\xa0\xb0\xb2\x59\x9b\x6d\x07\xd4\xc6\xe2\x16\x21\x49\x5a\xc6\xf0\x3a\xb9\xa5\x89\xa1\x4a\xe2\x55\x02\xcd\xe7\x72\x32\xd2\x5b\xb5\x89\x66\x57\x1d\x69\x55\x39\x58\xa0\xe5\x00\x00\x0d\x19\x00\x55\x86\x65\x52\xa1\xf8\xee\x24\xd7\x5d\x6c\x52\x34\xd1\x24\xfa\xea\x9c\x1a\x10\xf9\x70\x5f\xa5\x05\x30\x19\x94\x80\x8c\xd3\x35\x85\x54\x48\xce\x2c\x2c\x36\xa9\x76\xf5\x90\x0d\xd0\x5a\x7c\xcf\x0f\x07\x61\x05\x20\x58\x4b\xe1\x60\xde\xe3\x50\x71\x00\x00\x3d\xe9\x6e\xc2\x2f\xdd\xba\x35\x55\x4d\x7f\xf9\xa2\x0b\xc5\x5c\xb5\x2f\xef\x3a\x8b\x76\xa1\x3c\x00\xfb\xee\x40\x2d\xe6\x44\xa3\xb5\x9a\x4a\x1b\x67\xca\xcb\x3a\xa7\x74\xac\x9c\x08\x53\x53\x87\xd8\x32\x93\x0c\x99\x1d\x0f\x07\x9b\xa6\xac\x4a\x9c\x68\x20\x8d\x49\x6e\x6f\x2e\xb2\xd9\xcc\xb2\x5c\xad\xb9\xeb\xec\x50\x41\x32\x0b\x7d\x5b\xd4\xf0\xa1\xdb\x73\x91\x52\xc6\x99\xcc\xca\x6d\x55\x06\x0e\xa8\xf7\x31\x31\x2b\xb7\xeb\xbd\x9c\x33\x4c\x2d\xf1\xde\x04\xdb\x95\x59\x1b\x64\x27\xcb\xa6\xe9\x8c\xb2\x23\x34\x23\xcd\x10\xa5\x9b\x59\x65\x05\xb9\xc4\xd5\x33\xf9\xe2\x62\x98\xb2\x7a\xfa\xb4\x4e\x34\x87\xb2\x3a\x33\x78\x32\x5b\xae\x4e\x7b\xcb\xad\x28\x72\xd6\x7c\xda\xee\xeb\xb8\x90\xb7\x29\x4d\x1d\xb6\xd5\xdd\xb6\xa4\x90\xe6\x4a\xce\x8b\xcd\x35\xd2\x9d\x34\xca\x7c\xbe\x2c\xa4\xb2\x75\x69\xbd\x14\x8a\x1c\x3a\xae\x89\xd5\x45\x2b\xb3\x6c\xec\xdd\xfe\x6c\x31\x22\x46\xdb\x66\x86\x57\xea\xd2\x7e\x61\xce\x57\xe5\x86\x83\x73\x22\x8d\x51\x53\xa5\x01\xb3\xee\x30\x93\xd5\x4b\x79\xad\x5a\x47\x07\x99\xd4\x56\xe5\x84\x89\x31\x4e\x11\x29\x7e\xb9\x5f\x67\xb6\x03\xb9\x6b\x0e\x6a\xf5\xd4\xb6\xc8\x74\x96\x74\xae\x93\x32\x01\xc0\x98\xed\x8a\x1d\x6f\x8a\xc5\xa6\x98\x9f\xea\xfa\x40\x5f\x35\x79\x75\x5c\xcc\xc3\xe5\x46\x03\x56\xeb\x13\x6a\x0d\xfa\x3d\x6b\x33\xeb\x32\xa0\xb7\x63\x7a\x40\x40\x09\xd5\x90\xaa\x1b\x0c\x6d\x6c\x00\x68\x6a\x74\x75\x42\xe5\xf3\xa5\x42\xa7\x58\xae\x37\xf1\xc5\x36\x97\xb2\x0a\x7c\x75\x28\xa2\xc5\x31\xb3\xee\xef\xc6\xad\xa6\x4a\xe2\xf9\x09\x87\x2c\x5a\xeb\xbc\x66\x75\xe7\xdc\x60\x0f\x3b\xa9\xaa\x6e\xd4\x10\x51\xb1\x5c\xdb\x68\x17\x86\x55\x99\x1c\x21\xc8\x78\x5e\x12\x1a\x03\x11\xce\x30\xfa\x54\xee\x02\x71\x2b\xec\x46\x9b\xb6\xb7\x16\xb3\xb9\xec\xac\xc3\xcc\xb8\xe9\x9e\x52\x26\x36\x95\x4b\xb9\xbd\xa5\x6b\xb4\xd9\x56\x57\x1a\x75\xeb\xa8\xca\xae\x87\x93\x94\x85\xf6\x9a\x99\xb9\x8a\x6b\x79\xbe\xd6\xef\xe6\x06\xad\xfa\xa4\xc7\x09\xe4\x30\xbb\x9e\xb4\x91\xb9\x39\x67\x72\x8b\x46\x4d\x33\x76\xa3\x0c\x3a\xc8\x37\x8b\x6a\xdd\x61\xe6\xe3\xd1\xa0\xd4\x81\xf3\x6c\x2a\x8b\x67\xea\xbd\x65\x13\xa1\xc5\x91\xe2\xd4\x7b\x5b\x62\xdf\x58\x8e\x49\x06\xeb\x91\x8a\x31\xaa\x0e\xdd\x22\x29\x35\xd7\x99\x59\xbe\xeb\xee\xb1\xad\x35\xd8\x73\x1c\x9d\xc2\x27\xc4\xbc\x31\x9e\x2d\xeb\x39\x1e\x60\xb4\xa6\x14\xd1\x7a\x73\xde\xc9\x99\xcd\x75\x6a\x3e\x16\x80\x05\x9a\x9e\xf6\x3d\x2a\xd5\x51\x9b\x07\xe3\x5c\x67\x28\x00\xcc\x60\xdd\x62\x11\xdf\x73\x00\x4b\xb5\x9c\x86\xc0\x4a\x29\x3a\x37\x4f\xd1\x18\xb2\x99\x67\x38\xbb\x39\xe8\x6d\x19\x4c\x24\x4b\xba\x3c\x90\x80\x38\x70\xe8\xae\x59\x1b\x12\x86\x5c\xc6\x1a\x02\xdb\x9b\x6f\x99\x7e\x7f\xa2\x52\x23\xae\x39\xee\xd6\x26\xbd\x02\x9b\x03\x84\xad\x58\x4d\x93\x58\x8c\x65\x80\x6e\x9a\x7d\xae\xc1\x10\x5b\xbd\x59\xd5\x4b\x35\x18\x14\x64\x62\xec\xc8\x79\x3e\xc7\x39\xa0\x45\xba\x76\x1b\x2b\xa6\x66\xf3\xe2\x90\x6a\xad\x27\x23\x46\x74\x9d\xea\xa6\x36\x43\xf4\xfd\x64\xcf\x20\xb5\x12\xda\x41\xe6\x68\x77\xe7\xa2\x52\xb1\x80\x21\xb4\xc8\xc0\x0c\x70\x68\x45\x6e\xf5\xda\x5d\xb9\xc9\x94\x9b\x7d\xbc\x38\xaf\x8d\x41\x41\x1d\x3a\xad\x5a\x87\xaa\xe6\x05\x90\x17\x06\xfd\xb5\xcc\x2c\x7b\x42\xb6\xa6\x95\xcb\xdb\x51\x96\x1e\x28\x99\x76\xa3\x5f\xaa\x12\x7a\x61\x64\xac\x79\x96\x06\x83\x4d\x7f\xd9\xa7\x16\xbb\x0d\x5d\xc6\x6c\x7b\xbe\x92\xfb\x28\xa0\x06\x4e\x8f\x96\x68\x41\xb5\x41\x57\xae\x76\xe7\xd3\x01\xc1\xec\xec\x31\x9d\x87\x71\xb5\x63\x8d\x45\x77\xb4\x18\x15\x47\x68\x26\x3b\x5c\x48\xe3\xec\xb0\x9c\x97\x49\x91\xd7\x66\x7d\x60\x02\x7d\x39\x24\x94\x8d\x95\xcf\xce\x71\x51\xc0\x37\x9a\x9c\x2b\xce\x84\xe9\x6c\xaf\xe9\x74\x1b\xc8\x3c\xa6\xce\x8b\x42\x6a\x26\x54\xe5\x5a\x4a\x99\x6d\xaa\xe3\xd9\x5e\x92\x5b\x3d\xa1\x35\x69\x3a\x00\x34\x69\x60\x0f\xc6\x0b\x63\x9e\x59\x8d\xeb\xbb\xec\x1a\x69\xa8\x59\x8b\x2d\x64\xb2\x6e\xde\x5e\x8d\x4a\xc8\xac\x60\xd9\xb3\x69\x1b\xa5\xb3\xa3\x0e\xbb\x2b\x97\xb0\xcd\xd0\x9d\xe2\x9b\x79\x6d\x0e\x46\xab\x9e\xb4\x2e\x74\xa5\x4c\x8e\xe3\x6b\xf4\x50\x90\x29\x9b\x75\x72\xa2\x34\xdb\xcf\x91\x01\xa8\x02\xa4\x4a\xcc\xf3\xd3\x2c\xab\x55\x79\x02\xdf\xe4\xa7\xa9\x69\x6f\xa6\x52\xa6\x93\x75\x49\xb0\x92\xb2\xeb\x26\xd7\x55\xe6\x59\x99\xcf\x6a\x85\x6e\xb6\xc7\xcc\x48\xd5\x6e\xad\xe1\x1e\x60\x4a\x85\x5e\x4f\x6c\x15\xe5\x92\x29\xa0\x94\x2b\x75\x6a\x14\xb5\xa7\xfa\xd2\xbc\xbb\x46\xe5\xa6\x59\x6b\x61\xbd\xb1\xce\x8f\xd7\x3d\x8c\x26\x5b\x72\xd3\x34\xe0\xe9\x74\x84\x39\x7b\x7b\xc2\x4d\x26\x1b\xa2\xb8\xd0\xd0\x45\x6a\x3d\x10\x87\x45\xd6\x52\x51\xa4\xa5\x0c\x61\x9a\x5f\xf4\xd4\xdd\x06\x80\xc6\x72\x3a\xc4\xe1\xcc\xc4\x99\x74\xc5\x69\x4e\x2a\x60\x5d\xab\x48\xc0\x02\xae\xc0\x39\x60\x66\x06\x72\xb5\xc4\xb1\xa0\xad\x88\x85\x79\x06\x94\x48\x09\xeb\xa8\x56\x21\xb3\x75\x00\xc0\x39\xa2\x45\x4c\x48\x35\xb5\x5b\x93\x05\x7a\x8f\x74\x3a\x05\x8d\x9c\xb9\x58\xa6\x40\xb6\x47\x8b\x51\xb3\xd3\x5d\xf6\x06\x6d\x49\x04\xfa\x8e\x5f\x14\x08\x07\xa6\x31\x55\x6b\x5a\x0a\x33\x1a\x35\x0c\x1a\xc5\xcd\xc9\xb4\x3e\x02\xba\x9b\x82\xe5\x16\x8d\xd5\x28\x1c\x33\x2c\x94\x1e\x0e\x69\x2e\x83\xb8\x73\x97\xab\x62\xcd\xa1\x55\x1b\x4d\x4a\xe8\x3e\x9b\x33\x05\xd3\xc6\x0a\xa8\x39\x2e\x2e\xb1\xfc\x0e\x36\x7b\x60\x9d\x99\x99\xdb\x06\x9a\xdf\xb0\xba\x4c\x36\x66\xe8\xb6\xd6\xb5\x4b\x9a\xc4\x09\xd8\x12\xa1\xb6\x59\x6e\x8d\x2f\xcb\x98\xcc\x17\xb2\x65\xb0\x5d\x35\x56\xbd\x4e\x2b\x53\x44\x26\x78\x2d\x47\xec\x36\x4d\x6b\xd9\xa8\x81\x71\x61\x5c\x83\x9d\x05\x3b\x5d\x81\x8e\xb1\x5e\x8b\x2d\xc1\x5e\xcd\x26\x9b\x6e\x3b\xa3\x54\xf9\x82\x02\x72\x85\x12\x98\x00\x80\x15\xf4\x0e\xd6\x1e\x0b\xf2\xa0\x5a\x6a\x30\xfd\x65\x33\xb7\xde\x94\xf0\x05\xd0\x70\xa2\x07\x70\xc0\x68\xe3\x0c\xe8\x6d\x7a\xdd\x26\xa5\x95\xb7\xde\x9c\xd6\xd3\x0d\x69\x8d\x4a\x23\x2b\x9b\x1d\xcb\xbb\x4d\xb6\xba\x9e\xed\x0b\xfa\xae\xae\x66\xcd\x5d\xaf\x34\x19\x50\x0e\xde\x5d\xef\x81\x0c\x5a\xb4\x02\x9b\x88\x50\xe8\xec\x1d\xb4\x8b\xf6\x64\x74\x9e\x03\x38\xd9\x04\x32\xa8\xf7\x60\xbe\x63\xe4\xb7\x30\x56\x95\xd9\x59\xa3\xb8\x42\x07\xee\x6e\x56\x15\xfa\xe4\x6a\x02\x76\xf4\x1c\xab\x65\xb4\x35\xd3\x07\xae\x2b\x83\xc2\xa0\x37\x1d\x71\xa0\x2c\xf3\x43\x9b\x1b\x81\x21\x01\x40\xaa\xba\xcd\x15\xe9\x6c\xc6\x2e\x15\x1b\xdb\xe1\x70\xc9\xe9\x18\x8c\xe9\xc3\x55\x5b\x33\x17\xb5\x45\xc3\x45\xe4\xea\xca\x30\xd6\xab\x71\xa9\x4d\xea\xce\x82\x59\xe6\x47\xea\x9e\xd9\xd7\x99\x02\xda\x25\x48\xad\xbb\x9a\x8d\x46\xd2\x7e\x3b\xb2\xd6\x85\x1a\x26\x57\xe5\x26\xab\xb9\xb3\x71\x6d\xe2\x76\x00\x30\x96\x43\x78\x4b\x9b\x55\x78\xd2\x52\xc6\x66\x5e\xa8\xe5\x69\x36\x87\x1b\x13\xc4\xc5\x5a\x40\xe5\xf0\x2e\xc0\xc0\x7c\xaa\x66\x40\x3b\x95\x01\x1b\x06\xc7\x45\x6d\x04\x00\x68\x0b\xb5\x05\x53\x34\x37\xd3\x52\x9d\xad\xee\xd7\x52\x55\xe1\xd6\x7b\x63\xea\xa2\x6e\x2d\x37\x6d\xe5\x4d\xb1\x83\x4c\x28\xad\x54\x1a\x00\x02\x60\x38\xb7\x5e\xcd\x96\xe5\x09\x3e\xc0\xdc\xf6\x86\x05\xf4\x90\x00\x9b\xba\xdb\xd1\xdc\x3d\xc3\x37\xd6\xa0\x3a\xc1\xb3\x83\x6d\x8b\x5d\x2c\x95\x3e\x48\x75\x39\xd0\x9e\xef\x85\x25\x21\xf7\x05\xd0\xdd\x98\xb8\xbc\x16\x07\x5b\x67\xd0\x68\xd1\x44\xad\x90\x32\xbb\x53\x34\xd5\x03\x64\x49\x50\x7a\xb4\x30\x96\x8b\x56\x77\x92\x6a\x2d\xb6\x34\xb3\x46\x67\x0b\xbd\xb6\x5a\x64\x73\x72\x7d\xb3\xcf\x22\x70\x66\x5a\xa7\x0a\xfb\xec\x56\x1e\x94\x4a\x45\xc9\xd4\x47\xc3\x16\xc1\x57\x45\x38\xb7\x69\x48\xee\x64\x2b\x2e\x04\x99\x45\x99\xed\x9a\xd9\x18\x30\x6b\x72\xe3\x66\x7f\xa9\xf6\xf1\x3c\x60\xe8\x8c\xbe\x62\x4d\x30\x74\xc6\x45\x20\x03\xba\x8d\x75\x78\x76\x03\x80\x06\xb0\xfe\x76\x90\x41\x7a\xfa\x6c\xd9\x5a\x32\xfd\x4e\x75\x3a\x1f\x4f\xe1\xe2\x54\xb2\x2d\x2c\x3b\x2d\xe7\x16\xd6\x6a\x44\x70\x0b\x0c\xaf\xa2\x5d\x41\x1c\xd7\x2c\x9c\x22\x64\xbc\x3a\x13\x6a\xbd\xf6\xa6\x04\x00\xa8\x0e\x37\x83\x9c\x66\x0c\xf5\x3c\xac\xe9\x1b\xdb\x6a\xb7\xe7\x3d\x9a\xa4\x16\x85\x15\x4c\x94\x66\x36\xba\xae\x63\x86\xdc\xee\x88\xa4\x66\x73\x8e\x22\x2f\xf8\xb9\xb6\x58\x89\x05\x50\x63\xe5\x94\xbb\x1f\x6f\x86\xc6\xb8\x95\x1d\x34\x5b\x16\xbf\xe0\x47\x14\xc8\xb1\xfe\xc9\xab\x52\x9b\x2d\x9b\x32\x05\x38\xb8\x34\xb6\x5d\x26\x2b\x6e\x5d\xba\x33\x11\xac\xde\x7a\x42\xd4\x4b\xb8\xb6\xb6\xe9\x7e\x53\xc6\x24\x6b\xbe\x31\x3a\xa3\xe6\xc2\xad\x2f\x75\xab\xc0\x12\x3d\x66\x8d\x49\x45\x02\x53\x86\xd9\xa5\xdc\x9c\xd2\x60\x53\xcd\xb5\xa4\x52\x0b\xb4\xab\xed\x79\x63\xda\x01\x00\x68\x32\x95\x72\x6b\x4e\xbe\x9b\x9a\xec\x9a\x42\x79\x87\x1b\x4d\x3e\x6b\x6f\x5b\xbd\x95\x56\x37\xb6\x1b\x67\xcc\x96\x6b\x8e\x8a\xaa\xb9\x9e\xe2\xe0\xa0\x81\x97\x6a\xea\x66\x5a\x27\xca\x72\xd3\xdf\x17\x30\x76\xaa\xb3\x80\x71\xb1\xd6\xe6\x5a\x2d\xd9\xdc\x97\xda\xa9\xda\x76\xaf\x6c\x26\x98\x4c\x6e\x53\xfb\x86\x82\x63\x80\x02\x1a\x46\x75\xac\x1a\xe2\x74\xcb\x4d\x8b\x15\x76\x84\x52\xe6\x6d\x24\x3f\xd1\x1a\xb2\xbd\x72\xf3\xb3\x5e\xd3\x50\xc5\x66\x61\x4d\x6c\xb8\xde\x0e\x34\x68\x8c\x24\xaa\x43\x5b\x6b\x0b\x18\x00\x22\x4a\x01\x06\xa6\x97\xa9\xe6\xa6\xef\x10\x39\xd0\xe4\xdc\xb6\x01\xaa\x85\xba\xd1\x9d\x6c\x26\x5a\x97\xe4\xd6\xee\x7e\xd8\x11\x17\xb6\x84\x15\x67\x4a\x5b\x1d\x91\x30\xae\x63\x58\x01\x90\x80\x12\xb2\x25\x50\x36\x1d\xa2\xa6\x0d\x98\x3a\x81\x63\x29\x61\x2a\xf5\xab\x38\xcc\xf7\xad\x56\x63\xd9\xe9\x59\x9a\x40\x65\x8a\x85\xd6\xd6\x40\x6d\x4b\x5f\xee\xc6\xce\xa4\x39\xea\x2b\x99\x1a\xed\x9f\x1f\xd2\x6a\xb9\x8d\x83\xae\x32\xb5\x69\x8c\x06\x55\xbc\xea\x2c\x2d\xd3\xec\xad\x5c\x31\x05\xe7\x71\xa9\x2c\x17\x14\x42\x54\x26\x63\x99\xd5\x69\x40\xe6\x52\xb9\x8d\xa3\x12\x18\xa1\x60\x9a\xd9\xa1\x0b\x94\x02\x67\xa8\x01\x0d\xd3\x8b\xd1\x6c\xb1\xdd\x2b\x29\x20\xad\xc6\x94\xd9\x5e\x10\xec\x8c\xee\x72\x7b\x1b\xde\x95\x73\xc8\xb2\x25\xb7\x51\x40\x6c\xd7\x53\xae\xbb\x14\xb6\x5c\xa1\x59\x50\x6d\xcd\x5e\xe4\x76\xe8\xa2\x0c\x44\x99\xaa\x6e\x0b\x75\xa3\xe9\xb0\xad\xf9\x54\xc8\xa1\xab\x65\xbe\x94\x4b\x99\x2b\x46\xec\x60\x96\x89\x2b\x38\xdb\xb0\xf7\xa9\xd1\x7e\x08\x32\xd5\xaa\x5b\x2d\x81\x81\x0c\xb2\x73\x58\x6b\xe3\x00\xec\x85\xda\x3a\xc5\xa4\x66\x0c\xd3\x51\xa5\xc9\x48\x1b\x58\xd3\x6c\x4e\x9f\xa1\xfd\x99\xbe\x5c\x36\xa5\xb6\xa4\x6a\xf3\x06\x98\xad\x8a\xac\x09\x08\x80\xcb\x00\x58\x54\x5f\x75\x5b\x29\x4a\xa5\xab\xa3\xf6\x66\x82\x0f\xfd\x33\x7d\x9c\x72\xac\x12\xbc\x9d\x5b\x65\x64\xb8\x58\xd2\xd8\x26\xbb\xcd\xe5\x05\xc9\x5d\xaa\x0b\x9a\xd8\xad\xb2\xf5\x32\x56\xe8\xa4\xfa\x85\x3c\x3c\x5c\x96\xba\xac\x22\x17\x37\x5d\xbd\x30\x5a\x19\xb0\xc4\xe7\x34\xaa\xda\x33\xf9\x69\xd3\x29\xf0\xad\xa5\x3c\x9d\xf7\xf6\xd6\x3a\x47\xf5\x73\x4a\xb7\xaa\x68\x9b\x52\x89\xb3\x26\xc5\x25\x42\x76\xdb\xc2\x14\x30\xa0\x0b\x58\x57\x17\x70\xc3\x9c\x0a\xb6\x5a\xcf\x51\x75\xa6\x98\xe1\x0c\x47\x65\x47\xfd\x4e\xad\xdc\x84\xfb\xc3\x06\xd5\x35\xb0\xdd\xae\x3c\x02\xa5\xea\xba\xd0\xf2\x56\x2d\xfd\x36\x4e\x0f\x41\xae\x6e\x2b\xee\x8c\x6d\xa3\x9a\xc0\xcd\x1a\x59\x3a\x3b\xc8\xac\xb9\x5c\xb1\x89\x4e\x1a\x73\x41\xc7\xf8\xfd\x62\x26\xee\x56\x2c\x9a\x97\x5b\x60\x6f\x0b\xb0\xb0\x09\xad\x17\xe6\x85\x9e\xe8\xfd\xae\xef\x46\x8b\xda\x28\xb7\x63\x84\x05\x3f\xe2\x51\xbd\x2e\x98\xb3\xc6\x76\xb4\x95\x36\x14\x68\xc9\xda\x08\xb3\x5a\xc3\xf5\x66\xa3\xa6\x86\xdd\x79\x5e\xea\xd4\x77\xc3\xae\x83\x64\x88\x5a\xca\xe2\xec\xd4\x4a\xcc\x77\xf7\x66\x7d\x33\x11\x01\xc0\x64\xd4\xca\xa3\x2d\x85\x91\xc1\x24\xc3\xb1\x5a\x57\x57\x34\x42\x6e\x18\x85\x7a\xb6\x2b\x6c\x26\x8b\x3d\x59\x5c\x77\x17\x88\x5b\xd8\x3a\xdb\x1c\x93\xd5\xb0\x49\xb9\x40\x0c\x69\xac\x56\x00\x24\x06\xf4\xde\xa4\x91\xeb\x99\xf5\x09\x6e\x36\x01\xa8\x8e\xa4\x54\x97\x6b\x72\x4a\x31\xb3\x2d\x16\x32\xbb\x46\xb1\xb5\x9f\x95\xdb\xf9\xf1\xbe\x4f\x19\xb5\x9e\xbe\x96\xda\x8e\xa2\xd1\x8d\x0d\x1b\x9e\x79\x67\x5b\x74\xb5\xd4\xc3\xbd\x25\x57\x55\xe6\x61\x7a\xb5\xc0\x5a\xbb\xcd\x5e\x6a\xe6\xf8\x02\x97\x21\xfa\x2c\x06\x86\x1a\x20\xaa\xcb\xb5\xd9\x2e\x62\x34\x06\x56\x40\x5e\xed\x6b\x4b\xb2\xe5\xea\x8b\x46\x96\x12\x73\x9b\x19\x65\x4e\x8d\xee\x1c\x64\xf7\xa5\xfc\x72\x64\xf6\x7b\x7a\x79\xbe\x31\xbb\x0d\xb3\x0a\x80\x86\x4f\x37\x55\x00\xf2\x85\x5a\x03\xac\xc6\x33\xad\x61\x66\x67\x12\xea\xba\xf5\xf2\x78\x58\x95\x40\x79\xa2\x4f\x70\x8c\x86\xcd\x9e\x9d\x41\x68\xbc\x44\xae\x57\xb8\x47\x5b\x6b\x3a\x04\x34\x4e\xa1\x68\x5b\x27\xb2\xdd\x62\x89\x05\xd3\x06\x3d\x28\xf7\xc8\x5e\xc7\x1c\x94\xf7\x1d\x21\xab\xa1\x5d\xa9\x38\x00\x6c\x0b\x74\xb0\xd5\x6c\x50\x6a\xfb\xc7\xf8\xf5\xfd\x20\xd7\x63\x4a\xde\x6f\x93\x68\xd5\x1b\x53\x74\xc5\xe3\x9b\x0d\xb1\x46\x88\xd1\xbc\x66\x2b\x43\x75\x0a\x78\xc0\xa1\xc5\xcc\x8c\xe5\x8c\x01\x37\x9e\x8e\xf6\x59\x6c\x33\xb2\x16\x43\xbe\xcd\x51\xfd\x45\x51\xe4\xe0\x66\x26\x23\x0f\xa5\x81\x68\xb1\xc4\x06\x00\xae\x5b\x73\x3a\x5b\x0a\x2c\x68\x46\x06\x29\x80\xf5\xcc\x49\xa9\xb9\xc8\xef\xd0\xcd\x42\x2a\x21\x0b\x67\x2c\x64\x90\x41\x97\x1e\x0d\xaa\x13\x0e\xd3\x81\xda\xa9\x2a\x4b\x76\xb3\x02\x68\xa7\x59\xf6\xf0\x20\x30\x0a\xb8\x65\xd6\x76\x66\x4e\x06\xed\x20\xe5\x76\xb7\x8c\x30\x65\x5b\x2c\x11\x8d\x01\xd7\x30\xf6\x78\xbe\x3d\xd1\x67\x34\x01\xf0\x5d\xa6\x86\x09\x5e\x3f\x80\xbc\x90\x93\x95\xdc\xbe\xd4\x07\x1d\x27\xa3\x17\x6a\x9d\x31\x6b\x96\xab\x6c\xae\xd0\xac\x23\x18\x56\x5d\xa9\x4b\x6d\x93\x61\xf9\x7c\xbd\x48\x4f\x57\x75\x96\x21\x53\x28\xcf\xf1\x66\x6b\xdc\xb4\x45\x76\x81\xee\x35\xbc\xcc\xe5\x69\x02\x10\xb5\x7d\x26\x4f\xef\x65\x96\x0b\x98\x37\x63\x8e\x85\xed\x0e\x2f\x8c\x66\x83\x55\x0a\x2e\xb3\x52\x46\x28\x16\x0a\xcd\x1c\x3b\x00\xf5\x61\x4d\x07\x79\x24\xc5\x82\x0e\xa5\x64\xe8\x9e\xd9\xdb\x4c\xe4\x09\x50\x41\x11\xc9\x77\x1b\x39\x06\x76\xf2\x54\xb5\xb1\x5e\x94\xcb\xed\xf6\xb2\x34\xe8\xd5\x84\xac\x6d\x52\x9c\x51\xef\x9a\x03\x64\xaa\x93\x73\x56\x16\x8a\x63\xd0\x0e\xec\x79\xda\x60\x84\xb0\x53\x7a\x93\x95\x79\x6b\xdf\xb5\x9a\x62\x8a\x12\xd1\x99\x90\x53\x98\x6e\x01\x9d\x35\xd7\xe5\x94\x6e\xae\x57\x0a\xb2\x19\x76\x7a\x60\x01\xe7\xcb\x9d\x6c\x97\xdd\xee\xd5\x9c\xcc\x16\xb3\x3d\x9d\x28\xd5\x48\x80\xd6\xf2\x7a\x7f\x99\x2d\x12\x6b\xa1\x58\x58\xb7\xc6\xb3\x5a\xce\xae\xe6\x87\xcd\x26\xd8\xe4\x0a\xf3\x51\xa1\xc5\xe1\xd3\xbc\xd3\x69\x89\xdb\x94\xba\xf7\xe4\x17\x96\x9a\xcf\x76\xe5\x7c\xaa\x5c\xc8\x73\x78\xab\x57\xc4\xb2\x19\x56\x1b\x34\xf0\x75\x95\xa0\x5c\x7a\x3e\xd0\x73\x94\x82\xcb\x80\x00\x53\x7b\x36\x1d\x0d\x7a\x8e\xe3\xa1\x3a\xb6\x24\x09\x71\x59\xdb\xdc\x4f\x26\x46\x0e\xd9\x54\x11\x5e\x9a\xb8\x2a\x35\x73\x36\x9d\x7c\x86\x19\xf7\xba\x70\xb3\x6a\xcc\xbb\x99\x9c\xc6\x0f\x4d\xdb\x5d\x67\x9c\x1c\x82\xce\x76\x53\x29\x63\x74\x3b\xa2\x21\x98\x78\xc3\xc0\x58\x4d\x59\xc1\x38\x5d\xc7\x46\x5a\x6f\x92\xc9\x53\x1b\x53\x47\x5b\x19\xd5\x5e\xf5\xda\x05\xba\x68\xee\x73\xee\xba\x4a\xef\x52\x53\x2e\xdb\xd8\x77\x95\x94\xdc\x69\x80\x5c\x95\x23\x64\x50\x81\x6e\x19\x5f\x29\x3a\x2f\x4b\x4e\x46\x11\x4c\xe3\x53\xb9\x00\xa5\x21\x3f\x21\x63\x19\x31\x03\x2c\x85\xc5\xba\xfd\x0d\x4c\xd5\x65\xd3\x6b\x4b\x87\x19\xce\x89\xa1\xec\x0d\x04\xdf\x48\x44\xc6\x3d\x05\x17\x54\x15\xbd\x21\xe4\xfc\x94\xba\x88\x0d\x3c\x0d\xb2\x55\xef\xe1\x99\xed\xdc\x37\x04\x00\xb5\xfd\x50\x15\x71\x40\x15\xbb\x8d\xae\xea\x25\xc8\x13\x78\xce\x0c\x68\x00\x24\x65\x02\x00\x89\x13\x00\x54\x0b\xfe\x87\xae\x0c\x40\x63\xb8\x01\xa0\xba\xf4\x20\x77\x2d\x19\x00\x4c\xdc\x18\x2d\xab\xdf\xf3\x7b\x9e\x53\x18\x58\x24\x40\xaf\x04\x32\x9b\x6a\xc6\x6c\xa1\x86\xea\xf3\x9e\xb6\x61\x6a\xda\x1e\x00\xb0\x22\x37\x00\xb4\x94\x36\x26\x51\xc3\x8c\x28\x03\x50\xa3\xe6\xcd\x3e\x51\x1b\x4a\x1d\xdb\x1d\x8f\x35\x67\xdc\x16\xf3\x99\x2c\xbc\x2f\x15\x72\xe5\x55\x75\x4f\xe8\xdb\x7e\x4d\x99\x92\x4e\x77\xcc\x95\x58\xd2\x18\x34\x6b\x13\x66\x94\xe5\x05\x97\x40\x04\x77\xa4\x0a\x2e\x51\x2b\x90\x30\xdb\xaf\x11\x23\x60\x2a\x73\xda\x04\x0b\xba\xa6\x2b\x98\x29\x8f\x78\x92\x00\xd5\x1a\xae\xd3\x63\x55\x73\x4d\x38\x37\xe8\xc2\x86\x38\x22\x73\xd3\x2d\xc7\x6b\xa3\x46\x53\x31\x06\x13\x57\xed\x37\x6b\xaa\xe0\xee\xb5\xf2\x5e\x2c\x17\x8b\xa9\x92\x90\x2b\xa7\x86\x8b\x95\x62\x4d\xf1\x2a\xb2\x4b\x95\x53\xbc\x54\xcc\xaf\xd7\x7a\x53\x5b\x67\xe5\x2e\x3a\xe9\xaf\x8e\x7f\xc3\x15\x70\x6d\x13\xeb\x64\x8d\x99\x44\x39\x3c\x33\x1e\xad\x6c\xde\x5e\xf7\xd7\x43\x7b\x60\x68\x82\xc0\x66\xf2\x7c\x56\xab\xf6\xa5\x3e\x55\x13\x85\x1c\xc7\x17\x8c\xfd\x7a\x84\x4e\x8b\x5d\xd2\xda\x70\xf3\x62\x27\x5b\x54\x1a\x13\xa5\xb7\x77\x77\xeb\x5d\x4e\x59\x02\x18\x1e\x18\x72\x66\x34\x6e\x20\xb3\x6c\x9d\x76\x6a\xaa\x02\xd3\xd3\x7d\x4a\x00\x2c\x82\x2e\xa4\xbe\x3a\xd8\x6c\x86\x22\xba\x9b\x39\x2c\x59\x2a\x77\x17\xd3\x96\xbd\x31\xcc\x26\xd9\xda\x94\x08\x13\x74\x49\x50\x93\x5b\x9b\xea\x00\xdf\x0a\xa0\x89\x11\x4d\x52\x21\x81\x6c\x2a\x24\x0e\x48\x99\x94\x49\xac\x59\xb7\xc4\x5e\x1f\xef\x2f\xb3\x4e\x0f\xc7\x40\x13\x28\x4a\x89\x96\x81\x9a\xe9\x91\x35\x95\xc1\x30\x7a\x3d\xcf\xd2\x7d\x95\x1e\xbb\x04\x8e\x51\xd6\xb6\x51\x9e\xda\xf9\x79\x5b\x51\xe7\x82\x9c\xa3\xd9\x9c\x38\x51\x65\xd0\xaf\x61\x8c\xaa\x6b\x43\xdd\xb0\x8a\x2d\xbd\x35\x2e\xd9\x5a\x69\x59\xce\x77\x7b\x54\x13\xae\xd2\xb8\xda\x93\x06\x84\x40\xdb\xa0\x8a\x14\xcb\xa9\x62\xaa\xd8\x72\x7a\xd9\xb5\xdb\xdc\x94\x01\xc2\xad\xa7\x9b\xda\x8c\x6e\x67\x6c\x24\x03\x76\xd5\x42\x8e\x6a\x61\xeb\x7c\xb3\x41\xf2\xe4\x86\xb4\xc8\x7c\x9d\x9c\x4a\x6b\xb1\x84\xda\x30\x99\xed\xb6\x17\xeb\xe6\xac\x6b\xe6\x67\x33\x7c\xb9\x41\x88\x39\xd9\xd7\x68\x5a\xc9\xf2\xd9\xa2\x05\xf3\xee\x6c\xc0\x62\x28\xda\x9b\x93\xab\x86\x5b\xce\xbb\x86\x81\xd9\xc5\xfc\xbe\xd1\xc9\x80\x3a\x60\xcc\xc9\x62\xb7\x65\xd9\x01\xde\xc5\x7b\xb3\xee\xa8\x53\x76\xea\xb3\x95\x94\x12\x67\x99\x56\xce\xce\xee\x4b\x6d\xa6\x3e\xec\xae\xb3\xfc\x68\x52\x25\x97\xb9\x2c\x46\x8c\xc7\x04\xdd\xef\xe1\x34\x95\x5f\xd6\x34\xa9\xd6\x16\xc5\x55\x77\xd3\x66\xb3\x23\x6a\x88\x8d\x6b\xec\x8e\x1d\xcf\x5d\x3d\xbb\xb0\x17\xee\x7a\x83\x64\xd7\xab\x16\xb2\xea\x8d\xeb\x00\x0c\xe5\xb9\x5a\xd7\x5a\xbd\x71\xb3\xcc\xad\xb9\x7d\xab\x98\x2d\x99\xfb\x52\xc3\xe9\xce\x6b\x35\x74\x95\xe5\x1b\x30\x51\x6a\x12\x6b\x30\x9a\x4b\x29\x03\xed\x35\xaa\x45\x98\x2b\x66\xb6\xba\x20\xcc\x5a\x18\x43\x95\xdb\x88\x31\x86\xc1\xd2\x98\xd4\x18\x4a\xc1\x8a\x33\x52\xe9\xee\xe5\xac\x8a\x22\x98\x34\x69\x8c\x10\xb9\xad\xda\x48\xa6\x8a\x61\xa9\x42\x43\xad\xb7\x06\x5b\xbd\x3f\x9b\x6e\x67\xe5\xd4\x52\xc8\x94\x46\xce\xbe\x5d\xd6\xf6\xb5\x72\x39\x57\x28\xb9\x9b\x2d\x87\x83\x65\x7e\x33\xa5\x95\x36\xde\x27\x46\x3d\x4c\xad\x8e\x45\x29\x2b\x91\xb9\x52\x39\x35\x97\x32\x29\x64\x95\x91\xdc\x8c\x90\x05\x54\x2a\xb3\x62\xf6\xbb\xd6\x60\x2d\x53\x45\x5b\x4f\xb9\x18\x91\xc3\x39\x80\x34\xfa\x7c\x6d\x50\x34\x97\x1d\x9a\xc2\x71\xd1\x59\x62\x56\x01\xa9\x57\xcb\x52\x03\xab\x16\x8b\xe3\x95\xd1\x44\x0a\x66\x26\x55\x58\xa6\x32\x42\xab\x39\x69\xf5\xd0\xd9\x7c\x3f\xab\xd7\xd5\xfe\x44\xd9\x60\x7d\x0a\x9d\x19\xad\x4c\x56\xe9\xef\x8b\x99\xd5\x20\x53\x32\x66\xab\xd5\x1e\x1d\x6c\x35\xbe\x94\x9a\x8f\xfb\xd3\x66\x81\x1e\x52\x18\xdf\x5a\x35\x75\x99\x6d\x35\xfb\xd4\x8a\x99\x6b\x24\x66\xf1\xae\x42\xd4\x80\x05\x70\xb2\xd6\x68\x64\x34\x90\xc9\x74\x1a\x8b\x6c\x76\x29\xc1\x52\x6f\x4d\x37\xc7\x04\x9f\x69\x1a\x0d\x82\x34\x01\x36\x11\xcb\x68\x3e\xb3\xef\xf6\x66\xa9\xe6\x02\xdb\xb6\x9b\x78\x26\xb3\xdb\x8e\x53\xf5\x09\xcf\xc9\x75\xc0\x39\x12\x0c\xaf\x24\x64\x85\xed\x76\xa3\x36\x6d\xd7\x09\x4d\x64\x59\x0a\x1f\x4d\x69\x19\x80\x42\xd7\x90\x64\xba\x57\x2c\x97\x8b\xfb\x35\xdf\x6b\xa0\x72\xdd\x21\x2d\x5a\x11\x47\x2b\xb3\xbf\x01\x19\x13\xcd\x4c\xab\xfb\x22\x6c\xce\x66\x29\xa3\x46\xf2\x99\x99\xb0\xdf\xa3\xbd\x25\x3a\xdf\x33\xd3\xbe\xea\xb4\xf0\xad\xd3\x19\xe4\xb2\x18\x59\x5c\x4c\xf0\x51\x46\x99\x8b\x19\x01\xa3\x46\xdc\x80\x9b\xd3\x42\x8d\x2d\x2f\xdb\x0b\x1a\x96\x75\x62\xa3\xe7\xe6\xea\xd2\xe9\xb2\xc4\xa2\x6a\xca\xcb\x6c\x71\xda\x5d\xac\x79\x42\xc3\xa8\x96\xb2\xd7\x27\xac\x4c\x8d\xb8\x11\x8c\x34\x16\x52\xb7\x55\xe7\xc1\x74\xa8\x58\x66\x73\x30\x6a\x00\x6a\xc3\xe7\xa8\x89\xa5\x37\xf0\xe6\x10\x83\x35\x1a\x37\x87\xb0\x23\x50\xb0\x8c\xb7\x9b\x7d\x66\xb9\xec\x2e\x1a\x92\x06\x13\x4b\xce\x22\xad\x1a\x39\xad\x0e\xa5\xce\x66\xd3\x6d\xa3\xbb\xa2\xdc\xcd\x89\xc6\x68\x6e\x33\x7b\xb6\x86\x55\x89\x7d\xdb\x52\x87\xad\x4e\x1b\xce\x61\xa4\x5c\x73\x18\x44\x96\xb7\x9d\xe1\x9e\x62\x19\x05\xef\x3b\x04\x46\x0c\x09\xb3\xa6\xf4\x97\xe8\x3a\xdf\xe8\x8c\x17\x6d\x11\x29\x59\x4c\x83\x95\x38\x63\xb5\x32\x14\x8e\x37\x2d\x92\xa4\x31\x40\xce\x8d\xe1\x52\x5e\x4f\x11\x77\x98\xed\x62\x54\x4d\x19\xe1\x62\x7b\x27\x02\x6c\x84\x35\x52\x53\xd2\xc4\xd7\x20\xdb\xef\x0c\xcb\xd4\xae\xda\x55\xf8\x79\x1d\x1d\x03\x00\xf6\xce\xbe\x9b\xeb\x34\x54\x8e\xec\xfc\x3f\xe4\xfd\x09\x73\xe3\x4a\x72\x20\x8e\x7f\x15\x4a\x3b\xab\x20\x9a\x10\x09\x80\xb7\xd4\xe8\x0e\xf0\xa6\x44\x8a\x12\x2f\x91\xd2\x28\xf4\x40\xa0\x08\x42\x02\x01\x08\x07\x2f\x89\x11\xeb\xf1\x7a\xbd\x5e\xef\xed\x79\xe3\xdb\xb3\xf7\x6d\xaf\xef\xfb\xf8\x2e\xfe\x00\x0e\x7f\x84\x7f\xa0\x00\x10\x37\x25\x75\xbf\xf1\xce\x3f\x7e\xf1\xe2\xa9\x89\xca\xaa\xac\xac\xcc\xac\xac\x23\xab\xb2\x98\x73\xaa\xa5\xb3\x6c\xb7\xc1\xa7\x87\xd7\xb5\x2e\x68\x31\xd7\xeb\x02\x3b\x5b\x75\xb2\x74\x4d\x5e\x3c\xce\xe8\x79\x25\xdb\xa8\x2d\xaf\xae\xf4\x9e\xc6\x2d\x5b\x97\xb2\xda\xd9\xd0\x99\x6c\xbd\x92\x5a\x57\x32\xed\xca\x92\x78\x18\x96\x95\x72\xbb\xd1\x7b\x1c\x2c\xe7\x4b\x35\xfd\x58\x6e\x53\x95\x0a\x56\x2f\xdf\xc8\x3c\x2d\xb4\xeb\xe9\x09\x4f\x67\x34\x65\xa8\x9e\x25\x56\x8f\x67\xd4\x79\x6f\xd0\xd3\xda\x98\x74\xad\xf6\xae\x14\xae\x5f\x67\x75\xa2\x3d\x12\x84\xea\x1c\x6c\x6a\xa9\x46\x77\xb6\x49\x94\x33\x93\xdc\x6c\x5d\xe5\x14\x71\xfd\x30\x6c\xb5\x36\x33\x66\x26\xe1\x7c\x4d\xad\xf0\x75\x69\xde\xd9\x68\x89\x8a\x9a\x2a\x6c\xf2\x97\xcd\xcd\x7c\xda\x4d\x17\xc1\x25\xce\x0e\x87\xbd\x4e\x95\x7f\xe8\x62\x62\x57\xad\x29\x1c\xde\xec\xc9\xf3\x47\xe9\xaa\xc8\xf4\xf5\xe9\xea\x5c\x29\x4d\x1a\x73\x69\x20\x9d\xdd\x5c\xcf\x85\xcb\xca\xa8\x7b\xc3\xb1\xed\xca\x85\xba\x2a\x34\xf4\xd1\x44\x5b\xa5\x37\x8b\xc5\xac\x7b\x75\xde\x67\x6b\xf3\xd6\x15\x55\x96\xfa\x04\xbb\x1c\x17\xc1\xb4\x7b\x2d\x2c\x28\x7c\x8e\xaf\xce\xd6\x44\xb3\xca\x71\x8f\x97\x8a\x38\x58\x8c\x4a\xc5\x36\x26\xd4\x1f\x69\x7e\xb8\x4a\xac\xba\x29\xaa\x72\xa5\x5f\x76\xaf\x28\x59\xa6\xc7\xd8\xd9\x74\xd3\x29\x95\xb0\x07\xa9\x46\xa9\x99\xce\x7a\x92\x2d\x56\xb1\x71\x5e\xae\x65\x2a\x95\x0a\x3b\x5f\x66\xf2\x2d\x6e\xcd\x5d\x35\x26\x13\x35\xdf\x7c\xc8\x9c\xc9\xf5\x76\x73\xf9\x50\xef\xd6\x98\x1a\xb6\xaa\x9d\x31\x15\xb6\x8a\xc9\x83\x49\x7a\x7c\x85\xcf\xc6\xd7\x6a\xa5\xd6\x5b\x4d\xa7\xf9\x05\xd7\x68\xaf\x3b\xe9\xc7\xc7\x76\x9d\xa7\xa9\xcb\x4d\x8f\xa1\x96\x9b\x12\x36\x1e\x0a\x73\x4a\x6f\x48\xe9\xcd\x55\xe3\xf1\x9c\x1e\xc8\x72\xbf\x41\x0d\xae\x4a\xad\x2b\x91\x1a\xcf\x33\x67\x19\x7c\x0a\xca\x02\x4b\xd5\x41\x03\x10\x35\xba\xfc\x54\x9c\xb2\xa3\xab\xf6\x65\xe1\x49\xcb\xaa\xa5\x5c\x47\xa8\x4f\x2e\x33\xf2\x63\x69\xb9\x29\x71\xf5\x86\x74\xde\x66\x99\x66\xbd\x40\x54\x97\x58\xf7\x3c\x37\x78\xea\xaf\x1a\xd4\x59\xb5\xd1\x2b\x95\x5b\xf3\x61\xa3\x4c\x2f\x46\xcb\x01\xb3\xac\xcb\xa3\xf6\x59\xb3\x47\x8c\xc5\xe1\x4c\x79\xc2\x70\x86\xea\x5c\xad\x1e\xcb\xf9\x71\xbb\x9e\xe5\x73\x8b\x25\x9f\xcb\xb6\x86\x19\x4d\x69\x9e\xe3\x58\xfd\x6c\xdd\x68\x2d\xe4\x7e\xbf\x8b\x55\x6e\x6e\x84\x33\xad\x5a\x6d\xaf\xba\x89\xe6\xf0\xec\xac\xdf\x13\x6a\x54\x8d\xbd\x69\x65\xf2\x0f\x52\x8d\x53\x97\x4a\xf5\x26\x3d\xc2\x72\x95\x45\x1a\x50\x8d\x7c\x21\x3f\x9c\x17\x52\x1a\xa6\x16\xc4\xb6\xc0\x16\x2f\x1f\x4a\xb3\x46\xf9\x02\xaf\xe7\x59\x61\x9e\x29\x62\x5c\x5a\x69\x6e\xca\x5a\x2a\xbb\x6e\x34\xaf\x79\x2a\xcb\xae\xea\x57\xd9\x46\x87\x31\xec\x94\x3e\xae\xdf\x3c\xe9\xcb\x7e\xef\xa2\x3f\x6a\x53\x12\x37\x94\x7a\xfa\xa3\x4e\x8d\x96\xc2\xa6\x36\x90\x7b\xdd\xf2\x5a\xc0\x99\x55\x62\x28\x75\x4a\x9b\xd4\x0d\x5f\x4c\x2f\xd6\xa0\x52\xc5\x73\x93\x15\xce\xeb\x2d\xb5\xa9\x76\x7a\xad\xde\x75\x59\x5f\x2e\xab\x33\x8c\x2e\xce\x52\xfa\xaa\xa2\x26\x08\xee\x5a\x5c\x55\x1e\x12\xf9\x22\x7b\x75\xfe\x30\x13\xb8\xcc\xe4\x46\x48\x2d\x1e\x79\xba\x32\xd7\x1e\x17\xa3\x8b\x1a\x3f\x9f\x0f\xba\xed\xb3\xcc\x70\xdc\x79\x2c\xc9\x3d\x81\xed\xe9\x5c\x11\xef\x57\xc6\x7c\xb3\xc2\x8e\x96\x5a\x75\xd1\x07\x95\x0b\x61\x75\xb3\x4c\xaf\x53\xe9\xcc\x65\x45\x64\xf5\x56\x99\x4f\xb5\x33\x09\x70\x85\xdd\x68\x59\xa6\xcc\x36\xf1\x7a\xaa\x76\x5e\x5b\x71\xd9\x79\xbb\x5a\xec\xe6\x95\x6e\xfb\xba\xcf\xa7\x28\x6d\xd3\xb9\x14\xab\x17\xad\xf3\xd1\x90\xd0\xd6\x0a\x95\x10\x6a\x4f\x9b\xc7\xf3\xc7\x74\xe9\xa2\x89\x3d\xa6\x4b\xd7\xd5\xac\xba\xac\x8c\xa8\xfc\x52\x98\x63\x93\x5a\xf5\xb1\xda\xa9\x4c\x1e\x36\xd7\x97\x9b\x79\xe5\xa9\xbf\xcc\x34\x2a\xe2\xe4\x61\x93\xcd\xab\x4b\xb6\xc1\x9c\xcb\xd9\x5c\xe2\x41\x03\xa9\x47\x6c\xa8\x2b\x5a\x77\xd0\x14\x7b\x97\x67\xa3\x4a\x7a\x5c\xc4\xc6\xd3\x11\x33\xb9\xd1\xf2\xcd\x4c\x51\x4b\xb5\x33\xd9\xd6\x59\xf6\x86\xab\xe5\x85\x36\x35\x51\x2f\x8a\xa5\x29\x3f\xaa\x66\x75\x6d\x36\xaa\x6e\x6a\xa5\xf3\x44\x5f\xa6\x66\xca\x50\x17\x29\xaa\x0a\xaa\x72\xa6\x72\x95\x91\xd6\xeb\xab\x66\x62\xfa\xd8\x7b\x10\x53\x5a\x5d\xbd\x99\x5e\x33\x54\xf1\x21\x3d\x7a\x58\x3c\xa6\xb0\xb1\x06\xf2\xc4\xa2\x52\xa8\xad\x6f\x96\xa9\x31\x31\xa4\xf5\xae\x4a\x51\x99\x42\xba\x39\xaf\x88\x09\xa9\x46\x14\x2a\xad\xd4\xe6\xa9\x26\xa6\x97\x22\x9f\x5a\x31\xd5\x5e\x4f\xea\x2f\x1e\xab\xab\x15\x5b\x2a\x5d\xf0\x42\x4d\x2c\x53\x42\xab\xd4\x6e\x27\x1a\x33\xf6\x31\xdd\xd0\xfa\x33\xa9\x59\xc5\xfb\xba\xd0\xd7\x2b\x82\xca\x50\x1c\xa5\x5f\xac\xca\x54\x6e\x74\x91\x6d\x5c\x26\x2e\xe9\xc2\x0c\x5c\xab\x0d\x8a\xeb\x5d\xad\x29\xec\x66\x53\x53\x0a\xcd\x7a\x63\xd6\x28\xeb\x8f\xa0\x01\xd8\xe9\xbc\xdd\x91\x27\x85\x25\x27\xac\x31\x02\x7f\x18\x3d\xf6\xd5\x87\xf1\xbc\x58\xc6\xc6\x0f\x17\x67\x3d\xae\xb6\x68\xe8\xd4\x65\xfe\x69\xd2\xa6\xd2\x7d\x99\x59\x52\x12\x2e\x49\x95\xce\x72\xf9\x70\xde\x6f\x10\x57\x95\x85\x9e\x12\xb8\xb4\x50\x16\x97\x5c\xae\xc8\xac\x98\x9e\x7c\xc6\x14\xd8\x9b\xb3\x4b\x8e\x2a\x03\xa0\x53\xe3\x19\x37\xc5\x2e\xd9\xdc\xd9\xc3\xba\x4d\x29\xa3\x6c\xaa\x2e\xdc\x14\x54\x8e\x48\x0f\xb2\xfd\xf2\x34\x51\xed\x69\xd8\x55\xad\x5c\xae\xf1\xd7\x63\xa6\x86\xa7\xf1\xc7\x7e\x46\x98\x95\xe4\x4a\x6f\x44\xb5\xd7\x89\xea\x13\x7e\x49\x8d\xc6\x54\x73\xdc\x28\xe9\xc5\x0e\xd4\x79\xb0\x60\x84\xf6\x34\xbf\xa6\x1e\xf3\x85\xec\xa6\xa7\x8f\x0a\x7c\x7e\x9c\x2b\xdc\x74\xa4\x32\x95\x5b\xb1\xd7\x85\x0b\x22\xa5\x67\xfa\x5d\x96\x60\x97\xf9\x6c\x4d\xbf\xbc\x7c\x12\xf5\x74\x65\xae\xe7\x2f\x32\xc5\xae\xba\xb9\x6e\xf1\xeb\xfa\x82\xab\x77\xa7\xed\x4c\xbe\xf1\x70\xc1\x6e\xe6\x5c\x6e\x90\x7b\xec\xb6\x28\x15\x23\x96\x75\x6a\xb4\xe4\x41\x69\xc9\x71\x9c\x44\xb7\x07\x95\xbc\xd4\xcc\xe5\xa7\xf3\x6a\x63\xf2\xb0\x18\x70\xd3\xb9\x52\xea\x6f\xd2\xc5\xec\x74\x99\x7d\x54\x5b\xe7\xe7\x44\x4e\x9e\x73\x9b\x0e\xb6\x2c\xab\x35\xe6\x26\x9b\xcf\x8d\x56\xa0\x2f\xdf\xb0\x9b\x15\x5d\x9e\xea\x89\x06\x35\xea\x72\x39\x22\x03\x7a\x7d\x6c\x33\x4b\xb1\xa5\x5c\x6d\x54\x79\x38\x4f\xf7\x07\xdc\x70\x79\xd5\xad\x0e\x24\x0d\xa3\x6a\xe5\x6a\x75\x95\x1e\x14\x6e\xa4\x12\x57\xa5\x86\x4b\x56\x1a\x88\x33\x50\x13\xaf\xeb\xad\x8d\x46\xe1\xeb\x4c\xff\x21\xb5\x59\x95\x9b\xeb\xc1\xb2\x99\x00\x73\x95\xbe\x14\xb3\x62\xad\xf0\xb4\x5e\xd4\x6a\x2a\x56\x49\x95\x0b\x58\xf6\x46\xe4\xd3\x0f\xf2\x13\xde\x1e\xa7\x12\xd5\x72\xfe\x41\xec\x71\xa9\x69\x22\xcb\x95\x72\xc5\xf5\x68\x99\x2a\x31\xe2\xb8\x34\xad\x34\x41\x5b\x19\xd3\xad\xeb\x1c\x55\xa6\xc6\xb5\xf9\xfc\x41\xe6\xf3\xe3\x27\x79\x5e\xee\x5e\xb7\x9f\x88\x39\xdd\xe2\x9a\x9d\xa7\x1a\x33\xb8\xca\xb7\xab\x8a\x9c\xbd\x59\x3d\xcd\xc5\x1b\xec\x6c\x85\x25\x9a\x67\xd7\x17\xa5\xa6\x92\x7d\x92\xd5\x8d\x50\xc8\x12\xa9\xe9\x52\xce\xa7\x6f\x2e\xca\xe9\xcb\xe5\x7c\x76\x5e\xbe\xa2\x06\xd7\xe5\x3a\xa5\x67\xdb\xfa\x85\xa0\xf0\xd5\xab\xea\x3a\xb7\xa1\x6b\xb4\xde\x9a\x35\xb8\xdc\x55\x59\xb8\x00\x0f\x1a\x28\x8e\xaf\x9a\x65\xa6\x85\xf3\xe9\xc7\x42\x2a\x33\x38\x63\x53\x93\x9b\x9b\x46\xb5\x5f\x5f\xd6\xcb\xe3\xf3\xc2\x7a\xf3\xb0\x4c\xcf\x32\x8b\x46\x6d\x4e\x8d\xd6\x73\xbc\xc8\xae\xa6\x17\x55\xac\xaa\x31\x4f\x8f\xab\xfe\xf0\xb2\xcf\xb2\xd8\x53\x8d\x92\xbb\x97\x17\x74\x55\x63\x56\x57\x14\x4f\x61\x7d\x20\x94\xc1\xf9\xa2\x5b\xe9\xf7\xa4\xd1\x75\x7f\x7c\x36\xc9\xce\xa4\x7c\xb6\xfb\x84\x3d\x52\xf2\x64\x59\x51\xe4\x99\xd2\xe9\x56\x59\xac\x29\x67\xa9\x4e\x49\x5f\xcf\xf8\x7a\x43\xd5\x34\xb9\x94\x29\x49\x33\x7e\x30\x7f\xba\x91\x39\x20\x64\xda\x2b\xfc\x49\xd2\x15\x71\x5c\x9e\x30\x03\x2e\xb3\x94\x5b\x0c\x33\xa0\xd5\xe1\xcd\xb0\xdc\xa2\xce\x06\x37\xb3\x73\x7a\xd0\x97\xb3\xb3\x45\xff\xba\x2c\x8f\x44\x8a\xa9\x36\x3b\x6a\x1d\xc3\xa6\x2b\x7d\x38\xee\x3e\xe5\xda\x54\x9a\x1d\x65\xcf\xf4\x72\x5d\xcb\xae\x66\x55\xea\xe9\xfa\xf1\x29\xd3\x2c\x67\xda\x89\xfa\x78\x32\xc4\x52\x93\xd6\x59\x6e\x56\x24\xd8\xb9\x40\x9f\x35\xeb\xc5\xfe\xec\x71\xbd\x99\x54\x8b\xdc\x15\xa6\x8c\x4b\x39\x41\xee\x71\x03\x06\x2b\xf7\x0b\x65\x4c\xbc\xda\x5c\x0e\x16\xe5\xca\x23\x21\xe5\xf9\xb5\x3a\x18\x60\xdc\x5c\xad\x31\xbd\x72\x59\x3c\xbb\x51\x65\xf0\x94\x2b\x69\x97\x83\xc7\x74\xa3\xb7\x52\xea\xe5\xd9\xf9\x8d\x3c\xd7\x53\x03\x82\x5b\x9e\xab\xed\x4b\x89\xb8\x49\x55\x13\xe9\x62\x9e\xaa\xb6\x6a\xad\x4c\xa1\xda\x6e\xd4\x9e\xea\x6c\x2a\xb5\xc2\x1e\x33\x45\x6e\xbc\xec\x26\x86\xd7\x83\xfa\x62\x4e\x5d\xad\x2a\x38\x51\xbf\xb9\xe1\xa4\x15\xae\xc9\xbc\xde\xa3\x73\x8d\x4e\xf9\xac\x79\x56\xd0\xe7\x2b\x29\x3b\xab\xb6\x3a\xab\x45\xaf\x76\x59\xe5\xf5\xe6\x8a\xe9\x66\x79\x76\x74\xb1\x19\x3e\x3d\x2d\xc5\xab\x51\xe9\x86\x9b\x29\x05\x25\x3b\x4f\x9d\x4f\x1a\xdc\x6a\xa3\x26\xa4\x8b\x2a\xde\x4f\xa9\xa5\xc5\x8c\xe3\x78\x8a\x59\x77\x94\x44\x29\x95\x4a\xd4\xd6\x83\x8d\x3a\xad\x60\xd5\x6e\x3b\xdf\xad\x35\x1f\x1f\xfa\xdc\x03\x51\xba\xe8\xcf\x39\x71\x36\x18\x8c\x18\x96\xb8\xc8\xf4\xe4\xd2\x40\xce\x94\x73\x95\x61\x83\x2a\xcd\xe9\xaa\x92\x4d\x14\x5a\x09\x45\xe3\xeb\x42\x9f\xaa\x0c\xce\x33\xcd\xc2\xe3\x59\x61\x04\x2a\x15\xa0\xa6\xce\xa9\x65\x3a\xbf\xb9\x1c\xf4\x94\xf1\x40\xcc\x6a\xf2\x59\xe7\xec\xa9\x9a\xe9\xcf\x3a\x3d\xaa\x2c\x26\xba\x1b\xca\x98\x5b\xa5\xe4\x3c\x35\xe7\x9a\x84\x3c\xbb\x7e\x5c\x83\x52\xe6\xe6\xe9\x8a\xa7\xd4\xda\x8d\xf6\x58\xeb\xdc\x34\x13\x94\x94\xef\x71\x6b\x6d\xc8\x81\x33\xe9\x6a\x58\x7a\x9c\x26\x1a\xdd\xba\xb2\x1a\xce\x86\xa5\x5a\xfd\xa9\xf1\x40\x64\xf8\x79\xef\x32\x2d\xab\xb5\x01\xb5\x16\xc6\xe5\x5e\x55\xbd\xee\x55\x58\x9d\x58\x17\x72\xd7\x17\x57\xfa\xa3\xbe\xd6\xe6\x4d\x76\x39\x7c\x4a\x6b\xbd\x33\x29\xbb\x51\xb4\x26\x76\x36\x68\x3f\xf0\xd4\xd9\x66\xa2\x94\x52\x14\x55\x18\x77\xc5\xf2\xf5\x85\xd8\xea\x5c\xa4\xcf\xf4\xda\xba\xca\x37\x1f\x0a\xd4\x0d\x10\x8b\x43\x06\x5b\xb6\xb0\xb3\xc7\xae\xd6\xe6\xea\xc2\xf4\xa1\xd2\x28\x2d\x2b\xbd\xd6\xf9\x66\x29\xe7\xd9\xee\x4d\x2b\x41\x8f\xf9\xc5\xcd\x92\xa2\xe4\x1b\xe1\x5a\xa4\x2e\x35\xac\xbf\xd2\x7b\xe3\xd2\xb9\xc4\x94\x29\xbc\x74\x3e\x58\x35\xb9\x76\x69\x8d\x69\xf4\x80\xea\x94\xf9\x21\xff\xc8\x0b\x83\x47\x5e\xc4\x52\xb5\x49\x4d\xac\x6e\xd2\xab\xd5\x55\xab\xde\xe6\x72\x8a\x0c\xe6\xa3\xa2\x4c\x5f\xcd\xd3\xf9\x15\x51\x11\x5a\xad\xf6\x20\xd7\xbc\x69\x36\xfb\xcb\xce\xa0\xac\xd0\x55\x6a\x58\xed\x4a\x5a\x37\xc3\x30\x52\xe5\xea\x8c\x6a\xe6\x2b\xf5\x92\xa2\xae\x0a\xed\xcb\xb4\x94\x10\x17\xa9\x61\x91\x6d\x4c\xd3\x25\x8a\xc1\x9b\x0f\x9c\xde\xc1\x30\x36\xd1\x91\x1b\xd3\xe9\x58\x59\x66\x79\x05\x2b\x5e\xb7\xf9\xec\x92\xcd\x5c\x96\x0b\x57\xad\x4a\x63\xd4\xa8\xcf\x9b\x0d\x05\xaf\x17\x58\x4e\xed\x74\x38\x69\xdd\x39\x2b\x15\xf3\xe9\xd6\x43\x37\x75\xde\x6b\x8d\x6b\x63\x4d\x5f\xcf\x57\xe3\xf2\x4d\x67\x30\xd0\xda\x85\x0d\xc1\xa7\x96\x99\x02\x73\xc9\xf5\xfb\xed\xcb\x4a\x25\x93\x03\x57\x23\x7c\x5e\xcf\xe7\x0a\xbd\xf9\xd3\x53\xe2\x89\xaa\x55\xbb\x9d\x65\xf3\xaa\x47\xf5\x6e\x86\x6c\x89\xe2\xaf\x9a\x57\x1c\xd7\x2c\x3c\xe5\x13\x4c\x8a\x7a\xe8\x95\xab\xdc\x4d\x89\x9b\xa7\xfa\xdc\x4d\x5a\xd5\xa4\xc5\xf9\x3a\xd3\x55\x9f\x36\xad\x52\xfb\xa1\xb3\x04\xdd\x1e\x3f\x9a\x5d\x74\x6a\xcb\x2e\x8f\x95\xe7\x67\x93\x59\x95\x28\xf5\xe7\xa9\x73\x55\xbe\xb8\xc2\x64\x46\x69\x0f\xe9\xc1\x63\xe5\x21\x85\x4d\xc5\x0d\x87\x5d\x62\x92\xf0\xf8\x34\x53\x13\x19\x3a\x8f\xaf\x24\x40\x61\xad\xf3\xb2\xae\x34\x95\xd9\x7c\x4a\x28\x67\x1b\x86\x2e\x32\x02\x36\x98\xa7\x07\xd8\xd3\x8d\x44\x3d\x5d\x2c\x87\x44\x96\xea\x15\xe5\x2a\x2b\x52\x44\x93\xd3\xdb\x99\xc7\x5a\xab\x5c\xcc\x4e\xc6\xad\x4b\x9e\x3f\x1b\x37\x1f\xb4\x6a\xb3\x90\x2e\x71\xdc\xf5\x39\x2d\x1b\x1a\xb4\x4a\x57\x09\x6d\xc5\x8b\xc2\xe5\x59\x67\x55\xdc\x14\x1e\xf3\xd4\xa4\x34\xe8\x97\x7a\xdd\x47\x45\x28\x68\x8b\x44\x7d\xc0\x56\x9a\x65\xe1\x51\x95\x67\x35\x75\xd1\x4a\xdc\xd0\xcc\x79\x4b\xc4\xb9\x56\x7a\x88\x55\x9a\x65\xa5\xa3\x5f\x8d\x16\x3d\x69\x36\xb8\xa8\x12\x8a\xb8\xc9\xe0\x57\x4f\x0c\x7b\x79\xa1\x0d\xd5\x6e\xbd\x5a\x9a\x74\x38\x71\xc2\x3e\x3e\xf4\x87\xe7\x83\x9b\x6b\xee\xfa\xa9\x2b\x66\xa6\x0d\xaa\xd4\x91\x86\x25\xe6\xa2\x4a\x6c\xb4\xc6\xa5\x28\xb5\xf2\x17\xd4\xb4\x41\x5d\x34\x7a\x05\xf6\x72\x53\xc5\xd4\x55\x9b\x55\x9b\xad\xa7\x85\x5a\x57\x46\x12\x53\xad\x77\xc7\xa3\xda\x2a\x97\x9f\x0e\x36\xd9\x75\x9e\x28\x82\xfc\x78\x99\xa1\x2a\x0f\xfa\x7c\x42\x50\x67\xd2\xf5\x13\xb1\x2a\x6b\xca\x92\x9d\x61\xfd\xab\xee\x26\x9f\x19\xcf\x5b\xf2\x4d\xb3\xd8\xe0\xb5\xc6\x43\xbf\x5c\xa6\xb1\xf3\x1b\xea\xe2\xbc\x2e\x8d\x0a\x05\x61\x20\x25\xe4\xf2\x5c\x98\x95\xa8\xde\xb8\x3d\xa7\x1e\xaa\xf9\x5c\x95\xce\x94\xa5\x8b\x35\x50\x2a\x63\x7d\x70\xd3\xe8\x8e\x96\xfc\x13\x71\x49\x8b\x05\x25\xb5\xbe\x78\x64\xda\x14\xff\xb4\x58\x24\xe4\x65\xad\x76\x3d\x97\xaf\x9e\x26\x42\x8e\x57\xe9\x27\x69\x38\xd4\xe8\x07\xf5\x6c\x5a\xc2\x64\x7e\xb4\x2c\x57\x79\x76\xb6\x6e\xc8\xb9\xd4\x65\x43\xd6\x59\x71\xaa\x16\xb8\xca\x3c\x33\xc1\xf2\xab\x51\x62\x35\x2a\x89\xd5\xeb\x4c\xfa\x61\x41\x74\x1e\xa4\x7c\x3a\x45\x60\xab\x04\xd8\x30\x99\x7c\x6d\x9d\x6b\x5f\xa4\x9a\x9d\xd1\x4d\xe2\x66\x55\x5a\x34\xab\x39\x00\xca\xd2\x62\x22\x62\xb5\xd1\xe6\x61\xf4\xa4\x65\x74\xa5\xaa\x0e\x85\xba\x7a\x79\x55\xb8\xa8\x35\x2e\xb1\xee\x65\x8a\x05\x9b\x8c\xba\x48\x15\xeb\x85\x1b\xfd\xbc\xb0\x7c\x22\xf4\xf3\x95\xf6\xd8\x55\x13\x99\x0c\x73\xa1\xe6\x41\x5a\xcb\xe1\x17\xd5\xd1\x68\x39\x6c\x0e\x07\x6b\x80\x4b\x89\x69\x42\x14\x47\x6a\x1f\xbf\x11\x94\x25\xdf\x28\xb2\xe7\x0f\x2d\x39\xd1\xbf\x19\xce\xa4\xee\xc5\x3a\x75\x36\xc9\x5e\x2a\x97\x0f\xc2\x7a\x4a\x6d\x2a\xfc\x72\x4a\x14\x16\x5c\x25\x43\x0d\x13\x94\xde\xcb\xb2\x4f\x59\x5a\x4f\xd7\xf4\x5e\xaa\x89\x35\x4b\xb9\x52\x7a\xd2\xce\xb7\xf2\x4b\xf5\x3a\xdd\x3c\xeb\x95\x1e\x16\x13\x42\x50\x31\x6e\x92\x1e\x73\x4d\x7e\x3d\xc7\x66\x7c\xea\xa2\x39\x2f\xa5\xe4\x6c\x5b\xe6\xb1\x62\x47\x49\x2c\x41\xe9\x49\x4f\x94\x05\xbe\x31\xd6\x56\x29\x45\x2f\xcb\xf5\xeb\x1b\x3d\xcd\x74\x2a\xa9\x1e\x03\x74\xac\xc0\x4b\x03\xbe\x36\x63\x46\x38\xa1\x34\xfa\x6b\xec\xaa\x3a\xea\xb3\xcb\xf3\x61\x6b\x98\x2f\xa5\xd2\x44\x4e\xd3\xd2\xd3\x86\xb8\x98\xd7\xba\x57\x6d\xbd\xb0\xc0\xd2\x34\x55\xed\x36\x1f\xfa\xeb\x72\xb6\x49\x69\x67\x75\x96\x4b\xa9\xf9\xce\x43\x6b\x3e\x69\x8c\x4b\xa3\x21\x51\xec\x0f\xb5\x9c\x5e\x1b\x96\xf0\xf4\xb0\x3d\xba\xd1\x6a\x4b\xa5\xb9\x6c\x5f\x50\x69\x76\x31\x61\xea\x2b\x9a\xaa\x8d\xaf\x26\xc5\x56\x35\x7b\x45\xd5\x9a\xf9\x8b\xc7\x22\xc3\xb1\xd4\xba\x03\x5a\x44\xb9\x26\xf4\x0a\xa3\x4b\x65\x52\x19\x48\x37\xfd\x72\x46\x68\x82\xd5\xb0\x79\xb6\xc4\x2e\x8b\xcd\x65\xa5\xc7\x94\x86\xab\xcd\xb0\xd3\x2f\x5e\x71\xdc\x62\xc2\xeb\x8b\xeb\xce\xc3\xb8\x28\xaa\x97\xa5\xd5\xbc\x55\xc6\xb4\x09\x93\xa8\xe3\x4b\x4a\x3e\xbb\x5e\x37\xda\xfd\xce\x64\xc5\x3c\x2c\xc7\xa5\x04\xd5\xe2\x4a\xfd\xf2\x45\x21\x71\xdd\x1f\xcb\x34\x76\x45\x5d\x0d\xfa\x15\x1d\x03\x8d\xc4\x9a\x99\xcb\xd9\x52\x47\x5b\xd7\x87\xbd\x39\xa6\x64\x4a\x3c\x97\x5b\x8e\xe7\x67\x4f\xe3\xe5\xc5\x45\x7f\xda\xa4\x47\xaa\x4a\xa4\xf3\x95\x6a\xb3\x3b\x6c\x8f\x6b\x83\xab\x66\x55\x14\x2b\xcb\x4e\xbd\xb4\x94\xea\xc5\xe9\x14\x2f\x5e\x26\xb4\x51\x3f\x4b\x94\x6e\xf8\xa1\x56\xee\xb6\x7a\xb9\x4a\x61\xd9\xc6\x36\xdd\x55\x6e\x7a\x36\x4c\x75\x36\xc5\x22\xfe\xc0\x76\x36\x72\x7a\x24\x13\x74\x91\x1f\x9e\x0b\x7d\x81\x5e\x5f\xd5\xba\x85\xe2\xe5\xf8\xb2\x2f\x17\x96\xad\xb3\xf6\x5a\xcd\x68\x4d\xed\x42\x1f\x37\xb2\x89\xe9\xd3\x62\x55\xcc\x8f\x1b\xcd\xab\x2b\x6c\xc4\x4c\x07\x5a\x77\xfe\x38\xe0\xc4\xa7\x7c\xa2\xc0\xea\x7d\x09\x57\xe8\x7a\xe7\x01\xa7\x84\x12\xd6\x17\xa9\xce\xbc\x38\xce\x75\xd2\xd9\xd1\x59\xb6\x4d\xa9\x8f\x8f\x05\x41\x2b\x4c\xda\x9d\x79\x7b\xd3\x59\x36\xaa\x63\xc8\xb7\x35\xdb\x11\x1f\xc6\xdd\x9c\x54\xce\x95\xa8\xca\x79\x76\x59\x29\x82\x02\x4b\x54\x86\xb9\x6c\x87\x4b\xb3\xed\xf3\xfa\x40\xd7\x07\x03\xa6\xbc\xa8\x3d\x32\x97\x54\xea\x72\x59\xee\x8a\xe3\x4e\x85\x3a\x93\xa8\x34\xc5\x5e\x74\xd7\x38\x2d\xd6\xa9\x52\x99\xca\x77\x8a\x8b\x86\x01\x63\x95\x55\x21\xa3\xb2\x5c\x49\x9f\xcc\xb3\xca\x38\xdb\x2c\xd3\x99\x79\xaa\xd0\x7b\xc4\x81\xd8\xee\x5f\x61\x18\x45\x70\xf5\x42\x69\x72\xde\x61\xca\xa5\xb9\xbc\xe1\xa8\x1e\xf7\x90\xc9\xb4\xf3\x89\x94\x44\x9f\x4d\x47\xf2\x7c\xda\x4d\x6b\xd9\xd5\x1a\xcb\x53\xd7\xea\xa0\x36\x1b\x34\xbb\xc2\x1a\xcc\x99\x0e\xc3\x82\x62\x47\x1e\x36\xce\x38\xfa\x5a\xcc\xd6\xe8\xe5\x8c\x7b\x6a\x4d\x67\x8f\xf3\xce\x03\x20\x72\xe2\xcd\xbc\xbb\x5e\x8d\xae\x34\x70\x39\x9f\x0e\xd2\xab\xa1\x54\x93\xe7\x13\x8e\xb8\x1c\x6b\xed\x6b\x5c\x51\x72\x89\x34\x00\xa3\xac\xdc\xa1\x9f\xaa\xdc\xfa\xfa\xac\x37\x6b\x3c\x9e\x15\xe5\x15\x51\xcc\x77\x47\x2c\x2b\xaa\x3c\x7f\x3d\x29\x2f\xf5\xd6\x22\x3b\xe0\xcf\x8a\xf4\x28\x35\x19\xf7\x4a\x42\x35\x2f\x0e\xb3\x9d\x31\x20\x58\xea\xa9\x42\xe5\x89\xfc\x46\x28\x66\xd4\x6c\x93\xba\xe9\x35\xa5\xf3\x45\xb1\xd6\x9c\x37\x34\x42\xb9\xc8\xcb\x15\x35\x7f\x91\x49\x09\xd9\xeb\x61\xb3\x03\xd4\xee\xb2\x51\xe8\x4f\x54\xe2\x89\x5b\x2e\x46\x7c\x4e\x3f\x57\x8a\x97\xa5\x84\x5e\xd0\x1f\xa4\x79\x0f\x9c\x0b\x92\x78\x53\xc7\xba\xf3\xae\x90\xa3\x98\xcb\x06\xd3\xa7\xae\xca\x85\x7a\x29\xa5\xd7\xab\x93\x6c\xf7\xb2\x2f\xcd\x32\xb9\x87\xf4\x64\x56\x5e\x31\xe9\x19\x97\x2e\x96\x38\xb1\x28\x4e\xd4\xe5\xa5\x3c\x2c\x9d\x67\xd3\x55\xe5\xa6\x4b\x68\x4f\x9d\x61\x3a\x5b\x00\xc3\x55\x66\x44\x2c\x37\xdd\xee\x8a\x38\xc7\xb1\xf4\x13\x4e\xac\xab\x23\x29\x5b\x5a\x30\xca\xba\x58\x6c\x66\xc0\x52\x6f\x66\x1f\xc7\xac\xfa\x90\xeb\x35\x3b\xab\x61\x56\x9a\x8f\x3a\x4b\x79\xd6\xcb\xe9\x0f\x12\x37\x6b\x57\x96\x58\x95\x5a\x8c\xaa\x0b\xa9\xc7\xf5\xa7\xd4\xb9\x32\xa5\x07\x6d\xaa\x58\xc3\x1e\xae\xf2\x6c\x9a\x4d\x33\xb3\x47\x4c\x7c\x90\xae\x12\xc5\x49\x21\x7d\xc1\x9f\x63\xc3\xbe\xd8\x00\x22\xdb\x79\x62\xc5\x16\xdb\x6c\x8e\xf3\xe7\xe9\xf1\x19\x76\x51\x90\x65\xc0\xaf\x26\x80\x69\x8f\xf9\x55\x4d\x6e\xd0\x17\x95\x66\x62\x3e\xc0\xc4\xb4\xcc\x0a\x05\xba\x28\x26\x2e\x56\x67\x85\xbc\xfe\xb0\xc8\x63\x69\x8c\xed\x14\xc6\x8b\x46\x0b\x9f\x2b\x85\xcd\xb5\x3a\x2e\x09\x37\xca\xcd\x7a\xde\xef\x9d\xd3\x03\xe1\xea\xa2\x45\x0d\xa5\xd4\x62\xbe\x52\x9b\xab\xf2\x10\xd3\x5a\xe0\x6c\xa3\xe6\x89\x89\x54\xa0\x26\x52\xaf\x91\xc7\x9f\x14\xa9\xa7\xb5\x7a\x05\x3d\x9b\xcb\x5f\x6e\xd6\xe7\x85\x5c\xbd\x28\xad\xd2\xc4\xfa\xe1\x1a\x17\x06\xb9\x94\xda\x57\xc6\xb5\xd9\xfc\xea\xe9\xfa\xa6\x57\x67\x7b\xf3\x9b\x27\x79\x78\x23\x3c\x0d\xd3\xcd\x0d\xb3\x7a\xbc\xc9\x81\x45\xff\xba\x26\x83\xc9\xf5\xbc\x4f\x24\xb4\x87\x5c\xbb\x96\xcf\x75\x34\x76\xd2\x6b\xe5\x70\x6e\xbd\xa9\x8c\xfa\xc2\x0d\x36\x3b\xaf\x16\xaf\x8a\x4a\xb5\xae\x28\xe7\x05\xbd\xda\x02\x0c\x3e\x64\x12\x13\xe6\xac\xb9\x98\x76\x97\xeb\x36\xbe\x94\x79\x65\x4d\xa8\x83\xac\x24\x2f\xba\x4f\x63\xad\xcc\xe8\x83\xf3\x52\xef\xfc\x6c\x7c\x35\x4d\x5d\x6d\x98\xda\x08\x2b\x77\x2f\xb0\x2e\x53\x60\x2f\xc5\x4a\xf6\xe9\xec\x26\x2f\x3d\x0e\xcf\xcb\x8d\x31\x5b\x18\x12\xf9\x54\xb7\xcb\xb4\x8b\x1c\x45\x81\x25\x93\x22\x26\x6a\xab\x91\xa8\x8b\xe5\x69\x62\x24\xa7\x2e\xe7\x35\xb5\xa6\x55\x4b\xfa\xbc\xf5\xa4\xaa\x05\xa9\xdf\x1c\x15\x85\xcd\xa0\x56\xbe\x3a\x2b\x2a\x14\xff\xd0\x1d\x16\x89\xa1\xf6\xd0\x5f\x35\xd6\x4f\xfa\x93\x7c\xbe\x69\x3d\x88\x89\x9a\x9e\x58\xa9\xe7\xeb\x41\x6b\xd3\xda\xac\x57\x33\x7d\x24\x3e\xf6\x2e\x5a\xb9\xdc\xb5\x38\xee\x96\x12\xe7\x62\xb9\x72\xb1\x66\x1b\x97\x29\xf6\x66\x23\x97\x07\xf9\xeb\xeb\x81\x4e\xd5\x37\xab\xe5\xc3\x42\x18\xdf\x14\x99\xd6\xf5\x3c\xc3\x4c\x56\xed\x81\x5c\x21\x16\x8f\x4f\x57\x9b\xcd\xe3\x70\x59\x1d\x34\xcb\xf9\xfa\x24\xc5\x8f\xae\x16\x60\x93\x9e\xf6\xc6\xc2\x75\x17\x1b\xdf\xb4\xf4\xc1\x60\xf1\x38\x6e\x2c\x33\xd9\x74\xe2\xac\x7e\x5e\xac\x9e\xb3\x7d\x85\xed\x63\x95\x09\xd1\xbf\x2e\x96\x3b\xb9\x0a\xa8\xf7\xd6\xb3\x06\xd0\xae\x47\xc3\xa7\xce\x74\x31\xa2\x9e\xf2\x73\x6c\x31\x2e\xae\x16\xa5\xeb\x04\x51\xe8\x2e\xce\xd2\x6b\xee\x32\xc3\xd0\xe9\x73\x46\x3e\x1b\x0c\xf2\xcb\x6a\x37\x35\xa4\xae\x4a\x4f\xe7\x44\x23\x55\xe9\xde\x24\x66\xaa\x5c\x01\x05\xbc\x3a\x3e\x57\xaf\xd4\x9b\x21\x3e\xe4\xf2\xd2\xf9\xc5\xf9\xc3\xba\x0e\x38\x75\x74\xa1\xd7\x3a\xd5\x34\x46\x8c\x97\x4a\xaa\x5e\xa8\x01\x42\x7e\xca\x4c\x9f\x9a\xd3\x9b\xf9\xd5\xe2\x61\xd2\x98\xdc\xe4\xa8\xfa\xa6\x72\x31\x37\xff\x27\x56\xfd\x44\x23\x91\x1d\xf4\xf3\xfd\xf5\x8a\x21\x1a\x14\x45\x51\x67\xa3\x6e\xed\xba\xd1\x7d\x1c\x8f\xba\x42\x67\x7e\xb1\xbe\xb9\xae\x61\x37\x57\xd4\xba\x5d\xa9\x12\xad\x3e\x45\xb4\xfa\xed\xe5\xb0\x52\x5d\x75\x1e\x06\xcb\xce\x03\xb5\x6e\xf5\x29\xac\xf3\x40\x2d\x3b\x74\xef\xb1\xcc\x51\x14\x55\x1e\x62\xdd\xe1\x0c\xbb\xa9\xd7\xb0\x9b\xbe\xac\x4d\x88\xae\x7c\x23\x3e\x52\xed\x07\x6a\xd5\x5e\x63\xab\x76\x0f\x5b\xb6\x87\x57\xab\x76\x45\xda\x74\x2a\xd2\xfa\xa2\x8c\x2d\x2f\x2a\xd2\xb2\x7d\x31\xa1\x0b\x25\xe8\x9f\xa5\x7a\x83\x61\xa7\x7b\x9e\x2d\x8f\x9b\xcd\x68\x67\x29\x23\x89\x0c\xad\xa5\x58\x5a\x03\x87\xe8\xa1\x06\x56\x5a\x4a\x16\x68\x5e\x3c\x44\x0f\xfb\x3a\x40\x63\x04\x11\xa3\x74\x2e\x46\x60\x78\x3e\x86\xe5\x4e\x32\xc4\x49\x1a\x8f\x25\x30\x0c\xc3\xa2\x51\xce\x68\x91\x03\x82\xc4\xa5\x16\x40\x51\x79\x49\xf4\x23\xc6\x93\xf9\xb7\x94\x0e\xa3\xc9\xa0\xe3\x18\x2b\x1c\xe3\xb9\x48\x04\x1c\xaf\xa5\x1a\x55\xaa\xe2\x2f\xca\xf1\x5a\x4c\x01\x8b\x63\xf3\xd5\x35\x98\x03\x41\x41\x12\xac\x64\x49\xd1\x54\xf2\x19\x96\x3e\xe1\x51\x81\x9f\x9c\x68\xdb\x2d\x9a\xc9\x16\x4e\x00\xf9\xc9\x8c\xea\x79\xaa\x02\x61\x8a\x6a\x64\x1c\x21\x3f\xc5\x8d\x3f\xcf\x87\xba\x0a\x62\xaa\xa6\xf0\x8c\x76\x08\x83\x2f\x02\x54\x23\x9f\xb7\x76\x20\x3f\x40\x6a\xa8\x15\x3f\x8d\x05\x53\x5e\x04\x4e\xc0\x3b\xf4\xf0\xfe\x1e\xa8\x6d\xf8\xec\xd8\x21\xfa\xbc\xa0\x05\x1d\x9c\x1c\x60\x5b\x83\x9a\x1a\xaf\x51\x2c\x2b\x89\xa4\x19\x41\xcd\x9d\xc2\x08\xb4\xaa\x3e\xd3\x8c\xc6\x2f\x68\x0d\xec\xa2\x15\xde\xdb\xc1\x3f\x49\xb0\x65\x79\x55\x96\x54\x10\x47\x9e\xb7\x53\x5e\x8b\x23\xcf\x8c\x24\xaa\x9a\x41\x8b\x91\x53\x56\x24\x03\x5a\xe1\xe7\x40\x34\xc4\x62\xbd\xd8\x70\x00\x5e\x5e\x0e\xbc\xa8\x5e\x5e\x78\xf5\x82\xbe\x88\x83\x24\x23\x09\x2a\xe2\x7c\x2a\xd2\x52\x45\xec\xd8\xa5\x26\x72\x2b\xbc\xf8\xae\x6c\xf2\x9e\x91\x14\x70\xea\x4b\x34\x0a\xc2\x37\xe0\x8c\x1f\x56\xa8\xc6\x7b\xd7\x8b\x73\x82\x09\x35\x7e\xbc\xbc\xc4\xb5\xe4\xbd\x02\x44\x16\x28\x3d\xa0\x2c\x78\x06\xd8\xaf\x3e\xa1\x7e\xac\x40\xe5\x37\xc0\x22\x13\xb5\xc9\xdb\x86\x34\xd4\x09\xdb\xb9\x2b\x6d\x37\x23\x08\x49\x02\xf3\xf1\xda\x00\x5f\x6c\x40\x52\xa6\x15\x20\x6a\x55\xf3\xcb\xcb\x0f\x10\xca\x0f\x54\x23\x81\xbf\x51\xec\x8e\x3e\x2b\x52\x2c\xa9\x25\x19\x55\x4d\x32\x40\x10\xcc\xa7\x82\x5e\x5e\x7c\xa9\x33\xc0\x73\x33\x5f\x85\x3c\x89\xd9\x71\xfc\x9c\x4a\x25\x18\x66\x52\x4d\xaa\x30\x48\xf1\x84\x66\x1e\x3f\x63\x27\x20\xb9\xe0\xc1\xd2\x50\x77\x2b\xbd\x44\x2b\xd7\x46\x3d\xa8\x62\xbf\x0b\xc8\x01\xad\x2c\xcd\x65\x5d\x03\x6c\x4f\x5b\x0b\x56\xfc\xce\xd7\x18\x80\xaa\xce\xbb\xa2\x8a\x81\xc3\x56\xf6\xa1\xa1\xdb\xf1\x43\x93\xec\x43\x04\x41\x25\xb2\x4d\x6b\xb3\xe4\x9c\x5e\xc5\x31\x74\x6f\x19\xc8\x80\x43\x04\x41\x50\xf1\x9d\xc4\x21\x28\x4d\xaa\xc7\xf1\x1d\x76\x31\x04\xbb\x4c\xb3\x2c\x2f\x72\xc7\x9a\x24\x1f\x22\x48\xe2\x4d\x79\x27\x92\xa6\x49\x73\x48\xd2\x8c\x94\xde\x58\x81\x62\xb5\xfc\x6d\x55\x08\x60\x6a\x64\x46\x8e\x79\xcb\x8e\x3c\x1b\x9a\x7d\xb2\xe3\x19\x81\xc2\x9f\x53\x41\x92\x94\xf8\x2c\xe5\xd7\x17\x04\x41\x8d\x2e\xe0\xe4\xc7\xdd\xf9\xe9\x54\x50\x93\xe0\x2b\xf9\xda\x16\x89\xbb\x4d\x21\x8c\x44\x9f\xcf\xe5\xde\x67\xfe\xc8\xe7\x62\x2e\x7b\x12\x07\xa8\x86\xf2\x46\x8e\x70\xeb\xa7\x45\x5b\x3f\x2d\x59\x17\xd6\xf2\xac\x0b\x3b\x09\x50\x2c\x13\x68\x69\xb9\x42\xf2\xf1\x74\x3e\x63\xa8\x1a\x1f\xcf\x62\x45\x43\x95\xf8\x78\x21\x9b\x35\xf4\xc3\xf8\x51\x34\xc4\xce\xc7\xd3\x05\xdc\x10\x0f\x8e\xa3\x02\x39\xfb\x50\x13\x24\x5a\x4b\x13\x94\xa2\xd0\xeb\x64\x69\xdc\xaf\xf6\xee\x2f\xab\xdd\xfb\x6a\xab\xda\xae\x5e\xf4\x4f\x05\xa0\xc5\x18\x54\x27\x31\x94\x25\x31\xf4\x9e\xc4\x4e\xa1\x91\x8d\x4d\x63\x60\xa5\x01\x91\x55\x63\x62\xb2\x02\x6d\x2a\x3d\x11\x80\x69\x4d\x15\x9d\xd1\x24\xc5\x6c\x26\x2a\x21\xcf\xaa\x2e\x83\xa0\x69\xb2\x63\x10\xdf\x73\x82\x1d\x6f\xf8\xde\xe9\xef\x24\x6f\x25\x59\xdd\xd4\xb2\x08\xa4\x64\x25\x43\x23\x0f\x4a\xfa\x74\x0a\x14\x12\xb3\x12\x17\x40\xd1\x78\x06\xa8\xe4\x33\x23\xe9\xa2\x76\x82\xa1\xf4\x2e\xcc\xf3\x89\x08\x96\x31\x77\x63\xe3\x18\xe2\x02\x9b\x98\xd4\x93\xdb\xb0\x6c\x21\x69\x77\x5b\x8b\xeb\x33\xd2\x6e\x85\x15\xd2\x93\x24\x49\x35\xd9\x07\x2b\x4d\x57\x00\xa5\x09\xb4\x6a\xa8\x19\xfc\x71\x49\x73\x40\x3d\x3a\x8a\xef\x03\x5b\x9d\x9f\x17\xe3\x69\x02\x8d\x63\xa8\x92\xd4\x66\x8a\xb4\x6c\x4e\x6b\xb4\xa0\xae\x91\xf8\x0c\x76\x0d\x5a\xa1\xe7\x40\x03\x4a\x7c\x96\x6c\x53\xa3\xfb\x7e\x75\xd4\x1f\x74\xab\xf7\xcd\x36\x55\xaf\xde\x0f\x2e\x9a\xfd\x9e\xd1\x05\x83\xf5\x58\xdf\x3d\x7e\x03\xc8\xf7\x22\xef\x35\x6f\xaa\x88\x1d\xf7\xf5\x5e\x56\x24\x4e\xa1\xe7\x61\x58\xe2\x18\x4a\x27\x19\x05\xd0\x9a\xa1\xd3\x46\x2e\x24\x3e\x43\x0f\xff\x91\x35\xd5\x89\xa5\x31\x2c\x06\xd4\xef\x8b\x02\xbd\x96\x74\x2d\x16\x17\x24\xf3\x89\xee\x18\x19\xc3\x90\x18\x2f\xc6\x16\x80\x21\x62\xf4\xbd\x2e\xf2\xda\x93\x4e\xb3\xa7\xa1\x59\x71\x77\x56\xa3\xbf\xca\x92\x1a\x9e\x93\x70\xe7\x94\xa6\x53\x15\x68\xe1\x19\xd3\xee\x8c\xc6\xb0\x19\x9e\x2d\x03\xb3\x4d\x0d\x7d\x88\xd1\xf7\x1a\x58\xc9\x34\x17\x91\x35\xeb\xc6\xa8\x81\x15\x23\x49\x4a\x44\x7b\x72\xbe\xac\x56\xfd\xdf\x17\x75\x91\x9f\x4a\xca\x3c\x36\xa7\xb5\x4c\x4c\x37\x18\x6f\x18\x0d\x5e\x12\x4f\x1d\x18\x2c\xa6\xdf\x1b\x73\x3d\x41\xb7\x60\xdf\x17\x8d\x2a\x20\x64\xe1\xae\x7b\x2a\xd0\x5a\xcc\x00\xf1\xa2\x66\x42\x2c\xfa\xbf\x2f\x42\x05\x9e\xd3\xbc\x18\x47\x62\xcf\xdf\x17\x63\x66\xe9\x0d\x50\xa4\xbe\xd4\x11\x41\x8c\x8c\xc5\x6d\x0e\xc6\x52\x9e\xfa\x90\x58\xc2\x11\x43\x2c\x61\xe4\xb3\xc5\x17\xfb\x60\x71\x13\x39\x35\x50\x72\xc2\xbd\x1d\xed\x3f\x46\x7a\xda\x13\xfb\x60\xd4\x97\x89\xef\xea\x43\x63\x58\x12\x43\x63\x78\x12\x33\x8b\xee\x88\x8d\x91\x06\xf1\xf1\x1d\xf3\x5d\x60\xd8\xca\x18\xe9\x62\x37\xa4\xcc\x43\x8c\xc3\xdd\xed\x21\xea\x8e\x01\x6c\x18\x3b\x8d\x3c\x3c\x84\xcf\x0f\x1a\x1f\x3c\x89\x9f\xf2\x1f\xc1\x29\x9f\x48\x20\x5a\x82\xfc\x26\x66\xbd\x81\x13\x8b\xbb\x68\x21\x63\xdf\x7b\xe6\xb7\x48\xec\xd9\xe0\x2a\x7c\xa2\x27\x46\xc6\x34\xb3\xa7\xc5\xf5\x7b\xeb\xd7\xad\x91\xe9\x0e\x75\x51\x89\x9c\xc6\xb6\xdf\x58\x83\xd8\x37\x81\xde\x21\x2b\x80\xe1\x61\x8a\x20\x2d\x65\x53\xdd\xa0\x90\x6c\x2d\x09\x0a\x95\x17\x43\x64\x6a\xab\x88\x4a\xcf\x65\x01\x28\x44\x25\xe6\x26\x09\x6c\xef\xdc\xaa\x92\xd9\x35\x21\x5c\x1f\x02\x2d\xc7\x2c\x40\x6c\x7f\xdb\x31\x5f\xc3\x8d\x22\xdb\xd8\xf7\x9e\xb5\xed\xf7\xc5\xed\x37\xdb\xbd\x16\x71\x67\x73\x14\xc0\xf1\xaa\x61\x97\xe2\x18\x2a\x26\x35\xc9\x19\x76\x10\x38\xe0\xce\xac\x37\x39\x2d\xa3\x13\xf7\x18\x2a\x8f\xe5\xb2\x14\xae\x65\xf5\xbe\x48\x53\x38\x30\x79\x67\xe7\xf3\x62\x44\x0f\xdd\xca\x7b\xb8\xc3\xef\x74\x8a\xaf\xc7\xef\xe0\x72\xf0\x5b\x3c\xfd\x7a\xe4\x16\x22\x07\xb3\x31\x7c\x82\x15\x1c\xe1\xcc\x99\x09\x39\xb3\xec\xf8\xd0\x81\xc4\x11\x74\x96\x9c\xf0\x22\xeb\x4e\x8b\x28\x8f\x58\x63\x24\x43\x06\x46\xd0\x5b\x0c\xc5\x50\x1c\x35\xff\xe2\x28\x7e\x87\xa0\xfa\xae\x3a\x73\x30\x8e\x5b\xd1\xf5\xdf\x2a\x77\xab\x94\x0e\x67\x9f\x90\x44\x2b\x65\x96\xa4\xba\x5d\x6a\x7c\x5f\x1a\xd4\x6a\xd5\x2e\xaa\x43\x30\x04\x55\x68\x8d\xf6\x83\x19\x74\x96\xec\xf5\xa9\x7e\xb3\x7c\x5f\xe9\x52\xd7\x46\x66\x20\x1a\xb5\x59\x0d\x86\x53\x86\xdd\xd4\x60\x96\x5c\xb8\x92\x2f\x25\x5e\x34\x28\xc5\x50\x62\x37\xb9\x49\xd6\x5a\x1d\xaa\x8f\x1e\xc0\xc6\xda\x1c\x61\x21\x47\x06\xbc\xa8\x15\x76\xfc\xc0\x51\x02\x4d\xdf\x21\xe8\xfd\x77\xc3\x87\xfb\x10\x3e\x58\xb3\xba\x7b\x4f\x83\xef\x03\xfc\x08\xcd\xc6\xfa\xf9\x62\x4d\xc4\x7c\x53\xa8\x70\x7d\xf4\xb6\xe7\x9d\x1d\xda\x2a\x16\x5e\xdf\x6b\xd2\x8e\x28\xb5\x47\xaa\x44\x94\x54\x09\x94\x40\x67\x8e\x38\x05\x34\x20\xff\x0a\xbf\xe0\x55\xc9\xc8\x89\xef\xab\x21\x1d\x55\x43\xda\x5f\x03\xf1\xca\xfc\x3c\x8a\x80\xf4\x7e\x02\x32\x51\x04\x64\x50\xdc\x4b\x40\xe6\x0b\x09\xc8\xec\x27\x20\x1b\x45\x40\xd6\xcf\x81\xec\x17\x12\x90\xdd\x4f\x40\x2e\x8a\x80\x9c\x9f\x80\xfc\x17\x12\x90\xdb\x4f\x00\x1e\x45\x00\xee\x27\xa0\xf8\x85\x04\xe0\x26\x01\xba\x1a\x31\x22\x5a\xa6\x68\x0a\x4d\x51\x53\xdc\x99\xe6\xbd\x83\xf1\x6e\x6a\x04\x48\xec\x14\x7c\xdc\x97\xf7\x14\x24\x12\xc8\xf4\x16\xdc\x91\xe0\x74\x96\xb4\xe6\x21\x38\xbf\x88\x87\x8e\x63\xe8\x14\x12\x6b\xe6\x6a\xd3\x9a\xc2\xaf\x32\xd3\x45\x3c\x6a\xcc\x36\x58\x43\x27\x2f\xbb\x9d\xb3\x6a\xb9\xdf\xec\x5c\xdc\xb7\xa9\x7e\xb7\x39\x72\xac\x92\x40\xab\x16\x69\x2a\x79\x7b\xf7\x5e\xb2\x9f\xed\x9d\x3b\x83\x37\x74\xb2\xde\xb2\xf2\xc7\xf7\x58\x37\x3b\xcb\xee\x59\x98\xb7\xda\x37\xbb\xa0\x96\xb4\x78\x62\xda\x34\x73\x89\x6b\x03\x67\x49\x6b\x21\x86\x25\x80\x6d\xf1\x02\xb0\x7b\xa2\x82\x3a\x58\xd0\x99\xf1\x73\xb7\x9e\xe3\xbd\xf9\x9c\x8f\xeb\x2e\x75\x79\xdf\x43\x67\xc9\x72\x8b\x6a\x5f\xde\xf7\x3b\xf7\xd5\x4a\xbd\xfa\xbe\xe2\xfd\x88\xe2\xcd\x39\xcd\x01\xa2\xe2\x2d\x8b\xa1\xb3\x64\xb7\x5e\xa2\xe0\xd0\xbf\xfb\x98\x25\x07\x17\xbd\x66\xfd\xa2\x5a\xb9\x37\x74\x1c\xf5\x8f\x90\x44\x36\x0b\xe7\x0b\x44\x36\x7b\x87\x84\x0a\xda\x7c\x88\xc4\xee\x73\xf1\x59\xb2\xd4\xaa\x5e\x54\x20\xb7\x04\x20\xb2\x35\x5d\x64\xe2\x33\xf8\xec\x27\xd5\xba\x6c\x18\x35\x76\x2e\xaa\xf7\xed\xe6\xc5\xa0\x77\xbf\x4b\xb5\x30\xcf\x68\x91\x15\x40\xd7\xdc\x3e\x45\xb6\x13\xc0\xf1\x62\xcd\x60\x45\xdc\x7e\xb1\xe5\xc0\x45\x81\xf5\x72\xb7\xf9\x91\x74\x67\xde\xea\x32\x4b\x6b\xa0\x0c\x04\xc1\xda\x11\x51\x50\x15\x95\x50\x11\xa5\xd1\x99\xbd\x41\xed\xca\xe3\xdd\xc9\x48\x3a\x03\x17\x1a\x2c\xbd\xbd\x0f\x20\x57\x21\x48\x40\xa7\x28\x87\xca\xc8\xb3\x4e\xc6\xf9\x0f\x21\x5b\xc9\x09\x0d\xf9\x30\x43\xd5\x03\x92\x94\x92\x17\x83\x56\xeb\xbe\x5c\x35\xfe\x74\x2a\xd5\xa3\xa3\xdd\xcb\x24\xea\x67\x57\xa3\x8e\x8e\xe2\x0c\x39\x3d\x3a\x9a\x5a\x0f\x74\x7d\xc2\xdd\x50\x63\xc2\xd9\xa5\x0d\x65\xe7\x37\x80\x85\x9b\x54\x65\x69\x3e\xe1\x45\xc0\x96\x67\xb4\x12\x9f\x5a\x64\x1d\xe0\xd6\x9b\x25\x91\xc5\xe2\xaa\x93\x15\x65\x49\xd7\xe6\x5c\xdc\xbf\x47\x94\x64\x81\xb9\xf5\xbd\xdb\xdd\x3b\x8e\xcc\x32\xa3\x15\x6b\x03\x30\x45\x20\xa8\x78\x40\x92\xf2\xd1\x11\x93\x34\x17\xb3\xc9\xd5\x27\xf6\x73\xfc\x9e\x74\xbe\x8f\x59\x14\xdc\xea\x77\xe4\x71\xdc\x95\x76\x8f\x24\xf6\xe2\x17\xc0\x54\x33\x8a\x25\xf0\x3b\xf2\x78\x57\x6e\xbd\xbf\x90\x26\xc9\xb0\x0c\x71\x47\xc6\x99\xa4\xa1\x6d\xb0\xa6\x54\x64\x21\x5a\x5c\xd0\xaa\xd9\x16\x58\x30\x7d\x47\x5a\xe5\xd6\xaf\x15\x32\x77\x34\x61\xa9\x8c\x51\xca\x32\x14\x86\xd9\x83\x89\x59\x77\xa2\xb5\x48\x2f\x0b\xbc\xdc\x93\x69\x06\x24\x57\x89\xfb\x94\x5b\x76\xc6\x1a\x50\xbd\xf5\x60\xb9\x0b\x92\x97\xdb\x8b\x73\x0d\xf3\xe4\xed\x26\xb8\x2a\x3b\xfe\x92\xca\x0a\x41\x44\x6b\xe4\x24\x6e\x8a\xd2\x91\xe4\x4f\x56\x8c\xb6\x14\x7f\x1a\x45\xf8\x55\x22\x89\x66\x71\xe8\x5e\x6d\x52\xa1\x97\x1d\xcb\xc9\xa2\x00\x95\xa1\x05\xd0\x59\x00\x45\xa0\x65\x99\x17\x39\xd8\xd9\x0d\xab\x62\x0c\xa8\xb4\x20\x48\xcb\x2e\xcc\xc3\x8b\x1c\x12\x57\x51\x0e\xb5\xd9\x18\xd8\x1a\x0e\x76\x7b\xe4\xe8\x28\x6e\xf7\xa1\x37\x18\x09\xfc\x6d\xbd\x0b\x41\x4e\x40\x72\xca\x0b\x42\x1c\x43\x75\x54\x4f\xcc\x8e\xf1\x63\x02\xd9\x5a\x8e\xb6\xe7\x70\x5f\x16\xf4\x62\x19\x16\xf6\x83\xe9\x6b\xfb\x30\x3b\xf5\x59\x74\xb8\x35\x7d\x40\x92\xda\xe7\x48\x53\x1f\x5c\x2e\x6b\xb6\xd9\x0c\xc9\x6d\xd1\x88\x9c\x9a\x3b\x56\x18\x9c\xeb\x9c\xf2\x1f\x23\x0b\x58\x7b\xdd\xf6\x23\xf3\xbc\xfd\x72\xff\xbb\x68\xb4\x90\xdc\xf2\x77\xef\xa3\xd6\x29\xb7\xa3\x3b\xac\x72\x52\x43\xed\xa6\x98\xbb\x72\xd8\xa9\xf6\xd1\x64\xe9\xa9\x66\xcc\x2b\x2d\x80\x42\x62\xa7\xca\x47\x93\xe5\xa7\x4a\xb0\x25\x4e\xc5\xb7\x7c\xa2\x78\x47\x2a\x29\xcb\x15\xba\x2f\x1f\x8e\xdd\x91\x5a\xca\xac\x0d\xe5\x13\xe4\x6c\xeb\x9d\x0d\xf8\x64\xcf\x09\xa7\x20\x7a\x9a\x8d\x3a\x3e\xc5\xb8\x31\x7d\xf1\xf7\x7f\x6f\xcf\x36\xb2\x5b\x93\x60\x62\x1a\x8f\xda\x51\x7a\x15\x09\x2c\x68\x69\xea\xd6\xf4\xa9\x7a\x5e\x66\x34\xad\x6a\xb8\x9b\x9a\x13\x4e\xb5\x3d\xcd\xd1\xde\xbc\xfb\x13\xe6\xaa\x89\x07\xd3\x12\x38\xf2\x8f\x89\x9d\xa7\xf6\x55\xc5\x09\x22\xb8\x3b\xb5\x35\xc1\xaf\x2e\x02\x2f\x82\x16\xd4\xf2\x9d\xb6\x6b\xce\xec\x5e\x25\xb5\xb0\xb9\xd1\x87\x19\x2a\x45\x93\x91\x54\xf5\x09\x6d\xae\x93\x50\x35\xe1\xa9\xe2\x56\xbb\xfb\x30\x43\x4e\xf9\xa4\x0a\xb4\xb8\x84\x2a\x08\xaa\x24\x48\xc9\xaa\x78\xab\xb9\x37\x29\xb4\xb7\x6d\x52\x68\xee\x7d\x19\x5f\x19\xde\xa1\x04\x83\x4f\xeb\x26\x7b\xfd\x6e\x95\x6a\x9b\xbb\x33\xbe\x05\x4f\x60\x28\xb5\xd9\x01\x76\x5d\xc6\x3d\xce\x82\xbb\xa4\xb5\x1f\x6d\x3f\xb1\x18\x98\x68\xdb\x19\xec\x93\x0a\x46\xe3\x76\x8b\xa8\xdd\x8a\xc6\x3d\x4b\x47\x01\x72\xaa\x25\x59\x85\x5e\x5a\x4e\x71\xb5\x29\xaa\x1a\x2d\x32\x80\x8d\x6b\xc9\x7e\xb7\x49\x5d\xd4\x5b\xd5\xfb\x5e\xbf\xdb\xbc\x44\x33\xa8\xe6\x5b\x0e\x60\xa8\x92\x9a\x21\x5b\x15\x68\xb0\x1a\xe7\x74\x07\x44\x4e\x02\xd8\x62\xab\x63\xc6\xa4\x69\x2c\x84\x6c\x04\xd8\x54\x93\xc7\xf8\x36\x9c\x64\xd3\x39\xfb\x0c\x7c\xcb\x2f\xe0\x2c\xbf\x78\xa3\x8f\xba\x97\x5f\xc0\xb3\xfc\x0a\xe1\x16\x7f\xe7\xac\xc9\x80\x6f\x51\xe5\x29\x0c\xfc\x6b\x32\xe0\x5f\x54\xbd\xa7\x78\x3f\xa2\xb8\xbd\x26\x03\xde\x35\x19\x30\x97\x61\xbb\x7f\xbc\xec\xd7\x2c\xd5\xe0\xed\x69\x97\x81\x8c\x03\x22\x50\x68\x0d\xb4\x79\x19\xbe\x9e\xea\x42\x18\xbe\x40\xe3\x77\x7a\x43\xba\x10\x5a\x49\x86\x6c\x5d\x27\x52\x76\x02\x76\x79\x85\xc1\x76\xeb\xf7\x81\x4f\xb7\x68\x3e\x43\x7c\x9d\x57\xbd\x0b\x18\x8d\x16\x39\xc3\xc2\xbf\xea\x59\x87\x7e\x74\xc9\x48\xc1\x31\xd3\xb3\x0e\x1d\xea\x34\x59\x78\xcd\x97\x6e\x7a\xce\x67\x1e\x27\xb9\xd5\xc6\x7d\x63\x3f\x9e\xc3\x6c\x83\x0e\x47\x46\x6c\xbb\x35\x3a\xb6\x40\x62\x28\x43\x62\x6e\xdf\x3c\x3a\x25\x31\x94\xdb\xf9\xe8\xe5\x9d\x8f\x5e\xfd\xc9\xfa\xe8\xb5\x19\x98\x03\xbf\x87\x7e\xe7\x8c\x37\x1a\x34\xf3\x25\x9a\xcf\x7e\x9b\x20\x8b\xc9\x82\x6b\xf8\x79\x83\x8b\x59\xf4\xbb\x98\x85\x2f\x70\x31\xcb\xd6\xec\xf7\x0d\x2e\xe6\x68\x7f\xf0\xce\xbf\x9c\x89\xd1\xf7\x8c\xe5\x3c\x7b\xcd\xbd\xec\x72\x6e\xef\x77\xf1\xba\x7c\x73\x8b\x1d\xf6\xb7\xb8\x6a\x9d\xd6\xfd\xe4\xfc\xb1\x8c\xe5\xf1\x73\xda\xbd\x3d\x0c\x11\xc3\x2b\xbe\x4c\x6f\xcb\xde\xe8\x8a\x74\xf9\x1b\x17\xae\xda\xc3\x7c\x0b\x6a\xc8\xde\x9b\xf0\x5d\x3a\x0b\x85\x2f\x76\x16\x06\x5d\x6e\x42\xa8\xcb\x4d\xf8\x49\xb9\xdc\x84\x57\x5d\x4d\xfb\xb8\xe7\x76\xb9\x09\xee\xf9\x8d\x10\x70\xb9\x09\xee\xa9\x8c\xe0\x77\xb9\x09\x5e\xd7\x92\xb0\xcf\x75\x22\x44\xba\x4e\xbe\xc2\xe5\xf6\x9d\xf0\xe1\x3e\x84\x0f\x51\x2e\x37\x1f\x3f\x22\x5c\x6e\xc2\x97\xba\xdc\xfc\xed\x79\x67\xb7\x78\xd5\xe5\xb6\x4f\xda\x51\xb3\xd9\x68\xa9\x62\x51\x52\xc5\x50\x02\x75\x89\x93\x46\x03\x39\x6d\x6f\x07\x86\xe2\xfb\x6a\xc0\xa3\x6a\xc0\xfd\x35\xbc\xee\x72\x0b\x27\x00\xdf\x4f\x00\x11\x45\x00\x81\x66\xbc\x04\xbc\xee\x72\x0b\x27\x00\x3a\x1d\x3d\xfb\xc9\x34\x33\x03\x2c\xb4\x92\x6a\x5c\x4a\x42\x23\xa9\xfa\x15\x21\x38\x82\x27\x25\xb1\x0c\x4f\x98\x5b\x25\x01\xf9\xe9\x39\x12\x2d\xf0\x56\x39\xb4\x56\xba\xbb\x09\x55\x1c\xd9\x22\xf6\x0a\xb4\x44\x33\x8f\x9c\x22\xe9\x22\xab\xda\xf3\x1e\xeb\xbc\xef\xd0\x9a\x16\xf8\x76\xbf\xed\x82\xe6\x6c\xe1\x6d\x65\xcc\xbc\xc8\xd6\x9f\x0b\x38\x3e\x9d\xef\x7c\x99\xfb\x3e\xb7\x95\x18\xea\xb6\xfa\x8e\x57\x87\xc0\xed\x39\xd0\x92\x95\xf1\x05\xd5\x76\xcc\x48\xd4\x2a\xcc\xb6\x9f\x6f\x58\x8c\x01\x73\x36\x8a\xf8\xb7\x46\x5e\xd3\x86\xb7\xcc\xf1\xc3\x15\xcd\xca\x39\xe1\x60\xf7\xb0\xa4\x08\x95\xba\x2f\x79\x06\x3a\x90\x9c\xec\x34\xcd\x56\x4f\x06\xaa\xc5\xeb\x25\x19\x5b\x7d\x22\x5b\x60\xaf\x3a\x59\x76\x97\x08\x71\xec\xf1\xdc\x60\xf0\xbf\xb0\xad\x86\xd7\x77\x2b\x03\x07\xfa\xa5\xe5\x2b\xc5\xac\x2d\x62\x0f\xb7\x6c\x37\x94\xbb\x0b\x06\x7a\xc4\x6e\x0f\xd3\xbf\x0b\x63\xee\xaf\x58\xbe\xa5\x19\x2a\xa0\x0c\xaa\xa3\x2c\x7a\x8f\x4e\x51\x8e\xc4\xe1\xc2\xdb\xdc\x87\xd3\xcc\x0d\x3a\x25\x91\x30\x1f\xd4\x37\xd6\xd9\x28\x4d\x62\xe8\x8c\xc4\x50\x81\x3c\xc0\x51\x95\xc4\x4e\xd5\x8f\x9a\xb9\x5f\xa7\x26\x12\x08\x43\xc6\x95\x0f\xe6\x77\x42\x45\x3e\x48\xc9\x6e\xf5\xa2\x52\xed\xde\xb7\x3b\x95\x6a\xeb\xbe\x79\x51\x69\x96\x9b\x96\xfd\x2b\x57\x5b\x2d\x54\x27\xcd\x66\xaa\xb7\x4c\xc2\x97\xb9\x54\xbf\xef\xd4\x6a\xbd\x6a\xff\x0e\x65\xa3\x73\xd5\x9c\x5c\xf7\xe4\xc1\x41\x3c\x97\xc7\xb1\x42\x21\x97\x39\x62\x11\x34\xae\x1f\x90\x24\xfd\xf2\xc2\x1e\x90\xe4\xec\xe8\x28\x2e\xbc\xbc\xdc\x23\xc8\xd1\x51\x3c\x8e\x99\x00\xe1\xe8\xc8\xf8\x05\x77\x9c\xa7\x64\xe1\x03\x97\x48\x78\xec\x9f\xa3\x27\x3c\x3a\x45\x67\x28\x8d\x8a\xa8\x8a\x2a\xf0\x88\xbe\x8a\xd2\xa4\x8e\xce\x48\x16\x15\xc8\x7b\xe4\xf4\x6b\x50\x9a\xfc\x32\xf0\x6e\x79\x6b\x55\xc8\xd9\x8e\x46\xd3\x56\x06\x84\xeb\xb5\x8f\x28\x4f\xda\xba\x0e\x6f\x77\xf0\x2f\x2f\x87\x13\x41\x62\x1e\x0f\x49\x92\xe4\x93\xaa\xb6\x16\x80\xb5\x3b\x18\x33\xa6\xde\x71\xcd\x5e\x7c\x22\xb6\x32\x90\xd8\xe9\xe1\x84\x56\x0e\x0f\x76\x05\x8e\x8e\x0e\x25\x5d\x13\x78\x11\xb8\x12\x5f\x5e\xe2\x0a\x59\xf8\xa0\xee\x5a\x15\xd2\x71\xdc\x7d\x45\x41\xf9\xe4\xea\x2d\xfd\x82\x4f\xae\xdf\xd4\x0f\x20\x91\x4e\xab\x3e\xf3\x49\x56\x56\x3e\xf0\x56\xeb\xe1\xe5\x8e\x13\x98\xb6\xdf\xd1\xe0\xe9\x55\x2e\x6b\x82\x20\xe8\xa1\x6e\x8c\x34\xbe\x76\xff\xc3\x32\x23\xce\x27\xd7\x09\x1c\x79\x0b\x43\x8e\xcd\xc6\xf2\x66\xc9\xb7\x71\xda\xe1\x8e\xaf\xe5\x76\x13\x49\x57\xbb\xff\x1f\xcb\xfb\x3b\x68\x18\xfa\xce\x16\xc4\xf9\xe4\x2a\x61\xd5\xfb\x8a\x0c\x4c\x0f\x94\x2d\x82\xb7\xb6\xe8\x6b\xb4\xd3\xee\xb9\xea\x36\x60\x50\xdc\x27\x0a\x68\xe8\x1d\xd8\x19\x43\x1e\x51\x97\xbc\xc6\xcc\xe2\x59\x2c\x9d\xc6\x73\x99\xc2\x11\x8f\x3c\x33\xb4\x0a\x62\x78\x2e\x9f\xcf\x13\x78\xee\x04\x7e\xa5\xd3\xd9\x6c\x26\x93\x26\x4e\xec\xed\x1b\xcf\x4c\xd2\x9c\x72\x26\x69\x51\xe5\x6f\x89\x6c\xf6\x88\xbf\x4b\x2a\xdc\x84\x3e\x9d\x28\x80\x7e\x3c\x85\x08\x6c\xfc\x27\x02\x19\xb7\x50\x67\x8f\x78\xe4\xe3\xc7\x82\x95\x8b\x35\xdf\x36\xdf\x5b\xc1\x54\x52\x80\x39\xac\x41\xfc\x5b\x78\x4c\xdb\xdf\x00\xe5\x3b\x68\x80\xf2\xc6\x06\x28\xef\x6c\x80\x33\x61\xb1\x1a\xe0\xf6\x38\x98\x5b\xf5\x1f\xb5\x44\xe6\xe8\x28\xee\x86\x90\x70\x1f\x0c\xac\x64\x5a\x64\xdd\xf3\x18\x24\xee\x9d\xfe\x45\xce\x20\xbc\x93\x91\x02\x82\xa0\x0c\xf9\xa6\x49\x89\x4e\xd2\x6f\x52\x5d\x96\x8c\x0b\x9f\x3e\x11\x99\x23\x22\x9b\x45\x52\x44\x36\x8b\xde\xc3\x14\x3c\xe7\xa4\x4c\x61\x4a\xc1\x49\xe0\x48\x3c\xa4\xe7\xf9\xda\x04\xe7\x20\x71\xe9\x58\x7d\x4b\x87\x7b\x53\xe7\xb1\x26\x34\xc8\xd6\x57\xad\xff\xd8\x0d\x2a\x20\xcf\xe0\x56\xbb\x23\xf9\xb7\x7a\xf8\xb5\x04\x7e\x47\x2a\x6f\x76\xed\x6b\x09\xe2\x8e\x54\xdf\x8e\x3c\x7d\x47\x4a\xef\x40\x9e\xb9\x23\x45\xf8\x23\x7b\x47\xd2\xf0\x47\xee\x8e\x34\x31\xe5\xef\x48\x61\x1b\x62\xef\x3c\x3c\xf8\xff\xff\xd6\xdf\x62\x77\x36\x03\xc4\x5b\xfc\xce\xe6\x81\x78\x4b\xdc\xd9\x6c\x10\x6f\xd3\x77\xdb\xf0\x35\x82\x7d\xfe\x2b\x16\xdc\x61\x8b\x03\xd8\x7d\xbd\x1a\xbf\x4b\x74\x2b\xfd\x2e\xd1\xa5\xf7\x71\xc3\xc2\x98\xe9\x30\xe1\x0e\xd9\x6e\xc3\x7c\x13\xf2\x16\x4d\xe3\xd8\xd7\x7a\x3c\x0c\x64\x6d\x89\x05\x02\xa9\x25\xcb\x9d\x76\xa9\x69\x2c\xee\xca\x0d\xaa\x7b\x5f\x6a\xf6\xef\xdb\x54\xef\x9c\xd4\xbc\x33\xe7\xea\xa8\x6f\x4d\x9d\xfd\x90\xdd\x9c\xda\x0f\x28\x45\x01\x02\x13\xfb\xa0\xc7\x85\x28\xe6\x90\xd3\x57\x8b\x19\x6b\xd3\x88\x2a\x71\x3f\xc8\x21\x93\xf0\x83\x5c\x6d\x4b\xa3\x91\x0c\x21\xf0\x4c\x3e\x53\x48\xe7\x32\x05\x1f\x0b\xcd\x9b\xe7\x21\x8e\x1d\xb8\x08\xd9\xed\x3c\xba\xee\x14\x42\xa8\xcb\x79\x1c\x99\x47\x05\x82\xb9\x87\x60\x6e\xf3\x99\xdb\x7a\x3d\x3b\xd1\x45\x04\x02\x5d\xfd\xe6\x75\x6f\x94\xb7\xe7\xff\x0a\x09\x3e\xf0\x1f\x5e\x63\xe3\xa9\x62\x3b\x7a\x21\xc1\xd6\x90\x73\x74\x14\xdf\xd3\x08\xe5\x0d\x8d\xe0\x11\xe7\xc0\x8c\x0b\xbd\x75\xaa\x26\x84\x0d\x0e\x68\xbb\xdd\xa2\xb9\x5c\xee\xeb\xd4\xfc\x4c\x82\x47\x10\x81\x20\x54\x68\x8d\x26\xb5\xe4\x35\x98\x70\x42\xb4\x97\xaf\x40\x60\xa6\x97\x8f\xc8\x67\x4c\x2f\x5f\x8e\xc8\x9b\x5e\xbe\x4c\x36\x6f\xde\x9f\xcd\xe6\x10\x74\x66\x7b\x04\x05\xe3\x47\x26\x6b\x0c\x9c\x96\x6b\x50\x27\xf9\x38\x9e\xc9\x23\x28\x4b\xf2\xf1\x7c\x81\x40\xd0\x7b\xfb\x1a\xee\x94\xe4\xe3\xc5\x5c\x16\x41\x39\x03\x94\x21\x10\x54\xb6\xfd\x88\x73\x23\x25\x9d\x46\x2c\xd7\xdd\x62\xe7\xba\x63\xf6\xbb\xee\x44\x54\x37\x87\x2d\x74\xf1\xaa\x13\x8f\x99\xd1\x0a\xcd\x68\x40\x81\x5c\xb1\x2f\xd9\xef\x1c\x7b\x06\xb8\xc7\x6f\x76\x8e\x3c\xdb\xbb\xc7\x48\x0a\x28\x19\x93\x06\xa7\x88\xe8\x02\xd9\x69\xba\x3d\xc8\x02\x46\x52\xe0\x66\x97\x0d\xb9\x0f\xbf\xca\x3b\x0d\xf3\x1e\x72\x9e\x39\x6c\x49\xe0\xc5\xc7\x9e\x46\x6b\xa0\x4d\x8b\x34\x07\x4c\x8f\x21\x93\x6c\xeb\x9a\xc1\x0f\x87\x33\xae\x26\x40\x8f\xbe\x03\x21\xbd\xdb\x9d\x11\xe5\x77\x27\xd8\x26\x2a\x50\x16\x40\xf9\xd2\xf2\x73\x68\x0d\x8c\x4c\xb2\xdb\x3e\x58\xd0\xa5\xa4\x3c\x1a\xba\x08\x33\xb0\x49\x5b\x2d\x7d\x50\x22\x1c\xac\x04\xc6\x81\x77\x51\xc6\x79\x9c\xe6\xef\x63\x8a\xb5\x1f\xec\x3e\x33\x1f\x82\x41\x48\x56\x17\x40\xd4\xaa\x73\x5e\xd3\x80\x6d\x1c\xa2\xcb\x86\xa2\x4d\x02\x03\xc5\xae\x5e\x8a\x65\xdd\xd0\x32\x1c\xcd\xdf\x5e\xf5\x9e\xe2\x51\xc8\x7d\x04\x74\xc1\x5c\x5a\x80\xaf\xa1\x61\x3f\x86\x3d\x55\x04\x28\x79\xd2\x81\xaa\x75\x01\xab\xd0\xcb\xf7\x54\x1f\x28\xe6\x47\xe6\xab\xa8\x2c\x89\x1a\x58\x69\x2d\x49\x7d\x8f\x90\xfd\x85\xbc\x88\xdc\x55\xbc\xc3\xf3\x10\x47\xc8\x4f\x66\x2e\x73\x93\x19\x26\x9b\x39\xe2\x8e\x8f\xd6\x18\x52\x20\xa4\x0b\x54\x49\x58\x58\x46\x42\x85\xfd\xc7\x93\xee\x0b\x86\x11\x6a\x95\xdc\xfd\xd8\x19\x7a\xa3\x4c\x5b\xa4\x85\x0c\x31\x6d\x88\x2b\x73\x44\x00\x14\x97\x77\xa3\x45\xaf\x81\xa2\x92\x30\x1c\xc1\x3c\xd9\xe2\xc5\xc7\xae\x93\x1e\x77\x30\x25\x55\x46\x01\x40\xb4\xf6\xf2\x77\x3e\x50\x5f\x1b\x61\x4e\xc3\x96\xf2\x53\x1e\x28\xd1\x54\x87\x99\x64\xe4\xce\x4c\x74\xed\xd0\xc7\x31\xd4\xbe\xf4\x62\x52\xe5\xec\xe8\x23\xbb\xe1\xc7\x9c\x81\x5f\xf2\x2b\x20\x74\x0d\x9e\x91\x51\xb5\xba\x76\x37\xcc\x0d\x0a\x77\x54\x1a\xaf\x43\xcb\x19\x14\xe2\x7e\x3f\xd6\x34\x29\x89\xe6\x69\x63\x4b\x41\xfc\xca\x63\x1d\x45\x36\xa1\xac\x5b\x7f\xdc\xfd\x31\x84\xbc\x39\xcd\x8b\x15\x89\xd1\x61\x54\x17\xb3\xd5\x16\xbb\xe3\x87\x66\xd9\x43\xdb\xc7\x3c\x21\x9f\x69\x51\xe3\x69\x81\xa7\xd5\x93\x03\x1c\x65\x81\xac\xcd\x8c\x1f\xb2\x02\xe0\xc0\x52\x51\xe8\x25\x2f\x72\xa6\x07\xe7\x64\xb1\x3d\xe5\xa7\x3b\xaf\x0b\xe9\x26\xc7\x8c\xe4\x02\x3b\x50\xfc\x70\x69\x4c\x5a\x88\x43\x74\x82\xa0\x07\x76\x6e\x04\xfa\x7b\xe1\x1a\xa4\xaa\x28\x92\x12\x3f\xbc\x06\x93\x7a\x8b\x88\x89\x92\x16\x53\x75\x59\x96\x14\x0d\xb0\xb1\xc3\xc4\xae\x40\xd0\xa5\xad\x24\x69\x96\x75\xec\x7d\x45\x9a\xb7\x0c\x98\x08\x14\x24\xee\x26\x06\x35\x29\x60\x4c\x7a\x04\x49\xd5\x0e\x51\x40\x7e\x82\xd3\x11\x49\x00\x49\x41\xe2\xe2\x81\x2c\x31\xd8\xe7\x63\x0a\x60\x00\xbf\x00\x2c\x8c\x24\x25\x2b\x30\xb1\x62\xee\x88\xc4\x9d\x2e\x01\x4b\x75\x81\xaa\x59\xfd\xab\xcf\xcf\x81\xa4\x6b\xa4\x0a\x34\xeb\xa7\x19\x53\xe5\xb5\xfc\x56\x4c\x28\x9b\xb0\x25\xad\x88\x16\x65\x31\xab\x10\xe4\x8f\x02\x4b\x02\xf6\x34\x36\xe5\x15\x5e\xe4\x62\x1e\x6b\x75\x88\x84\x19\xc3\xe4\x94\x57\x40\x1c\x20\x5b\x34\x0d\xd2\xc8\x36\xcc\xa3\xfe\x65\xfc\xb4\x89\xf1\xf2\xd4\x45\xba\x2f\x5f\x90\xb1\x70\x86\x6d\xf3\xe9\x15\x16\xbd\xce\x73\x8b\x87\x71\x0c\x95\x92\x8a\x35\x38\x99\xd6\xa4\xa6\x48\x73\xe8\x94\x43\x7c\xa6\xd4\x46\xca\x8b\x3c\xd4\xfe\x0d\x80\xca\x08\x67\x6e\x71\xe7\x62\xbc\x6b\xd0\xb1\x1d\x6b\x71\x87\x93\x21\x93\xaf\x24\x9c\xcc\x93\x30\xa2\x88\x05\xad\x38\x66\xc5\x6d\x75\x3c\xec\x8d\xec\xca\x66\x94\x24\xd4\x98\x3b\xef\xac\x83\x0a\x34\x73\xc0\x0d\xc5\x0c\xb3\x86\xfb\xcc\x43\xf0\x4b\xe2\x35\xac\xc1\x32\x41\x8e\xe7\xfc\x3b\x6b\x1a\x78\x3f\xf1\x0e\x83\x83\x03\x46\x92\x96\x65\x20\xb2\xe5\x19\x2f\xb0\x9e\x8a\x10\xf4\x36\x62\xda\x69\x12\x1e\x36\xab\x34\x21\x77\xe4\x1b\x74\x81\x57\x29\x4d\x83\xee\xdd\x68\xbb\x6b\x85\xb4\x62\x6d\xd3\x3b\x91\xd8\x75\xd2\x50\x5b\x9a\x17\xd5\xc8\x21\x30\xa4\x5b\x32\x21\x07\x5d\x9e\x43\x4f\x0b\xbb\xc7\x5e\x04\x24\x77\xc1\xe2\x4e\x3d\xa6\xd9\x13\xd9\xeb\xb3\xd5\x47\xc2\x58\xf8\xae\x2e\xb4\x45\x90\x2d\x07\x34\x3b\x7a\x86\x79\xc8\x79\xb7\xd7\xe4\x5b\xdf\x7c\xb6\x0e\xcf\x62\xf6\x69\xdc\x6d\xd8\x14\x69\x77\x5e\x62\xaa\x00\x75\x56\xb6\x0b\x3b\x76\xd7\xb0\x1b\x70\x81\x12\x3f\xc0\x6c\x4f\x7e\xc5\x37\x6e\xfb\x90\xf9\x87\xf5\xdd\x01\xf1\xf0\x81\xdd\xde\x42\xf8\x92\xe9\x80\xe7\x64\x81\x6f\xc6\xe4\xba\xc3\xe1\xd9\xd8\x46\x7c\x07\x12\x8c\x1e\xf0\xfc\xca\xe4\xc2\x9c\xec\x29\xef\xab\x27\xfc\xb8\xb9\x4f\x81\x42\x71\xfa\xa7\x53\x3e\xed\x82\x3b\x9b\xa4\x2f\x4f\xe8\xee\xa7\xa7\x98\xb9\xc5\xf9\x4a\x39\xaf\x9b\xc8\x4c\x83\x5e\x3b\xab\xd6\x6f\xbe\xf7\xec\x47\x00\xc3\xa1\xb9\x6a\xdd\xca\xab\x6f\xc2\x10\x58\xf5\xef\xc7\x60\x66\x72\xa3\x08\x5a\xa4\xaf\xa0\x27\x0a\xd9\x97\xd1\x16\x61\xf9\x3e\x27\xbd\x47\x58\xfc\xd2\x7c\xad\xb4\xf7\xbc\x4c\xb4\x1d\x7d\x63\x3d\xa1\x25\x43\xeb\x78\x93\x19\xc0\xed\xfe\x53\xb6\x76\x83\x76\xf3\xe5\xe7\x2f\xef\x93\x16\xca\x92\xa0\x2b\x71\xe4\x4d\x96\xd7\x55\xc0\x67\x26\xed\xce\x12\xbe\x3f\x64\x33\x40\xa6\x75\xf5\xf5\x99\x87\x59\x4b\x4d\x62\x74\xf5\x5d\x74\x99\x25\xbe\x88\x30\x05\xa8\xfa\xfc\xad\x94\xed\x76\x79\x6d\x21\x58\x97\x53\x1c\x4a\x95\x08\x4a\x95\x64\x04\x06\x9f\x29\x32\x11\x9e\x86\x2e\x7a\x93\xa6\xc1\x74\x8d\xb4\x56\xf6\x37\xd1\x6e\xae\xd5\xda\xd2\x02\xbc\x8b\xb5\xae\x62\x5f\xca\x5f\x8d\x56\x34\x08\xa7\x44\x7e\x6e\x9e\xc5\x46\xb6\x11\x8b\xc0\xd7\x86\x86\xc8\x3e\x13\xb2\x20\xdd\x46\x4c\x79\xbc\x43\x78\x84\x5d\x80\x7b\x16\x5c\xd0\xd9\x13\xbe\x67\xc1\x05\x06\x91\x3d\x1b\x0e\x21\x16\x02\xd6\x36\xf5\x5e\xa4\x79\x67\x4d\xde\x6d\x13\x4f\xd0\x84\x80\xe9\xf8\xf2\xb9\xe4\x36\x44\x02\xcf\xf6\x9a\x79\xdf\x35\xff\x8f\x24\x66\xdd\x4c\x8b\xc8\x65\x9a\xfb\x8f\x24\xe6\x3d\xe6\xe4\x9f\x9d\x1e\xe0\xc8\x2e\x6a\x2d\x9c\xce\xd1\xcc\x93\xce\x2b\x9e\xfd\x3a\xff\x54\x2e\x94\x43\xae\xdb\xd0\x21\xb2\xb2\xce\x01\xf8\x79\x1d\xe5\xc9\x7e\xc3\x29\x90\x7d\xcc\xd9\x9b\xc3\x3b\x47\x08\x9d\x9e\xed\xfa\xa2\x2d\x94\x03\x92\x04\xbb\x99\x5e\xe8\xbe\xae\xb9\x78\xf6\xcf\x5a\x91\xe8\x7d\x7b\x67\x7d\xc4\x24\x39\x63\x20\x84\x53\x71\xe8\x55\x72\xcf\xe5\x6f\xe3\x18\x2a\x24\xa7\x92\xb2\xa4\x15\x16\x6e\x4d\x22\x71\x10\xb5\xf5\xbb\x7f\x5f\x19\xce\xd7\xc3\x70\x45\xed\xd0\xbe\xba\x4b\x8c\x38\x71\x4a\x76\x2d\x24\x03\xbe\x0a\x63\xa9\x3f\x1f\xc8\xaf\xce\x05\x4c\xf5\xf7\x15\x46\xb6\xee\xe1\x7b\x77\x48\xd6\x34\xe5\x76\x4c\x68\x60\x5f\xd2\x0c\x45\x6d\x5f\x13\x36\x77\x11\xbc\xab\x8f\xc0\xb2\xc3\x9d\x29\x62\x1d\xf1\xca\xf0\xe0\x71\x07\xfa\x8a\xbe\x75\x52\x0d\xb4\xef\x74\x74\xd8\x63\xd3\xed\x75\x64\xd9\xeb\x3b\x73\x4e\x01\x1c\xe3\x5b\x83\x9b\xaf\xe4\x3a\xc0\xad\xa3\xec\x5d\x69\x69\x2e\xcb\x5d\x77\xb1\x1d\x73\x63\xa6\x46\xef\x2f\x7c\xe1\x92\xd8\x16\xbf\xcf\xc3\x67\x1a\x83\x28\xa0\x1d\xfe\xd8\xba\x23\xfe\xa5\x03\xa5\xdb\x96\x62\x5b\x47\xbe\x7c\x84\x7c\x79\x6b\x10\xa9\x2b\x3c\x1b\x3d\x69\xb1\xe5\x1d\xa2\xd0\x76\x7b\x22\x06\x9b\x9d\x99\x0a\x29\xea\x09\xdc\xf3\x39\xbe\x47\xb9\x4d\x3e\x98\xa9\x81\x93\xdd\x86\xcc\x8e\x71\xc4\x0e\x82\xe0\xce\x6b\x90\xbe\x7f\x81\x90\x0c\xb9\x2b\x11\x6d\x18\xac\xdc\x71\x57\xaf\x47\xf6\x7b\x50\x6d\x2e\x1c\xbc\x21\x57\x92\xb7\x8e\x0b\x0f\x79\x95\x9f\x08\xc0\x8e\x72\xb4\x9f\x74\xfb\xb6\x86\x13\x9e\xc8\xdd\xa3\x7c\x21\xf9\x77\x61\xd8\x5d\x84\x7c\x7e\x03\x69\x70\x06\x23\x26\xcb\xe1\x79\xdc\x9b\xc5\x1e\x3b\x64\xd3\xb6\x8d\x1c\xdf\x6c\xa9\x45\xd5\xee\x8d\xb3\x1f\x8e\x3c\x20\xf2\x67\x6f\x74\x03\x18\xfe\xdf\x3e\x53\x2f\xf9\x4e\xd5\x4f\x51\x0e\x9d\xa3\x0b\xb4\x67\x65\xb6\xdd\xc2\xa7\x80\x2c\xc7\x01\xca\x5b\xea\x05\x0f\x4f\x90\xe5\xb8\xe6\x4e\xb1\xa6\x2a\x6b\xbf\x7f\xc9\xbc\x27\x62\x5d\x69\x4f\x4e\x68\x15\x8c\x13\x7b\xb3\x98\xad\x1f\xa3\x4b\x72\x7d\xcc\xdb\xb0\x35\xcb\xab\x32\x4a\x39\x21\xaa\xdf\x80\x62\x84\xf2\x70\x5d\x78\x8c\x9b\x07\xc7\xfb\xe4\x31\x6e\x51\x59\x75\x71\xc3\x36\x3a\xb6\xc2\x35\x77\x33\x69\xd6\x51\xd5\x90\x7c\x0d\x9e\x65\x81\x78\x74\x14\x7f\x8b\x3a\xdb\xea\xfb\x2e\x9d\xf7\x2e\x8e\xcc\xa2\xf6\xb9\x11\xa3\x41\x2b\xf2\xc0\xbc\x01\xa1\x92\xe0\x54\xfd\x48\x6a\xf0\x56\x83\x91\x20\x91\x6a\xc2\xc7\x3b\x91\xdc\x25\x08\xbc\x08\xa0\x97\x27\x2e\x79\xf7\xa1\xdc\x01\x25\xd4\x3b\x12\x43\x69\xd2\x31\xd0\xc1\xe3\x1b\x06\x0a\xeb\x94\x8b\x0d\x57\x0d\x94\x73\x12\x3b\x9d\x7f\x34\x99\x7f\x3a\x4f\x24\x10\x7e\x1a\x57\x6c\x4c\x7e\xcf\x28\x5c\x96\x0a\x5a\x72\xc2\xa1\x62\x52\x90\x68\x78\x62\x26\x3e\x47\x7b\x08\x8a\x91\x24\x39\x87\x87\xba\x5f\x2d\x8b\xa0\x33\xf2\x00\x47\x05\x72\x8e\xd2\x76\x94\x30\xec\xe8\x68\x4e\x92\x24\x7d\x8b\xdd\xdd\x62\x77\x47\x47\xf1\x19\x79\x80\xa1\x0c\x49\x27\xd5\x19\x3f\xd5\xe2\x08\xda\x83\x5d\x79\x12\xef\xa1\x62\x52\x53\x68\x51\x15\x68\x0d\xf4\xa5\x9e\xa6\xf0\x22\x17\x37\x32\xdf\x62\x77\x28\x73\x8b\xdf\x21\xf0\xef\xb1\xf1\x8d\xa0\x02\x09\x3f\x70\x04\xd5\xc9\x1e\xf4\x96\xcd\x68\xc5\xb0\x95\xac\xf5\x29\xb1\xc6\x04\x85\x23\xe3\xea\x07\x93\x0b\x89\x39\xf2\x41\x7e\xed\x7a\xc9\x9e\x46\x1a\x3f\xe2\x3d\x74\x8e\x4a\xaf\x4f\xd3\x11\xb4\x7a\x74\x24\x91\x24\xb9\x3e\x3a\x8a\x1b\x0c\xa0\x76\xe3\x8e\x47\x91\x9e\x57\x27\x14\xba\x3e\x59\xa2\xb0\xd4\x09\xa4\x1c\x5e\x49\x88\x23\x28\xdc\xbb\x3a\x89\x9c\x0b\xf0\x2a\xdc\x86\x00\xec\x67\xde\x67\x44\x7b\xe6\x55\x03\xeb\x42\xc7\x89\x1f\xdc\x14\xcd\x1e\x0a\xb3\xa1\xde\x6b\x10\xde\x9c\xe6\xcb\x17\xac\xac\x58\x54\xf8\xf7\x70\xb7\x68\x9f\xa4\x12\x6e\xa2\x0d\x79\xcc\x3f\x19\xad\x9d\x7f\x24\xfb\xbb\x36\xef\x23\xff\xe8\xc8\xb9\x79\x12\xdf\xdf\x14\xe4\xe5\xe5\x00\x27\xf7\x6c\x38\x87\x22\xdd\xdb\x7e\xc4\xa1\x31\x4a\xb1\xa7\x1c\x69\x9f\xf1\x7e\x89\x5c\xb9\x59\xb8\x29\x86\x31\xe6\x65\xf6\xd1\x4e\xfb\x3c\xf8\x3e\xb5\x32\xfb\xce\xdb\xab\x08\x20\x47\x10\x94\x3d\x20\xc9\xfb\x40\x20\xbf\xf8\x1e\xb3\x32\x4f\xe0\x08\xea\xd5\x48\x78\x5d\x8a\xbb\x3b\x20\x49\xd6\xb6\x94\x1e\x48\x42\x8e\xba\x6e\xe5\xf8\x00\xa2\x1b\xf8\x26\x94\xb5\x77\xa0\x9c\xbe\x0d\xa5\x73\xb0\xf3\x0d\x38\xc1\xca\x98\x2c\xc7\x57\x86\x8d\xd2\x77\x81\x0e\x8f\x8e\xe2\xec\x0b\x29\x47\x1c\x0a\xf5\x5a\x6f\x9b\x8b\x24\x1b\x96\x1c\xcd\xc2\x37\x58\xe6\x77\xf1\xef\x75\xee\xbd\x05\x9f\x8b\x79\x6f\x60\x1d\x3a\x25\x3d\x06\x2c\x7a\xd6\xea\x0a\x5b\x39\x47\x55\x94\x7d\xbd\x7f\xbc\x96\x63\xfa\x6a\x0e\x83\x40\x1d\x9d\xa2\x0a\x82\xce\x10\x38\x40\xfb\x67\x58\xe8\x3c\x91\x38\x9d\x7f\x14\xe0\x70\xb9\xf8\xa2\x81\xe3\x0d\x8d\xf5\xf7\x53\xeb\x76\xa8\x27\xb9\x41\x75\x51\xe7\x78\xac\x47\x46\x8b\xbb\x40\x4f\x0f\xcb\xf5\x1d\x6b\x5a\x00\xdf\x57\x6a\x5a\x00\xdf\xfb\x34\xed\x74\xf5\xca\x2a\x2f\x19\xbc\xee\x1a\xb2\x44\xda\x5f\xd8\x9a\xce\xbb\xcb\x6d\x43\x16\xc0\xcf\x5f\xbc\xb6\xb6\x2d\xf4\xbe\xad\x3a\x77\x00\xd4\x3d\x15\x7d\x08\x1f\xa0\x91\x37\xec\xf4\x99\x35\x30\x80\x17\x22\x2a\x30\xb3\xbd\xbb\x06\x67\x43\x32\xd0\x86\xbd\xf4\x7c\x78\x65\xf7\x14\x8e\x64\x0d\x77\x9c\xbb\xe8\x90\x9c\xa4\x33\x5b\x78\x0b\xbe\xcf\x98\xf9\x2e\x14\xd4\x98\x78\x24\xad\xae\xbb\x94\xaf\x37\x07\xc6\x9b\x7d\x75\xbe\x18\xe9\xb7\xdd\x29\x42\xc2\x45\xd9\xab\x2d\x02\x9a\x06\x94\x9e\x4c\x33\xbc\xc8\xed\x67\x92\x00\xa6\x41\xf9\xbc\x15\xf5\xbe\xa6\x05\xbd\xd2\x61\x37\xd0\xbe\x6c\x23\x3b\xe0\x28\x0f\xbb\x55\xff\xae\x5d\xf4\x80\x1f\x98\xf4\xb3\xfb\x95\x26\xa6\xde\xda\x3d\xfc\xfe\xeb\xb7\x57\x04\xb3\xbf\xaf\x1e\x57\x1f\x7c\x9d\xdd\x11\xa8\xa3\x31\xef\xd7\xdc\x5d\x8e\x28\x92\xb7\x6f\x39\xbd\x64\x5b\x57\x37\xc7\xa0\xb3\xc1\x93\x6e\xb5\x91\x24\xb5\x97\x97\x78\x48\x09\x10\x7e\x56\x62\xff\x4e\x35\x8c\x21\x12\x0a\xb1\x0f\x75\xf9\xce\x51\x43\x1f\xc7\x33\xdc\x61\x3e\xc1\x50\x20\xb2\x27\xa1\x1b\x83\x5b\x3f\xe2\x5d\x78\x93\x88\xe7\x11\x43\xb7\x66\x4e\x5f\xa7\x01\x40\x1a\xc0\x16\x5e\x23\xf3\x5d\x7c\xb1\xee\x99\x4c\x76\xf7\x4c\xf4\x24\x65\xdf\xae\xac\xd0\x1a\x1d\xbc\x6a\xe2\xbb\x5e\x02\xcf\x0f\x8a\x9a\xfd\xf6\x1a\x63\x45\xfb\x86\xd7\x6c\x0e\x0f\xcd\xc4\x29\x47\x82\xdd\xf8\x3f\x31\x3e\xec\xc9\x85\x27\xbb\x2d\x07\x53\x56\xfc\x96\x57\xed\xd8\xe1\x8e\xf3\x94\xc0\x8a\x79\x3c\x4b\x6c\x9d\xe9\xa5\xd7\xad\x6a\x9e\x05\x71\xb6\x01\x3c\x50\x77\x6d\xdb\xdd\xde\x80\x17\x35\xbe\x55\x81\x06\x4f\x67\xcd\x68\x33\xa2\x0a\x74\xa6\xf8\xce\xd8\x8a\x92\x16\xe3\xe7\xb2\xb9\xaf\x0e\xd8\x43\x78\x64\x8b\x52\x77\x65\x6c\xa4\xb7\x56\xfb\xcd\x96\xb9\x76\x27\xec\x6f\xcf\x1c\x79\x47\xd2\xdd\x76\x6b\xbf\x47\x15\x2b\x9b\x6c\x27\xb1\x1d\xa1\xbb\x37\x0b\x77\x1b\x70\x70\x3b\x99\x47\xb6\x81\x8b\x4e\x93\x2d\x9a\x2e\xe0\x5f\xf9\xd4\xa0\xfd\xe8\x01\xa9\x85\xdc\x31\x26\xed\xb3\xd0\xbd\x19\xcd\x02\x65\xf7\x69\x85\xd3\x21\xb5\x60\x94\x9b\xf0\xa0\x8a\xa7\xbb\x16\xab\xb6\xa2\xd9\xe1\x59\x43\xe2\x5a\x01\x4f\xad\x71\x0d\x81\x0f\xb4\x82\xa4\x0a\xbf\x7b\xf0\xa9\xdb\xb8\x8a\xc2\x18\x9d\x8c\x34\x97\x79\xc1\xce\x6a\x05\xac\xd4\xcc\x4f\xe7\x95\x3b\x15\x05\xc6\xca\xee\xb2\x09\xc3\xdd\x50\xfd\x41\xcf\xf6\x79\xc4\xd4\x53\xfb\x34\x2e\x80\xe2\x77\x95\x6f\x8a\x53\xa9\x25\x71\x71\x15\x31\xd0\x9a\x41\xb3\x76\x15\x6d\xc3\x1a\x1f\xbc\x2d\x4a\x58\x53\x7f\x0c\x3d\x76\x7e\xe2\xc6\xa7\xf9\x2e\x02\x7e\x07\x6f\xef\x7b\xd8\xea\x3c\x57\xe6\x66\x95\xb4\x8f\x55\x76\x80\x23\x9b\x55\x34\xf4\xc7\x58\xc4\x4a\x61\x8f\x0c\x1a\x82\x00\xc9\x61\xb5\xdb\xaf\x8e\xee\x7b\x0d\xaa\x52\xed\xa2\x1a\x02\x5b\xfa\xd6\xc2\xb5\x2e\x55\x87\x01\xcd\xac\xe2\xbc\x59\x5c\xe0\xc5\x47\x9b\x1e\xc9\x12\x88\xf5\xed\x48\x44\x42\x41\xb2\xd5\xbc\x38\xf7\x8b\x43\x0a\x13\x87\x55\xda\x96\x87\xe4\x92\x87\x53\xd1\x16\xf5\x69\xab\x8a\x86\xea\xb4\x9b\xbb\xce\xa6\xfd\xae\xbb\x11\x1f\x80\xb5\x29\x80\xc2\x20\x11\x01\x91\xf2\x48\x30\x04\xb1\x13\x76\x58\xb9\xd5\xee\x48\x70\xab\xdd\xd9\x2f\x20\x2b\x5b\x4f\x37\x0b\x5e\x22\xb5\xfd\xb9\xd6\x99\x50\x7b\x1c\x73\x05\xb1\xdd\x6e\xd1\x6c\xf1\x2b\xa3\x9f\x96\x68\x15\xb8\x6e\x97\x04\xbb\x29\xbc\x03\x09\x6f\x45\xa6\xf3\x56\xec\xd3\x7c\xc6\x79\x55\xd4\x1a\x4b\xe8\xb7\x3e\x09\x6a\x05\x9c\x40\x67\xfe\x1b\x8b\x96\x27\xd3\xb0\x26\x56\x0a\x2d\xc8\x33\x9a\x8c\x3e\xd1\xbd\x8b\x36\xea\xbb\x5b\x48\x87\x9c\xb1\x20\x67\x9e\x9b\x29\x86\x45\x86\x56\x78\xf7\x7c\xa8\x93\x6e\x2e\x07\xfc\x00\x20\x08\xa1\x05\x80\x20\x84\x17\x98\xd1\x4a\xcb\x98\x5f\x07\x93\xfb\x92\xbc\x4b\xfd\x2e\xee\x9f\x78\xe7\x37\x50\x1e\x2d\x5e\xd5\xe0\xa3\xdf\xdf\xac\x8c\x99\xc4\xf1\xf7\x9e\xf9\xed\xb1\x60\x08\xf8\x1b\x24\xec\x00\xe7\xa6\x29\xb2\x60\x45\x1a\xeb\x26\x6b\xef\xdd\x7d\xaa\xdf\x9c\xa7\x05\x25\xb5\xe7\x00\x39\xfc\x7a\xc7\x6d\x2f\xcd\xe5\xb2\xf3\x39\x93\x1d\xb7\xa9\xe9\xfc\x07\xe1\xf7\x2f\xc2\x1e\xd9\xf1\x4e\x20\xcd\xc3\xd8\x66\x50\x3a\x4f\xbb\xec\x6c\xda\xca\x3c\xe6\xe3\xb5\x69\x1e\x1c\xee\x9b\x39\x04\x7b\x88\x3e\x43\x25\x3d\x71\x29\xac\x73\xe2\x1e\x7e\xee\xfc\x4e\x02\xa0\x15\x4a\x10\xe2\x9e\x03\x91\x00\x79\xf6\x1c\x44\x74\xbe\x5d\x67\xe1\x9c\x44\xb7\x5f\xdc\x1a\x03\xf6\x9e\x16\x44\x15\xf2\x00\x47\x9e\xe1\x64\xbb\xaf\xd0\xa2\x0a\x4f\xaf\x33\xeb\xdd\x21\x04\x6d\xb7\x44\x86\xc4\xfa\x5f\xce\x76\x37\xfd\xd4\xdd\x29\xb5\x50\xf5\xb5\x15\x50\x12\xc1\x85\xe9\x81\x79\x83\x0e\x29\x40\x16\x68\x26\xe4\x08\xbd\xfb\xb0\x61\x50\x25\x82\x1a\xe5\x09\x71\x18\xc6\x2f\xcc\x7a\x02\xfd\x18\x47\x42\x8e\x96\xb9\x16\x1c\x3e\x1b\xe1\x1c\x27\x0b\x58\x89\x8f\x24\xe6\x2c\x3a\x76\xa7\x7c\xcc\xdb\x40\x61\x67\xc5\xc0\xeb\xc7\xc3\xc2\xcd\x4e\x84\xd1\x09\x37\x6a\x11\x26\x6d\xff\xb1\xae\xc8\x93\x49\xae\xc0\x02\x7e\x0e\xed\x8c\xa2\x16\x1d\x76\xc5\x6f\x26\xb5\xe8\xd8\x45\x7e\xdb\xac\x45\x9d\x5e\x0b\x5a\x6b\x2d\xfa\x18\x9b\xcf\x1e\x6b\xc1\xf7\x5e\xc2\x0c\xb4\x16\x78\xe1\x25\x64\x69\xa9\xbd\xfd\x68\xfe\x17\x1c\xc6\xff\x92\xe3\xf7\x7b\x0f\xb5\x47\x18\xa4\x2f\xe9\x65\xdb\xfb\x29\x2f\x08\x25\xf8\xe4\x7b\x8b\x17\x01\xa5\x19\x22\xb6\x26\xf1\x24\xee\x32\xa9\x30\xa8\x43\x17\x30\x5a\x1c\x7c\x08\x57\xed\xb8\xe6\x8a\x5e\xe6\x53\x97\xe3\x7d\x3a\x7b\x8c\xa3\x7c\x04\xce\xbd\xaa\xbe\x75\x35\xfe\xd9\xc5\x9a\xcf\x0e\xd1\x30\x03\xa4\xda\x89\xde\xf8\x9a\x90\x91\x93\xb8\xb7\xd5\xd0\xc9\xf8\xb6\xc0\x4f\x8c\xba\x9b\xe7\xb8\x59\xf6\x8e\xca\xed\x56\xb9\xe4\x80\x2a\xaf\x37\x2f\x4a\x28\x5a\x84\x40\x22\x39\xae\x44\x14\xf8\x09\x70\xe5\x27\x4f\xb3\xa5\xdf\xd0\x18\x28\xba\x39\x49\xf1\xf3\x14\x92\x24\x89\xbb\x90\xb2\x40\xab\x49\xa2\x16\x07\xe8\x01\x0e\xdf\x2f\x73\x72\x19\xd3\x05\x63\x9e\x2d\xf0\x22\x20\x55\xf8\x4e\xc2\x7d\x89\xea\x55\x5b\xcd\x8b\xea\xee\x14\x25\x2f\x43\x2f\x91\x31\x43\xd6\x5c\x9b\x04\x88\x8f\x01\xc6\x78\x12\xd7\xdc\xbb\x0a\x11\x8d\x4b\x84\x59\xbf\xc8\x16\x07\x72\xf7\x25\x39\x90\x66\x31\x67\xeb\x50\x6b\x4d\x42\x1c\x12\xe1\x21\xba\x4b\xda\xe5\x02\x34\x52\x95\xef\x54\x6a\x11\x32\x43\xdd\xea\xcd\xcb\x71\x64\xeb\x92\x09\x24\xd3\x7a\x6e\xfb\x7b\xcf\xfc\xe7\x43\x5e\xa3\x05\x9e\x39\x3c\x39\x3c\x84\x6f\x51\x7f\x06\xbb\x83\x02\x86\x4c\xaf\x21\xca\x92\x24\xb0\x27\x61\x00\xa3\x88\x37\xbd\xc7\x6f\xec\xf6\x85\x1b\x9d\xad\xbc\x0a\x14\xaa\xd1\x73\x5e\x58\x6f\xbf\xd9\x6e\x83\xeb\x30\x7a\x8b\xe6\xd3\xe9\xaf\x5b\xdb\xf9\x22\x07\x04\xd7\x76\x78\xd1\xbf\xb6\xcb\x16\x09\x7b\x49\x27\xee\x96\x74\x92\x9f\xba\xc8\x75\x9d\x68\xaf\xea\x78\x14\xa0\x87\xc6\x82\xff\x10\xd5\xd0\x03\xcc\x02\xfa\x66\xed\x4a\x52\x12\x7b\x33\x69\x69\xd0\x39\xb0\xc3\x68\xc6\x81\xf7\xea\x7e\x48\x86\xe0\xab\xe0\x06\xa6\x06\xcf\x82\xbd\x98\x42\x32\x20\xbe\xd9\x0d\x24\x3e\xe9\x4a\xb1\x94\x4a\xd5\x68\x0d\x58\xfc\xdb\xda\xcb\x10\xf7\x29\xe6\xb2\xae\x28\x40\xd4\x5a\xd6\x65\x90\x60\xda\xee\xe2\x82\x89\xcb\x5b\x18\x9a\x6c\x17\x34\xb9\xc2\xdd\x15\x27\xd7\xde\x4f\x78\xa6\xce\x97\xdd\x75\x55\xc1\x53\x92\x38\xf6\x22\x3a\xc6\x4f\xc1\xa7\xdd\x7c\xd6\x55\x3d\xe6\xab\x31\x11\xac\x13\x05\x9e\x43\xdf\xa1\xe5\x08\xcf\xe7\xca\x15\x97\xdc\xc3\xc3\xed\x1e\xe9\x3e\xc3\x9d\xaa\x29\x47\x92\xa4\x9a\x6c\x5e\xc0\xad\xa8\xca\x7d\xa5\x5a\xa3\x06\xad\xfe\x7d\xb9\xd3\xea\x74\x3f\x7f\xcd\x90\x72\xb2\x7b\xe4\xd2\xa8\xc5\x7a\x85\x8e\x57\x89\x6c\x0e\xda\x79\x04\x56\x8e\xbc\xb3\x0a\x18\x25\xd2\x28\x78\x07\xab\x78\x5f\x61\x57\x08\x4b\x63\xc8\x33\xd8\x4f\x1a\xd4\xad\x09\xeb\x7d\xa6\x88\xc9\x96\x21\x78\xa8\x1d\x06\xa7\x8f\x8d\x4f\xe4\x14\x08\x2a\x78\x7e\x6b\x29\xa8\x49\x66\x39\x67\xef\xca\x94\x3e\xdc\xc0\x5a\x13\x70\xf3\x6a\x1f\x3a\x0c\xd5\x2c\x44\xf6\x69\xc9\xa8\x7c\x50\x3b\x0c\x4a\x91\xad\x5b\x23\xc0\x76\x4f\xff\x8c\xee\x63\xdb\xa0\x7d\x13\xb7\x68\x81\x30\x63\xe3\x7d\xa1\xc5\x8c\x0a\xe1\x60\xc7\x45\xd8\x93\xc3\xbb\x39\x6b\x4c\x13\x80\x91\x19\x5e\x25\xb1\x33\xc5\x4d\x08\x3c\x3b\xaa\x92\x07\xb8\xb5\x17\xf8\x6c\xdd\x35\x3f\x81\x7b\x16\xea\xcb\x4b\x5c\x25\x0f\xe0\x6a\x15\xee\x58\x84\xa1\x40\xb6\xdb\xed\x16\x25\xf2\x99\xaf\x1b\x21\x02\x61\x72\x42\xa2\xa2\x65\xb3\xe6\x18\x01\x9f\x22\xb2\xf7\xff\x60\x13\x44\x6f\x78\x6f\xc6\xf8\xa3\x1b\x7f\x58\x12\x3b\x0d\x43\x1e\xb2\xc9\xe9\x0c\x1e\xfe\xd3\xe1\xa4\x77\xb1\xec\x8f\x58\xa6\x86\x44\xc1\xdb\x85\x2d\x0b\xc6\x21\x8b\x0e\x7c\x43\x86\xdd\xc9\xb2\xf7\x16\xcd\x63\x27\xe4\xf3\x94\x3b\xc1\xd0\x89\xf1\x07\xac\xb4\x13\x6c\xbb\xb5\xcf\x84\x9a\x0d\xb8\x77\xec\xbb\x73\xaa\xcf\xf1\x78\x39\x87\x09\x1d\x97\x98\x73\xa0\x85\x24\x72\x85\x4c\x3a\x9b\xc9\xe6\x8e\x8c\x22\x9f\x41\xd2\x1c\x78\x01\x9b\x84\x95\x41\x0e\xd3\xf0\xc5\x27\x78\xc2\xd6\xe6\xb2\x18\x6d\x51\xe0\xa3\x50\xc0\xf1\x2d\x1d\x90\xa4\x12\x38\x22\x98\x81\x36\x66\x57\xd7\x2e\x90\xb5\x79\x36\x72\xe7\x90\xdc\x79\x9e\x70\x34\xe2\xac\x40\xc8\x51\x81\x37\xcd\x89\x52\x78\x16\x41\x4e\x59\x52\xfb\x70\xff\x8f\xe3\xc4\x07\x97\x33\x1c\x20\xc8\x76\x37\x60\x06\x84\x69\xd8\xcb\x2a\xcd\xcc\x2a\x3b\x80\x69\x64\x60\xdf\x38\x9c\x40\xd3\x63\x06\x54\x71\xbf\x06\x60\xaa\x62\xbd\x04\xcf\x21\x87\x01\x82\x27\x37\x19\xf2\x00\x43\x50\xe0\xb2\xcf\x2e\x24\x34\x19\x06\x08\x22\x11\x0c\x24\x5b\x04\xd5\xc9\x68\xc5\x4d\xf2\xaa\xd1\x00\x73\x17\x2f\x78\xe9\x05\x5e\xbc\xd5\xbd\x41\x9a\xbd\x8a\xf5\xf2\xb2\x0b\x75\xec\xd5\xc2\x7d\x85\x02\x61\x9e\x7d\xe0\xbd\x21\x93\x67\x6f\x09\x99\xec\x45\xb8\x27\x7e\xf2\xcc\x15\x3f\xd9\x47\xc5\xc7\x8f\x85\x17\x22\x9b\xf5\x05\x54\xde\x57\xfd\x9b\x22\x42\xfb\xd9\xf4\x9d\xb6\x75\xf2\x25\x6d\x9d\xec\xda\xba\x9d\x91\x2a\x2c\x6f\xbe\x5d\x1e\x9f\xa1\x19\xa2\x98\x29\xe6\xf2\x58\x06\x7b\xcb\xb1\xea\xcf\xa2\x73\x93\xdb\x39\x06\xd7\x91\xe9\x27\x1d\x9c\xb8\x60\xf6\x69\x68\x7f\x1e\x04\x56\xfe\x82\x13\x05\xc4\xad\xca\x26\x23\x67\xe4\x3f\x18\x05\xee\xca\x4f\xf9\x69\xdc\xe8\x8f\xa8\xab\x74\x6d\x27\x68\xd8\x1f\x43\x21\x11\x1d\xd2\x8c\xcf\xa2\x29\x80\xd6\xe0\x4d\x68\x4a\x2d\x79\x0d\x02\x12\x77\xd9\x4f\x64\x5f\x37\x3a\x3a\x3a\x88\x54\x2b\x84\xfe\x7f\xc4\x2d\x38\x0d\xfc\xc2\xae\xff\x5a\x77\xa0\xbf\xd3\xee\x40\xbf\xde\x1d\x5e\xed\xc0\xaf\x19\xab\x77\x53\xbc\xd7\x58\x45\x51\x1c\x69\xac\xf6\x55\xef\x37\x56\xb4\xb7\xeb\xd3\x3f\x25\x5d\xdf\xe8\x34\xdb\xed\x17\x0d\xc8\x9a\x24\xff\xf4\x8d\xc6\x0c\xac\x58\xff\x7c\x6c\x6b\x0c\x9c\x7b\x1d\x1d\xe3\xe9\x0c\x81\xe7\xf3\x44\xf1\x65\xb6\x1b\x52\x4f\xbc\x99\x5c\x10\x04\x15\x60\xdd\xee\x0c\x53\xee\xe8\xd8\xea\x75\xd9\x17\xda\x95\x35\xd2\x7c\xc4\x99\xa3\xa3\x03\x13\x51\x44\x7f\xfc\xbc\xa3\xcb\xaf\xf7\x2f\x16\xd6\xb4\xaf\xc4\x49\x74\x89\x9d\xee\x8a\xfe\xa7\x07\x3e\x7d\x2a\xec\xe8\xb5\xcc\xe4\x01\x73\x74\x24\x40\x5e\x45\x74\xbc\xcf\xc7\xa1\xed\x9a\x44\x50\x36\xe5\x4e\x22\x0b\xb8\x08\x9b\x06\xec\xb7\x43\x18\xd4\x03\x04\x15\x77\x8b\x32\xef\xb4\x9b\xf9\x3c\x3b\xf1\x26\xf9\x27\xe1\xc2\x67\xfa\xc4\x9b\xe4\x9f\x92\x1f\x91\xd9\x74\xae\x90\xc7\x8a\x38\xee\x07\xbd\x90\xec\xc7\x8f\x44\xf1\x28\x9d\xcf\x16\xb0\x62\x2e\x5d\xc8\xc0\x60\xd5\x44\xfe\xeb\x56\x62\x11\x91\xc2\x48\x2d\xcc\x91\x18\x5c\xa5\x65\xb1\xa2\xb5\x4a\x2b\xc2\x9d\xbc\xdb\xbb\xd3\xf0\x92\xbe\x65\xea\xee\xfa\xa9\x3d\xdf\xd7\x49\xf8\x3a\xa0\xfd\xb8\x6f\x59\x12\xa7\x3c\x87\xc4\xed\x7c\x46\x19\xc6\x7f\xd0\x45\x0a\x79\x5f\x9b\x27\xa5\x5b\xed\x0e\x55\x48\x3e\x29\x2d\x45\xc0\x96\xd6\x49\x5e\x64\xc1\xaa\x33\x8d\x03\x78\x16\x49\xf9\x44\x62\x70\x54\x85\xf5\x31\xb0\x9e\xea\x93\x4e\x0b\x2a\x12\xe7\xad\x6f\x54\xdf\x9d\xff\xe1\x93\xf0\x31\xe1\x53\xdc\xbc\xd4\x65\xa1\x34\xeb\xfd\x1c\xb7\xa0\x4e\xd0\x36\x54\x4a\xaa\xb2\xc0\x33\x20\xae\xa1\x38\x82\x9c\x38\x45\xac\x64\x05\xc5\x11\xd3\x4a\x6f\xb7\x6f\x6d\xcd\xe9\x3b\xa8\xb5\xab\x93\x75\x75\x16\x07\x08\x6a\x51\xb8\xb5\xdf\xa3\x04\x56\x54\x9d\x7b\xf2\x19\x02\x4e\x44\xb0\x8c\x29\x49\x4f\x08\x06\xfb\xaa\x3f\xaa\xa3\xc6\xf2\x8c\x67\x24\xd6\x89\xef\x62\xd6\x79\xa2\xa3\x56\x4d\x27\xb7\xe0\x6e\x6b\x1f\x2e\x92\xcc\x7a\xef\x11\xf4\xde\xaa\x77\x8f\x8a\x39\x2a\x61\x06\xeb\x79\x0b\x2b\x22\x84\x7a\x8c\x1f\x90\x24\x8f\x3c\x1b\x52\xf2\x64\xb3\x05\x05\x13\x5f\x91\x95\xa7\xa0\x05\xe1\x5d\xe2\xda\x6e\x51\xbc\xf8\x95\xdd\xcd\xd9\xee\x23\x35\x8f\x38\x49\xcd\xa7\xfb\x21\xbb\xe6\x39\x0c\x39\x0d\x64\xf3\x75\x2c\xeb\x6e\xb7\xcd\xb5\x19\xf9\xec\x98\xb4\x13\xb7\x7d\x43\x1d\x1b\x7c\xe2\x36\xc8\xd6\xe5\xcc\x13\x7b\xdd\xde\x69\x75\xba\xa8\xfb\xa2\xa1\x17\x12\x32\xf3\x8d\xc8\xe0\x8c\xf8\xce\x91\x90\x28\x64\x81\x19\x44\x78\xb6\xe0\x64\xe2\x75\xd4\x51\x13\x10\x6f\x76\x63\x72\x76\x22\xc2\x39\x5a\x52\x85\x9a\x00\x35\x5f\x53\x68\x55\x83\xda\x7b\x22\x26\x3d\xdf\xe8\x8c\x16\xa6\x65\x5f\x8e\x40\x9a\xdd\x51\x9e\x19\x5d\xd5\xa4\x39\x5c\x01\xa8\x27\x52\xd2\xfd\x89\xfa\x0f\xad\x9f\xd0\xa8\xe7\x06\xc4\x89\xe4\xbd\x11\x81\x3a\x97\x49\x0c\xd0\xee\x03\xf5\x39\xb0\x4e\x00\xea\x77\x5e\x9d\xec\x32\xd9\x87\x1f\x4e\x78\xd4\xef\x78\x3b\x51\x51\xc7\x6b\x74\x22\xb9\x5c\x48\xa8\xbd\xdd\x62\xa5\x1a\x3f\x51\xc7\x5d\x65\xa5\x9a\x1f\xa8\xcf\xbf\x25\xf9\x1c\x5e\x28\x2d\x08\xd2\xd2\x7d\x5a\xe8\x44\x4a\x06\xd2\x50\x56\xa1\x97\x46\x76\xc3\x60\x35\xc5\x92\x62\x14\x37\xcf\x72\x9d\x48\xc9\x68\x20\x3a\xe7\x45\x7e\xae\xcf\x6d\x69\x98\x8c\x95\x92\x61\xc9\xa8\x39\x43\x3e\x99\x6d\xe1\x11\x4e\x77\x27\xf5\x9e\xd5\xb4\x8d\x16\x4f\x62\xa7\xfc\x47\xcf\xc4\xde\x36\x60\xbc\x79\x09\xde\x3b\xe9\xb7\x5e\xa4\x3a\x20\xa1\x0d\x08\xa4\x23\x76\xf8\x16\xdb\xaa\x82\x64\x20\x90\x25\xb9\x3b\xd9\xe1\x24\x1e\x1d\x01\x8f\x22\xc1\x4c\xee\x04\x23\x83\xa3\x1e\x10\xec\x7c\x42\xa0\x5b\xad\x4c\xb8\x3b\xc5\xc8\xe2\x08\x1f\xc2\x9d\x4f\x1b\x68\xe8\xc0\x0e\x64\x7c\xd8\x80\x6b\xa7\x56\xe7\xd3\x0b\x34\x64\xe7\xcb\x60\x24\x19\x99\x02\x9a\x00\xf3\x05\x52\x8d\xac\xfe\xe3\x3c\x0e\xaf\x76\x69\xde\x6c\x2e\x7e\xf8\x13\x61\xc6\x48\xad\x32\x8b\x44\x82\x8d\xc2\x61\x0a\x06\x8b\x85\x01\xa0\x04\x43\x97\x67\xa4\x4b\x57\x7c\x20\x57\x21\xdf\xb4\xda\x5d\xc8\xff\xd8\x97\x77\x2c\x72\x0f\xc5\x96\xd2\xd9\x2b\x0b\x92\x74\x96\xbe\x00\x79\x79\xb1\xd7\xb6\xde\xf4\xed\x16\x25\xd2\x5f\x39\x36\x7a\xce\x27\x90\x5a\xb2\xd2\x6c\xdf\x77\x2e\xa9\x72\xb3\x3f\x26\xb5\x08\x87\x5c\xc8\xf1\xfe\x62\xd1\x18\x25\x23\xb2\x13\xd9\x3c\xea\xc5\x9c\xcc\x06\xaa\x56\x8c\x65\x2d\xaf\x80\xa9\xb4\x7a\x79\x31\x3e\x5a\x80\xa3\x99\x75\x95\xe5\xc0\x67\x7b\x9b\xf7\xe4\x90\x67\x81\xc4\x29\xb4\x3c\xe3\x99\xc3\x2d\x9a\xc9\xe6\xbf\xc6\x01\x14\x11\x53\xc6\xf1\xff\x44\x65\x08\x75\x6d\x78\x1f\x2d\x2e\xd3\x82\x60\x88\x9f\x8c\x7e\x3a\xc0\xf6\x6e\xf8\xe2\x90\x90\x07\x58\xf4\x89\x26\x57\xdc\x03\xbb\x36\x78\x05\xa8\x29\x6a\x40\x59\xd0\x42\xdc\x0c\x2d\xcc\xab\x97\xb4\x91\x6b\x77\x4d\xc5\x0e\x35\x35\xb1\xda\xa2\xd8\xd1\xd6\xed\x13\x62\x10\x60\x63\x41\xb6\xbb\xf9\xda\x73\x08\x78\x5f\xb4\x07\x2b\x70\x15\xf4\xe1\xed\x88\x0a\xab\x02\x0d\x49\xb4\x38\xef\x81\xb9\x89\x7d\x6b\xc5\xde\x08\xe9\x01\x34\x91\xf8\x7d\xf5\xd3\x76\xe0\x30\x18\x28\xea\x2d\x95\xd3\x22\x03\x04\xca\x53\x2c\x1e\x86\x2b\xbc\x06\xbb\xfa\x6d\x44\xf4\xb2\x67\x4b\x5d\x4c\xd9\xee\xce\xa2\xee\x90\x18\xad\xe8\x9a\x45\x01\x4b\x56\x68\x0d\x24\x45\x69\x69\x1f\xce\x89\x54\x33\x2f\x11\x41\xb4\x26\x6d\xaf\xb5\xdd\xba\xe8\xe6\x6b\xbc\x27\x3c\x93\xbb\x5f\xc4\xf7\xb2\x60\x8b\x98\x97\xf2\xbc\xba\x0d\xc8\x1c\x86\xfd\x74\x69\xe4\xab\x6c\xf1\xbf\x6b\xb0\x73\x74\x85\x4b\xcd\xf1\xc4\xe5\x30\xec\x38\xee\xc8\xf0\x78\x6f\xa9\xd3\x57\xd0\xda\x26\x0d\x7c\xf2\x44\xc1\x8c\x85\xdb\x10\x60\xf9\xec\x03\x1a\x83\x87\xcb\xec\x1f\x58\x35\x42\xe5\xf4\x06\x39\xec\xda\xf7\x93\x14\x84\xe7\xae\xe2\x7e\x61\x7c\x89\x04\xc2\x52\x7f\x2a\x84\xb2\x45\x8d\xbe\xb9\x45\x01\xb2\xb5\x42\x32\x3f\xef\xb7\x3a\x3f\x1d\xfd\xf7\xff\x43\x23\x0a\x8c\x46\x6d\x0a\xc5\x1b\x34\x7b\xbf\x96\x46\x4c\x33\x76\x3b\xa5\xa1\x41\x98\xb7\x5b\xb4\x90\xfb\xca\x87\x2b\x35\x65\x5d\x81\x77\xa6\x8d\xb5\x94\xb1\x38\x20\xb5\xa4\x2c\x2d\xcd\x63\x0b\x15\x03\x11\x0f\x8f\x1f\x90\x5a\x72\x22\xad\xac\xf7\x76\x7c\xe9\x82\xc4\x3c\x5a\x57\xa8\xdc\x90\xf0\xeb\xa9\xd1\xf9\x9f\x0f\xff\xf6\x47\xff\xe4\xf0\xe4\xf6\x79\x75\x82\xa1\xeb\x13\x0c\x5d\x9e\x14\xd0\xd9\x49\x66\x7b\x87\x1e\xfe\xed\x8f\x7e\xc6\x81\xe4\x2d\x08\x6e\x42\x7e\xe0\x40\x72\x16\x84\x30\x21\x3f\xeb\x40\xb2\x16\x24\x6d\x42\xfe\xa9\x03\xc9\x78\xeb\xf9\x39\x07\x92\xb6\x20\x59\x13\xf2\xcf\x1c\x08\x61\x41\x72\x26\xe4\xe7\x1d\x08\x6e\x41\xf2\x26\xe4\x9f\x07\xdb\x53\x30\x21\xbf\xe0\x85\xe4\x1d\xc8\xbf\xf0\x42\x72\x0e\xe4\x17\xbd\x90\xac\x03\xf9\x97\x5e\x48\xc6\x81\xfc\x2b\x2f\x24\xed\x40\xfe\xb5\x17\x42\x38\x90\x7f\xe3\x85\xe0\x0e\xe4\xdf\x9a\x90\x4c\xb0\x9e\x1f\x06\x5b\x6a\xc9\xe7\x5b\x13\x92\x0f\x62\xfb\x91\x57\x0a\x19\x47\x0a\xbf\xec\xd4\xe3\x83\xfc\x4a\xb0\xa5\x16\xe4\x57\xc3\x78\x80\x86\x4b\xf9\xd7\xc2\xb0\xa0\xe1\x35\xfe\x7a\x14\xde\x4c\x90\x86\xdf\x08\xd3\x5f\x7f\x5e\xab\xf5\xbf\x19\xe4\xa5\x85\xe5\xb7\xc2\x20\x68\x38\xa7\x7e\x1c\x26\x91\xd0\x56\xff\xfd\x8f\x7f\xfb\x77\xcd\xcc\xb8\x5f\x14\x7f\xff\xe3\xdf\xfe\x3d\x13\x44\x84\x80\x7e\xdf\x04\xa5\x43\x40\x7f\xe0\xad\xdd\x0d\xfa\x43\x13\x94\x0d\x01\xfd\x91\x09\xca\x85\x80\xfe\x38\xd8\x95\x70\x0b\xf4\x27\xc1\xfe\x67\x83\xfe\x34\xd8\x69\x6d\xd0\x9f\x05\x7b\xba\x0d\xfa\xf3\xa0\x79\xb0\x41\x7f\x11\xb4\x29\x36\xe8\x2f\xc3\x3a\x07\x1a\x66\x9a\xfe\xfe\xc7\xbf\xfd\x57\xfb\x32\x63\xbe\xcc\x7f\x1d\xd6\x51\xa2\x32\xff\xcd\xbe\xcc\x3e\x32\x7e\x27\xc4\xac\xe2\x91\x99\x7f\x66\x5f\x66\x22\x90\x92\x79\x15\xe1\x0f\x82\x08\x09\x0b\xf4\xb3\x41\x50\xda\x02\xfd\xd3\x20\x28\x6b\x81\x7e\x2e\x08\xca\x59\xa0\x7f\x16\x04\xe5\x2d\xd0\xcf\x7b\xb5\x8e\x70\xb4\xee\x77\xfe\xb9\x57\x57\xd3\x2e\xd0\x2f\x78\x95\x3f\xeb\x02\xfd\x0b\x6f\x97\xc9\xb9\x40\xbf\xe8\xed\x68\x79\x17\xe8\xdb\xa0\xd9\x25\x3c\x26\xc2\x49\x21\x2c\x86\x3b\x29\xb9\x40\x8a\x2d\x02\x2f\x9e\x4c\x00\x4f\x2e\x80\xc7\x49\x31\x09\xfb\x91\xb7\x39\xde\xcc\x58\xa0\x52\x22\x50\x29\x11\xa8\x34\x13\xc0\x93\x09\xe0\xc9\x05\xf0\xf8\x09\xfb\xe5\x60\xc7\xf7\x16\xb7\x34\x6a\x7b\x6a\x47\xba\x30\xa6\x12\xff\xee\xf0\xe4\xf6\x16\x37\xc3\x40\xdc\xa1\xb7\x98\xe7\x17\xee\x49\x83\x86\xf4\xdf\x5b\xf9\xcd\x74\xf8\x17\xb7\x7e\x43\xf8\x2f\x19\x70\x33\x0d\xb7\xfe\x62\xd6\xef\xbb\xed\x69\xd4\xf4\xe8\xf9\xf0\x6f\x7f\xf8\x4f\x0e\x4f\x9e\xf1\x93\xc3\x36\x86\x26\xb3\xb1\x16\x8e\x26\xb3\x87\x5b\xf4\xf0\x6f\x7f\xf8\x33\x87\x27\xcf\xe9\x90\xf4\x1f\x58\xf9\x93\x59\x14\x8b\xb5\x92\x59\x14\x37\xd3\x7f\xd6\xca\xef\x4f\xff\x97\x36\x7e\x23\x09\x02\xbc\xf8\xfe\x8d\x5d\x4f\x04\xfc\xdf\x7a\xe8\xb3\xc0\x0e\xfa\x5f\xf2\x90\x19\x00\xff\xd0\x4f\xad\x17\xf9\x2f\xfb\x89\xf6\x82\x7f\x25\xac\x34\xb6\x03\xff\x7a\x58\x69\x07\xfc\x1b\x01\x4e\xc5\xda\x81\x2a\xfe\x73\x80\x6d\x21\x99\xfe\x4b\x34\x26\xa7\xba\xff\x1d\x8d\xc9\xc9\xf4\x7f\x02\xd2\xde\x65\x72\x98\xf6\x07\x01\xd1\x87\x64\xfa\xc3\xbd\x98\x30\x33\xd3\x5f\xec\xc5\x64\x65\xfa\xcb\x70\x4c\x6e\x2d\xfa\xf6\x17\xc3\x11\x79\xf2\xfc\xa1\xc3\x25\x4f\xa3\xbf\xfd\x53\x87\x33\x5e\xc0\x1f\x79\x4b\xec\x48\xfa\xf6\xcf\xbc\x25\x1c\xc0\x1f\x7b\x4b\xec\x44\xf4\xed\x9f\x7b\x4b\x38\x80\x3f\x09\xd4\x61\x91\xfb\x17\x81\x3a\x2c\x80\xa9\xf1\xd6\xa6\xf6\x37\x6d\x0c\xfd\xde\x73\x32\x7b\xac\x6d\x0d\xac\xf6\x4f\x2b\x35\xe1\xa4\x26\xb4\xed\x37\xb0\xf8\xbf\xf3\x16\x87\x25\xc0\xd6\x60\x95\xfd\x13\x8f\xc1\xd4\x84\x93\x6a\xfc\xc4\xcd\xe2\xff\xde\x5b\x7c\xd7\x2b\xc3\x88\xb0\x92\xc3\xa8\xf8\xa5\x70\x2a\x70\x87\x0a\x47\x90\x36\x05\x46\x8a\x8f\x9a\x1f\x7a\xd1\x38\x75\xef\xd0\x04\x12\xf0\x58\x1b\x77\xc8\xb2\xf1\x05\x12\xac\x0a\xbe\x8d\x64\xb6\xbb\xcd\x66\x6f\x72\xf1\xdc\x69\xb9\x89\xe6\x47\xc1\xe6\x26\x9c\xe6\xda\x8d\xc3\x76\xcd\x3d\x76\x35\xf7\xd8\xa1\xe6\x97\xc3\xa8\x49\xf8\x9b\x9b\xf0\x35\x17\xf3\x32\x21\xe1\xe7\x8a\xab\xb9\xbf\x12\x90\x2e\xe6\x6e\x8c\x4b\x8c\x3b\xe9\x7a\x85\x6e\xa2\xf9\x55\xbf\x58\xdc\x6d\x71\xff\xc6\xc2\xa5\x8b\x99\x68\x7e\x6d\xaf\x74\x43\xdb\x81\x05\xa4\x1b\xca\x15\xab\x82\x5f\x8f\xe4\xa7\xbb\xcd\x90\x0b\xe1\xa2\x37\xd1\xfc\x86\x1f\x8d\xbb\x2d\x9e\x76\x85\x4b\xd7\xa2\xe6\x37\x23\x75\x2d\x52\x99\xb1\x98\x5f\x09\x42\x95\xd9\xaa\xe0\xb7\x22\xa4\x8b\x47\x08\x73\x6f\x0f\xfe\xf1\x97\xda\x11\xaf\xc8\x0d\xdd\x30\x11\xfe\x87\xb7\x20\x7c\x53\xd7\x8d\xbd\x4d\x55\xcc\x6a\xff\x63\x34\x53\xc2\x7b\xfb\xbe\x7e\xfe\x9f\xa2\x34\xc1\x12\xf9\xbb\xcd\xed\x7f\x0e\x37\x1c\x5e\x7e\x7e\x99\x1d\x08\x57\x28\xb3\xda\xff\xf2\xa5\x63\x8c\x57\x65\x0c\x36\x9a\x08\xff\x6b\x18\x63\xf0\x68\x7b\xb7\xd7\xea\xff\xb7\x77\x52\xb7\x8f\x29\xef\x18\x0b\xfe\xfb\x1e\xe3\xe8\xaa\xf2\xed\x43\xf1\xff\x78\x1f\x53\xf6\x1b\xcb\xff\x19\x69\xcb\x5c\xc2\x79\xa3\x4d\x79\x47\xf7\xf9\x5f\x6f\xea\x3e\x6f\x62\xc7\xff\x7e\x9d\x1d\x6f\xed\x36\xff\xe7\x8b\x06\xca\x37\x1a\x97\xef\x9e\x89\xbf\x67\x4d\x02\x71\xa3\x29\x98\x3d\xd1\xfb\xfd\xdd\xc4\x17\x33\xf8\x60\xa5\xfe\x81\x2f\x6f\xcc\x07\xff\xcb\x90\x69\x2e\x1a\x3a\xf5\xfc\xab\x90\xe9\x2d\x1a\x3a\xe5\xfc\xeb\x90\x69\x2d\x1a\x3a\x65\xfe\x9b\x90\xe9\x2c\x1a\x36\x55\xfe\xe1\xbf\x7a\x25\xa7\xb3\xbc\xf9\xd7\xaf\xd4\xee\x2c\x3a\xfe\xdd\x2b\x38\x9d\x85\xce\xbf\x7f\x85\x4b\x0e\xce\x6f\x5f\xe1\x92\x43\xe7\x8f\x5e\xa7\xd3\x6a\xfb\xaf\xbe\x82\xd3\xa1\xf3\xd7\x5e\xa7\xd3\xc2\xf9\x9b\xc1\x85\x77\x38\x99\xbf\x15\xbd\xe2\x0e\xc7\xfc\xe3\xc8\x45\x72\x38\xc7\xfe\xc3\x1e\x3e\x78\xd6\xfe\xff\x71\x8f\xb8\xc2\xd6\xdb\xff\x29\x8a\x6d\x51\x9b\x03\xff\x75\x3f\x4f\x1c\x36\xff\xb7\xc8\x5d\x84\x70\x96\xfc\xf7\xc8\x95\x7f\x38\x4b\xfe\xc7\x1e\x31\x7a\x58\xf2\x3f\xdf\xc4\x12\x87\xf0\xff\x15\xc9\x92\xf0\x0d\x8f\xdf\x7e\x9b\xf0\x9d\x0a\x7e\xe7\x4d\x9c\x71\x58\xfe\x7f\xa3\x1a\xe0\xdf\x28\xfa\xdd\xe0\xc6\x52\x38\xef\x7e\x2f\x4a\x9d\x22\x9a\xf8\xfb\x51\xbc\x8e\xd2\x92\x3f\x7a\x93\x7e\x3b\x2c\xf9\xe3\x37\x09\xdf\xc1\x1f\x5c\xe2\x63\xe1\x2c\xf9\xd3\x57\x59\x62\xa9\xdf\x9f\xbd\xda\xc3\xbc\x14\xff\xf9\xab\xea\xe7\x25\xe4\xaf\x5e\xd9\x9a\x0a\xe7\xcb\x5f\xbf\xb2\x0d\x15\xce\x9d\xbf\x89\xe8\xa3\x3e\xe6\x7c\x1b\xdc\x88\x8c\xbd\x3e\xca\x7c\xfb\x33\x41\xde\xc7\x5e\x55\xb9\x6f\x7f\x10\x2d\x08\xcf\x96\xd2\xcf\xbe\xde\x9b\x42\xc4\xf1\xed\x3f\x7d\xb5\x4f\x85\x08\xe5\xdb\x9f\xdb\xaf\xa6\xe1\xbd\xe1\xdb\x7f\xb6\x5f\x59\x23\xfa\xc4\xb7\x3f\xff\x86\x71\x3c\x16\x90\xd1\x3f\x7f\x5d\xd3\x83\x5b\x85\xdf\xfe\xc2\xeb\xe3\x45\x70\xab\xf2\xdb\x7f\xf1\xba\x49\x0d\x6e\x95\x7e\x6b\x6f\x37\x27\xcd\x3d\x89\x64\xc6\x24\x29\x67\x7e\x15\x77\xf9\xfe\x95\xbd\xfb\xb6\x3f\xdf\x0f\x6d\x51\x26\xb1\x5c\x2e\x6f\x02\x09\xeb\x57\xdb\x2c\xd4\x32\x0b\xb5\x93\xf9\x74\x3a\x6d\x15\x37\x7f\x99\x18\x7e\xce\xae\xe9\x8b\x31\xec\xb8\x8e\x59\x9c\x25\xcc\xec\x56\xde\x4c\xd6\x62\xbb\x05\xb5\x50\x17\x2c\x4c\xd9\x1d\x9e\x5f\xd8\x51\xf2\x55\x78\xbe\x75\xcf\xd7\x2c\xdd\xca\x98\xa2\xc8\x99\x5f\x45\x33\xdf\xbf\x71\xed\x70\xee\xc9\xf7\x43\x97\x0a\x43\x26\x99\x40\x83\x49\x66\xee\x8c\x99\x90\x33\xbf\x0c\x26\x59\xc5\xd3\xe9\xb4\x89\xe1\xe7\x5d\x35\x7d\x19\x06\xb7\xb6\x61\x56\x3f\x23\xcc\xec\x56\xde\x8c\xdd\xfb\x2c\x15\xb7\x2a\x29\x5a\xcc\xfd\x45\x37\x09\x5f\x80\xe0\xdb\xdf\xde\xb3\xf1\x9a\xd0\x52\x49\x3c\xfb\x21\x99\xdd\xc6\xca\x81\x24\x14\x22\x45\x9d\x8d\x96\xdf\xf9\x4a\x4c\xd8\x0e\xd3\xff\xdd\xbb\x22\x0e\x60\x3a\x8e\xc6\xf4\xbb\x5f\x89\xc9\x6c\xdd\x16\x8d\x38\x00\xf4\x7c\xf8\x77\x3f\x30\xaa\x60\x9d\xe5\x94\x69\x34\xf0\x43\x54\x5b\xcb\xe0\x04\x43\xe1\x05\x81\x4b\x9a\x65\x79\x91\x3b\x21\xb6\xe8\xe1\xdf\xfd\xe0\xf7\xac\x12\xc7\x38\x7a\xbc\xb3\x5f\xad\x63\x1c\xc5\x0d\x5b\x03\xcb\xe1\xa8\x00\xa6\xbb\x62\xb8\x17\x0b\x0e\xb1\xfc\xbe\x85\xc5\x5a\xb0\x99\x88\x9c\x7a\xdd\xe5\xcd\x6a\xff\xc0\x2a\x40\x98\xb5\x9a\x45\x88\xf7\x55\xfa\x87\xee\xc6\x1a\xab\xc4\x32\x96\xcc\x66\x09\x14\x46\x93\x4f\xe6\xf3\x39\xc8\xb1\x58\xd9\xf8\x22\x88\x0c\x6a\x42\xa1\x47\x31\x9c\x23\x26\xda\x3f\xb2\xd0\x26\x09\x03\x65\x32\x43\x18\x18\x0d\x13\x50\x20\x72\x68\x32\x0f\x6d\x41\xd9\xf8\xc6\xf3\x06\x4e\x03\x8e\xa1\x49\x62\x87\x34\x94\xd6\x3f\x76\x33\x08\x37\x69\xcd\x64\x0a\x30\xee\xbd\x49\x2b\x64\x41\x19\xdb\xd1\x6a\x40\xa1\x1f\x34\x94\x8b\x26\xd6\x3f\xb1\x49\x2d\x58\xad\xcf\x43\x8c\x86\x51\x83\xc4\x12\x84\x89\xd4\xa0\xce\x22\xd7\xc8\x62\x54\x52\x70\xd1\x1b\x44\xfc\xa7\xb6\x56\x24\xb3\x96\x5a\x18\xfa\x07\x35\xc3\xfc\x61\x13\x05\x73\xff\x59\x44\xee\xb7\x8b\xf2\xcf\x6d\xf6\xd8\x18\x8e\xed\xfa\xf0\x90\xfa\xfe\x32\x32\xb7\x45\x81\x27\xf7\x5f\x45\xe4\x7e\x3b\x75\x7f\x1d\xc9\x0d\xdc\x57\x5f\x54\xe7\xbc\x3d\xfc\xbb\x1f\xfc\xc5\xe1\x5d\xc4\xd9\xbd\x5b\x48\xe5\xdd\x9e\xb2\x7f\xb3\xb7\xec\x9f\xc1\xb2\xc1\x93\x82\xae\x2b\x63\x3c\x2a\xee\x5e\xdc\xbd\xb7\x4f\xf5\x4e\xa3\x0f\x07\xde\xf2\xf0\xea\xef\xd4\x3e\x27\xed\x0f\xf5\x65\x46\xaf\xb2\x6f\xa1\x89\x24\x76\x2a\x7e\xd4\xec\x9b\x67\xa2\x73\x75\x96\x26\xb5\x5b\xf1\x0e\x9d\x91\x6a\xaa\x80\x0a\xa4\x94\x2a\x9c\x02\x27\xaa\x29\x9f\xa0\x93\xab\x0f\x33\x54\x49\xd0\xc9\xf5\x07\x01\xa5\x93\xcb\x0f\x33\x94\x4e\xce\x3e\x08\xc8\x76\x1b\x07\xe8\xd4\x26\x1b\x41\x0f\xec\x93\x8a\x1c\x69\x53\xc7\x45\x50\xa7\x9a\xd7\x50\x0d\xca\x66\xa4\x04\x1f\x9d\xd5\x90\xd3\xd9\xcb\x4b\x7c\x06\xdf\x30\x68\xd3\x32\x2a\x25\xe1\xab\xea\xe8\x0c\xb1\xa3\x08\x0a\x24\x70\x22\xd7\x19\xe8\x0f\x55\x18\x17\xfe\xf0\x80\x34\xa4\x2b\x4d\x63\x02\xe2\x7f\x20\xe5\x9b\x81\x08\x56\x32\x0c\x60\x14\xdb\x95\x8d\x19\xd9\x63\x87\xdf\x7b\x16\xb6\x87\xdf\x98\x61\xc3\x18\x72\x06\xc9\x10\xe0\x19\xf5\x03\xc6\xf5\x42\xf2\x2d\x76\x67\x3f\xb2\xa0\x92\x36\x0b\x51\x89\xdc\xc5\x4d\x96\x96\x22\x50\x5e\x0b\x88\x7f\x2a\x59\x51\x94\x79\x54\xb2\x83\x23\xab\x56\xc3\xc4\xb0\xd7\x32\x24\x7f\x5c\x77\x04\x41\x69\xc8\x9d\xe6\x9c\xe6\xe0\x9b\x38\x71\x1e\x55\x4d\xf2\xa1\xd6\xa0\x53\x83\x76\x21\x09\xcf\xba\xaa\xd7\xbc\x36\x8b\x1f\xfe\xa3\x43\x04\xd1\x49\x99\x56\x54\xd0\x14\x35\x03\x08\x2f\xac\xe2\x68\x1a\x41\xf1\x1c\x82\xb2\x41\x58\x1a\xcd\x9a\xb0\xfb\x20\x2c\x8b\xe6\x4d\xd8\x94\x14\xec\xe7\x28\xf3\x47\x47\x81\x7c\x79\xb4\x08\xf3\xbd\xbc\xe0\xbb\xa8\x2f\x07\x5e\xca\x14\x6e\x42\x1f\x22\x6f\x14\x18\xbc\xa8\x16\x9b\x4a\xca\x9c\xd6\x2c\xc1\xc5\x96\x33\x20\xc6\x58\xf3\xc0\x48\x4c\xa6\x35\x0d\x28\x62\x0c\xbe\x77\xf8\x0d\x72\x7a\x6b\x71\xe4\x8e\x14\x92\xaa\x3e\x31\x15\x25\x9e\x45\x6d\xaa\x8f\x71\x04\x5e\xe3\xd6\xe2\x87\xe8\x21\x92\x9c\xd3\x72\x1c\x90\x9f\x60\x3b\xe0\x03\x1a\x30\xda\x97\xdd\x7b\x00\x89\x9d\x82\x8f\xea\x29\xb0\x1e\x52\x86\x2f\x65\x93\xd8\xa9\xf2\x91\x3f\x55\x12\x09\x84\x4e\xb2\xb4\x46\xdf\x66\x3e\xc4\xc1\x07\x3e\xa1\x20\x77\xa4\x8e\xfa\xd3\x12\xf8\x1d\xc9\x06\x53\x89\x3b\xf2\x3e\x98\x9a\xbe\x23\xb5\x5b\x70\x77\xab\xdc\x7d\x88\x13\xd9\xec\x87\x29\x72\x2a\x26\x65\x5d\x73\x24\x4f\x9b\xcf\x31\x32\x7b\xdf\x59\x31\x79\x12\x97\x50\x51\x17\x04\x04\x41\x67\xb0\x4b\x09\x28\x83\x6c\x5d\x3d\x89\x64\x50\x77\x8f\xb7\x3a\xa7\xd1\xb9\xb9\x90\xce\x2d\x47\x9d\x63\xb6\xba\xbc\xbc\xcf\x20\xa1\x22\xf2\x0c\x92\xaa\xa6\x48\x8f\x66\x44\x37\x4f\x8f\xde\xbd\xc5\x7f\x2b\xa0\xcc\x9d\x34\x8d\x59\xa7\xb1\x81\xa8\x29\x3c\x50\xe3\x1a\x62\x9a\x0c\xed\x14\x78\x62\xfa\x9a\x17\x57\xcd\xfb\x9c\xe2\x87\x0b\x7d\x3e\x01\x4a\xd2\x51\x49\x04\xd5\xc8\x43\x9b\x9a\x43\xd2\xb6\x15\xcc\x67\x26\x9e\xc4\x8d\x59\x7f\x36\x25\x7d\x50\x91\x13\xc6\x21\x20\x26\xc4\xa4\x69\x4c\xb3\x35\x24\x76\x88\xd8\xf6\x40\x23\x05\xf8\xfa\x33\x49\x5b\xb1\x17\x6c\x53\xe1\xbc\x02\xf3\x4d\x59\xd2\x05\x36\x26\x4a\x5a\x6c\xca\x8b\xec\x4e\x45\x79\xeb\x1a\x9e\xc1\x2c\x43\x95\x0d\x3d\xd6\xa0\x01\x62\x24\x51\xe3\x45\x1d\x6c\xed\x70\x17\x6e\x9d\xf5\x28\xea\xa9\x0e\x1f\xad\xd6\x6f\xf1\xbb\xa3\x23\x26\x0e\xd0\x59\x5c\x87\x8c\x35\x18\x7c\x80\xa1\x22\x62\x88\xd6\x64\x30\xe4\x0c\x23\x48\x2a\x30\xf9\x04\xed\xb5\xbc\x1b\x66\xee\x5d\x42\x9d\x47\x8d\x5d\xbc\xfd\x34\xcc\xc1\xc1\xfc\xe8\x28\x1e\x2e\x53\x54\xb0\xb9\xc3\x40\xfb\x64\x54\x47\x54\x4e\x19\x33\xc4\xb2\x3d\x16\x41\x62\x78\x39\xce\x18\xbf\x5c\xe2\x3b\xb5\x1b\x2d\xa6\x70\xe2\xd4\x2d\x4b\xe1\x83\xee\x12\x89\x68\x8a\x84\x0d\x11\x0a\x43\x8a\x86\x50\x58\x92\xbe\x65\x4c\xa1\xb0\x5f\x23\x14\x26\x4c\x28\xf7\xa4\x18\x29\x94\x7b\x28\x94\x7b\x28\x14\x16\x0a\xe5\xde\x11\x0a\x8e\x0a\x68\x5c\x4b\xba\xe6\x30\x9f\x3f\x63\xc8\x87\xb8\x9e\x22\x10\x03\xe0\x9e\xce\x38\x10\x04\xd9\xc2\xa7\x22\x93\x86\xb6\x7e\x8e\x47\x76\x1a\xd4\x91\x36\x72\x62\xa6\x07\xe4\x1e\x07\xe8\xdc\x33\xbb\x40\x0f\x30\xc4\x3e\xea\x27\xd9\x03\xae\xf3\xec\x95\xf8\x8e\x87\xbe\xec\x49\xc4\x73\xd9\x5e\x37\x19\xc2\xdd\xf0\x40\x29\xeb\xca\x02\xf4\xa5\xb8\x31\x7e\xa2\xda\x2d\x6e\xfc\x21\x8c\x3f\x69\xe3\x4f\xc6\xf8\x93\xbd\x43\xd0\x96\x53\xce\x90\xbc\xbb\x00\x82\xb6\x1d\x20\x0c\x13\xe2\x06\x6e\x1d\x82\x67\xfe\x77\x7c\x60\xf4\x4f\xcc\x51\x0f\x10\x6a\xe0\x5f\x5e\x76\x46\x02\x98\x6f\x51\x31\xd6\xe8\xf0\x91\x08\x8c\x4b\x87\x7d\x49\x8a\x4d\xc1\x32\x46\x2b\x1c\x1c\xe8\x4d\x75\x71\xe9\xcf\xa1\x13\x82\xc6\x1c\x30\x6c\x6c\xa7\x20\x41\x12\x08\x73\x0b\xee\x3e\x90\xda\xf1\xec\x03\x7d\x2c\x7c\xa0\x51\xe9\xe8\x08\x3b\x20\x49\x23\xf9\xe8\x28\x6e\xfc\x43\x8a\x71\x57\xb8\x49\x23\x25\x91\xcc\x22\xc6\x9c\x56\x43\x31\x04\x41\x61\x0a\xa9\x24\x66\x1f\x68\x57\x4d\x78\x44\x4d\xfc\xbb\x6a\xe0\x5d\x35\xa8\xf6\xed\x30\x66\xbb\x45\xb3\xb9\xaf\xbb\x1e\x23\x4d\x54\xa0\x2c\x40\xe8\x83\x8a\x61\x81\x5d\xe1\x05\xed\xbd\x85\xfc\x2f\x8e\x99\x81\x6b\x0d\x49\x69\xc9\x2e\x8c\x92\xdd\x31\x8b\x2b\xf0\x05\x1f\x1b\xb9\x96\x34\x3a\xbe\x91\xa4\x25\x35\x5a\xe1\x80\x46\x92\xa4\x19\x21\xe6\x40\xb1\x1f\x99\x31\x3e\xe2\x87\xae\xe0\x09\x65\xf3\x55\xc1\x92\xb4\xea\xf1\x1b\x70\xc8\x8b\x31\xc5\x79\x8d\xed\x73\x92\xe5\x55\x46\x12\x45\xc3\xce\x21\xf0\xa2\x5c\xdc\x6e\x14\xb2\xeb\x5f\x4a\x32\x12\x9f\x31\xb5\xe4\x45\x18\xdf\x94\xdf\x00\x54\x7c\x2d\x2f\x5c\x0b\x18\x1f\xa7\xd2\x27\xec\xe8\x48\x34\xfe\xf0\xc6\xf8\x8e\x6c\x91\x53\x4d\x59\x3f\xab\x36\xeb\xe2\x00\x7d\x9e\x48\xab\x93\x5b\xab\x31\xc7\xb2\x81\xf1\xd8\x7a\x24\xf1\x78\x22\xad\x0e\xef\xb6\xc8\x96\xa1\x35\x66\xf6\xac\x7a\xdb\xa1\x3a\x41\xc5\x8d\x76\x9a\x33\x8c\xc0\x3b\x46\xbe\xd6\x23\xdb\x2d\x9a\xb6\x42\xff\x1a\xaa\xb2\xeb\x9c\xbc\x2b\x6e\x40\x36\x9f\xc5\x0a\x1f\x49\x70\x74\x04\x3e\x92\xd9\x7c\x36\x5b\x70\x9e\x17\x54\x5c\xf9\xc0\x27\x12\x27\x0a\x59\x9c\x80\x19\x8d\x9f\x45\xfc\xe5\x05\xa6\xe6\xf3\x99\xcc\x2e\x15\xb7\x53\x0b\xb9\x0c\x66\xa7\xe6\x73\x79\x98\x5a\xcc\x13\x05\x98\x56\x2c\x16\xd2\x66\x4a\xb1\x60\x95\xc5\xf0\x7c\x16\x26\xe5\xb2\x18\x61\xa6\xe5\xb2\x58\xba\x68\xa1\x2b\x12\x05\x1b\x5d\x31\x9b\xce\xda\x55\x67\x72\x36\x41\xf9\x4c\x21\xbf\xfd\x82\xde\xc0\x48\x73\x59\xd7\xc0\x05\x58\x69\x43\x5a\xe1\x69\x51\xeb\x4c\xa7\x2a\xd0\x76\xaf\x15\x9a\xf1\x57\x5d\xda\xae\xed\x8b\x07\x69\x47\xb9\xe8\x02\x95\xa1\x05\x5e\xe4\x48\x2d\xc9\xab\xd5\xb9\xf4\xc0\xc3\x5f\x5d\x60\x8c\x57\xc6\x5c\xfa\xd2\x1e\xdd\x21\x22\x08\x0c\x24\xb9\x67\x91\x4e\x70\x01\x4f\xaa\x3b\x16\x84\xd1\x57\x40\xd0\x4e\xc2\xf6\xc6\xe6\xba\x31\x64\x4b\x5a\x6c\x02\x62\x53\xa3\xe8\xe1\xee\xce\x29\x30\xe3\x4b\xf8\xaa\xe7\xd1\xbd\x04\x87\x04\xa1\xc8\xe6\xb3\x04\xe6\x52\x26\x22\x6f\x22\x36\x9b\xaf\xa0\x01\xde\x78\x0c\x07\x5c\x1e\xdb\xe1\x2c\x8c\x91\xf6\xe8\x48\xfd\xe4\xbc\x3c\x8d\x27\xb3\x1f\x24\xe4\xe8\xc8\x09\xcb\x7e\x74\x04\x3e\x11\xd9\xec\xd1\xd1\x81\xa1\xa9\x47\x47\x07\xbc\xf9\x4f\x28\x65\xe9\x4c\xc6\xa6\x2c\x97\xce\x67\xd2\xdb\x38\x80\x6f\xfe\xed\x93\x65\x08\x22\x1e\x8e\x52\x21\x80\x62\x26\x4f\xd8\x15\x14\x73\x69\xdc\xc6\x1f\xa1\x44\x3b\x0c\x36\x82\x67\x46\x55\x4f\x9e\xcd\xb5\xe9\xc9\x33\x5c\x98\x9e\x60\xa8\xb9\x2c\x3d\xc1\xb6\x28\x03\x04\x21\x24\x7d\x6b\xc5\xff\xf9\x82\xa2\x28\x33\xa3\x95\x60\x3a\xdc\xdb\x39\xc1\x50\x4d\x92\x0d\xfc\x56\x54\x9d\x88\x4e\xe2\xb5\xfc\xce\xfc\x24\x0e\x8e\xbd\xa1\x9a\x35\xe4\x98\x47\x90\x7f\xec\x4f\x84\x91\x48\x8a\xb9\xaf\x89\xc5\x61\x3d\xda\x18\x16\xe7\xdb\x1e\xcc\xe0\x43\x15\xbc\x27\xec\x86\x75\x9f\x15\x5e\xd1\x8d\x23\x5b\xeb\x5f\x33\x71\x46\xab\x3b\x74\xbb\xab\xeb\x8c\x24\xe8\x73\xd1\x4c\x37\xb0\xef\x00\x0b\xeb\xcd\x5f\x78\x79\xb7\x2b\x2d\xed\x47\xfb\xec\xf4\xaa\xc8\x86\xa4\x96\x69\x59\x06\x6c\x54\x19\x13\xea\x2d\x09\x57\xea\x65\x49\xb0\xbf\x01\xd4\xd2\x1d\xd4\x26\x18\xa2\xf4\x5c\xc1\xdd\x81\xaa\xa2\x7d\x37\x77\x6b\xbe\x51\xef\x79\xfe\xcd\xbe\xd6\xee\xc3\xa4\x85\x20\xe1\xd1\x03\xed\xe5\xe5\x80\x7f\x79\x31\x26\x7f\x24\x49\xf2\x70\xba\x6d\x4c\x02\xe1\x07\x7e\x17\x8c\x15\x60\x71\x78\x77\x9d\x05\x58\x6f\x16\xab\xf6\xa3\xc5\x6b\x96\x57\x65\x54\x22\x0d\x2c\xc7\x2a\x2a\x42\x3c\xc7\x2a\x4a\x3b\xa1\xc5\x25\x63\x81\x3d\x73\x1e\xdb\x14\x9d\xa7\xda\x4e\xe9\x4f\xa4\xf9\xf1\xf2\x32\xfb\x88\x7d\x76\xd7\x69\x3d\x2d\xe4\x15\x2b\x16\x21\x56\x25\x42\xaa\x52\xa8\x54\xc5\xbd\x52\xa5\xf7\x48\x75\xe6\x93\xaa\x39\x8d\x76\x09\xd6\xe0\x29\xb2\xf5\x45\xfc\xf6\x3c\x51\x73\x70\x10\x68\xd7\xd1\x51\x9c\x3f\xde\xf1\xd6\x66\xad\x4d\xc0\x38\xbc\xcd\x9f\x3d\x94\x7c\x24\x5d\x54\x7c\xd6\x3e\x91\x1e\xe8\xd1\x11\x6f\xa5\x84\xb7\xf9\xe8\x48\xfb\xe8\x2a\x7f\x74\xc4\x7f\x0c\xcb\x6e\x32\xe1\xc4\xca\xfb\x0e\xe4\x9f\xc8\xb7\x63\xe7\x3f\x85\x8a\xd2\x28\x15\x22\x4b\x2b\x9e\x4d\x40\xf0\x24\x19\x92\xf9\xe8\x88\xf7\x03\x82\x44\x3a\xcd\xf2\xf0\x24\xa2\xa2\x30\x9a\x42\xaa\xb1\x01\xdf\x21\xca\x68\xca\xe1\xfb\x19\x7b\x0c\x6c\x60\x14\x83\xd3\x0e\xde\x58\xa4\x60\xc5\xaf\x0c\x2f\xb5\x37\x90\x29\x7c\x89\x48\x35\x96\x27\xee\xe7\x26\xe0\x73\xb3\xf0\x01\x0a\xda\x48\xc9\x64\x0d\x6b\xc1\xc7\x33\x85\x2c\x82\x0a\x46\x8a\xf1\x83\x31\xf2\x64\xf2\x08\xaa\xdb\xcf\x56\xb0\xe4\xb3\xf5\x7a\xee\x25\xcd\x01\x63\xe8\xb3\xbe\x24\x15\x6e\xba\x9c\xd8\x57\x1b\xb7\x7e\x48\x59\xe0\xe5\x9e\x4c\x1b\xc3\xef\x2e\x8b\x04\x47\x46\x57\x82\xb1\xfe\xf1\x7d\x86\x94\xdb\xc2\x5d\xe3\x7b\x6b\xb0\x9a\x3e\x73\x40\x8b\xc9\x34\x07\xfc\x0f\x95\xdf\xc3\xc4\x6d\xc8\xdb\xeb\x26\xd8\x8e\x06\xea\x0a\x1f\x05\x03\x4f\xda\x0f\x62\x78\x03\x84\x3a\x4f\x61\xf0\xec\x35\x7c\xc9\xd1\x89\xd5\xf2\xff\xa3\xee\x5b\xbb\xdb\xd6\x91\x04\xbf\xef\xaf\x90\xd9\x77\x74\x08\x0b\xa2\xf5\xf2\x4b\x12\xac\xcd\x73\xda\xd3\x49\x9c\x4d\xec\xdc\xde\xe3\x68\x7c\x69\x09\x96\xd8\xa1\x49\x2d\x08\xc5\x76\x5b\x9c\xdf\xbe\x07\x4f\x02\x20\x29\x3b\x49\x77\xef\xec\x3d\xe7\xc6\x22\x1e\x85\x42\xa1\x50\x28\x00\x85\xaa\x59\x38\x5b\xe2\xf7\xe1\x8a\x6f\xe4\x96\xc1\xdb\x74\x4d\xfe\x82\x1f\xde\x87\x2b\x27\x5f\x45\x62\xaf\x2b\xc7\x11\x46\x97\x53\xe5\x34\x82\xcb\xa4\x8f\x76\xe2\x5d\x4a\xbe\xbd\x64\x3a\x41\x94\x2c\x5e\xa6\xf7\xe8\x91\x6b\x1f\x4a\x15\x11\x4e\xbc\xd4\xd5\x23\x1f\x07\x5d\xcb\x0a\x49\xcf\x51\x98\xd9\x61\xea\x55\xd8\x0e\x31\x72\xdc\xdf\xdd\x7e\x57\xc5\x1f\x4a\x93\x17\xf3\xb9\xc9\x6a\x22\x00\x29\x87\x13\x06\x3c\xa4\xca\x9b\xdb\x88\x52\x2c\x97\x85\xba\xf2\x5b\xa1\x05\x98\xc1\xd1\x2d\x7e\x92\x0e\x56\x7f\xa0\xd1\xda\x2a\x4f\xc1\xb4\x9a\x96\x8e\x5b\x5e\xb1\x55\x51\xcc\xdf\x62\xac\xf9\x1c\xff\x80\xef\xd8\xb8\x68\xff\x1e\xf4\x76\x25\xdb\xb9\xf5\x31\x1c\xec\x9a\x0c\x15\xb8\x81\xe4\x06\xb0\x26\x5b\x86\x8e\x1b\x98\x50\xb7\xc5\xd0\xd5\xad\x6e\x0f\xa3\x2b\xdb\x29\xfb\x9c\xbc\xe3\x07\xe7\xe1\xfc\x2d\xef\x6f\x42\xe3\x07\x2e\x53\x4c\xd7\x64\xc5\x19\x26\xe6\x67\x98\xc2\xb5\xc9\x02\x67\x40\x5f\x21\xa9\x30\xc0\xa3\xed\x43\xab\x61\xe6\x2a\x10\xea\xa3\x33\xa1\xb4\x5b\xac\x79\xfa\xbb\x2c\x52\x9e\x73\x1d\x90\x1b\xf9\xda\x83\x10\xe3\x88\x38\x38\x9d\xc7\xf8\x3c\xcc\xbe\xfd\xaf\x35\x5e\x63\xc3\xa9\x72\xbf\x3f\xa2\xe3\x6e\xef\x80\xfb\xdd\xc5\x01\x4e\xfe\x0f\x2b\xa0\x9d\x14\xed\xd8\xd3\x54\xdc\xe9\xc1\x75\x60\xb9\xd8\xdb\xf2\xfd\xe6\xaf\xe7\xa0\x40\x45\xa2\x4c\xc2\xbb\xf3\x94\x3b\x47\xfd\x61\x58\x23\x07\x9f\xec\xc7\xf1\x81\x18\xe4\x39\xc8\xf9\x59\xb5\xf0\x68\xe3\x08\xc7\x12\x8b\x0b\xcd\x5e\x0e\x9c\x88\xaf\xc6\xf6\x8e\x86\x64\xba\xec\x4c\x83\x99\x88\x19\xf5\x29\xbd\x0b\xee\x37\x9b\xed\x05\x1e\xaa\xd9\xe7\x4a\xf3\x8f\x54\x74\x9d\xde\xca\xe4\x1a\xd9\xe9\x64\x9b\xd2\x38\xcf\xdd\xd9\xc9\x3a\x71\xc3\x14\x62\xce\x88\x5c\x92\x2a\xa7\x7e\x1c\x09\x75\x0d\x58\x28\xce\x03\xe8\x94\x2f\x0d\xac\xa8\x78\x13\xc5\x14\x13\x1f\xa3\x93\xde\xae\x1d\xae\x76\x8c\x44\x93\xe7\x85\x18\xdd\x6c\x06\x9d\xe3\x03\x00\x82\x2c\x25\xd4\x97\x3b\x38\x6a\xd5\xe2\xc1\xd3\xcc\x84\x89\x9d\xdf\xb6\x73\x87\x34\x58\x61\x32\xc3\x09\x0d\x17\xf8\x22\xc3\xf3\x36\x76\x12\xc4\xdd\x2a\x45\xed\x2e\xdb\x6d\x8e\xec\xab\x3f\x1d\x49\x9f\x48\x37\xae\x97\x64\xea\xa2\x13\x01\x8a\x08\x8c\x50\x29\x8f\x5f\x8a\x36\xa2\x1b\x9f\xb4\x29\x42\x7d\x20\x23\x3a\x48\x8d\x03\xcb\x5b\x54\x0a\xb9\x20\xcb\x10\x51\xe7\xd7\x38\xe0\x17\x9c\x9c\x4b\x0c\x2d\xc2\xa6\x0a\x3e\xa1\x93\xee\xb0\xdd\x65\xaa\x4a\x21\x6c\xd4\xc5\x27\x51\x37\xd8\x2a\x54\xd3\x2d\x26\x0b\xb1\x42\xfa\x04\xa6\x60\x94\xa8\x70\xfe\xad\x96\x71\xcc\xac\xeb\x77\x47\xf8\x04\x75\x46\xb8\xdd\x96\x21\xd8\xe6\x38\xc6\x94\x03\xf0\xb3\x4b\x3c\x95\xbc\x28\xda\xe4\x1e\xbf\x13\x50\xbf\x24\x74\xb6\x2f\x8d\xc1\x4d\x44\xb0\x9f\x48\xda\xa9\xeb\x06\x21\xaa\x16\xbe\xad\x83\x94\x97\x5e\xc7\xcd\x99\x81\x52\xe1\x87\xaa\xd0\x0f\x9c\x9c\xad\x18\x29\x4e\x02\x10\xe7\x26\x01\xb9\x7f\x4d\x65\x39\xd0\xdb\xe5\x87\xb6\x56\x94\x5c\x52\x8d\x7a\x04\x31\x30\xee\x3f\x33\x98\x4e\xd3\x9b\x06\xd6\x57\x9f\xc6\x0c\xca\x76\x53\x0b\xe4\xbf\x45\x30\x41\x46\x10\xac\x6c\xaf\x07\x8a\x22\xe2\x9c\x65\x44\x82\x19\xbd\xe7\xde\x68\xf9\x15\xb2\xaf\xf2\x21\x86\x89\xd1\x70\x83\x30\x09\x93\x4a\x26\x03\xc4\xe4\x31\x44\x21\x09\x2c\x75\x32\xb8\x47\x22\x25\xb8\xdf\x8b\x4a\x99\x0f\x2a\xf3\x81\x67\x3a\xba\x6c\x70\xdf\x42\xb8\x22\xf9\xa1\x85\x92\x72\xb2\xdd\x64\x09\x54\x55\x03\x36\x22\xa5\x66\xf6\xa2\xd1\x93\xda\x0c\x1f\x69\x45\x29\x75\x96\xa0\xc2\xa6\x98\x8c\xa3\xfc\xcd\xa7\x60\xc4\x9d\xcd\x87\x4a\x40\x9a\x85\xa4\xd3\xf8\x10\x76\x81\x3c\x58\x6f\x90\xdc\x9c\x3c\x3a\xb0\xe0\xca\x2c\x8f\xa1\x1d\x07\x71\x24\xb7\x62\x96\xf0\x35\x7d\xe1\x5b\x32\xf6\x92\x4e\x8d\xd1\xa5\x0d\xce\x54\x72\x74\xa9\x39\xba\xed\xf6\x08\x17\xf3\x3e\xcf\x17\x98\x7e\x0a\x33\x8a\x49\xf4\x77\x3c\xe7\x07\x96\x6a\xf1\x78\xb5\x0c\x8d\x10\x79\xce\x8a\xb8\xc0\x54\xfb\xf0\x7f\x1f\xae\xfc\xea\xf5\x07\x16\xd5\x2b\x1a\xfa\x49\xe0\x26\xd0\x52\x51\xe3\x7e\x90\x1f\x3f\x49\xb8\x57\x08\x4b\x45\x45\x54\x84\x57\x9b\x8d\x7f\x55\xa9\x7d\x18\xd7\xd8\x59\x51\x03\x5e\x01\x00\xaf\x78\x7b\xfc\x10\x97\x35\xfa\x22\xc9\xa2\x53\xc6\x11\x2a\x6c\xe8\x09\xb2\x74\xc8\xb2\x27\xf0\xf2\x21\xfa\x87\x54\x9b\xbc\xac\x93\xb9\xb8\x69\x9c\xdf\x37\xbc\x96\x2b\xd3\xca\x30\x2f\xf1\x94\xe3\xe3\x1c\x2f\x17\x21\x20\xb5\x47\xc9\x3a\x9d\x56\x1d\xa7\x25\x86\xd3\x7b\x11\x1e\x72\x24\xe3\x1d\xe1\xed\x91\x8d\xb2\x22\xfc\x74\x05\x55\x28\xa8\x0c\x60\xa4\xb8\xd7\xd9\x50\x05\x34\x55\x81\x73\x58\xcd\x0c\x25\xc1\x6c\x19\x26\x09\x8e\x33\x95\xe5\x33\x31\x0b\xf1\x65\x97\xfd\xd3\x9b\x02\x27\xd0\x51\x86\xa2\x49\x22\x28\x14\xa4\xdc\x9d\xbf\x5f\x45\xbb\xc2\x73\x36\x18\x56\xe5\x17\x4e\xb2\xd5\xf4\xcd\x64\x30\x67\x2b\xc0\x8f\x11\x6a\x41\x44\x27\x59\x43\xed\xa4\xf3\xaa\xa0\xcb\x7b\xdb\xc3\x77\x55\xd5\x35\x8c\xa1\x70\x99\x7a\xa5\x46\xe4\x8a\x0f\xc3\x8d\x1a\x86\x74\xfb\x30\xd8\x3b\xa4\x2d\x9e\xc8\xd7\xcd\x66\x38\x3e\x6a\x36\xfd\xb0\x85\x8e\x00\xbc\xd9\x3a\x7c\xe1\x4f\x0f\x5f\x08\x46\x37\x3f\x3e\x7c\x37\x68\x39\xd9\x3e\x1e\x95\xc3\x55\x0c\x67\x5e\x35\x61\x2a\x9c\xc3\xfb\x1c\x39\x93\x4d\x6e\x80\x88\xa5\x54\x64\xdc\xae\x63\x1a\xad\xe2\x87\xb3\x55\x38\x8b\xe8\x83\x7f\x03\x89\xe9\x30\x1c\x00\x78\xc3\xfd\x01\xa7\xb1\x19\x44\xe2\xd3\xe2\x3a\x54\xe7\x26\xcf\x9b\x41\xae\xdc\xab\x9c\x46\x22\x18\x98\x3d\x0c\xaa\xe2\x78\x7c\xa4\x29\xa8\x2e\x93\x2a\xc9\xe8\x38\x8c\x7f\x82\xf5\x85\x7f\x78\xdd\xc5\x82\xf7\x8b\x2e\x32\x11\xf3\x13\x9d\x7c\x06\x9b\x92\x66\x93\x72\x36\xa5\x9c\x4d\xff\x05\xc4\x71\x3a\xfe\x04\xa3\x29\xe2\x6c\x9f\xde\xc4\x90\x0d\x33\x2e\x8d\xbb\xea\x88\x54\x41\xae\x72\xff\xbf\xd9\xcc\x94\x91\x82\x32\x98\x32\x08\x60\x84\x11\xf1\x63\x00\xe7\x68\x1d\x28\xc2\xf8\x18\x12\x2e\x45\xf4\x55\xe6\x5c\x89\x93\xf9\x66\x63\x9d\x75\x2a\xf9\x54\xcd\xc0\x0c\xf9\xb0\x90\x0e\xd5\x2c\x20\xfb\x06\xe0\x02\x25\x22\x64\x1c\x4e\xb2\x35\xc1\x56\x5f\xfc\x2b\x78\x03\x9f\xec\xf1\x9e\x1f\x4f\x7a\xc3\xae\xb0\xcc\xd9\x59\x58\x97\x3c\x6b\xb6\x08\xeb\xee\x09\xfb\x46\x6d\xa0\x58\x21\x62\x16\x27\x27\xbd\x41\xb3\xb7\xbf\x0f\x17\x27\x27\xdd\x03\xf5\xeb\x88\xfd\xd0\x2b\xaa\x03\x74\x05\xe0\x2a\x2f\x93\xd7\xb0\x52\xa8\xe4\x99\x72\xac\x97\xaa\x52\x56\x7c\x98\xdc\xd2\x35\x74\x10\x2c\xae\xa9\xa8\x50\x3d\x5e\xc2\xed\x1a\x0b\xfb\x45\x3c\xf9\xcc\x6d\xd1\x82\x1b\x22\xac\xc9\x79\x54\x48\x0c\x86\x18\xc6\xc5\xa5\xd5\xb6\x43\xb4\x5d\xbd\x63\x5f\xaa\x3d\x61\x0f\xe8\x93\x35\x6b\x1f\xe5\x9e\x95\x89\x5d\x7a\xe1\x0f\xd9\xc9\x41\x71\x61\xd6\xf7\x14\x2a\xf2\xc0\xee\xa8\xaa\x59\xad\xaa\x14\xf0\xc5\x86\x66\xbc\xae\x68\x5a\x5a\x55\xaf\xed\xa3\xbf\x20\x0b\xbf\x17\x87\x8c\xa5\x43\xdc\xe0\x66\xa1\x8f\xa5\xcb\x99\xd7\xc5\x51\x76\x39\xd3\x8c\x88\xac\xee\xe6\x2a\x8a\x45\xd9\x69\xf2\x5d\xb8\x95\xf6\xb5\xed\xd0\x5c\x4f\x39\x79\xaf\x56\x59\x91\x49\x42\x9f\xcd\xa5\x6d\x85\x4e\x13\xa6\xb7\xb3\x2e\xde\x6e\x2d\xf7\x3a\xba\xf5\x01\xfc\xbe\x1d\x16\x0d\xe3\x68\xe6\x03\x78\xbd\xb5\x58\x11\x0d\x1d\xc0\x57\x5b\x4b\x32\x1e\xfd\x86\x99\x7e\xbb\x5e\x2c\x7d\x00\x3f\x6f\x2d\x7d\xf6\x5d\x81\xe5\x8a\xce\x03\xaa\x2b\xca\xf4\xae\x85\x98\xaa\x00\xde\x3d\xa3\xd8\x7b\x1e\x32\x15\xbe\xd8\x56\xf4\xa5\x86\x78\xfe\x8c\x62\x02\xa2\x78\xe5\xa0\xb7\x5e\x0f\xa3\x07\xf4\x02\xbe\x40\x78\xa4\xcc\x85\xef\x46\x77\xe8\x9c\x01\x94\x67\x17\x6f\x0a\xb1\xed\x6a\xe8\xe7\xf0\x05\x5c\xc0\x5b\x73\xb6\xd1\xfb\x60\x11\xa7\xd7\x61\xfc\x2a\xbd\x5d\xb1\xcd\x2b\x3e\x5b\x61\x11\xcd\x12\x79\xb3\x74\xf5\xe0\xd9\xbc\x5e\x18\x75\xbf\xe1\x51\xfb\x4b\x99\xdc\xc6\xbb\x03\x3b\xee\x99\xbb\x3c\x9e\xa8\x9e\x52\xce\x84\xaa\xc7\x28\x4b\xd7\x64\x86\xdb\xe9\x77\x4c\x3c\x49\x81\x7b\x74\x65\x8b\x49\x27\xd4\x53\x4d\x1e\xfc\x84\xbe\x4f\xbc\x88\xb3\xa3\x37\xf4\x3c\x9b\x26\xac\x1c\xfa\xe3\xb7\xc7\x4f\x79\xe3\xb7\xc7\x7b\xf6\x4f\x09\x8c\x15\xe8\xdb\x10\x39\x45\x48\xa4\x7c\x75\x5f\x55\x51\x44\x2c\xca\xff\xb0\xfb\xcc\xc4\xd2\xcb\x30\xc3\x8c\x3b\x11\xb1\x63\xc2\xc8\x9e\x7e\x43\x6c\x21\x57\xa2\xb4\xd9\xe4\x57\x0e\xae\x9d\x13\xf0\x97\x6c\x75\xe2\xc2\xfa\x05\xf5\x3b\x00\xc0\x77\xd5\xf5\xea\x4c\xa1\x2a\x20\xbc\x2f\x78\xca\xdd\x8d\x50\xc8\xb8\x2a\x82\x77\xf0\x81\xf1\x16\xbc\x7a\x46\x8c\x61\x17\xbe\xc3\x90\x05\x8f\xbd\x67\x3c\x26\x7b\xff\x1a\xbd\x9b\x74\x86\x03\x3e\x6f\x3f\xa2\x9d\xee\x68\xa7\xbb\xe3\xa8\x35\x76\xb8\x29\xff\xa3\x88\xea\x58\x7a\x15\x65\xde\xcc\xd0\x7b\xb8\x84\xaf\xe1\xeb\xba\xdb\x9e\xdf\x0d\xae\xad\x59\x59\x60\x25\x6b\x54\xd5\x29\x58\x03\x08\xf9\xf3\x12\xbe\x45\x3b\xdf\xd8\x14\x7f\x59\xb5\xfe\x0a\x10\xf6\x15\x67\x70\x37\xe3\x33\x89\x2d\xc4\x95\xf9\x0b\x4c\xc5\xba\xad\xd1\xf7\x31\x80\xd7\xea\xec\xc7\x5a\xb3\x46\xcf\x09\x77\xff\x43\x3c\xcf\xa3\xdb\x43\x8a\xf0\xbf\xf5\x10\xea\x4e\x82\xfd\x61\xc7\x5e\x64\xe9\xbd\x61\x80\x8f\xb7\xac\x69\x7a\x09\xe0\x4c\xf3\x5a\x68\xd3\x3e\x00\x76\x37\x0c\xa3\xf5\x6a\x1e\xd2\x07\xe1\xcf\x6d\x89\x6d\x24\x01\x78\x5b\x5c\x26\x56\x34\xf5\x07\x59\x5c\xfb\xbf\x3d\x6e\x3b\x49\xa8\x17\xef\x76\x73\x3e\x00\xc1\xdf\xd2\x28\xe1\x86\xfe\x39\xf8\x43\xbc\x66\x62\xcd\x8f\xc4\xb9\xf8\x0f\x40\x1a\x3d\x7b\xa7\xf3\x94\x46\xd0\x6c\x62\xbe\x11\xc2\xc6\x46\xa8\x96\xe4\x75\x67\x53\x6c\xf2\xe6\x56\xdd\xf2\xab\x8c\x08\xbd\x86\x04\x15\x66\x91\xaf\x5b\x55\x73\x4d\x47\x44\x03\x6d\xda\xf6\xc3\x49\x6f\x17\x0f\x3b\xfc\xde\xa2\xc5\x8d\x9a\x5b\xbd\x5d\xcc\xc9\x15\x3f\x8b\x5c\x96\xd1\x9f\x5f\x9c\x7e\x86\xa8\x33\x0a\xc7\x2f\x47\x61\xab\xb5\x6d\xba\x2c\x51\xd4\x0a\xb7\xde\x1e\xc3\x19\x8a\x5a\x7e\xd8\xea\x82\xed\xc5\xd6\x68\x59\xd9\x5f\x55\x60\xaf\xa7\x4e\x62\x9e\x54\x11\xd7\xaa\x73\x7c\x64\xe4\xbe\x58\x1d\xd1\xc8\x5e\xc8\x27\x0e\x4b\x48\x9c\x31\x95\x0f\x23\x66\xa5\x0c\x5d\x23\xa9\xab\x91\x58\xa7\x35\xfd\xa1\x1a\x56\x3c\x46\xdd\x49\x32\x7c\xf6\xc8\xb6\xf1\x5e\x0f\xb4\x29\x0c\x45\x4d\xf2\xfc\x9a\x2d\x59\x73\x6e\xbe\x0d\x9a\x8b\xb7\x41\x4b\x48\xb6\x4b\xf6\xa4\xed\x76\x99\xbf\x21\x9a\xd7\xd0\xa1\xbd\x7d\xb4\x60\xe6\xd4\xb3\x5f\xaa\x3c\x59\x9d\x6d\xda\xd9\xff\x4f\x80\x81\x11\x5c\xf3\xff\xb7\x97\x5b\xc3\x10\xce\xf8\xff\xdb\xcb\xcd\x60\x04\x67\x4f\xf0\xe1\x73\x8a\x64\x16\x2b\x0c\x86\x6a\x03\xd2\x41\x08\xc5\x93\xce\x30\x3e\x41\x98\x4d\xdd\x76\x3c\xc4\xed\x78\xd4\x41\x68\xc7\x67\x69\x60\xb3\x61\x45\xae\x26\xf6\x32\x91\x61\xfa\x2e\x4a\xf0\xeb\x30\x5b\xfa\x97\x86\x99\x2d\x06\xd0\xfa\x9a\xd6\x8c\x55\xeb\x6a\x1b\x9f\x2b\x33\xca\x7f\x54\x6b\x75\x6d\x55\xa1\x51\x60\xd8\xc2\x5b\x71\x84\xb1\xb0\x2b\xa9\x33\x58\x06\xfe\xac\xbd\x84\x18\xc6\xf6\x91\xe9\x50\x3d\xee\x0e\x0e\xe0\x02\x05\x7d\xb8\x42\xac\xdc\xad\x79\x8b\x77\xb3\xbb\x62\x7b\x35\x23\x65\xc1\x52\xae\xd1\xaa\x7d\xdb\xfe\x3e\xaa\xa7\xcd\x2d\xfc\x0e\xaf\x7f\x94\x0a\xac\x37\xce\xb1\xeb\x0f\xd7\xcf\x2b\x96\x21\xdf\x29\x4e\x70\x46\x53\x82\x7d\x90\xbb\x4a\x87\xce\x81\x3b\x1f\xd5\xfa\xe7\x68\x36\x27\xa8\xdb\x6b\x36\x77\x9e\x3a\xc6\xf5\x1a\xde\x0e\x42\xcb\xca\x15\x62\x8b\x4e\xef\x71\x6b\x9f\x6b\x4c\xa3\x99\xa7\x37\x6f\x36\x11\x70\x98\xad\x45\xe4\x72\x7f\x09\x4a\x6a\x53\xd1\x03\x2f\x9c\xd1\x75\x18\x1b\x16\x66\xaf\x71\x36\xc3\x09\xf5\xa2\xa4\x41\x9b\x4d\x1a\xd4\x15\x38\xe9\x6c\x5b\xd8\xa8\x29\x41\xa9\x7e\x5d\xd9\x2e\x44\x31\x13\xb5\x5b\x05\xea\xee\x4b\x26\x52\x5b\x76\x8d\x2a\x09\xeb\xee\xf9\x0a\xa5\xb0\xbf\x5d\xc3\xac\xd7\x46\x2a\x76\xa4\x22\x5b\x50\x94\xa9\xf9\x4f\x68\x17\x75\xcc\x94\x33\x76\xfa\x5c\xec\xc2\xff\xa9\xea\xf2\x13\xba\xf2\xb3\x35\x5f\x57\xe4\x17\xef\x99\xab\xa6\x1e\x27\x4e\xf5\xe4\xab\xa5\x9a\x1a\xf1\x72\x4d\x35\x3b\x19\xdd\x3e\xaa\xd0\x9a\x06\x82\xcf\x1f\x11\xef\xca\x63\x9b\xd7\x27\xe7\xa5\x78\xa6\x87\xd1\xca\x9e\x34\x0b\x6c\xbc\x69\xff\xb5\x7d\x1e\x80\x6f\xe0\x7b\xf8\x96\x4f\x4c\x0c\x8a\x1b\xf3\xee\x88\x8e\xd1\xbe\x75\x5c\x58\x23\x0f\xfe\x25\x87\x27\x85\x98\xf8\x69\xaa\xb7\x29\x80\xff\x0a\x4a\x42\x0c\xb8\x61\xc1\x88\xb1\xc9\xab\x7f\xca\xf4\xea\xf0\xe9\x55\x3d\xa5\xfe\x5b\xcc\xb9\xba\x0e\xba\x63\xc2\x75\xdc\x9f\x9e\x9f\xbf\xd2\x8a\x9e\xcb\xd5\x6c\x26\xd7\x8e\x53\x54\xcf\x2d\x3f\xcc\xd1\x7c\x2f\x77\xc6\x26\xda\x19\xda\x3e\xed\x27\xe6\xdb\xb5\x62\x4e\x76\x46\x74\x8c\xb9\xd3\x8b\xc2\x80\x05\x0d\x44\x30\x74\xee\x0a\x83\xb6\xfa\x53\x1d\x03\x54\x07\x3b\xdf\xe9\xe4\xfe\x29\x18\xae\xfc\x53\xc5\xa1\x67\xee\x79\xfa\x07\x89\xd0\x4d\x94\x08\x6b\x12\x63\x91\xf5\x4f\xab\xed\xbf\x61\x0c\xdf\xc1\x8f\xf0\xb5\xe8\xd7\x17\x78\xc1\x77\x9c\xa3\x91\xb0\xdf\xd4\x97\x73\xa6\x31\x8f\xb4\xdb\x70\x4c\x6e\x1c\xcb\xc9\xd1\x17\x84\xe1\x05\xc2\x86\x3d\x27\xbc\x50\xb7\x14\x1f\xa4\x71\x94\x50\xbb\xf2\x2f\xe5\x46\x2e\xeb\x9a\x6d\x77\xa7\xf0\x02\x7d\x31\xc0\x8e\x2a\x6d\x44\x8d\x9a\x40\x35\x37\xb6\xd0\x91\xc8\x34\x9b\x7e\x19\x55\xf3\x35\x7b\x3d\x26\x85\x31\xa0\x63\x66\x54\xee\x0e\x9e\x06\x37\xd1\x3d\x9e\x7f\x4a\xef\x32\x40\xd5\x45\x0e\xba\xd0\x48\x14\x38\x52\x13\xb1\x2a\x48\xf0\x02\x51\x2e\xe9\x2f\x82\x87\x96\xaa\x77\xc2\x68\x62\x32\xea\x66\xa3\x80\x9f\xa8\x32\xad\x9e\x5a\x89\x76\xba\xac\xfe\x17\xcb\xd8\xb6\xf5\xa5\x4c\x9c\x7a\xf0\xca\x1b\xc9\x93\xc4\x17\x41\xfe\xcd\x76\x2a\x06\x41\xb7\x33\xc6\x6e\x33\x14\x61\xc9\x26\x4c\xe9\x04\x5f\x10\xd5\xc7\x66\xcf\xb2\xcc\x2d\x15\x32\xa9\x36\x76\xbb\xc5\xb2\x25\xd5\x34\x97\xb2\xb4\x7b\x55\xe5\xde\xa8\xc2\xe5\x04\xc0\x68\xa7\x23\x4e\xc6\x6c\xcd\xb9\x3c\x21\x28\x1b\xb9\xad\x13\x02\x32\x60\x79\x8e\x37\x1b\xbf\x62\x34\x4e\x3a\xcd\xe6\x97\x82\x8f\x84\xcd\xa6\x59\x0e\xc0\x0b\x24\x9f\xb9\x3c\x3d\xb6\xea\x19\xaa\x6a\x3b\x87\x25\xd8\x17\x00\x9a\x15\x15\x6c\x46\xc1\x0b\x07\x4a\x27\xe7\x0a\xd5\x56\x4a\x89\x4d\xd6\x05\x42\xd6\xfc\x9d\xb0\x4a\xa8\x03\x19\x54\x3d\x21\x0a\xd2\x74\xc0\xd0\xc4\x4b\x5a\x06\x9a\x49\xca\x02\xf1\x02\x18\xe6\x85\x1f\x6c\xf3\x4d\x83\x31\x54\xf1\x2f\x00\x7e\x28\x9b\x53\xa2\x8b\xe0\xbe\x22\xfd\x01\x5d\x04\x0f\xe5\x74\xd3\x36\xf3\x22\xb8\xdf\xb3\x3b\xbc\xad\x3c\x07\xb8\xe7\x70\x1f\xfc\xe0\x1a\x99\xee\xa1\x12\x48\xc7\xd2\x74\xcf\x65\xe1\x82\x74\x5a\x57\xb9\xb0\xe1\x07\x0f\x00\xb2\x81\x52\x6c\x77\xcf\x46\x99\xde\xdb\x4e\x96\x4e\xab\xa8\xd3\xae\x5c\x43\xb8\x7f\x97\x2a\xa2\xd5\x14\xa7\xe9\xaa\x7a\x31\x12\x80\xea\x2b\x69\x7c\x8b\x7e\x7c\x09\xc2\xb9\x34\x9d\xfc\xc0\xbe\xb4\x19\x27\xfc\x90\x57\x2f\x84\x96\x8f\x38\xca\xe0\xa2\x8e\xf6\x45\x46\x26\x5b\xb5\xc3\x61\xb5\x52\x00\xc3\xfa\x8a\x5c\xd1\x19\x46\x23\xe1\xef\x6d\xa7\xab\x57\x96\x08\x75\x46\xd1\x38\x19\x45\xad\x56\xa1\x1e\x08\xf3\xfa\x90\xdb\xd5\x3f\xaa\x07\xbc\xd1\x6e\xa5\x86\xb2\x3b\x68\x0d\x76\x49\xab\x3f\x92\x2f\x2d\xa4\xfa\x90\x4d\x55\xb7\x22\xb8\x64\xb2\x49\x48\x4f\x36\x3b\xe5\x14\xcc\x85\x47\x1e\xd4\x81\x15\x08\xa5\xad\xb0\x0a\xa5\xc4\x46\x89\x6c\x41\x29\xaa\x41\x89\xb7\xb9\x05\x27\x7e\x0b\x80\x42\x17\xa9\xb4\x15\xb6\xbb\xa3\xe8\x04\xa5\xa3\xa8\xdd\xfe\x27\xe0\x25\xda\xdd\x82\x98\x78\x14\x87\x12\x17\xb3\x44\xe0\xd5\xa9\xc2\xeb\x1f\x30\x84\xb2\xd9\x5a\xc4\xa4\x37\x83\x7f\xe0\x83\x4a\xf5\x7e\x52\xd2\xa4\x2d\xc6\xac\xd5\x85\x0f\x43\x85\x4e\x9b\xb3\x56\xab\x5b\xf1\xba\xf2\x59\xb5\x8a\x37\x9b\xaa\x5c\xda\xf2\xc9\x66\x93\x4d\x8c\x7d\xc0\x56\xcb\x9d\xca\x83\x6a\xb5\xa3\x00\x7b\x3d\x30\xec\x00\xf8\x30\x94\x4d\x2a\xe8\x25\x3b\x33\xb6\x41\x11\x93\x7a\xd2\x19\x1a\xc7\xa8\xdb\x4d\x75\xea\x1a\x97\x9b\x47\xd1\x7a\x9e\xe7\xb9\xf3\xac\xf6\x46\xbe\x36\x5d\x88\xd7\xa6\xd6\x4b\x1b\xf7\x65\xd5\x3a\xc3\x73\xbe\x4f\xcc\xf6\x04\x32\xe6\x02\xb0\x6b\xa6\x48\x1d\x29\x67\x30\x85\x61\xbb\x0b\x4b\xa4\xe6\x5a\x46\x6a\x3b\x7b\x91\xe1\x3c\xfb\x28\x5a\x6e\x21\x2c\x65\xed\x2e\x56\xfa\x41\xc5\x43\x58\x7d\x0e\x58\xd4\x54\x6e\x12\x64\x0b\xfa\xe1\xa9\x14\xcc\x2a\xbb\xac\x55\x98\xfe\x32\x78\x11\xbd\xc2\x33\x18\x11\x70\x34\xcd\x08\x94\x3b\x12\x04\x81\xb6\xf0\xaf\xec\x92\xf1\x39\x32\x08\xc9\x1f\x5d\x52\xa8\x76\x97\xb3\x2d\x6f\x26\x67\x5b\xdf\x4b\x8a\xd7\x8f\x96\x8b\x8b\x19\x3f\x55\xc4\x21\xb1\x0f\x50\x66\xa5\xad\xe6\xac\xe2\xe0\xc4\x7c\x2d\x57\xa6\x5c\xf0\x50\x91\xa6\xd4\x26\x87\x86\x52\x1f\xd6\xee\x2f\x8a\xd7\x0e\xda\x09\xd1\xaa\xb0\x61\x55\x62\x8b\x72\x33\xc6\x93\x93\x93\xde\x00\xa6\xc5\x97\x34\x22\x4c\x8a\x14\x6e\x4c\x08\x43\x14\x19\x15\x96\xc5\x97\xac\x10\x17\x29\xa2\xc2\xcc\x3c\xe4\x17\xee\xb9\xc2\xeb\xcc\xcf\xda\x21\x68\xe9\xaf\xb4\xbd\x34\xbe\x92\x76\x0c\xc0\x5e\xb7\x27\x7d\x7f\x32\xd1\xf8\xe4\xde\x5a\x6d\xac\xa7\x08\xa1\xac\xd9\xd4\xfb\x6c\xee\x44\x23\x35\x12\x7a\x2c\x21\xd9\x6c\x48\xb3\xa9\x1b\xd4\x95\xdb\x99\x81\x86\x01\xa3\x9d\x56\xa5\xf7\xa6\xed\x04\x8c\x67\x13\x63\x53\x8f\x3a\xc3\x35\xd2\x1b\xfa\xc6\xba\x20\xfd\xad\x9a\x50\xc5\x2b\xb8\x3a\x57\xaa\xea\xf9\x8c\x34\x36\xa4\x90\xa8\x21\x8f\x20\xc9\x73\xd8\x95\x31\xfd\x7f\xd6\xc7\x8b\x69\x85\x8a\x98\x0c\xfd\x18\xce\xe7\x78\xfe\x67\x7c\x2f\x47\x5b\xfc\x61\x1b\x99\x8c\x31\xc8\x4c\xfa\x62\x52\x66\xa7\x88\x1a\x2f\x27\x94\x3b\x01\xa9\x5e\x40\x82\x3a\x90\x49\x88\x14\x75\x46\xdf\x43\xd2\x48\x94\x2d\x70\xe1\xcf\x6e\xcd\x2d\xa7\xe5\x4e\x0a\x07\x34\xfd\x2c\xbd\x0e\x1e\x14\xaf\x3f\xb4\xa7\xba\x89\xd7\xf1\x5a\x74\x48\x0b\x4a\xce\xc5\x33\x34\x65\xa5\x3a\xa6\x13\x9f\xb6\x82\xce\x3e\xd8\xf3\x31\xff\x3b\x94\x7f\xf7\x64\x7a\x6e\xe1\xcb\x7d\x03\x79\x7f\xea\xc8\xff\x3c\xc8\x4d\x9f\x3b\x39\x34\xcf\x72\x18\x56\xaf\x32\xd7\x19\x1b\x9b\x37\xa6\x99\x2e\x5b\xcf\xc9\xe4\x8f\x3f\xfd\xf6\xc8\xba\x94\xb3\x3f\x54\xfc\x89\xc4\x1f\x02\xf2\x3f\x86\x35\xf9\x7f\xe4\x90\xb5\xf2\x89\xd1\xdb\x6d\x06\xf5\xf6\xf7\x0b\xef\x3f\xe3\x71\x6f\xb0\xa1\xe3\x71\xf7\x60\x13\x8d\xc7\x47\x1b\x02\x4e\x4e\x4e\x3a\xa2\xba\xe3\x5b\xc9\x79\x59\xc4\xfb\x2a\xfb\x52\xbc\x02\xe2\x1d\x56\x6d\xeb\xe4\x3c\xcf\xfd\x64\xb3\xf1\x8d\x71\x4e\xd0\x63\x0e\x80\x45\x18\x3d\x0a\xd4\x1a\x85\x14\x19\xeb\x6b\x6f\x7f\x7f\x97\x02\x78\xc9\xe1\x4e\xd1\x8c\xb5\x2f\x41\xfa\x98\x33\x18\x80\x1c\xb3\x44\x62\xa6\x1f\x1f\x71\xcc\x12\x85\x99\x4a\xce\x73\x1c\x5c\xc7\x38\x99\x5b\x74\xe2\x4b\x53\x8a\x58\x6b\x4d\xc1\xb6\x60\x8f\x09\x1c\xa6\x06\xa4\xc0\xe8\x3f\x67\x63\x01\x5a\x94\xcb\x8b\xb7\x6e\x52\x56\x49\xe3\xe9\xa5\x4e\xd0\xd2\x4c\x25\x28\x61\x86\xed\x1a\x6b\x9d\x20\x6b\xcc\x75\x02\xaf\xa1\xf8\x39\x42\xb3\x96\xa9\x81\x84\xed\x19\xd8\x65\x1d\x46\x6b\x2b\x7d\xd9\x5e\xf3\xf4\x0c\xcd\xad\xf4\xb8\x3d\xe7\xe9\x65\xb2\x55\x12\x0d\xe4\x8c\x3b\xa2\xec\x8c\x3f\xf4\xa8\x70\xbd\xb5\xc3\xc9\xf6\x5f\x72\x34\x58\xe1\x0a\x3b\xf6\x92\x2b\x42\x25\xba\x66\x95\x56\xef\x02\x18\x14\x14\x83\x11\x3f\xbf\x22\xc5\x63\x2b\x65\xab\x4e\x34\xf1\x88\xa6\x1a\x51\xb6\xea\x0c\x93\xb4\x8c\xb4\x12\x16\x0c\xeb\x8d\x44\x9a\xcd\x01\x49\xde\x4a\x4e\xa3\x5b\xa8\x45\x73\xd9\xd0\x2c\xa2\x0f\x88\x42\xec\xbe\x7c\xb1\x5c\x97\x1b\x5c\xce\xa8\xa6\xfa\xe9\x63\x98\xee\x46\x7b\x0a\xed\xc2\xfc\xaa\x82\xde\x97\x0e\xdf\x38\x5c\x63\xf1\xcc\x34\xcf\xfd\x50\x4c\x44\x3e\xb9\xc3\xf2\x2c\xe4\x4b\x21\x0c\xb9\x4f\x44\x75\x46\x3b\x7f\xca\x43\x37\x96\xeb\x49\x17\x62\xb5\x9e\x74\xb5\x1d\x14\x2e\xeb\x3b\x35\xae\x1f\x46\x51\xb3\xe9\x53\xee\xd0\xee\x29\xdb\xdd\x50\xfb\xfd\x7b\x17\x25\x38\x24\xff\x4e\xc2\x79\xc4\x90\x12\x11\xd6\xbb\x40\x79\x68\xcc\x2b\x44\x99\x7c\x5d\x18\xdc\xb2\x12\xfe\xde\x9f\x2e\xbf\xce\xc3\xf6\xcd\xf4\xb1\x0f\x8f\xf2\xbd\x08\x00\xf5\x08\xa7\x38\xac\x16\x76\x1f\x7a\xc6\x15\xde\x4f\xb5\x57\xf0\x1e\x08\x08\x5e\xe1\x90\xfa\x3d\xe1\xe7\x9b\x94\x4b\xf5\x60\xdf\x2d\x95\x95\x4b\xf5\xe1\xc0\x2d\x55\xb0\xb8\x60\x35\x65\x0e\xf1\xff\x0c\xa1\xb4\x5c\x6a\x00\xf7\x9f\x40\x1b\xa6\x12\xf1\xc3\xa1\xb9\x86\x88\x79\xe3\x97\xbb\xc0\x81\xb0\x55\x89\xcd\x03\xbe\x2e\x89\xea\xc7\x15\xd5\x6b\x6a\xf3\x5a\xb9\xb2\x6e\xd3\x23\xce\xaa\x4c\xbe\xfa\x5f\xb3\x5d\xff\xeb\xfc\xb1\x0b\xfb\x39\xf8\x9a\xed\xc2\x27\xbe\x7d\x9e\xd0\xd9\x74\x37\x5f\xe7\x93\xaf\x81\xff\x75\xde\x02\x2c\x1d\x4c\xbe\x82\x3d\x2e\x93\x96\xa0\x3c\x22\x4b\xee\x8f\x97\x98\x09\xbd\xa9\x45\xe7\xe5\x65\x7f\xca\x48\xea\xac\x73\xf2\xd9\x11\x42\x68\x79\xb9\x3f\x9d\x74\x87\x86\x0b\x5e\x96\x02\x40\x25\x85\xb9\x47\x91\xcd\x66\x27\x2c\xbf\x8d\x9d\x65\xfa\x5d\xcf\xb0\x71\x91\x64\xeb\xd5\x2a\x25\x14\xcf\x1b\xb3\x2c\x93\x2e\xe2\x3d\x61\x9e\x61\xdc\xe8\x32\xb1\x5b\x7c\x61\x58\x0a\x1d\x60\x64\xff\x72\x93\x7a\x9b\xc3\xa6\xb0\x5c\xe6\x61\x3a\x45\xb4\x7c\xef\xc6\x4a\x70\xed\x18\xf6\xf6\xf7\x77\xd8\xc2\xfc\x93\x8d\x4b\x66\xaa\x56\x10\x20\xe7\x31\xa6\xc0\x2c\x85\xdc\xcc\x32\xb4\x7c\x4a\x77\xb1\x74\x71\xae\x39\x64\x88\xf2\xbf\x29\xe2\x52\x5d\xb6\x19\xf4\xba\xbd\x83\x5d\x9f\x8c\x51\xd0\xe9\x1f\xf7\x8e\x26\x64\xaf\xdb\x0b\x8e\x7b\xe2\x44\x61\x95\xde\xf9\x3e\x61\x6a\xe6\x3e\xd8\xeb\xb2\x3f\xb0\x17\x0c\x00\x68\x05\x87\xdd\xfd\xde\xae\x9f\xe9\x6a\x59\xa9\x5a\x56\x55\xad\x73\xd8\xeb\xed\xfa\xa9\xae\x96\x96\xaa\xa5\xe5\x6a\x39\x0e\x08\x8e\x43\x1a\x7d\xc7\xef\xd6\xb7\x51\x12\x26\xb3\xaa\x55\x9f\x75\xbc\x58\x73\x94\x52\xc3\xd7\x34\xbe\x84\x95\x60\xf4\x10\xcd\xfd\x98\xd3\x94\x6d\x08\xe2\x1f\xa2\xa9\x5e\xec\x32\x54\xb4\x9a\x22\xd5\xee\x48\x04\xee\xa0\xba\x58\xc8\x7e\xcb\x62\x4b\xf6\x5b\xe9\x5c\x73\x3f\xae\x40\xcd\x4f\xc4\x4b\xbc\xca\x3c\xc1\x17\xe2\x8e\x6f\x34\x1b\xb3\x25\x2b\x39\xe9\x6c\x36\x21\xfb\x67\x79\xd2\x01\x23\x90\xb4\x8b\xd3\xf3\x0e\x2c\x4c\x86\x82\xee\x6e\x02\x00\x0c\xeb\xb3\x43\x00\xe0\xb2\x3e\x7b\x09\xc0\xaf\x21\x2d\xf5\xfe\x84\xeb\xfd\x21\xd7\xfb\x97\x96\x84\xd5\x44\x0f\xff\xdb\x13\x7d\xcc\x34\xb6\x4d\x28\xfe\x2c\xc7\xfc\x3d\x22\x48\x8a\x57\x73\xfc\x90\xa1\x65\xd1\x8f\xa5\xb5\x13\xc0\xe3\x81\x58\xe5\xc2\x8a\x72\x21\x2b\xb7\xb4\xcb\x2d\x2b\xca\x2d\xc1\x3f\x7d\x54\x9e\xdc\xa4\x94\xf7\x27\x0d\x5a\x6c\x45\xcc\x5d\x88\xb9\x01\x31\xf6\x1e\xe6\xb6\xc3\xdc\x71\xfc\x93\x36\x1b\xee\x9e\xe2\xe9\x5d\x82\x75\xb2\x54\x41\x4d\x26\x7e\x8e\xd8\x2a\x5a\x95\x17\xb1\x3c\xb6\xca\xcc\x7d\x46\xf1\xb1\xf0\xe5\x90\x8e\x33\x05\x32\x45\x54\xb6\x01\x13\xc4\x0a\x55\x41\x49\x19\x14\x0e\x26\x19\x93\x62\xe7\x10\xca\x9a\x8a\x46\xc9\x49\x1d\x00\xca\x01\x4c\xd2\x21\x55\x17\x8d\x69\xae\xee\x8e\x14\x14\xb8\xac\x6d\x3f\xd1\xed\x2f\x8b\xf6\x0b\xcc\x55\xfb\xcb\xda\xf6\x45\x07\x26\xc9\x30\x55\xed\x27\xb9\x10\xce\xf3\xf5\xcc\x10\xef\x6c\xd7\x12\x25\x4c\xbd\xce\x8c\xd4\x50\xec\x44\xd4\x0e\xbe\x6a\x27\x52\x6c\x42\x6a\xd6\x02\xb6\x01\x99\x29\xa1\x1f\xa2\x99\x90\xfa\xf6\x41\xd1\xba\x74\x90\x34\xcf\x61\x7f\xb0\xff\x2b\x07\x53\x64\x9d\xbc\x48\xe6\x9f\xd7\xd7\xd9\x8c\x44\xd7\x18\xd1\xe0\x26\x25\x77\x21\x99\x73\x2f\x7e\x88\x5a\xde\xfc\x0a\x0f\xde\x56\x2a\x3f\x83\xaf\x72\x4e\x7c\x15\x47\x19\xc5\x09\x26\x86\xa3\x44\xe9\x6f\x6e\x8e\x76\xba\xfc\x80\x9d\xfb\xf7\x73\xcf\xd7\x79\xa2\xf6\x3b\xc7\xbf\x10\x46\x27\xbe\x03\x55\x9f\xb3\x3f\x4a\xa8\x43\xc7\x75\x9c\x6a\x0c\xd8\x67\x99\x2e\x18\xc3\xe3\x8d\x3e\x7a\xd7\xb9\xe2\x7c\x13\x97\x1d\x02\x1b\x00\xe4\xf5\x39\x85\x5d\x90\xe7\xda\xf8\x95\xe3\x9d\x0b\xe7\x4e\xa6\x13\xa7\xcb\xa9\x13\xd5\xa1\x06\x1f\xcc\xf0\x11\x7d\x74\x71\xc2\x53\xe0\xf8\x0e\x8b\x2c\xdf\x61\xc2\x39\x58\x1c\x4b\x55\x19\xb2\xf6\x0d\xf7\x81\xe2\x74\x3b\xc6\x21\x79\xa7\x40\x1a\xae\xdb\xd4\x00\x75\x72\xb7\x88\x3b\xac\xda\x04\xd2\xc5\x1d\x75\x00\xf7\xbb\x6d\x31\x93\x2d\xa4\xd5\x59\xa2\x8f\xd1\x09\x95\x2e\xb0\x00\xf7\x38\xee\xf2\x64\x65\x3d\x2a\xbb\x06\xa0\x80\xc0\x2b\xe7\xf0\x68\xff\xb8\x26\x5e\x80\xeb\xb3\x08\xd0\xc2\xf7\xe1\x08\x6b\xbc\x7f\xc6\x05\xff\x02\x53\x11\xca\x00\xbf\x20\x24\x7c\x28\xc2\x1a\x20\xdd\x06\xcf\xe0\x07\xbf\x56\xee\xfb\x35\x65\xbf\xac\x34\xe3\x43\xcf\x37\x23\xad\x7e\xb6\xcd\x75\x21\x63\xbe\x45\xd9\x6b\x63\xc6\x39\x2c\x60\xe5\x76\xaa\xad\x8e\x0c\xa8\x00\x1b\x24\x2b\xe5\x16\x24\x24\x78\xc1\xf8\xc1\x0c\xbf\x50\x2e\xad\xe6\x2e\xce\xd7\x89\x59\xc1\x36\xf7\x31\x6b\x28\x13\x13\x2c\x7d\x62\x51\x65\x9a\x64\x16\xb2\xa6\x22\xac\xa2\x70\x3d\x01\x6d\x5a\x31\xe9\xc4\x87\xd9\x95\x4e\x45\xb1\x89\x18\x20\x69\xbf\xc0\x0b\xe7\x99\xae\x86\xcb\x70\x37\x1b\xac\x6f\x4c\x79\x21\x2d\xe4\xf8\xd7\xa4\xa0\x2f\x34\x92\x11\x76\x6e\xbf\x44\xaa\x74\x85\xbe\x75\x4c\xe1\x33\xa0\x4b\x38\x3c\x98\x80\xc9\x9e\xe5\x85\x4c\xcb\x59\xcc\x4b\x5b\xbc\x1d\x6d\x9d\x08\x5b\x60\x31\x99\xcd\x66\x68\x9e\xe7\x70\x70\xf4\x4b\xab\x59\xe1\xba\x17\xd1\xe0\xfc\x2e\x95\xbf\x9f\x76\xa3\x7f\xc5\xf6\xcb\xe8\x31\x67\xa3\xe7\xb8\x23\x0e\x69\x78\x89\xa7\x85\x13\x54\xf1\xcd\xd6\x67\x68\xa5\xb0\x75\x22\x62\x4c\x63\x8b\x29\xb3\xc8\xc4\xad\x30\x94\xa4\xb7\x06\x57\xe3\x92\x9b\x7d\x88\xec\xee\x6d\x91\x02\xca\x8d\x70\xa4\x3b\xa3\xac\x72\x74\x7e\xa0\xd0\x54\x86\xfa\x3c\x51\x15\xe7\x95\xcd\xde\xe9\xe2\xbc\x88\xbc\x20\x58\x28\x4a\x19\x37\x34\x15\x55\x26\xfc\x17\x2b\x54\xd1\x4b\x1d\xbe\x20\xcf\x61\xff\xf8\xf8\x57\x86\x3e\xca\x5e\x2d\x49\x7a\x8b\xcf\x3e\xf3\x48\x24\xef\xa2\x64\x7d\xcf\x7f\xfd\x1e\x25\xf3\xf4\x2e\xe3\xbf\x4f\x57\xcb\x34\xc1\xf2\x67\x38\xe7\x3f\xde\x87\x33\x71\x8a\xf2\x39\xbc\x09\x49\xf4\x45\x5e\xa8\xb3\x2c\x91\x22\xe0\xe1\x45\x38\x7b\x78\x33\x5f\x88\xda\x6f\x23\x82\x6f\x52\xd1\xc0\x87\x74\x6e\x48\x6a\xf9\xed\xad\x13\x81\xfd\xbc\x38\x0f\x5a\x91\x74\x86\xb3\xac\xd9\xf4\x68\x44\x63\x1e\xf9\x47\x26\xe9\x23\x61\x55\x7f\xe2\x25\xe9\x1c\x7b\xc3\x24\xfc\x1e\x2d\x42\x9a\x92\x60\x9d\x61\xf2\x62\x81\x13\x0a\xc9\x96\x52\xab\x38\xa4\x37\x29\xb9\x1d\x99\x48\x46\x4c\x67\x8d\xd7\x73\x9c\xf9\x9e\x4c\xf3\x04\xc9\x8c\x5e\x99\x85\x58\x82\x2c\x21\x49\xb0\xf7\x9f\xbe\x3f\xd9\x99\x71\x0a\x6f\xc2\x64\x4e\xd2\x68\x0e\x02\xb0\x9b\xf1\xec\xbd\x28\xa0\x38\xa3\x7e\x24\x17\x43\x9b\x92\x86\x8f\x75\xae\x99\x69\xa8\x4a\xa5\xea\xe8\x47\xe9\x91\x3a\x87\x94\x75\xbf\xee\xf1\xb3\xc4\xbd\x62\x0b\xb1\x8e\x63\xa6\x8d\x6d\x36\xb8\xb8\xad\xec\x18\x87\x9c\x3c\x8c\x17\x54\xe3\x7a\xe9\xbd\x0f\x67\x51\x42\xd3\x6c\xe9\x41\xf6\xfb\x34\xa1\x38\x16\x3f\x3f\x7e\x7c\x25\x7e\x1c\x1c\xfd\xc5\x9b\x16\xbd\x27\xa2\xe3\x9c\x3f\xbc\xe8\x63\x38\xf7\x10\xe2\xa1\x5f\x34\xfb\x78\xd1\x47\xf6\xb7\x48\x57\x2c\x76\xe9\xc9\x5f\x1e\x64\xbf\xba\x07\xe2\x6f\xbf\x27\xfe\xbe\x7a\x53\xd1\x8e\x60\x54\xa2\x17\x37\x8f\x27\x78\xe0\x04\x75\x6c\xae\xde\xfb\x7a\xfd\x8a\x9c\x7d\xfe\x7a\xbd\xa7\x88\x9d\xc3\xbe\x14\x97\x3f\xed\xa4\xfe\x35\xbe\x4e\xd7\xc9\x0c\xcf\x95\x8b\x66\x44\x6d\x6f\xcd\x88\x06\x1f\x49\x94\x92\x88\x3e\x14\x69\x25\x6f\xf6\xfd\xe3\x63\x20\xc5\x6b\xb5\x50\xa2\x61\xf6\xcd\x54\x4a\x50\x27\x57\xde\x9e\xb1\x55\xc6\x31\x9d\xe1\x7e\xfc\x7d\x90\xdf\xc4\x2c\x59\x28\x71\x52\xf3\x90\x31\x10\x64\x35\xa9\xfc\x02\x23\x4d\x1a\xbb\x47\x53\x5f\x8b\xb9\xa8\xd5\x1a\x15\xba\xaf\x1b\x36\xe5\x2a\x9a\xc7\xf8\x55\x18\xc7\xd7\xe1\xec\x9b\x56\x6d\x67\x6c\x8f\x17\xab\x64\xbf\x5c\x52\xe1\x6a\xa6\xa9\x88\x5d\x45\x7f\x61\x19\x5b\xd4\xc9\x55\x07\x2b\x10\xd0\x2b\x8e\x05\x57\x24\x29\xaf\xb7\x36\x52\x52\x98\x04\xd7\x3c\x28\xd9\x32\xca\x00\x00\xb9\x4a\x35\xb4\x91\x32\x9e\xd2\x29\x71\x07\x0a\x6b\x02\x1c\xd0\xe8\x16\x7f\xc2\xb7\x61\x94\x44\xc9\x82\xc7\xef\x12\xda\xe1\x56\xda\x73\xbb\x25\xf4\x3a\xa4\x38\x48\xd2\xbb\xe2\x05\x4c\xfd\x60\x40\x6a\xbe\xfc\x29\x6a\xb6\x29\x80\x51\x91\xc5\xf8\x1b\x66\x15\x68\x75\x83\xfd\xdd\xe8\x24\x53\x82\x84\xb4\xe9\xb8\xdd\xeb\x34\x9b\x2a\x50\xe3\x5d\x48\x12\xff\x0f\x86\x40\x83\x33\x5b\x03\xdf\xcf\x30\x9e\xe3\x79\x23\x8c\xe3\x94\x52\x3c\x6f\xcc\x71\x38\x8f\xa3\x04\x37\xae\x1f\x1a\xbf\x3d\x6a\x83\x13\xe3\x6c\x86\xb4\x29\x00\xf9\x6d\xf6\x87\x08\xc7\xd6\xb0\x38\x73\x44\x90\xf4\x78\xa0\x97\x32\x31\x0f\xd2\x86\x78\xa8\xcf\x66\x44\x69\xbc\x0a\xbd\x38\xc3\xf4\x3c\xba\xc5\xe9\x9a\x72\xb7\xe7\xda\x8f\x24\xbf\xc1\x7b\x2d\x71\xf3\xbb\x07\x7c\x28\x1d\x56\x64\xca\x32\x77\x0e\x2e\x01\x60\x90\xbb\x15\x0d\x7d\xba\xa0\x6e\x0b\xab\xa3\x7d\x8b\x9e\x5c\x11\x33\x0e\x58\x69\xbb\xa8\x02\xb8\x36\x52\x96\x04\x29\x74\xe5\xc5\x0e\x91\x8b\x53\xb3\xe9\xc9\x6e\x9f\x1a\x0c\xc7\x16\xbd\x3b\x2e\x24\x27\x82\x4e\xcf\xa2\x52\x05\x20\xd1\xdb\x32\x41\x78\x8a\x5b\x30\x1f\xa6\x95\xc2\xae\x5e\x8b\xe2\xec\x22\x23\x00\x5a\x1d\x14\x4a\x95\x55\xcc\xf1\x7d\x2e\xd2\x0a\xf1\xa6\x85\x97\x99\x2d\xd3\x98\xe2\xd3\x1d\x1c\xfe\x8a\xe2\xf3\x46\xfa\x83\x78\x41\x29\x61\x5a\x8e\x1d\x4f\xe2\x69\xd5\xf7\x66\xa1\x84\xd3\xb5\xfe\xa5\x7c\x4c\x70\x02\x90\x3c\xa3\x21\x8d\x66\x0d\xc3\xd9\x89\x75\xb4\x65\x9c\x68\xd9\x47\x5a\xb2\x1e\xf7\x26\x57\xaa\xc9\xcf\x67\xf1\x65\x67\x0a\xf8\xb9\xae\xfc\xec\x4e\xd5\xc5\x66\x13\x5f\xf6\xa6\xf9\x2c\x4e\x13\xec\x04\x14\x88\x74\xd8\x37\x86\xbc\xec\x04\xc4\xdc\xb3\x9a\xe8\x07\xc4\x45\x17\xac\x0e\x05\x12\x1e\xc4\xb9\xe1\xe5\x4c\xb1\xd9\xc1\x61\xb7\x73\x74\x74\x30\x68\x4a\x98\xb9\x72\x8e\xa2\xa3\xba\xf5\x07\xbd\xee\xe1\x61\xef\xc8\x28\x61\x38\x2e\xb3\xd4\xe0\x65\x98\x59\x43\xe3\x03\x11\x3b\xd3\xc6\xc7\x76\xe2\x31\xe9\x0e\x7b\x07\x47\x83\xfe\xfe\x60\xff\xc0\x44\x22\x8e\x92\x6f\x05\xf8\xfd\xfe\xc1\xd1\x61\xe7\xb8\xdb\x33\x8a\x18\xfe\xe0\x34\xb2\x9d\xc3\xfe\xe1\xa0\x7b\xd4\x33\xfb\xa3\xbc\xb1\x55\x77\xf9\x9a\x15\xe1\x4e\xdd\x6a\x7a\xcc\x0b\x38\x0e\xd8\x54\xd1\x5e\x77\x70\x38\x38\xea\x1f\x0c\x4c\xea\x7c\x24\x29\x15\x91\x9f\xea\xd0\xe7\x20\x0b\x2f\x6d\x75\xd8\x5f\x2f\x72\xd7\xf5\x9a\x06\x28\x9d\x71\xea\x66\x5d\x8f\x6a\xd5\x05\x79\xc3\x6f\x17\xdc\xfb\x8f\x36\xd1\xd1\x45\xfe\x4b\x02\x03\x8c\xfe\xdb\x0b\x5d\xf3\x42\x6f\x17\x1f\xc3\x18\x53\x6a\xf6\x41\x3a\x29\x45\xc8\x77\x71\x04\x9b\x8d\x72\x5a\x5a\x95\xcb\x1b\x7d\x3e\xbc\xeb\xad\xf0\x14\x7e\xda\xa3\x52\xb9\x23\x56\xbb\x4f\x95\x13\xf0\x0a\x39\xe3\x14\x6f\xe8\xf7\x8d\x37\x8b\x66\x53\x7f\x58\x03\xe8\x6b\x87\xae\x25\x14\x9e\xe3\xdf\x95\x5f\xed\x88\xf2\xd5\xfe\x58\x65\xf5\xa2\x94\xed\x9b\xb5\xdd\xcd\x73\xd3\x3b\x5f\x35\x32\xd7\x3f\x88\xcc\xf5\xb3\x90\xb9\xae\x42\xa6\x2c\x2c\xf4\xac\xb2\xe5\xc1\xf5\x42\x86\xbe\x53\xc5\x95\x18\xd7\x12\x25\xca\xde\xdc\xae\xe8\x83\x0f\x26\xb2\x42\x13\xb5\x15\x90\xc3\xa1\x4c\xdb\x20\x0d\x37\xaf\x70\x2b\xc5\x34\xb9\x52\xc3\x4d\xc9\xee\x65\xd9\x25\x9c\xbc\x55\xd2\xb0\xae\xf0\x0f\x11\xb6\x06\xc8\x73\xa8\x5d\x57\xd5\xf1\xd5\xcb\xcb\x9a\xec\x99\xd7\x66\x94\xc8\x65\xcb\x98\x1f\x25\xdb\xe4\x59\xf4\x1a\x3a\x78\x88\x36\xf3\x4a\x4f\x66\x3f\x8d\x49\x49\xb0\xd5\x0d\x9e\xc0\x46\x0b\xcf\x12\x1a\x25\xc1\xf5\xc3\xa8\xd4\x4a\xba\x3a\x94\xb6\x88\xbf\xa7\x7b\xa1\xf1\x2d\xf5\xa4\x24\xdb\x7e\x85\xa8\xcf\xc4\x46\xb7\x69\xb1\x1a\xd7\x0f\x6a\xf1\xb8\x59\x4c\x4a\x98\x4d\xb6\x69\x1a\xc3\xee\xb0\x93\x6f\xf1\x90\x66\xa9\x32\x65\x18\x56\x69\xb6\x35\xb0\xb5\xce\x48\x2a\x9c\x84\xbf\xcb\xc1\xf7\xa5\x0b\xbe\x35\x89\x4f\xe7\x93\xf6\xe0\xe0\xf8\xf0\xa0\xd7\x19\x1c\xcb\x83\x7c\x7c\x4f\xc5\xe6\xd0\x46\x76\x3c\xee\x1d\x0c\x75\x09\x7e\xc2\xce\x60\x6a\x2d\x1c\xdf\x53\x84\xf9\x79\xfd\xba\x86\x5c\x66\xab\xfb\x43\x5f\xb5\x7b\x54\xb4\x0b\x4e\x4e\x7a\x07\x1c\xb4\x03\xc3\x6c\xa5\x89\x0a\x94\x61\x81\x32\xe2\x18\x36\x35\x54\x1b\x15\x25\x53\x6d\x8d\xab\xdf\xb4\x3b\xe4\x14\x77\x5a\x55\x6a\x9a\xd9\xa8\x06\x24\xbb\xce\x3a\x57\xd9\x63\x01\x9f\x67\x6b\xb0\xfc\xd3\x25\x9a\xcb\x03\x4a\xe9\xf6\xfb\x87\xfb\x47\x9d\xe3\x83\xfe\xd1\xc0\x26\xd8\xb1\xd6\xc4\xc7\x9d\xc9\xa0\x77\x3c\x38\x3e\x38\xec\x1d\x1d\xfd\x27\x1e\x62\xbb\x53\x36\x64\xbb\x73\x4a\x1f\xec\xba\x14\x3d\x6e\x16\xed\xda\xcf\xa4\xd8\x3e\x05\x75\xcc\xe1\x57\xe7\x2b\xa2\x5f\x1d\x68\x30\x86\x95\x43\xf5\x8e\xc2\x88\xf7\xa8\x5c\x64\xe0\x7b\x6a\x16\x66\xe2\x40\xae\xa5\x25\xd5\xc6\x66\x12\x43\xcd\x91\x24\xcf\xdd\x8d\x19\xc9\xe1\xe1\x51\xef\xd7\x4e\xeb\x5e\xe1\x38\xb6\x76\x75\xfa\x00\xae\xdb\xef\xcb\x70\x92\xfb\xfb\x22\x9c\x64\x77\x70\xa8\x8e\xe4\x12\xbd\xc9\x4e\xed\x79\xea\x6c\x07\xb3\xf5\x0a\x13\x3f\x08\x82\x90\x2c\xb8\x59\xb3\x7a\xee\x25\x43\xbc\xeb\xd7\x4f\x4f\xed\x18\x53\xbb\xef\x0a\x88\x88\xd4\xc2\x3b\xe0\x79\xd6\xe6\x70\x19\x12\x6e\xbe\x68\x1c\x57\x30\x38\x49\xf1\x34\x25\x93\xd1\x57\x8a\x92\x90\xe6\x51\xa6\xc2\xbf\x18\x82\xb1\x73\x7c\xd8\xdd\x97\x7b\x0b\x89\x38\xe3\x72\xe1\x17\xd5\x9e\x1e\x32\xfb\xe4\xa4\xd7\x63\x45\x18\xf0\x6c\x3b\xa4\x49\xa9\x2b\x43\x51\xac\x6b\x17\xe3\x01\xee\x85\x3d\x28\x47\x3b\x9d\xe3\x8f\x69\x94\x50\xe0\x57\x15\x07\x43\xcf\xe3\x08\x58\x9a\x84\x5c\x10\x8a\x2e\x96\x1b\x37\xbd\xea\x96\x33\x95\x43\x0d\x50\x89\x63\x5e\x26\xa9\x3e\x10\xc0\x97\x59\xf0\xea\xcf\x2f\x3e\x5d\xbd\x7e\x71\xfe\xe2\xea\xc5\xf9\xf9\xa7\xab\xd3\x0f\xaf\xdf\xfc\x75\x5a\x0c\xbb\x3c\x32\x14\x2e\x2f\xec\xf2\xfc\x97\x28\xaf\xfc\x45\xf4\x00\x55\xfe\x1c\x1a\x4c\xb7\x44\x08\x3d\x55\xa7\xb0\x97\xa8\x2f\x69\x39\x15\x66\x88\xec\xef\xf7\x8e\x0f\xc6\x28\xe2\x81\x75\xf7\x0f\xfa\xdd\x63\xc3\x4e\xef\x39\x60\xba\x60\xb4\x7f\xd0\xef\x75\xc6\x88\x34\x9b\x64\x8c\xf6\x0f\xfb\x83\xfe\xc4\x9a\x05\xdd\x4e\x6f\xb0\xeb\x47\x6d\xde\x16\x68\x91\x36\xaf\xd0\x3a\xd8\xdf\xef\x1f\x6c\xec\x46\x7e\x3f\x7d\x7d\xfe\x67\xd9\xca\x78\xdc\xeb\x0d\x19\x15\x72\x4e\x05\xe3\x97\x09\xfc\x99\x7d\x7d\xa2\x9d\x11\x55\xc7\xd7\xd6\xac\xab\x05\x6e\x4f\x73\xc9\xf8\x4f\xb4\xc1\xd5\x93\x17\x99\x66\x1f\x7d\x22\xa4\x0e\x64\x94\xca\x2a\xa7\x95\xfe\x96\x33\xb1\xc8\xe7\x5c\x3f\x65\x22\x53\x0b\xb8\x24\x87\x47\xfb\xbf\x74\x15\xfc\xfb\x9f\x4f\xcf\xdf\x7c\xfe\xf8\xe2\xd5\x9b\xab\x57\x6f\xf8\x43\xb4\xd7\x6f\x50\x39\x99\xf7\xaa\x22\x9d\xf5\x5b\xbf\xb9\x33\xea\x17\x09\xaa\xa6\x51\x44\xd4\x31\x28\x7c\xf6\xfa\x8d\xa0\x98\x95\x6c\x50\xd2\x2e\xae\x07\xc4\x4a\x2e\xa6\x1f\xa2\x66\x2c\x49\xe3\x8b\x15\x31\x3e\xcd\x47\x82\xd0\x4d\x36\x53\x78\xbd\xde\xfe\xc1\xc6\x29\x34\x1e\x1f\x43\xbb\x2d\x56\xab\x12\x25\x3b\xc3\xe8\x42\x17\xd6\xf5\xb9\x07\x6b\x88\xd4\x87\x25\x72\x7a\x1e\x2c\x13\xbd\x0b\x4b\x23\xd3\xa9\x1a\x72\x0e\xa0\xe1\x55\x64\x15\x70\x2a\xf9\xa4\xdf\xcb\x61\xb7\xdf\xff\x15\xfe\xbb\xa0\x37\x47\xe7\xe9\x05\xbd\xe9\xf7\x10\x0d\xc4\x6b\xcb\xe2\x7b\xcd\xfe\x9e\xcb\x47\x98\x88\x56\x2d\x15\xc5\xf8\x55\x65\x56\x18\x9a\xe3\x13\x26\x82\xf6\x27\x3e\x6e\x23\x2e\x8c\x60\x55\x34\x0f\x2e\xb5\x5a\xdc\x26\xbd\x03\x40\xab\x32\xe0\xc7\xbf\x31\x11\xd7\xe2\x62\x0d\x80\x61\x75\x4c\x90\x1c\xba\xbd\x30\xcd\xb4\xf8\x55\x52\xf1\x4c\x48\x98\xa9\x79\x9e\xb6\x59\xcb\x10\x1d\x65\xe3\x68\xd4\x6a\x65\xf2\x65\x15\x13\x4e\xd3\x11\x55\x7d\xa0\xaa\x0f\xa4\x85\xb6\x74\x83\x6e\xe9\x06\xb5\xbb\x51\x03\x88\x1a\xa1\xf3\xa0\x3b\x50\x5b\x4c\x85\x12\x8a\x49\x74\x8b\x5c\xdb\x8d\x22\x7d\x8e\x67\x9c\x52\xa6\xe5\x9f\x0e\xf0\x19\xdd\xf8\x3b\xc6\xfd\xb7\x34\xe3\xe3\xd7\x6c\xda\x02\x51\x82\x32\x6b\x1b\x6b\x40\xd6\x6a\xe9\xa5\x4a\x2e\x77\x62\xa9\xba\x24\xad\xd6\x54\x2e\x52\x16\x20\xb5\x60\x45\xe6\x82\x35\xf4\x65\x05\xab\x28\x94\x89\xda\x0a\xa4\xe8\x96\x1a\xc1\x14\x65\xa3\x94\x8f\x60\x5a\x98\x1f\x5b\x18\xa6\xe6\x8a\x9c\x35\x9b\x99\x5e\x91\xa3\x1b\xbf\xd5\x4a\x4f\x90\xa6\x80\xdd\x48\x06\x89\xf6\x1c\xe3\x42\x94\x3d\x4e\x9a\xcd\xa4\xb2\xc7\x99\xea\x65\x52\xd9\xcb\x4c\xf5\x2c\x01\x62\xf1\x3d\xd8\xef\x1d\x1e\xef\xf0\xf7\xeb\xba\x8c\xc1\x11\xb9\x33\x93\x6b\x19\x42\xe1\xce\xd4\xd6\x8b\x28\xa1\x47\xdc\x00\xca\xef\x3b\x57\xcc\xb2\x18\x7f\xd2\xe3\x77\xc0\x8f\x33\x09\x8f\xf4\x94\xc0\x90\x7b\x99\xe9\xc0\xd8\x60\x18\x09\xfb\xb2\x33\x55\x13\x6e\xa7\x0b\x65\xdc\xbc\x22\x6f\x94\x35\x51\xf7\xb8\x87\x90\xdf\xeb\x0d\x9a\x19\x98\xf4\xbb\xc3\x5e\x6f\xc0\xbe\x07\x1d\xf6\xdd\xdd\x1f\x1e\xf2\xb6\x52\x98\xa8\x5b\x5f\x3f\x45\x6a\xc3\xaa\x20\xb5\x5a\xc9\x14\xb0\x51\x18\x8c\x40\x36\x1e\xa3\x03\x98\x6d\x50\xaa\xfd\xa5\x17\x4d\xb8\xb8\x4d\x7a\x46\x7b\xa5\xcc\xfe\x70\x00\x67\x68\xd9\x4e\x44\xc3\xf1\x78\x26\xee\x95\x63\x83\x5b\x78\x97\x53\x84\x2f\xe3\x56\x6b\x0a\xbb\xbd\xa3\x1d\xe4\x77\x8f\x7b\xcd\x14\x80\xc7\xb8\xdd\x86\xa4\x70\xec\x62\xc1\x4f\xd8\xe8\xa6\x50\x63\x7b\xd0\x6f\xa6\x39\xd9\x6c\xb8\x3a\xba\x9c\x64\xe3\x6e\xef\x68\x12\xb7\xdb\x43\x7a\x19\x72\x46\x18\xf6\x65\x06\xdb\xd4\x6f\x36\xd9\x09\xe2\xcc\x25\x58\x99\xf1\xde\x66\xc3\xf9\x07\x21\x94\x6d\x36\xbe\xaa\x06\x86\xd9\x58\x68\x83\x9b\xec\xa4\xdb\xed\x0e\xba\xdd\xae\x99\x2d\x27\x95\xcb\x0b\x82\x74\x33\x14\xb5\x07\xd2\x09\x43\x2c\x88\xb0\x1e\x47\x23\x69\xfa\xb0\xe3\xef\xf8\xeb\xf1\x0c\x6c\x36\xdd\xde\x51\xd3\x67\x4a\xed\x7a\xaa\xbe\x32\xf6\xd5\xea\xea\xef\x94\x7f\xf7\xf4\x77\xc2\xbf\xfb\x53\x00\x46\x40\x22\x43\xa0\xc2\x4a\xfd\x48\xd5\x8f\x04\xae\x5b\x68\xc0\x1f\x14\xf3\x7a\xad\x29\x24\x8c\x42\xba\xaa\xd6\xe6\x8b\xb1\x26\x80\x0f\xd6\xda\x9d\xda\xc5\x08\x23\x02\x43\x06\x33\x53\x30\x8b\xe1\xcb\x00\x78\x5c\xb7\xdb\x8c\x85\x68\x94\xac\x31\x77\xca\x83\xfc\x7e\xb7\x49\xc0\x78\x7c\xb0\x39\xe8\x37\x33\xb8\xe4\x28\xd8\xe5\x24\x42\xcb\x5c\x6f\x2f\x34\x7f\xfd\xc3\x11\xda\x0e\xc9\x4a\xe9\x32\xaa\x86\x8a\x57\xd7\x65\x5e\xad\xe8\x6c\x77\x9f\x77\xb6\xdb\xdb\xf8\xac\xbb\xaa\xdf\x29\x5c\x4a\x1e\x5c\x6a\x1e\x5c\x96\x78\x70\x09\x14\xb4\x51\x99\x24\x83\x0e\x27\xc9\xd1\xff\x5f\x24\xf9\x51\xd8\x56\x4a\x8f\x71\x33\x6f\x2d\x29\xb7\x96\x54\x0f\xc0\xa1\xa0\xff\x91\xa6\xbf\x1c\x8a\x54\x0d\x45\x02\x97\x6a\x72\x2f\xd5\xe4\xae\xa0\xbb\x5a\x42\xc2\x3c\xcf\xe1\xe1\xe1\xc1\xd0\x7d\xd7\xff\x3d\x24\x0d\xc2\x85\xb3\xb2\x62\xbe\x62\x8b\x01\x09\x29\xde\x6c\xca\x2e\x30\x58\xf1\x0c\xa6\x48\x1f\xcd\x14\x21\xb7\xd3\x71\x7f\x42\x87\xd2\x32\x8e\x4c\x08\x92\xda\xea\x02\xd3\xb3\xbb\x44\x69\xab\xaf\x71\x36\x23\xd1\x8a\xf2\x00\x3e\x11\x18\x12\x46\x17\x2f\xe5\x45\x8b\x08\x34\x9f\xf0\x4d\x8c\x67\xb4\xd9\xf4\x14\x0a\xa5\xbc\x40\xa1\x09\x12\xe4\x26\x69\x7c\x85\x6c\x60\x22\x8b\x21\x1e\xea\x35\xad\xdd\x1d\x85\x27\xa8\x33\x0a\xdb\x6d\xc0\xf9\x2b\x64\x8b\x88\x9f\x20\x9f\xf5\x22\xf3\x13\x30\x4c\x4f\xd8\x0f\x1e\xaf\x0e\x0c\xf9\x0f\x00\x36\x9b\x44\x9b\x00\xa6\x27\xfd\x66\x33\x69\x36\xeb\x74\x72\x56\x0f\x26\xb9\x5c\xf9\x34\x71\x57\x21\x09\x6f\x6d\xca\x6a\xcd\x59\x27\x72\x52\x73\x6b\x55\x1e\xa8\x7f\xf4\x13\x7a\x3f\x25\xe1\x8c\xdb\x9e\x20\x7e\x68\x75\xce\x3e\xdf\xa5\x8b\x05\x26\x88\x06\xef\xd2\x85\x0c\xda\x63\x1f\xe1\xa5\xfc\xe4\xee\x18\xc0\x04\x45\xfe\xf1\x21\x80\x21\x7a\xe4\x80\x86\x09\xab\xf3\x0e\x7f\xc7\xf1\x9b\x64\x7d\x1b\x9c\x7f\x7a\xf1\xea\x0d\x9c\xe3\xeb\xf5\xc2\xcd\x7a\xfd\xe6\xe5\xc5\xbf\xc3\x28\xb9\x49\xdd\x9c\xd3\x0f\x6f\xcf\xe0\x5d\x48\x12\x37\xe3\xf7\x17\x9f\x3e\x40\x4c\x48\x4a\xdc\x9c\x37\x9f\x3e\x9d\x7d\x82\xe9\xcd\x8d\x9b\x71\xf6\xf6\x6d\x2e\x9c\xee\x71\x47\x1d\x46\x87\x6c\x73\x9e\xd4\x78\xb2\xc0\x2f\x01\x62\x09\xc5\x3d\xa1\x56\xe9\xf6\x01\xaf\x3a\x8c\xd4\x91\xd3\x57\x6c\x7c\x32\xd5\x96\x3a\xd3\x55\x95\x51\x19\x4b\x75\x90\xcb\x2f\x4b\xdf\xe9\xc6\x45\xb2\x7e\x6f\x50\x05\x3d\x48\x93\xcf\x2b\x3c\x8b\x6e\xa2\xd9\x19\xcf\x78\xb5\x0c\x93\x05\xf6\x3d\xd5\x9a\x07\x7d\x80\x4e\xaa\xe1\xf3\x97\x91\x2c\x2b\x2f\x65\x3d\x3a\x38\x87\x97\x95\xad\x93\xf0\x4e\x34\x9b\x05\xaa\xe8\x34\xbf\xc2\xdf\xc3\xf8\x5d\xf8\xf7\x07\x91\x15\xc6\x1f\x19\x3b\x67\x55\x2e\x90\x8d\xc7\x4c\x15\x93\x18\x5f\xd2\x69\xb3\xe9\xb3\x3f\x88\xfd\xe3\x03\x90\x33\x94\x6c\xa3\xf7\x9a\xd6\x22\x00\xb1\x78\x56\x24\x0d\xec\x60\x0d\x01\x0b\xfc\x17\x98\x4c\x3c\x6f\xe8\xdd\x53\x4c\x6e\x83\xbf\x65\xc3\x86\x07\x5a\x14\x06\x41\x10\x81\x9c\xb3\xb8\x8f\xd9\x17\x75\xc9\x33\x76\xc7\x94\xb3\xbe\x9a\xce\x0c\xe3\xe7\x34\x2d\xa6\x63\x61\x11\xf9\x44\x79\x30\x99\x28\xd3\xc1\x38\x5d\xc8\x57\x53\x6c\xb2\x3d\x17\x49\x3e\x09\x7f\x18\x49\xde\xc4\x2f\x21\xc9\xa6\xfd\x73\x71\x64\xe2\xe0\x87\x51\x64\x0d\xfc\x0c\x86\xac\x9e\x40\x91\xdb\x62\x3e\x13\x45\x26\x98\x7e\x18\x45\xd6\xc0\xcf\xa0\xc8\xea\x09\x14\xb9\x28\x7c\x2e\x8e\x5c\x44\xfe\x30\x92\xbc\x89\x9f\xc1\x92\x57\x14\x68\xe6\x23\x4b\xf0\xc6\x88\xf8\x97\x99\xdf\x81\x49\x70\x7a\x66\x41\x03\x53\x18\xb3\x35\xc9\x59\x87\xcc\xb3\xa3\x25\xc2\xb9\xb5\x6a\xb9\x7a\x0a\xd3\x12\xb4\x18\xd1\x4f\x19\x22\xf1\x04\xa9\xec\x59\x22\x49\x69\x43\xbb\x93\xf0\x40\x71\x45\x25\x2a\x8c\xe4\xdf\xa2\x99\x20\x08\x84\xd7\x99\xa5\x16\x77\x3b\xa8\x72\xee\x6b\x2b\xdf\x20\x5c\xad\xe2\x07\x4e\x3f\x88\xc1\x68\x29\xb0\xf7\xff\xe0\xbe\x18\x3f\xe1\x64\x8e\x09\x26\x7f\xfa\xed\x91\x04\x49\x78\x8b\x73\xff\xb7\x47\x1c\xdc\x86\x2b\x1f\xa3\x93\xff\xf8\x7c\xf6\x41\x9e\xa7\x45\x37\x0f\x3e\x2e\x42\xb1\x35\x78\x2c\xb6\x22\x2e\x8a\xdb\x8a\x7a\x43\xfc\x44\x63\x0d\x51\xee\x0f\xee\xf5\x90\xeb\x7e\xbd\x83\x5f\x72\x1c\x27\xed\x79\xb9\x7e\xc5\x3d\xc2\x2d\x30\x95\xc3\xfb\x1a\xaf\x58\xfb\xc9\x2c\xc2\x19\xd7\x36\x78\xea\x27\xbe\xb6\x91\x07\x5b\xc3\x88\x90\x37\x8f\x7e\xa3\x21\x59\x60\xea\x41\xc2\xbf\xe6\x46\x7d\x6f\x54\x06\xc0\x86\xf5\x7d\xb8\x82\xb5\x6d\x56\x1d\x42\x5e\x92\xe9\x66\x73\x39\xcd\x2b\x70\x77\xdc\x0c\x95\x1a\x0c\x96\x21\x5b\xd1\x80\x71\xe9\x67\xe7\xf3\x37\x45\x6a\x88\x1c\x47\x71\x29\x87\xd9\xdf\x41\x25\x15\xb9\xcc\xa4\xff\xf3\x54\xf6\xe6\x43\x78\x8b\xdb\x73\x85\x60\x63\x16\x26\x8d\x34\x89\x1f\x1a\xd7\xb8\xb1\xce\xf0\xbc\x41\xd3\x86\x52\x6d\x1b\x61\x83\xab\x90\x98\x62\xe2\x81\xd1\x8e\xd5\x78\x06\x1e\xe9\x65\x34\x45\x08\xd1\x09\xbd\x24\x53\xf1\x8a\xe1\x31\x9a\x0f\x31\xe4\x0f\x3b\x86\x59\x0e\xf8\x21\xd4\x14\x5d\xda\xc9\x53\xc8\x6b\x52\x90\xfb\x19\xc4\x30\x05\xb9\x62\xb5\x4c\x7b\xe9\x43\xdc\x34\x1c\x96\x09\x22\x5e\x6c\x65\x00\x66\x79\x0e\x8f\x0f\x7f\xed\x76\xf9\x54\x8e\x54\x94\x26\x4a\xb4\xd0\xe0\xf4\xc2\x8a\x35\xc9\x52\xce\xb2\xd9\xbb\x28\xf9\x66\xa6\xd8\xda\x19\x0d\x4e\x0d\xf1\x44\xad\xa9\xcc\x32\x4f\x93\x8c\x86\x09\x8d\xdc\xa6\xf8\x45\x91\xe6\x34\x9e\x92\x12\xec\x7c\xbe\x4f\xd7\x99\x99\xf6\x72\x7d\x73\x83\x49\xa5\x56\x4d\x50\xe4\x1f\xf6\x0e\x00\xf7\x89\x98\x8d\x4a\x85\xf9\x25\xad\xc3\xa4\xc0\xf7\xac\x42\xfc\x19\x54\xb9\xe1\x9a\xaa\x6e\xb9\xa2\xf6\x33\x2a\xda\x75\x6c\x5a\xd4\x55\xb3\x4a\x89\x9a\x95\xd4\xad\xa9\x5f\x55\xd6\xb3\x9d\xcd\xe0\x4b\x2c\xc4\x2f\xea\x4c\x91\xc7\x7f\x79\x90\x25\x72\x55\x07\x75\xa7\xc8\xe3\xbf\x44\x22\xd3\x2d\x50\x6f\x8a\x3c\xf6\x43\x24\xb1\xb5\x1c\xf5\xa7\xc8\x63\x3f\x44\x12\x5f\x3a\xd1\x60\x8a\x3c\xfe\x4b\x24\x9e\xbd\x7d\x8b\xf6\xa7\xc8\x3b\x7b\xfb\xd6\xcb\x7d\x7e\x9e\x66\x73\x4e\xa6\x7c\x22\x98\xdc\x55\xd3\xb1\xa2\x84\x20\x8a\xc3\xa1\x35\xb5\xec\x52\xb2\xa6\xcd\xed\x75\x35\xad\x52\xa2\xa6\x33\x73\x6a\x6a\xda\xa5\xbc\x9a\x89\x58\x53\xb9\x54\xd0\xe3\x8f\x9e\xd1\x63\x3e\x32\x1e\xbf\xab\xe3\x03\xc4\xe4\x8f\x15\xb6\x5f\xbf\x9c\xc9\x02\x7c\xcf\xd6\xec\x8c\xcf\x95\x94\x97\x44\x8f\x32\x6d\xf8\x98\x6b\xa1\x84\xb5\x67\x81\x54\x55\x81\x29\x2c\x7e\x47\xa0\xf8\xc8\xc5\x19\xc7\xa3\xaa\xcc\x5f\xb8\x70\x54\x30\x22\x35\x7b\x6b\x5c\x2f\xa1\x70\xf0\x3b\xbe\x5e\xc4\x2f\xe6\xf3\x34\xb1\x27\x3a\x45\x91\xdf\x1f\xec\x2b\x0b\x98\x63\x61\x01\xd3\x3f\x96\x1b\xea\x83\x83\x03\xb6\xa3\x8e\xfc\xc3\xc3\x03\x65\x13\xb3\x2c\x1e\x9e\x98\x3b\x55\x67\x13\x1a\xdd\xf8\xa9\x7e\xae\x28\xc3\x28\xbb\xef\x1b\x81\x0f\xc6\xdd\x83\xc2\x58\xea\x91\x4f\xa8\x38\x0a\xb3\xe1\x4e\x17\xce\xf1\x8a\x2e\xd9\x8f\x15\xc1\x4c\x7a\xe3\xd7\x24\xbc\x8b\x92\x85\x10\x32\xac\x63\xfc\x98\xff\x29\x47\x82\x96\xa7\xc0\x3b\x46\x86\x9e\x07\x31\x28\x2f\x6d\x9c\x44\xbd\x46\x94\x89\x85\xac\xf0\xec\x95\x26\x0d\x81\x76\xa3\x7b\xd0\x08\x93\x79\x23\xbc\x4e\xbf\x33\x7e\xb1\x37\xda\x95\x68\xea\xfd\xb6\xda\x0b\x5b\x4e\xb8\xed\x1d\xb5\x78\x32\x63\xfa\x07\x91\xa0\xeb\xeb\x56\x82\x0d\xb8\xf7\x0c\xdd\xee\x8b\xf9\xdc\xcc\x15\xde\xde\x9f\xdf\xf4\x96\xea\x75\xc0\x1d\x04\x3e\x61\x1e\xc2\xe9\x17\x70\xd8\x0e\x61\x4b\x13\x0e\x26\x92\x0f\xde\xa5\xd9\x8f\xd0\xde\xad\x64\x03\x12\x4d\xe4\x3c\xc2\x0c\x3f\xc7\x33\xaf\xa3\xae\x66\x29\xc1\x9c\x4d\x71\x80\x05\x67\x96\xbd\xa1\x68\x24\xa2\x20\x4d\x7e\x8f\xe2\xf8\x6c\x85\xc5\x8c\xe7\xd9\x06\xe4\x22\xf8\x37\x26\xb7\x51\x12\xc6\x3a\xb4\x3d\xdb\x26\xcc\x8a\x95\x90\xcd\xe2\xc0\xde\x1f\xc1\x25\x8a\x60\x8c\x96\xc1\x15\xe1\xaa\xb7\x4a\x9e\xb1\xa4\xd9\x32\x24\xe1\x8c\x62\xf2\x1f\x69\x94\x14\x79\x6b\x95\xf7\x39\xfa\xbb\x06\x3d\xe7\x89\x29\xc1\x2f\x49\x7a\x97\x15\x85\xaf\x58\xfa\xdc\x15\xab\xf0\x86\x25\xc7\x7a\x51\x81\x0b\xf6\x4d\x97\xf8\x56\x01\x1c\xf9\x1d\x18\x3a\x1b\x2d\xe0\xdf\xa8\x69\x45\xe4\x46\xa1\x62\xc0\x12\x21\xd6\xd4\x56\xc2\xc7\x70\x06\xd7\x70\x0e\x09\xbc\x82\x29\x5c\x6c\x9b\x97\xc0\x3d\xce\xf2\x3b\x8e\xcf\x15\x15\xf8\x5c\xb5\x6f\x73\x42\x15\x4b\xfd\x1c\xcc\xd2\xf4\xdd\x22\x30\x7e\xaa\x85\xca\x29\xba\x5d\x3a\xfc\x54\x3b\x75\x73\xf0\x49\x39\x00\x00\x8c\xd9\xf8\xeb\x71\xb4\x41\x57\xe0\x92\x59\xde\x36\x80\x58\x1d\x9d\x30\xa1\x72\x86\x08\x56\x75\x98\x9e\xef\xd8\xdc\xf6\xdc\x1a\x62\x3d\xd1\x85\xb8\xfe\xb4\x0c\x93\x79\x8c\x3f\xe1\x2c\xfa\x3b\xf6\x71\x30\x4b\xe3\x0c\xe2\x80\xcd\x03\x90\x03\x11\xf6\x80\x1a\xfd\x73\x4f\x6c\x55\x97\x26\x81\x59\x4a\xdc\x73\x9f\xdb\xf5\xdc\x0a\x15\x65\xf2\xdc\x5a\xd7\x97\x39\xf0\x01\x24\xfc\x5f\xac\x14\x09\x44\x7d\xe0\x9a\xcf\x7a\xeb\x0c\x37\xd8\x4e\x7e\x46\xbd\x9f\x39\xa7\xff\x33\xa3\x94\x52\x23\x84\xa2\x12\xf9\xbd\xc3\x63\xa6\x44\x18\x1e\x0b\xb4\x1a\x55\x18\x82\x33\x11\x88\x30\x24\xc1\x92\x9f\x69\xca\x97\x24\x9f\x69\x4a\xc2\x85\x78\xa0\x48\x82\x38\xba\x0e\x64\x4a\xf0\x1e\xdf\xa6\xe4\x41\x8c\x3f\x6f\x54\x14\x11\xb5\xcf\xe5\x78\x15\xd9\x6c\xa9\xff\x48\xf0\x4d\xe6\x0b\x77\x1b\x5e\x86\x93\x79\x1b\x27\xb3\x74\x1e\x25\x0b\x0f\x7a\x24\xbc\xf3\x80\x51\x5e\x5f\xbe\x68\xec\xd4\x05\x73\x8a\x8a\x52\x51\x2a\x36\xa5\x66\xcd\x88\xa9\xff\x71\xfc\x17\xfc\x70\x9d\x86\x64\x5e\xbc\x7a\xc1\xc1\x8a\xa4\x34\xa5\x0f\x2b\x71\x82\x67\x52\x44\xb9\x98\x4d\xe3\xf5\x6d\x92\x0d\xa5\xe5\x20\xff\x80\x8c\x87\x44\x0a\xfb\xc5\x5d\xa8\x15\x80\xd2\x35\x5d\xad\x6d\xcb\xa5\x64\x1d\xc7\x3b\x16\x92\xf2\x40\x4d\xa1\x7c\x47\x22\x8a\x2f\xce\xdf\x1e\xf9\xc2\x5b\x66\x01\x2d\x5b\xa6\x77\xef\x71\x96\x31\x9a\xdb\x97\x3a\x1c\xc0\xad\xcc\xc2\x90\x9e\x74\x26\x16\x4c\x56\x93\xbf\x37\x0c\x1f\x78\x85\xe1\x96\x5c\x86\xa0\xd3\x30\xe1\x02\xa0\xd4\xb4\x6c\xb7\x0a\x8c\x89\x10\xec\xb8\xfd\xc0\x54\x38\x8d\x38\x8f\xa8\xe3\x27\xa7\x00\x68\x17\x2a\xd3\x42\x70\x0c\x26\x38\x99\x39\xc7\x32\x8c\xb3\x85\x34\x51\x93\xe4\x1b\x7e\xc8\x7c\x0c\x98\x20\x7c\x13\xce\x96\x7e\x71\xf9\x05\x1e\x3d\x9c\x30\x59\xd4\xe6\x1a\xa6\xb7\x83\xa2\x66\x93\x56\x32\x65\x04\xf1\x65\x34\x05\xb9\x83\x48\x9a\x9c\x26\xee\x18\x4b\x56\x0c\xd2\xe4\xcb\xf9\x5f\xf0\x83\x88\x2d\x69\x78\xcf\x07\x8f\xdc\x08\x4b\xb1\x6c\xc0\xd8\xdd\xb5\x28\x53\x85\xdc\xd6\x84\x0c\xab\xeb\x70\xd1\xb2\x9a\x65\x6e\x79\x71\xdf\xa7\xd8\x97\xfb\xd8\x61\x8c\x8b\x08\xc4\xc2\x65\x8d\xdd\xe0\x1c\x2b\x35\xa6\x34\xee\xf5\x1d\x04\x8f\xdb\xfb\x66\xe6\xd7\x63\xaa\x4b\xf1\xd1\x58\x27\xe5\xa9\xeb\x30\x69\x86\x69\x09\x49\x8b\x75\x9f\x90\x04\x16\xb8\x59\x9c\x66\x35\xbc\x5e\x8d\x4a\xee\x83\x91\x92\xb1\x59\x0e\x8f\x3b\x85\x2d\xe5\xaf\x0a\xee\x57\x69\x92\x60\x8e\x07\x32\x3f\xde\x86\x6c\xd3\xf6\x60\x4a\xf4\xa8\x4e\x90\x6b\x29\xb1\x26\xb1\xda\xdb\xf0\xce\xb2\xa5\x10\xd1\x2a\x29\x28\xd6\xd1\xb2\x1c\x34\xdf\x8f\xac\x49\xec\xc0\x2a\x48\x51\x46\x34\x92\xab\xce\x53\x38\x5e\x87\x44\xac\x2a\xbf\xe3\xeb\xcf\xe9\xec\x9b\xf4\xab\x54\x85\x64\xba\xc2\x89\xcd\x32\x4f\x0f\x22\x03\x2f\xb2\xdc\x41\xcf\x6c\xc7\xaa\x66\x79\x96\x55\x92\x42\x51\x76\xe6\xb4\x6f\xaa\x0d\xbc\x1e\xc1\xe1\xfc\xe1\x33\x65\x94\x44\xba\x3b\xc1\xab\xb3\x0f\x1f\xde\xbc\x3a\x3f\xfd\xf0\xef\xd2\x35\xc8\x96\xb2\x67\x1f\xdf\x7c\x70\xa5\x80\xdd\xac\x85\x68\x9a\xd8\x34\xe1\x82\xa4\x4a\x8e\xcc\x70\xf4\xbd\x42\xfa\x4a\x20\xb7\xae\xb4\x17\x02\x89\x7b\xd9\x2e\x43\x7b\x65\x13\xda\x81\xe5\x0c\x43\x81\x91\xcb\x28\x88\xfc\x0b\xce\x72\xfc\xda\xc3\x1b\xa1\x8f\x5a\xb3\x55\x1c\xdd\x44\xfe\xe1\x51\x0f\x40\xca\x9f\x1d\x0d\x00\x64\x8a\xd3\xfe\xb1\x38\x7c\x39\xee\xf4\x81\x6c\x56\x1f\x69\x2c\x30\x95\xe7\x19\x2f\x1f\x4e\xe7\xbe\xa7\x54\x54\xe1\xde\x5c\xa8\x00\x28\x15\xfd\x4a\x46\x09\xf2\xb8\x66\xe4\x21\xb4\x48\x29\x7d\xe0\x1a\xed\x84\xf1\x3f\x16\xf2\xc4\x4f\xc1\x50\x6c\x74\xff\x2a\x3f\x47\xc2\xc6\xc4\xf7\x96\x94\xae\xb2\xa1\x87\x90\xf0\x30\x12\xc4\xe9\x8c\xef\xe2\xf4\x84\x9c\x78\x77\x59\x36\xdc\xdb\xf3\x86\xde\x1d\xff\x0b\x5a\x6e\xd1\x65\x9a\xd1\x52\xe2\x2a\xa4\xcb\x24\xbc\xc5\x2d\xef\x2e\xf3\xe0\xb2\x04\x3f\xc3\x21\x99\x2d\x61\xcc\xe7\x69\x56\x9e\xec\x7e\x08\x89\x21\x15\xe0\x4c\xea\x80\xbf\xe3\xeb\xf3\xf3\xff\xed\x27\x30\x86\x4b\x28\xba\x1b\xae\xe9\xf2\x8a\xa6\xdf\x70\x02\xf8\x7c\xf6\xc1\x48\xb6\x16\xce\xc5\xae\x45\xf9\xe3\xf4\xbd\x75\x12\xa7\xe1\xdc\x83\xc6\x94\x9b\xf9\x00\x26\x7a\x3e\x83\x9c\x29\xd2\xec\xff\xd1\xff\xd8\xdb\xfb\x53\x23\x4b\xd7\x64\x86\xdf\x87\xab\x55\x94\x2c\x2e\x3e\xbd\x13\x24\x6e\x5f\xaf\xd9\x86\x20\xf8\x5b\x16\xdc\x86\xab\xff\x1b\x00\x00\xff\xff\x1d\x3c\x06\x91\x57\x99\x09\x00") func staticJsGottyBundleJsBytes() ([]byte, error) { return bindataRead( @@ -209,7 +200,47 @@ func staticJsGottyBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/gotty-bundle.js", size: 332382, mode: os.FileMode(436), modTime: time.Unix(1503734056, 0)} + info := bindataFileInfo{name: "static/js/gotty-bundle.js", size: 629079, mode: os.FileMode(420), modTime: time.Unix(1761699058, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsGottyBundleJsLicenseTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x53\x5d\x6f\xdb\x36\x1b\xbd\xef\xaf\x38\x6f\xaf\x9a\xc2\xb5\xf3\x76\xc0\x86\xb5\x08\x30\x5a\xa2\x6d\x02\xb2\xa8\x91\x54\x5c\x5f\x2a\x12\x1d\x73\xb3\x44\x81\xa4\x53\xf4\xdf\x0f\x64\xe4\x3a\xe9\x80\x61\xc0\xae\x2c\x90\x7c\xce\x73\xbe\xbc\x78\xff\xbf\x37\x78\x8f\x93\x79\x68\xc6\xd1\xe3\xdd\x31\x84\xd1\x7f\x5a\x2c\x86\xb1\xff\xc3\xcf\x5b\xdb\x2f\xc6\xa6\xfd\xb3\x79\xd4\x8b\xe9\xc9\x4d\x7c\xfe\xdb\xc9\xb4\x7a\xf0\x1a\x4b\x99\x7f\xf8\xe9\x43\x76\x6a\xce\x5e\xa7\x8b\x27\xed\xbc\xb1\x03\xfe\x3f\xff\xe5\x76\x7e\x1b\x8f\xee\xee\xa6\xc9\x45\xc1\x32\x5a\x4a\x7a\x77\x17\x8f\x17\x0b\x64\x76\xfc\xe6\xcc\xe3\x31\xe0\x5d\x7b\x83\x8f\xb7\xb7\x3f\x7f\xf8\x78\x7b\xfb\x2b\xd4\x51\x23\x3b\x3a\xdb\x9b\x73\x0f\x2e\x41\xce\xe1\x68\x9d\x9f\x83\x9c\x4e\x48\x03\x1e\x4e\x7b\xed\x9e\x74\x37\x7f\xc6\x9a\x10\x85\xee\x8c\x0f\xce\x3c\x9c\x43\x24\xd1\x0c\x1d\xce\x5e\xc3\x0c\xf0\xf6\xec\x5a\x9d\x4e\x1e\xcc\xd0\xb8\x6f\x38\x58\xd7\xfb\x19\xbe\x9a\x70\x84\x75\xe9\xd7\x9e\xc3\x04\xd4\xdb\xce\x1c\x4c\xdb\x44\x98\x19\x1a\xa7\x31\x6a\xd7\x9b\x10\x74\x87\xd1\xd9\x27\xd3\xe9\x0e\xe1\xd8\x04\x84\xa3\xc6\xc1\x9e\x4e\xf6\xab\x19\x1e\xd1\xda\xa1\x33\x71\xc8\xc7\xa1\x0b\x98\x0e\x9f\x5e\xd1\x04\xf0\xfe\x07\xae\x1e\xf6\x70\x21\xd9\xda\x4e\xa3\x3f\xfb\x00\xa7\x43\x63\x86\xb4\xa3\x79\xb0\x4f\xf1\x6a\xb2\x6c\x42\x1a\x6c\x30\xad\x9e\x21\x1c\x8d\xc7\xc9\xf8\x10\x61\x5e\x92\x18\xba\x1f\x18\x76\xc6\xb7\xa7\xc6\xf4\xda\xcd\xff\x89\x8d\x19\x5e\xfa\x74\x61\x33\x3a\xdb\x9d\x5b\x7d\x25\x34\x41\x7c\xa7\xf5\x9f\x08\x4d\x60\x93\xe0\xce\xb6\xe7\x5e\x0f\xa1\xb9\x44\xb9\xb0\x0e\x36\x1c\xb5\x43\xdf\x04\xed\x4c\x73\xf2\xd7\x2c\x52\x8c\xe1\x78\x21\xf4\x52\xcc\x2b\x9d\xa5\x36\x09\x22\x6e\x18\x9a\x5e\x47\x7a\x6b\x6b\x1f\x4f\x1a\x6c\x68\xe7\x18\xec\xf5\x2e\x65\x62\x82\xff\x2e\x72\x78\xc6\xb4\xce\xa3\x6f\xbe\xe1\x41\xc7\x76\x75\x08\x16\x7a\xe8\xac\xf3\x3a\x16\x69\x74\xb6\xb7\x41\xe3\xd9\xab\xe0\xd1\x69\x67\x9e\x74\x87\x83\xb3\xfd\x04\x95\xdc\xf1\xf6\x10\xbe\xc6\x6a\x4d\xd5\x83\x1f\x75\x1b\x5b\x87\xd1\x99\xd8\x48\x17\xfb\x36\x3c\x37\xcf\xfb\xab\x92\x09\x44\x6d\x98\x84\xe4\x2b\xb5\x23\x82\x82\x49\x54\x82\xdf\xb3\x9c\xe6\x58\xee\xa1\x36\x14\x19\xaf\xf6\x82\xad\x37\x0a\x1b\x5e\xe4\x54\x48\x90\x32\x47\xc6\x4b\x25\xd8\xb2\x56\x5c\xc8\x09\xe9\x2d\x91\x60\xf2\x6d\xba\x26\xe5\x1e\xf4\x4b\x25\xa8\x94\xe0\x02\x6c\x5b\x15\x8c\xe6\xd8\x11\x21\x48\xa9\x18\x95\x33\xb0\x32\x2b\xea\x9c\x95\xeb\x19\x96\xb5\x42\xc9\xd5\x84\x53\xb0\x2d\x53\x34\x87\xe2\xb3\x44\xe0\xef\xc3\xe0\x2b\x6c\xa9\xc8\x36\xa4\x54\x64\xc9\x0a\xa6\xf6\x69\xeb\x8a\xa9\x32\x6e\x5c\x71\x31\x61\x11\x54\x44\x28\x96\xd5\x05\x11\xa8\x6a\x51\x71\x49\x11\x85\xe6\x4c\x66\x05\x61\x5b\x9a\xcf\xc1\x4a\x94\x1c\xf4\x9e\x96\x0a\x72\x43\x8a\xe2\xb5\xee\x09\x8a\xef\x4a\x2a\xa2\x98\x97\xd2\xb1\xa4\x28\x18\x59\x16\x34\x2e\x4d\xb2\x73\x26\x68\xa6\xa2\xbe\xeb\x57\xc6\x72\x5a\x2a\x52\xcc\x26\x2c\x59\xd1\x8c\x91\x62\x06\xfa\x85\x6e\xab\x82\x88\xfd\x6c\x42\x96\xf4\xf7\x9a\x96\x8a\x91\x02\x39\xd9\x92\x35\x95\x78\xf7\xaf\x9c\xaa\x04\xcf\x6a\x41\xb7\x51\x04\x5f\x41\xd6\x4b\xa9\x98\xaa\x15\xc5\x9a\xf3\x3c\xa5\x20\xa9\xb8\x67\x19\x95\x9f\x51\x70\x99\x4c\xac\x25\xbd\x50\xca\x89\x22\x89\x44\x25\xf8\x8a\x29\xf9\x39\x7e\x2f\x6b\xc9\x92\xa3\xac\x54\x54\x88\xba\x52\x8c\x97\x37\xd8\xf0\x1d\xbd\xa7\x02\x19\xa9\x25\xcd\x93\xf5\xbc\x8c\xe2\xbf\x77\x8a\x72\xb1\x8f\x0b\xa2\x37\x29\x9f\x19\x76\x1b\xaa\x36\x54\x44\xb7\x93\x83\x24\x5a\x23\x95\x60\x99\x7a\xf9\x8c\x0b\x28\x2e\x2e\x0a\xaf\xda\x51\xd2\x75\xc1\xd6\xb4\xcc\x68\x7c\xc3\x23\xd6\x8e\x49\x7a\x03\x22\x98\x8c\x0f\x58\xa2\x80\x1d\xd9\x83\xd7\xc9\x84\x18\x63\x2d\xe9\x25\xc0\xd5\xeb\xb2\xcf\x52\xe4\x60\x2b\x90\xfc\x9e\x45\x21\xd3\x48\xc5\xa5\x64\x53\xad\x92\x95\xd9\x66\x0a\x23\xfe\x75\x16\x6f\xfe\x0a\x00\x00\xff\xff\x22\x1d\x71\xcb\xee\x06\x00\x00") + +func staticJsGottyBundleJsLicenseTxtBytes() ([]byte, error) { + return bindataRead( + _staticJsGottyBundleJsLicenseTxt, + "static/js/gotty-bundle.js.LICENSE.txt", + ) +} + +func staticJsGottyBundleJsLicenseTxt() (*asset, error) { + bytes, err := staticJsGottyBundleJsLicenseTxtBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/gotty-bundle.js.LICENSE.txt", size: 1774, mode: os.FileMode(420), modTime: time.Unix(1761409913, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsGottyBundleJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xd7\x76\x23\xbb\xce\x36\x0a\xdf\xcb\x3a\xb5\xff\x4f\x39\x7d\xff\x51\x95\x24\xcb\x6a\xd9\x96\x43\xbb\x1d\xce\x1c\x95\x73\xd6\xbe\xf9\x3d\x88\x07\x20\xc1\xaa\x92\x6c\xcf\xb9\xd6\xbb\xde\x3d\xc6\x3c\xe9\x96\x59\x24\x48\x82\x20\x00\x02\x20\xf8\xff\xfc\x6b\xfd\x31\x5f\xf4\x26\xe3\x7f\xfd\xdf\xdc\xe9\xbf\x3e\x7b\xc3\x8f\x7f\xfd\xdf\x7f\xfd\x9f\x54\x67\xb2\x5c\xee\xfe\x7f\xaf\xab\xf1\xfb\xf0\xe3\xff\xf4\x17\xff\x3a\xfd\xd7\xe8\x65\x3a\xed\x8d\x3b\x8b\x7f\xfd\xdf\x7f\xfd\xff\x27\x61\xb0\x0b\xab\xa7\xcd\x20\x78\x08\x4e\xeb\x41\x30\xba\xac\x9e\xb6\x82\x60\x7c\x59\x33\x7f\x6d\x2e\xcd\x97\xd6\xe9\x65\x10\x5c\x9e\xbe\x04\xc1\x8b\xf9\xb3\x59\x37\x9f\xea\xa7\xd5\x20\xa8\xba\x5f\xd4\xba\x7e\x66\x1a\xb7\x4e\xef\x82\xe0\xae\x41\x05\xb5\xd3\x46\x10\x34\xa8\x19\x41\x39\x43\x0b\xf3\x77\x93\xfe\x3d\xa3\x0a\x00\x74\x4e\xff\xb6\x4e\xef\x83\xe0\xfe\x82\x7e\x5f\x12\x28\xaa\x72\x45\x05\x6d\x1a\xc6\x35\x7f\x7c\x0a\x82\xa7\x2b\x6e\x64\x7e\xa3\xd1\xcd\x69\x3b\x08\xda\xb7\x3f\x03\x80\x46\x54\xf1\x36\x56\x91\x3f\x9a\x7f\x04\xca\x24\x0c\x82\x49\x58\x3d\x7d\x08\x82\x07\x81\x86\x32\x20\xc6\x4c\xf6\x1a\x93\x6f\x1b\xec\x55\x2d\xca\xcc\x3f\x77\x04\xab\x7a\xfa\x11\x04\x1f\xcf\x40\x09\xa1\xd7\x7c\x7b\x41\x03\x83\xf8\x57\xfa\xf4\x46\xdf\xde\xe9\xf7\xc7\xe9\x2c\x0c\x82\x4e\x68\xfe\x68\x7f\x72\x51\x07\x45\xb4\x4a\x0f\x01\xf7\xf1\xf4\xce\x2b\x62\xfe\x6d\x30\x20\xb7\x70\xc0\xba\x59\xad\x2a\xe1\xbb\x4f\x20\xeb\x9d\x90\xca\xea\x34\xbe\x29\xca\x06\x28\x6b\x10\x2a\x87\x21\x77\x6a\x8a\x9a\x54\x74\xe1\xe6\x65\x10\x8a\xc9\xbe\xcc\x43\xee\x9f\x70\x60\xc6\xa6\x07\xd1\x26\xd4\x2f\x13\x3a\x3d\x53\x83\xaa\x71\xc7\xe6\xf7\xdc\x1b\x4c\xfb\xf4\x2d\x08\xde\x96\x21\xa0\x53\xd7\x2f\x41\x10\x2c\x08\xfb\x6f\xeb\xd0\x62\xbe\x0d\xc2\xdc\x84\x84\xd0\x2d\xfd\xd7\x44\xd9\x0e\x28\xfb\xad\xa6\x02\x52\xdf\xa3\xab\x34\xa3\xd4\x40\x2f\x84\x8c\x47\xa2\x6f\x03\x5c\x63\xe0\xd2\x55\xa4\x5f\xf8\xf7\x99\xea\x7d\xea\x29\xea\xea\x16\xa4\x5a\x1a\x34\x68\x98\xdd\x62\xd1\xf6\x81\x4f\x83\x30\x08\xda\x6d\x5a\xd9\x65\xa8\x96\xb6\x8c\x3f\xaa\xae\x41\xd5\xed\xb1\x2a\xa1\xa0\x8f\x92\x41\xf5\xf4\x26\x08\x6e\x86\xf8\x6b\x84\x6f\x6e\x6b\x56\x15\x1c\x5e\xf9\x59\x78\xba\x09\x83\x60\x13\x4e\x19\xa6\xf9\x27\x0f\xe4\xde\xa9\x2d\xdb\x04\x5a\x08\x14\xba\xa5\xda\x6a\x30\x34\x38\x53\x89\xf8\x4a\xfd\x37\xfd\xfb\x40\x25\xbf\xd0\xce\x22\x6f\x8e\x26\x2b\xdd\xd2\xd4\x58\x56\x35\x47\xa1\x6d\xed\x38\x4a\xa7\xaa\x90\x9d\x0d\x69\x5b\xbe\x33\xa5\xd9\x91\x37\xf9\x5f\x83\x85\xdf\x8c\x7c\xd3\x8a\xf1\xe9\x35\xab\x84\x02\x57\xfd\x95\x07\x06\xdd\x44\x2b\x55\xf7\xbb\xa3\x7e\x37\xdd\x4f\xac\xaf\x1b\xef\x8d\xdb\x84\x55\x47\x36\xe8\x86\x37\xa1\x10\xba\xf9\x6f\x58\x73\x68\x18\xd5\x1c\xaa\x30\xed\x3f\x8c\x47\xf3\xef\xbb\x5b\xf6\x4b\xfa\x79\x8f\x55\x31\xb5\xd7\x20\x65\x86\x79\x49\x1f\xc6\x80\x3c\xa9\xd1\xd8\xd6\x7a\x2b\x19\xc2\x78\x50\xbb\xba\x6c\x68\xef\x97\xf9\x6d\x49\xe1\xcc\x2d\x8c\xa6\xe0\x4f\x21\x11\xf3\x1f\x53\x78\x51\xcd\x4a\x2f\xaa\x19\x51\x53\xfd\x6d\xfe\xe9\x6b\x49\xb0\xaa\x31\x9b\xc4\xbf\x06\xf5\xeb\x9a\x1a\xa6\x01\x10\x28\xb0\xab\xda\xe9\x28\x0c\x82\x41\xe8\x76\xd0\x1a\x93\xdc\xd4\x68\x69\xb1\xbb\x15\x46\x01\xc7\x4c\x42\x06\x69\x4a\x79\xdc\x89\x83\x30\xac\x68\x0b\xc6\xc9\x7b\x16\xe5\xe6\x67\x29\x4c\x18\x46\x2e\x54\x12\xee\x8d\x6a\xff\xd1\x2c\x61\x8a\xef\xdc\x76\x53\x23\xc6\x48\x43\xca\x85\x82\x4c\x22\x3a\xf3\xcf\x36\x14\xce\x45\xf4\x64\x47\xbf\xf7\x18\xe9\x10\x48\xfa\xc9\x94\x72\x68\x99\x0b\x35\xba\xb8\xd1\xbf\x61\x86\x76\x37\x04\xb1\x29\xb9\xa5\xa4\x5f\x3c\xc3\x71\xa8\x64\x55\xcf\x90\x5f\x96\x58\xfb\x43\xa6\x9a\x20\xd6\x2c\x39\xbd\x68\xba\x9b\xe9\x69\x32\x86\x6a\xb2\xab\x8d\xf8\xc0\x16\x0e\xf5\xcc\x78\x61\x7d\x1a\xf3\x88\x3a\x8b\xb1\xef\x95\x66\x53\x77\xec\x2e\x42\xce\x51\x96\x58\xf4\x3a\xab\x09\x53\x31\x8b\x99\x53\xca\x14\x3e\x14\x6b\xd4\x53\xa1\xa6\xd9\xae\x62\xaa\x28\xef\x41\x07\xd1\xbb\x67\x40\xc2\xf0\xa5\x5b\x63\x41\x05\x24\x11\xb2\xcd\xcf\x1c\x68\xc6\xf6\x6e\x15\x1f\x9a\xfc\x7b\x64\xf2\x95\x30\x79\xf6\x76\xa2\xf8\x97\x45\x2a\xc8\x77\xef\x4d\x80\x7e\x77\xab\x0e\x21\x41\xc2\x28\x55\xaf\x0e\x9c\xc2\xab\xf9\xd2\xd7\x12\x93\x4a\xce\x85\xf3\xd6\x3d\xf5\xca\x35\xe9\x56\x35\x1b\x97\x91\xd4\xad\x56\x85\x01\xf5\x35\xb5\x59\x76\xed\x51\x97\xa9\xf6\xa2\x65\x41\x8f\xd7\xe3\x86\xbf\xde\xbd\xb8\xcd\x82\xd1\x4f\x94\xb4\x18\x03\x6e\xca\x6f\x6b\xfa\xeb\xd5\xd4\x36\xb0\x5a\x4b\x17\x63\xfd\xa0\x12\x30\x1a\x00\x1d\x01\x68\x0a\x58\xe3\x55\x11\x59\x6e\xf9\x41\xbf\x16\x9d\x10\x61\xe4\x92\x15\xcb\xa6\x68\x8e\xe6\xdf\x2b\xa5\x8b\x62\xdf\x3a\x5d\xf4\xc1\xe9\xa2\x8f\x18\x79\x9d\x76\x3e\x8d\xa8\x4d\xf0\xc6\x75\xbd\x28\x66\x50\x59\xc6\x66\xbe\x1e\x04\x79\xa0\xd2\xe3\x1e\x31\x95\xb0\x57\x57\x1b\x95\x3e\x0e\xf5\x19\xc3\x91\xcc\xa8\xae\x74\x16\x7f\xa1\x79\x18\x13\xe9\xcf\x90\xf2\xb6\xee\x2a\xed\xea\x84\x37\x7c\x38\x5d\xd4\x82\x60\x51\x03\xc3\xa9\xcb\x18\x88\x25\x58\x25\x7a\x5c\x53\x5a\x34\xef\xdb\x94\xa6\x13\x33\x4e\x4f\x35\x1e\x7b\x4c\x18\xaa\xde\x32\x54\x54\x79\x13\x48\xaf\x77\x53\xac\x1f\xd7\xf5\x54\x70\xb5\xc3\x7d\x2d\xdb\x09\xf9\x4d\x9d\x1a\x94\x50\xeb\x99\x6a\xa5\x6b\x34\x81\x4c\x4d\x41\x4c\xd7\xe8\xb8\x30\x03\x03\x2e\x09\x4d\xe1\xbc\xd0\x50\x15\xcf\x58\x8a\x7a\x7a\xbe\xa7\x0f\x04\x59\x5a\xdc\xfb\x42\x4d\x7a\x33\xf4\xc2\x7a\x4d\xdd\xd4\xac\x07\x41\x66\x4c\xad\xca\xe3\xb0\x54\xc3\x89\xa7\x1e\x04\xeb\x0d\x2d\xf8\xf6\x57\x99\x88\xb2\xfd\x0a\x2d\xb4\x7e\xda\x38\x9d\xdd\x54\xf7\x21\x56\x2e\xe8\x9c\x99\x91\x3c\xa1\xc3\xfb\xa0\x4e\x67\x9f\xa0\x4a\x83\x1d\x98\x09\x54\x71\xf4\x08\x88\x5d\x3e\x98\x82\x47\xfe\xfb\x26\x08\xee\xcd\xdf\x7f\xf8\xef\x01\xce\x61\xcd\xa0\x3e\x95\x26\x46\x84\x8c\x08\xca\x58\x8a\xee\x21\x67\xab\xcf\x5f\x41\xa9\x5a\x28\x09\x45\x76\x78\xe5\x30\x15\x9a\x6e\xda\xf5\xd3\x87\xa0\x4a\x1a\x49\x35\xf0\xff\x6d\x04\xf5\xa0\x00\x11\xb3\xa3\xff\x88\x51\x54\x9f\xf7\x28\x4b\xd7\xb9\x03\x2a\xdd\x87\x19\x14\x67\x75\xd5\x1c\xca\xf2\x44\x00\x4f\x54\xd6\x0f\x19\x66\xd1\xf4\x4c\x1b\xd7\x0c\xaf\x1a\xcc\xce\xce\x4e\xdb\xc1\xf8\xac\x4e\xa7\xb2\x0c\x91\x5a\x70\xfa\x11\xd4\x2f\x69\x87\x62\x5c\xe7\x66\xfb\x57\x41\x6f\x2f\xdd\x33\x3d\x90\x41\xd8\x3e\xbd\x0b\x9a\x43\x28\xa7\x37\x66\x5a\xcf\x44\x28\x0f\xe0\x51\xa6\xa0\x4b\xa4\x85\xe6\xa4\x86\xb6\x1e\x09\xc4\xd3\x69\x3b\xa8\xe7\x42\x22\xda\x07\xa3\x6f\x56\x7f\xeb\xd3\xa6\x19\xe3\x2b\xfd\x44\xa3\x77\x53\xa3\x1b\x7e\xe8\x92\x97\xa0\x09\xcd\x01\x27\xa0\x0e\xe9\x3c\x18\x4b\x2f\x34\xc8\xac\x2e\xab\xaf\x0a\x3e\x2d\xc8\x34\x34\x43\xaf\x9a\x93\x4b\xa4\xb7\x4b\xb3\xc0\x77\x66\xfc\x3c\x94\xcb\xe0\xb4\x19\x34\xcc\x86\x02\x6b\x35\x7a\x8a\x69\xb3\x80\x72\xf5\xcb\xf4\x30\xa6\xb5\x08\xde\xe8\x84\x7f\x77\x4f\x20\x88\x3e\xee\x8c\x32\x5f\xdf\x57\x75\xc3\x15\x6b\x35\x18\x66\xc3\xac\x0c\xb6\xf4\x03\x14\x6e\x1a\xe0\x92\xa0\x3f\xf4\x88\x26\x4a\x21\xd1\x04\x48\xf2\x69\x12\x42\xf7\x7b\x08\xaa\xcb\x70\x18\x6b\x39\x37\xe0\x79\x13\x18\x89\x53\xbd\xa0\xc6\x84\x9c\x87\x51\x88\x99\xda\xbe\xa7\x6a\x61\xee\x69\xe3\xb5\x58\x08\x34\x82\x6a\x2e\x34\x0b\x78\x43\x8b\xd9\xc2\x4e\xb2\xdd\x74\x0d\xce\xaa\xa4\x28\xb6\x5a\x54\x5c\x0e\x99\x3d\x9b\x3f\x8c\xc4\xad\x2e\xcd\x71\xa2\x7a\xe6\x35\xba\x31\x8d\xfc\x52\xda\x30\x0c\x0a\xdc\xa6\x03\x31\x43\xb8\xdd\x47\x81\x54\x42\xae\x6f\x06\x3e\xa2\x91\xbf\x8d\x81\xda\x09\xce\x2f\x57\xa6\x1d\x98\x70\xab\x80\x2f\x23\x40\x3c\x4b\x84\x38\xa4\xfd\xc9\x10\x67\x55\x90\xd1\x32\x0e\xb2\x5f\xad\x40\xac\xae\xf8\x84\xb5\x0a\x83\x60\x17\xd6\x98\xee\x9e\x82\xea\x1c\x28\xec\x82\x6d\x90\x3a\xd1\x58\x63\xf5\x20\xd5\x1e\x4e\x78\xf5\x1f\xcc\xba\x43\xbf\x1c\xd2\x4a\x10\xcb\x6e\x5d\x50\xa7\x1b\xa3\xf3\x80\xc3\xb4\xf8\x14\xb1\xab\x62\xd5\x27\x60\xd4\x8d\xa0\xba\x06\x55\xcd\x1d\x8b\x1a\x87\xc4\x23\x47\xe1\x84\x95\xbd\x87\xa0\x5a\x08\xa1\x53\x90\xda\xd1\xba\x52\x3b\xb6\x8a\x23\x5a\xeb\x16\xec\x83\x96\xe6\x0f\xc6\x42\x2b\x4e\x1c\x2c\x00\x69\xb6\x2e\x4e\x1f\x8c\x04\x31\x13\x21\x16\xfe\x50\x22\x24\x9a\x8d\xd5\x08\x4e\xdb\x41\x2d\x38\x21\x86\x47\xbb\xfd\x62\x04\x9d\x6d\x49\xc0\x5e\xb1\xeb\x17\x46\x3e\x54\x5f\xcd\x26\xa3\xdd\x65\xfe\x59\x37\x02\xc3\xf3\x5f\x98\x0c\x8c\xfc\x08\x4e\xab\xa7\xc5\xb3\x6a\xa6\xfa\x7a\xfa\x62\x76\xdc\x5d\x50\xd5\xff\xdc\xa0\xac\x1e\x9c\xbe\x04\x2f\xc4\xc8\x9e\x48\xc4\x3e\x9f\x3e\x04\x67\x01\xb1\x2e\x42\x54\xd1\xa0\xa8\x91\x0b\xf7\xe7\x40\xe8\xb9\x62\x8e\xb4\xcc\x06\x53\xd5\x5f\x22\x46\x82\x07\xda\xb3\xf8\xc7\x6c\xeb\xee\x19\x2d\x53\x8f\xa4\xcd\x7d\x15\x1c\xb3\x6e\xd4\x80\xc2\xb9\xe6\xcc\xa0\x03\x33\x7c\x3e\x20\x9b\xf9\xad\x43\x1a\xc3\x8b\xc1\xe8\x2b\x50\x61\xda\xbe\xa2\xf4\x8a\x7e\x13\xa2\xea\xa7\x8b\xb3\xa0\x7a\x46\xa2\xca\x1c\xc3\x1b\xcf\x43\xd8\x48\x46\x4d\x91\x5e\x0c\xbd\x4a\x0b\x16\x4e\x9b\xaa\xf3\x56\xbe\x06\x93\x97\x6d\x73\x6f\x88\x7b\x9c\x54\xc7\x41\x9a\x9e\x19\xde\xbe\x0d\xfb\x90\xd0\x0b\xb2\x73\xdc\x83\xfa\x3e\x88\x1e\xf9\xd4\xd3\x0e\xaa\xdd\xda\xb6\xa9\x6a\xdd\x34\x40\x6a\x66\xb3\xec\xc3\x3d\x3e\xa5\x9b\x66\x67\xf5\x48\x8e\x2e\xc3\x0c\x0a\xb3\x52\xf8\x20\x32\xb0\x75\x4b\xe8\x31\xfc\x90\x49\x7d\x8c\x01\x4e\xea\x46\x1c\x32\xb1\xe7\x68\x17\x9d\xe7\xc1\x4a\x40\xdf\xa8\xb6\x20\xb6\x44\x5a\xf2\x65\x2d\xf6\x95\x76\x69\xb5\x8b\xdd\x57\x34\x7b\x9d\x6c\x47\xf5\x20\xe3\x21\x83\xf7\xf4\xcc\xe8\x28\xf5\xcf\xad\x5e\xc9\xd6\xaa\x4e\x1b\xa0\x72\x46\xc0\x4f\xce\x48\x17\xe8\x85\x58\x9a\x07\x39\x22\xb4\xae\x68\xf6\xd7\x66\xb6\x46\x30\x98\x71\x18\xd9\x9e\x0f\x4f\x77\x61\x10\xa4\x4d\x07\xd5\x71\x8d\xf5\xc7\x87\xa0\xfa\xab\x0f\x29\x38\x68\x9c\x2e\x42\xb2\x3c\x3e\x18\xc6\x3a\x4c\x2c\xa5\x1e\x7e\x73\x0f\x75\xbb\x51\x1a\x41\xb5\x7a\x0f\xae\x6c\x19\xf7\x55\x0a\x14\xda\x81\x86\x6c\x66\x6e\xa4\x6c\x23\xa8\x9f\x2d\x7f\x81\xe6\x7f\x89\xae\x62\x69\x08\x27\xcc\x07\x62\x81\xd5\x60\x53\x37\x73\x5d\xd6\x21\xf8\x81\xc9\x00\x64\x79\xc9\xc7\x84\x3a\xb6\x44\xe5\x4c\x63\x6a\x41\xff\x5d\x0e\x89\x80\x2e\x4b\xde\xb7\x09\x21\x60\x5a\x83\xb8\x34\x70\xef\x69\x5b\x9b\x81\xb7\xcf\xcd\xc0\x2f\xa6\x0d\xdd\x60\x70\x46\xe3\xcf\xe9\x31\xdf\x34\x09\x39\xdb\x1a\xa4\xb7\x83\xf5\x46\xff\x1a\x58\x46\x0a\x92\x84\x5f\x91\x2a\x59\x22\x04\xd6\x4b\xbf\x34\xb5\x6e\x48\x50\xbe\x91\xa9\xa0\x9a\x0b\x97\x4d\xc5\x0a\x5a\x2b\xf0\xd3\x94\x6d\x71\x17\xd4\xd7\x52\xa7\xd3\x3a\x7d\x0b\xaa\xd7\x39\xec\xdd\xf9\xb9\x2b\xac\x77\x43\x12\x54\xa4\x02\x3e\x73\x7f\x9d\x96\xa9\xf7\x51\x72\x5c\x17\xcc\x9e\x05\xa3\xb0\x6e\x26\xf0\x1b\xf9\xdc\xa0\xb1\xd7\xaf\xdd\xfc\x4c\x0f\x58\x82\xcb\x61\x4b\x4f\xa5\x88\xa9\x8c\x5b\x32\x85\xcb\xa0\x3a\xac\x6e\x35\x73\x93\x6e\xfa\xaa\x21\x4e\x22\x0c\xbc\x14\x9a\x3d\x49\xd8\xfb\xc8\xd6\x98\x33\x9b\x3d\x59\xa3\x9d\x15\x18\xce\x35\x56\xf5\xb7\x35\x57\xbf\x6f\x96\x2e\xf8\x24\x24\x63\x83\x14\xd1\x4d\x8e\xac\xdc\xed\x7c\x2b\xa2\xd3\x2c\x43\xe2\xec\x6f\xb4\x39\xae\xcd\x6f\x68\x5e\xad\xd4\x59\x32\x5b\x22\x91\x05\x93\x0c\x91\x3d\x0f\x62\x4f\xe7\x31\x1a\xc4\x4d\xba\x4e\x84\x9f\x61\xac\x9e\xd3\x74\xd7\x06\x5e\xf5\x73\x58\xf5\x88\x8a\x35\x4f\x33\x9c\x35\xb5\xea\x86\x0b\x92\x8d\x77\x4b\x62\xfc\x8f\x06\xf1\xbf\x5c\x37\x17\xa6\x2a\xf5\x72\x47\x07\x98\xea\xf5\x37\x7a\x61\x0d\x90\x7a\x31\x68\xa8\x0e\xbd\x4e\x48\xa6\x9a\x1d\x02\x93\x4d\xeb\xda\x80\x20\x23\x98\xee\x79\x42\xd6\x64\x6c\xbb\xfe\xb9\xee\xb3\x5c\x75\x38\xed\x1a\x55\x28\xb8\x64\x09\x49\x56\x2b\x5a\x3b\xe2\x0d\xdd\x2a\x9f\xb6\x78\x5c\x23\xc3\x12\xe8\xbc\xe2\x56\xf2\x52\xfa\x98\xa2\x8f\x41\x8b\xb8\xcc\x05\x93\x99\xec\x5e\x83\x37\xdd\x72\xad\x5b\xe2\x54\x9d\x3f\x17\x07\x96\xe1\x8c\x95\x96\xf0\x7b\x03\x2e\x53\xcd\x79\xfc\xf6\xd5\x48\xad\x67\x2b\xed\x9b\x4a\xda\x8f\xce\x09\xb2\x11\xf7\x93\x46\xb5\xf6\x7a\x9a\x0e\xed\x71\x68\x0c\x8d\xc9\x1d\xe2\x27\x9e\xca\x5c\xa7\x93\x7b\xc3\x1c\x1c\xd4\xa9\xe2\x93\x16\xa3\x13\x9a\x2d\xd4\x0b\x2f\x48\x7f\x25\xd5\xa0\xd9\xa4\x01\x90\x4e\x73\x63\xe6\x50\xfb\x73\x5a\x0d\x5a\x81\x55\x03\x58\xce\x56\x85\xe3\x3f\x90\x6a\x64\x21\xb7\xc6\x61\x1c\x74\xbf\x6a\x44\x11\x43\xbd\x6b\x18\x75\xed\x37\x69\xff\x37\x46\x73\x66\x4d\x09\x1f\xb1\x83\xe7\x00\xb2\x20\x09\x04\x3f\x1f\xb3\x8b\x3a\x75\x44\x94\xd4\x0c\xea\xdb\x5a\x17\x2a\x58\xc6\x71\x93\xdf\xa3\xba\xea\xe6\x0a\x46\x15\x33\x64\x58\xaa\x4f\x57\xd5\x20\xe8\x54\xdf\x49\x05\x24\x11\xd8\x30\xfb\xf8\xb4\x0a\xde\x52\x3d\x3b\xad\x9e\xde\x57\xff\xc0\x7d\x9b\x22\x95\x77\x74\xd5\xbb\x32\xe0\xc7\x57\x7d\x02\x57\xbe\xfa\xca\x83\x6b\x1d\xb6\xe2\xc1\x35\xff\x9e\x84\xce\xea\x55\x65\xc3\x03\xac\xed\xc4\x16\xe1\x38\x85\x3e\x75\xe5\x37\xab\x3b\x5f\x14\xdc\xbb\x64\x71\x64\xcb\xc8\x15\xd4\x9a\x16\x11\x00\x5b\x83\xd8\x6d\xe1\xac\xd3\xf4\x91\x0d\x76\x18\xd3\x1c\x5a\xc3\xee\x92\x44\xf1\x2e\x9c\x5e\xe9\x41\x6a\x97\x02\x16\x7a\x76\x01\xac\x8f\xe8\xd0\x1f\xb0\xe1\xc7\x14\xcd\x61\xa0\x9d\x5c\xaa\xb2\x69\xe2\x0c\x7c\x3f\x0f\xdc\x14\xec\x39\x13\x93\x69\x9d\x1c\x30\x0d\xb6\x7d\xd4\x81\x1b\x00\x63\x0b\xf4\x00\xb6\x27\x58\x45\x1a\x6a\xa6\x6c\x22\x7b\x3d\x50\xce\x26\xc6\x13\xc1\x90\xa9\xf5\x12\xf9\xa2\x6c\xb5\x66\x34\xef\x0e\x0b\x6f\xec\xee\x8e\xba\x98\x3d\x70\x81\xb3\x0d\x02\xf2\xb3\x5a\xe0\xd9\xa5\x65\x80\x77\x73\x41\x8f\xed\x8a\x8a\xbd\xa5\x66\x93\xaa\x2d\x53\x23\x75\xdd\xfc\xc8\xe7\xbd\xb9\x32\x7c\xc3\x1c\x88\xac\xa1\x91\x07\x92\x57\x56\x32\x4c\xfa\xcd\x15\xd0\x1e\xa8\xc3\x54\x06\x52\x45\xed\xae\x6a\x04\x12\xb8\x72\x05\x30\x50\xdf\xba\x02\x5a\xf2\x7b\xfa\x1b\x27\x7c\x33\x1c\x36\xa4\x19\x0d\x7a\x8a\x0e\x66\x17\xb2\x91\x83\x60\x7f\x19\xf3\xb9\x7b\x18\x4a\x5f\xc0\x7f\x73\x19\xb7\xf7\xb1\x0d\x70\x27\xf1\x03\x85\x0b\xa6\x0d\x52\xc2\x2f\x09\x5f\x05\xb1\xfe\x11\x4f\xbe\x74\x3e\x22\x10\x6a\x01\x60\x8b\x97\x32\x4a\xb2\xb6\xa2\xb0\x7c\x29\xf1\x01\x66\x1c\x15\x14\x9e\x5c\x0a\x4f\x34\x85\x29\x14\x76\xae\xd8\xdb\xdb\xbd\xf2\x47\x74\x43\x0b\xb5\xaf\xcb\xf1\x21\x68\xf3\xe9\xc1\xb6\xa8\xf3\x69\xca\x1e\x9e\x57\xe1\x18\x40\x26\x57\x40\xd9\x77\x41\x72\x7d\x3e\x5c\x11\xb9\x11\x97\xf5\xa0\x9d\xe9\xee\xf2\xa4\xa5\x73\x77\x8b\x2b\x34\xf4\x9d\x2f\x4b\xe5\x04\x0e\x34\xd2\xb1\x10\x79\xa8\x2e\x25\xb4\xe0\x4f\x0c\x69\xd9\xd6\x86\xda\xd5\xd5\xe9\x49\x18\x04\x27\xe1\xda\x1b\xcf\xbc\xe6\xe9\x9c\xb6\x65\x53\xdc\x90\xdc\x9c\xa9\x3a\x1d\x6e\x3d\xa8\x3b\xa1\xae\x7d\xdb\xed\x62\xfe\x96\xbe\x3a\x2d\x86\xe6\xd8\x9b\xf9\x76\x13\x8d\x83\x79\x5d\x16\xda\x60\xb1\xff\x4b\x86\x91\x0d\x83\x20\x1b\x6e\x3d\xa4\x2d\xbd\xbf\x32\x17\xce\x1c\x3f\x3b\x4f\x80\x92\xbe\x22\xbf\x70\x39\xcc\xa0\x5d\xf6\x8a\xd9\x73\xee\xca\x27\x8e\xbe\x87\x9d\xc9\x15\x51\x34\x13\x44\xfe\x8a\xbe\x15\xbe\x4b\x1e\x5c\xff\x8f\x26\x00\x03\x6e\xec\x81\xbb\x06\x02\x68\x97\x90\xa2\x7f\x74\x44\x79\x4c\x98\xc7\x50\x14\xcc\x96\xf0\x77\xf9\x4a\x44\x78\xd0\x4c\x81\x6b\x74\xda\x2c\x5a\x52\x0c\x17\xd1\x2c\x90\xa5\xfd\x36\x4b\x53\x47\x5f\x3d\xd0\xb0\xe3\x2d\x53\x76\x5c\x4c\x6a\x41\x30\xa9\x55\x2e\xe2\x75\xab\x72\x7c\x34\x23\x1b\xb7\x65\xf8\x40\x70\xd7\x1b\x59\xe5\x4a\x35\x2f\x9f\x91\xf6\x96\x6a\x68\x82\x98\x20\x5a\x66\x8a\x38\xa5\x22\xf9\xac\xee\xf8\x78\x97\x04\x64\x42\x53\xb8\x9f\x5f\x7b\x54\x85\x80\xa8\x25\x80\x94\xd9\x39\x08\xf6\xd8\xa3\x83\xfb\x4d\xbf\x7a\x10\xe4\xa2\x6d\xb1\xd8\x5a\xb7\x05\x60\x8f\x6c\x56\xcb\xf6\xc1\x66\xab\x36\x59\x82\xb6\xde\x48\x76\x40\xf7\xfe\x9a\x34\x2e\x2e\x4c\x6a\xbd\x6b\x83\x41\x9b\x4e\x33\x6d\xdd\x96\x30\xb0\x3f\xdc\x6f\xba\x4d\xb6\xa3\x9c\xd7\x6f\x1e\xe0\x0a\x5f\xf6\x9b\x27\x81\xd5\x2e\x79\xad\xcb\x68\x5d\x01\xfe\x36\xb4\xbb\x6e\xb6\xad\xc3\x2b\xd9\xb6\x6a\x72\x2b\xc5\x04\x70\x4d\xa4\xb9\x08\xbb\xd7\x09\xcd\x58\x54\xac\xaa\x4c\x9c\xd4\xb2\x7f\x2d\x7b\x33\x4b\x6c\x32\x67\x49\xe7\x5e\x1c\x37\x7b\x08\xc4\xa2\xf0\xa6\x12\x3b\x75\x06\xe2\xd9\x08\x5a\x73\x0c\x73\x74\xcd\x50\xc6\x49\xfd\xdb\xcd\x9b\xad\x5a\xf9\xd4\x9a\x26\xf7\xbf\x68\xd3\x58\xdd\xca\xdb\xd1\x14\x30\x9a\x11\x48\x96\x30\x3d\xbf\xf6\x77\xef\x02\x7a\xdb\xf2\x3a\x89\x5d\x55\xfd\xd0\x8e\xfb\x20\x08\x3a\x57\x14\x39\x50\xb8\x8e\x48\x85\xb3\xa8\x50\xa8\xb3\xf4\x36\x1f\x07\x1e\xad\x29\x8f\xe3\x03\x0e\x37\x20\x40\xb5\xbe\x4e\xf8\x92\x2c\x89\x08\xdf\xe1\x85\xd3\x19\xd9\x72\x6d\xbf\xed\xb0\xe0\xeb\x1b\x2d\x7e\x4e\x2e\x79\x01\x52\x57\xba\x17\x5d\xac\xdc\xcd\xaa\x61\xf1\x92\x05\xb0\x1e\x87\x2d\xe4\xbf\x99\x4f\x56\x6a\x84\xbb\x12\xd4\xa6\xd5\x8d\x68\x0a\x55\xf1\x6c\x05\xb7\xa6\xf3\x91\x10\x9c\x6b\x46\x48\x21\x85\xe2\x57\x64\xf6\xce\xdd\x69\x70\xdf\xa3\xdf\x86\xea\xd5\x24\x3a\xd7\x42\xa2\x86\x08\xee\xa8\x6c\xef\xcd\xde\xe2\xa6\x00\xca\x1b\x6a\x7f\xb6\x39\xbf\x2e\xae\x29\xc8\x90\xb9\xd1\x99\x76\xc6\x5a\x06\x5e\x84\xb8\xca\xdc\x28\xa5\x6c\x90\x20\xf7\xdd\xba\x8e\x68\x8d\x9f\xba\x1a\x2a\xf1\xb9\x93\x50\xe9\x64\xcc\x24\x71\x0a\x58\xeb\x50\x8e\x32\x34\xd5\x14\x74\xef\x8e\x63\x3f\x20\x38\x86\x5b\xb0\x11\x15\x84\x40\xfc\x55\x0e\x23\x5e\x6d\x3f\x78\x8a\x21\xd7\x35\x9c\xde\x35\x95\x0d\xaf\x35\x1c\xfa\xad\x63\x6f\x37\x36\x56\xa7\x6d\x15\x78\xa3\x53\x67\x6a\x4e\x3d\x61\x3d\xf0\x2d\x02\xd6\x29\x16\xd7\x34\x93\x0c\xe8\x77\xe8\xa9\x19\x99\x4b\xaa\x72\xe9\xa6\xc9\x51\x28\x59\xe8\xa6\x08\x29\x28\xb6\x9d\x59\x28\x75\xad\xd5\xd8\x19\xc6\x51\x69\x47\x8e\x0b\x2a\xba\x2b\xdf\xa4\x9a\x4c\xa6\x1f\x87\x5b\xe3\x74\xdf\x9c\x70\x84\x23\x9f\x78\x41\x49\x4b\xec\xa3\x51\xe8\x7d\x33\x04\xb8\xbe\x74\x0c\x03\x1a\x76\xef\xc6\xa3\x66\x83\xbf\x80\x4c\x1c\x0b\xac\x52\xff\xc6\xd7\xa2\xc7\x38\x70\xf2\xc6\xf6\x37\x17\x6f\x10\x5b\x37\x95\xa4\x81\xa3\x1f\xc3\x3e\xc9\x5b\xe9\xf4\xba\x38\x0d\xf2\xb1\x79\x70\x8b\x10\xdd\x6b\x75\x30\x10\xc5\xcf\x0c\x71\xab\x54\xde\x41\x78\x48\xb1\x53\x41\x93\x0b\x56\x9a\x26\xe2\xe3\x0e\x9a\x73\x3e\x13\x59\x3a\xf1\x76\x0f\x6f\x80\xc5\x95\xd0\xfc\x3d\xdb\x84\x01\xba\x80\x45\x98\xdc\x0a\xfe\xaf\x1d\xc3\x8a\x9b\x06\x1c\x6b\x26\x83\x64\xa3\xac\x8f\x92\x05\x1d\x73\xcc\xb3\x38\xe1\x60\xd1\x1b\xad\x87\x8f\xc1\x98\xba\x50\xa8\xf8\x30\xfd\xac\x9b\xf5\x40\x94\xcb\x1b\x7d\x96\x7c\x4d\x80\x31\xff\xa5\x43\x95\x5a\x82\x16\xd3\x98\x4d\x63\x56\x8b\x5e\x03\xd5\xc5\x8b\x84\x4a\x56\x49\x26\x68\x05\x4d\xe4\x97\x62\xa5\xaa\x1f\x38\x5c\xf0\x90\x3b\x08\x10\x5a\xde\x7a\x2a\x1d\x06\xfb\xe1\xa9\x89\xd7\xee\xdc\x1b\x0d\x90\x3c\xde\xc5\xf4\x42\xb8\x6c\xbc\x0b\x39\xdb\xb4\xdc\xd0\xff\xbb\xe7\x0c\x56\x28\x6f\x9c\x60\xde\xdf\x3a\x2b\x8c\xa6\xd3\x9f\xef\x87\xc9\x39\xf5\xdc\xc5\x64\x37\xb7\x3c\x9c\x2d\x36\xc2\xee\x96\x55\x24\x60\xd7\xa0\x3e\x40\x08\xfa\x4e\xd9\xcb\xc6\x89\x7a\x49\x5b\xcc\x18\xbc\x2f\xd8\x46\x35\x6b\x10\x0b\xa2\x86\x99\x5b\xb5\x43\x5c\x10\x5c\xf6\x16\x33\x35\xff\xe4\x3c\x72\xdf\xc0\x33\x59\x40\xbb\xe2\x2d\x84\xf9\x8d\xc2\x52\xf1\x46\xa9\x71\xcd\x8a\x5f\x11\x7f\x9d\xdc\x62\xe3\x1a\xf0\xdb\x2b\xed\x7a\x3a\xdd\x54\x83\x60\xc3\x01\xa6\x6a\xf9\x07\x90\xd8\xdd\x3b\x81\x66\x64\x03\x3c\x3b\x7d\x94\x0d\xee\x40\x3a\x2a\xd6\x79\x74\xa3\x1b\x71\xa7\x75\xdd\x68\x74\xe7\x56\x6b\x6e\xe1\xb4\x28\x00\x0a\x8a\xdf\x1a\xf0\x46\x37\x6c\xeb\xc1\x3c\x71\x3c\xde\xda\x16\x06\xe4\xd8\xab\x39\xb4\x1d\x10\xcb\xc4\xb7\xc9\x0d\x8d\x7b\x7c\x27\xc6\x1a\xcb\x87\x81\xf6\x94\xbe\x2a\x10\x19\xc8\xf4\xd6\xa3\x2f\xe2\xe7\xb0\xd4\xd7\x79\x7f\x41\xb3\x68\xf0\x5f\x99\xbb\x38\xf6\x6e\x63\x7b\x68\x54\x77\x91\x9c\xe0\xee\x38\x50\xde\x26\xac\x39\x2f\xe5\x00\x31\xe5\x8e\xba\x86\x37\x71\x79\xd0\x3d\x8f\x30\x7c\xfa\x67\x7f\x26\x28\xd2\x33\x5b\x42\x0d\x5b\xdd\x24\xcc\xa6\xca\x7f\xed\xe3\xcb\x3a\xb4\xf8\x56\xd8\xef\xfc\xa2\xee\x87\xb0\x93\x53\xbd\x42\x98\x30\x97\xd4\xb5\x5e\x2c\x37\x17\x5e\x28\x59\x2d\x45\x3e\x3d\x5e\xe5\x3b\x17\xd6\xe8\xa4\xa3\xe9\x33\x0d\x24\x33\xde\x47\x30\xd4\x8d\x2f\x9c\x38\x63\xf9\x52\xbc\x01\x36\x6f\x08\x25\x22\x02\x99\x07\x89\x0b\x0b\x3c\x85\x6f\x8b\x70\x55\x18\xa4\xab\x3a\xa6\x70\x54\x0d\x82\x11\xff\x56\x1b\xfd\x59\xab\x2b\x83\x9a\x28\x70\x96\x5d\xd4\xdc\xa6\xcf\x7a\xf0\x26\x55\x72\x9e\xb5\xe4\x66\xc5\x5a\x1b\xc9\xcb\xd6\x76\x48\xd1\xa2\xd6\x6c\xac\x64\x67\xfa\x2c\xba\xec\xb6\xa3\xf9\x39\x47\x06\xab\xe3\x26\xa2\x0c\xfb\x4d\xad\x64\xb8\x3d\x91\x67\x03\x08\xaf\x2c\xc8\xb3\x74\xa7\xb6\x48\xd6\x1b\x43\x0f\x7f\xbd\xb0\x14\xb7\x63\x28\x68\x4d\xd3\xc5\x51\xc2\x6e\xca\x9d\x30\x6d\x97\x41\xf7\x85\x3b\xf9\x46\xe8\x4f\xfa\x56\xbc\x43\x4c\xac\x65\x68\x96\x84\x80\x6d\x66\x67\x58\x56\xcf\xda\x52\x46\xdd\x8a\x85\xc3\xd3\xe2\x1e\x4d\x45\xd7\x23\x49\x70\xef\x5b\xe9\xd6\xc7\x20\xd5\xff\xa5\x61\x45\xc6\xe4\x0e\x47\x2f\x41\x10\x64\x28\x48\xf2\x6d\x7a\x9d\x60\xbd\x3b\x2c\x24\x07\xbf\xbe\xd4\x33\x20\x4e\xda\x5a\xf2\xf3\x96\xe3\x78\xdc\x29\x36\x2a\x93\xe8\xff\xa0\x31\xb4\x05\x9b\x7c\x7c\x6a\x85\x6a\x82\xee\xc1\xba\x98\x78\xbe\xad\xe6\x47\x34\x7c\xf3\x6f\xd4\x29\xb2\x62\x5b\xc0\xe2\xe4\x8d\x64\x27\xcf\xec\x09\x76\xfd\xda\xc3\xe5\x11\x33\x25\x6c\x95\x20\x81\x59\x5b\x19\xb1\x49\xa7\x04\x94\xde\x6f\x48\x5c\xf3\xbb\x0f\x42\x1a\xdc\xb1\x22\x37\xfc\xad\xbd\x33\x4e\xcd\xc8\xb6\x95\x9a\x91\xf3\x0c\x3e\xbb\x33\xe2\x6e\x12\x04\x82\x95\xb4\xd4\xb6\xbc\xf3\x8d\x27\xab\x33\x75\x43\x8d\xa0\x6d\xef\x0e\x42\x83\xa3\x0e\x1e\x7d\xae\xe6\x30\xac\x4e\x3c\x96\x72\x2e\x5d\xdc\x88\x18\x1d\xdb\xf1\x1a\x8e\x46\x4b\x0d\xc7\xe2\xbf\x6b\x98\x77\xb8\xba\x4b\xa0\x4d\x85\x38\x73\x84\x0b\x06\xbf\xcd\x1f\x0a\xb1\xa6\x93\xd5\x6f\x8e\xad\xb1\x54\xb2\x3c\x8c\x04\x2f\x6e\x95\x10\x86\xbb\x63\xd6\x27\xc4\xaa\xf1\x6f\xc7\xd3\x94\x65\x09\x4b\xbe\xba\x65\xfb\x0b\x73\x13\xd0\x01\x1f\xed\xe5\xb0\x99\x8a\x7f\x3b\xb9\x61\xe2\x9d\xab\x6f\x4e\xc1\x5f\xcb\x65\x98\x96\x38\x71\x9d\x18\x6c\xf8\x17\x20\x8b\xbf\xad\xa7\xfd\x4e\x9d\x10\x48\xfe\xde\x0a\xe7\xae\xfb\x8e\x3e\xbe\x84\x61\xea\xd4\xdd\x4f\x4d\x9b\xe6\x6f\xff\xb2\x97\x77\x29\x91\x6f\x06\xd5\x74\x59\xc5\xb3\x6b\xf0\x40\x19\xc6\xe0\x8e\x0f\x8b\x58\x3c\x1c\x43\x5b\x15\x60\xf6\xe4\x37\x2f\x0a\x74\x70\x56\x11\x17\x77\x8c\xa1\x21\x2d\x0e\x89\x2c\x3e\x5a\xbe\xa8\x1b\x39\x76\xb4\x30\x47\xd4\xd4\x58\x4f\x0e\x5c\xac\x59\xdc\x89\xda\x79\xa7\x27\x38\xb9\xc7\x71\x0c\x85\x2b\x46\xa6\x81\x30\xbd\xd7\xad\x51\x8d\xd5\xd2\xdd\x9d\x3b\x44\xef\x51\x6d\xf7\x5b\x6f\x44\x83\xee\xcc\x6f\xfd\xa1\xa6\xf8\x89\xf7\xe1\xcd\xf5\xb8\xbf\xd3\x57\x74\xf8\x7b\x27\x74\x7d\x2d\x11\x5d\x76\xae\xbf\xf7\x42\x07\x39\x83\xb1\x0c\x5a\x8e\x61\xac\x7f\xfd\xc4\x4f\x9b\xbd\xe7\x03\x46\x0e\x90\xf2\xf7\xac\x8f\x17\xf0\x77\x11\x03\x28\xe1\xaf\xf2\xbd\x08\x61\xfc\x7d\x82\x63\x47\x0a\x7f\x75\xfe\x30\x5b\xed\x62\x91\x7a\x7f\x88\x11\xaf\xe0\x03\xee\xdb\x42\xec\xa4\xe1\x6f\x51\xd3\xfd\xb6\x28\x16\x8f\xf4\xbd\x8b\x54\xe0\x31\x80\xbe\xeb\xd2\xca\xcc\x92\xfb\xeb\xfc\x61\xd7\x23\x6d\x14\x3a\x51\xe3\xc3\x04\xd5\x86\xf8\x6b\x23\x16\x0d\xfa\x8b\x0f\x6d\x76\x66\x60\x8b\xf7\x3e\x7d\x39\x25\x88\x97\x6a\xf4\x87\xd1\x36\xfe\xa3\x07\x32\xfd\xad\x29\x8d\xc7\xc3\xea\x33\xdd\x77\xfe\xe3\x43\xac\x47\xee\x34\x31\xb6\x53\x77\x7a\xa7\xd9\x25\x61\xc2\x3b\xf7\x17\x8e\x06\xbc\x4f\x1c\xb0\x43\x57\x2e\x3c\xb4\x6d\x6a\x0a\x9d\xab\xdf\xc2\xad\x10\x16\xa1\xb7\x21\xdb\xdd\x26\xbf\x21\x15\xfe\x88\x24\xa4\xb9\x35\xe4\xf2\x19\x11\x19\x0f\xdf\x76\xd3\x42\x88\xfd\x4f\xa2\x07\xfe\xd0\xd6\x1d\xa9\xe8\x01\xde\x43\xac\x6d\x13\x96\x42\xa9\xcb\xc6\x68\x7b\xf5\x67\x4b\xac\xe4\x8d\xc3\x47\xef\x9d\xc9\x6a\x0f\x20\x69\x08\xf0\x2d\x2e\xd8\xee\xee\x9d\x8e\x9e\xb3\x15\xdc\xfd\xcc\xcb\x80\x19\x50\x3b\xf3\x27\x8e\xbf\x57\x0d\x63\xcf\xf6\xdd\xdb\xf8\x6a\x38\x58\x65\x92\x68\xed\xdc\x9f\x28\xbb\x16\x97\x05\x60\x15\x00\xab\xa4\xad\xdf\xee\x1a\x52\xf9\x0f\x5d\x43\x2a\x1c\x1c\x11\x4f\x7b\xfd\xd5\x88\x0c\xb0\x0e\xd9\x2c\xef\x4a\x87\x46\xc4\xb0\x32\x07\x47\xd4\x0a\x82\xe0\xe4\xc2\xb4\xbb\x29\xb5\xbc\x26\x08\x1b\xe5\x42\x99\xd9\x2f\x75\x0b\xcc\x52\x4d\xe9\x42\xc9\xc2\x87\x9f\x50\xcb\xe4\x86\x94\xc1\x1d\xa8\xc5\x99\x07\xe0\x6c\xc5\x6d\xa8\x9b\x2f\x36\x74\xaf\x25\xa6\xe0\x56\xbc\x0e\x9b\x3b\x1b\xbc\x5b\x1b\xee\xd6\x1a\xdb\xf6\x70\xb6\xad\xf1\x69\xca\xd6\x63\x3e\x50\x16\xc3\x62\xf7\xd2\x87\x6d\xe5\x80\x93\xff\x95\x30\x41\xb2\xfd\x13\xc5\xf5\x4f\x14\xd7\x7f\x25\x8a\xab\xf3\x60\xea\xdd\x3b\x2e\xcc\x2c\xe2\xdf\x1f\xc3\x45\xeb\x8b\x4d\xca\x4a\x71\xe7\x01\x1a\xbb\x11\x37\x05\xb0\x65\x09\xd8\xfa\x08\x82\xe6\x86\x14\x24\x1c\xda\x52\xe0\x2b\x9d\x3f\xd8\x10\xd6\x1d\x38\xfc\x73\x38\xa8\xcb\x61\x33\xef\x85\x76\xf5\xfe\xc0\x8e\x82\x9c\x0c\x72\x64\x81\x24\x9f\xa2\x90\xb9\x22\x9f\x35\x4a\x3a\xdc\x6b\x04\x3d\x60\x7e\xcf\x6b\x4c\x07\xa9\x3f\x7c\x3e\xd8\xde\xf3\x12\xd3\xe2\xfe\x11\xd3\x3f\x99\xdf\xff\xe0\x28\xf4\xc7\x2c\x06\x05\xa4\x37\x96\x28\x5a\xa9\xa2\x35\x8a\x36\x7f\xe4\xe6\x4a\x50\xdf\xa2\x68\x27\x7d\xec\xf1\x77\x42\xd0\x4b\x16\x73\xc8\xa0\x42\x56\xf4\xad\x5c\x04\x00\x98\x5b\x01\xa5\x45\x29\x2d\x7d\x13\x6c\x59\xc0\x56\x22\x00\x6a\x1a\x6c\x42\xbc\x40\xf1\x9e\x5d\x0d\xa9\x3f\x82\x1e\x28\xef\xf3\x83\x4d\x92\x42\x0c\x1e\x74\x7a\x9d\x2e\xf2\x93\xf4\x1e\xc4\xea\x8b\x98\x0d\x08\xb1\xa4\xc0\x0d\x5e\xbd\xe9\xb5\x3d\x65\x5d\x72\x54\xfc\xe0\x81\xe7\x35\x7c\xf0\x56\xa5\x2a\x1c\x76\x1d\x1f\x66\x89\xad\x05\x37\x7c\xe0\x19\x5e\x6b\x02\xb3\x96\xe7\xcb\xfe\xc1\xb5\x1f\x3c\x10\xf3\x64\x6f\x1e\x77\xfd\x83\x2e\xc8\xf6\x02\x50\xa3\x07\x39\x66\x41\xe4\xf6\x11\xa6\x14\xfc\x0d\x90\x13\x01\x39\xfe\x7b\x20\x29\x94\x92\x57\xfd\x01\x0b\x60\x01\x3a\xa3\x1b\x45\x33\x8c\x28\xa9\x49\x2f\x1c\x3f\x7a\xe1\x08\x0f\xac\xd0\x77\x1f\x1d\x43\xf1\xc2\x05\x16\x42\x02\xcb\x47\xbd\xad\x65\xaf\xff\x91\x4d\x6e\x5d\x39\xbc\xd3\xb5\x12\xa4\xd7\x07\x79\x48\xb0\x9d\x25\xa5\xc6\xa3\x6b\x0d\x8a\x78\x74\x02\x85\x8f\xf0\xe2\x06\x65\x7b\x99\x1f\x2f\xe0\xf1\x27\x39\xff\x3b\x2d\x7c\xd2\x96\x1b\xe1\x56\x26\x38\x13\x10\x5b\x25\x22\x75\x68\x3c\x2e\x03\x12\xb4\x94\x8d\xac\x5a\x86\x13\x02\x40\x6b\x49\x85\xf2\x15\xa8\xdc\xc3\x54\xc2\x79\x08\xc4\xec\x5d\xf5\x2b\x6d\xef\x75\xf1\xee\x81\x68\x3a\xf7\xa8\x5d\x78\xb6\x2e\x77\xe7\x22\x40\xb2\x8f\x14\x01\xb2\x7f\x74\x33\x95\x28\x4b\xb0\x94\x2d\xb3\xe0\x9a\x08\x37\xde\x78\xc4\xe3\x49\xb7\xfd\x93\xb8\x37\xd3\x0f\x54\x25\xf3\x08\x45\xec\x06\x37\x04\xf4\xae\x6d\xb8\x0d\xcb\x67\xb4\x2e\x73\x45\x19\x6d\xee\x41\xbe\x9a\x29\xe5\xd1\xbc\xf0\xa8\xcd\x9f\x5f\x74\xdb\xf0\x02\x8e\xd2\x34\xd9\x27\x46\x82\x17\xee\x62\xd9\xd3\xf8\x51\x07\x2e\xd9\xe2\x0c\x89\xa7\xbb\xf5\x85\xd3\x2e\x1b\xab\x48\x19\xc9\x64\x8c\xae\x8b\xa3\x4b\xa1\x1e\x2f\xbc\x07\xed\x92\x19\xbf\x26\x9d\x70\xac\x91\x81\x03\x67\x6c\xe9\x41\x16\x81\x3c\x8a\xde\x22\xc0\x3f\x1a\x2a\x4d\xb8\xe9\x67\x9f\x02\xb7\x7c\xf6\xe5\x5e\x3a\xe4\x73\xb9\xb5\xc0\xf5\x9f\x14\x31\x38\x27\x77\x74\xea\x53\xc0\x4f\xb5\x85\x02\xcc\x5f\x5e\x28\x4f\xe7\x91\x95\xd1\xe1\x83\x56\x77\x8a\xca\x24\x04\x0a\x86\x67\x88\x73\x90\x75\x70\x17\x63\x58\x8b\x45\x46\x2c\x14\x79\x51\x6b\x36\xb0\xb0\x57\x24\xad\xb3\x90\x91\xa9\x52\x30\x0c\xda\x90\xa0\x42\x3b\x83\x3e\x66\x30\xd4\x01\x49\xd5\x6f\x8f\xff\xd5\x07\xc6\xce\xa2\xfe\x63\x22\x7a\x87\x7f\x10\x4a\xce\xd4\x69\x01\x3f\xa9\x29\xd7\x79\x17\xf1\xba\x6f\xb4\x72\x68\xfa\x08\x7a\x64\x40\xb7\xad\xe2\xd1\x2b\x34\x9d\x85\x8a\x89\x82\xbb\xf7\x21\xca\xeb\x58\x17\x1d\x3d\x51\x7f\xe3\x87\x44\x66\x57\xb1\x46\x52\xb5\xcc\x8a\xe7\xb9\x0e\x44\x8d\x75\x1d\xf8\x0e\xb4\x4a\x94\x9b\x76\x74\x9a\x21\x5e\xbd\x86\xe6\xc2\x65\xec\xf8\xfe\x83\x58\x37\x5c\x38\x47\xb7\xe6\x3a\x2b\x1f\xa9\x5d\xd5\x33\xfd\x48\xa8\xc7\xd1\x46\x35\x0d\x95\x29\x44\x54\x0d\x28\x9d\xec\xb5\x4b\x6c\x1d\x45\x45\xaa\xaa\x34\x58\x9d\x21\xe8\x53\xa1\xa0\xe1\xd2\x47\xad\x80\xfb\xe9\x93\x72\x06\xb2\xbd\x11\xa7\xec\xf5\x93\xdb\x06\xee\x38\xce\xeb\xbd\x80\x66\x3e\xd6\x81\x2f\x91\x7f\x88\x70\x3a\x4f\x20\x9c\xee\x93\xaf\x6c\x5b\xae\xf1\x1a\x61\x38\xe4\xc9\xff\xe3\xe4\x75\x55\x69\xcc\xb6\x16\x33\x80\xd2\x8d\x83\x93\x8f\x71\x9f\x64\xfa\x48\x88\x05\xb5\x60\x11\x5b\xdb\x5c\x82\x38\xa3\x5f\x85\xeb\x40\x5e\x96\x43\xc5\xcf\x1d\x07\xae\x47\x18\x98\x8b\x02\x34\xff\x6d\x88\x87\x5e\x2e\x9f\xb4\x58\x73\xc2\xe5\x51\xf3\xe6\x0a\xb1\xfd\x16\x56\xb8\xa8\x66\xc7\x76\x1c\xe8\x15\x6b\xb5\x7c\x1a\xa8\x1d\xf5\x97\xcc\xc1\x48\x85\xcf\x08\x2d\x95\x62\x68\x4b\x00\x4b\x24\xf9\x14\xd9\x5f\xe5\xf0\xf8\x7a\x11\x9b\x78\xfa\x31\x16\x50\xd3\xcb\xa4\x95\x8c\x8f\xfd\x43\x84\x5e\x6d\xa2\x9b\x76\x4d\xfd\x4d\x5a\xe3\x8a\xcc\x03\xa3\x70\xca\x92\x0d\x10\xb6\x8f\xf1\x43\xe3\x5b\x20\x41\x83\x1f\xf3\x47\x47\x73\xa2\x67\xfe\x51\xfe\x40\x0a\xd6\x78\xf8\xab\x4a\xe6\xf4\xc1\x53\x92\x1e\x25\x4e\xe9\xf1\xc7\x4a\x49\xc5\xd3\x1a\xfc\x6f\xdb\x7b\x98\x56\x3c\xce\xe3\x57\xd9\xab\x24\x83\x34\x88\xe0\x84\xcc\x93\x83\x70\x98\xa0\xab\xf8\x03\xeb\x3c\xb0\x6d\xa7\xfb\xe8\x2c\x64\x8d\xc4\x91\x44\xd9\x2c\xc9\x73\x2f\x5a\x2d\xb1\xbe\x65\xa0\x0d\x88\x6b\xb5\x5d\x77\x8f\x64\x0b\xd8\x3f\x26\x20\x39\xa2\xb6\x3d\xc8\x68\x81\xe4\xae\x45\xe3\x20\xe4\xd0\x1d\xe2\x6e\x0d\xf6\x53\x6d\x1e\x70\xa2\x7d\x94\x83\x28\x73\x2c\x4b\x21\x03\x22\x2e\xbb\x25\x35\x85\xc8\x52\x29\x1a\x79\x4c\xa6\x91\x87\xc8\xd1\xe5\xe1\xbb\xc4\x72\x78\x03\x29\xec\x30\x06\xba\x0f\x09\x2b\x9f\xf5\xd2\x56\x5a\xe2\xaf\xc2\xd4\xd3\x0c\x82\xbb\xd2\x93\x86\xdc\x41\x48\x4e\x21\x5a\x88\x2b\x33\xb8\xc7\x83\x9c\x62\xa6\x6d\xe5\xdb\x6d\xeb\x34\x39\xd2\x8f\x49\x2b\x6c\xa6\xf8\xf3\x13\xad\x6c\xf7\xc9\xc3\xc8\x83\x86\x10\x5b\xd2\xc7\x04\xf8\xce\xe6\x35\x86\x42\xb7\x79\xe2\xea\xfd\xe7\x43\xd5\x39\x12\x80\x92\xd5\x29\xfd\xa6\x74\xad\xc9\x3f\x2b\x89\x17\x31\x0b\x53\x54\x39\x17\x33\xbb\xcf\x2f\x54\xf5\xdc\x63\xc2\x22\x08\x0c\xac\x68\xe5\x29\x81\xdd\x44\x6a\x52\x6f\x4f\x87\x97\xb5\x49\xc8\x4b\x79\xdb\x22\x75\x4e\xcb\xd4\xe1\xa8\x0a\xf6\xbf\xc1\xd4\x58\x7c\x92\x14\x4b\x41\xb5\xfb\xbd\x29\x63\xd1\x4b\x98\xf2\xf0\x36\xc2\x7f\x12\xa7\x9c\x00\x83\x1c\x87\x4f\x09\xcc\xcb\x9b\x30\xfa\x4a\x3d\xe9\x4d\x74\x64\xc2\xa3\x27\x3e\x94\x8d\x9f\x23\x9b\xc3\xe8\xc6\xdc\xde\x9a\xde\xc6\x48\x1d\xcc\xc9\x03\xd8\x9e\x97\xbe\xe0\x84\x21\xd3\x67\x87\x8d\x2f\x24\x00\xd5\x61\x85\xb1\xea\xbc\xd6\x7c\xbb\xca\x2b\xf2\xd4\xbf\x0a\xac\xb1\x3b\x84\x60\xf7\xaf\x4f\x63\x96\x44\xbf\x06\x40\xdc\xe8\x83\x3b\xce\x53\xd5\x6f\xf2\x5c\x8e\x10\x3e\xc6\xa3\x3d\x9e\x3b\x0e\x95\xf2\x36\x78\x60\x97\xe3\xf4\x51\xab\x77\xaf\xfe\x5e\x74\x3a\x42\xd7\x93\x83\x7f\x89\xf5\x0d\x1f\xb4\x8c\x88\x1c\xb1\xeb\x72\x06\x53\xba\x09\xdd\x17\x7a\xa6\x3b\x2b\xdd\xe7\xb8\x2a\xfa\x1a\x21\x48\x43\x15\x89\x1b\xb3\x09\xb6\x64\xba\x48\x1d\xde\xb8\xc8\x04\x50\x8a\xd0\xde\xfc\xd9\xa9\x8c\x47\x48\x1b\xfc\x8f\xf7\xf2\xa0\xad\x6f\x44\xe2\xe8\xc6\xe1\x46\x9c\x73\xc7\xdd\x3a\xb9\xb4\x89\x17\xd9\x05\x3a\xab\x29\x21\x4e\x97\x1d\x3a\x64\x28\xb3\xdb\xe0\xe0\x2d\x84\xac\x86\xf6\x7e\x98\xf0\xf8\x00\xcb\xa6\xeb\x27\xb9\x05\xcb\x26\x24\x7d\x1c\xa2\x7f\x38\xc9\x78\x4f\x9f\xaa\x86\x4a\xd7\xe4\xcc\xc5\xfa\x80\xc3\x9f\x27\xfa\xc8\x24\x4d\xda\xbc\xc6\x77\x7c\xd6\x12\x15\x20\x62\xf4\x2e\xca\xbe\xde\x61\x3b\x78\x26\x27\x43\x18\x45\xc2\xca\xc3\x3e\xe1\x8c\xf2\xbf\x9d\x30\xf8\xb2\x06\x53\xc6\xf6\x46\x56\x8f\xd8\xac\xb7\x96\xcd\x83\x94\xf1\x11\x04\xc1\x86\x38\xbd\x55\x1e\xbe\x22\x0c\xff\x5c\x5c\x4d\x38\xba\xa6\x7e\x25\xd4\xf7\xb2\x61\x57\x3c\x88\xfe\x99\xf8\x6b\x88\xde\x29\x78\xec\x41\x1c\x1c\x01\xd2\x6f\x09\x93\x14\x0a\x6a\x0f\x75\xc0\x83\x9c\xe2\xdc\x51\xc1\x48\xc5\x60\x43\x1e\x23\xab\xc2\x1f\x0f\x30\x4a\x3f\xe2\xde\x9f\xe6\x33\x83\xa4\xe3\x7d\xaa\xa9\x0b\x97\xd7\xce\x70\x9b\x8a\xa6\xc8\xe5\xb8\xb1\xbe\x8a\xdf\x95\x44\xe2\xaa\xe8\xc8\x4e\xc5\x64\x76\x74\xee\x21\x9e\x98\x36\x64\x57\x3f\xe6\x00\x73\xed\xf2\x38\xf4\x6c\xd1\x60\x87\x04\xf8\x39\x16\xa5\xf8\xab\x04\xcc\x94\x1f\xf5\x5f\xbd\x66\xc2\x3c\x79\xf2\x45\x44\xc7\xb2\x61\x40\xfb\xdc\xd9\xc3\xc7\x41\x19\xd7\x6e\xb3\xc6\xc2\xef\xd2\x38\xb2\x89\xd9\xd0\x7d\xd8\x49\x2c\x0f\x07\x96\x0b\xdb\xa1\xff\x1e\xe5\xee\x66\xac\x59\xfe\x91\x95\xa0\x8c\x32\xd2\xbb\x9d\x32\xd7\xc6\xcc\x1f\x85\x22\xa4\x11\xe7\xc3\x57\x16\x07\x08\x45\xa7\xee\xdb\xc3\x17\x29\x23\x6d\x93\xbd\x31\x2f\xba\xd9\xe9\xa0\x1e\x04\x03\x1e\x88\x11\x86\xdb\x9b\x04\x32\xfc\x27\x1a\xe0\x9f\x68\x80\xff\x4a\x34\xc0\xe8\x45\x7b\x57\xa1\xe2\x61\x9c\x12\x0f\x80\xf9\xd7\xfd\x78\x00\x8e\x44\xae\xe3\x7e\x27\x03\x8a\x3e\x79\x32\x7e\x4e\x72\xd5\x3b\xc9\xcc\x3c\x65\xec\xbb\xe5\x9f\x19\xce\xf4\xc5\x63\xbe\x52\xbc\x7c\x52\xfc\xfd\x89\x6e\x43\x27\xbf\x6c\xe2\xf9\x14\x7c\xb6\xca\xd7\x23\xbd\xd0\x27\xb7\x95\x24\x45\x3f\x1d\x66\x42\x28\x2a\x0d\x49\x15\xd1\x51\xbb\xe0\x8c\xd7\xd3\x1b\xf6\xb0\x41\x6a\xc2\xa4\x81\xe8\x72\x5e\x00\x03\x17\x78\x98\xbc\x20\x2f\x35\xf8\x17\xe2\x0c\x76\x4f\x2a\x3d\x40\x73\xfc\xe4\x68\xbd\x1e\xf9\x19\xb5\x91\xee\x95\x82\x66\x13\x9c\xd7\xdd\xad\x5b\xf7\xcf\x0a\x14\x04\xa7\x62\x1a\xc7\xf1\xfd\x4b\xc4\x00\xc9\x38\xcb\x82\xe5\x64\x5e\x84\xf5\x36\x6c\x94\x76\xfa\x99\xf5\x9e\x0c\x66\x96\x7d\xe6\xdc\xde\x4e\x4e\xd9\x2e\x97\xca\x23\x84\xd6\x1c\x06\x32\xe3\x31\x86\x09\x20\x6c\xde\xf5\x29\x5a\x6f\x23\x95\x28\xac\xe3\xc9\x1d\x48\xf8\x98\x86\x7f\x9d\x55\x17\x23\x6e\xba\xb4\x02\xa6\x60\xed\x5d\x45\x56\xdb\xc6\x00\xf2\x42\x3e\x64\x35\xe1\x1c\xdf\xe3\x48\x9b\x56\x46\x75\x3e\x88\x9c\x46\xaf\x86\x53\x41\x31\xf6\x88\xc8\x1f\xd7\x23\xa8\x9d\x0d\x65\xbd\xd8\xeb\x21\x7d\x7c\xd8\x61\x41\xf6\x09\x23\x56\xfc\x87\x21\xd9\x69\x7e\x44\x68\x04\xeb\x3b\x78\x96\xb0\x14\xeb\xd9\xab\xbc\x38\xba\xc4\xbf\x59\x7d\xe9\x99\x16\xc1\x88\x90\x01\xd0\x9e\x42\x75\x3c\xe8\x74\xef\x9f\xd4\xe4\x39\x06\x38\x2d\x1a\x8c\x03\x59\x75\xe7\xca\x98\x84\x4e\x18\x43\xbb\xb3\x4f\xe6\x90\x53\x8e\x83\x70\x6b\x2e\x4a\x73\x2a\xa1\xad\x4d\x77\x39\xcc\xbe\x1c\xa4\x8c\xa0\xf2\xee\x04\x05\xfe\x28\x4c\xa5\x80\xc3\xbc\x7a\x32\x28\x13\xfa\x20\xb1\x8d\x29\x23\x41\x18\x83\xb5\x51\x0d\xf7\x09\x0d\x71\x2f\x75\xef\x37\xb4\xcb\xb9\xa8\x3a\x3c\x31\x11\x1f\xdc\x3c\x86\x29\xf1\x6e\x39\xbe\x45\x28\xca\x5d\xf1\x87\x33\xf7\xd3\xb1\xc5\xb9\xff\xbe\x42\x43\x9e\xe6\xc1\x3a\x94\x3c\x35\x91\xe8\x03\xd9\xdf\xf9\xf6\xcd\xf0\xf5\x34\x5b\x0b\x82\x6c\xed\x34\x72\x23\x7a\x10\x7b\x11\x60\x9c\xfc\x22\xc0\xe4\xf0\x8b\x00\x53\xb4\x98\xfd\xf8\x45\x00\xac\x5e\xdd\x17\x35\x29\x68\x7a\xbf\xdc\x28\x94\x96\x09\xf9\x76\xf2\x94\xa0\x30\xe2\xd3\x40\x2e\x15\x0a\x93\x76\x9f\x46\x2f\x6c\x15\xe9\xaa\x4f\x8e\x7c\x87\x7f\x59\x97\x9c\xbd\x6a\x71\x3b\xb7\x85\x51\xd1\x39\x7f\xf1\x44\xa7\xb2\xef\x4c\x64\xf2\xd3\x57\x2d\x36\xed\xf5\xa7\xdc\x95\x16\x9b\x33\x99\x88\x5a\xa8\x76\x10\x04\x70\xb5\xc8\xc3\x01\x0b\xa9\xb5\x7c\xf1\x81\xf1\xbd\x83\xd9\x23\x1f\xca\xd7\x2f\x52\x1f\x98\x5b\xda\xbf\xb5\x12\x51\x95\xb4\xfc\xe8\x71\x14\x6e\x5f\x9d\x52\xd3\x89\x0c\x6c\x0c\x93\xb0\x7f\xcd\x3d\x3a\xa0\x85\x4d\x18\x91\x3c\x40\x97\xd9\x97\xf2\xdb\xe0\x3e\xd9\x0e\x40\x46\xe1\xde\x02\xa1\xe8\x19\x8b\x84\x02\xad\xa6\x9f\x8b\xc4\x53\x50\xd2\x2f\xb0\x8a\x62\x59\x4b\xa1\x33\x5a\x04\x8a\x19\x71\xeb\xc4\x6f\x12\x56\xf8\xe2\x6e\x97\x65\x30\x9a\xec\x8b\xb3\xcd\xe7\x6c\x11\xec\x45\x2d\xba\xdb\x44\xca\x89\xf7\x25\xf7\xaa\x24\xb1\x64\x65\x79\x31\xe4\x76\x03\x3b\xfd\x8b\x14\xdd\x50\x26\xf9\x16\x5d\x77\x26\xc7\xa7\xf7\xa5\xfb\xa6\xe0\x0c\xfe\xbd\x28\x47\xfa\xa8\x53\x7b\x9f\x92\x44\x00\x27\xba\xdb\x47\xc9\x45\xd8\xc4\xdd\xd2\xce\xd3\x74\xfa\xa0\xb1\x52\x7e\x31\xe7\xa8\x3b\x3d\x41\x41\x27\x19\x0e\x51\xd4\x79\x15\x97\x0e\xa9\xb0\x10\x8d\xf9\xd7\x38\x0a\x18\x95\x38\xe9\x62\x0b\x95\x5f\xe3\x18\x67\x4c\x45\x3a\x34\x8d\x22\xeb\x67\x28\xde\x8d\xf4\x85\x9f\xd6\x69\x73\xc3\xe8\x6e\xf5\xdd\x69\xaf\x82\x42\x97\x69\x84\xd0\xb5\x52\x92\xba\xfb\x26\x0e\x0d\x6f\xdb\x30\xeb\xd0\x9b\x26\xb2\xd7\x9b\x5e\x24\xfe\xfc\xd5\x27\xf2\xd6\x8f\xef\x6f\x9c\x34\xb1\x0e\xf6\x9c\x90\x92\x8c\x36\xf6\x54\x80\x9f\x2a\x55\x8c\xb3\x6f\xd6\xbf\x17\x5a\xcc\x77\xa5\xea\x3f\x4e\x0f\x79\xaf\xd5\x2c\x53\x30\x81\xca\xc2\xa7\x08\x2a\x9a\xe1\xf7\xfc\xc5\xb1\xf3\x05\x7e\x2f\x55\xad\x15\x7e\xaf\x55\x11\x54\x36\x15\x88\xb8\xe1\x40\x5d\x55\x67\x87\xdf\x7b\x55\x94\x7e\x91\x0d\x6f\x8b\xb2\xf8\x9d\x53\x45\x79\x7e\x1f\x4b\x15\x15\xf1\xbb\xa4\x8a\xf8\xaa\xce\x58\x21\xa5\xcc\x27\x55\x35\x9d\x13\xfc\x4e\xa9\x86\x1d\xac\x5e\xf7\xd5\x15\xf5\xf0\xbb\xaf\x8a\x06\xf8\x3d\xd4\x45\xbe\x89\x8a\x06\x81\xcf\x63\x55\x6b\x82\xdf\x53\x55\x34\xc3\xef\xb9\x2a\x5a\xe0\xf7\x52\x15\xad\xf0\x7b\xfd\xaa\x64\x2b\xa1\xf6\x95\xb6\x1a\x90\x8d\x4c\x81\x46\x22\x36\x49\x9b\xe2\xfb\x2f\xd8\x12\x9b\x37\x44\xc5\xe9\x80\x81\x7b\xdc\x5f\x6d\x18\x42\xa5\x28\x72\xce\x30\x87\x97\xb6\x4a\xba\xea\x5b\x10\x34\xa7\x74\xe7\x1e\xbe\x9f\x2d\xaa\xa6\xdf\xf8\x2c\x56\xd1\x95\x5f\x82\xa0\x89\xb4\xdc\x70\x3b\xe6\x50\x39\xfb\x26\x99\xbf\xa2\x90\x3b\x0a\x72\x01\xe3\x2d\xbe\x21\xd2\xf6\x5c\x55\x35\xb2\xbe\xa2\x23\xda\xdd\x59\x6c\x83\x43\xea\xd6\x4b\x35\x56\xc6\x44\x78\x51\x0a\x60\x5c\x27\x6f\xc4\x75\xb1\x6f\x1a\x29\x66\x18\xef\x66\x1c\x44\x08\x8d\x2e\x87\x74\xbc\xd3\x68\x61\x4a\x6b\xf4\x51\x38\x78\x97\x6b\x9d\x14\x3e\xc7\x56\xc8\x77\xf1\xa6\xe1\x6f\x1d\x23\x5e\xc4\x36\xdc\x85\x8c\xa7\x29\xaa\xcc\xde\x71\xd1\x3c\xde\xa0\x82\xbd\x9d\xfe\xad\x83\xca\x17\xef\xb8\x20\xec\x35\xde\x9f\xeb\x88\xf2\xd5\x3b\x56\xfb\x9b\x10\x8b\x7c\x9b\xa1\xad\x1b\xe7\x3c\x88\x9b\x77\xdc\x11\xfb\x26\xc4\x19\x2c\x30\xf3\xb6\x6e\x5c\xf0\x20\xee\xde\x19\x0b\xfb\x6f\xc2\x4c\xbf\x33\xc5\x64\xde\x7d\x00\x25\x0f\x6e\xf6\x9d\x98\x72\xee\x9b\x50\xf3\xc0\x5f\xe1\x5d\x37\x4e\x79\x10\x8b\xef\xd8\x02\xdf\x84\x58\x06\xfe\x2a\xef\xba\x71\xbf\xe9\x61\x13\xfb\x6f\xfb\xf6\x3d\x88\xbc\x07\xf7\xdf\xac\x6e\xf7\x61\xe6\x9b\x0d\xec\x5e\xcc\x7d\xb3\x01\xef\xc7\xd2\x37\xab\x9f\xbc\xe3\x28\x0c\x8c\x74\x3e\x24\x4e\x06\x09\x3b\x7a\x92\xf5\x09\xd2\xd4\xbd\xe7\x8a\x5a\xe3\x48\x2d\x18\x89\xf8\x01\xba\x89\xd4\x9a\x7f\x08\x6c\xbe\x5b\x86\xbf\x6d\xe0\xd7\xf4\x4f\x52\x5f\x15\x6b\x03\x45\xad\x65\x62\x5f\x7c\xec\xdb\x4a\xad\xd4\x93\xc0\x46\x2d\x86\x6d\xfb\xda\xdf\xf2\x8f\x5c\x2d\xa9\xd3\x2e\xd8\xd5\xc9\x23\x23\xbd\xff\xac\xb1\xc8\x77\x2f\x56\xde\x13\x27\x14\x65\xfb\xa1\xe9\x69\x8d\xc4\xa8\x1c\xb3\x97\xd8\xb6\xae\x92\xbe\xd5\xf7\x9f\xac\xc4\xa8\x00\x83\xf4\xb5\x9f\x50\xb0\x05\xd1\x75\x10\x60\x43\x67\xe2\xcc\x70\xde\xba\x0f\x56\x5b\x73\x1f\x87\x1b\xb6\xec\x5d\x80\x56\x81\xd7\x85\x42\x30\x1e\x38\xc9\x7f\x62\xa3\x4b\x3a\x54\x9f\x84\xa5\x4f\x8f\x8b\x0b\x2e\x2b\x9f\xa7\x07\xd3\x96\x32\x04\x7a\x90\xf3\x2e\xe5\xb5\xef\x7c\xca\xf1\x14\x05\x0a\x80\xbd\xa0\xc1\x34\xdc\x03\x67\xe8\x7f\x6a\x98\xfd\x30\xc2\x7c\xa1\xa3\x3a\xde\xfd\x2d\x28\x8f\x11\x9e\x83\x23\x61\xee\x67\x40\x52\xc8\x62\xe8\x84\x2f\x96\xdb\x6d\xfa\x6f\x41\x29\x5c\xe3\x7c\x64\xa5\x32\x9f\x85\xdf\x12\xf0\xea\x5d\x08\x8a\x24\xe5\x1d\x7c\x22\x3b\x12\xab\xa0\x27\x38\xd5\xb0\xf3\x32\x96\xa3\xd7\x0e\x8d\x45\xe2\xf2\x32\x76\x79\x69\xf4\xa9\xaf\xcb\x8f\x31\xe8\x01\xe4\x4a\x0a\x89\x54\xce\x74\x3a\x95\x41\x1b\xaf\x22\x39\x53\x1c\xc5\xef\x95\x6f\x10\xbf\xd7\xed\xa8\x3b\x24\x92\x96\xe5\xd3\xbd\x9b\x4a\xec\x79\x69\x9f\xee\xae\x27\x18\x67\xf4\x03\xb4\x50\x91\x38\x3c\x9d\xed\x3a\x2d\x7b\x6d\xba\xea\x4e\x04\xc5\x30\xa2\xa5\xb9\x6a\x12\x6e\xfa\xcd\x6a\x66\xe2\xf1\x6a\x24\x99\x5c\x60\x40\x5b\xd7\x70\xe3\xbb\x94\xa4\x0c\xcc\xcb\x56\x62\x31\x69\xf1\xdb\x62\xd0\x2c\xd7\xb0\x73\xb1\xaa\x5d\xac\xb1\x8f\x97\x6e\x19\x9a\xee\xd7\x1d\x1b\x66\xae\xf0\xd7\xe4\xb3\x90\x29\xca\x75\x3c\x9c\xe4\x12\x2a\x6e\x39\xa3\x83\x44\xb1\x7c\xe2\x66\x85\x97\x40\x32\xdf\x94\x11\xc0\x7d\x46\xd8\xa6\xdb\x3b\x34\x5a\x71\x02\x97\xa1\x0a\xa5\x3e\xe4\x50\x48\x83\xab\x73\x62\x8d\x4b\xfb\x46\xa8\x9b\xa5\xb5\xe8\xa5\x12\xa7\x42\x5a\xf3\x5b\xb7\xab\xed\xf6\x3b\xae\x12\x99\x5a\x19\xc7\xbe\x8d\xd8\xe3\x4c\x9f\x53\x3e\x79\x6d\x10\x44\xf7\xe2\xac\x73\x7b\xb6\x20\x7e\xb7\x53\xbe\xf2\xc0\x27\x9c\x83\x9d\xb4\xfd\x17\x87\xed\x3c\x97\x9f\xba\x83\x0f\xdc\xf6\xe8\xfa\xe4\xea\x7c\x41\x97\x41\x10\x4c\xc8\xb0\x71\xb7\xbe\xc5\x11\xe3\x56\x4b\x6c\xb7\x15\xab\xd6\x55\x61\x8e\x0b\x95\x37\x77\x5c\x98\x63\xfd\x27\x1d\xce\xe3\xf4\xae\xdc\x1a\xad\x20\x08\xd2\xb4\xf3\x6e\xba\xe0\x0b\xb3\x0e\x1e\xf8\x9b\xcb\x01\x1c\xcf\x21\xde\xcd\x1f\x5d\xb3\x05\x79\xb9\xdf\x4e\xdd\xd5\xa1\x51\x35\xe0\x31\x4f\xaa\x6b\x8b\x2e\xb5\xa1\xad\xf2\xbd\x85\x0e\xc6\xc9\xa4\x84\xb4\x32\x97\xb1\x5a\x97\x36\xf3\x5e\x44\x4a\xf3\xde\x29\x5d\x8b\x6a\x70\xc9\x39\x64\x3c\x08\xcb\x3b\x85\x4b\xb2\x42\x64\xe9\x48\x32\x0b\xb7\x3c\x3e\x9f\xca\x0b\x92\x08\x38\x7b\x05\x37\xd2\x81\x4d\x10\xa5\x7f\xcb\xa1\x0a\x9f\x8a\xd9\xdd\x74\x43\x1d\x26\x45\xce\x31\xce\xa5\x84\x47\x60\xde\x32\x72\x87\x0c\x0a\xe7\xb0\xee\x3b\x9b\x82\x0c\x1d\x91\x70\xb1\x90\x73\x13\xcb\xd2\xec\xff\xa8\xba\x14\x45\x75\x42\x9e\xe4\x45\x98\x8b\x2c\x5a\x46\x98\x89\x19\x6b\xcb\x53\x2d\xc0\xca\x67\xa0\x38\x48\x21\x8e\x4f\xb1\x65\x0d\x77\x9b\xed\x3f\x8a\x24\x09\x19\x52\xb9\xb6\x59\xaf\x1e\x6b\xac\xbc\x04\x41\xb0\x68\xb2\xe5\xcd\x40\x2c\xa8\xd9\x9a\xd1\x58\x92\x05\xbc\x8d\x68\x9c\x25\xd1\x24\x3a\x72\xbc\x83\xf2\x96\xea\x78\xf7\xa3\xd5\x5d\xaa\x2b\xcd\x0b\x18\x5c\x16\x57\x14\x0d\x33\x88\x61\x8e\xb3\x46\x0f\xbc\x4f\x51\x87\x6c\x24\xac\xc1\x75\xc7\x0e\xca\x13\x68\x9b\x9e\xc5\x8e\x41\x61\x3c\x7c\xf5\xf1\x84\x2d\x60\x14\x4f\x09\x44\xbf\xeb\x79\x1c\x4c\xd3\x95\xf1\xd2\x2f\xf5\xc0\xb9\x86\x38\x98\x7b\x99\x6f\x0f\x03\xe2\x4b\xd7\x00\x04\xa6\x5e\x3d\x48\x48\x5f\x8d\x67\x0a\x30\x09\xaf\x90\x1c\xec\x99\x73\x83\x09\x7d\x57\x80\x62\x68\x44\x9c\x60\x93\x7e\x0f\xc3\xa4\x7a\x4c\x37\x9c\xa1\x85\x47\x92\x50\x0f\x3c\x7b\xad\xaa\x7d\x24\x55\x43\xe2\x24\x4e\xd9\x4a\x15\xde\x93\xaa\xa5\x91\x9d\x7b\xdc\x09\xbf\xa8\xd8\x0b\xa3\x2e\x26\xba\x91\x49\x8c\xe0\x6d\xc8\x74\x37\xea\x22\x0a\x7c\xdc\x8d\xab\xc7\x43\xd0\xc9\xa2\xed\xdf\x5f\xe6\xdd\x46\x22\x69\x78\xad\x25\xfc\xa4\x1b\x6a\x2b\xcb\x52\x54\x44\x5c\xfa\xe6\x3c\x46\xb2\x0d\xba\x21\xbb\x1e\xdc\x76\x9e\xf7\xc4\x81\xd9\x64\x8f\x9d\xe4\x84\x2c\x4b\x5a\xff\x82\x0f\x44\xa4\x89\xcf\x38\x32\x60\x0b\x8b\x6e\x28\xf6\xf9\xef\xcf\x4e\x40\xe2\xf5\x96\xae\xa7\xc1\xfc\x00\x39\x37\x0e\x39\x79\x18\x72\xb3\x78\xfc\x65\xfd\x73\x44\x1b\x05\x83\x61\x29\x25\x75\x83\x9c\x4d\x74\xa6\x6b\x64\x18\xd5\x59\x09\x34\xda\x1f\xc5\xd3\xae\x0b\xa9\xb1\xef\xfa\x8b\x31\x08\xe7\x5c\x92\xee\x86\xea\x3d\x0f\x36\xb6\xe7\x7e\x3e\xf6\x37\x73\xd0\xa7\xa2\xa6\x5e\xcf\xff\xec\x38\x53\x60\x89\x1d\x28\x80\x85\x9f\x8f\xfa\x21\x08\x9e\xbe\x89\xf1\xfc\x9d\x64\x64\xfc\xce\x4c\x3e\xd4\xa9\xe5\x2e\x08\x02\xda\x8c\x3f\xd9\x7c\x9a\x3c\xef\xe6\xbe\xea\x51\xec\x62\xc7\x97\x7a\x2e\x9b\x66\xeb\xfb\xa4\x6b\x41\x9b\x03\x7b\x04\x74\xb9\xcb\xac\xe5\x6f\x82\x36\x88\x8d\x80\x3e\x61\xb1\x9d\xfa\x9b\xa0\x95\xc9\x62\x1e\x93\xd0\x83\x50\x5e\x20\xe9\xfd\x1c\x32\x5e\x38\x8e\x62\xc4\xc2\x1e\x09\x4d\xf6\xfb\x07\x2d\x0d\x5f\x75\xe1\x32\xf7\x26\x0c\x7e\x12\x72\x3a\x8c\xe1\x5f\x18\x7c\x02\x9d\x8c\x7a\xcc\xf3\xfb\x89\x18\x57\x76\x80\x99\x7a\xfd\x86\x4d\xbc\x6e\x58\x8b\x90\xf2\xb3\x95\x43\xa7\x65\xf6\x3f\xcd\xef\xd6\x58\x45\x8a\x05\xee\xd0\x89\xb8\x10\x3e\xa9\xad\xaa\x41\xc0\xf1\x56\x15\xb8\xae\x66\x6c\x72\x99\xf3\x2c\x17\x3d\xb9\x6b\x45\x0d\xb2\xf5\x20\xc8\xd6\xd7\xfc\x91\xed\x03\xb9\x33\xe2\x0f\x3d\xf2\x2a\xbe\x6c\x7b\x11\x47\x3f\x22\x93\x2e\xf5\xde\x76\x2d\x28\xd7\x42\xb4\xc5\xfa\x17\xd4\x98\x5a\xac\x98\x42\xa9\x6b\xdf\x00\xd5\x63\xb5\x9a\x63\x99\x57\xbf\xe8\xf3\xba\xe9\xf1\xab\x8e\x10\x4d\xa6\x17\x46\x3f\xe0\x61\x30\x9c\x01\x73\x51\xa8\x82\x9c\x6e\x28\x2f\xd1\x98\x6a\xe9\xeb\x08\x38\x1e\xe2\xb0\xed\xb5\xee\xbf\xc4\x1e\xa6\xe2\x8a\xe9\x7b\xa5\x55\xfb\x30\xfc\xb3\x07\x11\xce\xd5\x17\x67\x13\xc4\xa3\x9e\xb4\x74\x42\x5d\x5e\x31\xea\x81\x5f\x7f\x18\xf8\x73\x93\xfb\x1f\x25\x21\xf3\x5e\x28\x69\x17\x23\x58\x48\x98\x87\xab\x5c\xf0\x1e\xd9\x62\x71\xc1\xa9\x58\x2e\xf4\x88\x4c\x13\x7c\x16\xf8\x27\xbd\x90\x17\x3c\xf5\x75\x8f\xae\x72\xc9\xeb\x11\xc7\x48\xc6\x91\x1b\x56\xea\x49\xf7\x6d\x1a\xb3\x91\xb9\x97\x2c\xeb\x8e\xf4\x2c\x55\xd7\xf7\xba\x5f\xa8\x3a\xe3\xf8\x43\x49\x07\x58\x84\x40\x21\xfd\x62\xdf\xf3\x58\x44\xa7\x2f\xa8\xe9\x0e\x3c\xa6\xd6\xeb\xcb\x7c\x98\xdb\x1d\x1b\xa7\xab\x9c\xf2\x30\xc4\xe9\x73\xae\xbc\x61\x64\x1e\x35\x7e\x7a\x76\x00\x63\x36\x01\xf9\x6b\xb7\x63\xfa\xb7\x9a\x41\x54\xde\x46\x46\x45\xe7\xc9\xa6\x57\x75\xfc\x3b\x7e\xf5\x88\xc7\x24\x55\xba\xbf\xe1\x5c\xe5\x4c\xcd\x34\x8c\x67\xdc\x1d\x83\x79\x6d\x81\x97\x71\x87\xfd\x30\xb1\x9d\x4a\xad\x39\x4f\x86\x6c\x51\x76\xe0\x3b\x43\x38\x52\x83\xfe\x49\xe8\x61\xca\xfb\xad\xee\xb2\x35\x5b\x76\xc6\x2c\xd1\x67\xf6\x51\x97\x09\xc7\x51\x9f\x8b\x7b\x26\x32\x47\xb1\x32\x31\x7f\x63\x16\xbc\xfc\xd4\x8c\x72\xd7\xc3\x51\x5a\xb8\xe8\x27\x9b\x56\xcc\xbf\xa3\x73\x8c\x8f\xa6\x16\xb1\xcc\x78\xee\x98\x42\x53\x4c\xd5\x76\x16\xec\x7e\xb9\xfc\x77\x48\xc3\x4d\x47\x76\xe2\xb6\xfb\x97\xe5\xb7\x1c\xb4\xac\xf4\xce\x76\x42\xba\xf6\xb7\xb3\x46\x14\xb7\x19\x86\xcf\x9a\x92\xa3\x16\xb2\x89\xad\x37\x65\x8c\x47\xdd\x4a\xb0\x0e\x8c\x64\xc7\xcf\xfb\xc9\x22\xc2\x6d\xa1\x7e\x14\x90\x87\xdf\x13\x49\x34\xbe\xec\xbb\x11\xf0\x85\xc7\xbe\x67\xbf\x9c\x7e\x26\x8d\x27\x63\xc1\x10\x4f\x3a\xda\x57\xaf\x09\x59\xe9\xe0\x92\x9f\x01\x70\x77\xfd\x90\xaf\x4a\xee\x93\x67\xce\x29\x40\x56\xf2\xe8\x43\xe6\x68\x5f\x13\xa9\x96\x13\x04\xf5\x43\xde\xe6\x02\x9f\xed\x03\x99\x6f\x6c\x87\x92\xed\x9b\x9c\x29\x0c\xa0\xc8\x89\xbe\xcf\x2c\x53\xe2\x34\x52\xdd\x63\x23\xcb\xe1\xed\xc7\x82\xcd\xdd\xcd\xa9\xa2\x92\x86\x91\x70\x3b\x57\x13\x2f\x1c\xee\x43\xf4\xbf\x7c\xd6\xf4\x7b\x92\xf4\xa4\x22\x83\x1b\x3d\xe2\xa4\x30\x38\xe0\xc4\x31\x67\x7b\x71\xe2\x58\x7a\xac\x7c\xcd\xf1\x5d\xe5\xc2\x83\xe6\xae\x7c\x39\xf9\x2a\xa2\x42\x56\x3a\x89\xeb\x9c\x7b\xb3\xe7\x2d\x0e\x1d\x89\xf2\x1e\xd9\xa2\x96\x52\x65\x6c\x87\x76\x59\xbc\x26\xe7\x36\x1c\x26\xfa\x8b\x33\x6e\x04\x94\xf8\x61\x70\x6c\x39\x33\xb0\xff\x95\x9e\x04\x2e\x27\x5d\xa6\x16\x03\xc6\x55\xa2\xbf\x35\xd2\x6b\x1f\xbe\xdb\x22\x84\x65\xe5\xfe\x00\x51\xb1\xde\x35\xc6\xf5\x8b\xfe\x85\x53\xb6\xe5\x25\x39\xc8\xbb\x35\x8c\x43\x92\xee\xa5\xed\xee\x0d\x38\x33\x28\x2b\x88\x4c\x16\x9c\x22\x64\xe8\x67\x7a\xdc\x41\x32\x8f\x25\xba\x76\x60\xc3\x5a\xc4\x42\xc9\xd9\x98\xe7\x51\x34\x61\x5a\x73\x20\x73\xc7\x92\x70\x39\x38\xa4\xde\xc5\x95\x22\x81\x5c\xe7\xe3\xdb\x7a\xe8\xf1\xee\x15\x1e\x53\x5a\xc3\x66\xb6\x19\x42\x50\x6e\x39\xf4\x67\x37\x0c\xd5\xab\x60\xad\xfd\x31\x97\xf7\xa8\xa1\x32\x82\xb5\x32\x91\x89\x5d\xf2\x01\x2c\x97\x08\x62\xc6\x6b\x3c\x4f\xfc\xca\x51\x3c\xb4\x33\x97\x9e\x65\x75\x20\x57\x5a\x0a\xdc\x30\xdf\x21\xa5\x26\x62\x8f\xf6\xc1\x61\x57\xe3\x48\xc6\x49\x1a\x65\x4f\x23\x12\xac\x34\xf0\xec\xba\x7c\x37\xb1\x78\x76\xf8\xf1\xd4\x93\xf8\x8b\x9d\x0c\x72\xf2\x84\xf1\x54\x92\x51\xf7\x66\x6f\xa6\xb5\x38\xde\x8c\xdb\xcd\x10\x51\xde\x0b\x53\x89\x0d\x8f\xbd\xf8\x79\x08\xe5\x71\xd3\xcf\xd1\xad\xc4\x2f\x84\xa4\x7f\x49\xa6\x8c\x61\xe2\xb9\x28\xa2\x73\x9b\xdd\x4a\x7b\xea\xe8\x7e\x4f\xff\x12\xb9\x3a\x74\x63\xe3\xe8\x94\xc4\xb1\xb9\xb1\x0f\x6a\x7f\x95\x90\x91\xb7\x2c\x99\x86\x1d\xfc\x5c\x4d\x3f\x7f\x1a\x8d\x9f\x1a\x1f\x89\x25\x71\x30\x8a\x35\x5e\xbc\xe1\x28\x4c\x10\x1d\xbb\x27\x79\x28\x9b\xe3\x2d\x63\x4f\xea\x1a\xe2\xe5\x04\x8a\x93\x51\xc8\xe6\x93\xe9\xf0\xf8\xc8\x3b\x75\xb6\xe0\xcd\x47\x9e\xcd\x35\xea\x7b\x7a\x4c\xb4\xb2\x21\xcf\x85\xf2\x39\x12\xa3\xe1\x40\x01\x32\x09\xde\x26\x6d\xcd\x21\x36\x6e\x86\x6e\x26\xb7\x0b\x0f\x5e\xc7\x96\x10\x39\x68\x23\x46\x88\x39\xf2\x9d\xe2\xe0\x9c\xb9\xfe\xae\xce\xe8\xd8\x9e\xdb\xc8\xc2\x00\x3d\xd8\xe6\x58\x96\x49\x7a\xb0\x36\xaa\x15\x81\xbd\x1a\xb6\x0c\xed\x66\x3d\x0c\x0f\x48\x8e\x9f\x1b\x9d\x75\xec\xb4\x1d\xdc\x48\x12\xb7\x6c\x47\x9e\xc6\x6c\xe8\x14\x53\x93\x67\xa0\x33\xc3\x68\xdb\x05\x9e\x5c\xcf\x0d\x8f\xd8\x18\x38\x2f\x64\x94\x44\x56\x70\x31\x15\x86\xbe\xc5\x64\x54\x97\xf0\x40\xfe\xf0\xf7\xdd\xbe\x11\x32\xe1\xb3\xe6\xa6\x2e\x32\x02\xac\xa9\xe2\xef\x8f\x55\x27\xe4\xb7\xaf\xd6\xfe\x41\x42\x06\x3a\x93\x40\xad\x14\x0f\xb4\x33\x0a\x19\x62\x77\xf4\x0d\x9e\x56\xe2\x88\xfd\x41\xc8\xc5\xfd\xd1\x41\x43\x49\x57\x4a\x64\xe9\xe3\x93\x00\x23\xaa\x30\x8c\x8e\x1b\x12\x3f\xa6\x3f\xf6\xed\x9d\x31\x63\x49\x9c\xbc\xfe\xb3\xf3\xe9\xb8\xa8\x11\xe9\xd0\x9d\x95\xca\x48\x98\x33\x64\x08\xec\x96\x86\x7a\x76\x2d\x12\xb0\x25\x7e\x4e\x16\x83\x03\x66\xff\xd6\x19\x36\xe2\xe3\xaa\x4d\x1b\x91\xa2\xfe\x06\x9c\xb6\x2f\x59\xbd\x61\x56\x37\x82\x7d\x62\xca\x23\x08\x3c\x55\x79\x9f\x6c\x96\x8b\x88\x9f\xf8\xbc\xe3\xe6\x16\x51\x28\x9d\x0f\x61\x50\x45\xcc\x35\xdd\xee\x1e\x7b\x71\x27\x2c\x3f\x06\x5e\xe7\xa7\xea\x26\x75\x2a\x8c\x5d\x06\x96\x77\x5a\x91\x0d\x6c\x24\x21\x8e\x6b\x86\x5c\xb7\xba\x9c\x4d\xfb\x5b\xe8\xb8\xb0\x24\x32\xe5\xea\xbb\xfa\xca\x3b\xcd\x9e\xe2\xcd\x18\xb3\xde\x32\x44\x1b\xa2\x64\xed\x8b\x1c\x43\x63\x46\xdb\xc0\x9d\x16\x96\x83\x63\x7e\xf5\xe3\x50\x82\x94\x74\xcf\x09\x8b\xba\xcb\x51\x99\x16\x57\x28\x91\x03\x3b\x19\xd3\xda\x3f\x2a\x0d\x74\x2b\xd3\x9b\x25\x22\xfa\x67\x3f\x0e\x7f\xfc\x45\x4d\x4d\xf8\x9e\xfd\x56\xff\xfe\x20\x23\xa0\x28\x7a\xa2\xf3\x6f\x01\x65\x1f\x32\xd9\xf6\xdc\xfa\x64\xf1\x5c\x28\x85\xa3\x8e\x5d\x31\xe4\x4b\x66\xec\x5e\x69\xe2\xf5\xb6\x27\x10\xbe\xbb\x38\xc4\x3a\x4c\xaa\x22\x3c\x63\x4d\xfc\x57\x95\xf2\x63\x3d\x38\xfb\x4f\x41\x63\x4b\xdd\x7d\x76\x1d\xdb\x7b\x5d\x67\x8e\x5a\xea\x2a\xbc\x0a\xb1\xca\xbc\x38\x23\xd9\x4c\x03\xe1\x65\x7c\xd3\x96\x34\x04\xee\xeb\x64\xc8\x4e\x44\x4e\xf2\x0c\x95\xac\x83\x74\x5f\xfc\x0a\xbe\xdb\x57\x75\x7b\x99\x87\xd1\xc4\x4a\xd1\x06\xa6\x2e\xa1\xab\x13\xd6\xe8\xfa\xfc\x79\xc0\x5c\xa2\x3b\x61\xe3\xe6\x44\xdc\x98\xa6\x97\x21\x97\x8e\x26\x68\x95\x41\xb0\x14\xbf\x5f\x39\x99\x68\x0e\x40\xe6\xf4\x91\xba\xbb\x38\x1b\x85\xee\x6d\x0e\x15\x2e\xc6\x69\x88\xd5\x4f\x72\xb9\x4f\x54\xd3\x01\x8f\x62\xcc\xd9\x88\xfc\xb7\xae\xf8\x09\xb2\x31\x7a\x5f\x8f\x7c\x63\x40\xee\x51\xce\x5a\xe6\x2f\x7e\x88\xd6\x8c\x85\xb8\x0d\x0f\x70\xc5\x0c\x76\x3e\x3e\xd4\x98\x9e\x41\x6e\xd9\xca\x94\x1f\x80\x2b\xaf\x98\x46\xd6\x3c\x3a\x83\x07\x9a\x7d\xe2\x68\x3b\xf1\x46\x0d\xa6\x87\xd6\x8c\x47\x39\x9f\xe8\xb7\x52\x57\xcc\x5d\x32\x43\x0b\xc8\x7c\x5c\x70\xe5\xe5\x57\x95\x5b\x87\xbc\x68\x4e\x2d\x3a\x09\x39\x88\x7a\x6b\x81\xd1\xae\xa0\x2c\x75\x89\x8e\x9d\x1d\x4c\xfc\x7b\xc6\x41\xd4\x27\x86\x77\x9c\x7b\x51\xf5\xab\x07\x8b\x44\x66\xe2\xa9\xd2\x89\xba\x16\xeb\xf2\x51\x5d\x6b\x01\xe3\x82\xa8\x69\x91\x7e\x3b\xd5\x20\xe8\x54\xd7\x89\x7e\x22\x09\xbf\x02\x60\x0e\xc0\xf2\x94\x38\x7b\xcd\xb3\x20\x27\x08\xde\x33\xbc\xe0\x5b\x21\x7f\x79\x9b\x46\x53\x85\x59\x3b\x8a\x86\x1e\xb9\x46\xb2\x96\xf2\x5d\x03\xe9\x5c\x26\x90\xd6\x66\x94\x0c\xc4\x45\xb7\x2d\x27\xde\xd0\x16\xbc\xa9\x96\xb1\xa1\xa9\x67\x97\x47\x13\x75\x19\xbe\x8d\x50\x01\x43\x6e\xa5\x91\x03\x42\x42\x5a\x6d\x6f\x0d\xd4\x0d\x55\x01\x35\x8d\xe8\xea\x7b\x04\x08\xfe\x31\x25\x53\x7f\xa8\x33\x41\xc8\xc8\xfd\x4d\x3a\x07\x57\x1b\x30\x3d\x8f\x0f\xee\xc1\x23\x1b\xd8\x32\x17\xdb\xfb\xd8\xef\x5d\x36\xed\x5a\xed\x78\x03\x4f\x06\x39\x99\xf8\x9b\xfa\x4b\x0e\x60\x96\x29\x0a\x8c\x94\x6b\x22\x5f\x0b\xc6\x92\xfe\x88\xcf\xff\x5f\x7d\x38\x76\x14\x92\x07\x7c\xcd\x19\x48\xbd\x22\xcf\x51\x20\xf6\x71\x6d\xb0\xd8\xce\x2f\x7d\xf6\xd4\x47\x20\x4e\xb5\x14\x3b\x02\x6d\x1a\xf2\xba\xc8\x44\x3d\x77\xe8\xb3\x2f\xb5\x98\xe4\xab\x8a\xa0\x6b\xfb\x2c\xf4\x47\x4b\xd9\xfc\x11\xb7\x75\x8d\xc9\xac\xd7\x4c\xac\xac\x19\x67\x3d\x92\xee\xf5\x3b\xb8\xbb\x21\x41\x6c\x23\x68\xca\x11\xea\xb5\x57\xf8\xa6\xdc\x9f\xd9\x82\x5a\xeb\x18\xb9\x62\xce\xfd\x16\xd7\x3a\xf4\x69\x1d\x5c\xc7\xa0\xdf\x66\x32\x45\x80\xe5\xd4\xd3\x81\xe5\x54\x6f\x35\x93\xfd\x58\x5d\x17\x38\x16\x4f\xc9\x37\x42\x6d\x10\xaa\x81\xc6\xf1\xa7\xd1\x70\xd6\xde\x9f\x58\x32\x91\x14\xd3\x7f\xda\x53\x74\xdc\xfd\x63\xd2\xa3\x75\xaa\x33\x87\xba\x78\x8e\xef\xbc\x7d\xf8\x9f\xb4\x85\x29\x66\x60\x1f\x88\x6e\xd8\xa7\x2b\xa9\xab\x57\x3d\x46\x1b\x53\x3b\xbd\x73\x99\x60\xde\x93\x45\xa5\xcb\x5e\xa2\x93\x12\x30\x02\xf3\xfc\xc4\xed\xf4\xa0\xb8\xbd\xe1\xe6\x97\xc8\x75\x62\xb5\x8c\xec\x84\xc3\xa8\xcc\x2e\xce\xfd\x60\x3b\xbe\xd0\x5d\xa7\x66\x24\x37\xa9\xde\x71\x7c\x0f\x8a\x74\xa6\xa1\x3f\xde\x62\x4d\xfc\x02\x87\x47\x5c\xf7\xf2\x84\xfc\xe5\x71\x2a\xb6\xf1\xf3\x71\x96\x6b\xe2\xc8\x9f\x32\x0a\xeb\x0e\xf9\xdf\x18\x6c\xd3\xde\x9b\x6d\x07\x41\xd0\x7f\xf2\xd3\x37\xa8\x9b\xf5\xd6\xed\x94\x7e\xc5\xc1\x95\x37\x8a\x7e\xdf\x8e\x2e\xd6\x0c\xa0\x26\x23\x14\x20\x62\x0f\x82\xe1\xa5\x23\x3e\xe2\xb9\x8f\xdb\x44\x85\xc3\x73\xfe\x27\xab\x0e\x9c\xe9\xc3\xc6\xac\x4e\x6e\x29\x66\x35\xe3\x47\x79\xe6\x9b\x12\x9b\x3f\x89\x96\xab\xdb\xba\xf6\xe3\xcf\x02\xd5\x5d\xe7\x2b\x0a\xfa\x17\xd3\xac\xff\x92\xa0\x8a\x72\x32\x3f\xb3\x17\x60\x18\x35\x6d\xcc\x4d\xca\x99\x71\xd8\x3a\x41\xc1\xda\x67\x96\x22\xc8\x0f\xf4\x5b\x83\x73\x17\x2d\xb2\x74\x02\xb8\xcc\xdd\xc7\xa2\x65\xf9\x0d\xef\xdc\x0f\x63\x65\x5d\xe6\x8f\x2c\xbd\x89\x71\x6e\xfe\xc8\x87\x6b\x7f\x51\x47\x9f\xa2\x33\xca\x12\xd1\x3f\x45\x4a\x23\x39\xa5\xa2\x72\xb8\xf5\xdb\xf8\x5c\xdc\x35\xc2\x45\x8a\x3a\x2e\x52\xe4\xea\xb1\x0c\x28\x09\x37\x2d\xf5\x8d\x2d\x4a\x5d\xb9\x43\x9f\x9b\x70\x3f\x55\x89\x02\x65\xd3\x59\x97\xb2\x3b\xf1\xe6\xf8\xea\x49\xaf\x1a\x04\x3d\x16\x12\x5e\x42\x18\xd7\x28\x87\xdc\xbc\x95\x76\x6c\x64\x5f\x18\x98\x52\xfa\x3d\x67\x4a\x4a\x99\xc7\x30\xd3\x61\xe6\x2f\x0d\x93\x5f\x7f\x77\x15\x07\x88\x69\xcf\x4d\xfd\x3b\x56\x87\x87\xe5\xd0\xf6\x10\x04\xcd\x13\x58\xd2\x90\x2c\xa0\x30\xf1\x84\xe8\x8a\x55\x4e\x7b\x53\x1f\x13\xf9\x28\x4d\xc3\x78\x8e\x1a\x96\xbb\xac\x99\x55\x7c\x48\xc7\x2e\x39\xc8\x6b\x23\x2e\x13\xce\x09\x50\x34\x0a\x53\x09\x1d\xd9\xcb\xc4\x27\x2d\xfe\x91\x9a\xaa\xa3\x2b\xa5\xb9\x9b\x60\x52\x1f\x84\x83\x69\xf7\x90\x73\xc6\x69\x62\x35\x95\x30\xfd\x32\x08\x82\xf9\xb5\xf9\xdd\x8e\x3e\xe4\xea\x76\xae\x6b\x9a\x3d\x47\xa6\xf9\x59\x98\xc0\x17\xec\x88\x90\x04\x14\x77\x41\x32\x37\x11\x10\xf1\xf1\x8c\xf1\x7c\xbc\x02\x42\x3b\xe4\xe4\x9e\x33\x9e\xd0\x1d\x8d\xe9\x77\xe6\x45\x2e\x47\xab\x69\x2d\x3f\xdd\x6f\x58\x2b\x52\xd1\x26\xc5\x73\xec\x7f\xd3\xc5\x70\x1c\x7a\x8c\x31\x56\x89\x3c\x3c\x9c\x23\x5b\xe5\x94\x8a\x01\x2d\x03\x49\x48\x84\x75\x08\xa8\x54\x72\xf7\x14\x0c\xc9\xcd\x29\x83\x57\x2f\xac\xdc\x44\x66\xbb\xbe\xf1\xe4\xc3\x5d\x10\x04\x0b\xaa\x4b\x12\xcc\xaf\x7b\x72\xae\xec\xb9\x0f\x42\xc8\x4f\x73\xbb\x68\x4a\x1e\x2a\x71\x06\xfb\xda\x7c\x16\x17\x88\xf4\x6a\x6c\x9f\xba\xa6\x58\xe8\xe8\x45\xd3\xef\xa6\x99\x18\x7d\x12\x57\xd8\x40\xd9\xe5\x3b\xaf\x1e\x67\x8d\xa8\xba\x97\xd1\xa7\xdd\x38\xcb\xc5\x06\x6e\x8b\xe5\xd4\x77\x35\x14\x25\xa6\x67\x3d\x73\x06\x26\x6b\xed\x14\xfb\x8e\x80\xb2\xf1\x18\x69\x98\x03\xb7\xb3\xf8\xfe\x13\xc8\x36\x1e\x6c\x3f\x8d\x6e\x75\x92\xe4\xfe\x56\xdf\x21\xf3\x67\x85\x59\x51\x53\x27\xd7\x48\xfd\x72\x97\x34\xc1\xd5\x37\x60\x72\x88\xe5\xbd\x90\x22\xba\xa8\xc3\x57\x7f\x6d\x22\x8e\x86\xbd\x33\xf2\xe6\x94\x55\xce\xd0\x92\xbd\x92\xa3\xd7\xcc\xb3\x86\x1f\x54\xd3\x53\xe3\x28\x4e\xe9\x8e\xf0\x21\x9c\xd2\xb0\xd7\xfc\xd5\x8f\x94\x6c\x44\x12\x64\x6e\x3e\x1c\x43\xdf\x7e\x48\x51\xcb\xea\x68\x74\x31\xa8\xe3\x9d\x50\x3c\x7e\x4d\x41\x3a\x28\x60\x17\xb1\x78\x1b\x15\x74\x01\x10\x68\x72\xfe\x42\x9b\x4f\x18\xe4\x9c\xaf\x92\x4e\x71\x84\x92\xdd\x94\x9d\x0a\x75\xe4\xa6\x1e\x9a\x24\xef\x05\x1f\x6c\xd8\x32\xb0\x4e\x38\x3f\x5a\xc3\x1b\xd7\xcd\xe2\xc8\x1c\x59\x62\xfc\x75\xc2\xf6\xc5\xd4\xd8\x11\xae\xa1\x90\x3e\x1f\xa0\xf2\x33\xe7\x37\x6d\x16\x78\x81\x37\x78\x10\xae\x00\xf2\x65\xdf\x3f\x17\xce\x3e\xc1\x03\xac\x3e\x5e\xf2\x1b\x79\xdf\x29\x3b\x0a\x4f\x93\x89\x6d\x16\x0e\xa3\x59\x60\x64\x95\x5b\x1c\xd9\x92\xfd\x85\x0c\x3e\xb7\xfa\x84\x38\x02\xc9\xf6\xa7\xe1\xe1\x3a\x13\xd4\x49\x4d\x93\x7d\xdd\x34\x26\x7e\x57\x1a\xf7\x5c\xfb\x67\x8e\x78\x2a\x38\xfe\xe5\x7e\x09\x7c\xf3\xd7\xe6\x13\xc1\xa1\x73\x5f\x2d\x88\xdc\x12\x8d\x1e\x06\xe7\x77\x02\xa3\x25\xf7\x01\x78\xc7\x45\xcc\x91\x45\xb9\x87\x25\x36\x2d\x31\x5c\xcb\xf2\x9c\xb0\x03\x24\x35\x3a\x40\x06\xea\x59\x42\xc7\x2c\x5b\xd6\x24\x40\x8a\x40\xfe\x12\x7a\x40\xce\xe3\xd3\x09\x4e\xaa\xc5\x8c\x2d\x68\x87\xb6\xea\x7e\xe6\x4c\x6d\x64\x47\x51\xf6\x76\x0a\xcb\x12\xeb\x15\x53\x95\x10\x54\x1a\xaf\x6b\x14\x9a\xa7\xda\x50\xf7\x17\x5b\xcf\x43\x6d\x6f\xc1\xca\xd2\x2b\xfd\x73\xe7\x00\x6b\x21\xf1\x47\xdd\xe6\x6e\x66\xff\xf4\x64\xce\xd1\xbc\x73\xf7\xb7\x7b\x7a\xde\x29\x2e\x24\x39\xe9\xe6\x8f\x8e\xe2\xfe\x2b\x82\xa7\x25\x49\xb8\x03\x27\x03\xa8\x90\x53\xe1\xf1\x80\xa8\x68\xc8\xa3\x3a\x58\x28\x6a\x64\x1f\x59\x0e\xeb\x43\x9f\x2e\x7d\xdb\x59\x9c\x95\x4a\x78\xa0\x97\x94\xc9\xc9\xfd\x32\x41\xa5\x9b\x43\x51\xeb\x8d\xe2\x84\x89\x29\x9d\x4e\xde\xd4\x8b\x45\xca\x89\xc5\x22\xfb\xc7\xf2\xf9\xb0\xcb\x81\xcd\x86\x23\x46\xd1\x7c\xae\xfd\xa8\xa6\xf4\x8d\xef\xbe\x03\xd5\x63\xb5\xd0\x4f\x92\xfa\x4f\xaf\x3e\x89\x26\x0f\xc8\x60\xae\x1f\xfe\xb1\x98\x18\xaa\x46\x96\xe5\x0b\x24\x19\x8e\x9b\x82\x3f\x30\xd3\xc8\x89\x29\x8a\xa6\xe1\xa5\xab\x1f\xdc\xf7\x94\x48\x60\xec\xd8\x34\xed\x81\x6f\x4a\x11\xbe\xb1\x87\x6c\xec\xab\x2e\x6e\x02\xad\xe7\xa1\x27\xd2\x0e\xf2\xc0\xcc\x85\x47\x86\x3f\xe4\x7e\xd3\xfb\xd3\xe8\xf3\x14\xdf\x48\x03\x16\x31\x13\xf4\xce\x48\xb5\x1c\xf7\x95\x52\xc8\xa9\x5e\x91\x63\x0a\x91\xce\x48\x2b\xbf\x98\x73\x76\x19\xe1\x00\x73\x36\x74\xcf\xec\xc6\xe5\xf4\xfe\xef\x07\xb8\xb0\x7e\x73\x86\x22\x1a\x86\x76\xe0\xee\xca\xc0\xe5\x91\xd1\x93\xe7\xec\x43\xaf\x38\xe7\x5c\xa3\x48\x87\xc6\x77\x11\x15\x71\xca\xf1\xbb\x34\xa2\x66\x5c\xaa\x3f\x0d\x9b\x2a\xc2\x94\x64\xe3\x8e\xcf\x94\xe1\x52\x84\x02\x84\x70\xbf\xe5\x05\xb4\x62\xc9\xb3\x18\xf6\xcc\x0f\x5e\xf6\x53\xbf\xf6\x6d\x70\x6a\x3f\x1a\x23\x32\x41\x84\xfa\x76\x96\x10\x3c\x72\x27\x09\x95\xe9\xd8\xd6\x25\xd3\x87\xcd\x71\x13\xeb\x81\x0f\x2e\x7e\xcc\x89\xd8\x6b\xa0\x5e\x7e\x28\x5e\xd5\x0a\x82\xa0\x42\x71\xdb\xea\xda\x3e\xbf\xc4\xed\xd4\x67\xbb\x47\x13\x8f\xcb\x04\xc9\xb7\x54\x4d\x26\x32\x92\xfd\xcc\x6b\xc1\xa9\x02\x80\x42\x1c\xba\x6e\x12\xbe\x73\x2a\x81\xeb\xef\x9c\xd8\x9b\xee\xbd\x63\x1f\x48\xea\xca\xd9\xb3\x0b\x51\xdd\xdf\x7a\x89\x2a\x49\x9d\x60\x64\x89\x93\x75\xd6\x71\xea\x58\x3d\x4c\xea\x25\x76\x95\xf0\xfb\x24\x57\x00\x8f\x6f\x0f\x43\xe3\xd0\x1b\xfb\x6c\x82\xfd\xc7\x2f\x74\x97\xdb\x72\xc3\x84\xf1\x28\x81\x81\xdd\x2b\xc7\x6a\x16\x77\x56\xc6\xc7\x27\x59\x69\xab\xe5\xf3\xc9\xa1\x8f\x3c\x5e\x9c\x01\xeb\x5b\x06\x1a\x4b\x34\x38\xf2\xdb\xb6\xac\xdd\x94\x60\x8b\xe0\x73\x81\x7f\x05\x41\xea\xe4\x10\xe3\xc9\xd1\xbf\x92\xe3\x81\x16\xec\x97\xc6\xa0\x93\x69\x90\x71\x9c\xc1\x8d\xb3\xc3\x4c\xcf\xf4\xd8\xdd\x09\xb9\xff\xa2\xcb\xad\x69\xa6\xf0\xe0\x55\x4f\x44\x80\x27\x44\xf5\xe1\xec\x3b\x88\x21\x7b\x74\x07\xa1\xb3\x93\xb0\x34\x8b\x58\xb2\x47\x32\x10\xb7\x93\x87\xe4\xce\xfd\xe0\xa4\x65\x7c\x07\x91\xcd\xcd\xfa\x4d\x71\x7e\x25\xfc\xa7\x99\x47\xbe\x55\xdf\xc9\x51\xc3\x80\x83\x77\xf3\x9b\xf2\x9a\x45\xad\x07\x3a\x73\x08\x12\xb6\x34\x84\x75\x93\x4c\x95\x67\x90\xaa\xe2\x2b\xa5\xf5\x9c\xfb\x78\x4c\x48\x79\x01\xa6\x8e\x24\x4f\x9b\x27\xa7\x3f\x0e\x17\xde\xc9\xf3\x70\xd3\x73\xfa\x37\xad\x9a\x76\xe7\xc9\xb2\xf4\x34\x29\xa9\x13\xd9\x50\x6d\xc6\x2d\x3f\x5b\x53\x74\x6e\xe2\x1b\x05\xfd\xb1\x42\xfd\xbd\x6c\x1e\xde\xd4\xb8\xe5\xf7\x52\x99\xfc\xbd\x99\x81\xb6\x6a\xca\xb1\x69\x64\x5d\x1a\x64\x28\xbe\x1a\x2f\x99\xbc\x7f\x5a\xd9\xe0\x06\xdd\x94\x57\x83\x46\xc4\x06\x11\xeb\x6b\xc6\xb1\x71\xf4\x87\x08\x1c\x52\x14\x55\xe6\xc8\xe7\x7b\x82\x9b\xb7\x9b\x7b\x47\x35\xc8\x69\x2c\xe9\xd1\x5b\x3f\x4d\xc3\xde\xbb\x26\x4b\x33\xce\x79\x6d\x7e\xa3\xaf\x77\x2d\x3b\xec\x52\xd2\xb0\xf7\xdb\xa7\xd1\x17\x4c\xb0\xb0\x2c\x2e\x93\x73\xb1\x1b\xfd\x13\x0b\x3d\xf7\x89\xd0\x28\x9e\x1f\x2c\x3e\xeb\x53\x5e\x8b\xd9\x1c\x77\xcd\xf3\xa1\xaf\x5f\x04\xec\xbd\xb5\x49\xda\xe7\x96\x43\x0d\xf8\x32\xf9\xb9\xfd\xa0\x22\xbe\xa8\x6d\xe1\xf5\xf4\x9f\xd4\xe6\x9c\x00\x99\x23\x1e\x99\xa1\x56\x5d\x1c\x4c\xc6\xdb\x47\x66\x71\x78\x35\xe7\xd1\x75\x1c\xcf\xfd\x05\x5c\x7a\x2d\x77\x2f\xb2\xaf\xcd\x78\x38\xc9\xb9\x59\xd6\xbc\x5d\x56\xf4\x2a\xe4\x50\x8e\xf6\x4b\x30\x7d\x5a\x51\x9d\x2f\x3c\x26\xa8\xe8\x45\x8e\x36\x3e\x15\x4c\xd9\x1c\xda\x43\x0a\x39\xf3\xf5\x72\x7c\xee\xf5\xd5\x50\xa8\xd8\x32\x80\x9d\x10\xb3\x9a\xc0\x81\x7e\x56\x96\xda\xa0\x63\x6c\x17\x61\x54\xc2\xbf\x04\x41\x90\xa5\x35\xed\x84\x2e\x7a\x71\xff\x97\xd2\xbc\xbb\x64\x53\xd8\x66\xff\x1b\xd3\xba\xd7\xfd\x90\x07\x67\xf7\xfd\xe7\x9d\xaf\xfa\x3f\xef\x7c\xfd\xf7\xdf\xf9\xda\x20\x78\x48\xa5\xef\x9f\x73\x44\xce\xdf\x4a\xce\x6f\x26\x17\x4b\xce\x4f\x2b\x0c\xc9\xc3\xaf\xd9\x6c\x38\x66\x1a\x37\x02\x24\x68\xbb\x05\xfe\x64\x04\xed\xfe\x32\x26\x68\x23\x8f\x1a\xd6\x6d\x16\x35\xe6\x9e\xa0\x94\xd9\x05\xcc\xed\x7c\xbd\xb8\xa7\xef\xf3\x2a\xa6\xb9\x63\x33\x52\x2e\xc2\x64\xf9\xf5\xc6\x7b\xa5\x89\xb9\x07\xc8\x9e\x34\x97\xb6\x07\x6a\x09\x25\x7f\xd6\xda\x57\xee\x92\x07\xdb\xd2\xa9\x08\x0a\x2d\x91\xae\x54\x55\x4b\xff\x0c\xb3\xd3\xac\x13\xde\xb4\xb1\xb9\x38\x3f\x97\xa0\x02\x90\x3f\x17\x17\xe7\x21\xc7\xe3\x00\x30\x17\x97\x9d\xac\x21\x4a\xe1\xe2\x13\xbf\x76\x8a\x8b\x3b\x0b\x36\xa9\xd1\x42\x2e\xd8\xb6\xb2\x50\x83\xeb\x73\xe1\x60\x61\x2f\x99\xd2\x76\xe5\xe2\xd1\x42\xae\xc2\xd0\x9f\x63\x2e\x9e\x2c\xe0\xbf\x47\xb2\xdb\xc6\x94\x8b\x67\x8b\x50\x9f\x5c\xaa\x4e\x5d\xa8\xba\x53\xd1\xfc\x4d\xa9\xb7\x38\xae\x6c\x16\x72\x75\x66\xcb\x90\x74\x8a\xee\x02\x10\xbe\xb9\xd7\x29\xba\x57\x03\x91\x99\x6b\x79\x85\xdf\x02\x29\xe0\x25\x64\xce\x5d\x2e\x6b\x21\xcb\xe0\x08\x27\xfb\x0b\xd7\x34\x16\x3e\xe1\xf0\xa3\xe7\x34\xc0\xbd\x1b\x8f\x8d\x97\xe2\xd3\x76\xef\xe6\xe8\x85\x38\xb9\xfa\x92\x5e\xf0\xe5\x18\xa8\xd7\x7d\x44\x0a\x81\x57\x64\xf9\x5b\x6e\xe1\xd1\x68\xc5\xcb\x50\x9a\x98\xd2\xb8\x77\x21\x2e\x3e\x04\x62\x17\x96\x9e\xa5\xd9\x02\xe6\x77\xb7\x8a\x4b\xbe\x91\x5b\x92\xf9\x2c\xec\x35\xa8\x45\xd2\xa9\x69\x7c\x97\xd0\xb7\x7f\xdf\x75\x12\xf6\x6f\x74\x9f\x0a\xe4\x12\xf6\x66\x31\x85\x59\xaa\x28\xf0\x19\x6f\x06\x27\xeb\xf6\x53\x77\xc2\xfb\xaa\x38\xe7\xa1\x76\x57\x7e\x7e\x2d\x0b\x25\xb5\x84\xa7\x25\x31\x48\xdd\x6e\xe9\xfc\xa5\x10\xae\x78\xe5\x5b\x15\x36\x2e\x66\x07\x72\xf5\x6d\xfb\x6e\x9d\x66\x2d\xd6\x9b\xcc\x47\xfd\xb0\x0d\x79\x72\x26\x4d\x8e\xe8\x58\xc6\x2e\x93\xb1\x7f\x1a\xa1\xc4\x69\x51\x16\xfa\x2b\x66\x3e\x2b\x58\x44\x2b\xfa\xf9\xbd\x56\x10\x04\xdd\x0b\x6d\x12\xf9\x5f\xcd\x1a\xbe\xf5\x1c\x50\x14\x6d\x37\x41\x10\x6c\x08\x6b\x77\xe3\x55\xcc\x96\xac\x3d\xf2\x4e\xa5\x36\x85\xac\x36\x8e\x16\x12\x20\x34\x3e\x30\x8a\xe8\x43\x55\xa6\x05\xe3\x8a\xfc\x0f\x8a\x81\x71\x4e\x9c\x18\x4b\x3b\x04\xfa\x6f\xbc\x77\xe4\x64\x47\xe5\x46\x05\xc8\x52\xf0\xca\x5d\x64\xa9\x65\x95\xdd\xc6\x41\x10\x04\xab\xb9\xfc\x54\x5c\x24\xe5\x4d\x9e\x6f\xd5\xcf\x97\x51\x12\x29\xfc\x00\x9c\x23\x95\x4a\x8c\x2b\x6e\x5a\x2e\xea\x66\xc9\x64\xcc\x6a\x78\x16\x69\xaf\xd6\xcb\xa8\x40\xcb\x29\xca\x04\xdc\x38\x51\x56\x62\xe3\xcb\xbc\x78\xb6\x19\xf2\x80\xde\x59\x9a\x45\xab\xd4\xc2\xf3\x81\x38\x62\x4e\x2d\x12\xa5\xfe\xf0\x59\x25\x21\x55\xd0\x78\x07\xb4\xbc\x90\x85\x08\x8c\xc4\x07\x99\xd9\xe4\x9b\xb0\x6c\x16\x63\x69\x24\x08\xdb\xae\xbc\xa1\x1e\x90\x91\x5e\x33\x0a\x63\xf7\xf9\x9c\x92\xb8\x7e\x24\xd1\x96\x8c\xf9\x1f\xb9\x61\x78\xea\xbf\x7d\xd9\x39\x84\xfb\xc4\x97\x50\xc5\xd0\xdd\xc6\x9b\xf4\x3e\x3f\xf9\xaa\x25\xc5\x9d\x70\x95\x25\xbb\xa2\xfd\xe1\x9b\xf5\x46\x22\x49\x59\xef\x63\xe6\x38\xb5\xe4\x86\xf5\xf0\x15\xd1\x85\x2f\xc4\x4a\x6f\xd1\x85\x60\x0f\xdc\x57\x04\x4f\xee\xbe\x3b\xbb\x4d\x30\x45\xd9\x26\x7a\xfc\x4e\xd9\x36\xdb\x3a\xbd\xa4\x3d\xfe\x96\x59\xc6\x03\xa3\x84\x41\xf6\x93\x56\x93\xae\xe2\x2c\x63\x5a\x06\xef\xa7\xb6\x3c\xa5\xb8\x5f\x3a\x02\xe1\x95\x26\x67\x55\x5c\xb7\x6a\x1b\x09\xb1\x88\xaa\x37\xc3\x7b\x47\xc6\x83\x4b\xc7\x65\xaa\xe2\x18\x6b\x8a\x8d\x5c\x6e\x69\x96\x13\xb7\x6f\x74\x2e\x71\xcc\x1e\xdb\x10\x47\xc7\x23\xd7\xc9\xb2\xc3\xd0\x8b\x74\xb2\x38\xee\xfd\x52\xbc\x33\x23\xfc\x64\x19\xba\xf7\x0d\x72\xcb\xa8\x4e\x59\x77\x2a\xe1\x3a\xa6\x70\x8e\xdf\x1c\x59\xd3\x30\x87\xb7\x7a\x6b\xe7\x97\x82\xeb\x42\x6c\x81\x64\x1f\x26\x74\x48\xe1\xc7\xb7\x1e\xf2\x7c\x72\x8f\x0d\x80\x35\xda\xe8\xa8\xd7\x4b\x75\xfb\xa1\xf3\x03\xb1\x63\x88\x11\x72\x47\xb0\x64\x74\x39\x16\x74\x2e\xb4\xb2\xc6\x91\x95\xb4\xab\xb9\x62\xf4\x9d\xe2\xf2\x8b\x3c\x45\x12\x9b\x29\x34\xf5\x0c\x66\x0a\xeb\xc3\x39\x6f\x22\x1a\x84\xbe\x85\x29\x46\x24\xdd\xda\x80\x5f\x2e\x0e\x76\xcb\xf2\xbd\xe1\xbb\x9b\x5d\xec\x33\x8d\x3e\x1d\x96\x0e\x8c\x8b\x90\xb6\x8c\x2d\x79\xdd\x9d\x29\x12\xe9\xc1\xa5\x09\xb2\x64\x57\x24\xa7\xc5\x5b\x6a\x75\x28\x20\xe7\xf5\x38\x6d\x28\x15\x8b\x2c\x90\xcb\x68\x00\x7d\x2c\x27\x10\xb3\x85\xcc\x4a\xd5\xf4\xfa\x3a\x61\xdb\x5b\xd1\x49\xb4\x35\xdf\x1e\x5b\x73\x80\xd7\x6d\x3c\x6c\xc4\x1c\xa4\x77\x8f\x74\x90\x96\xab\x2b\xf1\xd8\xca\xde\xca\x9a\x91\xd7\x2a\x12\x92\x8d\x4b\x6a\xb8\x3f\xa6\x94\xcf\x04\x7a\x70\x5b\x8c\xba\x2a\x1c\xd8\x4e\xeb\x43\x9c\x13\xc1\x85\xb1\x56\x87\xf6\x95\x5f\x1e\x5b\x31\x41\xf8\xe0\x00\x61\x70\x96\xf5\xa4\xcf\xe4\x49\x69\x25\x6c\x05\x65\x5c\xfc\x7a\x1c\x93\x0b\x17\x11\x33\xe4\xe3\xb3\x6c\xe6\x9e\xb7\x99\x71\xfb\xb5\x94\xc4\x97\x34\xe9\x48\x3e\x24\x66\x92\x11\x1a\x76\x54\x71\x2b\xf7\x3c\xfc\xeb\x60\x81\xa3\xbf\xce\x57\x1b\xd5\xdd\x3a\x5b\xeb\x60\x9a\xce\x21\xb5\xef\x3f\x4d\x1e\xc9\xec\xf9\x30\xc7\xa5\x83\xc4\xf2\x30\x01\xfc\x4f\xaf\x30\xb3\x6b\x8a\xca\x5c\x7e\x43\x9c\xeb\x84\x49\x31\xf1\x49\x07\xd2\xcd\x2f\x1c\x48\xed\xc6\x8e\xac\x73\x9a\xe3\x17\x33\x1c\xc7\x34\x98\xe8\x0c\x8f\x75\xb1\x60\xcb\x75\x56\xb1\x91\xad\xac\x23\x82\x17\x5e\xee\xf9\xe9\x5c\x09\x6d\x8e\x07\x5a\xcb\x5d\x6a\xe8\x75\x46\x53\xd8\xae\xbd\x48\x27\x45\x29\xcc\xdb\xfc\x46\x75\x09\x6f\x3c\xd8\xcc\x57\x44\x96\xd7\x50\x44\xb5\x00\x21\x5f\x7a\x7a\xcd\x77\xbb\xb6\x6b\x6f\x57\x98\x39\x7a\xc6\xc5\x28\xa7\xa4\xbf\xd9\xc4\x7e\xae\xc7\x70\x4c\x77\x2e\x85\xca\x02\x98\x58\x51\x45\xe9\xde\xa8\x0d\x24\x0f\x87\xa3\xb7\xa6\xf7\x66\x36\x6a\xe0\xe4\x5d\x46\xce\xf6\x94\x0a\xb3\xe1\x58\x12\x9b\x7a\xb8\xaa\xcc\xb7\xae\xba\x5d\xd8\x6c\xcd\xb9\x3b\x72\x40\xae\xa4\x2d\xa9\xc9\x05\x84\x9a\xba\xf2\x85\xd1\xb0\xb9\xb3\x18\x46\x8e\xae\x30\xa7\xf1\x6b\xe5\x70\x10\x94\x42\x95\x34\x11\xa1\x18\x65\x1c\x83\xba\xbf\xd4\x5c\x79\x37\xf3\x93\xcf\x6c\xce\x7d\x73\x62\xe8\x53\xac\xa6\xea\xb3\xea\xd7\x4f\xf2\x97\x85\x15\xeb\xa3\xc4\x5b\xbb\xcc\xac\x50\xfe\x46\xf5\x0e\x85\xde\x0e\x89\x20\x92\xee\xc5\xfe\x97\x36\x88\xf8\xdf\x4b\x87\x68\xdd\xb3\xfc\x0c\x16\xd2\xd1\x94\x27\x17\x68\x4d\xbe\x83\x2b\xfe\x5d\xb0\x0e\xbe\x40\xdb\x9d\xb8\xb6\xe0\xb4\xc3\x64\xe3\xae\x43\x88\xae\xa0\x94\xb4\xe1\xf2\x07\xbb\xf5\xc8\xde\x24\xd5\x74\x86\xbd\xe9\x50\x76\x48\xeb\x8a\xca\xa3\xe2\xab\xe7\xa4\x27\x85\x8b\xa5\x07\x47\x15\x4b\x40\x33\x7c\x51\x23\xef\x9b\x04\xdc\xdb\xd8\x36\xf5\x6d\xc2\xdf\x24\x97\xc0\x21\x81\x28\x8f\x36\x57\x56\xc9\x15\x4e\x5e\x25\xb1\xe7\xfa\x28\xa0\x93\x57\x2f\xd0\x91\x28\xb4\xd4\x00\x81\x46\xee\xf1\x8a\x59\x4e\x54\xcb\xce\x46\x05\x4a\x57\x95\xfd\xe2\x23\x08\x82\x0a\xc1\xc0\x1d\xdb\x64\x15\xf0\x0b\x70\x97\xf2\xcc\x9a\x91\x23\xdf\xad\x4f\x57\x6f\x36\xe1\xb7\xf4\xdd\xe3\x4a\x8b\x33\x08\x8a\xd7\xa8\xcf\xbe\x9c\x6b\xb7\xa1\xd5\x3b\xff\xd8\x98\xd9\xc7\x84\x77\xfe\x39\x02\xee\xe9\xe0\x3b\xff\xab\xbe\x4e\x55\x1f\xf9\x58\xbc\x93\x40\xd5\xbb\xe8\xa7\xfc\x9d\x64\x3b\xbb\x8d\x7e\xda\xf5\x25\x8c\x60\xac\x41\x62\x91\xc8\xff\xa7\x3d\x5a\xff\xf8\x85\xff\xf1\x0b\xff\x57\xfd\xc2\xbb\x11\x4c\x73\xf0\x26\xc0\x4a\x22\xe9\x58\x0e\x7a\x86\xcd\xd0\x63\x9e\x61\x31\x73\x9a\x02\x4e\x66\xbd\xb3\x57\xa3\x11\x9c\xcc\x1a\xec\xe6\xf2\x27\x8e\x5f\x0a\x4d\xf3\xbc\xbc\x83\x35\x44\xfe\x70\x93\x64\xa9\x9d\x3f\x68\x26\xe3\x7c\xb1\xfa\xed\x2c\x1b\xd5\x39\x7c\xe7\xa5\x52\x46\x49\x7e\x68\x14\xfe\xdd\xd1\x5a\xe7\xd9\x6d\x2e\x71\x47\xad\xf4\x00\x19\xcb\x1f\x47\x6c\xcd\x65\x7e\x39\xf3\x8b\xe7\x5c\xbc\x58\xc3\xed\xd3\x67\xb6\xe6\x69\x4b\x4d\xaf\xca\xb4\xe7\xa5\x15\x80\xed\x54\xd2\x0a\xf0\xec\xc7\xc3\x50\x27\x81\x5e\xb0\x58\x5e\xae\x93\x3c\x60\x7e\xa6\xed\x1d\x5b\x93\x10\x47\xbb\x5a\xc3\x0c\x9a\x0d\xd7\xc7\xda\xba\x8c\xb6\xad\x20\xb8\x94\x8c\xb6\xc9\x53\xdd\xac\x75\xb2\xdf\x6d\x22\x58\xbb\x32\xd9\xaa\xbd\xfc\xd7\x9a\x5e\xdb\xf6\x78\x40\x2b\xb9\x6d\xa2\xc3\x13\xbe\xd5\xcb\x82\x98\x4c\xd7\x36\x5a\x7e\x1d\x55\xdf\x99\x0f\xc7\x41\xe5\x1b\x38\x54\x91\xea\x34\x4e\xea\xda\x92\xce\xee\x56\x67\x55\xde\xab\x99\x1f\x1b\xb9\x6d\x9e\xbe\xe5\xe4\xb1\x99\x8d\xef\xa5\x5d\xdb\x73\xce\x06\x13\x4a\x48\x4c\x93\xe2\xec\x1c\xd7\xb1\x07\x67\x85\x82\xba\x92\x27\xf6\x3a\x42\xc6\xcb\x01\x3f\xb8\xe9\x2c\x04\x14\xab\x35\x20\x99\x8e\x15\xbb\x93\xb1\x2f\x5e\x78\x2c\xcb\x17\xf9\x9b\x1f\x1d\x7b\xd1\xa4\x51\xbe\xd2\xa4\xb1\x7d\xb1\x64\x05\x6f\xdd\xda\x41\x9b\xd9\xdb\xcd\x6d\x35\x00\x0a\x1d\xee\x11\x8b\xdf\xa8\xbc\x32\xeb\x0d\xeb\x1f\xa1\x8f\xba\x69\x03\x3e\x87\x47\xd8\x10\x2c\xc2\x0a\x3e\x26\x15\x6d\x56\xfd\x28\xeb\x36\xce\x85\x91\xfa\xc5\x35\x9f\x1c\x92\xc1\x4c\x42\xa1\xee\xb2\xed\xb1\xb2\xd1\xcc\xf7\x2d\x08\x82\x93\x0d\xf5\xf6\x91\xda\x1c\xd2\xbe\x2c\xdd\xdf\x10\x5b\xde\xd7\x1d\x17\xc8\xe0\x94\x34\x69\xc7\xd3\xcb\xf3\x23\x2f\xfc\xa9\x73\x01\x01\x01\x1b\x21\x52\x60\x21\x77\xbe\x64\x89\x5c\xc0\xea\x3d\xdc\xb2\xd1\xe0\x37\x1f\x10\x6d\xf0\xe3\x04\x1c\x27\x0b\x69\xb1\x66\x1d\x2c\xcd\x59\xbf\x86\xd7\xce\x35\xb1\xbd\xd3\x6b\x9d\x18\xa1\x4c\xda\xdd\x6f\xdd\x53\x0d\x6e\x9c\xdf\x1e\xd4\xe9\xb5\xd3\x1b\x97\x5f\x41\x55\xef\x11\x6f\x3d\xd0\xbc\x2e\x6b\x98\x80\x7b\xdb\x90\xe5\x1d\x9d\x29\x37\x61\xc2\xae\xae\xe0\x72\xd5\xc6\xbb\xb0\xfd\x17\x7a\xe6\xe7\x09\x69\xfc\xfd\xee\x61\x4f\x96\x80\xa1\xca\x74\x51\x03\x6a\x62\xc9\x47\x72\xee\xd3\x29\x35\x58\x2d\x7d\xa9\xee\x55\x4f\x64\xca\x1a\x79\x4b\x0f\x27\x8f\xcb\x07\xb8\xbe\xb9\x39\x44\x9b\x67\x5a\x0d\xb1\xfb\x9d\xe9\xd4\x12\xbb\xa2\xd3\xfa\x5f\xc0\xab\x25\x2b\x4e\x29\xc9\x7d\x26\x9e\x08\x5b\xb8\xd5\x42\x5b\x02\xef\x76\x0f\xaf\xe5\x2f\x4e\x25\xac\x67\x47\x8e\x7b\x26\xe3\xc9\x56\x94\xeb\x0a\x36\xff\xf2\x59\x5a\xba\xcc\x58\xe4\x09\xbf\xd2\x38\x74\xcc\xef\x53\xec\x2f\x66\x64\x45\x9d\xf4\x90\x0d\xef\x2c\x5c\x65\xfb\x06\x7a\x60\x07\x80\x8e\x01\x94\x67\x5e\xd4\x51\xd6\xc2\x8d\xd7\x2c\xab\x87\x48\x0b\xc0\x74\x30\xdb\xaa\x94\x6f\x73\xc1\xb0\x85\x2b\xc9\xf1\xb6\xa1\x8c\x96\xd6\x5e\x25\xfe\xde\x83\x29\xa4\x6f\x65\x5f\x50\xe1\xbd\xe6\x36\xdf\xa2\x72\x26\x4f\x86\xc3\x88\x17\x8a\x72\x72\x14\x0d\x68\x23\x6f\x0e\xac\xc7\xfe\x51\xf1\x43\xc7\x70\x7b\x62\x8a\x73\x44\xe9\x28\x6d\x70\xed\x7c\x78\xfc\x78\x96\xf3\xd8\xf9\x77\xa2\x13\x77\x8e\x99\x58\xaa\xea\x7d\x2f\xaa\x97\x2a\xf7\x3e\x0b\xec\xe1\x7e\x56\x6e\xad\x2d\x28\xdf\xbb\x83\x81\x33\x1c\x39\x27\x3d\xb6\x80\x6b\xb5\xdb\xbb\xbf\x08\xb0\xee\x0b\xa7\xd1\x3b\x50\x95\xf3\xc5\x50\x12\x11\x9b\xff\x16\x37\xc9\x72\x3e\x42\x3d\x9c\x5c\x8d\x8d\x85\x64\xfa\xab\x47\x74\xf4\x0c\x1f\xb3\x3f\xdd\x88\xd4\x31\x1b\x07\xba\x7c\xd2\x31\x9b\x4f\x9d\xe9\xdf\x09\x87\x62\x34\x1b\xbd\xcb\xe3\x4c\xef\xb1\x66\xd9\xdf\xf2\x8e\x96\xce\x2c\x6c\x6d\x1a\x25\x39\x07\xb4\x7e\x7a\xc9\x23\xbb\x05\x2e\xc8\x7c\xda\xce\x31\x19\x98\x52\x8a\x66\xb2\x97\x3c\x18\xd1\x6f\xe8\x34\xbd\x09\x9d\xe8\xcb\xf0\x1e\xc8\x6e\x42\x65\x3a\xe5\xc2\xfc\x46\xc5\x45\x15\xb8\xb0\xb8\x09\xdd\x90\xaa\x6e\x81\xf7\xef\xee\x77\xfa\xdd\x9d\x6b\xaf\xdd\x6d\x41\x7b\x1d\xb9\x49\xec\x09\x9c\xaf\xbb\xf5\x47\x90\x62\x7f\x6e\x27\xe1\x05\xe4\x68\x1d\x0e\xca\x90\x19\x55\x56\xd8\x1c\xaa\xf8\xd2\x7b\xdd\xbc\x04\xf9\x73\xc3\xb7\x37\x75\xbb\xe8\x35\x48\x3b\x77\x5f\xaa\xd0\x92\xbd\xf5\x77\xb1\xd8\x2e\xd9\x98\x9b\x6b\xcf\x9d\x64\x55\xbd\xe9\x8e\x8d\x64\x61\x7c\x11\x0a\xbc\x72\x1b\x7e\x95\x5d\x9e\xde\x8d\xc1\x2c\xdc\xe2\x2c\xc5\xdf\xcb\x7c\xf1\x58\x02\x0c\x63\xf5\x97\x0d\x75\x35\x96\x7a\xe2\x3b\x22\xa3\xad\x55\xf9\x76\x61\xa2\x4c\xb4\x36\x32\x98\x46\x85\x55\xda\x76\xcb\x03\xed\x48\x96\x6e\x0f\x8f\x87\x88\x8c\x94\x5b\xb9\x8a\xc9\xe4\xba\x3e\x02\xd0\x4d\x60\x18\x21\xcd\xc2\x26\x99\x7a\x34\x79\xc8\x37\x4d\xd6\xac\xe4\x43\x1e\x1c\xc3\x37\x7d\xff\xfc\x02\x4e\x97\xdf\xaa\xfd\x62\x1d\x64\xca\x87\x01\xdd\xcb\xc0\x18\x19\xc9\x3a\xca\xe1\xf6\x48\xfb\xbe\x8e\xb5\x26\x1d\x64\xe3\x93\xde\x96\xcd\xbb\x7c\xb9\x36\x09\x28\xc7\xaf\x1e\x68\x48\xab\x32\x79\xff\x16\x0a\x17\x17\xdf\xc2\x50\xba\x71\x14\x01\xb3\xf0\xc0\xfc\x48\xb7\x8c\x60\x67\xef\xcf\x4f\x46\x9f\xd9\xc4\x99\x86\x75\xcc\x14\xa2\x08\x55\xdb\xff\x3e\xe0\x2c\x0d\x0f\xdb\x9d\x7f\xac\x62\x8e\x58\xda\xea\xea\xf4\x16\xff\x08\xe1\x2a\x93\x70\xbc\xf3\x4c\xc0\x70\x97\x34\xe8\xfa\x3c\x9d\x73\x77\x36\xf8\x7e\x17\xaa\xf2\xd5\x4e\x31\x5b\x80\x3c\x07\xc0\xe9\x2e\xf4\x2d\x4a\x16\x6e\x2a\x8c\x00\x66\x8c\x6e\xfd\xd1\x76\x45\x2f\xa6\xc4\x0f\xd1\x4e\x09\xcd\x87\x5a\xb4\xbd\xf4\x72\x1b\x3e\x10\xce\xbd\x29\x46\xbb\xcf\x3c\x68\x76\xfe\x1a\xf9\x1a\x9f\x35\xc5\x71\x3f\xb0\x2a\x41\x7e\xbe\x57\xef\xdb\x9e\x7b\xfb\xe7\x4a\xd2\x3f\xa6\xe7\xfa\xff\x52\xd3\xf3\x88\xdf\x62\x58\x28\xd3\x73\x77\xfc\x85\xe9\x39\x76\x29\x89\x0d\x44\x75\x75\x29\xc9\xd4\x51\x2a\x55\x96\xcd\x36\xdf\xd1\xc3\xcc\x4c\xc5\x25\x49\x8d\x77\x3f\x6c\xdc\xd7\x8d\x57\x3f\x6c\x8c\x30\x46\x5c\x7a\x1e\xbf\x59\x24\x71\x00\x20\xf9\xca\xd8\x25\x3c\xbb\x80\x71\xe1\x3e\x08\x9a\x03\xa8\x6d\xc0\xfd\x7e\x1b\xf1\x36\x6e\x9a\x72\xa8\x66\x33\xb6\xe3\xc1\x74\xc3\x19\xd6\xb1\x6f\xdf\xbc\x32\xc3\xcc\xb6\xbe\x75\xe7\x4a\x0c\xd5\x72\x58\x3c\x72\xe7\xea\xfb\xf6\x78\x3b\xaf\xf1\x33\x0f\xb2\x75\xe4\xc6\x95\x3d\x9e\xe2\x64\xcc\x4c\x71\xc3\x3a\xd5\x5e\x44\xe2\x36\x94\x8c\x48\x75\xa3\xdf\x33\x0a\xf3\xdb\x50\x67\x95\x29\x08\xbf\xdf\xda\x98\x25\xea\x8a\x8b\xcb\x5b\xc8\xec\xca\xf6\xa8\x99\x8f\xa2\x96\x9a\x5e\x8b\xc2\xc0\x33\xf6\x8f\xaa\x41\x30\xaa\xb2\xb1\xff\x64\x2b\xa1\x60\xa9\x6d\xd4\xab\x3a\xb8\xa6\x59\x90\xe6\xfd\xd2\xdf\x25\x0f\xc3\x3d\x6d\x84\x63\x2f\xef\x91\xb1\x5f\xbb\xe9\x4c\x55\x90\x26\x1b\xb5\x95\x10\x3b\x82\xe0\x61\xf1\x7d\x23\x99\xe1\x88\x3b\xed\x6e\x3d\xa8\x93\x5d\x78\x7a\x12\x06\xc1\x49\x28\x6a\xfd\xcc\x08\x70\xca\xf5\x3a\xe7\x12\x23\xdc\xf0\xa0\xd4\x72\x17\xb7\x6f\xf3\xed\xae\x51\x3b\x66\xdf\x36\x23\x36\xbc\x69\x0b\x15\xe9\x4e\x59\x91\xf3\x46\xfe\x97\x91\xcc\xc0\x75\xfd\x63\xeb\xbd\xf9\x4e\xec\x95\x6c\x23\xed\xef\x99\xf1\x39\xc0\x3a\x93\x0c\xa7\x69\x8f\x59\x65\x33\xc6\x22\x71\x54\x87\x8b\xef\xbb\x6a\xfe\x1d\x7e\x11\x59\xf3\xf5\x67\x92\xb5\xe7\x7b\x3e\x12\x22\x54\x39\x48\xdc\x1c\xf1\x96\x70\xcb\x42\xc3\xa6\x50\xbb\x5c\xb7\xed\x36\xe2\x27\xd1\xb7\x49\xb6\xc5\x11\xf8\x59\xa1\x17\x4a\x94\x15\x69\xc8\x8c\xdf\x9d\x5c\x28\xd8\x32\x0e\x77\x3b\x6c\x94\x7c\xa8\x28\xc2\x90\x5c\x40\x11\x5c\x1e\x99\xc5\x91\x9d\x75\x29\xde\x2e\xe7\xfc\x4a\xe4\xce\x86\x06\x70\x4b\x53\x82\x45\x97\x12\xe1\x70\xbb\x1a\x2e\x81\xee\x3c\xef\x17\x2d\xbe\x75\x7e\xa5\xad\x0e\x9b\xd0\xfa\xc5\x06\xb8\x27\x8e\x32\xe1\xfe\x9a\x4b\x38\x60\x6f\xb0\xd9\x6e\x0f\x93\xed\x57\x3e\xb7\x58\x73\x5b\x58\xf7\x9d\x35\x93\x1a\x3b\x6b\x28\x08\x6c\xcf\x42\xdb\x8b\x43\x2a\xac\x7c\x7a\x93\x3c\xbd\xca\x7e\xc6\x81\x4b\x3d\x10\x77\x69\x77\xb8\xc1\x18\x26\x25\x91\xc6\x95\x4d\x62\x55\xae\xd5\x81\x6b\x61\x0e\x09\x33\x63\xd3\xe0\x9a\x5f\x29\x62\x21\xb0\x42\xf1\x68\x8d\x39\x6c\xb7\x9e\xec\x72\x04\xd6\xe7\x0f\x9e\x2c\x5f\xb3\x94\x2f\xdf\xba\xb2\x0a\xbf\x6f\xc9\xfd\x64\x24\xfa\x07\x83\xe1\xaf\x3d\xee\x6e\xec\x7f\xe5\x08\x93\xf4\x5a\x9b\x64\x28\x51\x39\x34\xff\x72\x38\x17\xf3\x15\x0f\x63\x08\xe5\x9f\x2f\x20\x60\x50\xcb\x88\xe4\xc9\x4b\xc6\x43\xba\xee\xbd\xf2\x26\x28\x98\xdb\x7e\xea\x4b\x51\xc7\x02\x1c\xf9\x0d\x4c\xff\xda\x08\x3f\x5b\x9e\x10\x30\xfb\xaa\xce\x1f\xea\x34\x18\x1b\x9c\xcd\xd3\x03\x48\x6b\x6f\xd1\xf2\x91\x45\xe3\xe2\x19\xe3\x29\xe3\x1d\x29\x37\x94\x70\x7d\x4f\x08\xcb\x86\xfb\x5d\x54\x07\x38\x73\xf9\x92\xff\x68\x1c\x46\xe8\x35\xd1\xc5\x31\xb3\xa8\x50\x16\xb4\x08\x0e\x35\xa1\x66\x79\x84\xac\xf4\xad\xce\xff\x63\x3d\x0d\xb0\x10\xac\x51\x8e\xff\x73\x53\x32\x6b\x61\x3e\x5d\xeb\x7b\xd4\xff\x89\x8e\xcc\xea\x92\x88\xdf\x44\x15\xae\xef\x4a\x0a\xb7\x87\x88\x26\x46\x1b\xa6\x89\xd4\x36\x51\x04\x2a\xaf\x28\xfb\x3a\x77\x5b\x98\x0e\xf7\xdb\x44\x3e\xe3\x7c\xa7\xfa\xea\xd4\x8e\xed\x2d\xfb\xa8\x06\x28\xa4\x2e\xd7\x33\x23\xdd\xd7\x1c\x06\x78\x1b\x2a\xc9\xc0\x4f\xcc\xed\x12\xb1\xb6\x48\x1c\x87\x2f\x57\x5e\xa4\xed\xc1\xe1\xe4\x77\xe2\xa8\x2f\x28\x61\xca\x77\x23\x9d\x65\x85\x3c\x1f\x8b\xb0\xb2\xf3\x95\xe6\x5d\x28\xfa\x72\x5c\x57\x15\xfd\xf0\xc9\xdd\xd8\xa1\x7f\x52\xc9\x9c\x9e\x91\xaf\x26\xa9\xae\x02\xba\x7d\x5c\x92\x77\x9a\x5c\x56\x63\xa8\xa3\xc7\xe3\x04\x1c\x80\xdf\xa4\x55\xf6\x7d\x33\x95\x8c\x55\xa5\x33\xc2\x89\x34\xed\xf1\x4d\x07\xe5\x8f\x0a\xea\xa6\xbb\x65\x0c\x40\x05\x65\xe3\xec\x54\x9e\x43\xbf\x17\xfb\x66\x6f\x2f\x9a\xc0\x38\xad\x6c\x30\xea\x6c\xfe\x17\x40\x0c\xbe\x7b\x94\xa9\xfa\x31\xd1\x33\x0e\x89\xee\xa7\x13\xb1\xf1\x01\xdb\x28\xe3\x60\xc1\xb9\x9b\xd9\xe2\x2b\x95\x38\xd4\x44\xec\xf4\x9c\xf3\x23\xcf\x63\x46\x8c\xee\x8d\x50\x2a\x45\x1b\x2c\x93\x99\x00\x45\x58\x41\x35\x88\x5b\xe6\xbe\xc1\x5b\xd0\x74\x9c\xd0\x3f\xcd\x6d\xcd\xe9\xaa\xe7\x7f\x79\x80\xa6\x8c\x07\x68\xcd\x80\x2c\x9a\x9c\x8d\xf2\x6f\x0f\xd8\x39\x25\x5e\x82\x20\xc8\xd3\x72\xbd\x6d\x3d\x77\xbe\x5a\x6e\x7e\xcd\xc3\xa7\x66\xf5\x41\x91\x00\xf6\x7f\x65\xe7\x91\x4c\x9e\x49\x06\x47\x98\x3b\x39\xe6\x7e\x15\xfa\x73\xf8\xa2\xa2\x51\xa2\xf9\xa2\x62\x79\x27\xd6\x0b\x61\x1b\x49\x31\x40\xc4\x78\x5f\x23\xe6\x8e\x2e\x4e\xfd\xe3\x17\x67\x4e\x51\xde\x48\x0e\xad\xed\x25\xb9\x23\xe5\xa9\xcf\xb7\x04\x9f\xe3\x91\xc8\x5e\x6e\x36\x39\x1c\x2d\x9c\xbf\xe3\xb1\x2d\x9a\xee\x13\x34\x2c\x0a\x53\x7e\xf3\x6d\x28\xff\x58\x57\xff\xb1\xae\xfe\xf7\xac\xab\xbd\xa1\xcd\xd3\x66\xad\xab\x95\xc1\x4f\xad\xab\x07\x02\x7b\x0d\x70\x65\x55\x32\x23\x6a\x76\xe9\x48\x88\x40\xb6\x94\xa4\x3b\xd8\xeb\xec\xdd\x0f\x41\x10\x2c\xf7\xdf\xb2\x37\xf2\xf5\x24\xa4\xc7\x99\xed\xf9\xd5\x47\x5f\x14\x97\x6d\x5a\x8d\xee\xf0\x4b\x0b\x63\x72\x56\xa7\xc5\x1e\xbe\x9b\x0c\x33\x71\x2f\xa7\xd3\x1e\xeb\xf6\x61\x67\x62\xf3\xcd\x4f\xf7\xe8\x68\xb5\x07\x8e\x71\x84\x69\xac\xb9\x78\xb3\x0f\xb5\x97\xdb\x9c\x52\xec\x21\xad\xe1\x4e\x44\x7d\xb6\x5d\x5a\x59\xae\x96\x9b\x64\xf3\x9e\xae\x6b\x8e\xc2\x6e\x2f\x3c\x3c\x06\xd7\x99\xf4\x53\x09\x3d\xac\x65\xf6\x28\xee\x55\xb5\xd7\x57\x21\xef\x05\x4b\x44\x31\x21\xbf\xa2\x43\x32\xa5\xfb\x7d\xb4\x4d\xe1\x41\x5b\x2c\x9d\xbc\xa2\x00\x96\xf2\x3d\x02\x58\xfa\x7d\x3f\x09\x44\xb4\xc7\x0a\x28\x8d\x73\x73\x73\x5a\xee\x49\x4f\x2e\x53\xf7\x5f\x63\xe9\x0b\xdd\x5c\xd7\x5b\x98\x74\x19\x87\x09\x73\xbd\xf4\x5f\x5c\xb6\xfe\xb8\x05\xf2\x0b\xf4\xc2\xa1\xe4\x62\xda\x43\xe4\x20\xa5\xa3\x7b\x46\x24\x18\x92\x0b\xd7\x3d\x18\xa3\xe6\xc2\x2b\xf1\xa6\x09\x81\xa5\x9f\xcb\x53\x4f\x3a\x39\x93\xec\x40\x9e\x36\x88\x3c\x2b\xdd\xfa\xce\x43\x03\x89\x85\x3e\xb4\xe1\xec\xf8\x64\x38\x7f\xa2\x1a\x0d\xe9\x75\xe2\x71\xdf\x7b\xa9\x1e\xbd\x14\x02\x74\x4b\x2b\x93\x8e\xe3\x20\x46\x0d\xf2\xc2\x1d\x3d\x28\x7c\x9d\x40\xb1\x69\x4d\xe1\xe0\x95\xf6\xef\x72\x55\xd3\x6e\x9c\xa8\x1b\x7a\xb9\x7d\x3a\x30\x25\xfc\x21\xb2\x21\xa7\x8b\xd0\xd1\x10\x8e\x98\xe7\x89\xeb\x45\xde\x81\xb4\xc7\x44\xa2\x7b\x9b\xbf\x96\x31\x49\x1e\xa7\xdb\x28\x25\x3e\xfc\xb1\x95\x64\xe0\xe8\xc4\xf0\x17\xa1\x93\x18\x9d\xa6\x59\xaf\x77\xd0\x09\x0b\xcc\x65\x6b\x7a\x6e\xdf\x68\x4b\x01\x43\x35\xfd\x17\xc2\x5a\x42\x8f\xd9\x4d\x3b\x61\x24\xe7\x7d\xdd\x26\xb7\xaf\xc7\x03\xb0\x92\xf1\xe1\x51\x77\xe7\x8b\xd9\x7d\xc5\xaa\x0e\xae\x67\x7c\xc8\xc3\xc8\x90\xf5\x33\x74\x59\x50\x69\x9e\x5d\x1d\xc7\x07\xb7\x39\x57\xa4\x41\xb7\xd7\xce\xbd\x25\x73\x54\xba\xf4\x09\x23\x0a\x88\x65\x2a\xdf\x22\x3c\xf9\x4d\x3b\xb3\x04\xcd\x5e\xa7\xfe\x71\xb4\x52\xd8\x79\x4d\x78\xa9\x0a\x9e\x6e\x74\x70\xcd\xe6\xea\x6d\xd3\xbf\x04\x00\xfa\x06\x14\xdf\x1d\xde\x44\x1b\xdc\x83\x93\x10\x4c\x47\x4e\x74\xa8\xb3\x40\xe9\x10\x53\xe5\x7b\xc7\x8a\x0f\xfc\x8c\xac\xdc\x6a\x2d\xfa\xfc\x68\xe0\xb4\x9f\xcc\x60\xdd\x2a\x34\x94\xbc\xf3\x4d\x94\x1b\x3f\x2b\x3a\x19\x03\xba\x9e\x35\xda\x8b\x90\xf3\x1b\x5f\xc9\x2a\xb4\xbc\x40\xeb\x96\x44\x79\x72\xb4\xf5\x37\x23\x69\x39\x88\xf6\x35\xa1\x23\xef\x29\xce\xaf\xe0\x70\x3a\xec\x8a\x6f\x76\xf8\x22\x92\x54\x4c\x27\x96\x27\x73\x92\x7b\x84\xa6\xae\xef\xdc\x9e\x7e\x4f\xae\xc8\x2e\xd2\x8c\xaa\xf9\x9a\x5c\x13\xe6\x2a\x0e\x8c\x87\x6e\x15\x15\x08\x5c\x93\xc3\xe5\xed\x3d\xc8\x63\x75\x97\xb8\x22\xda\x6f\xfa\xda\x1a\xdf\x95\x4d\x79\x5f\x63\x8d\xe7\x38\x80\x0d\x93\x1b\x57\x5a\x4e\x82\xa2\xaf\x73\xa5\xec\x39\x60\xb9\x1b\xc9\x2e\xf7\xdb\xdb\xe8\x15\xb6\x7a\x1c\xc2\x65\xb4\xde\x41\x54\x46\x2b\x56\xb5\x31\x11\x02\x8e\x8f\xbb\xf9\x5b\x15\x14\xd0\x42\x70\x71\x12\x84\x9a\x36\x03\x7a\x10\xd2\xb7\x8e\xff\xc3\x6c\x91\x0c\x81\xd7\x68\x2e\x01\x6a\xb7\xce\x12\x43\x5b\x6a\xf9\x9b\x40\x8c\x9a\xb1\x9c\x88\x46\x53\xe3\x47\xad\x1b\x7e\x18\x33\x59\x32\x39\x16\xc0\x9d\x14\x86\x4c\x06\xc9\xe1\xc5\x38\xb4\x9c\x3c\x25\x9c\xe7\xf1\x69\xf0\x72\xf0\x5c\x7e\xc2\xda\xd8\x90\xfd\x50\x72\x82\xa8\xff\x30\xba\x58\x1f\xcb\x4a\x49\xf1\x63\x97\x36\xc7\x02\x84\xec\xe2\x4e\x6e\x38\x61\xad\xf9\xd0\x7a\x92\xb6\xd2\x6a\x1f\x8a\x04\x26\xec\xe2\x40\xc8\x43\x99\x38\x2d\x9b\x73\x9c\x31\xeb\xcd\xdf\x1e\xa8\xc6\xb1\x0c\xd6\xbc\x3d\xcc\xb0\xed\xe9\x5e\x2c\xa5\xe6\xaf\x15\x56\x7a\x8a\xe3\x0f\x68\x7d\x83\x1a\x1c\xa3\xbe\x43\xb0\xbd\xec\x61\x03\x2a\x7e\xd8\x3d\x76\x69\xf4\x19\x21\x84\xa8\x38\xca\x84\xa7\x9d\x6a\x10\xe0\xe8\xdd\x1e\xf3\xa0\x4c\x31\xcc\xc1\xd3\xbd\x27\xef\xb8\x35\x52\x60\x3d\x2b\x34\x77\x22\x27\x40\x77\x30\xe5\x0b\xa9\xb8\xd9\xf9\xc7\x19\x47\xe4\x95\x54\xab\xe1\xb2\x33\xe9\x36\xbe\x86\x9d\xaa\x3b\x7f\xb7\x55\x64\x32\xfd\x5c\x81\x17\xf4\x9e\x3c\x5f\xa0\xb2\xbf\xa8\x47\x5a\x54\x82\x8c\x46\x12\x04\xda\xae\x02\xc1\x7c\x82\xf1\xf1\x36\x56\x17\x5c\xbc\xa6\xf6\x6e\xe6\xd9\x55\xa2\x7f\xb0\xf9\xda\x91\xce\xeb\x7f\x05\xd4\x14\xf3\x9f\x54\x4f\xdd\xdb\xe5\x0d\xff\x39\x85\xc8\xc5\x74\x22\xa2\xf0\x27\x74\x31\xc9\x84\xfa\x5d\x05\x44\x76\xf3\xe2\x33\x06\x89\x76\xcd\xca\xd7\xf4\x8e\x49\x32\x7e\xb9\x0b\x49\x05\x6d\x1f\x40\x3b\xbe\x65\x03\xae\x33\xc5\x97\x86\xa2\x77\xde\xb1\xd8\x41\x8c\x24\xce\x88\x31\xe5\x10\xb3\x4b\x17\xdf\x39\x3c\x7e\x25\xdf\x8d\xfc\xef\x8e\xc7\xd9\xc3\x0a\x8a\x55\x81\x10\xb3\xaf\x87\x47\xd9\xaf\x46\x12\xc3\xf4\xaa\x6e\x50\x63\xcd\x57\x91\xc2\xcb\xc1\x3e\x41\x45\xd6\x89\x38\xa8\xd7\x7b\x23\x89\x5f\xbf\x80\x79\xa2\x0f\xe4\xe7\xf1\xdf\x13\x9e\x61\xd6\x21\x15\x08\xcd\x15\xc5\x7b\x4e\x94\xb3\x6a\x55\x92\xb8\xa5\xa9\x0a\xa8\x18\x0a\x16\xa3\xe2\x8f\x96\x74\xbe\xaa\xea\x80\x6f\x46\x3b\xd4\xc6\xb3\xf6\x28\xec\xb3\xdd\x6c\x55\x8b\xcf\x8b\x2f\x79\xb1\xad\x0b\x3b\x21\xeb\x2e\x5c\xb5\x4a\x96\x35\x37\xfc\xbb\x0a\x3c\x0b\x50\x60\xf7\x4c\x11\xc2\x81\xde\x48\xeb\x3c\xd2\x1b\xab\xe3\xee\xb4\x62\xe6\xf8\x1e\x43\x03\xd5\xd3\x11\xba\xce\x54\xe4\x9a\x4d\x30\x84\x28\xc5\xd6\x93\xed\x67\x04\xe1\x4d\xf5\x34\xa8\x6a\x0a\x3d\xd1\x96\x5f\x83\x93\x4a\xc8\x2d\x40\xcc\xe6\x37\x6e\xac\x7d\x2a\x0b\xaa\x36\xd8\x36\xe8\xaa\x5b\xdd\x5a\xa1\xcb\xbf\x9c\xfa\x3c\x44\xee\x24\x3e\x41\x4c\x80\xb4\xf2\xd6\xda\x77\xf6\xea\xf1\x56\x9e\xcf\x87\x66\xcc\x6e\xd4\x32\x74\x83\xe8\x2b\xd5\x27\x0d\x90\x83\x12\xbf\xd5\x8d\xc6\x1d\x1b\x18\xe3\x63\x27\x51\xf5\x8b\xc7\xc3\xd2\xa7\x25\xaf\xc7\x41\x04\xfd\x6c\x4e\x75\x7d\xb9\xe7\x8e\x13\x1a\x95\x74\x7e\x03\x9a\xd9\x89\x27\x25\x1d\xab\xd0\xe6\xfc\xe2\x07\x5b\xec\x29\x4a\xef\x43\xc4\x9c\x4f\x5a\x23\xd4\x1d\xeb\x1e\x80\xc3\x48\x84\xce\x3a\xfe\xa8\x6f\x84\x4d\x55\xa3\x5c\x8a\xb7\x6f\x39\x64\x89\xd3\x70\x09\x74\x68\x9c\x27\x6a\x30\x92\x58\x27\x63\x2f\x10\x12\xb3\xcd\x1c\xe7\xf9\x58\xf2\x37\xcd\xaf\x70\x50\x43\x5c\xec\xad\xfe\x70\xe1\x50\x35\xf6\x38\xdc\x6e\xa8\x92\x2b\x20\x02\x6a\x92\xd8\xad\x23\xb2\x45\x34\x1b\xe2\x6f\x3d\xe1\x4e\x42\xd5\xb6\x53\xb1\x7f\x2b\x86\xe5\xed\xcd\xa4\x1c\x5f\x75\x78\x9b\x9a\x4c\x90\x7c\x4f\xb6\x28\xa2\xd6\x4e\xe9\xd6\xee\xfd\x14\x3d\xc0\xd8\x6b\x70\x02\x9e\x85\xe2\x83\xeb\x6a\x1c\x8f\xe8\xee\xee\xe0\x77\x20\xe4\x9b\xf8\x70\x1a\x07\x28\xe0\xf1\x9b\x68\x71\x1b\x8b\xd9\x79\x51\x38\x3f\x49\x34\xe5\x82\x18\x61\xb1\xf9\xe4\x32\x61\x2e\x43\xb4\xf2\x76\x7c\x8c\x23\x35\xc6\x07\x47\x84\x18\x68\x5f\xd7\x4f\x68\x75\xff\x83\x71\xd6\xe5\x0b\xdb\x28\x1c\x4f\xac\xd8\xdb\xb9\xfc\x49\xb1\x2d\x8f\x7f\x77\xe9\xdf\x41\xe3\xbb\x78\x37\x83\x3b\x8b\x93\x15\xc7\xad\xfd\xf1\x70\xe5\x0e\x26\xe3\xd7\x38\x31\xcd\xf8\x91\xa7\x67\x3b\x96\x29\x5d\x50\x59\xb4\x7d\x7a\x8a\x2a\x80\x75\xdf\x13\x79\xe7\x18\x04\x84\x22\x93\x16\x36\x1c\x7e\x6f\xe3\xf3\x37\xff\x30\x47\xda\x79\x8a\x98\x3c\xaf\x0a\x3c\x16\x51\x05\x5b\xfd\xb7\xea\xf0\x4c\x93\xb1\xe2\x8a\x8a\x72\x2e\x34\xd8\x1c\x1f\x16\xd6\x4a\xe1\xe7\xb8\x31\xe4\x76\xf6\x18\xaf\x23\x97\x1e\xbf\x57\xfd\xcb\x32\x30\x30\xd6\x93\x90\x5b\xf3\x10\x74\x4e\x3e\x04\x6d\x4e\x94\x5c\x9c\xe2\xf7\x80\x2f\xdd\x90\x2a\x7e\xae\x9b\xf7\xf4\xa4\x93\x66\xde\xf0\x9c\x03\x89\x5b\xb5\xf1\x8f\x67\xf9\x1f\xcf\xf2\x7f\xcd\xb3\xbc\x18\xc3\x20\x41\x26\x1a\x1c\xf2\xc6\x3f\xbe\xb6\x73\x19\x7f\x4b\xc8\x5d\xdb\x51\x6f\x09\xe1\xd0\x70\xeb\x0a\xee\x15\xfb\x83\xfd\x0c\x38\x9a\x2a\x56\x38\xc3\xef\x39\x17\xb5\x10\x77\x62\x7e\x2f\x55\xad\x15\xff\x86\xea\x56\x50\xf3\x2e\xf2\x6f\xa4\x39\x8c\xfe\x34\x7a\x05\xff\x64\x1f\x78\x44\x53\xc2\xcf\xc2\x9b\xc5\x16\xed\x48\xb2\x50\x61\xf6\xb9\xf6\x4f\x5f\x3e\x12\xe7\xb1\x63\x40\xf9\x67\xf5\x87\x96\x71\x9c\xc4\xf1\x5a\xdf\xd1\xc1\x15\xd7\xc8\x93\x48\x9c\x63\x2a\xd7\xf7\xdc\x1b\xbd\x3f\xd8\x79\x9e\xf3\x5c\x6e\xf2\xac\x84\x4c\x5b\xde\x4d\x94\xa1\xf7\x24\x52\xcf\x5a\x54\x53\xbc\xb4\x1c\xa0\x3e\x49\x73\xc6\x2a\xf6\x7f\xc8\xa3\x7a\xb6\x7e\x1f\x7b\x79\x1c\x71\xd9\xb3\xf4\x98\x7b\xa6\xf5\x11\x90\xb1\x44\xa1\x8d\x46\x2a\x63\xef\xaf\xf9\x30\xfd\x89\xe7\x81\x20\x41\x33\x6c\x86\x4d\xf3\xe5\x68\xe4\xf2\xda\x73\xaa\x8e\x2b\xf7\xc0\xcf\x12\xd1\xf2\x8b\xb4\xe7\xf2\x1a\xb3\x25\x63\xb2\x97\xd8\xf0\x35\x3f\x1e\x31\x18\x8a\x6d\x6e\x38\xf4\xc2\xee\x21\xfc\x40\xce\xeb\x33\x1a\x4b\x5d\x87\xcf\x4e\xae\xe0\x46\xbe\xf2\x56\xa4\xff\x12\x4b\x0c\xc6\x15\xcf\x94\xdb\x3d\x47\x8f\xc5\x34\xd8\x61\xc6\x15\x46\x67\xda\xaa\x8b\xb0\xa4\xae\x57\x03\xd7\x85\xd0\x01\x27\x35\x21\x17\x5c\x5a\xc2\xc3\xb6\xe9\x24\x87\x08\x3f\xb6\xeb\xe7\xf5\xe4\x77\x79\x77\xb6\xed\x3e\x1d\x7e\x35\x13\x57\x79\x3d\xd6\xf7\x9e\x66\x9c\x6c\xe8\x35\x52\x6b\x3a\x0e\x93\x47\x3c\xba\x33\xc4\x44\x5a\x5f\x63\x09\x36\x51\xb4\x71\xab\x19\x1e\x48\xd6\xc2\xc9\xa5\x8f\xde\xac\x48\xbf\x22\x9f\x81\x61\x73\x05\xae\x5a\x4c\x4b\x62\xb4\x52\x62\x63\xa6\xae\xfc\x55\xe2\xdb\x44\xe5\x34\xbf\xf2\x93\x41\x48\x5c\xb4\x98\x41\x32\x90\xa6\x7e\xfc\xe8\x84\x37\xca\x96\x29\x2e\xfb\x86\x37\x19\xa0\x56\x9d\x64\xc4\x79\x9d\x9b\x85\x22\xb5\xd5\xd6\x4d\x9d\x2b\xb4\xf6\xb0\x1f\xa6\x8e\xf4\x31\xdf\x79\xda\x0f\x16\x8e\x64\x93\x9b\x5c\x61\xf1\x8f\xa6\x9c\x33\x8b\x04\xb7\xed\x3e\x19\x3f\x3c\x8d\xfd\x07\xa7\x3a\xcb\x3d\x68\x04\xf5\x32\x76\xdf\x67\x7d\x14\x25\x42\x59\x0a\x94\x8a\x07\x65\x60\xa1\x0c\x63\x50\xec\x7d\xb2\x09\xb6\x60\xe9\x22\x76\x9f\xcc\xc7\x19\x87\x30\x94\x2f\x8e\x23\x8d\xb7\xd2\xa0\xaa\x53\xaf\x38\x92\x1d\x0f\xfd\xdc\x6b\x19\x4c\x60\xcd\xe9\x7e\xf8\x3d\x57\x77\x2c\xae\xf8\xf5\x67\x19\x89\xdd\x4c\x0d\x43\x97\xec\x27\x02\x0d\x56\x42\x3e\x4b\xaf\x32\x20\xaa\x65\xc6\xdf\x7f\x7b\x8e\x71\xe9\xd9\x3c\xa7\x7d\x7e\x39\x5e\xc0\x80\xee\xd6\xdc\xee\xb8\xdf\xed\x80\x63\xed\x80\xdb\x6d\xd3\xc3\x98\xb6\x07\x60\xef\xac\x43\x63\xcf\x35\xd2\x99\xd0\xbb\xa4\x4a\xd1\x44\xa4\x28\xf3\x73\xd0\xb9\x8c\x2f\xc1\x0e\xbd\x7f\x34\xba\xa3\x1e\x7a\xaf\xb4\x9a\x2b\x8c\x6f\xdc\x0f\xb5\xab\xd4\x49\x9d\x02\x9e\xe9\x62\x6f\x48\xe7\x08\x88\x79\x3f\xd4\x0e\xb7\xc8\xbd\xa5\xd8\x33\x4f\xec\x3b\x4b\x84\xc8\xef\xd1\x78\xde\xdb\xa3\xc3\x4e\xbe\x73\x10\x45\x6a\xbe\xc7\xb2\x2d\x73\xa4\xd3\xaa\x9e\x44\xf4\x06\xc7\xb1\x79\xcb\xf5\x84\x48\xa7\xbd\x36\x91\x92\x08\x9a\x44\x10\x4b\xa6\x44\x48\xf2\xdf\x87\x2b\x4e\x7b\xa1\x33\x61\xaf\x93\x2a\xe6\xf0\x6c\x4e\xed\x30\xea\x12\x91\x9b\x28\xce\x92\x00\x9f\x7b\x37\xa2\x0e\x23\xd0\xbf\x33\x25\x89\xcd\xce\x74\xb3\xf8\x13\xe5\xc9\xcb\x78\x6c\x82\x49\x44\x14\x7f\xbf\x3c\xf9\x2a\xc8\xb1\xf9\x1d\x86\x9b\x10\x58\x70\x70\x3e\xdf\xc0\x6e\x3c\xc4\x61\x79\x10\xe8\xf9\x61\xcc\xaa\xeb\x1e\x38\x1a\x4b\xfc\x09\x14\xb7\x25\x04\xdd\x2a\x96\xe8\xf0\xd8\x0c\xe8\x36\xf6\x6f\xdd\x30\x7e\x19\x27\x71\x16\xc4\x6c\xbd\x86\x49\xb9\x01\xbf\xd9\x74\xd1\x0f\xdd\x99\xae\xc4\x3b\xd7\x48\x01\xe8\x32\x73\x55\x02\xb9\x30\xcf\x24\xab\x59\x74\x6b\xaa\x79\x4c\x64\x3b\xa8\xa0\x93\xac\xb2\xfa\x4a\x68\x86\x55\x2f\x96\xe9\xf0\x74\x51\x0f\x82\x45\x7d\x1b\x1d\xc1\x9a\x5f\x56\xe3\x28\x7d\x49\x6d\x69\x45\xe0\xb0\xa7\x03\x14\xe4\x81\xb9\xe8\xcb\x88\xde\x57\x19\x71\xee\xed\xc7\x2b\x98\x08\xe0\x8b\x95\x14\x7a\x23\x0f\x8d\xcd\x60\xb3\x41\x3a\x76\x52\xda\xd4\xf6\x30\xb2\x9a\x33\xef\x67\xc2\x88\xf4\x9e\xfe\xe5\xc5\x70\x50\x21\xe0\xbf\x5c\x0c\x4a\xa2\xcc\xe7\xf9\x2c\xa4\xab\x39\xbd\xf1\xc8\x92\x99\x73\xaa\xc5\x0b\x7e\x58\x88\x4f\x6a\x41\x30\xa9\x4d\x7f\x39\xd3\x53\x62\xef\x30\xf0\xe0\x28\x75\x02\x9b\x53\xfa\x41\x2e\x52\xb0\x19\x49\x86\x85\x13\x4a\x3f\x94\x2c\xa0\x49\x90\xd3\xb5\x20\x48\xd7\x2a\x07\xd4\x83\x0d\x4b\x32\x51\x1f\x4c\x0b\x0c\xf4\x50\x0b\xb3\x00\x58\x92\xbd\x6a\x53\xac\x05\x41\x11\xbc\xaa\xcf\xea\x03\xd7\x72\xda\x1d\x13\xa5\x84\x8f\x18\x76\xf2\x1e\xf9\xb8\x97\x8f\x30\x91\x44\x5a\x32\xb5\xd0\x02\x9d\x84\xa7\xc5\x6a\x10\x14\xab\x29\x55\xd8\xa9\x9e\x0e\xaa\x41\x30\xa8\x76\xab\xae\xb0\x2c\x69\x12\xd8\x24\xd5\xcb\x41\xcc\x96\x6c\x0a\xf9\x29\xf8\xc4\x20\x87\x33\x50\xa5\x2f\x38\xe0\x0f\xba\x05\x85\xdd\x26\x63\xda\xad\x21\x9d\x2e\x9e\x4f\xd3\xf5\x20\x48\xd7\x33\x2f\x1c\xa0\xf1\x7a\xb8\xe6\xa4\x1e\x04\x93\xfa\x5e\x6a\xbe\x1f\xae\x09\x4e\x91\x93\x9a\xcf\x09\x35\xb1\xe2\x4c\xc1\x7a\xec\x24\x3b\xe2\x73\xa5\x54\x93\x77\x09\x80\x46\x67\x41\x30\x3a\x4b\x00\x04\x52\x4f\x00\xc5\x7b\x35\x09\x18\x28\x24\x01\x18\x0e\xf9\x89\x6d\x06\xb5\x20\x18\xd4\xa2\xb9\x56\x98\x10\x47\x76\x4f\x8e\x73\xf1\x95\xa5\x03\x7f\x12\xcc\x93\x5a\x10\x9c\x24\x8e\xa3\x16\x04\xe5\xda\xf1\xb5\x7d\x39\x2d\xd7\x83\xa0\x5c\xdf\xba\xb5\x84\x5d\x6b\xf9\x72\xda\xab\x05\x41\xaf\xb6\x85\x3d\x6a\x92\x13\x2c\x75\x07\x87\x30\x1c\x69\x32\xcb\x85\x4c\xbd\xfd\x41\xf4\xea\xe5\xfa\x96\x4d\x4f\x2d\xb8\x8f\xcd\x1f\x3b\xe6\x9a\x99\x26\x18\xe2\xd3\x91\x81\xef\xf1\xdc\xe7\xf6\x45\x99\xd5\x16\x88\x7f\x8a\x8d\xcb\xd5\x85\x10\xba\x4f\x64\x45\xe2\x5f\xa4\xba\x87\x40\x6d\x01\x6a\xff\xc2\x5c\xcd\xeb\xf8\x28\xa6\x79\x10\xe2\xac\x32\x62\x80\x12\xb6\x48\xdc\x2c\x0f\xa7\xf7\x48\xcb\xb7\x66\x02\x18\xac\xc0\xf9\x2b\x2f\x47\xa7\xa6\xa0\x32\x0f\xf1\xa1\xda\x49\xee\xbf\xd5\x1b\xc1\x3c\xd4\x25\xa3\x60\xea\xba\x2c\x57\x83\xa0\x5c\x5d\x46\x58\x79\x8e\xb5\x13\x06\xe0\x04\xdf\xd2\xe9\x00\xce\xff\x4c\x0f\x51\xe5\xb3\xc4\xfa\x66\x7c\x4b\x3f\x1b\x26\x9c\xac\x0e\xab\x9a\x7c\x32\x5d\x0e\xf9\x20\xd0\xb2\x5e\xb4\x46\x10\x34\x4b\x7c\xb3\xc0\xb3\x77\xcd\x78\x5f\x21\x12\x20\x6b\xe3\x30\x5b\xca\x98\xb2\x63\x79\x92\xd3\xee\x72\xca\x19\xb3\xcb\x71\xce\x98\x7d\xf6\x90\xd5\xc8\x0e\x6a\x86\x0d\x20\x29\x32\x23\x27\x56\xba\x28\x3d\xe4\xa4\x76\x5b\xeb\xe8\xf6\x7d\xea\xde\xbb\x69\xac\xbd\x66\x2e\x24\x84\xdb\xf9\x6f\xeb\x91\x98\x9f\x20\xc9\x7a\x7b\xd8\x56\x38\xaf\x41\xd7\x68\x69\x45\x86\xbb\x9b\xc2\x63\x36\xac\x29\x3f\x40\x5c\xa5\xe6\x41\x55\xaa\x7a\x27\x30\xf4\x31\xa0\xf7\x5b\xba\xc1\x89\x7a\x97\xc9\x7c\x0e\x36\xa4\x5a\xbd\x94\x86\x1a\x13\xf2\x34\xbb\xb3\x38\x66\x12\x3e\x27\xac\xc1\xd0\xbe\xd1\xcc\x56\xd6\x45\x5a\x88\x79\x7a\x81\x17\x21\xa6\xd1\x0f\xe3\x0b\x1a\xd9\x38\xf6\x61\x78\xed\x3d\xbf\x43\x59\x4d\x16\xe4\x71\xdf\x84\x99\xbf\x4b\x07\x46\x95\x2c\x50\x44\xd0\x4b\xc5\xc7\xdb\x99\xb6\x33\xf5\xa0\xdf\xb2\xb1\x3a\x2b\xba\x13\xb9\x08\xb2\x61\xd2\x19\xc8\x2d\xd7\x43\x10\x04\x03\x32\x8e\x50\x52\xb0\x58\x17\xd8\x5f\x93\x76\x52\x0f\x11\xe0\x49\x51\xea\x49\x9f\xd0\xf1\x82\x52\x2a\x20\x78\x7f\x15\x8e\x47\x49\xbe\xc9\x86\xcd\x80\xed\x8e\x04\xa3\xaa\xa4\xe9\xcf\xfa\x1b\xb3\x70\x2d\xcb\x9a\x04\xeb\xfb\xb8\xa1\xa0\x2f\xed\xda\xa4\xa1\x0f\xa2\x0b\xbf\x02\xee\x4b\x0c\xc4\x73\x8d\x1c\x0a\xf7\x7d\x8f\xc0\xd8\x54\x95\xcd\xd1\x79\x3e\x5c\x85\x1d\x7c\x69\x15\xe6\xa5\x1f\x91\xcf\xe9\x2a\x4f\xb9\x9f\x0b\x95\xfc\x74\x15\xb2\x55\xfd\xf4\x56\x37\xaf\xaf\x43\xfa\x36\xf8\x8a\x0a\xa2\x76\x71\xb0\x23\xcf\xf1\x22\xcc\xa2\x29\x29\xa5\x08\xa8\x77\xe1\xd0\x31\x98\x92\x3a\x85\xa8\xf7\xf0\x38\xf0\xac\xd8\xd4\x27\x18\xa3\x61\x41\x16\xf7\xf3\x9e\x07\x30\xa5\x80\xa8\x70\x55\x0e\xad\x38\xd0\x45\xcf\xf3\x3a\x37\xbc\xe0\x54\x1a\x60\x5e\x90\x45\x4b\xed\xc5\x95\x5a\x57\x2f\x7b\xd3\x0b\xa8\xe4\x3b\x6d\x35\x7f\xf1\x2d\x16\xa5\xf3\x9f\xcc\xae\xa3\x1e\xa9\x80\x27\x72\x1a\x73\x98\x63\x46\xdf\x43\x9a\xfb\xe7\x23\x61\x6c\x05\xbc\xc3\x37\xac\xaa\x68\x3e\x87\x93\x4f\x19\x98\xf9\x08\x07\x6d\xff\x6f\xce\x56\xb4\x56\xfa\xe7\xf3\xb4\xe1\x5d\xb5\xea\x44\x8f\xfa\x99\x19\xb6\x71\xa9\xa9\x46\x46\x2f\xf8\x76\xb2\xc4\x24\x36\xe1\x30\x7f\x30\xe6\xc5\xed\xb4\x33\xb5\x91\x92\xa4\xdb\x1a\x21\x79\xe7\xda\xe0\x70\x50\x97\x80\x76\x77\xa7\xf6\x56\x62\xd5\x36\x9e\x72\x66\x8a\xb5\x5e\x74\x50\xd2\xdb\xa1\xd6\x62\x7b\xa0\xec\xf2\x07\xfb\xd0\x56\xb2\x35\x34\x4a\xa6\xc6\xac\x77\x91\xe6\x56\x71\x98\x83\x16\x33\xe8\xd3\xb7\xba\x39\x13\x21\x27\x4c\x3a\xac\x5c\x1d\x04\x80\xfb\x2c\x88\x5a\x81\x11\xd8\x1f\x9f\xb2\xc0\xec\x61\x56\x7c\x51\x9a\x13\xdd\x50\xee\x0c\x08\x6b\x23\x2d\x44\x7b\x37\x10\xa2\xa5\xc3\x2e\xb8\x6f\xb8\xc0\xfe\xbf\xe0\x9f\xa0\x9c\xe9\x60\xd1\x07\x93\xd1\xf8\xd6\xc9\x7c\x2e\xf4\xb4\x8e\x7b\xb9\x62\xfb\x90\xcb\x79\xca\xe2\x65\xf4\x1d\x44\x5f\x1e\xaf\x35\xef\x1b\xf1\x95\x90\x31\xc7\x53\x30\xef\x67\x96\xd4\x11\x93\xb5\x19\x60\xf7\x45\x76\x4f\xfd\xe8\xcd\xb7\xca\x2f\xc5\x8d\xa2\x88\xe9\x5f\x40\xed\x6f\x2a\xca\x8f\xd6\x19\xa2\x4e\xa1\xa1\xc5\x50\xec\x9c\x3c\xf0\xde\xd6\x82\x11\x2c\xe3\x85\xc7\x22\x55\x62\x23\x65\xe3\x95\x7d\x95\xd8\xd5\xaa\xbb\x40\x92\x1e\x04\x63\xd7\x7b\xcc\x99\xd7\x61\x0f\xa7\x39\x98\x36\x9c\x82\xe5\x76\x3c\x68\x9c\x95\x08\xf2\x4b\xab\x48\x7b\x0e\x90\x2b\xe7\x6c\xee\xef\x88\x2a\x33\x63\x6d\x82\x37\xd2\x58\x22\xa5\x38\x4e\xb9\xae\x43\x10\xdd\x08\x3c\x25\xe1\x3b\xc7\x23\x1b\xa8\x10\xe1\xcd\xb4\x01\x9b\x0f\xca\x63\x86\x00\x34\x3e\xe9\x45\xdd\x99\x6a\x23\x3f\x71\x16\xa0\xac\xff\xf4\x51\x4e\xdc\x86\x73\xe6\xe0\x1b\xc4\x10\x6e\x11\x7c\x92\xc6\x5f\x7c\xd7\x64\x87\xbf\xf8\x56\x50\x16\x7f\xe5\x38\xbe\xe9\x97\x19\x0e\xe9\xaf\x0d\xd5\xed\x68\xc1\xe9\x87\x86\xff\x73\x1d\x93\x57\x71\xb1\xe2\x07\x49\xe6\x87\x45\x93\x17\x49\x9f\x57\x46\x05\xad\xbe\x94\x55\x79\x37\x2a\xd2\x7a\x5a\xb9\x4b\xd0\xe4\xbb\xdc\xeb\x33\x2f\x73\x33\x92\x44\x8f\xb7\xeb\xbb\x5b\x6b\x7e\x0a\xf8\x50\x83\xd4\xb3\x96\xd9\x2e\x34\xcd\x63\x02\xfd\x17\x25\x69\xdd\xe6\x27\x72\xa1\x4d\x75\xae\x37\xad\xcf\x78\xb0\xa7\x10\x02\x5c\x46\xd6\xae\x8a\x0e\xd8\xb6\xf7\xc3\x5c\x77\xbc\x10\xe8\x74\xac\x50\x07\xc9\x39\x4f\xe6\x0d\xcc\x64\xb6\x60\x20\xeb\xe4\x4a\xcc\x65\x46\x30\xf7\xf5\x93\x5f\x8c\x4d\xe2\x32\x53\xef\x76\xd9\x3b\xa3\xb6\x69\xdf\x1e\x76\x1c\x66\x84\x19\x8d\x5f\xf5\xb6\xcd\x83\x65\xcc\x2e\xe4\x9b\xe2\x30\x6b\x5c\x50\x98\xa1\xc1\x10\xd3\xde\x69\x1e\x33\xbb\xd0\x01\x9c\x2a\x76\x0c\x4a\x01\xd5\x7f\x3d\xce\x60\xba\x3a\x2e\x1a\xec\x85\xaf\x45\x5e\xc9\xfe\x20\xb5\x57\xc7\x88\xcd\x7f\x66\x7e\x91\x93\xcd\x9b\xd2\x3a\x35\xe1\x33\x65\x23\xa8\xd1\x54\x01\x69\xf2\x1e\x28\xeb\x07\x96\x1d\x93\x6a\xb8\x27\xa7\x25\x2e\x2e\x83\xad\x50\x48\xce\xf3\xc4\x31\x7a\xfb\x26\x9f\x97\x2a\xea\x69\x19\xd0\x4f\xaf\x97\xf8\x84\x2b\x37\x1c\x86\x91\x5b\xa3\x66\x04\xfc\x6d\x5e\x8d\x5c\x36\x75\x44\xb9\xb8\x8d\x3c\x65\xe3\x3e\x8d\xac\x5a\x50\x39\x77\xdd\x61\x4f\x1b\x6d\x23\xf3\x4f\x16\xa8\x7f\x62\x75\xff\xd7\xc4\xea\x0e\xb2\xf1\x1c\xfb\xa9\xcc\x17\xc1\xba\xad\xe8\xf3\xae\xad\x63\x39\xf6\xff\xcd\xc1\xba\x56\x6b\xe1\x88\xdd\xf9\x9b\x9d\x08\x67\x6c\xb9\x94\x87\x9b\x86\x99\xef\xe6\x92\xc2\xe4\x1a\xf6\xb5\x6c\x1b\x1f\x15\x09\x89\xed\xdb\xac\x79\x03\x2f\x28\xd6\xca\x94\xf9\x13\x13\x5c\x4b\xc7\x1f\xe5\x2e\x98\x22\x5a\x07\x73\x4a\xd9\xa4\x94\x7c\x69\xeb\x43\x9f\x7c\xe6\x9f\x3c\x68\x6a\x9f\xe3\x6b\x83\x24\xa8\x98\x92\x47\xe0\x12\x73\x00\x5b\xb1\x02\x8a\x41\x36\xd6\x39\xb6\xa8\x66\x63\x8f\x32\x91\xb1\x6e\x7e\x7b\xc4\x56\x87\xa9\x6c\x72\xf6\xad\x91\xbc\x8f\x92\x1c\x3f\x36\x92\xf7\x10\xb2\xb2\x0a\x5a\x26\x1b\xb9\x7e\x16\xac\x50\x72\x3f\xfd\x4a\xb5\x02\xfd\x3c\x28\xa2\xf1\x82\x9a\x73\xcf\x4e\x93\x2a\x2a\xf6\x0d\x10\x12\xf8\x6b\x97\xac\x77\x2f\x6f\x00\xb0\xb5\x6c\x07\xca\xf1\x43\x81\x9b\xee\x7e\x57\x57\xc7\x4e\xef\x51\x39\x9b\x17\x1b\x73\x85\x35\xd2\x3c\xc8\x70\xcd\xe4\x69\x1a\xae\xfc\x22\xcb\xa4\x37\x2f\x8e\x03\xe9\xfb\xd7\x59\x95\xb1\x20\x16\x26\xee\xb6\x3f\x6e\x0d\xaa\xd2\xee\x8b\x2b\xee\x29\xd8\xca\x30\xc9\x08\xb1\x43\xf8\x74\xbc\x96\xf5\x2e\x57\x90\x55\x20\x02\xb5\x31\xef\xdd\xa1\x6a\x8c\xad\xb4\x81\xcb\x28\xcb\x57\x8a\xde\x2c\x5d\x5a\xd7\x3e\xa7\x77\x96\xd8\x69\x26\xd9\x35\x1f\xec\xdd\x78\xd2\x2c\x5a\x6d\x30\xf4\x43\x74\xa6\x20\x85\x1d\xe0\x15\x98\x92\xed\x1e\x20\xae\xf8\x26\x18\xb5\x01\x1d\xab\x17\x65\xee\x8a\x28\x19\x6f\xae\x07\x42\xd4\x92\xe7\x04\x28\x29\x64\xe3\x9c\x4d\x94\xde\x3e\xe7\x4d\xb6\xe0\xfd\x53\x8a\x8c\x62\x29\x67\x90\x9a\xde\x75\x19\x65\x79\x0c\x1c\xb0\x20\xb1\x74\x85\x41\xac\xb5\x6d\xb3\x8e\xc8\x5e\xda\xde\xac\x5f\x71\xc2\x24\xa7\x7e\x9e\xb0\x9f\xaf\xc2\x43\x3a\x71\x47\x4f\x4c\x7e\x0e\x31\x34\x60\x49\x39\xe6\xe3\xca\xe2\x15\xaa\x3e\x27\xc8\xe0\x09\xa6\x5e\x15\xbd\x74\xbd\xcb\x6c\x39\x45\xdf\xe9\xac\xbe\xc5\x9a\x0f\x7d\x06\x36\x12\xf7\x2b\xaf\xcb\x9c\x12\x9b\x52\xe5\x1b\xb4\x1f\x14\xb8\x7d\xd5\x2e\x8c\xf3\x7b\x71\x76\x1b\xb9\x0a\xc0\x8e\xd7\x7c\xa8\xed\xdd\xac\x09\x37\xe9\x0e\x24\x48\xd4\xac\xcb\x1f\xe6\x17\x60\x54\xe7\x4e\x36\x4d\x31\x92\x6b\x2d\x5b\x98\x95\x4c\x2f\x80\x7f\x5e\x6f\x80\x03\x33\x95\x73\x09\xf9\xb1\x78\x61\xac\x96\x8a\x99\x4c\x20\x34\x8c\xc4\x34\x7f\x9e\xf0\xff\x29\x8e\xf7\x28\x66\x44\xb4\x98\x51\xa4\xf0\xdf\xc8\xb5\x31\xff\x6f\xd0\xcd\xe4\x9d\x27\x08\x56\xdf\x85\x95\xab\x83\x49\x76\x30\xfe\xe1\x07\x8d\x6b\x80\x73\x55\x0a\x70\x26\xd0\xae\xc7\x6f\x6a\x58\x68\xd5\xc3\x97\x02\x96\xba\xfc\xea\x66\x00\x91\xdc\xe3\xe7\x8c\x99\x91\xf5\xa3\xa8\x9e\xf3\x87\x09\x53\x47\x06\xf0\xa0\xb2\x19\x30\x81\x52\x3d\x33\xb7\xf0\x5f\x9f\xeb\x49\x49\xb0\x7e\xc4\x5a\x6b\x00\x0c\x7e\xc7\x79\xa1\xe5\x5d\x5f\x37\xa7\x5e\xf8\x5c\xd7\x7b\x53\xf2\xbb\x82\x3f\x18\x63\x5d\x9c\x74\x7b\x1c\x94\xf4\x1a\x41\x23\xb9\xbf\xbd\x1d\x36\x7c\x53\xac\x97\x0f\xc2\x27\xbc\x8a\x19\xec\x8e\x21\xfe\xeb\xe1\xbf\x3e\xfe\x1b\x01\xc9\x7c\x0c\xec\xbd\xca\x9a\x68\x81\xbf\x39\x63\xca\x7c\xb7\x4e\x1b\xfd\xb9\x7b\x21\xc7\x50\xf3\x95\x35\xe8\x14\x04\xba\x1c\x44\x22\xaf\xd9\x2c\x16\x9c\xa7\x8f\x77\x35\x6b\x4f\xd2\x08\xfa\xd0\xc9\xb3\x57\x48\x11\x1d\x5e\x9c\x13\x61\x95\x79\x11\xfb\x7f\x10\xa2\xa3\xfd\x2f\x6d\xfb\xe4\x1a\x88\xc0\x74\xcb\x67\x58\x81\x8c\x5d\xef\x14\x34\xea\x2a\xd2\xbb\x56\xd1\xac\x45\x34\x52\x87\xb1\xe0\xea\x18\xc2\x8a\xd4\x49\xdb\xc4\x42\x8d\x34\x2f\x0f\x92\x88\xaf\xdf\xbc\x7a\x66\x6a\x52\x01\x3b\x79\xfb\x96\x80\x58\xa9\x32\x41\x28\x43\xca\xaf\x63\x56\x07\x68\xc8\x73\x3d\xde\x3a\x15\x66\xfc\x6e\xcf\xfc\x3e\xce\xbd\x7e\x33\xb7\x62\x65\xd1\xef\x86\x1f\x8c\xe1\x2e\x98\x4a\x57\x9f\x3a\x91\x6a\x3f\xa7\x9f\x24\x86\xcf\x4b\x72\xfc\x78\xab\xc6\x17\x77\x57\xf6\x26\x08\xf8\x57\xff\x17\xb4\xa5\x91\x35\x79\x98\x75\x1d\x72\x1a\x83\x0f\x4c\xea\x99\x64\xf4\x0c\x92\xd9\x5e\xe1\x10\x72\x55\xf9\x5a\xc9\x1e\xcb\x67\x35\xc6\x84\xb5\xe5\x2f\x0b\xc9\x26\x99\xd5\x48\x02\x8f\x72\x7a\xd9\xb6\x85\x50\x8b\x48\x2b\xb1\x59\x2a\xc7\xc6\x5d\xc2\x7c\x06\xe0\xef\x7b\x16\x52\x93\xdf\x4e\xcc\x6f\x38\xa6\xe0\x01\x56\x35\x1f\xd5\x0a\xa5\x67\x87\x10\x9a\x17\x49\xca\x42\x59\xda\x42\xfd\x13\x56\xbf\xf7\x06\x38\x18\xb3\x86\x4d\x27\x2e\x77\xaa\x77\xc7\x49\xf3\xc1\x4b\x16\xd2\x13\x57\xb1\x97\xb8\x63\x54\x55\x35\x39\x1b\xc7\x4c\x6a\xb2\x7e\xa7\xd0\xbf\xaa\xba\x1c\xad\x3a\x66\xc3\x54\x1c\xca\xdb\xc8\xec\x5c\xc5\x54\x9b\xea\x77\xa5\xa8\x0e\x6d\x9c\x50\xfe\x60\xe5\xa1\x97\x4e\x82\x0e\x62\x25\xad\xba\xcb\xbf\x4e\xc9\x22\x87\x44\xf1\xc7\x5a\x02\xb1\x0f\xff\x75\x58\x7e\xb4\x7e\x05\x5f\xfe\x9a\xfb\xdd\x94\x84\x46\xf9\x64\xe9\xf2\xe2\xcb\xcc\x4c\x15\xf4\xcb\x4e\x2b\x5b\x8f\x6f\xf2\x28\x50\x1c\x73\x22\x58\xb3\xc0\xdf\xa3\xc0\x33\x45\x57\x05\xc0\x6b\x11\xe0\xf0\x92\xcc\x15\x28\x00\x67\xd5\x84\x3c\x57\x91\x97\xab\x17\x74\x06\xc7\x01\x64\x05\x67\xcb\x9e\xd1\xcc\xc4\x50\x0c\x93\x85\xc0\x16\x03\x2c\xbe\x30\x73\x2c\x41\x18\x94\x5f\x38\x36\x6f\x07\xc2\xc0\xf0\x5a\x91\x91\xfe\x76\x3f\xdb\x6e\xe9\xba\x9f\xa2\x9b\x80\x8b\x88\x01\xcd\xe1\x60\xfc\x21\x35\xf8\x7a\x65\x98\x88\x82\xca\x87\x0f\x88\x4f\x60\xcb\x8f\x04\x01\x52\x96\xdc\x34\xd6\x64\xe6\x7e\xb1\x50\xfc\xd0\x9b\x7f\x06\x57\x47\xc9\xdf\xa5\x66\x3b\xe4\x59\x29\xc6\x90\x2c\x10\x58\x21\xc6\xcc\x71\xca\xe0\xb3\xb0\x44\xe5\x9f\x1d\xeb\x09\x9c\x16\xee\xce\x48\x28\xac\xc8\xd3\xb8\x45\xa0\x7e\xcc\x56\x61\x10\x0a\xe2\xa4\xd3\xb0\x17\x43\x65\x98\x85\xee\x84\xe3\xe4\x1e\xfe\xa1\x55\x67\xc5\xb6\xa9\xe7\xb7\x79\x81\x97\xf2\x39\x36\xb1\x3e\x96\x72\x96\x13\x9e\xdf\xa9\xeb\x86\xd9\x5b\x9c\xb2\x28\xbc\x05\xe6\x66\x8e\x1a\x9d\x60\xbc\xac\xec\xf6\x19\x05\xa3\x0f\x3f\x78\x70\xa1\x6c\x96\x7f\x0e\xae\x05\xf3\x2f\xf0\xef\x81\xb2\xfc\x66\x8e\xb0\xfe\x62\x18\x04\xc5\x50\xd9\x7d\xa5\x72\xbe\x68\x43\xb5\x3e\x65\x5d\xe2\x6b\xdd\x7b\xd1\x26\xe2\x4d\x15\x3c\xa3\x19\x04\x77\xe3\x8f\x18\x96\x36\xc9\xcb\x8f\x98\x43\xde\xbb\x7c\x75\xd8\x23\x82\x8d\x22\x02\x2d\x8f\x92\x28\xe1\xab\xe1\x2f\x79\x7b\x8b\x7c\xdc\x08\x7b\xa4\x73\x65\x31\x99\x8c\xcc\x6f\xec\x9b\x05\xa0\x54\xa6\x5f\xd0\x4f\xe1\xfa\x3b\x48\x64\x82\x2a\x26\x0c\x05\x6a\x7b\x3f\x8e\x44\x45\x6a\x7c\xdb\xc4\x9a\xe3\xcc\x88\xf8\x14\x95\xba\xa3\x41\x6f\xc0\x46\x72\xf0\x26\x61\x6e\xb6\xba\x3d\x9c\x4f\x58\x47\x29\x40\x75\xe6\x83\x09\xdb\xc5\xdd\x39\xa2\x0e\x3f\x85\x19\x1d\xf4\xc0\xee\x9b\xb5\x62\x71\x9e\xf0\x57\x2d\x7b\xfd\x18\x4f\x18\x03\xe0\x88\x1a\x73\xf4\x15\xd6\x15\xf6\xa4\xba\x12\x62\xa6\xe6\xab\x3a\x3e\x25\x9d\x68\x66\xcf\x11\x37\x6a\xb0\xfa\xa4\x1c\x29\x61\x21\x9a\x0a\xb2\x7e\x20\xd7\x96\xa5\xa7\x64\xb7\x79\x71\xec\xdd\x26\x2f\x60\x05\x8b\x9f\xbc\x67\xba\xbc\x6c\xbd\x62\x68\x77\x37\x67\x0a\x27\x6f\x76\x49\xfb\x12\x3b\x25\x9b\x55\xb3\xa8\x5c\x0c\x4d\xb7\x49\xc1\x16\x58\x9d\xe4\x30\x24\x76\xbe\x95\x91\x7a\x31\x85\xe3\x74\x96\xdf\xca\x2c\x30\xb3\xc8\x17\x48\xb7\x25\x09\x75\xb7\x2e\x84\x51\x6d\x03\xa0\x3a\xc9\x2c\xa0\x68\x9f\xef\x48\x89\xe9\x3e\xcf\x11\xe3\x76\x64\x95\x9c\x46\x21\xf3\xa6\xec\xab\x3c\xb8\xce\xf3\x61\x16\x00\xac\xf2\xe6\x2a\x49\x14\x1c\x21\xee\x1e\x9e\xb0\x7b\xa9\x4e\x96\xb6\x12\xdf\xf1\x2c\x59\xaf\x2d\xfd\xc7\xbb\x78\x5d\xd0\xa2\x87\xe6\x04\x25\x84\xe2\xab\xfc\xcd\x9a\x2b\x29\x61\xc8\x69\xd3\x06\xb7\xa6\x7e\xfb\x34\xe2\x4c\xce\x4f\xd8\x99\xdc\x2d\xab\x20\x22\x0e\xd7\x2d\x62\xfe\xdd\x42\x18\x37\x43\xa6\x5f\x65\x15\x4b\x09\x5f\xb3\xaf\x2a\x05\xf2\x5d\x10\x04\x64\xc6\xb5\x03\xd3\x79\xbd\x66\x6d\x54\xb5\x47\xe7\x39\xdc\x2a\xa3\x5b\x94\xdb\xa4\x77\xf3\x5b\x35\x77\x8a\xd5\xee\x21\x33\xdd\x28\x4c\xe5\x8f\x47\xa0\x38\x13\xb1\x04\x74\xbf\x7b\x16\x62\xa4\x8b\xce\x86\xca\xb1\xf8\x9e\x60\x2b\xb6\x5c\x56\x19\x30\x5d\x0e\x25\xfb\x95\xc3\xb1\x4e\xe2\x6e\xf7\x88\xc7\xbd\x81\x04\x82\x1a\x56\xdd\x25\x71\x3a\x02\xab\x11\xf7\xde\x47\x61\xf9\xfe\x18\x81\x55\x77\x79\xaf\xd8\x1a\x63\xa5\x69\xd5\x03\xd7\x54\x29\x0b\x55\xa7\xc5\xe3\x73\x52\x66\xc5\x38\x38\xdd\x6f\xe5\x87\x6d\x8f\x0c\xc5\xf1\x2f\x3a\x93\xb2\x93\x26\xc9\x93\xd9\x42\xe6\xc4\xba\xf3\xdf\xc1\x04\xe3\x31\x49\x15\x8d\xea\x72\x45\xb2\x5b\xd7\x39\x72\x4a\xcf\x22\x3a\xea\x09\x9e\x5f\x76\xc4\xf6\xe4\xde\x59\x4a\x7b\x77\x8f\xbd\xd5\x73\xc0\x83\xab\x9a\xf5\x76\x09\xf9\x82\x8f\xbd\x1a\x14\xf5\xfc\xce\x63\xef\xff\x90\xf1\x5c\xf0\x65\x4a\x1e\x7e\xe2\xa5\x33\x22\xcf\x40\x26\xd1\xd5\xde\xf2\x2e\xd9\x48\xcc\xb3\x75\x78\x6d\x23\x0e\xaf\x86\x0a\xcb\x2f\x29\x8b\x0a\xe7\xf8\xa0\x0d\xcf\x9c\x65\x21\xdf\x49\x2f\xe7\xc2\x55\x29\x74\xaf\x9d\xad\xb9\xd0\x9c\x91\x88\x8f\xd0\x05\x46\x2e\xdc\x95\xf8\x46\x89\x99\xd5\x5e\x9e\x57\x2e\x79\x39\xe5\x33\xd2\xd5\x9a\x93\x11\xf0\x8b\x55\x9b\x5f\xb1\x2b\x0a\x52\x65\xda\xf3\x9e\x3e\x5e\x55\x83\x60\x25\x4f\x1f\x4b\x9d\x7e\xef\x40\x02\x10\xa9\x90\xc2\x7d\xcf\xc9\x54\xa1\x2b\x17\x19\x0b\xd7\x99\x4d\xd5\x34\x60\x65\xf5\x43\x92\x65\xac\xa6\x9b\x1c\x74\x94\xd9\xa5\x1e\x22\xee\x84\x21\x1a\x0c\xa7\x95\x4a\xbc\x25\x67\xfc\x9a\x24\xb4\xe4\x46\x3b\x84\x58\xf6\xfa\x4e\xd8\x63\x3c\xf2\x9a\x43\x21\x0e\xb5\x00\xa8\x8b\x04\xa8\x6b\x40\xe5\xc0\xcd\xc5\x54\x3f\x24\x46\x50\x99\x49\xd4\x62\x40\x39\xaa\xb6\xd7\x8e\x03\x1d\x42\x86\x2c\x7e\xc7\x87\x2a\xf7\x86\xf9\x9b\xd7\x61\x29\x4e\x1d\x94\x69\xbb\x78\x50\x73\xfa\xf0\x96\x6a\xcd\x97\x64\x87\x38\x67\xbd\x26\x7e\xec\xe3\xe3\x7b\xe2\xc7\x31\x3e\x3e\x27\x7e\xac\xe0\xd0\xcd\x59\x18\x2f\x74\x04\xb4\xa9\x4a\x97\x3b\x38\xdc\xa8\x88\x00\x0b\xab\x44\x06\x7d\xd2\x15\x25\x81\x87\x40\xee\x76\xbc\xf4\x1d\x6e\xde\xe6\x18\x69\x23\x1c\xe4\xdd\x9d\x12\xab\x57\x55\x7b\x51\xa6\x65\x20\x6f\x11\x46\xca\xf7\x49\x64\x37\x3f\xb8\x73\x40\xaa\xe4\x00\x58\x17\x66\x7f\x18\xc9\xcd\x1b\xa4\xc9\xfb\x7b\x23\x0b\x94\x10\x4f\xc2\x39\x5e\x3b\x8e\x2f\xd0\xc6\xe4\x8c\x9e\x03\xc7\x19\xcc\xdc\xcc\x39\x0a\x9e\x36\x61\x0d\x14\xe3\xc2\xa5\xef\x96\x37\x18\x7a\xda\x47\x58\xcd\xb2\xec\x79\x92\x85\xd9\xec\xcb\x9e\x27\x59\xd8\x4d\xae\xa8\x95\x0d\xe1\x37\x52\xfa\x9e\xb4\x9b\xfd\x37\x03\x6c\xb7\xc9\x5b\x9f\xdf\x08\xc0\x79\xbd\x69\x47\x44\x4f\xf8\x25\xf3\xb3\xf1\x34\xf4\x29\x9f\x34\xea\xb4\x46\xc8\x77\x5a\x64\xd2\x1a\x59\xff\x13\x7d\x14\x5b\xce\x87\x63\x3e\x07\x1d\x4a\x1f\xda\x2c\xdd\x24\x08\xf4\x66\x24\xcd\xb5\xaf\x30\xd8\x2a\x4e\xe6\xbb\xe4\xc5\xa2\x6a\xcd\x94\x63\xd8\xf9\x92\xf1\x8b\x22\x94\xa6\xbe\x8c\x5a\x16\x95\x9a\xfc\x9e\xfc\x89\xce\x3c\x55\x4d\x28\x9d\x32\x88\xaf\xab\x2f\x73\xa8\x2c\x99\x9a\x7c\xa3\xe0\x58\xb7\x0b\x22\x96\xcd\xb2\xc7\x6b\xcf\xa4\xcc\x2a\x3a\x92\x56\xdd\x9d\x19\xc8\xb1\x8e\xea\x1f\xde\x76\xec\x2f\xf8\x41\xaa\x6b\xd4\xbe\x61\xc4\xdd\xe5\xf4\x09\xaa\xa9\x12\xed\xd6\x61\x23\x66\xad\xce\x6a\x60\x35\x5e\x11\x5b\x50\xd2\xdd\x45\x91\xc0\xa3\xd5\x81\x79\xfe\xb8\x2a\x73\x8c\x6b\x7a\x2d\x1c\xd7\x8d\x26\xa2\x9f\x99\x31\x07\x27\x65\x62\xd7\xb6\x83\x43\xa7\x01\x47\x95\x05\x7d\xe8\xe1\x3a\xbd\x5f\xfa\x85\xaf\x5e\x45\xb1\x2c\x31\xc5\xe6\xf9\xf6\xa8\x5b\x3b\xa7\x49\xed\x97\x11\xee\xd5\xfa\x79\x2a\xfa\x0a\xdf\xb4\xe6\x79\xcc\x2a\xe8\x6e\x2e\xe2\x3a\x07\x3f\x05\x32\xda\x41\xf6\xca\x3d\x44\x95\xaa\x3e\xe5\x6a\xf3\xc3\xeb\x66\xa4\xdb\x9c\x0f\x14\x47\x2e\x86\x6c\x7b\xe6\x89\xee\x3a\xfc\x96\x30\x47\x50\x19\x3e\x45\xe3\x26\x76\x44\xde\x04\x3b\xf1\xa9\xc5\x7a\x2b\xfe\x1e\x85\x45\xb2\x72\xd6\x05\xd1\xf3\xac\xca\x30\x5d\xf1\x0e\xa3\x42\x95\x37\x7f\xef\x27\x82\xdb\x8e\xfc\x54\xbd\x25\xff\xfc\x56\x17\x34\x99\x1f\x45\xba\xad\x2a\x72\x52\x58\x33\x12\xf3\x19\x59\xb4\x82\xe4\x8d\x2a\x8b\x73\xaa\xcb\x38\xda\x54\xf8\x56\xb0\x5c\x5d\xaf\x40\x1a\xed\xf9\xef\x74\x45\x4c\xb0\x19\x2e\xc9\x56\xec\x7b\x31\xd2\x4f\x05\xe7\x5b\x3a\xc7\xb4\x0b\xaa\xd4\x2e\x73\xa6\x12\x6a\x73\x63\xdd\x0b\x74\x2b\xb3\xa1\x8f\xdd\x7b\xb4\x6b\x2f\x5d\xbc\xdf\x59\xa4\x5b\xb1\x47\xa5\xa2\x23\x84\xc2\x5e\xf9\x9a\x50\x1c\x54\x3b\x5d\x86\xc9\x1c\x57\xb0\x02\xb5\xc6\xcb\x3e\xcb\x78\xcb\x45\x93\x65\x9f\xeb\xf3\x34\x87\x9b\x73\x7e\x2c\x44\x29\xec\x69\x7c\x24\x1f\xee\x6a\x3c\x24\x8b\x07\x47\xb1\x24\xbf\x2c\xc9\xdb\x5d\x10\x7c\x87\xfa\xe7\xc4\xc7\x56\x55\x95\x3f\xfe\x2c\xb2\xee\x48\x2c\xa7\x37\x93\xeb\xac\x29\x6f\x19\xea\xce\x1c\x65\x6b\xef\x78\x35\x08\xc6\xd4\xd9\x2c\xde\x99\x23\x3b\x75\x7a\xa3\xa7\x74\x24\xb3\x95\xf9\x43\xa9\x96\xca\xab\x74\xe6\xac\xa8\x35\xb7\xa9\x1b\xb1\x0a\x44\x36\x2f\x0e\x44\xee\xe5\x6f\x81\x23\x03\x28\x27\x86\xc3\x51\xb6\x1f\xc6\x2a\x39\x21\x44\x3f\x75\x2a\x66\xf3\xf7\xfe\x3e\xb2\x0d\x11\xb0\x98\x94\xed\xda\xa1\x57\x16\xa2\xee\x72\xd3\x73\x06\xab\xfd\xca\x1a\x6d\x6c\x97\x7c\x4f\x22\x52\x23\xc2\x01\xeb\x7f\xf5\x10\xbe\xf3\x9f\xb1\x81\x1b\x41\x2c\x04\x0f\x92\x89\xee\xad\x1e\x3f\x1a\x18\x05\x3e\xf0\xd4\xf7\xae\x7e\xf6\x50\xf2\x6f\xf2\x4b\x48\x30\x34\x34\xa6\x92\x29\x34\xeb\x3d\xff\x59\x91\x80\x7f\x89\xe5\xa4\xad\xce\x85\x1d\x27\x86\x68\xb7\xb2\x03\xa4\x97\xb3\xd1\x53\xa6\xb8\xcf\xc5\x59\xd6\x15\xb0\x61\xcb\xec\xc8\x28\xeb\x33\x09\x17\x0e\xa6\xf0\x5c\x52\x6f\x6d\xb9\x44\x3f\x9a\x0a\x5f\x73\x67\x95\x4b\x73\xc4\xb8\x32\xbf\xdb\xa5\xdc\xa1\x23\x06\x1e\xa7\x53\x07\x34\x03\x9f\x6e\x99\xcc\x3c\xd5\xdf\x74\x40\x97\xe3\x38\x26\x26\x15\x6a\xb5\x53\xae\x10\x13\x36\xe2\x16\x38\xaf\x9c\x48\xc0\x48\xe2\x57\x4f\x01\xa6\x90\x8a\x96\xd6\xf1\xcc\xca\xa8\xd7\xb8\x37\x78\xc2\x83\x15\xe3\x73\x07\xac\x2c\xba\x4e\xdd\x85\x45\x37\xac\xf3\x1d\xfb\x22\xad\x6f\xe1\x54\x54\x2c\x62\x9e\xcd\x86\x4f\x4a\x89\xac\xc0\xca\xc5\x46\x7f\xa6\x57\x52\xf6\xd1\x86\xed\xea\x45\xd6\x7c\xd5\x95\xe0\x92\x3d\x8c\xd2\xe9\xfa\x0b\x0a\xe3\x27\xc8\x07\xfa\xd8\xe4\x48\xac\xe4\xe9\xae\x42\x63\x5d\xef\x12\xba\x23\xb2\x8a\x84\xaa\x44\xc9\x4c\xd2\x4e\x96\x7c\x42\x2b\x25\x5c\xb3\x16\x7a\x4b\x79\x77\x47\xaa\xf2\x1a\x6b\x07\xea\xe6\x47\x29\x31\xc5\xb9\x59\xa9\x57\x3b\x5f\x33\xd4\x75\xc7\x53\x78\x67\x35\xde\xe1\xb4\x98\x6c\xb9\xaf\x94\xa3\xe8\x90\xbd\x66\x06\x4a\xb6\xfd\xc8\x66\xa8\xb0\xd0\x1c\xf8\xd5\x44\x4e\xbc\x5a\xbc\xc0\x83\x3d\xf4\x63\xa1\x0d\x14\x33\xd2\x94\x57\xdd\x61\x6b\xec\x57\xff\x0e\xf4\x08\x02\x8f\x41\x9f\x66\xb5\x5a\x6e\x96\x9a\x13\x7d\x7a\xe5\x27\x59\xb1\x5d\x0a\x2f\x31\x35\x39\xfd\xa8\x62\x39\xec\xcd\xc9\xea\x03\xa8\x83\xd9\xcd\x27\xe2\x49\x16\x2f\x32\x62\xe1\x2e\x8e\xfc\xbe\xea\xc9\x95\xf7\x93\x51\xfc\x73\x90\x47\x07\x6f\xb9\xa3\xcc\x60\x67\xdf\x2c\x53\x66\x39\x03\x2c\xb3\xd7\x2f\xfb\x5a\x29\x5e\x0a\xff\xaa\xb4\xe9\x9d\x68\x96\xdb\x97\x73\xd3\x09\x73\x7d\x6b\xf2\xed\x57\xc4\xe4\xdb\x50\xd9\x1a\x71\x27\x6f\x0c\x57\x27\x17\x76\x2a\xde\xa5\x80\x2e\x2b\x53\xe6\xf0\xa5\x1e\xa3\x76\x5b\x6f\x8c\x87\x26\x28\x5b\xe9\x77\x84\x00\xbd\xed\x36\xfd\x79\x5f\x86\x97\xe0\x3c\xbb\xe0\x70\xb4\x8a\x03\xc2\x81\x5a\x56\xd9\xc5\x69\xbd\xe2\xfa\xa6\x5c\x33\x53\x27\xa6\x78\x8d\x65\x74\x15\x09\x39\x18\x57\x7c\x99\xa2\xdb\x90\xb1\xd3\xdd\x8f\x1d\x90\xcb\x90\x65\xce\x34\x3e\x18\xab\xb0\xd9\x71\x1c\xc9\x84\xcd\xf7\x22\xb3\x58\xb2\x6e\x37\x31\x33\x89\x3b\xcb\x9f\x79\xf2\xd0\x19\x05\x34\xba\xf5\x94\xdd\x04\x9d\x0b\x76\x7c\xe2\xd9\xd5\x2c\x30\x12\x23\xd3\xd8\x4a\xb4\x15\x7d\x75\x12\x27\xf4\x2b\xf9\x9b\x0b\xf4\xa1\xc7\x7c\x9a\x87\x71\xe1\x0d\x61\x89\x5c\x03\xea\x8d\xa1\xc3\xd0\xad\x30\x38\x34\x86\xbf\xd9\x89\xd5\xd1\x7c\xf8\x1e\x28\xb7\xaf\x35\xf2\xe0\xa2\xea\x47\xa8\x8a\xfe\xd0\xa4\x15\x81\x42\x1e\xf2\xd9\xbf\x77\x79\xfe\x47\xf0\x53\xbc\x55\xba\x4c\xea\xd5\xab\x2d\x73\xa7\x90\xe7\x69\xa4\xd0\xb3\x3e\xb7\xf5\x67\x17\x47\x4a\xff\xa4\x29\x5f\x04\x6d\xbd\x62\x78\x8c\x8e\x0f\x28\x89\x78\xbb\x85\x53\x65\x62\x1b\xa9\x44\x2b\xca\x04\xa8\xdc\x72\xf1\xd2\x86\x9f\x71\xc6\x65\x61\x58\xe1\xe1\xaa\x87\xb9\x7e\xbd\x4e\x8d\x8c\xd3\xfd\x44\x97\x9e\xf6\xee\xcc\xbb\xbb\x3e\xe2\x6f\x31\x54\x11\xfe\xe2\x75\xbd\xed\x3e\x8d\x5e\xee\x97\x2f\xe5\x1b\x39\x3c\x18\x19\xa2\x58\xb6\xcf\x10\x7d\x9a\xd4\x9c\x25\xf6\x05\x6f\x4f\xa9\x53\x1c\xe5\xca\x98\x25\xe9\x61\xcd\x7f\xae\xaf\xaa\xf8\x9a\x7f\xae\xaf\xfe\x8f\x5d\x5f\x5d\x0d\xc0\x27\x3b\xea\x4c\x3e\xe5\xb3\xcd\xf7\xdf\x9a\x69\x89\x11\x8a\x2d\xb0\x1c\xb6\x6f\x80\x73\x22\x0c\xda\x83\x7c\x02\x9f\x5d\x40\xf7\x33\x9f\x9a\x3d\xda\x2f\x1f\x70\x91\xcd\xd8\x63\x75\xe7\x84\x17\x5f\x9a\x5f\xdc\x29\x73\x80\x4d\xcf\xb6\xbd\x4b\xba\x9e\x6a\x9a\x65\x2f\xf4\xeb\x2c\xc9\xb7\x4b\xa5\x1b\x53\x12\xe9\xc6\x14\x71\x4e\xe3\x85\xd5\x5b\x96\x2c\xab\xf4\xd3\x23\x29\xac\x5a\xf6\x0f\x9e\x41\xc1\xa3\x23\x2b\x6b\x4a\x5c\x73\x13\x07\x24\x33\x56\x61\x04\xfc\x48\xc9\xc6\xd6\xdf\x26\x74\xc1\xae\x67\x97\xa1\x41\xe7\xb7\x21\x79\xf8\xfc\x0d\x28\x7b\x40\xf1\x5e\x20\x1b\x24\x81\x64\x68\x07\x5e\xf1\x30\x4b\xca\x06\x12\xea\x9f\x28\x4b\x32\x61\xb6\xf6\xdc\xf1\x60\x44\xea\xfd\x93\xf3\x9a\x92\xf5\x06\xb2\x72\x38\xf6\xa4\x92\x1b\xf6\xf2\x11\x77\x71\xe4\xa1\xc1\xdf\xf2\xa2\x32\x2f\x56\xdb\xbd\x8a\xbe\xf8\x0d\xcb\xa9\x5d\x35\xf5\x17\x2f\x2b\xd7\xdc\xc0\x81\xee\xaf\xef\xd2\x42\x69\xbb\xf4\xd8\x6e\x8d\xba\xc3\xd0\x99\xed\x38\x21\x8a\xa3\xe5\x2d\xdf\xd0\x4e\x7e\x66\x5b\x58\xb0\x04\x9e\x4d\x9f\x9c\xcd\xfd\x0f\xcd\xaf\xe6\x6d\x02\x7e\xa1\xa8\x11\x04\x6f\x69\x70\x83\x6b\xf8\x5c\x41\xb9\x69\xb6\x1f\x63\x69\xe6\xc9\x46\x43\xa0\xf9\x23\x08\x82\xd9\x9c\xd6\xa5\x13\xe6\x4e\x44\xcc\x58\x3f\x99\x77\x65\xd2\x96\x9e\xe9\x52\xe5\xe0\x93\x8e\xa5\x4f\xff\xf1\x06\xf9\x3a\x65\x91\xb1\x55\x97\xd1\xa8\xfa\x0a\x69\x34\x18\x31\x66\x92\xf3\xc4\xab\xe4\xf1\xbd\x7a\xe0\xe6\x78\x9e\x2d\xe6\x95\x93\x30\x42\xbb\x09\x3b\xbb\x58\x91\xc5\x2a\x31\x45\x26\x5d\x81\xe3\x50\x19\x57\x39\xb7\x09\xe3\x41\x1a\x1c\x2c\xe3\x6a\xa5\xf6\x2a\xf7\xeb\x68\xa7\x83\x05\xf8\xf0\xec\xea\x6e\x37\x07\x42\x6b\x5c\x95\x25\x23\x38\x31\xba\x26\x5e\xcd\x0b\xb0\x29\x94\x7c\xe4\x94\xf6\x5e\xfa\x73\xd7\xda\x6d\xc4\xdc\x23\x76\x22\x9d\x13\x47\x87\x7a\x59\x1e\x4d\xfb\xe5\x27\x05\x8b\xb7\x4e\x88\x04\x48\xc8\x1c\x66\xf0\xc2\x5f\xb3\x16\x44\xc3\x9a\x8b\x7c\xd0\xd3\x5b\xa7\xb6\xcd\x6e\x0f\x54\x5a\xdf\xe0\x50\xb8\x74\x44\xea\xf6\x08\x29\x08\x6c\x4f\xf9\x95\x40\x96\x06\xf2\xe6\x2a\x51\x6a\x70\x8e\x19\x79\xf6\x66\xab\x52\x34\xf7\x2e\x05\xc3\xd6\xc1\x9a\x92\x23\x0d\xbf\x5a\x32\xde\xf9\xed\x9a\xca\x6b\x71\xa9\xde\xef\x1e\xf8\xcd\x8a\x88\x9c\x81\x6c\xa5\x7f\x88\x39\x4a\x16\x3d\xc4\x92\xb3\xcb\x04\x16\x15\xed\xdd\x23\x61\x0c\xdb\xeb\xe9\xa2\x1a\x04\x0b\x17\xa9\x1d\x4c\x08\x8d\xf7\xb2\xfa\xd2\x61\xf9\xc2\x9d\xa5\xfb\x27\xe1\xa1\x65\xa3\xb8\xbe\x83\x74\x41\x8b\x44\x56\x61\xff\x3c\x95\x34\x29\xb3\x36\x5d\xee\xc8\x51\x80\x70\x2e\x61\xdc\x9c\x69\x3c\x65\xd3\xca\xb2\x79\x7a\x94\xb2\xd9\x14\x4f\x92\xd6\xdb\x29\x26\xe4\x1f\x3c\xf9\x47\xed\xfe\x47\xed\xfe\x5f\xa3\x76\xe7\xad\x1a\x55\x60\x65\xfb\x24\xaf\x8d\x83\x30\x2a\xe4\xbf\xd0\xc3\x5b\xdf\x4c\x23\x43\xff\x20\xa8\x91\xd7\x78\x52\x64\xa3\x9d\x61\x81\xeb\xc2\x37\x45\xf3\xe4\x44\x5d\x35\x98\xf2\x22\xcd\x4e\xd4\x89\x7a\xce\x85\x79\x68\x3d\xfc\xe4\x23\x5f\x0a\x2b\x60\xdf\xa7\xd9\x4c\x9c\x61\x2a\x4a\xf3\x9d\x81\x4c\xde\x07\xb8\x4e\x79\x7c\x71\xb7\xc5\x36\x29\x6c\xb4\xed\xf3\x3e\x08\x82\x1d\x9c\x0b\x2f\xce\x79\xed\xa2\x6d\xd6\x30\xea\xc3\x72\x9c\xaa\x5a\x48\xd6\x04\x49\xb5\x72\x2b\x55\xab\x52\xb5\xc3\x78\xf2\x74\xd8\x65\xcd\x89\x4e\xd5\x8d\xd1\xbb\x36\x35\xa8\x5d\xeb\x54\x18\x61\xc2\x12\x7b\xa0\xed\xb0\x2f\x41\x10\xa4\x91\x24\xb8\xa3\x86\xb2\x8d\x20\x0f\xe8\x2a\xe3\x41\x1b\x1e\xd5\x09\xfe\xe2\x99\x9c\x14\x55\x78\x71\xbf\xec\x28\xc9\x10\xa1\x77\x17\xc0\x7b\xca\xda\x51\x1f\x7c\xb0\x03\xe5\x83\x7d\xfb\xa6\x31\x7c\x77\x62\xcd\xb9\xa6\xea\x5e\x78\xf0\x89\xe7\x40\xcd\x70\xf1\xa1\x94\x3b\x2e\x8a\x8e\x16\x8b\xf2\xdc\xdf\x55\xda\x0e\x87\x67\x6e\x97\x15\x19\xb7\x39\xd5\x15\x18\x26\x2e\x82\x16\x52\x71\xc3\x92\x1b\xe5\x9a\x75\xb3\xa9\x0e\x8d\x28\xa6\xf4\x2e\x36\xb4\xd4\x7d\x20\x23\x55\x6e\xaa\x24\x84\xe2\xf4\x8a\x6b\x0f\xa2\x3d\x94\xc4\xd7\xc5\xea\xa3\x72\x85\xb8\x4a\x39\x1e\x64\x91\x53\x83\xe6\xf4\xd3\xee\xb1\x41\x4f\xc7\x00\xb9\x76\x41\x5c\x6c\x54\x6a\x33\xd1\xf0\xd0\x29\x2d\x7e\x3e\xcf\x79\xf1\x33\xf9\xff\x97\xbd\x2f\xeb\x6e\x1b\x87\xf5\xff\x40\xee\x39\xde\xb7\x47\x49\x71\x5d\x4f\x9a\xa6\x99\x4e\xa6\x4d\xde\x92\x34\xf5\x26\xef\xbb\x3f\xfd\xff\x90\xf8\x81\x04\x29\xca\x71\x92\xce\xbd\x73\xff\x67\x5e\xda\x58\xa2\x40\x12\x04\x41\x10\xab\x1f\x30\x95\x81\xcc\x83\x15\x5a\x62\xf5\x57\xdb\x71\x08\x74\x35\xf0\x2b\x12\x27\x42\x69\x3c\xbb\xae\xe7\x4d\x2b\x09\xc1\xfe\x65\x59\xb8\x13\xbf\x5d\x32\x49\x5f\xba\x8c\x6c\x0e\x8a\x12\x87\xab\xfe\x67\x28\xfc\x28\x89\x1a\x39\x6f\x69\x51\x38\xdf\xb3\x23\x11\xee\xba\xfd\xbe\xc8\xb3\x6b\x17\xb4\x5d\x8c\xfd\x25\xa5\x35\xde\x3d\x70\xf9\x85\x07\xbb\x90\xf4\xaa\x44\x4a\xd2\xbd\x23\x0f\x3a\x69\x7b\xd6\x5e\x66\x1b\x93\xb0\xc7\xe8\xc0\x8b\x6e\x12\xaa\x32\x59\x8a\x8b\xdf\xd9\xea\x2a\x5f\xce\xe8\xe7\xd6\x71\x2a\xd4\x4a\xcb\xc4\x39\x19\x3a\x4e\x04\x59\xdd\xb9\x38\x15\x0a\xa6\x08\x24\x0e\x30\x3a\xed\x91\xad\x84\x84\x92\x96\x4f\xee\xed\x0c\x72\x3a\x52\x38\x68\x3b\x01\x2f\x50\xdb\xa0\xd8\xc1\x47\xab\xf8\x75\xdd\x3f\x11\xe3\x35\x32\x62\x46\xc7\x5a\xb8\x05\x3a\x34\x3b\x41\xdc\x61\x06\x1d\x66\xa6\xc7\xba\xe3\xda\x8e\x16\x7b\xa0\x3b\x45\xf1\x00\xfa\xc0\xa6\x8f\x38\x56\x24\xeb\xd7\x5c\x36\xa4\xf0\x9f\xf6\xfe\xdd\x78\x65\x4f\xd0\xc4\x4d\x16\x3d\x2e\x20\xd9\xeb\xa8\x1f\x90\x58\xdc\x58\xca\x2b\x9d\x9f\xba\x63\x93\x99\xb7\x90\x1a\x89\x6b\x07\x0b\x29\x57\x44\x3d\x8a\x5d\x9e\x06\x0f\x02\xf2\x29\x68\x16\x62\x0f\x79\x14\xc4\xb4\x21\x56\xdd\xa7\xfe\xb7\xb2\xdc\xc2\x3b\x38\x6d\xcf\xe4\x41\x91\x16\xf9\x2c\xd3\x6d\x15\x63\x33\x3a\x77\x59\x46\x99\x65\x29\xb0\x1f\x87\xe8\xa8\x63\xf8\x89\x2e\x7a\x84\xb5\x24\xd9\xab\x18\x7b\x56\xaa\xce\x4b\x13\x16\x1c\x7f\x58\xe4\xe0\xe0\x22\x80\x7e\x91\x8b\x35\x4c\xc4\x4a\xab\x23\x2f\x2a\x90\xd1\xba\x64\x56\xfa\xa4\xcb\xb9\xa6\x1c\x4a\x48\x10\xe0\xa6\x69\x36\xa1\x68\x2f\xb4\x2e\xdf\xa5\x5c\xd9\x77\xfc\x53\xdc\xdd\x93\x7e\x12\x3e\xea\xda\x68\x1b\x33\x8a\x74\xb7\x14\xf1\x89\xc0\x8a\xbf\x25\xab\x9e\xf5\x49\x6d\xb4\x84\xbb\xc8\x45\xfe\x2e\x36\xfa\x39\xdd\xd7\x2f\x6f\xc0\x74\xc8\x5f\x59\xf9\x67\x84\x62\xbd\xe2\x36\xf5\x9d\xa9\xdf\x38\x54\xb9\xed\x5d\x8e\x9b\xfd\xf2\x07\x63\x0f\x4e\xed\x62\xa7\x5c\x99\x5a\x0f\x0c\x2c\x0c\x42\x76\x1e\x7d\xe0\x8c\x5e\xd4\x2b\xd6\x7e\x2c\xd7\x9e\xbc\x0f\x7b\x6e\x12\xb4\x34\xd7\xa6\x69\x65\x83\xeb\x21\xa5\x0c\x7c\x18\x18\x7a\x31\xb8\x2b\x88\x5c\x64\x76\xb5\x13\x7f\x43\xb0\xd7\x6d\x82\xfb\x98\xbb\xc4\x1f\x25\xa3\x97\xa4\x74\xe1\xe1\xb1\x28\x84\xd2\x96\xf4\x58\xd2\xb2\xbd\xf9\xde\x3e\x17\x17\x30\xfd\x77\xd8\x26\x79\x36\x28\x27\xb3\xf3\x48\x38\x9e\xc9\x28\x4f\x7c\xbc\x20\x2d\xdb\xf6\xbb\x6d\x05\x2c\x44\x79\xef\x33\xee\xe2\x72\xf8\xa7\x06\xea\xc1\xea\x90\x7c\xf4\x8a\x09\x0b\x8a\x70\x92\x51\x17\x1f\x4f\xce\xf1\x63\xf6\xad\xfa\xf6\xb5\xd0\x64\xba\x1a\x37\x2f\x80\x53\xf3\x24\x92\x34\x64\x17\xa5\x9d\x59\xdf\xf1\x85\x94\xd6\x05\xfd\xc0\x05\xd8\xdc\x60\x96\x30\x2a\x7d\xb5\x74\x26\x0e\x10\x8e\x47\xfd\xc1\x45\x06\x7f\x88\x83\xdd\x2c\xd2\xd2\xe3\xa1\x97\xaf\x0e\x86\x58\x8c\x49\x19\x35\x11\x66\x34\x1e\x99\x88\x5e\xbe\x10\xc7\xb1\x14\x29\x6a\xfe\x65\xfd\xa7\x66\x83\xe4\x9b\x7a\x70\x2d\x05\x67\xdd\xd4\x17\x47\xd4\x2d\x2f\xb9\x7e\x09\x38\x00\x97\x7d\x47\xce\x1f\xa2\x66\xd5\x95\x38\x3d\x67\xc5\xd8\x56\x7f\x9f\xe3\xb6\xb2\x80\x16\x8e\x66\x76\xbd\xc4\xe3\x55\xd1\x88\x00\xfa\x7e\x87\xb3\x33\xb5\x9d\x6a\xd7\x02\xb4\xde\x14\xed\xfd\xde\xb7\x52\xa5\xa8\x18\x70\x2b\xcd\x69\xb3\xaf\xfa\x22\x3e\xff\xea\x7c\x5e\x45\x98\x16\xdb\xd0\x8a\x46\xe7\x7e\x2e\xdc\x43\x91\x2e\xca\x47\x7c\x60\x41\xd4\x5d\xd8\xae\x2d\x0c\x9f\xf5\xe3\x23\xa2\x8a\xfa\x3e\x16\x28\xb9\x5b\xb9\xaf\x25\xfd\x50\xb5\x74\x0c\x67\x41\xf9\xc2\x46\xbf\xbc\xef\xd3\x5d\xec\xcf\x58\xbb\x66\xf2\x2a\x60\x71\xe7\x0b\xe3\xd8\xcc\xea\xbc\xcb\xd1\x1f\xee\xea\x75\x15\x29\xe7\x7f\xc7\xa6\x8b\xcc\x77\x1d\xc3\xdd\x6f\x15\xfa\x88\xa3\xd3\x3d\x30\xbd\x30\xcb\x6a\x95\x20\xb7\x30\x7f\x24\xaa\x41\xc7\xd1\x1e\x14\x91\x9b\xa5\x9f\xc8\xab\x28\x93\xe2\xb4\xef\xe4\xbb\xb0\x6b\x90\x42\xf8\x5f\xdf\x39\x54\x64\x18\x4b\xaf\xad\x6b\x89\x91\x8b\x0d\xd7\x25\x1f\x93\xbb\xea\xa1\xe5\x1a\x3e\x1e\x14\xbf\xd3\xac\xe6\xce\xa6\xde\x28\xd6\x2c\x51\xd3\x85\x6f\x29\xc8\x1c\x61\xef\x78\x02\xbc\xdc\xf9\xa8\x6c\x2f\x48\x8f\xb6\xc0\x1d\x30\x31\x4e\x2b\x97\xcd\xec\x9e\xe9\xa9\x1d\x29\x1e\xf7\x8d\xe1\xbd\xb3\x05\x1a\x14\x23\x41\x25\xcd\x91\x60\x0a\x13\x69\xb7\x08\x32\x84\xac\xf9\x42\x49\xbb\x3a\x1d\x9d\x8b\xe1\x82\xd1\xa4\x17\x03\x1b\x05\xfa\xee\xd5\x13\x8f\xe2\xe7\x3f\xb8\x67\x95\x24\x6d\x9c\x7c\x06\xb4\x5d\x2e\x87\xfd\x84\xeb\xe9\xe2\xc9\xb8\x9f\x40\xd1\x93\xe2\x09\x4f\xed\x13\x07\x0a\x71\xa1\x15\x88\xe6\x53\xb4\x53\xf2\x24\xd9\x46\xe6\xfc\xa5\xd8\x85\x98\xeb\xe6\x9a\x54\xa1\x6a\xd1\x96\x34\xde\x45\x9f\x12\x8f\xb0\xc2\xee\x5b\x14\x45\x3f\xd4\x9f\x7a\x53\x0b\xe2\xce\xc1\x71\xb6\xdf\xa1\x99\x03\x41\x54\x87\x05\x1d\x7e\xb6\x8d\x5d\x19\xf5\xc4\x64\xa7\x21\x09\x79\x78\x03\xac\xa4\x5f\x9d\x9e\xcd\x3a\x5c\xb6\x81\x04\x46\x20\xa7\x8d\xd6\x95\xa2\xb4\x5c\x62\x51\x6a\x11\x48\xcb\xcc\x08\x1c\x1b\xe4\x33\xaa\x79\xe9\x46\xee\x76\xb4\x00\xec\x15\x8b\x57\xc0\x6a\x4d\x6f\xb9\x67\xb3\x22\xfd\x3e\xe7\xe0\xe3\xf5\x5e\x19\x5c\x25\x70\x40\xb7\x2d\x51\xfa\xf8\xd5\x74\xb0\x32\xd3\x58\x7b\x2d\x6f\x69\xeb\x50\x87\xfb\x0c\x18\x02\x9f\x05\x43\xb1\x0f\xc7\xcc\xd0\xac\x3e\xf7\x92\xb4\xb9\xcb\xcc\xac\xd6\x27\x67\x4e\xe0\x5f\x9a\xb9\x6a\x59\xa0\x84\x9d\xea\xdc\x95\x20\x85\xcd\xa0\xe7\x44\x07\x0f\x06\xef\x96\x6a\x76\xbf\x34\x42\x66\x42\xa8\x41\x8e\x3c\x21\xd3\xe8\xc7\x54\x26\xbc\x13\x62\x4f\xf0\x6c\x90\x8c\xe9\xbb\x4d\x33\xd5\xfe\xfe\x8a\x6d\x89\x0f\xd3\xbf\x8d\xf8\x88\x33\x6a\xa6\xef\xc4\x7a\x35\x16\x71\xb5\x93\x51\x03\xe3\xc3\xfa\x2d\xeb\x53\xcc\x55\xbd\x46\xf7\x73\x3b\x93\x76\x47\x4a\x46\xf8\x70\x7e\x4b\x59\x27\x2e\xa4\x96\x42\xe8\x77\xd1\xec\xda\x57\xd6\xca\xb4\x8f\xbb\x5f\x5c\xce\xed\xa7\xb8\x23\xe8\x94\x3e\xff\x99\x26\xff\x33\x4d\xfe\x6b\x4c\x93\xe3\x54\xc6\x23\x50\x8c\xf6\x39\x0e\x81\x7a\xb5\x48\xbf\x85\x74\xab\x0a\x92\xf1\x07\xa0\x7a\x12\xe3\xdc\xf4\x3a\xa5\x2b\x32\x5a\x7d\x71\xce\xd1\x91\x8c\xb7\x4a\x9c\x22\x08\x07\x9d\x4f\xee\x76\x7b\x1f\xa2\x21\x17\x6f\x74\x8e\x82\xa7\xdd\x69\xee\xb4\x24\x1e\x92\x76\xf2\xbe\xfe\xe9\x0d\x60\xf6\x49\xcf\x85\x5d\x14\x31\xdc\xc3\xc7\xd3\xb5\x7e\xf2\x9b\x11\x25\xa3\x5e\xa0\xe0\x62\x87\x14\x6c\x6c\x39\x8d\xe5\x34\xa0\xde\x34\xb7\x6c\xa4\xef\x2d\x71\xdc\x6d\x71\x17\xbb\x33\x32\x97\xeb\xb1\x8f\x4b\x4c\x45\x37\xaf\xce\x85\x1e\xa1\x20\xab\x4a\x5d\x08\x3d\x49\x2a\x0b\x31\x74\x4d\x8c\x54\x68\x76\xb2\x28\xa3\x6e\x5a\xfd\xf3\x9f\xe8\xe0\x93\xd0\x20\x28\xe4\xad\xc8\xb4\x38\xa0\x13\x06\x5e\xf9\xc5\xb5\x98\x5c\x3e\x44\x59\xab\xf2\x07\xa9\xc4\x7a\x6f\x06\x43\xfc\x6b\x4b\x36\xf2\xc6\x5d\x10\x8e\x76\x1c\xc3\x96\xca\x6f\x21\xd5\x65\xbc\x95\xda\xd0\x29\xfc\x61\xc9\x26\xeb\x7b\x58\xf9\x8b\xc5\x87\x6f\x99\x77\xe2\x7e\x21\xd3\x7d\xd9\xc3\x28\x3d\xad\x4f\xfe\xef\x30\xfa\xef\x30\xfa\x1f\x3c\x8c\x5a\x20\xd7\x27\x7b\x18\x55\x5f\xed\x9d\x7e\x45\x4a\x98\x8e\xf0\x8a\x51\xb3\x7b\xb9\xb8\x92\x5e\x73\x72\xae\x38\x26\x66\x3c\x5a\x2a\x55\xff\x14\x01\xad\x44\xee\x90\xea\x59\xaf\xa6\x11\x44\xbc\x75\x8a\x33\x00\x46\x8d\x22\xec\xd0\xbb\x6f\xa2\x04\x89\x76\x41\x0c\x7a\xb1\x77\x3c\xc3\x1d\x21\x84\x72\x9b\x76\x50\xfc\xd8\xd1\xf9\x95\x28\x0b\x65\xf9\x31\xe7\x04\x35\xc5\x9f\xe5\xa0\xca\xf6\x5e\x6c\x2e\xf4\x23\xc2\xcc\xe6\xd1\xd5\x01\x54\xfa\x89\xd4\xf2\xed\xc1\x9a\x0e\x46\x6d\x55\x07\xac\x06\xae\x25\xb3\xb8\x79\x3e\xf4\x56\x5f\x23\x43\x63\xbb\xdb\xe6\x1b\x71\x3f\x91\x51\x90\x45\xbe\xf7\x0c\xe8\x22\x48\xe9\xef\xba\x03\x54\x54\x1f\x0e\xe8\x5e\x4d\xbe\x27\xdd\x11\x1e\x8f\x07\x70\x53\xd7\x7b\x97\xab\xaf\x0f\x12\x5a\x48\xf5\x70\x8a\x87\xb3\x81\x73\xaf\x5b\x17\xb5\x52\x47\x8f\xf7\xba\x4b\xc9\x35\xd4\x9f\x93\x91\xc9\x33\xa0\xae\x20\x1c\xfb\xbc\x18\xf0\xb4\x97\x83\xec\xb4\xeb\x34\xed\x9d\xa3\x25\x19\x7e\x05\x12\x46\x5f\x3d\x10\xc7\xa5\xa3\x29\x59\x0d\xcc\x85\xf6\x5c\xd8\xb3\x3b\x66\x93\x77\x1e\x88\xb2\x0b\x7b\xf7\x93\xb3\x9f\x9f\x05\x77\x41\x1b\x7f\x79\x2d\x3f\xae\x7f\x92\x10\x37\x03\xa6\x94\xed\xb9\xa3\xdd\x0d\xf8\x76\xbc\xc7\x27\x16\x48\xd5\x1d\xef\xc1\x34\x25\x3a\x84\x59\x6d\xfc\x28\xd6\x8e\xcb\x49\x7e\x94\x2e\xed\xfd\x6b\x2a\xab\xfb\xd5\x72\xb2\xde\x86\x38\xd7\xd2\x51\x6b\xb1\xa2\xd7\x8c\xe0\xe8\x4e\x03\xb1\x14\x85\x2f\x36\xf2\x01\x8a\xae\x43\x25\xfe\x30\xd4\xc9\xe2\x8f\x15\x07\x24\xe2\x44\xfa\x5d\xab\xaf\x29\x52\x8c\x5d\x69\xc0\xba\xa6\xb2\xdb\x0b\x3e\x59\xf4\x49\x51\xba\xbb\x12\xb3\xbe\xac\xaf\xe2\x0c\x73\x51\x3c\x67\xfc\x59\xfd\xfc\x8e\x24\x06\x80\x34\xc2\x41\x79\xb4\x31\x75\x97\x75\x94\x86\x6e\x94\x62\x68\x8b\xb8\x9c\xb4\x8b\x04\xcb\x40\x26\x0f\x72\x00\x1c\xd9\x52\xaa\xf0\xf7\x65\x77\xc6\x50\x0b\x36\x36\x32\xb1\xd3\xe5\x11\x61\x2c\xb9\xb3\x66\x6d\xe2\x46\xd6\x14\xbd\x2c\xbf\xf4\x19\xa6\x58\x6b\xb9\xe1\x29\x7a\xba\x08\xef\x05\x75\x68\x56\xa0\xff\xd1\x4c\x5b\xff\x85\x79\xe1\x4b\x24\xb2\xb9\x8c\xa2\x2b\x0e\x68\x41\xbe\x0b\xa0\xb5\x31\x86\x34\x86\xa3\xa8\x4f\xca\xf3\x01\x49\x65\xad\x8f\x94\xf2\xc2\x2e\xef\x13\xeb\x38\xcf\x1b\xb4\xe6\x4b\x66\xa1\x78\x08\xb3\x19\xf2\x6b\xc1\x0b\x66\x45\x0b\x4e\x67\x1c\x97\x1e\xe2\x67\x5d\x1c\x72\xd7\x6e\x87\x08\x25\x3a\x2c\x05\x21\x0c\xd6\x79\xa8\xad\x0c\x12\xc4\x40\xac\x21\x87\x35\x48\x02\x9b\x3b\x09\x28\xdc\x4d\x31\x2b\x84\xad\x23\x16\x58\x75\x98\xd8\xbd\x09\x2b\xa9\x5a\xa2\xa8\x41\x7e\x0e\xb2\x85\xb9\x0f\x18\x4f\xbf\x8e\xe3\x55\x12\xc8\xf4\x5b\x1b\x52\x14\xfa\x2a\xae\x0f\x9d\x11\x34\x0c\x03\x6c\x0e\xa5\x58\xc9\x72\x9c\x19\xcd\x18\x7b\x8a\x8e\x2b\x08\x35\xa0\x80\xfa\x95\x9c\xba\x3d\xe9\xd4\xb9\x62\x6e\x9a\x70\x74\xda\x7d\xb1\x1a\xac\x3d\xca\x93\x6b\x0f\xf9\x27\xdf\x9d\x63\x56\x81\x3b\x47\xd3\x1d\x72\x8b\x14\xe4\x7a\x24\xdf\xda\x2c\x5e\x0d\x85\xd6\xbc\x88\xa9\xf4\x47\x09\x8e\x92\xc1\xc8\x6d\x56\x64\x12\xe8\xc3\x91\x94\x75\xe3\xf2\x3e\xa8\xc6\xc9\x57\x5b\xfb\x02\xae\xa7\x1c\x28\xe0\x43\x28\x98\xd9\xf3\xc1\x6c\x45\x84\x15\x31\xad\xd1\x30\x71\x88\x57\x8f\x6c\x0e\xb7\x36\x08\x2c\x7a\xc2\xe5\x87\xd0\x81\x6f\x65\xa4\xaa\xd6\x28\xdf\xcd\xe7\x59\x5d\x19\xb9\x4f\x3c\x9a\x21\x6a\xbb\x4c\x56\x80\x50\x8d\x52\xd8\xa0\x1e\x7d\x31\x42\xbd\x64\x31\xc2\x9e\x2f\x45\x44\x6c\x94\x65\x5a\xc7\xb1\x19\xbc\xf5\xeb\x53\x23\x2c\x93\x25\x46\x9e\x2e\x46\xb7\x21\x98\xb4\x82\x47\x46\x68\xa4\x63\xa2\x11\x35\x1d\xa9\x4d\x62\x06\x65\xe8\x5a\xb2\x35\xac\xf0\xe3\x5c\x3c\xfa\x32\x67\x1f\xf6\x29\xb7\x08\x3e\x9b\x7f\x07\xac\x57\x67\x91\x29\x23\xb2\xa6\xcc\xa1\xa6\x10\x76\xac\xa8\xb4\x86\xeb\x65\xdb\x7f\x31\x45\xb6\xa1\x91\x2f\x5c\x0d\x9e\xd8\xbd\x35\x8d\x7d\xc1\xad\x8b\x2d\x27\xd7\xe7\x10\xf3\xd2\x58\x19\x66\x80\xa0\x6b\x72\x9c\xfe\x2e\x9d\x57\x87\xa4\xa5\x9d\x5e\xc8\xb3\x1f\x72\x4a\xfa\xf1\x55\x5f\x79\x82\xa6\xe1\x3b\xd1\xf4\xa7\xb6\x74\x36\xc7\x01\x74\x62\x39\xea\xce\x1a\x8d\xc1\x95\x38\x71\x87\x2e\x80\xb0\xd4\x35\x04\x76\xe6\xe4\xf5\xe9\xe4\xf2\x55\x7b\x47\x75\x81\xea\x60\xd6\x27\x58\x5b\x5f\x56\x71\x3a\xcc\x2e\xac\xed\x21\x70\x43\xc9\x2a\x74\x44\x2c\xe6\x18\xc2\x73\x9a\x47\x2e\xd9\xef\x3f\xc9\x08\x4d\x25\x7c\x6b\x8f\x72\x7c\x6f\xc5\xde\xe2\xcc\xb1\x32\x05\x00\x5b\xe3\x92\xda\x74\x05\x6d\x03\xa6\xc8\xba\x34\xb0\xdb\xcc\x62\xeb\xd6\x3b\xa8\x1f\xa7\xa9\x93\x23\xc0\xef\xe5\x87\xb3\x15\xcf\xc2\xd8\x26\x25\xf9\x62\x18\x2b\x66\x29\x60\xf3\xe2\x31\xe3\x6a\x25\x1e\xd1\x5d\x42\xb7\x70\x35\x3a\x79\x89\x29\x01\x65\x34\x19\x5d\x57\x20\x9d\xa2\xae\xc0\xfe\x31\x63\xf0\xb0\x3c\x6c\x34\x65\x85\xcf\x5e\xd4\x2f\x54\x63\x8a\x4a\x74\xd8\x3c\x97\xc5\x09\x91\xc3\x3c\xe5\xed\xeb\x24\x3d\xda\x1e\x74\xe1\x86\x89\x76\x13\x9f\xc5\xcd\xc5\x6b\xb0\x39\x5e\x9a\x0c\xf6\x8b\x38\x30\x7d\x25\xa0\x45\x23\x2d\xe5\x14\x62\x16\xb4\x9d\x63\xeb\x56\xc4\xb7\x9d\xd7\x67\xab\x12\x6b\x13\x9b\x00\xf8\xd2\xbe\xb3\x98\x9c\x68\x22\x7b\x68\xa6\x21\x76\x10\xec\xde\xc7\xb5\x3d\x39\xab\x3b\x5b\x46\xff\x72\x70\x13\x96\xf2\xa1\x0e\xb4\x1d\xaa\xc6\x81\x0e\x35\x36\x33\x8d\xe5\xe8\x1c\xc4\x6a\xae\x34\xf8\x4c\x5c\x89\xe5\x79\xbf\xf3\x42\xc5\x15\x57\x6f\xa3\x28\xaa\xeb\x7d\xa8\x05\xe2\xd0\x27\x93\x34\xf6\x36\xae\xa6\xbc\xa7\x62\x4e\xfb\x19\x5b\x0e\x74\x7b\x5d\x62\x59\x5b\xfa\x4e\x56\x58\x0e\x1c\x49\xae\x51\x3e\x73\x32\x4d\x2f\x24\x8b\x76\x0e\x28\x84\xef\x8f\xa5\x43\xb1\x3f\x4a\x71\x2a\xfa\xa3\xb2\xdb\x40\x3b\x66\x17\xc8\xd1\x73\xa2\xa3\xbd\x42\xa0\x86\xa9\x9b\xa9\xe9\x32\x8a\xa2\xa2\x8e\x9a\xe2\x3b\x47\xe0\xa2\x67\x34\xe0\xc5\xcf\x8e\x72\x8a\x1d\xcf\xfe\xb2\xc3\xc8\x94\x7d\xa8\x85\x0a\x3b\x20\x25\xc4\x28\x58\xef\x9f\xbe\xeb\xff\xcc\xad\xde\x70\xf8\xe1\x55\xfb\xb7\x20\x6b\xdf\x02\xb5\x22\x90\x14\x72\x64\x32\x92\x85\x15\xd2\xdb\xff\x14\xd2\xff\x29\xa4\xff\x35\x0a\xe9\xf1\xc4\xf1\x80\x24\xab\x4d\xfa\x5a\x8d\xf4\xe5\x5b\xca\xfd\xab\x8f\xde\x50\xee\x5f\xcb\xcd\xf4\xf7\x5a\xb4\x42\x09\x9a\x35\xcd\x7e\x33\x10\xe9\xb7\x9a\xb2\x74\x37\xa5\xc8\x58\x08\x60\x62\xf3\xa1\x56\xac\x42\x0a\x54\x28\xba\x92\x3d\x3c\xd7\xc6\x2f\x3a\xae\x76\xb2\xc1\x29\x16\x6d\x70\x2f\xfe\x12\x50\x75\x0f\xff\x26\xfd\x89\x13\x91\x38\xde\x22\xbd\x15\xaa\xa2\x70\x10\xdb\x90\x6e\xad\x6b\x10\x03\xf1\x72\x78\xcb\x2f\x6f\x41\x7a\x97\xa2\x8e\x70\x19\x11\x30\x64\xac\x1c\x53\x6a\x17\xf4\xe5\x55\x1e\x9b\xde\x63\x0e\x97\xd6\x28\xd8\xa4\xa5\xe6\xba\x2e\x5c\x65\x32\xa5\xb5\x87\x22\x6b\x36\x34\xca\x74\xbd\x7e\x90\xcf\x17\xc3\xc4\x3a\xc2\x2c\x87\x6e\xa8\x18\x39\xd7\x3e\x31\x74\xbd\x09\x50\x82\x63\xc8\x02\x34\x2d\x2a\x3e\xdc\xa0\x13\x24\xc4\xdd\xe2\xf1\x6e\x98\x48\x67\xe5\x3d\x1e\x1f\x70\x7f\x00\x69\x1f\xf9\xca\x30\x4c\x70\xca\x95\x87\x59\x65\x6e\x15\xda\x7c\x57\x45\x9c\xb2\xfc\xb6\xc4\x0d\xcf\x02\x69\xaf\x1c\x65\x6e\xc5\x54\x6f\xad\x9e\x0b\x7d\x9c\x1a\x17\x51\xce\x3a\x6a\x80\x14\x5d\xe8\x87\x9f\xe0\xb5\xc7\xac\x72\x3b\x08\xbb\xf4\x93\x8f\xbe\x9f\x2e\x80\xa6\xa3\xe0\xde\xad\x78\x82\xfb\x55\xd6\x21\x32\x08\x99\x13\x2d\x2d\xb4\x50\xe1\x02\xa9\x7f\x97\xc0\x6b\x43\x56\xe5\xd4\x47\x8e\x36\x68\xf2\x1d\xb3\x9c\xfe\x70\xf4\x5a\x66\xf6\x4d\xb7\xfd\x82\x2a\xf7\x2e\x9d\xd6\xa6\x96\xf6\x57\x93\x89\xe1\xaa\xcd\x5a\x9a\x01\x12\xeb\x23\xc9\x62\xeb\x06\x97\x1a\x72\xd5\x22\x59\xb4\x30\xa4\xcb\x5f\x11\x1f\x05\x83\x44\x17\x47\x7d\x34\xde\x0c\xc6\xce\x88\x86\x23\xf2\x0e\x1c\x8d\xf5\xdd\xf0\xb2\x1f\xd2\x38\x03\x20\x76\x3c\xd4\xde\xe3\xb8\xbe\x76\x2e\x56\xe3\x11\xdf\x76\xd3\xb1\xe3\x67\x5d\x4b\x69\x6b\xd4\xd9\xfd\x7c\x94\x88\x0c\x2d\x50\x97\x35\x9a\xc4\x2b\x8a\x2d\x13\x3c\x83\x0d\x0d\xe3\xc9\x28\x91\x09\x9f\xe7\xa3\xac\xf7\x28\xf4\x9d\x7d\xb8\xa9\xa9\x11\xb0\xf7\xe8\x88\x7c\xff\x6a\x32\x24\x4c\xd7\xa0\x21\x37\xea\x9b\xf9\x27\x89\x5e\x99\x9d\xa5\xa1\x6f\x16\xb7\xd5\xd4\x2c\x00\x92\xb0\xde\xb8\xec\x21\x91\x5a\xd0\xe8\xa8\x4f\x56\x33\xe3\x40\x2b\x45\xd4\xbd\xa9\x16\x28\xe1\xf5\x6d\xf2\x61\x02\x3d\xa3\x2e\x17\x33\x37\x62\x6b\xaf\xa8\xab\x41\x53\x08\xdc\xd4\x6b\x5f\xfc\xe8\xe4\xa1\xd2\xed\x07\x4f\xd4\x5e\x67\x35\x19\xba\x91\x07\xb6\x1b\x62\x54\x73\x37\x8f\x8f\x00\x0b\xb6\xa8\x45\xa0\x42\x2c\x9c\xed\x4e\xe6\x1d\x14\x4f\x2d\xd2\xd5\x08\x7b\xb3\xbf\x3f\xd8\x40\xfb\xf4\xef\xf7\x8d\x8a\xe3\x1b\x44\xa0\xa2\x1b\xe5\xec\x84\x20\xba\x7b\x63\x2b\xdc\x48\xac\x24\xfa\xd3\x27\x38\x13\xea\x32\x87\x1e\x39\x33\x37\xb7\x47\x37\xc8\xf6\x43\xd7\x4d\xc0\x18\x4e\xcb\x48\x92\xe1\x45\xf0\x5d\x14\xfc\xd8\xca\x9c\x14\x95\x22\xa2\xb9\x29\x64\x77\x24\xfa\x97\x79\xf8\x45\xec\x37\xb4\xf5\x8a\x05\x91\x8d\x65\x5e\x12\x1e\x4d\x0f\x2c\x02\x74\x6d\xdd\x3c\xdc\xba\x53\x19\x45\x66\x75\x3a\x0a\x72\xcd\x9d\xbd\x87\x2a\x99\xed\xaa\x63\xc5\x77\x80\x5d\xfa\xe3\x99\x96\xad\xe4\x43\x81\xf6\x02\x19\xb5\x58\x78\xd8\xda\x18\x3c\x89\x77\x16\x03\xbb\x36\x52\xcc\x3e\x6f\xf9\x48\xc1\x97\x98\x6a\xeb\x5a\x84\xd7\xa3\xc8\x8d\x2b\x6f\xdb\x71\x6e\x8f\x42\xf3\x8d\x40\xe8\x03\xf9\xe0\x42\x84\x8a\x20\x48\x19\xce\xc7\x77\x61\x07\x01\x73\x3f\x3a\xef\xd4\x66\xa2\xd1\xe5\x8d\xb8\x78\x63\xb7\x64\x4b\x4a\x76\x76\xd4\xcb\x0c\x76\xc5\x50\xb1\x97\xed\xa2\xbd\x30\x9f\x01\x3b\x42\x88\xe9\xac\xa5\x68\x6f\x02\xd0\x3a\x10\x23\xb5\x19\x26\x16\x3d\x34\x28\xc1\xdc\xd2\x7a\x7c\x5c\x93\x7a\x98\x06\x3e\xe9\x92\xd4\xa5\xbb\xb4\x44\xf7\x14\x45\xd1\xec\x8f\x0f\x32\xb1\x33\xb3\x89\xe5\x21\xf6\xf8\xf5\x28\xe1\xb9\xe3\x04\x29\x7d\x25\xb7\x8b\xaf\xae\x78\x31\xfd\x28\xc2\xd2\xd5\x41\x50\xd7\x74\x72\x53\xbe\x71\x04\x80\x15\x67\xbc\x98\xae\xec\x13\xa8\x20\x56\x9e\xbc\xb9\xfd\x83\xf4\x04\x5d\x56\x0a\x6b\x33\x35\x59\x2a\x27\x6b\x2d\x04\x3c\xd5\xb1\x03\x16\x28\xb0\x56\x1f\xba\x67\x2c\x49\x30\xeb\x6f\x64\xfa\xf2\x45\xb9\xf9\xc2\x51\xd6\xa2\xf5\x07\x93\xce\x63\xa8\xcf\x9b\xef\xd3\xb5\x1d\xab\x28\x08\xc4\x03\xb6\xc2\xdb\x72\x11\xd0\xe9\xe7\x30\xea\x51\xd3\x31\x2e\x64\x18\xf5\xe0\x4e\xfa\x08\xb0\xa1\x61\x36\x0a\xa8\xc8\x35\xbd\xcc\xe2\x35\x44\x15\x11\xce\xca\xa5\xda\xcc\x57\x5b\xb4\x71\x2a\xa9\x65\x0f\x91\x96\xf4\xb4\x09\x9f\x6c\xdb\x16\x2b\x09\x70\x4f\x95\xb6\x0a\xd3\x5f\x79\x1c\xb8\xc0\x0a\xf5\x6a\x85\x2c\xa6\xe3\xf8\x38\x76\x2c\xa6\xd9\x83\xe8\xad\x63\xa4\xbb\x9e\x3d\xa7\x76\x2e\x06\xf7\x4e\xbf\x81\x61\x6a\x8d\x62\x89\x86\xb9\x8a\x6d\xf3\x8e\x50\xe6\x08\xa5\x8b\x3c\x8b\x7a\x6e\x52\x61\xaf\xde\xac\xe1\x53\x81\x02\xb6\x39\x22\x82\x38\xb3\xcf\x80\xdd\x0d\x17\xc7\x25\x91\x3b\xf0\xfc\x2d\x70\x4e\x8e\xd1\x22\x91\xb2\xbb\x50\x24\xf8\xcc\x10\x45\xee\x5a\xe3\xc2\x3b\xa7\x4d\xfe\x80\x64\xd0\xa3\xef\x56\x6e\x10\xe5\x63\x3d\xfa\x78\xb0\xda\x60\x76\x34\x18\xd2\xf7\x22\x20\x3c\x75\x5e\x08\x3c\x0e\xdc\xdd\x98\x12\xef\x59\xc0\x4d\x0b\x12\x61\x69\xc6\xf7\xb7\xf6\x30\x70\x25\x47\xe6\x72\xce\x86\x0e\x50\x83\x07\x38\xa5\x77\x4d\x79\x68\x1d\x63\x3b\x93\x64\x9c\xdd\xa8\x9a\x71\xb5\x64\xe9\xbe\xda\x88\xae\x2f\xdc\x37\x82\xac\x3d\x81\x2f\xd0\x9d\x71\x3c\xd7\x1f\x68\x83\x8e\xfc\x62\xda\x0d\xe5\xeb\x3f\x87\xdd\x6b\x3b\x96\xce\x82\x74\xb7\x5c\x04\x54\xf4\x81\xd3\x85\x4e\x2c\x18\x90\x9d\x94\xe2\x62\x03\x9d\xb0\x18\x07\xef\x6c\xc5\x2f\x56\xa3\x5c\x8f\x73\xc9\x82\x28\xc0\xcb\xb2\x6d\xd1\x66\x54\x67\xe6\xc2\xe0\xe4\x25\x18\x5d\x3a\xd6\x87\x33\xd1\x53\x21\xb1\x58\xdf\x1b\x03\xdd\xb6\xc9\x0d\x7b\x59\x70\x0a\x6f\x96\xbe\x8a\x80\x51\xcd\x87\x1a\x54\x63\x42\x90\x47\x86\xd7\x43\xdb\xb3\x20\xe1\x03\xc1\x05\x9e\x82\x29\xdd\x86\x66\xe6\xa6\xef\x5f\x7f\x55\xb0\xf5\x64\xe1\xc8\xdd\xb5\x7b\x2e\xb2\x1c\x20\xfb\xa7\x38\x08\xdc\x65\x3a\xd0\x32\x0d\xfe\x14\xf2\x8d\xce\xf9\x5e\x20\xce\x50\x89\x9b\x63\x47\xc3\x6d\x24\x6b\xea\xba\x5f\x66\x41\x6c\x54\x0a\xcb\x0a\x88\x1d\x10\xd3\xc5\xfd\xd4\xe0\x6a\xb9\x71\x0c\x22\x2f\xb9\xe7\x5f\x53\x6a\x58\x73\xe1\x89\x1c\x6e\x28\xfc\xdb\xb1\x72\xb6\x8e\xb8\x78\xe7\xd0\xb1\x0c\x1a\x18\x3d\x79\x37\x93\x48\xf6\x24\x3e\x9d\x7d\xa1\x20\x03\x24\xf5\x6a\x39\x75\xb0\xf4\x23\x53\xea\x4a\x84\x93\xcd\x10\x88\xd1\x9c\x89\x73\x6a\x83\x03\x19\x59\x9c\xd7\xd8\xb0\xc3\x19\xfc\x5d\x10\x25\xe9\x67\xc6\x6c\xed\x62\x78\x3f\xb5\xb9\xd2\xfd\x4c\x24\xf6\xd5\x39\xe4\xca\x48\xdd\xbb\x9f\x88\xf4\x19\xac\xb5\x31\x0a\xbe\x35\xbb\xf7\x8c\x13\x9b\x75\xaa\xc8\x1e\x47\x43\xd4\xa8\xe3\x7a\x45\x03\x91\x45\x9f\x6f\xe4\xbb\xa1\x0c\xdc\xd6\x2e\x94\x03\xab\x38\xb0\x5b\x46\xbd\x61\x15\x64\x63\xca\xda\x2b\x07\x1b\x84\xe5\xc9\xdf\x52\x15\x30\xa5\x1b\xf6\xee\x4f\xf6\xe7\x24\x51\xf8\xb4\xc2\xf3\x76\x39\xb2\x68\xd1\x6e\x80\x40\x64\x7f\x9c\x20\xcb\xe7\x20\x15\xc4\x4d\x1d\x0f\x53\xb0\xa7\x31\x3c\x7d\xc7\xac\x39\x4b\x5f\x6e\x3c\x31\x8d\xa7\xe1\xc6\x7a\x3d\xd1\x78\x66\x1a\xcf\x53\x57\xc7\x36\x66\x1f\x95\xe5\x38\x11\x6c\xe7\xe6\x83\x97\x0a\x43\x1b\x31\x2b\x74\xdf\xb5\x8d\x99\xa5\x54\x27\x26\x87\x6d\x2f\xf3\x82\xe2\x56\x81\x62\xd4\x66\x66\x45\x21\x11\x45\x7d\x98\x05\xe7\x7c\xa5\x53\x1f\x23\x29\xb0\x51\x2f\x36\x59\xbf\x6c\xe6\xb0\xc6\xb0\x7c\xc6\xd0\xbf\xb0\x9e\xae\x29\x45\x2e\x6e\xc6\xf0\x6b\xb4\xdb\x46\xbb\xb2\x91\x6b\x85\xbd\xf0\x9c\x3d\xc3\x8d\x51\x61\xa3\xb0\xe9\x79\x53\xb4\x9f\x69\x73\xfa\x65\xce\x1c\xfd\x19\xb5\x2e\xf4\xd7\x83\x4f\x06\x03\x70\xaf\x1e\x5b\x9c\xb4\x4c\xbc\xf6\x95\x88\xa4\xd6\xb5\xd9\x2c\x39\xfa\x9a\xa4\x07\xaf\x90\x85\x77\x34\xf2\xa9\x18\x10\x55\xac\x67\xc7\x38\x4d\xc8\xb3\xc3\x90\x71\xa0\xa7\xb4\xeb\x94\xa4\x6b\x9f\x23\x8e\x58\x2d\x13\x6b\x34\x17\x33\x93\xfc\x60\x2e\x4a\x05\xca\x73\xc0\x13\x02\xd2\xe0\x0c\x64\x66\x07\x4f\x68\x08\x69\x1b\x8d\x7c\x65\xb3\xa5\x78\x45\x49\x4e\xa4\x1e\xfc\x1a\xec\x46\xb3\xb8\x85\xbc\xdf\xb7\x12\x0e\xaf\xcd\x6b\x6f\x3e\xd2\x72\x69\x4a\xed\xf7\xe3\x24\xf8\x81\x56\x44\xf9\x5a\x53\x09\xcc\x2e\xe0\xf0\x91\xd6\x6f\xea\x12\x49\x69\xc4\xc4\x5a\x1e\x23\x61\x8e\x50\x5c\x7b\x3a\x67\x01\xae\x0f\x47\x1f\xe6\x3d\xe7\x5c\x51\x1d\xcf\xf7\x1c\x75\xf6\x81\xf6\xf0\x53\x35\x15\x09\x8a\x44\xbf\x9b\x39\x3a\x36\xb4\x61\x99\xfe\x10\x3b\xae\x8c\xcb\x40\x01\xa9\x2a\xd7\xf3\x97\x4e\x40\xe1\x17\x51\x5d\x23\x61\x1d\x2c\x1a\x52\xfd\xf3\x27\x84\x95\xe3\x4d\x2e\x55\x91\xa2\x79\x11\x54\xd9\x06\x45\x51\xef\x5d\x57\x94\x7f\xf1\xdf\xf5\x4c\xbd\xe4\x13\xad\xc2\xbb\x39\xb0\x17\x18\xaa\x2e\x9e\x3f\x8f\x9d\x83\xc2\x64\xbd\x84\x18\x9c\xdd\xa4\xe7\x8c\x9b\xf1\xd2\x15\x45\x90\x42\xdf\x69\x5c\x9d\x85\x10\x37\x9f\x98\x16\x33\x7a\x9e\x16\x85\x07\x58\x1a\xb3\xeb\x4c\x79\x9c\x19\xb2\x2c\xbf\x63\xa5\x00\x16\x00\x1a\x23\x4e\x94\xe0\x48\xaf\x62\x4f\x40\xd9\xc4\x6e\xa4\x61\x39\xe2\xfc\x99\xf0\x24\x86\x4e\x34\xd3\x29\x38\x44\x0b\x5a\xdc\x9b\xe5\x6b\xf7\x75\xd3\x65\x3e\x14\xfe\x16\x5a\x53\xbe\x6d\x59\x6d\xb0\x71\xb1\xcf\xe8\x56\x3d\x8e\x27\x49\x94\xcb\x1d\x09\xd9\x65\x97\xc3\xc7\xf8\xb3\x4b\x51\x61\xeb\x3c\xb4\x85\xef\xe3\x76\x9b\x68\x6d\x81\xc3\x7a\x89\x05\xe4\xef\x2c\xe6\xf6\x2f\xb5\xf3\xf7\x8a\xeb\x14\xde\x20\x71\x8a\xae\x01\xdb\xd3\x94\x27\xf6\x89\x5b\xd0\x49\x10\x82\x02\xcc\x84\x60\xad\xb3\x29\x65\x8d\xa0\xd0\x00\x4a\x37\xb4\x1f\xfb\xdf\x56\x7f\xea\x3d\x8b\x70\x15\x8d\xb1\x63\xea\x5a\xc0\x1c\x6a\x59\x66\xa8\xd9\xac\x22\x8f\x20\x4b\xfb\xef\x5e\x2d\x8d\xa7\x6b\x71\x9d\x82\xdb\x79\x8b\x2a\xb9\xb6\xbf\x7a\x57\x58\xf5\xab\x49\x2c\xa3\x72\xe3\x90\xad\xe1\x09\xf5\xbc\x8d\x1a\xdc\x49\xa7\x38\xae\x7e\x07\xba\x68\xdd\xd0\xc5\xfe\xeb\x87\xcc\x4d\xde\x28\xe1\x2b\x9a\x12\xd8\xbc\x2d\xce\xc4\x8e\xb9\x20\x69\x87\x39\x8c\x47\xf8\x48\xe8\xed\xc8\x17\x90\x8c\x8a\xde\xd5\x7a\x93\x1d\x46\x18\xe2\x3a\x67\x5d\xf8\x2a\x7b\x53\x7f\x4e\x01\xa8\x8e\x43\xc6\xf2\xca\xb3\x86\xe1\xd5\x34\x74\xaf\xfb\x96\x41\x0c\xfe\x3c\x57\x51\xc1\xee\x31\x7f\xe7\xb3\xbf\x13\x6a\x0a\x53\x1a\x06\x5b\xd9\x14\x15\x17\xb6\x30\x69\x11\x32\x6a\x06\x32\x0c\x4e\x4a\x1c\xb9\xc5\x45\x6c\xed\xb9\x13\x79\xbf\x5d\x61\x0f\xb6\x77\xf6\x50\xd8\xf7\xf9\xc6\x30\xfc\x1b\xb4\x55\x9c\xba\x4e\x0c\xf3\xbe\xa9\x1b\x77\xfb\xc1\x4b\x40\x28\xbc\xa1\x6b\xe3\xc4\x91\x3d\x6a\xc6\x33\xbe\x00\x77\x91\x34\x09\x4a\xbc\xe7\x9a\x85\x39\xb9\x78\xf3\x2d\xe6\xea\x9e\x4d\xf8\x8b\x0a\xb4\x8e\xec\xb6\x33\x74\x2b\x1d\x75\x10\x97\x38\x12\x84\xd9\xb7\xed\x61\xc9\xd7\x77\xfb\x97\x9b\x94\x65\x13\x4e\xb6\x3b\x74\x82\x2c\xab\x2f\x37\x61\x7f\xa1\xc6\x98\x39\x41\xd3\xcf\x25\x60\x43\x6f\x36\x66\x0a\xdb\x97\x3f\xb3\xd2\xb0\xbe\x44\xf7\x49\xdd\x15\x68\xd8\x35\xbe\xc0\x76\x86\x3c\xff\xbe\x3f\x68\x9e\x12\x4b\xd0\xe6\x45\xd9\x71\x14\x0b\x2b\x25\xb5\x3a\xb1\xb6\x80\x3a\x31\x75\xd5\x92\xbe\xd7\x06\x7b\xcc\x4c\x91\x09\xaf\x7e\xe1\x3c\x2e\x62\x20\x0d\xe8\xeb\xd3\x9f\xe7\xba\xd0\xd8\x04\x48\x93\x24\x8a\xa2\x16\x5d\x1b\x67\x49\x3b\x0d\x25\x79\xed\xd8\x14\xbc\xf6\xf2\xd3\x17\x6a\x7d\xa8\xc2\x8d\x8b\x6b\x2f\x3f\xc3\xeb\x8e\x12\xa1\x97\xef\x84\xf6\x9d\xf3\xa0\x8b\x1c\xdc\xc6\x5a\x8b\x53\xc2\xcf\x8a\x9e\xb2\x52\xcf\xb0\x85\x76\xcc\xc3\xea\x99\x34\xbe\x17\x1f\x3c\x7b\x08\xf9\x6b\xda\xd3\x40\xbb\xe0\xcf\x90\xe0\x36\x54\x5f\xd1\x35\x72\x9c\x61\xa6\x0d\x29\xbe\xd3\x53\xca\x79\x73\x1b\x9f\xb7\x1c\x0d\xa9\xa3\xe0\xf6\xf9\x90\xbe\x03\x6d\x77\xb8\x03\x2d\xff\x76\x34\x7e\xe6\xae\xc8\x2a\x89\xfc\x4b\xa4\x70\xa5\x92\x97\x0a\xd1\x2b\x45\x36\x58\x7f\x7d\xcd\x23\xbf\x17\x03\x1b\x88\x58\xa8\x5f\x65\xbe\x2d\xe8\x26\x5c\x43\xd5\xdc\xc7\x90\x3b\xfd\x3e\x70\xa4\xc1\xdd\x00\xce\xc4\x05\x47\xc4\xbd\xf1\x08\x33\xb1\xea\x72\xdd\x8c\xdc\x1e\xc9\x47\x64\x93\xe3\xb0\x61\x6e\x52\x50\x87\xb2\x17\xd5\x38\xf9\x30\xd3\x1b\x83\x39\xc6\x85\xed\xac\x41\x4f\x90\x17\xd6\x1a\xba\xa6\xc2\x7d\x7b\x2c\xae\xc7\x42\x3f\x22\x4a\xc8\x97\x84\x17\xbd\xd8\x51\x56\x32\x41\x3c\x3a\x2b\x21\xdb\x23\xa9\xf4\xb9\x74\x13\xee\xb2\x6f\xb6\xff\x81\x19\x43\x64\x6f\xa7\xe4\x95\xda\x36\x9e\x24\xa6\x2a\x7f\xd3\xfd\x7e\xea\x7e\xdf\x75\x93\x14\xeb\xcb\x5d\x22\x27\x25\xac\x99\x4e\x5d\x79\xbb\x34\xad\x0b\x12\x32\xe8\x4c\xd8\x10\x90\x6d\x62\x25\xc3\xae\x6c\x96\xd2\x0b\xf2\x61\xa5\x73\x5e\x20\x9b\x07\xcb\xe9\xbf\x0b\x9c\xdb\xdf\x30\x90\x9f\x76\xf4\x54\xbe\xaa\xcb\x2e\xcf\x1d\xed\x95\xab\x9e\x08\x97\x24\x99\x30\x7a\x26\x66\xce\x01\x87\x29\x5f\xb1\x07\x13\x7a\xbb\x01\x43\x13\x40\xc7\x96\x67\x19\x4d\xc2\x12\xee\x46\xa7\x9b\x9b\xfa\x5e\xeb\x9a\x73\x05\x08\x54\x29\x38\xc5\x21\x15\x9b\x2f\xc7\x12\xaf\xc2\x48\x3c\xa4\x5b\x0f\x67\xb0\xee\x90\x57\xbf\xbe\xfd\xbb\x94\xab\xaf\x14\x3e\xb5\x15\x1c\xaf\xa9\x4a\x82\xb0\x03\x03\xca\x12\x94\xd0\xa0\xe5\x62\xad\xea\x04\x7c\xbc\x84\xb4\x70\xeb\xdf\x88\xb3\x7d\x2c\xa8\xac\x29\x38\xd7\x98\x70\x96\x0a\x9c\x35\x08\x33\x4d\x81\xb3\x46\xc2\x0e\x46\x5d\x47\x85\xdf\x17\xfe\x5f\x2b\xda\xef\xa3\x07\xb1\xe3\x51\xc8\x81\xde\x10\xf1\xff\x29\xaf\x5a\x0f\x01\xb6\x99\x7e\x12\xdc\xa7\x2b\xc0\x94\xd8\xb1\xdc\x5c\x9b\xe6\x4f\x76\xd7\xc2\x92\xb3\x21\x56\x31\x27\xfe\x4d\x15\x44\x16\xec\xee\x6a\x7c\xba\x96\x52\xaf\xb2\x7a\xb0\x50\x52\xf6\xde\x4f\xfc\x4a\xd3\x5a\x21\x8b\x35\x6e\x9d\xe0\xd6\x66\x70\x10\x5b\xbb\xc6\xd8\xb8\xbb\xa0\x15\x55\xfd\x54\x51\xf1\x12\xfd\x4c\xd3\x24\x74\x80\xb8\xbd\x8f\x2e\xe5\xa6\x32\xc6\x2e\xf5\xbe\x38\x0e\x7e\xaf\xc5\x9b\x3f\x5c\x56\xd5\x75\x47\x28\x4b\xb9\xf8\x3e\x6d\xc1\x53\x0d\xa3\xe8\x53\x3a\xb3\x05\x95\xb1\x9a\x12\xda\x66\x4f\xbc\x2c\x89\x93\x9f\xdf\x22\x1e\x2e\x3e\x0b\x26\x12\xbd\x13\x43\xbe\x0e\xfa\x51\xfb\x0f\x67\x35\x5e\x83\xa5\xd7\x2e\x51\x25\x7f\x71\x72\x88\x20\xb4\x0e\x84\x71\xc9\x6d\x42\x28\xa7\xbb\xcc\x8a\x90\xb5\x46\x64\x87\x24\x51\xd3\x97\xfe\xab\xc3\x98\x56\xed\xb6\xf7\xba\xdd\xee\x5e\xac\x58\xc2\x09\x57\x77\x24\xf0\x3d\xd5\x5f\x70\x87\xe1\x31\x17\xd3\x4c\x52\x09\xe7\x6e\x61\x0f\xe1\xa1\xa8\x25\x34\x32\xae\x2e\xfa\x14\x0e\x2a\x14\x41\x74\x42\x46\x3b\xc3\x9d\xa6\x9d\x64\x25\xaa\x3c\x59\xf2\x59\xdc\x3c\x8c\xb9\xb8\x45\x4e\x55\xfd\xb8\x9c\x6b\x15\x90\x53\x77\xe5\x39\xb9\x07\xdc\xfb\xa7\x5d\x4c\x7b\x45\xed\x8b\x74\x7e\x83\x0b\x7e\x94\x8b\x90\x54\xf8\xc8\xba\x92\xf7\xa0\xcb\xc9\x58\xd4\xd3\x25\x97\xa7\x27\xf0\x80\x0c\xe2\xc8\xd4\xe5\x91\xf4\x9e\x48\x87\xc4\x60\xe7\x8f\x41\x15\x53\xd0\x18\xc0\x63\x0a\x0f\x27\x38\xb8\x5f\x3e\x41\x6a\x8f\x81\x19\x5d\x4c\x17\xf1\x68\x92\x58\x73\x89\xd0\xcc\x16\xc8\x8c\x8a\x0a\x50\xbe\xca\x68\x76\x20\x8b\x66\x79\x98\x70\xb6\x59\x08\x50\x36\x14\xd6\x50\x7f\x65\xa0\x7f\x3c\x1d\x73\x17\xdf\x15\xbd\xfb\x46\x3f\xb7\x9c\x38\x3e\x8c\x1a\xe4\x50\x54\x45\x4a\x7c\x49\x16\xce\xd7\xbb\x09\x6e\x4f\x28\xa5\xf2\xc1\xc6\x95\x16\x83\x37\x02\xfd\xa6\x2b\x41\x1c\x00\x62\x9b\xe6\xdf\xb2\x74\x43\xb6\xe9\x70\x9f\xeb\x34\xa3\x53\xb4\xe6\x43\x7f\x41\xdf\xea\x75\x66\xf8\x2b\x9f\x3d\x26\xaa\xad\x4a\x3b\x7c\xfb\x60\x31\x26\x7c\xf4\x10\x49\xb7\x4c\x02\xe1\xaf\x78\x57\xb9\xa3\x7c\x09\xa8\xf4\xca\x7c\x40\xd3\xd7\x0f\xdd\xff\x28\xfb\x51\x1a\x07\x42\x74\xf1\x55\xe1\x26\x90\xe2\x71\x68\x74\xa7\xa4\xb8\x2e\xc9\x2a\x56\x46\xd8\x5f\x3e\x81\x0d\x76\xde\x9a\x16\x7a\xf8\x00\xfe\x04\xf1\xa7\x84\xb8\x63\xae\x23\xd8\x18\x73\x65\x56\xce\x8f\x31\x99\x70\x48\x31\x47\x4a\xb7\xfe\x22\xea\xa4\x18\xe5\xc2\x3d\x69\x42\xa8\xeb\xc6\x5f\x9c\x3e\x0e\x25\xbc\xc7\xd9\x98\xcb\xbd\x5b\x5c\x43\xab\xa6\x63\xd3\x5a\x04\xbd\x71\xc3\xd2\xd8\x68\xab\x48\x9f\x53\xc6\xd1\xd6\xf8\x8b\x35\xf7\xaa\x79\xf3\x4f\xbf\x35\x3c\x71\xd1\xba\x70\xaf\xc6\xad\x51\xd8\x2d\xfe\xf0\xdb\xc2\x06\xc6\x92\x13\xe5\xe1\xd4\x6a\xd1\x6e\x3b\x03\x18\xda\x26\x34\x56\x28\x12\x16\xfb\xe9\x38\x33\x6c\x5c\xfa\x79\xd8\xe3\x58\xa6\x26\x69\x66\xa7\x89\x64\x6f\x68\xaf\x16\xc9\x8c\xbc\x9c\x6d\xed\x0e\x7d\xf8\x20\xf7\x10\x88\x53\xb4\xa6\xe5\x25\xa2\xd2\xb6\xa6\xc9\x7f\x51\xda\xff\x45\x69\xff\x6b\xa2\xb4\x0f\x48\xd0\x76\xc4\x2e\xaa\x4c\x92\x6c\x26\x7b\x90\xec\x3f\x95\x47\x14\xc1\x28\x0b\x8a\x09\x6d\x51\x69\x0e\x4a\xc2\x44\x86\x92\x7d\x6e\x83\x11\x51\x53\xfa\x98\xd7\x60\x40\x0d\xa6\xb9\x0d\x8a\x42\x5d\x5a\x84\x38\x46\x56\xf6\x05\x62\x65\xf4\x1e\xac\x36\x2d\x7e\x88\xbd\x0c\x70\xe2\x0e\x27\xb2\x86\xa7\xfa\x87\x59\x83\x86\xf9\x9c\xd7\xf1\xb4\x9f\x3b\xab\xff\x5e\xfd\x6f\xbc\xd2\xc9\x87\x06\xfe\x6e\x12\x7e\x0d\xf6\x1f\xa3\xb9\x93\x57\x02\xc1\x48\xa5\xee\xd1\xdc\xda\x8c\x17\xbd\xd8\xc2\x96\xab\x09\xfd\xbd\xcb\x95\xc4\x3f\x5d\xf2\x37\xb7\x2c\x5c\x42\x01\x81\xa2\x1c\x18\xd9\xe0\x89\xb3\x2e\x49\xf2\x19\x23\x74\xa9\x94\x92\x0c\xdb\x1c\x7b\x09\x05\x14\x94\x1d\x82\xf1\xcb\x10\x7a\xf9\xa3\x0a\xb4\x49\x6d\xff\x23\x3b\x47\x83\x8f\x4f\x19\x74\x10\x23\x74\xd1\xe1\x4c\xaf\x6b\x9d\x98\x3b\xaf\x9c\x06\x8f\x28\xc2\xbf\x0a\x54\xad\x7e\x7a\x16\x45\xef\x1b\x3b\x32\x1c\x98\x09\x46\x36\x58\xea\x19\x2e\xe8\xbf\xde\x8c\x18\x1e\x2e\xe7\xcc\x3b\x49\xa4\xf3\x52\x1c\xdf\x46\x51\x6f\xa8\x1d\xba\x89\x1f\xef\xa9\x74\x55\x23\x95\x37\xfa\xef\x51\x14\x15\xc9\x16\x15\x2c\x4c\x64\x2f\x3e\x4e\x1d\xdd\x56\x2a\xf2\x1a\x36\xc1\x6d\x16\x7f\x73\x31\x5e\xf2\xc2\x28\xa4\x8e\xe9\xb2\x9d\xd3\xac\x3f\x31\xb9\x7c\x26\x67\x66\xa0\xed\xaf\xc9\xb1\x94\xf3\x61\x5a\x10\xf3\x9d\x93\x54\xa0\x01\xdf\x60\x3d\xd9\xf6\x57\x8d\x98\x32\xea\xac\x35\x96\xc8\xb3\x87\xc0\xba\x52\x89\x96\x66\x00\xc9\xf9\x51\xa3\x16\xbf\x0e\x3f\xe5\xa1\xb4\xfa\x02\x2b\x4d\x9b\x7d\xca\x1f\x21\xc2\x2d\x71\xae\x6f\x7e\x51\xc4\xeb\x84\x86\x53\xc5\x72\xa3\xba\x7a\x7f\x19\x7f\xd8\x24\x51\xb4\x49\x06\xe8\x7c\xfc\xf8\x61\xac\x73\xd1\xae\xcf\x02\xb0\xa2\xe3\xac\xda\xf7\xcf\x84\x29\x4a\x75\x35\x4a\x24\xe7\x4f\x9b\xee\x82\xd5\x2f\xb9\x6e\x19\x5e\xa8\x45\x42\x3e\x37\x5c\xdc\x66\x13\xe3\x1e\x82\xf5\x58\x4c\xa0\xeb\x9f\x84\x6f\xc3\xab\x23\xfc\x09\xdd\xf5\x43\x8e\x00\xd3\xba\x76\xc5\xb9\xa8\x44\x92\xd9\x76\xea\x0e\x70\xd4\x8c\x03\x59\x71\xf3\x41\x99\x6a\x6a\x0c\xe8\x9c\xc1\xde\x18\x0f\x95\x6f\x51\x14\xe9\x7a\xf0\xb7\xcb\xa9\x8c\x85\x33\xf7\x74\x27\x7c\xd0\x90\x93\x16\x85\x20\x24\x8e\xcb\x44\x47\x5b\xd0\xd5\x1e\xfc\xb5\x12\x1b\x72\x53\xcd\xe9\x4e\xb1\x58\xe1\xe9\xd2\x69\x3c\xde\x58\x5a\xec\x9a\x3a\x52\xb3\x32\xe1\xf5\xe8\x42\x1e\x56\x0d\xa1\x0a\xe3\xca\xa2\x8c\x8c\x28\x6e\xe3\x31\xb4\xfb\x68\x8c\x4c\x33\xb3\x94\xed\x8c\x1c\x8d\x88\xe6\x9b\x29\x93\xc3\x1c\x43\x41\x22\x9a\x4d\x39\x3e\x4d\xe2\x4b\xa0\x83\x67\xb8\x44\xfa\x73\xd5\x55\x3f\x89\xa2\x7e\x32\x47\x8b\x55\x9a\x80\xfa\xab\x6e\xe7\xbb\x29\xdb\x76\xd9\xcb\x35\xfb\xf1\xae\x1c\x9f\xde\x29\x79\xe3\x50\xbd\xee\x92\x28\xda\x25\x6b\xae\xa2\x5b\xe5\x8b\x5a\x95\x8d\x2b\x75\x7e\x32\xad\x3a\x58\xb4\x2f\xea\x90\x41\x4b\x13\xba\x60\xe9\xeb\xd6\x75\x5d\x80\x44\x9e\x10\xd1\x4e\xe1\x5f\xb6\x38\x18\xd7\xa6\x1b\x6e\x86\x49\xcc\xa6\x74\x4c\x34\x33\xf3\x17\x8a\x64\x69\xee\x6c\xc4\xde\x7a\xa6\x6c\xee\x21\x80\x8b\x29\x6d\x91\xb6\x00\x48\x0d\x47\x19\x7a\x7f\x3e\x35\x12\x8b\x3e\x3b\x92\x69\x60\x24\x76\x71\xe7\xa7\x47\x62\x1b\x4e\x33\x23\x01\xac\xda\xf3\x0b\x5c\xee\xf8\x51\xb6\x23\x85\xd0\xb3\x5c\xb7\xda\x14\x39\x1c\xd1\x85\x05\x41\x87\x0b\x73\xd5\x5c\x00\x8d\x29\x2c\xae\x6f\x05\xd0\xc2\x08\x06\xb3\x37\x02\x28\x4c\xa1\x78\x7b\x2b\x80\xfe\x8c\x18\x61\xfa\x56\x00\xc3\x19\x71\xbd\xe9\x5b\x01\x8c\x31\x82\xf9\x5b\x01\x4c\x66\x30\x71\xbc\x15\xc0\x6c\x46\x9e\x38\xeb\xb7\x02\x58\xcc\xe8\x54\xd9\x9e\x07\x40\x3d\x73\x01\xac\x30\x82\x7d\x16\x80\xfa\xe2\x65\x00\x9b\x19\x31\x92\xe3\x5b\x01\xec\x66\x64\x61\x28\xbf\x15\xc0\x61\x86\x10\x84\xb7\x02\x28\x61\x04\xf5\xb7\x02\xa8\x00\x89\xcd\x30\x80\x23\xab\x09\x80\x2a\xcb\xa9\x58\xf6\x6c\xc9\xa2\x46\x83\x07\xd9\x5d\xf3\xa7\x08\xa9\x75\xe1\x28\xb9\xd4\xd5\x12\x0d\x32\x17\x2e\x2e\xe5\x64\xf5\x68\x0c\x97\x66\xa0\x5f\xdc\x39\xbc\x89\xa1\x4f\x13\xe9\xb7\x63\xe7\xd4\x94\xbe\x2c\x7a\x2e\xf7\x19\x51\x49\x64\xba\xb7\xe2\x76\xea\xbe\xc8\x0a\x74\x56\x5e\x2e\x43\x82\x46\x5e\x88\xdd\x2f\x71\x37\xb8\x8b\x60\x3e\x7c\x98\x0e\x9c\x10\x62\xc5\x14\x15\x21\xa8\x65\x10\x8f\xcf\x83\xfa\x10\x45\xd1\x02\xf6\x40\x06\x90\xf1\x63\xa5\xd8\x15\xeb\xf9\x22\x2c\x6f\x2c\x83\x41\x9a\x2f\x96\x21\x3f\x4e\x91\x42\xfd\x4f\xeb\x9e\x60\xbf\xe5\x56\xfc\x71\x95\x2a\x8b\xa5\x6b\xf7\xe3\xfa\x43\xe8\x63\x6e\xc5\x1f\xd7\xbf\x12\x43\xae\xb8\x1f\x37\xff\x14\x5a\x18\xed\x6f\x5c\x71\xbf\x9b\x23\xc9\xed\xb1\xef\x60\x93\xbf\x5f\xce\xec\x6b\x97\xda\x22\x9f\xd8\x72\xbe\x6c\xfe\x24\x17\x90\x44\x36\x7a\x43\xef\xf6\x30\x56\x24\xd0\x1f\xc0\x5b\x6f\x20\xa3\x06\x04\x74\x16\x13\xce\xa7\x01\x6d\x82\xab\x51\xec\xac\xa5\x4a\x1e\x0a\x69\xc2\xfe\x74\x96\xd7\x5b\xf5\x66\xcf\x59\x3f\x6f\x59\x0b\x3d\x67\x81\xbc\x75\xdb\x93\x31\xfd\xf8\x2b\x88\x9e\xe9\xbd\x95\xf0\xe9\xea\xd1\x91\x9b\xf6\xa3\x47\xaf\xc2\xcb\x47\x03\x0f\x29\xdb\x52\x47\xa5\xe3\xe4\x8e\xb9\xfe\x68\x6d\x85\x88\xa5\xc2\x95\x1e\xae\x79\xeb\xb0\x1d\x8b\x54\xd2\xad\x3b\x5c\xe6\x26\x52\x93\x61\xb4\x16\xf3\xf7\x5b\x8f\xe6\x89\x1f\xfb\xc7\x62\xa3\x30\xe6\x38\x95\xd2\x2f\xd9\x5b\xac\x4e\x8e\x3e\x10\xd2\x2b\xe7\xd5\x41\xee\xe3\x84\x18\xcc\x1d\x1a\x56\x12\x08\x12\xcf\xce\xb2\x2a\x02\x18\x26\x6a\x6e\xe6\xc1\x19\x11\x66\x8a\x0f\x2c\x88\xe5\xc1\x51\x11\x4c\xcc\x8b\xe9\xb9\xb0\x67\x80\x3d\xc7\x07\x16\xc4\xd6\x85\xbd\xc0\x89\xb9\x3c\x17\x72\x9f\x8d\xa6\x26\xe4\x93\x00\x1c\x5d\xb8\x4a\x98\x30\xf6\x6a\x22\xa9\x2d\xba\xe8\xe3\x88\x1c\xe0\xf7\x0e\xbf\x89\x88\xf1\xf0\x30\x13\x6a\x11\xc3\x96\x7b\x94\x2d\x43\x43\x2e\x0b\x70\xb6\x02\xd6\x83\xae\xb1\xa5\x6b\x2b\xcf\xb3\xd1\xae\x7d\x3e\xd0\xb0\x78\x96\x1d\x0a\xef\xf9\xc3\x1c\xe3\x9d\x27\x9e\x62\xb3\x91\x39\x53\x9d\x12\x84\x6e\xd5\x85\x1a\xf1\xc8\x5f\xc4\xdd\x8d\xba\xb2\x6b\x1c\x88\x19\x45\x6b\x4c\xa4\x62\xd6\xa8\x3d\x95\x85\x25\xb8\xdd\x7e\xee\x78\xcf\xe4\x10\xa2\xc1\xa6\x45\xdc\xad\x12\xff\xc8\x4e\xff\x4d\x7a\x43\x1c\x66\x52\xcf\x76\x0b\x3d\x59\xa2\x1a\x08\xd4\x39\xcc\xd4\x2c\x8b\xc1\x49\xd5\x1d\x15\x37\xe0\xc7\x52\xe8\x60\x9f\x46\x31\x1f\x93\x4a\xcd\xfb\xfc\x38\xf7\xdc\x9f\xa2\x86\x26\x85\x5e\xf3\xc6\xda\x7e\xfa\xf1\x0b\x78\xac\x3a\x9e\x8a\x0a\x4a\x5f\xa7\xbb\xe8\x21\xf8\xc5\xf1\xbd\x3e\x0d\x86\xec\x87\x76\x48\xbd\x28\x8a\x66\x5a\x2d\xc3\x05\x80\x5f\x1e\x8d\x20\x6d\x45\xb0\x47\x77\xe1\xcc\xe3\x13\xdb\x44\x17\x56\xf1\xb6\xcd\x5e\xb4\xd7\xf4\x30\x73\x37\x66\x11\xf9\x45\xf4\x14\x70\xd4\x1d\x66\x89\x5b\xfe\x9e\xd6\x1a\x25\x42\xfc\x71\x7a\x1d\xd0\xf9\xd0\x43\x21\x7f\xfd\xa3\x96\x44\x11\x2c\x91\xed\xcf\xbf\x67\xb4\x5a\xb1\x73\xf7\x0a\x94\xda\x33\xd1\x90\x73\xcf\x92\x7c\xf3\xc4\xa4\x2c\xf7\x50\x24\x52\x25\x2d\x3f\x85\xe6\x2d\x6f\x5e\xb9\xa8\xae\xc7\x5b\x34\xdf\x6b\xc9\xe4\x7a\x79\x07\x82\xbb\x24\x77\x59\xb3\xbb\x8a\xf2\xe0\xf5\xad\x25\x4d\xe3\x37\xdb\xb1\x11\x24\xde\x06\x73\x02\x61\x5e\xcb\x52\xc2\xed\x3a\xe4\x84\x23\xb6\x2c\xd3\x8b\xb7\xd9\xed\x89\x55\xe5\x65\x53\xf3\xa8\x12\x89\x54\x71\xa9\x83\x3d\xa1\x9c\x4a\x17\x58\x4f\x72\xf4\xb6\xbf\x7e\xc6\xbb\xf7\x04\x0b\xc9\x8e\xbf\x39\x77\x6c\x47\xcf\xd2\xe3\xf8\xf4\x57\xbd\x40\x36\x46\xc9\xe9\x19\xa0\x26\xf2\xe4\xbc\xd1\x30\xbe\x3e\xca\x55\x2d\xc6\x19\x9f\xc1\x67\xc7\x03\xcd\x0e\xeb\x65\xac\x72\x76\x6c\x67\xa2\x8c\xc6\x3a\x16\xf3\x59\x72\x7d\xb3\x8d\x6d\x28\x60\x96\x11\xbd\xf8\xb5\xe4\x4a\x3a\xbc\x2e\x0c\xc3\xe7\x1d\x79\xdb\x7d\x7d\x6f\x85\xb5\xbe\x4b\x73\x76\x18\x56\x2e\xfd\x16\x45\xd1\x78\xaa\x59\xf1\x6d\x1b\x64\x92\x39\xa7\x72\x78\xac\xae\x2e\xf6\xf2\xe8\x75\x33\xf7\x71\xde\xa0\xcd\xa5\xb1\x40\xa7\xd6\x53\x71\x9e\xb8\x72\xad\xb9\x26\xca\xb5\xb7\xca\x44\x61\xe0\x8b\xe4\x59\x62\xb6\x83\xe1\xb8\x55\xe6\xb8\x08\xc1\xd1\xb7\xf2\x2b\xc9\x25\x2c\x1e\xf5\x07\xc3\xcf\xf4\x77\xff\x22\x8a\xfa\x74\x50\x8d\x3e\x8b\x86\xee\x66\x74\xcc\xaf\x34\xf5\x44\x3a\x95\xf4\x4c\xe2\xb3\x3e\x89\x00\x38\x48\x5b\xd2\x7d\x0a\x86\x88\xaf\xd2\x71\x98\xb3\x95\x92\x5b\x47\xc7\x1a\x70\x1d\x4f\x97\xc7\x2c\x33\xaf\x4e\xc5\x60\x44\xff\x86\x23\xe1\xfd\xcf\x5c\xb2\x93\x67\xa8\xcf\xfd\xfd\x53\x2a\x73\x0a\xb9\xc8\xd4\xff\xec\x7f\xf8\xac\x01\xf8\xea\x27\xef\xc2\x4f\xd7\xcd\xf0\xf3\xac\x64\x9e\x29\x9c\x72\x8d\x20\x23\xc4\x1e\x73\xa2\xce\x13\x5f\xc4\x35\xb5\x73\x52\x10\xa2\xba\x25\xe9\x12\x83\xac\xcd\x30\x5c\xe5\x42\x9c\x4b\xdf\x5f\x73\xf1\x1a\x2f\x12\x5b\xce\x34\x5d\x24\xe6\xa1\xc6\x96\xf6\xc6\x5a\x24\xd9\x25\x16\xe4\x8f\x1c\xeb\xb1\xd4\xa7\x58\x26\x00\x85\x1e\x74\xd3\xb7\xa4\xde\x5d\x24\xfe\xf6\xb1\x77\xdb\x2b\x4a\x5e\xac\x26\x02\xda\xea\xcb\x0b\xb1\xa0\x63\xce\x04\xe6\x64\xd6\x05\x85\xd6\x25\x59\xb6\xb2\x4e\x5d\x22\x58\xd0\x45\xa4\xa1\xe7\x57\x63\x72\xb6\x20\xa2\x9b\x03\x5f\x8b\x05\x2d\xec\x12\xbf\x2b\xb0\x83\xb2\x7b\xcd\x6a\x41\x84\xb6\xc6\xfb\xd5\x5f\xf4\x13\xee\x8d\x48\x4d\xbd\x87\x96\x64\x32\x20\x2b\xc9\x14\x57\xfc\xca\x94\x4e\x97\xef\x74\x61\xd6\x73\x4e\xc5\x1e\x13\x7f\x66\x6b\x81\x5b\x74\xd3\xc5\x1d\xb7\x7a\x0a\x1b\xfb\x5b\x08\xfc\xba\x4b\xfa\x73\x9b\x71\x29\x46\x68\xcb\x8d\xbd\x69\xd2\xa1\x8a\xad\x20\x3c\xda\xc8\x2a\x9f\x60\xaf\xd9\xcd\xa1\x3e\x9c\xd0\x10\x46\x4f\x62\x91\xf5\x97\xb2\x64\xbd\xa0\x28\xc1\x19\xc5\x53\x71\xef\x13\x2a\x0e\x85\x24\x73\x46\x2e\x4b\x60\x5e\x6a\x51\x8c\xc3\x93\xd1\xbe\x1c\x9b\x52\xe9\x54\x99\x88\x1d\x50\xf5\xfd\x18\x3b\xd6\x21\xf1\x0e\xd8\xff\x26\xbc\x61\xbe\x31\xc2\x2e\x29\x06\xae\x43\xa5\xa2\x35\xe7\x4a\x80\xe3\x4b\x53\xb7\xe3\x2f\x2b\xd6\x9f\xf3\x61\x0f\x05\x87\x59\xaa\xac\xb1\x4f\x96\x3e\x64\xc3\x23\xed\x18\x7d\x09\xdc\xf3\xbb\x6e\xe8\x07\xcb\x30\x66\x6b\xc9\x7c\xda\x82\xcb\x8f\x07\x50\x18\x6a\x9d\xc4\x20\xce\xf6\x22\xe2\x2d\xf4\xd7\xbb\x3f\xf5\x80\xe7\x7f\x39\x58\x65\x3f\x8e\xc0\xa7\x0d\x08\x28\x47\x6f\x7a\xed\xfc\x4f\x0c\x41\x8d\xf4\xdd\x72\x72\xf3\x48\x0a\x7d\x77\xe3\xa4\xfd\x8c\x88\xae\x1e\xff\xb2\x14\x20\xa9\x5a\xd0\x21\x32\x5d\xb8\xe9\x01\xd5\xf7\x47\x72\x2c\xe8\x05\x86\x84\xb2\x48\x90\x96\x98\x03\x1c\x9a\xc2\xa3\x7e\x09\x83\x0e\x5c\x7d\x6a\x69\xe2\xb8\xf8\xc8\x75\xcc\xf1\x57\x62\xff\x9a\x62\xfe\x27\xe2\x6c\x18\x4f\x05\x45\xa7\x53\x07\x81\x5d\x1d\xa1\x65\x94\x24\x9f\x0c\xbf\xf2\x8e\xcc\xa6\xf0\x8a\xd4\xa0\x27\x0e\xcf\x02\x07\xe3\xbd\x65\xfc\x08\x19\x90\xd6\xc6\x80\x33\xcf\x13\xf7\x9d\xe9\x9c\xed\xd4\xc5\xbc\x06\x6b\x40\x58\x7a\x0d\xcc\xf6\x9b\xbb\x0d\x0e\x19\x08\x29\x1a\x6c\xf3\x1a\xec\x7f\x49\x9e\x74\xc8\xf4\x40\x92\x34\xa0\x10\xbb\xdb\xdc\x33\x7d\xe8\xfb\x26\x5c\x01\x10\xa4\xe7\xd8\x9a\x69\xbd\x17\x4e\x7b\x76\xd2\xa0\xb2\x36\x6b\x6a\x0f\x85\x26\x22\xc5\x3e\xcb\xf6\x73\xc0\x6f\x91\x93\xce\xe0\xc9\xae\x36\x96\xe4\x05\xb2\x92\x5b\xed\x25\x7a\x32\x5c\x01\x13\x2e\x4d\x13\xeb\xca\x5b\x9e\x5a\xc3\x8a\x4e\x00\x73\x1b\x19\xa4\x19\xd1\x8b\x37\xf3\xb0\x65\xea\x37\xeb\x28\xe1\x96\x27\x3c\x1a\xde\x41\x5d\xa3\x3a\xae\xf1\x88\xe0\xf6\x87\x66\x96\xc0\xd4\xef\x7a\x5d\x70\x36\xa1\x19\xa4\xd5\x9c\xc0\xda\x31\xff\x25\x84\x8f\x9e\x9b\x20\x54\xfe\xb6\xab\x2d\x38\xe0\x06\x1e\x31\x94\x0a\xbb\x1a\xcb\x33\xd1\x00\xe8\x98\x51\x9a\x4b\xb0\x43\x31\xf9\x9c\x62\xbb\x10\x9a\xae\xd5\xab\x57\x92\x11\x22\x18\x99\x3a\x02\xb5\x85\x6e\x2a\x15\x79\xfd\xaa\xc9\xe2\xaa\x45\xbc\xaa\xd1\x50\x18\xb6\xc7\x15\x0c\x7a\x26\x15\x83\x8f\x76\x29\x68\xd4\x62\x0f\x5f\x68\xb3\xe9\x23\x88\x57\xe3\x4b\x26\x8d\x95\x96\x88\xcc\x06\x64\x82\x39\xe3\x8d\x7b\xee\xab\x7f\x96\x55\xad\xac\xd9\x54\x63\xc5\x6c\x7a\x14\xe9\xdc\x11\x32\xd5\xfc\x39\x74\x12\xa4\x99\x10\x83\x99\x2f\x97\xb2\xc3\x0f\xc5\x02\x34\xc9\xf1\x8d\x02\x91\x29\x18\x68\xf7\x97\x1d\xd4\xde\x30\x45\x2b\x07\xa9\x97\xc7\x3f\x25\x82\xc6\xc7\xd8\x86\x5d\xea\x11\xcd\x7e\x68\x72\x9f\xa0\x34\xfa\x2c\xf1\x34\xcf\x1d\x2b\xfa\x1e\x16\x9c\xa3\x93\xb8\x0e\x06\x8c\xe9\x96\x16\x6e\xea\xc0\x8e\xe3\x82\xea\xd9\x88\xf6\x2c\xfa\xcb\x23\x3e\x1d\xc4\xbe\x02\xf9\xc0\x57\x03\x24\xa8\xd2\x5e\x63\xf8\xb6\x86\x0b\x9f\xbd\x72\xd9\xdd\xd7\x22\x88\x55\x22\xe6\xd5\x27\xb1\x78\x9a\xd7\xc1\x01\xcd\x2e\xc1\x94\xb5\x66\xaf\xfd\x70\x89\x0f\x0b\xaf\xfd\x30\x05\x7b\x61\x46\xb1\xfc\x95\x65\x83\xee\xd4\x92\xff\x2b\x53\x1b\x80\x7d\x95\xbe\xfd\x5e\x9c\x74\x84\xa8\xe1\x5d\xb4\xc5\x59\x04\xe9\x8f\xb7\x6c\x1b\xec\xdf\x1b\x45\x00\xbf\xb9\x80\x5b\x9f\x7d\xc0\xfa\xbe\x78\x02\xb0\xfb\xd7\x91\x36\x02\x02\xfc\x0d\x4d\xaf\x3e\x46\xd1\x8a\x56\x9a\xd5\x55\x64\x24\x8b\xe5\x42\xb7\xbf\x5a\xb6\xf0\x4b\x2e\xa4\x7c\x31\x72\x56\x4a\xbe\x81\xd1\xdc\x13\x28\x6f\x71\x07\xf8\xc6\xa2\x80\x3d\x84\x1a\xb8\xc5\x30\x0b\x27\x24\x9e\xbd\x2e\x24\xd1\xa9\x7f\x67\xe2\x7b\xfd\xa0\x46\x06\x54\x78\xc7\x91\x28\x41\xc6\xc2\x59\x89\x8c\xaa\x83\x83\x23\xae\xf1\xe3\x14\xae\x9f\xb8\xfc\x7f\x74\x5e\x5a\xf8\x73\x24\xc4\x0e\x74\xb0\x28\xd1\x5a\xf9\xac\x49\x4b\x78\x87\x38\x6f\x36\x24\x9a\x36\x16\x70\xbb\x09\xf0\xb5\x2d\x0c\x9a\xe4\x37\xf8\xc9\x9b\x71\xe3\xca\x19\x90\x21\xa8\xca\xe6\xd5\xb2\xb5\x4b\xdc\xe6\xf4\x99\x1e\x28\xde\xf7\x90\x34\x9c\x14\x2a\x38\xcd\xb7\x37\xa1\xb3\xa7\x99\xe4\x5d\x43\x3a\x41\xc9\x48\x66\xde\xc1\xd1\x2b\x1f\x75\xb3\x67\xf2\x15\x9b\x42\x84\x06\x4a\xdc\x9f\xe1\xae\xd4\xdf\xf2\x4e\x92\xa4\x62\xff\x21\x47\x82\x10\x80\xfe\x83\x03\xc0\x58\x66\x03\x00\xaa\x99\xb4\xb1\xfa\x1d\x36\x04\x43\xa8\x2e\x32\x10\x3c\x6d\x97\xa2\x02\x51\x98\xa4\xb9\x10\x53\x63\x24\xbe\x20\xd9\x05\x4d\x04\xad\x05\xbb\x37\x0d\x96\xd6\x7c\x39\xd2\xb6\xa5\xc9\x2d\xb4\x36\xb8\x5c\xb0\x12\x87\x7d\x26\xbd\x75\x9d\xbe\x7e\x5d\xdd\x11\xdb\x42\x56\xee\x73\x76\x8d\x08\xcc\x87\x84\x9b\x91\xff\x85\x95\x0d\xdc\xe7\x05\x18\x8a\x12\x0f\x16\xd4\x0f\xc8\x5c\xd2\xa6\xff\x2a\x33\x46\x0d\xeb\xc6\x8d\xea\xa8\x6b\x9c\xc9\x6d\xa3\xc1\xdc\xdb\x37\x3d\x8e\x28\xc2\x68\xfe\x84\xaa\xd5\xec\xde\x89\x60\x7e\xdf\xed\x60\x80\x97\x06\x11\x59\xd7\x8a\x99\x94\xa9\x7b\x78\x67\x95\x39\xed\x03\x75\x83\x7c\xf9\xa5\xfb\x97\x3f\xa9\x22\x37\x0c\x4d\xa2\x70\xf7\xf2\x17\x03\x7c\xf1\xe7\x3f\x85\x23\x45\xc3\x4f\x76\xa5\x64\xf2\xff\xef\x62\xa1\xbc\x84\x19\x8a\xcc\x48\xad\x1d\x4a\x82\xf7\x1f\x9d\x51\xaf\xda\x38\x17\xdb\xbf\xbf\x67\x4e\x55\xd0\x99\xb0\xa8\xb4\x1f\xe4\x0b\x26\x05\xfb\xfa\x10\x4b\xb0\xa5\x7b\xff\xfb\xea\xbd\x7c\x91\xf9\x5e\x51\xa0\x1d\x0a\x28\x50\x7c\x3e\xb8\x97\x2f\x32\x9f\x0f\xf0\xf9\xbf\x8b\x1c\x21\x5d\xbd\x4a\xf1\xd4\x75\x1c\x75\x04\x58\x71\x90\x9f\x49\x61\xe6\x39\x0e\x92\x65\x0e\xe5\x2d\xfd\xf6\x78\xbe\xf5\x9f\x0f\x8d\xa6\xda\xdb\x0d\x6a\x7c\x8d\x7f\x9b\x32\xe8\xe9\x45\x39\x86\x77\x7c\x27\x5f\x33\xd3\x70\x74\xdd\x56\xd1\x4e\xd7\xd9\xd2\x8c\x0f\xe0\xa6\xb4\xe8\x60\xd9\x13\xaf\xcd\xc0\x59\x30\xf5\xcf\xcc\xa9\x49\xed\xd6\x78\xb4\xb6\x19\x56\xf2\xf8\xae\x8d\xd0\x59\x7c\x12\xc7\xaa\x33\x5c\x92\x88\xc7\x8f\xb2\x0f\x7f\xdc\xf5\x85\xf4\x0d\xb3\x68\x7b\xf6\xfa\x82\x69\x10\x94\x07\xe6\xea\x22\xc7\x5e\x75\x4f\x77\x59\x94\x5d\x76\x31\x05\xcb\xc2\x49\xe3\xec\xe6\x40\x72\x8c\x34\xa1\xce\x69\xb8\xb3\xfb\x53\xfd\xb6\xe7\xfe\x54\xb1\xc6\xbf\xbc\xb9\x36\x5f\xc0\xab\xf0\x3e\x3d\xdd\xa3\x83\x5c\x9a\xc3\x4f\x6f\xa6\x32\x4d\x96\x1d\x4b\x61\x61\x9c\x30\x97\x8e\xd6\x6a\x69\x26\xe3\xae\xc4\x62\x91\x58\x2d\xd3\x72\x91\x64\xb4\x4c\x41\x31\xf0\x2c\xb1\x90\xc7\x97\x16\x28\x8d\x6a\x21\x59\x98\xa4\x86\x1d\xa1\x7b\x64\xa5\xb3\x15\x00\xb7\xae\x19\x90\x2f\x94\x47\x90\x12\xac\x85\xa3\x8d\xbc\x3e\xab\x8f\x47\xef\x76\xa6\xdd\xfd\xf4\x7d\x69\xf7\x8f\x38\xc7\xcd\xa1\xe7\xb8\xd2\x5e\xd9\xba\xa3\xff\x70\xb9\x7a\x32\x02\x77\x5e\x5b\xae\x5e\x3d\xca\x2f\x57\xbf\x15\x8f\xe8\x04\x15\x89\x3b\x77\xf4\x72\x2f\xda\xe8\xe5\x39\xe8\xac\x66\xc8\x0d\x4d\x92\x91\x76\x29\xa0\x76\x07\x78\x11\xdf\x51\xda\xd9\xae\xfa\x5b\x27\x29\xa2\x24\xe7\xc3\x05\x02\x23\x16\x89\xf9\xad\xd6\x83\x7f\x4b\xf7\x5b\x94\x84\x5e\x38\xee\xb7\xab\x34\xe6\x1c\xb0\x57\x51\x74\x5d\xa7\x8a\x4d\xec\x84\x0c\xda\x60\xa9\x00\x0e\x2a\xb5\xa5\x66\xce\x94\x2d\xb3\xbe\x88\x9d\x9e\x97\x25\xe1\x63\xf4\xe1\x26\x8a\x7a\x4d\xad\xef\xa0\x72\x5b\x6e\x7e\xef\xf9\x95\x50\x98\xaa\xa6\xe4\xfa\x48\x4d\x9b\x1f\x65\xd3\xf5\x57\xd1\xf4\xbb\x3a\x1c\x35\xda\xa8\xfe\xe9\xdc\x4d\x8f\x37\xfc\xec\x86\x7b\xf7\x56\xb1\x6d\x5b\x46\x3a\xf3\x15\x8a\x4f\xf5\xbc\xb6\xda\x2c\x7c\x53\x1e\x0a\xa5\x05\xce\x9b\x4b\x93\xe2\xb2\xef\x83\xd0\xee\x4d\xf8\xc4\xb1\x75\x9b\x88\x73\x2a\x92\x12\x0e\x38\x5f\x70\x8d\x89\x34\xb0\x6a\x50\x53\xac\x9e\xb8\xc2\x13\x6a\x62\x2e\x88\x4c\xa6\xe7\x2e\xb4\xda\xe7\xda\x5a\x8a\x0f\x18\xc0\xb6\xe4\xfa\x6f\x2f\x48\x77\xba\x3c\x17\x6e\x85\x6c\xb9\xd5\x4b\xe7\xf3\xa3\x0b\x75\x05\xde\xb3\x3e\x17\x6a\xe9\x9a\x02\xb7\xae\x9d\xcf\xcb\x2e\xd4\x0d\x4f\xe1\x5c\xa8\x85\x8f\xba\x41\xf1\xa3\xf3\x79\xd5\x85\xba\xc3\x96\xda\x9f\x0b\xf5\x80\x5d\x72\xc4\x07\x0c\xa0\xee\xe1\x00\x3b\x6d\xcd\xe1\xdf\x2f\xc1\x1d\x3e\x8b\xda\xb8\xbd\x01\x1d\x49\x87\x25\xeb\xd2\xcb\xe8\x8e\xa9\x70\x3d\xc8\xc2\x1d\x11\xdc\xd6\x8c\x46\x54\x5d\x3a\xe5\x5f\x4c\x07\x14\x26\xbe\xff\xc9\x32\x20\xce\xbc\x07\x03\x9f\x1e\xac\xdd\x4a\x00\x48\x88\xef\xc6\xab\x1b\x98\xd4\xe3\x80\x60\x96\xe6\x7c\x90\xd6\x99\x51\x05\xfb\x1e\xdf\x51\xde\xad\x3b\xee\xc7\x29\x7b\xbf\x42\x81\xb1\xf5\x30\x7e\xb9\xe7\x29\x49\x06\x2d\xb0\xa5\xe6\xe9\x7e\x41\x60\x6d\xc6\xe9\x90\x42\x52\xb8\xa7\xd2\x2f\xa2\xbf\x5f\x2f\xf7\x5b\xa4\x63\xaa\x36\x87\xe7\xd7\xe9\x7e\x51\x29\xa0\x7d\x34\xfd\xe8\x80\x76\xea\xe7\x60\x72\xac\x1d\xd3\x33\x66\x5c\x85\x95\x78\x2e\xb5\x46\x27\xd6\xd9\x68\xad\x46\x68\xa7\xfa\x43\xe6\x7e\xf4\x37\x5e\x12\xe8\x74\x19\x4a\x73\xe0\xf5\x3f\x82\x7d\x7f\xc7\xa3\x9e\x9e\xec\x7f\x67\x84\xab\x39\xda\x8d\x6d\x92\x3a\x3c\x59\x98\x27\x4b\x1f\x16\xe8\x8b\xfa\x9c\xed\x0c\x8d\x9e\xec\xb3\x62\xfa\xdc\x8a\x1e\x90\xc7\x8e\xab\xe3\x30\xfd\x4f\xef\x43\x3d\xe2\x32\x39\x31\x3d\xee\x4f\xf6\xb8\x12\xd9\x44\x00\x1d\xc8\x21\xe8\x9b\x67\x4d\x26\xdb\xe7\xcc\xde\x5d\x41\x3f\xbd\x43\xb2\xa8\x65\x12\xd8\x7c\x59\x04\xb9\xa4\xea\x6f\x19\x9f\x59\xf8\x93\xcd\x92\xdc\xd8\x20\x48\x10\xc1\x2d\x14\xe6\x5d\x30\xae\xda\x4f\x92\x21\x7f\xc9\x39\x35\xbf\xfa\x3c\x5c\x17\x2e\x59\x84\x48\x69\xf3\xac\x87\x65\xd1\x70\xba\x07\x96\x1f\xbe\xfa\xfc\x5c\xcd\x55\x1c\x07\xa7\xa1\x00\x55\xc5\x5b\xff\x04\xd3\xc9\x34\x5e\x09\xa5\xb4\x88\x33\xe7\xab\xae\xa7\x15\x9c\x2f\x3e\xea\xaf\x4c\xb2\x3a\x25\x35\x97\x81\xe1\x46\x4f\xef\xe0\x59\xdc\xec\xe5\x7f\x3b\x1b\xc5\xb6\xec\x61\x1b\x75\x2a\x2a\x4b\x62\x77\x14\x70\xb8\x88\xeb\xc1\x8d\xcb\x54\x30\x79\xe2\x9c\x22\x09\xca\xd6\x3c\xd1\x3f\xda\xe0\x8b\xec\xa9\x0d\x75\xd9\x49\xa2\x68\x92\x34\x83\xc0\xb0\x16\x75\xad\x5c\xbe\xdd\x7e\x95\x27\x0c\x9f\x79\x83\x2f\x56\x26\x5c\x91\xe9\x8f\xe5\xc6\x60\x59\x99\xf6\xb5\x0d\xf6\x02\xa5\x82\xa8\x36\xc8\x83\xd3\x5e\x86\x4a\xd6\x4c\x96\x48\xc7\xbd\x0e\x01\x2f\x91\xd7\xea\x13\x59\x43\x82\x93\x41\x2f\x83\x9b\xff\x9b\x93\xe1\xe5\xaf\x2e\xb3\xb2\xcb\xfa\xca\xb0\x5d\x8e\xe7\xea\x0c\xd6\xac\x87\xe9\xd9\xf0\x03\x0c\xae\xfe\x83\xb4\x1b\x9f\xd0\xe2\x32\x8a\xae\xc6\xf1\x79\x7b\x82\xc7\x91\xc6\x19\xc9\x08\xde\x1e\x09\x92\x1a\x47\x4d\x4a\xf4\x71\x55\xbd\x44\x3f\x5d\x1b\x42\xc5\x60\x06\x43\x68\x5a\x2e\x33\xb2\xf5\xb7\x28\x8a\x26\x6b\xf2\xdc\x1f\xad\x93\x2c\x0c\xe6\x80\x93\x8f\x1a\x99\x4d\x68\x2f\x56\x66\xa3\xe8\xbb\x06\x6d\xc0\xde\xfa\xd1\xf9\xa6\x8d\xb0\xfc\xc5\x45\x14\x2d\x2e\x5a\x3f\x3e\x98\x34\xc5\x68\xc8\x03\xbc\xa2\x12\xa6\xeb\x24\x33\x3e\x35\xc5\x89\xd6\xab\x5c\x8d\x3e\xd9\xd1\x11\x94\xb1\x23\x5d\xec\xaf\x6c\xb5\x20\x1f\xcc\x95\x2e\xa4\x4c\xb1\x3f\x9c\xb6\x94\xa6\xd9\x22\xbb\x6d\x9d\x16\xb9\x46\xbf\xda\xdf\xc4\x6d\x25\x54\x88\x9b\xcb\xfc\x2e\xc1\x94\x31\xf2\x96\x6c\x8a\xfb\x3f\x34\x1c\x13\x34\x5d\xae\x1c\x5a\x2d\xe1\xb2\xe6\x8c\xc9\x8e\x79\x47\x4b\x73\xbd\x96\x4b\xe3\x4c\x1e\x70\x26\xf0\x67\x5a\x07\x70\xa8\xee\x4f\x07\x1d\x68\x77\xb7\xfd\xd3\xd5\x49\x74\x6d\xf9\x14\xb0\xa1\x0e\x9d\x01\x5e\x3b\x17\x58\x89\xcc\x69\x77\xdb\xb5\xe3\xea\xbe\xb9\xe1\x6f\xc5\xc3\x06\x1d\x2e\x62\x5e\xba\xe4\x37\x85\x3f\x3e\xed\x81\x8d\xcd\x8d\xa6\x83\xed\x4d\x3e\x1b\x30\x3c\x36\x1a\x69\xf5\xf2\x90\xb9\x3b\x77\x1b\xfa\xb6\x42\x51\x2a\x67\xd4\xe0\xba\x53\xa3\xa2\xd2\x2d\x0f\xc7\x75\x8e\x8f\x74\xb0\xd8\x1b\x83\xe9\x51\x7c\x81\xd8\x3b\x18\x19\x1c\x85\xa8\x1f\x5d\x7a\xb3\xb6\x46\x09\xd8\xb2\xb3\xe5\x34\x38\x97\x8b\x4c\x36\x26\xa3\x6d\x60\x65\x35\xb0\x06\x03\xab\xbe\x04\x6c\x66\x80\x55\xf3\x80\xb5\x18\x58\xfd\x25\x60\x0b\x03\xac\x9e\x07\xac\xc0\xc0\x9a\x2f\x01\x5b\x19\x60\xcd\x00\x30\xb5\x13\x86\xda\xdb\xef\x5b\xf1\xa7\x39\x54\x65\xd5\x1b\xc5\x26\x8e\x54\x09\xe1\x66\xfe\x49\x42\x9e\xfe\x20\x67\xc1\x4f\x72\xe5\x8a\x5f\xe4\x43\x2b\x04\x8e\xc6\x89\x7c\x01\xc6\xb2\xbe\x93\x0f\xad\x88\xb7\x7c\x16\xba\x8f\x86\x9a\xf0\x81\x86\x80\xc8\x93\xe6\x2a\xf1\x54\x53\x4e\x0a\x6f\x23\x4b\xd2\x5d\xbd\x55\x27\x07\xb2\xc1\x26\xf1\x93\x5b\x0c\x37\x1c\x54\xaf\x9e\x8d\x60\xd7\x50\x4f\xb5\xfc\xb5\x86\xa3\x84\xfa\x1a\x3d\x6c\x10\xca\xee\x35\x25\x1d\xd2\x2a\x09\xf5\x3f\xf8\x4c\x47\xf7\x1f\x96\xc5\x38\x21\x5c\xc3\x35\x15\xa2\x9a\x24\x23\x74\x68\x15\x2f\xcb\xa2\x2c\x3a\xde\x4f\xa2\x28\x9a\x0d\xf5\xe4\x27\x30\xab\x67\x3e\xd9\x2e\x64\x62\x03\xf5\x17\x74\x7d\x5d\xe3\xa2\x86\x7c\x8a\xc8\x13\x01\x95\xc6\x81\xce\xcb\xc2\x9e\x0b\xce\x8e\x90\x9f\x5c\xff\x33\xba\xe6\x65\x46\x42\xea\xef\x01\x48\xb5\x95\xc9\x32\xa8\x3a\xbf\x16\x4e\x09\xec\x46\xd5\x65\x7f\x19\xd5\x0f\xd2\x64\xad\x0d\xe3\x1e\xd2\x19\x7c\x19\x45\xd7\xb8\x47\xb8\xf3\xba\x66\x28\x38\x2c\x37\xd7\x24\x16\x5e\x1a\x2f\x6c\xed\x41\x7d\x23\x0e\x19\x04\xb8\x74\x48\x31\x68\x49\x5f\xfd\x85\x7c\x12\xbb\x9f\x9a\x47\xfe\xf2\xd4\xcc\xdb\x27\x2b\x60\xbc\x2e\xd0\x65\xb5\x61\xba\x5f\x83\x4e\x26\x7d\xa4\x92\x80\x3e\xb8\xf6\x5d\x28\xa0\xeb\xdf\xf9\x99\x06\xa9\x51\xa5\x78\x79\x5d\xe7\x39\x7e\x22\x45\xf2\x62\x0d\x0d\xbe\x1a\xe4\x12\x28\x5b\xd1\x43\xed\x78\x61\xe5\x8e\x5e\x99\x2c\x45\x54\x0c\x92\x75\x52\x6b\xa2\xdc\x2d\x3e\x55\xbf\xb5\xbe\x76\xe3\xa8\x5e\xb8\x1b\xbe\x22\x23\xe6\x5b\xc3\xae\x75\x84\xf7\xa2\x56\xb1\x5e\x98\x51\xdc\xb2\xda\x55\xff\xb3\xc7\xb4\xf5\x3f\x4e\xe0\x2b\xc3\x57\xb7\x46\x11\x60\x2a\x99\x3b\x37\x51\x23\xb3\xeb\x48\xd7\x12\xb7\xc5\xa0\x42\xbb\x63\x8b\x2c\xf0\x92\xfd\xad\xe5\x2e\xe8\xa9\xc3\xad\xac\xa9\x92\x75\xc5\xd9\xba\x17\x9e\x69\x55\x7a\x0a\x3b\xfb\xd5\x9f\x42\x9d\xa6\x00\x13\x10\x04\x6e\xec\x08\x6e\xbb\xdc\xf8\x71\xb7\xad\x0c\x78\xd2\x18\x10\xeb\xfb\xa9\xdb\xb0\x09\x42\xbb\x69\xac\x12\x72\x81\x53\x14\xc3\xf8\x95\xbc\xfc\x5a\x1d\x32\x7a\x12\x5c\x29\xef\xb0\xe6\x1b\xf2\x31\x9f\x5e\x9e\x38\x26\xde\xb6\x52\x83\xd6\x1a\xf3\x75\x12\x9c\xb0\xc5\x56\xdb\xa5\x6e\xb2\x8c\xf6\x63\xff\x48\x22\x46\x4d\x46\x24\x1a\xf2\x8e\x6e\xf5\x6b\x6d\x90\xed\x89\xb9\xd8\xad\x43\x97\xd6\x4d\xe6\x7c\x8b\xd4\xbf\xba\xfb\x9b\x2c\x5c\x51\xab\x83\xc8\xf4\x9b\xe1\xf5\xff\xe5\x58\xef\xfc\x97\x63\xfd\x7f\x3f\xc7\x7a\x65\x85\x9b\xf0\x8a\x3e\xee\xaf\xe8\xbc\xa5\x63\x91\x8e\xcc\xe6\xf2\xb5\xa6\xc6\xab\x33\x72\xac\xab\x07\xaf\x36\x35\x6a\xa4\xb9\xa6\x46\xcd\x48\x7e\x9b\xa9\xf1\x40\x7f\x1f\xc5\xa3\x12\xfd\x5d\x16\x8f\x2a\x22\xf7\x92\x75\x3b\x7b\xdd\x5f\x5d\x37\xe6\x45\x2f\x36\xfd\x2e\x3b\xa1\x95\x5d\x37\x50\x5d\x78\x4b\xd6\x36\x9a\x5f\xea\xb1\xd0\xf3\xf2\x46\x86\xc7\xea\x6f\xd4\xfe\xa2\xe6\x8d\x4d\x22\x22\x17\xcc\xcb\x26\x78\x5a\x8b\x65\x47\xf7\x75\x1b\xaf\x0b\x1b\xa4\xe0\x72\x5f\x17\xf1\xba\xbf\x35\x55\x25\xdc\x06\x03\x98\xd5\x87\x5b\x04\x21\xb9\xaf\x47\x78\x3d\x0e\xbf\x4e\xf1\x7a\xb2\x0d\x8e\x7d\x8a\xd7\xb3\xad\x61\xd3\x6e\x83\x39\x1b\xf5\xb7\x72\x72\x1a\x45\xda\x7a\x87\xd7\xab\x6d\x62\x24\x37\xf1\x7a\x8d\xd7\x9b\xf0\xd7\x5b\xbc\xde\x6d\x25\x6a\xcc\xeb\x3d\x87\xab\x79\xa8\x31\x0d\x8e\x68\x50\xda\x3a\xb9\x0a\x6d\x83\x32\xfb\x2c\x6c\x8d\xe3\xac\xdb\xa0\x8a\x06\x35\x6f\xfe\xa6\x41\x1d\x0d\x1a\x5b\x23\x0a\xbb\x0d\x9a\x68\xd0\xda\x26\xb6\xae\xbc\x7d\xdd\xc6\xeb\x42\x18\x03\x45\xbc\xee\xef\x20\x72\xb9\xaf\x07\x3b\xac\xfd\x4e\x2e\xae\x79\x3d\xc2\xeb\x9a\xb8\xb5\x5c\x09\x59\x40\x6d\x93\xf2\x52\x78\xe4\x0e\x2e\xc4\xad\x01\xe9\x41\x96\xb1\xac\x07\x0e\xd3\x42\x11\x1c\x0b\xd7\xaa\x95\x53\xc5\x9b\xad\x85\x49\x14\x15\xb5\x24\x39\xfc\x34\x9a\x93\x5e\x0b\x15\x8e\x14\x13\xa4\x13\xb0\x3d\xcb\x04\xa1\xaa\x7f\x2a\xa2\x96\x8f\xf0\x45\x40\xe5\x1b\x4e\xb3\xae\xf5\x31\x74\x3d\x7a\xa2\xb0\x04\x44\x0a\x0f\xb7\x32\x57\x94\x6a\xa6\x08\x99\xec\xde\x81\x23\xd2\x3e\x42\xc1\x17\xb8\xf1\x38\x81\xe3\x7a\xf8\xc8\xc4\xbe\x49\xb8\xde\x0d\x8a\x50\xc1\x82\xce\x36\x11\x62\x84\x2c\x3f\x9a\x5b\xf1\x16\x67\x00\xdf\x5b\x61\x74\x3b\x1e\xf8\x10\x95\x3a\xbf\xfd\x80\x4f\xb9\x4b\x99\x4a\x7b\x7d\x87\x43\xee\x52\x5a\x4d\xd6\xc4\x74\xe1\x7a\x33\x31\xe4\xcc\x61\x09\x23\x82\x6d\xb7\xf1\x08\x2f\xa6\xf4\x42\x6d\x5f\x4d\x31\x78\x8c\xfa\x7b\x2b\x26\x5a\x12\x9f\x34\x4a\xf5\x8d\x0b\x78\x36\x1b\x53\x3b\x80\x83\x53\xad\x36\x30\x43\xa3\x51\x49\x02\xd9\xa2\xd1\x0e\x24\x59\x45\x23\x2e\x4e\xa9\x1b\x21\x7b\x5e\x93\x64\xc2\x25\xcd\xb5\xb6\x15\xa5\xf7\xea\xf8\x4c\x6d\x3b\x93\x9d\xa8\x89\x87\x2d\xbb\x9b\xb5\xd0\x8a\xc7\x05\x1e\xac\x7a\x58\x14\x94\xa2\x73\x44\x43\x5b\xb2\x9a\xb3\xe9\x71\x81\xaa\xf3\x73\x64\xdc\xd8\x71\x26\xcf\xea\xe6\x85\xa6\x6a\x37\x6a\x3b\xe4\x2e\xab\xfc\xde\xd2\x11\x3d\x71\x0c\xec\x3b\xd2\xb0\xec\x9f\x9d\xcf\x97\x0d\xc7\x6c\x3f\xde\x31\xd1\xa5\xe7\xc2\x3d\x3c\x63\x5b\x1e\x9f\x3d\x10\x6b\x17\xf6\x64\x67\x12\xf1\x9d\x0b\xbb\x46\x86\xb2\xfa\xb3\x07\x60\xeb\x42\x9e\xed\x4c\x52\xf3\x73\x21\x97\x9e\x59\x51\xf7\xec\x81\xd8\xbb\xb0\x17\xbb\x04\x46\xab\xe5\xd9\xb0\xc7\x9c\x01\xbf\xcc\xb7\x4f\x03\xe4\xe8\x42\x5f\xed\x58\x33\xb6\x3e\x17\x7a\xe3\x19\xaa\x94\xe6\xb3\x07\xa2\xec\xc2\xde\xec\x60\x21\x3c\x9b\x42\x48\x67\xb3\xbf\x76\x3e\xaf\xba\x50\x77\x3b\x3a\xc3\xf7\xe7\x42\xad\x5c\x93\xdf\xc9\xb5\xf3\x79\xdd\xc3\x32\x19\x54\x96\x3f\xcf\x83\xb9\x22\xe5\xca\xfa\xa7\xfc\xf8\xf8\xe9\x5c\x27\x9c\xf0\xaa\x9d\xe3\x84\x73\xca\xad\x25\x08\x75\x83\x98\xe5\x6b\xe7\x73\xf2\x3f\x63\xa0\x95\x9f\xe4\xd1\x70\xe6\xe4\x61\x7c\xaa\xff\x94\x1f\x17\x9d\xc9\x1f\x70\x54\x1f\xcf\x5d\xa4\x02\x31\x97\xe2\xb3\xf3\x79\xd3\x5d\xa4\xd2\x4e\x1c\x78\x09\x85\x9e\x53\x81\x72\x13\x15\xe6\xfc\xf9\x84\x12\x67\x9d\x74\x82\xa8\x33\xcd\x55\xa1\xcc\x28\xec\x44\x36\x58\xa1\xc7\x50\xef\x8a\xbb\x90\xb9\x72\x01\xe9\x72\x09\xb6\xda\xdf\x1b\x91\x4c\x7d\xc9\xf5\xc7\x9b\xc6\x44\xe2\xf8\xd3\x54\x56\x64\x9e\xab\xae\x42\x66\x81\x53\xc6\xde\xe1\x67\x8d\x9c\x1d\x59\xac\xc6\x71\x7d\xed\x64\xd8\x35\x80\x51\x65\xaa\x41\x76\xce\x7e\xdc\x44\x4f\x7c\xee\xd5\x62\x21\xb4\x74\x46\x07\x96\x09\x34\xd7\x74\xed\x77\xd0\x33\x41\xde\xe1\x50\x39\x9d\x12\x77\x9f\x38\x40\x5b\xa8\x03\x72\x20\x09\x6b\x76\x40\x36\x35\x40\xdf\x1c\xf4\x7e\xbb\x23\x0d\x9f\xf7\xed\x90\x38\xf5\x26\x56\xad\xa5\xed\xf7\x3d\xa3\xe8\xb1\x74\xd8\x77\x67\x3f\x4e\x74\x7d\x89\x4a\xbc\x3d\xd9\x19\x02\xab\x55\x67\x43\xc4\xa4\xed\x69\x6e\xbd\x10\xd4\x59\x22\x71\x7a\x3c\x78\x01\x38\x97\xfa\x8a\x7c\xe6\x9c\xf0\x71\x63\x8a\x12\x3e\x28\xfb\xbe\x22\x4b\xc2\xf6\xa3\x1d\x84\x2b\xcf\x2c\x9c\x31\x94\x43\x63\x20\xcf\x0d\x27\x71\x09\x49\xb5\xcc\x0f\x79\x69\xde\x4d\x00\xfe\xe8\x37\x9f\x48\x76\xcc\x1d\xfd\x4a\x5a\xa9\x3b\x55\x7f\xf4\x3d\x93\xf6\xb0\xb6\xa7\x41\xd5\x03\x4d\x2e\x5d\x98\xc7\x1c\x95\xfd\xd5\x74\xe3\xd8\x20\x1b\x7b\xe4\x7b\x07\xdd\x78\x8b\xeb\x82\x19\x7f\x34\xee\x1a\xbd\x6a\x27\x17\x66\x61\x8f\x42\xbb\xe7\xc0\xcc\x1f\x5a\xff\x40\xcc\x66\x70\xfc\x7d\x43\x1b\x1e\x68\xba\xa3\x73\x60\xe6\x0f\x6d\x4c\x7b\xfa\x7b\xfa\x3e\x30\x93\x03\xb1\xe8\xe9\xfb\xc0\x28\x8e\xa3\xdd\x93\xde\x07\x66\x01\x30\xcb\xf7\x81\x59\x1d\x58\x8e\x5b\xbf\x0f\x90\x62\x9c\xd4\x70\xfb\x3e\x40\x3b\x4c\x6c\xff\x3e\x30\x87\x83\xd1\xbb\xbf\x0f\x50\x09\xe3\x29\x1f\x61\xef\xec\xd9\xac\x91\x61\x58\x85\x8f\xd6\xa5\x67\xff\xf1\x37\x02\xce\x1f\x64\x0d\x3b\xa5\xfe\xbb\x07\xf9\x7a\xc0\x27\xb8\x17\x60\x35\xdf\xb7\x20\x2d\x80\x69\xbf\x0f\x4c\x01\x60\x8a\xef\x03\xd3\x3f\x82\xef\x95\xde\x05\x66\x78\x24\x1e\x35\x7a\x1f\x98\x31\xc0\xa4\xef\x03\x33\x39\xf2\x65\x7d\xfa\x3e\x40\xb3\xa3\x71\xe3\x7d\x1f\xa0\x85\x19\xd1\xf2\x7d\x80\x56\x47\x4e\x46\xb3\x7e\x1f\xa0\xcd\x91\x8b\x73\x6d\xcf\x01\x74\xe6\x7e\xdb\x1d\x13\x5c\x57\xf7\xef\x1b\xde\xc1\x60\xfe\xf8\x3e\x40\x25\x83\xf9\xf2\xfb\x00\x55\x40\x9b\xd5\xf7\x81\xa9\x61\xc3\xd5\xdf\x07\xa6\x71\x44\xc6\xa9\xdf\xb8\x78\xad\x23\x71\xf4\xf6\xfb\x86\x56\x38\x42\xb1\xfa\x1b\x87\xd6\x2f\xf1\x71\x38\x28\xbf\x8f\x51\x95\xa0\x47\x7b\x1f\x98\x71\x09\x3e\xa0\xe7\x80\x39\x73\x8e\x93\x92\xa9\x87\x76\x0e\xd4\x33\x85\xd0\x59\x89\x56\x63\xfe\x1b\x61\x2e\x80\xc4\xe5\xfb\x90\xb8\x2a\x19\x17\x97\xf7\x01\xda\x94\xe0\xed\xf1\x3e\x30\xbb\x12\x12\x1c\xbf\x0f\xcc\x01\x60\x8e\xbf\x11\xe3\x25\xc0\x2c\xff\x46\x98\x15\xc0\xac\xfe\x46\x98\x35\xb3\xa4\xf5\xdf\x08\xb5\x51\x82\xe4\x55\x7e\x8b\x78\xf8\xf8\xdb\xfa\x38\x7c\xe4\x48\xfc\x32\x8c\x80\xc8\xb5\x37\x2b\xc7\x46\xa5\x75\xa9\xf8\x9e\xe6\x59\x65\xfd\xd5\x37\xc5\xb1\xce\x82\xb2\x2a\x5b\xc7\x92\xcb\x11\xbe\x1a\x97\xf5\xb8\x34\xa7\x39\x0b\xca\x4e\x42\x99\xbe\x15\xca\x41\x42\x99\xbf\x15\xca\xec\xd2\x02\x29\xce\x81\xcc\x32\x1d\xc8\x93\x78\x79\x2e\x98\x8a\x1c\xcc\x1a\x5f\x6d\xca\x14\x23\xb0\x3d\x17\x4a\x43\x42\xd9\xe3\xab\x43\x59\x2b\xd0\x6e\x8e\xe7\x42\x29\x48\x28\x65\x7c\x55\x01\x62\xaa\xe7\x42\x19\x56\x04\x94\x3a\xbe\x6a\x94\x49\x79\xd7\x7c\x09\x4a\xa3\x92\xc0\x13\xc1\x12\x1d\x8f\x84\xa2\x97\xab\x2f\x10\x2e\x43\xb0\xa1\xf8\x97\x83\x0a\x2c\x4d\x15\x9a\xcb\xa8\x72\xe6\x28\xac\x43\xda\x65\x8a\x6f\x26\x15\x7d\xe8\x7c\x9f\x7a\x30\xf6\x66\x93\x1a\xf3\xe7\x1e\xb5\xf8\x0b\x0d\xad\xef\xba\x9b\x57\x5d\x5f\xc2\x0a\x94\xc0\x55\xf7\xe8\xa8\x40\xdd\x4f\xad\xb5\xef\xc4\xb5\xb7\x5b\xcf\xec\x2c\x07\xea\x65\x76\xfb\xbf\x1e\xa0\x1c\xfd\x6f\x01\xb8\xa9\xb0\x65\x69\xfb\xbb\x40\xee\x2a\x28\xeb\xf0\x12\x40\xe3\xb6\xf6\x02\xc0\x43\x85\x3f\x39\xfe\x2e\x90\x25\x03\xb2\xfc\xbb\x40\x56\x2a\xc6\xf6\xfa\x12\x48\xeb\x92\x7a\x1a\x64\xad\xc2\x02\x5c\xfd\x77\x81\x54\x7b\x4c\x07\x66\xfe\x2e\x80\x2d\x00\x6c\xff\x2e\x80\x05\xb3\x34\xc5\x30\xc8\xaa\x73\x30\x7f\x13\xfe\xdc\xfa\x80\x62\x57\x62\x12\x46\x9e\xb7\xa5\xe4\x0d\x5f\x1f\x70\x3d\x18\xeb\xdb\xe2\xeb\xbf\x0f\x73\xcd\xf3\xbe\xcd\xe3\x97\xe7\x7d\x9d\xc7\x29\xcf\xfb\xba\x5f\x25\x71\x6b\x18\x0f\xaa\x6f\xf9\x7e\x58\x25\x6d\x42\x29\x1e\xbd\xe9\xfb\x71\x95\x02\xf6\x57\x71\xfa\xa6\xef\x27\x55\x3a\xc3\xa7\x6f\xfa\x7a\x56\xb5\x3e\xe3\x97\xf3\xff\x40\x9c\x09\x62\x16\x16\xba\x5d\x78\x8b\x2a\x1d\x34\x87\x78\xf9\x3b\x81\x7d\x30\x01\x16\xcb\x1a\xbd\x43\x95\xf2\x2a\x1d\x94\xeb\xd7\x76\xc6\x52\xbc\xbc\x6b\x28\x60\xa6\xdd\xb6\x16\xbc\x87\xfc\x07\xf8\x3f\xc0\x6f\x00\x9c\xa5\xed\x5d\x95\x0d\xdd\x7b\x8f\x76\x67\x3d\xf0\xe6\x63\x2d\x68\x01\x2f\x92\xdf\x1b\xa4\xea\xed\x25\xdc\x24\x03\xc3\x2a\x3b\xc3\x9a\x9c\x18\x56\xaf\x89\xd3\x7a\xd6\x8a\x4d\x51\x96\x4e\xb9\x16\x88\x84\xae\x54\x59\x5a\xa9\xca\xd7\x97\x36\xa4\xa3\x55\xd3\xfe\x8d\xcf\xf5\x5a\x12\xf2\x70\xec\x6a\xef\xfc\x4b\xe1\x29\x22\x9c\x44\xaa\x70\xe9\xe0\x57\xe4\xce\x5e\xe7\x1a\xf6\xb1\xf3\xb2\xab\x5f\x16\xf7\x8e\x27\x23\xbf\xec\x51\xec\x35\xdc\x4e\x1f\x9d\x77\xed\x94\x3c\x4d\xda\x73\x84\x1a\xea\x7f\x56\x3a\xbc\xb1\xa2\x7f\x6d\xe2\x66\xcd\x95\xf1\xdd\x90\x69\xc4\x3c\xb4\x90\x88\x82\x4c\xde\xe9\x80\xf0\xde\x40\x30\x9e\x06\xdb\xae\x09\xa7\xcd\x21\xc5\x48\x90\x67\xc7\x95\x40\xee\x82\x2a\x19\x6b\x4c\x2e\xe1\x39\x4e\x92\x89\xd6\x05\x6c\x74\x14\xdb\xf5\x12\x69\x25\x35\x8d\xd2\xfa\x8b\x1c\xbd\xf4\xe7\x86\x9c\xa1\x31\x82\xf1\x45\x14\x4d\x2e\x84\x5b\xab\x02\x1a\x29\xa9\xa9\xab\xfd\x68\xb5\x0f\x40\xd5\xf5\x3f\xdc\x96\x63\x38\xa8\x9b\x49\xa8\xbf\xa2\xc1\x5f\x1f\x12\x19\xfc\x6e\x44\x66\xc7\x79\x15\xfe\x46\xf0\x76\xa9\x23\xbf\x3d\xdc\x0c\xee\x9d\x97\x55\xbc\x2c\x26\x9e\x87\xed\x13\xe0\xb9\x44\x62\x92\x8e\xd7\xb1\xa8\x34\xb4\xae\x49\x0c\xe8\x7a\x17\x94\x67\x08\x90\x27\x0f\x79\xf6\x1f\x5d\x6f\x93\x00\x9d\x0c\x0e\x22\x7f\x1e\x28\xa9\x51\x65\x51\x7f\x00\xd9\x35\xca\xcc\xd3\xa5\x53\xf6\x81\xbe\x0f\x90\x69\x73\xe7\xcf\xc7\x12\xfd\xde\x89\x81\x69\xdc\x93\x00\xcd\xd9\x0e\x43\x94\x3b\xfd\xea\x61\xe0\xf8\x78\x06\x99\xb6\x28\x09\xd8\xa0\x16\xf4\x22\x81\x7f\x07\xe9\xcb\xb7\x23\x11\xcb\x41\x01\x2c\xc4\x0e\x51\xb8\xb7\xf4\x95\x32\xb2\xf1\xb5\x1b\x6c\x0d\xd1\x61\x08\x8c\x6a\xfd\xa1\xfb\xdb\x0c\xa8\xfb\xe5\x92\xbc\x40\x78\x7b\xe8\xad\x40\xdd\xad\x65\x68\xd2\xb8\x8e\x11\x69\xa7\x70\xea\xe1\x72\x2f\x2b\x40\x35\x16\xb1\xdd\x2f\xcd\x85\xe3\x68\xc5\x0b\x5d\x5e\x9b\x18\xb9\x8e\xad\x7f\x50\x0f\x37\x02\xce\x8f\xb9\xbe\xc6\x55\xa4\x70\x73\xaa\x10\xdb\x05\x53\xaf\xca\x8f\xd0\xae\x5c\x3a\x5e\x67\x93\x4f\x14\x7e\x59\xf7\x17\xb9\xe3\xa4\x34\x44\xa6\x22\x4e\x3a\x69\x7d\xbe\x6b\x26\x5a\x51\xeb\xb4\x9e\xc4\xc2\x2b\x24\x81\x4c\x50\x16\x88\x7e\x1c\x9f\xbc\x2f\x73\xdf\x35\x9d\x54\xf1\xbf\x24\x97\x65\x87\xea\x3a\xb2\x94\xd6\x29\xd4\xa2\x86\x44\xf2\xed\x92\x4c\x9c\xfa\x6c\xf0\xa6\x53\x27\x78\xee\xd6\x6d\x17\xc4\xac\x0e\xa9\x0d\x28\x09\x81\x20\xa2\xde\x24\xe7\x6f\xec\xed\x56\x6c\x61\x04\x05\x57\x71\x6b\xad\xc8\x93\x88\xd6\x0e\xb9\x91\x4f\xec\x75\x83\x62\xbd\x3e\x3f\x3d\xbc\x8f\x1c\xcc\x75\xce\xc0\x9c\xa0\xcf\x33\x90\xe4\xb5\x7e\x3d\x3e\xf6\xbb\x2c\x4b\x0b\x23\xa4\x2d\x82\x50\x5f\xc2\x87\xfa\xe7\x31\xc3\xe2\x7b\x54\x54\xc1\x1e\xed\x92\xc5\x6b\x37\x7a\x7a\x49\x1b\x05\x9e\xb8\x45\x51\x1a\x7c\x8e\xcc\xd8\xb1\xb7\x79\x8a\x08\xc4\x1d\x99\x38\xed\x57\x24\x82\x50\xff\x8d\x28\xa4\xb0\xe9\x03\x4e\xb7\xd8\x1c\xa1\x6f\x5f\x0f\xd8\x66\x64\xd4\x41\x74\xf0\xd6\x34\x3e\xee\x75\xa8\x08\xc0\xf9\x88\x89\x20\x6f\x74\x06\xc2\x25\xbb\x46\x16\x6e\x45\x6b\x24\xa9\x4e\x73\x5b\xdb\x83\xba\x40\xa9\x3c\xb2\x2e\x78\x5d\x37\xfc\xf4\xa3\x3d\x71\x11\x4c\x4a\x7b\xd0\x46\x89\xf4\x29\xa7\xc2\xba\x96\x88\x13\xd9\xc4\x7f\xa4\x94\xd5\xab\xf1\x0d\x38\xad\x22\xe1\x89\x3b\xc6\x39\x89\x99\xe9\x27\x39\x5b\x8e\x37\xd9\xf7\x39\x65\xd8\x2e\x85\x43\x1e\x48\x73\xeb\x36\x1c\xa6\x31\x82\x6f\x54\xa3\x35\x48\x36\x7d\x74\x24\x17\x3d\xb7\xf6\xd1\x09\x27\x61\x4a\x1c\x50\xb0\x2d\x71\xdc\xe6\x57\x97\x4a\x3f\x3b\xeb\x2d\x89\xb7\x4b\x91\x98\x2e\xf1\x1c\x3e\xd1\xe1\x87\x73\x34\xa7\xbd\xdc\x20\xea\x71\x0a\x69\xc7\x0f\xf9\x5e\x10\x47\x9e\x53\xec\x6f\x31\xfb\xb1\x39\x28\x10\x0b\xb4\x69\x73\x8c\x53\xb9\x96\xd3\xda\xfd\x67\x72\x6f\x7b\xa3\x27\x73\xcf\xbb\xf3\x8f\x8c\xfe\x8e\x51\x8c\x54\x04\x1b\xfa\x6f\x4f\x38\xde\x3d\x78\xe2\xc7\xd6\x89\xa4\x5d\x3c\xc9\x87\xba\xa7\xa6\x9f\x21\x5a\xe6\xb8\x6d\xb8\x72\xc2\x16\x11\x5a\x6d\xfa\xaf\xe5\xc4\xef\x9a\xa3\xbf\x2b\x93\xea\x5c\x15\x31\x73\xf0\x2f\x1b\x5d\xb4\xfb\xc3\x28\x2e\xd5\xfb\x15\x05\xed\x20\x0c\x94\x02\x98\x2a\x73\xe2\x8a\xa5\x2f\x74\xa1\xa8\x8b\x4c\x31\x05\xce\xc7\x2e\x1b\x56\xbe\x70\xda\xec\x06\x35\xdd\xe1\x6c\x7d\x08\x34\x06\xd4\x63\x5b\x94\x70\x14\xa2\xcc\x9a\x3e\x1d\xc6\x42\x78\xe0\xa0\x8a\x51\x4d\x13\xbd\x3e\x10\xba\x53\x62\x91\xb5\x2a\x27\xbb\x1c\xd5\x64\x31\xdc\x82\x79\xce\xf2\xbc\x89\xc8\x6a\x14\xb1\x05\xea\x89\x69\x4a\x57\x38\x6e\xfa\xba\x8d\x90\x23\xdc\x97\xdc\xf0\xdd\xae\xad\x12\x61\x56\x89\x13\x05\x3e\x59\x9a\x5e\x3e\xc9\x75\xf3\x41\x6f\x84\x98\xb4\xce\x9e\x3b\xa2\x89\xf7\x96\x0f\x9e\x41\x76\x8b\x06\x1e\xcf\x7e\xd9\x78\x2e\x93\x37\x2c\xfc\x89\x9f\x9b\x09\x2c\x7d\x58\x27\xf3\x24\x05\x7e\x5e\x8d\xea\x27\x59\x83\x65\xdf\x22\xab\xaf\x7f\x2d\xca\xb4\x35\xac\xde\xfb\xe0\x1d\xac\xed\x1b\xe5\x64\xe8\x46\x51\xaf\x74\xf7\x9b\xd9\xe6\xea\xde\x12\x02\xc9\xc0\xa8\x7a\xa0\x84\x0b\xad\xc9\xe0\x1a\xc2\x05\x38\xa7\x37\x9c\x73\x49\xfd\xb3\x7b\xfa\x60\x32\xd7\xec\x4d\xee\x2d\xcd\x4d\x61\x19\xad\x33\xd9\xd7\xeb\x32\x3c\x5b\xb7\x14\x21\xeb\xf4\x4d\x98\x82\x1e\x05\xbb\x54\x10\x10\xb4\x6e\x62\x51\xa8\xc3\xf0\xb7\x82\x03\x39\xb4\xfd\x02\x37\xb7\x9c\xa0\x63\x63\x3c\x87\x05\x4e\x98\x34\xaf\x87\xbf\x43\x1f\x2d\x27\xcd\x85\x61\xd9\x6e\x96\xf0\x12\xb1\xea\xb5\x2c\x0d\xf1\x74\xc6\xf9\xe1\xe2\x70\x72\xef\xe1\xb0\x4a\x37\x25\xd4\xb1\x18\x17\xe8\x0a\xb9\xcc\x19\xb0\xcb\x1a\xbc\x3d\x5a\x9c\xd3\xc7\xab\x3b\x3b\x87\x44\x62\xaf\x29\xce\xbe\xe1\x83\x37\xf6\x7d\x55\xa8\x0d\x0a\x34\x9c\x45\x81\xd2\x1f\x2d\xc1\xb6\x57\x05\x16\x2f\x96\x08\x52\x48\xce\xc4\xc0\x28\x16\xa4\x88\x43\x63\x2d\x6b\x5a\x51\x3e\x10\xf5\x78\xe3\x8f\xec\x7c\xac\x2a\xe2\x49\x73\x8e\xe2\x6d\xdb\x89\x7f\xcd\x12\xad\xea\xfb\xf3\x1b\x45\x0a\x7d\x46\xd2\x20\x90\xa2\x6a\x7b\x1f\x1c\xf3\x1b\x44\x0e\x48\x1b\x98\xd7\x59\x52\x53\xc7\x4b\xa5\xb6\x08\x27\x2c\xbb\xe2\x6a\x53\xe8\x68\x43\x32\xfc\x14\xd7\xa2\x0a\x9c\x1b\xab\x48\xe3\xdf\x42\xe8\x42\xdb\x8b\x85\x31\x3e\x3f\xf5\x50\x72\xc4\xbc\x56\xa4\x63\xed\x95\x08\xb5\xc8\xdb\xc0\x81\x54\x1a\xc0\x7c\x1f\x16\x90\x77\x03\x16\x46\xca\xf0\x81\x40\xae\x18\x3b\xe3\xca\xcb\xf9\xde\x32\x5a\x5d\x6e\xaa\x87\xb5\xc2\x78\xa0\xbf\xad\x43\x7b\x29\x91\xfa\x72\x7e\xba\x8c\x3e\x3b\x37\x3f\xdd\x19\x59\xe0\x32\xb6\xe1\xa6\x1c\x2f\x28\x14\xd6\xe1\xef\xeb\xaa\x1c\x6f\x2f\x8a\xa2\x31\xb9\x89\x50\x2a\x45\xf6\x85\xe2\x78\xe4\x6a\x35\x26\xf5\x99\x4d\x20\x70\xa3\xa6\x48\xc5\xe4\x29\x61\x16\x7b\x1b\xbd\x56\x6c\xcf\xac\xde\x04\xf7\xe9\x1c\x16\x47\x42\x43\xf6\x08\xfc\x9f\x96\x3e\x08\xc9\x67\x0b\x1e\x5a\x28\x7f\x8d\xe0\xa1\xde\xfc\x76\xc1\x43\x67\x4b\x0d\x5f\x97\x8a\xfe\x2d\x52\x1f\xb2\xbd\x20\x97\x2a\xfa\xd7\xfb\xf3\x96\x9a\xc3\x77\x07\x87\x0c\x39\x3d\x29\x22\x27\x72\x1a\xa2\x80\x6b\x39\x7f\xfd\x3b\x1f\x9c\x2c\x68\xd1\x8e\xe2\x46\xe8\x5c\x63\x4f\xb3\xec\x9d\xb7\x32\x49\x9c\x52\xad\x58\xbb\x52\xdd\xf8\x9e\xbf\x82\xe6\xc0\xd6\xf5\x29\xd3\x95\x0d\x14\x38\xb0\x9f\x7a\x72\x1e\x4e\x0d\x2f\x0f\xf4\x61\xc4\x22\x89\xf9\x9c\xc5\xcb\xa1\x2c\x7e\xfc\x40\x31\xe2\xeb\xb3\x6e\x1b\xb3\x5f\x24\x34\x78\x1b\xe4\x8d\x34\xd8\xd3\x15\xfd\x6f\x91\x90\x2c\x39\xfe\x16\xa0\xa7\x09\x3b\x67\xf7\x1b\xd9\x2e\xa4\x35\xb1\xc2\x57\x91\x8a\x18\xf7\xe3\xdf\xa6\xd5\xa0\x1b\xf8\x2e\x25\x65\xec\x7e\x1c\x96\x12\x20\x72\x6e\x1e\x4e\x49\x09\x39\x54\xf0\x81\xb3\xc3\x5d\x0b\x52\x9c\x10\xc1\x27\x52\x7f\x10\x8d\x34\x49\x93\x84\x79\x0c\x6c\xb4\x20\x43\xd0\x08\x32\x79\x19\x4f\x60\xc9\x90\xb4\x18\x4a\x0e\xfa\xf9\x71\x7f\x4d\x07\x53\xb5\x9e\xab\xf4\x82\x5b\x23\xb4\x5d\x1c\xa2\x9b\xd6\xe8\xf7\xfa\x2e\x4f\x82\xef\x01\x33\xe2\xe0\xaa\x54\x44\x19\x1b\xe3\x0d\x6a\xd4\x70\x85\xcf\xc6\x49\x43\x7e\x79\x1d\x45\xd1\x56\x94\x71\x69\x9e\xfb\xe1\x73\x14\x45\x2b\x7d\x80\xf7\xe3\x72\xc3\xb1\xad\x7a\xd8\xd5\x78\x0f\xf3\x87\x86\x2c\x84\xc7\x06\x11\x99\x2b\x99\xe6\xfb\x70\x0e\xc1\x78\xfc\x21\xcb\x29\x0f\xf7\x84\x9a\x3f\x65\x9f\x0f\xa1\x53\x74\x8a\xba\x3c\x60\x4f\x0f\x1e\xc3\x91\xc9\xc3\xfd\x8d\x59\xbb\xcb\x42\x0f\x1c\x82\x50\xcb\xe6\x4f\xd2\xdb\xe8\xaf\x94\x80\x6f\x95\x20\x53\xd5\xab\xf3\xbd\xde\x08\x08\xa8\xaf\x3e\xe5\x42\xd8\x54\x92\xd9\x76\x95\xb3\x15\x92\xd0\x26\xca\xe5\xe1\x3a\x55\xc5\x26\x76\x9c\x04\x5e\x05\x11\x89\x3e\xc7\x71\xce\xe9\xf7\x4a\x04\x7e\x8f\xa2\xa8\x41\x08\xbc\x6b\x86\x10\x98\xed\xa1\x56\x47\xbe\x91\xd3\xf7\xee\xfc\xf1\x77\x9c\xed\x3c\x3e\xea\xde\x75\x54\x78\x37\x98\x27\xf8\x2c\xa4\x22\xcd\x9b\xd0\x1b\xb2\x75\xa6\x8e\x14\x1b\xea\x05\xe7\xca\x45\x41\xe3\x47\x5c\x30\x9c\xdb\x89\xb9\x5e\xf3\x15\xc5\x40\xd0\xa4\x0e\x24\xb9\xcd\x2f\x71\x43\x11\x64\xa9\x2b\xc2\xe9\x80\xf2\xd3\xb3\xc2\x56\x0c\xc9\xb2\x86\x0d\xa7\x17\xf9\xd3\x52\xcf\xde\x37\x2d\x2d\xac\x06\xa7\xe5\xb1\xc2\x87\x08\xc9\x45\x74\x80\xbb\xb9\xc3\xf4\xdd\x11\x85\x41\xf1\x65\xa6\xeb\xc9\x8d\x94\x24\x41\x87\xba\x87\x00\x2a\x54\x84\x01\xb2\x54\xe5\x03\x1c\x12\xc0\x65\x00\xa0\x8c\xf2\xef\x66\xb3\x8d\xe4\x09\xa9\x13\xed\x06\xb2\xa3\xb2\x79\x3a\x08\xde\x07\x2c\x33\x1b\xbc\x02\xb0\xbe\x1d\xee\x76\xb8\x1d\x6e\x03\x80\x6b\xc0\x69\x3d\x1f\x05\x5a\x77\xb1\x0f\x4a\x4f\x3e\x6a\xd0\x95\x8e\x9b\x0f\xf5\xf4\x5d\x70\x51\xb8\x00\x90\x0f\xc9\xc9\xce\xe9\x3a\x7f\x38\x77\x8d\xd4\x79\xda\xc7\x79\x3a\x2f\xfd\x93\x53\xd6\xee\x3b\x8b\xbd\xee\x8b\x82\x82\xdf\x4f\xb2\x6a\xf4\x0b\x8c\xfe\x98\x33\xfa\x3c\xe6\xa8\xe5\x83\x73\xd1\xa4\x07\xbf\xc2\xd8\xcb\x27\xc6\x7e\xfe\xf6\x55\x5c\x69\x43\x67\x65\x35\x00\xd0\xcb\xaa\xe0\x8b\x5d\xb5\x12\xf1\xe9\x7a\x29\xc3\xd1\x3a\x59\xf5\x8e\x1d\xc5\x1a\x7b\xc3\x63\x7b\x13\xc8\x15\xed\x1c\x44\x91\x62\xf1\x22\x74\x50\xf2\xa7\x46\xff\x21\x87\xaa\x0e\xed\x68\xa9\x0b\x66\x50\x5e\x07\xa3\xd0\x0d\x6c\xca\x73\x24\x65\x3d\x8e\xcb\x5c\x8e\xda\x61\xa3\x9d\x9a\xe7\xa5\x4d\x3b\x74\xa6\xc8\xec\xa7\x76\xd4\xcb\xbe\xef\xd2\xb2\x4f\x4b\xff\xd6\xe1\xcf\x72\x86\xaf\xb6\xc7\xf4\x23\x6d\x8f\x7a\xf9\xf5\x84\x22\x56\xdb\x78\xd8\x51\x45\x49\xe3\xc2\xd4\xab\xd7\x05\x85\x44\x39\x9f\x68\x2c\xdc\xb1\x73\xa6\x60\xb7\xab\x41\x4c\xec\x76\xd0\xcc\xf3\xb8\xa4\x74\xd5\xa2\xd2\x48\xd6\xea\xff\x9a\x2b\xe5\x50\x66\x89\xee\x37\x69\x88\xd3\xa6\x93\xb1\x38\xac\xeb\xaf\xbb\xe6\xb2\x71\xbc\xac\xc9\x90\x32\x68\xfc\x77\x17\xf6\x16\x2d\xf6\xc0\x81\xa4\xba\x61\x9c\x36\x85\x58\x27\x26\x14\xec\xfa\x15\x13\x6a\xc4\x58\x01\x2d\x95\xc0\x57\xa1\xd8\x8c\xcf\x9b\xca\x14\xd6\xe0\x71\xc8\x6d\xa4\x55\x05\x96\x1a\x61\x93\xeb\xd0\xa9\xb0\x5c\x8b\x7d\x04\x68\x39\x00\x87\x5d\xf9\x98\x9d\xbe\x70\xc4\xd4\xfd\x3d\x1a\x51\xf7\xa4\xee\xe7\x8f\xb0\xe4\x77\x69\x35\xb5\x5b\xc7\x85\x36\x47\x70\xcd\x88\xe8\xf5\xaa\xb4\x9a\xf5\x1b\xac\x9f\x9c\xc2\x4a\x17\x36\x6a\x84\x77\xbe\x16\x00\xc3\x97\xd0\x11\x49\x91\xce\xba\xbb\x57\xb6\xc1\x47\xd1\xdf\xb8\x61\x2a\xdb\x41\x00\x28\xc6\x27\xaf\x56\x3c\x0d\xe1\x2e\x6d\x10\x13\xfd\x66\xb4\x18\xa5\x5b\x8e\xa5\xd1\x6c\xe3\x91\x73\x5f\x3a\xa5\x1b\xb4\x88\xbc\xb6\x85\x66\x83\xfb\x62\xf0\xd5\x7e\xcc\xc4\xd7\x25\x9b\xe2\xa5\x49\xdc\xf5\x6a\xf4\xe5\xe2\xae\x5e\x4d\x72\x57\x0c\x4a\xe6\x20\xee\x3a\xd6\x79\xe2\x77\x0f\x4b\xfd\x3c\xd6\x83\x17\x3d\x60\xaa\x48\x9e\x5f\xf5\x90\x0b\x56\x53\x94\xa8\x0e\x7f\x3d\xa9\xc3\x71\x72\x1e\x14\xa8\xc1\x07\xe6\xdd\x7c\xed\x85\x60\x15\x06\x0f\x1e\x94\xe6\x93\x6e\xd2\xba\xcc\x87\x82\x26\xed\x9b\x0c\x10\xbf\x98\x5b\x0f\xf5\xf3\xe5\x69\xa8\x2e\xd7\xab\x06\x15\xee\xad\x07\xd8\x90\x30\x00\xbd\x8f\xf7\xb0\x30\x6c\xf7\xc8\xc0\xe7\x9c\xe1\xbb\xf3\x7b\x79\x89\x47\x17\x4c\x43\x2f\x0e\xe3\xd4\x58\x32\x7b\xf7\x77\x74\xe2\x60\x93\x7c\x84\x46\x97\x19\x33\xdc\x59\xca\x13\x4f\xe0\xd4\x1a\x94\x1d\x34\x28\xee\xfd\xcf\xea\x4e\x68\x1f\x37\x92\xd3\x72\x98\xb4\x8b\xbe\xb0\x70\x39\x0a\xfe\x17\x55\x24\x42\xfd\x5b\x5d\x85\x04\x80\x13\x8a\xf0\x0e\xb9\x2b\x76\x8c\x43\xff\xcb\x46\x2f\xd6\x33\x2e\xa5\xaf\xff\xcb\x9f\x61\x10\x69\x5f\x9a\xcb\xf5\x01\x15\x14\x52\xc1\x34\x4a\x9f\xc8\x32\xf4\x5d\x7c\xd4\x35\x8e\xb4\xe1\xc6\xfb\xef\x79\x47\xc9\x08\x4e\xef\x5c\x9e\xdc\x58\x0d\xc9\xa3\x35\xa3\x6e\x4b\x3f\x3a\xa5\x18\xdf\xb6\x7e\x79\x9a\x02\x45\x64\x05\x10\x59\xfb\xff\x7b\x22\xd3\xa3\x4d\x63\x5f\x7a\x78\x25\xd1\x8d\x96\xc9\xab\x3e\xf3\x88\xee\x1c\x52\x63\xea\xc9\xba\x3c\xb9\xed\xb6\x82\xca\x7e\xfe\xbb\xa9\xac\x85\x84\xfb\xcd\x43\x1e\x95\xa9\x79\x31\x95\x85\xb1\xf3\x16\x0b\x1b\xeb\x39\xed\x72\x6f\x1a\xc9\x49\x77\xa9\xa0\x2a\x25\xa4\x1a\x0a\xdc\x41\x5c\xfb\xff\x59\x6c\xdf\x53\xf1\xca\x1d\x59\xcc\xdd\x91\xff\x53\xb8\x5a\x35\x09\x57\xf3\xc6\xbf\x11\x57\x37\x51\x14\xf5\xf7\x50\xf3\x97\x6c\xd8\x68\x2f\xa8\x15\x38\x4b\x2f\xe1\xee\xaf\xe5\x8f\x73\xd0\xf7\x60\xe5\x59\xdf\xaa\xf5\x16\x70\xec\x89\xa2\xf1\xeb\xed\xb0\xdf\xb4\xad\xc3\x26\xb8\xd9\x2f\xd5\xf8\xc9\xd3\xec\x8d\xb5\xce\x4b\x67\x87\xfc\x5f\xc2\xef\x29\xd7\x9c\x77\xac\x97\x1a\xaa\x8f\x02\xe0\x77\x39\x87\xeb\xe2\xdc\x14\x3b\xd1\x96\xcf\x85\x2f\xce\xfd\x06\xfc\xf6\xb5\xd0\xa7\x73\x20\xe7\xe9\xe4\xfe\xb9\x63\xb4\xbc\x89\x4f\x2f\xa5\xb5\xee\x1c\x82\xb7\x32\xcc\x74\x13\x4c\xb3\x4e\x13\x7e\x2e\xae\x64\xa8\xa8\xea\xb6\xf1\x7e\x15\x91\xe6\xe4\x52\x55\xbd\x6e\x06\xd9\x61\x2e\xe3\x99\x23\x9e\x86\x2f\xda\x8e\x49\xff\xfa\xf8\x9b\x77\x92\x62\xeb\x63\xbd\xd2\x3a\xa5\xf4\x7f\x2b\xfd\xba\x95\xde\xd5\xc4\x4a\x6f\xc3\x07\xdf\xbf\x64\xa5\x1f\xa2\x28\xaa\xe8\x53\x4a\x67\xfc\xfb\x6f\xa5\xdf\xb6\xd2\x79\xd2\xd9\xe8\xe2\x5f\xbe\xf6\x35\x5a\xfb\xea\x7f\x6b\xff\x66\x7e\x9e\x27\x6d\xfe\xab\xd7\xfe\xd6\x14\xd4\xd7\x29\xb0\xff\x77\xe5\xf6\x09\xcc\x41\xa3\x3c\xb9\x3d\xc7\xe8\x97\x67\x45\xfe\x1f\x11\xe7\x77\xda\x8e\x46\xf2\x3c\xe5\xc8\x0e\x7b\xb8\x84\x03\x26\x9b\xac\xbd\x77\x77\x04\xac\x12\xb0\x69\x65\x77\xc4\x1a\x96\x15\x92\x07\x73\xa2\x10\x11\xeb\x93\xf5\xbb\xec\x50\x10\xbb\xe8\xe1\xf5\x76\xbc\x9c\x45\x1d\xb7\x51\xbf\x08\x31\xc3\x8f\x76\x03\xef\x50\xce\x8e\xc7\x5e\xa1\x49\xfd\xb2\x02\xfa\xa5\x50\x55\x99\x2d\x9f\x0a\xf3\x86\xcc\xa2\x51\x49\x4c\x42\x14\xda\xce\x6d\x4e\x09\xa0\x51\x86\x2b\xe0\xb2\x29\x42\xbb\x28\xf3\x13\x8a\x1b\xce\x45\x3c\x45\x57\xc4\x33\x0b\x26\xc1\x16\xf5\x5e\x81\xda\xfe\x78\x71\x68\xb0\x02\x1a\xac\xf2\xcd\x5d\x17\x22\xae\x89\xe6\x3f\x74\xb7\x14\x8a\xfa\xc3\x50\xc0\x35\x3c\x42\xb9\x12\x4a\x73\x2f\x3e\x69\x65\x94\xad\x15\x45\x7a\x25\x22\x3d\xca\xaa\x6e\xf6\x55\xe4\x12\x8e\x41\x31\x6f\x09\x35\x28\x3d\x0f\xb5\x58\xdb\x86\xf7\x10\x89\x3c\xfc\xc7\xb2\x2d\xbb\x06\xce\x4d\xde\x8f\x11\x11\x23\x27\x1c\x15\xdf\xd4\x7f\xfd\x16\x38\xdf\xc4\xd4\x75\x7d\xfd\xda\x51\x5b\x13\x28\xf5\xfb\xeb\xa7\xae\xeb\x66\xbd\x72\x18\x7a\x0b\x79\xd3\xe1\x92\x71\xef\x87\x74\x7a\x44\xe9\x6d\x60\x66\x9a\x94\xfd\x99\x69\x7f\xeb\x57\x8e\x27\xe8\x5c\x5d\x21\x7b\x4d\x6f\xdb\x14\x08\x26\x56\x09\x27\x32\x3f\xe4\x65\x9a\xd8\x4a\x60\xed\x2a\xe2\x8e\xa4\x97\xe3\x75\x14\x45\x0d\xf2\x9e\xd1\xb9\xe4\xbb\x4e\x20\xe2\x47\x7f\x47\xf9\x99\x4c\xd8\xb2\x74\xed\x0a\x0b\xec\x2e\xa1\x07\x25\xd9\x6e\x36\x0b\x80\xf6\x83\xe8\xb8\x96\x14\xad\x05\xa9\x79\xfe\xda\xbb\x9e\x1e\x7d\xab\x1a\x8b\x6f\x3c\xa3\xd6\x53\x14\x45\x65\xed\xe2\xa1\x93\xd8\xff\x0f\x4d\xc6\xfa\xe3\x0e\xff\xd6\xc9\x36\x48\xaf\xec\xdb\x86\x8a\x53\x1c\x3d\xc6\xab\x7b\xf6\xd5\x5e\x48\xd8\x7d\xbb\x62\x6c\xa0\xe5\x86\xef\x05\xfe\xbf\xdb\xde\x9b\x0e\x7f\x1e\x0a\x92\x53\xbb\xa9\xdd\xd5\xff\x95\xd7\x8e\x91\xab\x74\x6d\xcf\xce\xe6\xc8\x37\xc0\x8a\x9c\x1b\xb6\xfa\x63\x93\x62\xc4\x6e\xbc\xfe\xe1\x97\x9f\xe7\x14\x4d\x19\x99\xd8\x33\x9a\x5d\xdf\x88\x04\x02\x86\x3b\xf6\x89\x0b\xe7\xb3\xc8\x23\xd2\x75\x0e\x91\x56\xef\x15\x90\xbb\xd0\x27\xc5\x4f\x39\xfd\x54\x26\x26\xa4\x22\xf0\x19\x87\x14\x79\xa9\x9e\x1a\x49\x14\x35\x92\xed\x30\x8f\x20\x1b\x53\x07\x68\x95\x97\xdc\x14\xa8\x2c\x22\x00\x2d\x8c\x5c\x5b\xf4\x75\x3b\xa5\x80\x5c\x1b\xba\x49\x8d\xb5\x59\x07\x84\x1d\x68\xed\xad\x9b\xfa\xe7\x44\x6b\x6f\x20\x2f\xb4\xf6\x46\x22\x5b\x07\xb0\xfb\x45\x84\xf3\x70\x69\x04\x53\x04\xb4\x9d\xc5\xc2\xa5\x0d\xfd\xf0\x4b\xd6\x29\xd1\x32\xf1\x9a\xf2\x12\xd8\x71\x1e\x3e\xe7\x0f\xb3\x11\x5c\xcc\x57\x02\xd6\xfa\x4c\x97\x4a\xea\xde\x29\xb3\xfb\xa8\xa7\xff\xec\x53\x94\xfa\xa7\x8d\xf8\x96\x0d\x4a\x59\xf8\xfd\x22\x91\xae\x79\x6d\x3a\xc9\xb6\x71\x0b\x27\x1e\x1a\x5c\xc3\xb6\xd9\xf0\x3d\xab\x46\xde\x36\x1b\x7c\xd6\xd1\xc8\x54\xb0\xb9\xbb\x46\x31\xed\x6c\xbe\x1d\x87\x28\x73\xf3\x28\x9c\x24\x6b\xb9\xa0\x19\xf2\x20\x42\x98\xc4\xc1\x53\xe5\x5b\x14\x45\xfd\x81\x3e\x23\x75\x51\x93\xff\xdb\x67\xa4\x76\xc0\xdb\x7f\x24\xff\xbb\x41\xf9\xdf\x7a\x4a\xbe\xed\x58\xd1\xc4\xf0\xdf\xb1\xf2\xde\x63\x65\x96\x44\xd1\xec\x1f\x38\x56\xec\x99\x61\xf7\x64\x66\x77\xbe\xee\x60\x38\xcd\xea\xbd\x8f\x8e\x5e\x12\xd0\x53\x8c\xf7\x1c\x16\xac\xb5\x67\x6f\xe3\xed\x0a\xfb\x3e\x82\xcf\x61\xd7\x07\x53\x61\x25\x38\x5e\x97\x41\x1f\x83\x0c\xba\xd4\xe0\x82\xd5\xb4\xa7\x9b\x49\x70\x27\x8f\xfd\x0e\x19\xda\xff\x29\xe6\xad\xfd\x06\x06\xf0\x1b\x28\x67\xb2\x50\x38\x0e\xa7\x12\x34\xc9\xbc\xad\x5b\xd2\xe7\xa1\x9e\x42\xab\x4e\xaa\x1d\x4e\x17\x75\xef\xd1\xc5\x7c\x2b\xf3\xab\x29\x70\x8a\x57\xa5\x7f\x69\xb4\xa7\x94\x95\xb1\x41\x3b\x35\xfd\x44\x93\x37\xbc\x0a\x5c\x89\x9c\x8c\x91\x6e\xa5\x91\x92\x06\xa3\x9a\xd2\xe5\x90\x52\xaf\x11\x42\xb7\x61\x3e\x39\x24\xe5\xca\xe8\x09\xde\x95\x56\x87\xa3\x79\x32\x2a\x34\x07\x92\x5e\x90\xf5\xb7\x42\x1d\x5f\x08\xd6\xbf\x16\x49\x9e\x38\x13\x4f\xc7\xf5\x7e\xa1\xe6\x29\xa9\x97\x76\xb5\xc4\x9e\x5b\xb4\x66\x9c\x83\xcc\x32\x01\xf9\x5d\x19\x59\x73\xa4\x7d\x86\xbc\xee\x0b\x72\x34\xc8\x47\x35\x9e\x1a\xea\xd5\x97\x08\x52\x11\x21\xab\xde\xf0\x68\x4e\x09\xd3\x79\x73\xe9\xa7\xa5\xf5\xb1\x62\x7b\x5c\xdc\x67\x3b\x2c\x2d\x71\x50\xa8\x06\xcb\x3f\xb3\x0d\x0e\x55\x11\x83\x37\x77\xa6\xea\xa3\x48\x03\x9a\x3e\xd8\x6d\x3a\x7b\xc8\x22\x62\xd7\xb5\x12\xd7\xe4\x2f\xbc\xef\x52\x26\x16\xf5\xa3\x50\x63\xca\x27\x8e\xf3\x33\x3b\xa4\x5a\xcd\x18\xf5\x35\x07\x0b\x21\xb2\x55\x77\xda\x1c\x8b\x71\x10\x4d\x18\xb8\x62\x75\x3c\x70\x45\x29\xce\xc0\x29\x95\x6d\xee\x5b\x39\xe9\xcc\x5b\x1e\xf1\x2f\x13\xb4\x71\xbd\x15\x42\x88\x50\x22\x09\x68\x4b\x01\x6d\x95\xcd\xe6\x23\x5a\xeb\x2c\x42\x79\xad\x89\x12\x85\xae\xca\x53\x5b\x11\x8c\x36\x65\x4a\xea\xd8\xb7\x8d\x00\x99\x8c\xbf\xb1\x99\x5f\xfd\x1a\xd0\xba\x4d\xfe\xe2\xcb\xb3\xfa\x36\xa3\xea\xd1\xec\xb7\x1f\x7b\xe2\xc3\xe2\x49\x0f\x4c\x24\x16\x56\x8f\x23\x9d\xb8\xf3\x5a\x08\x71\x95\x62\x4c\x52\x5c\x31\x1c\x2e\xd2\x71\xd3\xb9\x90\x12\x88\xba\x46\x6f\x6a\xd9\x22\xab\xec\xa2\xf9\x23\xb9\xd4\xf8\x59\xef\xa4\x0a\x72\xf9\xe9\x7e\x39\xb1\x17\xc3\x36\xc7\x39\x32\xfc\x75\x7c\x58\x56\xfb\xd4\x88\x99\xdf\x59\x65\xee\x43\x14\x45\xc3\x96\xfe\xf1\x34\x6a\x85\x72\x5c\x12\x1f\xe9\x18\x6e\x6e\x11\xe5\x6d\x5e\xcf\xad\x84\x78\x82\x9f\xd0\xc8\x68\xd2\xd8\x58\x04\xcd\x30\x8a\x31\xd5\xe3\xcc\x39\xd8\x31\x59\x6d\x61\x36\x6a\xd1\x6d\x68\xde\x92\xef\xac\xd6\xbb\xe6\xc0\x9d\xa0\xf5\xd2\x6d\xad\x86\xf9\x14\x1a\xfb\xb3\xa5\xca\x8f\xf6\x55\x47\x82\x14\xdf\x3d\x80\x88\x3a\xda\x71\x4f\x6d\x9e\x48\x34\xa1\xbb\x77\x93\x5d\x62\xcd\x57\x15\x69\xdc\x7b\x22\xc6\x76\x69\x02\xd6\xcc\x50\x7e\x5a\xfe\xe5\x22\xc9\x36\xe9\xe4\x36\x31\x1c\xa4\x93\x99\x90\xe1\x16\x58\x1c\x2f\x41\x32\x92\x16\xe5\x0d\xd4\xdc\x52\xea\x19\x5d\x7f\x8b\xf1\xa3\x8b\x6b\x8a\x99\xd8\xac\x93\x6a\x18\xf6\x97\x9d\x8c\x8e\xea\x11\x1e\x9d\x56\x34\xa1\x45\x2f\x90\x79\xa0\x4e\xc7\x49\xc1\x28\xc4\x52\xec\x06\xbc\x6f\xff\xb0\x6b\x16\x9d\xfa\xb3\xc7\x51\x4e\x7e\x47\x8d\x2a\x0d\xab\x0c\x59\x2f\xdb\x15\xb7\xa8\x57\xe3\x77\x77\x86\xd4\x6c\x77\xf2\xd7\x6a\x4b\x67\xdd\x74\x96\xc8\xc7\xa5\x01\x8a\x7e\x37\x93\xbc\x81\xb9\x0d\xd7\x8d\xe4\x35\xe3\xbb\xa6\x0c\xd6\x96\x33\xe8\x50\xc3\x59\x8b\xc3\x63\x5b\x92\x99\xd1\x87\xb5\x07\x5a\xe9\x07\xf9\x4b\x0d\x5f\x6d\x84\xc1\x42\xe6\x79\x17\x02\x87\x30\x2f\xe1\x93\x0d\xd9\xa3\x47\xe0\x08\xf4\xae\x75\x6f\x4d\x23\x44\x6f\xf7\x82\xb9\xb4\x48\xec\xd3\x3d\x21\x13\xe2\xae\x25\xcb\xea\x6b\x71\x80\xa6\xf2\xb0\x6d\xc9\xa1\xd4\x28\xa5\xda\x96\x48\x65\x35\x67\x4d\x49\xf1\x4f\x5a\x56\x82\x56\x42\x14\xe1\xb2\x1a\x7b\xed\x0a\x5f\x88\x40\xc0\xaa\x4a\x34\x87\xf2\x83\xfc\xc5\x6b\xa8\x90\x20\x1e\x63\xa2\xfa\x11\xcf\x16\xaf\xd4\xaa\xe1\x98\x52\x3f\x99\xb9\xad\xbc\x49\x3d\x99\xe8\x55\x5d\x3e\xd5\xe5\x06\x91\xdc\xc2\x72\x8f\x66\x85\x4c\x63\x20\x81\x81\x79\x0b\xaa\x1a\x52\xba\xed\x27\x73\xe4\x5d\x4d\x77\x89\xcb\x1f\xcc\x39\xf6\xcb\x32\x19\xe9\x49\xed\x24\x10\x26\x81\x6d\x93\x61\x15\x90\xd0\x5a\x32\x91\xa0\x67\xdb\xe5\x9c\xdb\x89\x9c\xa0\xf9\x13\x59\xe9\xc8\x51\x90\x0a\x50\xfc\xe0\x47\xe6\x00\x2c\x0a\xfb\x64\x74\x02\x4c\x8d\x6f\x49\x9a\x9c\xb1\xe2\xea\xa1\x81\xd4\xac\xc6\xe7\x81\x7a\xfd\x88\x84\x00\x44\x22\xc7\x2b\x47\x64\x04\x00\x19\x43\xc7\xeb\x7a\x6c\x08\xf4\xc9\x34\xc1\x3c\x28\xb3\xbd\x30\xb2\x24\xdb\x13\x1d\x2f\x55\x19\xa6\x2a\xbf\x06\x4f\x5e\x34\x4d\x14\x2a\x68\x97\x0f\xea\x35\xc6\x50\x77\x4f\xe4\x6d\x43\xd2\x2f\x91\x98\x21\x99\xf3\x87\x2a\xb1\x9b\xff\xd6\x44\x07\xbf\xe2\xad\x41\x82\xee\x58\x5f\x63\xaa\xf2\xaa\x6a\x67\xac\x1f\x9a\xf9\xa8\x77\x17\x2e\xb2\xf4\x1a\xe9\x80\xb5\x1f\xee\xf2\xea\x9e\x25\xe8\xc0\xf2\x9b\xf7\x61\x90\x19\xfc\x9b\xd1\x98\x83\xd4\xc3\xa6\xf9\x54\xff\xe5\x63\xc4\xed\x37\xf8\xd6\x8c\x3a\x1f\x9b\x78\x9b\x1d\x72\xce\xc6\x08\xb1\x63\x33\x7e\x07\xd0\xcb\x5b\x23\xc8\xb3\x0d\x30\xc6\xa4\xbf\xf1\xf8\xba\x61\x95\x0a\xc3\x26\xdd\x64\x59\x2e\xae\xb1\x38\x24\x96\x39\x40\x2e\x2f\xad\xa9\xf3\x5e\xcc\x8b\x8e\xef\xfa\x9d\xfc\xc5\x07\x49\x3a\x73\x1a\x95\x4c\x16\x4c\xfd\x94\x8f\xfa\x5d\xc3\xf1\x50\xe2\xcd\xff\xe6\x05\x10\x22\xd5\x3b\xb0\xce\xa2\x94\x6f\x37\x8b\xa3\xa8\x11\x97\x07\xd6\xf7\x49\xea\x8c\xd4\xe9\xbd\xa0\xd4\x3f\xba\xd6\x6d\x9e\x33\x43\x2f\x18\xe8\x98\x35\xf1\x87\x2f\x7f\x9e\xf2\xd0\x9c\x67\x75\x20\x36\xc7\xe1\x4f\xff\x93\x06\xbd\xd8\x42\x19\xff\xce\x1d\x8d\x0e\x88\x45\x97\xa8\x51\xee\x61\x45\xa7\x9a\x59\x94\x91\x6a\x66\x9a\x23\x01\xb8\xc7\xbd\xb9\x18\xe5\xb8\x0a\xfe\xc3\x93\xd2\x85\x62\xcc\xa4\xec\x35\x27\x60\xe0\x59\xd1\xc4\x74\x9d\xf4\xae\x97\x7d\x24\xa8\x9f\x65\x85\x6c\x56\x6f\xe9\x65\x8c\x3b\x11\x2a\xe0\xe5\x57\xca\x8f\x03\x63\xb9\x86\x13\xdd\x5a\x3a\x5f\xd0\x45\x6f\x30\x77\x89\x2f\x5d\xd1\xde\x9d\x93\xb6\xd1\xda\xf8\x47\xe3\x44\xbe\xe0\x91\x34\xa0\x0c\xa6\x61\x36\x5d\x3f\xbb\x16\x5e\x1e\x9b\xe1\x94\x07\x9e\xf7\x59\x61\xc3\xab\xd2\x1e\x26\xf2\xea\xc4\xb3\x58\xf2\x85\xfb\x2e\xe7\xbb\xc1\xc8\xbd\x08\x89\xe4\x19\xf2\x31\x7f\xd8\xdf\xd2\xa4\xab\x4d\xdf\xa3\x01\x75\x2f\xb8\xd8\x60\xbe\x55\xa7\x1b\x65\x32\x12\xb5\xa6\xc8\xd6\xf4\x62\xae\x10\xe3\xd2\x66\xf4\x06\x56\x0d\x6f\xc5\x24\x41\xdb\xbe\x61\xa7\x7e\x4f\x0a\xc4\x80\x3d\xca\xfe\xd5\xfe\x74\xf2\x5b\xfd\xcf\x1b\xbf\x35\x36\xea\xd1\x27\xde\x66\x1d\x57\xd3\x22\x02\x91\x03\x56\x29\x05\x84\x14\xda\x1d\x2f\xe1\xca\xe1\x88\x84\x44\xeb\x57\x60\xb1\x27\xb2\x55\xf0\xdd\x30\x7c\x01\x08\xb9\x64\x32\x1f\x76\xed\x7f\xfa\xd5\xe0\xa3\x38\x6d\xfd\x94\x05\x9a\x94\x3f\xf2\xfc\x7b\xd9\xdc\x3e\x36\x43\x9e\xe1\x47\xe1\x7c\x69\xe9\x32\x93\x04\xc2\xb5\x14\x7a\x4e\xab\x0f\x51\x14\xcd\xb5\x45\xf6\x69\x2f\x0d\xb2\x6f\x4c\x51\xcd\x26\x33\xe9\xd3\x5d\x0e\x5d\xa4\xd4\xdf\xc1\x5b\x9a\x41\x7c\x38\x75\x96\xd1\x24\x90\x96\xfe\xe0\x64\x4b\x59\xed\x92\x0f\x85\x38\x8a\x0a\xf1\x80\x33\x68\xd2\xac\x0b\x33\x4e\x3d\xee\xdb\x2e\x17\x2f\x7c\x39\x9c\xc7\x30\x29\x79\x5f\x8e\x96\x9e\xf9\x64\xfa\xf7\xab\xce\x07\x2d\x4f\xfc\xf2\xe8\x40\xeb\xcd\x3e\xca\x87\xf3\x2b\x92\x49\xdd\xce\xf5\xe4\x47\x97\xf2\x00\x14\x44\xd3\x32\x46\xa1\x3a\x4c\xd5\x29\xfd\x57\x43\x21\xa8\x3a\xca\x46\xd9\x86\xe9\x46\x20\xb9\xee\x83\xd9\xf6\x85\x2f\xdf\xf1\x26\xa7\xdb\x02\x4a\x56\x35\xdd\x4e\x1b\x5b\x22\xbf\x26\x3a\xe5\x66\xd3\x40\x97\xfc\x6e\xcf\x1d\x06\xa6\xed\xf6\x2f\x56\xdf\x9d\x8d\x28\xd4\x66\x4a\xa1\x57\xfc\x69\x1f\x8b\xb1\x1d\xc3\xf6\xcf\x1c\xc0\x72\xc4\xb2\xfe\x1b\x97\x6c\xaf\xb8\x13\x2b\x33\x50\xef\xa8\xd7\xd1\x88\x63\x4a\x34\xb6\x0d\x1c\xf5\xfe\x79\xe8\x1f\x85\x39\xce\xef\xaf\x3c\x21\x73\xc2\x31\xfe\x5d\x07\xe7\x37\x2e\x70\x69\x99\x54\xfd\x42\x33\xa9\xe3\x09\xc4\xe5\x20\x48\xe1\x53\x9f\x6e\x21\xf9\x82\xd1\x81\xbc\xad\xc1\x6c\x27\x2f\x60\x58\x8f\x87\xd1\x7c\x36\xba\x72\xd0\x9c\x83\xad\x7c\x34\xe7\x0a\x1c\x35\xdc\xe2\xea\xde\xa8\x15\xe2\x75\xfe\xfb\x97\x24\x16\xf9\x81\x9e\x2e\x3e\x08\x26\x60\xbe\x89\xa2\x68\xa9\x97\xe8\xdb\xb2\x1a\xc8\xff\xc7\x42\xe4\xce\x95\xc5\x7f\x92\x91\x8c\x58\xde\x5a\x6b\x3a\xfd\x24\x22\x2b\xa4\x61\x5d\x07\xc0\x2a\xde\xa2\x0e\xc6\xe6\x2e\xf1\x25\x80\x8d\xce\x4e\x49\xdf\xee\xe2\x6d\x35\x23\x02\xe8\xdf\x6e\x78\x85\x29\x1a\x79\xc9\x86\xff\x25\x2c\x02\xcf\xa1\x8b\x05\xce\x2f\x56\x68\x5e\x53\xc9\x87\x6b\xdc\xa7\xc5\x33\xfa\x4e\xfd\xd5\xa6\xb4\x38\xc7\xc4\x03\x05\x18\xad\x1b\x32\x50\x7c\xb3\xf7\x9b\x16\x9d\xc0\xa3\x47\x71\xe5\xb1\xaa\xc7\x01\xce\xc8\x0b\x7b\xc3\x98\xfc\xb4\xb2\x57\x99\xe2\x37\x7e\x7a\x01\x12\xcd\xf8\x83\x49\x26\x83\xa2\x5c\xab\x3e\xea\xe9\xe0\xee\x0c\x2b\xc5\xc7\xf3\xc0\xab\x1f\x07\xf2\x37\x5c\xf7\x65\xde\x6e\xfb\x8f\xc2\x1f\x74\xd8\x0e\x17\x3d\xec\x88\x39\x4f\x41\xcf\xfb\x0c\x11\xa8\x2b\x71\x89\x16\xf2\x61\x9f\x5d\xc7\x4e\x60\xe9\xf4\x2d\x03\xcb\xd3\x4a\xac\xaf\x7a\x5b\x98\x06\xf8\xd4\x68\xb2\x02\x7a\xd0\xce\x1a\x0e\xac\xc8\xe6\x9c\x74\x4d\xa7\x2a\x32\x99\x44\x2f\xc8\x20\xda\x76\x0c\x06\xfc\x41\xa6\xb0\x96\x00\xa1\x86\xcd\xc9\xe8\x82\x84\xa8\x25\x4b\x4e\x5c\x65\x27\x4e\x0f\x26\x4d\xaa\xe2\x3f\x68\x4b\x65\xff\x0d\x49\x7c\x37\xea\x0c\x35\x07\xdc\x2c\x16\xc6\xb3\x0b\xa1\xf6\x29\xe1\xd6\xfd\x0d\xf1\x52\x37\xeb\xae\xcb\x94\x50\xcd\xb7\x7c\x1f\x7c\x6c\xb4\xfe\xf3\x24\xf8\x1e\xa5\x25\xe1\xb1\xc2\x52\x63\x6b\x98\x58\xeb\xee\xfa\xa7\x1e\x48\x13\xfa\xf1\xc2\x1d\xf3\xe1\x5e\x36\x8d\xe1\xe2\x8a\xab\x64\x79\x9e\x85\x7a\xd7\x20\x97\x40\xb1\x19\x1e\xcb\xbb\xa6\xa0\xc7\x56\xbd\x7f\x71\x34\x3a\x12\xec\x8e\xe2\xc0\xd2\x76\x9e\xe3\x4f\xee\x5a\xeb\x7f\xd2\xac\x9d\xb1\xc1\xc1\x44\x5a\xa3\xea\x48\xbe\x05\x14\x35\x99\x82\x21\x22\x43\x9e\xe0\x74\x5e\xcf\x5d\x1b\xdf\xe7\xef\x40\xbb\x69\x0b\xdd\xcc\x5e\xaf\xba\xfd\x8d\x0e\x89\x2d\x80\xa0\x1b\xf4\x45\xae\xc8\xc3\x83\xc3\x5b\x06\x96\xc8\x61\x1d\xed\x9a\x62\x9f\xef\x1d\x84\x82\xb4\x83\x63\xda\xfe\x99\xd0\x18\xd2\xb7\x50\xa5\x9c\x32\x72\x0b\x1f\x03\x67\xca\xb8\x95\x7c\x38\xc4\x72\xe9\xe8\x1f\xfb\x39\x98\xd1\x24\x2e\xbf\xf6\x73\x5d\x1e\xbc\x52\x45\x79\xf0\xea\x6b\x3f\xd7\x6a\x30\xe4\x75\x9f\xc5\x26\xaf\xa0\xd5\x80\x49\x48\x2f\x63\xd4\xa4\xfc\xd2\x58\xdb\x4a\x67\x90\x77\x93\x28\x4c\xe1\x96\xfc\xb4\x7b\x36\x6d\xae\x7b\x49\x05\x96\x72\x60\x07\x6f\xd0\x19\x88\xdc\x72\x4c\x2b\x74\x4a\x0d\x1e\xe9\x2e\x7d\xd6\xa9\xf7\x28\xce\x21\x85\x97\x41\xf2\xa6\xe3\x47\x57\x71\x21\x9c\x3f\x37\x03\x2b\xf6\x2a\xca\x0d\x95\x88\x99\x10\x35\xea\xf2\x92\xbf\x15\xb8\x26\xd6\x19\xd3\x7a\xf1\x77\x83\x57\x22\xdf\xaa\x24\x8a\x4e\x8c\x2a\x39\xf9\x94\xa4\x50\x1e\xfb\xc2\xfd\x22\x86\x0a\xb4\xab\x04\x35\x02\x54\xfd\xe7\x22\x4e\xbc\x49\x68\x6b\x7f\x8d\x7c\x7e\x90\x26\x25\x0d\xf7\xfe\x5b\x1c\x93\xbd\xde\x67\xba\x0e\x16\xf5\x8e\x4b\xc6\xb2\xea\x8b\xe5\x5c\x80\x43\xeb\x5e\x32\x6f\xf3\x02\xa7\x32\x87\x92\xba\x44\x4d\xe9\x12\xb5\xad\xc9\x20\xbe\x8c\x09\x9d\xaf\xcd\x55\x1a\x39\x79\x3b\x6a\x76\x71\xb5\xe4\xd0\xd5\x9e\xcd\x51\x99\x19\xcb\x08\x3a\xbc\xbd\xf0\xde\x44\x04\x6c\x15\x55\xbb\x19\x8c\xfa\xfe\xd9\x1f\xb3\x4d\x58\x7b\x19\x45\x51\x91\x06\x7b\xa3\x07\x0b\xce\x9f\x5f\xdd\xe8\xff\x40\xd5\xac\xeb\x77\x94\xeb\x0c\xde\xbd\xae\xa2\x28\xda\x6a\x49\x0e\x1e\xbc\xde\x3e\x3c\x95\x53\xbc\x67\x2e\x15\xae\xc0\x3d\xa4\x0d\xf9\x4c\x53\xa8\x26\x6f\x43\xfb\x83\x27\x1c\xec\x37\x41\xfb\x52\x4e\xad\x87\x70\xea\x02\xc4\xa4\xcf\xea\x08\xe5\x9f\xbd\x4e\xed\x71\x61\xcf\xa4\x70\x8e\x55\x3a\xe0\x06\x37\xef\x50\xa6\xe4\xa6\xb9\x7a\x7f\x86\x2b\x13\x2e\xf5\x02\xb9\x8a\xa4\x0d\x01\x8b\xd3\x16\xa5\xc5\x34\xb5\x30\x4b\x41\x5a\x82\xd1\xcc\xb1\xd2\x64\xa2\x56\x24\xff\x52\xfb\x33\xd5\x6a\x33\x6e\x7e\xb6\xb5\xa8\xbf\xe3\xea\xf0\xd5\x4d\xa0\xe9\xb5\xf1\x37\xd5\x49\xab\xf5\x15\x7a\xe8\xa5\x09\x33\x10\xd6\xc2\xc4\xcb\x7a\x11\xe7\xad\x31\xd6\xbe\xa0\x9c\xea\x9b\x00\x02\x8b\xab\xd9\x27\x32\xce\xd5\xb2\xc7\x67\x86\x47\xcf\x6b\x99\xc4\xfb\x5a\xe4\xdb\xd1\xc7\x07\xc8\xa7\x92\x89\xc2\x2d\xbe\x49\xf7\x8c\x25\x49\xcc\xb3\x62\x2c\x14\x07\x46\xc8\xdb\xde\xda\xb2\xd5\x4d\x56\x5c\xdd\x9f\xd4\xd6\xb9\x5e\x5d\x2f\x4c\x3f\x10\x53\x64\x84\xbd\x76\x23\x23\xec\x8d\xfd\x60\x27\x7d\xf1\xea\x0a\x81\x35\x13\xe6\x70\xe6\x7e\x82\x39\xb6\x2f\xfd\xab\x82\x39\x29\x06\x5f\xa1\x4e\xb7\x87\xd8\x90\x53\xae\xe3\x7e\xd1\x32\x0e\xa2\x5e\x36\xf4\x60\x16\x95\x09\x85\xd7\x4c\x5b\x49\x00\x23\xde\xd2\x6a\x71\x7c\x04\x69\xbc\x5a\x3b\x1d\xe0\xe1\x66\x72\xdf\xc6\x62\x66\xbe\x21\x85\xe4\x0d\xd5\xc5\xe0\x56\x1e\xb4\xe7\x9a\x16\xd8\x92\x6f\xbd\xb3\x1c\xcb\xbf\xbe\x26\xef\xf5\x1c\x1a\x1d\x63\x7c\xf7\xaf\x0f\x4c\x22\x93\x2f\x1a\xeb\x56\xf9\x40\xc6\x19\xbe\x9c\x18\x7e\x24\x2e\x20\xb8\x04\xa8\x05\x33\xde\x36\x9c\xf0\x74\xbc\x94\x31\x9d\x9a\x91\x71\x3a\x9e\x6f\x7c\x7e\x09\x50\x1a\x0b\x8b\xb6\xb8\x7e\xef\xc7\x89\x35\x6a\x1f\xc6\xf0\xf6\x51\x93\xdb\xe3\x7a\xd9\xff\x44\x74\x42\xf6\xc4\xe1\x27\x11\xd9\xc1\x6a\x79\xc1\x5a\x0a\x23\x48\xdf\xab\x80\xde\x26\xcb\xa7\x57\xd2\x55\x5c\xec\x85\xca\x8a\xe6\xd5\xdc\x0a\x87\x39\xa1\xb2\xd1\xaa\xcc\xe2\xa3\xd6\x64\xfe\x94\xa7\x0f\xe8\x62\xfa\x5d\x1e\x8c\x13\x8e\x47\x31\x86\x03\x6d\x90\x78\x98\x42\x35\xdb\x22\x46\xd2\x8e\x03\xa4\xf5\x59\x9e\x48\x43\xc2\xcf\x28\x09\x36\xb4\xda\x39\xc5\xe8\x0e\x15\x72\x43\x38\xd6\xa5\x26\xa9\x1f\x07\x7a\xe4\x5f\x89\xc0\x00\xd3\x0d\xad\xd5\xc8\xed\x5f\xe6\x7d\xd0\x06\xee\x55\x08\xeb\x1d\xfc\xad\x3e\x69\x10\xc9\x55\x9f\x44\x17\x1f\xe5\x4d\x93\xa2\x8c\xf0\xde\x8e\x52\x6b\x59\xfd\x51\x5a\x55\xe6\xf8\xc4\x28\xa7\x72\x94\xda\x11\x87\x3e\x35\xdc\xa0\xb5\x4c\xac\x23\x6b\x3b\xdf\x73\x82\x58\x80\xa2\xe7\x21\x2d\x6b\xfb\x49\xc8\xdb\x84\xdb\xae\xeb\x92\xac\x3b\xc5\x9c\x8b\x0f\x76\x1c\xb2\x8e\x39\x0a\x60\x33\x49\x16\xa4\x7e\xc0\x5c\xa5\x9b\x4f\x40\x95\x39\x11\x5d\xa5\x8f\xf5\xca\xa6\x26\x1d\x81\xd9\x16\xc5\xda\xd4\x5d\x53\xad\xa1\x92\x29\x3d\x20\x1c\xdc\x8b\xfd\xaf\x5e\x3e\x90\x9c\xd1\xd3\x19\xf5\xf5\xc6\xfb\xf1\xa1\x14\x47\x51\x29\x1e\xc1\x93\xea\x8e\x04\x03\xda\x8a\x9b\x1b\x3a\x80\xe8\x96\xbf\x7a\xc6\xc9\xbf\x26\xdc\x1e\xbe\x68\x8e\xa8\x91\x77\x7d\xfc\xc2\xcf\x2c\x73\x54\xbb\xe9\xa8\x2d\x2f\x4f\x74\x89\xd8\xc0\xbb\x52\xcf\x71\x8b\xf5\xaa\xac\x63\x8a\x5a\x75\xeb\x1d\x16\xe7\x54\xf0\xb0\x7e\xe1\xb6\xea\x38\xe8\xa9\x6e\xc0\x03\x62\xa7\x83\x2d\x88\xbe\x06\x5c\x5d\x38\x6f\xd5\xad\xcf\x45\x1a\x15\x73\xd3\xec\xfc\x5b\xfb\x3a\x23\x42\xf0\x87\x4b\x5c\x17\x51\xd2\x2c\x12\x00\xd4\xf6\xdf\xb5\xc9\x6e\xb8\x6f\xe7\x65\x95\x62\x40\xcd\xba\x49\xb5\xd2\xb3\x81\xd5\x82\xa7\x71\xc3\x34\xa5\xa1\x6e\xef\x04\x19\x59\xaa\x34\x4b\x62\x11\x4e\x4a\x5a\x20\x3c\x80\xdb\x6f\xea\x40\xa6\xd4\x6b\x74\x5b\xbb\x34\x2d\x15\xc5\xea\x7e\xae\xab\x90\x69\x0f\xad\xc4\x9e\x73\xfa\xd3\x36\xf9\xdc\x5f\xfd\x70\x84\xf3\x35\xcc\x84\x88\xb9\xeb\xdb\xaf\x15\x6d\x1f\xb1\xd2\x07\x68\x75\x9a\xb5\x44\x2e\xcb\x01\xca\xff\x63\x5b\x46\xf2\x28\xa9\xb5\xf1\x59\x0f\xb3\x49\x43\xfc\xac\xe6\xa7\x87\x72\x65\xc9\x64\xd8\xc9\xa5\x12\x39\x89\x9c\x6e\xef\x40\x05\xa8\x78\x8f\x01\x80\xec\x49\xd6\xbb\xb1\x4b\xa9\x7b\xad\x51\x80\x59\x5d\x84\x0d\x7d\x94\x5b\xa7\xf9\x9d\x35\x29\xce\xfe\x22\x07\xeb\xef\x61\x60\xa4\x47\x4f\x1c\x0e\x60\x3d\x84\x54\xc3\x48\xf0\x8b\xef\xaf\xd9\xe0\xb5\x36\x6a\x7a\x61\x6e\x25\xcd\x08\xf5\xc1\x4c\xf1\xb3\x55\x0a\x44\xd3\xb4\xf3\x4b\x92\x8e\xb3\xf4\xf6\x9f\x6e\x14\x45\x55\x3a\x18\x7a\x83\x3f\xc5\xfc\x4d\x0a\x31\xf9\xb5\x42\xa9\xd8\x9f\xf2\xb1\xd5\xfb\x49\x4a\xf2\x1a\x7c\x64\x45\xa7\x3b\x80\xfe\x57\xdd\x7f\xf3\x46\x4a\x73\xc2\x05\xc9\x07\x93\x0b\xfd\x06\x83\xb8\xb2\x44\x57\x70\x88\x2e\x80\x06\xbd\x4a\x16\x9d\x8a\xa4\x80\x44\x2c\x3a\xe3\xdc\x6e\xca\x3a\x05\x79\xf8\xa8\xd5\x22\x7b\xd3\xc7\xee\xe4\x6b\x16\xb9\x7d\x29\xd1\xc0\x33\xf7\xd9\x01\xa6\x0e\xe9\x9e\xc4\x89\x74\x50\xe2\x79\xa3\x8d\x03\x5a\x3f\x09\x2e\x5e\x06\xa4\x66\x50\xe4\xfa\x9c\x7e\x75\x07\x64\x37\xae\x9a\x42\xed\xc6\x5d\x9f\x8e\x57\xa5\x8a\x16\xeb\xe7\xcb\x13\x28\xdc\xf0\x0d\xa2\x63\x8c\x69\x62\xa9\xfe\x08\x2d\x55\x7b\x9f\xf1\x45\xd2\x67\xee\xe7\xb7\xee\xa1\xd9\x98\xa2\x86\xe6\x70\x5f\x6f\x0d\x21\xc1\xa0\x3e\x4b\x0d\xb1\x06\xe4\x9d\xd6\x6a\x13\xd7\x6b\x83\x44\x0a\x6d\x54\x46\xc6\xef\x1d\xfc\x9b\xf6\xb8\x46\xf5\x0b\xc6\xb6\x09\x61\x61\x58\x20\x08\x23\xfc\x5e\xb5\x89\xbd\x72\x94\xf4\x61\x48\x32\xfb\x11\xfd\x8f\x0b\xe0\x64\x6a\x53\xa7\xf8\x48\x3d\xd4\x58\xa0\xa0\x53\xb8\xea\xa8\xcf\x22\xeb\x46\xc8\x91\x3c\xc5\xd8\xfd\xe6\x1a\x65\xd0\x55\xf3\x0d\xfe\xe7\xb6\x83\x24\xbf\x2d\x66\xde\x73\x86\x59\xc6\xc5\x65\x7c\x4f\x63\x50\xa8\x1c\x3d\x3a\x33\xdb\x36\xdd\x26\x5a\xc5\xf1\xe8\x20\xe3\xc3\x30\x89\xa2\x61\xb2\x86\xdf\x52\x9d\x4e\xe9\xa2\x8f\x43\x1b\x2e\xe1\x63\xd3\xba\xb4\xd1\x8d\xa6\xed\x38\x06\xd4\x66\xd8\x93\xa2\x4c\x3b\x9d\x4a\x4e\xa8\x98\xf4\x8c\xa3\xd5\xfd\xca\xce\x00\x1d\xc7\x21\xf2\xa3\xb3\xd6\x46\x5a\xbd\xa3\xf1\x99\xb5\xd8\xd2\xe7\xa3\x7b\xd6\x42\x4a\x8a\xa1\x33\xa3\xe9\xa0\x9d\xa9\x8b\x82\xcb\xdc\x77\xa0\x43\x23\x90\xdc\xd2\x42\xeb\x7f\xd4\x37\x8b\x6f\x81\xce\x0c\x31\x63\x95\x6a\x50\x6a\x98\xeb\x5b\xfd\xc2\xd9\x04\x94\x1c\xf1\x2f\x5e\x04\x6f\x8f\xc5\x6f\xdd\x63\x8b\x42\x22\xa4\x49\xf2\x1b\x6c\x09\xd9\x19\x0b\xad\x9a\xb9\xac\x75\x49\x42\x97\x7b\x5f\x9b\xb5\xa1\x1e\x2b\x38\x9e\x2c\xab\x99\x5c\x3e\xc3\x46\x8e\xe4\x47\xc1\x7c\x84\x5b\x95\x27\x19\x31\xf1\x4a\xdd\xc0\x88\x61\x5f\x2f\x0b\xc2\xb2\xe7\x75\xa0\x3e\x55\xfd\x93\x13\x2a\x92\x47\x60\x4c\x6b\x1c\x89\x72\x8c\x01\x10\xa3\x3d\x1c\xcc\x44\xf9\x8d\x66\x1c\x6a\x39\x9f\x18\xa9\xb4\x23\x45\x68\x0e\x57\x3f\x35\x48\xeb\x02\x67\x4c\x8c\xd8\x17\xe3\x2c\x26\xd9\x44\xa8\xa1\x7d\xc3\xe9\x61\x3f\xee\xfa\xf5\xd9\x78\xc6\x7b\xcc\x90\x4f\x9a\xc0\x77\x8f\x6e\x67\x40\x11\x8f\xf4\x38\xa5\xcd\x59\x0c\x7e\x2b\xe5\x66\xf9\x85\xfa\xdd\xcc\xea\x4c\xf2\x10\xac\xf5\x46\xb7\x26\x4a\xfa\x31\xb8\xa0\xf5\xf8\xdc\x81\x76\x03\x71\x23\xcf\x51\x94\x1c\x0a\x74\xa9\xde\x16\xfc\xf8\x88\xc0\xf2\xa8\xed\x1a\xa4\xa1\x02\xdc\x36\x9d\x28\x5f\x8b\x48\x1f\xc6\x99\xc3\x66\xd9\x53\x7d\xd2\xcf\x22\xf4\xfb\xef\x41\x4e\x53\x4a\x0b\xea\x06\xbf\x2b\xc0\x6f\xa8\xe0\x68\xe7\x0c\x62\xc6\xff\x1a\xc4\x64\x54\x14\xb2\xa1\x62\xef\xbf\x1b\x3d\x9a\xe1\x10\xa5\x7c\xb3\x32\xe3\x51\x7c\xaa\x40\x4d\xfe\x16\xbe\x63\xea\x56\xa4\xb5\xe1\x1a\x19\xdd\x40\xde\x03\x77\x93\xfa\xdc\xa0\xc3\x26\xbf\x5f\x7c\xc2\x5a\x49\x5d\x93\xa9\x73\xe6\x14\xfc\x90\x7e\x62\x42\xf7\x27\xa7\xba\x9f\x0a\x8d\x20\x0d\x0c\xf1\x97\x0d\x19\x94\x26\x8e\xce\x4b\x93\x21\xa0\x2e\xc7\x73\x69\x23\xf6\x3f\x58\x37\x95\x53\xdd\x1a\xb8\x6d\xa3\x78\xee\x71\x84\xb9\xb8\xcf\x63\x76\x7d\x29\x71\xba\x6e\x72\x03\x91\x70\xd8\x1e\x80\x1d\x57\xe0\x55\xcf\xe7\xf1\x6b\xce\xc1\xd6\x80\x4d\x42\x6d\x3e\xd5\x0b\x70\x11\xc5\xee\x68\x14\xc8\x66\x42\xc2\x28\x5d\xe2\x9a\x38\x2a\x2f\x04\xde\xec\x62\xe8\x73\x52\xaa\x05\x6a\x6d\xe1\xcc\x5f\x07\x96\x1a\xce\x9d\xcc\x90\x12\xa5\x7e\x6d\x17\x9c\x8b\x14\x03\x28\x37\x1d\x85\x08\xde\x16\xda\x32\xd9\xb3\x3a\x61\xdb\x8f\xa4\x6f\x50\x6f\x47\x43\xb7\xbf\x26\xfa\x67\x98\x03\xd7\xf7\x83\x1f\xcb\x61\x6a\xe3\xac\xf8\xad\x39\x3d\xff\xbe\x14\x87\xf6\x25\x2b\x65\xf9\x6c\xef\x17\xd8\x18\x34\x00\xa7\x18\x9a\x27\x23\x3c\x51\x6d\x74\x12\x27\xf1\x7b\x12\x47\x91\x56\x0f\xde\xf0\x53\x83\x2e\xbe\x0e\xfa\x73\x08\x88\x0e\x13\xba\x06\x7e\x2b\xb6\x93\x9c\xd1\xf4\xb1\xd8\xfc\x7b\x6c\x04\xdb\x14\x4f\x26\x10\x67\xd3\x1d\xfd\x1e\x49\x5d\xf9\x8d\xea\x84\xb8\xe9\xb7\x69\xd1\x59\x32\x3b\x0b\x23\x60\xa5\xc5\x24\xc3\x14\xc4\xf6\xc3\x6d\x63\x56\xe4\x41\xee\x1d\x67\xa7\x4b\xed\x24\x74\xce\x4a\xda\x5b\x3e\x00\x1c\x90\x1e\x0f\xf6\xe6\xe5\xeb\x56\xba\x88\x8d\xd0\x22\x06\xd6\xb5\x81\x41\xbb\x1b\x01\xb6\xbc\x8a\xa5\x48\x52\xb8\x17\xad\x47\x4f\x92\x79\x5d\x48\x0e\x64\xa7\x4b\xd6\xbc\xb6\xb3\xb3\xae\x4d\x5e\xc3\x81\xe0\xad\x07\x52\xe3\xd0\xf0\x3e\xd4\x92\x28\xaa\x25\x33\x32\x77\xce\x28\xcc\x74\x4e\x2e\xc5\x15\x62\xe2\xc7\x95\xb1\x48\xab\xc5\x1e\xdb\x6d\xa3\xe5\x73\xe3\x8c\x68\xa8\xe7\xde\x21\x6d\xb3\xc7\xeb\x64\xd0\x44\x26\x14\xf2\xaf\x5c\xb5\xb9\x74\x72\x51\x5c\xb5\x27\x36\x8e\xfc\x72\xda\x93\x32\xf1\xc2\xd0\xa0\xfa\x79\x65\x04\x95\xe8\x8f\x0f\x3a\x2e\x6b\x04\x30\x8b\x1e\xa9\x40\x7b\x82\x23\xea\x82\xf2\x45\x04\x70\x2d\x8b\x19\xad\xa7\xb7\xce\x98\xb5\x65\xeb\x0a\xd7\xda\x6e\xa5\x50\xb4\x87\x9e\x5f\xac\x27\x96\xc9\x82\x31\xd3\x2f\x03\x96\x62\x86\x70\x76\x00\x55\x7c\x32\x4c\x53\xed\xe1\xba\x08\xf7\xd7\xa4\x48\x5e\x3e\xed\x3a\x60\xa9\xde\x61\x04\x3f\x85\xbe\x55\x91\x33\xc1\xae\x8b\x89\x87\x80\x21\x23\x80\x31\xb5\x29\xb2\x27\xc1\xb6\x28\x9c\xeb\xe4\xf0\x2c\x97\xb7\x17\x99\x76\x5f\xea\x88\x76\x05\xa1\xc4\x28\x17\xed\x51\x60\x8e\x0e\xad\x68\x29\xaf\x8d\x26\x4e\xec\x75\xfe\xb8\x7a\x84\xe6\xf3\xd2\x79\x4c\xd2\x42\xbb\xe0\xab\x53\x86\x23\x72\xe2\x61\x0e\xcd\xed\xb7\x4f\x21\x7d\xca\x68\x94\xbc\xf7\xb0\x9b\x6d\x92\x0f\x13\x9d\x12\xde\x1e\x65\xf3\x95\xb3\xe1\xf4\x86\x8f\x4d\xeb\x56\xac\x5b\x6b\x06\xb8\xc9\xf1\x32\x5f\x5c\xd0\x9a\x7d\x11\x26\x68\x28\x95\xf0\xaa\x42\x5e\xf0\x5c\x5f\x17\x4f\x3f\xdb\xb5\x9a\x9a\x18\x15\xcd\x41\x6e\x24\x8c\xc2\x1f\x84\x03\xdd\xae\x27\x59\xc7\xdb\x3b\xd6\x5e\x63\x32\xbf\xfb\x05\x4b\x43\x5a\xb1\x24\x85\xa2\x4a\x9b\x5d\xd5\x58\x5d\xbd\xab\x99\x04\x8c\x30\x6f\xe7\xb5\x54\x1c\x16\x11\x76\xae\x7a\x99\x09\xec\x0d\x17\xf7\x06\xf6\x70\x13\x20\x36\x8d\x58\x9e\x33\xe4\x4a\x11\x5b\x39\x44\xea\x98\x6b\x77\xf6\x08\x85\x6f\x44\xa9\x26\x04\x4a\x76\x79\x28\xdd\xdb\xc8\xb6\xfa\x9d\x38\x54\xd5\xd1\x78\x7d\x78\xd6\x56\x97\x6d\x3f\xf6\xb4\xeb\x91\x15\x32\x45\x20\x9c\xb9\xed\xf5\xa4\x4f\xae\xf1\x15\xb8\xee\x93\x85\xe3\x61\xd0\x0a\xfb\xdf\x11\xd6\xfc\xef\x2f\xa3\x6c\xc5\x70\x6f\x7b\xf5\x17\xf0\x91\xd3\x24\xb0\x10\xee\x25\x0d\x71\x4b\x6d\x86\x3c\x46\x80\xa8\x1c\x47\x11\xc6\x99\x9f\xf5\xe7\x5e\x22\x4f\x66\xfd\x71\x4d\xca\x13\xba\xdd\xdc\x59\x9d\xd3\xb4\x11\x73\xb7\xee\x55\xa4\xf6\xeb\x83\x71\x60\x23\xe7\xa7\x5a\xa0\xa5\x5a\xe6\x12\xad\xb3\x6e\xb9\xe6\xd4\xa4\xf7\x9c\x01\x4f\x5f\x62\x9c\xe1\xc9\xec\x43\x1a\xf2\xa8\x1e\x80\xac\x04\xd2\xfe\x44\xa3\xf1\xd6\x0e\xa2\x0e\xd1\x28\x33\x88\x21\x91\x04\xd8\x97\x8e\x6f\x0c\x8d\x57\x49\x4d\x0d\x3d\xde\xef\x16\x07\x47\x81\x5c\x77\x1d\xaf\xac\xed\x8c\xaa\x68\xd7\x43\x2d\xd5\xd1\xa0\x25\x46\x56\x26\xaa\xee\xf7\xa1\x49\xa9\x91\xee\x88\xf5\x3e\x59\xa8\x73\x18\xcd\x5c\xa8\xb7\xfa\x72\xd7\x55\xbb\xd1\x00\xdd\x06\x47\xaa\x9d\x96\xf5\xf4\xe1\x91\x45\x89\x79\x42\x03\x50\x4d\x17\x83\x4c\xdb\x51\x23\x04\x57\x2d\xc1\x84\x00\xdf\x92\xa7\xd9\xad\x5a\xd2\xa6\x5d\x83\xae\x74\xde\x89\xc6\xbc\x5c\xb6\x6d\xbb\x90\xb8\x7b\xdd\xa0\x61\x31\xf1\x17\x8c\x74\xa0\x16\xf8\xa5\x49\x52\x82\x7c\x24\x99\x4e\x15\x9c\xd9\x24\x09\xc1\x19\x14\x6d\xc7\x2e\x20\x7f\x2b\x59\x50\x1b\x1e\xd2\x0d\xb7\x1d\x15\x03\x53\xd5\x41\x70\xdc\xab\x69\x9a\x16\x43\x33\xd5\x2e\xdf\x07\x82\xbb\x10\xb1\xad\x53\x0b\xd8\xb0\x17\xc1\x16\x5d\x2a\x20\xbf\xa2\x07\xbb\x5c\x55\xbb\xb4\xf6\xa0\x36\xa9\x72\x84\x0a\x5c\x80\xe5\x29\x78\x2d\x02\xa8\xbd\x31\x24\xef\x0e\x63\x32\xf0\xc7\x51\x14\xdb\xe1\xe5\x81\x64\x10\x1f\x18\x4a\xa6\x4d\x68\x30\x5a\x7a\x1b\xe9\x5d\x8c\xe8\x22\xb2\x91\xdc\xe7\xec\x8d\xda\x10\x04\xbf\xe6\x88\x49\x62\x44\xa5\x14\xe6\x0e\x9f\x56\xb4\x29\xa3\xe6\xcd\xed\x1b\xea\xdc\xc0\x47\x5d\x23\x6b\x86\x51\xea\xc2\x4a\x02\x19\xea\x7f\xef\x44\x2b\x89\x68\x7c\x9a\xeb\xdc\x1b\xcd\x40\x4a\xe7\xf9\x68\x0c\x7c\xa6\xe1\x06\xb0\x99\xd7\xd4\x20\x95\x1b\x54\xea\xc8\xec\xa9\x45\x49\x4c\x44\x3d\xb4\x4e\x4f\x3a\x2c\xa0\x44\xc9\x87\x77\x02\xeb\x4b\x0f\x79\x79\xd3\x3e\x31\x1e\x7e\xdc\xa8\xc7\x4e\x92\x39\xed\xcf\xf7\xb7\xea\x70\x25\x3a\x9c\xbe\x8c\xe7\x61\x8c\x8c\xdc\xb3\x38\x17\xc9\xa6\x53\xb6\x19\xe9\x2e\x37\x26\x6e\xad\x24\xba\x5c\x9f\x39\x47\xc3\x63\x02\xbd\x4a\x9b\xd5\xc9\xd5\x37\x89\x15\x9d\x1b\x80\x1e\x58\x93\xd0\x2f\x87\x96\x9e\x87\x8d\x49\x7c\x5e\xa7\xea\x86\x63\x3b\xd5\x84\x7e\xf5\xc1\x86\x62\x90\x21\xcb\x63\x8a\x22\xf9\x97\x11\x4f\xdc\x51\x38\x27\xbe\x95\x48\x0e\xb1\x65\xba\x35\x68\xe8\x8b\xce\x00\x0b\xa9\xf1\xff\x55\xdf\x56\xfb\x17\x46\xf0\x54\x82\xa8\x91\x36\x6d\x00\xae\x82\xd2\x6b\x91\xd9\x9c\x5c\x23\xeb\x3c\x96\x62\x62\xcd\x5d\x65\xf4\x53\xc1\xff\xd5\x22\x87\x0f\x18\x12\xd4\xae\x9c\xbc\x15\x8a\x89\x1b\xc2\xd6\x2b\x52\xac\x69\xaf\x5e\x77\x4b\x1b\x32\xbc\xfe\x85\x98\xa8\x3a\x05\x7a\xc3\x86\x3c\x76\x19\xb2\x1a\x95\xd1\xcf\x65\x86\xe6\x31\x3e\x0d\xa7\x4c\x3d\xeb\x34\x95\x5e\xcf\x66\x89\xaa\x02\x86\xf6\x06\xe8\x5f\x08\x45\xbb\x25\x77\x0d\x70\x46\xd2\xaf\x94\x07\x0c\x5f\x70\xe6\xad\x5b\x6f\xf5\x58\x9e\xe7\xad\x24\xd8\xbb\x3e\x9e\xbc\xde\xe9\xa1\x83\x91\x6f\x51\xd4\xab\x3c\x58\xe9\x0a\x41\x9c\xa5\xa2\xef\x84\x54\x4c\xc9\x09\xa9\xfa\x20\xbb\x63\xac\x95\x1d\xa0\x25\x35\xbe\x03\x4d\x15\xae\xdd\x47\x9e\xb8\xda\x77\xfe\x58\x8d\xc8\xcf\x74\x65\xae\x2e\xb0\x7d\x44\x21\xe0\x3a\x54\x90\xe1\x0a\x90\x7a\xdc\x2f\x23\xdf\x9a\x6d\xbf\x47\xa8\xf8\x78\x27\x72\xf2\x8a\x08\xd1\xb1\x4b\x52\xb4\x03\x78\x7f\x48\xe2\xc8\x10\x33\xa6\xe3\x21\xab\xee\x20\x4b\x89\xb7\xe3\x85\x08\xe5\x21\x3d\xe1\xcc\x71\xf1\xf6\x76\x87\xe9\xd5\x88\x7c\x5f\x84\x7c\xae\x0f\xa7\xec\x3e\xd2\x4a\x38\x41\xed\xc6\x73\xb8\x8e\x61\x9a\x6b\x65\x3b\xf1\xee\xaa\xed\xf8\xbd\x6a\x87\x56\x9f\xee\xdd\x6d\xf4\x55\xe8\x5f\xe8\x93\xac\x2f\xd4\x10\xac\x64\x14\x1a\x75\x99\x4f\x8f\xd4\x6f\xc6\x62\x6e\x1e\xd1\xa2\x09\x47\x6c\x5a\xa1\xcf\xf6\x01\xcc\xec\x03\x91\x20\x93\x66\xfe\xc5\x3e\x20\x9d\xc1\x9f\xf6\x23\xb2\xc4\xff\x6d\x1f\x40\x25\xa2\x46\x0e\x8c\x2a\x02\x2d\x62\x42\x3c\x41\xa1\x5c\x2a\x26\x82\xa8\x02\x0e\x5b\xad\x22\x21\xaf\xed\x92\x89\xf1\x7a\xe7\x24\xe6\x6e\x34\x01\x8d\x0b\x10\xbe\xda\x55\x6c\x93\x9f\x6d\x7f\x10\xdb\x67\x1c\x46\xd0\x17\x4a\x64\x38\x40\x17\xb2\x21\x88\x2d\xc4\x8f\x7c\x30\x2e\x57\x1c\x18\x75\x68\x0a\x2a\xe7\x6c\x1f\x3b\xf9\x90\xd3\x87\x94\x4c\xd6\x80\x2a\x1c\x25\x6a\x8b\x9c\x40\x97\x0a\x52\x92\xce\x11\x40\x31\xa9\xf3\x21\xc8\x65\xcc\x6a\x33\x11\xed\x51\x47\x2d\x8b\x42\x91\x84\x45\x76\xba\xd9\xfd\xd0\x6c\xad\x32\x91\x07\xa6\x7a\xd1\x64\x9d\x35\xf4\x92\xac\x7c\x9b\x19\xdd\x0d\x17\x92\x9d\xd4\x78\xd0\x6b\x4c\x78\x6c\x16\x79\x79\x6e\x37\xe3\x2a\xa7\x52\x4a\xe1\x9b\xd5\x2f\xf2\xa1\x39\x60\x45\x4d\x9b\x63\x6f\xca\xb8\x5e\xcd\xfa\x17\xd6\x7b\x72\xde\x27\x37\xc9\x45\xff\xc2\xb9\xb5\xe3\xeb\x56\x8b\xf6\x67\x99\x6d\x6c\xfd\x0b\xae\xba\xa0\x5e\xaf\xf1\xf5\xa6\x7f\x81\xb8\xe5\x0b\x49\x38\x73\x8a\x52\x2e\xd2\xe5\x60\x87\x46\x7b\xb7\x11\x9c\xb5\x39\x0a\x4f\xa4\xe9\x6a\xd2\x3a\x0f\xa7\x34\xff\x22\x8c\xfd\x8a\x11\x93\xc2\xeb\x08\x48\x0a\xb2\xf6\x40\xe0\xdf\xeb\x38\x9b\x6c\xaf\x80\x68\x07\x0e\xd6\xe2\xe1\x50\x23\x7c\x59\xea\x5f\x90\xb8\x62\xb8\x74\x1b\x8e\x27\xf5\x0b\x7b\x66\x44\x8e\x19\x0c\xc4\x31\x9d\x26\x52\x7b\xe3\x6a\x76\xb8\xd1\x72\xea\xe9\x70\x3c\x1d\x8f\x69\x07\xc3\xb5\x4d\xe9\xac\x36\x3e\x54\x3d\x7e\x8f\x52\xb1\xe6\x77\xe4\x28\xd8\x7c\xe8\xb4\xd4\xe8\x02\x9c\xa1\x0a\x2a\x51\x6d\x33\xd7\x1e\x9d\x86\xbb\x3a\xc8\x43\x85\x25\xe1\xf5\x29\x64\xd8\x66\xfb\x17\xd0\x21\x5a\x9e\x42\x48\xb6\x5f\x89\x92\x6c\x77\x0e\x52\xb2\x7d\x9c\x42\xcb\xd8\x21\x90\xbb\x28\x8a\xf6\x65\x2d\x93\x3d\x94\x97\x7c\x62\xb9\xea\x44\x28\x81\x27\x88\x5e\x4a\xeb\x49\xfe\x16\x41\xa8\x09\x68\xed\xa3\x10\xff\xd4\x02\xf4\xfa\xa4\x3c\xee\xa3\x60\x0f\x4a\x1f\xb5\x8c\x29\xab\xcd\xc2\x00\x6d\xa2\x42\x0d\x9e\x79\x33\x4b\xf1\x96\xd9\x2a\x36\xd1\xab\x16\x59\x3d\xa1\xed\xcb\x03\x27\x24\x94\xf9\xba\xc7\xd2\xc1\xcd\xf9\x20\xd0\x43\x11\xd1\x71\x4e\x04\x8a\xdb\xa5\xbe\xc8\x20\x0b\xd0\x91\xa9\x48\xf8\xc4\xf0\xe9\xe4\x1c\xdb\xba\x17\xb7\x50\x43\x4e\x99\xd3\xda\x3a\xb1\xc5\x43\x8a\x45\xc7\xe7\xd1\x1e\xa1\x45\x21\x0e\xc0\x2a\x5b\x94\xba\x52\xad\x61\xe8\xf7\x91\x42\xa6\x39\x90\x02\x9c\x18\x2b\x70\x5c\xfc\x62\x8e\x60\x2d\x2e\x7f\xab\xcb\xf8\xb7\x67\x73\x1c\xc9\xea\xd2\x20\x94\x71\xec\xf2\x21\x7d\x85\x1b\x10\xbe\xc6\x4e\x27\x47\x32\x2b\x22\x89\x5b\x69\x41\x17\x76\x45\x70\x9e\x25\x3f\xeb\x4d\xff\x7b\x8f\xeb\x7f\x15\x77\xbe\x52\xb7\xe2\x96\xde\x7c\xd7\xcd\xb1\xb3\xf9\x32\x11\x7f\xd8\x58\x42\x3e\x90\x0b\x32\x17\x33\x15\x76\xa6\x7b\x6f\x42\x55\x49\x0b\x6e\x1d\x6f\xbb\xe1\x54\x37\xbc\xe1\xbc\x7d\xd8\x9e\xca\x72\x51\x1e\x01\x75\xa4\x67\x75\x17\x32\xb3\x39\x57\x39\x54\xba\x97\x5b\x9f\x6f\x1c\x22\xcb\xb6\xf1\xe5\xe9\xe9\x62\x1e\xa2\x05\xc1\x2a\xd2\xc6\x2d\x40\x7b\xcd\x68\x6c\x88\xf8\xa4\xba\x44\x4e\xd7\x38\xa4\xf3\x02\x95\x33\x43\x73\x22\x45\x4d\xb3\xa2\xe3\x4f\x14\x1a\x91\x1d\xb3\x98\x8f\x22\x56\x2d\xc1\x0d\xc2\x7b\x7e\xf0\x59\x4b\x7a\x3a\x39\xd1\xb7\x41\x2f\xd8\xa6\x55\x27\xb9\xb9\xa3\x44\x99\x6f\xd4\x12\xfe\xc5\x79\x4d\x91\x80\x6b\x95\x04\xb6\x21\x29\x71\x13\x97\xab\x37\x8c\x9b\xb1\x7a\xfb\xe8\x6e\xb4\xae\x48\x4a\x67\x27\x2b\xbc\x5f\x72\x38\xad\xb4\x2b\x3f\x3b\xe8\x28\x0e\xa8\xa3\x67\x67\x93\x6b\xdf\x8b\xaf\xfc\x48\xfb\x68\x7f\x7d\xfd\x04\x4c\x8e\x7b\xda\x1c\xb1\xcf\xcf\xb5\x0c\x87\x55\x67\x83\x6c\x2e\x63\x3c\xbd\x9a\x6e\xdb\xd3\xc8\x90\xac\x09\xdf\xd1\xe5\x73\x79\x13\x84\xdd\xfa\x6a\x53\x75\x20\x8c\x21\xb3\x59\xdd\x8c\x08\xe5\xb9\xe3\x46\xec\x0e\x0e\x47\x63\x5d\x84\x94\xba\xed\x26\x75\xec\xf2\xb9\xeb\x90\x83\xd9\xcc\xe9\x6e\xeb\x24\x35\x34\x33\x1d\x0a\xe7\xb6\x7e\x2c\xd7\xb4\x75\x99\xfd\x0c\xaf\x90\x95\x47\x7e\xc4\x97\xa6\x66\x3f\xc9\x7e\xc6\x2f\x8f\xad\x6c\xde\x90\x00\xa7\xf2\xbc\x52\xc0\x4e\x1b\x24\x53\x21\x86\xe3\x41\xbe\x92\xd4\xda\x77\x96\xae\x16\xf8\x08\xaf\x52\x91\x03\xa2\x2b\x48\x9a\xbc\x24\xba\xf0\xb5\x78\x76\x6e\x7f\x75\xcc\xce\x81\xc7\x2f\xf7\xad\xec\x30\xcc\x89\xe3\x44\xe0\x74\xfd\xb3\x67\xb4\x16\x94\xc6\x29\xe9\xfa\x17\x38\x2a\xda\x38\x84\x0a\x38\xce\x8a\x66\x0b\x08\x85\x8d\x64\xd8\xdd\xe8\x64\x41\xd5\x7f\x82\x61\x3f\x06\x4f\x0d\x6f\xef\x32\xc7\xc6\x00\xec\xcd\x6f\x5f\x26\x2d\x69\xf1\x0f\x8b\x41\x9f\x43\x0b\x6f\xda\x9c\xbb\xa0\x85\xb7\xb5\x55\x60\x2e\xdb\xec\x0b\x37\xb8\xd0\xba\xdf\x52\x2c\x4c\x0b\x11\x0c\x0b\x3a\x9e\x63\xa8\x31\x47\x49\xcb\xfa\xb6\x27\x3a\x82\xb9\x93\xb3\x06\x34\x00\xa4\x6e\x60\x0d\xa4\x94\x65\xbf\xcb\x82\x37\xba\x00\x37\xc7\x9b\xb3\x26\xcd\xaf\x06\x0c\x45\x01\x7e\xe7\x34\xc4\x43\x79\x36\x5a\x77\x76\x72\x2f\xb3\xc4\xa8\xd0\xd5\x6b\xd1\x70\x91\x84\xb0\x3d\x08\x2b\x68\xbc\x73\x8a\x88\x66\x2d\x63\x57\x0a\x6b\xf7\xf0\xb2\xd7\x03\x0a\x26\x61\xcd\xcf\x86\x2e\x3b\x03\x64\xfc\x50\x9f\xd9\x84\x26\xe2\x5b\xa4\x48\x2d\x86\x0f\xcc\xc1\x67\x1a\x87\xd1\x0a\x16\x6a\xe4\x4a\x9a\xbb\x3d\x14\x46\x15\x65\x5a\x29\xb9\xef\xed\x1d\x2c\xc2\x78\x70\x41\x75\x33\x87\x01\x48\x93\x01\x89\x82\x53\xe7\x25\x0d\xe3\x21\x8a\xa2\xd9\x90\xd2\x2b\xb9\x1f\xb3\x60\x68\x08\x0c\xe9\xd8\xfb\x17\x70\x39\x9a\x0f\x1c\x02\xa8\x7e\x3d\xb5\xa1\x4e\xdf\x8f\xb2\x22\x27\xf4\x2b\x9a\x9a\xe6\x9c\x9c\xcd\x13\xfe\x48\xbb\x68\xc6\x47\x6e\x2c\x93\xfe\x05\x4a\x55\x2c\xdd\xf1\xb5\xaf\x29\x9e\xc1\x4e\x65\xd6\xbf\xf8\x50\x8b\xa3\xa8\x16\xaf\xdd\xa6\x10\xd7\x0f\x62\x05\x34\x53\x18\x70\xfb\xfd\x50\x1e\xe9\x98\x4b\x85\x74\x45\x0f\x82\x58\x2b\x26\xc1\xa6\xff\x4d\xb6\x5a\xdf\xcf\x97\x85\xef\xe2\xdc\xf1\x05\xbf\xd4\x15\x4d\x2e\x9d\x2c\xd3\xf7\x06\xdb\xfa\x20\xf6\xc4\x82\xae\xcd\xeb\x04\xb6\xe9\x0a\x09\x96\xb3\x66\xf7\xef\x19\x02\x11\x12\x17\xfc\xe4\x93\x57\xfb\xd4\x7d\x0d\x8e\x28\xfb\x56\x6f\xb0\xc1\x2b\xce\xe6\xba\xcc\xec\x62\xad\xd8\x2b\xba\x8e\xfa\xd4\x7e\xf6\x35\xc7\xdc\x70\xba\x81\x38\x01\x7b\x46\x55\x99\x28\x73\xee\x27\x55\xa1\x5c\x89\x84\x71\x48\xfd\x55\x33\x71\xcd\x19\xfe\x58\x17\x59\xc2\x6b\xf2\x7a\x4c\x61\x72\xa4\x22\x3a\xfc\x60\xd7\x4b\x64\x5c\x30\x39\xc7\x27\xc2\x81\xf1\xd6\x5a\x09\x24\x88\xbd\x90\x22\x72\x06\xa2\x35\xf9\x34\x90\x31\x56\xfa\x2b\x27\x09\x36\xc8\x24\x5d\xfc\xf2\xb4\x1c\xaa\x5a\x53\x5c\x3c\x24\x3d\xd8\x4d\x20\x3d\x02\xba\x30\xc5\x6b\x28\x64\x1b\xf8\x43\x08\x00\xdf\xac\x25\xaa\xf4\x03\x0b\x55\x11\xbc\xa9\x88\x9a\x72\xfd\x8b\x0f\xfd\x24\x8a\xfa\xc9\x16\xac\x7b\x1a\x96\x35\x90\xbd\x88\xda\x2c\xef\x35\xf4\xbf\x64\x4f\x0a\xf1\x9b\x7b\x31\x02\xa2\xfb\xc7\xbc\xed\x95\xbb\x97\x88\x43\x48\x4f\x6b\x12\x00\x1f\x02\x6c\xd0\x93\x2c\x95\xcc\xa5\x06\xfb\x25\xe7\xe3\xe0\x8d\x20\x07\x06\x56\xd6\x25\x6c\x32\x45\x3d\x65\xa4\x2d\x53\xf1\xb8\xe7\x24\xba\x74\x4e\x20\xd6\xac\x98\x44\xe4\xd8\x40\x63\xdd\x5f\x6f\x4b\xb7\x88\x94\x26\x2e\xe3\xf0\x50\x0f\x79\x7f\x6f\x11\x4d\x26\x18\x18\x10\x74\xa3\x3f\x88\x0f\x07\xa8\x64\x60\x75\x54\xba\x0c\xd2\x84\x70\xbf\x27\xbb\x27\x72\x8d\xec\x75\x89\x92\x9b\xbf\xb0\x45\xd5\xdf\xe3\x7b\x71\x4d\xc7\x36\xba\x97\xcb\x2f\x1f\x11\xe9\x1d\xc5\x27\x0d\xaa\x66\xd8\xbc\xe7\x5f\x4e\x33\x83\xcc\x16\xbd\x98\x3e\x88\x11\xaf\xee\x2d\x82\xe9\xe0\x19\x3c\x58\x06\x5e\xb8\x17\x3a\x33\x83\x6a\x14\x90\xae\x3d\x0a\xe1\xfd\x56\xb2\x33\x13\x73\x98\x3e\x00\xb0\x75\xf4\x54\x7f\x7d\x16\x4f\x2b\x55\x44\x50\xb0\x3d\x45\x96\x41\xdd\x52\x4f\x0b\xfa\x6f\xc9\x69\x6b\x8c\x30\xb8\xa0\x14\x30\x4b\x91\x13\x71\xf1\xf4\x12\x2e\x30\xa9\xad\xf8\x08\xf9\xba\xf5\x14\x91\xe2\x23\x3b\x51\xc2\xf5\xb5\x25\x53\x91\x94\x17\x29\xc6\x4a\xe6\x7c\x3f\xf2\x16\x4f\x42\x92\x91\x38\x85\xcd\xea\x1c\x07\x17\x3e\xad\x2f\x24\x6d\xe1\x46\x81\x6a\xbe\x53\x9a\x39\x0d\x04\x8c\x75\x49\x5c\xac\x30\x24\xc9\xa0\x8e\xc7\x68\x5a\x10\xaa\xa0\x0a\x0d\xf7\x8b\x7f\x60\x5f\x7a\x07\xf6\xfe\xf1\x14\x03\x95\x57\xbe\xf1\x09\x66\x43\x71\xcd\xf9\xb7\x7b\xa1\xdf\xf0\x2e\xd9\xce\xc5\x30\x47\x19\x9e\xb9\xdd\x77\x29\xd3\x7a\xcf\x46\x22\x06\xfa\xd4\x18\xfd\xfa\x86\xd3\xde\x19\x12\xbf\xdc\x32\x46\x5c\x7c\xa5\xc3\xd8\x17\x02\xf4\x65\x96\x1a\x3f\x85\x44\x46\x99\xde\xf7\x63\x88\x23\x76\x7c\x22\x09\x2a\x39\x9c\x54\xd5\x48\xe9\x9b\x26\x81\x1b\xcf\x8d\xa5\xf6\x86\x93\x53\xce\x3d\x27\xb4\x50\x01\x61\x44\xcc\x49\xf8\x3c\xa0\xa2\x3e\xed\xb4\x5f\xd8\x1f\x59\x48\x38\x6c\xde\xbc\xb0\xd2\x12\xe3\x09\x3d\x7f\x33\x93\x7c\xa9\x03\x12\x2b\xa6\x8e\xc3\x80\x82\x7d\x9d\x11\x8a\xba\x3a\xda\xc8\x5e\xc9\xee\x24\xe7\xaf\xc9\x78\x0c\xab\x66\x73\x8e\x85\x03\x4e\x82\x62\xd1\x2d\xd1\xe3\x75\xe4\xae\xe1\x25\xab\xe5\x7b\x26\xb2\x80\xe1\x54\x87\xc4\x9e\x70\xb0\x60\x0e\x63\x61\x9b\x21\x10\x65\x21\x7d\x6e\x52\x64\x57\x1d\xc5\x99\x31\x51\x1a\x76\x12\x84\x42\xe3\xfd\x1b\x8b\xda\xf3\x4b\xb4\x86\x86\x0b\x1e\xd4\xd1\x95\xb1\x8d\x79\x61\x9c\x84\x16\x0b\xed\xb2\xf5\x8b\xda\x19\xe4\x74\xc4\xd1\x82\x4c\x50\x7f\x4a\xf1\x09\xc3\xd8\x99\x2a\xfa\xcd\x2d\xbd\x58\xdf\xe3\x4b\x7d\x2e\x10\xdc\xa9\x0c\x59\x2e\x01\x33\xfa\xfb\x29\xd0\xb3\xc9\x88\x43\xa9\x2c\x6f\x9f\x51\x3d\x2a\xb1\x75\x39\x15\xdb\x76\xe9\x0c\xab\x54\x43\x4a\x55\x0c\x0a\x89\xbb\xfc\x7b\x58\xeb\x10\xd3\x4d\x6c\x5a\xf6\xfc\x65\x0c\xf2\x32\xe1\x33\xf7\xc1\xfd\x6c\x8c\x96\xd8\xa8\x11\xef\x5a\xc4\x5d\x5d\x48\xc0\x02\xd9\xd6\x98\x18\x6d\xc6\x48\xa6\xbe\x9c\x64\x22\x92\x69\x2c\xae\x19\x4f\x8f\x23\xe0\xf4\x14\xd0\x77\x55\x2e\x34\xc2\xaa\x38\x65\x2f\x3d\xf3\x94\xcf\x7c\x84\x6a\xdd\x81\x86\x04\x33\x74\x4f\xa0\x35\xa8\xc7\x96\x95\xe9\xb9\x1c\xc6\x88\x63\xc3\x39\x78\x40\xde\x85\xf2\x58\x6e\xdc\x87\x28\x8a\x1a\x64\x37\x7c\x2a\x3b\xca\xbe\x8c\x54\xc9\x3e\x2e\x6d\xb8\x98\x38\x2f\x0b\x75\xda\x4d\x45\xbc\xec\xe7\xfa\xc5\x64\x4b\x69\xfb\x7a\x93\x81\xe3\x97\x96\x51\x19\x6d\x48\xc1\xd3\xc6\xcd\x5f\x0e\xcb\x4b\xa6\x79\x13\x45\x51\xa1\x41\xf1\xa5\x45\x59\xbd\x17\x93\xcb\xa8\x6e\x0a\xb8\xcb\xdb\xc1\xeb\x83\xb2\x21\x2f\x7b\x46\x09\xe6\xfa\x0c\xf8\x5a\x9f\x8d\x34\xfc\x6d\xa5\x70\x03\xb2\xb4\x3b\x40\x0d\xb3\x82\x61\x56\x7f\xd7\x30\xfb\xae\xa6\x8a\xce\x69\x17\xb3\xef\x18\xf2\x9d\x0e\xc4\xa1\xc8\xa3\x69\xd3\x31\x14\x38\x6e\x39\x96\xe3\xad\xb3\xf2\x1d\xf6\x09\xbb\x2a\x0d\xa6\xb1\x94\xf4\xbc\xb7\x6d\x04\x9c\xcd\x90\x07\x23\xdd\x3b\xd9\x45\xfc\x66\x2d\x27\x95\x1e\xbf\xdd\xfe\x49\x78\x10\x11\x0b\x63\x6f\xd4\x6e\xbd\xbf\x6a\x59\x83\x1b\xc7\xc7\xc5\xc9\xd9\xcd\xb3\xb3\xeb\x87\x67\x57\x4f\x42\xc3\xae\x63\xd8\xb5\x53\xc3\x5e\xde\xd9\x63\xd9\x47\xb6\x9b\x8b\x79\x5d\xd5\xec\xf4\x96\xb1\x21\xb8\x26\x09\xfc\x89\x91\xd7\xb5\x8f\xc1\x50\x78\xc2\x78\x23\x2b\x4f\xe0\xb3\x28\x05\x81\x3e\xa4\xd6\x2f\x92\x35\x2d\x8e\x7a\x86\x37\x83\xb1\x23\x7d\xed\x21\x0c\xee\x25\x63\x57\x4f\x8d\xac\x3d\xc7\xab\x96\x56\x96\x90\xcd\xae\xdd\xc9\xef\xe8\x50\xd3\x32\xea\xed\x7c\x7e\xaa\xa3\x0a\x82\x49\x93\xe0\xdb\x1d\x9d\x7d\x24\xff\x95\xd3\x38\xbf\xb7\x0d\x7a\x4b\x5f\xea\x4d\x8b\xc9\x89\x33\x3d\xf1\x56\xab\x61\x13\xd3\xb7\x46\x6d\x6a\xe6\xad\x8d\x55\x9d\xbc\x6f\xdf\x38\x0f\x9c\x12\x9b\xbd\xb5\x85\x5e\x2e\x77\xb8\x13\x0c\xa1\x94\x1e\x69\x52\xbb\x92\x9b\x5b\x9d\x09\xe3\x11\xe9\x9d\x07\xa3\x8b\x00\xbd\x3d\xb0\xbb\x9d\x4f\xa1\x3f\x9c\xa7\xe9\x24\xe6\xbc\x91\xf6\x9c\xed\x39\x61\xb9\x91\x7b\xda\x5f\xbe\x3e\x28\xb7\x41\x7a\x4e\x76\x85\x6c\x2c\xe3\x6c\xbe\x09\xa8\x0d\xf3\xbc\x63\x55\xaf\x9e\x77\xac\x7a\xe4\x78\xc7\x5e\xda\xc8\x5e\xd5\x05\x8a\x02\x2e\x69\xac\xc3\x89\xac\x3b\x88\x03\x56\x11\x8e\xf6\xf2\xd0\xa2\x6a\xcd\xf7\xcd\x40\x1e\x1f\x9d\xc3\x37\xce\xf1\x76\xa5\x6b\x3e\x49\x05\xa8\x8a\x53\x97\xd7\x94\xe1\xf0\x42\x18\x04\xd5\xf3\xd1\x10\x46\x87\xa1\x74\x31\xd1\x62\x1c\xde\x38\xe9\xfc\xe6\x5f\x6c\x26\xe3\xed\x4e\x88\x58\x2d\x13\xf2\x2f\x9c\x44\x0e\x77\x39\x8e\x9c\xec\x8b\xd4\x87\x35\x63\x00\x76\xb8\x6a\xb0\xcd\x86\xcb\x6a\x2f\x1a\x26\x8c\xc4\x30\xcf\x7d\x36\x0d\x78\x47\x6c\x35\x70\xe8\xc6\x00\xf6\xca\xa1\x49\xe4\x6d\x0d\x7b\x35\xc3\x5c\x1d\xd3\x68\xd4\x30\x99\xfd\xba\xc1\x0c\xa7\x06\x19\xea\x59\x55\x16\xeb\xe2\x20\x57\xdd\xa5\x9f\x09\xe0\xc5\xaf\xf5\x67\x6e\x76\x60\x2c\xd5\x08\x1b\xaa\x21\x34\xa4\xb4\xf0\xfd\x3a\x87\x3b\xa7\x35\x91\x6c\xa9\x28\x33\x6c\x2a\xb0\xd1\x49\xb0\x0b\x12\x07\x15\xc9\x87\xde\xd7\x44\xdc\xc0\x2f\x21\x07\x86\x32\x39\x4a\x59\x36\x77\xa6\x34\x49\xda\xdb\x8a\x69\x90\xd7\xee\x12\xd9\x99\xe9\xf9\xc4\x3c\xdf\xb3\xab\xb7\x70\x0e\xf2\x87\x18\x90\xa4\x4f\xe3\x59\xf2\x10\xea\x70\x36\x62\x43\x2b\xdd\xb6\x7c\xd2\x3f\x39\x0b\x3b\xda\x2d\x64\x6b\x5a\x07\x28\x53\x33\x3d\x74\x1c\x79\x73\x5d\x84\xbc\x99\x3d\x52\xc3\xdd\x9b\x7b\x96\x85\xb1\xa3\x80\x91\x6f\xfb\x54\xc6\x74\x8b\x34\x57\x61\x48\x16\x88\xf6\x9f\x23\xae\x72\xd5\x14\xd9\xbd\x4e\x8f\xc4\xfd\xbe\x85\xef\xdb\x6f\xf8\xfe\x56\xdd\xa2\x34\x7f\xf8\xbe\x7d\x10\x53\x50\xab\x75\x26\x08\x2d\x61\x4e\x20\x61\x4e\xf2\x32\x14\x9f\xa0\x0c\xd3\xe1\xe9\x6d\xf8\x8a\xfd\x42\x02\xa6\x64\x31\x3a\x8d\x32\xe1\xe9\xfb\x5a\xe2\xe9\x35\x33\x55\x02\xdb\xb8\x4f\x79\xd2\xd3\xfe\x3f\x36\x53\xb4\x30\x4c\x07\x5a\x24\xcb\x75\x28\x8d\x65\x23\x73\x27\xfe\x6e\xf3\x8c\xdc\xcd\xdb\x92\x22\x15\xf8\x33\x27\xa9\xc9\xfa\x81\xa8\xfa\x41\xf0\x17\x0d\x68\x26\x9a\xa7\x89\xd8\xcd\x2b\xd4\xac\x98\x17\xdc\x5e\x8e\x4d\x31\x7f\xd8\xab\x5a\x8e\x6f\xf6\xa9\x96\x35\xcf\x3b\x3b\xd8\x96\xfa\x4d\xcc\x30\x28\x86\x12\x3a\x92\x22\xd9\x57\x96\x85\x2c\xaa\xf5\x76\x56\x3f\x3e\x9a\xbe\xb4\x78\xc1\xf2\x85\x93\xec\x80\x4f\xe9\x14\x1f\x8a\x1c\x3a\xe4\x84\x40\xd6\xff\x9b\xa6\x6b\x2f\xb5\x4c\x8f\x47\x36\x0f\x8c\xc4\xf2\x35\x35\x5e\x9d\xb8\x86\x42\x1f\x63\x67\x64\xc6\x7f\x5c\x8c\xc5\x7e\x5a\x43\x95\xf0\xfb\xb3\x18\x68\xde\x7a\xe5\xb5\x0f\xaf\x59\x5e\xeb\x5a\x5d\x32\xdb\x19\xf9\x37\xeb\xcd\xb7\xd0\xc5\x83\x3a\x39\xc9\x7b\x29\x8b\xac\x86\x50\x3d\x3d\x67\xc8\x39\xb5\xbb\xd7\x4c\xba\x20\x0e\xe8\xc7\x17\xbe\x40\x07\xad\x1f\xe7\xcd\x9b\xc7\xe3\x64\x2c\xa6\x7a\x81\x34\xf1\x49\xcc\x72\xaf\x3b\x96\x9e\xa9\x14\xf1\xf3\x9c\x13\x14\xfd\xfc\xcc\xd0\xd0\x25\x0e\xa7\xee\xb3\xc7\x2c\x0c\x9f\xd0\x8c\x4e\x8a\x62\xde\x66\xe8\x06\x3f\x27\x5e\xc3\x95\x6d\x3a\x46\x18\xc9\x76\x00\x93\x0a\x68\xbe\xcb\xb1\x9f\xb4\x9e\x03\x39\x11\x58\x79\x68\xea\x3d\x0e\x77\x8f\x84\x16\x5b\x3f\x3d\x63\x89\xec\x26\xd4\x29\x15\xc8\x13\xe8\x6e\x99\x8b\x69\xb7\xf6\x25\xdd\x17\x91\xfe\x05\x0a\x1b\x28\xc7\x84\x1b\x15\x9b\x6a\x6b\x3c\xe1\xb2\xac\x7c\x68\xff\x81\x47\x5c\xd1\xf1\xb5\xb7\xe2\x6e\xc7\x31\x9f\xb4\x84\x57\x27\x72\x5a\xdd\xd9\xc1\x90\xb0\x4d\xc2\xfe\x63\x00\x8e\x9b\x73\xb1\x1b\x39\x65\x20\x1f\x1d\x21\xbc\xe9\x3b\xcc\xd8\x26\x3b\x0a\x7b\x06\x97\x37\x19\x12\xcd\x00\xa4\x2a\xad\x63\x04\xfe\x81\x93\xad\xf1\x67\xb0\xb3\x56\xe6\x16\x67\x01\x02\x3f\x32\x00\x75\xec\x2c\x87\xeb\xc0\xeb\x5f\x26\xe4\x7c\x1f\x9d\x25\x4b\x24\xa2\xe4\x9a\x8a\x95\xab\xb9\x8d\xdc\x05\xfc\xe5\x1d\xa5\x9b\x3a\x8e\xd2\x66\x88\x9c\xd4\x3f\x19\x72\xca\x3a\x20\xbf\x9f\x00\x04\xee\xc3\xb4\xd0\xb3\xd9\x6f\xc3\x6b\xdf\xc8\x5f\x75\x8f\x0b\xbb\x6b\xdf\x76\x3c\xb1\xdd\xe9\x75\xbc\x57\xdf\x6c\xc9\xcf\x7e\x7c\x6a\x14\xff\x08\x39\xc8\xf2\x26\xfd\xdf\xb5\x93\x03\x34\x76\x21\xe1\x6c\xee\x29\x4d\xce\xc3\xb9\xc0\x1b\xf2\x70\x50\x62\xf3\x8c\x28\xec\x61\xe4\x53\x98\x39\x13\xe1\x4b\x6a\x15\x7a\xbc\x30\x2f\x4c\x57\x68\xf6\x67\x54\x8f\xe2\x6e\xde\xce\x7a\x61\xbf\x99\xa9\x99\xea\x12\x2e\xdf\x1c\x65\x7d\x5d\xb9\xfb\xb5\xab\x2d\xb6\x3d\xd7\x33\x3d\xdb\x45\xed\x78\xd5\x81\xfa\xce\x00\xea\xd9\x09\x8a\xb9\x05\xe8\x0f\x50\xcd\x36\x8b\xfe\x01\xaa\x79\x2d\xaa\xfe\x19\x9c\xc8\xc9\xf7\x44\x26\x30\x13\xc7\xd4\x1f\x05\xe3\x98\x08\xac\xd4\x7b\x8b\x94\xf5\xba\x61\xdd\x15\x18\x8b\x8d\x24\xf7\xdd\x1a\xef\x86\xfd\x0b\x9b\x5c\xdd\x71\x1f\x69\x0a\x2f\xc1\x28\xc0\x6c\x32\xf1\x49\x21\xd0\x46\x2f\xc6\xa0\x1f\x73\xd5\x67\xdb\x6d\x12\x04\xa3\x3f\xdb\xcb\x3e\xaf\x44\xc6\x64\xad\x88\xdf\x11\x91\x95\x91\x1d\x90\xa3\x54\xa8\x6a\x05\x17\x8c\x44\x7a\xd6\x6a\xcb\xed\xa6\xea\xdc\x45\x0d\xef\x73\xf8\x32\x66\xfc\x8b\xf1\x92\x69\xc0\x4b\xca\x2a\xbb\xa2\x50\x80\x86\x74\x5d\xfe\x20\xb6\xf0\x70\x54\x1f\x6d\x65\x25\x7d\x00\x22\xd7\xee\x06\xb9\xd6\xac\x2f\x8d\x88\x68\x0a\x1f\xe4\xd9\x4f\xf0\x3d\xe6\xfe\x8b\xda\x1a\x24\x42\xd9\x4b\x95\x02\x9a\xdf\x32\x87\x38\x12\xb8\xc6\xf2\x8e\xca\x92\xe9\x74\x70\xe1\x1d\x9b\xd4\x23\x94\xb9\xee\x58\xd5\x15\x41\x64\x81\xa0\xd1\x8e\xb2\xd6\x1e\xe9\xd4\xd2\x4e\xbc\xd1\x82\xf7\xb6\x30\xdc\x1b\x16\x79\xcc\x70\xed\x3e\x14\xe3\xe5\xdb\xc9\xd2\x19\x2f\x5f\x0e\xaf\x43\xc7\xb6\x73\x20\x64\x89\x56\xd2\xb7\xd5\x1b\x3f\x44\x51\xb4\xe4\x88\x5c\x73\xf9\x1f\x0d\x2e\xde\xbe\x25\xad\xb3\xdc\xe8\x22\x4b\xed\xfe\x7e\x51\xa0\x8d\x91\x92\x8f\xfb\xb3\xb7\x40\x00\x35\xee\xb6\x88\x0a\x24\xd3\xeb\xf2\x8d\x86\x2b\x85\xcf\xc0\xb0\x74\x7a\x4a\x76\xc8\x39\x89\x7c\x91\x42\xd4\x1e\xf4\xc8\xf1\x1c\xe5\xfd\x49\xda\x7b\x8d\x64\xd3\xf1\xd1\x75\xa3\x44\x52\x32\xf6\x7c\xdb\xba\xc6\x1e\x57\xfe\x82\x26\xcc\x5b\x79\x87\x0d\xee\xe0\x6c\xdf\xce\x59\x2c\xb7\x9e\x8f\xdf\xcc\xa5\x64\xb7\xbb\x2c\xae\xac\x81\x7c\x4a\xf7\x54\x54\x9d\x1b\x8e\x70\xfd\x04\x2e\xcd\xa6\xc7\xdc\xdc\x56\xfc\x74\x1c\x9f\x44\xbc\xf6\xc9\x73\xba\x19\x8f\xa0\x39\xf0\x96\x6c\xee\x74\xc3\xad\xe6\x6e\x37\x30\xe5\x1c\xe1\xdc\x74\x21\x12\x14\x5c\xea\x74\x52\xb9\x99\x37\xc5\x3d\xb5\x69\x91\x7d\xea\x3c\xd2\x18\x6e\x87\x70\x2a\xef\x34\x1a\x04\x42\x9b\x02\xfa\xc3\x13\x28\xf3\xf1\x2b\x1d\x17\x04\x34\xa9\x69\x39\x81\x19\x1f\x8d\x08\x31\x02\x9a\x34\xd2\x12\x0f\x85\x5e\xc4\xfb\x4a\xeb\x9b\x27\x82\x5b\xc3\x11\xdf\x13\x01\x3a\xc2\x13\x4d\xec\x79\xab\xd3\x38\x4b\xed\xea\xb8\x80\x9c\xd0\xef\x1b\x9f\x91\x0f\x6e\xb4\x54\x54\xa9\x71\xa1\x76\xd3\xae\x5a\x0b\x5d\x90\xde\x37\x60\xa3\x0e\xf9\xe7\xa7\xa5\x4e\x93\x09\x79\xb3\x3c\x4d\x7d\x95\x49\xc7\x18\x5d\x45\xe8\x47\x55\xde\xeb\x0d\x3d\x6b\xa9\xb7\xe9\xf7\x16\x49\x2e\x26\xe0\x74\x02\xa1\x1c\x2c\x1e\x7b\xec\x52\xb4\xf5\x67\xa8\x65\x86\x26\x7b\x46\x42\x40\xec\x1a\x7f\x6c\xfd\x27\x52\x62\xc7\xf2\x35\xaa\x49\x85\xdb\xe8\x2e\xee\x83\x27\xba\xe9\xc3\xdf\x12\xf2\x73\xf7\x66\x9b\x39\x9b\x64\x81\xd3\xff\xef\xe6\x6e\xe4\x08\x32\xf6\x7f\x71\x04\xb4\xcf\x86\x2f\xb9\xc2\xe4\x34\x2b\x4c\xfe\x62\xc1\xe8\x5a\x17\x72\x73\xa5\x33\x50\x27\x09\x67\x75\x3a\x9c\x9e\xed\x46\xfb\xc8\xa2\xa4\x38\xdd\x99\xeb\xf1\x64\xa0\xd3\x70\xaf\x53\xcc\x31\x97\xec\x57\x67\x37\x89\xce\x43\x53\xd3\x52\xc9\x38\xde\x07\x74\x69\xb4\xd1\xa1\xdf\x8c\x2c\x8d\x17\x62\xf1\xc4\x97\x00\x85\x70\x5f\x90\x7e\xc0\x88\x69\x40\x05\x95\x7b\xdc\x06\xf7\x77\x82\xa0\x9e\x84\x99\x4b\x7f\x22\x03\xad\xd4\x67\xee\x0c\x33\xb7\x99\x10\xaf\x68\x4a\xbe\x52\x10\xf6\x74\x2e\x9f\x96\xd8\x47\xa9\xa3\xe4\xf1\x0f\x95\xc2\x19\xc6\x72\x2e\x88\x50\x8f\x65\xd2\xf0\x23\xaa\x0f\xd2\x88\xfe\xf0\xb8\x49\x3b\xb3\x41\x30\xa6\x5b\x29\xf9\x40\x6a\x9c\x79\x8e\x50\x5d\x13\x80\x20\xe8\xc9\x88\xa0\xa0\xe0\x28\xf0\x29\x6b\x98\x05\xe1\xb0\x17\xcb\xb2\xea\xe7\x8f\x33\x3a\x9c\xcb\x57\xa7\x3a\x1f\xd3\x19\xa3\x75\xef\xd7\x4d\xcc\x4c\x3d\x35\xc9\x4c\xab\x63\x87\x19\x5b\xc1\x05\xcb\x88\x64\x05\x10\x00\xe8\xce\xef\xab\x5f\x5b\x14\x0f\x04\xa4\xb7\xaf\x64\xdb\x8f\x24\xde\x27\xee\xf7\x14\xa2\x0a\xa8\x2d\xbe\xcf\x89\x96\xa6\xf7\x2b\x4e\xcc\x93\x3a\xc2\x9b\x1c\x88\x0b\x06\xee\xb1\x17\xee\x20\x3a\x36\xaa\xbf\x25\xaf\x8f\x1e\x89\x6b\x34\x3a\xa9\xe5\x29\x81\xa7\xe3\xec\x9b\x55\xd7\x16\x89\x33\x64\x7d\xb9\x5d\x7d\x6a\x97\x42\xa0\x10\x32\xaa\x3d\x73\xef\x98\xb3\xd8\x16\x07\x24\x84\xba\xf3\x28\xd5\xd1\xd0\x0c\xe9\xce\x9d\x8a\xed\x25\x6e\x59\xf5\xff\xc7\xde\x97\x6d\xb5\xd1\x2b\x8d\x3e\x90\x59\xcb\xf3\x74\xa9\x6e\x37\xc6\x31\x8e\x71\x08\x21\x70\x47\x80\x78\x9e\xdb\xe3\xd3\x9f\xa5\x1a\xa4\x92\xba\x6d\x20\xc9\xb7\xf7\xf7\xef\x93\x1b\x70\xab\xd5\x52\xa9\x54\x2a\x95\x4a\x35\x48\x40\x65\x7d\xbb\xbf\x8f\x64\xfa\x6a\xc7\xf8\xc6\x10\xf1\x07\x63\x14\x0e\xd9\xfd\xb6\x4e\x07\x8d\xd2\xb0\x71\x91\x09\x94\xca\x04\x65\x2a\xd9\x0d\x1b\x60\xec\x5d\x30\xee\xb6\x1b\xf3\xd5\x96\x4a\xd6\xc3\xc6\xc5\x38\x54\x0a\xb9\x58\x37\x16\xc5\xe8\x58\x84\xa1\x3d\xd3\x5c\x7c\x9d\x64\xa3\x80\xdf\x67\x31\xbf\x06\x91\xd3\xc4\x92\x9f\x84\x89\x99\xfb\xe6\xed\xa6\x68\xab\xf5\x5d\xa0\x6b\x66\x14\x10\x20\xa4\x0b\xce\x89\x3e\x03\x9c\xa7\xde\xf8\x4d\x2e\x84\xaa\x6c\x65\x3e\x06\x79\x4f\xa4\xaa\xc0\x8e\xac\x87\x85\xf5\x94\x5b\x53\x52\x4f\x6c\x06\x1d\x3b\x7e\x0a\x16\x93\x0e\x90\xfe\x33\x62\x0e\xd8\x04\x7f\x45\x58\x19\x02\x18\xbc\x8a\xc4\xdd\x45\x28\xe4\x44\x2a\x1c\x0d\xdd\xb5\xc5\x5a\x0e\xa9\x81\x42\x2c\xa2\x2e\x03\xdf\x1c\xc9\x8f\x54\x78\x2d\xca\x85\xd6\x06\x9f\x68\x18\xe0\x23\x75\x67\x3b\xe9\x58\xef\x1f\xda\xc2\xb0\x65\x72\x61\x5b\x3c\x33\xeb\x8c\x6c\xf4\x12\x72\x06\x5b\x20\x0d\xe2\x1d\xe3\x14\xc1\x22\xa7\xd3\x9c\xdc\x06\x47\xbc\x0d\xea\x96\xd6\x7c\x43\xa0\x1f\x4a\xe4\x85\x57\x27\x0b\xcd\xca\xa3\x90\x7c\x2e\xb9\x41\xa3\x34\x20\x17\x3a\xea\x23\x83\x7e\x75\x33\x54\xd8\xa3\x0a\x98\x70\x24\xf6\x08\xea\x7c\x88\xb5\x66\xe8\xa6\x37\x7e\x26\x65\x95\x4b\xa8\x97\xf6\x67\xfe\x51\x16\x5b\x54\x23\x3b\xc1\xe5\x30\x12\x66\x8c\xdd\x33\xa3\x12\x5f\x7e\xb5\xd3\x32\x45\x88\xec\xe8\xc8\x03\x53\xd4\x5e\x73\xa8\x90\xbe\xab\x64\x35\x92\xc0\x3c\x14\xdd\xe6\x4a\x68\x1e\x38\x20\x0d\x1e\x39\x5c\xca\xcb\x94\xa9\xa0\x10\xa1\xda\x20\x77\xc7\xd0\xa7\xc5\xb2\x38\x05\x20\xb5\x6f\x12\x8e\x19\xe4\xfd\xb7\x7e\xb2\xee\xd7\xfa\xe5\xfc\x59\x4a\xcd\xfa\xe7\x0a\xa9\x85\xbc\x21\x06\xd2\xa8\x0b\xbb\xdc\x21\xca\xdd\x7a\x63\x9c\xe4\xc9\x53\x72\xb5\xb8\xfb\x7e\x55\x6c\xee\xec\x52\x63\xd8\x1c\x4c\xd7\xea\xa4\xf3\xbb\x54\x5f\x46\xca\x89\xa6\xcb\x97\x66\x8e\x9a\xd8\xc3\x5f\xc2\x59\xf8\xa7\x64\x6c\xa4\xfc\x85\xef\x9f\xe8\x12\x2a\x72\xb4\xa0\xf8\x3d\x6d\x67\xfd\x50\x6e\x4e\xc3\x05\x1b\x72\x16\xc9\x91\x07\x3e\x2b\xa2\xf2\xbd\xcc\xe6\x03\x91\xf0\xb7\x2a\x8e\xb0\x21\xcc\x74\x2a\x60\xa3\x73\x43\x49\x9e\xfa\xea\xa6\xd3\x48\x39\x16\xba\x64\x76\x3f\x13\x8a\x65\xe8\x79\x37\x40\x43\xc2\x3c\x91\x64\x89\x0c\x93\x79\x6b\x81\x3f\x57\xde\xbe\x03\xe8\x8f\xdf\x81\x7e\x7f\x0e\x1c\x6b\x03\x52\xaa\xbc\x08\x21\x84\xa0\x24\x8f\x50\xe2\xeb\xd9\x1e\x4f\x59\xdb\x49\xc1\x32\x48\x34\x4c\xfd\xbf\x4a\xe5\x31\xdd\xc2\x50\xfa\xea\x2f\xb2\x5e\x9a\xc0\x51\x77\xc4\x1b\xc4\x29\xed\x22\x66\x23\x46\xcb\x23\x7f\xef\x6c\x7a\xfe\x01\xfa\xd9\x39\x91\x93\x11\x25\xb8\x18\x74\xe8\x5b\x8b\x9f\xaa\x63\x37\x8d\xf3\xd8\xce\x8d\x1a\x66\x6d\x44\xfb\x51\x43\x7c\x25\x4e\xed\x88\x0e\xe9\xcd\x28\x37\xe7\x7b\x6f\xe7\x50\xcc\x0a\xec\xf9\xa3\x29\x13\x1d\x47\xee\x5d\x3b\x19\x24\xe1\xc4\x10\x04\xa5\x94\xe0\xcc\x4d\x63\x9d\x02\x48\x40\x27\xf0\xcf\x72\x68\x24\x23\x53\x90\x84\xa1\x39\x0c\x00\xcb\x22\xa7\x14\xc6\x17\xb4\xac\xdb\x11\xc6\xee\xb4\xdb\x8f\xf1\x7b\x12\x61\x06\xc2\xf1\x92\x32\xbf\xc5\xc2\x83\x6b\x27\x65\xb8\x1b\x9f\x5e\x9c\xb1\x7d\x77\x76\x77\x97\x19\x7d\x4f\x1c\x34\xac\xa0\x96\xe5\x90\xde\xed\x44\x3a\xe4\xe8\x57\x8d\xf1\x0b\x78\x8c\x97\xf9\xfa\xcd\x69\xdf\x5b\xd8\x62\xcf\x4a\x09\x4c\x0d\x7f\x5e\x40\x84\xc2\xdd\xa3\x70\x6d\xd2\x39\xab\x63\xc7\x31\x97\x87\x3d\x07\x7d\xe5\xf6\x1d\x66\xd6\xe4\x32\xe6\xa8\xfe\x28\x54\xe9\x0a\x29\x8b\x6f\x47\xb5\xc4\x89\xae\x81\xa4\xca\xad\x7d\xb6\x57\xb9\x03\xa4\x84\xd2\x1d\x46\x0f\xfe\x86\x07\xee\x75\x40\x36\xec\xe5\xb5\xdf\x48\x7d\x4d\xa2\x0c\x56\x9d\x5f\xa1\x3d\xdc\x95\x6c\x99\xfc\x4b\x0c\x94\xa5\x0e\x87\x7b\x7a\xa2\x08\x80\xed\xfa\x84\xd4\xf7\x23\x8a\x8f\x35\x72\x86\xe0\x46\x5b\xb5\x01\x88\x7b\x4a\xdd\x52\x00\xe2\x37\xfb\x62\xd7\x04\xd3\x57\xae\xdf\x80\x61\x8d\x03\xab\x8a\x8e\x71\xbd\xf1\x00\x0a\xe4\x5b\x8f\xa2\x09\xad\xaa\x02\x4a\x07\xb0\x55\x37\xcb\x89\xf8\x4a\x8f\x0c\x23\xc5\x92\xfa\xe6\xb4\x54\x37\xa1\x5d\xd8\xa3\x84\x66\x01\x45\xe3\xdf\xea\x62\x8d\x56\x8f\x45\x9a\x24\xee\xb2\x48\x3d\xd8\x49\x5b\x2c\x85\x97\xe2\xe6\x0e\xa6\xa1\xea\x7d\x15\x01\xc2\xaa\x43\x0b\x25\x9c\xee\x86\x69\x11\x3d\xbb\x1a\x3b\x65\x91\xbf\x61\x40\xbe\xba\x25\x3a\x92\x1a\xeb\xe1\x56\x8c\xab\x10\x63\x1c\x50\x30\x47\x0d\xb8\xf5\xaf\xd0\xb5\x4a\x97\xb6\xd2\xf6\x60\x01\xb3\xf2\x07\x28\x93\xab\x90\x6b\x69\x13\xb0\x87\xa6\x6e\x88\x76\x6d\x31\x1a\x88\xef\xcf\x16\xf1\x1c\x2c\xa1\x6f\x6e\x7f\xe5\x24\x54\xdd\x62\x83\x41\x2a\xe6\x08\x51\x54\xbb\x9c\x5e\x3c\x33\xce\xb7\xec\x44\xc7\x6f\xb2\x45\x27\xe1\xdf\x7f\x62\xc2\x84\xfa\x2d\x7b\x85\xea\xb7\xaa\xeb\xbf\x98\x44\x9a\x3f\xd9\x06\x7c\x66\x03\x55\xd7\xaf\xf2\x0d\xec\x9d\xc0\xb5\x87\xbd\x13\xb8\xf6\x71\x64\xbe\xfe\x10\x8e\xf8\xab\xd0\xc1\x51\xc1\xb9\x64\xeb\x28\xa5\xea\x99\x34\x73\x8e\xb1\x3b\x1e\x5d\xa9\x7b\xaa\x92\xc1\xd5\xb9\x4a\x7a\xf5\x3c\x93\x03\xb2\x15\x49\x9f\x94\x52\xb9\x01\xba\xa1\xe5\x5d\x0c\x73\xd7\xa3\xd0\x7c\x97\x82\xff\x49\xe8\xb6\x6a\x37\xb7\x02\x69\x66\xf3\xc3\x86\xa7\xc0\xfb\xf9\xbb\x5b\xe0\xe6\x09\xa3\xb3\x9a\x1d\x70\xfb\x20\x37\x40\x7b\x06\x7e\xf7\x06\x48\x11\x78\x28\x5f\x0c\xec\x80\x5b\x64\x2e\xcf\x39\xcc\x4b\x72\x03\x7b\xe3\x08\x37\x85\x79\x86\x8c\x83\x40\x68\xa1\x31\xfc\x4a\xea\x42\x11\x39\x1c\x28\x8e\x22\x87\x2f\x33\xc4\x9d\xec\x4c\x41\x22\xc2\xc2\x00\xe3\x87\x0f\x58\xdb\xed\xf9\x9c\xb2\x9c\x07\xfa\x27\xf2\x27\xcb\xf2\x52\xdb\x92\xf3\xc4\x65\x8a\x73\x85\xcd\xd7\x85\x29\xd3\x03\x33\xcc\xae\x93\x49\x78\x85\x27\x4c\x0a\x9b\x1d\x9a\x5a\xc6\x3c\xc5\x56\x8d\x65\x55\x76\xeb\x90\xc8\x63\xbc\x99\xc1\x42\x08\x17\xd1\xf5\x2d\x61\xb8\x19\xf3\x09\xa9\xe4\xd8\x36\x67\x4b\x27\x01\xe8\x6a\x58\x01\x47\x18\xf7\x35\x4b\x89\xeb\xd6\xd4\x57\xec\xf5\xbd\xbf\x73\x3c\x54\xb8\xf8\x58\x0b\x3c\xd7\x94\x72\x1a\x66\x5e\x15\x89\xcb\x16\xc9\x7d\x87\x26\x38\xb4\x3d\x9d\x55\x07\xec\xfc\x34\x63\x8e\x22\xe9\x04\x15\x8c\x65\xa1\x8e\x17\x7a\x59\x6a\x62\x37\x48\x78\x7b\x45\x26\xb2\x45\x84\xde\xaa\x66\xd1\xbd\xf5\xa5\x39\x9c\xfe\x4c\x39\x6d\xd8\xfa\x8e\xa7\x96\xd5\x73\x0e\x16\x81\x50\xd6\xdb\xd3\xa3\xd0\x01\xd7\xdf\xd5\x22\xcc\xd3\x3c\xd1\xd8\x8b\xbb\xe2\x60\xb9\xd7\x05\x9d\x87\xde\x82\x76\x3b\x3b\x0c\x8c\x0f\x99\x6e\x91\xac\x2f\x80\x4a\x22\xba\x41\x77\x9f\xc7\x81\x4b\xa4\xd9\xf7\xc0\x5e\x5d\xbe\xd5\xa9\xb8\xd7\x62\xe2\x5a\x9d\x6a\x7a\x41\x54\x61\xc6\x9c\x02\x88\xd7\x85\xe5\xe6\xd5\x11\x5b\x19\x99\x99\xd8\xbb\x0c\x8a\x78\x53\x0d\x6f\x43\x68\x51\x66\xf0\x89\x96\x74\xa6\x22\xc2\xd8\x8c\x48\x21\xb8\x41\xb7\x9a\xf8\xf1\x04\x3b\xff\xf0\xe5\x49\x29\x6b\x8c\x26\xe9\x46\x60\x69\x70\xc0\x97\x7e\x1b\x73\xd5\xb4\x25\x0e\xbe\xab\x60\xf3\xec\xd1\x7a\x30\xfe\xaf\x47\xce\xd4\xc2\xf1\x3e\xa9\x8d\x82\xe9\xa7\xc8\x89\x4e\xac\xfb\x21\x49\xbf\xeb\x51\x83\xea\xb0\x35\xd5\xd2\x94\xb0\xa3\x65\x7f\x8c\x16\x8b\x83\x31\xdd\x7d\x8c\x51\x1f\x32\xa2\xe7\xf1\xb8\x21\xf2\xdc\x4e\x44\xe9\x33\x15\x46\x13\xef\x53\xd4\x99\x8a\x9a\x26\xff\x19\xd7\xe4\x4e\x51\x40\x19\xfb\xb0\xc1\xe3\x2a\x31\x08\x78\xe4\x91\xd8\xd1\xc2\x23\x0f\xd9\xa2\x05\x1e\x19\x37\x8c\x3d\x98\x65\x46\xa1\x45\x32\x3c\x32\xa6\x79\x2e\xe0\x81\x27\xc4\x4e\x19\x8c\x8e\xe7\xcd\xce\x2d\xc2\x4c\x2d\x5b\x22\xb0\x1a\x7a\x20\x17\x9b\x80\xf8\x97\xe5\x84\xe1\x08\x70\xd7\xb5\x82\xc2\xe8\x1d\x47\x65\xa9\x6e\xd3\xbf\x5b\x39\xe4\xe9\x98\x6a\xbd\xc8\x5e\x60\x23\x79\xe1\xac\x05\x86\x19\x5a\x78\x3d\xbc\xc8\x0d\x60\x4c\xb1\x00\x38\x96\x00\x17\x23\x64\x70\x4a\x6e\x52\x7c\x80\xf6\xa6\x46\x3e\xdf\xc0\x34\xc8\x62\x6b\x48\xcc\x63\x20\x88\x84\xaf\x6d\x81\x49\xd0\xd5\x3c\x9b\x4e\xbd\x79\xb2\x5e\xee\x70\x6d\x73\x94\x02\x6e\x60\x1f\xcb\x30\x32\x7a\x03\x1d\xc0\x6d\x16\x07\xca\xd0\x20\x6b\xe8\x18\xda\xd4\x21\xe8\xe1\x1a\xe5\xd8\xc4\xeb\xa1\xbe\x0c\xed\x09\x33\x8f\x37\x3d\xb5\x7b\x84\xed\xbb\xc1\x80\x7e\xe4\xc1\x33\x46\x8a\x95\x44\x8e\x3b\x2d\x62\x8c\x81\xbf\xdd\xd6\x45\x8a\x36\x36\xf0\xa7\x0f\x57\x74\x4a\x9b\xf0\x85\xb2\xd1\xd5\x5c\x1a\x0a\x01\xd5\x1e\x69\xec\x94\xc1\xb1\x09\xe6\x6c\x91\x32\x1b\x37\x7e\x99\xd5\x55\x79\xfd\x94\xe9\xe2\x69\x57\x0a\xad\x10\xbb\x2f\xd9\x42\x6b\xa7\x06\x8b\x8a\xde\xa4\x37\x00\xaa\x6e\xda\xaf\x67\x2f\x6e\x13\x96\x38\xad\xf2\xbf\x20\x94\xfc\x9b\x27\xfb\x3b\x16\xbf\x45\x36\xec\xad\xa8\x3e\x15\xb1\x0c\x85\x52\x7c\xff\x68\x7f\x0f\x84\xd1\x75\xa6\x24\x1e\x06\xaf\xa2\x4d\xd1\xd5\x50\xfc\x96\x01\x16\xc5\xcf\x83\x68\x26\x27\xdb\x8c\x65\x74\x7d\x01\xd0\x40\xc0\x3c\x4f\x87\xb9\x63\x7f\x16\x05\xf8\xe2\xc3\x5a\x51\x34\xfe\x9e\x3f\x9a\x20\x06\x34\x11\x3c\x03\x71\x55\x5a\xee\x9b\x6a\x93\x97\xc4\xf4\x75\x49\xd0\xeb\xbe\x63\x0e\xd3\x7a\xb6\xca\x9c\x8f\xfd\xd1\x9f\xf9\xa4\x57\x27\xa8\xf3\xcf\x6f\x83\xf2\x8b\xdd\xbe\x17\x94\x6d\x12\x81\xe7\xd1\xf0\x6b\xdd\x8e\x5c\xa4\x67\xae\xdf\xe8\xf4\x0f\x8f\x7a\x4b\x5c\xc5\x90\xcd\xcb\x3f\xd3\x3f\xd0\x9e\x47\xa2\xfd\xce\x3f\x8d\x60\x6f\x86\xbd\xb1\x16\x09\x9e\xea\x3b\x88\xed\x3f\x46\x76\xc3\x7f\x08\x29\xba\xf2\xd1\x43\xc0\x1e\x85\xe7\x41\x39\xf8\x17\x21\x40\x88\x01\xbf\x31\xfc\x55\xed\x83\x3c\xd4\xfe\xe9\x70\x8a\x2b\x00\x62\xf4\x2c\x76\x5d\xa8\xe0\x19\xb9\x46\x18\xa8\xf1\x03\xdb\x71\x7f\x80\x87\xb7\x01\x27\x31\x23\x93\xb0\x01\xdb\x26\xf4\x03\x8c\x30\x1c\x99\x5c\xb5\x7d\x69\x6b\xb6\x1b\x37\x92\x44\x7d\xe0\x42\xfd\x87\x27\x3a\x27\x0b\xf3\x54\x58\x5b\x0a\x53\xe4\x3a\xc9\xdf\x05\x59\xb3\x48\x35\x4b\xb2\xb0\x4c\x85\x15\x59\x58\xa5\xc2\x4c\x5e\xcc\x56\x96\x82\x73\xae\x0b\xe2\x36\x2e\xa6\xdd\x7f\x27\x0b\xf7\x54\x38\x94\x85\x23\x2a\x9c\xca\xc2\x19\x15\xce\x65\x21\x4b\x14\x99\xa5\xb0\x45\xe5\x28\x2e\xb9\x82\xb0\x20\xc8\x53\xcd\x92\x2c\x2c\x53\x61\x4d\x8e\xa8\xce\x23\x92\x85\x59\x3e\x0e\x4d\x44\xe1\x80\x2e\x83\x87\xb2\x70\x44\x85\x63\x59\x38\xa1\xc2\xa9\x2c\x9c\x51\xe1\x5c\x16\x2e\xa8\x70\x29\x0b\x57\x54\xb8\x96\x85\x31\x15\x6e\x26\x42\xc1\xb9\xa5\xc2\x9d\xac\xb9\x9f\xf0\x05\xba\x98\xf7\x32\x9d\xa5\x0e\xf2\xf3\x23\xd5\xcc\xc9\xc2\x3c\x15\x16\x64\x61\x91\xdb\x94\x85\x65\xbe\x1d\x97\x85\x55\x2e\xcc\x09\xeb\x04\xbd\x2e\xf6\xdf\xf4\xdf\xdc\xb7\xc1\xd1\xc4\x3a\x64\xe2\x07\xb3\x84\x57\x9f\x0f\x82\x63\x95\x5c\x07\x35\x39\xca\x3a\xf5\x93\x91\x85\x59\x2a\xec\x4f\xe5\xbc\x4d\x69\xde\x64\xe1\x88\x0a\x33\x05\x49\xc8\x44\x20\x7a\x81\xda\xcf\x69\x95\x8e\xe5\xe7\x13\xfa\x7c\x2a\x0b\x67\x54\x38\x96\x9f\x4f\xe8\xf3\xb9\xac\xb9\xa0\x9a\x4b\x59\xb8\xa2\xc2\xb5\x2c\x8c\xa9\x70\x23\x0b\xb7\x54\xb8\x9b\x0a\xc4\xef\xa9\xf0\x20\x6b\x1e\xa9\x30\x27\x0b\xf3\x54\x58\x90\x85\x45\x2a\x2c\xc9\xc2\x32\x15\x56\x64\x61\x95\x0a\x6b\xb2\xb0\xce\xf8\x94\x85\x59\x2a\xec\xcf\x04\x9c\x83\x19\x4d\xc7\x4c\x4e\x07\x15\x8e\x65\xe1\x84\x0a\xa7\xb2\x70\x46\x85\xf3\x99\xb8\x55\x5c\x50\xe1\x52\xd6\x5c\x51\xe1\x5a\x16\xc6\x54\x98\xe9\x0b\xe3\xa5\x2c\x2d\x8e\x8d\xac\xb9\xa5\x9a\x3b\x09\xfc\x9e\x0a\x0f\x5c\xd3\x50\x37\xdc\xb1\xe4\xee\x8a\x44\x8e\x83\xd0\x65\xf5\xf9\x30\x8d\xbc\xeb\x92\xbc\x0d\x48\xfa\xcf\x04\xb7\xea\xcc\xab\x51\x9a\xa2\x19\x52\x26\x18\xa0\xe3\x24\x9b\x0f\xd1\xde\x32\x91\x41\x09\xac\x94\xae\x1f\xcb\xbf\x6d\x04\x50\x5a\x06\x60\x6f\x83\xca\x14\xd4\x6d\x94\xe7\xd2\xa2\x44\xe8\x36\xac\x21\x87\x77\x14\xf9\x3f\x59\x06\xbf\xfe\x4f\x94\x79\x47\xb3\xf3\xdf\x4a\xd5\xf5\x32\x60\x4d\x19\x58\x13\x2d\x3d\x72\x89\xac\x81\x97\xb4\xc1\xd5\x6d\xad\x7f\x62\xe3\xb0\x72\x5b\x56\xdb\x92\x7d\x86\x2c\xf9\x60\x67\x10\x7f\x42\x7a\x26\x26\x3a\x97\x97\x27\xb0\xc8\x89\x8e\x86\x73\x19\x6b\x03\x78\x02\xbd\xc9\xcc\xc4\xf5\x17\xae\xd7\x99\x05\xdd\xbe\x31\x5a\x99\x32\x0d\x61\xbc\x0a\x84\x84\x09\x75\x70\xa0\x13\xca\x73\xba\xbb\x46\x26\x89\x2f\x0f\x88\xa5\x3c\x9e\xc8\xc8\x70\xad\x82\x9a\x49\x81\x4a\xda\xa8\x92\x2f\x48\x43\xce\x3b\xed\x1f\x6e\xfc\x10\x28\x75\xf8\xa7\x1a\x4f\x40\x0e\x0e\xf8\xbf\xdf\xb8\xb9\x26\xb1\x53\x50\xfd\x29\x5b\xdd\x5f\xbb\x53\x0c\xf2\x20\xd9\x8c\x51\x53\x63\x0c\x1f\x5b\xcd\x59\x3a\x01\x53\x79\xa2\x01\x06\xef\x53\xb2\x7b\xdb\x95\x51\xb4\x0a\x52\xd0\xf5\xa8\x7b\x43\x95\xa0\x77\x7b\xbb\x61\x8f\xc1\xba\x43\x72\x3f\xa8\xe4\xc9\x6b\x85\x36\x80\x1d\x8e\x14\xd7\x89\x00\x09\xa0\x71\x7b\x26\xe0\x78\x61\xcc\x5c\xb4\x20\x24\x2e\xd6\xe7\xd8\xce\x68\x11\xa4\x94\x0e\x68\x55\x7c\x00\x82\xb4\xb1\x33\x91\x7c\x60\x1e\x7c\xd2\xd0\xdd\x11\xce\xce\x01\x83\x8a\xe9\xb9\xb7\xd4\x75\x9d\x3c\xdd\xdb\xbd\x63\xa6\xc0\xa2\xf4\x55\x30\x08\x90\x21\xcc\x77\xd0\x5a\xda\x77\x77\x4a\xdd\x9d\x9b\x57\x1c\x45\x56\xa8\x1a\x61\x1b\x7e\xf9\x33\xeb\x31\x05\x11\x8c\xf7\xbf\x88\xf8\x27\x10\x01\x99\xa9\x9b\x2f\x7f\x00\x1b\xa7\xaa\xfd\x45\xc1\x9f\x42\x01\x8f\x5e\x73\x6d\xdd\xcb\x44\xc8\x09\xfa\x79\xf0\x4e\x0c\x78\xcd\xba\xc0\xc6\xf8\xd5\xbb\xb1\x97\x56\xd1\xdb\xfd\x7e\xbf\x13\xce\x02\xfc\xbb\x18\xfc\x77\x40\x21\xe7\x51\xef\x24\xbc\xf1\x4a\xa9\x72\xd5\x77\x65\xc0\xf7\xce\xed\x19\x4e\x77\xf2\xbb\x94\xe9\xfa\x97\x83\xe8\x0a\x39\x7f\x8a\x6c\xbd\xa9\xfa\xdb\xc9\x3f\xd7\x09\x84\xd2\x7f\x4f\x27\x1e\xbf\xfa\xdb\xc9\xdf\x4e\xfe\xef\x76\x62\x03\xdd\x09\xd6\x09\xd1\xf4\x66\xe9\x3b\xfb\x90\xb2\x4f\x8c\xfc\xc3\x80\x6e\x3e\x4b\x8e\x3b\x94\x2e\xa9\x71\xf2\x0b\xe8\x61\xee\xc6\x73\xf0\xaa\xa5\x01\x02\xda\x35\xaf\x63\xd6\x30\xd0\x49\x59\x9c\x62\x35\xd8\xfc\x35\x1f\x91\x7c\x20\x12\xfa\x89\x96\xd1\x78\xba\x8a\x89\x72\x8b\xfd\xfc\xa2\xc4\xb1\x90\xaa\xd8\x27\xb8\x5f\x71\x01\x41\x0f\xfc\xd9\xb9\x53\xbd\x33\x53\xc3\x89\xd8\x67\x58\xbb\xff\x8e\xef\x2a\xa3\xd0\x92\x0f\x5f\x50\xe9\xd1\x81\xe9\xd0\xd2\xdd\x33\x5d\x23\xd0\x2d\x91\x80\xeb\x06\xcc\x98\x59\xd1\x49\xd6\xf1\x8f\x73\x75\x48\x46\x28\x5e\xd1\xf9\xf8\xe5\xad\x5d\x34\xfb\x6a\xad\x6c\xab\x29\x33\xc1\x93\x60\x0a\x9b\x4e\x78\x8c\x05\xbd\x8e\x9c\x5d\xdf\x50\xcc\x4a\x90\xa6\x6c\xa9\xe7\x18\xc9\xf2\xc0\x86\x38\xc3\x9b\x01\x1a\x69\x6e\x31\x68\x5b\x33\x72\xa8\x8f\x47\x86\x6a\xe2\xca\x04\x2d\xe6\x58\x61\x7f\x7e\xa4\x06\x6c\xec\x1b\x8e\xde\x2e\x50\x3c\x3f\x67\x4e\x77\x65\x4f\xc4\xf1\x34\x34\x7a\xfa\x8d\xcc\x8f\xfd\xc0\x6d\xf3\xb8\x91\x42\x9b\xbb\x03\xb9\xe9\x1e\x42\x9b\x27\xde\x6a\x26\xbf\x09\xdc\x72\xd5\xc9\x4a\xf8\x40\x42\xfb\xf1\x95\x83\xa0\xc5\xdc\x41\xd0\x0c\x11\x54\x7e\x1b\x41\x75\x56\x66\x78\xaa\x91\xd0\xf1\xa2\x65\x1d\xc4\xdb\x54\xe2\xe3\x32\x70\x66\x77\xe5\x93\x83\x91\x1f\x7c\x42\x39\x3b\x27\x8c\x6e\xb9\xd0\xfe\x28\x58\x86\x4a\x3f\x0e\x1b\x29\xeb\x30\x8e\x4c\xee\x43\x84\x66\x19\x4f\xff\x03\xdf\xd5\xc6\xc2\xdf\x95\xef\x33\x7d\xd6\x93\xfa\x65\x66\x2c\x36\xa6\xe2\xb8\x21\xee\x2d\x5a\xea\x77\x8d\x8d\x2b\x14\x17\xb1\xca\x01\xf4\x76\xe4\x72\x41\xcf\xb5\x19\x9a\xe9\xd6\xf9\x32\xac\x12\x82\x86\x17\x29\xad\x3b\x22\xe3\x56\x5d\x4c\xb9\xf9\x61\x5b\x2a\x8b\x5c\x0d\xe4\x00\x6f\x83\x7b\x01\x0a\x6a\x9f\x9c\xb9\x85\x87\xd5\x4a\x5c\x97\x7b\x15\x78\xf2\x91\x37\x43\xe4\xf8\x13\x15\x22\x73\x29\xc0\xc0\xe3\x66\x36\x93\xde\xc7\xc8\x26\xc8\xcc\x86\x76\xbd\xd0\x12\xfb\x8b\x27\x27\xc0\x1f\xc7\x1d\xbe\xc6\xc6\x16\x76\x2f\xb7\xcc\xa1\x2e\x39\x6f\xc9\x24\xc6\x4d\xc3\x03\xb9\x41\xf7\x5b\x49\x74\x6c\x25\x3a\xfa\xed\x04\x03\x76\xd1\x91\xde\x90\xa9\x67\x1c\x73\xfb\xa1\x35\xa3\x1c\xb8\x93\x8e\xcc\xeb\x5e\x29\x55\xdc\x42\x6b\xcf\xd8\x7e\x65\x2a\xe3\x04\x1a\x0f\xcd\x41\x0d\x3d\x34\xc9\x87\x2e\xa5\x56\x47\x29\x35\xc2\x50\xb1\xdd\x72\x9b\xd0\xdf\xf4\x7c\xdf\x2d\xfa\x4d\x4c\xc0\x9f\x16\x55\xf8\xab\x95\x16\x98\xc0\xce\xd1\x63\x0a\x00\x10\x8b\x84\x38\x2b\x75\xc1\x19\x57\x46\xe4\xcf\x42\x0b\xa5\xe9\x7a\x56\xd0\x7d\x3f\x3b\xcf\x5b\x67\x0b\xd3\x3e\xf8\x77\x4c\xc5\x85\x22\x3a\x69\x38\xdf\xb9\x9f\x64\x89\xf8\xe8\x25\x5e\xd4\xfe\x38\x85\x36\x43\x71\x4c\xb3\x05\x6c\x9a\xcc\x2f\x4b\x46\x8e\x8c\x1c\xf6\x5f\x70\x44\x13\x1e\x6c\x79\x29\xb3\x38\x69\x40\x0b\x27\x3c\x53\x34\x34\x45\x27\x42\x02\x54\x77\xc1\x64\x7b\x04\x91\x4e\x0c\x67\xeb\x67\x7a\xaf\xba\x85\x67\xbf\xbf\x51\x12\xc5\x97\xb2\x43\x17\xb1\x6e\x6d\x3f\x28\x45\x1b\xa2\xd1\xd8\x2f\xf4\x5a\x78\x92\xab\xd0\xf9\xce\xae\x03\x71\xff\x4b\xcb\x80\x79\xa1\x5d\x06\x55\x67\x19\xd4\xa6\xc2\x05\x99\x84\x82\x48\xde\x65\xab\x89\xbb\x22\xf8\x83\x2c\x39\x9f\xba\xf3\xa5\x66\x98\x79\xf6\x4f\xad\x8c\x4b\x49\x23\x78\xf9\x79\x22\xa8\xc1\x37\x6f\xf9\x90\x8b\xb0\x19\x5f\xd3\xb9\x5f\x1e\x4c\xc9\x39\x28\x32\x71\x9b\x1e\x93\xf5\x27\x53\xe1\x7b\x07\xdf\x29\x41\x76\xa9\x85\x06\x7e\x07\x66\x3b\x95\x82\x09\xbf\x9a\x0e\xe1\xdc\x32\x45\x93\x0a\x11\x87\x92\x22\xc9\x44\x26\x40\x1d\x9b\x2a\xeb\x86\x4a\xd2\x19\xaa\x85\x21\xad\x12\x13\xea\x55\xa9\x53\x1f\x29\x75\xf4\x1f\xde\xc1\x7b\x92\x1a\xe1\x83\x39\xf3\xfe\xa6\x13\x2c\x02\x67\xf7\xb3\x3f\x7d\x4d\x1b\x3e\x8e\x6c\x48\xc4\x9a\x40\x41\x49\xd8\x28\x8c\x39\x22\x92\xf5\x81\x33\x97\x7b\x2f\x2e\xc9\x11\xf8\x2f\xcc\x3f\x3c\xf4\x30\x8e\x0c\xd3\xa9\x08\x1b\x2c\x3c\x25\xd3\xb2\x83\x12\x24\x3e\x0a\x27\x41\x59\xc2\x3f\xdb\xd7\x24\x96\x8e\x04\xce\x95\x14\x00\xcc\x4f\xca\xa5\x22\x56\xa7\x69\xac\x69\xa3\x21\x0b\xa9\x01\xb2\x53\x7a\x35\xf5\xd7\x8f\xef\x58\x60\x9d\x3c\x85\x73\xfa\x22\x08\x4b\x7f\x8c\x0e\x5c\x9f\xec\x9c\xb5\x68\x59\xd8\x29\xd3\xac\xee\x8e\x96\x95\x91\x30\x6f\xe4\x64\x6f\x84\x25\xc3\x77\xc9\x78\x37\xd2\x69\x46\xff\x89\x43\x31\xbf\x89\xb7\xe4\x01\xf3\xd3\x79\x0b\x42\xa2\x83\xed\x4f\x72\xc3\x76\x66\xc0\x45\x0f\x45\x64\xba\x92\x65\x7c\xb0\x96\xde\x94\x4d\x13\x8a\xc9\x1d\xcf\x57\x8b\xa6\x81\x07\x80\x75\xf9\xf4\x97\xb3\xa1\x72\x14\xe3\xbf\xf9\x9b\x87\xc3\x29\x78\xe7\x6c\x59\x40\x3e\x7b\xf8\x73\x57\xc0\x77\xdb\xc9\xbd\xd5\xe5\xd8\x4e\x3b\x96\xa2\x7f\x8a\x65\xda\x34\xec\x6a\x28\x28\x19\x3e\xfb\xec\x35\xe3\xa2\xfa\xde\x3f\x8c\x1a\x48\x7e\xfe\x1b\x86\xab\x3e\xd0\xe9\x4b\x3a\xa3\x8e\x4c\x3c\x1d\x28\x1a\x79\x04\xea\xc2\x13\x0b\x06\xb4\x0e\xdf\x37\x01\x2d\x36\x39\xbb\xf4\x26\xa4\x68\xb6\xb4\xf7\x71\x0a\xa8\x45\xd9\x70\xfe\x4e\xd1\xaf\x4f\xd1\x1f\x82\x28\x65\xe3\xaf\xf2\xc9\x30\x74\x04\x0a\x87\xa7\xb9\xd0\xee\x85\x73\x2e\x47\x78\x4a\x25\x28\x6c\x23\x95\xa0\xcc\x73\x31\xf0\x28\x0c\xa5\x88\x5a\x90\xd8\x4a\xa0\x8b\x93\xa4\x14\xa6\x45\x2f\xb2\x5d\xe9\xc7\xc9\x6f\x7b\x5e\x8e\xe7\x7e\x90\x22\x46\xec\x09\xeb\x44\xcf\x38\xce\xda\xcf\xb9\x52\xfb\xdf\xc7\xbf\x8f\x7f\x1f\xff\x3e\xfe\x7d\xfc\xfb\xf8\x3f\xf4\x08\xbf\xdc\x6b\xb8\xff\xda\x23\x04\xc4\x0a\xfc\xad\xf9\x0f\xf6\x62\x84\xde\xff\xc8\xa3\xb9\x87\x79\x96\x27\x77\x2d\x9f\x98\xfb\x58\xd0\x80\x4d\xd0\xa9\x04\x35\x78\x78\x6a\x1d\xce\x1a\xd6\x06\x9a\x5d\x5f\xa0\x69\x11\xea\xb6\x3f\x6b\xd8\x5b\x33\xf6\xa4\xe9\xd7\xe8\x98\x0e\xd2\x26\x8b\x68\x46\xd4\x53\x6e\x25\xf7\xcc\xce\xd5\xdd\xd7\x46\x34\x4a\x7f\x6d\xe8\xc9\x74\x06\x03\xb3\x9d\xf9\xcf\xee\xe7\x66\x86\x06\x52\x9c\x7c\x7f\xf5\x7f\xe1\x6b\x2b\xd2\x72\x46\x2a\x31\x1c\x9b\xfd\x45\xa4\x20\x78\x4d\x36\x37\xab\x1a\x4d\xb3\x39\xf8\x95\x92\x45\xfe\x62\xe9\x2a\xa5\x34\x85\x85\x4a\xf5\x26\xf3\x46\xe2\x86\xc8\x23\x04\xa9\xb2\x32\x83\x78\xa5\x43\x81\xb9\xbc\xe5\xb0\xa4\xe6\xaa\xc6\xf1\x82\x15\x02\x3b\xdf\xdb\x84\xbe\xf6\x4d\x4a\xf5\xb6\x19\xe7\x1e\xc9\xd3\xa0\x03\xc5\xa0\xea\xcd\xc9\xc5\xd0\x34\xd1\xf0\x9d\xdc\x06\xe2\x24\x99\x0c\xe1\x1f\xfa\xe2\xbf\xe5\x84\xa9\x61\xff\xf9\x26\x10\x61\x70\xa2\xb4\x38\x98\x86\x76\xa0\xec\xf8\x49\xff\x2d\x7c\xaa\x32\x62\x0c\x50\x22\x3b\xbb\x3a\xf7\xd3\x8b\x31\x02\x7f\x9e\x95\x52\x25\xcc\xf6\xf9\x5a\x76\x32\x0d\xc8\x59\xc0\x53\xe6\x98\x38\x06\x4f\xba\x0c\x58\x21\x6e\x32\xb3\x82\x21\xd4\xfc\xcb\x8d\xb2\x73\xed\xb6\x5c\xe2\x89\x2b\xf7\x19\x4e\x5b\x59\x99\x9d\x48\xde\xba\xa1\x92\x94\x6f\x44\x02\xd2\x59\x45\x22\x51\xa3\x61\x89\x5e\xcb\xfd\x67\xbe\xd0\xd4\xa5\xb1\x7b\x4c\x73\x4f\x64\xbf\xef\xb7\x36\x8e\x31\x30\xe4\x83\x38\x18\xae\x12\x94\x71\x32\x24\x8f\x66\xd9\x74\xf9\x93\x1a\xac\x56\xa3\x66\xe7\x84\xa9\x9d\xd3\x8c\x2c\xe6\x0d\x5e\xf2\xba\xb8\xb0\x12\xa1\x76\x8a\x2b\x24\xc3\x25\xb3\x72\x5d\xb8\x22\x6f\xc6\xf5\xac\x61\x43\xf1\xc5\x54\xb8\x99\x89\x98\x4e\x5b\x2a\xdc\xcd\x30\x8b\x21\xac\xdc\xe6\x9e\x4a\x0f\xdc\xa8\xae\x7a\xa4\xc2\x1c\x1a\x44\xc0\xf7\xcd\x3c\x7f\x4f\x13\xb2\xa7\xa0\x92\x6f\x46\xf2\x39\x2c\xf1\x36\xf3\x48\x1f\x70\x03\xe5\x9c\x08\x1f\x0e\xc1\xe9\xfa\x78\x13\x36\x0e\xca\x34\x54\x03\x80\xb5\xab\xb8\xd5\x88\xfc\xa1\x7f\xdf\x8d\x62\x87\xcc\x7b\x44\x70\x94\xe7\x9b\x13\xac\xd1\xc0\x8a\x84\x59\xb8\x51\xf2\xde\xd9\xd5\x7f\x14\xe8\xd4\x30\xc7\xf4\x95\x97\xf1\x8e\xa6\xe5\xb8\x40\x30\x27\x4e\xcc\x49\x9e\x9f\xd9\x04\x36\x6f\xd8\x5d\x7b\x93\xd0\xf4\x08\x5f\x8a\xc9\x80\xc8\x54\x66\x2f\x60\xeb\x1c\x78\xf8\x91\x32\x63\x5c\xe1\x87\x03\xca\xa2\x26\x3c\x91\xb6\x37\x0e\x51\x6d\xe5\x55\x90\x9b\xa4\x87\x61\xad\x53\xf8\xd5\x6d\x4f\x68\xa7\xa0\x2d\xaa\x78\x9e\xbe\x20\x4b\xf1\xfb\xe8\xcb\x72\xac\xb6\x52\xaa\x8e\x97\xd1\x9d\xa2\x73\xe5\x26\xa6\xcf\xf4\x6b\xac\x3c\x50\x65\x55\x25\x79\x2d\xd3\x50\x2a\x83\x9e\xb3\xf5\x6b\x07\x23\xd9\x85\x4c\x00\xd9\xb4\x19\x5e\x53\x57\x45\x8e\x0b\xc1\x7c\xf7\x1c\xfd\xff\x29\xd2\x68\x63\x16\x20\x8d\x75\x8e\xa2\x4a\x2d\xef\xfb\x36\x8d\x55\x7b\x76\x25\xdf\xa1\x5d\x56\xf1\x9f\x01\xc5\xf2\x5f\xcd\xad\x2a\x28\x19\x3c\x98\x85\x13\x79\xe9\x32\x3b\xce\xc5\xa8\x6e\x7a\x43\x31\x65\xa5\x51\xdf\x2a\x48\x9d\x15\x31\x17\x36\x58\x72\x07\x6c\xa6\x52\x39\x20\x33\x3f\xfe\xe0\xe8\xe8\x46\x7d\xf6\x29\xe8\xa8\x1f\x7a\x1b\x57\x9d\x4d\xbe\x92\x10\x17\xe5\xd5\xfc\xba\x99\x3a\x09\x26\xc8\x9d\xc6\x4b\xcb\x26\xc1\xe6\x77\x75\x6b\xe2\x00\x4d\xe9\x32\x8e\x4c\x08\x38\xeb\xae\xd0\xa8\xa8\xd2\xa7\xa0\x74\x6d\x45\xb6\xf9\x55\x34\x05\xa1\x44\x3d\x78\xc4\x09\x31\xbc\x68\x1b\xed\x19\x74\x47\x33\xff\x56\x8d\x76\xef\x47\x67\x5a\x57\x62\x89\x9a\x30\x79\xc5\x29\xc7\x17\xb3\x57\x76\x9b\x19\x27\xb5\xdd\x9e\xa7\xaa\xc2\xe2\x24\xaa\x2c\x1b\xff\xf1\x9e\xc9\xde\xfa\xec\x43\x3f\x70\xa1\x3f\xe1\xfc\xbc\x9a\x50\x16\xd9\x66\x6a\x5b\xfe\xb8\xf9\x39\xdb\x6f\x9c\xfb\xcc\x80\xa0\x87\xb1\x38\xb1\xee\x30\x12\x7a\xd1\x03\xd0\xf0\x97\xc8\x26\xc1\xe5\x5e\x8f\x93\x46\xe2\xdd\x79\x0e\xaa\xfb\xdf\x7a\x3b\xec\xe4\x20\xa2\xd4\x51\x04\x33\x2d\x99\x68\x92\xca\xae\xfd\x04\x06\xbf\x1c\xf4\x2d\xd3\x0f\xb0\x49\x36\xd6\xac\x61\x0c\xb7\x7b\x2b\xfc\x0c\x38\xf9\xe2\xb2\xad\xd4\xb2\x1d\x8a\x26\xf5\xa6\x73\xe9\x8a\xd4\xcd\x13\x66\x13\x3d\x2b\x28\xd4\xbb\x42\x98\x7a\xf5\xcc\x27\x7e\xca\x43\x06\x59\xf2\xd8\xb1\x9a\x52\x27\x55\x87\xfb\x4a\xca\x64\xde\xa9\x06\xd7\xfd\xee\xd2\x62\xd6\x8a\xd7\x50\x6d\x7f\x29\xbb\xd7\x18\xa3\x7b\xd7\x0c\x85\x22\xc5\xf8\x22\xb5\x64\xfe\x4d\xb3\x87\xcb\xec\x3c\x05\x39\xc3\x68\xec\x40\xa7\xef\x52\xc3\x86\x4d\x45\xb9\x55\x06\xf7\xdb\x5d\x21\x84\x06\x99\x64\xba\x4a\x57\xe8\x18\x1c\x95\x53\xc4\x35\x8d\xe9\xaf\x65\x0b\x89\x14\x41\xb4\xf4\xdd\x63\x95\xf2\x71\xd8\x61\x6e\x04\x2d\x95\x68\x41\x63\xe2\xaa\xf2\x0f\x0c\x32\x24\xbc\xf0\xd5\x5b\x3f\x05\x42\x50\x5c\xfc\x3f\xd0\xa2\xd0\x07\x79\x88\xe2\x39\x03\xae\x76\x6a\xba\x88\x82\xee\x79\x8a\xcc\x85\x95\xdd\x47\x6d\xdf\x43\x84\x77\x44\xc9\xd3\x42\xcf\x62\xce\x39\x0d\xcb\xb3\xb2\x0c\xdb\x61\x5b\x6c\xaa\xb3\x69\x6b\xe4\xc0\x3d\x42\xc9\x38\xf9\xd3\x69\x38\xb1\xc9\xe0\x19\x25\x2c\x2d\xeb\xe2\x00\x5c\x71\x8e\xb2\xc2\x9a\x24\x19\x30\xda\x94\xa7\x14\x09\x85\x83\xbd\x34\x36\x07\x42\x79\x27\x18\xd9\xac\xf0\xcc\xbe\x10\xfc\xbe\x3c\xfb\x59\xa1\xd1\x51\x42\xd0\xd6\xec\xdb\x0b\x96\x64\x9d\x2c\xb2\xde\x9a\x34\x1c\x1d\x84\xb2\x8c\x94\x8f\x57\xf6\xea\xd3\xd2\x4e\xf4\xab\xbc\xb8\x36\x97\xb1\x79\xeb\xb4\x03\xeb\x52\xb3\x51\x8a\x73\xee\x5c\x5a\xd0\xfe\x5a\x80\x96\x12\xf2\xb4\x32\x19\x00\x64\x12\x17\xa2\x59\xf7\xa4\xdd\xf6\x83\xd6\x0b\x5d\x80\x0c\x5a\x2f\x6c\xc5\x48\x97\x99\x49\xe8\x32\xb3\xa4\xcb\xa4\x65\x3c\xa3\x14\xa9\x73\xdc\x3b\x77\x97\xd6\xf3\x67\x84\xa8\xcc\x90\x98\x37\x98\x33\x08\xba\xb4\x3f\x17\x9b\xad\x7e\x05\x4a\xd1\xb9\xd0\x77\x8e\xa8\x70\x3c\x17\xa1\xc4\xb7\xdf\x6d\x00\x81\xdd\x77\xbb\x35\xc3\xee\x0e\x22\x5e\xd3\xaa\xc9\xf6\x63\x8c\xd2\x4e\x41\x66\xdf\x01\x6b\x2a\x00\x72\x00\x96\x98\xf5\xd1\x77\x8d\x25\xfd\x60\xb5\xe0\x49\x35\xe7\x59\x3a\x1e\x70\xa7\x75\x6a\xac\x9f\x2c\xb6\xcb\x5f\x43\x52\x91\x3a\x9f\x44\x35\x0d\x17\xd5\x58\x3a\x39\x49\x01\xa8\x5a\x64\x75\xca\x38\xc7\x91\xdc\x7e\x2a\xe4\xce\x24\xc2\x1e\xe1\x64\xd3\xfb\x1d\x8e\x7b\x25\x73\x57\xc2\x58\x1f\xf4\x58\x17\x30\xd6\xa7\x78\xe1\x9c\x48\x24\x84\x1a\x73\x29\xc5\x96\x71\x8d\x03\xa5\xd4\x06\x1b\x9a\x06\x5b\xb7\x25\xc6\xfd\x68\xd1\xf0\xce\x9b\x73\x8c\x2d\x83\xe2\xde\x95\x33\x27\xb3\x69\xc3\xd3\xc8\x12\xef\xe5\x58\xc8\x34\xd7\xdb\xef\x68\xf8\xbf\x0b\x9d\xe2\xd0\x52\xd0\xcc\x9b\x6d\xd3\x72\x94\x9a\xb7\x9b\xda\xe7\xda\x59\x9a\xa0\xdd\x82\x12\xdd\xe8\xc3\xd6\xde\xa3\x60\x49\xbc\x0c\xc9\x1b\xab\xc3\x22\xa2\xa5\x68\x8b\x69\x1f\x17\x89\xf3\x12\x07\x96\x77\xb2\x15\x71\x23\x83\x45\x23\x15\xe4\x59\x23\x31\x55\xd6\x6e\x31\xfc\x10\x9a\xcf\x22\x2d\xf2\x53\x56\xfb\x48\x3b\x2c\x10\x92\xa2\x7b\xb2\x36\x04\xc1\x4b\x87\x91\xa2\xff\x4c\x16\x5e\xfc\x29\x55\x42\xba\x69\xe5\x17\x1e\x83\x35\x58\xfa\xf1\xc6\x98\x90\xfd\xbd\x9c\x1e\xd1\x8b\x3f\x20\xb7\xee\x88\x62\x87\x95\x28\x5c\x58\x02\x12\x5d\xe9\xc7\x9b\x63\x43\xa5\x34\xdf\x09\xd5\xc8\x01\xcc\xf5\xbc\xf0\xd3\x38\x2b\x2d\xb1\x86\x5a\x10\x96\xc4\x41\x67\x7e\x41\x21\x89\x61\x31\x6d\xa1\xc9\x17\x6a\x7a\xc3\xb7\xf0\x30\xf0\xf3\x47\x3c\xfa\x74\x0e\xdb\xfa\x56\x36\x94\xb2\xe4\x38\x3a\x5b\xd6\x11\x51\xdc\xb6\x50\xf5\xb7\x38\xb1\x92\xf4\x9e\x98\xdd\xc2\x00\x60\x71\xb6\xa5\xde\x00\xcf\xbd\x66\xdd\x4a\x05\x9c\x3f\x63\xb9\x19\xb6\xab\xb1\x67\xda\xaa\x70\xfa\x74\x23\x2b\xe0\x59\x70\xde\xb6\xe2\xe4\xe8\xfa\xcd\x15\xee\x0e\x9c\xc3\xd4\xbd\x78\xa3\x34\xdb\x17\x07\xa2\x93\x41\xd5\xda\xe6\x8e\x44\xd0\x9e\x10\x87\x4e\x0f\xca\xf0\xa2\xe2\xec\x3f\x05\xbc\x11\x51\xdf\xa0\x74\xc8\xa2\xe7\x6e\x01\xef\x61\x86\xe6\x68\x55\x97\x3a\x57\x54\x61\x67\x68\x1a\x8f\x04\xa7\xc6\x80\x71\x8b\xab\xd3\xca\x60\xe9\xc9\x8a\x34\xe5\x62\x78\x91\x08\xae\x8f\x17\x63\x33\x47\xf1\xea\xe4\xda\x2f\x52\x1c\xf9\xca\x9c\x12\x3d\x51\xa7\x94\x8d\xad\x86\xe3\xbe\x13\x5a\x70\xcd\xc2\xaf\x0d\x0b\x17\x7d\x71\x13\xd5\x85\xa3\xbc\x91\x37\x6b\xf3\x83\x28\x5b\x1c\x88\xfb\x62\xd0\xfb\x5e\x9d\x92\x07\x4f\xce\x80\x99\x02\x8f\xe6\x9a\x9f\x4e\xf3\xcc\x1f\xe6\x3b\x50\x91\xd1\xfc\xe9\xc6\x0d\x99\x54\x49\xc5\x70\x96\x49\xfd\x70\x80\xca\x52\xb8\x7d\x0a\x94\x59\x98\xb3\x26\xab\x3c\x6b\xbc\x03\xfa\xa6\x12\x99\xff\xd5\x67\xc3\xf3\xcc\x32\xbf\xf4\x58\xd3\xd8\x4e\x07\x84\x8b\x59\x92\x1f\x86\x49\x63\x13\x89\x83\xe4\x58\xce\xfd\x95\x03\x8e\x9c\x6e\xb0\x7f\x5c\xe0\x82\x9a\x76\xac\x3b\xd3\x0c\x75\x13\x4b\x10\xf7\x3b\xb3\xb6\xdc\xf4\x4e\x90\xc9\xf9\xd1\x46\x44\xb7\x9a\x1d\x41\x0f\xbf\xdb\x98\x1e\xbe\x61\xf9\xc9\xa3\xcf\x2f\x1f\x49\xe6\x3b\xce\xb4\xb1\x20\x9f\xc7\xe1\xb2\x41\x99\x0a\x47\x4b\xf2\xd3\x5c\x62\x06\x11\x3c\xed\xd1\x05\xdd\xfc\x37\x0e\x2a\xcf\xe2\x2c\xd8\x31\xb9\x3f\x61\x49\x2f\x82\xe4\x8a\x1e\x2e\x1a\xf6\x2e\x62\x42\x39\x69\xa4\xe5\x05\x64\xac\x1a\x23\x86\xee\x27\x4b\x29\x65\x8d\xdd\x26\x26\x31\x3e\x67\x6b\xe2\xfc\x7b\xe9\x09\x24\x4b\xe0\x58\xad\x59\xd7\x45\xae\x65\xee\x2f\x4e\x9b\xb3\x65\xc3\xb6\x65\xe4\x72\x53\xe2\x19\xd7\xaa\x25\xd9\x00\xcc\x96\x8d\x53\xed\x27\xd4\x24\x91\xd1\x29\x94\x1d\xa7\xa8\x41\x20\x74\xcb\x27\xe0\x89\xac\xcf\x5c\x98\x80\x2a\xb2\x5e\x15\x1a\x7f\xb8\xa0\xd9\xdb\x15\x5a\xbb\xb7\xbc\x3a\xeb\x13\x88\x65\xc7\xd9\x85\xe0\xe9\x63\x41\x03\x14\x85\xe8\xb0\x40\x02\xaf\x70\x0a\xa2\x36\xa4\xe9\x0b\x2c\x0d\x64\x67\x56\x75\x13\xed\x59\xaf\x60\xbc\x2c\xf8\x4a\x1d\xc0\xae\x3a\x37\xda\x24\x85\xb8\x4a\x14\x23\x03\x08\x22\x35\x5a\x03\x87\x52\x0d\xd8\x14\x86\x96\xae\x49\xc1\xb0\x3c\x90\x45\xe3\x19\xe2\x77\x3f\x77\xbe\x77\x95\x79\x1e\xcd\x47\x8e\xd2\xeb\xc5\x3e\x2b\xf8\xe4\xa7\xc1\xbc\x75\xa7\xd3\xed\x31\x0d\x4f\x97\xc8\x2e\x56\xf2\x56\xc8\x56\xab\x3a\xae\x53\x54\x57\xec\xb6\x96\x96\x80\x31\x2c\x1a\xde\xf7\x3f\x9d\x0f\xf9\x06\xc2\x7e\xf1\xf2\x67\xea\x0b\x49\x7d\xf1\xf9\x6c\x15\xd8\x23\x3f\x0b\xbc\x7e\xac\x15\x07\x03\xd6\x7a\xfd\xec\xe0\x53\x9a\x7d\x47\xcf\x4d\xc7\xa5\xd4\xed\x7e\x9b\x3e\x59\x9c\x3a\xff\x7d\xb5\x44\x9f\x5e\x0d\x62\x4b\xff\xca\xde\xfe\x57\xa1\x16\xe4\x79\xbe\xa7\x13\x0b\xb5\xfe\x51\x88\x05\x09\x5b\x52\x6b\xba\xa6\x65\xf6\x5b\x8f\x5b\x98\x85\x69\xd7\x7f\x2a\xdf\x38\xcb\x31\xce\x77\xf1\xc6\x38\xff\x30\xde\x3f\x32\x33\x66\x18\x1e\x46\x5d\xa4\xb4\x5d\x13\xcb\x14\xa4\xfc\x2e\x12\xdf\x8b\xc9\x8f\xf6\xf3\xd1\x71\xfc\xe3\x70\xbd\x9b\xa6\xff\xe9\x19\xf8\xcf\xd6\xff\xdf\x81\xdf\x90\xc5\x3b\xdb\xff\x53\xf5\x4f\xb3\x1d\xbb\x86\xcf\x12\xe5\x99\x21\xbc\x9b\x2d\xfc\xa9\x2d\xe6\x8f\x4e\x5e\x0b\x9d\xf4\x7f\xa7\xfe\x7b\x96\xbd\x7e\xf4\x31\xbc\x75\xfa\x31\xd5\xca\x6f\x92\x92\x5b\xff\x6d\xe8\xcf\xd6\x7f\x03\x0a\x39\x2b\x6e\x8d\xb7\x67\xe5\x8f\xc2\x79\x1a\xcb\x1e\x58\x6f\x33\xd7\xff\x09\x7c\xfc\x5e\x7d\x4b\x47\xe6\xf3\x3f\x5f\xdf\x05\xef\x2c\x9e\x4d\x2d\x8f\xfa\x57\xe9\xb5\xd2\x84\xbc\xb3\xb3\x21\xa8\xc7\x56\x4e\x91\xf9\x0c\xf5\x60\xcb\xf1\x75\x1a\xc7\x22\x85\xde\x3f\x54\xc7\x9b\xc5\xd3\x75\x2c\x66\xad\xde\x63\x16\xc3\xcb\x4d\x8c\x2a\x81\x29\xe8\x6b\xee\xf0\xab\x43\x9a\xc5\x76\x64\x53\x71\x2e\x39\xa3\xf1\x16\xd5\x97\x6c\xc2\xbd\x24\x2d\xde\x6a\xe9\xdc\x91\xe5\x38\x88\x8d\xee\x3b\x5b\x12\x16\x5d\x85\xbd\xc8\xa2\x26\xc2\xd7\x38\x3f\x4d\x85\x23\xdd\x6c\xe5\x16\xc2\x8c\x2c\x4f\x85\x05\x2a\x2c\x7a\x95\xf8\x3d\x2b\xf9\x00\x0f\x23\x22\x16\x56\x71\x17\xe7\x6e\x25\xa1\xe8\x2e\xd3\xab\xd2\xa2\x61\x23\x27\x96\xb9\xd3\x12\xa6\x7b\xa7\xa0\x36\x45\x4a\x73\x5e\x59\xb0\xd6\x06\x35\x23\xbe\x52\x49\x38\xbb\x2f\x1a\x70\x8f\x3b\x0e\xea\x4b\x54\x64\xb0\xf2\x7e\x41\xf6\x0e\x80\x33\xd3\x80\xfe\x92\xb4\x67\xfd\x25\xd6\x18\xac\x9c\x0f\x87\x46\x63\x34\x5a\xb1\xa9\xa3\x98\x8b\x31\x7d\x35\x59\x36\x3c\x50\xab\x34\x26\xbd\x10\x86\x81\x52\xc3\x20\xbf\x3c\x79\xb5\x3f\x5f\x12\xb6\x4f\x57\x59\x52\x95\xf2\xe9\x2a\xb5\xcf\x9a\xe8\x00\xa5\x4d\xb2\x9b\xdf\x74\x8d\x99\x47\x67\x75\xf3\xde\xbe\xde\x05\xf3\x29\x80\xda\xac\xc5\xa4\x7a\x6b\xd2\xfc\xc4\xcb\x64\x9e\xde\x2a\x32\x8b\xf5\x0a\xab\x6c\x97\x6c\xae\x48\x99\x79\x53\x3e\xc9\xe2\xc0\x6a\x64\x17\x59\x65\x6b\x70\x9a\x88\x23\x7d\x22\xe6\x8d\x4a\x72\x6b\x43\x5c\x9a\x08\x6e\x85\x5d\x1a\x33\xcd\x96\xb5\x55\xde\xbc\xc0\x3a\xcd\xaf\x24\xad\x79\x97\x3c\x00\x4f\x26\x48\x17\x82\x0a\x47\xdf\x58\xbc\x48\x31\x48\xf8\x4d\x76\x27\x1d\x95\x4c\x83\x63\xb2\x98\x5b\x86\x4a\x2d\xf1\xcb\x11\xf2\x11\xaf\xe5\xfa\x5c\x24\x62\xe7\x64\xf4\x44\xa2\x4d\xcf\x30\xcf\xb4\x3e\xc4\x10\xaa\x17\x9b\x50\xa9\x4d\x68\x81\xab\x23\x07\xa9\x1d\x42\xbb\x4e\xf0\x05\x5d\xe7\xf0\x9b\xc9\x79\xa8\x87\x0d\xa5\x86\x32\xe3\x99\x50\x63\x21\x40\x51\xa2\x39\x48\x3f\xe5\x1b\x55\x93\x95\x35\x5b\x88\x51\xf5\x11\x8d\x39\xeb\x18\x0b\x37\xd1\x2a\xfb\xe4\xa0\xfb\x34\xe8\x5a\xa8\x54\x2d\x1c\x5d\x5b\x21\x51\x11\xab\xb4\xea\x6b\x77\xbf\xe2\xfd\x6e\x43\xa6\xe4\xab\xd0\xae\x03\x67\xdc\x99\x40\xa9\x0c\xb2\xe2\xc1\xb5\x84\x9c\x3f\x8d\x47\x81\xe7\x19\xc2\xd9\x02\x93\xe0\x0f\xc2\xd4\x51\x7c\xc6\xdf\xb9\x40\xa9\x5c\xc0\x88\xb5\x1e\x72\xd6\xee\x2c\x93\x08\x06\xc5\x3a\x62\x3b\xc4\x27\xa5\xd4\x7a\x07\x0f\xcf\xb3\x83\xa0\xea\x4b\x4f\x9a\xc0\x9f\x58\xca\xcc\x1b\x55\x82\x26\x94\xa1\xee\x6c\xb5\x62\xdf\x2b\x2b\x81\xeb\x4a\xf8\x61\x85\xac\x9b\x84\x77\xa8\xb5\x54\x5a\x22\x18\xfd\xa0\x48\x70\xf8\xcc\x75\x25\x01\xd7\x8c\x49\x15\x90\x19\xcf\x83\x22\xad\xee\x34\x46\x6c\xdd\x00\xc0\xb6\x67\xf6\x82\xa6\x3d\x79\xd7\xc9\x47\x18\xf3\xe1\x26\x92\x5b\xe2\xa5\x22\xaf\x7d\x41\x12\xf7\x34\x17\xb7\xec\xf2\x40\x3c\x70\x4f\xcc\xfe\x47\xa2\xd4\xca\x3b\xba\x1f\x69\x73\x90\xa8\x65\xcd\x8c\xe7\xef\xb7\x9e\xaa\x19\x5d\x7c\xba\xf5\x14\x3b\x0a\x9c\xb2\x9e\xd2\xf8\x2f\xad\xc8\x52\xac\xbc\x72\x1d\x3a\x96\x56\xfe\x78\x03\x31\xe0\x4f\xf7\xe1\xaf\xac\x33\xe4\x52\x4f\xd0\xfa\x00\x53\xbc\x0e\x62\x97\x0e\xe4\xd6\xec\xd1\x41\x2d\x0f\x4f\xe3\xa0\x9e\x97\x93\x4a\x7b\xba\xdd\xc7\x66\xd4\x39\x07\x2f\xc4\xad\x64\x29\xa2\xa3\xc1\xde\xa0\x32\xd8\xc5\x3c\xa8\xba\xa8\x38\xd3\x12\xc4\x56\x5d\xbc\x59\xcd\x92\xfc\x41\x77\x94\x9b\x41\xdf\xb9\x60\xeb\x8e\xd5\x95\x60\x2c\x74\x40\xc1\xa5\x38\x44\x12\x2e\x7f\x80\x84\x8d\xd1\x1f\xf5\xc0\xfb\xff\xd6\xa1\x59\x59\x7a\x9a\x66\x13\xb5\xfe\x6b\x34\x5b\x63\x9a\xad\xbb\x13\xc5\x10\x2e\x52\xa8\x4f\xff\x7f\x47\x35\x3b\x53\x40\x95\x43\xa6\xca\x91\x3b\x53\x2c\x52\x66\x93\xf3\x54\xe0\x79\x2a\xba\xf3\x24\xc4\x4d\x16\x71\x66\x9c\xdd\x7e\x35\x4f\x87\x44\x4a\x1e\x7a\xe0\xc3\x35\x0d\x3c\xeb\x0e\x9c\x1b\x9c\xa0\x35\x4c\x7c\xa2\x39\x31\xb0\x1c\x0f\x2c\xef\x0e\x8c\x5b\x1a\xb1\xbc\xb4\x5d\x24\xec\x24\x2b\x3c\xc2\xea\xc9\x11\xae\x6d\x33\x34\xc2\x45\x52\x96\xd2\x23\x1a\xf3\x88\x06\x6b\x67\x44\xdc\xc0\x80\x46\xe4\x40\x01\x23\x38\xf0\x08\x8e\xee\x08\xf8\xcb\x6c\x90\x3a\x02\xdd\xe9\xa1\x44\x7b\xce\xb1\xe4\x7c\x6a\xe4\xc8\x24\xaf\x19\xae\x69\xcf\xd1\x27\x81\x53\x32\xa7\xdd\x73\xda\x4a\xa9\xea\x10\x3e\x61\xa3\xc7\xb7\x0e\x55\x0c\xf7\x64\xd4\x90\xb6\x92\x3c\x21\x0b\xb7\x98\x4f\x57\xc7\x41\x6a\xf1\x2f\x1e\xba\x60\x9d\xf1\xc9\x8b\x8f\x9a\x59\x5a\xab\xc5\xef\x89\x62\x73\xf8\xf4\xde\x95\x1e\xfc\x88\xf5\xcf\x4a\xa9\xfc\x97\x0b\x70\x27\x2f\x79\x81\xb6\x22\xcf\xa3\xfe\x31\xb5\x9f\xe2\x43\xda\x39\x98\x7a\xda\xb3\x25\x87\xfb\xb6\xf2\x00\xb8\xcb\xcf\xa5\x35\x1a\xbf\xac\xb9\x2f\x5f\x9c\x97\x19\x72\x00\x98\xfb\x26\xbf\x99\xcb\x0b\xf0\x30\xbd\x72\xc7\x60\xd8\xa6\x13\x6e\x20\xb2\x86\xfd\xf0\xe7\xd9\x3b\x2e\x24\x11\xed\x7a\x89\x9c\x40\xf9\xb9\x99\x28\x7f\x27\x7c\xa6\x8c\x46\xec\xb9\x66\x63\x28\x4b\x3b\xef\x1f\xe9\xed\xbe\xd5\x27\x1e\xe7\x48\xce\xce\x45\x4a\xe5\x50\x1e\x25\x31\x75\x9c\x3a\x65\x28\x38\xd2\xbc\xbd\xa6\x4d\x9b\x95\x23\x79\xbb\x92\xbd\xf3\x79\xd3\x86\x0a\x41\xe3\xc8\x3a\x6e\xb7\x65\xe9\x2a\xd2\xb6\x66\x8a\x2d\xeb\x5f\x42\x92\x36\x0a\xe4\xaf\x66\xfd\xdc\x11\x70\x6d\x72\x28\xd0\x87\x3a\xa3\xb4\xaa\xa0\xd4\x3b\x4d\x1a\x2b\x7a\xc0\xc7\x34\x32\xea\xeb\xe5\xf4\xfa\x70\x4e\xa1\x62\x20\x47\x9a\x99\x8f\x8c\xa4\x43\x96\x1d\x6c\x22\xfa\x9f\x05\x5d\x97\xf1\x72\x2a\x07\x69\xcb\x35\xf3\x00\x47\x81\xa2\xb3\xe6\x76\x96\xd7\x9b\x49\x2d\x73\xb6\xe3\xb6\x09\x04\x1c\x8a\xc3\x8c\x8c\x2b\xd2\x86\xe8\xcf\x2d\x63\x26\x24\xd6\x37\x68\xca\xf4\x57\x7b\x4f\x73\xf5\x8b\x6c\x33\x6d\xc0\x6c\xc4\xfe\x81\x01\x33\xab\x5f\xcd\x45\x42\x7d\x19\x0d\xfe\x5f\x33\xe0\x72\xca\xc2\x7b\x1f\xab\xd1\x6f\x8e\xe7\x55\x7b\xbc\x23\xa2\x82\xc4\xeb\xa9\x86\x88\xf3\x4c\x5d\x2c\x1e\x2d\x3b\xa5\xa4\x2c\x19\x3f\xe2\x87\x33\x2d\xb4\x1e\xe8\x09\x17\x3b\xab\x58\x3f\xa1\x66\x4b\x28\x3f\x8d\x87\x65\x56\x9a\x00\x21\xfa\x87\x14\x9e\x5d\x5e\x8b\xb4\xdd\x88\x45\x62\x65\x0a\xf3\xc1\xd0\x3b\x01\xe1\x32\x1e\xe0\xe8\xdc\xbc\x33\x35\x11\xad\xf9\x52\x2e\xfc\x48\x84\xbb\x25\x43\x31\xff\xb0\x2c\x56\x2e\xf6\x93\x34\x06\x6b\x2b\x19\x6c\xf2\x2f\x1c\xff\x3e\x38\xac\xc7\xa8\x21\xad\x17\xef\x90\xc9\xc7\xb0\xc7\x94\x72\x5d\xf2\xe8\x1d\x29\x27\x4e\x7d\x5f\xf0\xf3\x18\x5b\x0a\x9f\xe3\x55\xcb\x82\x2f\x8e\x33\x4b\x19\x41\x28\x8f\x50\x81\xac\xf3\xcb\x3b\xeb\x00\x28\x85\x5e\x5e\xf2\x1b\x14\x29\x27\x2b\x97\xe7\xec\x1f\x60\xe5\x2e\xf6\xae\x01\xfb\x3a\xb4\x56\xbd\xca\x6a\xba\xd2\x80\x5e\xac\xa4\x81\xbe\x7f\xd2\xd3\xfd\xdc\x91\xc5\x71\x34\x90\xa7\x5d\xe4\x68\x64\x54\xaf\x78\xb2\x8c\x5d\xbb\x9d\x9f\x6f\xf6\x1b\x8c\xd9\x4d\xb6\x71\xc8\x5f\x26\xc1\x69\x31\x42\xdc\x98\x7d\x3a\xb5\x13\x97\x8a\x14\xc5\x41\xb7\x59\x25\x4b\x74\x9a\x23\x8a\x11\x5c\x92\x86\x9f\xc2\x9e\x60\xe2\x9d\x4c\x17\x27\x86\x1c\x19\x4f\x16\x36\x18\xaf\xce\xd3\x0f\x03\x29\x44\x80\xba\xeb\xa2\x0c\x16\x60\x69\x2a\x65\x53\x11\x6d\xc8\x3d\x86\x6b\x6e\x44\x3c\x22\xac\x0a\x7b\xd4\xca\xad\x45\x5a\xe2\x23\x89\x25\xf0\x49\x28\x59\xbf\xbb\x48\x65\xa8\x7b\xc1\xbd\x65\xea\x4a\x33\xa8\x1f\x06\x47\x46\xe0\x2c\x7b\x88\x63\x9c\x79\x43\x81\xc7\x2e\x53\x4d\x3b\x45\xf7\x75\x9a\xd8\x70\x77\x94\x81\x01\x6e\xd3\x48\xed\xc6\x7e\x81\xa1\xe9\x11\xe6\xc8\x4a\x79\x58\x43\xd8\x82\xdc\xbc\x8b\xb0\x8e\x85\x90\x5a\xd2\x7f\x17\x29\x74\x25\x02\xa8\xad\x3c\x3d\xdc\xb9\xd1\xbd\xc5\x5b\x24\x1f\xf9\x73\xa2\x18\xd4\x59\xb8\xb7\x47\x14\xdd\xe4\x38\x7f\xf7\x2a\xf0\xe7\xd7\xd0\x10\x5b\xe2\x27\xb7\x72\x67\x17\x37\x44\x91\xd8\x32\xda\xec\x66\x7d\x29\x25\x3c\x71\x61\x71\x76\x0f\xe1\x11\xd5\x91\xac\xd9\x21\xe6\xdd\x5b\x89\x37\x2c\xdb\xed\xbb\x85\xef\xa6\x0d\x07\xa1\xab\xbc\x24\x09\xca\x12\x6e\xb1\x94\x42\x4d\x42\x62\x2d\x8a\xab\x9b\xd7\x3f\x29\xa1\x9e\x67\x5e\x4c\x74\x2c\x79\xef\xf9\x06\x3b\x79\xf8\xa2\xab\x2b\x47\x7c\x6b\xba\xde\x76\x7f\x50\x42\x60\x80\xca\xbf\x3d\xbb\x82\x22\xa3\x8f\x9c\x34\xfe\x2f\xce\x6e\xea\x09\x22\xef\xe8\x62\x23\x9b\x25\xc3\x78\x00\x65\x63\x3f\xca\xcd\xec\xb7\x63\xbe\xaf\x8b\x68\x60\x11\xd3\x66\x7d\x58\xf9\x21\x0f\xd8\x2b\x5a\x6c\x23\xce\x8c\xc2\x8a\x13\xb7\x81\x57\xa6\x1d\x37\xbe\xc1\x71\x29\xe3\x1b\xac\x57\xc2\xed\x35\x5e\xb9\x2e\xe2\xec\xdc\x8e\x73\x30\x1c\x35\x2c\x89\x8c\x46\xbf\x17\x73\xe0\xd7\x82\x1e\xbc\x2a\x9a\x98\xbf\x11\x09\xfe\xb9\x88\x04\x5d\xa5\x54\x09\xa0\xfc\x53\x81\x25\xea\x09\xf5\xe7\x54\x44\x3c\x80\x51\xd3\x82\x36\xe4\x68\xd0\x15\xaf\x1d\xc3\xa5\xff\x74\xbc\x83\x21\x34\x02\xd0\xb6\x46\xa1\x0f\xc2\xc9\x68\x07\xef\x58\x39\x66\xa8\xce\x49\x4d\x6d\x21\xc7\x11\xf2\xb2\x6c\xdd\x6d\x35\x11\xd1\x80\x9e\x75\xfb\xa0\x28\x1d\xcb\x5e\xff\x33\xb1\x0d\x6a\x88\xf2\x7a\x7a\x48\x03\x0d\x19\x74\xeb\x38\x6b\xa8\x35\x50\x79\x7b\xbb\xf6\xac\xb0\x0c\xd7\xff\x17\x47\x32\x30\x43\x32\x91\x0c\x56\x43\x22\xd1\xe9\x9b\x91\x0c\x34\xed\x0f\xa1\xa0\x57\x4f\x0b\x69\x91\x42\x14\x4d\xa5\x14\x46\xd0\x3d\x13\xf9\x41\xa8\xdd\xdd\x26\xcc\x4b\xe6\xed\xe6\xb5\x7e\xd8\xd3\x04\xf8\xd1\x16\x3a\x4e\xf4\xdb\x4b\x21\xf7\x01\x12\x85\xfc\xf1\xe3\xcc\x2e\x52\x27\x43\x41\x2b\x66\xc0\x01\x93\xcd\x74\x84\x1c\x04\xcf\x0f\x4a\x3d\xfc\x38\xc5\x05\x56\x2e\xa5\xf3\x22\x32\x93\xa1\xdb\x79\x57\xe1\x62\x28\x0d\xd9\x8d\x5a\xd0\x76\x0c\x62\x06\x9d\x11\x65\xac\x61\xda\x5d\x36\x04\x49\x82\x76\x6d\x7b\x66\xda\xe6\x70\x3f\xdf\x1a\x71\x4d\x37\x62\x05\xda\xfe\x04\x1f\x9a\xb4\xd4\x37\x60\xc1\xeb\x21\xdd\x67\x1d\x7f\xe3\x61\x38\xeb\x7e\x8a\x72\xf2\xe8\x7f\x28\x1a\xc6\x34\xb0\x3b\xd5\x22\xf8\x77\xc4\xc2\x30\x2b\x11\xd6\xec\x38\x35\x16\xc6\xaf\x6d\x95\x70\x39\x41\x4b\x90\x65\x67\x2b\xe3\xc6\x85\xdf\x09\x78\x91\x12\x49\x02\x12\xd9\x22\xa2\x99\x71\xff\xe7\x82\x50\x64\xc9\x8e\xfc\xec\xfe\x92\x1e\x84\x02\xf7\xc9\xda\xf4\x57\x63\x50\x68\xe0\xab\xd3\x06\xb3\x31\xb3\xb6\xfe\x89\x20\x14\x1a\xde\x6a\x3d\xfc\x50\xd0\x89\x5f\x8b\x2e\xf1\xdb\x61\x24\xda\x1f\x4e\xa0\xbd\x80\xf9\xed\xda\xe3\x9c\x09\x1e\x60\x28\x97\x58\x99\x9e\xa8\x6e\x0e\xfb\xbf\xdb\xaf\x45\x90\x6c\x11\x3e\xb0\x2f\xf6\x50\x0e\x6a\x48\x9a\x17\x30\xeb\x95\x5b\xac\xb8\xd5\xca\xcd\x70\xe0\x77\xc8\x39\x96\xb2\x9a\xd9\x14\xe9\x68\x62\xd3\xca\xea\x99\x90\x81\x1d\x2d\xb0\x75\xe7\x56\x0c\xfe\xb8\x5d\xcc\xe6\x7e\xa4\x86\xba\xb0\x63\x50\x72\x1b\x78\x96\xe9\x24\x70\xa8\xeb\x35\xae\x0a\xbe\x49\xae\x07\x22\xb0\x6b\x8d\x0e\xf8\x75\x27\xc2\x05\x44\x7b\x90\x66\xb8\x9a\x1d\xf4\x39\x58\x86\xd9\xcc\x2f\x3d\x11\x84\x6d\x0b\xe6\xe8\x73\x91\x5f\x38\x12\xb2\x3e\x44\xa3\xda\xa0\x48\x2c\x47\x86\xe9\x4c\x18\xd7\x4e\x1b\x4a\x4d\x1b\x14\xf8\x7b\xbe\x17\x79\x79\xd7\x4f\x68\x2b\xe2\x1a\x29\xb1\x15\x42\x64\xc3\xf2\x16\x56\x36\xe8\x6f\x8b\x54\x3b\xf4\x11\x81\x5a\x5a\xf1\x4d\x0d\x7e\xc7\xca\xee\x15\x5d\xab\xa0\xae\x1a\x78\x8a\xdb\x5b\x66\x25\xc2\x87\x67\xe9\xb3\xfe\x1a\xef\x77\xb0\xb5\xe6\x60\x4d\xfc\x7b\xdd\x40\x7e\xef\x72\xc2\xd1\x08\x45\x58\x3c\x74\x48\x2a\xaa\x39\x77\xfd\x8c\x4d\xca\xa1\xa7\xd1\x48\xd9\x12\x20\x88\x11\xe1\x92\x23\xff\x2c\x48\x13\x36\xe8\x19\xc4\x81\x64\x4c\xc6\xe3\x6e\x18\x71\xc2\x19\x91\x4b\x61\x4d\xe1\xf4\xab\x4e\x13\x05\x32\xd8\xe3\x59\x2b\xad\x19\x67\x8c\x2e\x8b\xc5\x32\xd5\xa9\xac\x11\x81\x55\xb7\xa9\x0a\x62\xed\xb5\xca\x12\x33\x55\x63\x04\x66\x08\xef\x59\x3e\xae\xc6\xdc\x30\xe3\xb2\x6f\x3a\x1f\xc4\x58\x67\x18\x23\x78\x23\x81\x6d\x78\x8e\xfd\xe3\xf8\x12\x6d\xd3\x50\x8b\xb3\x3a\x48\xd3\x6e\x5f\x4d\x68\xa9\x73\x6c\x30\xe5\x1b\xc7\x63\xad\x31\xf6\x4a\x39\x00\x98\x4e\xe3\x83\xb8\xe1\x70\x0c\x42\x2b\x62\x88\x86\x63\x48\x46\xf4\x92\xa8\xd6\xb4\xa1\xce\x85\x0a\x94\x38\x0b\xf5\xbf\x9c\x22\xc3\xc8\xdd\xa0\x89\xc3\x1e\x1f\xc7\x33\x84\x6b\x1f\x87\xce\x8a\xa8\x2f\x93\x02\x13\xb0\xbc\xc0\x53\x31\x50\x50\x45\x3a\x58\xa5\xac\xb1\x13\x2b\xe8\x37\xd7\x47\x4f\x29\x85\x76\x7f\xb7\x65\x56\x14\x49\x95\x0b\x7f\xa1\x9b\xe1\x89\x67\x2b\xd6\x20\x75\xd9\x18\x80\x3a\xce\x01\x81\xf1\x8b\x78\x35\x4c\xa8\x46\xfe\x28\x87\x50\xa9\x43\x48\x4c\x88\xe7\xa4\xba\x4a\xeb\x50\x23\x02\x2f\x77\x1d\x44\x88\xb5\x41\x25\x4c\x23\x7c\xb1\x5a\xc2\xa4\x22\xb4\x08\x2b\xf2\xd6\xb3\x2a\xa7\xc3\x30\xe2\x39\x9a\x69\x3e\x2c\xd6\xef\xc7\x8c\x0d\x14\xe6\xf0\xaf\xd7\xac\x00\x13\xa1\x67\x30\x2d\xbb\x3e\x26\xa7\xcf\x45\xa2\x5e\x8a\xef\x45\x22\x53\x60\x51\x74\x8c\xec\xcc\xf0\x0e\x0f\x03\x62\x0b\x49\x99\x01\x7b\xc2\xb5\x48\x02\xb5\x1f\x9e\xf6\x9f\x26\x1c\xcc\xdb\x54\xf4\xdb\x5a\x3b\x0a\x4e\x59\x6c\x36\x36\xaf\xed\x69\x0d\xdb\x9e\xd5\x12\xde\x1a\xe3\x13\xad\x88\x81\x89\x93\xb2\xac\xe6\xab\x49\xb3\x62\x8b\x1f\xbb\xfb\xd9\xf6\x2b\x30\xa3\x98\x48\xc6\x49\x57\x64\x7d\x39\xd0\xce\x78\x1c\x50\x28\x2a\xb9\xbf\xbb\x62\xcd\x07\x78\xde\x3f\xc4\xcf\x5a\xd6\x39\xd6\x71\x1b\xe0\x01\xaf\x26\xa8\xb0\x38\x5e\xbe\xcd\xb5\x34\xeb\x58\xe2\x0a\xb9\x5d\xad\x1d\x69\xdb\xd7\x42\x64\xcc\xda\x1c\xc5\x8e\xc9\xaa\xd9\x43\xd6\xa7\x16\x31\xe1\xa6\xec\xac\xba\xa7\x51\x62\x97\xb2\x2a\x5e\x36\x3b\x79\x49\xed\xc1\x5f\x16\xcc\x24\xf6\x3b\x79\x3b\x2c\xdd\x91\xfa\x4e\x3c\x2d\x29\x37\xf4\x9f\xe8\x10\x6f\xd5\x37\x4f\xcc\xb2\x85\xa0\xc9\xcc\xc5\x4a\x8a\x5a\xbe\x86\xf3\x83\xbc\x72\x84\x4a\xf5\xe0\x57\x65\xf6\x65\x8c\x4c\x03\x20\xe8\xae\x08\xcf\xba\x14\xbe\x31\x87\x4d\x9a\x2a\xba\x50\xd1\x2c\x0e\x0e\xdd\x8e\x4c\xaa\xf6\xa8\x2e\xbd\x13\x4a\xd8\x48\xf2\x07\xfe\x6c\xbf\x7c\x8f\x12\x96\x6b\x2f\x88\x7d\x69\xa0\xc0\xb6\x81\x2f\xa1\xa1\xdf\x5b\xa5\xd4\x01\x60\xb8\x5b\x7d\x12\x24\x2a\x97\x02\xd4\xdc\xad\xf0\xb3\x2d\x8d\x91\x2e\x35\xea\x91\x7c\x5a\x67\x81\x85\x80\x59\x6c\x6b\x42\x27\x73\x06\x84\x5d\xa6\xe8\x4e\x90\x15\x3c\x91\xf5\xef\xa5\xab\x04\x2d\xd2\xe3\x2d\xda\x91\xbc\x09\xa8\xee\x1a\x41\x70\x8c\xec\xe7\xe0\xd1\x83\xd2\xd0\x32\x88\x63\xb1\x69\xd0\x72\x1f\x8b\x5b\x07\x54\xef\x8d\x25\x43\xf7\xcf\x3f\x82\x53\xfc\x48\x45\xfb\x4f\x4b\x79\x6e\x85\x2d\x51\xb7\x4c\x08\xe6\xaa\xfe\x0c\xc5\x89\x2b\xff\xc0\xdb\x57\xf8\x84\xb0\x69\x28\xb5\x69\x90\xbf\xa4\x1e\xc4\x03\x99\x8d\x34\x27\xa4\xc2\x2f\x21\xea\x76\xc4\x3e\x16\x4b\x4b\x7d\x70\x13\xb3\x76\xf1\x9f\xcd\xe1\xa2\xdb\x3e\xd8\x71\x9e\x38\xbb\x46\xbf\x7a\x45\x79\x88\x65\x14\x78\xe4\x6a\xab\xb7\xef\x24\x09\x09\xfa\xeb\x67\x92\x62\xe8\x22\x92\x84\x81\x97\x24\xf7\xdc\xf1\xb4\xc4\xce\xe5\xcf\xf2\x27\xfc\xdb\xf6\x25\xd7\x6c\x81\xb3\x0c\x34\xd5\x3e\xc6\x62\x37\xea\x9f\x6c\xab\x25\xdd\x74\x5b\xb9\x35\x2d\x4d\xfd\x51\x9e\x10\xbb\x13\x84\xe1\xc8\x30\xad\xc2\x52\x54\x2f\x7a\xd5\x8f\x4b\xcf\x3f\xb2\x95\x41\x9e\x85\x16\x69\xf5\x9a\x0b\x53\x9e\x74\x0f\x66\xbd\xb6\x6a\xb8\x31\x53\x2e\x07\x1f\x98\x95\xac\x7e\xa7\xc9\xfd\x27\xde\x16\x89\x93\x11\x57\xae\xb2\x2a\xe8\xb3\xb0\xd7\xd7\xac\x08\xb2\x5d\xf5\xb6\x09\xc5\xc2\x38\xfd\x7b\xda\xe3\x7a\x76\xed\xd1\x76\x64\xc5\x12\xda\xcc\x8d\x20\x96\x75\xb6\x6c\x3d\xd7\x35\xca\x0f\x6a\xbe\x21\xe6\x7f\x78\xb0\x1c\xc2\x0e\x6d\xf5\xf4\xbb\xb4\x9a\x89\x31\xf6\x22\x8a\xb4\x94\x33\x60\x95\x30\xc0\xe1\x64\x0d\xb1\x11\x80\x0d\x75\x66\x0d\x75\xca\xab\xd7\x35\x2e\xc7\x7a\xec\x4f\xf3\xa1\x61\x67\xf9\x18\x3a\x95\x57\x4b\xc9\x94\xef\x40\x84\xf2\x27\x8d\xeb\x4e\x28\x72\x80\x9d\xad\x21\xd0\x7a\xaf\xda\x90\x0c\xbc\x0d\x3e\xb5\x91\x6b\x3c\xd4\x4f\x36\x65\xb4\xbf\xf5\xd0\x51\xd3\x51\x95\xf8\x88\xca\x9d\xfd\x93\x68\x5c\xbd\xa3\xa6\xdc\xb3\x37\x0f\x62\x74\xe0\xe4\x54\x05\x0a\x1b\x07\xfb\xb4\xdb\xaa\xae\x0d\xb4\xc0\x6d\x2f\x19\xfb\xfe\x07\x29\x5c\xcc\xcf\x76\xf9\x71\xd2\x18\x6e\x30\x54\xc6\x54\x90\xc6\x68\x7d\x9e\x8f\x75\x92\x11\x2b\xdb\x7c\xe1\xff\x02\x0c\x19\x99\xd8\xfa\xf3\xbb\xf2\x2a\xf6\x63\xba\xaf\xdd\x38\xec\x6d\x18\x9b\x78\x03\x71\x32\x68\xc1\x84\x82\x16\x38\x59\x0c\xc7\x31\x1e\x86\x26\xf4\x81\x6d\x62\x55\xa4\x54\x2d\x58\xb1\x30\x14\xb1\x36\xaa\x03\xec\xf7\x40\xa2\xed\x96\x85\x3f\x82\xab\xbc\x46\xd5\xcb\x94\xec\x09\xf5\x00\xb7\x07\x72\x4f\x8d\x85\x66\x6a\xb5\x7e\x5f\x43\x25\x12\xf1\xf5\xac\x0c\xc8\xce\xd1\xaf\xb3\xeb\xb0\xe0\xa9\xe7\xaa\xbc\xf6\x71\x52\xcc\xe1\xb2\x8a\x31\xc9\x10\x7e\x25\x16\x95\xba\x30\xf7\xe6\xa4\x32\xf0\x7b\xa8\xbf\xe0\xe1\x23\xfd\x2d\x0f\x16\xb6\x51\x1a\xec\xe6\x20\xce\x9f\x5c\xf8\xb1\x66\x4b\x36\x19\x6b\x97\x87\x3e\x8f\xa5\x51\x0e\x5c\xe7\x0d\x68\xdd\xf7\x1b\x4a\xf5\x1b\x76\x54\x07\xb4\x08\xbe\x75\xc0\xe2\xc9\xac\x7d\x82\xc7\xe3\x1b\xd3\x67\x98\x54\x45\xee\x45\x0b\x22\x19\x9e\xd0\x6f\x67\xdb\x2a\x89\xa8\x58\x13\x4a\x77\xaa\x57\x12\x9e\xb3\xcd\x31\xda\xac\xd3\x9f\xbf\x2a\x75\x6f\x36\xc2\xf0\x69\x4b\x0b\x44\x17\xba\x56\x4c\xdb\x38\x85\x3d\xcb\x75\x15\xbe\xcf\xed\x59\x38\x9b\xf2\xd7\x8b\x3e\xbb\x7c\x52\x5d\x62\x89\x32\x75\xd5\xf2\x00\xfb\xda\x83\xc1\xad\x1a\x82\x25\xfb\x73\xbc\x69\x9c\x68\xbe\x64\x62\x87\x58\x10\x22\x95\xee\x11\x7b\xda\xe7\x97\x81\x5c\x19\x20\xb9\x2e\xe8\xa0\x8c\xc9\xb9\x10\x3f\x1d\xad\xfe\x6e\xe7\x03\x3e\x46\xc0\xb7\x27\x01\x2f\x18\xc0\x8b\xa7\x00\x37\xd8\xcd\xbf\x09\x78\x6c\x00\xcf\xa7\xb4\xa6\x01\xca\xe1\xec\x3d\xef\x4f\x42\x64\xc3\xb0\xa4\xb5\x01\x10\x65\xde\x76\x2e\x66\x88\x66\x06\xa2\xea\x09\x88\x0a\x04\xd1\xf1\x24\x44\x15\x03\x91\xd7\xc6\x1f\xba\x3f\x2a\x6d\x1a\x22\xfb\x5d\x99\xe0\xd0\xa5\x5e\xa4\xff\xf7\x2f\x8b\x9e\x16\xcb\x80\x39\xdc\xd6\xbb\x69\xd5\xeb\x83\x00\x80\x5b\xd0\xb5\x4b\x5d\x66\x77\x7e\xd0\x92\xf0\x06\x56\x3d\x0e\xa4\x18\x37\x52\xbf\x3e\x0c\x03\x61\xfc\xa3\x39\x3c\x86\xd7\xee\x93\x02\xff\xc4\x67\xb9\x61\x60\xd1\x81\x9f\x29\x98\x83\xf2\xa6\x71\x0e\x58\xfd\xdd\x33\x55\x73\x0f\x63\x4e\x1e\xf0\x28\xd5\xdd\xf6\x85\x6c\x5f\xa0\xe1\x8e\xcd\xdf\x45\x0e\xa8\xa7\x22\x90\x63\x39\x39\xe8\xf6\x3f\xe3\x01\x0d\x2f\x1c\xab\x7c\x1f\x62\x4e\x65\x57\x56\x78\x26\xb9\x19\x61\x5a\x21\x3e\x0e\x1d\x88\xed\x70\x08\x28\x82\x72\xc6\x31\x91\x85\x2e\x71\x97\x5c\x5e\xa3\x68\x80\x54\xa7\x00\xc7\x28\xa3\xad\xf0\x58\x39\x17\xa9\x3a\x6f\x17\xa9\x23\xb0\xa2\xb7\xfe\x43\xcc\xdd\xb9\x6d\x81\xdf\xdf\xa4\x16\x42\xe3\x06\x1b\x23\x81\x68\x8c\x72\xc6\x0c\x01\x15\x23\x2d\xb0\xb2\x2d\xbd\x9c\x14\x33\x19\xc6\x90\xae\xf5\xe4\xbd\x69\x43\xb0\x6c\xb3\xd8\xc4\x05\x1e\xfa\xd5\x7d\x4e\xac\x21\xa7\x39\x65\xd5\x44\xd8\xf2\xa3\x98\xe0\x25\x5d\x31\x03\xca\x3e\xfb\xeb\x1a\x8a\x9d\xa9\x1e\x84\x2e\xf2\x04\xa4\xb6\x9b\xdb\x8f\x2c\xea\xda\x0a\x03\x12\xd5\x29\x89\xf7\x26\xc6\xcb\xef\x2d\xb1\x90\x75\x1c\x0a\x05\x14\x62\x39\x0e\x1d\x29\xb4\xe3\xe7\x0a\xd0\x23\x43\xe3\x89\x6b\x5b\x83\xd2\xcf\x0d\xc4\x47\xac\x75\x89\xa5\x79\x4e\xec\xc2\x61\x39\x18\xa7\x19\xa7\x7f\x0c\x38\x6a\x80\xe9\xfe\x6f\xd7\x41\x5e\xa4\xa5\x96\x49\xdb\x0a\x2d\x74\x66\x9d\xf7\x03\x96\x96\xec\x01\x47\xb3\xac\x7d\x78\x52\x4e\xae\xd0\x25\x1a\xc2\xdf\xac\x12\xaf\xd8\x2c\xf1\x82\x64\x9b\x92\xeb\x9b\xa2\x81\x1d\xee\xa5\x94\x9c\xb9\x44\x9b\xa8\x4b\xe7\xf3\x62\x2e\x90\x12\xf2\x7a\x82\xb7\x19\x31\xe7\x37\x79\xab\xd5\x0d\x12\xc9\xb6\xeb\x7c\x9e\xbf\x91\x8d\x66\x90\xf9\x57\xbe\xc0\x3f\x4a\x60\x8f\xb3\xdf\xbf\x43\x53\x99\xb6\xf5\x84\x1d\xb5\xcd\xa4\xe8\x7e\x16\x6b\x72\x71\xa1\x3c\x73\x77\x27\x1b\x99\x7d\xb6\x8d\x64\x9b\x66\x12\x75\x23\xab\xb5\x8b\xff\x45\x3f\x39\xbc\x32\x7e\xb9\x19\xa0\x94\x75\x1c\x99\x63\x89\x9d\xaa\x8e\x96\x4f\x46\x70\x18\xed\x56\xc7\x29\x1a\x6f\x1a\x6a\xf6\x93\x3c\xd2\x10\xe8\x04\x13\x67\xf1\x22\x50\x0e\xa4\xb3\x4d\x6b\x8d\x27\x69\x44\x22\x2f\x00\x41\x19\xc4\xa9\x8b\x4a\x93\xdb\x76\xed\x2b\xd7\xce\xc5\x1f\x77\x36\x78\x74\x1c\x07\x2c\x65\x85\xf2\x86\x40\x6d\x07\x38\xc4\x58\x8a\x0d\x64\xb4\x97\xb8\x41\x58\x8a\xab\xfd\xad\xbc\xfb\x41\x4d\x79\x2d\x96\x37\xbe\x56\x6b\xf9\x2c\x15\xf0\x19\x32\x8e\x42\xee\x9b\xa9\xcb\xbc\x0f\xb4\x48\x4b\x8f\x68\x39\x81\x7e\xd2\xfd\x8c\xa8\x52\xa7\x2a\x39\x6a\xad\x5c\x94\x0e\x27\x15\xb2\x03\xcb\xaf\x52\x30\x7c\x0a\xba\x02\xd2\x71\x51\x9c\x85\x6b\x92\xe7\x4d\x89\x2c\x66\xc4\x55\x0a\x6b\xfc\x60\xbb\x71\x0e\xc8\x7e\xb5\xf1\x4a\x3a\xe9\x49\xa6\xc2\x0d\xd8\x6b\x9a\xfd\x26\x90\x32\x6b\x0d\x79\xdf\xb8\x4c\x22\xc3\x02\x77\xf5\x92\xf3\x36\xfb\xd9\xd1\x9b\x27\x3f\x1f\x96\xb1\x9b\xc2\x23\xaa\xca\x07\x38\xe8\x86\xac\x73\xfc\xcc\x0a\x05\x00\x79\x8e\x9b\xe7\x6c\x1e\xca\x4a\xb9\x2b\x3c\x3f\x49\x55\xab\xe8\x8e\xbf\x62\xbb\x08\x5e\x09\x46\xc7\x64\xae\xff\x91\x53\xd4\xda\x62\x59\x4f\x9e\xe4\x2b\xcb\xd2\x47\x37\x06\xa9\x40\xcc\x83\xc0\x21\xe3\xa1\x6c\xd4\xfa\x23\x18\x84\xd6\x7b\x62\x02\x0b\x42\x17\xee\x0c\x6c\x5e\x46\xd9\x89\xc7\x2b\x77\x79\xab\xfd\x73\xb1\x8a\xd6\x58\xd9\x9e\x8f\x01\x23\xf2\x0d\x28\xcf\xfb\xc9\xf1\x8b\xa1\xc1\x19\x99\x86\xc6\xfc\x74\x80\x53\x72\xfc\xee\x20\xc6\xec\x1e\xa0\x00\x78\xd8\x7e\x71\xc5\x1b\xa3\xd9\x74\x82\xa5\x89\x04\x53\xab\x84\x11\xb0\x21\x4b\xbe\x8a\xa2\x9e\x40\x7b\x76\x93\xca\x34\xf4\xfb\x2a\x89\xe2\xf6\x2b\x18\x04\x8e\x69\x7c\x62\xba\xfa\x81\x65\x28\x7c\x7f\x17\xc9\x5e\xe9\xfb\x7e\x0a\x85\x20\xff\xc2\x15\x90\x7d\x94\xd5\x68\x92\x09\x92\x71\x5f\xa8\x2e\x16\xa4\xf4\x36\x9d\x00\x54\x5f\x24\x3b\xf0\xf0\xbd\xff\x2e\xc7\x83\x02\xd0\x17\x67\xf3\x3f\x92\x8d\xd4\xb5\x45\xa2\xb8\x8e\x25\xa3\x8a\xf9\x03\x47\x22\x93\xab\xa5\x9d\xf0\x9b\xfa\xf0\x81\x68\xb7\xc6\xeb\x21\x70\x2d\xeb\xee\xd7\xa1\x29\x05\x7f\x33\x73\x20\xda\xaf\x42\x71\x39\x97\x89\xc5\xed\x5a\x96\x8f\x1e\x1b\xe1\xd4\x69\xb7\x91\xf2\xd4\x89\xbb\xb4\x2c\x01\xff\x02\x1c\x77\x57\xe4\x38\x66\x3e\x05\xfc\x6c\x1a\x6e\x27\xf6\xac\x75\xab\x94\x2a\x82\x56\xf4\x6e\xe1\xc6\x8a\xe2\xca\x59\x57\x15\xa8\x7b\x83\x10\xca\x5e\x47\x83\xad\xaf\x59\x3f\x60\x00\xe1\x87\x63\x35\x25\x78\x9d\xfc\xcc\xaa\x30\xc6\xb6\x6b\x10\x8b\x36\x0d\x79\xb7\xc8\x5d\x6f\xcb\xf2\xb6\x1d\xa6\x4c\xd7\x8e\x52\x56\xda\xdf\x13\xd4\xdf\x13\xd4\x7f\xe5\x04\x35\x5e\x87\x17\x6b\x63\x96\xc5\xd7\x3c\x6f\x1c\x91\x3a\x26\x93\xda\xb5\x65\x47\x7d\x01\xc7\x9c\x74\xa0\xf0\x20\x66\xd1\xba\xb3\xa0\x95\xbd\xc8\xa1\x7e\xe9\xd7\x9a\x6d\x85\xfd\x06\x25\x63\x67\x4d\x88\x2e\xda\x13\x83\xac\xcc\x50\xb9\x52\x25\xbb\xf4\xda\x0c\xc4\x26\x80\xaf\x59\x67\x63\xf5\x39\xd9\xf6\x83\xed\x19\x69\x5f\x37\x3d\xc4\x06\xf7\xd2\xae\x65\x42\xbb\x39\x5e\x59\xbe\xed\x01\xd4\x36\x7e\xc4\xba\x6f\x90\xc3\x67\xe2\x5a\xf1\xd3\x07\x3e\xc4\xb3\x11\x01\xc9\xc3\xcb\xac\x05\x5e\xae\xd3\x5a\x33\x2e\x17\x50\x32\xc5\xe9\x9a\x39\x6a\x3a\xba\xb3\x17\xd6\x82\x35\xd2\x9d\xdb\xf7\x8c\x9d\x4d\x4f\x08\x4b\x20\x8a\xf7\x0c\xd6\x5a\x6e\xae\x0c\x7b\xfd\x38\x77\x81\x2e\xf6\x13\xa1\x8f\xab\xee\x04\x0d\xa6\x22\x7e\x56\xd5\x7e\x6d\xe6\x9d\x67\x54\x17\x42\xae\xff\xbe\x34\x6e\xf2\xbe\x72\x2a\xb4\xd9\xb1\x5f\x74\x09\x52\xc4\xd4\xf7\xf0\x12\x15\xd0\x1f\x30\x90\x98\x22\x5a\x0b\x9d\xc8\x2f\x88\x8b\x03\xd2\x03\x47\xdb\xad\xcf\x05\xb9\x0f\x63\xba\x5d\xde\x0a\x67\x0d\xa1\x02\x5d\x9a\x09\x72\xfd\x97\x90\x16\x4a\x33\x11\x1b\xac\x4c\x53\x52\xb9\x15\x7a\x37\xd8\xde\x6e\xc5\x2c\x58\x42\x4a\x7f\xb6\xc6\x6b\x1a\x92\x0d\x76\xbf\x15\x57\x71\x6f\x17\xe9\x3e\x0b\x34\x9e\x63\xca\xb8\xac\x30\x74\x92\x96\x5d\x07\x34\x24\x31\xd6\xbc\x4b\x7c\x74\x4c\x44\xad\x12\xcd\x9b\xc0\x02\x30\x24\xf4\x80\x2b\x6d\x51\x59\x9b\xff\x4f\x81\x93\xc1\x55\x4d\xd9\x08\xfb\xd8\xeb\x44\xa4\x88\x9c\x22\x43\x9c\x3d\x1b\x5e\x4a\x17\x70\xa0\x94\x22\xf1\x6e\x79\x3a\xf1\x80\x9e\xa2\x9c\xa3\xb0\x99\x7e\x03\xbe\x3d\xbb\x97\xb2\xcc\xfa\x88\x44\xb7\xcf\x05\x52\xfc\x28\xb0\xf2\xda\xb0\xfe\x22\x09\x50\xa5\xc4\x9b\x32\xbd\xa9\x6c\x4c\x14\x7f\x58\xa2\x54\x5c\x73\x8b\xeb\x2c\x88\x71\x3b\x80\x06\x2a\xec\x6f\xcd\x39\x64\x9b\xbc\x64\xa5\xc8\xf0\x85\x6f\x52\xd1\xb3\x9b\x05\x84\x99\x3d\xdf\x5d\x9a\x46\x16\xe5\xd0\x22\x14\x35\x3f\xd8\x1f\xee\x63\x15\x5c\xd8\xc7\x16\xb3\x14\xfd\x34\xdc\x92\x05\xdd\x8e\x8e\xe9\x38\xc8\x6a\xe8\xcd\xaf\x4a\x36\x94\xc5\x86\xb6\xe4\x0c\x4d\x0d\x4d\xa8\x21\xbb\x08\xa4\xad\xd8\x95\x90\x46\xf5\x2c\x56\xd0\x6f\xcb\x74\xef\xda\x2d\x12\xce\x8a\x46\x62\xf4\x2c\x78\x77\xf8\xf1\x24\xed\x63\x9e\xb8\x72\xca\xc7\x1a\x5d\xad\xda\x1c\x66\x68\x68\xd7\x09\xcf\xaa\x8d\x79\xba\xd3\x15\x67\x0b\x20\xe7\x8d\xa0\xfb\xfc\xc4\x83\x50\xd0\x04\xce\xce\x77\x71\x36\x84\xee\xe2\x29\x74\xfe\x5a\x9e\x0b\x06\xd9\x4f\x1f\xe8\x45\xc2\xf8\x17\xcd\xd4\xea\x1d\x56\xa1\xba\x04\x58\xdd\x3a\x02\xbb\xa5\x88\x7c\xc1\xb9\xa7\xf6\xfb\xd1\x73\x66\xe7\x03\xc1\xfc\x2a\x91\x52\x09\x0d\x4d\xbb\xc1\xc7\x5b\x93\x3b\x1c\x4d\x35\x4c\x8c\xc6\xc7\xfc\xfb\x46\x63\xd7\x4d\x7d\xeb\x7b\xe8\x7b\xe6\xf3\x33\xbc\x5e\x71\xe6\xad\x54\xa1\xd3\x16\x18\x81\x13\xdc\x66\xd1\x59\x23\x2b\x30\x0a\x59\xcc\x29\xca\x76\x71\xe6\x6c\xb5\x27\xf7\x90\x12\xf5\x52\x9e\x06\x92\xb7\x2c\x28\x0d\xea\x27\x67\xa3\x81\xd5\x75\xcb\x45\xb0\x97\x7e\x91\x5f\xc5\x78\x82\xbf\x30\x3e\xdb\x62\x4f\x6d\xba\xd2\x19\x9c\x7e\x87\xee\x4e\x9c\xfa\x9d\x27\xf7\xfc\xd2\x87\x86\xf1\xc8\x0f\x13\xfc\xdf\x14\xba\xad\x55\x05\xa6\x80\xf3\xb8\xfb\x0e\xa2\xe1\xd6\x69\xa1\x4a\xc8\xd4\xb3\x04\x81\x18\x69\x11\x4d\xb7\x68\xd5\x3a\xdb\xba\xac\x33\xcb\xe7\x4d\x11\x9c\xbd\xb6\x91\x26\xc2\x04\x0f\x08\x64\xd4\xd8\xe9\x15\xfa\xcd\x95\x28\xed\xe7\x09\x2b\x34\x43\xd0\x82\xc5\x63\x1b\x75\xf1\x75\x17\xe3\xc5\xc0\x50\xc6\x09\x9a\xa6\x4f\x79\xff\xa9\x55\xf9\x9e\x37\xde\x39\xae\x54\x5c\x61\xd1\x67\x3e\xbf\xb8\xc3\xcd\x54\x0b\xa9\xe3\x20\x81\x91\x26\x5f\xb7\x8b\x4b\x6b\xf4\xf5\x7e\xce\xcf\x85\xf6\x09\xc5\xa7\x9d\x30\x08\x5e\x51\xcf\xeb\x5d\xc3\x0a\xad\x0c\xce\x46\xd6\xdc\x52\xe1\x4e\x16\xee\xa9\x70\x3e\x0f\x6c\xc4\x9b\xc5\x5c\x7a\xef\x83\x95\x3f\x32\xe9\xa7\xd9\xee\x54\xbc\x00\x25\x4e\x5d\x42\xd8\xcd\xe0\xce\x41\xfa\x7f\xf6\x94\x77\xa9\x2e\x21\x4f\x44\xe8\xcb\x63\xab\x86\xae\x39\x2c\x1c\xfd\x1a\x0e\xa5\xd6\xc5\x69\xa7\xe5\xc4\x52\xf0\xc5\x48\x12\xa0\x00\xb8\x5b\x51\x37\x74\x3c\xfe\x88\xca\x79\x45\xe5\x69\x31\xe5\x68\x69\xfa\x87\xad\x2c\xb5\x9f\xe1\x55\x21\xc0\x01\xc1\x7b\x6e\xcf\x5d\x12\x5c\x7e\x66\x03\x98\x31\x05\xac\x17\x47\x32\x30\x02\x25\x99\xbb\x67\x0f\x2c\x54\x64\x65\xac\x2c\xdd\x17\xcc\x9e\xec\x4c\x24\xa3\x3d\x57\x1e\x89\x96\x27\x0f\xc9\x77\x39\x64\xc9\xd5\x84\x66\x4d\x0f\x71\xf4\x9c\x32\xf3\x7f\xf5\x34\x7f\xf5\x34\xff\x15\x3d\xcd\x90\xe8\x1e\x48\x95\xfc\x9f\x7f\x47\x4d\x23\x6f\xb2\x91\x06\xf2\x48\x54\xc3\xa9\xc8\x98\x54\xbb\x45\xbb\x7a\x0d\xc7\x8c\xe2\x6a\x95\x53\xea\x15\x5f\xc0\x56\x78\x8d\xb7\xcc\xa5\x03\x6e\x13\x78\x2b\xd9\x2c\xcf\x50\xd1\x8c\xe6\xa2\xcd\xdd\xa3\xf5\xcb\x1f\xc7\x4e\xcd\x41\x39\xb0\x0e\xe4\x95\x62\x60\x3b\xc7\xa3\x05\x45\x4b\xa4\x0c\x4e\x1a\x25\xb0\xec\xe0\x0e\xfd\xed\xc3\x96\x58\x22\x85\xeb\xb7\xcf\x5c\x43\xe8\xfe\x61\x3f\x72\xce\x5c\x63\xe6\x27\x14\x70\x8a\xa2\x9e\xcc\x03\x10\x0f\x91\x8b\x35\x63\xe2\x6a\xb5\x52\x00\xb5\x41\xc5\xde\xac\x97\x48\x3d\xbc\x24\xcd\x74\xca\xe5\x7b\xea\xe9\xa9\x80\xfc\xa1\xd8\x76\x3e\x3f\xba\x97\xef\x07\x92\x3f\x8e\xef\x3d\x93\xd5\x86\xe4\xdc\x3c\x0c\x9d\x06\xaa\x65\xc7\xec\x75\x4a\xd7\xc8\xb3\xf7\x42\x3b\x5f\x12\x1b\xa1\x0f\xb8\x81\xad\x0b\x6f\x6e\xdb\x20\xee\x95\x7f\x2f\xc4\xb9\x55\x48\x29\xfa\xf2\x64\x12\x61\x1b\xa9\xbb\x50\x6f\x4a\xa1\xdd\x11\x8d\xaf\xdc\x82\xf6\x3a\x3c\xe9\x37\x49\x3c\xae\xdd\x3a\x26\x12\x5f\x9d\xba\xc5\x99\x17\x1f\x45\x65\x2e\xa5\x58\xff\x0f\x75\xd4\x07\x63\x46\x48\xd3\x30\x0c\x26\x77\x96\xe3\x08\xed\x91\x4f\x91\x13\xc8\x8c\x74\x5f\xa0\x78\x52\x17\xc6\xfb\xac\xbe\x91\x51\x4f\x88\xda\xeb\x64\x10\xdb\x38\xd7\xd6\xe1\x9e\x0d\x2e\xe7\xf6\x4e\x1a\xa2\x12\x10\x1b\x19\xde\xc8\xeb\x3d\x3b\x1d\x8b\x22\xb9\xb0\x3d\xca\xe6\x99\xc4\x66\xf4\x96\x0d\x91\x69\xa9\x91\x1e\x80\xa2\x27\x8f\x48\x5b\xd9\x32\xba\xad\xb1\xd4\x14\xe4\x8b\x20\x69\xb5\xf7\x81\x10\xc7\x4c\x9e\x9f\xb6\xc6\xfe\xc2\x5d\x6f\xd9\x3d\x3e\xc7\x8f\x02\xd1\x60\xea\x48\x47\xf2\x69\xb0\xd8\x39\xa6\x71\x69\xa8\xd5\xb8\x2b\x12\xc5\x7a\x80\x53\x96\x93\x3f\x06\x38\xaf\x9c\xaa\x05\xbc\xe9\x7a\x90\x30\x0b\xdc\x13\xf7\xfb\x9a\x2a\x0a\x91\xec\x36\xfc\x9e\x22\x0a\xf1\xbb\x05\x12\xcd\x64\x19\x26\xde\x99\x1b\xc8\x7c\xea\x0d\xe4\xf6\xb7\x23\x37\x2e\x7f\x26\x3c\x4d\x56\xc8\xb4\x3f\xe8\x4d\x90\xd8\xfd\x00\xe1\x22\x79\xf6\xbd\x18\x80\x7e\xff\x0d\xf0\x4b\x62\x0c\xbb\x1e\xbc\x2a\xd5\x5a\x5e\x5f\x18\x6f\x9b\xf2\x77\xa3\x7d\x04\xe2\xbd\x15\xd6\x98\x7a\x9b\x29\xa2\x6b\xc8\x73\xae\x23\x37\x15\xae\x8e\xc7\x50\x3a\x04\xce\xeb\x68\x3b\x3c\xcb\xc8\xc8\xf3\xc3\x3d\xa3\xab\xa3\x54\x77\xb2\x23\x45\xc9\x96\x13\x92\x56\x53\x18\x64\xaa\x2f\xc3\x61\x1b\x00\x26\x37\xc1\x71\xeb\x37\x32\xaa\x38\x0c\xb2\xb6\x65\x2f\xc2\xfa\x7b\x5b\xcf\x6d\x03\xf2\xd6\xce\x53\xeb\xb6\x91\x89\xd7\xba\xc8\x81\x49\x96\x5f\xf3\x9e\x89\xaa\xd1\xe6\x1c\x98\x57\xba\xc7\x3b\xb1\x10\x0b\x68\x3b\x34\x0d\xb2\x8b\xc4\x51\x8b\xb1\x34\x3c\x06\xc2\x63\x11\xcc\xcd\xc7\xc2\x95\x78\x63\xec\xec\xbc\xb5\x62\x15\xfa\xf2\x02\x76\x4a\xad\xb6\xf0\x16\x5a\x43\xb7\xdd\xd3\x59\x06\x22\xcb\x3c\x90\x0f\xe7\x66\x4f\x36\x36\x6d\xa5\x3a\xba\x4a\xcb\xc6\x1e\xe3\xb9\x8e\xb3\xd8\xd8\xde\x7d\x6d\xd1\xb4\x2f\x52\x48\x06\x5c\xc9\xd8\x72\x29\xd2\x0d\x53\xb2\x94\x86\xd3\xe0\x96\x98\x74\xc6\x71\x3e\xb2\x93\xba\xb5\xed\x45\xce\x71\x4e\x79\xba\x28\xb2\xe8\xb2\x9a\xd1\x45\x8b\xa5\x41\x8f\xb6\xc1\xb2\x27\x13\x0a\xc8\xee\x3c\xa0\xb2\x63\xa9\x7f\xd3\x03\x0b\xc7\x13\xf2\x30\xcd\xa6\x9e\x97\xed\xa9\x49\xbc\xb4\x53\x06\x00\x15\x11\x92\x57\xa7\xab\xd5\x2d\x70\x90\x23\x8d\x9f\x0e\x41\x74\x50\x62\xbb\xe8\xe2\x4f\x7b\xe6\xa0\x63\xa6\x13\x25\x83\xeb\x4d\x84\x25\xc6\x1e\x14\x86\xcd\x1a\xa9\xbb\x0d\x2b\x69\x1b\xcb\x90\xb2\xfb\xf1\x1a\xdd\x5a\x80\xdb\xce\xb6\x01\x87\x0a\xb6\x58\xd7\xeb\x4e\x8d\xcb\x40\xbf\xbb\x60\x56\x0e\x5c\x3c\xd8\xb3\xc1\x8b\x33\xc2\xc5\x2d\xda\x97\x65\xd8\x4f\x42\xf7\x4d\xd6\x43\x1c\x0f\x3c\x65\x9c\xd8\xee\x77\xd4\x5e\xb8\xd5\x52\x86\x39\xa6\xb8\x81\x64\xd4\x85\x34\x33\x70\x5c\x1c\x4a\x27\xc6\x69\xa7\x0e\xcf\x34\x4d\x3b\x77\x8a\x99\x37\x5d\x06\xbc\x58\xbe\x8a\x74\xb3\x70\xf9\xea\xb3\x52\xad\x42\x01\x40\x41\xe1\x84\x5d\xa0\x0b\x71\x20\x6e\x2b\xd6\x81\x52\xad\x0a\xdc\xca\x2e\xad\x0a\xb0\xbb\xaf\x90\x9a\x78\x87\x7a\xb7\xc1\x8e\xd2\x94\x0c\x10\xf0\xcd\xb5\xf1\xfc\xb2\x15\x81\xbb\x13\xef\x5d\x7f\x41\x6d\x2e\x5e\xb7\x4c\x38\x3d\x8c\xfd\x9c\xa3\x01\xd8\xcf\x5f\xc9\x30\xa5\xc7\x9d\xe9\x42\xeb\xaa\x07\x90\xc6\xf9\xc0\x07\x35\x4f\xa0\x0e\x77\xf6\x96\x42\xf6\xb5\xdb\x70\x32\xb6\x09\xbd\x19\x12\xac\xb3\x77\xc1\xaa\xbf\x47\x60\xe5\xf7\x06\xd8\x91\x28\xb4\xc0\xea\x9d\x6a\xb6\x6b\x9c\xb4\x14\xe6\xc6\x59\xf3\xc3\x77\x1f\xbb\x80\x60\x5d\xec\x92\x66\xaf\xa9\xfb\xc4\x12\x0f\xc4\xab\xae\xd7\xc0\xfe\x49\x6e\x11\xf3\x91\x4d\xa7\xf6\xbe\x66\x77\xc8\x80\x57\x04\x07\x37\xb0\x8f\x9d\xad\x87\xa7\x1d\x69\xdc\xc3\x2f\x3c\x58\xfc\xe0\x9c\x8d\x88\xdf\xf3\x06\x33\xda\x79\xe8\xbe\xa1\x4d\x75\xb2\x4f\xbc\x40\xb6\x1e\xa3\x78\x58\x5e\x9e\x7e\x6f\x62\xb1\x19\x1e\xad\x06\xa8\x06\x61\xf6\xca\xe3\xa9\x93\x95\x5d\x1d\xd3\x78\x95\x5b\x16\x2f\x56\xe8\x2a\xff\xb6\x2f\x7a\x69\xc5\xc1\xb8\xcb\xa4\x47\x58\xee\x93\x1e\xbf\xab\xed\xdb\x6e\x9d\x52\x1a\x03\x32\x03\x99\xe7\xd5\x71\xa0\x99\x33\x2d\x82\x75\x41\xd9\xbf\xa7\xcb\x7e\x97\x03\x71\xe3\xbe\xf4\x71\xd7\x9a\x7c\x91\xac\xd4\xe8\x45\xd5\xf4\x46\xff\x6e\x0d\xbe\xd8\x33\x52\x4a\x2a\x4e\xee\x7f\x4b\x4a\x57\x76\xc6\xee\x5a\x2f\x77\xae\xb2\xa0\x2a\x4e\x8b\x19\xe9\x2f\xaf\x27\x2f\x07\x01\x09\x7b\xdb\x6b\x71\xe1\x6e\x55\xf0\x34\x10\xb7\xef\x55\x19\xc5\x79\x1a\x6c\x4a\xd8\x53\x3d\x9e\x0d\xb0\xc1\xd6\xe2\xe1\x24\x80\x03\x42\x1f\x9b\xcf\x9a\x4f\x2b\x20\x94\x9e\x1b\x9b\x18\xbe\xb7\x1b\xeb\xc9\xa7\xf4\x34\xe4\x43\x7c\xe5\x91\x89\xb5\x08\x2c\x2f\xa5\x45\xe0\x92\xd7\x16\xc0\xb4\x97\xa1\x28\xf9\xd5\x8a\x55\xdd\x68\x94\x59\xfa\x02\xac\x73\x1d\xe4\x65\x64\xdb\x3b\x7d\x10\x83\xcb\xba\xfb\xc5\x4f\x81\x7a\x12\x7a\xfc\xb6\x06\xd2\x60\xd5\xb6\xb0\xdb\x03\x8b\xbb\x8f\xf7\xc9\x38\x06\xdc\xc4\xde\xc3\x02\x7c\xfc\xac\xb7\xef\x9f\x70\x3d\x38\xc1\x20\x09\x2e\x2d\x99\x68\x8d\x38\xc0\x82\x95\xc1\xa8\x27\xdd\x33\x8f\x26\xda\x1b\x47\x6c\x6b\x98\x50\x40\x3e\x55\x35\xbb\x70\x17\x22\x24\x47\xae\xd5\x06\x18\xaf\xd2\x45\x60\xe0\x09\xae\x32\xee\x86\x3f\x18\x36\x20\xce\x8a\xbc\x07\xf5\x7a\xe0\x9d\x85\x38\xf1\x38\xca\xf1\x14\x3e\xe3\xb0\x6f\x5c\x4c\xb5\xd8\x1d\x16\x09\xec\x0a\x09\xb2\x55\x6a\x80\xf4\x59\x2b\x1f\x20\xf7\x0c\xf6\x6a\xd5\xc0\x3f\xed\xb0\x9e\xe5\xa8\x6b\xc2\x82\xb8\x6e\x8a\xc0\x96\x27\xf4\x40\xad\xd0\xb5\x2b\xfa\xf3\x0a\x50\x11\x76\xc6\x30\x3d\x5e\x71\x5b\x85\x40\xa9\x82\xb8\xf4\x2e\x87\xe6\x34\xde\x42\x2b\xd9\xbe\x0c\xa8\x68\xd4\xfd\xf5\xe0\xac\xe0\xfa\x57\xdd\xff\x57\xdd\xff\x1f\x54\xf7\x97\xf6\xb8\xba\xcb\xbc\x20\xf7\x14\x3c\x91\x9e\x33\xab\x50\x78\xb3\xe2\x5a\xf4\xae\x03\x52\x15\x22\x6d\x0b\x54\x6e\x8b\x17\xa8\x55\x3a\xb2\x4d\xd7\xa8\x02\x2a\x50\x0c\x8f\x98\x52\xe6\xf3\xd5\x1f\xbf\xaf\x21\x0b\x29\x1e\xc8\x48\xe3\xd2\x79\x5b\x22\x76\x1d\x93\x69\xf8\xd1\x6d\x9c\x92\x92\x0d\xa9\xe9\x4f\xce\xcb\x0a\xf5\x4c\x57\xa8\x7b\xf7\xd3\xcc\xd8\xea\xd5\x5a\x0b\x92\x4b\xbe\xe1\x02\x09\x0d\x52\xf8\xa4\xf1\xcc\xe8\xe0\xd3\xc7\x83\x3e\x8f\x03\xc1\xa1\xe6\xe0\x48\x4a\xd9\xf1\xde\x97\x92\x17\xfb\xd3\x52\xb2\xd5\x08\x3e\x49\x19\x65\x4c\xd3\x35\x4b\x81\x99\xc7\x02\x1a\x3d\xb3\xcb\xce\xf6\x8e\xd8\x5b\xff\xec\x36\x5f\xea\x90\xcc\x69\x2c\x41\xda\x75\xb2\xde\x99\x12\x0b\x5c\x06\x31\x21\xa1\x2a\xe3\xf1\xbc\x6a\x99\x68\x4f\xe1\xdf\xb8\x17\x86\x6f\x40\x73\x3d\x39\xa1\xee\xbd\x13\xa8\x80\x03\x6d\x61\x11\xe2\x81\x76\x71\x90\x39\x3f\x5a\x69\x91\xe3\x22\xc9\x1d\xea\x24\xe2\x21\x0f\x92\x5e\xdb\x91\x58\x4f\xb2\xfc\x82\x9d\x8d\xd5\xe6\x80\xb1\x88\x56\x87\x93\x51\x9a\xe7\x7b\xb3\xfd\xee\x1a\xf2\xb0\xaf\xcf\x46\x20\xe4\xd3\x2d\x04\x29\xb7\xcc\x48\x77\x98\x48\xa1\xb4\x15\x1b\x11\xd0\xcb\xfe\xd0\x48\x6e\xba\xa0\xef\x47\xc3\x9e\x4e\x99\x70\xe9\x48\x25\x1a\xb1\xe0\x3e\xb8\x4f\x2e\x22\x60\xf2\x74\xd6\x58\xd2\xc7\xab\xfd\x69\x78\xf4\xff\x6f\xb8\xb6\x30\x67\x46\x7b\xd4\x3d\x59\x19\x2e\xe1\xc9\xec\x94\xbc\x0f\xea\x57\x09\x89\x48\xc3\x7f\x40\x97\xc3\x0e\xeb\xa5\xdf\x05\x7f\x0d\xcd\x8e\x07\xe4\x3c\xf1\x5e\xf0\xb3\xc4\x33\xe2\xbb\x3f\x03\x3f\x50\x43\x13\x89\xa1\xf9\x7e\xe8\x4b\xc4\x48\xea\x1f\xc4\xbe\x09\xf9\xd7\xfa\x08\xf8\x14\x91\x6a\xd5\x4c\x05\x3f\x07\xbf\xdb\xfb\xe8\xfd\xe0\xd3\xae\xb9\xfe\x18\xee\xeb\xc4\x71\x0f\xed\x8f\x00\x4f\xfa\xc3\x28\x9d\x74\xda\x48\x39\xed\xf7\xc3\x5e\x21\xc2\xcf\x7e\x10\xf5\xd9\x19\xee\x46\xb9\xe8\x23\xd0\xf7\x51\x3c\xdf\xb6\x25\xf8\x56\x65\xcc\x1b\x42\xfe\xac\xa3\x15\x39\x42\x3c\x59\x3f\x2b\xdd\x02\x6d\x1f\xbc\xf1\xa2\x8c\x4a\xa2\xbe\x35\x37\x0d\xdd\x20\x8a\xbc\x6d\xa3\x0d\x4d\x6a\xf4\x26\xf8\xc3\x92\x19\xf1\x62\x73\x8a\x46\xa3\xe2\x8e\xbc\x07\xc3\x03\x01\x42\xde\x90\x1f\x90\xcf\x2f\x7f\xae\x25\xd2\xef\xb6\x0b\x02\xb1\x34\xc1\x1d\x24\x3f\x0b\x52\x37\x79\x9c\x2b\xd6\x3a\xcd\x29\x7c\x0b\xe5\xfa\xc2\x9c\x15\xdc\x54\x66\xd3\x90\x70\xd5\xb7\xf6\x20\x04\xd7\xd1\x34\xda\x5d\x20\x6f\xb7\x36\x4d\x52\xa9\xc2\x51\x05\x7d\x16\x88\xae\x6d\x38\x9a\x3d\xd9\x43\x85\xe7\xa0\x40\x1b\xde\x37\x41\xd1\xac\x9c\xa7\x49\x2a\xc1\xcd\x44\xd9\xbd\xe6\xb7\x55\x28\x95\x15\x56\xac\x12\xad\x1c\x0e\xa8\xe7\xef\x0b\x05\xca\x71\xf7\x76\x7c\x3f\xef\x26\xab\x63\x83\x0b\xe8\x16\xfb\xc6\x5f\x32\xdc\x53\x6e\x03\xd4\xe6\x8a\xdf\x63\x91\xe7\x0b\x75\x8e\x30\x27\xcb\x0d\xde\x4f\xb2\xa8\x42\xa1\xc3\x35\xe2\x97\x15\x30\x52\x07\x29\xa6\x39\x2a\x05\x17\x25\x3c\x37\xc1\x8d\xcd\x3d\xd3\x1e\xc8\x1b\x7c\xb1\x49\xb2\xd9\xda\x18\x7a\x44\xd5\x29\xc9\x27\xe3\x50\xa9\x71\x18\x5a\x8b\xba\x35\xab\x74\x75\x49\x68\x0d\x5f\xb5\x30\x99\x83\x43\x0c\xf4\xd4\xef\xda\x74\x9f\x05\xd4\xf6\xc1\xef\xfd\x33\xc2\x2d\xd4\x89\x38\xff\x0b\x91\x1c\x31\xdf\xb3\x66\xb2\xb3\xa2\x63\x48\xb2\xbe\x94\xe1\x98\x27\x9f\x64\xe4\xe9\x61\x8b\x15\x1a\xfa\xdd\x36\x92\x77\xf2\x9b\xa7\x8b\x4c\xa0\x14\x3a\x80\x36\x47\x9f\x64\xcd\x5a\x4e\x60\xac\x16\xc8\x26\x43\xc7\xdc\xe5\xc6\x86\x7e\xd8\xff\x10\x06\xd5\xba\x60\xb9\x72\xc6\x3f\xd8\x31\x3e\x59\xed\xba\x24\x45\xcb\x78\x15\xd8\xe4\xbe\xd8\xd6\x5a\x4c\x72\x6d\x1c\x7a\x06\xfe\xf9\x2b\xac\xaf\x51\xfd\x55\x1a\xa3\x54\xee\x6c\x6c\xcc\x3e\x19\x3d\x6a\xe2\x88\xb7\x62\x3c\xb3\x4b\x9e\x64\xa3\xf3\x18\x4c\xa5\x24\x64\xf5\x97\x96\x59\x9d\xff\x63\x2a\x4f\x91\xe2\xc8\xa2\x23\xcd\x3e\x27\x29\x67\x6b\x46\x4a\xf9\x36\xf6\x49\xfd\x30\x1d\xba\x4b\x8e\x7e\xb8\x44\xd6\x7c\xe5\x5c\xe0\x35\x31\xe0\x64\x15\xb0\xb2\xc8\x4b\x55\xdc\x7d\xe8\x55\x66\x03\xa7\xa1\x0a\xe6\x48\xe2\xa0\x88\x11\x78\xe9\xc8\x87\xa6\xa6\x73\xdc\x33\xda\xc2\x08\xa3\x38\xcb\x5b\xbb\x7d\x83\x94\x13\x59\x92\x6b\xfb\xd2\xe2\x03\xe4\x15\x62\x9a\x51\xca\xe6\x06\xb5\x58\x25\xfa\x15\xf7\xde\x5b\xda\xbf\xa4\xd2\x19\x35\x5b\x7d\x27\x35\x8a\xc1\x44\xdd\x22\xd3\xdc\xcf\x92\xb2\xfd\xd0\x45\xfa\x69\x2b\xd5\xa1\xfb\x59\xea\x66\xde\xb4\x8b\x71\xf1\x28\xdf\xe4\x6e\x64\xc0\xb9\x0b\x6b\x42\xbb\x06\xab\x0a\x90\x9b\x37\x41\x7d\x2a\x71\x03\x74\xc1\xf7\xa6\x38\x65\xfd\x20\x7b\x44\xd4\xe3\xf5\x57\x35\x10\xd7\xb6\x63\x67\xc8\x03\x4a\xad\x62\xf1\x06\x5d\x1d\x50\x3f\xbb\x09\x8e\x99\x77\xf5\x65\xce\x91\x74\x6a\xc8\x51\xc0\x4e\x73\x25\xe6\x75\xf2\xa4\x94\xea\x1f\x61\x57\xa1\xa0\x0c\xf5\x03\xa7\xb1\x30\x6a\x24\x45\x52\x92\x47\x52\x66\x5f\x3f\xb2\xe7\x10\x9e\xec\xea\x62\x9d\xf4\xfd\x41\xb6\x6c\xe2\x7a\x80\x80\xdd\xd6\x08\x74\xd2\x92\xff\x4a\x7f\x4e\xaa\x46\x4b\x93\xd5\x83\x09\xc0\x6e\x09\xc7\xc2\xd3\xc6\xf4\x4e\x2d\x13\xbd\xdc\x99\x8f\xa6\xd3\xa8\x5d\x78\x31\x29\xdf\xe2\x47\x8b\x71\xd2\x92\xb7\xad\x5d\x38\x35\x65\x97\xc1\xe4\xd6\x0e\x3c\xd3\x95\xaa\xda\xe1\x8d\x94\x0e\x27\xb4\xbe\xf0\xb2\x6c\x86\xca\xe5\xf9\x67\xaf\x8a\x7e\x27\x1d\xe3\xdd\xeb\xae\x32\x5f\x77\xc9\xb5\x08\x7f\x72\x10\x04\x0d\x6f\xcc\x12\xf8\x61\x0d\x9e\x3d\x12\xc3\xe2\x21\x5c\xb4\x8c\xc7\x6a\x62\x1f\xdf\x12\x5f\xa1\x58\x5a\x86\xdb\x02\x8b\x54\xf6\x38\x4a\x3f\x35\x88\x56\x8c\x39\x22\x30\x8d\x8a\xb4\x90\x97\x6a\x5d\xd0\x35\x5c\xc3\x1e\x96\x09\x88\x40\xec\x1b\x02\xe1\x6d\x00\x5b\x4e\x52\x16\x6b\xc6\xc2\x24\x26\x74\x8d\x95\x84\xd7\xa7\xf2\x94\xd9\x1c\xcf\x25\xc2\xe8\xe4\x7a\xdc\x93\x47\x21\xa4\xa7\x42\xe0\x0e\x0f\x30\x42\x34\x96\x21\x0e\x84\xa2\x63\x36\x96\x73\x60\x01\x05\x81\xc3\xf6\x61\x05\x2b\x07\x5d\xa0\x85\xee\x90\xee\xbb\x92\x40\x17\xae\x1b\x25\xbb\x15\xbe\xa8\x32\x8c\x04\xb4\x44\x97\xd9\xb7\xb6\xed\xfc\x5a\xfa\xa7\xa6\x20\xd4\x69\x9b\xb2\xa5\x3c\x09\xb1\xf3\x97\xc0\x46\xbd\x08\xfe\x26\x89\x4f\xcc\xcb\xd9\x26\x33\xa1\x52\x99\x94\x26\xad\xeb\xa4\xf9\x25\xa6\x59\x9d\x6f\xb4\x12\x28\x55\x09\x92\x8d\xea\x11\x2a\x62\xa2\x76\xeb\x88\x58\x05\x2e\x34\xb4\x44\x22\x2c\x6f\x1f\x17\x32\x7b\x30\x10\x54\x98\x72\xd2\xfa\xab\xbc\xff\xab\xbc\xff\xaf\x28\xef\x73\x4e\x64\x15\x14\xe2\xd6\x49\x5b\x7d\x98\x1c\x1c\x3a\xd9\x98\xe7\x12\xc1\x57\xf2\xab\x94\x34\x7c\xa9\xf6\xea\xd3\x91\xf0\x72\x9a\x91\x51\x45\x86\xb5\x17\x70\xfb\x4a\xee\xb1\x55\x74\xaf\xed\x1f\x44\x9e\xab\x59\x55\xe6\xd5\x78\xd0\xd2\xdb\x04\xf3\x9c\x8c\xea\xa7\xf2\x9c\xb8\x86\xc4\x17\x26\x89\x34\x45\x06\x2a\x64\xfd\x94\xa8\x7c\x1d\x49\xcb\xb9\xbf\xa4\x78\x39\x74\xc0\x1a\x93\xf0\x32\xa1\x2d\x99\xf2\x10\x4c\xc4\x5c\xac\x51\x70\x58\x5c\x39\x3d\x14\x33\x16\x05\xa0\x67\x38\x8a\x30\x0e\x75\xc1\xb8\x28\x8a\xc4\x36\xb0\xc6\x7e\x6c\x4d\x32\x3c\x34\xe8\x24\xc6\x1a\xad\x06\xcd\xa8\xc4\xd5\x60\xe8\x5c\x64\x57\x48\x60\xaf\xd6\x1d\x5b\xde\xba\x7f\x4d\xca\x03\xe7\x40\x0c\x4c\xcb\x20\x04\x1d\x70\x8a\x56\x7b\x19\x4d\xeb\xd1\x99\xbe\x09\x75\x9b\xed\xda\xcd\x56\x84\x90\xa7\x1d\xb1\x4c\x31\xef\x28\x35\x7c\x86\x81\xcb\x9e\x45\x2f\x45\xea\xe2\xda\x50\x25\x4f\x9f\x5c\x7d\x64\x9e\x46\x42\x82\x2a\x65\xd2\x67\xa6\x58\x42\x12\xdc\xb7\x53\xc7\xbe\xc1\xe9\xdd\x52\x7a\xba\xae\x9d\xc5\x7c\xcf\x9f\xc5\xf9\xfe\xec\x2c\x4e\x0e\x9c\x71\xa5\x65\xac\x0a\x19\x9d\xd9\x01\xa2\x73\x44\x5e\x66\x28\x98\x1e\xdb\xc4\x91\xd3\x26\x9c\xaa\xf2\xb8\xca\x19\x39\xe1\x25\xe7\xce\x40\x9f\x15\x96\xc0\x19\x9e\x07\x15\x27\x24\x47\xc2\x2a\x85\x7b\x99\x0d\x5d\xab\x14\x12\x23\x6d\x0f\x84\x8a\xdd\x10\x24\xfa\xee\xec\x28\xc3\xcd\x8d\xc9\x6e\x69\xb1\xa7\x73\x8b\x67\xe8\xda\x4f\x5b\xae\x87\xa9\x9d\x54\x71\x64\x75\xa3\xb8\x4d\x64\x37\xcb\xf3\x08\x67\xcb\x8f\xaa\x04\xc2\xdc\xa9\x95\x00\x21\x0f\xe5\x27\xcb\x89\xf9\xcc\x93\xc4\x01\x98\x40\x5e\x89\x3b\xad\x67\xa5\x54\x0d\x53\x82\xbd\x4e\x8e\x52\x3a\xb4\xe0\x15\xc8\x64\xa1\xc8\xc2\xc2\x93\xd5\xf4\x81\x3a\x44\xcd\x4b\x00\xd0\x3a\x18\x1d\x1b\x27\xa6\x85\x16\x68\x01\xe3\xa1\x8c\x50\x25\x21\x53\xcf\x67\x02\x79\x6c\xa4\x7a\x14\xce\x6e\x7f\x2f\x36\xf3\x64\xad\xec\x67\x3d\x0e\x50\x60\x70\x8e\xc6\x39\xfb\x90\x60\xab\xbc\x5a\x98\x4e\x8f\x03\x72\x93\x20\x03\xb5\x1d\x66\xd1\xa2\xc5\xc3\x88\xcb\x7b\xb5\x34\x22\x8c\x62\x90\x17\x3f\xef\x2c\x47\x52\x55\xbe\x5a\x82\x4d\xf5\x99\x24\x17\xcb\x54\x83\xff\x5f\x0e\x4c\x9e\x9b\xb2\xdd\x63\x9e\x42\xd6\x1c\xc8\xe4\x6c\x13\xb0\xfa\x78\x7d\x4c\xea\x50\xb7\x6c\xea\x81\xbe\x16\xf0\x93\x6c\x4e\x43\xf3\x11\xa9\x49\xc1\xbe\x8c\x36\x3a\x32\xb4\xb2\x9d\xe0\x8d\xa0\xb4\x0c\x32\xf9\x33\x5b\x4e\x02\x4f\x6a\xd7\x02\x8c\xa9\x1b\xa6\x09\xa3\x72\xdb\xf3\xa0\x6a\xac\xb2\x9a\xd6\xb7\xda\xad\xb3\xf5\xd6\xb9\x1e\x1c\x4b\x04\x14\xd0\xd2\x4a\x73\x4d\x71\x5f\xd0\xc2\xcc\x37\x42\x00\xb5\x12\xc4\x98\x64\xea\x65\xa4\xd4\x12\xdb\x21\x63\x99\x4b\x1e\x5c\xd3\xda\x38\x13\x89\x11\x59\x50\xe2\x7e\x1c\x16\x19\xf9\xc0\xdc\x1d\xe8\x2b\x5e\x4d\x64\xbb\x84\x86\x51\xf5\x40\x7e\x66\x57\x3a\x6f\x87\x89\x8f\x5a\x36\x6b\x69\xc6\x49\x6f\xa4\x3f\x1b\x41\x8c\x8b\xe9\x25\xed\x8a\x65\x29\x87\xd9\x3d\x8e\x84\xcb\xfe\x8d\x88\xb9\xda\x13\xa3\xb4\x48\x5e\x0c\x1d\x03\xb1\x52\x20\x45\x46\x7b\x6c\x00\x2b\x4a\xcf\xe6\xe7\xe3\x57\x00\x9b\x9f\xec\xf5\x83\xab\x62\xbd\x66\x8a\x89\x49\xe2\x9b\xff\x60\xb8\xf0\x8b\x29\x3f\xcf\x28\xfe\x2c\xb9\xf0\x0c\xb8\x3e\x85\x0e\x5e\x70\x9c\xe2\xaf\xc4\x60\xcb\xe8\xdc\x73\x30\x3d\x1c\xe9\x8b\x7e\x1e\x9d\xef\x07\x79\x7b\xc7\x43\x46\x06\x5c\xe3\xc9\x97\x47\x07\x0f\x24\xe3\xb8\xd2\x68\x43\x4a\xbf\xfd\x27\xe1\xbc\x48\x1f\xe4\xc6\x26\xc4\x0d\xfe\xe3\x95\x3c\x5d\x3b\x4a\xf0\x19\xf9\x11\x89\xfa\xe4\x3a\x32\xb5\x40\x1b\xed\xf3\xe0\x18\xf8\xb5\x35\xf6\x0d\x97\x20\xdf\x57\x52\xd2\x1f\x93\x6d\x93\x7f\xd2\xd4\xa0\x4c\x78\xa3\x96\xbf\xf8\xb5\xe9\x80\x2c\x97\xb4\x12\xcb\xa1\xb2\x6f\xd8\xcd\x05\xf5\x82\x7b\x99\xb3\xb6\x5f\x0e\xbd\xf7\x83\xb2\x3c\xf1\xd5\xf6\xe2\x66\x06\x8d\x21\x9c\xef\xa7\x94\xe7\xc2\xbe\xe7\x98\xd4\xa4\x0e\x48\xf4\x9f\x75\xbe\x1f\x1e\x64\x76\x42\x26\xe6\x11\xec\x95\xd3\xd6\x6a\xd7\x90\xeb\x8d\xc9\x29\x5e\x49\x05\x97\xa8\xd0\x97\xd7\x0a\x83\x24\x6a\x61\x8b\xe1\x49\xfe\x21\xe7\x61\xf6\x78\x7e\x1a\xe6\x4e\xed\xc5\x1b\xb5\xd7\xee\x24\xc7\x6f\x4d\xf2\xe6\xa7\x74\x2a\xde\xbe\xf8\xb5\xe9\x9a\xca\xac\xf5\xfd\xf4\xf7\xfd\xd4\x92\xe7\xba\x15\x81\x79\xee\x7a\x4f\x5a\x4a\x02\xed\x75\x2b\x65\x8a\xe4\x52\xe7\xfc\x74\xb7\x7c\x0b\x26\xc3\x4a\x4c\x45\x5d\x70\xcb\x15\xdb\x96\xd5\xe5\x58\x41\x4b\x0f\xb9\xbb\x44\x25\x61\x3f\x58\x1d\x1b\x89\x0f\x5c\xed\x66\x77\x8a\x2a\xfa\x79\x30\x9b\x27\xaf\xaa\xc9\xd3\xd4\x1c\x9a\xab\x22\xc2\x0c\x55\x36\xcf\x32\x39\x9c\x80\x4a\x4b\x7e\xe0\xb4\x42\xa6\xc2\xeb\x03\x1a\x0d\x54\x29\x6e\xf5\xee\xd2\xee\x65\x23\xba\x5e\xa1\x9c\xf6\xb8\x4b\x50\xae\xf5\xcd\x41\x98\x18\xb3\xa4\x50\xba\x43\xcf\x19\x8a\x30\x75\x40\x33\x2e\x36\xe3\xe1\x4f\x8a\xf2\xee\xa7\x4c\x12\x5a\xcb\xc6\x3e\x9e\x4f\xc9\x32\x6a\xe6\xda\x63\x39\xf9\x1c\x18\xa8\x2c\xa1\x69\x38\xc7\xe7\x11\x7d\x64\x75\x97\xc7\xa3\x9f\x78\xb8\x04\x78\x64\x23\x7f\x03\xd6\x46\x5a\x9d\x3d\x68\xc9\x72\x21\x52\x41\x4c\x36\x88\x20\x8a\x59\x15\xb7\x1d\xf4\x5d\x98\x98\x40\xad\x7c\x74\x91\xcc\x04\xa1\xc1\xb5\xae\x06\x50\xaf\x02\x9b\xac\x49\xfd\x80\x02\x45\xe0\xb4\x1a\x1f\x4f\x05\x3e\x2a\x05\x4a\x95\xbc\xc0\x47\x3e\x4a\x38\xcf\xb7\xc5\x04\x4d\x84\xdf\x3c\x55\x64\x44\x8c\x2a\xe6\x8a\xc0\xd2\xcd\xc9\xc4\x1a\xb2\x31\x9e\x08\x88\xd5\x31\xf7\xd1\x3e\xc6\x92\xde\x64\x9e\xb4\x03\x17\xaa\x66\x8c\x03\x30\x99\xcb\x98\xb0\xe0\x89\x98\x3b\x92\x4b\x70\xfe\x98\x4c\x23\x1a\x09\xc3\x7d\xb3\xee\x1d\xcd\x51\x49\xc4\x35\x47\x69\x44\x54\x67\x73\x39\xd1\xa2\xe1\xca\xc8\x69\x50\x98\x60\xa7\xe0\x91\x74\x86\x84\x76\x7f\x48\x8d\xae\xbd\x61\xd6\x83\xc3\x13\x96\x90\x9c\x48\x96\x65\xbb\x1d\x9a\xb7\xd9\x4c\xcc\x36\x5e\xba\xf3\x1d\x93\xdf\x2b\x72\x48\xaf\x43\xe1\xec\xa5\x6c\x5f\xd2\xf5\x96\xcc\x18\x9a\xc2\x66\x88\xfa\x5e\x4d\x25\xba\x3b\xc6\x2c\x95\xac\x12\x4b\x25\x32\xab\x20\x45\xc6\xb3\x43\xb2\x91\x8d\x4e\x5e\x2a\xe3\xde\x56\x2c\x86\x52\x03\xa1\x39\x26\xa5\x33\x26\xf7\x48\xf2\xad\x74\xbf\x1a\x90\x2e\x82\x60\x24\x97\x47\x9a\xa7\xb6\x4b\x4e\xdd\x85\x34\x23\x81\xe3\x68\x99\x02\xa3\x95\x9d\x23\xbe\xb8\x70\xb4\x54\x56\x7d\xc4\x8b\x69\x27\x33\xbf\xa0\x84\x25\x1d\xce\x26\x14\xf7\xf3\x4a\x60\x27\xe2\xb3\xc1\x29\xf5\xb4\x27\x8c\x1b\x2d\x9c\xd0\x0f\x91\xc2\x44\xe8\x85\xb3\xd2\xc5\x43\xca\xf1\x63\x11\x77\xdc\x8e\x68\x40\x69\x4c\x11\x53\x39\x32\xe0\xd9\x92\xab\x6d\x86\x38\x81\x94\x51\xa8\x8c\xe2\x1f\xd0\xe6\x97\x91\x6c\x09\xd4\x68\xa1\x3f\x52\xd7\x12\xaa\xee\xe8\xcb\x56\x72\xb3\xfe\xe6\x6d\xd6\xf7\x76\xb3\xc6\x53\x5f\xa5\x85\xc7\x6d\x1b\xd5\xb6\xe5\xac\xdb\xc4\x56\xdd\x79\xa7\x4f\xf9\x7b\x72\x83\xe0\xf9\xeb\xb3\x2d\xf0\x92\xd9\x76\x11\xcb\x1d\xe3\x2a\x19\xbb\xc6\xca\xef\xcd\x7e\x77\x3a\xc9\xdd\xf0\x0a\x37\xed\x96\x64\xf5\x05\x52\x19\x14\x0f\x27\x23\x6e\xcc\x29\x2b\xff\x8c\x4d\x21\x0f\x42\x83\x5c\x3e\xb8\xa9\x86\xb4\x50\x09\x0d\x00\xee\x48\x1d\x18\x49\x86\x2d\x6b\xb2\x77\x61\xd3\x5e\x18\xcb\xbb\x6d\xe7\x4e\xb8\x62\xf4\x4a\xd5\x63\x6a\xb6\x22\xbf\x41\x11\xf5\x96\xd0\xda\xb6\xee\xcd\xfe\x47\x96\xf1\x94\x65\xd4\x62\xba\x6b\x26\x4f\x9a\xa9\x73\xd7\x4c\x56\x68\xfd\x33\x77\xcd\xe4\x50\x7b\x9b\xb8\x6b\x66\x1c\x96\x8f\x4e\xa4\x7b\xc1\x51\x40\x3f\x95\x41\xbb\x73\x3b\x64\xf8\xc3\x72\x30\xde\x58\x65\x9f\x4e\xec\xd1\xe0\x39\xd8\xb9\xd8\x85\x4a\xed\x42\xbb\xf1\xab\x1a\xb6\x45\x81\x7c\xeb\xde\x04\xe6\xe9\x46\x2d\x46\x3b\xac\x43\x26\x4c\x58\x11\x14\x8d\x15\x41\xa4\xd4\xc6\x7a\x5a\xb5\xfa\x60\xe9\x85\xa3\xad\xbf\x38\xcd\x4e\xb6\x42\x01\x0f\xd2\xcd\x1a\x6f\x42\x51\xba\xe1\xc8\x30\x26\x43\x9e\x93\xe0\x4a\xf3\xcc\x56\x1d\xeb\xa3\xd1\x58\xec\xb6\x9e\xdf\x52\xdc\x1f\x03\x4a\x51\x80\x42\x51\x72\x4c\x96\xb7\xa1\x4c\x07\x7a\xab\x54\x6b\x0c\x04\x8a\x49\x3d\xab\x5d\xa7\xf2\x2c\x23\xb3\xc3\x3e\x03\x2b\x36\xde\xca\x79\xb7\x6e\x9c\x09\x45\xce\x0d\x3d\xc6\x6b\x3b\xc2\x95\x5b\xb7\x98\x91\x74\xa7\xeb\xc6\x2d\x5b\x99\x92\xea\x70\xe5\x11\x4b\xc0\xa6\xf2\x4e\x54\xde\xba\x2d\x1f\x9d\x96\x35\x19\xb5\xa6\x37\x34\xe1\x00\xb4\x8b\xba\x78\x6b\x26\xd8\xca\x86\x8e\x08\xe9\xd6\x5f\x6c\x43\x3f\x87\x58\x05\x67\x86\xea\x1f\xbd\xa9\xdc\x3a\x49\xc7\xee\x95\x6a\x6d\x71\xd7\xc0\x64\xbf\x13\x17\xfa\x7a\x46\xc4\x90\x82\x99\xac\xe0\x65\x02\x4e\x65\x96\xa8\x75\xb9\x45\x54\xaf\xb6\xa1\x79\xb6\x61\xc0\x89\x75\xee\x56\xe4\x1f\x28\xd2\xa1\xc1\xd9\x3c\xb6\x8d\x74\x65\x14\xd7\x56\x61\x24\x20\x1b\x1c\x89\x25\x1e\xd8\xc1\x0c\xa9\x9f\x0e\x1b\x9b\x35\x85\x1e\xf6\x92\xad\xd9\x49\x2a\xae\x43\x31\xff\x1e\xe3\x29\xae\xe5\x34\xf5\x34\xd8\xb0\x90\xd1\x5f\xbc\xea\x12\x80\x16\xcd\xac\xee\x5b\x57\x46\xa4\x60\xe5\x6c\xcb\xa5\x96\xb1\xac\xac\x51\x98\x6f\x5e\xf8\x99\xa3\x76\x6b\xba\x18\xf3\xb3\x21\xaf\x93\xfb\x00\x65\x32\xaa\xac\x38\x33\x65\x56\xe4\xb3\x84\x4b\xf3\xd8\x36\xe2\x22\xb4\x3c\x0a\x2d\x42\xcb\x1c\x03\xcb\x20\xd4\x67\x3e\x8b\xb1\x9c\x11\xbd\x34\x0b\xdb\x00\xd7\x26\x90\x12\x89\x4b\x3e\x0f\x8f\x71\xf5\x97\x3b\x52\xe5\x3b\xb8\xb3\xe2\x8e\x14\xc2\x0c\x5d\xce\x98\xf0\xad\x4a\xd7\xec\x15\x26\x96\xb7\x2b\x7d\x90\xf1\x0d\xbc\x31\xdb\xb5\x7f\x0d\xe5\x29\x63\xa5\x40\x6c\x5b\xd3\x03\x9c\xe6\x1a\x70\xe8\xce\x05\xa3\x1c\xf9\x70\xcd\x59\x4b\x31\x5d\xb1\x19\xe8\x84\xde\x15\xaa\x46\x86\x9d\x71\x5e\xc4\x2c\x05\x8c\xfa\x4a\xcf\x87\x09\xda\x80\xee\x4b\x61\x2a\x86\x2a\x25\x36\xd9\x85\xd8\x45\x6c\xdf\xbe\xa2\x2e\xd6\x39\x72\xc0\xa7\xe7\x4d\x8c\x4b\xba\x36\x65\x60\xb8\xe6\xa1\xc2\xc0\x54\x1e\x41\x38\x88\xf9\xc5\x00\xaf\x84\x6a\x07\xdc\x46\xb6\xdc\x74\x59\x5a\xa7\x02\x69\x14\xc4\x5a\xcb\x53\x32\x97\x12\xdf\x40\x9b\x6a\x13\x4c\x65\x66\x76\x75\xdf\x62\xcc\xb9\xd0\xe2\x6d\xb5\x4e\xdb\x65\xd2\x87\xa1\xa5\x37\x40\x60\xcb\xdd\xb2\xbb\x2d\x2c\x9c\x6d\x01\x92\x95\x20\xe9\x0d\x3e\xb9\x12\x96\x13\xeb\x44\xd7\xcb\x02\x84\x9d\xd1\x95\x15\xfb\x51\x53\xe2\x51\x5c\x76\x4a\x0b\x34\xe9\xd5\xd2\xd1\x9b\xfd\xf8\x4c\x22\xb0\x9d\x51\x66\xef\x73\x29\x41\xa2\x0d\xa3\xe0\x30\x63\xe3\x20\x75\xe8\x4b\x74\x3d\x99\xa5\x4a\x64\x55\x32\xaf\x9f\x49\x85\x4d\x41\x8b\x0c\x9b\x05\x80\x56\x0a\xb6\x74\x02\xf4\xbe\x3c\x8e\x43\x52\x09\x6c\x17\x52\x92\xa9\xe8\x8f\x77\xf8\x71\x2d\xd8\xa7\x7f\xbc\x1f\x87\x17\xb5\x80\x2b\xd8\x8f\xe7\xe0\x6d\x06\x0f\xcb\xa0\x18\x25\xaf\x09\x79\x3f\x5f\x70\x2c\x9d\xa2\x04\x1c\x9c\xd5\x0e\x0b\x8a\xbe\x72\x94\x47\xd7\xfe\x5b\x7c\x68\x3b\xe6\xb0\x72\x47\x07\xa4\x03\xe8\x01\xb0\xcd\x5c\x90\x77\xc7\x73\xba\xb9\x78\x1c\xd2\x42\xcf\x3b\xcd\xe9\x53\x63\x05\x5b\x7b\xad\xf2\x1b\x1f\x4a\x77\xe6\x53\xf0\x37\x1b\xd3\xe1\xd8\x69\x1b\x13\xb6\x2e\xfc\xe0\x49\x67\x87\x7f\x38\xb2\x0b\xdd\x91\x19\x52\x68\x95\x7b\x14\xa3\x76\xf7\xd5\x9a\x0b\xed\x91\xff\xac\xbf\x5a\x05\x5d\x7c\xeb\x6d\x46\x86\x57\x39\xe0\x81\x3d\xc9\x50\x48\x74\x8b\x81\x3b\xaa\x32\xa7\x43\x34\xeb\x63\x05\x61\x1d\x38\xeb\x41\x8a\x07\x60\xda\x1a\x49\x54\x32\x80\x55\x71\xa5\xf8\xcd\xb9\x20\x56\x6e\x2c\x84\xf9\x9e\x3b\xa9\x35\x09\x20\x10\xeb\x06\x2e\xfa\x28\xbe\xfa\x68\xe1\xad\xfe\x91\x71\x94\x30\x93\x3f\x83\x0f\x86\x41\xdd\x6d\x7a\x52\x0b\xa5\x8f\x07\x64\x3a\x5a\x43\xd5\x87\x85\xd7\xaa\xde\x60\x1d\xbe\x8a\xe7\x87\x87\xd5\xf2\xd7\x99\x48\x71\x84\xbb\x85\x6d\xc3\x39\xa9\xaa\x1a\xea\x2f\x4b\x14\x9a\xbf\xe5\x39\xcb\x16\xf0\x94\xba\xfd\x22\x89\xf5\x4d\x2a\x3e\xd6\xb0\x53\xca\x3a\x66\x9b\xdb\x60\xd2\xe1\x87\x6d\x1c\x7e\xac\xc1\x3e\x7a\xba\x6c\xe3\xd0\x6b\x71\x87\x2d\x3d\xef\xd7\xee\x2e\xb9\xef\x4b\x49\x55\xcf\x4f\x11\xc5\x97\x61\x50\x6d\x79\x4b\xce\x71\xc2\x01\x52\x29\x8d\x50\x2b\x7f\xfc\x20\x9c\x5b\xea\xf5\x18\xfb\x61\x25\x2b\xb0\x4f\xf5\xaa\xee\x3e\x35\x1b\xfa\xfb\xcf\x04\xbd\x39\x8b\xed\xd3\x53\xba\x1a\xd1\xd4\xb6\x53\x67\xb4\x94\x43\xd5\x68\xfe\x1c\x59\x88\x36\x52\x86\xc1\x6f\x71\xfb\x69\xfb\x43\xb9\x43\x10\xef\x52\x3f\xa5\xdb\xb3\xe2\x9d\x07\x56\xae\x87\x50\xf5\x7e\x99\x94\xe3\x3a\xe9\x04\x7a\x89\x71\x27\xb3\x5a\x9a\x35\x35\xf1\x95\xe5\xe0\x31\x0b\x47\xa8\xea\xd2\x63\xbe\x43\xe6\x6f\x76\xa9\xee\xf1\x2c\x75\xb7\xfa\x24\x47\xcb\x9a\x96\x78\x49\xa7\x92\x16\xab\x08\x5c\xa6\x7d\x5f\x40\x3a\x41\xc1\xa8\x9a\x93\x6a\xec\x57\x8d\x94\x1c\x88\xf7\x53\x43\x4f\xe9\x12\x11\xa9\x40\x8c\x2b\x42\x0d\x55\x32\xf5\x5b\x69\x9f\xdb\x4c\x9a\xff\xf6\x29\xeb\xe9\x30\x54\x6a\x18\x8a\xad\xb4\x80\x67\x90\x02\xec\x0d\xef\xea\x57\xbd\xa7\x77\x7b\xd5\xea\xa9\x31\x18\x90\x9c\xde\x6b\x49\x93\xde\x61\x3d\x9e\xe6\x38\x31\xe8\x27\xa1\xd7\xed\x04\x50\x5d\x98\x7c\xfa\x6a\xca\x06\x71\x0e\x38\x50\xb1\x8d\x7a\xdc\xee\x0f\x54\xec\x47\x17\xcd\x8b\x4d\x10\x2e\x1b\xb3\x4b\x5d\x80\xee\xf8\x37\x05\x4d\xb1\xe1\x57\xdb\xfd\x92\xf4\x15\x9b\x10\xb4\xd0\xba\x08\xef\x4b\x35\x77\xeb\x7d\x53\x20\x72\x14\x02\x56\x54\xde\x96\x03\xa5\xa7\x07\x6c\xa7\xd6\xc1\x2a\x50\xfa\x73\xd4\xd0\x4c\x97\x1a\x61\x21\x85\x65\x2f\x83\x19\x5a\xf4\xe9\xa2\xa5\x42\x81\x77\xc8\x47\x18\x3e\x5e\x70\x12\xc4\x6e\x06\xd4\xf1\xe1\x8d\x35\x5a\x7e\x02\x42\x6f\x52\x8e\xc4\x1f\x7c\x9a\x68\xd5\x83\x09\x84\x4a\x69\x44\x35\x34\x71\xbb\x9f\x1c\xe0\x34\xa7\xd7\x53\xf8\x32\xa6\x42\x54\x88\x0f\x48\x95\xf0\x80\x06\xe7\xd1\x2c\x1c\x0e\xd2\xde\x4f\xd9\x4c\x3c\x02\x67\x77\xf4\x6a\x41\xb3\xb8\x01\x6c\x99\x98\x38\x0b\xa6\xae\x35\xbf\x16\x86\x28\xbd\x9f\x58\x35\x54\xe1\x11\x95\xba\x53\xd4\x72\x75\xb3\x33\x24\xfd\x85\x66\x6c\xe1\x0a\xcd\xc2\xf4\xcb\x27\xb8\x1e\x5a\xe9\xc3\x49\x38\x09\xea\xb8\x0d\xb7\x76\x4b\x92\x4b\xf1\xbe\xb4\x88\x02\x48\x7b\xb3\xd4\xcb\x33\x84\xb8\x90\xe1\x35\x74\x00\x13\xde\xd1\x27\x25\x4d\x6c\xfa\x5c\x85\x02\xe1\x95\xee\x27\x1b\x44\x1a\xd7\x57\xea\x4c\x25\xd0\x1c\x84\x79\x74\x00\x6d\x0d\x48\x1e\x02\x3b\xd3\xf0\xbb\xee\xe7\x12\xff\x44\xaa\xa7\x0e\x2d\x10\x8a\x87\x7a\x33\x09\x29\xb6\x4e\x61\x49\x4a\x8a\x48\x45\x3f\x2c\xa6\xe0\xe4\xd0\xdb\x2e\x61\xf8\xad\xdc\x12\xba\xec\x02\x21\x7c\x56\x16\xf2\xa7\xb2\x5b\x83\x21\x8f\x43\x20\xf8\x1e\xe8\x61\xdb\x75\x9a\xf1\xb6\x6a\xcd\x82\x25\xa8\x9f\xbb\xab\x3d\x4e\xf4\x2c\x02\xea\x41\x35\xa2\x9c\x99\x03\xa2\xbe\x93\xc7\xfb\x55\x31\x37\xa8\x08\xe8\x70\x85\x23\x6a\x3b\x3a\x39\x3c\x3a\x69\x2a\x0f\xe3\x60\xb0\x97\x3e\xe1\x9a\x68\x9e\x77\xe8\xbe\xda\x05\xc6\x38\x0e\xf4\x66\x10\x2e\x1a\x66\xf8\xe1\x57\x0d\xc9\x25\x90\x0c\xf0\x16\x3c\xfb\xb6\x6c\x2f\x4d\x3d\xc7\x17\x21\x71\x89\xf6\x06\x00\x08\xaf\xec\x52\x88\xc9\xdd\xf7\x62\x1c\xaa\x10\xa4\xc6\x67\x85\x89\x6e\xa7\x68\xa2\xd1\x9f\x61\x6b\x59\xb0\x46\x8c\xc0\xda\xad\xa1\xd0\x62\xba\x95\x59\xe2\x19\x30\x3e\x88\x84\x73\x9b\x8d\xfd\xa2\xa5\xc2\x7d\xa0\xf4\xf8\xb4\xf4\xda\x0f\x14\x46\x41\x40\xc7\xd4\x3e\x9a\x2a\xf7\xf4\x1e\x1e\xe6\x71\x72\xbf\x20\xe8\x34\x47\xd8\x7e\xf4\xad\x89\x8b\xe6\x5e\x85\x70\xf5\xd6\x02\x51\xb8\x15\x13\x9e\x75\xf3\x2f\xc8\xc7\x08\xc1\x70\x3d\xd1\x2a\x8e\x35\x42\xc3\x6f\x53\x00\x3d\xbc\x04\xe4\xa0\x31\xd9\x3d\x12\x9f\x86\x6f\x14\x22\xd2\x60\x49\xce\x56\x44\x1c\x64\xb5\x42\xbb\xe5\x25\xad\xa1\x8e\x0a\x61\xef\x8b\x3e\x69\xe2\x83\xfb\xb8\x25\x7a\xbe\x7e\x53\x1e\x4f\x2b\x32\x62\x91\xa9\x21\x3f\x6b\x2d\x57\x0d\x7d\x50\x8b\x3e\x15\x63\x3c\xfe\xef\x30\x7b\x2a\x70\x0f\x50\xbf\x3c\xb5\xab\x2b\xdc\x12\xa7\xa4\x77\xab\x3d\xeb\x81\x2f\x82\xd1\x3a\x51\x7e\x6b\x7d\x7c\x23\xa5\x9e\x35\x22\x9b\xa3\x06\xcc\x10\x79\xcb\x0d\xf2\x74\x91\xa0\x87\x1d\xc2\xec\x7f\x1f\xa3\xc1\x64\xbd\x75\xf1\xa0\xa2\x68\x9c\x87\xbd\xe6\x05\x26\x0b\x71\xf4\x70\xd1\x56\xcd\x6f\x00\xd8\x2b\xb4\x7c\xb7\x3a\x36\xf4\xf7\xc5\x60\x89\x18\x7e\x80\x7a\x77\x03\x8c\x46\xdf\xcb\xe0\x95\x8d\xa8\xdc\x45\x7b\x81\xa8\xdc\xa0\x2f\xe0\xce\xbd\xc3\xa1\xba\x73\x1b\x82\x6f\x42\x83\xaa\xeb\xdd\x2d\x04\x36\xdc\x6a\xd6\x5a\xce\x40\xc7\x2f\xba\xef\x45\xb0\xf2\x10\x30\x7e\xd1\x8f\xe8\x6a\x70\x65\x11\x90\x0d\xff\x5d\x08\xb0\xbd\x75\x94\xea\x0d\xf3\x27\xd1\x11\xc2\x45\xea\xc3\xe5\x96\x88\x30\xf3\x0d\xc7\x47\xdb\xde\x2e\x78\xc9\x7e\x13\x2f\xba\xa5\x3c\xb0\x7c\xcd\x3e\xa2\x9f\x18\xbd\xf8\x62\x1a\xaa\xe6\x0d\xfd\x2e\xe9\xdf\x93\x75\x60\x79\xe4\x6a\xae\x71\x13\x5e\x5f\xcc\x23\x15\x35\x6b\x5f\x8c\x62\xad\x8b\x7f\xda\xaa\x59\x0d\x28\x6f\x11\x85\xcb\x86\x01\x86\x9f\x2f\x32\x97\xaa\x79\xea\x8b\x1c\x06\x4c\xc1\x2f\xb4\xa8\x04\x5f\x0c\x9b\xa7\xbf\x28\x0c\x69\xe9\x0e\x23\xd5\xfc\x92\x8d\xf0\xf3\x79\xa0\x9e\xbf\x0c\x66\x72\xf4\xdd\x61\x21\xb4\x64\x5e\xcf\x03\x9e\xaa\xc8\x9a\x32\x88\xca\x4e\x5c\xd1\x78\x8b\x7e\xc0\xb4\xc3\xa2\x44\xff\xab\x59\x80\x29\x94\x70\x63\xc4\x94\x07\x20\x29\xec\xaf\x59\xe1\x1a\x66\x83\x59\x53\xae\xf8\x1d\x19\x44\x6c\x2b\x26\xde\xaa\x5e\x97\xbc\x29\xb7\x6a\x78\x2b\xde\x21\x5d\x5b\xa7\xb6\x40\x0e\x31\x40\xaf\x23\x6f\x6a\x5a\xba\x3f\xcd\xfd\xbb\x1c\xbe\xad\x09\x2a\xcb\xdb\x1d\x90\x4b\x67\x1f\x30\x1b\x42\xe4\x75\xde\x5d\x7e\x59\xd5\xe4\xda\xfc\x0e\x0c\xdb\xb0\x4b\xec\x7c\x5e\x80\x53\x12\x66\x69\xdf\x03\x72\xc2\x01\x46\x3d\x47\xe9\xaf\xfc\x83\xa3\x9d\xeb\x9d\x9d\x3c\xfa\xdb\x5f\x2f\x9a\xea\x4a\x95\xc0\x04\x82\xc4\xc6\x43\xc5\x18\x52\x34\x51\x85\xb8\xb0\xb1\x1c\x9a\xe2\x0f\xdc\xca\x1d\x71\xff\xca\xa1\xad\xe2\xfe\x51\x33\xdf\xbc\x69\xbf\x09\xc1\x70\x5b\x3b\xb4\x34\x59\x6e\xe8\x92\xeb\x59\x85\xdf\x44\x15\xa0\x20\x74\xcf\xef\x4e\x23\x6e\xa8\x4b\xfb\xdd\x24\x18\x90\xb8\xf2\xe4\xc2\x07\x96\x86\x19\x1c\x69\x30\x8f\xec\x2e\x68\xaa\x94\x51\x32\xed\x28\x14\x0f\x77\x58\xe7\x3a\xad\x0e\xea\x96\xa1\xe6\x6d\x9d\x42\x4a\x7f\x96\x08\x5e\x17\xc4\x15\xd8\x04\xa9\xb0\x79\x40\x63\x4a\xdc\x47\x46\x5a\x30\xf9\xbc\x07\xd2\xed\x07\xa5\x27\x4d\x9f\x2f\x44\x9f\xba\xa1\xe3\x27\x98\x9c\xc3\x27\x46\x5f\x08\xec\xea\x0b\xaa\x03\x1f\x60\xe4\xe1\x27\xaf\xa8\x89\x69\x55\xc3\x51\xa0\x50\x6c\x68\x1a\x05\xa2\xc6\x40\x58\x04\x11\x52\x0b\x4e\x4f\xca\x05\x78\x23\x17\x51\x11\x28\xa2\x1f\x92\x45\x19\x53\x74\x9d\xec\x3d\x78\x66\x4e\x50\x74\x4b\xcf\xea\x08\x29\x1a\xbc\x3f\x7b\xd7\x38\xa4\x6a\x4d\xcc\x05\x48\xd3\xe5\x54\xa4\xe1\x25\x7f\x2b\x7f\xd4\x04\x7c\x0c\x27\x00\xd9\x2b\xa0\xa8\xa3\x97\x30\x25\x41\x7c\x54\x76\xf2\xdb\xcd\xcc\x8d\xc0\x17\x12\xa7\xc6\x1a\xd2\x94\xac\xda\x72\xab\x36\x35\x55\x5d\xbb\x95\x6e\x55\xf3\xd3\x0e\x5c\x60\x7b\x09\x2a\x6f\x3d\x8e\xaa\xc8\x00\xc8\x91\xb4\xfc\xc3\x9b\x28\x10\x0a\x43\xb0\x21\x6d\x77\x12\xcb\xe9\xcb\xb0\x9d\xb2\x12\x1f\x70\x11\x46\xdb\xa0\xf8\x45\xbe\xde\x15\x42\x93\x7a\x2e\x52\x6d\xb0\xc7\x78\x52\x6e\x9d\x83\x9c\xba\x90\xb8\x9f\x31\x55\xea\x95\x9d\xbd\xc2\xcc\x92\x66\x4a\xe1\x36\x80\x19\xec\x55\xd3\xeb\xe8\xb3\x4d\x54\x44\x56\xfa\x64\x05\x31\x38\x26\xbe\xe0\x9c\x6a\x5e\x7e\xab\xc2\xcf\x3b\xe2\x76\x58\xba\x25\x5f\xb7\xdd\x90\xa4\x53\xe0\x33\xb8\x2f\x36\x51\x32\x94\xab\x21\x3c\xd2\x7e\xa4\x91\x57\x7d\xb2\x33\xd8\x3a\xc8\x87\x16\xfd\x0e\x21\xab\x7a\x8b\x0d\x1c\x0f\x44\x9e\x63\xa4\xc6\xe2\x1a\xa9\xb3\x02\x27\x9a\x10\x2d\x48\xdb\x0b\xc1\x5a\xb7\x43\xbc\x28\xdb\x20\x74\x98\xe9\xd8\x4c\xdc\x2c\x3c\xff\x7e\x1b\x9c\x79\xdf\x52\x9f\xe0\x78\xda\xfe\x8e\x1b\x82\x7e\xd3\x07\x61\xf9\xb5\x18\x83\x74\x38\x12\x9b\x6d\x1e\x53\x8a\xc8\x13\xc2\x12\x79\x45\x2b\xce\xd9\x13\x42\x58\x0f\xb8\x78\x05\xdb\x9b\x6a\xaf\xf1\xb9\x67\x4b\x6f\x55\x73\xcb\xd5\xd0\xd4\xad\xa7\xab\x36\x89\x7d\x1b\x09\xfb\x59\x1d\xd7\xce\x64\x57\x24\xf9\x5c\x89\xcd\x13\x1b\xc9\xc2\x75\x72\x88\x3e\x02\x35\xd4\x41\x76\xbc\xed\xa4\x86\x4d\xdc\x4e\x60\xb9\x87\xc8\x11\xdb\x58\x19\xcd\xe8\xcc\x17\x62\x13\xd5\x33\x3e\x18\x7b\xa8\x6c\x63\xcc\xb7\x70\x91\xc4\x72\x1b\x9d\x27\xc3\x55\xea\xab\x87\x78\x6c\x23\x18\xeb\x63\xd0\xd5\x5e\xb3\x8f\x96\x98\x88\xf5\xb4\xf1\x6f\x9a\x89\xae\x3f\x13\x99\x02\x52\x8a\x5d\xc8\xc8\x45\x89\xfc\x07\x45\x93\xeb\x35\xfc\xe6\x72\x11\x62\x01\xb7\x1a\x75\xd1\x11\x6e\x84\x53\x45\x8d\x36\x84\x29\x24\x23\x54\x48\xfe\x1f\x2e\xc0\x7f\x3e\xba\xf4\xbe\x61\xc6\x03\x18\x07\x33\xaf\xb6\xf2\xaa\xac\xa5\x10\x01\xb7\x73\x24\x43\x50\x8a\x87\x5b\x4c\x3c\xc2\x87\x30\x50\x53\x80\x81\x28\xaf\x19\xd8\xaa\xf6\xb4\xf4\x7b\x10\x5e\xc1\xbe\x6a\xf3\x2e\x7b\xe6\x19\xfb\xe9\x81\x60\x1c\x01\x88\x83\xd8\x01\x71\x5c\x14\xb4\x1d\xc7\x40\xbc\xed\x25\x52\xe9\x04\x61\x45\x20\xcf\x53\x74\x04\x14\xdd\x50\x44\xfe\x08\x01\x74\x1e\x5e\x7a\x3d\x3a\x7b\x58\x08\xa6\x9d\x6d\x5f\xfa\x9a\x16\x49\x2a\x37\xab\xac\xc3\x7f\x9b\xaa\xb5\xd0\x2f\xaf\x94\x55\x34\x75\xe3\x38\x15\xb6\x0e\x8c\x3b\x00\x9a\xed\x6e\xd3\xeb\x00\x41\xc4\xc1\xa0\xd0\xf0\xc9\xdb\x0a\x7b\x4d\x4d\x90\x74\xb8\x9e\x63\xc5\x2e\xfc\x6d\xcf\x0a\x48\xe3\x63\x2c\x6d\x4f\xe0\x39\xcc\x07\x6e\x81\x6a\x53\x80\x04\x77\x47\x9c\x4f\x6c\x25\x3d\x5c\x6e\xfb\x0a\xe4\x34\x52\x63\x81\x11\x44\x3a\x0a\x87\x16\x85\x3d\x95\x8e\x03\x9c\xd8\x01\x9c\x8a\xf4\x46\xd5\x52\x9d\x56\x09\xd4\x93\x37\x9f\x61\xc9\x97\x73\x24\xba\xfc\xe4\x68\x57\x11\xf8\xcb\x37\x5a\x39\xda\xb0\xb8\xc6\x74\x79\x56\xa8\x29\x56\xf4\xeb\xe6\x0c\x4f\x8e\x07\x12\x51\x48\x7f\xd0\x2c\xc0\x2d\x74\xeb\x2b\xb4\xac\x3e\xd2\xee\x00\x5c\x20\x5a\xd0\xee\xa5\x21\x30\x6a\xf7\x53\x01\x13\xa7\x18\x15\x18\x28\x29\xfa\xb0\x84\xda\xdf\x01\x92\xe2\xce\x09\xb4\x07\x9a\x86\x75\x90\xf9\x66\xc4\x00\x62\xfa\xd5\x6f\x29\xab\x1b\x15\xa2\xdb\x4b\xcb\xb4\x5b\xe0\xa2\xdf\xf3\x4e\x58\xb9\xa2\x66\x4c\xcd\x6d\x70\x04\x61\x1e\xd7\x61\xbb\xfe\xe9\x62\x18\xa8\x50\x4d\xea\xe1\xdb\x95\xcb\xa4\xfa\xc7\x33\x1d\x28\x0c\x17\x9f\xfc\xcf\xee\xd5\xcd\xcb\x31\x4e\x74\xad\x67\xee\xa8\x85\x8e\xbb\xbd\x19\x51\x5b\x79\x30\x16\x8a\xa8\xb0\x9f\x07\x79\xb7\x05\xe4\x8d\xe1\x56\x1f\x4b\xc2\x10\x33\xb9\xc8\x3f\x9a\xc9\xfe\x46\x61\x33\xad\x50\x7c\xb3\x6d\xfc\x5b\x5f\x47\xff\x5e\xd0\xfe\x42\xfe\xaf\x7b\xfd\x17\xf2\xff\xfc\xeb\xe6\x7f\xad\xef\x07\xd5\x29\x36\xf6\x9e\x18\x59\xe4\x83\x4c\x1a\xe3\x6d\xaf\xc2\x7c\x2a\xeb\x7e\xc2\xbb\x0b\xdd\xee\xd3\xc5\x32\x50\xe1\x0f\xbc\x60\x82\xdf\x03\xf0\x5f\x1c\xe2\xc3\xe8\xdd\x0f\xf7\x5a\xec\xd4\xbf\x5f\xb4\xa4\xf0\x0a\x3f\x7f\x9e\xfb\x39\x87\x9f\x1d\x2d\x85\xea\xd2\xaf\xa8\x7c\xd5\x3f\xbf\xbd\xfd\x33\xfd\xb3\x9e\xc6\x93\xfe\xf9\xfd\xed\x9f\xd0\xc2\xab\x6e\xe0\x15\xee\x38\x75\x29\x3a\xd3\xf4\x60\x0f\xfd\x82\x35\x86\x01\x5d\x10\x9c\xff\x09\xa3\x9f\xc3\xe8\x3b\x14\x89\x88\x41\x9b\x5a\xd8\xcf\xfd\x14\x73\x21\x50\x79\xe6\x27\xf6\x06\x9f\xcd\x3f\xfc\x19\xfc\x9c\xda\xd9\x9a\xda\x79\x49\xff\x39\x86\x9f\x7e\x6f\xf3\xd4\x76\x13\x5d\x00\x4a\xe6\x16\x25\x73\x3b\xf8\xf9\x19\x94\x38\x13\x73\xab\x65\x23\xfd\xfb\x51\xa2\xea\xcd\x9f\x6d\xba\xaa\xe5\xf9\x9c\xda\x99\x3b\xf7\x13\x7a\x1b\x42\x6f\xf0\x73\x0a\x3f\x9f\xd9\x29\x5b\x13\x3c\x42\x37\x47\xe8\xde\x7a\x98\xa6\x0f\x62\x08\x30\xa6\x0f\x4d\xcc\x80\xd3\x46\x1f\x8d\x29\x74\xa5\xd9\x89\xa7\x79\xda\xd3\x2f\x4e\xb9\x98\x51\xb1\x6c\xdf\xfc\x09\x2b\x6d\x08\x2b\x4d\x50\xe0\x6f\x73\x19\x7c\x98\xca\x87\xb1\x9c\x8e\xa5\x44\xfa\xe9\x07\x9a\x1b\xa7\x01\xa7\x69\x81\x2c\x98\x92\xb1\x9d\xa8\xb9\x9d\xa8\xb9\xa5\xb6\xf4\x9f\x53\x7f\x26\x11\x01\x53\x44\xc0\x3b\x1f\xd2\xf9\xd7\x87\xe7\x65\x6a\x57\xf0\xd4\xae\xe0\xa9\xbf\x56\xd3\x7f\xfa\xcc\x5b\x34\x96\xe0\x59\xbf\xb8\xe4\x3e\xcc\x5b\xe6\xb6\xb7\xa5\xed\xed\xd5\x34\xfb\x6a\xf8\xcd\xd8\xdf\x1d\x44\xe9\x3f\xf5\x33\x15\x84\xff\xf5\x7e\xc7\x1f\xde\xc8\x7f\xff\xe7\xdf\x8e\xff\x76\xfc\xcf\x76\x3c\xb4\x1d\x0f\x6d\x85\x73\x3f\x05\xef\xfd\xcb\x9f\xfe\x45\xfd\xfe\xff\x47\xbb\x7f\x3b\xfe\x9f\xee\xf8\x17\x4f\x45\x82\xd5\x88\x16\xfc\x9f\x73\xff\xfc\xe3\x0b\x8f\xcb\xf7\x09\x8f\x7f\xf4\x8c\x7f\xe6\xe7\xdc\x47\x89\x73\x74\xf8\xd0\x01\x81\x1e\xc4\x80\x7f\xfb\xe8\xf2\xe1\x03\x7e\xe2\xe7\x2f\xb6\xe0\x8c\xe8\x1d\xa7\xc7\x65\xda\xe9\x71\x89\xf1\xbf\xf4\xbb\xfd\xa9\xb1\xa4\xd3\xda\x47\xd4\x12\xe2\x98\xe1\xe0\x3b\xe5\x61\x9e\x72\x52\x72\xce\xe7\xbf\x3e\x61\xf3\x5f\x27\x98\x0f\xa3\x97\x9e\x3e\x30\xf0\xb4\x07\x41\xa7\x62\xd5\xc0\x2a\x9f\xda\x55\x3e\xf5\xd7\x73\xfa\x4f\x58\x4b\x53\x2b\x92\xcc\xed\xd1\x33\xfd\x27\x76\x31\x44\x7b\x78\xdd\xf5\x82\x0e\xd0\x43\x71\xe8\x9f\x9f\x9c\x88\xf9\x5b\x0f\xbf\x3e\x93\xd3\x14\x55\x8d\x8b\xf8\x71\xc0\xd6\xc0\xe1\xea\xbc\xfe\xc4\xa1\xb4\xdf\x21\x75\xfc\x29\xd8\xd4\xaf\x4e\x3e\xa1\x54\xa8\x2c\x85\xda\x4a\xb0\xf8\x5f\x3c\x59\xfb\x74\x30\xf5\x67\xdc\xff\x39\xb6\xbd\x8d\x6d\x6f\x63\xdb\xee\xb9\x9f\x82\x99\xbf\x4f\x8d\x8b\x04\xf8\x7b\x2c\x16\xf7\xa7\xdf\xde\x26\x7e\xbd\x01\xd2\xe9\xfd\x3e\x93\x07\x22\x98\x03\x11\xf8\x27\x8e\xa5\xd5\xb4\xa4\xff\x44\xcd\xec\x87\x3f\x5b\x5a\xcd\xf7\xd2\x4e\xe1\xfc\xc3\x8c\xa3\x45\xbe\x12\xe1\x8d\x24\xe5\x37\x7f\xfe\x22\xa2\xde\xb7\x18\xd2\x15\x60\xa8\xf5\x3a\x43\xa9\xe7\x86\x29\xba\xf0\x45\xaa\x77\xea\x11\x7f\x51\xd8\xfb\x45\x7e\xfe\x3e\x19\x71\xe9\x8b\x8b\xef\xbb\x90\x48\xa0\xfa\x77\x66\x73\x69\x35\xfd\x1f\xa7\xdf\x5f\x55\xce\x8e\xc5\x46\xf0\x71\xde\x0a\x34\xbf\xb4\x34\x2f\x56\x6e\xfa\x4f\xd4\xa7\x7e\x78\x4e\x96\xa9\x3b\xfa\x9b\x9c\x7c\x9a\xba\x6f\xbc\x53\x57\x2c\xd6\xc7\xef\xdc\x17\x2d\x7f\xe7\xc0\xe0\x73\xa5\x8f\x0f\x9e\x37\xe5\x87\x51\xc0\xf6\x2f\x68\x28\xd9\x32\x1e\x8d\x5f\xf3\x5f\xa4\x01\xe5\xb8\x46\x97\xab\x60\x7c\xd7\xbc\x68\xaa\x66\x5e\x24\x55\x2f\x52\x84\xc9\x02\x18\xc9\xa0\xdb\xd6\xab\x31\x99\xa1\x36\xa6\x35\x61\xc0\x87\xde\x7c\xec\x09\xd0\x65\x1b\xb0\x56\x7e\x4c\x2e\x88\x39\xf4\xb0\xd4\x75\x4b\x18\xec\xb9\xdb\xdf\xa0\xb9\x12\x7c\x55\x87\x7a\x18\x29\x7d\x14\x80\x6f\x6f\x3b\xd2\x2f\x5e\xd0\x75\x63\x69\x92\xf5\x44\xe4\xa6\x87\x5d\x5e\x99\x9a\x98\x3c\xa4\x85\x9e\x22\x83\x4d\x1a\xac\x0f\x9d\x8b\x3b\x15\xe6\x03\xb2\x2c\x3b\x5d\x47\xdd\x81\x23\x61\x2b\xba\xe8\xc1\x80\x9a\x14\x8f\x0f\xf7\x1e\x0c\x99\x59\x03\x68\x9a\x31\x0e\x37\x62\xbb\xcc\xf0\x13\x18\x67\x9e\x6b\xfc\x41\xd7\x2d\x07\xa1\x06\x06\xe3\xc0\x86\xe8\xcd\x8e\x16\x55\x5f\x84\x83\x69\x16\xad\xde\xc0\x83\xef\x0b\x1a\x9c\x76\xc9\x51\x52\xfe\xea\x99\x5f\xb7\xe2\x57\xf3\xe6\x02\x0d\x43\xbd\xb9\x78\xe2\x59\x3b\x90\x35\x24\xb8\x0f\xa1\xad\x74\x0d\xed\xaa\xf5\x40\xb2\x8d\x8b\xa6\xba\xbd\xac\x3a\x94\x53\xa9\xa1\x8f\xf4\x32\x20\xab\xc8\x06\x9a\x7f\x91\xc3\x9e\x57\x6b\x1a\xc0\xed\x7e\x58\x0c\x10\x4b\x68\xfa\x7e\x45\xef\xf0\xe3\x28\x1b\x6c\x1b\x1c\x17\x2f\xbc\x41\xbc\xa1\x53\x52\x16\xad\x48\x0f\x3b\xb4\xcd\xdd\x4e\x68\x00\x6d\x74\x96\x0d\xab\xc6\x4f\x24\xfa\x0a\x0e\x73\x64\x14\x96\x02\x45\x1f\x83\x57\xdf\x83\xb5\x38\xc4\x8a\x40\xc3\xdc\x6e\x3f\xdf\x20\xeb\x51\x04\x10\x3c\xf6\xd0\x97\x30\xef\xce\xe1\xb8\x2e\x16\x0d\x10\x6d\x8c\xd9\xa3\x1e\xea\x25\x1a\x40\x57\x85\xc7\xa0\x56\x82\xcf\x9e\xf1\xdd\xd1\xd8\xfe\xb7\x67\xc2\x36\x13\xbd\x3b\xdb\xbc\x40\xa3\xcf\x0f\xd6\x0e\xf8\x61\x41\x59\xe8\x2e\xda\x5a\xd4\x5f\x15\x13\xd6\xc5\xb9\x22\x92\x45\xb1\x90\xe2\x09\x0a\x3e\xac\x45\x61\x89\xd9\xc9\x17\xd1\xcb\x7b\x59\x0c\x4d\xbb\xf9\xe0\x00\x61\x48\x9b\xcf\x84\x23\x5c\x14\x60\x19\x1b\xba\x45\x4d\x15\x96\x85\xc1\xe5\x0f\x26\xf5\xc8\xa7\xf2\x4d\x1d\x06\x8b\x1e\x73\x10\xbb\x36\xc4\xa8\x43\xad\xed\x32\xad\x62\xf7\x2b\x50\xc7\x17\x7c\xc0\xbc\x95\x38\x2b\xf0\x71\x24\x5c\x3b\x23\x75\xb2\x09\x3b\xb5\xd5\xe0\xcc\xd4\x02\x54\xf7\x5f\x9d\xae\x3a\x2a\x04\x44\xdd\xaa\xd1\xd6\x69\xfd\x50\x07\x4c\xf5\xd0\xf5\x00\x4d\x14\x9b\x37\x96\x2b\x61\x4f\x2d\x34\xa3\xd6\xe5\x21\x78\x79\x86\xd7\xe0\x9e\x02\x6e\x3f\x54\x72\xd9\xe6\x21\xdc\xb2\xe7\x85\xeb\x0a\x86\xee\x0d\x68\xaa\xd9\x1b\xc1\x4c\x85\xe8\xf5\xd7\x25\xcf\xbe\xcc\x16\xa6\xaf\x57\xc7\x65\x30\x43\x4f\x08\xf0\x72\x3e\x6a\xc8\x1e\x54\xe5\x4a\x36\x5c\xa8\x43\xc4\x0b\x4a\x6b\x30\x29\xb2\x4f\x5b\x93\xf3\x7a\x81\x37\xe8\x23\x5a\x4e\x37\xf5\xda\x01\xb3\x6b\x70\x9c\x6a\xcd\x28\xa9\x64\xa9\x71\xf1\xac\x5a\x3f\x34\xc5\xb6\x8b\x75\x8a\xad\x5a\x0f\x2f\x9e\x54\x78\x5d\x16\xcf\xb0\x22\x9e\x55\xf4\x6d\x86\x24\x77\x8b\xed\xf0\xbb\x7b\x5d\xdc\xd3\x1c\x40\x94\xeb\x6d\xc3\x6d\xa3\x49\xa1\xba\xbd\x96\xef\x39\x7a\x03\x78\x7e\x80\xcd\x2d\x9a\xf4\x66\x02\x6f\xcc\xe4\x49\x8b\x13\x36\x43\x52\xb9\x5b\xa3\xdb\x23\x6c\x18\xb7\x9d\x19\x4c\x71\x4f\xcd\xe1\xff\x28\xb8\xc4\x1d\xe4\x12\x31\xd2\x52\xe1\xcf\x11\xec\x3b\xbd\xd8\xa5\xb4\x7e\xc6\x64\xbe\x8d\x8a\x1a\xcc\x4e\x87\x52\xf3\xdf\xe5\x43\xc3\xb8\xb6\xc8\xb0\xd7\x0b\x78\x53\xc0\x00\xfa\x8f\x59\xb4\x62\xde\x05\x99\x09\xb9\xcd\xe3\xff\xdb\x0c\xd8\xd1\x87\xc5\x86\xb2\x66\xae\x3d\x6b\xa6\xde\x43\xae\x3a\x71\xd2\x78\x43\x1c\x87\x79\x98\xcb\xd3\xba\x6c\x51\x90\xbc\xce\x11\xdc\x60\x16\xd1\xc4\xcd\xb8\x3e\x44\xe6\xfc\x38\x21\x74\xe8\x31\xc2\x24\x34\x97\x40\x51\x11\xb8\xab\xb2\x23\xf6\x76\xd3\xb0\x96\xbc\xdd\x8b\x7b\xd5\xb9\xbe\xe8\xaa\x6b\x20\x81\xf0\x72\x8f\x91\x02\x77\xc0\xf7\x7e\xa0\x73\xea\x45\x47\x35\xaf\x61\xbf\xb8\xcd\x65\x0c\x67\x51\x9d\x59\x1d\xb6\xb6\x7a\xc0\x7e\xf6\xd1\x86\xd0\xb1\x05\xa3\xec\x4b\xf4\xe0\x8e\xd0\x17\x76\x18\x6c\xf1\x11\xac\xa2\xe7\x81\x72\xb7\x12\xc2\xbe\xf0\x4f\x02\x33\xde\xa8\x15\xeb\x96\x2f\xd5\x06\xe6\xec\x95\x46\xa2\x68\x40\xc4\x2f\x5b\xe0\xc5\x28\x43\x33\xc4\x10\xde\x2e\x2d\x36\xc3\xe9\xb0\x0c\x6d\x1a\x4b\x53\xb3\xee\x06\xf2\xef\x39\x3a\x0a\x9a\x04\xbe\xe1\xb7\x23\xb2\xfd\xd6\x8e\xd8\xff\x9e\x9e\x87\xb8\x5c\x21\x8e\x83\xf1\x04\x19\x34\x0e\xf8\xfa\x41\x7e\x06\x0e\xc5\x98\x1e\xe9\x7e\xc4\x81\x51\x6f\x9d\x18\x0f\xcd\x15\xc6\xa4\x3b\x4c\x1b\xcc\x57\x9e\x54\xd5\x65\x5e\x73\x8a\xf3\x39\x15\x9e\x38\x0f\x80\xba\x72\x68\x45\x27\xcc\xf6\x05\x09\x57\xc2\x49\x00\x5e\x7e\x77\x59\x8a\x90\x39\xc4\x74\xb0\x95\x29\x23\xbc\xcb\x5f\xdd\x91\x3c\xd2\x56\xe1\x77\xd8\xb8\x14\x7f\x43\x29\x1b\x6b\x10\xd1\x34\x02\x6f\x89\x5b\x35\xda\xb9\x6c\x35\x23\x2c\xc7\xb3\xe8\x0d\x89\x0c\x95\xc8\xee\x4a\x36\x45\x89\x49\x87\x28\x06\x3c\xd4\x33\x02\x6e\x74\x5b\x85\xed\x01\x06\xbf\x0e\xd4\x02\xb9\xeb\x72\x07\x31\x03\x86\x81\xa5\x98\x72\x90\xa5\x00\xed\xfd\x0a\xec\xd4\x38\xcd\x77\xdb\x32\x45\x10\xc0\x70\x01\xd7\xe8\xf5\x68\xa2\xff\x35\x97\x57\x42\xde\x20\x6f\x1f\x4c\xab\x37\x09\xab\xb7\xb2\xc1\xfb\xb8\xd8\x60\x0b\xf5\x30\x1f\xe4\x43\xe7\x65\x7e\xd1\x60\x2f\xe5\x28\x1f\xc4\x18\x20\x6a\x58\x69\x20\x61\x53\x48\x98\x10\x72\xb8\xf7\xd4\x9e\x50\x46\xe3\x78\xad\x52\x14\xbe\xe1\x30\x90\xf2\x76\x13\xbc\x20\x8c\x0b\x52\x71\x0b\x03\xec\x16\xb6\x56\x60\x5c\x50\x90\x4b\x2c\x21\xa7\x8b\x22\x2e\xfd\x6f\x7d\x32\xcf\x2c\x35\x2e\x9e\x54\xeb\x66\x51\x69\x48\xa8\x6e\x8f\xb8\xe7\x74\xb9\x9a\xde\xe9\x81\xb5\x80\xb0\x59\x85\x2c\x1b\xa1\x62\x29\x52\x23\x6b\x9a\x07\xa0\xe0\x98\xd3\xcd\x7d\x12\x9d\xa9\x76\x69\xdb\xc0\x50\xde\x58\x5c\xff\x84\xf1\x04\x21\x8a\x69\x08\x91\xf1\x6f\x3e\x2d\x28\x69\xc3\x39\x08\xba\x90\xa7\x80\xb8\xca\x03\x2f\x74\x1f\x53\x73\x4a\x47\xb2\x06\x97\xfc\x6c\x88\xfe\x44\x00\xdd\x77\x1b\x04\xe2\xc1\xa3\x89\x7b\xbd\x77\x80\x58\x1e\x21\xb3\x0f\xbf\x9a\x9f\xd1\x0f\xbb\x92\xa6\xc1\x60\xd4\xb0\xd2\x5f\x78\x59\x43\x3f\xb2\x5b\xf0\x91\xb8\xdb\x2f\x35\xa2\xa2\x59\x30\x45\xaf\xc8\xdb\xef\xa2\xb8\x39\x0a\x76\xc4\x8c\x67\x25\x70\x63\x7f\xec\x03\x0d\x46\x0a\x3c\x85\x31\x6c\x44\x0f\x56\x90\xf4\x0a\x87\x62\x94\x71\x16\x41\x99\xa6\xaa\x52\x41\xa4\x56\xe9\xb9\x56\x69\x50\x1c\x47\x18\xdf\xed\x0d\x9e\xc6\x1e\x10\xe8\x3c\xc5\xf9\x1c\x51\x38\x4b\x58\x73\x85\x4a\xe3\xe4\x5b\xdc\xa8\xa2\x61\xd7\xbe\x88\x6e\x4a\x15\x0c\x75\x01\x3e\x14\x94\x4a\x2f\x81\xff\x12\x46\x89\x7d\xd5\xf8\xdc\x63\x18\x96\x36\xa0\xee\x3e\xa4\x80\x21\x96\x09\xd1\xcf\x57\x15\xbd\x60\x63\x11\x32\x88\x7b\x15\x82\x63\xde\x0b\xac\xf6\x56\xf3\xa2\xa7\xba\x5f\x56\x55\x84\x72\x5c\xc1\x2c\xf8\x45\x8a\xff\x32\x47\x71\x79\x83\x4e\x39\xad\xd6\xc5\xab\x1e\xf8\xe7\x8b\xb6\xba\x01\xaf\x28\x8e\xba\x10\x52\x5b\x5d\xd5\x45\x6f\xae\x68\x11\x37\xe4\xf0\xc6\x55\x6c\x21\x5b\x24\x8f\x99\x0e\x58\x2e\x37\xd0\xef\x1b\x1d\xf9\xcb\x79\x90\x1b\x3f\xc3\x62\x45\x17\x72\x83\x01\x54\xb6\xa8\x39\x32\x14\xf4\x59\x2b\xa3\xdb\x13\x1d\xa9\x4b\x7c\x18\xa3\x1c\x13\xe6\xd8\x77\x47\xcb\xa8\xf8\x08\x2c\x17\x85\xdb\x3e\xae\xd9\x01\x09\x7c\x11\xc8\xd3\x74\xc6\x6c\xab\xda\x55\x2a\xfa\x2b\x64\x28\x78\x0c\x56\xde\x04\x21\x78\x77\xdb\xc4\x0b\xfe\x74\x31\x17\xbe\x65\x05\x22\x60\xe4\xfb\xe8\x1a\x8c\x82\xc5\x02\xb6\xb4\xe8\x13\x06\xc6\xc4\x60\x33\xf7\xfb\xaa\xe4\x20\xe1\x24\xa0\xe0\xba\x77\x71\xcb\x59\xd7\x9b\xe0\xa2\x07\x91\x06\x9a\xea\xaa\x15\x97\xac\xa8\x8e\xe7\x2f\x70\xee\xa1\x0d\xed\x4e\xf3\x0d\x7b\x6e\xdc\xe1\x3a\xd5\x7b\x44\x54\x0f\x26\x08\xc4\x15\x38\x32\x65\x23\x29\x27\xe1\xe2\xef\x97\x1a\xe6\x60\xfc\x13\xe6\xa9\x86\x8a\x85\x3b\xfd\xa0\xd9\x62\x57\xa9\x36\x38\x57\x86\x4a\x13\xec\x3c\x98\x1c\x35\x70\xe1\x3e\x18\x63\xca\x22\x64\xce\x7a\x0d\x46\x37\xc7\xaa\xbf\xcc\xf6\xe8\x8d\x78\x3b\x05\x57\xf3\xeb\x7a\x30\x83\xac\x12\x9d\xef\xa0\x01\x38\xc1\x9c\x0a\x23\x0c\x0b\xbb\xb3\xfb\x53\x13\x58\xc0\xa5\x70\xda\xeb\xf1\x5a\xa0\x68\xce\x77\xfa\x2c\x34\xa9\x26\xdc\xf0\x86\x58\xd4\x99\x54\xa4\x6c\x11\x52\x74\xc4\x1a\x07\x20\xc2\x1d\x73\x54\x45\x97\xcd\x10\xb7\xcb\x52\x2b\x15\xbe\xcc\x28\x20\x65\x0b\x7a\xc7\xad\x00\x41\x45\x9c\xbb\xe1\x8a\x0e\x94\x91\x8d\x58\x8c\x90\x18\xe5\x42\x9b\xa4\xc0\x76\xe5\x18\xa2\xa6\x21\x54\xd1\x04\xb3\x61\x1c\x80\x31\x75\x67\xa8\x48\x6a\xff\xc0\x08\x7d\x3d\x3e\x9c\xb4\xfb\x98\xa8\xe3\x9a\x65\xad\x10\xd3\x0d\x74\x39\x30\x3d\xad\xf3\xdd\x9e\xd5\x52\x46\x88\x8b\xe1\xbc\x78\x73\xd1\x51\x0d\x15\x7b\x4e\x6d\x70\x7d\x71\x40\x45\xd1\x78\x45\xc1\xb4\x34\x95\x4f\x70\x34\xed\x02\x66\x99\xc6\xb3\xef\x8e\x7c\x51\xa3\x38\x42\xa5\x0b\xc1\xc2\x11\x4e\x16\xb4\xcf\xc6\x66\x9f\x8d\x68\x9f\xed\x63\xa4\x04\x24\xfb\xe8\xa6\x4f\xe4\x4f\x9d\x14\x51\xd9\xf1\x93\x8a\x7b\x83\x9a\xd5\x19\xac\x82\x3e\xb0\xff\x0e\xbf\x2c\x52\xe6\x1c\x88\x0a\x54\xb8\xf4\xdb\x69\xa9\xd6\x8f\x13\xed\xd4\xb0\xd3\x5b\x9c\xf1\x95\x44\xf4\x72\xe5\x36\x6e\x82\x7f\xac\x56\x10\xeb\x23\x8b\x8b\x3b\x83\xf2\x47\x67\x4b\xf4\x5e\xc1\xa8\x65\x85\x15\x85\x30\x6b\x2b\xf5\xe5\x1e\x36\x3e\x0a\x66\xd4\x9e\x5c\x81\x60\x72\xc0\x81\xcf\x02\x3a\xa9\xb7\x8b\xb8\x3f\xd5\x28\x5e\x93\x3e\x7a\xe8\x93\x6d\xa8\xb2\x41\xef\x22\x54\xfd\x50\xef\x98\xb9\x40\x51\xfe\xac\x56\xe1\xd0\x90\xec\x53\x6c\xdb\xfb\x30\xae\x51\x9c\xef\x5a\xc3\x38\xfb\x86\x3f\x57\x54\xba\xa9\x35\x48\xe2\xdd\x52\xc9\xae\xc6\x19\xf3\xf5\xe9\xc2\xb2\xf8\x59\x03\xd3\x08\x1f\x10\x6d\x0f\x18\xef\xe2\x48\x5f\xcd\xf5\x79\x2e\xba\x5e\x20\x1f\x29\xed\x28\x88\x0c\x07\x02\x6b\x8d\x20\x37\xd4\x6d\x01\x23\xb0\x3e\x6b\x12\x8d\x83\x22\x06\x43\xed\x66\x16\x08\xb7\x9e\x89\x19\x47\x69\xd5\x22\x6c\xf4\x58\x3c\x50\xd0\x87\x03\x2a\x48\x40\x8f\xf9\x62\x4a\x6b\xe8\x59\x6e\xce\x12\xab\xa0\x48\x00\x95\xcc\xc0\x50\x1f\x52\xa6\xf2\x4a\xad\xc1\x7a\x0f\xfa\xa8\x1f\xec\x83\x2a\xbd\xad\xd5\x1a\x28\x2a\xb2\x68\x19\xa3\x68\xb9\x3a\xba\x88\x1e\x07\xb3\x31\x85\x78\x1e\x07\xa8\x32\xa0\xd4\x3b\x9e\xa2\x58\x9f\x70\x7b\xa3\xa8\x1c\xfb\xdf\x3f\x58\x7d\xcf\x16\x42\x0d\x75\x76\x1d\x3c\x68\x8c\xea\x14\x87\x76\xd7\x30\xc7\xda\xf0\xf1\xb8\xa3\x4d\xa2\x8e\x43\x56\xb8\x90\xb9\xf2\x98\x8a\x27\xf4\x9c\xa9\x35\x2e\x9e\xf5\x4e\x96\xa5\x91\x4d\xeb\x0d\x94\x0f\x22\x92\x97\xdb\x2a\x9f\x18\xd4\x03\x6a\x81\x9c\xa1\x85\xb3\x30\x7e\x63\xf4\xb7\x8b\x94\x2a\x6e\x5b\xd3\x89\x90\xc1\xeb\x7b\xd4\xd5\x34\xe2\x6b\x09\xdb\xdd\x88\x16\xce\xfc\x93\xd9\xb0\xbb\x0a\xb3\x60\x9c\x6c\x78\x8e\xd7\xac\x74\x68\xc9\x62\xcb\xb4\x20\x8f\xa8\x65\xfa\xe1\x74\x72\xac\x20\x93\x2b\xb5\xd0\x8f\x1b\xd3\xdb\x82\xae\xee\xc6\xad\x59\x27\x1d\x0a\xe6\x2f\x05\xcd\x6e\x15\x31\x47\x3b\xc0\x29\x98\x8c\x30\x70\x0f\x91\xa3\xf4\x11\xb0\x7a\x63\xa6\x09\xa0\x4d\xcc\x13\x05\x21\xd6\xa7\x6c\x2d\xa0\x1d\x6f\xcc\x6c\x3f\xeb\x8d\x89\xe7\x19\xa7\x3f\x1a\xa3\x5a\x60\x15\xb8\xe5\xcd\x9b\x7c\xd1\x61\xf8\x14\x27\x17\xb5\xc1\xfb\x4b\x53\xf5\x55\x35\x47\xa1\xff\xad\xa4\xa5\x07\x15\xbe\x00\xe5\x1f\x4f\xce\xfd\x60\x4f\x3a\x2c\x1c\xa5\x66\xf4\xa3\x2b\xc3\x22\xee\xe8\x8e\x8e\x62\xae\xed\x28\xa6\xd6\x30\x50\xd1\x24\xa8\x5f\x9f\x61\x25\xc4\xa8\x7a\x7d\x4c\x76\xb8\xaa\x3b\x9c\x2a\x84\x88\x11\xb7\xaa\x7e\x38\x05\x57\x35\x4f\x7a\x0f\x54\x59\x6b\x49\x8b\xd8\x12\xc1\x75\x93\x02\xd7\xf2\xfd\x70\xbd\xc2\x04\x2d\x3c\xb0\x40\xb9\x36\x0e\xce\xc0\xb5\x9c\xf8\xc7\xd0\x55\xc3\x0a\x2e\x10\xaa\x5c\x1f\xfe\xf1\x6d\x4b\x85\x18\xc4\x75\x16\x34\x30\x6e\x16\xa9\x37\x21\x4a\xd2\x27\x7b\xc0\xa1\x9c\xbd\xdd\x2a\x5e\x46\xb8\x89\xd1\x0a\x35\x4a\x5a\x53\x83\xe3\x7a\x1c\x26\x8e\xeb\xfb\x6b\x87\xbd\xce\x66\x10\x45\x0a\xc3\xa1\x12\x93\x1d\x69\x69\x25\xaa\x87\x4a\xb0\xf6\xf0\x66\xe5\x6a\xcc\x48\xf2\xa9\x37\x4d\x73\x3d\x15\xe5\x43\x66\xd4\x8c\x3b\xba\xfc\x58\x50\x34\x40\x78\x58\x62\x34\xc4\x91\xd0\xb0\xbc\x96\x09\xbb\x04\x57\x37\xbb\xd3\xff\xe9\x02\x0b\xe5\x89\x12\x06\x2d\xe1\xa8\x9a\xa0\xc2\xa7\x9c\x07\x19\xdc\xae\xfb\xf8\xbf\x83\x59\xa1\xc3\x97\x21\xa6\xd7\xea\x8e\xa6\x24\xc3\x53\x38\xbf\xcc\x15\x1e\xae\x50\xdd\xb3\x80\xdc\x35\x3d\xe6\xb7\x35\xd8\x62\xc2\xc7\x2d\x2d\x2c\x5c\x4a\xd5\x4b\x50\x7b\x96\x2e\x93\xcb\x8b\xf6\xa4\xa7\x09\x44\x81\xea\x1c\x3a\x17\xcf\x2a\xda\x37\x78\xc1\x27\x5f\x6b\xb6\xbd\xad\xa3\x04\x10\x8e\x33\x18\xec\x4e\xcb\xde\xa1\xda\xd3\x47\xb5\x3a\xce\x23\xa6\xed\xef\xf4\x3f\xeb\x3d\x0d\xce\xf3\xd1\x06\x36\x4b\x97\x4a\xf2\xc1\xa2\x80\xb2\x0d\xc6\x7e\xa0\xcc\xc4\xf1\x56\xec\xe7\xa1\x96\xb5\x87\x81\xa2\xc0\x4d\x29\xac\x7d\x12\x58\x5d\x58\x98\x0d\x63\xec\xbb\x4e\x81\x2f\x97\x19\x94\xca\xec\xa4\xdd\x8e\x32\x29\x43\x0c\x8b\xc1\xee\x33\x08\x3d\xfc\x5a\x0f\x51\x0f\xe6\x68\x1b\x84\xe8\x29\x6b\x9c\xae\x13\xcd\x90\x96\x98\xaf\x52\x7d\xd6\x4b\x7b\x28\x36\xd6\x3c\x86\x08\x5e\x78\xc9\x41\x6f\xf5\x92\x7d\xa0\x90\x71\x9a\x7d\x50\x94\xb8\x94\x71\x8f\xa7\x81\x2b\x4b\x35\xe1\xaa\xc3\xd0\x1d\x4e\x95\x73\x98\xd8\x60\xd1\xed\xbe\x26\x0e\x13\x33\x3a\x4c\x64\xea\x2c\x4f\xc1\x6e\x74\xab\xbf\xe7\x98\xbf\xe6\xcb\xb7\x0a\xb5\x4c\x0d\x2a\xde\xc4\xce\xc3\x60\xcf\xa7\x76\x1f\x0c\xab\xa1\x3d\x7a\x36\x1f\xb7\x84\x50\x0b\x09\x5c\x0b\xdc\x81\xd2\x29\xa6\x97\xbb\x0c\xe7\x35\xd9\xee\x0c\x99\xe8\x23\xc9\x1a\x29\xf2\xd8\xe0\x9a\x2c\x41\xf5\x83\x03\xd0\x1e\x2a\x42\x47\x21\x77\x43\x32\xd4\xc3\x0e\xdf\x1a\x51\x0a\x38\xe4\x9d\xaa\x9e\xc4\xfc\x6e\x1a\xc8\x38\x3c\x7a\x09\x4f\x70\x1a\x11\x11\xad\x31\x3c\xa9\x82\x0c\xec\x39\x13\x29\x99\xf4\x69\x07\xa3\x25\x07\x10\xb6\x56\x9f\x93\x4b\x07\x24\x84\x7c\xc6\x95\x0b\x87\x41\xbe\x62\x05\x5e\x10\x11\x27\x40\x80\xcd\x6b\x3b\xd7\x43\x44\x45\x8f\x94\xb1\x6d\xd2\x0d\x6a\xb4\xf0\x2b\xe6\x13\xc8\x6a\xc3\x91\x00\xa7\xca\x9b\xcb\x26\x50\xea\x10\x14\x20\x5b\x4d\x54\x0c\xe5\x27\x82\x15\x14\x3a\x18\xc1\xa6\x46\xda\xef\x1d\xae\xe5\x90\xb5\x76\xf7\x2a\x49\xfc\x8c\xba\x1c\x66\xad\x07\xed\x0f\x46\x38\xc1\x01\x60\x5e\xa1\x9e\xdb\x63\xb8\xb0\x52\x32\xad\xc5\x59\x97\x14\x67\x5a\xe2\x3a\xdd\x4d\x61\x1a\x88\xfb\xb1\x19\x1c\xb3\xb6\xb8\x01\xc0\x22\x3f\xb5\x78\x89\x6f\x23\x23\x10\x31\x6e\x67\x87\x14\x0c\xb5\x40\x98\xa0\x43\xfd\x01\xd6\xf5\x2b\x66\x96\x5d\x40\x64\xce\x68\x14\x0c\x6e\xfc\x25\xf8\xc3\x9b\xdc\x41\xd5\xb9\x33\xf0\x5f\x67\xab\xb8\xb4\x4a\xa4\xf4\x3d\x68\x30\x23\xdc\x82\x6e\x57\xb5\xc4\x0a\x9f\xe3\x92\xec\x82\x31\xd2\xdd\x56\x36\x5e\x0c\xdd\x97\x71\x8d\xae\x8c\xb1\x95\xe7\x23\x72\x26\x9c\x02\xcc\xd0\xf8\x74\x9a\xeb\x96\xa6\x42\x48\x80\x51\x62\x28\xa8\x6f\x56\x60\x08\x5b\x0b\x88\x69\xd3\x50\x4b\x8c\x6d\xd3\x19\x64\x9d\x03\xe7\x01\xee\xa3\x9a\x33\xbc\xb7\xbc\xc5\xd0\x83\x4d\xd5\x50\xf8\x9d\x6a\xcf\x21\xb3\x61\x38\xc5\xb8\x91\x01\x85\x8b\xa2\x2d\x7a\x08\x79\xa9\xd0\x40\x87\xe8\xf8\x40\x44\x8d\xda\xa1\x1d\x47\xd2\xd6\xdb\x6f\x31\x1b\x5c\xf4\x54\x0b\x34\x7b\xaa\x07\x73\x96\xa3\x66\x09\x3a\xa7\x61\x8a\x3a\x0c\x67\xdf\xbc\x73\x5b\x75\xe0\xb4\x61\x11\x25\xe8\xe8\x0d\x96\x26\xb0\x58\x78\x0c\x33\x68\xf3\xe2\x7f\xc6\x51\x41\x07\x45\x13\x22\x2a\x1c\x04\xd3\x3e\x48\x50\x97\x33\x1a\xf0\x14\xff\xdf\x83\x54\x3e\x83\xd1\xb7\xca\x74\xed\x88\xaf\x5e\x47\xd9\x74\xee\x76\x47\x6c\xaf\x53\x80\x04\x1a\xb7\x7b\x3d\xf5\x5f\x14\x7d\xf6\xb4\x02\xb5\x6f\xaf\x4c\x0b\xac\x04\x4b\x3e\xcc\x07\x4b\x60\xb1\x4f\x70\x2a\xfe\x31\xc9\xa6\x71\xc6\xbb\x22\x66\xd8\xec\x60\x5b\xd1\x08\x2f\x15\x5b\x75\x5a\x9b\x98\x6a\x3e\xfc\x5a\x24\xf5\x7e\x1f\xf3\x7a\xad\x51\x29\x70\xa7\xd9\x77\xf4\x18\xf2\x5d\xd6\xbd\xda\xe7\x4f\x4a\xea\x1b\x61\x70\xb4\x44\xfe\x4b\xbd\x87\xb3\x06\xb7\x3f\xcd\x22\xbe\x7f\xc8\xd7\xf5\x60\xd3\x87\x41\x7c\xbe\x30\xa9\x35\xd3\xe9\x2d\xfc\x79\xa4\x9d\x71\x8a\x1b\xb9\x3f\xf1\x70\xfd\xf3\xb9\x5e\x87\x87\x4b\xae\xc4\x16\x53\x7c\xc8\xd2\xa4\xf7\x23\x7d\xbc\xf7\xaa\xf9\x32\x38\x8d\xca\x88\x34\x74\x4f\x8a\x69\x24\x65\x73\x9f\x05\xf6\x4e\xd4\x0e\x14\xa2\x67\xd4\x48\x7d\x05\xb3\x8d\xa9\xa3\x1e\xe2\x8c\x23\x05\xae\x04\x77\x1f\xec\x1d\xde\xb5\x3b\x10\x77\xc7\xb8\x76\xb8\x46\x1e\xca\xd7\x49\x68\xb5\xa4\xdb\x86\x48\xee\xb8\x93\x64\x0f\x66\xa3\xd4\x67\xde\x1e\xac\xa0\x96\x52\x3f\x6b\xc0\x9c\x64\xe8\xea\xf2\x96\xfa\x84\x10\xe4\xbc\x0e\xf5\x03\x4e\x57\x74\x24\x89\xb6\x16\x20\x5d\x18\xd3\x93\x3a\xe9\x85\x33\x10\xc1\x15\x35\x00\xcb\x20\x05\x53\x7d\x79\x07\x88\x3b\xa2\x6a\x6e\x9e\x2e\x9a\xaa\x3b\x6a\xd8\x88\xed\xe3\x5a\x68\x76\xc4\x9b\xdc\x15\x5a\x44\xb0\x16\xe6\x0b\xc4\x9c\xba\xb5\x37\xbc\xe1\x45\x57\x24\x4f\x6d\xc2\x66\xec\x71\x58\xcc\x95\x71\x47\x7c\xb5\x4d\x31\x56\x17\x41\x09\xe3\xc9\x66\x1f\x30\x31\x1b\x5e\x3e\x80\x74\xfc\x52\xc3\x1b\x81\x66\x09\x8d\x3d\x56\xd8\x68\x74\x8d\x9a\xd4\x48\x1f\xe8\xb8\x0a\x42\xd8\x99\xf9\x55\x5a\x78\x64\xb8\x55\x3e\x38\xd4\x6d\xf5\xd1\x32\xfa\x2d\xc3\x52\x7e\x82\xcf\x45\xdb\x5d\xa5\xee\xcb\xa3\x46\xda\xdb\xd2\xd5\xc5\xad\x6a\xc6\x61\x19\xd4\xa8\xcd\x02\x5e\x8c\x56\xdd\xca\x1a\x29\x94\xc5\x55\x7f\x67\x42\x46\xb2\x95\x50\x92\x90\x2b\x13\xbb\x13\x87\xe5\x10\x12\x7b\xdc\xfd\x04\x96\xe0\x9d\x29\x43\x3a\x53\xf6\x9d\x43\x25\x9a\xe6\x25\x4f\x95\xf7\x7a\x7a\xbf\xd0\x1c\x23\x8b\x3b\xa6\xad\xf6\x56\x1c\x60\x72\xb8\xdb\x51\x3f\x4a\x39\x79\x0a\x8a\x6f\xa9\xd6\x28\x3c\x82\x08\x77\x99\x94\x5f\x91\xde\x5e\x61\xfa\xe1\xaa\x3d\xaa\x62\xe6\x98\x2a\xd1\x48\x09\xff\xdf\x57\xeb\xbe\xc5\x16\x85\x72\xab\x61\x36\xdc\x76\x8d\x98\x7c\x19\x4f\x26\x83\xa0\x86\x5f\xa2\x85\x43\x77\x50\x97\xfb\x5b\x6b\x12\x82\x78\xd8\x47\x44\xf4\x31\x34\x21\xda\x6d\x75\x57\x73\x5c\x46\x6b\xd4\xaa\x3f\x5f\xb4\xf4\xf9\xa4\x78\x96\x8b\xb7\x4d\x78\xd4\x0f\xef\x29\xe1\x1e\x8f\x17\xf4\xd9\xb3\x6e\x69\x14\xe4\xab\x8e\x05\x0b\x1a\x4e\xd6\x2a\xde\xde\x8b\x57\x4b\x3d\xce\x35\xf0\xd6\xb6\x54\xde\xbd\x63\x27\x0a\x47\xe1\x11\x98\xb4\xc2\x70\xcf\x4f\x45\xcc\x21\x04\xf4\x10\x16\x03\xce\x04\x81\x1a\x88\xdb\x62\x72\x31\x57\xb0\xa8\x5b\x37\x73\xa6\xe5\xd2\xe0\x47\x5a\xdf\x48\x46\xdd\x2a\xa0\xa4\x19\x87\x05\x94\x9f\xa6\x01\x5d\x15\xa7\x1c\x65\xef\x54\xfd\xa4\x56\xaa\xba\x13\xe6\x4c\xcb\x05\xaa\x03\xc3\x3f\x2c\xa2\x0a\x21\x9e\x35\x1b\x1b\x84\xb2\x9c\x75\x14\x17\xb7\xb5\x17\x5d\x7d\x12\x62\xdf\xdd\x9f\x49\xed\x5f\x3f\xd0\x9d\x63\xa6\xba\xee\xcf\x34\x25\x6e\xd1\x28\x71\x85\xb8\xde\x24\x71\xbd\x7d\x46\x5c\x1f\xf2\x6e\x77\x6f\x92\x90\xdc\xf3\xc9\x2f\x7a\x11\x47\xda\x20\xb1\xd9\x3d\x50\x00\x29\xb2\x8a\x9c\xec\xcf\xef\x67\xd6\x9a\x42\x6c\x6a\x91\xb1\x77\xca\x20\xdd\xb7\xb4\x2c\x71\x07\x99\x64\xdc\x5c\x2a\xc7\xd4\x63\xca\xc0\x1c\x53\x92\x4a\x93\x54\x34\x0e\x1a\xd9\x93\x1f\xa4\xe0\xb5\x1c\xe2\x26\xd6\x2b\xb2\x2e\x0f\x94\x59\x2d\x0c\x50\xdb\x9a\x4d\xdf\xad\x59\x53\x2d\xab\x58\xe3\xfb\xea\x54\xcd\x5a\x88\xb7\xa3\xae\x6a\xed\x46\x39\x94\x74\x40\xdc\xee\xf3\xa4\x17\xd9\x50\xa4\xdb\x18\x8d\x32\x7b\xdb\xb6\x43\x0b\xc5\x9d\xd4\xea\xe4\x43\xb0\x38\x3f\x79\xbe\xe8\x43\xb0\x02\xb4\x9c\xcc\xe6\xc5\xee\x1e\x8d\xa0\xb9\x87\xed\x93\xae\xf7\xba\x79\xd2\x0c\x60\x15\x5c\xac\x43\xa5\xd6\xe1\x00\xcf\xa6\x5b\x88\xc4\x3d\x42\x4b\xae\xce\x06\x28\xe4\x27\xec\x54\x94\x0d\x27\x85\x06\x9d\x23\x23\xe9\x7c\xd6\x37\xe2\x4e\xbc\x1e\xfc\xb1\x65\x19\x9b\x65\x39\x24\x75\x5d\xff\x0a\x99\x3f\x68\x16\x9e\x6b\x10\x1c\x7c\x80\x81\x75\x53\x57\xe3\xab\xea\x8c\x42\x5a\x8c\xf8\xd1\x6b\x8d\xcc\xb2\xb2\xd9\xc4\x22\x6c\xa9\xcf\xa3\x80\x96\xb6\xac\xdd\xcd\xe3\xb5\x51\x5c\x38\xb5\x34\x33\x33\x79\x6d\xb1\x07\x8b\x71\xde\x07\xf0\x4e\x14\x2f\x55\x07\x10\xac\xf7\xe5\x8b\xa3\x39\xa3\x8b\x9b\xf6\x00\xef\x37\xfa\x6d\xca\xff\x12\xa9\x07\xf5\xf3\x44\x87\x23\x69\xa0\x70\x40\xf3\x08\x9a\x87\xd9\x1f\x9f\x07\x92\x82\x77\x70\x80\xbd\x1f\x84\xee\xe9\x9d\xee\x42\xcc\x14\x01\xad\xde\x5d\x6a\xf6\xbf\x32\x58\x3e\x39\x81\x60\x66\x5e\x97\xec\x12\x62\xb4\x87\x76\x82\x78\x21\xd1\x45\xcf\xa4\x1f\xf9\x2c\x99\xc6\xde\x56\xd1\xd1\x6d\xea\x24\xe7\x7d\x9b\xcd\xb7\xd4\xfd\x3e\x8c\x17\xf8\x7e\x76\x75\x6a\x8d\x42\xb6\xa1\x1d\xe5\x2d\x66\x63\xa1\x73\x3a\x17\xc7\xb2\xa4\xd4\x47\x93\xe4\x7f\x60\x43\x03\xa6\x45\xb4\xbc\x80\x9b\xdf\x70\x80\xfa\xa0\x45\xf3\xd4\x69\x6a\x4e\x0a\xbb\x7b\x03\xd2\xbe\x75\xe1\x58\xe7\x7f\x13\xba\xa8\xab\x74\x5d\x14\xec\x0c\x93\x4e\x42\xeb\xce\x5b\x50\x39\x98\xc1\xb1\xb3\x39\xa1\x1c\x55\x4d\x15\x7d\xb7\xf6\xa4\x05\x24\xb2\x05\xcd\x32\x49\xa9\x84\xa8\x9f\xe5\x6d\x52\x5b\x9b\x25\x6d\x6d\xc6\x17\x28\xf7\xae\x40\x79\x18\x50\x3c\xed\x2c\xa5\x6b\x62\x99\x1e\x01\xe9\xf0\xfd\x38\x0c\x16\x4f\xeb\x1c\x33\x3c\x37\xc0\x33\xde\x8a\xa0\xe2\xb3\x75\x1e\xd4\x02\x9d\xfa\x1e\x2b\xef\x06\xe0\x5f\x11\x62\x72\xb1\x4b\x64\xcd\x26\x9f\xd7\xe4\x1d\x6a\x75\x4d\xb8\xc0\x5e\xfd\xbd\xb0\x1e\x2c\x1c\xac\x99\xda\x4f\x70\x22\x80\xc4\x53\xa0\x38\xbf\xb4\x71\xd1\x4f\x1f\x37\x96\x73\xc9\xae\x12\xcc\xaa\x8c\x1e\x6e\xa5\x1b\x94\xd0\x9a\xb6\xc8\x9d\x50\xb8\x2e\xa0\x79\x63\x91\xe2\x80\xfa\x88\x76\x19\x78\xd1\x63\xca\x84\x65\x80\xcd\xdd\x0d\x4e\xe4\x55\xe3\xe9\x42\x91\x43\xdd\x65\x31\x33\xa3\x2e\xd6\xa2\x57\x50\x1a\x90\xf5\xe1\x96\x26\x83\xa5\x97\x15\x0a\x07\x38\x19\xe1\x31\x2c\x41\x18\x75\x4a\x91\x66\xab\x6b\x61\x16\x6e\xfc\x70\xee\x60\x5e\xeb\x68\x4a\x3d\x69\x50\xe3\xc3\x00\x8f\x31\x94\x3a\x92\x61\xd8\x01\x9b\xd0\xf2\x67\x47\x35\x15\x13\x03\x29\x36\x98\x09\x97\x6e\xec\xf8\x9b\xf9\xb7\x64\xba\xcd\x34\x90\x6e\x44\x97\x74\x91\x9e\x71\x2f\x8a\x28\x60\x3f\xb4\x75\x5a\xe1\xbe\x19\x07\xd2\xdc\x79\x50\x43\x8d\xf3\xc9\x5d\x88\x4c\x40\xed\x0d\x5f\x08\xaa\x34\x35\x0b\x67\x73\xd4\xf5\xf5\x0b\x24\xbc\xb8\x3c\x57\xaf\xd9\x06\x08\x40\x6d\x72\xe2\x01\x1e\x9c\xb8\x89\xab\xe6\x93\xd7\x7e\x3d\x2d\x3e\xc3\x44\x55\x36\x49\x95\xfb\x93\x3e\xcc\xda\x76\xd7\x67\xf6\xb0\xa8\x18\xac\x91\x57\x6c\x91\x03\xe0\xc6\xa9\xda\x1b\x48\x1e\x10\x2e\x02\xf4\x8a\x22\x65\x33\xad\x14\x68\x77\x18\x60\x19\x46\x16\x08\xf3\x01\x68\x28\x5f\xc1\xbe\x95\x17\x1e\x6f\x58\x43\xe0\x96\xcf\xa0\x97\x8c\xf6\x81\xd8\x5e\xfe\x1f\x7b\xef\xd6\x9d\xba\xce\x2b\x0c\xff\x20\x18\x83\x33\x94\x4b\xdb\x31\x69\x9a\xd2\x94\x52\x4a\x99\x77\x3d\x4d\x20\x40\x38\x85\x70\xf8\xf5\xdf\xb0\x24\x27\x4e\x08\xb4\x73\xad\xf5\x3c\x7b\x7f\xfb\x5d\x37\x73\xd2\xc4\x76\x64\x59\x96\x64\x59\x07\xeb\x1e\xcc\x24\x28\xae\xde\xe8\x05\x9c\xe3\xe5\x23\xd0\x82\x7d\xc8\x53\x32\x6c\x36\xe1\x1b\x35\xc7\x47\x56\x14\xac\xcc\x95\xb8\x5c\xf0\x98\x44\xc6\xb5\xd8\x1b\x5a\xbc\x53\x30\x1c\x19\x5a\x46\xbf\xfd\x5a\xaa\x51\x3f\x3c\x59\x89\x30\xd9\xa2\x11\xa2\xbb\x3a\xa0\x19\xd9\x07\x07\xca\x50\xac\xd3\x7d\xd0\x8f\xc5\xef\x21\xf3\x15\xc0\x5a\x0e\xc8\xde\xe0\x06\xe6\x61\x99\xfa\x6b\xb3\xb6\xe2\xbf\xe4\x0b\xe8\x24\x99\x01\xd5\x21\x34\x25\xd1\xa0\x8a\x48\x8f\x42\x20\x55\xdf\x39\x78\xc3\xf5\x32\x53\xec\x8b\x58\x26\x84\x60\x61\x2a\x80\x88\x43\x03\xb6\x0e\x30\xc4\x7b\xe8\x79\x8f\xe2\x1d\x21\x18\xa8\x97\x31\x86\xcd\x6b\x17\x66\x28\x29\x84\x6d\x90\xc5\x6e\x7f\xb3\x25\xf7\x37\x38\x56\xde\x08\x03\xe6\xd5\xff\x2c\xcc\x6a\x67\x28\x9c\x3b\x90\x6b\x5d\xc1\x9e\x41\xb7\x9d\xc4\xde\x05\x3d\x03\xee\x48\x24\x26\xdd\xe1\xa4\x96\xbb\x46\x4e\x7a\x79\x42\xa3\x68\x04\xf4\xeb\xaf\x26\xe8\xa4\x04\x0b\xba\x44\x77\xdb\xfe\xa6\x09\xe0\x80\x6a\x13\xaf\xfe\xb2\x96\x38\x10\x3a\xab\x89\x2c\x7a\x6c\x34\xe7\x63\xd7\x7c\xd9\x33\xa2\xe0\x4e\x12\x4d\x53\xda\x53\xad\x30\x96\x40\xe7\x15\xa8\xc0\x34\x89\x9f\x8f\x27\x12\x27\x08\xcc\xbe\x4d\x05\xea\xd0\xab\xb5\x2e\xf1\x66\x7e\x8c\x31\xa4\xa7\x31\x1e\xbb\x66\xd8\x05\x22\x45\x92\xa3\x53\xc3\x02\x76\x49\x47\xa7\x14\x44\x5e\x6b\x49\xa7\x19\xcc\x7a\xf2\x96\x75\xb3\xc3\xa2\x24\xce\xfc\xce\xfc\x7a\x01\x7c\x37\xdf\x56\x68\x52\xa6\x09\xd8\x1b\xf3\x7a\x6e\x2c\xb3\xc2\xee\xdd\x9c\xd4\x70\x55\x32\x6e\x9a\x2a\x22\xfd\x32\x18\x63\xb5\xd8\x2d\x8c\x82\xe6\x80\x1e\xab\xd4\xac\x2b\x13\x48\xf9\x61\x55\xf0\x6e\x74\x6e\x55\xdc\xd4\xc0\x6d\x7d\x27\xec\xc4\x37\xe6\x9e\x0e\x2e\xca\x1f\x36\xed\x85\x55\xc3\x71\xc9\xbd\xa5\x75\x97\x33\x31\x25\xb0\xc0\xc9\xc7\x41\x57\x40\xb8\x1b\x68\xdd\xc1\x55\x6d\xba\x65\x6d\x75\xe6\x85\xd5\xc6\x99\x92\x2d\x31\x1f\xa2\x55\x68\xd8\x81\xca\x08\x50\x43\x44\xed\x14\x31\xf5\xe7\x55\x88\x39\x78\xa1\x06\x9d\xb4\xb1\x89\x7d\xc4\x3e\x5f\xfd\xd8\xe4\x74\x01\x01\x2b\x9e\xf0\x87\x16\x45\x8c\x48\x3c\x5d\x11\x76\xe3\x6f\xa2\xe6\xe4\x6c\x74\xac\xb6\x24\xb3\x40\xff\x3a\x8e\x8f\x73\xe3\xee\x42\x7b\xd0\x38\x88\xe8\x0b\x9f\xc0\x88\xa8\x2e\x2c\x23\x68\x16\xa3\xeb\x9f\x98\x2e\x8d\x59\x54\x28\x5a\x0e\xcb\x58\x7b\xf5\xb6\xa1\x1d\x38\x93\xbb\x22\x39\xf1\xa2\x89\xff\x15\xa9\xb7\xb4\xc2\x93\x0d\xf4\x11\xaf\x69\xa8\x4a\xc4\x53\x76\x18\xb2\x89\x07\x3f\x9c\xfa\xe0\x1b\xf4\xae\x57\xc6\xdc\x4b\x5d\xdd\x1d\x8a\xae\x66\xd7\xf4\x6f\x7c\xa6\x1a\x18\xdb\x7b\x45\xf3\x2f\x20\x6d\x84\x67\x1f\x3a\x1d\xa8\x42\xa6\x8c\xdb\xa1\x9f\xee\xf7\x1f\x6a\x06\xc6\x36\xa4\x8b\xbb\xee\xf4\x44\x8a\xf5\xa5\x0f\x4d\x3a\x71\x3b\x4d\x97\xa3\xb3\x0f\x0d\x90\xec\x87\xea\xc0\x12\x11\xeb\x31\x78\xa4\x98\xf3\x49\x8a\x21\xc5\x96\x75\x6f\x5b\x80\x13\x59\xc4\xc3\x02\x5d\x23\x75\x12\x37\x7a\x36\xf4\xa1\x8e\xaf\x7b\xa4\x7d\x79\x48\x31\xcf\x4a\x2e\xf3\xc4\x68\xb4\x70\x45\xfe\x1d\x26\xf3\x3c\x4d\x61\x77\x4c\xac\xe4\xd4\x24\xcb\x53\x09\xe7\xc9\x4a\x1a\xc0\x8a\x52\x7e\xba\xa8\xe0\x41\x4c\xce\xa8\x36\xc5\x02\x84\xd3\x09\xc9\x84\x66\xca\xeb\xb1\x76\x1b\xbf\x1d\x30\x36\xf2\x27\x66\x6b\xb1\xb2\x30\x8d\xc2\xb0\x41\xa3\x68\x3c\x1c\x72\x47\x51\x6f\xd5\x28\xa5\xb1\xd9\x5a\x04\xd6\x44\x33\x6f\xbd\x07\x9e\x71\x16\xe8\x6c\xb5\xbf\x8f\x4f\x73\xcf\x47\x50\x30\xd9\xa0\x0c\x36\xd1\x97\x06\xd0\xf2\xa0\xc9\xc1\x3b\x27\x91\x06\xa5\x7f\x44\x1a\x28\xcd\xfa\xf3\xbd\x28\xd8\x98\xbf\x00\x9b\x2c\x5f\x5b\x93\x3c\x79\xe0\xff\x15\x79\x90\x1e\x36\x57\x1e\xac\xfe\xbb\xf2\x20\x0d\x51\x9e\x3c\xa8\xfd\x93\xf2\x20\x83\x80\x8b\xf2\x00\x63\x0f\x9d\x12\x70\xd5\x5e\x9a\x43\x76\xf1\x72\x10\xe2\x9e\xe8\xd4\xb3\xc4\x23\xda\x73\x8b\x4a\xb3\xc7\xb1\x1d\x3d\x72\x3e\x24\x6a\x9d\xdc\xd2\x91\x2f\x8e\xec\x78\xc5\x08\x75\x75\xd2\x5f\x38\x30\x0b\xca\x10\xa1\xcd\x16\x4a\xf7\x0c\x3d\x54\xeb\x25\x45\xc4\xf7\xd9\xcd\x35\x72\xb9\x28\x83\xec\x95\x11\x89\x33\x0d\x63\x77\x29\xb4\x02\x59\x6d\x32\x84\x22\x7f\x70\x2b\x4e\x51\x57\x26\xb3\x7f\xeb\x92\x64\x71\xb4\x48\x72\xb4\xaf\xa2\x94\x41\x41\x79\x02\x6a\x78\x85\x72\xe4\xd7\x10\x27\x2e\x23\x6e\x8c\x21\xc3\x76\x10\xa2\x98\xf2\x73\x50\x18\x65\x51\xf8\x58\xcd\xf4\x6a\x01\x88\xbf\x8a\x5d\x26\x19\x54\xcc\x67\x6e\xa1\x9b\xa1\x49\x19\xe0\x1d\xc7\xd6\xbe\x84\xf9\x32\x8a\x4a\x80\x2e\x44\xdb\xad\xb6\xbf\xe4\xe3\xfe\x07\xc2\xf9\x74\x26\x3a\xb0\xdc\xbf\x6e\xed\x9b\xfe\xaa\xe0\xc3\x2a\x43\x41\x7d\xef\xf2\x68\xbd\x96\x2f\xcc\xd2\x80\x5d\x16\xce\x81\x61\x4a\x28\x61\x28\x92\x57\x80\x38\x7f\xf1\x19\x95\x7f\x0c\x69\x81\xf0\x52\x82\x10\x22\xbb\x21\x48\x24\xff\x75\x90\xaf\x09\xfa\xcd\x19\x12\xb1\xf1\x70\x85\x37\x32\x1b\xfe\xb7\x3f\x9f\x12\xff\x0d\x88\x60\x72\xd7\x77\xa8\x65\x24\x18\xab\x9c\xfb\xa1\x51\x8d\xeb\xb8\xc0\x3a\x15\x47\x7c\xcf\x03\xb7\x02\xe3\x3a\x1b\x38\xf2\xdb\x35\x5e\xbe\xf9\x06\xea\x73\x5d\x62\xcc\x71\x9f\x0e\x99\x08\x78\xeb\x47\xca\x44\x36\x28\x3b\xac\xe5\x0d\xe9\x35\xae\xc8\x9f\xbf\x74\x1e\xc9\x8c\xfb\xbf\xe1\x40\x92\x01\x29\xff\x44\x82\x7a\xba\xbe\x42\x8f\x55\x89\x84\x0a\x48\x91\x38\x98\x0c\x4f\x04\xbc\x44\x4a\xcd\xfe\x1e\xaf\x12\xc0\x06\x4d\x7a\x86\x3f\x4e\xad\x49\x3f\xc2\x72\x81\xdd\x5d\x05\x8c\x4a\x03\xe4\xd7\xda\xd4\x94\x5e\x39\xc9\xa4\xcf\x1b\x8d\x24\xaf\x90\x01\x4a\x68\xff\x03\xfa\x09\x88\x4f\x3c\xac\x32\x39\x7d\x4c\x74\x48\x4c\xa9\xf2\xb2\x6b\xff\xb1\xe8\xcd\xae\xfd\x95\xb3\xd8\x65\xd9\x8b\x48\x92\x15\xfe\xbf\x41\xea\x66\x66\x74\x59\xec\x6e\xfe\x47\xc5\x6e\xa4\x0b\x53\xfe\x1f\x11\xb8\x19\xb4\xff\xfc\x38\x8c\x45\x27\x87\xf9\x1b\x4f\xb4\xf8\x21\x0f\x6f\x31\x3a\x62\x79\x6c\x33\xb9\xc2\x25\x78\xcd\x3d\x5a\xe4\x6d\x76\xf4\xb0\xe8\xc0\xef\xd5\x18\xb3\x3f\x89\xfd\xed\xff\xf4\xfe\xfd\x13\xe1\x98\x41\xfb\xb5\xc3\x7e\x2e\xbb\x94\xe7\xec\x32\xd6\x32\x70\xd5\xfe\x98\x4d\xaa\xf7\x87\xfb\x58\xeb\x50\x22\xc1\xfa\xc9\x22\x9a\xaa\x8a\xc3\xec\x8a\x92\x39\xff\xe5\x95\xf0\x98\xbc\xfd\xfb\x8b\x70\x51\x43\x1a\x30\x51\x3a\x3b\x37\x11\xf3\xf4\xff\x8a\x6a\x94\xf9\xf0\x65\xdd\x28\xfa\x53\xdd\x08\x92\x4b\xa5\x75\xa3\x56\xd7\x54\x8a\xa2\xef\x95\xa2\xa9\x88\x01\x5e\xd7\xad\x4c\x00\xdf\x09\xc4\x30\x5c\xbc\x61\x05\xfa\x29\xc6\x15\x0c\x71\x91\xeb\xa9\x7e\x23\x49\x12\x5f\x21\x21\xca\xbc\x6b\xd1\xec\xc7\x6b\xd3\x5d\x06\x8b\x51\x5b\x71\xd4\xb9\x73\xca\x74\x73\x01\x83\xc1\x14\x9d\x96\x67\x60\xd0\x10\x90\xf5\xce\x63\xd9\xb6\xfa\x13\x8b\xf5\x59\x80\x13\xb8\xdd\xf7\x7d\xd9\xb8\xd0\x65\xbd\x3e\x8b\xcc\x11\x9a\x97\xf6\x4b\x56\xe9\x42\xb7\x7d\x6a\x32\x9d\x74\xbf\xe1\x44\x66\xfb\xc9\xe4\x5a\x08\xe2\x00\x46\x01\x5c\x9b\x8b\x93\xa0\xc8\xb5\xea\x14\xc5\x04\x44\x44\xd7\x70\xd6\xee\xd2\x2e\xea\xea\xe5\xbf\x56\x18\x7f\x58\x9f\x4a\x64\xdc\xe0\x02\x40\xed\x9a\x64\x5d\x2a\x4a\xe6\xae\x78\x8b\x9e\xde\x4c\x51\xfb\xb9\xc3\x5b\x05\x64\x29\xfa\x92\xa3\x5f\xf4\xe2\xda\xb9\xa0\x59\x43\x62\x0c\xd6\xdf\xd7\x81\x25\xf8\x46\xfc\xe6\x08\x23\x0f\xa0\x2d\x90\xd4\x43\x31\x93\x60\x32\x95\x74\xf2\x16\x3b\xa1\x24\xdf\x7c\x10\x9a\x5c\xe6\xa0\x92\xd8\xdd\x7d\x80\x94\xf1\xfd\x14\x94\x14\x8d\xc6\x4b\x04\x7c\x01\x8c\x68\xac\x5f\x9a\x9e\x37\xc3\x8a\xec\xce\x0a\x74\x67\x11\x88\x9a\x8c\x51\xe8\x31\xf1\x68\x60\x4f\x29\xa5\x19\xc4\xc1\xbe\x1a\x91\x47\xb5\xbb\x49\xa4\xa8\x87\x99\xff\xaa\xa8\x7d\xba\xad\x5f\x18\x66\xbc\xb2\xcc\xef\x0f\x82\x82\x55\xec\x32\xb7\x4d\xe8\xec\x51\xe5\x0c\x36\xe3\xf5\x0e\xfc\x55\x45\x04\x06\x38\x59\xbc\x48\x09\x32\x73\x75\x50\x74\xce\xe9\xf1\xcc\xc7\xb9\xce\x73\x9a\x91\xaf\x39\xc0\xd4\x45\x37\x38\xf4\xdd\x03\x7c\xdd\xae\xfc\x3f\x99\x3b\xdc\x91\xf5\xd4\x28\xa1\xd0\x3d\x63\x82\x52\x7f\xd4\x16\x18\x47\xeb\xdf\xf0\x98\xb0\xa6\x3c\x5e\xba\x1e\xe2\x2e\x03\x26\xe4\x48\x9a\x88\x90\x1e\x6f\x7d\x24\xbb\x30\xa7\x19\x96\x9a\x8f\x04\xa0\x88\x6d\x7e\x0a\xc2\x87\x3a\xcc\x17\x25\x2b\x58\x6c\xd5\x48\x6f\x2c\x0c\xe0\xe9\x25\x24\x54\x32\x12\x45\x60\x86\xa1\xb7\x39\x7a\x41\xf0\x03\x21\xa7\xea\xe3\x76\xb1\x30\xd1\x40\x85\xc0\xd8\xfb\x68\x0e\x65\x78\x52\x38\xe8\xd5\xe9\xc0\xdc\xb7\x10\x02\x22\xde\x8b\x82\x7d\xb0\xa2\xc7\x7e\xb1\x29\x3a\x67\x58\x71\x27\xe1\x63\xc0\x91\x6b\xc3\x74\x82\x66\x1e\xa8\x5d\xd8\x24\x1b\x81\xb9\x47\x1c\x60\xbb\xab\xfc\x96\xdd\xe2\x48\x71\x08\xd4\x70\x81\x1f\x0e\x36\xf9\x2d\x3d\x1c\x13\x45\x0a\xc6\x50\x84\xf9\x2d\x7b\x38\x26\xb8\xcc\xb8\x1e\x46\xd6\x29\x4e\xcc\xd1\x55\xa3\x97\x3a\x2f\x09\x1f\xd3\x46\xb9\x87\x0d\x06\xe1\x1d\xea\xe4\x4c\x85\x1e\x36\x7b\x99\xf7\x89\x70\x03\x49\xa9\x36\xd6\x7e\x83\x18\xaa\xf9\x12\x40\x42\xe5\x3b\xdd\x5c\x06\xa2\x9d\xbb\xa4\xdd\x21\x48\xad\x09\xad\xd9\x6e\x22\x31\x2f\x6c\x9c\xfd\xd3\x65\x93\xfc\x29\x0e\xf5\x19\xde\x0b\xc4\xe9\xf2\x1a\x90\xf2\x8b\x01\xa3\x5a\x1c\xc5\xd9\x82\x47\xc1\x0c\x3f\x3c\x9d\xd1\xb1\x14\x2f\xb4\xf7\x9c\xb1\x32\x64\xc6\x93\x54\xee\x9f\x1c\x63\x50\x8a\x4d\xec\xd4\xe7\x76\x78\x2b\xbb\xc1\xb1\xba\x8b\x99\x4c\xbe\xb6\xb2\x56\xa9\x4f\xb0\x3e\x70\x81\x11\x8e\x27\x2a\x9c\x12\x25\x8c\x67\x78\xd5\xdb\x26\x79\xbc\x7b\x88\x53\x48\xb8\x2c\xf3\x3d\x83\x70\x48\x98\x77\x93\x0f\x6e\xfe\xcb\xd3\x6b\x8d\x65\x2a\x8e\x1e\x25\x73\x15\xdd\xe8\x9a\x65\x8b\x6a\xa8\x4b\x36\x64\xad\xcb\x64\x4d\xcb\xe4\xd2\xbd\xbe\x22\xbb\xe0\x0c\x6f\x89\xed\xa4\x72\x99\xec\xd9\x07\x5c\x1d\x91\xff\x0d\xed\xee\x31\xce\xff\x13\xf3\x1f\x45\xf9\xbd\x43\x24\xff\xc1\x76\x6b\x28\x70\x14\x5c\xb5\x92\x68\x9e\x4c\x14\xb8\xc3\x94\x6c\x3a\x90\x03\x4e\xfc\x5a\xe9\xf8\xdc\x77\xd0\xc1\x29\xd9\x00\xfa\x07\x75\x31\xa9\x60\x63\x81\x07\xb8\x3d\xa5\x8d\x3b\xc0\xff\x12\xd4\x9d\x1d\x67\x41\xff\x1a\x54\xa5\xa3\x61\x7d\xd9\xb6\xe3\xa3\xe0\x94\x87\x67\xfa\x4b\xa6\xeb\x6e\x6b\x9c\x47\xfc\x8c\xfa\x33\xe5\xfe\x99\x1e\x93\xe9\xbf\xdf\xf2\x24\x77\xe3\xfc\xac\xff\xfc\xac\xff\xce\x48\x6f\x8b\x81\x31\x8f\x31\xc9\x38\xc9\x8e\x28\xcf\xd0\x10\xa7\xb0\xe3\xce\x79\x85\x1e\x2f\x70\xc1\x87\xf0\x78\xc2\x35\x1d\x6c\xe9\x31\x50\xd6\x70\x4e\x20\x39\xc0\x0a\x28\x36\xd2\x3e\x58\xba\x75\x75\x26\x51\x27\x79\x84\x44\x91\xa8\xb9\xd7\x9a\x79\x70\xba\xab\x2d\x1d\x19\xb6\x3c\x51\xe0\x36\x49\xda\x4c\x29\xa3\x69\x6a\xd4\x8f\x08\xf3\x83\x2e\x20\xa7\xaa\xb7\x55\x2b\x23\x1e\x81\x9f\x86\x88\x1e\xcc\x5e\x05\xba\x42\xcf\x06\x4d\xc1\x4a\x8c\x04\x35\xd0\xf5\x1e\xe9\xe2\xf0\x4d\x89\x86\x75\x1a\xb0\xb1\x4e\x7e\xf6\x46\xdb\x41\x76\xd0\xc7\xc9\x03\xb7\x35\xd6\x2b\x36\x39\x63\x05\x1e\x3c\x81\xc9\x47\x20\x7d\x41\xce\x72\xab\x43\xbf\xf1\xe6\xf3\x00\x21\x7f\x22\xe4\xe3\x26\x37\x07\x08\x9e\x8a\x49\xba\xd3\x13\x65\xd9\x52\x1f\x6a\xf1\x29\xea\x46\x67\x2d\x7b\xcc\x09\xf9\x1e\x38\xa9\x57\x16\xe8\xc8\x8d\x40\x55\x09\x28\x34\x4c\x50\xb8\xf7\x1b\x3b\xb5\x72\x94\x7d\xdc\xe8\x18\x0c\x8b\x32\xdb\x69\x0b\x2d\xb3\xcb\x24\x43\x60\xe9\x83\x58\x66\xd3\xe1\xa4\x8e\x67\x26\x88\x30\x77\x58\x37\xd2\xd9\x3a\xf6\xa8\x45\xba\x0c\xd3\x82\x90\x58\x73\xfd\x58\x15\x58\xcc\xc9\x42\x68\x03\x41\xcd\x49\x7b\x9a\x4b\x34\x27\xd9\xcc\xfd\x5c\xd1\xc3\xf5\x9c\xd2\x10\xba\xac\xeb\xf3\x0d\x3d\xdd\xea\x01\x5c\xe6\x4d\x78\x48\x4f\x77\x73\x19\xeb\xbd\xde\x86\x47\xf4\x78\x3f\xc7\x49\xe0\x1c\x0e\xf4\xf4\x88\x5f\x53\x48\xb2\xdf\x4f\xf4\xb0\x3c\x27\x53\xb4\x84\x5c\x62\x92\x75\x99\x7f\x93\x77\x42\x9a\xaf\x29\x4e\x1e\x0b\xa2\x8f\xe6\xd4\x2a\x9b\xac\xe9\x8b\xb9\x25\x4b\x27\x6b\xca\x1f\xa2\x1a\x1a\x07\xe3\xa0\x4a\xbe\x01\x24\x86\x08\xa0\xa1\x56\x8b\x50\x0c\xc1\xf6\x91\x59\x31\x94\x1e\xb6\x1e\xc6\x5c\x53\x34\xd0\x78\xce\x46\x4b\x0e\xc8\x2d\x3a\xec\x0e\x4d\x7c\x68\x92\x18\xa0\x35\xe3\xab\x4d\x68\xa8\x02\xd2\x45\x9b\x3b\xf1\xd9\xf5\x13\x0d\x52\x98\xac\x71\xf8\xaa\x94\x43\x9f\x07\xeb\xb3\x7c\xe8\xcb\x2d\x2a\xdf\x8a\xa7\x28\xf4\x8e\xeb\x3c\xeb\x0e\x1d\xac\x91\xf2\x77\x78\x34\xee\xaf\xb6\x10\xc4\x49\x8e\xdb\x65\x88\x2b\x64\xa3\x90\x2e\xcf\x09\x16\x0a\x3e\xdf\xdc\xab\xfd\xb9\xe0\x51\x03\x82\xd4\x30\xda\xd2\xdd\xa1\x2e\xd3\x6b\xa1\xab\xa0\x8b\x01\xe1\xe5\x32\x18\x17\x36\x90\x74\x0a\x33\x61\x90\x58\xa5\x57\x6c\x04\x96\x7b\x51\x51\xec\xd8\xb9\xd3\x5f\xac\x13\xce\x69\x2d\x26\x7c\x5b\xa5\x54\x9b\xb1\xf3\x5c\xac\x0e\x7d\xb1\xf0\x2a\x7d\x8c\x77\xe6\x89\xb5\x76\x0f\xc9\x44\x0c\x13\xeb\xf1\x5e\x63\x58\x3e\xcf\xe7\x67\xd7\xf5\x3a\x33\x60\x9e\x8e\x16\x4e\xa5\x91\x34\xc0\x9a\xcd\x61\xd3\x7d\x95\x68\x0d\x9b\x48\xf5\xa3\xd5\xcd\x15\x3d\x6f\x03\x67\x20\xe1\x8b\x63\x43\x4d\xd1\x03\x31\x7d\xe7\x1e\x21\xee\xe8\x56\x0f\x85\xdb\xdd\xa1\x04\x9d\xc5\xbd\x60\xac\x2c\x6e\xaa\x98\x14\xc0\x3a\xde\x6b\x64\x74\xbf\x41\xc6\x74\x67\x24\x34\x14\x1b\xab\x41\x79\x49\x9a\xf8\x7f\xd7\xaf\x0a\x34\xfa\xa8\x89\xec\x60\x3a\x81\x6c\x20\xe9\xf6\x1a\xc8\xbc\x8b\x33\x8b\x89\x2d\xb4\x08\x45\xbd\x93\x7e\xc5\x99\x33\xe7\x3a\x4d\xb9\xfd\x0c\x4c\x88\x12\x00\x2b\xde\xf0\xc5\xec\x07\xbf\x4d\x06\x15\xd0\xd6\x1d\x93\x6f\x7c\xbc\x41\x3a\xc8\x89\x95\xb8\xff\x22\x3b\x2d\xf6\x15\xc5\x7b\xec\xd9\xd9\x2c\x52\x9c\xe6\x63\x4e\xe7\x03\xca\x33\xa6\x1f\x7f\x29\xba\x9b\x5b\x96\xee\x2d\x9f\x75\x47\x42\xe5\x91\x72\x74\x63\xfa\xc9\x9b\x1b\x6a\xf9\xa5\x0e\x52\xd9\x6f\xb4\xc9\x87\xb9\x89\xe4\x1c\x89\x70\x96\x37\x16\x5e\x5f\xc1\x69\xce\x23\x84\xa2\x13\x25\x61\xb5\x25\xe6\x7b\x9e\x1a\xf8\x01\xfe\xf5\xd3\xcc\xf3\xe3\x1e\x71\xe9\x30\xb9\x51\x88\x78\x57\x62\xf4\xe3\x8a\xfc\x88\x57\x77\xbb\x33\x1c\xc9\x45\x60\x81\xbc\xb6\x95\x0c\xe8\xdf\x1f\x16\x19\xbe\xad\x76\x6d\xa9\x01\x4b\x33\x88\x36\xdc\x60\xf5\x72\x25\x36\x69\xba\xdb\x43\xf6\x2c\xf1\x1c\xa6\xa4\x8f\x73\xc2\x5e\x9b\x8e\x29\x3c\x3c\xc5\x28\x41\x88\x8c\xd4\xce\x6f\x70\x53\xde\xf4\x23\xe3\x65\xa4\x5f\x1e\x17\x70\x2e\x7d\x3b\x19\x30\x0e\x99\xdc\x08\x2d\x56\xca\x0b\xb5\x93\xe4\x3d\x0d\xed\x1d\xfd\xf8\xe0\x2c\x7d\x5e\x5b\xa4\x44\xe5\x28\xe4\x64\x99\x58\xc1\xfe\xfc\xed\x8b\xc5\xad\x19\xc2\xb3\x5b\x48\x5d\x74\xa3\x6e\x65\x8c\xdd\x70\xf1\x30\xe6\x20\x2e\x7a\xda\xf7\xe9\x82\xd4\xd8\xa5\x5c\xed\x37\x68\x0b\xc4\x1c\xeb\x51\x5a\x7a\x8f\xb0\xb2\xdd\x07\x6e\x16\xfd\x52\x09\x69\x47\x89\x06\x2b\xd1\x99\x58\xf7\x0e\x06\x27\x9d\x52\x37\x6d\x2e\x24\x65\xfb\x8a\x55\xa6\xc9\x33\xa8\x4c\x2d\xf2\xd9\xca\x90\xf5\x4e\x30\x21\xb6\xa8\x43\xa1\x4a\xd3\xeb\xa4\x7e\xc3\x68\xba\x73\x2c\x89\x21\xf8\x4f\x28\x65\xcd\x66\x0f\x0e\xa5\xe9\x9f\x43\x80\xfb\x60\x86\x61\x5b\x3b\x89\x69\xbd\xdb\xb9\xfb\x69\xdc\x30\xfa\x88\xdf\xd4\x47\xa7\xad\x77\x99\x38\xc5\xba\x42\x86\xa7\xe1\x29\xe9\x60\xa5\x28\x02\xf9\xb1\xea\x3f\x64\xa2\x65\x85\x79\x64\x29\xef\x7f\xe7\x80\x59\x15\x08\xe6\x7c\x9e\x52\x78\xfa\xda\xfc\xb6\x1e\xe3\xf5\x21\xd7\x28\x2e\x2c\x64\x9c\xa8\x19\x53\x60\x1d\xe4\xa5\xe9\xbb\xbe\x1a\xbd\xc3\xf2\x71\x00\xf5\x7d\xea\x5c\xa3\xa2\x7d\x4c\xb8\x87\xc6\x42\x60\x95\xb8\x89\x27\xcd\xbe\x0c\x95\xe8\x6e\xc5\x4f\x69\xb5\xcc\x9b\x1b\xb0\x83\x26\x05\xe2\x50\x4f\x60\x1c\x28\xf6\x21\x1e\x31\x0d\x84\xce\x69\x75\x41\x28\x46\x69\x4e\x51\xc1\x5c\xdb\x55\xc0\xc9\xcb\x3c\xc8\x9d\x56\x95\x33\xd6\xbc\x3a\xad\x95\x55\x87\x03\x0d\xe2\x2f\xc2\xd5\xeb\xd5\x78\x6a\x16\x15\xb4\x7a\xf5\x9a\x25\xca\x54\xd0\xc0\xcb\x0f\xc8\x0a\xf3\x9a\x69\x5c\x0a\xa9\x06\xca\x0b\xb2\x53\xb8\x9a\xac\xf1\x2b\x4b\xaa\x63\xa8\xdb\xb9\x76\x75\x8d\x80\xc2\x2e\x89\x73\x2b\x61\x46\xc1\x49\x90\xa8\xa5\x6a\xc1\x33\x1a\xe9\xb0\x0d\xcc\x47\xf8\x78\x8e\x26\xd6\xa5\x78\xc9\x9a\xeb\x7a\x4b\xd1\x22\xd1\x77\xd5\xe8\x87\x0c\xf1\x45\xc4\xb7\xa8\x33\xaa\xc5\x12\xa2\x8b\x2d\x76\x98\xe7\x62\x7d\x6d\x31\xf1\x14\xdd\x99\x5f\xeb\x62\xd8\x0e\x5d\x05\x7b\x19\x45\x15\x0c\x06\xfc\x1d\xd5\xb1\x59\x46\x2f\x8f\x32\xb2\xe6\x05\x4f\xd0\x2e\x93\xc8\xb9\x3c\x38\x31\x0c\xe1\x0c\x36\xe5\xfa\x92\x68\x5a\xc1\xe8\x6d\xd0\xe1\x44\xa7\x35\xcb\x93\x0e\xaf\x19\xe9\xb0\xbc\xc1\xa8\x44\x4a\x37\x09\x83\x0c\xf1\x9c\xaa\x90\xce\x51\x07\xc5\xc0\x29\xf3\x43\xe0\xe8\x32\x4b\xf1\xcf\xb7\xd8\x54\x09\x2c\x53\x46\xd9\xa3\xa3\xfb\x58\xf4\xd8\x2d\xbb\xc0\x0c\x31\xd1\xc2\x37\xdc\x30\x90\x67\xdc\xd0\x63\x22\x3e\x97\x28\xd4\x2f\x39\x93\x8f\x3a\xce\x5d\xc8\x68\x71\x75\xbe\xa8\xe1\xca\x55\x7c\x5c\x4f\x0e\x47\xb0\x7a\xad\xdc\x03\x6e\x9b\x6c\x4a\x4d\xb4\x29\x79\xe8\xa1\x24\x5a\xf1\x71\x84\x24\xca\x0a\xe8\xf7\x2d\x9c\xa6\xc6\xfe\x8a\x4f\x5c\x28\x5b\x22\x0b\xcf\x07\xdd\x7b\x74\x4b\x9e\x5d\x6b\x2d\x0f\xc9\xa9\xd3\x50\xc0\x3d\xc8\x52\x1f\xe3\x7b\x0b\xd1\xa5\x9e\x42\xf8\xc3\x25\x84\x17\xfe\x48\xfa\xa4\xb9\x79\xac\x64\xfc\xe9\x32\x68\x92\x7e\xc5\x4a\x51\x09\xc4\xa5\x9e\x52\x93\x2f\x49\xca\xf2\xdf\x92\x94\x70\xae\x5f\x72\x36\xb9\xaa\x76\xc7\x66\x94\xa1\x1a\xab\x31\xcb\xd3\xa2\xe0\x04\x4a\xaa\x54\x9a\xe5\x80\xb6\x24\x57\xd6\x96\xa7\x94\x1f\xad\xf6\xcc\x90\x29\xb0\x35\xf7\x4d\x75\x46\x4c\x28\xbb\x73\x7c\x7e\x07\xaa\x03\x8d\x4f\x6c\xb8\x56\xf9\x0c\xa9\xe1\x7e\x23\x34\xf6\x3b\xe3\xca\x30\x82\x84\x95\xe0\xc5\x6e\x8d\xf0\xb4\x07\x74\x3b\xdf\x91\xe5\x03\x8c\xeb\x74\x83\x06\x63\x4f\xf8\x95\xb1\x8f\xbb\x24\xdb\x5d\x03\xf9\x71\x65\x71\xce\x3c\x21\x21\x7e\x62\x71\xfc\x9d\x3d\xad\xbd\xe7\x29\x9b\x78\x3e\x3b\xd0\x95\x7b\x66\xf9\x15\xd6\x89\xbb\xea\x6e\x4a\xbb\x87\x4c\x72\x9e\xa1\xf5\x3b\x73\x4b\x6b\xfd\xe6\xea\xf4\xd4\xe6\x20\x76\x9e\x3d\xa4\x81\x49\x99\x14\x9a\x8c\x10\xa9\x88\xe2\x11\xd2\xd3\x62\xe0\x1f\x95\x6f\x4a\xb3\x02\x8a\x99\xc2\xc3\xfc\x5e\x18\xdc\xc0\x99\x68\x6e\xb0\xa6\x1b\x24\xb0\x0e\xfd\xde\x68\x6d\x71\x26\x29\x77\x9b\x64\xee\xbb\xe6\xd6\x47\xe8\x02\xb9\xa7\xdd\x5f\xba\xff\x77\xb6\x1d\x37\xb1\xed\xac\x31\x45\x5e\x5f\xeb\x2a\x5b\x88\x89\xb2\x03\x1e\xd2\x42\x2d\x17\x52\x67\xf3\x77\xe0\x3e\x4a\x2d\x7b\xed\x26\x97\xcd\xb5\xc8\xc0\xb8\xde\x91\x3f\xce\x80\x89\x9a\x68\x5d\x6f\x3c\xc5\x02\x6a\x03\xa5\xb3\xd4\x44\xf6\x2c\x94\x69\xdc\xdc\xc5\x8d\xbb\x35\xb1\x69\x5f\x34\x27\x12\x41\x1f\xb0\xa8\x83\xd0\xea\xd4\x0e\x0f\xf7\x7d\x30\x34\x4c\xd0\xdc\x93\xd5\x29\xcc\x51\xde\xda\xf4\xe1\xcd\x32\x49\x56\x8c\xc9\xbd\x3c\x3a\xb0\x63\x00\xb5\x1e\x39\xa3\x41\x09\x4a\xf7\xad\xa9\x4c\xb7\x9a\xdf\xaa\xcd\x0c\x36\x6a\x97\x35\x0e\x57\xe7\x6c\xf0\x19\x7b\x13\xf3\x99\xeb\x0c\x00\xc9\xc2\x5d\x90\xdb\x53\x03\x68\x47\xbe\xb0\x78\xcd\xcd\xe3\xb5\x5a\xf3\xbe\x3a\x62\xe9\xbd\x19\x48\x98\xa6\x08\x48\x79\x1a\xa3\xf2\xd4\x2b\xde\x58\x4c\xbc\x4f\x88\x74\xa6\xc4\x9a\xf5\x49\x77\xa6\x5b\xa1\x77\x94\x64\xc3\xb3\x93\x6d\x66\x66\x8b\x28\x15\x23\xdd\xa2\x6c\x23\x3a\x85\x6f\x42\x7a\x2d\x88\xcf\x20\xe2\x6b\x87\x57\x07\x5d\x46\x3c\x4e\x77\xdd\x10\x9b\x20\x99\x13\x51\xbf\xfc\xa5\xe7\x95\x87\x88\x01\xb3\x0f\x31\xf1\xc7\x13\x87\x9a\xbf\x3f\x98\xb8\x98\x53\x7a\xe9\x6f\x66\xbe\x8e\x8c\xbb\x97\x15\x25\x98\x98\x53\xb9\x1e\x05\xeb\x80\x89\xc7\x76\x09\xa3\xa2\x37\xb7\xc6\x63\xa5\x7a\x64\xe6\x34\x19\x4b\xf3\x24\xbc\x0e\xc8\x37\xa9\x91\x3a\x07\xcf\x40\xc5\x17\xa0\xc7\xf4\xd9\x29\xba\x0a\xdf\x38\x34\xed\x6b\x0d\x38\x31\xf7\x66\xdd\xa2\xcd\x06\x70\x75\xf9\xec\x44\x57\x70\xd8\x67\x22\x8c\x71\xf8\x03\xdb\x84\x48\x6c\x13\x9a\x1f\x61\xfd\x00\x3d\x28\x71\xc4\xde\x4e\x9b\xfb\x1b\x0b\x09\xc9\xae\x39\x4b\xbd\xaf\x6b\x1b\x80\x8f\xd0\x75\xd7\xe0\xe7\x63\xaf\xc4\x2a\xc2\x5c\xf1\x1b\x57\xdb\xc2\xd1\x04\x8a\x66\xca\x38\xe9\x46\xfb\x0a\x47\x79\x2b\xc1\xd6\xc3\x70\x59\x37\x6b\x46\xc8\x20\x70\x17\x19\x77\x51\xc9\x55\x92\xce\x50\x0c\xff\x0e\x05\x46\xeb\x7b\x90\xaa\x41\x3f\x90\xe8\xd3\xec\xe0\x31\xa0\x45\xe7\x96\x1b\x3c\x76\xf5\xdb\xa0\xaa\xe8\xf2\x89\x19\x9f\xba\x33\xc9\x59\xc7\xea\x3d\x30\x4a\x1f\x12\xcf\x49\x70\xe6\xb0\x8d\x77\x8d\x05\xba\xf3\x34\xf1\xef\x7e\x6b\x01\xe7\xc5\x43\xf2\x85\x57\xfc\x45\xd6\xc8\x71\x52\x58\x25\x7f\xea\xe5\x64\xea\xe2\x20\xb4\x37\x11\x56\xa5\xb1\xc1\xfe\x1f\xe3\xc4\x9b\x2f\xa9\x04\xae\xe1\x97\xca\xd0\x2d\x55\x57\x5e\x81\x09\x0a\x07\x4b\x1f\x59\xdd\x15\xa5\x20\x08\xc0\xd5\xec\x76\x57\x27\x91\xdf\x85\x2a\xa0\x68\x09\x47\xaf\x40\x4a\xf7\xa6\x1a\xef\xf0\x02\x85\xf2\x7f\x83\x79\x1f\x0e\x3d\x21\x70\x63\x67\x56\x49\x79\xa4\xf5\x8b\x92\xd9\x90\x3e\xc1\xdb\x52\x96\x78\x5d\x9f\x45\x71\xd1\x09\xaf\x67\x9f\xba\x30\x2d\x50\x5e\x15\x6a\x17\x88\xd2\xa1\xa2\x75\xe7\x95\x2a\xef\x04\x10\x31\x2e\xe6\x3c\x5a\x52\xb1\x9f\x40\xa6\xa8\xc3\x61\x16\xd4\x0e\x71\x28\x61\x3c\xb8\x96\x7a\x0b\xf8\x0f\x33\xa2\xb2\xe4\x27\x9a\x1e\x1b\xfa\x4c\x4f\xff\xa3\xba\x89\x1d\x01\x7e\x9d\x82\xa1\x10\xe8\x9d\x51\xa4\x3a\x30\xe2\x80\x37\x68\xde\x1d\xfa\x95\xc5\xde\x44\xde\x6d\xd1\x66\xf7\x73\x51\x14\x58\xd0\x64\xcc\x99\x5f\xb8\xca\x2c\x0a\x11\x4f\x54\x1b\xb8\x01\xed\xd9\xc9\x35\xf2\x97\xfa\xe7\x15\x74\xa1\xbb\xb8\xd4\x8c\x33\xf9\x2b\xb3\x53\x54\xf5\xc3\xd9\x85\x96\x5f\xa2\x12\xcf\x90\x66\xf0\xfe\x59\xcd\x07\xd3\x1c\x4c\xae\x4f\xe7\x26\x2d\x95\x64\x9c\x02\xcb\xac\xb2\x18\x40\x54\x7b\x5e\x95\x45\xa0\x56\x57\xd1\x6a\xef\xbe\x78\x5e\x6a\x51\xfd\x53\x40\x5f\x50\x88\xcc\x68\xf3\x43\x81\xc7\x89\x7e\xa8\x9a\xac\x77\xc4\x73\x74\x97\xf2\x5d\xc6\x6b\x16\x97\x86\x73\xd9\x29\xff\x2e\x35\x5e\x94\xad\xe9\x13\x7d\x43\x01\x1b\x64\x99\xd7\xfc\x32\xa2\xd4\x5e\x74\x5a\xc1\x2b\xfe\x03\x3a\xef\x2f\xf8\x55\x45\x0c\x73\xd1\x79\x89\x07\x58\x4d\xf8\x37\x31\x8f\xed\x31\xf1\x8b\x14\x68\x2d\x43\x31\x7f\xd1\x6f\xb5\xe3\xaf\x0a\x51\x49\x42\xd4\xfb\x4e\x86\xce\xf6\x04\x02\x9c\xbf\x82\x0b\xe3\xde\x2c\x32\xe3\x4e\x39\xd3\x7a\xa3\xd0\x7e\x14\x72\xc2\x2b\x78\x5c\x58\x2e\x49\xad\x02\xaf\xa9\x15\x0d\xba\x4e\x3d\xdd\xd0\xd3\xed\x92\x6e\x35\x05\x55\x10\x1f\x32\x9d\x0c\x13\xf3\x18\xec\x76\xc8\x71\x36\x3b\x23\x5f\x42\x15\xcb\x24\x41\x52\x4c\x4a\xb1\x33\x86\xdb\x4d\x48\x17\x64\x55\x82\xb3\xdb\xaa\x32\x45\x07\xd4\x2a\xd9\x44\x48\x94\xc7\x12\x7d\x65\x97\xba\xf0\x5a\x88\x97\xa4\x13\xb8\xf9\x13\x11\x6c\x0a\xbc\xda\x99\x93\x97\x2d\xce\x52\xdc\x2a\x31\x69\xa3\xf4\x10\x8f\x4b\xfc\xc3\x9b\x60\x95\xc9\xe8\xc8\xc9\x3f\x05\x04\x17\xa4\xc0\xe8\x75\x93\x0b\x68\x20\xc8\x1a\x0f\x78\x0a\x43\x73\x0d\x3e\x64\xa5\xa3\x97\x06\x52\x45\x82\xd4\x18\x7d\xae\x1e\x3d\x08\xe4\x7f\x62\xfc\xee\x7f\x78\x7c\xef\x3f\x3c\x7e\xff\x3f\x3c\x3e\x64\x7a\x14\xe8\x77\xdf\xa7\xfb\x3d\xe0\x13\xbd\x55\xf6\x83\x78\x9b\xdc\x61\xc6\xc0\x23\x26\xee\xcd\x7d\x02\x22\x28\xf3\x37\x30\xf5\x18\x34\x64\x64\x40\x8e\x69\x00\xc7\x90\xef\x2a\x32\xaa\x27\x8e\x36\xa9\x1d\x28\x7c\xaa\x47\x6e\x6e\xc1\x11\x13\xef\x70\x28\x84\x1b\xc8\x37\x80\x15\x16\x65\x83\xfe\x22\x23\xc5\x8d\x7c\x4e\x05\xdd\x1c\x66\xdf\x62\x5d\x58\x45\x17\x9f\xf8\xf4\x44\xb2\x62\x87\xe9\xeb\xde\xc6\x05\x81\xb1\x78\x34\x58\x97\x89\xf7\xbc\x96\x02\xd2\x0e\x0f\xb1\x39\xfb\x40\xbf\x8c\x2e\x9c\x54\x3c\xd8\x73\x2e\x63\xbf\xd4\x1e\xb7\xe1\xfe\xd4\x61\x31\x10\xe2\x31\xa2\x29\xa4\x17\x27\x02\x8c\xdb\x0f\x6a\x77\xe3\x9d\x78\x39\x90\x49\xee\xf0\x36\xf1\x97\x42\xc1\xca\x54\x6a\xd7\xfa\x9a\x62\x0d\x93\x92\xe6\x42\xea\xec\x49\x69\x7f\x0b\xc8\xdc\x31\xf3\xb6\x6e\x31\x2d\x19\xe3\xa0\x97\x0d\x64\xcc\xfa\x9b\x8c\x49\x02\x63\x5a\x70\x67\x07\x9d\x02\xce\x7c\xea\x7d\x95\x49\x41\xd8\xd3\x20\xc5\x63\xba\x71\x0d\x7a\x47\xf1\x79\x91\x34\x63\x99\x66\x54\xfe\x1b\x7c\x41\x65\x2e\x78\x46\xc5\x58\x8c\x18\x19\xe7\x00\x03\xbd\xa1\x2a\x1d\x7c\x65\x60\x7e\xc5\x53\xca\x39\xaa\xfd\x4a\xa6\x80\x43\x0c\x79\x7c\x7c\xa8\x9f\x90\xee\xf7\x0e\x53\x7d\x88\x17\xa5\x15\xb2\xae\x26\x79\xf9\xa4\x80\x94\x34\x95\x2e\xeb\x3e\x15\xe3\x6a\xe5\xdf\xf2\xdf\x1e\x7b\x03\xc0\x5f\x87\xdd\x78\xbe\x9f\xba\x7d\x96\x78\x15\x38\xbd\xf9\x8a\x6b\x4d\x4a\x9c\xc4\x14\xb1\x0f\xce\xb1\x09\xd3\xf7\x7e\x3c\x88\x93\x1a\xc4\x61\xf2\x97\xfd\xc7\xbd\x6c\x66\x3f\xb2\x18\x0a\x1f\x12\x76\x09\x76\x79\x9c\x3e\x8d\x83\xf5\xe6\x69\x98\x0f\x70\x64\x90\xc9\xee\xb0\xf5\xde\xd8\xd9\xf1\xe6\x98\x95\xc8\x6b\x90\x3c\xa4\xec\x97\x79\x29\xf5\xc6\x26\x5b\x8e\x54\xfb\x32\xc8\xbc\x8b\x83\x0f\xec\x90\xaf\x32\xef\x6c\x28\xad\x00\xba\x99\xdd\xe0\x9b\xcc\x5b\xed\x14\x0a\xb5\x37\x79\x98\x79\xeb\xe2\x2e\x27\x13\x33\x83\x13\x02\xa4\xa2\x1a\xe0\x9f\x2e\x3a\xb3\x67\xfe\x54\xa7\xcd\x2b\xaf\xff\x6d\xfd\x6f\xeb\x7f\x5b\xff\xdb\xfa\xdf\xd6\xff\xb6\xfe\xbf\xd6\x1a\x7c\x18\xbc\xa4\x35\xfd\x9d\x79\xfd\x3f\xd4\x1a\x22\x0e\x87\xd7\xfe\x14\xd1\x8f\x5a\x83\x5d\xa0\x97\xb4\xa6\xbf\x33\xaf\xff\xc1\xd6\x7d\xe6\xfe\x8e\x32\xba\x49\xf7\x1b\xdd\x24\xff\xcf\x18\x1f\xff\xb6\xfe\xb7\xf5\xbf\xad\xff\x5a\xeb\xff\xbf\x70\xe3\x7f\x5b\xff\xdb\xfa\xdf\xd6\xff\xb6\xfe\xbf\xdf\xfa\x6f\x69\x8e\xfa\x9a\x87\x34\x30\xf2\x82\x1a\x56\xac\x43\x46\xe5\x32\xa2\x81\x45\x6c\x76\x15\x0e\x16\x0c\x8d\x30\x3b\x4d\x97\xee\x0f\xd5\xcf\xf0\xe9\xdc\x9a\x34\x58\x05\x32\xbe\xb0\xc6\x72\x6c\x64\x71\x65\xdd\x4a\x9e\xf9\x69\x80\xc1\x10\x0e\x63\x5d\xfb\x4a\x2b\x7f\x47\x06\x34\x2c\xe9\x4b\x7e\x00\x78\x09\x81\xbe\xc4\x5e\x07\x4b\xd8\xd9\xcc\x62\x3b\x02\xf6\x40\x49\x9c\xc6\x03\x74\xf2\x7e\x86\xa7\x64\xf1\x86\x74\x18\x4b\x6a\x99\xff\x55\x27\xf9\x26\xd7\x08\xd0\x63\x63\xe0\x69\x57\xbb\x45\x5c\x1f\xc1\x81\xe4\xdd\x04\x75\xe7\x71\x43\x63\xac\xf5\x58\x82\xd9\x9f\x49\x61\x8d\xc4\xb8\x5e\xcb\x0c\x3a\x30\x32\xd3\x75\x8a\xba\x54\xcb\xcf\xd7\xa8\x8b\x97\x7f\x3f\x5f\xa3\x6e\x66\x8d\xae\xb5\x9a\xff\x97\xd7\x08\xbf\x6a\xff\x8d\x35\x4a\x8d\xf0\xd7\xd6\xa8\x7f\xb6\x46\xc3\x24\x62\xfb\x96\x52\x9c\x79\x8c\x39\xd9\x6f\xdb\xe0\xc1\xd5\xc9\x5a\x6c\x47\xc5\x23\x14\xd7\xb9\xc3\xc2\x4c\xd9\x5e\x6f\xe0\x64\x5e\xe7\xf7\x45\xc9\x64\x1b\x13\x02\xe5\xb7\xb9\x41\x2a\xb9\x57\xe3\x34\x60\x5e\xe0\x98\xf7\x04\xbe\x2c\x6e\xb6\x8f\x28\xf6\x99\xf8\x45\x65\x4a\x9c\x78\xbd\x80\x13\x31\xfd\x54\xb4\x78\xb6\x9f\x2c\xbe\x31\xfb\x57\x37\x6e\x61\x41\x19\xec\x6c\x2b\x8f\xf2\x58\xdb\x4c\xbc\xa8\x06\x40\xba\x77\xf4\x09\x8f\x89\x07\xfa\xd9\x65\x82\xa9\xe5\x7a\x84\xbf\xf7\x3c\xfe\x2d\x26\x3c\x6e\x4d\xf7\x2c\xd0\xd1\x07\xdc\x62\x13\x96\xdb\xe2\x90\xdf\xf1\xbf\xf2\xb8\x07\x11\x0e\xf4\x53\x9c\x72\x1f\xdb\x93\xfc\x45\x44\x3a\xa8\xe2\x22\xde\xe1\x9d\x49\x2e\x1d\x01\x4b\xf8\xea\xe0\x0d\x46\xf6\x25\xd8\xff\xe5\x73\xd6\xf0\x6f\x52\x11\xa6\x95\xea\x9f\x01\xf0\x91\x38\x8b\xcd\xfb\x10\xcc\xca\x93\x60\xd6\x12\x26\x48\xf7\x16\x18\xba\xe5\x2a\x6a\x7c\xd4\x29\x03\x2f\x5c\xc7\x51\x5d\x57\xaa\x2e\xe5\x1c\xd1\xb9\x6b\xd4\x86\xa4\x37\xce\xfc\x13\xab\xbf\x80\x53\xb6\x9c\xa0\x2b\x42\x15\xb8\x57\xaf\xe4\x9c\x6f\xb0\x01\x94\xda\x13\xef\x90\x16\x5b\xc7\x32\x89\x97\x0a\x56\xb5\x08\x00\x2e\xf1\x50\x83\x2b\xad\xee\x1e\xaf\x94\xde\x50\xc4\x4a\xcc\xff\x26\xa0\xaa\x0c\x85\xf9\x56\x7a\x09\xd3\xd5\xa9\xfd\xf4\xf7\xda\xfd\xc4\x55\xa2\x8c\x19\x57\x4e\xe8\x9e\xe5\xd5\x03\x8c\xee\x12\xc6\xfd\x30\x3a\x96\xad\x20\x79\xa9\xac\xa0\x17\xf9\x02\x53\x99\x42\x11\x58\x3b\xc0\x3f\x60\xde\xb6\x7e\xb3\xea\xc7\x88\x82\x50\xa1\x3a\x4c\xa4\x9f\x3b\xf5\xd2\x53\xea\x8e\xf0\xa6\x04\xae\xb6\x2d\xde\x02\x68\x3a\x55\xd1\x04\xf7\xa4\x2e\x24\x85\x67\x53\x7e\x82\x14\xb2\xef\x7b\x98\xfa\x1e\x1c\x76\x08\x2e\x58\x82\x21\x40\x30\x32\xc0\x12\x25\xbe\xc4\xbf\x86\x9b\xbe\xb9\x80\x03\x02\x6b\x06\x6f\xc5\x5c\xcc\x6b\xd6\x8f\xe1\x2c\x60\x31\xcd\x11\x2b\xba\xcc\x86\x0b\xd0\x8e\xb3\xa2\x8f\xce\x60\x1c\xf1\x02\xd1\x24\xae\xfe\xa8\x4f\x99\xf1\x2a\x09\x66\x53\xab\x46\xed\x2a\x54\xff\xf6\x19\xf3\x0d\xe1\x22\x52\x46\x74\x0d\x51\xa9\x2c\x12\xbe\x5c\xc5\x54\x1c\xf1\x32\xa2\xe7\x1d\xa5\xde\xb9\xcd\x59\x7c\x2f\xb3\xee\xa8\xaa\xdc\xc6\x59\x38\x05\xab\x62\xb7\x4c\xb5\x1c\x07\x82\xd9\xea\x70\x31\xdf\x12\xc5\x1e\x73\x18\x39\xf6\x9d\x35\xdc\x03\xdb\x57\x0d\x2b\xa2\xf8\xc1\x86\xba\xe1\x7e\x4d\x45\xd7\xbe\x58\x17\x4a\xa2\x39\xf5\x17\x5c\x27\xc1\x7a\xbf\x98\xc2\xec\x02\xd2\x20\x04\x9c\x81\x93\x58\x95\x17\xbf\xd8\xb0\xc6\x19\xdc\xfd\x41\x41\xe8\x5e\x85\x33\xe0\x27\x53\x51\xfc\x62\x9e\x2f\x98\xfa\xf6\x94\x72\x6c\x1d\xb1\xd9\x1a\xca\x13\x41\x6d\xb7\x3d\xf8\x3d\x8a\x03\x57\xef\x06\x73\xbe\x22\x64\xae\xc7\x18\x2e\x89\x7b\x19\xa2\x51\x5f\x30\xaa\x1c\x73\xa3\x00\x60\xda\x5d\x73\xc2\xab\xb8\xc5\xbb\x58\x46\xa6\x4d\xde\x9d\x8b\x0f\x45\xad\x15\x3e\x1f\x01\x55\x6c\xc3\x84\xec\x20\x9a\xe6\xcd\x5d\xc2\x38\x5d\x07\x80\xb8\x2f\x2d\xd0\x5d\x60\x4c\x24\x88\x4b\x8f\x0e\xe2\x43\xd4\x64\x74\xd9\x94\xe6\x03\x46\x07\xde\x53\x7f\x54\x96\x20\xc6\x92\x66\x90\xae\xa9\xd0\x70\x32\xbd\xbb\x4c\xb6\x7e\xd0\x5b\xa9\x2a\x5d\xf2\xec\xac\x83\x8a\x37\xe6\x44\x7b\x4a\x99\xf2\x83\x3c\x88\x51\x09\x7f\xa6\xdf\x50\xae\xf3\x29\xae\xf0\xe3\xcb\x84\x83\x0c\x83\x7e\xba\xd1\x87\xd2\x6d\x00\x4b\x63\x8e\x1e\xb1\x98\xe5\xc5\xa2\xdf\x10\xd9\xd6\x16\x98\x5f\x51\xed\x0e\x67\x0a\xaa\x81\xec\x4c\x7c\x74\xbc\xae\x4f\xc9\x57\xb7\x65\x64\x35\x85\xd5\x5f\x3e\xe1\xef\x01\x46\xf4\xc9\x96\x08\x3e\x72\x80\x5f\x7d\xc1\xa6\xe5\xcb\xaf\xe4\x4f\xe6\x1e\xf7\xbc\x38\x64\x73\x31\x01\x31\xf5\xd5\x2e\x63\xd9\x79\x14\x6e\x11\x55\xe2\x1a\xc3\x56\x07\x09\x0e\xa5\x22\x70\x5a\xb5\x26\x55\x09\x9a\x53\xf9\xaf\x0a\x96\x36\x00\x68\x14\x9d\x3b\x11\x3a\xea\x76\xe3\x22\x44\x22\x80\xd4\x7b\x29\xa2\xc1\x38\x4c\x9b\x55\xb9\x13\x86\xd6\x0f\xe7\x3a\x44\xdf\x16\xfb\xa0\xb6\xb8\xcb\xf6\xe8\xb6\xd8\x7d\x33\xfc\xcb\x5b\x1e\xa6\x90\x8b\x7d\x7e\x99\x53\x59\x5a\xe0\x0f\xf9\x0e\xbe\x8e\x24\xd9\xba\x1f\x86\x46\xde\xf6\x50\x0d\xcd\x74\xda\xc3\x8e\xc2\x70\x31\x0c\xaf\x58\x23\xd7\xeb\x7e\x41\x6d\xe7\x19\xf6\x2e\x79\xa4\xd0\xe7\xf5\x7e\x57\xba\xd1\x06\x9d\x10\x77\xd4\x7b\xcc\x4d\x1d\xe1\x80\x81\xc6\x90\x79\x83\x9c\x3a\xfa\xc7\x31\x06\xf1\x81\xed\xdf\x88\x54\x83\x2c\x1c\xcf\xda\x71\x73\xc4\x30\x43\x6f\x37\x5d\x1f\xae\x86\x03\xce\x71\xc0\x04\xaa\x64\xd4\x1e\x4c\x36\x3d\xea\xa3\xa1\x1d\xd3\xf8\x7d\x3d\xfe\xd2\x70\xca\x6d\x35\x80\x56\x42\xdc\x60\x4b\x6a\x01\xcb\x54\x06\x39\xd5\x05\x9e\xb2\xe5\x3e\xf8\xdf\x3e\x8f\x21\xd5\xd0\x1a\x1d\x6f\x3c\x2c\xdb\x69\x95\x1a\x5c\x11\x7d\x07\xe1\x2a\x52\xed\x32\x07\xeb\x98\x57\x22\xca\x93\x20\x18\x78\xbe\xb0\x5e\x19\x9f\x78\xa7\x39\x08\x4c\xa8\x67\xdb\x6b\x92\xd3\xea\x0a\x41\xf0\xc6\x4d\x4c\xd5\x55\xc3\x5c\x3c\xe9\x5a\x58\xc3\x62\x99\x33\xdb\xb7\x0e\xb8\xfa\xbd\xe5\x36\xdd\x79\x82\x69\x09\xbd\x39\xd6\x95\x5f\xdc\x42\x57\xa0\xff\x93\x60\x49\x89\x40\x48\xe9\xf7\x82\x3f\x31\x5f\x2f\xa5\x93\x59\xdc\x90\x9f\x26\x48\xb6\xee\x9e\x6b\xee\xac\x93\x4b\xf6\xfd\x09\xc4\x50\xae\x90\x61\x04\xe8\x36\x04\xbf\xd7\x5b\x0a\x66\xa7\x2c\x42\xdb\x57\xc8\xba\x03\x89\x3e\xd8\x09\xb3\xe9\xc9\xed\x96\x4c\x00\x43\x26\x5e\x36\x4b\x5c\xd7\x9b\x8e\x5a\xcb\xc7\x09\x3a\x9c\x6e\x6f\x21\xd5\xa1\x42\xb1\xb7\x71\xb4\x5e\x34\x60\xf5\x35\xb2\xf3\xaa\xe1\x67\x3b\xa1\x28\xed\x0e\x1e\xd5\xc2\x3e\x8c\xb0\xef\x17\x75\x5c\x98\x78\x3f\xe0\xb3\x6d\x3f\x13\xe6\xd4\x8b\x09\x19\x07\x74\xa3\x13\x65\x3b\x2f\x1b\x74\xb2\x79\x4a\xc6\x6f\x88\x7f\x64\x7c\xff\xb1\xa8\xeb\xdc\xd4\x12\x17\x35\xa7\x89\x05\xd0\x75\xeb\xc3\x46\x1a\xdf\xf2\xcc\xaf\xa0\xcc\xf7\x2e\x8d\xbf\x3f\x65\x73\x26\xae\x44\x25\x35\x5a\x0f\x23\x5f\x98\x3b\x6f\x40\x75\xf5\x39\x4f\x4f\x62\x49\xaf\x57\xf8\x7a\x83\xee\xcf\x17\x3e\x57\x3e\x19\xe8\xc2\x64\xf5\xc8\x78\x8d\x6f\xaa\xf7\xe6\x37\xd5\xdf\xc9\x27\x15\x3d\x64\x3e\x09\x31\x39\x17\x31\x68\x86\x9e\xb5\x61\xb2\x1e\x71\x32\x0a\x3d\xa3\x69\x02\x9d\xa4\xa7\x46\xae\xeb\x10\x8e\xa8\x47\x2f\x18\x13\x28\x11\x1c\x18\x82\x50\x80\x64\x35\x22\x10\x2d\x9a\x4b\xf3\x29\x76\xcc\x17\xaf\x2d\x2c\x28\x79\xf3\x14\xc7\xe7\x88\xcf\x36\x3e\x6b\x56\x30\xe4\x6a\x5c\x15\xb1\x2f\xf4\x80\x61\xc5\x4d\xfa\x9e\x57\xa3\xd9\xec\x5e\x13\x7a\xae\xb5\xc5\xf9\xe7\xe7\xd6\x3f\xf1\xf9\xde\x85\xcf\x1b\xe4\xd8\xca\x21\x47\x6a\xdd\x48\x41\xe0\xa6\xbe\xdd\x33\xbe\xda\x87\x42\x10\x8a\x3a\xc7\xe5\xdc\xcf\x9d\x53\x67\x18\x53\x27\x4d\xaf\x49\x6b\xd0\xc2\x58\xfd\x09\x4f\xcf\xb4\x4e\xaf\x1b\x40\x48\x22\xe0\xa9\xcf\xb3\x61\x13\xd5\x75\xb7\x55\x81\x42\x9f\x11\x52\xef\x05\x70\xce\xa9\x17\x93\x10\xf6\x0c\x98\x20\xd1\x8d\x01\x93\xfa\x3b\x01\x09\x8e\x25\x06\x48\x3d\xc5\x28\x0c\x90\x94\xd6\x9f\x01\x09\x16\xa2\x77\x09\x24\x93\xba\x27\x94\xfa\x0f\xdd\xe8\x88\xba\x09\x4d\x19\x38\x60\x16\xa0\x7e\x66\xf0\x41\x46\x20\xf5\xc5\x15\x56\x19\x4d\x94\xfa\x3e\x5b\xf0\x17\x54\xe8\xbb\x53\x61\x2e\x0c\xd4\xad\xc5\xec\xa0\xd3\x27\x64\x22\x93\x2d\xa2\x64\xba\x45\xff\xdc\x0e\x3a\xe8\x96\x08\x53\x33\x7c\xed\xc1\x49\xa4\x6f\x63\xf8\xe5\x9c\xfa\x14\x50\xdf\x22\xd2\x2d\x51\x02\xac\xf2\x04\x43\x32\xb6\x6b\x38\xed\x7c\x15\x75\x62\xd2\x12\xd7\x1f\x5b\x6c\xe3\x1c\x38\xe2\x77\x40\x0f\x97\xdb\xc4\x51\x7e\xce\x57\xf4\x54\x09\x20\x52\x68\x1c\x2a\x9b\xe6\x32\xaa\x10\x8a\x93\xeb\xb6\x08\xc7\xeb\xb2\x91\x0a\x2d\x0c\x41\xd3\xa8\xe0\xc2\x63\xbe\xfa\x25\x45\x0e\x02\xa2\xc4\x3b\xba\xf1\x7e\x30\xfb\xb6\x38\x62\x16\xd3\x61\x36\xbb\xad\x0e\xd3\x87\xf7\x0b\xae\x66\xef\xb1\x5b\x16\xa5\x01\x1d\xb6\x1a\x88\xf0\xfa\x27\x4e\x46\x29\xa4\x22\xa0\x34\x49\x1a\xee\x31\x87\xac\xbe\x5d\x3c\x29\x9e\x68\x88\x32\x62\x7b\x70\x2a\xc4\xc1\x8b\x4a\x72\x50\xd4\x7b\x75\xab\x0e\x22\xf2\xb1\xd8\x63\x52\x02\x6c\xab\x55\x3a\x2d\xe7\x0d\xe4\x0b\x6c\xdf\xea\x69\x75\x99\x1d\x20\x77\x3d\xfa\x32\x0f\x37\xc7\x72\x1c\xa3\x0e\x7a\xaa\xdb\x16\xad\x5c\x24\x56\xcb\x3c\x96\xe5\x6d\xde\xc8\x5b\x05\xe6\xf4\x8a\x5f\x4a\xce\xb5\x32\x6f\xf3\xe7\xba\x25\x74\x6d\x0a\xe9\xf2\x96\x2c\xb7\x6f\x65\x0d\x81\xe9\x35\xde\xe6\x26\xa9\xf4\x86\x10\xee\x22\x30\xf7\x12\x90\x54\xf8\x91\x68\xde\xbb\x8f\x44\x23\x87\x7f\xb0\xce\xa9\x1f\x66\x01\x04\x9d\xbf\x65\xcd\xc3\x14\x05\xa3\x0f\xad\x26\x60\xb3\xb5\x47\x39\x20\x5d\xb6\xb1\xf2\xd0\x55\x2e\xc7\x35\x69\x10\xaf\x35\xd1\xce\xc5\xeb\xb6\x1c\xa7\x39\x1f\x2a\x8d\xba\x3d\x95\xa6\x8e\xd6\xbc\x11\x3a\xb6\x4b\x51\x6f\x81\xa3\xd6\x5f\xa2\xe0\xd6\xc2\x96\xd4\xe3\x31\x4f\xce\xd8\x4a\x29\x11\x0e\x3d\x5a\x3d\xe3\xc6\x6d\xdd\xd1\x83\x39\x91\x33\x6d\xec\xc1\x02\x4f\xe3\x13\x11\x8c\x2d\x6a\xe2\x87\x3c\xd5\x64\xa9\x9b\x20\xf6\xc2\x30\xc5\x1a\x06\x5b\x3c\xc1\x37\x20\xd6\x5e\x9d\xab\xe6\x4e\xea\x3d\x24\xab\x13\x27\xc8\xd3\xa2\xd0\xe1\xa7\x5f\xef\xb1\x5a\x71\x8d\x63\x06\x6e\x7f\x96\x42\xc0\xae\x4d\x76\x72\x8f\xd9\x35\x54\x2b\x4f\x6b\x93\x60\x5e\x61\x15\x9a\xab\x5c\xf2\x2e\x57\xb8\xa6\x4f\x08\x93\xaa\x11\xe8\x89\xda\xe9\xb2\xdd\x34\xb7\x6b\x6d\x2f\x62\x59\x19\xf1\xf0\x36\xde\xe2\x23\xc6\xbe\x56\x99\x2d\xef\x43\xd2\x76\xfb\x24\x02\xf7\xec\xb9\xfa\xbf\x83\x19\xb3\x5c\x63\x10\xd1\x10\x7a\x94\x82\x0d\x01\xcf\x90\xeb\xee\x26\x1f\x9a\xf9\x41\xe8\xed\x87\xf4\xd4\x10\x17\x5a\xde\x94\x8d\xd8\xea\x10\xf2\xb3\x77\x77\x1f\x94\x12\x19\xc2\x23\xd2\xc4\x2f\x9e\x8a\x71\x58\x5f\x34\xa6\x18\xbf\x99\x80\x2a\xb5\xf7\xb9\x5b\xd1\x43\x92\x33\xf6\x1a\xd3\x5f\xc1\x3f\x6c\xaa\x52\xeb\xb1\x20\x77\x73\x54\x2b\x49\xe8\x5a\x0d\x39\x47\x6b\x87\xe7\x88\xa9\x7a\x23\x5f\x01\xf8\x66\x88\x94\xb0\xfa\xc4\xf3\x49\x97\xf2\x6f\x78\x8c\x39\x07\x2c\xc4\x5f\xc1\xdc\x01\x6e\x75\xaa\xb8\x93\x78\xaa\x51\x1e\x6f\xfc\x9b\xf5\x0a\x3b\x30\xf1\xfe\xde\x77\xe3\x3a\xc5\xce\x1c\xfd\xe4\xe3\x4f\x61\x1c\x82\xb1\xba\x1f\x79\xab\x3b\x54\xaa\x6e\xc3\xc6\x52\x10\x88\x87\x62\x93\x33\x6b\x12\x97\xf5\x96\xce\x8e\x72\x26\x13\xab\x7d\xc3\xe4\xa9\xeb\x44\x62\x42\x8a\xec\x0a\xa5\x95\x5c\x53\x7c\x1f\x1a\xb8\x30\x7f\x01\x3e\xea\xef\xf4\x2b\xb2\x52\x38\x11\x64\x30\xb7\xd9\x6d\x8f\xf8\x78\x2f\x6c\x81\xb0\x7a\xde\x62\xd3\xde\x01\x22\xc7\xe5\x1d\x9d\x5a\xf4\xe6\xba\x51\x84\x2f\x2b\x98\xcb\x7c\x34\xd9\xa5\x45\x2a\x55\x67\xea\xb7\x30\x95\x1b\x1c\x37\xac\x3d\xc6\x5a\x0f\x4e\x2d\x14\x63\x65\x08\x71\x17\xbf\x8a\xfb\x3b\xd6\x3f\x72\x7f\x27\x73\xf8\xc7\xf3\x41\x28\x1a\x19\x4c\xf9\x2a\xcc\x7b\xcf\x20\x17\x4a\x99\x63\x00\xb8\x03\x64\xd9\x9f\xef\xd2\x62\xbf\x9d\x01\x67\xc0\x44\x60\x95\x29\x5f\x1a\xc6\x10\x06\xd4\xa5\x4e\xec\xbf\x96\x12\x1e\x73\x31\x23\x3a\xaa\xa5\x80\x67\x83\xe2\x52\x28\x2c\x62\xd8\x75\x4b\x9b\x16\xd5\x61\x62\xf3\x10\x73\x7c\x57\xf1\xb8\xc5\x73\xba\xcd\x48\x17\x4d\x10\xd5\x31\x2d\xef\x0c\x99\xee\x02\x72\xaa\xc8\x90\xeb\x79\x90\x52\xe4\x06\x53\x6c\x30\x05\x7a\x68\x59\xa1\xa2\x91\x1b\x08\x38\xee\xb1\x88\xf8\x5b\xac\x96\x1d\x39\x1b\x69\xb5\x6c\x27\x93\x9b\x90\x0d\x5d\x8c\x6b\x95\xab\xb0\x49\x12\x26\xdb\x93\xf8\xf1\x9a\xb2\x02\x80\x61\xd6\x39\xf0\x0d\x01\xb3\xdd\xc9\xd8\xad\xf1\x1d\x05\x83\xe2\x1d\x21\xbd\xde\xed\x28\xb1\x20\x55\x97\x81\x8a\x2c\x68\xf0\x66\x20\xa7\x87\xb8\x27\xf6\x3b\xdc\x03\x51\xaa\x9d\x2f\x92\x11\xb1\xdd\x91\xc6\x3b\xe4\x8e\xd7\x83\x43\x0b\x68\x38\x3b\x2a\x16\x9b\x6a\xd7\x22\xd1\x35\x82\x08\x36\xd0\x75\x76\x88\xff\x4a\xd2\xae\xc7\xba\x27\x41\x19\xb7\x77\x74\xab\x0c\x17\x44\xd2\xc0\x5d\x1f\xed\x99\x8a\x9f\x74\x99\x3c\x50\xfb\x9b\x5d\x92\x85\xc1\xf1\x3b\x66\x7b\xaa\xdf\x03\xed\x7b\x0d\x6a\x3f\x8e\x08\x79\x1e\xeb\xfa\x7c\x12\x11\x49\x47\x12\x64\x35\xc4\x06\x7b\x07\xee\xd3\xf3\x59\x24\xb5\x00\x96\xcc\x0d\xf9\x9c\x9e\x2f\xcc\xe7\x5e\xc8\x03\x7a\xbe\x8c\xa4\x36\x7d\x4b\xd6\x6d\xf1\x15\x3d\x5f\x47\x52\xf3\xf7\xae\xcf\x37\xf4\x74\x1b\x61\xbe\x30\x35\xc6\x9c\x87\xf4\xb4\xda\x44\xc5\x00\xe2\x6d\xbc\x13\xaf\x35\x29\x23\x69\x24\x93\xe7\xdd\x13\x8f\xa8\xfd\x3e\x92\xda\xbc\x23\x99\x5b\xe2\x07\x7a\x7e\xa4\x39\x41\x0d\x29\xf7\xc4\x4f\xf4\xbc\x1c\x21\x59\xcd\xa0\x7d\xc4\x2b\xfa\xbb\x09\x8c\x1f\x3e\xaf\xd1\xd3\x7a\x14\x27\x1a\xec\xad\x78\x83\x9e\x36\x93\xb6\x6f\x3e\x6f\xd1\xd3\x9b\x48\x42\x5e\xeb\x1b\x38\xa6\x04\xa2\x4d\xcf\x0b\x91\x4e\x25\x26\x59\x77\xc3\x4b\xf4\x78\xbc\x97\xa9\x89\x4e\xf6\xb4\x18\xfb\x9c\xcc\x3c\x2b\xdb\x5c\xda\x1b\xae\x03\x94\x5d\xc5\x01\xe1\xa4\xb7\x48\x69\x17\x71\x46\x65\xc5\x9b\x4e\xbc\x85\xcc\x98\x6e\x1c\xcf\x1a\x0d\x59\xb7\xc2\x0b\x23\x90\x72\xb5\x0b\x03\xf5\xd8\x20\xe2\x63\xa8\x37\x02\xb9\x25\xf2\x3f\xd6\xad\xf0\x7d\xdf\x04\x35\xa8\xd2\x59\xa5\x6e\xda\x27\x46\x74\x17\xdb\xd5\x57\xec\x15\xae\xb3\xc3\xd0\xba\x09\xa6\x17\x8c\xd8\x43\x7f\x4f\x55\x97\x28\x3d\x28\x04\x35\xb6\x93\x4a\x0b\x6f\x6c\x9b\xfb\xe1\x5d\x9d\x9b\x06\xe2\x70\xaa\xab\xc0\xc6\x61\x7a\xc3\xb9\x97\x62\x38\x90\xf2\xc1\x76\xa8\xcc\x93\xf9\x56\xc1\x35\x8f\x19\xd1\x7e\xaf\xd5\x07\xb5\x23\x23\x23\xd5\x95\xa2\x1e\x99\x97\xec\x8a\x78\xd7\xa0\xb2\x95\x99\x90\xef\x36\xde\x40\x14\xda\x68\x6f\x6d\x14\x78\xaa\xc3\x09\x4f\x77\x27\xbe\x86\x8c\xd6\x68\xac\xed\xf9\xba\x40\x74\xb5\x42\xf9\xf9\xe2\x62\xce\x90\x92\xb6\x25\xf4\x38\xeb\x38\xc5\x4a\xe4\xc3\x69\x8f\x2d\xf9\xcd\xe9\xbc\x93\xcd\xe4\x5c\xc2\xdd\x60\xb6\xe7\x82\x2b\x84\x08\xf6\x09\x8a\xc1\xd7\x0b\xa8\x41\xd5\x96\x95\x87\xf3\x7d\xdd\xd4\xfd\x6b\xe2\xb4\x3f\xc3\x98\x4b\x36\x8d\x1e\xab\xd9\x79\x43\x94\xab\x46\xfe\x32\x85\x4f\x38\xdb\x32\xe3\xfc\xf7\xb8\xba\x35\x0f\xb9\x37\x07\x91\xe8\x7b\xb5\x10\x13\x9b\x45\x6e\x8a\x84\xaa\x98\x43\xe0\x34\x8d\x59\xaf\x7e\x3b\x80\xdb\x23\xb5\xd3\xf0\x2a\xe5\x6c\x46\x55\x43\xf9\x3c\x21\x38\xb0\x64\xb6\x53\x85\xd4\xa3\x56\xb7\x45\x17\x56\x3a\xd8\x71\x83\x85\x45\xe4\x12\x42\x4e\xc5\xfb\xee\x06\x8e\x0b\x01\xd2\x49\x0d\x35\x48\x59\x08\xb0\xba\x77\x09\xf3\x36\xcb\x3a\x5e\x1c\x1c\x31\xc6\xb8\x80\x25\x17\x0a\x3a\xe2\x58\x32\xb6\xb2\xb0\x1a\xb7\x5a\xb4\xda\x81\x2a\x6b\x63\xa1\xbc\x02\xd4\xdc\xdc\x70\x9f\xc2\xaf\xeb\xc8\x78\x0a\xe0\x9d\xf4\xd9\xc0\x42\x28\x72\xb1\xc1\x8b\xa6\xa2\x60\xbd\x8d\x24\x37\x02\xd4\x36\xdb\x17\xa6\x30\x83\x2e\xa2\xc2\xe7\xfa\x01\xae\xec\x7d\x79\x85\x1d\x31\x81\xbf\xbf\x56\x00\x88\xdb\x29\x66\xb9\xb0\x4b\x0b\x4b\x27\xb9\x04\xe7\x22\xd9\x00\xab\xd9\xb0\x85\xef\x01\x12\x4a\x68\x26\x22\xae\x81\x68\x1c\xa4\xf1\xd6\xbe\x3f\x2e\x30\x9d\x78\x63\x2f\xf3\x16\xb3\x91\x81\x79\xb7\x50\x9a\x98\x9c\x5b\x7a\x9c\xfd\x13\x9c\xe2\x3a\x07\xba\x1c\x78\x51\x7f\x46\xbc\x53\x14\x6c\xcf\xf1\x6a\xa5\x5c\xc9\x25\xe3\x7a\x9d\x17\xd7\x82\xb1\x1d\xde\xcc\xb6\x0e\xc8\x3a\xe4\x2c\x75\x33\x39\x9c\x60\x1c\x32\xdd\xd1\x31\x6f\x09\x9a\x6a\x6f\x65\x5c\x60\xd2\x63\xb8\x63\x84\xf4\x30\xb2\x62\xcd\x65\x4c\x00\x7d\xc6\x46\x9a\x00\x66\x50\xa2\x5e\x04\x7c\xbe\xe4\x26\xfc\x0f\x90\xd4\x6c\xdd\xc8\x85\x74\x6b\x92\x67\xa4\xc9\x13\x03\x99\x0d\xf9\x23\xe2\x5c\xf8\xf3\xdc\x4d\x77\xac\x1a\xd9\x8d\x2a\xb4\xe9\x80\x5e\xdf\x59\x4c\x08\x03\x26\xee\xe6\xeb\xcc\xd0\x25\x43\xd6\x11\xb7\xb5\x19\xeb\x96\x88\xe6\xd6\xb1\x96\x22\x27\xa0\x28\xbf\x6f\xa4\x49\x59\xf1\x80\xcd\xbd\x04\x94\xaf\x45\x0b\x96\x0f\x8d\x0b\x2e\x6b\xae\x65\x2e\x73\xaf\x1a\x16\xb0\x03\x02\xdc\xf8\x63\x80\x3f\x40\x93\xc9\x83\xd7\x66\x12\xfd\x2d\x7e\x06\x2f\x7a\x89\xa9\x55\xbe\x39\xd0\xfd\x29\x11\x2d\xe9\x75\xde\x02\xf9\x52\xe9\x90\x1a\x0e\x53\x37\xe9\x72\x2b\xf7\xba\xdc\x7e\xdd\x72\x7c\xb8\x58\x6b\x58\x6c\x81\x37\x6c\xf0\x59\xb9\xe1\xfe\xd1\x38\x56\xae\xf9\xe3\x02\x01\xef\x87\x39\x7a\xc2\x50\xa0\xc6\x5a\xc3\xa4\x8e\x83\xf5\x7b\x4e\x9b\x0a\x18\x31\xc5\x4a\xd4\xb1\x95\x17\xe5\x8d\xa4\x26\x23\x7c\x81\x86\xfd\x43\x5e\x0b\x75\x82\x94\x73\x31\xc2\x03\xc5\x31\xa1\x71\x75\xd2\x82\x69\x76\x27\xc4\x9e\x48\x8b\x5a\xf2\xd6\x3e\x61\x63\xa0\x83\x4f\x71\xb2\xde\xfc\x90\xd2\xb7\xde\xcc\x86\x3d\x75\xf4\xf2\x97\x09\xd7\xec\x31\x7b\x65\xed\x20\x5b\x8f\xa2\x75\xa5\xb3\x57\xa8\x1a\xd1\x9a\x2e\xf3\xba\xc5\x9e\xf6\xe3\xeb\xad\x68\xec\x31\x8c\x2d\x5e\x51\x12\x0f\x99\xb0\x16\x00\x26\x78\x83\xb1\xa1\x5a\x00\x87\xd9\x0d\x3e\x45\xeb\xee\x00\x3c\xa4\x7c\xfc\x03\x12\x1a\x3d\x41\x5d\x54\xec\x3e\x52\xdd\xf1\x1d\xfa\x3f\x45\x22\x38\xa4\xd9\xd6\xb6\x83\x7a\x08\x1a\x87\x4e\x02\x77\xca\xf5\x61\x87\xff\xd8\xb0\xbd\x27\x34\x6c\x1f\x01\xc3\xd6\x23\x38\xaf\x4d\x61\x8f\xbc\x20\xad\x89\x81\x3a\x70\xbe\xcc\xf4\x1f\x9e\x82\x62\xc0\x3c\xac\x1d\xe1\xd4\x26\x98\xff\x39\xea\xa1\x15\xeb\xa8\x73\x15\xd3\x52\xcf\xa0\xac\xa1\x6c\xe9\x0c\xbe\x70\x73\xfc\x2b\x0c\xd0\x75\x6d\x6e\x08\x94\x1e\x13\xaf\x35\x3c\xaa\xd2\x60\xd8\x57\x3c\xc3\x0d\x6a\x17\x29\x5e\x3c\xe0\x0a\xa0\x8c\x11\xf7\x33\xb4\x91\x81\x00\xb4\xef\xb0\x2e\xd6\x89\x70\x41\x87\xa1\x7e\x5d\x90\x6d\xca\x66\x6b\x1e\xa9\xd5\x0c\xb8\x03\xc2\xba\x33\x47\xdb\x52\xaf\x3c\xa1\x23\x2f\xb9\x2d\xcc\x10\x45\x1e\x9a\xed\x3b\xb4\xd5\xfa\x4a\x7b\x5b\x70\xd6\xd9\xf0\x00\x1b\xf6\xeb\xf8\x7f\xaf\xb1\xb6\x94\x74\xfa\x8d\xb7\xe6\x78\xa1\x5e\x5d\xd0\xad\x67\x28\x08\x46\x63\x85\x06\xc7\x0e\x78\x7f\x88\x03\x7e\xaa\x4e\xc2\x7a\x92\x16\xd6\x53\x51\x5a\x22\xa1\x55\xc1\x21\xce\x3d\x59\xb5\x00\xd3\x8a\xee\xa0\x80\xae\xfd\x18\x61\x19\xd6\xe1\x0e\xff\xef\xeb\xbf\xab\xc8\x46\xde\x8e\xc8\xcc\x86\xb4\xec\x1e\xa2\xec\xad\x6d\x6d\x10\x93\xc3\x3d\x56\x54\x7d\xdf\xac\xc8\x8a\x95\x90\xb6\x04\xfb\xbf\xb5\xe1\x54\xd2\xa7\xaf\xb7\x62\x54\x50\x87\x67\xf9\x89\x55\xcd\x69\xc2\x3b\xb2\x7f\xe9\xfa\x83\xc4\xe5\x7a\x70\xe6\x6d\xa0\x12\x6c\xdf\xc0\xea\xc8\x8d\x20\x78\x06\x04\x27\x6e\xb3\x03\xdf\xa2\x69\xcb\xa3\x8a\xc2\x11\xe4\x19\xdc\x88\x29\x7a\x03\xc4\x00\xe0\xeb\x08\x52\xc2\xf4\xc2\x45\xe2\xfd\x87\x4e\x73\x0a\xb7\x81\x45\x84\x74\x2e\xf2\x67\x9c\x49\x59\x06\x09\x3c\xdc\x22\x1e\xa1\x02\xb3\x13\xa6\x91\x57\xc7\x64\x75\x2f\x84\x73\x30\x07\x7c\x29\x5a\x7b\xc2\xbb\x96\x90\x13\x59\x76\xe2\xba\x9d\x62\x0d\x27\x9b\x10\x9c\x8b\xc4\xf3\x44\x6f\x36\xc9\xc4\x11\xd8\x54\xc8\xc7\x80\x78\xf1\x1c\x3b\x64\xdb\x33\xd0\x84\x22\xbe\xa1\xd9\x8d\xa3\xd8\x6b\x9a\x41\x52\xbb\x19\x6f\xed\x30\x77\x0f\xad\xce\xb0\x82\x3b\x4f\x21\xd7\x2d\xa1\xb5\x69\x09\x87\x19\xc9\x56\x58\x41\x68\x78\x7c\x35\x7a\xc8\x57\x42\x78\xff\x04\x8f\xfb\x48\xf3\x72\xce\x69\xa4\xfe\x11\x98\x5e\x0f\x31\x2c\x2a\x1c\x5d\x46\xd4\xf6\xb7\x5f\x80\x92\x8c\x86\x90\xc0\xd0\x18\xc8\x61\x6c\x44\x0c\xa3\xcd\xab\xb4\x8b\x94\x74\xb0\x6b\x44\x76\x53\xa4\x36\x60\xc2\x52\x89\xe5\x25\xd9\x75\xa1\x15\x81\xdc\x37\x40\x86\xeb\xae\x18\x86\x87\x07\xa6\x5b\xdf\x25\x3f\x3b\xc9\xcf\x29\x7f\x68\xc3\x77\x3b\x98\x1f\x8e\x72\x08\x79\x3e\xe4\xe4\x91\xe0\x03\x3d\x2c\x20\x11\x76\xdb\xb9\x78\xb6\x99\x3d\x17\x93\x48\x9c\xbf\xd2\x0f\x71\x30\x4a\x2c\x89\x83\x89\x9a\xc8\x8e\x76\xd6\x5a\x32\x3b\xa4\x22\x62\x82\x09\xa8\x16\xe4\x28\x82\xd6\x94\x26\x99\xfd\x0e\x09\x97\xf4\xde\xfe\x29\x95\xdb\x4c\xd6\x44\x19\xcb\x0c\xca\x13\x18\x07\xac\xd1\xb6\xc4\xcf\x3a\xc7\x33\x14\x01\x9f\x6c\xe9\x7c\xee\xea\x44\x39\xdd\x2a\x16\x08\xea\x61\xd2\xa6\x1a\x2a\xe4\xfd\xd2\x67\x4a\x95\x5e\xa0\x4a\xaa\x4e\x49\x6e\x05\x43\x1c\x0e\x6b\x4e\xdb\xa4\x9f\xc3\xbc\xa0\xa0\x00\xf3\xb9\x62\x61\x06\x3e\xc0\x39\x8f\x52\xd2\xd5\x09\x55\xf4\x49\x6f\x6c\x1e\x11\x1c\x26\xe6\x62\x62\x5d\x86\x85\xcc\x21\x6e\x02\xc6\xe0\x1c\x0c\xf1\x0b\xb3\xa2\xf5\xb4\xfa\x50\x46\xd3\x91\x98\xf0\x16\x02\x06\x7c\x00\x73\x91\x86\x98\xdf\xb1\x45\xac\x3b\x73\xb8\x68\x01\x87\x8c\xf0\xe0\xd2\x91\xa1\xcf\xc9\xf1\xd1\xa5\x9b\x52\xb6\xe6\x74\x4e\x46\x2f\xdb\xf5\x44\x7d\xba\xe1\x04\x56\x5e\x87\x1b\x75\xf6\x15\x29\xdd\xaf\xe7\xa3\x67\xd4\x12\xcf\x83\x83\xd6\x18\x6a\x4e\xf9\x7c\x07\xf6\x22\x25\xc0\xe0\x87\x24\xf9\xdb\x58\xa5\x09\x66\x03\xed\xbd\x95\x02\xf0\x61\x8d\xbe\x67\x2f\x0d\xa8\x62\x4e\x55\xcb\x33\xbc\x9a\x38\x0e\xe8\x54\xd7\x79\xb5\xc1\x16\x17\x80\xe8\xa7\x29\x0c\x7b\xe0\x1a\x88\xa3\x96\xf1\x43\x26\x3f\x4f\x6b\x4b\xdf\x45\x4c\xa1\x76\xfd\x17\x1b\xfb\xa9\xd3\xca\x30\xf6\x08\x38\xf0\x92\xb6\x77\x1f\x62\x6b\x2e\x4b\xdc\x3c\x5c\x56\xba\x3d\xeb\xd9\x6f\x93\xd6\xbf\x0a\x93\x1b\xac\x83\x68\xb9\x57\x06\x1a\x5e\x1d\xa8\xde\xe0\x66\x45\x69\xa9\x78\xda\x06\x9d\x65\xf0\x60\x5c\xd7\x13\x74\x99\x78\x81\x00\x0d\xaf\x74\x48\x01\x3e\x40\xef\xef\x46\x60\xa1\xd8\x82\x5d\xd2\x0c\x50\x46\x24\x16\xa1\xf9\xe1\xcc\x22\x34\xc3\x47\x6e\xb0\x37\x12\x9f\x97\xd0\xf9\x55\xbf\x9b\x1f\xd0\xe8\x35\x3d\x48\xd2\xbf\xd1\x7c\xd2\x41\x4f\x7c\xc1\xc4\x1c\x3d\x6d\x07\x5d\xa3\x3d\x38\xe5\x41\xfd\x2d\x87\xd5\x41\x65\xd6\x06\x23\xa5\xb5\xa0\x9f\x0d\x14\x8e\xaa\x27\x3a\x1a\x13\x2e\x19\xbd\x35\x16\xd0\x8d\xc0\x66\x32\x14\x33\x40\x8a\x7d\x7b\x6d\xee\xac\x3f\x59\xf2\xd8\x52\x0b\x55\xf0\x11\xa6\x68\x42\x39\xf3\x41\x3f\xc5\xfc\xc4\xf6\x0e\x92\x64\xae\xd0\x67\x44\xc7\x26\xd1\x1a\x35\x2d\x3a\xb5\x8c\x98\x68\xf1\x09\x6d\x17\x35\x11\x05\xe0\x06\xbd\x06\xe5\x1a\x2a\x86\xa3\xef\xe3\x23\x6b\x5f\x83\x0c\x4b\xc5\xe2\xd1\x60\x00\x91\x1a\x55\xce\x1a\x57\xe8\x62\xd6\x34\x8e\x95\x35\x8c\xea\x72\xd7\x90\xa4\x0a\x5d\xf5\x67\xa8\x26\x3c\x6e\xe0\xbe\xe7\x55\x1f\xd8\x6c\xa7\x0e\x8d\x6f\x19\x19\x5b\xc8\xa7\x70\x89\x42\x68\xef\x28\xc1\x34\x8f\xcf\x3b\x75\x2c\xda\x0b\xfa\x9e\xfd\x04\x1e\xa2\xd8\x9f\x0d\xb5\xb1\xe6\x66\x8f\x56\xc7\xdf\x89\x87\xe8\xe9\x4b\xc1\xf1\x08\x6e\x12\xe1\xde\x32\x2f\xee\x50\xe7\x96\x93\x24\x67\xad\xbb\x39\x92\x9d\x69\x0f\x86\xec\xc7\xd8\x78\xb4\x26\x4d\xa7\x82\xf7\xfc\x4b\xb0\x0e\xb4\xf8\x66\xce\x4d\xd8\x8e\x4a\x4b\x12\x4f\x86\x3b\xac\x6e\x30\x3e\xe0\x2d\xeb\x7b\x02\x59\xed\x67\x90\x61\x65\xb8\x0c\x64\xee\xa3\x3a\x41\xc0\x61\xef\x40\x57\xff\x90\x4f\xd6\xc9\xa1\x0c\x88\x35\x1b\x46\x40\x94\x77\x07\x4b\x33\x59\xfa\x14\x6e\x78\x59\xb8\x8d\xef\x32\x59\x81\x37\x21\x21\xf1\x67\x84\x6c\xb9\xb5\x93\x3f\xec\x31\xe1\xd4\x65\x95\x81\x6e\x93\x50\x85\x64\x3b\x74\x4d\x9a\xf1\x5c\x8e\x17\x93\xd5\xbe\x69\xb0\x1b\x75\x36\xce\x14\xd5\x1f\x63\x89\xef\x89\x0b\x5e\x70\xe8\xff\xb4\x38\xe2\xce\xd7\x54\x08\x2f\xa1\xa9\xad\x4e\x59\xe0\x91\xb7\x2e\x5d\xf9\xe8\xb1\x61\xd0\x72\x07\xab\x25\xc2\xd7\xbc\x5c\x76\x86\x29\xc1\x43\x64\x67\x58\x5d\xd7\x25\x76\x86\xee\xb8\x4a\x3e\x3c\xff\x31\x63\x43\x23\xf7\x8a\xbc\xfd\x91\xb8\xd3\x3c\x8b\x2a\x16\xd2\xbb\x1e\x70\xa3\xe1\x08\x7d\x71\x39\xf9\x50\x63\xce\x6e\xa1\x4e\xeb\x71\xf8\x0a\x08\x3a\xf4\x0c\x5c\x66\x2e\x20\x9b\x9c\xed\x78\xfa\x06\xb2\x6f\x84\x21\xed\xa9\x14\xf7\x86\x50\xb0\x3e\x24\xf7\x90\x62\x12\x3f\x56\xf4\xd9\xd3\x4c\x12\x5f\x95\xc8\xaa\xb3\x8c\xbd\x2d\x16\x82\x1d\xa7\x39\xd7\x75\x0d\x6d\xce\x6e\x1a\x35\x68\x4f\xa4\x85\x6c\xb7\x98\xe2\xd1\x0a\xb7\xa0\x20\x0c\x63\x2b\xd5\x1e\x0e\x41\x73\x7e\x08\xa5\xa9\x3f\xe0\xb5\x50\x19\xf4\x5d\x19\x09\xb3\xb9\x6a\xd5\x42\x6b\xf1\x50\x8d\x2b\xc8\x5d\xee\x8b\xad\x9f\x2f\x83\x55\x35\x19\xdd\xe4\x37\x96\x44\x4e\x16\xb7\x74\x3c\x0b\x46\x5b\xde\x1b\xf9\xd6\x51\x66\xad\xa8\x58\x47\xf5\x48\x97\x1b\x0b\xfc\x7f\x05\x7a\x2f\xe8\xa0\xc8\x24\x76\x44\x10\xc1\xfc\xac\xc1\x86\x97\x31\xd3\x65\x2f\x5c\xf0\xf3\x97\x4b\x9c\x61\x7f\x72\xde\x33\xe4\x8b\x05\x9a\xd4\x4b\x6f\xd9\x77\x73\xbe\xc6\x95\xea\xfa\x99\x8e\x0e\xb3\x0f\x68\x59\x1c\xaf\xae\x2c\x5b\xcb\xf0\x95\x09\xc5\xea\x36\x97\x20\x24\x56\x39\x71\x26\xa6\x4d\xce\x41\x57\x8f\x19\x48\xe7\x5e\x95\x2a\x3c\xa1\x42\x6d\xd7\x3f\xc8\xb2\xda\x05\x3e\x0c\x3a\xdb\xf4\x3e\x91\xd3\x59\x65\xad\x4b\x2e\x5e\xd4\xd7\x61\xf2\xc4\xa7\xf7\x5a\xdb\xfa\x80\x40\xa4\xfe\x18\xdd\xe8\x6d\xba\x14\x20\x11\x4b\x87\x01\x20\xbb\x8f\xe4\xe3\x36\xba\x9b\x78\x15\x75\xb8\xe8\x78\xf3\x6e\x31\xb1\x3d\xb3\x91\x36\x3d\x93\x6d\x3a\xbe\x9c\x20\xbb\xdb\xc0\x34\xbb\x0d\x40\x07\x43\x6d\xde\xdd\x1e\x11\x8b\x6d\xbc\xff\x59\xc3\x5d\x99\x22\x9b\xdd\x1b\x6a\xef\x09\x0c\x70\x24\xd4\xd2\xc0\xc6\x29\x60\x44\x1c\xb3\x1b\x3f\x99\x82\x34\xa7\x60\x79\x41\x37\x05\x41\x8b\x43\xd0\xc7\x0d\x2f\x61\x85\xa7\xbb\x88\x20\x98\x8b\x6b\x10\x50\x24\xa1\xdd\xfa\x09\x04\xc2\xc7\x85\x9f\xa2\x0a\xd6\x32\x2c\xf8\x7d\xc6\xbe\x4e\xf7\xc9\x87\x25\x38\xc9\x5b\x74\xbb\xa4\xcd\x66\x5f\x60\x9e\xdb\x2c\xe4\x05\x22\xc9\x83\x70\x89\xc1\x0a\x6d\x14\xc3\x04\xe0\xe7\x8f\x50\x44\xab\x8c\x66\x56\xf6\x76\x30\xe0\x13\x9d\xeb\x78\x29\x50\x20\xdd\x69\x2f\xff\xf4\xb3\xbd\xbf\x41\x5c\x3d\xc6\xbe\x02\xcf\x00\xb3\x21\xae\xc3\x49\x11\x97\xce\x0a\x4d\xcd\x00\x46\xf6\x56\x6b\x87\xc7\xea\xb3\xeb\x29\x08\x68\xb5\xe9\x00\x58\x21\x28\x16\x6f\xc5\xb8\xdc\x00\x98\xf1\x42\x63\xa2\xf4\xbc\x41\x97\xbb\x50\x3a\xdd\x0e\x0d\x12\x67\x36\x6a\x47\x82\xd9\x13\x1c\x97\xa2\x96\x9c\x83\x6a\x2c\x5e\x0d\x04\x62\xb9\x9a\x84\xb2\x3c\xc6\xdc\xd6\x47\x8a\xa8\x37\xb0\xad\xbc\x5f\x6d\x74\xb5\xe9\xed\x28\x72\x26\xd5\xf7\x0e\x84\xc5\x7b\xe3\xa3\x98\x9c\x32\xe9\x06\xf1\x7d\x9e\xba\xd0\xcb\x7b\xda\x63\xa2\x2d\xaa\xa5\xd4\x25\xa8\x79\x8d\x50\xe1\xb9\x57\x0c\x12\x92\x21\x8b\x58\xbb\x53\xda\xb0\x83\x09\x03\xfe\x97\xdc\x49\x84\x62\xa3\xef\x62\x40\xa5\x72\x6f\x35\xff\x06\xbb\x3d\x7b\x23\x1f\x6b\x96\xfa\xd7\x86\x7c\x06\x14\x13\xc5\xdc\x62\x8f\xf9\x5c\xcd\x75\xca\x67\xa2\x81\x50\xe1\xf9\xfa\x0d\x23\xec\x25\xb6\x75\x88\x34\xfa\x0b\xac\x33\xeb\xf8\x5b\xbc\xfa\x1c\xa9\xa7\xa3\x19\x48\xd4\xfe\x1c\xbc\x32\xde\x66\xce\xff\x8d\xae\xf8\xb6\xca\xff\x4f\x36\xee\xfd\x4f\x35\xb6\x53\x8d\x63\xa7\xd4\xfe\x6e\x86\x02\x80\x4a\x8a\xbb\x49\x55\x09\xb5\x6c\x07\x7c\xbb\xe0\x75\x30\x48\x89\x95\x34\x88\x58\xb5\xd5\xc4\xbb\xc1\x20\x50\x10\x47\x33\xb4\xa0\xc2\x41\xf1\x83\x7e\x7e\x41\x6d\x9b\x74\xdf\x35\xf6\xf9\xb7\xef\xff\x2b\x7d\xd1\x5f\x28\xe9\xfc\x46\x3f\xd7\x1c\x1c\xa2\xd3\xe4\x99\xdb\x7b\xcd\xcf\x1e\xab\xce\xd1\xdf\xe8\x2c\xff\x4e\xe7\xf8\xcb\xba\x26\xc2\x1f\x7d\x39\xfc\x27\xc0\x96\x64\x13\x1b\x54\x49\xd7\xc4\x1c\x82\x5d\x1d\x22\x0c\xd7\x40\xe0\x0d\xde\x0f\x71\x37\x83\x8c\xb1\x7d\x69\xf4\xef\x19\x9c\x00\xda\x9f\xb0\xf0\xe4\xa8\x80\x39\xef\x31\x2d\x45\xbf\x81\x5c\xe0\x90\x59\x69\x14\x5d\x6b\xbe\xc7\x11\x00\x11\x1e\xb1\x0e\xb0\x11\xfe\xdb\xe3\xff\x4c\x0f\xe7\xbf\xd5\xa3\x9b\xd3\xa3\x9b\xe9\x61\xa7\xe6\xa1\x4e\x01\x75\x53\x99\x1a\xa3\xa3\x9f\x26\xdb\x20\x23\xbc\x86\xf8\xd6\x84\xa7\xce\x53\x00\xfd\xdb\x23\xd3\x23\x47\x5b\x68\xd0\xcd\x4e\xa2\xc6\xfe\x51\x77\x3a\x21\x4b\x2c\x3e\xad\x39\xdd\x3f\x09\x83\x93\xee\xde\xc4\x36\x63\xd1\xba\xd8\xb8\xfb\xc3\xc6\x00\xd8\x80\x0a\x7b\xf4\xab\xba\x2d\x76\xad\x01\xd1\x79\x67\x6d\x89\x42\x51\xcb\xda\x73\x76\x8d\xb1\xf6\xce\xd7\x69\xc9\xaf\x6e\xe4\xbf\xdc\x23\x96\x2d\x23\xc6\xb6\xe7\x12\xe7\x8d\x89\x4a\xb6\xe3\x59\xa3\x3f\xef\x7a\x71\x2d\x87\x7a\x29\x75\x8b\x88\xe6\x50\x07\x2b\xd9\x99\x22\xda\x3b\x53\x44\xff\x1c\x98\x1f\x20\xcd\x49\x23\xed\x80\xd7\xee\xce\x1a\x3d\x60\x3c\x2c\x31\x94\xa2\xc2\x7f\xbc\xe7\x55\x85\xfd\x4f\xb8\xe3\x80\x25\xdf\x6a\xa5\x0f\xa7\x9a\xfc\xaf\xb7\xeb\xff\xb0\x9d\x63\x2c\xa7\x89\xe3\x6e\x0a\xc5\x67\x43\xff\x0c\xd8\xc1\x45\x20\xec\x54\xbb\xf8\x52\xf2\xec\x64\x2e\x56\xc2\x40\xf4\xe0\xfb\x76\xf6\xf5\x76\xf6\x2a\xfb\x5d\x3f\x22\x1e\x37\x06\x07\xf8\x84\xc9\xc5\x53\x3a\x65\x56\x6a\x64\xea\xdb\x7f\xd8\xe3\x67\x1f\xe9\x99\x5d\xde\xfe\x33\x3d\x86\x66\x8f\xd9\x05\xb0\x9c\x93\xa9\x42\x7b\x8c\x0d\xe3\x2e\x18\x5f\x93\xf3\x95\xd0\xec\xd2\x37\xbb\x60\x24\x4c\x4e\x97\x83\xd9\x45\x11\xcd\x5a\x33\x16\xb2\x50\x40\xad\xae\xd1\x8d\x93\xed\xd8\xc8\x7e\xeb\x87\x1d\x65\xea\x44\x33\x62\xec\x2d\xc5\xf9\x0d\x82\xe9\x66\x4c\x43\x28\x0e\xcc\xd1\x62\x60\x2a\xd9\x96\xec\xbf\xdb\xce\xf9\x7f\xbb\xdd\x4f\x4e\x84\x15\x2b\xd3\xf5\x4f\x8e\x93\x17\x3b\xff\xa7\x67\x6c\xa7\xda\x29\x7e\x72\x24\x4e\x1d\xa6\x0c\x79\xfd\x11\x88\x87\x94\x81\x69\x88\xd6\xa8\x79\xc6\x1a\xf5\x37\x47\x18\xfe\xed\x11\xfe\xfe\x2c\xcc\x11\x6a\x5b\xb0\x75\xef\xf9\xb7\xbd\x06\xff\xd1\x5e\xdd\x10\x03\x8c\xd2\xa6\xee\xf4\x7d\xe3\xb4\x65\x44\x3d\xcd\xcb\x92\x78\xa6\xc7\x98\x43\xc1\x1c\x74\x49\xdd\x5f\x09\x8a\xb0\xf2\xf7\xa6\xe3\xb5\x28\xf1\xea\x34\xe5\x0d\x60\x58\xc9\xd1\x8d\x0d\x6e\xcb\x5d\x96\xb6\xa5\xa7\xc1\x98\xb5\x8c\x6b\xe1\x00\xc1\x58\x01\x18\x6e\x06\x8c\x40\x60\xea\xb6\x79\x16\x0a\x7d\xcb\xb3\x2c\x63\x40\xeb\xaa\x9c\x0a\x77\x19\x9a\xe1\x2e\x43\x08\x2d\x0a\xd2\x23\xe3\x15\xa2\x78\x29\x76\x31\x5b\xb0\xfd\xac\x23\x3e\x75\x8b\x10\x5d\xde\xb7\xb7\x4a\x39\x9c\xf0\xc3\x5d\xce\xb4\xe9\x9a\x01\x66\x1c\x5e\x99\xf1\xba\x65\xdc\xcf\x87\x38\xe3\xe0\xaf\xcd\x38\x7b\x8f\x75\x61\xc6\xb5\xbf\x3e\xe3\xfd\x6d\x71\xa4\x66\x5c\xf9\x3b\x33\xde\x99\xa4\x76\x30\x49\x2d\x3b\xe3\x39\xcd\x38\x48\xcf\xb8\xa5\xa6\x29\x9f\xb3\xb3\x20\x18\xcb\xb7\xc5\x2f\x05\x63\xe3\x3a\x8c\x83\xab\x30\x1e\xcd\x55\xa9\x98\xab\x92\xdd\x0e\x11\x2f\x36\x39\x13\x9f\xed\x2c\xc6\x74\xf0\x67\x29\x1d\x63\xd2\xe2\xe8\x22\x17\x6f\x87\x7a\x7a\xd7\x64\xbc\x37\x5a\xdc\xc8\x50\x58\x43\x40\x0e\xff\x1c\xb2\x9a\xb7\xe0\xaf\x3e\xe1\xa5\xbf\xb3\xa2\xf5\x96\x59\xdc\xbf\x55\xd6\xfe\x45\x39\x50\xb6\x75\x92\xc2\xc8\x00\x13\x6e\xf2\x2f\x40\x58\xa0\xe5\xf4\xdd\x5c\x00\x7b\xcc\xae\xf1\xe0\x60\x8e\xf5\x17\xbc\x08\x1a\xab\xbc\x0d\xc1\xd6\xa8\xae\xa9\x05\x83\xbb\x7c\x97\x55\x3a\x97\xb1\x70\xd3\x4a\xc5\xfb\x96\x10\x0d\xa7\x7f\x06\x0d\x53\x87\x16\x2a\xf8\x5f\x8f\x87\xf1\x8d\x11\xcb\xe7\x57\x12\xff\x5e\x9b\x49\xf0\xee\xb4\x98\x0e\x4e\xcb\x4c\x72\xe1\xe0\x5a\x6f\xf2\xe7\xd8\x25\x62\xec\x5f\x25\xc6\xd9\x8d\x29\x42\xd2\x9f\x8f\xd0\x5f\x74\x86\x27\xe1\xbf\x7c\x55\x2f\x37\xe0\x1c\xeb\xb4\x56\xb9\x6b\xb5\x76\x28\x6e\x79\x55\x49\x6d\x45\xca\xbb\x73\x45\x4c\x06\x18\x21\x06\xa1\x08\x79\x4e\xf5\x0e\x24\xec\xd3\x5e\x52\x2e\xa6\xee\x73\xb4\x3b\x88\x1b\xdf\x2e\x7a\x0b\x48\xf0\xe2\x60\x0e\x94\xcc\x3b\xf6\xed\xab\xee\x5f\xea\xf5\x07\xaf\x72\xe1\xa6\x87\x12\x7c\x02\x5c\x16\xdc\x5d\x5e\xe3\xe5\x8d\xc1\x9e\x37\xa9\x35\xd6\x5a\xcb\x05\x12\xdb\x39\xb4\x47\xc3\xf4\xda\x84\xe2\xaa\xf6\x92\x7b\xff\x5f\x99\x70\x83\x41\x5e\xd3\xae\xb6\x26\x4d\x46\x69\x78\xa3\xab\xf0\x1e\x35\x2d\x1d\xd2\xf0\x46\xff\x51\x78\xf7\xe6\x16\x3e\xa5\xe1\xdd\x50\x38\x05\x7c\x7d\xa4\x64\x63\x0e\xd8\x75\x07\x6b\xe6\xcf\x64\xf1\x0b\x76\xbd\x5a\xe1\x31\x25\xf3\x29\xf9\x32\xce\x9c\x5c\x41\xe7\xcb\x5a\x2f\x35\xca\x04\x0b\xe9\x6f\x52\xa2\xac\x07\xb9\x50\x6f\x9d\x4b\xa2\xcc\x29\x1e\x39\x13\x27\x7e\x0a\xd1\x71\x75\x87\xc9\x8e\x06\x36\x46\x6b\x2f\x28\x3b\x07\xa4\xb7\xc6\xa2\xc3\x25\xd1\xca\xe3\x34\x12\x42\xba\x50\xc9\x5e\x65\x96\x65\x22\xb0\x1e\x79\x0e\x64\x77\xff\x20\x64\xa1\x75\x01\xb1\x73\x5e\xac\x82\x1c\x20\xcb\xc0\x39\x8f\x94\x1b\x4a\xb1\xde\xa5\x12\x1c\xcf\xdf\xca\xef\xa6\xb9\xdc\xed\xb3\xe5\x06\xf2\x4c\x89\x16\x71\x37\x99\x71\x72\x8a\x85\x74\x2d\x98\x29\x77\x82\xff\x61\x0c\x62\x11\x6b\x88\xef\x24\x13\x55\x7e\x07\x8d\x9b\x10\x4c\x20\xe6\x88\xc3\xd6\x81\xd2\xd7\x1e\xc0\xc8\x7a\xe2\x98\x0d\x37\x4f\xb4\x61\xb6\xe1\xe7\x6f\xd5\xb6\x71\xdb\x14\x3d\xd5\x9c\x89\x74\xdb\x59\x19\x99\x59\xb3\x12\x47\xef\xff\xd0\x58\x61\x05\x6d\x4e\xbb\x21\x73\x1b\x71\xf6\x98\xcc\x3a\xad\xea\x90\xe2\x69\xce\x67\xd5\xbc\x6d\xaa\xe8\x45\x5e\xf4\x68\x72\x99\xdd\xe6\xc9\xd2\x5d\x3b\x30\x4d\xcd\x19\xcf\xf3\x66\xfc\xcf\x2c\xdd\xf4\x68\x2e\x9d\x7f\xc4\xa5\x9b\x1d\x69\xe9\xa2\x2b\x4b\x97\x3b\x49\x93\x17\xbd\x5d\xe5\x45\x4b\x73\x86\x9b\xb3\x19\x2a\x5e\x74\x42\x3f\xc6\xe1\xc6\xbd\xc8\x8b\xa8\x3e\x80\x53\xab\xa4\x97\x1f\xfd\xdc\xfa\x6b\x1b\xea\x70\x28\xb6\xe3\xf8\x62\x31\x96\xe7\x12\xb8\x45\xe1\x1f\xe4\x64\x39\x2c\xc6\xfe\xc9\x45\x87\x39\xed\x4b\x8a\xdb\xd9\xe6\x07\x04\x62\x3a\x1c\xfd\xd9\x05\xb0\x49\xcc\xd3\x03\xc3\xc9\xb6\x35\xc9\xc3\x28\x78\x9c\x05\x98\xfe\xf4\x1a\x55\xac\x4d\x9c\x85\x3f\xa0\x0a\xfb\x0c\x7c\x48\xbd\xda\xf9\xd5\xee\x5c\x00\xc3\x29\x5d\x15\x32\x90\xa3\x75\x74\x5d\x28\xb6\xb9\x4e\xb3\x05\x62\x31\x0d\x26\xa6\x7f\xef\x66\xc5\xa2\x2f\xc8\x17\x7d\x95\x52\x9c\x9d\x86\x20\x97\xe6\x2e\x63\x3e\xaf\xd3\x1d\x89\x5a\x40\x08\x86\xb2\x3b\xd1\xed\x85\x6d\x68\x63\xa0\xd9\x0d\xfc\x5b\x11\xc1\x05\x39\x0c\xc9\x1e\xed\x13\xe5\x9a\xbd\xb4\x38\x24\x36\x9c\x35\xa2\xad\x96\x43\x47\x45\x1d\x1e\x39\xc7\x6b\x2b\xf5\xb5\xc7\xfa\x6f\x28\x43\xa1\x44\x6d\xce\xc7\xab\x77\x71\x1e\xf8\x89\xc0\xb8\x4e\x20\x7b\x4a\xbb\xe7\xbf\xe6\x42\xac\xce\x64\x32\x82\x55\x7d\x9c\x42\x99\x83\x02\x60\xda\xe7\x06\x58\x22\xe2\x41\xd3\xc2\x88\x4c\xc9\xe4\x13\xd3\x3f\xed\x97\xfc\x61\x09\x16\xfc\xb6\xd8\x18\xe5\x3c\xea\xc7\x7c\x4e\xa7\xd5\xf6\x31\xcf\xf0\x6e\x0c\xaa\x41\xa5\xa8\x4c\x99\xa2\x6b\x84\x81\x7a\x25\x49\x5d\x25\x36\xbc\x41\x8f\x67\xe8\x9a\x3b\x38\x62\xec\x90\x7b\xda\x28\x36\x2b\x57\x3c\xe3\x38\x4a\xf1\x3a\x75\x0b\x28\x2d\xdc\x60\x98\x02\xbc\x5a\x52\xd1\x17\xab\x46\x61\x16\x55\x0c\x75\xf3\xc6\x14\xe7\x42\x05\xdc\x24\x13\x10\x08\xf3\x6e\xb6\x73\x98\x78\xd4\x7f\x2b\x10\xbf\x90\x47\x33\x59\x0b\xe2\xcc\x3e\xf1\xc9\xbe\x99\x76\xf0\x4f\xc1\x34\xa2\xa8\x94\x1e\x15\xef\x45\xf7\x9b\x62\x8f\xbd\x55\xf8\xa4\x9b\xd3\x4d\x24\x01\x3c\x93\x94\x8b\xf8\x1c\xf7\x33\x78\x29\x33\x59\x2e\x13\xde\xd4\xaa\x82\x1b\x71\xd3\x52\x50\xaa\xf3\x80\x7c\xa8\x90\x2d\x2c\xb7\xd5\x07\x13\xbf\xa1\xec\x44\x92\x33\xbe\x74\x9f\x03\xc9\xa4\x49\x5a\x43\xdb\x48\xac\x15\xa1\x3e\xe2\xee\xf1\x5a\x1a\x6b\xd7\x38\x25\x63\xd9\xe0\x22\x64\x8d\x27\xaf\xcd\x1a\x12\x39\x87\x5c\xef\x08\x0c\xec\x71\x8e\x21\x5d\x2c\x48\x36\x78\x2e\x7a\xec\x89\xcd\xfa\x7f\xba\xac\xb8\xff\x60\x9e\x23\x4c\xe8\xe7\xad\x3e\x61\x81\xf1\x30\xb2\xfc\x04\xf6\xc2\x27\x6f\xe0\xf6\xb4\xfc\x52\xef\x30\x43\xfa\xbb\x86\xb7\x8a\x4b\x3c\xe6\xe9\xb5\x67\xbd\x35\xb8\x1b\xb7\xac\xcd\x97\x86\x13\x82\x70\x98\xac\xac\xe2\xac\x89\x1e\x93\xac\x5a\xb3\x92\x12\x63\xb9\x73\xd0\x58\x3c\x36\x4d\xc3\x2b\x20\x8f\xd2\xf6\x1c\x74\x72\x89\x0a\x0a\xdb\x10\xe3\xd6\x31\xf0\x1d\x13\x58\xdd\x5e\x19\xb8\xd0\x48\x99\x23\x3a\xc4\x54\xe1\xb0\x9b\x19\x79\x42\x8a\xa7\x84\x34\x84\x92\x35\x39\xf3\x31\xfc\x6d\xd9\x4d\x57\x15\x74\x22\xae\x94\x0c\x70\x3a\xaf\x63\x72\xc1\x7a\x1b\x93\x3e\x90\x5b\x42\x9b\xf2\xc2\x86\x75\xd4\x2f\x8e\x0d\x41\x5e\x7c\xc7\x1b\xb3\xe1\xe9\x06\x8d\x8e\x2d\x71\x6a\x60\xcb\xe5\xc9\x82\xa3\xf7\xcd\xd4\x6c\xd7\x9e\xd2\x80\xab\x13\x62\x78\x51\x85\x8b\x0f\xb6\xe6\x96\xd1\x0c\x52\xf7\x89\xb6\x08\x08\xba\x65\x35\x15\xb1\x4a\xad\x20\x48\xfb\x24\x56\xd4\xa8\x70\x0b\x0a\xf8\x62\x27\x8d\x36\x01\xa4\x5d\x14\x91\x28\x61\xd0\xcd\xbe\x2e\x00\xac\x72\x6a\x9e\x15\x3d\xcf\x03\xcd\x73\x5d\x05\x19\xfe\x75\x6b\x34\xb2\x95\x72\x74\x10\x1b\x8d\xb1\xaa\x4e\x85\x76\x67\x34\x02\xed\xa4\x81\x32\xbd\xb5\x3d\x0f\x24\xeb\xea\x38\x32\x08\xe2\x84\xfc\xc7\xce\xfb\x86\x82\x02\xc7\x71\x92\x00\xf7\x93\xa2\x5d\x77\x55\x20\x55\xc5\x43\xdc\xd7\x88\x3e\x5d\xc7\x1c\x76\x10\xe8\xfe\x0b\xf2\x30\x95\x6c\x63\x50\x6f\x45\x44\x53\xd9\x19\x59\xcc\x7d\xac\xf1\x21\x8a\x71\x56\xfb\x3d\x81\x85\x17\x00\x94\xcc\x36\xfe\xa0\xda\x6a\x3e\x84\xdd\xa0\x99\x48\xb2\xdd\x44\xe6\x7d\x65\xab\x83\xbf\x86\x71\x70\x9d\x8e\xc1\xdc\x21\xc0\x9e\x06\x1c\x27\xe8\x8d\x14\x57\x05\xda\x94\x6c\xba\xcc\x1d\x34\x8e\x98\x02\xf5\x1b\x66\xd7\xdb\x57\x28\x21\xd5\x21\x35\x1c\x65\xfb\xcf\x20\x8c\xc4\xb1\x54\x7c\xe9\x90\xc1\x1b\x85\xa9\x7b\xcd\xb2\x65\x08\x71\x09\xe6\x55\xc9\xea\x9c\x8d\x07\x79\x30\xad\x9b\xb1\x8a\x33\xa4\xe2\x2e\xcc\xa9\x01\xa7\x86\xb0\xc4\xc7\x53\x48\x22\xa0\xcb\xec\xd7\x24\xfc\x2d\xc4\xfc\x70\x53\x0a\x4f\xa6\x51\x97\x18\x00\xaa\xc8\x51\x6c\x44\xe9\x0b\x80\x20\xe6\x72\xde\x84\xbd\xb5\x31\xcb\xb6\xa2\x04\xdb\xc7\xbc\xfb\x14\x30\xa2\xa7\x7c\x86\xe5\x1e\xc6\xe5\x8b\x95\x68\x20\x72\xaa\x55\x35\xa2\x44\x85\x03\x23\x1d\x1a\xd4\xa9\x59\x05\xe5\x1f\xa8\x04\xd3\x41\xb3\x4f\x84\x17\x33\x2a\x8a\x27\xc5\x22\x14\x8c\x34\xcb\x41\x19\xa3\x46\xba\x7e\x4d\x42\xe0\x3e\x75\xfc\x60\xec\x73\x8a\x3a\x09\x75\x65\x5b\x08\xaf\xd9\x20\xc2\x8e\x18\xb9\x32\xe8\xc4\x9d\x15\x11\x16\x16\x20\xb2\xc8\x80\xb0\xc4\x64\xf0\x43\xff\x21\x17\x1d\x1f\x6a\x4a\xad\xee\x45\x54\xb9\xb0\x77\x29\x19\x4d\x52\xd0\x29\xc0\x4f\x62\xf6\xf7\xdc\x8e\xe8\x55\x8f\xd2\x2e\xf8\x0d\xb3\x1d\x83\x60\xc1\xb4\x0e\xaf\x93\x37\xfd\x0c\x6a\x6a\x01\xe4\x5a\xa8\xec\xee\x70\x37\xed\xa0\x76\xd8\x1a\x8d\x02\x30\x3f\x28\x07\x3b\xa6\xd8\x1a\x1c\xcf\x53\x8a\xd6\x2f\x58\x44\x28\x89\xb9\xe8\x5c\x9e\xaf\xa7\x18\xd8\x4a\x04\xf9\xef\xfa\x50\xaa\x41\xcf\xd7\xa9\xe0\x9e\x6e\x57\xd3\x40\x8d\xc9\x93\xc2\x04\xea\xf6\x24\x34\x50\x7a\x49\xb5\xde\x95\xf7\x11\x85\x3c\xc7\x57\x82\x50\x76\x10\x70\x07\xd6\x7b\xc0\xd8\x67\xc7\x58\xed\xe1\x6f\x0c\x39\xfc\x9d\x02\x60\x26\xd8\x0b\xd2\x16\xa2\xf2\xb7\x09\x4b\x97\x79\x98\x64\xdb\x4d\xf5\xc1\xa3\x41\x1a\xe8\x87\x92\x30\x02\x9d\x4b\x58\x1e\x68\xb6\xc9\x03\x1b\x96\xf4\x03\xe8\x1f\xd5\x88\x39\x9e\x16\xd3\x71\xf4\x19\x0a\x28\xd5\x20\x96\xf6\x24\xc6\x0d\x3c\xbf\x05\x55\xa0\xfe\x87\x05\x1e\x18\xe1\x6f\x9b\x0a\x6c\xbe\x17\x05\xeb\xde\x41\x7e\x04\xc8\xc2\x72\x48\xed\x32\x28\x9f\xf5\x5a\x4b\xf1\x1e\xa8\x80\x2a\x3b\xb4\x55\xba\x8c\x7d\xfa\xbf\x8c\x15\x10\xf7\x30\x73\x1d\x90\xab\x11\xb1\x16\x4c\x06\x3c\xc2\x8a\x40\x6a\x6f\xf5\x48\xa5\xfd\x1d\x07\xe8\xd3\x68\xe1\xef\xef\x47\xdb\x72\x35\x5a\x51\x67\x4c\x20\xc5\x46\xb2\x34\xef\xd1\x4c\x6f\xd7\xd4\x77\x56\x28\x20\x89\xb3\x7f\xcb\x49\x64\xcc\x49\x06\x67\x9c\x04\x6d\xf3\x35\xcb\x20\x00\xf9\xfb\x3b\xf6\x81\x02\xdb\x31\xbb\x81\xf5\x7f\x9d\xb7\x98\x4a\x8d\x55\xb2\x3a\x6f\xcf\x60\xcd\xb3\x5b\x92\xef\xc6\x26\xc5\x9b\x38\xef\xd2\x88\xaa\xd7\x83\xd1\x5e\x4e\xac\x1c\xa2\x3d\xdf\xfe\xba\x76\x34\x1a\xf1\x32\xcd\xc7\xb0\xb4\x80\xff\xed\x38\x57\x12\xce\x4a\x29\xf1\xda\x05\x2c\x29\xca\x0a\x6a\x09\x65\x39\x3a\xd5\xe7\xab\x4e\x6f\x49\x09\x3b\x48\xca\xe6\xeb\x07\x8b\x52\x6a\x6d\xf1\x5d\x2d\x25\x2b\xed\x20\xa0\x7c\xa8\x83\x38\xe9\xe3\x72\x2c\xf2\x46\x5b\x96\x28\x2d\xc1\x10\x8e\x88\xea\xd5\xe6\xd2\x60\xbd\xef\x06\xab\x17\x52\xb3\x86\x7a\x28\x6a\x7a\xad\xb4\x28\x1f\x42\xee\x12\x0c\x9f\xc5\x9d\x84\x25\x29\x48\x5f\xed\x2a\x12\x19\x54\x80\x23\x79\xae\x81\x2d\x09\xb3\xb5\x98\xc6\x56\xbc\xa9\x6c\x26\x1e\xc2\xdf\x71\x32\x7c\xca\x8f\x4a\x39\x85\x97\x35\x50\xf9\xb0\x8c\xb1\x07\x1f\x2a\xd5\x48\x2a\x2b\x5e\x93\xfa\xd0\xb6\x06\xde\x68\x92\x32\x1e\x85\x84\x8a\x45\x0d\xe4\xac\x31\x44\x5b\x0f\x71\x06\xeb\xae\x06\x06\x77\x3c\x46\x39\x11\x8d\xb0\xae\x81\xe2\x6b\x8c\x30\xa9\xd3\x08\x03\xc6\x86\xa9\x11\xf6\x35\x50\x9c\xed\x08\xf1\x7e\xa8\xa5\xc5\x82\xd2\xb2\xaf\x53\xdf\xba\x64\x16\x88\x88\x90\xf9\xea\xb9\x68\x7c\x20\xf3\x5e\xd5\xce\x04\xa1\xe6\x33\xc4\xba\x8e\x35\xca\x19\x0f\x55\x50\xe0\xb3\x8d\x87\x5c\xa6\x53\xa2\x63\xd4\x10\xbc\x29\xbb\x7a\xf5\x0f\x69\x92\x7f\xd3\xcb\x77\x51\x03\xd2\x55\xae\xc0\xf8\x11\x69\x35\x88\x5e\x6b\xf5\xaf\x55\xb1\xb2\xba\x36\xda\x74\x1a\xbc\x31\x43\x2e\x53\x7b\x4a\x4f\x60\xc6\x99\xdd\xe2\xed\x79\xfe\x5b\x08\x36\x2d\x4a\xf6\x71\x61\x7a\xdb\xf4\x4e\x81\xa0\x7f\x2c\xd7\x59\xb4\x99\x7c\x5e\x60\x4d\xd1\x4a\x6a\xf3\x90\x66\xf6\xa6\x1e\x3d\xdf\x40\xea\x12\xdc\xf1\x90\x9d\x49\xed\x01\xa8\x02\x73\xbe\xc0\x39\x92\xc3\x66\xce\x7b\x52\x3f\x78\x80\xdb\x06\xb2\x42\x55\xf1\x08\x89\xca\x00\x9a\xf0\x7a\xda\x01\x59\xae\x44\x3c\xfc\x37\x1a\xa7\x84\xcb\x58\x8b\x15\xe8\xf6\x01\x0b\xdb\x34\x6a\xe6\xa9\x40\xfc\xc6\xfb\x6a\x5b\x1f\x41\x4f\xf1\xe2\xf4\x62\xe5\x6a\x92\x16\x5d\x05\xce\xba\x90\xe0\xe3\x8e\x8d\x1b\xa8\xdf\x45\xd3\x14\x08\xf5\x23\xa2\xb8\x71\x4a\x1d\x07\xdc\x25\x37\x00\x51\x58\x3e\x59\x1a\x1c\x8d\x96\xc1\x05\x50\x1d\xca\xa4\x89\x45\x39\x9e\x31\x4b\x5c\x15\xe0\x7b\x4d\xaf\x51\xf7\x74\xb6\x46\xf5\xf3\x76\x0e\xeb\x92\x9a\x6b\xf2\x6a\xf5\x95\x1b\xc5\xa5\xe5\x3b\x70\xa6\x4a\x2d\x87\x33\x55\x06\x45\x8f\x3d\x62\x45\xee\x78\xe6\x44\x1f\xbf\xcf\x78\x59\x8f\x3d\xbe\xfb\x39\xc3\xbc\x57\x06\xa9\x01\x9a\x40\xb7\x1f\x01\x4f\x84\x54\x2b\x43\x47\x37\x9a\x51\xf4\x2f\x31\x8a\xfa\x39\x4d\x6f\x48\x8c\x2b\x6e\xfa\xa4\xb5\x36\xb4\x76\x82\xfa\xf4\x50\xa4\xc8\x34\x48\x4a\xac\xdf\x4a\xa4\x36\xfd\x2b\xef\xd9\x4f\x7f\x0d\x99\xb8\x05\x48\x30\x23\x82\x9b\xde\xa5\x8a\x73\x51\x7d\xd0\xda\x2e\xed\x2f\x50\xc1\xbb\xe8\x09\x68\x44\x70\xb7\xdd\xc2\xca\xc2\x99\x71\xd9\x3f\x31\xae\xcd\x6c\x50\xa8\xbb\x89\x80\x02\x76\x8a\xcb\x49\x76\xae\x1d\x19\x24\x4a\x55\x93\x64\x44\x1b\xf9\x7a\xcc\x07\x93\x6d\xcf\xd6\x7a\xdb\x93\xc4\x6b\xe1\xa2\xf8\x68\x6e\xec\xc1\x49\xc6\x79\x32\xa9\x12\x12\x8c\xdf\xe7\xc9\x44\xe9\xc1\x90\xcf\x8a\xf1\xc7\x09\xe1\xa8\x16\x7d\x13\x33\x14\x42\xb6\x52\x8f\xc9\xcf\x7b\xc3\x54\xb6\xce\x25\x95\x7d\xc9\x30\x92\x05\x9f\xe4\xd2\xaf\x73\xb3\xb2\x1e\x14\xc2\x14\xaf\xc8\xd0\xa8\x7e\x49\xac\x2f\x59\x8a\xa1\x15\xf6\xa0\x04\xf6\xb6\x9f\x39\xbb\x55\x9c\x50\x1f\xd8\x60\x42\xd0\xee\x12\xad\x07\x2d\x14\x92\x29\x36\x23\x31\xc9\xb3\x3b\x43\x0b\xa7\x47\x4d\x69\xd8\x0a\xc5\xb0\x83\xea\x12\x1e\xb1\x50\x4a\xc3\xe4\x2b\xea\x64\xd1\x35\xf8\x60\x5a\x09\x54\x50\xda\xcc\x85\x44\xc1\xb7\x2c\x6c\xa6\xa5\x8c\xff\x61\x7e\x0b\x93\x8a\x64\x59\x92\x42\xfd\x43\x69\x4a\x60\x48\xac\x77\xdb\x63\xd5\x97\x3c\xb4\xaa\xd3\x50\x6c\xde\x83\x13\xea\x41\xb4\x6b\x69\x43\xcc\x0e\x2c\xf0\xbf\xda\xb5\x8c\x41\x64\x2f\x7f\x20\x18\xdd\xb8\xc4\xb6\xc7\x2a\xdd\x3c\x10\xca\x05\xc3\x93\x63\xc9\xc9\xff\x58\x07\xda\xb8\xe1\x92\x38\xfd\xa3\xc9\xf6\xb0\x4e\x02\xca\xa2\x82\x5d\xa4\x78\x54\x22\xb2\x5c\x7e\x2c\x31\xfb\xa4\x43\xbe\x17\xfd\x89\x21\xd6\xbb\x60\x75\xbd\x77\x48\x7a\xc5\xd2\xe5\x19\x72\xef\x65\x8c\x44\xb1\x54\x18\x32\x39\x89\xb1\xff\xa7\x58\xb1\x99\x0c\x04\x96\xd9\x98\xc1\x6c\x27\xa2\x94\x51\x7c\xe7\x94\x29\x6c\x8d\x26\x2c\x92\xd6\xa5\x73\x69\xcd\xd6\x7c\x8f\xb9\x6e\xde\xd4\xb1\xbf\x94\x19\x09\x76\xd7\x94\xbf\x60\x4a\x42\xfb\xfc\x9c\xf2\xa1\x83\x7a\x07\x0d\xde\xb8\x68\x21\xf9\x52\x7b\x34\x14\x5b\xae\xef\x29\xc4\x23\xe9\xcb\x1e\x93\x0f\xf1\x3d\x86\x78\x8e\x03\xe2\xc4\x3d\x35\xe8\xb1\x25\x7f\x8a\xbc\x4b\x66\x02\xa5\x90\xcb\x39\xe5\xb2\x05\x69\xf3\x74\xaa\x5b\x1a\x4f\xe2\xbe\x5c\x47\xeb\x8a\x42\xd6\x9d\xf8\x8f\xfd\x8c\x85\x4d\xde\x4f\x5b\xff\xb4\x93\xa7\xf8\x53\x3b\x59\x3c\x26\x37\xe7\x0f\xa9\x9f\xf9\x6d\xbf\xed\x36\x20\x53\xe4\x2b\x3d\x95\x4c\x3c\x44\x33\x82\x58\x32\xfb\x6e\x3f\x13\xf1\x0e\xbb\x3f\x55\x79\xac\x82\xde\xae\x36\xc6\x1f\x94\x13\x06\x7e\x3b\xc9\x4f\x3b\xf9\xb9\xc4\xb8\xb2\x9c\xbe\x0f\xc9\xcf\xc3\x7b\xf2\x3b\x6e\x6e\xdf\x96\xdb\x56\x91\x4a\x8f\x2b\x48\xa1\xb6\x96\xcd\xc4\x8b\x31\x15\x1f\x2f\x29\xb1\xeb\x73\xf2\x33\xb9\x07\xbd\x9d\x19\x30\xae\x0d\x60\x22\xe3\xf7\xd1\xf8\xfd\x98\xfc\x0c\xbe\xf4\x6f\xf7\x76\x5d\xb0\x4c\xbc\x1a\x88\x8f\x09\x2b\x7e\x6a\xdf\xb7\x4d\x94\xf9\x2b\xe3\x8f\xf6\x57\xf2\xbb\xfe\x95\xf7\x2d\x71\xbb\x30\x40\xf6\x3f\x12\x84\x2c\x4c\x18\x4e\xa4\xb4\xa9\x3f\xee\xca\x15\x8e\xd6\x25\x9b\x89\xcf\x14\x01\x80\x2b\x94\xc3\xc4\xbb\x88\xfd\xe2\xd2\x14\x72\x75\x26\xf1\x36\x43\xba\xe9\xd1\xf1\xe5\x39\xf5\x34\xee\xb6\x09\x8c\x9d\xb5\x35\xff\x10\xe6\x42\x1a\x9f\x31\x46\x89\xe7\x92\x7a\x9a\x4f\xca\x3d\xcc\x75\x6b\x3f\x5f\xda\x38\x57\x7e\x5e\xda\x85\x3f\xfa\x49\x1f\x56\x08\xf0\xf0\x28\xa2\x66\x01\x94\xe9\x00\x65\x1a\xe8\x36\xda\x1a\x4f\x07\x58\x2f\x42\xe1\x61\x88\xee\x58\xe2\x57\xfc\xd4\x7e\x15\x98\x3f\xcb\x61\xe2\xb7\xd0\xf5\x9c\x1c\xc5\xa0\x53\x1f\x34\xc6\xa3\x7a\x55\xe0\xee\x98\xea\x4c\x2f\x5c\x75\x42\x39\x3c\x5f\xb2\x20\x0d\x8a\x82\x39\xbe\x28\xd9\x30\xfc\xc5\x94\x46\xee\x1c\x52\x1a\x41\x04\xd0\xe5\x94\x46\x6e\x00\x29\x8d\xd4\x42\x5d\x4c\x69\xe4\x4e\xc4\xda\x42\x5a\x05\x47\x90\x5b\x70\xdc\xc5\x2c\x62\x78\x65\x85\x2e\xf6\x9d\x0b\x1e\xf6\xdd\xd8\xc5\xf0\x68\x91\x5b\x0b\xb8\x85\xdf\x52\xb9\xff\x64\x1c\xf2\x3e\xef\x5c\x70\x3e\x4f\x06\xaa\xf9\x84\x51\x70\xe1\x84\x54\xb5\x72\x65\x8e\x84\x81\x09\x9d\x0b\x71\x09\xc9\x40\x61\x20\x0d\x90\x66\xbe\x3c\x83\xe9\xa7\x23\x2d\x1e\xf4\xfa\xc1\xf5\xf7\x13\x56\x96\x33\x06\x42\x67\xe6\xce\x55\x5f\x66\x9b\xf5\x3b\xba\x7e\x56\x7c\xe7\x07\x54\xf9\xc5\xbc\x80\xd3\xc5\xdf\xe9\x41\xd7\x34\x02\x27\x69\xbc\x61\xf7\x45\xfb\x84\x1d\xab\x47\x0b\xde\xcf\x78\x63\x97\x2e\x03\xa0\x1d\x10\x00\x92\x5f\xa4\x2c\x6c\x9f\xe9\xca\x02\x6a\xc2\xa0\xc2\xea\x95\x1f\xcd\x2f\xcd\xf8\x72\xc2\xd1\xd4\x23\x4a\x6d\x3c\x90\x34\x51\x21\x6b\x46\x68\xcc\x6e\x44\x56\x72\xf7\x2e\x10\xa0\x03\xd5\x3c\x6a\x5b\xba\xe2\x13\x66\xc0\x73\xab\x98\x7b\xd7\xad\x61\x67\xd8\xec\xc8\xdc\xe5\xd1\x2c\x36\x88\x56\x65\x0d\x75\x0c\xcc\x7a\x12\x57\x1d\xc3\x3c\x98\xa1\x68\x3c\xe7\x36\x19\x6e\x1e\x8b\x71\x65\x73\x11\xe5\x8f\x33\x44\x1f\x36\x88\xdd\xb1\x5a\x17\x06\xa2\x94\xce\xa0\x50\xb5\x2f\xb4\xb1\xb5\xfb\x83\x68\x88\xd2\x85\x36\x8e\x31\xce\x64\x90\xdf\xc6\x35\x60\xf6\x2f\xb4\xe9\x92\x37\xcc\x98\x33\x37\xb0\xe6\x99\x56\x6a\x4f\x2f\xb9\xb6\x7b\x37\x20\x30\x4f\x6e\x4a\xc8\xb2\xf5\x5d\x47\x2e\x1e\x44\x24\xa2\x16\x66\xaa\x2c\x6e\xe1\xd4\xad\xba\xee\x6f\xf8\xf5\xae\x50\xb7\x2a\x12\x07\xdd\x15\xab\x9e\xfe\xa8\xab\x8b\xee\xcb\x35\xdd\x75\xf4\xe3\x9e\xb0\xb8\x22\x12\xfe\xf6\x8f\xbb\x3a\x08\x6f\x45\x7f\xf4\xed\xc7\x3d\x6d\x70\x92\x12\x27\xdd\x73\xf0\xe3\x9e\x6a\xc9\x44\x24\x1a\x49\x4f\xe7\xa5\x1c\xc8\xdc\x8d\xc6\xd6\xb0\x72\x35\xb8\xa9\x64\x40\xe8\xb5\xab\x24\x0e\x89\xc1\x75\xb8\x3a\xe9\xe1\x90\x2d\x54\x17\x9e\x7e\x83\x2d\xd6\x7c\x66\x7d\xab\x38\x13\x7a\xd0\x4b\x5b\x62\xf3\x08\xa7\x31\x34\x32\x78\x70\x4a\x3d\xda\xcc\xb6\x12\x70\xfe\xa0\xe7\x5e\x32\x09\x2c\xe0\xfb\xae\x7d\x3c\x7d\xc6\x33\x81\xbf\x89\x01\x8a\x15\x2f\x1e\x87\x0a\xfe\xf5\xb7\x43\xa1\x70\x2c\x8e\x11\x87\x5d\xd5\x7c\x0b\x50\xd4\xe3\xae\x97\x76\xa8\xad\xef\xc6\x10\xfe\xb9\x55\x5c\x7e\xb2\xa1\x05\xec\xef\x7a\x4f\xd2\x0f\xa8\x7e\x65\x0f\xa2\x33\xa7\xf0\xd5\xa4\xef\x25\xfe\x42\x7d\x29\x44\x5c\x04\x56\xb1\x7c\xc7\xba\x16\x16\x20\xfc\xc3\x9e\x37\x96\xfa\xe6\xf6\x2f\xf4\x5c\x76\xd4\x37\xeb\xdf\xf6\xcc\x59\xe4\x1b\x20\x8f\xf2\xb7\x2b\x43\x1f\xa5\x93\xa0\xea\x59\x1d\xb2\x41\x07\x38\xc6\xf5\x8f\x76\xc1\x7c\x85\xf6\x40\xbc\x6b\xc3\x89\x7e\xe9\x8e\x59\x2e\x98\x7c\x72\x84\xf6\x11\x04\x36\xb4\x8a\x33\xe8\xb8\xfe\x29\x86\x74\x88\x6d\x37\x06\xbb\x61\x15\x0b\x77\xcc\x35\x3e\xfe\xcd\x10\x3b\xae\x38\xbe\xea\xca\x8a\x4b\xa1\xbe\x5e\xfe\xe9\xd7\xf5\x37\x37\x56\x71\x3a\xe3\xec\xc3\xdc\x4a\x97\xc5\xd5\x90\x5c\x92\xbb\x7a\x13\x5a\xe9\x8f\x5e\x12\x62\x49\x4f\x40\xd6\xc6\x2a\x2e\xa0\x67\xf3\x0f\x7a\xea\x6f\x4e\xad\xf4\x96\xbb\xd4\xd3\x20\x27\xe8\x1a\x58\xc5\xf5\x1d\x73\xfe\x1a\xb7\x69\x02\x21\x7e\xfd\xe5\x9e\xeb\xbf\xc2\x1c\x91\xb9\xec\x7e\xc2\xe2\xb2\x5d\xa7\xae\xa2\xa3\x6f\x67\x6a\x12\xc3\x10\xd6\xe5\xc6\x51\xe0\xee\x7f\x40\x46\x9a\xfc\xbb\xb4\xa2\xf5\xdb\x14\x8a\x7e\xde\xf1\x28\x7f\x46\xb9\xe7\xa4\x80\x3d\x8f\x7f\x81\x88\x9a\xe9\x4d\x7e\xa9\x63\xc2\x1d\x3c\x2c\xb2\x5d\xac\x76\xd4\x2c\x47\xdf\x71\x87\x2e\x1e\xc1\xb4\xe0\xec\x01\xcb\xad\x59\xb4\x55\xe1\xe3\x1f\xdf\x73\x18\xbc\xb3\x28\x48\x26\xd4\xa1\x44\xbc\x17\x6f\x60\x93\x8f\xfe\x84\x07\x77\x91\x07\x8b\xb4\xb4\xfc\xa6\xe7\x07\x9a\xc1\x45\xdb\x02\x4f\x80\x3f\x90\x35\x6b\x54\x10\x15\x67\xf9\xb9\x9c\xca\x21\xe0\xb2\xab\xb6\xea\xe8\xa7\xd2\x5d\xb3\xb3\xc0\x2a\x1e\x3f\xd8\x9b\x29\xa8\x2e\x75\x75\xf5\x79\x1d\xdc\xa2\x15\x21\xee\x61\x6d\x93\xfd\x76\x49\x4d\xce\x01\x77\x09\xbb\x7c\xf9\x27\x5b\x55\x33\xa5\x6a\x86\x87\x5e\xea\x9a\xc3\x09\xef\x99\x67\x0a\x9c\xcb\xe4\x4f\xc9\xc0\x44\xdb\xd4\xe5\xc8\xbb\xf0\xc2\x3f\x50\x8e\xb7\xb8\xfb\xcd\xc6\xdc\xe4\x07\xd7\xbe\xa1\x88\x75\xab\x0b\x8a\x2a\xc5\x70\xf7\xa0\xb8\xd0\x4f\xf6\x27\x76\xde\x0b\xc6\x8e\xd0\xf9\x24\x8a\x05\x47\x51\xc0\x4f\x64\x0b\x76\xae\x73\xc6\x9a\x3a\x1a\x7d\xdb\x55\x3a\xc7\xe2\x4f\x84\x44\x4c\x79\xf7\xea\xbb\xb3\x1f\x2b\x96\x9a\x79\xaa\x5d\xf6\x91\xd6\xe9\xfe\xa0\xeb\xee\x83\x0d\xa1\x18\x9f\xb0\xfe\x4a\xd7\x3f\x93\x6a\x31\xe9\x65\xf6\xf6\x37\x5b\x05\x54\x66\xa1\xeb\xc2\x43\xa0\x88\x2c\xae\x6d\x85\xae\xed\xb7\x9b\xc6\x39\x23\x5f\x54\x01\x92\xaf\x5f\x3a\xb9\x3a\x67\xca\xc3\x1a\x7a\x2e\xff\xa0\xa7\xfe\x26\x71\x33\xf1\xe7\xdf\xdc\x0e\x58\xcf\x2a\x16\x7e\xf0\x4d\xb2\xaa\x33\x1b\xdc\x89\xad\xe2\x12\x04\xe3\xf8\xdb\x9e\xd7\xb0\x8c\x2b\xb5\xfc\x16\xcb\x34\xc6\x30\x39\xec\x00\x57\x86\x91\x14\x04\x21\x2f\xce\x5e\x14\xb9\xac\xff\x84\xcb\x69\x7a\x39\x02\xde\x87\x3f\xd4\x2a\x0c\xf1\x53\x80\x8e\xdf\x6b\xe3\x66\x4f\xb0\x0c\x59\x4a\xe4\xd9\xb7\xd9\xf6\x01\xf8\xef\x89\x15\x3f\xd4\xd1\xa3\x6b\xdf\xc1\xff\xb2\xc6\xaa\x60\x46\x4e\xd1\xf5\x03\x4f\x0f\x11\xde\x58\x70\x31\x55\x48\x19\x82\x46\x0d\x71\x44\xdf\x98\xe5\x40\x3b\xc2\x8b\x77\xbf\x40\x37\x6e\x13\x69\xd8\x88\x04\xc4\x9b\x4b\x36\x60\x4d\xc7\xe8\xe2\x19\x41\x34\xb5\x95\xae\xed\x02\xd1\xcc\x78\x01\x80\x85\x92\xc3\x41\xd2\x47\xa4\xaa\xab\x93\xfb\xc3\x8e\xfc\xb2\x69\xd4\xc9\x42\xa8\x29\x9f\xf8\x16\x6e\x02\x1c\x1f\x13\x12\xe6\x37\x63\x83\x1a\x1a\x0e\xec\x0d\x78\x33\xb8\x33\xc0\x8c\xa4\x08\x00\xf3\xdb\x49\x97\xc5\x42\x24\xb7\xa4\x58\x01\xad\x76\xc2\x30\x39\x51\x3d\x01\x50\xc3\x8d\x81\x89\x37\xb5\x00\x93\x49\x0a\x35\xc3\xf5\x27\xfa\xbf\x39\x4c\xb6\xf8\xa6\x90\xf7\xb2\x1f\xdc\xe0\xe3\x3d\xdc\x1d\x4f\x30\xdb\xc2\xa2\x94\x3b\x8f\xf5\xc2\x40\xa7\x65\x02\x45\x61\x99\x6b\x34\x76\xc4\x95\x7e\x52\xdf\x12\x35\x44\x6c\xd8\xc5\x0a\x3f\xc0\x35\xd1\x86\xb5\x55\x8f\x24\x26\x3a\x70\x0e\x6d\x24\x1c\x5d\xdb\x67\x13\x51\x05\x25\xb8\x8a\xd8\xa0\x0d\xa6\x05\xd6\x5a\x80\x99\x5c\x44\xe8\x62\x14\x3a\xcb\x16\x0f\xb1\x46\x47\xa5\x49\xa1\x35\x43\x2d\x4e\x05\x18\x40\xdf\xe2\x62\x2c\x99\x39\x6e\xb1\x6c\xf2\x20\xf6\x67\x66\xfd\x4d\x09\xaf\x89\xf7\x25\x35\xd7\x01\x79\x0a\x9f\xba\x57\xa6\x1a\xa9\xef\x3b\x4c\x52\x8d\x15\x58\xfd\x08\x2b\x30\xec\x5e\x8b\x0e\xb3\x7f\x1f\xc1\xbd\x45\xc2\x28\x54\x8a\xc5\x6d\x51\x64\xf1\xf6\x06\xac\xd4\x2f\xf4\x09\xa0\x70\x68\xef\x3c\x9d\xe0\xba\xa5\xd3\x58\xab\xaf\x1d\x38\xa5\x25\x42\x27\x9a\x61\xa3\xad\xfa\xd9\x9f\xac\x98\x53\x1b\x09\x2e\x89\x56\x7c\xd7\x01\x30\xa9\x0b\xe8\xfe\x76\x83\x30\xae\x3e\x3a\x11\xd9\x82\x70\x10\xf0\x20\x5e\x8a\x92\x4d\xf9\x91\xc7\x68\xa4\x88\xa4\x23\x16\x89\x4a\xdb\xb2\xfb\x4c\x3c\x93\xd5\x1d\x6e\x15\xf6\x9c\x95\xd5\xbe\x47\xeb\x76\x73\x90\x44\x91\x41\x88\x51\xc8\x6b\x44\x9c\xf5\x82\xd4\xde\x57\xb6\xcf\x1b\xf4\xb4\x59\x00\xb7\x19\x2c\x93\x0c\xbe\x55\x76\x24\x74\x97\x9b\x82\x24\x07\x55\x70\x5d\xc1\x4f\xcc\x5e\xe0\xb0\xd0\x6a\x51\x29\xec\xdb\xe2\x80\xd9\xa1\x45\xe1\xc2\xfb\xa3\x30\xba\xac\x6b\xc8\x8d\x0a\x3c\x15\xad\x69\x57\x44\x63\x43\x6b\x5b\xd2\x9f\x70\x99\x1d\xf2\x49\x89\x3c\x30\x4a\x74\x9d\xee\x32\x3b\xe0\x3e\x3d\x9d\x95\x74\x1c\xa3\xcb\xec\x0d\x9f\xd3\xe3\x45\x49\x6a\xb3\x9f\xcb\x44\x85\x07\xf4\x7c\x59\x92\xda\x90\xeb\xaa\x2d\xb2\xa2\xe7\xeb\x12\x06\x3d\xed\x38\xe5\x00\x51\xc8\x3e\x98\x08\xf4\x4e\x7a\x5b\x06\x44\xb2\x43\x28\xea\x17\xc7\xee\x9c\xb0\x75\x95\xae\x08\x36\x29\x64\x7e\xb4\xd2\x28\x1f\x4c\xc0\xec\x2f\xa0\xf8\x8a\x17\x87\xdc\x64\x3e\xb5\x0d\x88\x2d\x0d\xc1\x6d\x18\xfc\x36\x4b\xe7\xe3\x74\x21\x9a\xfc\xca\x38\xf3\x8a\x88\x4d\xe0\x13\x1c\xa7\x24\x62\xf0\x46\x18\xbd\xe8\xb1\x49\xee\x7c\x77\x3a\x2f\x56\x72\x5b\x25\x4a\xb1\x1b\x8b\x26\x16\xf0\x7c\x90\x13\xae\x9f\xd3\xa2\x7f\x55\xc6\x88\xad\x31\x24\x5f\x10\x93\xb8\xe3\xb1\x24\x49\x1c\x9d\x4a\xe9\x2e\xb5\x31\x5e\x38\x4e\xa9\x7a\x0e\x94\x83\x41\x3c\xf9\x5e\x1e\x84\xc7\xe0\x6c\x7a\x15\x1a\xb3\x5a\x42\x34\xc1\xd6\x82\x12\xaf\xb8\xb4\xed\xdc\xa9\x96\x03\x43\x0c\xc0\x7d\x9a\xa8\xe0\x78\xb1\x7b\x0e\xa1\x3d\xa2\x74\x36\x40\xbe\x47\xf0\xbf\xc3\xfa\x35\x97\x60\xac\x06\x74\x2b\x02\xb9\x0d\x20\xd4\x50\xd4\x44\xeb\xe9\xf2\xa8\xf0\xcf\xa1\x13\x6f\x7e\x8f\x51\x6c\x48\x76\xe8\x7a\x60\xc6\xae\x36\xb1\x54\xbe\x68\x75\x52\x43\x87\xe4\xee\x72\x53\xcf\x14\x76\xc6\xf7\xc3\x52\x1d\xe6\x50\xc2\x39\x50\x26\x91\xec\x97\x9a\xe8\x44\x0e\x9a\x01\xf9\xd3\xb5\x09\xd1\x85\x52\xec\x1f\x85\x88\x3e\x21\xa2\xe7\xc3\xbc\x81\x6e\x02\x83\xed\xfb\x0e\x7a\x46\x5d\x45\xf4\xe6\x35\x67\xfb\xb0\xfe\x0c\x7d\x8a\xc0\x25\x4f\x1d\xd9\x2f\x2f\x40\xc1\xfc\x64\xb0\xc3\x44\x5f\xd9\x05\xa8\x90\x78\xae\x3e\x62\x98\xda\x35\xb4\x8f\x97\x22\xc9\x01\xb0\x42\xb4\x9f\xc8\x1f\x91\xbc\xd3\x67\x81\x75\x0d\xd9\x73\x54\x49\x2e\x20\x7b\xba\x34\x88\x31\x2a\xe0\x3c\x67\xe0\x36\xe0\x5b\x17\x08\xa7\xf2\x82\x22\x0c\x02\xd7\x7a\xe6\x37\xf2\xe7\x30\x5b\x1a\x54\x79\xd0\xdf\x90\x14\xf6\x1c\xeb\x65\x93\x4e\x31\x53\x2c\x6e\x0c\x4f\x5c\x3f\x55\xe0\xf4\xfd\x0a\x4c\xbd\xcf\x84\xa8\xa9\xf3\xa4\x03\x95\x0e\x09\xc0\x55\x2e\x12\x16\x26\x12\x4e\x05\x69\x6c\xc9\x1a\xbf\x8a\x82\x98\x0e\x51\xc7\x9a\xe5\x73\xc6\xa5\x89\x80\x0a\x21\x60\x51\x95\x49\xe0\xf7\x45\x8a\xa4\x0f\x2d\x80\x02\x45\x28\xc0\x01\x2c\x9f\xf6\xd6\x4b\x51\x3c\x72\x70\x51\x56\x2c\xca\x0a\xc7\x9d\x14\xc7\x1b\x7f\xc2\x9f\xc5\xc4\xcb\xfd\x10\x59\x67\xb2\x50\xe4\xca\x42\x91\x27\x0b\x1d\x0a\xe6\x70\xd9\x26\x97\xd1\x6d\x97\x22\x0e\x33\xf1\x42\x54\xd1\x57\x30\xfb\x87\xbb\x40\x98\x5f\xfe\xda\x73\xad\x22\x88\x89\x38\x10\xe0\xfa\xe5\x91\x53\x10\x30\xd8\xd7\x56\xe2\x44\xef\x13\x48\x20\xbb\xc0\xbc\x74\x2e\x14\xa8\x9a\xb6\x68\xf1\xf6\x53\x9a\xfd\x7f\xe8\x63\xa4\xd3\xe2\x15\x60\x23\x96\x24\xa0\x48\xfb\xf8\xaa\x43\x12\x99\xdf\x50\x22\xdd\x47\xdd\xca\x29\x63\x49\xf8\x6a\x1b\x7c\x40\x3e\xda\xe4\x5c\xaa\x04\xd4\x07\x73\xe9\x1c\x72\x03\xca\xc7\xa0\x46\x70\xea\xf1\x9a\x78\xbd\x24\x72\x9e\xf7\xa9\x16\x7c\x9b\x67\x5f\xde\x28\x75\x4b\x3b\x3e\xea\x00\xd6\xc9\x53\xaa\x4d\x41\x23\xa8\x82\xb4\x5b\x12\x19\xf4\xfa\x15\x74\x45\x99\xde\x22\x86\xa9\xbf\x5e\x60\x0c\xf7\x95\x01\xcf\x8c\xdb\x44\xc7\x52\x76\x11\xb2\x11\xb1\xaf\x0f\x56\xca\xe5\xc0\xcd\xa5\xd0\x0a\xd2\x50\x6d\xa9\x76\x66\x65\x6b\x87\xc4\x77\x9a\x81\xbb\xab\x80\x9c\x1f\x3d\xb6\xbf\xc9\x65\x25\xfb\x40\x98\x5e\x14\x0d\x0c\xb7\x72\xc1\x75\x81\xdc\x12\xda\x4f\x79\x3c\x1c\x9c\x4d\x5d\x67\x0a\xa2\xc3\x6b\x9d\xb7\xe9\x29\xf5\xa6\x9a\xaa\x04\x4b\x81\x88\x5b\x07\x03\xa8\xd1\xed\x39\xa7\xab\x56\xc4\x37\x7c\xda\xc3\xd3\xbc\xc3\xc4\xef\xd0\xfb\x76\x2c\xa5\x91\xa2\xff\xe2\x80\xa0\x46\x3a\x12\x3e\x0f\x5b\xa9\x12\xb3\xb4\xb1\x77\x8e\xc1\xff\xfb\x46\x1f\xf0\xed\x84\xb3\x40\x09\x83\xcf\xfb\xe8\xcd\x14\x79\xdf\x8e\xa2\x80\x78\xbd\xb8\x3b\x64\x09\x29\x6f\x86\xa9\x3a\x06\xa5\x71\x5a\xe2\xab\xcf\x81\x25\x13\xbc\x95\x3c\xaa\x97\xdf\x03\xcf\xda\xcf\x09\x3a\xab\xdf\xb2\xd4\xbb\x43\x1d\x8b\xa3\x97\xeb\x48\x04\xaa\x49\x43\x00\xb7\xee\x4d\x6a\x31\xa1\x3a\x4a\x2d\xc7\x6f\xa3\xd5\x01\xf6\xf9\x1b\xec\x84\x57\x07\x03\xf4\x4b\x29\x7a\x12\x9f\x73\xcc\xae\x30\xc8\x4c\x47\x73\x02\x7a\xac\xf8\xc6\x18\xf2\x0c\xcc\x77\xa9\xfd\x84\xfb\x41\xfc\x9a\x0a\xfc\xde\x7c\xd2\xf9\x6e\x9c\x2f\x66\xaf\x2c\xcd\x79\x62\x3e\x5a\x50\xa0\xda\x07\x5e\xca\x67\xc1\xb5\xb6\x88\xc9\x56\x46\xfc\x13\x03\x4b\xa1\x2e\x6d\x1c\x56\xd9\x07\x47\xfd\xfe\x32\x42\x21\xce\x2b\x08\x6a\x8f\x0a\x00\xea\xd3\x10\x4a\xae\x41\xb0\x27\x5d\x2f\x71\xa7\x77\x97\x58\xb2\xf9\xab\x41\x3d\x81\x57\xdb\x70\x98\xe8\x30\xff\x9c\x03\x78\x50\xeb\xff\x29\xcd\x5a\x7d\xd0\x61\x9c\x88\x4f\xd1\xa3\x79\x4a\x80\x08\x9f\xa3\xc1\xc7\x4b\x3e\x36\x54\x2a\xbe\x60\x2b\x8b\x61\x95\xe4\x76\xaa\xf8\xec\xcc\x62\x3b\x0b\xce\xe9\x5d\xb6\x5e\xe4\xcb\xc9\x55\xcc\x2e\xc0\xb8\xd3\x8d\x73\x81\x50\xf5\xe8\x41\xbd\x8b\x59\x6c\x68\x61\x08\xfc\xb7\xb4\x6c\xd2\xae\x33\xe0\xd4\xb8\x86\x40\x8b\x67\xac\x2c\x08\x35\x96\x2b\xaf\xb9\x07\x90\x95\xa9\xa4\x20\xc5\x75\xd1\x25\x0a\x6d\x03\x7b\x7c\x36\xa2\x12\x96\x6e\x19\x0b\x8a\x0f\xa0\xaa\x37\xf8\x90\x4b\xc6\x3e\x66\xb7\x78\xce\x06\xff\xb3\x88\x9b\x7f\xb2\x8f\x42\x29\xb5\x76\x75\xf8\xe2\xb0\x46\x1f\x2b\xa2\x4b\x3a\xa4\x9e\xa7\x8f\x0d\x6a\xb8\x1f\x3e\xb0\x68\xe7\xac\x04\x2c\xce\x6e\x63\x0a\xa6\x12\xee\xc9\xb7\x05\xf8\xe4\x95\x84\xd9\xe9\x8d\x89\x5f\xf4\xf1\x96\x0d\x9f\xb9\x09\x30\x16\x65\x8f\x6e\x5c\x43\x3d\x0f\x24\x13\x51\x11\x94\x8b\x49\x01\xfb\xc6\xc4\x53\xba\x77\x07\xb6\x25\xb8\xe9\xa3\x41\xc9\x65\xcd\x7c\x6d\xaf\xba\x12\xfa\xf0\x3b\xd4\x14\xe9\xac\xa2\xab\xd4\x3b\x49\xb6\xf1\x98\x43\x80\xad\xcd\x98\x73\xd8\x62\xae\x94\x43\xdf\xe0\x73\xf2\x97\x3e\xe4\x66\x0f\x7f\x06\x3b\xfc\x62\x62\x23\x74\xbb\xef\xcf\x80\xad\x1c\x46\x2a\xb3\x9f\xd1\x3c\xd1\x63\x4a\x79\x11\x6c\x88\x91\x0b\x6b\x5c\x84\x4b\xcc\xc2\x3e\x08\x82\xeb\xaf\x80\x61\xaf\xe4\x66\xfb\x13\xcc\xa9\x8d\xf0\xc6\xe4\x41\x9c\x69\x69\x95\x6d\x1c\xcd\x27\x4a\x9c\x50\x49\xfb\x66\x14\xa0\x5e\x90\x4b\x98\x62\x62\xd5\x32\xdb\x0c\x28\x34\x4f\x0f\xf4\xc0\x11\xf1\x16\x31\xd2\xe4\x29\x49\x41\xbc\xf9\xf7\x24\x8f\xd7\xb2\x11\x98\x1f\xe5\x06\x32\x81\xd9\x4c\xdc\x6b\x29\xd1\xae\x4a\x4d\x72\x20\xd7\xd8\xc5\xce\x76\xc8\x3b\xe9\x25\x40\x0c\xda\x11\xff\x39\x09\xac\x23\x30\xb3\x4d\xac\xec\x32\xea\x65\x17\xac\xc4\x7d\xb5\xee\x53\xe0\x23\x23\x36\x2e\x8b\xdc\x73\xf2\x4a\x24\x41\x4e\xe1\x9a\x27\x51\x4e\xce\x0e\xab\x1c\xbf\xb5\x53\x68\x15\x73\x7e\x03\x23\x4d\x39\x6e\xcc\x49\x1d\x42\xec\x27\xa2\x7d\x77\x59\x0d\x76\xa8\x16\xfa\xe4\x15\xfb\x8c\x65\x8a\x43\xe0\x31\x7d\xae\x84\xbb\x53\xe2\x14\x4f\x7f\xb6\x63\xaa\x40\x53\xb6\xb6\xd1\xe2\x7e\xee\xfb\xa6\x08\x70\x3e\x6f\x48\x18\x06\xa3\x1c\xfa\x83\x8c\xba\x1f\x2d\x34\x7e\xfb\x98\x4f\xb7\x60\x88\x6b\x28\x60\xeb\x60\xd6\x58\x94\x6b\xee\xa1\x7e\xa6\x49\xab\x01\x67\x60\xc9\x77\x31\xda\xbf\x3b\x99\xa6\x75\x4d\x3f\x00\xf1\xb2\xe2\xad\xd7\xd4\xf3\xa5\x85\x2e\x66\xf3\x4c\xfb\xc6\x01\xee\xb6\x57\x7c\x1e\xf2\xd4\x8b\x35\x14\xa6\x0f\x78\x90\xe9\xb0\x85\x6b\x97\xa1\x12\x19\x13\xb1\xca\xbc\xdc\xa9\x4e\x4e\xa0\x03\x40\x6d\xc6\x22\x0e\xae\xb6\x43\xa8\xec\xfd\x0c\x33\x41\x97\xc8\x17\xe0\xd4\x43\xb8\x3a\xfc\x05\x17\x1d\xc3\x7e\x71\xc0\xc4\x2b\x5c\xb0\x0c\xa3\x08\x83\xfc\x66\x01\x2c\xa6\xf0\xf9\x1a\x8b\xb9\xc7\x6f\xca\xa0\x0c\xdb\x11\x04\x65\x62\x9a\x85\x1d\x16\x4f\xee\xbf\x60\xc3\x46\x5a\x7d\x1a\x73\x34\xd6\xfb\xd3\xb4\x6e\x5d\xda\x62\x22\xa6\x1d\xc5\xcc\x61\xef\x17\xb8\x55\xb0\x56\xe9\x9d\xfd\xd1\x84\xb5\x79\x1b\x20\x7b\x3f\x4c\x3b\x79\x5a\x00\x1b\xe0\xd2\x8a\x12\x52\xea\x94\x4b\x25\x56\x03\x5e\xec\xb2\x27\x79\x6b\x10\x2f\xfb\x9a\xd6\x25\x26\x76\x50\x7a\xc5\x53\x43\x54\x90\xf6\xbb\x65\xaa\xf4\x8d\x7f\x2f\xf8\xfb\x11\x1f\x8c\x39\x45\xf4\xc7\xc1\xf7\x59\x12\xa8\x6a\x7f\xe4\xd7\xa2\xcd\xde\x22\xc5\x5c\x5f\x50\x2b\xa0\x8f\x5a\xa0\xdb\xfb\x7c\x86\x76\x8f\x9d\x06\xf2\x00\x5f\x50\x47\x55\x9b\xb1\x97\x10\x52\x42\x8b\x31\xdf\x2e\x28\x2d\x0f\xbc\xb6\x6b\x7c\x3e\xca\x11\xce\x60\x4b\x40\x8b\x7a\x6b\x4f\x87\x2b\xdd\x73\xdb\xbf\xd8\xa1\x05\x35\xde\xed\x83\xe5\x9b\xaa\x22\x9b\xf2\xd3\x4b\xd1\x66\xbd\x03\xc0\x02\x25\xa0\x5f\x68\xdb\xbd\xa9\x99\xff\xc6\x4c\x39\x68\xac\x9f\x71\x48\x6c\x30\x1c\x21\xa5\xa0\x1b\x30\xd4\xf6\x60\x95\x4b\xb8\xc1\xec\x5e\x18\x78\xc8\x10\xaf\x8d\x3a\x8a\x93\x23\x54\x14\x11\x09\x37\xd0\x6b\x7f\xb4\x50\xf5\xab\x64\x57\x9d\x52\x06\x67\x98\xca\xf4\x57\x32\xee\x07\x73\x22\xd4\x8e\x9a\x75\xd2\x3d\x32\x90\xc5\x47\xd3\x10\xf6\xb7\x03\xe6\x8e\x5b\xa6\x61\xc8\x12\x6b\x19\x89\xb5\xff\x8e\x26\x98\x76\x86\x4c\xcb\x04\x6a\xed\x0c\x54\x45\xdd\x32\x4a\xc8\x07\x18\x2f\xf3\xf9\x0e\xd6\x6e\x09\x2f\xe8\x38\x01\xf0\x7f\x0c\x68\x3b\x40\x9a\x58\x03\xb5\x7a\x67\x9c\xa1\x16\x2e\xa9\x52\xb8\x1d\x85\xa4\x9d\x21\x6a\x59\xb7\x89\xf7\x8f\xf4\x5c\x34\x34\x07\xd7\xe0\x2f\x30\x15\x3f\xd7\xdf\xf8\x06\xd3\x73\x75\x88\x73\x02\xb1\xdc\xf0\x9f\xe0\xb6\x0b\xb8\xbd\xff\x16\xb7\x11\xc5\x67\x66\x79\x00\x20\xd7\xce\x41\xee\xe6\x25\x87\xf3\xef\x21\x7c\x03\x0a\x32\x39\x4c\x77\xd9\x4f\x3a\xe4\x9d\xa5\x37\x01\xe4\xa0\x2d\x1f\x7e\x44\x1c\x62\x6e\x7d\x4f\x17\x31\x13\xdb\x9c\x31\xb1\x32\x10\x78\x3e\x75\x08\xb2\x55\x0d\xd1\xc0\x78\xa6\xb4\xae\x85\x99\x66\x6f\x03\x8b\xad\xc3\x2b\x5a\x3b\x5c\xd6\xca\x52\xa4\x14\xb4\x3c\x45\x14\x5d\x5c\x95\x46\x51\x87\xd0\x34\x71\x9b\xa4\xeb\x68\xee\x00\x67\x2f\x30\x68\x09\x93\xc7\xf6\x4a\xce\x25\xc1\x2d\x1a\x9c\xf2\x7f\x58\xf9\x14\x79\x9a\x26\xf3\xff\x50\x2b\xea\xa7\x0d\x77\x5a\xbd\x1b\x15\x36\xe9\x08\x56\x3a\x00\xb3\x19\xaf\x41\x70\xbf\x03\x19\x05\x3b\x31\xe5\xc4\xdc\x4a\x29\x8f\x1e\x64\x52\xeb\xe7\x2a\x10\xea\xf0\xe3\x4c\x04\xbd\x2d\x1c\xd1\xf7\x30\xa8\xa3\xcc\xa5\x6c\x00\x30\x41\x6f\x56\xc5\xe0\x29\x11\x63\x71\xd2\x81\xa5\x0d\x91\x3d\xc3\xd6\x19\x31\xe2\xa9\xd9\xab\xa5\x4e\x72\xf7\x50\x98\xe1\x19\x09\x47\x6f\x2f\x72\x4f\xf0\xa4\x6c\xa6\x75\x19\xf9\x89\xb9\x9c\xb6\xbc\x35\xcd\xd3\xd5\x65\x5b\x41\x66\xb1\x31\x5d\x09\xcd\xdb\x96\x31\x8f\x69\x1b\xf3\xb4\x66\xef\xa4\xc6\x10\x99\x4c\xe6\x62\x75\x30\x7a\xd6\xaa\xb0\x40\x8d\xe7\x4d\xfd\x6b\xbd\x53\x50\xa6\xbb\x00\xc5\xc8\xee\xb4\x31\x51\x78\xef\x06\xff\x57\x24\xd2\x85\x6d\x70\xcf\xc6\xa0\x44\x7c\x60\x62\x9b\xfc\x93\x7e\x8b\xee\x00\xfe\xf0\x64\x79\xb0\xea\xf5\x6b\x2d\xd1\xf4\xd0\x04\x90\x64\x60\x01\x2b\xed\x8f\xef\x8b\x36\xb3\x9e\xe1\xdd\x68\x7e\x09\x28\x87\xc9\x48\x50\x7f\xbc\x65\xfe\x02\x91\xf5\x66\xd1\x6f\x89\x6a\xb4\x43\x59\xd9\x70\xb8\x89\x7f\x81\x25\x14\x5d\xa5\xa7\xb4\xf0\x34\x90\x3d\xc3\x52\x1e\x80\xe1\xe4\x98\x3a\xc3\xb6\xcc\x33\xec\x88\xc2\x34\x03\x3e\x6d\xc4\xf7\xe2\xe2\x97\x7f\x8f\xf9\x37\xc1\xda\x02\xd2\x42\x01\xb3\x40\xb5\xcd\x37\xc6\x1b\xa9\xbd\x6b\x33\xf6\x5e\xa5\x84\x56\x25\x9c\x55\xcf\x20\xb5\x37\x45\xd0\x68\x3d\x3d\x3f\x29\xdb\x4c\xb6\xe9\xd8\x32\x85\x71\xc5\x23\xc1\x1b\x7f\xdd\x06\x04\x4f\x01\x4f\x2d\x9e\xb6\xc9\x8c\xd6\x90\x09\x74\xc6\xc3\x69\x27\x6f\x57\x43\xe2\xfd\x00\x71\x39\x46\xe9\x9b\x3d\x59\x84\xc8\x40\x50\xb9\x23\x3d\xe2\xbd\x32\xcd\x53\xfd\xe8\x6d\xfb\x5c\x0b\xc8\xe1\xfe\x22\x14\x43\xea\xb4\x85\x8a\x43\xb6\x16\xab\x28\x50\x57\x3c\x5f\xbf\xc4\xb7\xed\x73\xf9\x57\xec\x42\xe6\x97\x38\x27\x32\x9e\x66\x46\x73\x3f\xad\xd2\x9e\xaa\xe7\x96\x43\x5f\xfa\x93\x4e\xae\xb1\x7b\xd1\xa0\xcb\x60\x3d\x8c\x06\x66\x2a\x51\x4e\xe8\xe7\x09\x18\x28\x25\x04\x13\x2c\x63\xd2\xfb\x2a\x95\x71\xd0\x66\x4d\x5f\xaa\xc5\x19\x93\x03\x8c\xfa\x49\x65\x89\xcd\xde\x80\x6d\x84\x99\x24\x3b\xc4\xe4\xd8\x94\xcd\x11\xef\xba\x9a\x7b\xcc\xa9\x74\xd7\x22\x1f\x2b\xf5\x00\xb7\xc2\x20\xce\x3d\x24\x42\x11\xa1\x2c\xed\x32\xb3\x91\xfc\x85\xfc\x7d\x2f\x13\x48\x2e\x5c\xc6\x2d\x37\xc6\xf9\xf4\x80\x05\x55\xe0\x7c\x6a\x31\x53\xf9\x1c\x60\xec\x33\x26\x4b\xbe\x3f\x22\xe9\x0f\x4f\xf8\xd2\x29\x81\x79\xeb\xb5\x00\x3a\xbf\xb3\xd3\x56\x7c\x4c\x2b\x95\x86\x70\x17\x29\xc4\xb9\x9f\x98\x62\x4d\x68\xf8\x7a\xec\xf4\x2b\x0f\xbc\x6d\x1a\x53\xd1\x31\x8d\x29\x9b\x89\x29\x5c\x15\xcd\x71\x67\xb9\xfb\xa3\x2c\x0e\x98\x7c\x3e\x1c\x93\x2b\x5a\xda\x8a\x12\xbf\xd9\xb4\xf5\x37\x47\x97\x4c\x56\xfb\x4d\x7c\x73\x06\xb7\x0a\xe4\x2c\xf3\x5e\x8c\x6d\x80\x2b\x4c\xf9\x60\xa1\x44\xf7\xc8\x5f\x00\x25\x79\x19\x3f\xfd\x51\x21\x72\xda\xf9\x1d\x1d\x39\x79\xa4\x0b\x60\xe8\x8c\xed\x92\xee\xa0\x08\x10\xd6\xdb\x08\x18\x24\x0b\x78\xba\xc1\x5c\x09\x5f\xad\x03\xa5\x7b\x15\x4c\x42\x86\x21\x8b\x15\xc0\x77\x6f\x34\xa5\x7c\x8d\x69\x2e\x1c\x46\xb0\x5a\x91\x60\x67\xcb\xc2\x96\x7a\x59\x68\x41\xec\x9a\xd0\x70\x74\x9e\xa2\x28\xbb\x62\x43\xe6\x7c\xc2\x3e\x40\x47\x2b\x94\x9b\xc3\x06\x65\x14\xac\xfa\x1d\xb8\xcf\xd8\xf2\x76\x06\x55\x92\x9c\x4d\x86\xac\x9e\x8f\xea\xf2\x46\xa7\x7e\x07\x54\x67\xfb\xdb\x90\xb4\x53\xb1\x13\x4b\x2f\x24\x68\x76\x8a\xd0\x30\x7a\x99\xed\x20\x79\x45\x80\x17\x0e\xd8\x00\xc4\x8e\xbc\x0d\xdc\x0c\x74\xb5\xa3\xc9\x99\x47\x4d\x3b\xf9\xca\x5c\x9f\xcc\x2e\xcc\x45\xf7\x01\xa7\x21\xcb\xd8\x1e\x68\xd6\x80\x85\x7a\x28\xad\xe2\x0c\x2d\xf1\x95\x35\xd8\x02\x9c\x3b\x10\x05\xad\xc7\xf8\xe2\x1a\x33\xc5\xb6\x51\x95\x28\x4c\xc1\x60\xf5\x51\xa2\x25\xc1\xd6\x0d\xbc\x75\xc7\x73\x9e\x6a\xa2\x68\xa0\x71\x24\x6b\x3b\x66\xb9\x42\x26\x5b\xfb\x85\x1a\x53\xf5\xd7\x15\x6a\x80\x5c\x0b\xe8\xa5\x8a\xcb\x08\x29\x61\x5f\x30\x23\x78\xee\xde\xab\x6f\x44\xf1\x46\x71\x1c\x81\x4e\x1e\x84\x3d\xa0\x39\x81\x99\xd1\xbd\x12\x10\xa0\x57\x80\x63\xd5\xf0\x1a\x1d\xe2\x8d\x46\xc3\x4a\x12\x26\x5d\xa7\x48\x27\xa1\xc8\xdb\xa7\x03\x66\xdb\xbc\x42\xe8\x70\xdb\xc1\xae\x92\x6d\x7c\x94\xf3\x3b\xc5\x2a\x6c\x6f\x3f\x99\x92\x84\xd5\x50\xc8\xd0\xdf\xc8\xde\x5d\x6e\x04\xf4\xc2\xdb\xd9\xbe\x9f\xc2\xc6\x44\x26\x7e\x0b\x7f\x95\x0a\x16\x18\xae\xf8\x76\x46\x02\x21\x9f\xf9\xda\xa2\xf9\x76\x59\x05\x0c\xd0\x4a\x5e\x47\x22\x58\x80\xf3\x92\xf8\x54\x9b\x03\xab\x48\xce\x79\x89\x60\x56\x4c\xb2\xcf\x24\x3b\xf8\x59\x84\xb4\xb1\x45\x17\x06\x91\x21\xba\x34\x37\x7e\x25\xcf\x6c\xc5\x68\xf5\xf8\x02\x2f\x78\x08\xbd\x90\x73\x01\xf6\x3a\x41\x99\xf5\x85\xd9\x18\x5e\x15\x01\x81\x52\x02\xbb\x99\x87\xe9\x7e\x40\x3f\x11\x35\x24\x91\x2d\xce\x79\xcd\xfd\x19\x59\x71\xfd\x0e\x90\xe3\x0d\x9f\x24\x9d\x63\x06\x51\x06\x36\x10\xf2\x05\xee\xa5\xbb\x44\x97\x83\xd5\x5c\xf0\xf9\xc5\x61\x1a\x8f\x14\xba\xde\x65\x6c\xc5\xa7\xd3\x8e\xd2\x5d\xef\x22\xfc\x7e\x77\xef\x77\x12\x3f\xd1\x85\x36\x0d\xe0\x6f\x87\x89\x93\x15\x52\xc3\xa3\x8f\x3e\xd1\xf0\xd7\xd4\x68\x08\x3e\x88\xf7\x35\x85\xcc\xee\x0b\x38\xf7\x6c\x72\x11\xb4\xdc\xa6\x0e\x9d\xb5\xc7\x62\x9c\x85\x18\xaf\xf0\xee\x93\x04\x49\x25\x4c\x13\xd0\x2b\xe0\xff\x83\xfa\x23\x3a\xd0\xc7\x1c\xc3\xad\xf9\x6a\x1e\x54\xdb\xb5\x3b\xc5\xf7\xcd\x06\x66\x1c\x52\xff\x40\x95\x07\x1a\xae\x41\xfe\x91\x74\xe5\xb0\x88\x45\x56\x70\x26\xc4\x1a\x88\xe0\x6e\x1d\x9f\x08\xcc\xbf\xe7\x56\x10\x99\x06\x88\xd5\x23\xd9\x7d\x0f\x84\x79\x85\xa0\x23\x64\xc4\x42\x89\x2a\xd8\xfc\x29\x1e\xea\x8b\x89\x87\x06\x61\x52\xd1\xe3\x9b\x3e\x38\x6f\x01\x93\x73\xb4\xde\x19\xcb\x4a\x42\xf6\xbb\xb1\xc7\x33\x18\xeb\x61\x32\xc3\xb1\xa7\xb3\x0e\x64\x39\x85\xb1\x21\x35\x15\x9b\xf0\x98\x64\x1c\x1c\x1b\xc8\xf1\xa3\x45\x63\x93\x5b\xa7\x08\x78\x15\xf9\x74\x9b\x5e\x90\x5f\x67\xf2\xa2\x44\x2f\xc8\xb1\xd3\x0e\xf8\x14\x97\x27\x24\x34\xae\x7d\x3c\xe4\xa2\xa2\x25\x1a\x7c\x71\x22\x24\x45\xad\xb4\xc9\xa7\x54\x26\x01\x89\xd7\x73\xa0\x46\xda\x4b\xba\x3e\x00\x7f\x9f\x3d\x9a\xaf\x14\x5d\x2b\x2a\xba\x41\xe4\x8d\x10\x2f\x10\x48\x6e\xd9\x38\x36\x02\x67\x13\x75\xc2\x5d\x3f\xb1\x05\xc0\x2c\xd0\xcb\x8e\x93\x7d\x10\xb4\x77\x20\x56\x42\xc6\x08\x9f\xd7\xbe\x01\x10\x4a\xd6\x8a\xe7\x52\x33\xcf\x74\xd5\xfc\x05\xba\xb9\x05\x17\xe1\xec\x88\x90\x87\x04\x39\x08\x87\x31\xae\xcf\x87\x85\xc7\x52\xe0\x85\x3d\x7c\x54\x6b\xa1\xf7\x60\x1d\x92\xe4\x89\x09\xd2\xb7\xd0\xe4\x66\x6e\xf3\x8f\xdf\x08\xec\x05\x28\x50\xad\x80\xa3\x24\x26\xe8\xc2\xb9\xaf\x71\xee\x1f\xef\x45\x87\xd9\x91\xd0\x34\xa5\x40\x02\xfe\x4a\x7c\x62\x8d\x6b\xf5\x05\x2e\x53\x6f\x8d\x59\x07\xf7\xa7\xde\x82\x37\x98\x36\xa3\x05\xcf\x1f\xd4\x71\xee\x89\x15\x05\x7b\x57\xff\xdc\xab\x7f\x1e\xd4\x3f\x77\xf1\x3f\x05\x10\xbe\x3d\x86\x15\xc3\xcf\x32\x85\xa8\xf3\xc7\x07\x2b\xf3\x40\xbb\x54\xd7\xdf\x93\x0b\x69\x40\x44\x85\xb7\x70\x42\x66\x1c\xc4\x68\x5e\x80\x3c\xca\x27\xce\x50\x9f\x99\x03\xc5\x7d\xc1\xcd\xce\x8a\x57\xe6\xe4\xaf\x31\xef\xc4\xb7\x75\xcc\x29\xe1\x38\xe4\x45\xac\x13\x68\xd9\x07\x11\x3b\x14\xcf\x3b\xe8\xd6\xe2\x32\xf9\xd9\xa2\x31\xca\x65\x72\xe4\x06\xa3\x98\x6b\x00\x39\x84\x32\xc6\x83\xf6\xbc\x53\xec\x32\x67\x62\x21\x28\x85\x79\x47\xbb\x3b\xbb\xcc\x69\xf0\x12\x8d\x33\x5e\x74\xb4\x0e\x48\xb9\x40\xec\x36\x9f\x2c\xe8\x90\xb6\xe8\xe8\x03\x80\xcb\xc4\x81\xfb\xf4\x7c\xb6\xe8\x68\xcf\x1f\x97\xb9\x27\x3e\xa7\xe7\x8b\x45\x87\xd4\x89\xa2\x64\xce\x89\x07\xf4\x7c\xb9\xe8\xc4\xce\x61\xce\x86\xaf\xe8\xf1\x7a\xd1\xa1\x2c\x7d\xea\x79\x9b\x6f\xe8\xf9\x76\xd1\x29\x9a\xd9\x49\xdc\x80\x87\xf4\x6a\xb7\xe8\xc4\x75\x9d\xdc\x0d\x8f\xe8\xf1\x7e\xd1\x29\xee\x39\x08\x22\x9b\xb9\x25\x7e\xd0\x23\x45\xf1\x65\xa9\x9c\xc7\x85\xc5\x66\x98\xed\xc2\x53\x93\xfa\x35\xdf\x92\x3b\x6b\x48\x08\x75\x99\xed\xf3\x52\x48\x97\x95\x8b\x4e\x71\x10\x07\xb0\xc3\x28\x27\x1a\x3b\x1d\x1f\x83\x2e\x5b\x14\x1f\x52\x5e\x74\x74\x64\x93\x98\xa0\x57\x2c\x56\xc5\x4a\x2d\xd1\x28\x49\x12\xb8\x12\x35\x1a\xb5\xbe\x40\xf3\x9a\x22\x99\x51\xc0\xf5\xe3\xe6\xa2\x83\xae\xa7\x2e\x1b\x4d\x78\x8b\x9e\xde\x2c\x62\xca\x70\x3f\xdb\xf4\xb0\x40\x23\xa8\x87\x01\x2f\xd1\xd3\x6a\x0f\x1f\x3a\x14\xc7\xd3\x63\xb3\x86\x75\x4e\x35\xad\x90\xf4\x85\x5d\xe2\x02\x2e\xe6\x16\x26\x17\x07\xef\x8d\x97\x24\x69\x2d\x15\x47\xf3\xa6\xf4\xbf\x0f\x27\xbd\xd7\x09\x7a\xa7\x24\x4e\x34\x05\xe0\x75\x35\x4e\xae\xbb\x7d\x25\x93\x7a\x8c\xf5\xb6\x1e\xda\x84\x60\x03\x31\xac\x59\x13\x0b\x6e\xb7\x6f\x2a\x6c\x54\xd8\x10\x14\xf6\x0a\xa5\xbe\xd1\xe6\xe9\x00\x48\xe2\x6b\x82\xa3\x77\x67\xe8\xcb\x19\x50\xc2\x66\xb0\x34\x8b\x0e\x7d\x23\xb6\x34\xd5\xf0\xde\xe8\xdc\x63\x46\xa6\x15\xaa\x1e\x8b\x5e\x2f\xa3\x69\x8a\xe9\x7f\x3d\xf4\xa8\x03\xf0\x82\x0d\x21\x05\xd2\x50\xbd\x62\x82\xa1\xa0\x03\x39\xc8\x56\x4b\xf4\x83\xbd\x09\x70\x35\x3d\xb8\xe2\xe3\x1b\x7a\xbc\x5d\x22\xb1\xd5\x40\xe0\x0c\x5a\xbe\xc4\xe2\xd2\x6d\x90\xa6\x6e\x99\x2c\xaf\xa8\xb6\x0d\x0e\x3e\xda\xd9\x78\xd0\x47\x65\x38\x40\x62\x80\xd3\xf0\x67\x44\x63\xee\x97\x80\xeb\x41\x0b\xc7\xac\xf9\x12\x03\xab\x30\xfd\x29\xf0\x16\xa8\xd9\x07\x3c\x7f\x10\xe1\x27\x5b\x94\x0d\x52\xc1\xbe\xc6\x24\x9b\x8f\xa7\x0c\xec\x7d\x84\x3d\xca\x87\x9d\xbe\x53\xd3\xdf\xc9\xc0\x1e\x41\xbd\x4a\xd1\xe2\xab\x34\xec\x10\xac\xf3\xb9\xc9\x87\x9d\xf0\x71\xd2\xf8\xc8\xc0\x7e\xd0\x63\x26\x62\x69\xef\xa3\xed\x4a\x57\x7e\xa4\xcd\x35\xf2\xfb\x46\x2d\x4d\x0f\x92\xfa\xdc\xb3\x4a\x2f\xbb\xd3\x44\xee\x4e\x13\x79\x3b\x4d\xa4\x76\x9a\xe2\xf9\x05\x54\x8d\xdf\xd0\x57\xaa\x04\x8b\x25\x23\x41\x65\x39\x71\x3b\x3e\x6b\x41\xaf\x0f\xb4\x55\x82\x37\x35\xe1\x80\x53\xe6\xd0\x2f\x88\x2b\x01\x6b\xf6\x1c\x8f\x5b\x23\x1c\xdd\x6f\xab\x86\x36\xde\x64\xba\xd3\x76\xac\x0d\x7a\xc6\xe0\x14\xc2\x94\x5a\x9f\xb9\x1e\xfa\x23\x19\xda\xc7\xa1\x75\xed\x1e\x1c\x1a\xad\x97\xee\x22\x19\xba\x8b\x37\xc3\xb0\x52\x03\xcc\xb7\x04\x16\xa8\xbe\xad\x58\xc6\x44\x3c\xa8\x53\x0e\x8a\x33\x91\xdf\x26\x12\x56\xd2\xa6\x9d\xc0\xa5\x98\x6a\x15\x57\x4e\xa3\x20\x14\x4d\x7a\x80\x54\xcf\xbe\x68\x69\x35\x25\x6d\xc4\x18\xb3\x92\x42\xde\x52\xdb\x56\xf4\x7b\x9f\x4c\x7b\x54\x09\x3a\x06\xb3\x10\x3e\x07\xb9\x3f\x04\xde\x9d\xc2\x36\x1b\xe9\x2f\xd5\x7c\x74\xfd\xc0\x1b\x24\x4c\x65\x8a\x37\x48\x5d\x54\xdb\x5b\x92\x12\xcd\x0a\x26\x3f\xeb\x2d\x5c\xee\xc9\x73\x9a\x56\xb7\x31\x58\x36\x93\xa8\x41\x1f\x82\x34\xf9\xb8\x84\x1e\x45\xcb\x1a\x3d\x3d\x56\xe2\x73\xa5\x93\xdc\xca\x39\x71\x4b\xed\x37\x3a\xb6\x98\x60\x8b\x8d\x34\xd6\x91\x0d\x8e\x70\xaa\x7c\x86\x3c\xed\xb7\xd2\x1f\xa7\xbb\x4c\xcd\x2e\x34\xcf\x61\x15\xbb\xc0\x7e\xd9\x5a\x2f\xe0\x0b\x58\xfb\x65\xf2\xba\x03\x71\xb9\xd6\xc6\x88\x7b\xd8\xb5\xe8\xce\xa3\x46\xd3\xd0\xd2\xf4\xa8\xf4\x18\xf9\x4b\x3f\x5e\x6c\xc1\xe3\x70\xb0\x07\xf5\xc6\x59\xa1\x5d\xf7\x03\x5d\xb5\x15\xed\x95\xc4\xc1\x31\x5b\xf6\x1a\x0d\x54\xc2\xca\x2d\xcc\xf2\x5b\xdc\x5b\xac\x77\xc2\x34\x5c\x6b\x5e\x5a\x4b\x20\x1a\x85\x16\xb3\xd7\xf1\x5d\xe7\x95\x91\x1b\x3c\xa7\x38\x8d\x36\xda\x87\x4b\x77\x71\xcb\xbe\x7a\x1b\x90\xa8\xd7\x5d\x87\x00\x8b\xc2\xc7\x54\xe7\x9d\x13\xcc\xc7\x4e\xcd\x00\xf5\xcf\x46\x03\xfb\x60\x15\x32\x34\x35\x38\x37\xba\x8a\x8d\x5e\x49\xd2\x1d\xb4\xd6\xa0\x3f\x50\x7f\x07\x43\xfe\x41\x20\x5c\x3a\x14\xb4\x6e\xa7\xe7\x59\xb8\x63\x83\x0d\xf8\x75\x68\xe5\xa1\xcf\xec\xc7\xca\x22\x35\xf8\x60\x35\x4d\xf5\x3e\x56\x70\x67\xf0\xc9\xf2\x6a\xbb\x72\x45\x52\x51\x9f\xb2\x60\xf6\x03\xc0\x5f\xc1\x2b\xee\xde\x8e\xae\xba\x43\x5a\x1c\xc8\x82\xc1\x0b\x98\xa8\xef\xe4\x20\x73\x2b\xd8\xac\xbb\xe2\x63\x8c\x94\x70\x70\xc9\x82\x02\x62\x78\xef\x60\x26\xc3\x08\x2f\x1d\x17\x4b\xd4\x77\xef\xd3\xa3\xf6\xa0\x68\x89\x63\x36\x79\x6b\x37\xc9\xfc\x04\x37\xb2\x1f\x4c\x86\x82\xa2\x77\x97\x34\xc8\xc3\x19\x68\xa1\xd8\x96\xf2\xa0\xa0\x75\x56\x1d\x3f\xd8\xb0\xc2\x57\x84\x91\x35\xc9\x8f\xc7\xf4\x48\x23\xc8\xac\xe7\x98\x4d\x7a\x93\x56\x52\x54\x80\x52\x4f\xb5\x34\x40\x67\x6d\x28\x91\x23\xd6\x36\xc9\x6d\x81\x2a\xaa\xa7\x94\x82\x4b\x4d\x20\xeb\x88\xa7\x8e\x83\x97\x5a\x50\x32\xc4\x1e\x13\xb5\x8b\x6d\x28\x45\x99\x98\x5f\x6c\x01\x86\xd3\xae\x42\x5e\xa6\x45\xbb\x22\x33\xdb\xed\x81\x8d\x5a\xbc\xf9\x2b\x45\xab\x0d\x6e\xa2\x58\xf5\xed\x33\x59\x01\x95\xc5\x1c\x4c\x6d\xef\x78\x13\xb1\x01\x6d\x22\x52\x0a\x06\x9b\xa6\xb1\x89\x44\x83\x8e\x24\x39\x7d\x95\xd2\x4c\x7d\x77\x4b\x54\xeb\xc2\x54\xdf\x89\xbc\xd8\x57\xad\x0a\xf5\xdd\x2f\xd1\x6c\x14\xa5\xfa\x96\x2e\x7f\x17\xfc\x96\xaf\xf5\x6d\x5f\xee\xab\x10\x7c\xb5\x6f\xeb\x72\x5f\x45\x04\x57\xfb\x5e\x99\xaf\x5a\x7a\xea\x7b\xa4\xb7\x87\x54\xdf\xc3\x8f\xf0\x5c\xa6\xef\x9e\xcc\xbe\x76\xe5\x72\x5f\x2f\x2e\x66\xe7\xd2\x7d\x55\x9c\xa1\x53\xee\x9f\xe0\x66\xcc\xc5\x5b\x1e\x9b\x49\x46\x71\xd0\x31\x3d\x55\x84\x1e\x67\xc0\xd8\x90\x60\xa8\xd2\x5a\x57\x52\x30\x68\x9c\xd7\x49\xb5\xfc\x4c\x6f\x63\xa8\x75\x4c\xdb\x98\x9a\x0c\xfc\x35\xa5\xc3\x54\x50\xac\x78\xad\xc0\x53\xaf\x37\xd5\x0c\xc9\x2f\x6d\xd6\x2d\xc5\x9c\x57\x4f\x36\x4c\xf3\x15\xd5\x7b\xa8\x8e\xc5\x0d\x22\xfa\xe6\x92\x8e\xb3\xbf\xd3\x10\x29\x5e\x1f\x69\x90\xa8\xd1\x47\x98\xfd\xe6\xb1\xc3\xba\x81\xd0\xdf\xbc\x59\xea\x23\x76\x3b\x3d\xfa\x47\x70\x5b\x1c\x31\xb7\x26\x2a\x64\x39\x2f\xe0\x42\x0d\x29\x21\x7e\xfc\x55\xa5\xc6\xe9\x8f\x52\x9b\xfe\x4a\xe3\x61\x01\x3e\x81\x1a\x0f\xfa\xf5\x21\x0b\xd3\x0c\xae\x9b\x35\x4c\x1a\x5d\xad\x34\x1e\x0a\xf0\x58\x4e\x44\x89\x20\x1d\xaf\x50\x81\x99\xac\x52\x10\xf6\x37\xb7\xc8\x63\x35\xe4\xd4\x6e\xb4\xd1\x50\x6d\x85\x12\x5c\xd9\xd5\xc9\x7c\x4e\xf5\x7a\x63\xc3\x89\xd0\xc3\x4f\xe9\x73\x01\x3f\x23\x84\x8d\x46\x00\xb5\x19\x85\x31\x02\xb8\xf9\x29\xfd\xba\x92\x45\xc0\x9a\x6b\xef\x81\x2b\x84\x30\x05\x88\xbc\xb6\xe1\x41\xdb\x83\xac\x6e\xbf\xe6\x04\xe2\x02\xff\xf7\x82\x55\x4a\x37\x72\x95\x9a\xa6\x60\x6d\x8e\x3b\x71\x0d\x4d\x9d\x6e\xa5\x66\x65\x7a\xbb\x87\x18\x4f\x9c\x89\xdf\x1a\x76\xfd\xb6\xdd\x8a\x2b\xdc\xb0\x7e\xb3\xa5\xef\xd5\x33\x63\xc4\xad\xc8\x4f\x3e\x91\x10\xba\x45\x23\x8b\x83\x9d\xc5\xfa\x95\x64\x33\xac\x50\x0c\x47\xfc\x4c\x7a\xc6\xc2\x9c\xda\xbc\x55\x34\xc0\x75\xb5\x03\x62\x6c\xeb\xd7\x93\x9b\x8c\x2c\x4a\xe4\x19\xb5\x68\x67\x61\xb9\x91\xcc\x9b\x8b\x0c\x2c\x6f\x71\x76\x68\xc9\xe4\x4a\x84\xab\xce\xb5\xd5\x52\x9d\x3e\x14\x59\x6f\x74\x3b\x1a\x65\x35\x46\xe3\xf9\xa7\xc9\xf6\x77\xab\x0e\x24\x55\xaa\x43\xb4\x57\xa2\xf1\x45\xc4\x84\x9a\x3e\x48\xe2\x47\xb8\xa5\x1a\x2f\xac\x3c\x3d\x79\x77\x10\x64\xe6\xc2\xfa\xbd\x68\x13\xde\x43\xd4\xab\x68\x5b\xa7\x0c\xbc\x5a\x00\x87\x2e\x1c\x79\x18\xa6\xe8\xf0\x9d\xdc\x46\x8b\x1a\x98\xbb\x2d\x1f\x6a\xb4\xda\x3b\xb0\xc5\xd4\x84\x1e\xb3\xba\x02\xcb\x1b\xc0\x27\x59\xfb\x77\x1e\x78\xfb\x0a\x27\xf0\x86\x60\x85\x86\xeb\x8f\x50\x5e\x82\x69\x00\x4e\x6f\x92\xf5\x58\x9d\x6a\x8e\x66\xc6\xab\xa6\xa6\xdb\x02\x87\x3a\xd1\x16\xe0\x18\xd0\x29\x51\xa5\x8d\x33\x7d\x4f\x89\x8f\x72\xa8\x26\x21\xe7\x22\xdb\x6a\x82\xc9\x09\x36\x9c\xae\x8f\xb5\x4e\xbb\x78\xcb\x53\xf8\x16\x20\x36\x44\x9b\x07\xc4\x90\x32\xc3\xd4\x2e\x0c\xe3\xd3\x30\xbe\x6b\xf4\x92\x27\xac\xd2\x16\x7e\xe5\xcd\xb5\x7e\x48\xa5\x44\x08\x3a\x78\xe9\x47\xa1\x9d\xa4\xb2\xbe\x11\x05\x7e\xd4\x6e\xc1\x81\x1a\x07\xd4\x09\x6a\x33\x23\xfa\x11\x15\x57\x85\x4c\x0f\x93\xbb\xd4\xc1\x21\xf0\x21\x08\xf2\x7d\x72\x97\x5a\x9d\x4d\x09\x5c\x00\x7f\x63\x52\xe7\x71\xee\xb8\x8b\x0a\x37\xc2\x3c\xdb\x54\x50\xee\xc2\x32\x17\xc0\x1e\xdf\xc0\x32\x60\xbb\x75\x2e\x55\x37\x0f\xa9\x40\xb0\xc3\x5a\x62\x80\x67\xf8\xfb\xd2\x90\x5d\xa8\x4b\x23\xa8\x94\xeb\xc5\x81\x97\x79\x90\x6e\x2e\x40\x5a\x86\x82\x65\x04\x69\x1d\xe3\x20\xb2\x03\xde\xa4\x21\x3d\x7d\x03\x69\xf9\x4d\x3b\x5e\x3e\x80\xb3\x91\xb8\x06\x6c\x21\x3d\x36\x05\xb9\xfa\xeb\xfc\x2d\x5d\xad\x69\xa7\x4e\xcb\x18\x7a\x85\xfe\x0a\xd9\xa1\x67\xc7\x54\x1c\xed\x1c\x33\xfe\x84\x96\xae\x16\x9f\x19\xbb\x59\x23\x87\xd0\xe0\x24\xb1\x84\x08\xe2\xe4\x98\x8f\xe4\x63\xca\xc7\xe3\x04\x77\x32\xa2\x62\x69\xf7\x91\xb3\xe5\xab\xe9\x34\x2a\x95\x12\xc0\x5e\xa1\x12\xc1\xa5\x5c\x94\x6f\x8f\x26\x0f\xf0\xdf\xd1\x9d\x43\x1b\xda\xb7\x91\x24\xd6\x26\xc8\xa9\xd4\x63\xa7\x4e\x2e\xeb\x8c\xc7\x41\xde\x04\x95\x65\xf0\x6e\x27\xae\x82\x0f\x67\xa6\x8f\xca\x5a\x1a\x47\x11\xb1\x12\xda\xa7\x57\xdc\x97\xb0\xf8\x76\x0f\xad\x68\x2e\x16\x94\x7c\xc7\xd0\x43\xba\x46\x3a\xc1\x5f\x3d\xed\x42\x8b\xd7\x06\xb2\x85\xa0\xd5\x3e\x72\xd9\xe6\x31\x89\x9c\xd7\x99\x08\x4e\xb4\xee\xfb\xb5\x96\xe7\x93\xba\x84\x9c\x83\x18\x83\xaf\x03\xc4\x32\x43\x1d\x8f\xc2\x28\xe4\x57\xa3\xc4\x25\x67\x63\xcd\xeb\x90\xe1\x85\xc6\xda\xe5\x8f\x55\xfe\xff\xb8\x7b\xb3\x2e\x45\x95\xe5\x0f\xf4\x03\xe9\x5a\x8a\xa8\xe8\x63\x66\x82\x14\x65\xd9\x96\x65\xdb\xd5\xd5\x6f\x35\xb5\x88\x38\xa3\x22\x9f\xfe\xae\x8c\x88\x84\x04\xc1\xea\x3e\x7b\x9f\x7b\xcf\xff\xbe\xec\xde\x85\x39\x0f\x91\x31\xfe\xa2\x97\xe5\xfa\x3a\x11\x3e\x42\x33\x33\x65\x4c\x11\xe2\x65\xc8\xc2\x52\x2a\xd1\x2c\xac\x37\x54\xd7\x0e\xf3\x58\x55\x8f\x4b\xc9\x61\xeb\x42\x01\x9a\xa0\x9b\xeb\x50\xc5\x9c\x8d\x49\x54\xdb\x98\x04\x85\x2d\xce\xd8\xba\x74\xc5\xdb\x17\x9d\xd8\x2a\x5a\x9b\x5a\xcf\x76\x60\x54\x7e\x50\xbd\xea\x46\x36\x91\x19\xd9\x7a\xb8\x9c\xf0\x22\x7e\xb2\xc0\x2f\xbd\x7a\xbd\x6c\x1e\x4e\xa4\x39\xde\x35\x3a\x39\x4f\x66\xc5\xd8\x9a\x77\x18\x23\x86\xf1\x71\xa9\xf7\xe9\x9c\x18\x0b\x39\x31\x0a\xd1\xee\x80\x22\xef\x7d\x7b\xce\xf9\xb0\x9e\xb8\xfa\x30\xf7\xe1\x2d\x7e\x6f\xac\xb9\x16\x59\xd7\x20\x17\xd5\x8d\xf2\x1d\x14\x92\x6a\xf8\x57\xab\x38\x04\xd2\xea\xa5\xa8\x1c\xef\xfe\x9e\x58\xe4\x3d\xb2\x36\x6b\x4e\x51\x6c\x21\xfd\xb0\xda\x0f\x28\xe8\x0e\xe2\x53\x3b\x42\xd5\xd8\xec\x07\x69\x06\x75\x87\xb1\x57\xd0\x72\xee\xf1\xce\xef\xcb\x17\x6d\x93\x88\x3c\xdd\x06\xcf\x72\x6a\x8f\x0c\x66\xb3\x03\xdc\xfc\xb5\x96\x56\xca\x3f\x0c\x32\xc3\x88\xf8\xc9\x4a\x8a\xbf\x76\x02\x8c\x59\x00\x81\xa4\xc3\xb7\x1e\x1a\x0f\xd6\x5a\x21\x11\x71\x6a\x69\x38\x3f\x48\x6e\x5e\x50\xf2\x1a\x87\x7d\x73\xeb\x82\x8d\x7f\xe0\xb1\x2f\x1f\xfb\xa5\xcf\x33\xef\xf5\xf6\x0f\x34\x22\x47\xfb\x72\x2a\xbe\x47\x95\xf5\x06\x8d\xfb\x90\xd4\x6e\x2d\x54\x61\x9d\xe3\x1a\x56\x70\x5c\x47\xe3\xea\x8e\x5a\x96\xad\xa7\xab\x2c\xed\x12\xd7\x7f\xca\x5a\xe5\x7c\xd7\x21\x11\xea\x9a\xa9\xa7\x68\xb4\xb5\x63\x1a\x57\x37\x04\xba\xf8\xa4\x0c\xc5\xca\x7a\xac\xfe\x56\xbc\xd0\x29\xcc\xc4\x27\x33\x15\x5a\xb1\xf0\x38\x5c\x13\x43\xdf\x85\xb8\x38\xc5\xd0\xab\x9f\xa3\xa4\x28\x3a\xb8\x6c\xd6\x49\x45\x87\xcb\x1e\xed\xb7\xc9\xbe\xa2\xcb\x89\xa6\xfd\xa5\xc2\xcf\xfd\x03\x75\xd9\xe3\x92\x01\x54\x5d\xaa\x9f\x83\x07\xb9\x88\x18\x93\x7f\x5a\xda\xf5\x31\x0b\xb9\x64\x5e\x96\xfc\x13\x86\xc2\xea\x63\xb6\xe5\xa1\xac\xb4\xe3\x21\x0f\x7a\xf9\x11\x4b\x71\x48\xe3\x1c\x65\xab\x2f\x92\xee\xab\x21\x36\xf7\x03\x8a\xb2\xb8\x31\xe6\xb5\x5d\x35\xe6\x23\x67\x4e\x36\x66\x6a\xec\x73\xdd\xc9\x9d\x23\x00\xde\x15\xa1\x97\x2b\xd3\xf1\x53\x1b\x92\xbb\x55\x31\x4a\xaa\xfd\x90\x1a\x58\x04\x98\xae\x63\x8e\x9e\x78\xef\xf2\x0a\x07\xe9\x8e\x57\xc8\xcf\x72\xea\x13\xa0\xb4\xa0\xb2\x46\x61\xa4\x4f\xd7\x22\xff\x96\xd2\x72\xec\x45\xdc\x44\xba\x87\x08\x8e\xf4\xee\x92\x67\x02\xc6\x4a\xb0\x19\xce\x2a\x10\x6b\x49\x81\x96\x62\xba\x42\x5a\x39\xdb\x77\xe4\x7b\xbb\x15\x90\x0c\x67\x6e\x43\x32\x99\x1f\x2c\x9a\xde\xda\x07\xb9\x0a\x92\x48\x5b\x3c\xc1\x9e\x87\xad\x26\xa4\x75\x79\xee\xe4\x37\xe6\xd3\x05\x08\x4c\x61\xed\x73\xa7\x7a\xdc\xb1\x72\xac\x3c\xb5\xe7\x58\xe9\x3e\xaa\xc5\x31\xf3\x3c\x3f\x2e\x8e\xe3\x0b\x75\x2d\x8a\x92\xfa\x06\x05\x93\xbc\xfa\x53\x8a\xce\x23\xc0\xaa\x20\x76\xa2\xdb\x44\xba\xd5\xdf\xe7\xa5\xef\xb6\x90\x4f\x54\x87\x37\xf6\x37\x5b\x47\xf2\x90\xca\x21\xd0\xba\x73\x82\xd6\x53\xd7\xec\x0a\xbe\xae\x19\xa7\x4c\x23\xe0\x9f\x9a\xdb\x82\x6f\x49\x87\x26\x76\xdc\x83\x93\x85\x63\xf0\x93\x5a\xbb\x4c\x94\x1d\x55\x89\xb2\xdb\x26\x4f\x71\xbf\x42\x61\x05\x5c\xe7\x97\x58\x93\x13\xab\xf4\x8e\x61\xd9\x79\x96\xec\x64\x17\xb5\xc3\x2d\x5b\x1e\xaf\xdf\x92\x6e\xc3\x2b\x75\x40\xd2\xf9\x10\x1c\xd4\xf2\x0c\xea\x4d\xae\x42\x6c\xd7\x51\xc9\x43\x71\xac\x81\x44\x64\x23\x3a\x8f\x60\xcc\xd9\x00\x6c\xed\x8b\xb9\x1a\x10\x1c\xde\x33\x13\x0e\x2a\xc7\x86\x9b\x48\x3d\x77\x5b\x6c\x0c\x4c\xbf\xf2\x8d\xbe\xb8\x52\x8e\x48\xc4\x9e\xbe\xd7\xf6\x19\x9b\x00\x29\x50\x87\x55\xbc\xc2\xa2\x29\x94\x8f\xc9\x33\x21\x61\x90\xb3\xda\xeb\xfe\x90\x63\xe1\x9c\x88\xc7\xbb\xa2\x07\x0d\xa6\xb5\x7c\xb6\xe0\xf6\x88\xb5\x8a\xd3\xca\x5c\x69\x56\x58\xa0\x01\xd7\xc8\xdb\x0a\xba\x39\x87\xc3\x80\x78\x46\x0b\x9d\xff\x54\xb0\xf6\xa6\x06\xea\x10\x91\xf0\x1e\xa2\x46\x52\x55\x36\xa1\x9a\x74\x14\xde\x25\xb5\x9e\x30\x97\xfc\x13\x16\xe8\x9d\xb5\xe1\x27\x1a\x74\xd6\x41\x74\x18\x5c\x55\x1c\xb3\x61\xe8\x50\x83\xe7\xc3\x40\xa1\x49\x00\xae\x5e\x4c\xe5\x2f\x07\xe5\xc7\x73\xaf\x8f\x63\x8a\x5d\x39\xa1\xad\xba\x2a\xea\x1f\x57\xa8\x14\xf8\x34\xd4\xfa\x65\x1d\x0c\xd9\xb0\x6f\x67\xae\x26\xe4\x4c\x87\x3e\x07\xe4\x0d\x57\xe4\xce\xf6\x2e\xec\x64\xc8\x0d\x74\xf0\x7b\x68\x59\x04\x93\xd2\xa7\x2c\xa4\x9f\xc4\x60\x77\xc0\x6f\x52\x39\xe7\x93\x0f\x48\x33\x06\x99\xcd\xfb\x50\x51\x37\x45\xad\x31\xca\xeb\x5d\x24\x77\xb4\x91\x6c\x02\x7e\x02\x36\xed\x66\xb1\x8a\xad\xad\x03\xdb\xa0\xd1\x19\xc3\xa9\x42\xc7\x3c\x94\x77\x23\x9f\x02\x36\xde\x7f\xcf\xdd\xa0\x23\xf9\x1a\x0d\xa5\x60\xd8\xa9\xa8\x89\x0e\x65\xa3\x53\xbe\xea\x19\x12\x0a\xbe\xbc\x53\xdf\x1e\x13\x00\xd4\xe4\x30\xb5\x2a\x85\x73\x3e\x6f\xa6\x51\x1f\xcf\x92\x53\x54\x97\x34\x75\xe2\x52\xee\x5b\xc4\x78\xcb\x2b\x05\x69\x79\xb6\x87\x9c\x9e\x36\x55\xb2\xc2\x22\xcc\x4a\x0e\x25\xc4\xdf\xd2\x77\x6c\x5d\x3c\xa8\xc6\xe9\x28\x88\x87\xc2\x21\x83\xa0\x24\xcc\x18\x36\x61\x9d\xf2\x19\x74\x0b\x12\x1b\x04\x75\xec\xf2\xfc\xe9\x06\x3c\x32\x75\xfe\xb4\x5f\x46\x76\xf2\xc5\xa7\x52\xb8\x48\xf9\xd3\xb8\xc8\x9f\x42\x21\x11\xf1\xbe\xa2\x2d\x11\xd0\xc3\x12\xfe\xf4\x85\x05\x41\xf9\xd0\x9b\x19\xd4\xe8\x5a\xf4\xd5\xbd\x51\x04\xb3\x71\xc8\x79\xff\xcd\xe2\x61\x7d\xcc\x9c\xdf\x21\x11\x60\x22\xac\x4e\x4a\x58\x35\x89\x4c\x79\xa9\x91\xe0\xb0\xf8\xa7\x82\xc3\x3c\x22\x5d\x1b\x86\x70\xf0\xb4\xa5\x48\x89\xb1\x0d\x04\x43\x48\x9b\xba\x16\x35\x20\x69\x6b\xb8\x2f\x3c\x02\xe1\xa1\x28\xf0\x28\x7f\x44\x9a\x8e\x08\x85\x12\x2d\x73\x22\xa7\x93\x89\x9c\x47\x3c\x4e\x77\xca\x41\x90\xe6\xc7\x56\x3c\xd8\x67\x64\x0f\xbf\x44\xda\x01\x7f\x85\xbc\x17\x52\x62\x3c\x95\x8a\xa6\xb5\xa6\x16\xb1\xe5\x6b\x90\x44\x43\x35\x7f\xb5\x35\x2b\x80\x9a\xc8\x3c\x88\xb4\xef\xb2\xee\x0b\x5c\x4a\x80\xb3\x76\xc3\x74\x51\xd5\x8d\xee\x60\xc8\xa4\xaf\x99\x7e\x80\xfd\x51\x96\x97\x94\xab\x69\x61\x48\x76\x70\xc9\x19\x78\x66\xc5\x72\x9d\x3b\xb9\x27\x0f\x7d\xbb\x2e\xd8\x8c\xe1\x78\xfd\xfc\xb8\x76\x53\x48\xdf\x96\xba\x31\xa9\xef\x1b\xc4\x37\x7a\xce\xc6\xeb\xf8\xa2\x64\xb2\xa0\x5d\x42\x49\x7c\x9b\x1f\x76\xff\x0f\x87\x2d\x1e\x54\xb9\xeb\x66\x97\x9c\x4d\xc1\x6d\xfc\x9b\xb7\xf5\x4b\x07\x68\x94\xf6\xdd\xf9\x8f\xfb\xd6\x9b\xf5\x2c\x51\xec\x55\x9f\xb1\xa4\x04\xd7\x83\x9a\x30\xb1\xe5\xca\x55\xac\x82\x0d\x2d\x6b\xcd\x43\x20\xc8\x91\x6a\xb2\xe2\x4c\x14\xce\x99\x6d\xdd\xee\x49\x6b\xe5\x99\x9d\x38\xa0\x72\x5d\xc0\x0a\xf5\xc9\xd6\x3f\x4b\xdf\x01\x23\x17\x11\x81\xb7\x19\xb1\xb9\x87\xe1\xbe\x6c\xba\x7e\x3a\xdd\xd2\xc3\x03\x8c\xac\xeb\xa7\x17\x5e\x0d\x89\x64\xff\x30\xca\xac\x85\xaf\x92\xfa\x29\xbb\xdf\x0d\xfb\xe0\x82\xb3\x87\xad\xd0\x0e\xf5\xf6\xcf\x0e\x75\xee\x12\xc2\xb8\x9c\x30\x1d\x97\x32\x57\x76\xee\x72\x27\x2a\x3f\xd7\xc0\xbe\xda\xda\xc2\xc1\xc2\x66\xc4\x43\x71\x4c\x1b\x39\xa6\x29\x84\x79\x7e\xf3\x54\x23\x5f\xf4\x89\x9b\x1c\x5c\x6f\xf2\x1f\xf6\x09\xf5\xbd\x48\x54\x10\xa3\xff\x17\x4f\x71\x61\xb3\xf3\x3d\x35\xc4\x17\x3d\x69\xad\xcc\xf2\xa7\x78\xce\xd9\xbe\xfc\x49\x5d\x25\x5a\x14\xab\x30\x44\xf6\xf8\x08\x84\x78\x59\xeb\x8a\x29\x8f\x3c\x76\x23\x0a\xfa\x3a\x61\xf1\xf3\x3d\xba\x69\x03\x6f\x16\xdf\x43\x38\x20\x7c\x03\xd7\x70\x12\xb2\x87\xf1\xbd\x86\xbc\x3f\x17\xcc\x79\x4a\xc1\x4c\xd8\xa7\x85\x41\x16\xc3\xc5\x6e\x40\xf1\xe0\x50\xac\x0b\xc5\x00\xbd\x0c\x19\xcb\x04\x1a\xf9\x8d\x51\x11\xe8\xe5\x19\x0b\x59\xc3\xe0\x0b\x40\x0f\x98\x86\xa4\x25\xc3\x23\x83\xea\x29\x8c\x82\x16\x83\xba\x60\xaf\xf2\x2e\xfc\xd0\x02\x33\x36\x3c\x8a\x4a\xf6\x5d\xac\x45\x13\xf8\xea\x25\x3f\x5d\x6f\xc7\x98\x89\x80\x7e\x7f\x8d\x23\xfd\x94\xba\x21\x68\xbb\xab\xf4\xa3\xce\x9e\xef\x46\xd8\xac\x75\x41\xbe\x04\x59\x30\xeb\x55\x97\x37\xc4\x83\x7a\x77\x35\x3e\xf2\x93\x39\xb1\x38\x20\xc2\x47\x3d\x0d\xe1\x7b\x21\xf0\x20\x68\x06\xb4\xac\xe4\x87\x17\xa0\xc8\x84\x49\x21\xde\x9b\x8a\xbf\x91\x6b\x6e\xf4\x50\x45\x7b\xee\xc9\x91\xbe\xfc\x42\x10\xbb\x1e\x8a\xed\x97\x16\xfa\xeb\xc9\xd6\x47\x94\xf0\xa0\x3b\xd0\xa2\x51\x96\xdc\x1a\xa4\x25\xdc\xbd\xdd\xa4\xd3\xb0\xc6\x06\x46\x98\x40\x40\x44\x3c\xc2\x0f\xe3\x43\x8f\x60\x82\xc2\x11\x20\x82\x99\xd8\xe8\x6a\x84\x88\xfa\x14\xde\xd3\xd7\x1a\x0d\xae\x1a\x3d\xaa\x46\x4f\xd4\xe8\xb1\x47\xf1\x49\x6b\x6c\x34\xc1\x46\x95\xf6\x19\x07\xc1\x76\x30\x08\xf9\x81\xca\x27\xf2\x24\xcc\x21\x04\xc5\xf6\x3a\xe8\x5d\xaa\x60\x58\x5a\x11\xb2\xdf\xa1\x0b\x6c\x34\x04\xcb\xff\x52\x1e\xa6\x47\x94\x69\xeb\x5d\xce\x58\x8d\xb7\xe6\x03\x82\xb1\x1c\xe2\xb9\x72\xbc\xa4\x85\x1d\xb5\x40\xc0\x1a\xfe\x32\x17\xe5\xe4\x48\x21\xc4\x98\x31\x79\x27\xb4\x30\xba\x74\x72\xe2\xf2\x80\xbc\x15\x89\x82\xba\xe5\xa8\x05\x37\x49\x0b\xae\x55\x7a\x65\x4f\x6f\xa4\x3a\xcf\x79\xec\xff\xfc\xa8\x0f\xd9\x4f\x56\x17\xcc\x73\x60\xba\x47\xfe\xef\x4d\x97\x25\xeb\xaf\xa7\xe7\x30\x07\x0c\xb9\x0d\xee\xb0\xc2\xf0\xe6\x9c\x7d\x40\x44\x01\x1e\x56\x18\x9a\xb8\x87\x61\xb2\xff\x4f\x46\x29\xd8\xd1\xc6\x8d\x64\xd7\xe6\x0b\xf1\x7b\xe5\xe4\xcf\x23\x5e\x1d\x61\x70\x50\x46\x9b\xe5\xd4\xb5\xa7\x4b\x8b\x22\x16\x4a\x42\x51\x5e\x4c\x06\x20\xb3\x64\x16\x7d\xf5\xbd\x41\xa6\x72\x4a\xbc\x7c\x7f\x55\x29\x23\x70\x41\x56\x73\xce\x99\x6b\x09\x8b\x58\x35\xe5\x3b\xb5\x80\xf4\x16\xf0\x82\x51\x2f\xd9\x2f\x7e\x23\xeb\x27\xd5\xaf\xe6\x2b\x5e\xf5\x24\x7f\x5e\x72\x00\x54\x02\x74\xf9\x52\xdd\x7e\xcb\xc8\x79\x3f\x8c\xd0\xf2\xa9\x80\x16\x95\x5c\xb2\xe3\xe8\x05\x32\x69\xba\x70\xf5\x0d\x00\x40\xf0\x6d\xb0\x7e\x85\xa5\x7c\x57\x33\xd7\x70\xe8\x66\xd0\xec\x70\xff\x1c\xf6\x7c\x5f\x1f\xb3\x27\x38\x6e\xb6\xa3\xf6\x30\x0d\xa5\x42\x4e\xe0\x45\x9d\x0a\x12\xa2\x84\x21\x94\x10\xa5\xc4\xaa\x83\x2c\x0a\x78\xa9\xaa\xac\x22\xc4\x4b\x4c\x08\xb5\x85\x2c\x1d\xa1\x50\x3f\xcb\x39\xc9\xa6\x1e\x95\x90\xd5\xa6\x73\xdb\xc1\x74\x2a\x1f\x4c\x69\x2d\x33\x3c\xd2\xa2\x27\xf9\x91\xb0\xc5\x9f\xc1\xc8\x01\x88\x0d\x80\x85\xef\xc0\x5b\xda\x84\x98\x9d\x48\xf4\xa3\xc1\xf5\xbb\xc2\x5e\x76\xae\xfc\xeb\x93\xd2\xfa\xca\x97\x38\x1d\x5a\xa6\x02\x42\x29\xb6\xa8\xc3\x29\xf0\x11\xf9\xf2\xae\x29\x36\x88\x39\xa3\x3a\x56\x37\x12\x3c\x5a\xb8\x19\x95\xdf\xb0\xae\x85\x38\xcc\xfa\x70\x67\x72\x6c\x4a\x96\x90\x22\xed\x05\x94\x8b\x23\x26\x9c\x36\xcf\xf5\x91\x9b\x9c\x0b\xb9\x7b\x84\xd7\x92\x2f\xa7\x0d\x92\x3a\xfb\xf4\x8f\x25\x8a\x16\xd4\x82\xb9\x7b\x0c\x38\x57\x3a\x17\xc5\x3f\x46\x2e\x09\xdf\x94\xe7\xe5\x88\xd1\xb4\xe0\x8c\x81\xb8\x1d\xaa\xd1\x1c\xc7\x29\x22\x5e\x45\x93\x69\xc5\x72\xc5\xdd\xbe\x80\x81\xb2\x59\xa3\xb0\x60\x90\x88\xdc\xe2\xaa\x93\x22\xeb\x8e\x81\xa6\xc2\x02\x90\x19\x82\x11\x6e\x44\xd5\x53\x98\xca\xeb\x8e\x16\x59\x08\xd2\x48\x23\x79\x94\x79\x66\xdf\x07\xd0\xc9\x06\xa7\x94\x0a\x0a\x94\xf8\x8c\xc3\xc3\xd1\x6c\xc1\xa5\x79\x76\xfc\x95\x85\x88\x63\x64\xf6\x44\xbe\x9c\x14\x65\x36\x61\x8e\x25\x3a\xbc\xa8\x5e\x19\x51\x3e\xa3\x21\x7b\x28\x55\x0a\xb7\x72\x97\xf5\x34\xc8\xd2\x08\x4c\xba\xc8\xd0\x65\x5a\x47\xa5\xa5\x41\x7a\x6b\xf2\x60\x5b\x54\x7b\x16\x95\x5d\xbe\xe8\x14\x55\x97\x3b\xdd\x3f\x06\x2d\x85\xe3\x0a\x2b\xfd\xb2\x95\x73\x5a\x72\xd1\x8e\xae\xee\xcc\x95\xb2\x48\xe9\x4c\x96\x78\x4e\x55\xb9\x72\x45\xc9\x3b\xc0\x6c\x81\xa9\x1b\xaf\xfa\xcb\xa2\x6b\xe7\xea\x15\x34\x7d\x86\xc8\x6b\x91\x9d\x07\xbc\x0f\x2f\x5b\x3a\x2b\xcb\xe3\x80\x60\x38\x0d\x82\x1c\x6a\x03\x9c\x97\xf8\xe8\x68\x7f\xbb\xcc\xf9\xa1\x6a\x28\x0d\xa7\xd5\xb5\xc9\xcd\xc4\x63\x6e\x9f\xc7\x11\xbf\xfa\x59\xb1\x5d\x22\x49\x7f\xee\xed\x50\xe5\xf5\x88\x44\xbe\x5c\xe9\xbf\x6c\xe6\x7c\x73\x0c\x72\xcd\xf9\x1f\x59\xc3\xc2\x89\x39\x43\x46\x86\x00\xc3\xae\x5f\xd5\x3c\x6f\xeb\xf7\x27\xc0\x19\xc8\x55\x5e\xbe\x21\xdb\x2d\x57\xb8\x6c\x09\xff\x74\x85\x29\xdf\xce\xae\xdc\x47\x6b\x9e\x5c\x7b\xd3\xec\xcf\x94\x83\x65\x0a\xfa\xe2\x53\x45\xeb\xaa\xd7\xc2\xa2\x80\x91\x7c\x52\xe5\x26\xb3\x4c\x72\x1b\x78\x87\xfb\x97\x46\x9c\x66\x1a\xd0\x6c\x99\x08\x16\x04\x70\x91\xca\x15\xcc\xbb\xb3\x86\xa6\x11\x6d\xd1\xbf\x13\x77\x72\x87\x82\x63\xd1\x24\x24\x42\x8e\x50\xcc\x60\x37\x18\x67\x40\xda\x0b\xb4\xff\x88\x44\x19\x88\x1a\x1d\x8c\x9b\x8a\x32\xfb\xd0\x8a\xb3\x59\x3f\x0d\xb2\xee\x1d\xe0\x95\x79\x50\xca\x61\xb4\x8c\xa1\x4f\xfe\x95\x65\x6c\xc2\x1e\xd6\x42\xf7\x60\x1d\xa1\x55\xb1\xc2\xec\xb7\xc9\x91\xb3\x3d\x90\x33\x00\x53\x99\xc5\xb6\x22\x67\x45\x6f\x84\xb3\x4e\x64\x4e\xb0\x18\x2e\xb8\x0f\x0c\xd0\xd4\xc1\x86\xbb\x23\x6e\x98\x6c\xcf\x63\x0e\x8a\xb6\xce\xe1\x84\x77\xe2\x5b\x86\x76\x80\x2e\xd5\x27\xba\xde\xe7\xa3\xe2\xd2\x62\x18\x88\xd3\xe7\x47\xcc\xe5\x57\xb0\x70\xa8\x03\x52\xc3\xac\x4c\x0d\xee\xa3\x81\x08\x72\x3f\x3c\xa5\xe9\x1d\x48\xcc\xee\xa2\x35\xa6\x84\xee\x98\xf8\xcb\x48\x96\x90\x35\x2d\xed\x6f\x97\x39\xf7\x56\x17\xd1\x01\x4b\xba\x7f\x01\xa3\x5f\xc5\xc1\x0d\x5e\xe5\x03\x92\xf0\x13\x8c\xde\x39\x3f\xc9\x69\x6d\xb9\x57\x17\xec\xc0\x11\x87\x60\xd7\x29\xf7\x28\x6e\xe5\x10\xb8\x70\x1d\x54\x32\xc0\xe3\x69\x80\x9c\x93\x7c\x6c\x4e\xf0\x07\x73\x36\x27\xb8\x59\x4f\x24\x77\x23\x00\xa8\x9c\xde\x47\x1b\x61\x09\xd3\x92\x4d\x0c\xbc\x9e\x1a\x2b\x1a\x35\xb2\x90\x22\x86\xc7\x19\xd7\xc6\x6f\xdb\x94\xaa\xf2\x93\x89\x8f\xc5\xdc\xb9\xd9\x42\xe1\x62\x46\x22\x6b\xa8\x86\xf3\xc2\xcc\x10\xf3\xbf\x6a\x87\x4d\xe9\x2a\xa4\xbe\x32\x5e\xfd\x85\x0d\x7d\xf8\x0d\x7d\x12\xbe\xcf\x1f\x33\xac\x35\x63\x59\x7a\x67\xcf\x2d\x2d\x1b\x54\x92\x9d\xec\x61\x58\x75\xb2\x8f\x67\x2d\xec\x31\xc6\x83\x0d\x28\x18\xe9\xc1\xbe\x1c\x71\x44\x09\x1e\xec\xef\xd7\x07\x1b\x02\x70\x27\x5e\x82\x54\xc1\xed\xc2\xbf\x4f\x77\x88\x45\x89\x92\x03\xee\x29\xac\x3a\xf9\x31\x76\x1b\x94\x83\xb1\xc1\x71\x4f\xc1\x4b\x4d\x7c\x0b\xc1\x8f\x94\xb9\xa1\x8d\xe7\x68\x26\x39\x80\x87\x13\x98\x83\xdd\x00\x3f\x1e\xe4\x47\x47\xae\x84\x8b\x40\x53\x5b\x3c\x74\x3b\x04\xf6\x7b\x42\xe0\xa3\x57\xe6\xdc\xa1\xc6\x0a\x18\x07\x1d\x2e\xc9\xc2\x3e\xdb\x27\x8a\xaa\x8f\xd0\xa2\xf0\x1b\x33\x2b\xe1\x04\xd8\x04\x21\x04\x4d\xda\x40\x55\x58\xb2\x72\x9e\x7c\x83\x30\x2f\x14\xe1\x38\x3c\x6f\x10\xe6\xb5\x81\xf0\xc4\xa3\x1a\x80\x96\x38\x7d\x39\x20\x67\x80\x03\x7a\x27\xb4\xc1\x61\xfd\x59\x0d\xcd\x8a\xae\x72\x50\x55\x8e\x6d\xca\x44\x58\xe8\x34\x5a\x5f\x8f\xcd\x65\xcc\x95\xb4\xfb\x05\xb0\xb8\xb2\xde\x5f\x98\x7b\x87\xd4\xbb\x4f\x51\x1d\x0e\x13\xbf\xe0\x37\xe3\x2f\x46\xf1\x37\x2b\xd4\xc4\xe1\xcc\x14\xb1\x2b\x5f\x2b\xcf\xc4\xf4\x45\x5e\x13\x75\x94\x23\xe3\x80\xe9\xe1\x84\x2f\xbe\x5e\x62\xaf\xcf\x61\x5a\x33\x05\x70\xc7\x3c\x45\x19\xff\xef\x51\x50\x88\xd4\xca\x28\xe8\x9c\xb3\x8e\x3d\xaa\x0b\xd6\xb5\x6f\x52\xd0\xf6\x49\x4f\xf0\xb7\xc1\x77\x44\xd0\xfd\x6d\x6d\xc9\xc8\xac\xbc\x67\x34\xd7\x98\xca\x37\xb2\xdd\xa2\x54\x56\xd9\xed\x85\x44\x5e\xb3\x4a\x42\x72\x3e\xeb\xa4\x07\x09\x49\x27\x47\x48\xba\x47\x74\x67\xb2\x90\x90\x3c\x65\x84\x64\xc5\x99\xfb\x2d\x3a\xfe\x91\x1d\xf8\x87\xb2\x03\x6b\x6a\xde\x97\x32\x1b\x64\x6a\x96\x99\x6a\xbc\xe6\x95\x6d\x64\x8a\xa9\x6d\xed\xd8\xa9\x0b\x36\x94\x84\x6c\x38\xda\xdd\x01\x52\x3c\x08\xa8\x31\x1f\xe0\x93\xf2\x1f\x58\x91\x11\x55\xbe\xdc\x8a\x88\x3d\x83\x52\x77\xb4\x16\x90\x7b\x6a\xe0\xf4\x8f\x37\xa6\x40\x66\x49\x5e\x6c\x50\x2b\xe4\x46\xbc\xa8\x2c\xd0\xb5\x0a\x6e\x23\x55\x73\x14\x35\x54\xa4\x33\x52\x42\xf8\xee\x5e\xae\x69\x43\xf8\xa7\x5b\xcb\x26\xa9\xc5\x8e\xd2\x49\xf6\x8f\xb7\x8d\x36\xd8\xa1\x78\xb0\x2a\xad\x9f\xb9\x34\x01\x64\x27\x77\x1f\x61\x0d\xc3\xc3\x8d\x75\x01\xcb\xd6\x28\x10\x5d\x5c\xc3\xc6\xf1\xc6\x90\x2f\xb4\x86\x45\xd3\x5e\x71\x5e\xee\x3a\x5d\xa9\x72\x89\x9d\x4a\x39\xaa\xd4\xb5\x2e\xae\x74\x45\x43\x1b\xce\xd2\x86\x17\x47\xa9\xd9\x10\x45\x5f\x54\x69\x3b\xd5\x62\xaa\xde\x96\x69\x3c\x65\xae\x9d\x48\x6c\xe5\x69\x3e\x43\xde\x90\x11\x0b\x3e\x4a\x35\x70\x39\x96\xd6\xdc\x0e\x32\x84\xbf\x21\x5d\x58\x8a\x6c\xf8\xa1\xdc\x47\x84\x07\xc8\xd9\xf6\xc8\xa2\x5c\x81\x47\x1f\xd1\x91\xf7\x7b\x7a\xc3\x01\x30\x53\xbc\x1d\x7b\x1c\x78\x20\x73\x8d\xef\x75\x6d\x0d\xbd\x3c\x37\xd6\xf4\xaa\xec\x40\x43\x06\x4e\xde\xec\x57\x6d\x65\x93\x0a\xea\x9c\x8f\x84\xdb\xcf\x25\xc1\x78\xf8\xa5\x60\xed\x86\x55\xe1\x40\x17\x9d\x89\x31\x70\x2a\x96\xa2\x7f\x7a\x6b\x13\xe6\x84\x94\xe2\x17\x4c\x06\xca\x0f\x66\x75\x87\x1e\x2f\xcf\x4c\x3c\x92\xbf\xcb\x59\x65\xfe\x54\xd9\xdb\x9d\x2d\x46\xf7\x8e\xb6\x08\xcd\x73\xd8\x51\x5c\xe0\x16\x5d\x50\xed\x5f\x57\x9f\x47\x98\x39\x54\x18\x9c\x7e\xdb\x5e\x85\x38\x61\x36\x47\x74\x53\xac\x98\xdd\x21\x16\x10\xb5\xd7\x23\xe9\x63\x87\xb0\x60\xa8\x59\x72\x56\x3f\x10\xc5\x17\xd6\xa7\x69\x94\x52\xf3\xb9\x99\x66\x48\x02\x61\xce\x44\x94\x58\xdb\x2c\x0f\xbe\x69\xf5\x50\xaf\x76\xc2\xb0\xe6\x09\xae\xed\x84\x52\xe5\x8d\xd8\xb2\xdc\x5b\x73\x69\xe6\xc6\x89\x50\x6a\xce\x96\x48\x48\x86\x83\x55\xf3\xd2\xe0\x88\x09\x33\x43\x64\x3d\x52\x70\x32\x95\xea\x99\x5d\x38\x21\x0c\x80\xb7\x25\x6e\x03\x45\x46\x12\x68\x40\x93\x03\x2a\x3b\x96\x22\x48\xae\x57\x30\x60\x1e\x31\x84\xe0\x85\x1d\x78\xa8\xd0\xcd\xfc\x85\x93\x1d\x92\xf3\x9a\x18\xd2\x3d\x0d\x4f\x3e\x43\xe4\x7c\xe6\x86\x3c\xa2\xaf\xc7\xd3\x40\xcb\xf1\x6c\x84\xc8\x74\x03\xaa\xa2\xf0\x85\xa1\xe0\xf8\x4f\x29\x82\x18\xb0\x33\x7a\x31\x37\x4c\x8b\x29\xa4\x06\xe5\x38\x8a\x8d\x8f\xb6\xfc\xa4\x96\xe8\x40\x63\x80\xe4\x38\x24\x95\x2b\xc8\x34\x95\x50\x7a\x9b\x42\xa6\x29\x14\x2d\x54\x1d\xe6\x3c\x79\x92\x10\xfd\x45\x49\x2a\x56\x90\x40\xb1\x07\x1b\x05\x9c\xdc\x56\xa5\xc5\x2e\xc3\x00\x11\x89\xfd\x75\xcd\x72\xe0\x83\xaa\x9a\x72\xff\x54\xcd\xd2\x70\x7c\x71\x2a\xd4\x5c\x78\xe8\xd3\x4f\xa4\xb2\x24\xfe\x7f\x24\x59\x0c\x46\x0f\x46\x0a\x77\x36\xbc\x82\x3b\xb3\x76\x69\x06\xef\x29\x73\x63\x4e\x19\xbc\x2f\xa7\x54\x1b\xe2\x32\xf7\xc4\x13\xf5\xda\x9d\x08\x0f\xcd\x65\x5e\xc0\x0d\xfa\xda\x3a\x0d\xb2\xc8\x5c\xef\xc4\x4d\xfa\x2e\xb9\x5e\xf0\x96\x1a\x32\xb1\xe5\x1d\xfa\xda\xcd\xda\x1e\x42\x62\x28\xfa\x5e\x9e\xee\xbb\x47\x6d\x04\x2b\xae\x9f\xd5\xe9\x72\x83\x4b\x21\xf9\x78\xb7\x21\xfc\x33\x35\x72\x4e\xbb\x74\xb7\x3c\xa0\xaf\xcb\x73\x0a\x58\x07\x7e\x70\x1e\x86\x73\x78\x0d\x1e\x52\x89\xd5\x59\x1d\xd4\x35\x7d\xd9\x9c\xc9\x8b\x9f\x4c\x09\xb0\xa8\x5e\xa0\x80\x11\xce\x79\x68\xbc\x3d\xd5\x3a\x14\xbe\x47\xf4\xfd\x78\xd6\x26\x2d\x4e\xfc\x44\xdf\xcf\xe7\x41\x2e\x6d\x79\x4c\xdf\x2f\x67\x2d\xda\xc7\xb5\x78\x42\xdf\x9b\x67\x34\x2c\x1d\x28\x51\x8e\x41\xdf\x5b\x67\xbc\x20\x26\xfd\x7d\x15\xbf\x30\xd5\x62\x2e\xa8\xf0\xb3\x7f\xd1\xa2\xe4\xb3\xf8\x05\xf5\x73\x44\x80\x99\xf5\x19\x12\x39\x2f\x05\x3c\x69\x67\xa3\x93\x42\x31\xef\x50\xaf\xdd\x33\xf0\x26\x0c\xd2\x6d\xb8\xbe\xb0\xe8\x7b\xef\x3c\x48\x51\xdd\x11\x64\x30\xe2\x7d\x35\xd2\xf3\x40\xb1\x9a\xcc\x0b\xf1\x19\x1c\x6d\x46\xe0\xb2\xcc\x83\x56\x39\x0e\x9f\x9b\xe1\xf0\x1d\xcf\x84\xcc\x0d\x74\x08\x61\xa5\x0d\x00\x02\x64\xee\xda\x80\xe3\x71\x22\x3c\xc6\x5d\xec\x64\x5d\xc5\x10\xa2\x35\x3a\xe2\x71\xda\x1e\x25\x81\xf7\x94\xb2\x6c\x1e\x0f\xb2\x46\xd7\xeb\xfc\xd1\xdb\x6c\x51\x94\x0c\x62\x49\x4a\x5c\x5f\xdd\xb3\x78\xa0\xa8\x2b\xf8\x21\x84\x31\x1d\xad\x58\xbf\x05\x6b\xfa\xba\x89\xf3\xc1\x72\x5b\xfa\xbe\x8b\xb5\x03\x24\x2f\x24\x7d\x3f\xc4\xb8\xe4\x60\x46\x76\x3a\x3c\xa2\xef\xed\xa6\x03\xe0\xab\x4d\x8e\x19\x42\x3b\x64\x21\x39\xc6\xb4\x79\x04\x28\x29\x22\x7e\xa2\x2a\x67\xec\xda\x79\x88\xe9\xc3\x25\xc6\x0d\x47\x60\x4e\xc0\xe6\x10\x14\x72\xa2\x1e\x81\x66\x36\x2c\xf9\xb4\x26\x81\x76\x29\x30\x0d\xf7\x90\x75\x29\xa3\x73\xe1\x8a\x82\xf5\xc9\xe4\x14\xa8\x29\xc5\xab\x16\xf9\xbe\x8c\x99\xf8\x26\xf0\x74\xbd\xb2\xd9\x5b\xa3\xb8\xce\x67\xe2\x61\x3a\x5a\xd8\x24\x80\x39\x0e\x63\xdb\xaa\x28\xdc\xee\x08\xc5\x84\xbe\x6e\x85\xbf\x29\x2f\x75\xee\x68\x19\x26\x43\xcc\x3f\xe4\x63\xf6\xae\xd8\x3e\x51\xae\x11\xf5\xf0\x35\x40\xc3\x32\x33\x76\xc4\xf6\x8c\x30\x42\xc6\xa1\x7c\x8a\x04\xa4\xf8\xdc\x80\xc7\xc7\x21\xcf\xe1\x5e\x0c\xbc\xcf\x63\x9f\xd6\x58\xfe\x0d\x22\x1e\x30\x41\xce\x47\x70\xa7\x7f\x9e\x22\xe7\x45\xa3\x4d\xbe\xa9\xe8\x85\x5e\x36\x12\x90\x3a\xd4\xeb\xab\x5a\xdb\x27\xc8\x66\xe2\x7a\x62\xc8\xf5\xbb\xf2\x4f\xdd\x07\xb6\x42\x8d\x76\xd8\x60\x28\xc7\xfd\x00\x2a\xfa\x03\x2c\xd1\x56\x24\xdf\x89\x47\xc4\x98\xb4\xe4\x09\xf3\xdd\x4a\x59\x92\x49\x81\xfc\x13\xb6\xfc\xe1\x04\x56\x26\xf1\x0b\xb9\xaa\xe3\x5e\xd4\xdf\x99\x23\xfb\x77\xed\xfa\x51\x30\x76\x14\x21\xda\x63\x87\xad\x07\x79\x98\x1b\x04\x7a\x2f\x79\xca\x6f\x2d\x72\x43\x38\x90\xc5\x15\xc5\xf1\x4e\x62\xa7\x9c\x8e\xc3\xea\x4b\xc1\xd8\x0a\x91\xce\x19\x0a\x4d\x85\x6a\x27\x4e\xfc\x93\xd1\x84\x8a\xa0\x02\x73\x58\x36\x57\x86\xae\x33\x85\x6a\x31\x9a\x9b\x93\x66\xae\xb7\x45\xe6\xd5\xc8\x30\xa1\x61\xbd\x06\xde\x15\xe6\x83\x36\x0b\x05\xdd\x5f\x9f\x5d\xcf\x02\x57\xfd\x33\xc6\x76\xd7\xd4\xee\x2e\xe3\x23\x19\x5a\x1e\x31\xf4\xaa\x8d\x96\x90\x3e\xfe\xeb\xec\x8e\x84\x03\x7d\xe4\x4c\x7c\x60\xce\x35\x31\xe8\x82\x33\xc0\xb4\x8d\x87\x3c\xa3\xbd\x23\x26\x18\x1e\x30\x6f\x6e\xe2\x3e\x61\x6e\x13\x63\x84\xc3\x1b\x32\xc7\xb2\xab\x6b\xb3\x71\xed\x1b\x50\x0c\x1a\x64\x3b\x83\x51\x67\xe8\x9c\x03\xce\x20\xc3\xe5\xd9\x96\xbb\xff\x08\x76\xd6\x69\x6f\xc9\xc1\x72\x7d\x84\x08\xa5\x0e\x3f\x85\x78\xce\x2e\xe8\xe7\xf1\xcb\x47\x3a\x00\xe5\x9a\x9c\x8d\x7f\x45\xd1\x40\x4f\x30\xdb\x1b\x30\xef\xf7\x11\x33\xb0\xab\x42\xf2\x55\x10\xcc\x89\x69\x20\xab\xcc\x2a\x93\xa0\x5d\xcd\x4c\xb7\x6f\xfe\x09\x3f\xaf\xb8\x89\x09\x6e\xfb\xfc\xaa\x0e\xcb\xd7\xe8\xbe\xa2\x33\x9c\x4d\x15\x31\xd1\xae\x8a\x5e\x57\xb0\x5e\xd9\x01\x2b\x56\x3c\xda\x74\xe5\x1a\x58\x91\xd0\x20\x14\xc9\x4d\x2b\xf6\x8b\x15\x2f\x36\x79\x53\x04\x98\x1d\xd8\xaa\x58\xe7\x6d\xf1\x48\x5b\x9c\xc2\x89\xb6\x78\x8a\xfa\x54\xb1\x99\x25\xbf\x80\x8a\x27\x4e\x17\x17\xd1\x24\xe5\x2e\x98\x6f\xf5\x09\x1b\xf9\xe2\x40\xf9\xa5\xf1\x05\x74\x2f\x14\x54\xdc\xd9\x01\xe9\x31\x78\x6b\x59\xfa\x3b\xb8\xb0\xbf\x5a\x80\x4c\xf8\x6d\x2f\xac\x9f\xfa\xce\xb5\x6d\x26\x5e\xdb\xf2\x38\x8d\xd4\xaa\x7f\xa6\x16\x21\x1a\x90\x9a\xc9\x6a\xc5\x49\xb4\xef\x23\x3c\x22\xe1\x33\x5c\xdd\x04\xf9\x00\xcb\x3e\x57\x11\x48\xc1\x88\x25\xf5\xb4\x8e\xf0\x31\x91\xaf\xd3\x08\x3f\x21\x89\x91\x55\x7e\xa6\x9d\x2c\x39\xf1\x6e\x7d\x88\x11\x74\x2c\x5e\xf8\xc9\x7e\x41\x3a\x85\xbf\x0b\x44\xe4\x65\xa4\xb1\x75\x99\x7b\xaf\x31\x7d\x5e\x0a\xf4\x51\x3d\xad\xcd\x8a\xa3\xb2\xb6\x95\x39\x40\x95\x6c\x4c\x08\xaf\xe5\x73\xf9\xee\xb0\x59\xeb\x2d\x9d\xf2\x88\xb1\x93\xdc\xe3\x09\x03\xa5\x5f\x1f\x91\xb8\xbd\xda\x0f\x4c\x24\x61\x62\x4c\x81\x89\x99\xeb\xd4\xe7\x96\x29\xe8\x48\x42\x9e\x4c\x67\x6d\x6f\x01\x83\x41\x0c\xb2\x74\x07\x1d\x40\x13\x1d\xb7\x27\x75\x4a\xef\x29\xa9\x37\x84\xc8\x62\x26\x03\x82\xc5\x5e\x83\x26\x2a\x40\xab\xc2\x06\x31\x2c\x1b\x13\xd0\x14\x13\x8d\x4b\x61\xee\x81\x55\x30\x39\x86\xa1\x14\x9c\xcf\x9a\x28\xdb\x6a\x5d\x3a\x1d\xd9\x81\xd7\xa1\xec\x07\xf8\xed\x44\x3c\x87\x20\x73\x83\x77\xdc\x20\x01\x34\x1b\xb9\x79\xd7\x5a\x78\x10\xd7\x96\x50\xf5\x3c\x49\x8f\x64\x71\x8f\x89\x41\xa1\x38\x2d\xd3\xeb\x09\x83\x60\x87\xd8\xaa\x08\x52\xbf\x57\x77\xd0\xc2\x64\xe1\xd3\x73\x80\x1b\x98\x4c\x30\x9f\xe8\x77\xd0\xf2\x9e\xc4\x9e\xa8\xd6\x25\x50\xe7\xd6\x48\x4b\xac\x38\xdb\xf3\x04\xf1\x33\xad\x63\x8e\x98\x2d\x1c\x75\x25\xce\x5c\xdd\x89\xe2\x1b\x92\x64\xa7\x27\xe4\x28\x18\x37\x0c\x08\xe3\xec\x54\x1e\x1f\x55\xe3\x18\x72\x92\xff\xc3\x16\x54\xd9\xd2\x09\xed\x66\x2a\x03\xa8\xb2\x4f\xab\x74\x3d\x68\xaf\xcd\xe3\x8e\x8e\x30\xf2\x35\xd5\x09\x14\x1c\x88\x8f\x54\x47\x3d\x0b\x5f\x3c\xa4\x3e\x3e\xdb\x41\xfe\x21\xad\xbc\x41\x54\xab\x81\x0c\x5b\xd8\xa4\x6c\x97\x05\xd2\xd9\xb2\x11\xe8\xec\xa4\x83\x0e\xd4\x77\x82\xb1\x83\xc6\x0b\x58\xc2\xc4\x0c\x1e\x0a\x4f\xde\x55\x00\x25\x11\xd2\x4d\x5a\xdf\x63\x86\x72\xc2\x10\x4c\x41\x75\x47\xe4\xaf\xe7\x73\x52\xf5\x04\x66\x6e\x99\xab\xe6\x7e\x5c\x81\xee\x44\xfc\xc4\x62\xa4\x79\x01\x8e\xd1\x54\x8e\xad\xaa\x8b\xfc\x89\xbb\x7c\x27\xde\x7e\x8d\x29\xaa\xfa\xb6\x2a\x78\x75\xf4\x72\x45\x25\x67\xe3\x7c\xb1\xb6\xf2\x09\x9e\x67\xa3\x22\xde\x1f\x64\x18\x1c\x55\x20\x0a\x13\x5f\x2e\xd4\xf9\xda\x63\x1f\xa7\xaf\xf6\x8f\x2a\xae\x16\x84\x18\x15\x61\x3d\xb5\xd4\x55\x0b\xd6\xce\x0f\xed\x45\x31\xd8\x27\x1c\xd8\x36\x2d\xd8\xba\x47\xc5\x31\x28\xa6\x31\x19\xe4\xcd\x3b\x55\x68\x58\x63\x03\xa8\xe9\x8c\x11\xa8\x7d\x10\x07\x60\xfc\x29\xeb\x40\x87\x75\x4d\x4a\xdf\x3e\xb2\xa6\xea\x38\xbe\xe8\x73\x45\x1c\xe4\x01\x2b\x72\xa7\x78\x5c\x83\x25\xf8\xd3\x44\xfc\x28\x09\xa1\x0b\xc9\xed\x46\xe9\x9b\x30\x66\x43\x08\x99\x17\x8e\x7a\xb6\xf3\xb5\x21\x48\x9a\xbd\xec\xc1\x8f\x45\x24\x5a\xda\xfc\x4b\x1b\x14\x86\x8f\xd1\xd9\xce\xc1\xfa\x6e\xe0\xa6\x1c\x00\xb0\x48\x44\x36\x64\xfe\x2d\x96\x59\xd9\x6c\x1a\xf2\x2b\x5e\xa6\xfb\x94\x67\x66\x68\xc3\x77\x0b\xf5\xd6\xc6\x74\x1a\xc5\x57\x97\x4b\xf1\xf5\xaa\x62\x07\x49\x84\xe2\xf2\x36\x19\x66\x12\xc3\xac\x1b\x85\x8a\x26\x57\xde\x49\x58\x31\xaa\x60\x83\x32\x72\xb9\x0b\x39\x5d\x19\xbf\x95\x1b\xe4\x35\xff\xad\xaa\xf4\x56\x1c\x5c\x57\xaf\xcf\x4f\x52\x3c\x3f\x34\xac\x90\x4e\x43\x23\x7f\x1a\x8a\x7c\x64\xa0\x98\x33\x8f\x0d\x07\xf2\xcb\xfd\x2c\x7c\x81\xe7\xea\x82\xfa\x97\xa3\x81\x02\x67\xf2\x5d\xe9\x70\xbd\x1f\x20\x7c\xf1\xcd\x1c\x5f\x45\xb7\xfe\xc2\xdc\x3d\x47\x9e\x60\x7a\xf4\xf0\xc6\x85\x48\xd7\xcd\x8a\xd3\x1b\xfe\xdb\xfd\xee\x3c\x9c\xaf\x8f\xfd\x76\xfe\xac\x5f\xe7\x4f\xfa\xfd\x59\xd2\xef\x56\xf5\x7b\xa1\x7e\xb7\xf9\x7e\xbf\x78\x8e\x0c\x94\xeb\x4e\xf9\xe7\xa8\x38\xd8\xbd\x3a\x5a\x39\xb9\xce\xe0\x79\x86\xf7\x22\x18\x6b\x89\xf6\x4f\x94\xfd\x89\x09\x9a\x32\xf7\x5b\xe1\x6e\x7c\xd0\x01\xdf\xe7\x85\xbe\x6a\x01\xe1\xb2\x54\xf8\x66\x5b\xe4\x04\xaa\xc6\x99\x1d\xbe\xf3\x52\x0d\x79\x8d\x55\x08\x41\xed\xc6\x35\x5a\x06\xf8\xaa\x6d\xb8\x95\x90\xf1\x9e\x7a\x11\x8c\x6d\xb4\x77\xd4\x4c\x2f\x50\x73\xc9\x89\x09\xd8\x63\x2f\x6a\x2e\xb5\x2c\xe1\x18\x3e\x08\x69\x95\x4d\xc0\x09\x1e\x11\x93\x1f\xa5\x4f\xc8\x3c\x05\xfd\x4d\x0f\xc8\x1f\xac\xf9\x41\x30\x76\xa6\x35\xdf\x97\xad\x39\xed\x73\x87\xe7\x17\x3d\xf9\xf2\xa6\x53\xc5\xad\xf2\x9b\xb2\x92\x1c\x7f\x54\xbd\x8e\xb4\xcb\x47\x44\x03\x7e\x31\xcc\x1c\xef\xff\xac\x5c\x08\x18\xa6\xac\x28\x70\x32\x73\xe4\x64\xe2\x63\x8e\x93\x29\xae\x4d\x5c\xac\xb6\xb0\x91\x69\xc0\x6a\x8a\xf2\x69\x7c\x06\x2b\xe7\x32\xb6\x13\x3a\x58\x8d\x80\x64\xce\x6b\xf6\x62\xaf\x97\x11\x10\xa6\x5c\xe4\x17\x58\x81\x5b\xa0\xd6\xd7\x13\x62\x93\xfc\x25\xbe\xa0\x25\xad\x6f\xf5\x32\x9a\x3e\xa6\x9a\x6a\xab\xd6\xc3\x09\x11\xef\x00\x5b\x6f\x94\xb4\xbe\xd6\xcb\x08\x02\xdb\x70\x07\xdb\xb7\x9c\xee\x2b\x6e\xe2\x56\x21\x28\x54\x44\x4a\x3b\xf5\xeb\x3a\x81\x58\xa3\x27\xcc\x66\x0d\x34\x12\x43\xff\x9c\x08\x43\x13\x49\x77\x89\xfe\x90\x45\xd5\xa5\xd2\x13\xf6\xba\xa4\x4d\x04\x1c\x14\x68\xb8\x71\xc9\x54\x70\x23\x84\x49\x1b\xb3\xa0\x42\xcf\x58\xeb\xe6\xdc\x4f\xf7\x08\xd7\xba\x55\xe6\x45\xd2\x7d\x4f\x93\x57\xa4\x82\x66\x0d\x4e\x6b\x80\xe8\x68\xca\x98\x58\x6c\x74\xd9\xd5\xed\xd3\x96\x4a\xcb\x49\x30\x87\xca\x02\x82\x69\x84\xc5\x96\xab\xef\x94\xb2\xd6\x38\x5c\xc3\x1f\x02\xc3\x51\x55\x6e\x8e\x5a\x5c\x33\xc9\x78\xc7\x51\x0a\x93\x58\x1c\xdb\xc1\xe0\x99\x7f\x6f\x8c\x2b\x76\x22\x4c\x47\x39\xb2\x17\xb5\x62\xdb\x55\xf9\x8a\x2d\xac\x9c\x41\xf6\x64\x91\xcb\x35\xad\xd8\x32\x56\x96\x87\x53\xc7\x21\xc0\xb5\x5b\x6b\x55\x8e\x09\xb9\x4f\x31\x21\x53\x73\x4d\x67\x35\x28\x13\x4e\x03\x53\x10\x48\xd8\x6f\xdd\xec\xa9\x18\xfd\xd3\x2b\xe8\x65\xf9\x69\xe9\xe4\xcc\x3f\xcb\xd4\xf0\xb3\x43\xd3\x93\xf0\x85\x32\x11\x29\x9b\x68\x2a\x02\x60\x23\x81\xf8\x9b\x46\x94\x25\x70\xa5\x14\x5e\xc9\x2e\x23\x22\xb3\xca\xed\xc9\x63\x6e\x76\x0a\x98\x9b\x68\xa3\x82\x0d\x9a\xb1\xb8\x62\x83\xca\xf1\x40\xd3\x15\xcd\x0c\x60\xd6\xff\xcd\x15\x5d\xaa\x15\x8d\xff\x68\x45\x57\x65\x2b\xaa\xf0\x56\x0f\xda\x8a\x4e\x59\x52\xb1\xa2\x4b\x2b\x17\x69\x8f\xc9\xd4\xc8\x47\x40\x4b\xaf\x16\x25\x79\xdd\x7f\x00\xc9\x12\x99\x64\xa0\x04\xb8\x14\xb3\xdf\x97\x60\x40\x71\x54\x23\xc6\x7e\x33\x74\x35\x44\x3f\x77\xd4\x81\xb9\xcc\x51\x1a\xa2\x66\x19\xca\x52\x82\x76\x78\x28\x71\x07\x71\xc8\x20\x86\xa0\x91\x06\x95\x5c\xe4\x1c\x40\x2e\x5c\x64\xdd\x20\x7b\x99\xdb\x07\x47\x36\xf1\x6b\x13\xc3\x62\x02\xa8\xb1\x78\x73\x32\xd0\x78\x7f\x01\x1e\x2d\xbf\x13\x48\x89\xca\x86\x8b\x0b\x56\x34\xe7\x40\x4d\x9f\x22\xca\x75\x14\x63\x76\x3f\xdb\xa0\x44\xb0\xb5\x4b\x61\xd2\xb0\x79\xdc\x1c\xc1\xd7\x0d\x42\x7d\xca\x57\xe2\x5b\x74\x47\x86\x55\x07\xca\x3c\xc4\xe4\x3a\x43\x73\x9b\x98\x68\x71\xfb\x0d\x54\x88\xf2\x29\x5e\x99\x87\x2c\x1d\xa8\x53\x61\x25\x27\x59\xd8\x89\x7c\x13\x74\x67\x85\x77\x12\x34\x27\x4c\x79\x42\x14\x9b\x3c\xb6\x79\xae\x49\x35\x2c\xb2\x49\x4e\xdf\xc8\x87\x4a\x7d\x2f\xe4\x2a\xf2\xb7\x80\x2f\xda\x40\x4b\xdb\xb2\x56\x7e\x18\xcf\x6d\xae\xa1\x82\x99\x22\xa9\xe8\x04\x40\x8b\x04\xe4\x0b\x35\xdd\xd2\x96\x2e\x96\xe6\x37\x19\x04\x64\xc1\x80\x97\x5a\x7c\x6b\xf5\xd0\xe2\x05\x98\x96\x76\x44\x46\x2a\x65\x72\x6e\x87\x2a\x6f\xfc\xd6\x07\x47\x9f\xd1\x0e\x40\xee\x28\x39\xa6\x1b\x41\xac\x1b\x7b\xb5\xc0\xe3\x77\x42\x8d\xc2\xf2\x3d\xb3\xe5\xae\xfc\x21\x2e\x01\x6e\x5c\x83\x4a\xf7\x11\x4e\xf9\x00\xc3\x6e\x15\x38\xe3\xd5\x15\x79\x67\xce\x89\x5b\x8f\xb9\x95\x0d\x9f\xe0\x1f\x6c\xcc\xe2\xaa\x6e\x33\x41\xdf\x0d\x22\x18\x46\x92\x27\x0f\xa4\x43\xdf\x12\x92\x2c\xf8\x92\x38\x14\xcc\x91\x56\x95\x07\x8f\x55\xd4\x54\x5e\xed\x72\x0f\x12\x8c\x30\x55\xb1\x2b\x57\x67\x46\xc3\x8f\xdc\xe3\x21\x8c\xa3\xfc\xf1\xd8\xfe\xaa\xbf\x12\x9b\x3a\x66\x15\xcd\xe4\x80\xbf\x4f\x79\xe0\x6f\xd5\xce\xfa\x97\x24\x23\x06\x86\xba\x75\xca\xdb\x69\x76\x85\xfe\xb6\x9b\x97\xfc\xfc\xda\x98\xdb\x27\xde\x56\x93\x29\x5f\xed\xc1\xd5\x8f\x2b\x2e\x59\x41\xfa\xf5\x70\xc9\xb0\x35\x47\x2c\xa9\xe0\xad\xda\xdd\x14\x07\x53\xc3\x21\x8d\x29\xc7\x9c\xcf\xcb\x3b\x3a\x00\xdc\x20\x06\xce\xc3\x16\xff\x68\x01\xc9\xf9\xa9\x9c\x5c\x99\xd7\x44\xda\x34\x3a\x1d\xec\x52\x99\x56\xee\x6e\x83\x5f\x76\x9c\xac\xe5\x13\xc6\x7e\xa4\x7a\x74\xf7\x23\x6c\xda\x45\x4b\xbe\xc3\x06\x99\x25\x5f\xfb\x2e\xd8\xbd\x21\x25\xea\x81\x73\xfd\xa3\x75\x92\xfc\xcd\x0c\x24\xe2\x11\xdb\x6d\xca\xf7\x64\xd7\x15\xb9\x1b\x9f\x85\x9a\xb3\x57\xeb\xc6\x83\x81\x77\x71\x05\x81\x17\xbf\x31\x2c\xd3\x95\xa5\x06\x4c\xd5\x2a\xbc\xcb\xb5\x19\x45\x80\x8d\x01\x6d\x26\xa9\x78\x79\xd3\x62\x2e\xf3\x10\x2c\x06\x5f\xaf\xd7\x7e\xe1\x36\xb4\x1c\xb0\x7f\xf6\xf9\x19\x53\x71\x35\xae\x7f\xc7\x00\xea\xfa\x84\x39\x81\x7d\x81\x52\xaf\x40\xae\x9f\xd7\x1b\xcc\x19\xb8\xc1\x9c\xac\x7d\xc8\x24\x2a\xee\x92\x73\x4e\x6d\x7f\x1c\x30\x87\xc5\x76\xf1\x98\x2f\x38\x73\x7d\xa1\xce\x7f\xf9\x2c\xc1\xf3\xd0\xb7\xfd\xe6\xed\x59\x82\xc5\x65\x8b\x24\x79\xbd\xab\xa0\xfb\xf9\x4b\x13\x5f\x0a\x54\x66\xae\x93\x8a\xab\x9d\xa2\x17\x83\x3c\x04\x44\x07\xfb\x9a\x77\xcb\x0f\xc3\xbc\x97\xeb\x2b\x68\x16\xfa\xda\xe9\x7d\x91\xdf\x8c\xdb\x0a\xd0\x98\x1d\x36\xf3\xdf\xdb\x01\xea\xcc\x4c\x5e\x5f\x40\x9e\xe9\x8d\xa0\xdc\x91\x63\x16\x55\x4c\xd6\xb0\x53\x58\xe8\x2d\xf1\xfe\x4d\x91\x3e\x9a\xe0\xd1\x6f\xc0\x10\x3f\xe3\x7b\xcc\xdb\x01\xcd\x75\x49\x35\x74\xc5\x5b\xf5\x0a\x87\x1b\x78\xab\x66\x3e\xfa\xf3\x74\x2f\x5f\xdf\x08\x07\x16\xfc\x28\x67\x7b\x7b\x39\x31\xec\xf4\x03\xa5\xb0\x7e\xde\xfd\x50\x36\x05\xcb\xc7\x52\x6d\x4d\x65\x8b\xc7\xfe\x35\x4d\x8d\x0d\xa7\x8c\xe0\x2f\x01\xbb\x34\xa6\xe6\x16\xe5\x2b\x17\xe7\x12\x0c\x80\x89\x4b\x04\x76\x78\x97\x39\xe7\xb1\xa9\x9d\x21\xeb\x13\xc1\xbf\x34\xca\x0f\x42\x6c\x6b\x61\x7c\xf1\x27\xf2\xdb\x70\xa2\xb6\x14\x1d\x85\xae\xbc\x0a\x4b\xf2\xd2\xc7\x2c\xbf\x26\x1a\xd0\xc6\xb2\x94\xa7\x5c\x2b\x29\x2f\x35\xb9\x60\xa6\xe8\x8e\x88\x23\x0f\xf5\xa7\xfb\x9b\xad\xad\x97\x5c\x65\x93\x67\x6e\x3f\xdf\x5a\x0a\xa3\x08\x69\xed\xe3\x7c\xa4\x57\xc7\x23\x0b\x68\x27\x42\x2e\x50\xa0\x85\x70\x85\x93\x50\x0d\x93\x9a\x84\xeb\x9f\x25\x17\x0b\xfc\xea\x4c\x7d\x05\x2f\xf3\xad\xb0\x0c\x5e\x7a\x20\xcd\x77\x74\x44\x72\xc0\xaf\x07\x6e\x59\xb3\xfc\x54\xee\x7a\xa9\x84\x0a\xd0\xab\x51\xe1\x40\x16\x5b\x54\x7a\xab\x71\x65\x8b\x87\x9e\xbe\xf9\x84\x2a\x17\x53\xb3\xca\x01\xb2\x49\xe2\xbc\xfa\x7e\x69\x66\xc8\xa5\x63\xd6\xa9\xb8\x91\x97\x3c\x49\x40\x4c\x33\xad\xe5\x54\x1e\x2f\xfa\x57\xa6\x8f\x7e\x4f\x73\x20\x17\x59\xa8\xda\x6f\xb9\xba\xc3\xfb\x4e\x53\x45\x25\x10\xc2\x2d\x25\xf1\x43\xb0\xcc\x0d\x65\xe5\x79\x01\x66\x87\x5b\xe4\xa4\x5f\xca\x4b\x89\x06\xdf\x10\x2a\xa1\x6a\x54\x95\xbb\x07\xad\x15\x78\x8d\x89\xbe\xad\x92\xfb\x2a\x0f\x37\x14\xcc\x5e\x55\x25\xfd\x9c\x02\xa6\x94\x82\x20\x6e\x0e\xea\x35\xce\x9e\xee\xac\x9b\x43\xae\x8f\x40\xed\x28\x97\x64\x57\xc1\x4f\x75\x7b\x1a\x6f\x2c\x50\x8d\x28\xeb\xfe\xc2\x25\x69\x54\xb4\x6f\x83\x64\xa4\x70\x30\xcb\x99\xc2\x0b\xae\x00\x64\x1f\x3d\xd9\xaa\x25\x35\x53\xe5\xc0\x57\xb8\x3c\xe3\xe3\x82\x32\x8b\xab\x0a\x34\xd7\xc7\xca\xb9\x22\x30\x69\x7d\xc4\x26\x16\xcf\x85\x4f\x5f\x1d\xcd\x8e\x06\x78\x48\x2b\xed\xa2\xaa\xfc\x0e\x60\xad\x8a\xcb\x8e\xf1\xcd\x22\x50\x00\xb7\x73\x03\xc3\x69\xee\x51\xf6\x74\x01\x33\xab\x51\xbe\x57\x7d\x85\x06\xba\x30\xf0\x55\x1e\xa0\xcd\x4d\x15\x57\x52\xe6\xd2\x21\xba\xf0\x8d\xc6\xa3\x1c\x76\x3e\x59\xb8\xaf\x50\xc4\xf5\xf4\xc8\xe6\xfb\x7a\x9a\xdd\x9f\xd0\xb9\xc0\x95\x80\x67\xd9\x3d\xfb\x9b\x01\xe5\xce\x04\xd7\xb4\x1e\x46\x8e\x51\xe4\x2d\xa4\x80\xff\x7c\xcc\x9d\xd5\x34\x0b\x11\x40\x84\x0e\xfb\xf2\x5c\xdc\xb1\x86\x28\xa5\x76\x78\xd0\x45\xcc\x8b\xb5\x2d\x30\x87\x7c\x6e\xe4\x03\xe5\xc4\x1c\x3b\x02\x19\x7a\x6d\xe4\x7c\xad\xc5\xa3\x72\xb2\x3e\xc7\x03\xa5\xb0\x28\x3f\x1e\x93\xd6\x02\xc3\x3b\xec\xcc\x71\x24\x42\xe9\xdf\x43\x8d\x2a\x79\x75\x03\x90\xc9\x58\xe5\xbb\xff\x8d\x0e\xb0\xe0\x09\x97\x2f\x66\x1d\xd1\x39\xb6\x96\xc8\x7f\xed\x03\x97\xbc\x9b\xc7\xbc\x7e\xa1\xdc\xbe\x81\x3e\xb5\x7c\x3f\x29\x9b\x64\x4c\x1e\xde\xf9\xe1\xa2\x1f\xd4\x67\xe5\xe5\x9b\xf7\x75\x5a\x39\x20\x04\xce\x74\x23\x5f\x20\x83\x70\xb6\x8f\xc1\x96\xf6\x71\x09\xe6\x90\x05\xb8\xee\x3a\x11\xee\x23\xbc\x6f\x2f\x08\xfd\xd2\x28\xec\x04\x44\x19\x3b\xb1\x38\x15\x46\xa9\x9e\x3f\xbc\xa9\x4e\x82\xda\x94\x3e\x0a\xe4\xd3\x80\x62\x12\x8e\x80\x13\xea\x84\x84\x2d\x36\x47\x78\x87\x3a\x79\xe9\xb8\xa0\x83\xb1\x19\x88\x1b\xef\x10\xe5\xc2\xd0\x97\x08\x13\x86\x83\x20\x03\xee\xc9\x29\x3a\xca\xe6\x90\xa5\x50\x57\xb9\xad\x5b\x3c\x57\x44\xf9\xec\xcf\xb9\x85\xce\x78\xb3\x5d\x93\x6b\xcf\xb9\x80\x84\xb2\x0e\x46\x3e\xab\x47\xdd\x20\x57\xef\xbb\xd4\xba\xe7\x0c\x54\x83\x29\x5b\xe4\xd5\xa7\x4c\xbc\x1d\x80\x6b\x1a\x64\xe9\x95\x43\x1f\x9f\xb3\x54\xe0\xa1\xf2\x06\xc6\x35\x5c\x7e\xa0\x7d\x61\x6b\x14\xc7\xa7\xe0\xe6\x96\x6b\xa4\x46\xdb\xad\x9d\x2b\xb1\xe0\x27\x10\xd1\xbc\xc8\x0e\x6a\xfa\x14\xd8\xa8\x86\x2f\x8a\x8b\x9e\xb7\x6f\xb9\xdf\x8e\x01\x11\x4f\x60\xde\xd1\x4d\x37\xcd\x27\x9e\x2d\x3e\xa6\x49\xc6\xe3\xf2\x7a\x3d\x38\x0b\x2f\xc1\x84\xbc\x63\x40\x20\xc4\xa4\x35\x4b\xae\x12\x14\x92\x98\x85\xd1\xad\xcf\xe5\x6d\x4c\x98\x30\xed\x05\x62\x96\x59\xc5\x02\xdb\x36\x50\xc9\x0e\xdf\xff\x2c\xef\x7e\x4a\x7d\x4a\x66\x14\xa2\xcf\x22\x23\xbf\x29\xb1\x87\xef\x07\x44\xd4\x8a\x84\x1f\x31\x12\x15\x13\x78\xbc\xed\x91\x31\x84\xa5\x81\xe4\xbc\xc1\x80\xce\x96\x60\x8e\x07\xb7\x66\xa0\x86\x7d\x34\xf0\x29\x02\x7d\xdf\x1e\xd3\x67\xab\xdf\xce\x86\x0a\xdc\xac\x83\x87\xf1\x48\x0a\xcf\xb1\x9a\x6f\x93\x24\xfe\x4f\xaa\x29\xb9\xa6\x76\x52\xce\xe3\x6c\x2c\xae\xc9\x06\xfb\x24\xcf\x2a\x1f\xef\x80\x24\x10\x90\xa1\x6c\x27\x5a\x96\x13\xf2\x83\x95\x41\x48\xad\xc5\xa9\xd8\x8e\x1a\xee\xfa\xa0\xdf\x1b\xf4\x03\x1d\xb1\x53\x05\xf7\x7d\xb6\x50\x06\xc2\x7c\x36\xe8\x5a\x87\x10\xff\x44\x21\x55\xfb\x3b\x87\x30\xd7\x15\x8c\x70\x61\x02\x51\xa4\xd3\xd5\x2b\x96\xd9\x21\x0d\xde\xa8\xf2\xbd\x6d\x59\x79\xfb\x09\x04\x30\xfd\x37\x87\x32\xac\x1c\x4a\xf7\x7a\x51\x82\xe4\x9f\x8c\x24\xd5\xa6\x0f\xd9\xbc\xc2\xde\x56\x2b\x99\xfe\xfa\xbf\xdd\xe9\xa2\xa7\x4f\x34\xa4\x00\x8a\xeb\x2b\x89\x6a\xca\x4e\x9e\x87\x9d\x43\x62\xf7\x00\x23\x5b\x54\x4e\x22\xd2\x2a\xcc\xd3\xf8\xb5\xf3\x49\x1d\xcc\x20\x1c\xa4\x70\x2d\xd3\xe5\x1e\xae\x62\x47\x53\x94\x4c\xf1\xe2\x86\xcf\x18\xba\xbd\x82\x58\x62\x10\xfe\x7f\x1a\x8a\x05\x20\x96\x0a\x28\x9a\x8d\x0e\x12\xea\xb7\xb6\x81\x6f\x2f\xc4\x59\x53\x4c\xa9\x4a\x38\x8e\x19\x0d\x1f\x09\x0e\xc6\x40\x34\xb7\x07\xcb\x28\x58\x94\x20\x55\xd1\x9a\xe7\xd2\xe8\x14\x97\xcc\x3a\x67\xd9\xeb\x1a\x7c\x4b\xb1\x0c\x06\x85\xa7\xf7\x8d\x8a\x40\x13\x35\xba\x8e\x91\xad\xd3\x1c\x52\xb5\x9e\x4e\xa5\x5a\x27\xc3\x04\x97\xaa\xb5\xa0\x2e\x8a\x0d\xd0\xba\x4a\xb1\xe8\x54\xa1\xab\xa1\x26\xf6\xaa\x89\xe5\x45\x15\x08\x2f\x15\x5a\x97\x05\x67\x4e\xa4\x94\x91\x4a\x1f\xb2\xde\x42\x3b\x4f\xd4\xcc\xa6\x09\xa0\x1c\x08\x15\x70\x31\x2a\x96\xc9\x56\xb4\x4a\x4e\x81\x54\x21\x7f\x14\xf0\xa4\x2c\xc3\xfe\x96\xde\xfd\x06\x76\xab\x00\xe9\x0d\x88\x4e\xf7\x2c\x41\xdf\x0b\xeb\x46\x2e\xaf\x6b\xb1\xbd\x54\x2c\x0b\x96\x70\xf7\x59\x89\x2b\x52\xef\x65\xa4\xbe\x46\x3f\x02\xfd\x94\x12\xa0\xa4\x61\xe1\xa1\x82\xd7\xee\x67\x32\xa7\x0b\x97\x98\xb2\x38\x84\x08\x81\x3b\xed\x3f\x95\x0a\xcc\xc6\x5c\x40\x92\x75\x11\x3c\xd5\x0b\x98\x1b\xa5\x7c\xea\xe4\xb7\xbc\x16\x09\x32\x43\xe5\x2c\xea\x42\xb6\xe4\x44\xbc\xfe\xc2\x6c\x46\xdd\x2e\x5a\xea\x62\x07\xad\xc1\x55\x2d\x8f\x8d\x88\xee\xcc\x0d\x42\x6c\xaa\xd6\x18\x4c\x99\x30\x53\x8d\xc2\x75\xbb\x65\x4a\x0e\x4b\x14\x94\x1c\xb9\xe6\xd8\x33\x4b\xf5\x05\xa3\x4a\x7d\xc1\xa2\xa6\x99\xa7\xdc\x44\x5b\xe1\xed\xdf\xad\xf0\xd7\xec\x3f\x6e\x81\x07\x6c\xf9\xbf\xbb\xcc\xc3\x98\xc4\x85\xac\x60\xea\x0c\x3a\x66\xdb\x8a\xb3\xb5\xac\x69\x81\x5b\xfb\x25\xc5\xb3\x67\x82\xcd\x5f\x4f\x8c\x0d\xc9\xc3\xa4\x7c\x76\x92\xaf\x84\xd9\xc9\x81\x8d\x15\xf7\x4c\x53\xfc\x93\x65\x48\x85\xa1\x36\x06\xda\xc6\xcf\xd9\xd9\x86\xff\x40\x25\x17\x50\xcc\x9d\xaa\x4a\x59\xe9\xd3\x20\x35\x96\x8d\x59\xad\xe2\xe5\x5e\xd5\x4a\x2c\x23\xd1\x1f\x1d\x8d\x7d\xf9\xd1\xf0\x29\xbc\x67\xf3\x28\xcf\x02\x42\x26\x7f\x0b\x9e\x20\xba\xe2\xed\xc6\x3c\xdd\x14\x11\xae\xfa\xf9\xed\xf6\x75\x08\x59\x43\xa8\xd7\xa3\x64\xf7\xa4\xc4\xcc\x75\x31\x98\xe0\xda\x12\x0e\x32\x63\xbf\xca\xf6\xda\xc9\xb9\x2c\x00\xcb\x3c\x04\x59\xfe\x9e\xe9\xc6\xf0\xc9\xb1\x89\x4c\x34\xf2\xb3\x84\x66\xe3\x19\x38\xc3\x6e\x2c\x49\xb2\x7b\xef\xc7\xb2\xb0\xfd\x1d\x79\xc9\x09\x22\x49\x92\xaf\xaf\xfa\xdf\x61\x1b\x61\x0d\x18\xea\xec\xac\xd7\x12\x56\x4c\x69\x6f\x4c\x40\x09\x1f\x76\xa1\xd7\xd0\xa6\xde\x56\x2d\x92\xcc\x8c\x01\x06\xf1\xbd\x55\xcd\x7b\x5a\x39\xef\x5d\x4d\x53\x54\x35\x6a\x60\x2c\xe9\x88\x93\x69\xe7\x1e\xb6\x5a\x08\x1c\xf5\x8c\x0a\x84\x5c\x15\xe8\x36\x07\x90\x00\x0e\x35\x8c\x7e\x85\x66\xc5\xda\x6b\x0a\xc2\x23\xba\xeb\x98\xc2\x5c\xe7\x14\x4f\xe3\x8b\x14\xd5\x9c\x5f\xea\x73\x1a\x02\xdf\x75\xf4\x7a\x06\x2f\x16\x48\x03\xba\xfc\x5d\xc5\x63\xbd\x93\xcf\xbf\x5d\xb0\xed\xa6\xe1\x5c\xeb\xaa\x6a\xf0\x3c\x16\xab\x61\x30\x97\x78\xdb\x57\xd5\x02\x88\xc5\xa2\x21\x99\xbc\xff\x3a\x55\x86\xcf\x57\xcd\xb4\x99\x46\xf0\xa3\xeb\x9f\x55\x55\x67\xc9\x99\xe3\xab\xe1\x29\xed\x5d\x18\xe0\x3b\x42\x69\x81\xe7\xf7\x98\x1d\x4e\x0b\xc5\x75\x42\x0a\x46\x6e\x1a\xe4\xc5\x45\x36\x89\x12\x8b\xb8\x08\xd4\xa0\x5a\xc8\x12\x39\x0f\xca\xa4\xbb\x38\x0d\xc8\xa9\x34\x38\x55\x0c\x50\xae\x53\xa2\x1a\x58\x9d\x20\x7b\xb6\xb0\xd7\x55\xc5\x17\x82\x39\xe9\xc2\x29\xf0\x81\x46\x54\xe2\xeb\xe0\x84\xc2\x2c\xa0\xbc\x6e\x17\x54\x6e\x37\x48\x8d\x2e\x98\x4a\x7a\x2c\xd9\xee\x31\x44\x3e\x6b\x3c\xf4\x2c\xa6\x17\xe7\xd2\xa2\x38\xd0\x8d\x1e\xae\x6c\xf1\x66\x0b\x51\x1a\x8d\x56\xfe\xb4\xd5\x6c\x04\x6b\x14\x35\x54\x0a\x25\x91\xe2\x9a\xc0\x9b\xe5\x18\x91\x9e\xd5\x29\xfe\x3a\x63\xec\x99\x7e\x3d\x5d\xff\x9a\xab\x1b\x17\xfa\xbc\xdc\xe1\x9c\x56\xf2\x4d\x70\x82\x7c\x6d\xf1\x08\xe8\x10\x94\xa4\xbc\xd5\x42\x26\xcf\xd0\xa7\x03\x8a\x2e\xb7\x23\x68\x4e\xc5\x7e\xd1\x3e\xd5\xc7\xb8\xd0\xf5\xdd\xcd\x76\x5c\x8a\x07\x62\xce\x62\xac\x4b\x0c\x85\xa6\xc5\x23\x70\x5f\x5f\x0e\x4a\x05\x48\x1f\xe1\xe1\x9d\x9c\xa6\xb9\x4d\xd5\x91\x09\x12\x51\x03\xdf\xcc\x51\xe2\x49\xe1\xc3\xae\xaf\x66\xec\xb5\xc6\x09\x28\xa8\xd4\x5c\xf0\xd6\xb7\xe5\xa1\x7a\x9f\x2b\x7e\xaa\x54\xa3\xfe\xe1\x3b\xf5\xde\x6f\xb6\x10\xf7\x51\xbe\xf7\x42\x46\xf1\xb3\x27\xe5\x25\x5f\xd0\x18\x15\x14\x85\x02\xa1\x28\x4b\x9a\xe9\xab\x6c\x90\xca\x61\x32\x9a\x13\x9a\x82\x24\x12\x51\x8a\xa6\xa0\x7e\x8e\x29\xe9\x80\xbc\x79\x16\x4f\xf2\x75\x53\x67\x4b\xc8\xa8\x29\xa5\xaf\xe5\x4f\x36\xbd\x57\x19\x35\x57\x17\xc2\xa2\xb8\x21\xb1\x88\xad\xba\x8d\x7f\x26\xe1\x88\x54\xc2\xb9\x34\xe9\xfa\x27\xa4\x03\x2d\xde\xbb\x7c\x16\x44\x39\xe6\x57\x36\xdd\x0b\xb5\x3a\xed\x96\xc2\xb0\xe8\xb4\x06\x95\xeb\x75\x52\xeb\xa5\x8a\xaf\x78\xd0\xa6\x15\x5b\x82\xab\xbb\x5a\xb1\xac\x80\x64\xf0\xb4\x65\x31\x78\xfd\xe2\xb0\x61\xba\x2c\xb7\xc7\x29\x9b\xd9\x70\xc9\xd2\x74\x6e\x5d\x39\x8c\x20\x64\x02\x6f\xcb\x0c\xdd\x9a\xd8\x2b\xa2\xea\xbc\xc8\x1b\x11\x1c\x34\x91\x7d\xf7\x00\xfe\x6b\x9d\x1f\x85\xa1\x9a\xe9\xb5\x43\x68\xec\x71\x1b\xa1\xfa\x7d\x5b\x5d\x78\xb5\xd7\x7e\xcb\x29\x2d\x99\x91\x06\x35\xaf\xfe\xb2\xa4\xa4\xb2\x75\x30\xe7\xb4\xd1\xe5\xfa\x1f\xac\xa2\x97\x94\x0c\x98\x05\x32\x50\xf2\x7e\x08\x02\x37\xcc\xdd\xff\xef\xa4\x31\x68\xe1\x0c\x01\x26\xc1\xd9\x73\xab\xb0\xaa\x9d\x3e\x18\x71\x02\xee\xe7\xaf\xed\x12\x52\x21\xa0\x46\x21\x03\x5a\xbe\xb6\x33\x5e\xf9\x3a\xdd\xca\x67\x5d\xac\xae\xa7\xd3\x6f\x14\x47\x20\x47\x36\xa6\x11\xcc\x79\x0a\x26\x75\xe5\x50\x64\xe8\xa0\x10\x07\x25\x5b\xa4\x2a\xe4\x89\x49\xb0\x9f\x05\xcd\x90\x68\xa0\x3b\x4a\xa7\xf8\x73\x3f\x22\xdc\x5a\xb8\x74\x2b\x03\xad\x9b\x6b\xfc\xb7\xba\x35\xa1\xb7\xa6\xf8\xf4\xe4\x1e\xe5\x1f\x30\x70\x80\xe2\x7d\xc1\x59\x10\x55\x48\xe0\x2d\x91\x79\xcb\x85\x94\xd8\xce\x4d\x2d\x58\x94\xe5\x7a\x41\x3e\xd3\x72\x9e\xf6\x3e\xc1\xe8\x63\xe4\x6a\xc7\x98\xed\xc1\x43\xd7\xab\xe1\x96\xa7\x92\x12\xe5\x93\x5d\x81\x35\x5f\x25\x80\xe9\x46\x04\x28\x83\x8f\x9c\xc9\x77\xd4\x9a\x7f\x21\xaf\x7c\x10\x61\x86\x21\x80\xcd\xff\x08\xee\xb5\xc6\x47\xa8\xd7\xc7\x02\x18\x33\x8d\x2a\x1d\x51\x0b\xf2\x8d\xd4\x87\x4c\xbc\xa1\xf9\x41\x2e\xd0\x1c\x87\xef\x75\xd4\xcf\x68\xc1\x70\xd8\x3b\x23\xe4\x81\x6b\x25\x74\x5f\xdb\x61\x03\xcc\x57\x8e\x25\x97\xdb\x7e\xa6\xdd\x50\x33\xa1\xed\xff\xbd\xf2\xe4\x89\xfa\x00\xdf\xc4\x5a\x85\xb7\xc5\xaa\x29\x8a\x47\x57\xe1\xf2\x5f\x2b\x11\xcb\xb7\xd5\xef\x3b\x29\x90\xca\x8a\xb3\x45\xc5\xf8\x0f\x7d\x6d\x5f\x93\x0f\x29\x18\xf4\x35\xe9\x7f\x01\xb0\x69\x2f\x8d\xd6\xa0\xaa\x0f\x79\x0b\xc4\xee\x11\x6d\x55\x4f\x15\x43\xc4\x83\x2a\x42\x11\xb6\xae\xc0\x4f\x17\x08\x7c\x36\x0e\x4c\x27\x3d\x12\x74\xbe\xe7\x20\x38\x8e\xc8\xb2\x54\xf6\xcc\x9f\xc4\x0e\x77\xbe\x7f\xa7\x13\x6a\x55\x74\xf9\x1d\x8d\x00\x43\x29\xb3\x6e\x4f\x28\x7c\xb5\x0d\xc4\xec\x89\x31\xab\xff\x74\x3b\x41\x39\xf0\x2d\x37\xc5\xbd\x07\xff\xac\x31\x92\xe6\xc4\x33\x23\xd5\x0a\x51\xd4\x5e\x7c\xf3\xc6\xa2\x64\xdb\x92\x53\x93\x0b\x1f\x24\x24\xaf\x89\xa2\x73\x6a\x42\x52\x51\xf6\xfd\xc5\x4d\x03\xd8\xee\x27\x1a\xc0\x92\x23\x9a\xb9\x9a\x8f\x28\x67\x19\xa8\x07\xfc\xca\xfa\x25\x2c\xa1\x1a\x56\x84\xec\xa1\xfe\x29\xc9\x58\x9a\xd5\xd0\xc4\x7c\x88\xdf\x53\xab\x0e\x7b\xbd\xb1\xf9\x53\xf9\xe6\x13\x15\xba\x7d\x48\xc0\xbb\xc7\xe9\xab\x7c\x08\x4b\x13\x61\x9d\x9a\xfc\x2e\x35\xb0\x01\xa3\x38\xe7\x2c\xac\x20\x41\xcb\x46\xce\x49\x42\x56\x8b\xe0\x78\x8e\x8f\xbf\xc1\x69\x0f\x62\x7a\xbc\x93\xa1\x88\x93\xc3\xee\x1e\x15\x45\x2a\x2e\xa8\x8f\x19\x49\x6a\xcf\xaa\x1d\x58\x9d\xbe\x99\x77\xdf\x0a\xb1\xd4\x12\xb1\x50\xd6\xe0\xe2\xe8\x5a\x7c\x89\xde\xcb\x2f\xe0\xa9\xf1\x41\x1d\x4e\x0e\x78\xc8\x9f\x88\x1a\x8f\x36\xf8\xef\xec\xf4\x5b\x72\xae\x3e\xc4\x96\x82\x4a\x80\xca\x6d\xa9\x9c\x5a\x3f\x18\x84\xbb\xe5\x6a\x10\x4a\x29\x6f\x25\x19\xb5\x15\x06\x0f\x44\x9e\xf3\x40\xb7\xf6\x35\x92\xa9\xb8\xea\x2d\xec\xe7\x72\xcb\x24\xd9\x12\xa1\xc5\xd6\x05\xc8\x05\x8f\xdd\xe1\x11\xc7\x37\x7b\xda\x05\xad\xcc\x7b\x94\x3b\xe8\x4e\x87\x6f\xf1\xca\x56\xdd\x77\x91\xf0\xdf\x5f\x50\x7e\x61\xf2\x36\x85\x0b\x58\xcf\x78\x86\xfb\xe4\x24\xb8\x1a\x14\x6f\xa7\x20\xac\x99\xf7\x4a\x85\xcf\xde\xc5\xa7\x1a\x3c\xdd\xc0\x44\x3e\x04\x95\x2b\x29\x63\x96\x78\xa2\xde\xa5\x38\xf4\xe1\x83\x89\xf7\xd9\xc7\x27\x3b\xc5\x00\xa0\x97\x6d\x8a\x6e\x12\xaa\x86\xff\x06\x1e\x5f\xa8\x19\x49\xb6\x79\x4d\x7a\xd2\x46\xda\x19\xb5\xcb\x3d\x12\x4d\xa0\xdf\x86\x5d\x54\xf7\x9e\xee\xe0\x8e\xbd\xf5\x29\xb5\xcf\xd1\x94\x24\xc2\x7d\x94\xc7\xc4\x33\xe0\x25\x1e\xb0\x05\x29\x83\xf6\xf0\x8c\x3d\xcf\xdf\xc0\x4c\xcf\x6b\x53\xcc\xd7\xee\x30\xf7\x23\x36\xcb\xdd\xc4\x50\xf1\xc6\xa6\xf3\x15\x2c\xe9\x34\x3d\xd5\x9a\x9a\x68\x22\x49\xd1\x3c\x1c\xa8\xd6\xc4\x87\x01\x7b\x36\x29\x2b\x2c\xd7\xb6\x42\xc7\x2c\xfb\x9a\x30\xd7\xb0\x9b\x21\x08\x02\x73\xae\x46\x95\x5f\x25\xcf\x17\xc7\x0f\xdc\xd0\x83\x9d\x5b\xf8\x3e\xa2\xb1\xa2\x63\xc1\x90\x16\xfe\xd5\x1c\x29\xcd\x97\xb0\xc4\xfe\xe8\xdc\xaa\x32\x45\x12\x02\xc1\x81\xbb\xb1\x5a\x35\x97\x39\x4f\x9d\xef\x7f\xd7\xa5\xcb\x3c\x90\x30\x89\x9d\x69\xc1\x92\x4c\x3b\x44\x90\x96\x3f\x60\xca\xad\x17\x15\x1e\x8b\xe9\x5a\x2d\xe1\x23\x12\xa8\xfe\xaa\xb5\x5b\x74\xba\x0d\xcd\xb0\x10\x88\xfc\x1b\x83\xde\xa1\x9f\x3b\xf4\x9d\x3a\x80\x5f\xe8\x58\x8a\x16\x72\x90\x07\x9f\x78\x37\x05\x17\x58\xa8\x85\xae\xe4\x2f\xbb\x7c\xad\xa3\x3f\xa8\xcf\x24\xa1\xdd\x2e\xf2\xdb\x70\x6a\x83\x75\xe9\x23\x2e\x1c\xd6\xd8\x05\x06\xa9\x9d\x6f\xa6\xd9\x92\xe4\xd2\x89\x52\xd5\x5e\x4a\xd4\xd5\x55\xef\xce\xca\x2a\x24\x57\x15\xb2\x39\x4e\x48\xe3\xba\xbf\x31\xa3\x67\x7c\x13\x5d\x23\x1d\x7f\xda\xb1\x8b\x8a\xb4\x2e\xb0\xcf\x9f\xe6\x88\x5e\x4d\xd0\x71\xd3\x99\xed\x36\x07\xf5\x1e\x67\x8e\x6d\xa5\x9e\xc7\xa4\x5e\x38\x15\x42\xb2\xaa\xac\xfa\x40\x67\x96\xbc\xd2\xac\x7f\xec\xe7\xdc\x7e\x7d\xe4\xaa\x9e\x8f\xe0\x10\x8b\x06\x8d\xb7\x93\xfc\x83\x2d\x39\x7c\x64\x73\xde\xd8\x8b\x12\x4e\x00\xdd\x5d\x2d\x5b\x79\xef\x7d\x05\x6c\x39\x86\x78\x93\x02\x0c\xe6\x76\xa1\x5c\x38\x09\xe6\x3c\xab\xd0\xc7\xf0\x5c\x13\x83\x60\x7a\xfd\x8a\x77\xa1\x71\xe5\xcc\x79\x01\x9f\xb5\x3d\x37\x4d\xbd\x2f\xc1\x3a\xb9\xbe\x9d\x34\x3f\xc2\x33\x6b\x54\x28\x8b\x5b\x8d\x6b\x67\xeb\x36\xb4\x1e\xf3\x8e\x99\x9b\xa1\x60\x56\x7e\xca\xce\xa3\x75\xba\xf6\xe8\x1b\x23\x3c\x30\x7a\x74\x3c\x57\xbb\x18\x36\xb2\x9c\xd7\x01\x4a\x17\x40\x4e\x8e\xdc\xaa\x20\x99\xe6\x5c\x20\x68\xa2\xf5\x74\x93\x87\x01\x40\x44\x9a\x41\x6e\xc5\x9d\xbb\x74\xbc\xa5\x4d\xb3\x31\xb5\xdc\x45\x75\xbb\x63\x08\x55\xa1\x67\x52\x0a\x70\x70\x39\xee\xd3\x08\x33\x0e\x29\xbc\x31\x66\xb2\x52\x89\x93\x3d\x87\xd8\x48\xf7\xbb\xf5\xf7\xf5\x5d\xe6\xfa\x0e\x0d\xef\x8f\xab\x8d\xea\x04\x92\xeb\x58\x57\x7d\x2b\xff\x1f\xd9\x72\xc0\x4f\xc6\x5f\x8e\x88\x9a\x76\x98\x03\xa1\x37\x43\x36\x6f\x97\xef\x73\x23\x17\x4a\x0d\xd6\x4a\xe4\xcc\x6e\x9b\xa4\x44\x22\xe8\x77\xf9\xf2\xce\x98\x78\x38\xd1\x80\x32\xc3\xe1\x1a\xf3\x8a\x9d\xd0\xd0\x54\x65\x16\xeb\x69\x23\xe8\xf3\x46\xe1\xe5\xeb\xbc\x82\xf3\x82\xcf\xd7\x64\x82\xc7\xee\x9c\xb4\xbb\x25\x84\x01\x41\x6e\x8d\x31\x6b\x35\x2b\x24\xef\x46\x21\x72\x10\xa0\x46\x31\xa8\x2d\xcd\x60\xd4\x32\x91\xd0\x05\x1c\x16\xef\x35\x68\xdf\x5a\x61\x27\x11\x9b\x15\x3e\xfd\x14\xe4\xeb\x67\x14\xe4\x22\xd4\xde\x39\x01\xb7\x2e\x24\x59\xb4\x55\xf6\x41\x74\xd8\x4d\x9d\xda\x67\x6c\x7b\xac\x60\xd7\xe7\xb6\x2e\xc3\x82\xb5\x7e\x41\x7c\x63\xce\xa7\x51\x84\x5c\xc5\x74\x68\x86\x5b\x40\xdb\x08\x8a\x22\x45\xba\x3d\x1d\xe4\x08\x28\x3e\xa0\x85\xec\xed\xbb\x95\x8f\x0f\x00\x27\x97\xc0\xa1\xcd\x2e\x71\x2e\x5b\xf1\x4a\xef\xb2\xd5\xdc\xce\xdc\x94\xe1\x9d\x6f\x50\x3c\x58\xd5\xd2\x02\x07\xe9\x8b\x2c\xff\xff\x05\xa7\xfb\x1c\xb5\xcb\x8d\xf7\x37\x58\x2a\xf9\xf0\xdb\xf3\x15\x09\x0c\x98\x93\xe6\x25\xe9\xeb\xbe\x82\xe7\x3e\xb6\x0e\x8f\x0e\x24\xca\x72\x62\xb4\x39\x47\xed\xd2\xe7\xb5\x13\xcb\x19\x89\x0e\x0f\x0b\x39\x31\xe8\xf7\xbe\x42\xfa\x14\xca\x00\xee\xd5\x70\x71\xaa\x44\xbb\x4e\x21\xda\xa5\x40\x4d\xd7\x28\xeb\xaa\xdb\x4b\xec\xd3\x86\x54\x63\x3f\xe4\xe6\x34\x78\xb1\xe9\x32\x26\xd6\x61\x2e\x04\xc4\x0c\x58\x51\x40\x8b\x0c\x3c\xad\xb5\xa5\xa4\xf8\x22\x49\x85\xa7\x43\x13\x0e\xac\xfb\x3d\x93\xdb\xf7\xa5\x1e\xb5\xda\xe9\xfb\xd3\x53\x36\x47\x66\xce\x56\x7d\x69\x07\x0b\xa0\x3c\x54\x07\x34\x86\x35\x97\x12\xfe\x06\xf2\x32\x8d\x59\x52\x11\x56\x71\x98\xdb\x9a\x17\x22\xda\xd7\xbf\xba\x2e\xa9\x67\xf1\x1d\x5c\xfe\xb7\xd3\xfc\xca\x8d\xb2\x6c\x40\xe4\x62\x54\x35\x92\xe3\x3c\x17\x73\x05\xd6\xec\xd2\x91\x38\xd9\x48\x56\x6d\x48\x3e\xf7\xa0\xf9\x83\x9b\x57\x9a\x9e\x8d\x91\xf3\xbc\x1d\xfa\x4f\xe0\x06\x42\x8a\x97\xec\x79\xd8\x23\xef\x8c\x79\x4a\x0b\x2c\x33\x4e\xd5\xfd\xfd\xef\x4c\xf5\x7c\x3d\xd5\xf8\xab\xa9\x6e\xda\x83\xfa\x27\x73\x1f\x32\x31\xc1\xc0\x37\x47\x39\xcc\x95\x39\x46\x5a\x3c\x79\x2a\x5b\x03\x7c\xea\x7c\xb2\xd7\x93\xcf\x80\xe4\x5e\x3d\xc9\x8e\xfd\xb7\x17\x66\x5a\xb9\x30\xe1\x3b\xf0\x2c\xe8\xdc\x00\x49\x54\xc5\x09\xd7\xc7\xec\x8a\xdb\xeb\x93\x0d\x57\x1b\x6b\x76\x2e\xf6\xa8\x3d\x1b\x65\xe7\x62\x54\x1e\x0e\x36\xf9\x4e\x4e\x42\x69\xd5\xda\xac\x58\xb3\xb3\xe2\x65\x94\x75\xbc\x99\xc9\xba\x96\x50\xbf\x6b\x4b\x88\xdd\x0f\x6b\x33\x04\x33\x4c\x5b\x28\xde\x7d\x7f\x0a\x88\xf4\xa2\x73\xbe\xba\xe4\xea\xf5\x98\x55\x3e\x1e\x92\x52\xa4\xaa\xaa\x26\x79\x49\x7c\xa9\x59\x11\x1d\xbe\x83\xf8\x13\xdd\x63\xd3\xd9\x62\x51\xf9\x9f\x1f\xe8\xbb\x79\x9f\x06\x16\xe3\xba\x58\xcd\xab\xab\x56\x38\x4a\x46\xaa\x6d\xf1\x9f\x55\x00\x5c\xcd\x49\xf7\xa7\x93\xfe\x1c\x42\x82\x0b\xf7\xfb\xf2\x47\xbe\xb4\xe2\xc8\x1e\x3b\x52\xe2\x9a\x0c\x80\xfd\xee\x94\x07\x32\x6e\x23\x91\x69\x63\x2e\xa8\xf5\x8e\xff\x68\xf6\xdb\x0b\x21\xfb\x90\xaf\x79\x10\xd8\x2a\xb4\x73\x22\xa9\xa2\xbf\x25\xdd\x97\xe6\x92\x4a\x79\xed\xb3\xa1\xc6\x5b\x3b\x47\x65\x36\xb9\xd0\x3e\x0c\x06\x99\x55\x72\x74\xdb\x41\xa6\x0e\x5f\x00\x1e\xab\xf2\x76\xaa\x50\x85\x17\x38\xab\x58\x74\x31\x66\x20\x25\x07\x6d\x13\x8c\x86\xc3\x0f\xf0\xae\x7d\xf1\x09\x72\x4e\x2e\xc1\x7d\xc2\x31\x15\xf4\x24\x24\xac\x21\xea\xaa\x8f\x53\x68\x7f\xa8\xb2\x1e\xf3\x5e\xd0\x4e\xd7\x42\xf4\x21\x83\xde\xf8\x95\x89\x4b\x01\x5a\xf0\x67\x8c\xdf\x78\x36\x91\x5f\x08\x7e\x83\xcb\xae\x16\xa4\x13\xa0\xe2\x4e\xe9\xdc\x31\x7e\x32\x30\x9d\xa2\x67\xde\x15\x49\x06\x2d\xed\x4b\xa8\xd1\x9f\xfe\x35\xfd\x91\x62\x50\x80\x17\xc3\x78\x2e\x5d\xdd\xb5\xb6\xba\xf3\xdc\xea\x5a\x7e\x69\xb8\xcb\x87\x4f\x11\x21\xcd\x45\x2e\xf0\xe4\xad\x62\x95\x9d\x0f\x44\x5e\x47\xa7\x83\xe9\x7a\x91\x12\x1b\xd7\xe0\x1b\x52\xdc\x43\x74\xcf\xc0\xe7\x9d\x8f\x1b\x6b\x7f\x9e\xcb\x8e\x1c\xa2\xde\x31\x70\xa4\x6c\x7a\x46\xce\xf4\x67\x54\x58\xfe\x0e\x0e\x67\x78\x44\x7c\xe4\x71\x17\x4d\x9a\x16\xcf\xd6\xbe\x7f\xfd\x20\xe6\x4d\x1f\x22\xb9\x5a\xf6\x0b\x6e\x24\x55\xad\x5a\xf7\x7f\x91\xee\xb7\x14\xd3\x2e\x3f\xf6\x71\xb2\x5f\xec\x50\x33\x42\xdc\x95\xb8\x5d\xc5\x2c\xb9\xa4\xec\x88\xae\xf4\xeb\xa4\x7c\xf2\x48\xb3\x5d\xaa\xf2\x71\xde\x3a\xfe\xbf\xf1\xd6\x87\xda\xd9\x93\xec\x62\x36\xb3\x1a\xf2\xd7\x33\xab\xc0\x37\xeb\xcc\x25\x3e\x80\x2e\x95\xf6\x18\x7b\x29\x96\x26\x2e\xba\x4d\xd6\x71\x01\x89\x74\x20\xc7\xfa\xee\x0b\xbe\xf3\x6b\x37\xdf\xdd\x8a\x4c\xc7\xc5\x4e\x69\x01\xb7\xe5\x6b\x5f\x6b\x70\x7c\x43\x55\xb5\xab\x47\x4c\x32\xc7\x65\xcb\xf8\x59\xb9\x8c\xdd\x86\x66\xf0\xa4\x04\x07\xd6\xcd\x13\xa2\xb1\x06\xa9\x14\x19\xd2\x80\xa4\xdc\x8a\xe0\x17\x4a\xdd\xd4\x23\xf9\x13\xc9\x83\x13\xf0\x12\x2e\x5b\x3d\xc0\x9f\x95\x0f\x70\x57\x97\xde\xbe\x6b\xd2\xdb\xf6\x2b\xf6\xee\x5a\x4b\x41\xb2\x35\x66\xae\x11\x91\xad\x46\xaa\x24\xe5\x73\x68\xe3\x48\xf7\x55\xab\xec\xb0\x97\xca\x91\x9e\xd7\x39\x8d\x62\x16\x97\x0e\x10\x58\x24\xba\x2a\x8d\x82\x09\xee\x16\xc2\xe7\xdb\x84\x10\x72\xda\xe9\x68\x31\x3b\x25\x54\x74\xb6\x4a\xc1\x71\xcd\xf8\x00\x24\x60\x8c\xf9\xa0\x2a\xd5\x1a\x73\x9b\xc0\xa0\xd1\x28\xa2\x35\x2d\x02\x04\x90\x6a\xbe\x95\xea\x1f\xf6\xbc\x4f\xfc\x5d\x39\x1c\x40\x83\x32\x20\xb6\xd0\x08\x03\x64\xf0\x39\x4d\xc3\x4c\xc6\xc7\xb5\x4d\x8d\x54\xa0\x00\xf4\xb1\x91\x2f\xa3\xff\x63\xfb\xeb\xe8\x7f\x15\xcb\x53\xbd\x18\x8b\x86\xd0\x17\x23\x5b\x47\x58\x0c\xfb\xeb\xc9\x7e\x89\x79\xb0\xbe\x89\x79\xf0\xdf\x98\x6d\xb5\xa3\xf7\xbc\x96\x43\x0e\x5b\x2f\x29\xff\xfc\xd5\x79\xfa\x4a\xab\x08\x9d\x81\x6b\x4d\x75\x67\xb5\xb9\x7d\x0d\x8a\xe5\x77\xaa\x15\x02\x23\x02\xf8\xa8\xe6\xdf\x16\x73\x5b\x39\xaa\xc3\x6e\x21\xe1\x3c\xd9\x57\xea\x4d\xb5\x8f\xd6\x4d\x4d\xe1\x17\x13\x98\xfb\xb6\x1e\xd0\x06\x0e\x71\x15\xc3\x97\xeb\xe2\xd2\xf0\x27\x95\x1a\xcd\x85\x6f\x5f\x2b\xfb\x42\x6a\x52\x45\xea\x6c\x5c\xd9\xd3\x9a\x67\x9a\xa6\x7e\x54\x02\xbd\x96\x2f\x3e\x35\x42\x52\x33\x2f\x21\x25\x33\x65\xde\x6b\xae\xb5\x42\x22\xe2\xd4\x12\x64\x2a\x03\x57\x2b\xb7\x3e\x25\xeb\x32\x08\x00\xdf\xdc\xba\x60\xe3\x1f\xc0\xff\x07\x41\xf9\x13\x31\x6f\xe4\xe1\x2c\x88\xf5\xcc\x4f\x22\x4e\xe0\x1d\xd1\x67\x11\x62\x70\x4a\xf9\x2c\xa8\xfc\x6b\x7f\x2f\xb2\x69\x74\x8a\xd3\xc0\x52\x22\xe2\xd4\x56\x3a\x8f\xd4\xe0\xb3\xa5\x09\xee\xa2\x2c\x8c\x13\x38\xab\x6c\x66\xe3\x4a\xf3\x4f\xe0\x66\x8e\xe9\x3d\xe4\x5f\x09\x43\x46\xbd\x52\xcb\x0b\x62\x12\xb6\x31\x97\xc3\x14\xa5\x4c\xf4\x53\x1b\x97\xb6\xd9\x18\x64\xef\x29\xd6\x12\x16\x22\xec\x41\x72\x07\xd4\x1f\x90\x7b\xc8\x0e\xcd\xfb\xaf\xeb\xce\xa0\xe4\x5d\x60\xaf\xea\x59\x50\x4f\x16\x20\x70\x08\xdf\x41\x3e\xf2\x75\xfb\x45\x35\x62\xa2\x85\x2f\x94\x79\xa6\x44\x97\xe1\x44\x60\xf6\xa9\x22\x7a\x9d\xb6\x7d\x53\xb7\xbf\x00\x7d\x9e\x08\x05\xcd\xe5\x59\x50\x4c\x37\x8d\x2d\xe3\x11\xf6\x60\x55\x40\x00\xe7\x59\xe5\x8d\xd9\xf8\x76\xb6\x7e\x27\x9f\x53\x4e\xed\x11\x1b\xb0\xdc\x22\xba\xcc\x01\xf8\xf4\x5f\xd9\x79\xdb\x80\xd0\x34\xe7\xa1\x7f\x4b\x05\xa9\x50\x1d\x0a\x4f\x71\x44\xc9\x34\x00\x73\x4b\xc5\xcf\x27\x9d\x1b\x9e\x00\x5e\x9f\x2f\x16\x92\x25\x14\x4c\xd7\x52\x1e\x39\x73\x58\xfc\x0e\x78\x53\xf5\x31\x73\xef\x51\xbb\x8b\xab\x33\x8d\x6e\x90\x93\xa1\x24\x27\x4d\x7c\x9c\x5f\xf6\x2f\x38\x99\x2d\x22\x51\xc0\x15\xfa\x50\xad\x30\x94\x95\x48\x5d\x3b\x9f\xc1\x4e\x2d\x51\x50\x2e\xb5\xf8\xab\xa7\x29\x90\xe3\x75\x7e\xf6\x10\x78\x33\x1b\x4d\xe1\x58\xcc\xd7\xd5\xbf\x4f\x98\x63\xd9\x0b\x1a\xe5\xa9\x53\xce\xe0\xd6\x56\xd5\xbf\x8f\x99\x1b\x2a\x1c\x9f\x4b\x43\x01\x75\x58\x04\xc4\x89\x71\xfb\xc7\x1a\x09\xb4\x2e\x79\xec\x3b\x7d\xb4\xba\x41\xfa\x73\x28\x82\x31\xfb\x66\x4d\xaf\xb6\x42\x0d\x3b\xac\x9a\x83\xc1\xfd\xc2\x4f\xf5\xba\x19\x5f\x7e\xb0\x53\x27\xb0\x06\x9f\xd4\x05\x9b\x0b\x24\x14\xc6\xa9\x42\x87\xea\x6b\x72\x94\x81\xa7\xb2\xff\x67\xa7\xd2\xc7\x31\x55\x70\x03\x55\xd7\x2b\xaf\x2e\xc7\x67\x86\xb9\x55\xce\x1c\x08\x56\x45\x6b\x5a\x34\x7a\xdd\xbf\xd5\x05\x1b\xca\xf9\xbd\x56\x3e\x7c\xed\x3c\x9b\x10\x36\x1c\x64\x13\x0a\x28\xc4\xc6\x2b\x3c\x8f\x46\x0d\x33\x10\x20\xf2\xc0\x80\x0a\x5d\xc1\xa3\xf6\xab\x42\x57\x4a\x03\x72\x52\x9c\xda\x46\x55\x35\x79\xb3\xae\xaa\xfd\xd7\x7a\xdb\x71\x30\xc0\x00\x2a\x53\x05\x9a\xda\xd9\xb7\x35\x83\x65\xd2\xc9\x7b\x71\xe7\x61\x94\xa5\x7c\x1b\xe5\x03\xc3\xe3\x5f\xd0\xc9\x9e\xe0\x3c\xd0\x29\x06\x5f\xcb\xd1\xcf\xba\xcb\x1e\x58\x49\x6a\xdd\x25\x82\x2d\x5f\x83\x34\x87\x68\xb7\xbb\xc6\x41\xfd\x64\x02\x77\xdd\xad\x8f\x98\xab\x16\xa2\xd9\x81\xe8\x6e\xf7\xc1\xa0\x61\xab\x9c\x8e\xf1\x9c\x32\x83\x4d\xa4\x18\xb7\x9e\xe4\x7e\x9c\x03\x28\x9b\xcf\x4d\xaa\xd4\xee\xa8\x1c\x85\xc9\x65\xa0\xbf\xe3\xe4\x40\x2e\x7b\x59\x11\xbc\x2d\x73\x92\xbd\x1e\x00\x32\x96\x82\x1a\x79\x8e\xcb\x72\x1b\xce\xdc\x1f\x6a\x34\xdd\xf3\xa0\xde\x82\x54\x35\x56\x21\x5f\xe5\xfa\x48\x06\x4d\x01\xf8\x04\xa0\xc3\x46\x74\x38\xaf\x4d\xd0\xa0\x20\x7b\x89\x8f\x40\xe5\x7a\xa5\x5c\x94\x07\x6e\x50\x3a\x54\xd0\x18\x39\xbe\xa0\x2c\xea\x07\x47\xb9\x17\xb0\xd7\x18\x53\x6f\x0c\x7b\xdd\x81\xc2\x94\x12\xb0\x80\x90\x43\x48\xde\x21\xff\x5c\x21\x49\xfb\x3a\xa6\xda\x7a\x41\xce\xfd\x85\x2b\xa4\xde\xe8\x04\x72\x1a\x09\x93\xd3\xef\x19\x25\x54\xac\x19\xbe\x94\xaf\x55\x6a\xd9\x5e\xae\xbb\x6d\x45\x77\xe8\x26\xc4\x5e\xad\xb9\x48\xb3\x05\x3c\x57\x62\x61\xd7\x7c\x5b\x65\xed\x04\x6e\x1b\x1b\x8d\x8b\x8d\xa2\x21\x9c\xed\x78\x5c\xcb\x72\x5f\xbc\x56\xb6\x3a\x5f\xe8\x23\x8d\x2a\x46\x9a\xd0\x48\x4d\x6d\xa4\xd5\x6d\xca\x97\x57\x93\x0b\x4e\x0b\x92\x0b\x0a\x8d\xaa\x57\x7d\xc3\xfb\x60\xc9\x45\xde\x6d\xce\xab\x91\xd3\x17\xb6\xe2\xb4\x20\x2c\x6c\xa1\x52\x7b\xcb\x73\x76\xf8\x2c\xd1\x35\xb8\x21\x66\x7c\x29\x18\xf1\x66\xc6\x19\x9f\x30\x1a\x51\x96\xe7\x38\xce\x01\x19\x38\xbe\x7d\x3a\x55\x3a\xda\x4e\xe4\x2b\x55\xee\x10\x0e\x6e\x5a\x5d\xf0\x23\x7e\x51\x39\xcf\x8b\x9e\x9b\x43\xcb\xce\x7c\xbf\x6f\x3b\x75\x8b\x3e\x3f\x54\xf8\xd6\x42\x87\xe2\xa3\x81\x06\x6a\x5d\xe1\xa9\x9c\xf8\xa3\x8b\x9d\x79\xc5\xf5\x53\xdf\xfe\x7d\x62\x57\xf9\x80\x3a\xcc\x6b\x90\x7a\x54\xe1\x7f\xf9\x46\x19\xaf\x20\xd6\x2a\x7c\x4b\x41\x7e\x05\x25\x76\xb9\x89\xdc\xd9\x02\x70\xda\x0e\x49\x4f\xc0\x83\x43\xde\x59\x6c\x45\x80\x1c\x8d\xdd\x6d\x3d\xa4\x2a\xdf\x58\x38\x14\x72\xe5\xb0\x4f\x36\x5f\x55\x9c\xc8\x1c\xe6\xfe\xa9\x4b\x98\xfb\x85\x03\xe9\x93\x41\xa2\xfd\x28\x29\xd0\x89\x23\xdf\xa0\x68\x80\x06\xdd\xf0\x2e\x69\xc3\x0f\x4c\xbe\x7e\x0d\xec\xb0\x01\xdd\x4c\x09\xe2\xc3\x2b\x73\xb7\xea\x7b\x4a\x72\x5e\x11\x59\x77\xab\x90\x23\x72\x50\x0d\x06\x92\x84\x2a\xa8\x86\x5e\x16\x7b\x3d\xa5\x2c\xd4\x2e\x73\x21\x1a\x7e\xc0\x8a\xb4\xed\x15\xef\x79\x52\x03\xfa\x9a\x40\x5a\xd1\x91\xe4\x82\x1f\xbc\xf2\x29\x06\xff\xc1\x14\x97\xf2\x61\x56\x3f\x14\x1f\xdb\x4d\x13\x91\x1d\xeb\x43\x36\x01\x26\xfe\x9e\x99\x2b\xbc\x98\x84\x67\xe2\xa4\x78\x26\x95\x75\x3d\xe6\x58\x5c\x55\x2b\xec\xdc\x2b\x11\x27\xc9\x98\x96\x22\x6e\x50\x7a\xd4\x01\xfd\xb8\x39\x2b\x10\xc6\x11\x13\xa3\xed\x79\xf0\x6f\x2d\xc3\x0b\x73\x09\xf9\xb7\xe7\x57\x44\x2b\xf5\x4b\xe4\x76\x0b\xd4\x57\xef\x7e\x01\x13\x87\xc0\x72\x1a\x1c\x5e\xd2\x05\x0f\x8b\x98\x39\xea\x75\xba\x43\x5e\x73\xf3\x88\xe5\xb6\xdd\x72\xca\x23\x22\xd1\xa9\x00\xc5\x40\xc3\x9a\x8f\x12\xd6\x71\x43\x20\x56\xa1\x6c\xd0\x59\xa7\x1d\xa7\x90\xb4\x94\x90\x65\xc6\x06\x91\xa4\xe0\x23\x4f\xc1\xd3\xe6\x8f\xf7\x06\xf6\x2e\x14\xea\x90\x17\x37\xb7\xfd\x51\x9f\xc9\x23\xb9\x3e\xf3\xaa\xdf\x69\xef\x47\x6b\xa1\x0a\xe1\x20\x84\x0d\xbb\xe0\x36\x5d\x9a\x33\xcc\x7d\xcb\x21\xf3\x2a\x10\xb8\xe2\x6a\xb6\x81\x77\x10\x31\x8f\x0f\xa5\xb3\x31\x92\x6a\x09\x75\xc2\x1c\x5f\xb9\x38\xa9\x41\x76\x62\x27\xe5\xc9\x80\x98\x8f\x28\xcd\x76\x95\x9a\x0b\x85\xa5\x0a\xaf\x39\xdc\x01\x29\xe3\x0e\x99\x4b\xa1\x39\x5d\xd4\xa3\xbf\x18\x85\xc0\xea\x7d\xdf\x06\x06\x92\xcf\x97\x0e\x65\xb0\x04\x44\xb9\x40\x0e\x48\x24\xdc\xcc\x03\xf7\xf9\x77\x2a\xd8\x71\x54\x77\x58\xc2\x43\xb9\x65\x4d\x3e\x80\x73\x8a\x47\xef\x9a\x8b\x2e\x00\x90\xca\xe1\xa0\x24\x9b\x07\x38\x75\x30\x6d\xa1\x21\xfa\xf9\x74\xf0\x2f\xfd\x23\xad\xce\xb3\x3c\x56\xbb\x25\x05\xcf\x15\x0c\x1e\x59\x3a\xf8\x31\x73\xc9\x81\x2d\xc1\x27\x6d\x92\x0f\xea\xa5\x33\xe1\x58\x08\x4a\xbb\x40\x1e\x00\x17\xbc\xaa\xd5\x36\x42\x8f\xf2\x6d\x03\xef\x22\xc1\x67\xd6\x38\x13\xbf\xc9\xe2\xa9\x18\x75\x79\xe1\x63\x6e\x00\xe0\xc3\xa8\xb7\x4e\xf3\xce\x43\x16\xa4\x3e\x0a\xd6\xa3\xda\x3a\xf5\x14\x9e\x10\xa0\xaa\x83\xb3\x4e\xce\xe5\x23\xe8\x42\x52\xee\x3e\xdf\xe7\x46\x50\x0e\x26\x3a\x27\xbd\x17\x00\xcc\xef\xd1\x2b\xea\xeb\x01\x4e\x98\x53\x3a\xc0\x61\x36\xc0\x09\x13\x4e\x83\x4a\xdc\x58\x02\x25\x09\x61\x26\x1a\x61\x71\x03\x37\xe2\x4f\x96\x03\xcf\x2c\x58\x06\x2b\x18\xf1\x76\x4f\x50\x2e\x68\xf0\x55\xb4\x53\xa7\x0a\x9d\x84\xf6\xbe\x17\xd5\x95\xb1\x75\x43\xe9\x8a\xc5\x5f\xb7\xc9\x20\x95\xc8\xd6\x82\x44\xb2\x5e\x0b\x51\x30\x9c\x3e\xda\xd3\x53\xed\x65\xef\x3b\xe0\x3a\x97\x28\x5b\x67\xcc\xa8\x18\xfc\x31\xcf\x80\x5a\x3a\x03\x3a\x54\x8f\x68\x57\x87\xf8\x30\xd0\x28\xdd\x47\xc4\xd0\x3b\x78\x7c\x0a\x05\x57\x3c\xe9\x56\xc7\x5d\xef\x55\xdc\xb5\x2a\xbe\xe0\x7d\x8b\xe2\xae\x77\x80\xef\xad\xe2\xae\xb3\x02\xe1\x46\x8f\xbb\x96\x84\xed\x89\x7d\x46\x42\xc5\x5d\x67\x05\xe3\x38\x05\x1b\x80\x80\x01\x39\xa9\x60\x88\xcc\xfa\x1c\x5b\x5d\x0d\x61\x4d\x09\xe1\x61\x88\x17\x09\xf3\xd8\x0a\xe6\x30\x56\x68\xd1\x3c\x23\x0b\xf5\x80\x2c\xe8\x19\x7d\x4a\xe6\x90\xd7\x42\xac\x6d\x8c\x13\x1d\x75\xcf\x98\x9a\xf3\x1b\x84\x6e\x37\x30\x23\xc7\x0e\x96\xb1\x23\xcc\xa7\xb2\x5b\xb1\x74\xeb\xef\xcc\xb1\x44\x9f\xa8\xf9\xf5\x6c\x23\x18\xe9\x6b\xe0\x95\xab\x0c\x3e\x99\xb3\xb7\x7b\x80\x92\xe8\x16\x76\x60\x01\x79\x65\x5e\x24\xc9\x5c\x0f\x51\x31\x4a\x90\x1d\x0d\xdf\x81\xe9\xdf\xeb\x01\x8f\xb2\x1a\xda\x51\xd5\xc6\x5d\x35\xd4\x50\x0d\xe5\x7f\x29\xac\x64\xfa\xb3\x03\xb9\x83\x3f\x59\xa7\xe2\xdc\x35\x17\x9a\x86\x6b\x8b\x89\x75\x87\xbb\x06\xd7\x4e\x5f\x87\x86\xd2\xed\x82\x86\x00\xb2\xf6\x47\x78\xf8\x2c\xfa\x09\x27\x25\x9e\xe0\x10\x86\x34\x43\x2a\xff\x69\xdd\x38\x83\x81\x3a\x83\x54\xf8\x35\x2a\x1e\xb0\xda\x98\x3d\x87\xe9\x01\x53\xc5\x3a\x71\x1e\xcb\x42\x3f\x5e\x28\xdd\x9f\x21\xf3\x8d\x18\xc4\xa8\x78\x5b\x81\x47\x94\xb8\x87\x77\x5b\xee\xd4\x03\x1c\xb2\xf5\xac\xb4\xf7\xda\x08\xf4\x6b\x94\x88\xa8\x14\x22\x26\xc5\x60\xb9\x1a\x79\x91\xda\x95\x56\x37\xaa\xaa\xff\xc9\x59\x2b\x54\x6d\xd0\xcd\xb8\x80\xde\x4a\xf8\xe2\x64\xd9\xa5\x6d\xa7\x9c\xee\x58\xe7\x74\x55\x29\x03\x0f\xd8\xbe\x78\x52\xd7\x0b\x47\x3f\xa3\xb2\xf8\xbb\xf2\x89\xf1\x1a\x28\x3f\xcc\x02\x24\xe4\x20\x09\xbc\x1b\x3b\x27\x6d\x61\x24\x29\x66\x1b\x95\x54\xef\x01\x12\xc5\x42\x31\x6a\xd1\x14\x56\xfe\xa4\xa5\xe3\xc6\xbc\x34\x6b\x7e\xec\x12\x83\x60\xe1\x23\x73\x46\x2e\xf2\x25\x26\xd9\xbb\x4e\x79\xef\x85\xaf\xe2\x71\x8a\x2d\xbd\xc3\xbe\x5e\xa8\x9d\xc8\x42\xe4\xfc\x03\xb5\x83\xa5\x32\x13\xec\x15\xcc\xb8\xca\xab\x4f\x09\x2c\x92\xb5\xf6\x74\x28\xfc\xc4\x5a\x97\x82\x95\x24\xb7\xa7\x71\xf7\xf4\x1d\x63\xd4\x7d\x7e\x57\xf7\x98\x7b\xaf\xee\x96\xfc\x11\x4f\x4d\x47\x7b\x6a\xfa\xca\x2e\xd6\xb3\x2a\x36\xd2\x93\x4c\x5f\x67\x8d\x46\xb2\x79\xaf\xac\x11\xa3\xd8\x08\xed\xf3\x96\x6f\x1f\xae\xbe\x67\x64\x24\xcc\x7e\x7c\x07\x6d\x3a\x3e\x93\x5a\x27\x80\x00\xcd\xfd\xde\xe0\xf6\x10\x47\xa4\x7d\x61\xae\x1c\x2d\xf0\xd0\xee\xa2\x69\x23\xb8\xf6\x88\x12\x34\x0c\x59\xa3\x82\x40\x45\x4b\x1d\xbf\x01\x2e\xc3\xb2\x85\xa2\x38\x66\x61\x66\x2b\xee\xef\x75\xee\x15\x33\xd1\x4d\xab\x00\x21\x6a\x8b\x9c\xb2\x2b\x81\x68\x60\xb1\xb5\x55\xc4\xdb\xd5\x95\x6b\x73\x26\x42\x6e\x78\x39\xa0\x9c\xae\x52\xc7\xa6\xaa\xcd\xa1\x7c\x7d\x28\xb0\x75\x13\x73\x65\x55\x1a\x62\x62\x74\x27\xd6\x32\x76\xbd\x86\x56\x35\x49\xec\x8b\xe6\x05\x51\x75\x4e\x3d\x7a\x8d\x17\x80\xd0\x7b\xa4\xe4\x4a\xdb\x98\xae\x7b\x44\xea\xf8\x16\x46\xcb\x3c\x9b\x45\xda\xb9\x18\xb0\x91\xc9\xbf\x00\x45\x59\x01\x76\xba\x43\xf0\x0d\x94\xdc\xad\x5a\x20\x00\x61\xe8\xb5\x8b\xf7\x7d\x66\x05\x0e\xe0\x08\x71\xe0\xf1\x3f\xcf\xf4\x39\x56\x72\x02\x3a\x1c\xb6\xe8\xb3\x19\xc0\xfe\x44\x1c\x0e\xe4\xfb\x91\x3e\x9f\x02\x49\x60\x9c\x0e\x57\x1f\x2e\x2b\x4e\x62\x27\x28\x14\x3a\x7c\x4f\x74\x63\xce\xe1\x26\x5e\xb8\xb5\xcb\x86\xf7\xcc\x3c\x5f\xb4\x60\x5c\xb3\xe3\xaf\xfa\x94\x89\x5f\x27\x00\x59\x9b\xb5\x47\xb8\xc5\xa8\x92\x7b\x81\xf7\xa1\xc1\xd5\x20\x8f\xbf\x60\x9f\x43\x0a\xc0\xf0\xe4\x85\xec\xf3\xda\x16\x17\xbf\x91\xbb\x0d\x0b\x80\x76\x53\x26\x60\x35\x9c\xab\x60\x93\xc0\xce\x01\xd6\xa1\x5b\x79\x61\x45\xd3\x2c\x53\xd3\xfa\x8c\xb9\x70\xfa\xc8\x9a\x34\x8b\x87\x92\x32\x7f\x3b\x0f\x53\x61\xeb\x85\x09\x1c\x65\x7d\xc8\xbc\xef\xd0\x5e\x0f\x51\x6f\xdf\x1b\x70\x95\x66\xb5\x47\x59\x28\xe6\x09\x7e\x1e\x37\x69\x76\x2d\xd9\xbc\xb3\x57\x09\x8d\xa6\x8c\x05\x7c\x8f\x8a\xb8\xe1\xf9\x22\xc7\x3d\x7b\xac\x7b\xec\x41\xfd\x16\x5f\xb2\xdf\x66\x8c\xad\xe0\x08\x75\xd2\xcf\x96\x0b\xab\xb1\xeb\xc8\xf5\x76\xfa\x82\xbe\x8f\x99\xfa\xf5\x85\xb9\x8f\x5d\x8c\x44\x6f\xc6\xa8\x55\xf8\x41\x39\xda\xa8\x90\xfc\x3c\xe7\x4c\xfc\x02\x38\x39\xf6\xd9\x41\x49\x23\x1f\x4f\xb2\x06\xec\xb9\x21\x42\xd2\x7b\x6d\x9c\xd4\x6b\xa3\xac\x68\x02\x2e\xe4\xb3\xee\x14\x81\xa2\x2c\x88\x1f\x9e\x2d\x27\x72\x59\x4d\x35\xef\x19\x1b\xec\x79\xa7\xb0\x36\x50\xc5\x79\x6a\xd8\xff\xcd\x55\xd8\x9c\xe1\x0e\xfc\xd8\x9e\xf5\x32\xf2\xab\xdc\xd4\xb3\x8d\xa0\x0c\xd5\x6b\xe0\x51\x62\x96\x16\xb9\x1f\x99\x44\x9f\xe6\x27\x3c\x3f\x11\x54\x9d\xad\x90\xb7\x7e\x41\xff\x8e\x06\x2e\xc2\x06\x23\xa3\x9f\x51\xdc\x03\x77\x37\x74\xca\xa9\xe5\x23\xb0\x1b\x4d\xa2\x89\x48\x41\xbc\x1e\xbe\xe6\xaf\xbe\x55\x16\x55\xdf\x87\xf8\x86\xd1\x02\x28\xb6\x80\xb5\x1c\x31\x9a\xc1\x95\x30\x76\xe1\xea\xd1\x7c\x06\x80\x79\xb8\x0a\x18\x67\x3b\x5e\x53\x08\x86\x85\xaa\x5a\x40\x1b\x7a\x0a\x3a\x88\x3e\x4e\x3f\xce\x2d\x65\xbd\xb1\xda\x03\x2d\x7d\x71\x73\x5d\x01\x16\xb9\xd0\xe3\xd4\xfa\xf4\xae\x2a\x3a\x6d\x76\xcb\x0d\xd6\xa0\x54\x51\x0e\x57\x79\x88\x8f\xc0\xb9\x99\x82\xed\xd2\xe6\x9a\x75\xa3\xb5\xa3\xe8\x80\x3d\x51\xf6\xf3\x19\x7d\x30\x1e\xe3\x3f\x09\x59\xfe\x64\x8e\x21\x14\x34\x8c\x4a\x66\x11\xcd\x51\x3e\x31\x0a\xb9\xfa\x7e\x63\xd6\xcc\x9d\xf2\xd9\x94\xa3\x8c\x2b\x28\xd2\x2e\xa0\xa7\x00\x94\xd3\xe8\xbb\x14\x09\xcb\xc4\xe3\x30\x37\xf0\x57\xdf\xc8\xfe\x06\x90\x1a\x0b\xf4\x51\x81\xd8\x58\x42\xfb\xc0\x26\x97\x9a\x83\x80\x57\x80\x8b\xe5\x31\x36\x8e\x51\xad\xb7\xe7\xaa\x4d\x72\xed\x37\xc9\x67\x4e\x3e\xc7\xbc\x11\xcb\xdf\x9c\x27\x78\xe8\xab\x40\x96\x8e\x65\xc4\x33\x58\x52\xc6\x35\x3a\xfc\x74\x64\xdc\xdf\xf2\xd7\x67\xb9\x85\x8f\x16\x84\x06\x8b\x41\x31\x62\xdd\x77\x48\x33\xb9\x5f\x0e\xae\x9e\xb2\x39\x67\x5e\x20\xe7\x76\xf7\xb3\x4b\x8a\x7d\xbd\x8b\x0b\x67\x93\xef\x16\x5d\x0a\xd3\x48\x93\xa2\xb0\x49\x8b\x30\x02\xda\x11\xf2\x22\xea\x90\xbb\x8c\x35\x6c\x0c\xe8\x70\x19\xf3\x08\x6b\x20\x2b\x56\x93\xc2\x8a\x6c\xcf\x85\xf0\x72\x31\xae\x3f\x33\x5b\xa8\x62\xfb\xdf\x69\x62\x8a\x21\x4a\x28\x53\xe6\x45\x7c\x07\x51\x05\x23\xb0\xf5\x48\xf2\x31\x8c\x53\x08\xce\x83\x85\xb3\x6c\xc0\x20\x7d\x2e\xc5\x99\x05\xc4\xa6\xbd\xb0\xc3\xb4\x5c\xe1\x56\xd3\xf0\x38\x13\x73\x40\x6e\x4f\xa9\x53\x85\x73\xe9\x01\x58\x23\x93\xb2\xf3\x33\x23\x76\xc5\x05\x03\x2a\x9d\xea\xe6\x79\x40\xaa\x01\xe3\xac\x42\xf3\xff\x28\x59\xd8\x0c\x94\xf2\x4f\x8c\x40\x55\xa0\xab\x2e\xea\x6a\x1c\xc8\xba\x86\x5c\xa4\xd3\xea\x21\x6f\xe3\xef\x50\x95\x62\xc2\x54\x9c\xc3\x0c\xce\x69\xf4\xbd\xa8\x6e\xdd\x41\xa6\xb8\xb8\x60\xe9\xd1\x90\xfe\x48\x2c\x10\xa1\x13\x81\xbb\x93\xd3\xee\x0d\x50\xed\x18\xec\x48\x8f\x8c\x5d\x6c\x64\x17\x62\xb0\xfd\x5e\xd6\xd2\x56\xa5\x66\xf4\x40\xa0\x7e\x65\xec\x47\x8c\xcd\xed\xe6\x10\x47\x7e\xe4\x7b\xf4\x3e\xcf\xda\xef\x58\x65\x76\x2d\xe6\x3b\x72\xa7\x40\x81\xdc\xe1\x1e\x91\x1e\x4d\xa7\x8d\xbc\xf5\x21\x94\xe2\xd5\xb0\xcf\x8d\xc2\xc2\x00\x43\x68\x5a\x37\xbd\x89\x02\x1b\xdf\xc2\x6c\x2c\x50\xab\x53\x51\x8b\x94\xc7\x91\x5d\xd0\x3e\x17\x55\xe4\x63\x26\x66\xa8\x6c\xbf\xa1\x4c\x9f\x49\xf9\xf3\x2b\x65\xfb\x90\x79\x27\x38\x2e\x3f\xd6\x48\xb7\x60\x19\xc7\x4c\x30\xb5\x8a\x0b\xf4\xa3\x7e\xbe\x34\xc1\xee\xf4\xbb\x70\x00\x19\xbc\x53\xda\x31\x5c\x26\xf8\x1d\x14\x88\x6e\xc2\xc3\xe4\x76\xf9\x3c\x5b\xcb\x3e\x57\x84\x45\xd7\xe7\x16\xb1\x69\x5a\x8b\x90\x46\x23\xc4\xd0\x2a\xe7\xfc\x24\x09\x90\x67\x2f\xf7\xf2\xef\x95\xed\xa8\xa1\x65\x88\x7f\x0b\xb0\x1e\x00\x62\xd9\x0f\x8b\xf6\x0f\xcf\x89\x7b\xbf\xff\x7d\x5d\x78\xaa\xce\xa8\xb0\xae\xda\x52\x40\x87\x18\xad\x30\x3e\xcd\xf4\xfb\x80\x24\x76\x28\xf7\x4e\x5d\x8d\xab\x8a\x10\x01\x38\xd9\xcf\xb2\x43\xae\xea\xa1\x60\x26\x07\xb9\x9d\x69\x9b\xe0\xfe\xa4\x31\xde\x58\x23\xc3\xd1\xd7\xe2\x5b\x8c\xd6\x80\x73\x8b\xa2\x19\x4c\x29\x41\x85\xce\xb4\x2e\xd8\x28\x92\xeb\xf7\xf0\x2e\xcf\x01\xe6\xc2\x54\x57\xe6\xc0\xa9\x1f\x29\x80\x7c\x82\x62\x2b\x1e\xfc\x15\x05\x17\x1d\x61\x60\xcf\xdd\x9d\x53\x22\x18\xbc\x30\xf7\x04\xc7\xe8\x47\x03\x9d\x6c\x68\x86\x6c\x93\xde\xd6\xe5\x06\xdd\x32\x42\x44\x35\x72\x6a\x6b\x3c\x77\x0d\xca\x90\xd0\x06\xc6\x70\x0c\xec\xd3\x1d\xf8\x93\x96\xd8\xeb\xba\x33\xc0\x1c\xe1\x91\x35\x28\x7e\x97\xab\xbd\x6e\x0e\x74\xd1\xf1\x6c\x29\xd5\x95\xca\x76\x83\x00\x8b\xa6\x5c\x95\x0b\x8f\x24\xa1\xdc\xf3\x77\xd8\x18\x3f\x77\x3b\x04\x2d\xd8\x86\x52\x9d\x6f\x80\x3a\xff\xda\x5e\xe8\x64\x82\xae\x55\xf8\x22\x46\xb7\x57\xfa\xc0\x66\x2a\xe5\xe9\x2e\x46\x9e\xe4\x43\xe5\x14\x6d\x7d\x97\x5c\xe3\xd3\x76\x02\xcb\x7d\x6c\x13\x9a\xe5\xce\x66\xde\x93\x1c\xf2\x8f\x7e\xee\xf4\xca\x07\x4c\x76\xa8\x16\x8f\xda\xff\x54\xed\xd3\x46\x76\x84\xda\xc8\xe2\x09\x82\x80\x99\x40\x98\xb7\x36\xed\x99\xb9\x11\xd2\x06\x7d\xd3\xb0\x73\x39\x24\xd5\x39\xad\x49\x87\x97\xdd\xa8\x19\x73\x0c\x7e\x7d\x99\xfe\xea\xae\x49\xd9\xd1\x0b\xc5\x09\x2f\xd6\xe5\x3c\xa8\x9f\xc1\xe3\x3c\x89\x07\xe9\xd1\x99\xc9\xe9\x84\x6b\x9e\xe3\xcf\xfa\x9c\xcc\xaf\xa7\x13\x69\xc5\x13\xe4\x73\x2d\x3c\x8c\x49\x33\x5b\xd4\x21\x50\x67\xcc\x9f\x09\x10\x57\x27\xb2\x4c\x1d\x0b\x96\xc5\x3b\xa5\x57\x87\x6c\x3e\xc2\x10\x2d\x88\x24\x98\x84\x20\x6c\x28\xf7\xc2\x4d\x0d\xac\xf6\xe2\xc3\xac\x11\x8b\xfd\x0d\xfd\x2a\x11\x42\xea\xaa\xd9\xdc\x43\xe9\xf8\x76\x88\x68\xa2\x72\x15\x9e\x57\xa8\x14\x83\x6e\x3c\x5c\x90\x21\x13\xb1\x50\x6d\x28\x36\xb5\x86\x6a\x7c\xd3\x20\x8f\x73\x03\x39\x9e\xe8\x00\x81\x77\x0d\x6e\x4e\x14\xad\x98\x03\xaf\x2f\x98\x23\xff\xb3\xe2\xef\xb0\x9f\xa4\x9f\xa5\x4d\xde\xf1\x0a\xe2\x23\xea\xef\xcc\x3b\xd9\x74\x74\x72\x64\xfd\xe4\x5a\x72\x09\x7d\xc8\xce\x79\xb9\x1b\x80\x9d\xc5\xaa\xc8\x5a\x78\xac\x89\x8c\x21\x8e\xcd\x81\x0a\x99\x1c\x07\x76\xb7\x22\xc3\x74\xb3\xa6\x7b\x78\xec\x28\xb3\x98\xdf\xcb\x5b\x23\x35\x5b\x2d\x9b\xb6\x8e\x84\xf8\xac\x4a\x5d\x9a\xa8\xd8\x87\xdc\x1e\xbf\x8e\x60\x4d\x1f\xa8\x1f\xbb\x1d\xb4\x1b\x7f\x07\xfe\xb8\xca\xcf\x6c\x77\x16\x1a\xb2\x40\x44\x10\xaf\x7f\x06\xc5\x7e\x39\x6b\xac\x9f\xb1\xd5\x59\xbf\x0d\xa8\x68\xc6\x5b\xf8\xc7\x59\x21\x77\xd9\x44\x8a\x80\xe9\xae\x46\xe0\xe5\x88\x27\x63\xeb\x96\x88\x22\x21\x66\xfa\x8f\x39\xfd\x9a\xba\x76\xbd\xc2\x61\xf4\x79\x48\x22\xb0\xfc\xfa\x8e\x71\xbe\x80\x6e\xa5\x2a\x94\x1e\x25\x95\x52\xf6\x12\x94\x6f\xcb\xf9\xac\xed\x64\x82\x73\xda\x0b\xb2\x2d\x1d\x62\xf0\xc8\x16\x4f\xd1\x25\x7d\xb6\xc1\x1c\xb0\xbf\xd7\x69\x71\x46\x82\x3a\x94\xab\x5c\xf9\x28\xba\xcc\x01\x6f\xa6\x19\xeb\x56\x80\xd5\xb5\x4f\xa2\x88\xf4\x50\x83\x45\x7a\xf7\xbb\x39\x07\xed\xce\x31\xef\x57\xd4\xb5\x09\xe3\x25\xd9\x95\xde\xc6\x6d\x8e\x6d\x3d\x52\xe2\xc7\x68\x3f\x28\xb9\xe9\xf2\x15\xe9\xe4\xa1\x20\x7b\x80\x70\x2f\x2c\x6e\x94\x37\x2f\x2f\xfb\x94\x12\x9a\x22\x12\x9e\x77\x00\x6b\x23\x03\xa0\xab\x21\x26\x62\x94\xff\x81\xd4\x13\x53\xc2\xde\x83\xf3\x21\x5f\xbe\x1b\xb9\x1d\x1b\x1c\x13\x4e\x96\xe7\x71\x1c\x33\xcf\x52\xce\x5a\x85\x14\x9d\x2e\x6a\xe6\x54\xad\x33\x99\xb6\x50\xff\x69\x89\xb8\x5b\x3a\x93\xa5\x5b\x7f\x61\x4e\x60\xaf\xc0\x11\x7a\x10\xd0\x75\xea\xa1\x39\xe1\x51\xe9\x00\x08\xc5\x5a\xa4\x28\xd6\x74\x67\x3e\xa4\xcc\xf4\x39\xc0\x4b\x57\x71\x71\x56\x6d\xcd\x49\x61\x2d\x94\x1f\x4f\xde\x39\x68\xd8\x22\x0f\x85\x82\x73\x52\xea\xa0\x30\x63\x02\xcc\x39\xa1\x20\xbf\xda\x32\x17\xa4\x29\xf8\x55\x90\x4d\xe6\x86\x8f\x92\x7c\x40\xa9\x54\xde\x2f\x88\xbd\xff\xd2\xcf\xf6\x8a\x40\xd3\x1e\xd6\x8a\x47\x3e\xa7\x79\x7c\x46\xcc\x69\xd8\xe1\xf9\x4b\x7f\xa8\x7f\xa3\xaf\x17\xf6\x2b\x4e\xfb\xd2\x5b\x79\x66\xef\x06\x06\x55\x56\x79\x32\xcd\xcd\xd4\x93\x09\xbd\x3a\x1d\x0a\xdd\xcc\x7b\x9e\xef\x3c\x42\xf2\x8b\x4c\x44\x79\xc5\xd8\xb2\x4a\x5f\x4f\x33\xf5\x13\x48\x41\x81\xfa\xf6\xf6\x54\xd0\xd3\x80\xe2\x9f\xb5\xc1\x33\x4a\x34\x30\x51\xd8\xa9\x02\x22\xad\xed\xdb\xc4\x1d\x00\x56\x99\x6d\x29\x3f\xe9\xd4\x05\x79\xbf\xd2\xa0\xc2\xa3\x07\x04\x53\x20\x7e\xd8\x93\x77\x07\xe2\x3d\x06\xd1\x5d\xa1\x9e\x7f\x1a\xa4\x70\x69\x14\xe1\xd8\x85\xab\xe8\x9d\x77\x76\x9a\x75\xfe\xc8\x7f\xb4\x0b\xee\xc2\x5b\x7a\xda\xc0\xaf\x1f\x7c\x55\x85\xc9\x1b\x64\x28\x59\x1c\x10\x72\x1e\xf0\xbe\x82\xf4\xf3\x52\x09\x99\x5e\x1a\x99\xbb\xbf\xf0\xb2\x76\x5d\xbf\x53\x62\x3f\xde\x23\xb1\x9d\x1e\x2e\xc8\xa4\xd8\xca\xbc\x45\xfd\xcd\x9a\x47\xb4\x39\xe8\x05\x55\x30\xe3\xcb\xb5\x09\xa8\xd0\xd7\x72\xa9\xdb\xaa\x11\x51\x60\xb8\x78\xd2\xf4\x9b\x40\xaa\xd0\x1a\x36\x5a\x50\xdc\x65\x7e\xca\xcf\xe1\x93\xaa\xe6\x10\x8a\xc4\x98\xad\xc5\xcd\x7e\x57\x14\x6c\xb0\xd3\x0e\x4c\x6c\xef\x7b\xf9\xb9\x9d\x43\xc4\x50\x6f\x0f\x53\x27\xee\x29\x8b\xbf\x58\x3e\x82\xfc\x1d\x6b\x10\x77\xbd\x23\x32\x52\x38\x97\x75\x79\xfd\x20\xce\x3a\x7f\x66\x53\xc8\xa9\xfe\xc4\x6a\xe4\x45\x7e\x78\x20\x6f\x9a\x88\xc6\x78\xe8\xc1\x75\x74\x3a\x3c\x02\xb3\x9e\xdb\xc6\x95\x4c\xf3\x29\x37\xc1\x24\x18\xf1\x0e\x46\x0c\xd4\x30\xc0\x41\xd1\xe3\x5a\x53\x92\x3b\x67\xcd\x11\xd0\xc3\x5d\x3e\x40\xed\xb0\xb0\x02\x35\x0c\xad\xf6\x85\x1f\x97\xfd\x80\x49\x6f\x9c\x37\xa6\x20\x07\x87\xac\x6a\x7a\x6a\x79\x3a\x6b\x42\x92\x7b\x96\xcd\x52\xb6\xd8\x62\xab\xaa\x37\x79\x7a\x9f\x29\xa9\xd0\xf4\xcb\x83\xdb\x0b\xb4\x80\x33\xc8\xaa\xeb\xdb\x7d\x13\x2f\xe9\x11\xd5\xd5\xa4\xdb\x3b\x36\x33\x6c\xfd\x97\x6b\x4d\x6b\xa1\xdd\x32\xbd\xb0\xb3\xbe\x6a\xba\xcb\x19\xab\xf1\x13\x72\x06\xa4\xc1\x36\x54\xce\x3f\x87\x39\x5f\xf6\xb3\xc8\x43\x58\x1a\xc8\x26\x8c\x11\x57\x5e\xc7\x72\x5f\x90\x7a\x13\xbc\xbb\xc5\xdd\x11\x4c\xaf\xe2\x81\x3c\xb9\xe7\x88\x7d\xbb\x45\x2f\xa2\x90\xd7\x30\xf8\xdf\x3b\xcf\x91\x63\x4c\xf0\x87\xdf\xaa\x19\xac\xd6\x5a\xcb\x6a\xee\x2f\x75\x02\x8e\x3d\x25\xd3\x36\xb6\x6a\x1c\x4a\x65\x3f\xbb\x56\xa1\x17\xa6\x72\x58\xe6\x7c\x9f\xb2\x26\x5c\xc8\xde\x52\xaa\x85\x2f\x34\x71\x5c\xda\x19\x52\xcf\x9a\x13\x52\x80\xcb\x98\xa7\x14\xf2\xfa\xa9\x91\x47\x0a\x4f\x8d\x38\x91\x85\xb6\x2d\x98\xf3\xc4\x72\x25\x77\x3b\x4c\x7f\x04\x36\x13\x3c\x56\x25\x8a\xf6\xc2\x40\xce\x39\x1a\xc5\xeb\x59\x16\xe2\x7f\x69\x20\x6c\x2a\x5f\x8b\x6d\x85\xda\xbf\x30\x1a\x00\x54\x16\x1d\xbe\x68\x7f\x71\x68\x97\xda\x65\xd8\xe3\x2d\xb6\x53\x53\x46\x0f\xdf\xec\x06\x12\x6d\x6f\xd1\x80\xc2\xcf\xad\x0b\x5d\xf7\x3f\x1a\x4a\xed\xc0\x11\x1d\xa8\xeb\xdc\x7e\x50\x96\x1a\xe4\x43\x84\x89\xa7\xd2\xa1\x5c\x7a\xc4\x00\x26\xa5\x43\x09\xf1\x81\xec\xa0\x84\x9e\xbd\x90\xef\x6c\x9e\x3e\x90\x68\x6a\x23\x61\xce\x00\xf5\xa2\xe8\xf3\xfd\x50\x97\x3a\x5f\x0c\x90\x39\x86\x81\xfa\xde\xee\x29\x87\xba\x8e\x92\xd9\x60\x24\xc2\xe2\x96\xe2\x3a\xd3\x22\xfd\x5c\x11\x2f\x2b\x52\x33\x50\xd9\xd4\x20\x20\xe9\x79\x60\xd7\xdf\xc1\x87\x22\x40\x16\x7e\x19\x91\x36\x2a\xd2\x0b\x38\x59\x81\x5a\x2f\xf5\x93\xdc\x41\x8e\xd3\x06\x35\x3d\xef\xa7\x3f\x7c\x32\x27\xe1\x7e\x9f\x0e\x5b\x7f\x80\xf2\x8c\xc3\xc4\xaf\x80\x3e\x2e\xfb\x94\xc8\xd8\x61\xe2\x2d\xa4\x8f\xab\xfe\x20\x85\xf6\xfd\x58\xd3\xc7\x8d\x5e\x72\x4b\x1f\xbb\x3f\x15\xbe\xaf\x08\xb8\x85\xac\xd8\x72\x41\x79\x4d\x51\x70\x0b\x09\x02\xa6\x35\xcf\x34\x2e\xbf\x4d\x82\xb6\xd9\xf5\x07\x5a\x03\x7b\xd5\xff\x42\xef\x9f\xea\x6f\x16\x7a\xd1\x14\x4b\x78\x31\x50\x7e\xac\x8e\xcf\xf7\xaa\xac\x69\x6b\xd0\xbb\x5b\x65\xcd\xb9\xa0\xee\x05\x41\x65\x4e\x9b\x1c\x04\x74\x7f\x45\xec\x9b\x45\x49\x5e\x1c\x36\xee\x08\x7f\x57\x5a\xe8\xd0\x15\xca\x29\xdd\x61\xc3\xad\x6d\x94\xb7\x55\x1b\x22\xf9\x3f\x21\x76\x91\x92\xd7\x96\x3d\x8a\x77\xf7\xd8\xd0\x77\xce\xd3\xd2\x61\x28\xda\x31\x63\x63\x4b\xf8\x49\x69\xfb\xbb\xd0\x56\x7e\x35\xe3\x44\x24\xe5\x85\x0e\xa1\x46\x85\x42\x48\x67\x21\xb6\x76\xc9\x21\x17\x69\xfa\x15\x02\xeb\x2a\xb6\x14\x3c\xa6\xde\x37\xe4\x3c\xdd\xa2\x80\x43\x14\x0b\x73\x13\xc1\x3c\x63\x19\x56\xd2\x09\x75\xe9\xe3\x18\x94\xd4\x1f\x2d\x8a\x47\x5c\x47\x40\x11\xf1\x33\x1b\x9e\x87\x00\xd1\xc6\xeb\x63\x66\xb3\x55\x84\x65\x1e\x11\x18\x59\xed\x22\xee\xed\xeb\x46\xf2\x25\xf2\xd2\x09\xc5\x43\x4c\xd8\xb2\x74\x2d\xf5\x3c\xb4\x69\x86\xd7\x7f\x70\x8d\xc5\x3f\xbe\xc6\x5a\x81\xff\xbf\xdc\x4a\x91\xa6\x03\x3e\xbd\x94\x6d\xc2\xaa\xab\x23\x47\x07\xb6\xca\x28\xab\xae\xaa\x89\x9b\xed\xd5\x7e\x00\xf7\xde\x36\x85\xb6\xcb\x1d\x11\x77\x49\xb3\x01\xb1\xaf\xa4\xe2\x6a\x3c\x97\xf5\x74\xd9\x64\xca\x18\x04\x20\x99\x18\x34\xb1\x76\x4a\x33\xf5\x4d\x7f\x05\x3b\x86\xb6\xe9\x14\x2e\xa8\x15\x79\xd7\x37\x7d\x01\x6b\x2e\x1e\xf4\xdd\x9a\x30\xf1\xa0\x6f\xd4\x54\x0a\xc0\xda\x1e\xc9\xdf\xb5\xed\x79\x61\xe2\x41\xdb\x98\xb9\x94\x97\xf5\x2d\x99\x31\xf1\xa0\xef\x86\x2c\x9f\xdf\x07\xf1\x2d\xbf\x05\xe2\x45\x1e\xa3\x3c\x61\x9c\x30\xf1\x1b\x73\x00\xc5\xa5\x7b\xd2\xde\xe4\x42\xbe\x5b\xef\x28\xcd\x00\x8b\x12\x53\x6f\x4d\xb5\xe0\x72\x57\xd4\x3a\x16\x92\xb1\x1c\xdf\x21\x92\x4d\x64\x5e\x6d\xe3\xa4\x5f\xe1\xd5\x06\x61\x7a\x98\xc8\x6d\x82\x76\x33\x36\x0c\xf7\xe0\x6b\xf9\xb6\xc2\xbf\x67\xb2\xb5\x1f\x46\x3f\xbb\x62\x92\x7e\xe9\x57\x4c\xae\x97\xc1\x93\x33\xca\x6a\x79\x0f\x5d\x2c\xef\x04\x5c\x55\x58\x46\xd8\x80\x7e\x05\xf3\x0d\x5c\xb9\xe9\x62\x15\xc7\x4c\x71\x75\xbb\x09\x4a\xc3\x56\x92\x3b\x02\x06\x28\xd6\x40\xc2\x0c\x28\xdf\xe0\x44\x76\x1d\xab\xae\x71\xe7\x1f\x31\x6f\x11\x66\xc4\x93\x93\xfb\x59\x38\x2a\x8f\x1d\x6a\xe6\xb0\xa5\xc4\xf5\x33\xf9\x9c\x59\x16\xd7\x0f\xd0\x23\x26\x50\x88\x89\x01\x92\x87\xf2\xed\x48\xae\x98\x0e\xde\x42\x97\xb9\x6b\xb4\x1e\x84\x08\x5b\x07\xf6\xde\x1a\xdf\x4b\x8a\xda\xe7\x5e\xa2\x20\xce\xe1\x08\x3e\xb6\x01\xc6\x40\xee\x3f\xa0\x97\xcd\xb1\xce\xb0\x13\x0e\x54\x73\xce\xef\xc2\x31\x7d\x4c\x36\x36\xd5\x81\x2c\x88\x69\xa5\xd3\x1b\xd1\x17\xc8\x29\x2e\x4b\x79\x4c\x0c\x54\xea\xea\xe5\x9a\x72\xb6\x33\x39\xc6\x3d\x57\x03\x59\x2d\x70\x01\x8e\x6f\xf9\xb9\x3d\x6b\x73\x8b\xde\x32\xba\x73\x80\x72\xc3\xfd\x5b\x3a\x5f\xe7\xfa\xdc\x3f\x33\xf1\xb8\x2b\x34\x38\x61\xe2\xed\x8c\x0d\xea\x1f\xd9\x2c\x14\x69\xbd\x99\xe4\x49\x37\xd8\x43\xf8\x06\x2a\x02\xd9\xc3\xc7\xe2\x0d\xe6\x82\x4a\x06\x93\x8e\x42\x13\x33\x43\x05\x1c\xad\x34\x7d\x0b\x26\xf2\xa3\x4b\x83\xf6\x11\xd0\xf2\x65\x41\xa9\x64\xb6\x44\x3c\xe4\xbb\x98\xf0\x55\x6f\xa0\x5e\xad\x4f\xd6\x29\x7f\xb8\xcf\xbb\x5c\xd8\x65\x78\x44\xeb\xb3\x5a\x7d\xf9\xd3\x23\x78\x98\xac\x40\xba\xf1\x39\xca\x63\xb5\x08\xf4\x87\x3e\x7a\xeb\x44\x0b\xfd\x1a\x3b\x1f\xa8\x49\x40\x6b\xda\x64\xbe\xa0\xdc\x59\x0b\xc9\x1c\x7b\x3e\xea\xfa\x28\x12\x8a\xc8\xfd\x4c\x77\x5f\x99\x80\x4b\x78\x9e\xf4\xbf\x6e\xf3\x74\xe8\xfe\x7a\x3f\x66\x40\x4e\xa9\x9d\xf9\x11\x6c\x65\x0d\x7e\x5a\xe4\x2f\x78\x4c\xd8\x43\xb5\x11\x26\x9c\xa1\xfb\xac\xae\xaf\xf9\xaa\xee\x2a\xa2\x1d\x05\x37\xae\xa6\xe4\x08\xf5\x9b\xf9\xc2\x84\x21\xd4\xa5\xa4\x27\x73\x6a\x6d\x90\x2b\xdb\x6c\x01\x60\x28\xe4\xa6\x76\x29\xe5\xd6\xe9\x97\xf2\x55\xce\x5c\xdd\xc7\xee\x4f\x78\xb2\x9a\x3d\x6c\xc0\xe8\x81\x31\x33\xd6\x9f\xda\x05\xe5\xfb\xc3\x39\xb7\x22\x8c\xa8\x02\x18\x13\xb6\x2f\x25\xc6\x87\x03\xcf\xf8\xb4\xf8\x88\x28\xdd\x16\xe0\x28\xfa\x8e\xa2\x43\x19\xd3\xef\x83\xef\x9b\x64\xfb\x15\x5d\x4c\xd9\xfe\x3e\x18\x0e\x9d\x24\xa5\x5e\xda\xa3\xf9\x52\xf1\x68\xb6\x36\x42\xc1\x26\xbf\x80\xbf\xd5\xcf\x33\x6f\x40\x18\xd9\xf3\x96\xd7\xf0\x4c\x67\xac\x12\x31\x4f\x22\xc6\xc3\x9f\x31\x48\xbd\xf4\x07\x18\xff\x26\x13\x4a\x90\xef\x49\xf8\xbc\x4b\xbf\x28\xb1\x04\x7f\x69\x73\x08\xa8\x35\xb8\xa7\x18\x23\x7a\x06\x1f\x17\xef\xf9\xbe\xb3\x2e\x58\xbe\x6f\x1a\x94\x13\xa3\x5f\xf2\xa6\x28\x10\x09\x0c\x46\xd6\xba\x96\xab\xb9\xe2\xcc\x3d\xa5\x45\x8f\x97\x81\x32\xd8\x5e\x74\xa9\x49\xf4\x39\x80\xba\x5c\x31\x0e\x09\xb8\x25\x6b\xdf\x0f\x70\x78\x20\x70\xdb\x65\x26\xdf\xf0\x06\x2c\x5e\x8b\xbf\xcb\x55\x94\x33\x04\x75\xa0\x23\xf0\x3b\xc4\xd2\x0f\xbf\xc9\x7b\x7c\xe4\x0f\x6f\xfa\x83\xff\xf8\x1d\xe7\xe7\x60\x9a\xa0\xe2\x82\xf6\x61\xec\xde\x89\xdf\x57\x0c\x20\xea\xe7\x78\xd4\xcf\x2e\x1a\x7e\x37\x45\x86\xd7\xc0\x4d\xcc\x9a\x56\x1c\xf6\x19\xf8\x77\xf7\x64\xab\x0a\xf8\x9c\xb1\x99\x7a\xbd\x76\x78\x51\x9e\x21\x6f\x0b\xbe\xfe\xf0\xd2\xed\x78\xe7\xc6\xe3\x0d\xc7\xe0\x5a\x8a\x6d\xe4\x58\x6a\x11\xd9\xaa\x8e\xe2\xb1\x23\x74\x48\x55\x1c\xe2\x8a\x8c\x96\x0b\xd4\xd8\x2e\x39\x3d\x3f\x23\x26\xf6\x0e\xe4\x3a\xfb\xc0\xe9\xf6\xab\x16\x86\x78\xf3\xcf\xf6\xc9\xc9\x97\x4c\x17\xc6\xcd\x9f\x17\xb5\x30\x4d\x04\xb2\xb4\x6c\xb8\x50\x41\x9e\x7c\xf7\x3e\x75\x9e\x0a\x19\x0c\x0a\x2b\x00\x62\x8d\x94\xfb\x09\xfc\xf5\xbf\x63\x74\x41\x33\xd7\xc0\xe2\x37\xf9\x20\x20\x06\x25\xb2\x63\xe8\x42\x19\xc3\xa3\xf4\x72\xc1\x27\x2a\x79\x93\x84\x3e\xe6\x2a\xfb\xbb\xf3\x9d\x1c\x9d\x5d\x49\x80\xcf\x6f\xaa\xca\x54\xb1\x6f\x58\x06\x04\x37\xf8\x71\x7a\x87\x2f\x37\xb2\x5f\x1f\x2d\x64\xbf\xe8\x6b\x0c\x5f\x9d\x10\x23\x60\x9b\xf8\xdb\xd8\xac\xa1\xf7\x5b\x1b\x15\x50\xe3\x0e\xfc\x2d\x4e\xbc\x45\x1f\x7c\x74\xf8\x66\x2b\xbe\x20\x8f\xef\x80\x5c\xc0\x03\x31\xa7\x2f\xc9\x06\xed\x46\x4d\xf2\x01\x36\xe0\x6f\xd1\xe1\x17\xfa\xb0\x5d\x00\x3f\xf3\xba\xc3\x90\xe4\xf1\x1e\xfe\x16\x26\xdf\xd0\x87\x18\xfd\x8f\xd8\x92\x5f\x08\x9e\x37\x59\x3a\x29\xf8\xdb\x8c\x6d\x88\xb3\xcb\x2f\x29\x29\xed\x93\xad\x20\x5d\x1c\x78\x19\x68\x2f\xe9\xe6\xea\x25\x9d\x10\xd5\x9e\xb2\x24\x47\xb5\x37\x1a\x1a\x38\xfa\x68\x53\xae\x9d\x21\xf9\x76\xc7\x92\xef\x75\xed\x2d\x4e\x79\x18\x62\x32\xc3\xd0\xab\x8f\xd9\x20\xe0\x64\xb7\xc9\xfb\x54\x27\x88\x87\x86\x65\x3d\x1f\x75\xcc\xb5\xbc\x2c\xde\xd6\xa0\x5a\x4d\x34\xa5\x8f\x20\x6e\x9e\x8d\x9b\x93\xcc\xfa\x31\x44\x0d\x5c\xd5\x30\x6a\x7b\xb4\x91\x34\x10\xa5\x03\xab\x0e\x1a\xbc\xe1\xd5\x4b\x92\x6a\x59\x4b\x6d\x5c\xec\xd5\xf7\x54\x1d\x87\x79\x21\xde\x81\x9d\x99\x4f\x08\xf1\x5b\x87\xc1\x41\x78\x3e\x35\x4c\x97\xb8\x18\x39\x4a\x4a\xe8\x59\x31\xca\x1e\x32\xc3\xb3\x3e\x4e\x06\x6a\x0e\x42\x71\xce\xaf\x9d\xf2\x5b\xef\xa0\xa7\x53\x61\x94\xf2\x06\x7b\x7b\x1b\x80\x64\xda\xe4\x2e\x9e\x4f\xfa\x45\x06\xc5\x35\x38\x44\x63\xb0\x01\xe5\x98\xc3\x50\x29\xd0\x90\x63\x52\x42\xd0\x46\x50\x66\xb0\x29\x52\xe5\xf3\x1c\x8d\xdc\xf2\x6a\x3d\x9e\xfc\x2b\x3c\xe8\x26\xc6\x27\x81\xe3\xf0\x84\x6c\x77\x0d\xe4\xd0\xbf\x23\xf7\x41\x05\xc2\x0f\x04\x84\xea\x20\xad\xe0\xc7\x3e\xb4\xf5\x2a\x85\x4c\x17\xf9\x46\x15\xd4\x06\x71\x7d\xd8\xbc\xe4\x4b\xbf\x41\xfe\xb8\xd9\x19\xfc\xb3\x84\x6d\x12\x74\xbc\x5a\x1f\xcc\xc5\xb7\xde\x38\x68\x3d\x01\x2d\x6d\xae\xc6\x0f\xff\x1d\xa7\xe0\x31\xe7\x29\x9e\x03\xba\xfc\xa0\x86\xb3\x74\x13\x83\xf2\xa6\x0a\x26\xbe\xed\x0c\x8c\x02\xc5\xbe\xc9\xb9\x07\x00\x71\x46\x72\x55\xe4\xe9\x83\x05\x99\x31\xf4\x19\x76\xde\x98\x72\x20\x70\x3e\x08\x7d\xf8\x0f\x5a\xa4\x15\x76\x8f\xfd\x01\xa1\xb1\xbc\xa3\xbd\xd4\x61\xe2\x29\x55\x9d\x39\x6f\x31\x1a\xea\xc7\x0d\xf2\xc3\xc6\x25\x13\x3f\x63\xf4\x54\x03\x28\xb6\x9f\x80\x55\x3d\x94\x3f\x09\x49\x06\xc1\x89\x61\xcc\x1e\x3d\x59\xc8\xfd\xb7\x26\xea\x3d\xc9\xd9\xa5\x6a\xa8\xf0\x48\x86\x13\xa5\x74\x7e\x45\xc9\x97\x4d\x81\x0f\x39\x41\x38\xc4\xa7\xd2\x42\x1b\x4d\x9e\x99\x67\xdb\xe0\x3f\xee\x85\xa9\x1d\xb6\xb6\x47\x17\x0d\xb0\x97\x11\x65\x9a\x5e\x76\xe4\xcd\xa7\xc0\xa5\x6b\xca\xe6\xa2\xbc\x12\xd0\x8f\xb0\x4f\x89\xfe\x97\x4d\xe4\x91\x95\x47\xf6\xaa\x09\x36\xe5\x61\xcc\xd7\xf4\xe5\x50\x4b\xcd\xbd\xcc\x4b\xe8\x41\xa2\x91\xb9\x9b\x2d\xaa\xd6\x4f\x35\xb2\x02\xd4\x06\xf5\x4f\xe6\xf9\x76\x4c\x1f\x2e\xb5\x14\x9c\xd2\x65\x5e\xcc\x13\xfa\xde\xac\xa5\xaa\x68\x97\xb9\x09\x37\xe8\x7b\xab\x86\x98\xad\x2d\x72\xf9\x36\xe9\x7b\xbb\xa6\x72\xf7\x7b\x52\x48\xec\xd0\xe7\x6e\x8d\x32\xa9\x01\xdc\x33\x0a\x54\x9e\xa8\xbf\xb0\xd7\x0e\x37\x30\x12\x75\x87\xba\x5d\x06\x8a\xd8\x61\xc2\xf7\xc4\xbe\x5d\x2e\x68\x3d\x07\x45\xe5\xa8\x03\x18\x65\x30\xb2\x0b\x05\x30\x3b\x6c\xb8\xe6\x86\x2a\x7d\x72\x32\xa4\x83\x69\xc2\x13\xf2\xda\x6b\x5f\x34\x4c\x82\x51\xc2\x3b\x2a\x65\x7a\x2d\xdf\x6b\x9f\x06\x3c\xbf\x64\xf3\x60\xde\x7a\x93\x5f\xce\xf6\x56\x32\x41\xb3\x50\x34\x54\xf1\x06\xde\x71\xbf\xa1\xbc\x30\xf0\xef\x80\xfe\x5e\xd2\xdf\x21\xfd\xbd\x82\xbf\x45\x83\xaf\x1b\xb9\xfe\xde\x37\xdf\x54\x80\xd8\xac\xcf\xb7\xf4\xe3\x8e\x6a\xd7\x87\x6c\xf2\x63\x4f\x1f\x0f\xfa\xc7\x88\x3e\x1e\x1b\xda\x74\x44\xc2\x4f\xf4\xfd\xdc\xd0\x5c\xec\x86\x26\x8f\xe9\xfb\xa5\x41\x87\x06\x22\x72\x13\xfa\xda\x6c\x80\xbf\xd5\xf0\xc1\xa0\x0f\xad\x86\x76\xb6\xfa\x46\x7e\x31\x2e\x3b\x1b\x7d\xe6\xa0\x30\x5a\xe1\x87\xa9\xa3\x95\x2a\xd5\x23\xab\x7f\x4f\xa8\x78\x4d\x87\x8d\x4d\x11\xed\x78\x59\xb1\xf6\x3a\x35\xd2\x3b\x6c\x1c\x0b\xbf\x55\x5a\xac\xbb\xb6\xd5\xae\x3a\xec\xf9\x24\x82\x56\xe9\xb1\xc7\xc7\x16\xfd\x11\x16\x9c\x50\xe6\xfd\x39\xf9\xb7\x35\x54\x08\x2c\x43\x3c\xc9\x86\xda\xc3\x39\xe0\x51\x8e\x80\x08\x03\xcc\x46\xc4\x55\xa5\x63\xcb\x51\x99\x62\xc4\xcf\x13\xa1\xd5\x2c\xf1\xc7\x31\x60\x07\xfc\x52\xcd\xe0\x8f\xa0\x1d\xc6\xd4\xe6\xcb\xd0\x29\xbd\x9b\xd1\xca\xce\x2b\xbb\x81\x9a\xb4\x09\x64\x5e\xf5\xbc\x9a\xbb\x60\x2d\x7a\x58\xd3\x87\x0d\xe2\x80\x4c\xef\x71\x98\x90\xb2\x40\x15\xde\xcd\x5d\xc2\x2d\x92\x1d\xc7\xe5\xab\x93\x76\xbc\xdc\xa4\x8b\x0e\x0a\x5e\xd5\x83\x9a\x57\xa8\xad\xd8\x67\x6a\x6a\x08\xbf\x68\x75\xb5\xb1\x33\x6f\x45\xc4\x41\xb5\xd5\xf8\x68\x89\x2f\xc8\xc1\xfd\x04\x9a\x7b\x44\x0a\x39\x03\xcb\x8f\x7d\xb5\xe0\x82\x89\x37\x44\xf9\x1c\xdd\xec\x76\xb3\xb1\x35\xd3\x20\x86\x4a\xd9\x11\xb5\x46\x1b\x86\x29\xd8\xc1\x04\x0b\xb1\x63\x3e\x97\xe4\xce\x63\xe2\x7b\xa1\x20\x5c\xb4\x16\x88\x7b\x6a\xda\xc9\x17\xd3\x3e\x6c\xec\x7a\x9a\xad\x07\x58\xd9\xc9\x49\x05\x27\x63\xf8\x1c\xf2\x54\x2a\x04\x88\x7a\xea\x5a\x68\xde\x41\x6c\xaa\x00\x63\xad\x87\xf8\xf2\x69\xd9\xb7\x3b\x2d\x1b\x8f\x47\x48\x91\x59\x9e\x24\xda\x92\x33\x7d\x96\x15\x1f\xe7\x90\xc5\x69\x80\x09\x79\xd0\x41\xc9\x3e\x3c\xe0\xfb\x26\x98\xc0\xcc\xea\xd1\x83\x7a\xf0\xc6\xac\x7d\x7b\x35\xe7\x0d\x9e\xb9\x67\xbe\xa2\x41\x5e\xe1\x98\x1e\xe9\x84\x1f\xe1\xfd\xfc\x80\xf7\x93\x60\x95\xab\x9a\x3b\x6f\xf4\xe8\x30\xca\x84\x9f\xe4\x0f\x85\xb7\xdd\xe1\x77\x8b\xde\x75\x3c\x02\x82\x70\x63\xbe\xd8\xfe\xcb\x26\x43\xf5\x3c\x09\x52\x7d\xff\x49\xfb\xe0\x3f\x2c\xd6\xe2\x4f\x3a\x69\x6e\xb2\x28\x45\x03\x1b\x33\xff\xa0\x13\x65\x2c\xda\x23\xa5\xfc\xa2\x93\x43\x97\xa7\xe9\xb0\xd0\x18\xb2\x02\xe7\xea\x5f\xa7\x8b\x93\x76\x35\x64\xec\x33\x28\x74\xbd\xaf\x91\xfa\x8f\xa7\x3d\x43\xfa\x02\xd0\x60\x15\x3a\x25\x1a\x4e\x8e\x5f\x27\x4c\x31\xc2\x4f\x14\xab\xd8\x26\x4a\xb8\x07\x12\x2a\x7e\xaa\xef\xad\x05\x20\x42\x00\xe8\x17\x43\x9f\xd2\xab\x57\xc1\x5c\xd3\x5a\xed\x78\x5d\xf9\x46\x6d\x85\xb9\x50\x68\xbe\x98\x13\x30\x45\xeb\xa3\xb1\x5b\x4d\x82\x6e\x34\x79\xfd\x95\x39\xbe\x50\xc0\x8c\xbd\x9a\x83\xd7\xba\x5f\x73\x4a\x6b\xec\x36\x9c\xfc\x07\xb7\x7b\x1b\x32\x63\xdb\x2a\x43\x91\x7a\x46\xd5\x0b\xaa\xaa\xe2\x74\xd7\xbc\xf8\xb2\x46\x85\x72\x11\x69\xc6\xd5\xf7\xe2\xa3\xaf\xca\x75\xa8\xbd\x2a\x66\x40\x95\x33\xa9\x5c\x15\x93\xa0\xca\x19\x54\x2e\xcf\x3c\xb0\xe1\xba\x50\x2e\xe1\xa9\xa3\xb5\xc3\xa2\x8a\x57\x5a\xed\x47\x7b\x63\xa7\xe9\x58\x4f\xc2\xa2\xb3\x53\x5c\xcd\xc8\x44\xe7\xdc\x24\xcd\x8a\x02\x08\x52\x7b\x51\xb5\x61\x87\x8d\x0a\xf6\xdf\x2b\xdc\x2f\xdc\xb1\xcf\xbe\x21\xea\x53\xe6\xc4\xe9\x76\xe4\x96\x3f\xdb\x15\xdc\x25\x6d\x3b\x72\xcb\x9f\xed\x0a\xee\x92\xb6\x1d\xb9\xe5\xcf\x76\x65\xae\xda\x2b\x6e\x13\x46\x95\xa7\xbb\xb2\x50\xe5\x8a\xdb\x64\xf0\xdc\xae\x2c\x55\xb9\xe2\x36\x25\x3c\xb7\x2b\x72\x97\xaa\xb7\xa3\x77\x6d\xd8\x4e\x38\x19\xb6\x8b\xe7\xea\x9a\x37\x14\x5b\xb1\xad\x38\x5c\x37\x0b\x17\x4f\xd8\xcd\xc2\xc5\x63\x76\x5d\xd8\xc9\x0a\x6b\x2c\xaa\x28\x63\x51\x9d\x94\x45\xfd\x63\x5e\x72\xc4\x9c\xce\x0d\xe9\x67\xc7\x09\xf6\x72\xcc\x2a\x98\xc8\xcd\x2a\xe7\x89\xb6\x6f\x10\x2b\x05\x4f\x2b\x85\x16\xc8\x96\xf5\x48\x57\x92\xab\x18\x04\xa1\x78\x94\x71\x1c\x52\x55\xb1\x35\xc1\x8a\xcb\x5d\xfd\x66\x22\x56\x00\x85\x9c\x89\x7b\x39\x70\x17\x7d\x56\xc5\x83\xfa\x11\xe3\xcd\xd8\x4b\x67\xcb\x75\x49\x70\x7a\x40\x7f\xf3\x18\x09\xbb\x85\x4a\x20\x88\x92\x9c\x49\x2e\xa5\xa9\xda\x72\xb5\xb6\x6a\x6b\xf8\xf5\xbe\x9d\x75\x34\x44\x4d\x60\x07\xa3\x8c\xbc\x1a\xa4\x94\x18\x1f\x7d\x0c\x6b\xeb\x60\x68\xd5\x15\x56\x39\x3a\x85\xe6\xa3\x49\x3d\xfc\xcf\x88\x89\x86\xdd\xe9\xa0\x74\xd6\xfb\xab\xe6\xf4\x88\xd6\xb4\x35\xc7\xc7\xa4\x81\x66\x2e\xf0\x4c\x3c\xe1\x33\x3b\x61\xce\x1d\xd6\x3e\x00\x41\x40\x3b\xe3\xaf\x04\xac\x05\x4e\x73\x0d\x2f\xc3\x67\x5d\x25\x6b\xf1\x30\x25\x41\x00\x5a\xfc\x21\xa2\xc6\x88\x87\x15\x6e\x0a\x04\x8f\x3f\xfb\xed\x41\x7e\xcc\x63\x28\x6b\xfc\x22\x71\xd3\x61\xee\xda\x46\x97\xc8\x34\x84\x04\x21\xef\x60\x40\x2f\xcc\xb9\x43\x85\x34\xa2\x92\xa1\x2e\x9f\x10\x37\xdf\xea\x2a\x48\x8e\x4c\xc0\x94\xa3\x59\xd0\x19\xc7\x01\x39\x7f\x3b\x20\xb1\xb6\xb5\x11\xcc\x98\x73\x27\x25\x52\x68\x40\xce\xbe\x51\x1b\x64\x45\xfb\x3c\x37\x58\x21\x7c\x51\x7a\x86\x7b\x24\x04\xee\x78\x7f\x0e\xfa\x6f\xe7\x08\x87\x67\x18\xda\xfd\x74\x29\xdd\x17\x7d\xb5\x65\x81\x09\x73\xee\xfb\x43\x15\x42\x25\xe6\xbc\xa4\xc0\xcf\xbf\x28\xe0\x3e\x30\xf5\xbf\xde\x23\x4b\x57\x8c\xbe\xfe\x47\xeb\xe5\x32\x77\xaf\xaf\xd7\x84\xf2\x08\x80\xb5\xf9\x2e\x43\x2f\x3c\x02\xb7\x3a\x99\xbb\xa8\xbc\x41\x67\xfe\xd3\xb0\xae\x05\xea\x8d\xf6\x60\xe8\xf6\x7c\xbb\xe7\x83\x42\x73\xd0\x57\xe2\x0d\xdd\xd2\x45\x88\xd4\x84\xe2\x98\x40\x3b\x6e\x0c\x22\x49\x18\x5a\x83\x1f\xc8\xe6\x9a\xa5\x84\x67\x57\xd3\x74\xcb\x2d\x29\xf3\xb8\x91\x00\x0c\x67\xc5\xa3\x91\xb2\xe6\x85\xa2\x16\xb6\xea\xf9\xbd\x87\xe9\xef\x40\x29\xe4\xf4\x79\xb1\x78\x63\x8f\xcf\x31\xe1\x75\x7b\x64\x98\x74\x34\xe1\x4c\x15\x6d\x13\xa4\xa3\xb9\xc5\x21\x2a\x21\x35\x6d\x0a\xbc\x0c\xc4\x89\x37\xa9\x40\xb1\xaf\x16\x24\x38\x34\x11\x17\xbb\xf8\x63\x1b\x09\x9a\x71\x41\xae\x36\x8e\xe0\x24\x8e\x58\x5a\xe8\x95\x39\xa1\x88\x6a\x83\x62\xad\x91\x4a\xb3\x30\x29\x0e\xb8\x81\x81\x97\x63\x86\xda\xe5\xe2\x78\x5b\xea\x57\x44\x3b\x06\xef\xda\x85\x60\xce\x0f\x85\xe9\x3e\x64\xdb\x72\x25\xc1\xfe\x48\x62\x1e\xec\x06\x78\xab\x49\xfe\x7e\xa4\x62\x46\x8c\x14\x86\x81\x94\x47\x82\x29\xad\xd1\x79\x83\xb0\x7e\xc1\x93\x64\x35\x42\xce\x32\x81\x89\x60\x19\x0a\x7d\x5d\xce\x3c\x53\x38\xac\x9f\x28\x43\x1d\xe4\xa2\x21\xef\x28\xe5\xe4\xba\x86\x90\x85\x18\x1d\xae\xca\x1b\x3b\xea\x8d\x05\x7a\x63\x6a\xc0\xa4\x56\x7b\x0d\x0c\xbc\x37\x2d\x04\x91\x0a\xc5\x8d\x21\x76\xbb\x22\x63\xf5\x17\xe3\xcc\xee\x01\xfb\x22\xbe\xc1\x05\x8a\xd1\x4e\x38\x41\x02\x53\x6f\x0a\xc6\xda\x02\xb5\xb9\x8e\x69\x67\x57\xae\xa1\xc4\xf3\x3f\xd1\x3b\x61\x50\xb4\xa0\xbb\xfb\xc9\xc4\x5d\xfc\x37\x6a\xab\x7c\xf5\xc9\xdf\x56\xf7\x1a\xa9\xd6\xab\xd9\x80\x47\x9e\xd4\x22\x56\x39\x6b\x76\x59\xa7\xe0\xf4\xcf\xcc\x25\x48\x5b\xc2\xd7\x3e\xf9\xf8\x38\x76\x87\xd4\xbf\x9d\x6f\x61\x6f\x23\xf2\x29\xae\x6b\xb8\x00\x06\x71\x4c\x2c\xc7\x31\x25\xcf\x27\x22\xcf\xdd\x1d\x4f\x9d\x5d\x0d\x7b\xbf\x45\x38\xc6\x18\x1a\x43\xcf\xa8\xcb\x50\x7f\x7c\xcf\x5d\xdc\x17\x13\x2d\x0f\xaa\xfe\x6b\x80\x47\x45\xb9\x6c\x0a\xd3\x8e\xc6\xb8\x81\x1e\x13\x3f\xc8\x95\xe0\xa2\xf3\x5f\x46\x6d\x90\x85\xda\xa0\x20\x89\xde\xe8\x53\xb6\x2e\xa7\x6d\xc7\x95\x9e\x07\xa0\x25\x30\x7e\x19\x65\xdd\x05\x4c\x87\x00\xf4\x7e\xa2\x82\x22\x46\x33\x5e\x0b\x20\x30\xc4\x53\x4c\x16\xb2\xf3\xdc\x55\xe9\x07\x70\x11\xc8\xea\x76\x20\x66\x5a\x52\x12\x61\x8a\x3e\x05\xf3\xa8\x6a\xc5\x42\x60\xe3\x5a\x63\xfa\x7c\xae\x0a\xcd\x23\x24\xe0\xeb\x2e\xd0\x1b\xe8\xdb\x01\x68\xba\x14\x26\xb6\xb9\x21\xeb\x22\x3e\x3e\x3f\x08\x64\x1e\x1c\x2b\xde\x91\x11\xf1\xfa\xaf\xb0\x34\xeb\x30\x53\x95\x02\x55\x23\x11\xdc\x65\xec\x37\xa8\xfa\x9d\xc1\xd6\x27\x75\x9b\x8f\xaa\x38\x90\xf0\x91\xac\xa6\x0a\x80\x3a\x65\xb4\x62\xde\x61\x0f\x69\xd1\x4f\x68\x00\x7a\x0e\xd1\x12\x30\xa9\x0f\x99\x67\xa3\xf1\x72\x85\x71\x26\x83\xf8\x84\xe7\x6a\x77\xb4\xc1\x5f\x90\x46\xdb\xe8\x0c\xea\x33\xe6\xbd\x9d\x77\x22\xfd\xf9\xaa\xab\x23\xbc\x0f\x62\xcb\xff\x64\x70\x47\x4c\x4d\xf3\x4a\x86\xea\x09\x13\x81\x9d\x1f\xdd\x0a\x59\xec\x77\x22\x9e\x90\x8f\xab\xe2\xf1\xdb\x6a\xc1\x1b\x77\x08\x51\x84\x72\x1e\x2a\x60\x87\x47\xfc\xf7\xf9\x3b\x66\x4d\x24\x2f\x8a\x31\xda\xb2\xd8\x73\x0c\x26\x7c\x27\xe4\x8b\x83\x83\x17\x40\xbd\x0a\x08\xbd\xb7\xe7\x2a\xfb\x73\x6e\x46\x7b\x9a\x66\x66\xc8\xb8\x36\x61\xa0\x03\x93\x88\x6d\x39\x04\x97\x89\x0f\x9c\xa3\x0f\xa0\x36\x0e\x04\x75\x7e\x3b\x01\x3f\xe2\x3c\xa8\x4e\xa8\xb6\xf3\x78\x11\x5a\x61\xf7\x1b\x01\x0d\x0f\x1b\x00\xae\xf4\x54\x43\x45\x5d\x22\xd4\x7d\x73\x7f\x5d\xf2\x9f\x86\xcc\xbd\x6b\x1e\xaf\xa7\xe4\x31\x37\xe6\x37\x7a\xdb\x71\xe6\xe8\xbd\x8d\x99\xab\x7a\x63\xd9\x37\xbc\xf5\xa3\x39\xc8\x02\x83\x84\x07\x94\x01\x05\xf8\xa7\x05\xfc\x31\x7a\x60\x25\xeb\xc9\x5e\x61\xda\x60\x9c\xea\xa7\xd5\xa8\x1f\x52\x1d\x35\x6b\x29\x43\x09\x2b\x38\x30\xd2\x01\x5f\xd2\xc5\xb5\x10\xfa\x31\xcc\x7e\x6a\x50\x78\x07\x19\xb4\x56\xbe\x03\x31\x40\xe5\xfb\x47\x38\xd0\x1e\x6e\x8d\x47\x9e\x3e\xb4\x00\xee\x1b\x32\x9b\xd9\x65\x51\x92\xf5\x92\xb3\xed\xb7\xb2\x63\x78\xd8\xda\x7a\x5c\xe8\x3d\x39\xc6\x7a\xec\x7d\x24\x69\xe9\xc7\x80\xa4\xb9\x02\x05\x98\x93\x91\x20\xce\xd1\x00\x10\x15\x3a\x3c\x9e\x97\x1d\xd5\x31\xa0\x42\x3d\x64\xbb\x31\x65\x42\xed\x90\xe2\x7a\x05\xa2\xa5\xd0\xdf\x00\x86\xb7\x02\x78\x16\x60\x70\xd7\x7c\x09\xca\x39\x77\x40\x10\x1d\x50\x64\x74\x80\x4d\xf7\x1e\x23\xda\x7c\x34\x96\xe3\x6e\xd3\xce\xb4\xd1\xdb\x49\xc4\xbc\x3d\xc6\xfb\x09\x18\xbd\xbd\x7c\x85\x29\x73\x1e\xe5\xff\x77\xb8\x36\x2c\x37\x10\x0a\x16\x40\x84\x9c\xa4\x8e\x77\x32\xa8\xe7\x5a\x50\x05\x47\xcc\x21\xe8\xb7\x2e\x98\xd1\xd8\xb4\xb3\xe2\xd9\xb4\x48\x1d\xdc\xae\x0d\x08\x58\xa6\x2d\xf4\x26\x11\x01\x0c\xb9\xba\xac\xa2\xc7\x9c\xad\xdd\x25\x4b\x6e\x50\xcb\x87\xd5\x21\xdb\xd1\xec\x62\xca\x39\x61\x65\x8b\x23\x02\xae\x36\x41\x52\x43\x49\xe5\x13\x9a\xda\x90\x89\xdf\xf2\x52\x7d\x57\x05\xd4\x99\x99\x13\xd1\xdb\xd7\xc0\xcf\xd3\x07\x13\xe5\x83\xbe\x22\xb4\xb6\xdd\x06\xa5\x33\x48\x88\xa6\xb4\xd1\x34\xe9\x24\xe2\x38\x2e\xed\xd3\x25\x0c\x2f\x20\xb8\xd0\x79\xba\x67\xd9\x46\x16\x08\x74\x7b\x2f\x30\xbf\xc6\x37\xed\xa0\x8b\x9f\x85\x83\x7e\x46\x60\xb8\x25\x10\x91\x80\x60\xc8\xd3\x86\xda\x48\xb7\x31\x0f\xf6\x67\x5d\x01\xda\x9a\xe4\x9a\x24\xb9\x9b\x4e\x39\x95\xde\x6c\x35\xab\x8c\x4f\x19\xb9\x57\x14\x65\xd9\x3a\xd9\x69\x9e\x39\xe6\x9d\xd0\x63\x67\xb6\xc0\xce\xd2\x96\xfa\xa8\x18\x83\x5a\x00\x18\xd1\x91\xfc\xe6\xc8\x06\xd2\xf2\x5c\x2c\x7d\x3c\xd8\xf5\x31\x1b\x01\xfe\xe5\x13\xe6\x24\x62\x0b\x4e\x3d\x22\x46\x49\x1c\x93\x9e\x16\x6d\xb5\x53\x43\xf4\x8f\x39\x36\x74\x29\x98\x60\xf3\x23\x79\xf1\xae\x31\x42\x17\x8f\x28\x71\x3e\x43\xe6\x99\x62\x8e\x57\x1b\xd6\x4e\xee\xd2\x76\x6b\xa3\xbc\x20\x18\x13\x2b\x1f\xd8\x8d\x17\x13\x12\x41\xaf\xb9\xc9\x55\xb7\x64\x0a\x16\x8f\x27\x2b\xd7\xab\x64\xc1\xbb\x6f\x75\xc2\xb9\x60\x2f\xfd\x5f\xa4\x17\x00\xc3\xc8\x41\x3e\x6e\x8f\x86\xfd\x8f\x5b\x71\xd9\x85\x83\x65\x70\xca\x76\xed\xd2\x3d\x6b\x6e\x35\x25\xfd\xfa\x8c\xbc\x81\xd5\x51\xc1\x72\x2e\x63\x4f\x5d\x70\x4d\x14\x03\x35\x1a\x25\xcb\xce\x8f\x84\x46\x81\x48\xf4\x3f\xe5\xc6\xaa\xc2\xdf\x8b\x85\x17\x47\xae\xe2\xdc\xb1\x78\x9a\xdf\x4a\x4d\xee\xa3\x30\x39\x24\xb4\xb8\x33\x4e\x03\xd9\x83\x8a\x49\xb4\x74\x93\xec\x36\x3f\x09\xc4\x27\x9c\xd0\xb3\xd0\x6d\x90\xbe\x6d\x08\xb4\x7e\x48\x6a\x87\xbb\xe2\x70\x49\x9b\xd6\xe7\x2a\x30\x04\x8f\xbf\x29\xb2\x74\x0b\xf2\x6f\x41\x73\x68\xd5\x20\x29\x99\x78\x54\x2e\x0b\xaa\x9d\x36\x05\xdf\xfa\x94\x4f\x02\xed\x8d\x1e\x73\xf6\xaa\xaa\x2a\xd9\xdd\x82\x43\xf2\x47\xc7\xc8\xb7\x70\xd9\x2a\xe5\x37\x9e\xb7\x31\x24\x75\xce\x8d\xe2\x2e\x2e\xd4\xe9\xed\x38\xe1\x62\x51\xbe\xbe\x3e\x2f\xd4\x28\x74\x5e\x8b\x70\x2b\x29\x37\x59\xe7\x8b\xe2\x4b\xda\xf9\xa8\xa4\xb8\x9b\xad\x0a\x7a\x53\x88\x47\xe5\x47\xa1\xaa\xaf\x56\xe0\x95\xf9\x49\xa9\x90\x1a\x85\xea\xc5\xde\xe6\xe4\x8c\xb7\xe0\x98\x63\xe8\xcb\x0a\xcb\x80\x6b\x70\x0f\x78\x90\x6f\x56\xc8\xa0\x48\xfd\xb5\x8a\xe4\xbe\x59\x61\x75\xe4\x94\xbb\x94\xf2\x8b\xad\xbf\xa8\x40\xe7\xc9\xe2\xa4\x37\xb2\xf0\x3c\x05\xb6\x56\xcd\xcb\xaa\xa1\x6e\x5a\xd8\xa7\x5e\x2e\x55\x58\x37\x95\xf2\xac\x46\x4e\xb5\x2c\x4c\xa1\x5c\x76\xd2\x45\xd8\x70\x04\x7a\xd2\x7a\x18\x32\x71\x17\x50\xb9\x8a\x2e\x7a\x8d\x94\xb1\x2d\x74\x61\xfc\x75\x17\xe9\x71\x34\x28\xca\x23\xdc\xa9\xa0\xef\x7c\x85\xe2\x69\x34\xd4\xb5\x5b\x63\x85\xdc\xfe\x95\x54\xa0\xd5\x35\x39\x39\x5d\x34\x70\x75\x93\x42\x35\x10\x8e\xd2\x04\x0c\x85\xca\x5b\xd8\x1a\x61\xf0\xe0\xec\x54\xfc\x7e\xc0\x64\x8d\xe5\xbf\x27\x10\x0d\x60\xf2\xce\xa9\xfa\x67\xf6\x59\x9f\x01\xb3\x5a\x5e\x86\x86\xe0\x8b\x9b\x5d\xac\x6f\x54\x87\xa3\x70\x7b\x06\xec\x0c\xab\x9f\x3b\x79\x2e\x13\x0f\xda\xf6\x15\xaa\x6f\x8e\xea\xfe\x51\xd2\xbb\xaa\xfd\x6b\x29\xe6\xbc\x0f\x89\xae\x08\xf4\x0c\x56\xde\xdf\xdb\x7a\x46\xd0\x7c\x49\x11\x70\x65\xbb\xbd\xd1\x67\x61\xdb\x42\xdf\x91\x8b\xf9\x61\x0d\xff\xb0\xa2\xea\x13\x32\x6e\xbb\xeb\xe2\x1c\xac\xa2\xa6\x76\x9d\x1a\x1d\x2d\x87\xa2\xd8\x95\x2e\x78\x54\x78\xba\x8a\xef\xf2\x4a\x30\xb6\x13\xf2\xe9\x72\x99\x0b\x9e\x84\xa3\xab\xa7\x0b\x79\x17\x36\x55\x21\x95\xaf\x7d\x6e\x15\xd9\x2a\xcc\x50\x83\x3c\x86\x64\xbc\x7c\xbe\x2d\x14\x39\x19\x3c\x57\x64\xec\xf3\xc5\x2e\xaf\x38\x5a\x3d\xe5\x4a\x4c\x7c\x7e\x0c\x0a\x6e\x26\x4f\xc5\x36\x0e\x85\x12\xed\x03\x39\x9e\xa8\x22\x01\x0f\x8b\x4f\x31\xa5\xd3\x01\x8f\xd4\xe2\x30\x71\xb2\x33\x5f\x54\x4c\x11\xc4\xe4\x8a\x5a\xc3\x2f\x6a\x41\xfc\x2e\x0f\xfc\xfc\xf6\x35\x23\x30\x6d\xf9\xe8\xd8\xd1\x39\xdd\x18\x6c\x79\x03\x87\x88\x58\x41\x85\xec\x30\x61\xf1\xdf\xb7\xb2\xc0\x97\x58\x8d\x63\x7d\xf8\xeb\x16\xe6\x87\x6c\x22\x63\x46\xb9\x5c\xff\x6c\xd5\xb5\x1f\xc7\x5b\x71\xe3\xd7\x7f\x54\xb5\x7c\xd8\xcb\x94\x05\x41\xc7\x64\x18\xfd\xb6\x6a\xfa\xd7\xfb\x98\xda\x7e\x3d\x26\x7e\x21\x7c\x44\x51\xa5\xfa\xe7\x95\xa7\xb7\x2b\x97\x9f\xbb\xe9\x7f\x74\x5a\xbf\x3a\xe3\xb0\x38\x88\x58\x2b\x57\xef\xe7\x5a\x1b\xf2\x90\x89\xc7\x7d\xd1\xf6\x3d\x62\xce\xaf\x1e\xcf\x89\x73\xeb\x02\xa9\x52\x3a\x49\x39\xdd\x08\xcf\xc9\xa2\xea\x76\x96\x8d\x5c\xfb\x71\x78\x63\xb3\x73\xc3\x7f\xed\x93\x32\x25\x90\x54\xfe\x17\x2a\x66\x71\x9c\xd3\xb7\xba\x4b\xa2\xf0\xb5\x82\xee\xa9\xfe\xce\x9c\x1f\xa0\x1e\x6a\x9c\x38\x66\x38\xf9\x5a\x75\xe3\xec\xb3\xde\x46\x8c\x4d\x7a\xc0\xda\xef\xf9\x9b\xbe\x2e\xbf\xeb\x82\xb9\x68\xb5\x89\x8a\x56\x9b\x7f\xba\xdd\xe2\xad\x82\xf2\x8e\x51\x40\x86\x48\xc1\xce\xef\xdc\xb6\x58\x2d\xfd\xe6\xb6\x9a\xff\x6a\xe3\xda\xfd\x02\xfe\x3e\x68\xe5\x79\x2e\x29\xfd\xe4\xc8\xd7\x90\xb5\xfe\xdd\xe9\x6d\x76\xd8\xc3\xba\xd0\xf3\x22\xc2\x84\x5b\x09\x21\x67\x55\x11\xcd\xff\xac\xd7\xc5\x81\x13\x64\x24\x1a\x14\xaa\xe8\xe1\x97\xad\x17\x9f\x49\x3a\x05\x56\xd5\x2b\xfc\x1f\x37\x39\xfb\x27\x4d\xc2\x9c\x8f\x3e\x49\xcc\x78\x07\x3e\x60\x01\x7e\xbe\x67\xd7\x2f\xb3\xd4\x1e\x7d\x17\x04\xd1\x04\x0f\x9d\xf1\x2f\xcf\x65\xfc\xef\x2f\xcf\xff\x5a\x93\xe5\xa7\x2e\x6f\xb6\xc7\x7c\x8a\xf8\x20\x5f\xfe\xbe\x23\xaf\x9e\x3a\xf1\x96\x6f\xed\x7e\x5e\xb4\x3b\xa0\x32\xac\x34\x80\x42\x24\x9c\x14\xfb\x85\xb3\x70\x00\x7a\x8a\x47\x61\xc6\x92\xff\x60\x45\xe0\x81\x9f\x54\x2c\x72\x25\xbf\xfa\x4f\xe6\x7e\xe4\xfa\xb9\xde\x73\x7c\x57\x6a\xf8\xae\x7c\xd0\xbb\x02\x0e\x64\x7e\x76\xe0\x11\x85\xf1\xbe\xee\xb1\x61\x28\x72\xef\x04\x56\x3c\xf1\xba\x60\x23\x34\xd2\x35\x22\xc2\xfe\xc3\x7f\x49\xdd\x4e\xba\xda\x1e\x66\x92\x1a\x01\xcb\xd6\xe0\x17\xd4\x93\x0e\xca\xca\x0e\x8f\x68\x47\xf3\x14\xf6\xbb\x7d\xfd\x86\xad\xb1\x1e\xba\x2e\x2d\xc0\x62\xe5\x58\x10\x04\xab\xc9\x0a\x28\xb1\xd6\x74\x98\x37\x74\x0a\xd7\xfa\xf3\xd8\x13\x24\x05\x98\x0d\xd4\x13\x37\xbe\xf2\xf8\xff\x57\x0e\xde\x7f\x97\xa6\xfc\xa3\x8e\x3f\xaf\x3a\xd6\x27\x35\xd3\xdb\xce\xb1\x26\x34\xdf\x05\x5d\x95\x4a\xa6\x44\xf8\x5c\xf9\x59\x57\x89\x75\x1b\xc1\xd8\x41\x6c\x22\xf2\x79\x56\xb5\x7d\xd0\x36\x89\xb7\xcc\x69\xa4\xc8\x7e\x7c\xb9\xfc\x57\x23\x75\x24\xfd\xb1\xc9\x5e\xfa\x54\xff\x64\x4e\x98\x0e\x4f\x11\x25\xff\x9c\x5a\x01\x9d\x3d\xdf\xe0\x79\xf8\xaf\x8c\xe6\xd6\xba\xb9\x14\x56\xa0\x46\x77\x6e\x80\xf5\xc8\x7b\xac\x8f\xd8\x1d\xe4\x4e\xfc\xd6\x41\x8c\x8a\x41\x56\x4d\xae\xee\xdb\x44\x63\xde\x86\x6f\xa0\xa5\x3d\xa1\xdb\xf4\x37\xe5\x6d\xe0\xdc\x29\xe6\xb0\x77\x41\xe9\x9d\xf2\x68\x67\xee\x5a\xb2\x50\x5f\x05\x5e\xa9\x42\xd3\xab\x42\xee\x1d\x80\x47\x85\x8b\xe2\x0c\x3e\x09\xfe\x02\x84\x85\x87\xeb\xff\x73\xee\xd2\x63\xa1\x5a\x9f\xf3\xac\xf9\x09\x13\xa3\x7e\x3e\xee\xeb\xea\xdc\x20\x92\x63\xee\x8a\x6f\xf6\x8e\x1c\x54\xe0\x64\xad\xa4\x33\xad\x68\xa5\xc5\x19\xeb\x96\xb5\xe2\x35\x2a\x8f\xe2\xe7\xad\xcd\x17\x6f\x45\xca\xfe\xbf\xfc\xa3\x76\x54\x95\xa9\x05\x7c\x97\x5a\x48\x87\xff\xf2\xb2\xe3\xa1\x9d\xa5\x72\x88\x23\xc9\xea\x98\x0d\x98\xb6\x92\x4d\xcd\x74\x06\xd8\x63\xde\x1b\xfa\xb7\xa0\x29\x6f\x84\xb9\x50\x0a\x1e\xcc\xf1\x91\xf2\x32\x1b\x50\xf8\xc9\x68\x82\x2a\x12\x7a\x7a\x9a\x83\xe3\x4a\x66\x49\x51\x4e\xd9\x31\x18\x4a\xc5\x38\x2d\xe4\x82\x8b\x90\xfc\x8b\xa1\x47\x97\xaa\xa1\x3c\xb3\x93\x3f\xae\xa1\xdc\xb3\x8d\x5b\x35\x3c\xbd\x86\xf2\xd1\x36\x6b\xe0\x9a\x75\xf7\x54\x2f\x35\xd3\x28\x83\x6a\x4f\x4a\x21\xa2\x89\x7e\x23\x60\x74\x9b\x6c\x20\x3b\xac\x6b\x55\x9e\xcb\x71\xf5\xb9\x74\x19\x1b\x97\x73\x1c\xc3\x6b\xb6\x2e\x57\x2b\xc7\xb9\xe9\x1a\xc6\x51\x0a\x42\x56\x88\x27\xf9\xba\x3a\xe0\x35\xa8\xf0\x2c\xff\x56\xef\x7f\x3f\xe6\x61\xb1\xd3\x82\xbe\xd6\x68\x71\xe5\x81\x26\x28\x8d\xd7\x90\x2d\x4f\xff\x5e\x6b\xb3\xaa\xd6\x6e\x31\xd7\xd5\x33\x2a\xe1\x9f\x37\x77\x08\x71\x76\x97\x1b\x91\xb9\x04\x74\x08\x12\x8c\x2f\x0b\xa7\xaa\x35\x71\xad\xcd\xfc\xcf\xd8\xff\xea\x11\x7e\xad\x67\xfa\x17\xea\x96\xec\xce\xe1\xaa\x6e\xf2\x3f\x52\x17\xb5\xc1\x74\x27\xc0\x3a\xd6\x15\xc8\x1d\xac\x0b\x3a\xbe\x28\xc4\x28\x1c\x74\xa6\xc8\xf1\xc7\x0a\x0e\xfd\x2a\x2e\x55\x6b\xbc\xa8\x64\xce\x7e\x1b\x06\xa2\xfa\xc7\xdc\xa8\xa6\xa6\x9c\xe8\x37\xca\xd3\xde\x2b\x73\xa5\x21\xde\xfe\x98\x10\x6f\x3f\x64\x8e\x2f\xe6\x78\x72\x5e\x4e\x0a\xa6\x1f\x1c\x26\x52\xb7\x27\xb0\xe8\x9d\x11\x03\x20\x85\x98\x54\xd3\xce\xa2\xc1\x24\x71\x79\x65\x22\xb0\x6b\xbb\xcc\x67\xc2\xf9\x49\x7e\x6f\x29\xdc\xc3\x2b\x70\x21\xaf\x98\x62\x14\x6e\x1f\x92\x4e\x2c\x67\xe4\x86\x80\xae\x43\x6f\x97\x3e\x38\x7e\x98\x08\xc2\xf3\x6a\x22\xec\x83\xf6\xa3\x02\x71\x73\xd6\x02\x48\xf9\x7b\x40\xee\x76\xb1\x61\xd7\xa7\xcc\x85\x38\x83\x8f\xe6\xdc\x95\x8b\x74\x8f\xc3\xc0\x34\x89\x29\x54\xce\xb1\x25\xf0\x49\x3d\x80\x65\xa3\xc1\x43\x6a\x62\xb1\xc7\x26\xa5\xc0\xf2\x9d\x98\xc2\x62\xe5\x05\x55\x46\x32\x0e\x55\x20\xb6\x06\x3d\x7e\x02\x2d\xb0\x18\xd6\xc2\x23\xb8\x9b\x49\x47\x00\x08\x0f\xd0\xe1\xf7\xd3\xdc\x85\x7c\x44\xbc\xc3\x6f\x8a\xdb\x63\xc6\x5e\x36\xd0\xd2\xbb\x32\xd3\xe0\xc9\xf6\x98\x88\x00\x87\x97\x1d\x37\xd5\x07\x4d\x3b\x2f\x8e\xc9\x23\xa2\x0d\x1b\x42\xc8\x01\x93\xc6\x90\xb1\xc9\x12\xe7\xa2\x8b\x5d\x88\xf2\x52\x7d\x8c\xbd\x34\xa4\x1a\x5a\x77\x3b\xfc\xaf\x0e\xa2\x00\xc8\x19\x36\x3c\xa1\xcf\xcf\x83\xf2\x25\x15\x5e\x1b\xb7\xf8\xb9\x5f\xbe\x65\xdb\x18\xbd\x52\xdb\x43\xf9\x3c\x6d\xc5\x1c\x01\x5c\x07\xa7\x45\xfe\x86\xd6\x3e\x08\x34\xe8\xf2\x42\x6e\x72\xfd\x41\x3d\xef\xdf\x27\x7c\x7e\x6c\x5c\x0f\x93\x3c\xcf\xf6\x76\x6a\x21\x6b\xf0\xaa\x35\x96\x9b\xdb\x15\xe5\x6e\x31\x1e\xfb\x6e\xc8\x17\xe7\xf9\x07\xca\x22\x66\xf9\xb5\xfe\x5f\x5f\xc8\xf9\x27\x2d\xe4\xf9\xa5\xee\xb0\x07\x53\x4e\xe9\xf5\x07\xa2\x68\x1a\xed\x3f\x9a\x93\xf8\x93\x39\xa5\x1a\x08\xc9\x2e\xd1\xa4\xfa\x90\xe1\x72\xf8\x40\xfe\xf4\xca\x5b\xed\x67\x2a\xab\xdc\x99\x79\xe3\xe9\x79\x83\xfe\x15\x06\x85\xb0\x29\x20\xed\xe5\x46\x0b\x99\x10\xb1\x9d\x13\x90\xc4\x9d\x19\x0f\xfe\xaa\x19\x88\x21\x4e\x9b\x99\x30\xe1\x74\xfe\xb2\x05\x51\x7f\x61\x1f\x86\x9d\x1c\xf2\x1a\x11\xc1\xd8\x52\xb4\xfa\x57\xcb\x33\xe7\x00\xd5\xf3\xf2\xa7\xd7\xd1\xfb\xab\x15\x3f\x17\x57\x3c\x3b\x46\xcc\x23\x97\xb2\x10\x01\x92\xd0\x1a\x3a\xb4\xfe\x1f\xf6\xbe\x6c\xbb\x6d\x5e\xf7\xf7\x81\xdc\xb5\x3c\x4f\x97\x92\xec\xb8\x6e\x9a\xa6\x69\x9a\xb6\xc9\x5d\xd2\xc1\xf3\x3c\xfb\xe9\xcf\x12\xf0\x03\x09\x52\x92\xe3\xb4\xe9\xde\xdf\x3e\xff\xef\x26\xb1\x24\x8e\x20\x08\x62\x22\x10\x9a\xc5\xd8\x87\xec\xb0\x76\x31\xf7\xec\x7f\x5b\x71\x7b\xea\x4b\x32\x31\xbe\x8e\x43\xf1\x54\xdf\x15\x63\x6a\x78\xc9\x39\x39\x25\x8b\x91\x3f\xa9\x4b\xb9\x66\x02\x34\x42\x5a\xfd\x21\x29\x97\xae\xbb\xcd\x39\x07\x6b\x22\x7d\xe4\xdb\x4f\x6f\xbe\x06\x6f\x6f\x6a\x95\x53\xdb\xc5\xa6\x10\xbd\x0c\xae\xab\x51\x8f\x74\x2f\xcf\x28\xc4\x26\x51\xd0\xae\x87\x4b\xf6\x9e\xba\x69\xcc\xad\xee\xeb\xa1\x4a\xb7\xbf\x83\xbb\xca\x12\x2f\xbb\x41\xbb\x1f\x96\xbe\x24\x89\xec\x55\x10\xdc\xd6\x7b\x48\xf4\x14\x53\xdc\x66\x4c\xf6\xbb\xeb\x28\xdf\xd6\xeb\xcf\x9e\x38\x29\xeb\xdf\x69\xb6\x52\xa9\xf1\xe4\x93\x27\x24\xd6\xb2\x38\x96\x1a\x47\x53\xbc\xdf\x50\x30\xa6\xaf\xec\x2e\xf7\x06\x5e\xf4\xc2\xb3\x14\x3d\xd1\x84\x9b\x57\x2a\xac\xcc\xe6\xf3\x55\xf6\xf6\x9a\x40\x26\xf5\xda\xaf\xfe\x69\xfb\x62\xd4\x19\xa4\xb7\xdf\xfc\xd3\xf6\x0f\x1c\x54\xf3\xbe\xf4\xf6\xaf\x80\x47\x4c\xea\x8d\xd4\xe6\x9b\x08\x8f\xf0\x57\xa0\xd3\x8d\xa1\xbf\xed\x3d\x6b\xa3\xbe\x49\xd8\xa8\x5f\x67\xf5\xbb\x41\x54\x3c\xa7\xff\xcb\x3f\xe8\xdf\x36\x37\x7a\x9f\x02\x60\x76\xe5\xdb\xb7\xfe\x70\x11\x0b\x9f\xe1\x16\x53\xe0\xd4\x93\xe9\xbd\x84\xf7\x99\xdf\x8a\x2f\x1d\x01\x6d\xee\x25\x3b\x5a\xdf\x2c\xe6\x69\xbd\x46\xf9\xf0\xc8\xe1\x94\x6e\x96\x1c\xc5\xd6\xbf\x53\x3c\x52\xb1\xda\x9a\xde\x79\xb9\xea\x85\x3a\x47\xd9\xb6\xf5\xc6\xc4\xa7\x2f\x7f\x7a\xe3\x85\x6e\x1b\x94\x11\xbf\xb0\xdc\xe6\xb8\x38\x4f\x6f\x52\x1c\x3e\xda\x63\x56\x38\xf8\x0e\x1f\x76\x96\x51\xd2\x0f\x47\xe8\x98\x09\xd4\x53\xe3\xa8\xa8\xa2\xec\xc2\x7d\xb1\x02\x8b\x01\x57\xf0\x86\xd6\x14\xb2\xbd\x0c\x37\x1c\xa9\x9b\x2e\x4d\x7f\xa4\x1b\x18\x57\xe6\x67\xf4\x79\x5c\x72\x65\x99\xc3\x8a\x42\xd0\xd2\x0d\x92\x8f\x6b\xca\xde\xd9\xbe\x46\xf9\x6e\xd0\x4a\x94\x1f\xf7\x63\x52\xfd\xce\xf7\xba\x2a\x10\x5d\xbd\xc3\xa4\xab\x9b\x7f\xf6\xa4\x67\x7a\xd2\x43\x9a\x74\xb2\xd0\x8e\xa6\xf4\xee\xc7\xb6\xe2\xf2\x34\x0b\xaa\x7c\x85\xa9\x6e\x33\xa7\xfa\xdc\x3e\x1a\x57\x99\xd6\xae\x36\xa9\xb4\xfc\x8f\x89\xed\x10\xed\x2f\x4e\xb4\x7f\xfd\x07\xed\xf7\xd1\xfe\xec\x2f\x8d\x3f\xb7\xe4\x4d\xb9\x78\x97\x79\x58\x5c\x9d\xdd\xfc\x16\x96\x0d\xc1\x9a\x3c\x12\x43\x12\x57\xee\x09\x9f\xb9\x15\x5f\x7c\x5c\xa4\xf2\x08\x14\x1b\x69\x12\x66\xf4\xcc\x68\xec\xa3\x38\x14\x67\x49\x83\xe9\xf9\xd0\x58\x60\x50\xb9\xd4\x41\xf5\xff\xbf\x26\xa9\x13\xf6\xff\x66\x92\x7a\x1d\x2c\x53\x49\x2a\x73\x7f\xe9\xc4\xe5\x9a\xd2\xb1\x44\xd9\x1f\xcf\x3f\x59\x7d\x37\x1b\x71\x76\xf9\x31\x49\x5d\x98\x69\xeb\xd9\x5d\x96\x8e\x2c\x29\x7e\x28\x59\xc3\x5d\x7b\xb8\x1d\x97\xaa\x50\x95\x75\x98\x90\x78\x62\xf0\x46\xde\x5a\x25\x9d\x1b\xda\x7d\xbe\xae\xeb\x3b\x37\xa4\xd2\x6a\xda\x43\x3e\xc4\xfc\x36\xbf\xc3\x61\xe2\x32\xa3\xcd\x73\x56\x61\xb2\x12\xa7\xfb\x41\x1a\x4d\x60\xee\xa2\xfe\x72\x88\xff\x16\x92\xbc\x08\xea\x9d\xa0\xf3\x25\x73\x41\xda\xc7\xd0\x5b\x90\xdc\x9c\x54\xf5\x6f\x7f\x34\xbd\x7b\x1d\x8b\x05\x4b\x93\x9c\x60\x68\x8b\x8c\x93\x67\x33\x8c\x76\x0f\xae\x59\x2f\xa7\x37\xe1\x8a\x5f\x69\x12\x79\x1d\x04\x37\xbf\x98\x75\xe5\x1d\x59\xea\x77\x88\xe6\x7f\x72\x4a\x36\x61\x08\x6a\x07\xed\x23\x0f\xa9\x37\x4f\x17\xd0\x92\x78\xf3\xc7\x43\xaa\xf4\x3b\x84\x61\x9f\xb3\x86\xb4\x67\xb6\x3e\x7d\x48\x67\xf0\x24\xaf\x40\xcc\xff\x85\xfb\x59\x50\x22\x0c\x67\x3d\x4b\x99\xc3\xa7\xfc\x88\xfb\xcd\x18\xce\xed\xaf\x37\xe2\x5b\x93\xa3\xa6\x8b\xa1\x5f\xb0\x69\xb5\x14\x14\x57\xbe\x7d\x21\x25\x98\x72\xc0\x90\xcb\x53\x87\x08\x16\x05\xed\x80\xb5\x2d\x7c\xa7\xef\xb1\xca\x43\x99\x87\xaf\x3b\x96\xcb\x8b\x37\xd7\xc1\xbb\xe8\xd4\x80\x3a\x41\xf7\xdb\x9b\xcb\xe0\xed\xc3\xe9\x42\x9d\xe0\xcd\x65\x70\xb1\x0d\x4f\x97\x6a\x7f\x85\x06\x82\x26\x48\xf7\x6d\x79\x82\x37\x45\x4f\xd5\x09\xf3\x46\x1b\x21\xca\x38\x63\xb5\x37\xe1\x65\xf8\x26\x0a\x2e\x03\x8b\x45\xbf\x5e\x80\x43\x1c\x7a\x32\xcf\x7c\xfd\x82\x8d\x2c\x86\xaf\x77\x46\x4f\x03\xaf\xb3\x7f\x89\x14\x8c\xa7\xd1\xb1\xcc\xfd\xc5\x6e\xc5\x0e\x5d\x6b\x32\x4b\x47\x77\xf4\xa9\xb1\xe1\xdb\xaa\xf2\xf1\x68\xb3\x69\x71\xdd\xfc\x24\x72\x0a\xec\x6d\xbe\x2c\x16\x0b\xfa\x53\xb7\xc0\xd6\x66\xb9\x8a\x58\x6e\xf0\x0a\xd4\x17\x36\x3b\x16\x99\xd8\x3e\x2e\x72\x6e\x89\xb5\xdf\xc7\xd8\x6b\x22\xdf\xa7\x4d\x40\x59\xb7\xe8\xc2\xeb\x47\x8e\x8e\x6d\x4b\x2c\xfd\x3e\xa6\x5e\x13\xfb\x5e\x68\xf3\x79\x91\x1b\xcd\xc7\xfe\x8a\x34\x93\x69\xb0\x78\xe2\x7c\x8d\x66\xf6\x9d\x78\x64\xdd\xe7\x66\xdf\x7d\x76\xf6\xdd\xe7\x66\xdf\x7d\x76\xf6\xdd\xe7\x66\xdf\xc5\xec\xbb\xa9\xb3\xbf\xa1\x1b\x3e\x31\xde\xf4\x71\x3c\xc6\xdb\x89\xa2\x7e\x77\x03\x83\x47\x9f\xa4\x62\x53\xfc\x2c\x8b\x13\x7e\xf1\xe6\x46\x36\x00\xe5\xe3\xff\xc8\x87\xfd\x9b\x48\xdc\x9d\x28\x64\x57\xeb\xe9\xc0\xf5\xef\x2f\x0c\xa9\xe8\x06\xed\x72\x88\xad\x65\x9b\xe5\x53\xff\x6a\x4e\x28\x9a\x0f\x67\xfc\x58\x5e\x71\x3e\x83\x0a\x05\x48\x68\x4f\xc3\x66\x1f\x8c\xcc\x55\x0c\x82\x28\xe8\x50\x5c\xb2\xdb\xb8\xab\xf7\xb4\x0d\xbb\x0b\x6e\x99\x08\x64\x37\x68\x3f\xbd\xb9\x0a\xba\x17\x14\x4d\xc9\xc4\xc5\x6a\xb7\x48\xf6\x25\xef\x39\x02\xfc\x92\x73\xa6\xed\x8b\x2d\x4e\x4e\xf5\xe6\x36\x68\x5f\x34\x7a\xde\x10\x8f\x75\x8a\x85\x4e\x96\x8d\xf6\x85\xa4\xb8\xc7\xf4\x73\x05\x77\x3f\xf9\x13\xab\x73\x8e\x95\x22\x5c\xc1\x04\x88\x9d\x20\xfa\x25\x55\xaa\x26\xb1\xde\x73\x20\x6e\x73\xac\x9a\x2e\x03\x97\xd2\x5e\x0b\xbc\x83\x53\xd0\x36\x3d\x54\x52\xa1\xbd\x2f\x32\xb4\x0f\xc5\x0c\x68\xb7\xc9\xe7\xab\x7b\x65\x3a\x65\xc0\x07\x7f\x07\xf0\x66\xb4\x65\x05\x78\x0a\x1d\x17\xb5\x37\x19\x33\x62\x30\x77\xf6\x94\x04\x1e\x01\xfb\x82\xab\xe0\x8d\x04\xf6\xab\x87\xd9\x08\x2d\x83\x2c\x87\x28\x6f\x22\x76\x70\x4c\xf8\x30\x7b\xa1\x10\x94\x3a\xe6\x32\xe2\xd3\x43\x0a\x4e\x73\xac\x01\xd8\x8e\x5c\xf6\x75\xc1\xd7\x31\x7e\xcc\xd7\x9e\x4c\x48\xef\x9b\x1d\xba\x48\x77\xd1\x5e\xc0\xef\x20\x26\xdc\xd7\xc1\xe0\xed\x97\x54\x6f\x90\xe7\x59\xb1\x9b\x17\xb1\x62\x1d\x4a\xc1\x4e\xbc\x78\xe0\x33\xe9\xd1\xd8\xe7\xc4\x7d\x31\xe6\x9e\xc2\xf4\xab\x36\x66\x49\x43\x0b\x25\x73\xe0\x1c\x97\xdd\x11\x87\x11\xa9\x7f\x72\xc5\xc9\x35\xee\xc3\x72\xc0\xde\x25\x47\x63\xbc\xaa\x4e\xc2\x34\xd9\x12\x11\xa8\xaa\x51\xbf\x7a\x71\x72\x70\x97\x41\x70\x37\x46\x72\x2a\x5a\xb3\xdc\x9d\xfc\x8e\x8a\x2d\xeb\x7a\x35\x18\xa6\x5d\x10\x3c\x05\xe2\x9f\x59\x20\x4e\x65\x2d\x4f\x81\x98\xa1\x03\x05\xc4\x3f\x09\x3a\x57\x41\x30\xa0\x35\x5b\x87\x1b\xce\x3f\xec\x60\x46\x42\x46\x4b\xb9\x11\xd0\xe1\xea\x49\x94\xf8\xdb\xb5\x7b\x61\x66\xf5\xee\x19\xd5\x6f\x21\xef\xff\x3c\x29\xef\xbf\x50\x0e\xea\x9a\x10\xb4\xd3\x70\x3d\x41\x8e\xd6\x74\x6f\xb0\x72\xc8\x41\x9b\x78\xff\x17\xd3\x5a\xa3\xd8\x98\x19\xaa\x92\x28\x7b\x08\x31\x6b\x9e\x5e\xe9\x3a\x7f\x72\xdc\xbf\x45\x69\x32\x20\x94\xa5\xc9\xc9\x12\xcb\xba\xf0\xe4\x49\x55\x75\x13\x07\xf3\x11\xea\x6e\x0e\x18\x46\x61\x30\xa3\x1f\x09\xfd\xf5\xb3\xb6\xf7\xeb\x20\xda\xb7\x24\x90\x92\x8e\xcd\xd0\x0b\x39\xab\x46\xf4\xc4\xac\x30\xdf\xb6\x4b\x6a\xc8\xff\xeb\x3d\x88\x07\x82\xef\x77\xf0\xbf\xd5\x85\xb8\x63\xf8\xfe\x17\xff\xe1\x2e\xda\xf5\xb0\xec\x86\xc6\x61\x43\x7c\xe1\x40\x41\x55\xab\x6c\x30\x28\x7d\x7e\x2d\x0a\x91\xa9\x97\x4e\x77\xd7\x88\xc6\x61\x8d\xf5\xd1\xf7\xf5\x19\x1c\x2f\x62\x9e\xa6\xf7\x41\x79\xcf\xd1\xab\xee\x1b\x44\xdc\x67\xa7\xf2\x61\x6b\xc6\x01\xff\x7e\xce\xa7\xd1\xb3\xf5\xae\x4c\xbd\x63\xcb\xa3\x9b\x36\x12\x4b\x9f\x1d\xa1\xbe\x6e\x7e\xd2\xb0\xa3\xfc\x32\x4a\xb7\x91\xbe\x11\xcd\xc2\x92\xa1\x57\xfd\xf2\x42\xe8\xa5\xdc\xb2\x7a\x9e\x22\x3e\x07\x72\xf2\x07\x15\xa2\x9c\xe6\x28\x7d\xed\x3b\x4a\xff\xc1\x40\x4f\xd1\xc6\x14\x4f\xdd\xe7\x67\x97\xd9\xd3\x6f\x0d\xef\x4f\x50\x37\x15\x8e\x27\x3d\xc6\xff\xd2\x82\x9f\x9e\xdd\x4b\x8f\xc0\xdf\x5a\xb1\x57\x9f\xd3\xcb\xd8\xfa\x4b\x91\xeb\x7d\xcd\x5c\x5c\x91\xe2\xae\x43\xeb\xb5\x2a\xb4\xb2\x0e\xd7\x48\xa4\x51\x39\x62\x29\x63\x4c\x14\xb4\x1f\x68\x98\x7e\x0d\xe9\x80\x2f\x58\x5f\x07\xd1\x85\x67\x48\xb4\x7e\xc2\xf9\x4f\xf1\x8b\xaf\x8d\x9f\x6e\x97\xed\x20\xca\x13\xe7\x39\x0a\x4d\x9f\xdd\xa0\x9d\xa0\xee\x89\x86\xde\x5c\x06\x9f\xb7\x91\x78\x55\x5e\x4b\x1e\xef\x57\x58\xfb\xff\x1c\x96\xfd\x33\x2a\xdd\xe4\xc3\x21\x3c\x43\x4d\x5a\xb6\xdb\xe0\xd1\x4b\xc2\xd6\x39\xac\x39\x1d\x3d\x2d\x07\x3b\x49\xb3\x83\x61\xd4\x84\xf6\xb4\x36\x20\x15\xfd\xf7\x80\x53\x87\xd5\x07\x5e\x24\x8a\xcb\xa0\xfb\x45\x62\x3b\xe4\x06\xa4\x3b\x7f\x8c\x31\xac\x33\x0e\xa5\x89\xde\xb0\x13\xa3\xd1\x47\xba\x99\x31\xad\x86\x69\x23\x78\x2c\x2f\x38\xd5\x46\x8e\x47\x7b\x83\x11\x75\x28\x44\x5a\x7c\xee\x0d\x87\x1d\xd3\x49\x3c\xe4\xf8\xa4\xea\x6e\x63\x04\x7d\x1b\xc8\x37\x33\xaa\xfb\x20\x7a\x2b\xa3\x1a\x0d\x29\x7a\x6e\xf4\x7e\x8c\x52\x93\x61\xe7\xcd\x55\x70\xfd\x30\xc5\xf3\x88\xc6\xd7\x7a\x4b\xaa\xa0\xfb\xfd\x90\xc3\x15\x97\xf0\x5f\x42\xc3\x04\x9d\xb9\x1a\xc1\xd7\x20\xb8\x6f\xb3\x9b\xfa\xd0\x79\xdd\x5e\x86\x46\xdb\x12\xdc\x55\x87\x4e\xec\xe3\xf5\xa5\xe9\xf0\x06\x1a\xea\x78\x6a\xbd\x4b\x38\x84\x5c\x91\x26\x39\x25\x78\xf1\x14\x3e\x88\x8b\x5f\xc9\x30\x7e\x57\x41\x34\x6e\x55\x3f\xaa\xa9\x71\x38\x36\x0a\x31\x2c\xf1\x8a\xaf\x56\x1c\x6f\xf8\x26\x0f\xe3\xe3\x9b\xae\x71\x99\xbc\x0c\xda\xeb\x16\x02\x1e\x03\x82\x57\xcd\x29\x29\x62\x6e\x90\x12\x70\x44\xf9\x4f\x6e\xea\xb7\x4e\x2f\x5b\xf2\x0d\x0d\xae\xe5\x86\xdf\x08\xb3\x5d\xb3\xcf\x28\xf9\x7d\x5e\x07\xf9\xce\xc9\x05\x57\x59\x3d\xda\xe3\x08\x32\x54\xdc\x52\x4c\x10\xc6\x0a\xb6\xa4\xa3\xc8\xbb\x38\x15\x33\x6d\x5f\x9f\xc5\xa9\x5e\x2d\xb2\x58\x5e\x43\xde\x50\x8d\x9d\xf1\xf6\xa0\x5b\x64\x9c\x2d\x6b\xf8\x4c\x7b\xc3\x8f\x46\x08\x44\xb8\xde\xfd\xcc\xaa\x94\xba\x0b\xcf\x34\x24\xd5\xab\xee\x96\x7a\x94\xbd\xc4\x93\xeb\x94\xe3\x7d\x7b\xd1\x95\x19\x66\x82\x60\xcb\x2b\xd9\x3d\xec\x11\xcf\xfc\x70\xa1\xb0\x2a\x1a\x86\x31\x5a\x45\x12\xd2\xd2\x1f\x0c\x67\xe3\x0b\xc8\x8d\x21\x86\xa7\x44\x9d\xc7\x92\x1e\xbd\xa9\xa3\xf8\xf7\x5d\xfb\xcd\x7d\xd0\x9d\x47\x5b\x8c\x66\x37\xec\x50\x64\xc6\x3d\x9e\x57\xf4\x9f\x43\x6e\xde\x04\x59\xad\x34\x25\xcd\xd9\xb4\x65\xa3\xcc\x97\x37\x92\x9f\xf6\x3a\x08\xba\xc7\x5d\x4b\x0f\xe8\x6a\xbb\x62\x09\x60\xcd\xb1\x02\x96\xa1\x5f\xa0\x7e\xa0\xa0\xc2\x63\x52\x33\xbe\xe3\x74\xb8\x0f\x27\x7b\xdf\x2d\x55\xef\x7d\xf6\xac\xbf\x1a\xee\x38\xd6\x7d\xeb\x93\x69\xfd\x26\x08\xee\xd6\x6a\xbe\xf7\x41\xb4\x0e\xf5\x84\x63\x80\xd5\x9f\x25\x17\x52\x35\xf2\xaa\xd2\xc8\xe3\x3d\x16\x77\x1d\x21\x44\x6f\xe6\x82\x99\xd1\xeb\x2c\x38\x53\xd9\x2f\x32\xdc\x13\xcb\x47\x09\xd9\xb7\xde\xe8\x4f\x2e\x37\x5f\x12\xb9\x0e\x8a\xcf\xac\xa6\xb3\xbd\x0e\x9f\xe2\xf3\x43\xfb\xc5\x0c\x29\xa8\xf3\xdb\xf7\x7a\xe1\x5e\x15\xb4\xed\x25\xdf\x26\xba\x02\x14\xe3\x4e\xe3\x5d\xd3\x36\x77\x59\x67\x79\x8e\xdc\x1e\xa3\xda\x4d\x10\x7d\x39\x90\xa5\x86\xee\xb0\x76\x82\xe8\xe2\x53\xe6\xb2\xd0\xf9\x39\xe3\x10\xe4\xa1\xe4\x62\xf2\x0a\x5e\xed\xfa\xac\x0f\x3f\x10\xcd\xbe\xe4\xf9\xb6\xa7\x91\x4c\xf8\x80\xf1\x0b\xaa\xd1\x00\x3d\x1c\x15\x1a\x41\x90\x99\x1e\xa0\x28\x41\xc8\xdc\xb8\xc5\x2e\xf2\x7c\xe3\xee\x7b\x06\x8a\xef\x38\xd3\xb4\x40\xea\x6a\x1d\x65\x2d\x1e\x97\xbc\x7f\x23\xda\xf6\xae\x5f\x90\x47\x14\x71\x06\xac\xaf\x4c\x50\xba\xb8\x9b\xc4\xa9\x8d\xff\xaf\xff\xea\x3e\xff\xeb\x2a\xb8\x7e\xca\x57\x4e\xad\x00\x02\x11\xbf\x60\x05\x6e\xde\x5c\x05\x57\x3f\x5e\xa1\xd5\x4b\x4e\x98\x70\xf5\xe5\x74\x5b\x67\xe1\x88\x24\x7b\xfe\xc8\x23\xec\x06\xed\x4f\xc9\x5f\x11\x6d\x34\xfc\x4a\xfb\x9a\xf9\xeb\x2a\xb8\x3e\x63\xc6\xd1\xeb\xa3\x7b\xd6\xb0\xd3\x26\xf0\x9a\x53\x79\x76\xf1\x6e\x59\x86\x7b\x76\x1c\x7f\x15\xe0\xcf\x8e\x72\xc4\x41\x7e\x22\x8a\x2b\x71\xd6\xf0\xfe\xc9\x80\xfd\xaf\x83\x33\x81\x9a\x2f\x5f\xf4\x7f\xde\x7e\xb3\x97\xf7\xc7\xff\x2b\x38\xf2\x0a\xeb\xf0\x3b\x63\xbb\xe7\xfb\xdb\xa7\x61\xfe\xa7\x13\xf8\x4f\x03\xfc\xfe\xcd\xe5\x5f\x3c\x5e\x9c\x5f\xed\xdf\x9d\x43\xfb\xc7\x14\x89\xfe\x7a\x65\xce\x25\xbc\x3e\xc2\x23\x10\xd8\x3b\x09\x49\x17\xbe\x2b\xdc\x06\x83\x6e\x80\x0c\xfd\x89\xc2\x1b\x0e\x53\x3c\xe1\x28\x82\xb3\xed\x75\xb0\xe8\x64\x16\x9e\xb1\x43\xec\x23\x09\x99\x93\x28\xc8\x6e\x16\xb9\xe5\x1f\xc9\x0f\xee\xe6\x44\x41\xf4\xff\x48\xdd\x7f\x3f\x51\x70\xc0\x5a\xfe\x47\x0a\x00\xbe\x0a\x83\xcb\x60\x4d\xae\xc9\xd7\x4f\x7c\xbf\x20\x0a\xa2\xa7\xda\x84\xb3\xf3\x92\xbb\xda\xc7\x79\x8f\x13\x02\x07\x6f\xda\x6f\xee\xa2\xe5\x68\x18\x12\xf4\xbe\x96\xc9\x60\x71\x78\x4f\xac\xf3\xf1\x3d\xf5\xd7\x40\x10\x22\xd2\x4a\x3d\xe2\x1a\xfd\x81\x8d\xea\xe0\xe5\xdb\x86\xd9\xa7\xac\x88\xbd\x90\x93\x22\xf2\xb7\x5b\x62\xa7\x23\x92\x0b\x1f\xb8\x0c\xb5\x12\x57\xa1\x1c\x24\xac\xd8\xe0\x2c\x84\xab\x77\x31\xb2\x51\x76\xaf\x6b\x9e\x44\xfc\x0a\x9a\x13\xf2\xd6\x09\x82\x7e\x2c\x30\x07\xb7\x73\xb2\x3e\x76\x7a\x3a\x14\xd1\x30\xe4\x91\xd0\x9f\xeb\x20\x08\x2a\xe4\xe3\x76\xc7\x2f\x3a\x41\x10\xf4\x58\x63\xc2\x19\x1e\xb9\x03\xb4\x10\x0b\x2e\xac\xdf\x24\xa8\x96\x47\x9c\x89\xc9\xb4\xff\x35\x08\xbe\x96\x3e\x71\x45\x1a\x60\x3b\xc7\x97\x68\x6b\x5d\xfd\xb2\x86\xcc\x7c\xd7\x08\x43\x73\xc5\x1a\x95\xf6\x48\x8f\x33\xb7\x62\x2d\x5f\x7f\xdd\x52\x6f\x91\x22\xb0\xde\xd1\x0d\xe1\xc2\x2e\x97\x68\x90\x35\xf9\x3a\xff\x4e\xf7\x3f\xe4\xec\x7f\x95\x0f\x04\xe2\x3a\x67\xd7\xc0\xd5\x28\x34\x3c\xe4\x0b\xb0\x75\xb6\x05\xc5\x15\x49\x77\xfc\xce\x19\x31\xc1\x28\xc6\xa5\xa0\x41\xe9\xd0\x0c\x24\x20\xbf\x71\x5b\x36\xa9\x96\x1e\xfa\x80\x52\x3f\xdc\x8d\xaf\xdd\x77\xf1\x48\x1a\x43\x64\xf6\x33\x10\xe9\x1f\x43\x0d\x78\x17\x24\x63\xbe\xc9\x03\xe4\x29\xf0\xa4\x0e\x17\x56\x93\x46\x7d\x2f\x3f\x33\x6e\x70\x9e\x50\x96\xf4\xac\xfe\xac\x5b\x4c\xf9\x8c\x04\x25\x66\x14\x45\x56\xda\x51\x09\x9d\xb1\xe2\xd0\x67\x08\x8e\xf2\x26\x76\x69\xd0\xae\x22\xb7\xe6\x62\x0c\x0f\xe1\xb7\x0c\x6c\xb6\x74\xb6\x91\xb4\xa4\xb6\x93\xb0\xdf\xf9\x63\x98\x0e\x89\xb8\xd6\x90\x1d\x1c\xda\x15\xd2\xa3\xdf\x36\x29\x04\x59\x7b\x72\x94\xca\xd4\xed\x18\x40\x6a\x3c\x60\x72\x70\x69\x0e\xda\xf3\x77\x27\xaa\xe5\x39\xc0\x6b\x7b\xd0\x7e\x6e\x44\x74\x59\x95\x14\x9f\xed\x35\x48\x3d\x8f\xa7\x08\xec\x2e\x98\x86\xf9\xd6\xc9\x12\x19\xe7\x93\xdf\x79\xdb\x34\x31\x2d\xf2\x5a\xeb\xd4\x6e\x32\x0a\x23\x9c\x79\x66\x63\xfc\x7d\x8e\xe9\x5b\xd4\x9c\x74\x59\x1f\xf7\xc9\x87\x07\x52\x0b\xdf\xf1\xaa\x72\xd2\xc8\x36\xa7\x97\xf7\x11\x24\x5e\x85\xf2\x15\x6b\xe8\xee\x4e\xb6\xb3\x45\x3b\xdb\x94\x76\x38\x68\x03\x71\x4b\xeb\xcf\xf1\xd8\x08\x57\x9b\x6b\xa2\x30\xcd\x2e\x3b\xee\x30\xf1\xbd\x19\xb7\xdf\x74\xde\xdc\x45\x41\x9e\x10\xed\x2b\x51\xcd\x1a\xd3\xd7\x3a\xd3\xd7\xd1\x55\x0a\x7d\xed\x6a\xba\x4a\x23\x8c\x7f\x51\xed\x36\x13\x57\x84\x60\x63\x8f\xf0\x73\xc9\x6b\x63\xc4\xb9\xe9\xbe\xbf\x91\x28\x59\x57\x4d\x56\x50\xb6\x19\xbf\xa9\x4d\xfe\x19\xd9\x17\x3f\xe8\xe7\x77\xfb\xa2\x0a\x04\x0e\xed\x2b\x26\x42\xef\xed\x8b\x1e\x3e\xc6\xc8\xc0\x5b\x8d\x11\x76\x57\xe5\x4b\x64\xbb\x59\x5b\xec\xd3\xb4\x65\x31\x0e\x5e\x0b\xde\xfc\x0f\xf6\x77\x64\x7f\xd2\xb0\x49\xa1\x79\x37\xe7\x31\xad\x3e\xf0\x4e\xfd\x1a\x04\xc1\x91\xb0\xe5\xfe\x87\x0b\xaa\xf8\xdf\x0f\x66\x53\xe8\x10\xb9\xd9\x5f\xb9\xc7\x86\xa2\x47\x8d\x21\x23\x45\x7f\xec\x50\xee\xdc\x90\xaf\x3f\x40\x59\xd5\xe6\x1b\x08\xa3\x07\xec\x8e\xe9\x03\xc6\x49\x67\xc9\x0a\x34\x2f\x7e\x55\x5e\x71\x03\xbd\x11\x0f\x9a\x96\x66\xbc\x42\xb4\x6c\xda\xc3\x2b\x90\x9a\xb8\xdb\xea\x0c\x2b\x48\xbb\xc8\x02\xc9\xa0\x42\x5d\x17\xa0\x37\x01\x3f\x5f\x0a\x1a\xed\xb1\x3e\x75\x3b\xa1\x5b\xb0\x99\xb7\x32\xfc\xcd\x90\x2c\x33\x8f\x11\xc6\xbf\x4f\xbc\x8f\x27\xb0\x9f\xcb\xf1\x23\xa1\x2d\xa8\x54\x27\xcf\xb3\xad\xd4\x79\x9e\xf5\x1a\x77\xb8\x63\x73\xcf\xe3\x1e\x8b\x79\x18\x50\xec\xcc\xa0\x14\x16\xbd\xe6\xbb\xf0\xf8\x88\x1b\x3b\xe2\xdb\x73\xad\x95\x06\x72\x42\xef\x47\x08\x4d\xcb\x20\x25\x1a\xd2\x29\xab\x66\x7e\x02\xf8\x9d\x7d\x1d\x6d\x0d\x3b\x4c\xb1\xd1\xd6\x9b\xdd\x3c\x66\xaf\xe6\x4c\x85\x38\x73\x36\x03\xf3\xc2\xa2\xad\x99\x74\x17\x28\x44\x7f\x02\x81\x2d\x1d\x9e\x8c\xbd\x79\xa6\xa0\xc4\xdc\x15\xc2\x5c\xf8\x66\x41\xc9\x17\x02\x5c\x15\x43\x6c\x8f\xb7\x41\xb0\x7b\x5b\x0f\xdf\xe4\xde\x06\x41\xee\xed\x85\xa1\x6d\xd3\xfb\xf8\xef\xe2\x9e\x23\x97\xab\x25\x40\xc2\x19\xcc\xb6\xf1\xc1\x4e\xb6\x4e\x06\xe8\xf6\xec\x86\xf1\x8c\xb2\x6a\x7e\xe0\x3d\x3e\xe8\xd0\xbb\xb2\x82\xd1\x7d\x10\x3c\x1e\xf1\x5c\x19\x75\x68\x54\xec\xbe\xd2\x69\x66\x00\xbf\xc7\x86\xb8\x60\x12\xd6\x55\x43\x44\xf8\x78\x54\xd2\x5e\xc3\x6d\xaf\x3f\xfa\xc3\xf6\x72\xa3\x0e\xa1\x3c\xc7\xc8\xec\x0c\x5f\xde\x1e\xa5\xf5\xc7\xcb\xde\x58\x8a\x4d\x31\xd1\x99\xe1\xf3\xe6\x78\xb3\x18\x76\x24\x51\xd1\xd8\xd6\x02\x2f\x48\x3c\x18\x0a\xd2\x52\x8f\x6a\xa1\xa5\xb0\x8a\x2a\x65\xfe\x89\x2b\x35\xb1\x23\x79\xbf\xaf\x80\x8c\xd3\xf1\x4b\x16\x56\xd0\xa2\xce\xfc\xd8\xd5\x95\x41\xec\x98\x76\xc8\xfe\x3d\xa0\x54\x7e\x48\x7e\xe5\x1d\x2e\x55\x40\xa9\xa2\x57\x6a\x0a\xe8\xde\xf1\x06\xc3\x5b\xb3\x93\x86\x1d\xca\x14\xb4\x63\xec\xae\xe2\x75\xcd\x72\xca\x66\x96\x45\x99\x0a\x88\x67\x2d\xe4\xb3\x07\xae\x47\xb2\xa1\xe8\x88\x5e\x5c\x58\xc0\x34\x96\xcc\x59\xa7\x42\x93\xa8\x1d\x3b\x3c\xb4\x97\x0f\xaf\x00\xba\xf1\x82\xc8\xd9\x15\x1a\xf3\x61\x17\x93\x78\xde\xb0\xf1\x18\xe3\x01\xa3\xa0\x0f\x3e\x5b\xb0\x8c\xc9\xcc\x1f\x1c\x08\xee\x31\xbc\x1a\xd0\x0f\x4e\x58\xf9\x0c\x64\x5e\x19\x0c\xfc\xbd\x79\xcd\x55\x77\x9c\x16\x58\xb6\x61\x16\x7a\xac\xbd\x01\x4e\x4c\x8d\x17\x2c\xba\xec\x8b\x06\xdb\x4c\x78\xb5\xd7\x23\xb5\xe0\x7c\xe4\x0f\x46\x6e\xdd\x8e\xde\xd7\xaf\xd5\x1d\x11\x85\x9a\xe5\x2d\x30\x2b\xd0\xfb\x7f\x87\xf0\xef\x10\xce\x19\xc2\x68\xc4\xfb\x25\x3f\x76\x38\x8c\x3b\xc4\x95\x53\x94\x6b\xb1\x63\xca\xd5\xe4\x20\x8e\xea\xd4\xfe\xc9\xae\xac\x60\x1d\xe6\x63\x35\x28\xe6\x1d\x2a\xfe\x39\x4f\x09\x0c\xc7\x4c\x39\x17\xcc\x35\x2e\x29\x8c\x08\xdf\x63\x6c\x73\x30\x92\xf6\x04\x83\xeb\x4f\xec\x51\xc9\x87\x67\x71\xce\xf4\x6a\xcf\x64\x68\x66\x3e\x0c\x27\xa9\xa7\xbe\x10\x32\x7b\x3c\x8e\x51\x70\x32\x61\x02\xeb\x31\x40\xd3\xe9\xcb\x66\x61\x62\x6d\x5d\x29\x90\xb1\xdf\x45\x7b\x34\xa6\x69\xdc\xf1\x9a\x8d\x33\x98\x3f\xb0\x01\xa3\x70\x39\x79\x09\x49\x8c\x17\x8c\x38\x57\x0c\xf8\x30\x65\xff\x9f\x22\x16\xb8\x34\xb2\xec\x11\xf5\x0b\xae\xe1\x38\xe5\xf3\x12\xa0\xae\x31\xd7\x74\x5f\x47\xb1\x06\x40\x5f\x57\xcd\x92\xfc\x8a\xef\x39\x34\x9b\xf7\xca\x37\x47\x16\xd0\x31\x58\x45\xa8\x18\xe0\x79\x38\x3e\xaf\xfe\x08\xe5\xc7\x19\xf5\x27\x0c\xd3\xaf\xd3\xb1\x5b\x9f\x1e\xa4\x91\x19\x90\xda\x3b\x67\x05\x43\xe5\xb3\x3c\x2f\xc6\x1d\x03\xde\xee\xb4\xd7\x52\x07\xb5\x11\x9a\xf9\x0f\x29\xa5\xe0\x82\x2a\x08\x34\x05\x40\x2f\xac\x4a\x8e\x33\xd2\xb6\x73\x50\x47\xe5\x21\x77\xad\xc6\xf0\x44\x42\xbf\x9b\x31\xef\xb9\x2d\x9e\x77\x78\xde\xe3\xf9\x30\x96\xd3\x77\x3d\xc5\x29\x36\x82\xbc\x45\x5d\xdd\x05\x41\x50\xe0\x3c\xac\x9c\xe4\x78\x8b\x62\xbb\x29\xab\x00\xf6\xea\x39\xfe\xde\x62\xd5\xb6\xa9\x4c\x72\xf7\xd7\x23\x07\xfb\x74\x85\xc8\x48\xbd\x62\x99\x9a\x25\xcd\x01\x7f\x60\x15\x15\xe4\xae\xc2\x94\x71\xa8\x88\xee\x44\x00\x64\xba\x21\x2b\xf7\xb2\xe6\xdb\x46\x2b\x10\x0b\xbb\xf1\xe9\x1d\x4b\xbb\xc5\xb4\xa1\x32\x59\x2a\x87\xba\x01\x20\xe3\xa3\x2a\xc0\x6a\xd4\x2a\xb9\x97\x76\xbe\xa0\x67\x47\xe5\x18\x3f\x0c\x39\x14\x1f\x56\x90\xed\x83\x5d\x1e\xe1\xa6\x1a\xd1\x72\xf4\xe8\xe5\x6d\x91\x93\x23\xb7\x1f\x0c\x88\xe3\x7d\x12\x6f\x62\xc2\xe3\x47\x45\xd6\x8e\x0f\x26\x69\x70\x1b\x6e\xab\xb2\x24\x9d\x37\x39\x8a\x57\xbf\x5e\x81\xbf\xfa\xee\x4e\xa3\x03\xc2\xdd\x5d\xba\xf5\xba\x42\xeb\xb1\x4f\xfd\xe9\x9b\x7a\x15\xa6\x94\xef\x45\xe9\x13\x57\xae\x6e\x5c\x51\xbf\x5c\x02\x6a\x3f\x42\x57\x44\xc2\xf5\x6d\x6a\x99\x0d\xc3\x69\x0a\xdc\xa6\x59\x6e\x59\x6b\x34\x62\x52\xde\x67\xa8\x37\x3e\x52\x81\xf1\x47\x86\x07\xc3\x9d\x87\x07\xa9\x3a\x51\x82\x40\xce\x00\xd8\xb0\x82\xe1\x5d\x4a\xc1\x09\x37\x35\x7e\x3a\x35\xbe\xf5\x80\xa7\xb8\xbc\x93\xe6\x0c\x75\x76\xda\x1c\x72\x9b\xfd\xe8\x54\x63\xf3\x01\x82\xdb\x67\x36\x46\x39\xb6\x2e\xc7\x5f\xce\x18\x60\xf9\x11\x7b\x91\x80\xfc\xd9\x69\x31\xae\xe6\xb4\x38\xfc\x72\x6a\x78\x68\xea\x2d\x53\x95\xac\xa6\x0a\x13\x90\x78\x6c\x9e\x64\x89\xd2\xa4\x43\xd7\x4f\x0e\x61\x5e\xc8\x2c\x2f\x06\xa6\x20\x48\xc7\x9a\xb4\x2a\x50\x3c\x6e\x97\x98\xf2\xe2\xc5\x39\x33\xb2\x9d\x34\xd1\x09\x74\xcd\xc9\xa2\xb5\x09\x13\xe4\xe1\xe4\xaf\x8d\x46\xba\x88\x59\x0c\x52\x82\x99\xb1\x24\x50\x04\x68\x97\x4f\xdf\x33\xff\x41\x7c\x4b\x60\x07\xf0\x2d\x63\x64\xff\x13\x88\x96\x8f\x5e\x1f\x5d\x32\xdb\xd4\x8b\x4e\x94\x2a\x72\x75\x9b\xe0\x2d\x4a\xb9\x88\xb4\x79\x6c\x62\xe8\xd4\xd9\xe5\xae\xbd\xab\x8b\x85\xa0\x28\xca\x36\xa6\x74\xc3\xc7\xf3\x17\xc5\x90\xd8\xf8\xb0\xf0\x16\x85\x96\xfc\x0c\xca\xcc\x1c\x70\x3a\x79\x36\x8b\x4e\xe7\x3f\xb7\x9f\x6b\x84\x96\x1d\xda\x83\xef\xe4\x93\x89\xb5\x26\xea\x8f\xc4\xe7\x0e\x7a\x64\xde\xb8\x61\xbd\x10\xab\xbb\x1d\x3b\xd6\x94\x9b\xe1\x6a\x09\x43\x5b\xfc\xd4\x87\x04\xe3\x6a\x85\xc7\x2b\x36\x3b\xf5\xab\xfc\x79\x14\xa6\xf0\x0c\x8e\x82\x78\xdb\x60\x31\x29\xb5\xe4\x78\xc6\x5a\x78\xcb\xc6\x8f\xeb\x4a\x7c\xa2\x6f\x81\x3a\xec\xa5\xb6\xa8\x9b\xd7\x70\x47\xff\x85\x83\xfe\x05\x43\x95\x26\x96\xd0\x40\x51\x0b\x3b\x48\x63\x19\x83\xf6\xeb\x8c\x00\x1d\x7a\xc8\xa7\x80\x8a\xec\x88\xe8\x5f\x2b\x67\xad\xc4\x92\x4f\xa8\x6c\xdb\x7a\x15\xf2\x4a\xb8\x61\x43\x6f\xe4\x97\x6f\x3a\xd6\xd2\x21\x17\xfb\x91\x02\x6c\x51\x24\xaa\xa3\xdc\xad\x9b\xef\x9e\xaa\xa5\x46\xeb\x0c\xb1\x7f\x21\x16\x6e\x6b\xd4\xbe\x8f\x51\x70\x48\x30\xfc\xc9\x38\x38\x4e\x35\x5e\x08\xcb\x9f\x9b\xa4\xcb\xb3\x47\xc3\xe3\xb3\x06\xdc\xce\x7d\x89\x06\x0f\x9f\x93\x64\x12\xef\xde\xd2\xf2\x83\xde\x0d\xe6\xdc\xe2\x70\x66\xf5\xc1\x30\x08\x0a\xbf\xfe\x6c\x4b\xbc\x67\x6b\x97\x6e\x98\xe6\x60\xd1\x24\xe1\xe1\x7a\x3c\x57\x98\xd4\x73\x19\x3e\x65\xd0\x9d\x39\xf6\x1a\xdf\x8c\x33\x98\xa6\x43\xa2\x2c\xd2\xcf\x24\x5b\x0b\xdc\xc7\x9b\x12\xfc\xdb\xc5\xa4\x63\xec\x3c\x1d\xa3\xe6\x24\x9b\xda\x32\x3c\xb1\xb5\xc6\x23\xb7\x31\xa8\x39\x53\x91\xb8\x9f\x40\x4a\xfe\x3d\x99\x33\x79\xdb\x4e\x18\x0a\xcd\xc8\x93\xba\x61\x4a\x00\x1a\x3a\xce\x07\xe0\xe8\xc7\x6f\x75\x89\x28\x05\x41\xeb\x4b\x76\x34\xd9\x97\x23\x35\x00\x68\xb2\x65\x04\x4b\xac\x4d\x8e\x4d\x28\x7d\x7c\x25\xdf\x9f\xee\x90\xf5\x7f\x3f\xc1\xf3\xc7\x7f\x7f\x31\x86\x87\xd6\xb0\xdb\xc4\xb1\x04\x4c\xdd\xe2\xb4\xda\x4d\xb2\x34\x95\x79\x94\x38\xa0\xc6\xd1\xab\x71\x04\xee\x6f\xca\x91\xc5\xed\x75\x39\x92\xb3\x2d\x7e\x5c\xcd\x3b\xd6\xd8\xca\x7a\x9a\x79\x42\xc3\xe1\xa1\x1a\xa3\xd9\x14\x20\xaf\x46\x69\xe8\x08\x9f\x8f\x19\x03\x65\x30\xc3\x1d\x94\x69\xba\x6c\x1c\x7f\xa7\x30\xa9\xf8\xbe\x98\x75\x10\xa8\x7d\x3b\x77\x90\x59\x9a\xdf\xcf\x44\xa8\xa6\x09\xcf\xa5\xf8\x1e\xc5\x0f\x73\x68\x6f\xe2\x87\x23\x5e\xce\x66\x1d\x6b\x8d\x9c\x03\x58\x3f\xd5\xb9\x76\x13\x04\x41\xcc\x57\x44\xf1\x62\x63\x3d\x7b\xc9\x8e\x2d\x6a\x5e\x51\xc0\x17\x58\x79\xfd\x89\xd1\x66\xc3\xc4\x14\xe5\x8a\x45\xc4\x60\xd6\x6f\xc5\x4f\xab\x70\x39\xf7\x24\x56\xc8\xcd\x34\xad\x69\x52\x85\x13\x37\x56\x1d\x77\x74\x31\x2d\x5e\x13\x67\x84\x0d\x5e\xf6\x34\x59\x6b\x54\x2b\x8c\xb9\x99\x2d\xca\x57\xd0\x4d\xd5\xaf\x8f\xe7\xda\x14\x26\x43\x3c\x37\xf0\xdc\x3c\xb3\x7e\x0e\xe5\xf3\x19\xf5\x7b\x33\x68\xf3\x66\x6e\x7d\x7a\x28\x1b\x40\xf2\x64\x86\xb3\xf4\xe7\x11\xd6\x76\x2e\xdf\xe7\xcc\x0b\x8d\x81\x61\x95\x4f\x44\x61\x8f\x9f\x1d\xf4\x10\xcc\x28\x01\x84\x59\x20\x9b\x4d\x98\x61\x9a\xce\x5a\xa9\xad\xc7\xdf\x2d\xc9\x7e\x0c\x82\xe0\xc0\x0b\xfc\xbd\xe8\xa2\x91\xb0\x63\xf9\x51\xc7\x5a\x7a\x78\xed\x1b\xd0\x7c\x6d\x67\x17\x4a\xe7\x18\x17\x5a\x7e\x77\x51\xe4\xf2\xc5\xfe\x0e\xb5\x79\x87\xdc\xe8\xd8\xfc\xc2\x7b\x53\x96\xf3\x75\x1c\x1e\x98\xda\xd5\x12\x2e\x0d\xc4\x9f\x88\xad\xf9\x6b\x10\x04\x6c\x21\xfe\xce\x75\x07\xa2\x9d\x73\x0c\xfe\x24\x27\x89\xcd\xbe\xac\x5c\x5f\xec\xce\x3b\x96\x14\x53\x7a\x61\x7f\x3e\xef\x35\xa1\x88\x5b\x4b\x9d\x34\x71\x1f\x4c\xa3\xb6\xcc\xad\x97\xde\xff\xd7\x7c\x29\x66\xbf\x08\x11\x96\xbf\x52\x4e\x24\xd6\x41\x02\xa0\x80\x51\x65\x26\x27\x36\xb3\x50\x13\x75\x04\xb3\xc7\xc9\xd2\x63\x8a\x86\xe7\xba\x0d\x1c\x71\x2c\x1e\xa0\x66\x5d\x0a\xaf\xb6\xb9\x0f\x82\xcd\xfd\x9b\x5e\x37\x08\x7a\xa2\x7b\xd2\x8a\xe9\x31\xb4\xd0\xd7\x56\x31\xdd\x67\x05\xd7\x6a\xf8\x47\x76\xf9\xa5\x72\x64\x38\xcb\x8e\x6e\x55\xfb\xda\x9c\xcb\xfc\x8c\xb6\xac\xfc\x87\x2c\xdf\xd8\xec\x27\xcc\xb7\xd9\xa0\xcb\x79\x96\x6f\x6e\xab\x27\xd6\x90\x91\x35\xeb\x68\xcb\x37\x97\x12\x83\xce\xd8\x2b\x25\x96\x6f\xec\x60\xef\xed\x6c\xe4\x58\xa2\xe6\x78\xbd\x18\xfd\x17\x2c\xdf\xf5\x87\x57\x00\x9d\x58\xbe\xd1\x98\x0f\xbb\xcd\xc8\xb7\x7c\xa3\xa0\x0f\x3e\x5b\x50\x2c\xdf\xd5\x07\x07\x82\x67\x5a\xbe\x05\x9d\x1b\x27\x2d\xdf\xcf\xcf\x2b\x69\xf9\xde\x8b\xc5\x25\x03\x3d\x92\xfc\xe4\xfe\xe5\x8b\xbe\xc4\xb7\xd5\x48\x99\x1f\x8f\xda\xf2\x0d\xd6\x25\xc5\xd4\x78\x7c\xed\xee\xfc\x23\x08\xb3\x1a\xfc\xa3\x87\xd0\x94\x65\x98\x19\x71\x11\x2c\xcc\xe1\x17\x9f\x2a\xbf\x04\x1d\xc8\xdb\xf5\x83\x3e\x22\xd8\xd7\xb9\x17\xf6\x37\xa1\x66\xc2\x6d\x5b\x75\x97\xfd\x68\xcc\x3a\xe2\x77\x4f\x9b\xd1\xba\x3a\x47\xec\xe8\x9c\x07\x5b\xd5\x9b\x0b\x3a\xf6\xe7\xae\xd1\xc6\x8a\xdf\x6c\x59\xfa\x39\x9c\x67\x55\x51\xe7\x12\x55\xfa\x19\x80\xa3\xe9\x85\xfd\x45\xc7\x92\x83\x0b\x7d\x24\xbe\xa6\xb8\x3a\x16\xfd\xf0\xf4\x19\x33\x70\x59\x75\xc6\x4b\x36\x07\x77\xf4\x7a\xd2\xd8\x7a\x62\x2d\x96\xda\x42\x39\x5b\x80\x73\x5d\xa0\xbc\x11\x66\xd6\x33\x97\xa2\x1e\xda\xcf\xc8\x34\x63\x60\x4e\xa3\xa2\x99\xa6\x78\xad\x86\x47\x32\x6f\xfd\xac\x8f\x5c\x44\x28\x84\x96\x65\x7d\x77\x16\xc3\x4a\x7f\xe2\x19\x07\x31\x53\x19\xa5\x20\x59\x2c\x11\xc7\xa8\x3a\x05\x1a\xcc\xe6\x42\x2a\x65\x8a\xa3\x0d\xc7\xaa\x1c\x4b\xfc\x06\x08\xa1\xcb\xcc\x1a\x83\xb2\x4e\x5d\xb5\xa3\xee\x0f\xb4\x81\x4a\xb4\x5f\xe2\x5a\xb1\x28\xcb\x4b\xb1\x9e\xa7\x19\x1a\xbd\xb3\x65\x38\xea\x24\x95\x01\x50\x50\x9d\x63\xf8\x32\x77\x15\xe2\x07\xdc\x4e\xc8\xa8\xc7\x5e\xf1\xd0\xee\x08\x78\xd4\xe6\xa3\x4d\x31\x0a\xb7\x99\x9b\x82\xfb\xba\x57\x3c\xa2\xc3\x0f\x0a\xfb\xc8\x75\x5c\x53\x1f\x4f\xfb\x93\xfa\xce\x3c\x72\x41\xfc\x74\x2d\x53\xdc\xf2\x0e\xde\xf5\xa3\x7d\xc1\x8a\x00\x28\x0d\x72\x50\x1d\xb6\x95\xb2\x85\x4e\xea\xd0\x2a\x80\x06\xea\x2c\x57\xa0\xff\xc4\x96\xc7\x78\xd3\x7d\xf6\x5b\x07\xaf\x39\xe0\x2b\x1b\x53\x56\x47\xb0\x05\xf1\xbd\xee\xde\x16\x88\x3f\xb1\x84\x13\x4b\x74\x6c\x29\x15\x89\x10\x1e\xeb\x87\x05\xc3\x73\x8d\xd7\x9c\x5e\xa3\x5d\x9a\x0b\xc5\x3f\x6e\x18\x2c\x30\x2c\x66\x94\xaf\x38\xe5\x49\x25\x1b\x2f\x22\xdf\x3c\x2a\x3e\xd0\xbf\xf7\xac\x00\xe2\x87\x39\xff\xfb\xc4\xce\x14\x0f\xf6\x4e\x46\xff\x11\xe7\xa2\x11\xf2\x6e\x58\xc3\xa0\xe4\x15\x6e\x76\x8e\xe0\xee\x73\xa1\x5e\x79\x8c\x09\x76\x05\x38\xb9\x7c\xe3\xe1\xf3\x74\x4b\xa2\x3f\xc5\x7a\xa8\x77\xac\xcb\xbf\x54\xbf\xf9\x3e\xbe\x70\x2e\xb5\x07\xa5\x6f\xfb\xab\x83\x7c\xab\x97\x71\xd8\xb5\x67\x11\xa4\x6b\xc8\x7c\xc5\x46\xcb\xd3\xf8\x1e\x36\xa4\x08\x7d\xac\x67\xee\x14\x7b\xe6\x88\xba\x01\x40\x30\x14\x84\x06\x5d\x04\xa6\xc6\x5b\x88\x91\xaf\xc0\x57\x9a\x68\xfb\x42\x4b\xd0\xab\xb6\xad\x3d\x85\xc1\x52\x4e\x48\x9c\x08\xd1\x87\x26\xa8\x07\x52\xc6\x7c\x92\x57\xa4\x76\xf8\x64\x2b\x5c\xa8\x9b\x36\x96\x64\xed\x17\x9e\xff\xca\x50\xef\x49\xdc\x57\x7a\xce\x66\x14\x0f\x96\x13\xba\xb4\x27\xa1\xec\x98\x67\xe9\x92\x1e\x21\xa0\x80\xd1\xef\x56\x88\x01\xb8\x82\x83\x4a\x91\xe9\xf6\xba\x18\x3a\xdf\x97\xeb\x93\x03\x73\xc8\xdf\x42\x34\x73\xa4\xd9\x02\xae\xfc\xd7\x21\x47\xa6\x31\x07\x72\xda\x00\x78\x72\x5e\xc7\x74\x58\xe1\x8a\x5c\x86\x19\x2e\x6d\xc9\x7c\x68\x1a\x48\xc5\x15\x15\xa4\xfe\xf1\x08\x85\xc1\xbd\x0e\x04\x58\x25\xd6\xf9\x9d\xe9\xc6\x2b\xe8\x4c\x77\x6c\x96\x86\x54\xb9\x2f\x1f\x98\x2c\xee\xcb\x81\xf1\x27\x5b\x65\x8b\xb9\x09\x3d\x1a\x97\xdb\x8a\x2e\xc6\xd4\x2e\xe8\x31\x2f\x36\x08\xab\x8b\xb3\xbc\xa9\x26\xa0\x7f\xf4\x27\x3e\xc8\x70\x61\xe9\x5a\x92\x76\xb2\x91\xc2\x1e\x74\xf6\x17\x9b\x32\xa0\xf2\x81\x1c\xd2\x85\x32\xf2\x52\xc2\xe7\x54\xd9\xd4\x51\x81\x37\xd3\x1b\x64\x06\x46\x13\xf3\x6a\x68\x7b\xfe\xa4\x9c\xe8\xe4\x6e\xeb\x4d\x76\x27\x1b\x52\xc9\x7d\x2d\xb4\xd5\x2d\x4c\x0a\xc8\x24\x6d\xa6\x0c\xf9\xfa\x9c\x21\x97\x79\xc8\xa5\x33\x86\xfc\x31\x6d\xc8\xd9\x9d\x14\xf8\x5a\xd6\x86\x45\xb7\xa3\x1c\x48\xc0\xd4\xe5\xc0\x98\xae\x0c\xe7\xd5\x36\x25\xee\xc1\xb8\x76\x44\x1e\xaa\x2d\x8c\x9c\xb8\x70\x05\x0a\x97\xa1\x75\x19\x53\x87\xc9\xe5\x15\xe2\x43\x98\xdd\x4d\x1e\x9e\xdf\x09\x43\xc6\xe3\xf7\xb2\x91\x9e\x45\xe2\x52\x57\x3b\xd4\xa9\xb5\x21\xe5\xd0\x83\x28\x57\x52\x3e\xf6\x1e\xc5\x4f\xcc\x9a\x13\xcd\xc7\x9c\xe2\x40\xc0\x7b\xe4\x40\x26\xf2\x8b\x74\x09\x8b\xd3\xc1\xb7\x79\x3c\x7b\x86\x3e\xb7\x7d\xc6\xbc\x4f\x53\x09\x33\xd5\x76\x3a\x2f\x6d\x84\xab\x12\x73\x2e\x66\x8c\x2f\xf7\x76\x64\x4e\x72\x29\x65\x89\xd5\xd4\xe6\xd5\x73\xdc\x7b\xd4\x9d\x2e\x98\xf9\x7f\x9c\xaa\xeb\xf8\xf3\xa8\xba\x30\xaa\xa6\x43\xef\x99\x7e\x07\xda\xce\xfa\xc2\x7e\x35\x68\xd5\x6b\xb8\x53\x8f\x23\xff\x03\xbc\x34\xeb\x89\x0f\x9b\x48\x11\xd0\x51\x4c\x40\x07\x33\x22\xa0\x93\x70\x7d\xee\x02\xd9\xd3\xe5\xff\xf2\x62\x38\x60\x78\xad\x6f\x76\xeb\xc4\x94\x2e\x98\x2c\x68\x6d\x58\x1b\x40\x24\xc1\x30\xf2\x8b\x06\x54\xf1\x44\x7b\x01\x8a\x43\x3d\x54\x7c\xfb\x25\x47\x8b\xb4\x84\xf7\xdc\xcf\x96\xee\x18\xe2\x93\x28\x73\x29\x6e\x53\x65\xb9\x07\x39\x17\x77\xfd\xfd\xda\xb7\xe3\x4d\xff\xd8\x8e\x37\x5a\xc2\x5e\xb4\x04\xb7\xb3\x64\xbb\xde\x26\x9c\xe2\xcd\x6c\x29\x72\xea\x7c\x69\x0f\x0c\x2e\x53\x07\x6a\x57\xcc\x1b\xe1\x16\x0a\xf1\xa1\x12\x51\xbe\xac\xb6\xef\x46\xa2\xec\x83\x70\xce\x89\x4b\xb3\xac\x4d\x8f\xc5\x44\xb3\xf4\x28\x6d\xd7\xdc\xd7\x32\x08\x3b\x50\x26\xe5\x89\x19\x31\x09\xc7\x6b\x99\x38\x43\xfd\x6b\x10\x04\x63\xc6\x05\x18\x12\x0f\x30\xc8\xb2\x3a\xa4\xd6\x32\x71\x7c\x3a\xdb\x2d\x63\xf7\x64\x86\x16\xe8\xf0\xab\xa4\x94\x28\x14\xda\xf6\x3a\x46\xf5\xc8\x68\x78\x38\x86\x6f\x6a\x61\x10\xd4\x42\xeb\x8e\x53\xbc\x21\x6f\x1c\x89\x22\x51\x0b\xad\x2c\xea\x38\x3d\xd5\x0c\x93\xed\x42\x2d\x86\xac\x75\xa1\x92\xa1\xd7\xc5\xba\x1f\x66\xcf\xe8\xb8\x61\xe7\x8d\x1f\xd9\x53\x2a\xa2\x88\xf2\xd4\x23\xef\x31\x89\x84\x21\xed\x16\x91\x0f\xc6\x6e\x3e\x71\x2f\x93\x66\xe7\x2b\x5d\xa2\xed\xf8\xe3\x50\xeb\xf9\x46\xf8\xa7\x08\x9d\xab\xb0\xef\x0f\xa2\xed\xb4\x17\xcb\xc4\xc5\x7c\xf1\x90\x78\xd5\x8b\xf9\x50\x96\xc7\xbf\xfb\xaa\xcc\x0d\x4e\x5a\xf3\x82\xa9\xc0\x07\xfb\x82\x3d\x6e\xbf\xd8\x17\x33\xa6\x3d\xf3\x47\xfb\x6a\x01\x72\xa4\x5e\x89\x32\x44\xbd\xda\xf0\xef\xad\x7a\xb5\xe2\xdf\x6b\xf5\x8a\xcf\xfe\x6f\x8a\x18\xc5\x30\x29\x3d\x12\x3f\x87\x1e\x66\x67\x99\xaa\x01\x92\x15\xf4\x44\xbc\x34\x1a\xb4\xcc\x1f\xf5\x3f\x3e\x67\xcb\x3e\x0c\x43\xec\xdc\xf2\xc8\x71\xab\x9a\x0d\x25\x78\xc5\x76\xa0\x0f\xc3\xc3\x95\x5c\x57\x67\x40\xfe\xe4\xc9\x1e\x99\x74\xe7\xc1\x91\xc1\xb3\xb5\xf7\x13\x12\x1d\xf8\xe1\xb1\x17\x5f\x60\x82\x6b\xb0\x8e\xa9\xbc\xef\xf0\x83\xb3\x85\xb8\x06\xb3\xf3\x15\x10\x68\xf0\x5d\x62\x6a\xf0\xf6\x59\x2c\x44\xcb\xbc\x5c\x18\x93\x1b\x09\x0e\x24\x0e\x5c\x49\x25\x18\x04\xb8\x52\xad\x17\x89\x69\xa5\x17\x9d\x5b\x69\x32\x8c\x94\xfe\x0f\xd6\x9f\xda\x06\xa1\xfe\xd1\xf9\xaa\x1c\x5a\x8d\x2e\x5c\x3e\x90\xc3\x7e\x09\x69\x77\xa1\xbc\x25\x96\xdb\x8b\x94\x22\x9b\x85\x08\xc4\xdb\xf3\xe7\xb4\x5b\xb0\x9c\xb9\x3f\xbf\xca\x61\x21\x46\x8a\x63\x4a\xa5\x23\x57\x5a\xdc\xd1\xe2\x14\xd9\xef\xb9\xb0\xb0\xa6\xd5\x8e\xd7\x48\xbd\xc0\x41\x00\xaa\x5c\xb4\x64\x16\xb0\x7c\x6e\xeb\xf1\xe1\xc3\x48\x59\x45\x15\xdb\x48\xde\x6d\x3d\x3e\x90\x2a\x61\x10\x54\xe8\x40\x3c\xab\xf5\xc6\x42\xe2\x37\x34\x51\xc5\x36\x32\x2c\x3a\xad\xe7\x16\x46\x11\x7a\x6e\xeb\xa3\x71\x68\x4c\x58\xa1\xd7\xc8\xd4\x6d\xbd\xb7\xc4\xf5\xb9\xe5\x99\x6d\x0f\x96\xf0\x7d\x47\x05\x69\x60\xee\xb6\x7b\xc2\xba\xf8\x93\xcd\xcd\xd0\x5b\x8c\x70\x3e\xef\xc2\x31\x5a\x9c\x2c\x05\xe5\xd8\x41\x5d\xcc\x58\x0b\x61\x84\xe6\x4b\x2d\x97\xb6\xdc\xed\x3c\x7e\x70\x76\xc8\x66\xcf\xa5\x8a\x85\xb6\x4b\x0d\xfa\x3f\x5d\x52\x72\xbc\x92\x91\xd2\x6c\xd8\x46\xda\x5b\xa7\x85\x93\xf2\x83\x4c\x2d\x00\x12\x65\xb7\x00\x85\x68\x18\x13\xe6\x5a\xc0\x85\x16\xb7\xcb\xc8\x9a\xd9\x8e\xfd\x30\x31\x21\x29\x98\x9f\x81\x64\x82\x26\x9a\x01\x57\xae\x3d\xba\xc5\x1d\x61\xe4\x93\x5b\x2b\xe9\xaf\xf9\x14\xaa\x1d\x42\x98\xe8\x8a\x05\x6e\x6b\xb3\x14\x90\x6e\x31\x3c\xdb\x7a\xcf\x55\x2f\x95\x0a\x12\x8d\xa8\x8c\xca\xbb\xa5\x6c\xbf\xbd\x8b\x3b\x1b\x5c\xa1\x7f\xb0\x8b\x5d\x45\x9d\x5a\x21\x84\xb9\xb8\x8e\x37\x8d\x3d\xbb\xbc\x37\xf7\xde\xf4\x6e\xd8\xe3\xb4\xcd\x50\x32\x37\x85\x1b\xb7\x96\x99\x9f\xec\x2e\x2c\x7f\x15\x59\xe3\x79\x04\x22\x30\xdd\x5d\x58\x6d\xc0\x9e\xe1\xe4\x7b\x2c\x49\xff\x5d\x49\x96\x15\xdc\x56\x99\x1e\xae\xdd\x0a\x96\x77\xea\x57\x10\x60\x84\xc9\x43\xf3\xbd\x29\x17\xff\x37\x0d\x2b\x6f\x0b\xce\x42\xd3\x9e\x5d\x03\xfe\xe3\x8f\x4e\xdf\x88\x9e\xd7\xc4\xf1\xb2\x61\x13\xc0\x46\x42\xeb\xc5\x52\x64\xd4\x64\xed\xca\xee\x13\xb6\xf1\x9e\xcd\x27\x95\xa5\xd0\x91\xa3\x78\xbe\x5d\x06\xc1\xd5\xf4\xad\xf9\xda\x8b\xc8\x3a\x1f\x73\x3f\xcb\x59\x47\xe7\xff\x99\xb5\x82\x60\xd6\xda\xb7\x9c\x6d\x5c\x44\x18\xf5\x35\x1d\xe7\xd6\x47\xe9\x52\xbb\x03\xbc\x64\x6e\xbc\xb7\xbd\xb9\x61\x04\x9b\x28\x08\x36\x51\x8d\x63\x3e\x2f\xed\x98\x99\x0e\x56\x81\x56\x6a\x16\x1d\x49\x48\x5f\x07\x1b\xdf\x58\x0a\x4d\xae\x1b\xa2\x10\x43\x81\x27\xd5\x30\x22\x41\x13\x5f\x73\x78\x83\xe1\xe4\xf1\xda\x1e\xc2\xe3\xbe\x42\x24\x48\x18\x31\xb1\x6e\x84\x41\xd0\x08\xfb\xab\xce\x69\xac\xdd\xbe\x33\x56\xe5\xf6\x58\xab\x97\xb1\x7b\x07\x2b\x9e\x4b\x2f\x1a\xae\x3b\xf6\xf3\xe5\x28\x4c\xa1\x9a\xa6\xd5\xde\x11\x89\x4f\x8f\x3d\xc7\x37\xfa\xb7\x87\x8d\x80\x62\x34\xcc\xe0\xbc\x51\x76\x04\x07\xe4\x82\x89\x47\xc8\x8a\xdf\xd8\xac\xff\xce\xf4\x14\xef\x59\x01\x90\x65\x23\xaa\x30\x87\x5e\x3a\x9c\x42\x7c\x70\xc6\x80\xbb\xcc\x58\xb7\xd1\x0a\x72\xea\xaa\x93\x0a\xf0\xc9\x5b\xc9\x41\x49\xe3\xbf\xe0\x8d\x7c\x93\x18\x29\xf9\xe8\xf6\x93\x58\x0c\xae\x64\x04\x7f\xa8\x4b\xd9\xeb\x2c\x30\xa0\x9d\xd0\xa1\xf6\xcb\x15\xa4\x54\x56\x1c\x57\x5b\x0e\x88\xdb\xf0\x50\x66\xfb\xd6\xf0\x52\x43\x85\xbb\x14\x36\x35\x0d\x85\xef\x4c\x4c\x3e\xa3\x91\xef\xc6\x20\xa0\xcb\x29\xf1\x7c\xa7\x80\xc3\x0c\x70\x59\x2a\xc3\xe2\xba\x78\xa1\x9c\x35\x48\x19\x75\xa8\xd0\x02\x2e\xcc\x19\xbb\x58\x89\xd2\x77\x89\x96\x56\x2b\x72\x99\xb8\xe7\x6d\x4f\x55\xe3\x6d\x18\xd4\x8b\x24\xcc\xe5\xc2\x63\xc9\x1e\x1a\x80\x7d\xda\xa1\x41\x00\x5b\xbf\xf8\x7c\xa9\x8d\x98\x79\xaf\xa7\xdd\xa8\x80\x13\x85\xd1\x43\xbb\xae\x28\xbd\x5f\x6c\xc2\x1d\x87\x16\x55\xe5\x1a\x54\xf2\xd8\x12\xc6\x60\xfd\x8b\xfe\xd5\x87\xe7\xf6\x67\xd0\xa1\xde\x39\x85\x0e\xf1\x44\x92\x0d\xb7\xd4\xa1\x7c\x3f\xbd\x75\x50\x65\xfd\x4b\xeb\x85\x27\xb7\x44\xc0\x06\x4f\x29\xea\x36\xb7\xde\xfe\x97\xe3\x05\x92\x56\xef\xad\x2e\x21\xf5\xb6\xbf\xa0\x59\xf0\xaf\xf6\xa1\x09\x26\x31\x97\xe8\x98\xe2\x03\xa4\x36\x00\x0f\x75\x42\xb9\xcc\x06\xde\xd2\x1b\x7c\xf7\x69\xc6\xf8\xe3\x6f\x8e\x24\xa3\xa1\x97\x8f\xc8\xa5\x4b\xf1\xe7\x1c\xfc\x9f\x8a\x70\x02\x72\xd7\x2c\x59\x3e\xe6\xb5\x7f\x2a\x47\x28\x9f\xa2\x9d\x6e\xcf\x2f\xed\xb7\x76\xd6\x3e\xa5\x0b\x20\x55\xde\xa7\xbb\xb0\x58\xfa\x8d\x1d\x75\xc9\x69\xdb\x11\xa6\x61\x40\x79\x28\x1f\x2d\xca\x37\x21\x46\x64\xe0\x7c\x63\x1c\x22\xa6\x46\x98\x38\x83\xad\xec\x7c\xc4\x1c\x2b\x2b\x66\x43\xb6\x2b\xf7\x4c\xde\x85\x36\xfe\x42\x7f\x4a\xdb\xf8\xbb\x1d\x42\xfe\xf4\x10\x72\xe3\x10\x6e\x65\xe7\x0c\xa1\xb6\xc2\x7d\xd8\x8c\x21\xac\x08\xa2\x13\xb2\xb0\x6c\xc2\xe9\xc4\x53\x4b\x59\x2d\x2c\xa3\xef\x25\x69\x8c\xf4\xb0\x44\x68\x59\x8c\x42\xd1\xa7\x8e\xbd\x78\xba\x89\x16\x9f\x52\x05\x97\x7a\x93\x9f\xeb\x25\xf7\xdc\xed\x6f\x5a\x59\x4d\xf8\xb3\x21\x83\xee\x94\x21\x0a\xa1\x8a\x45\xb5\xd3\x20\xad\x8c\x45\xfb\x52\x3d\x0b\xa8\x8d\x95\xd1\xb4\x2a\xb4\x2c\x03\x2d\x85\xe1\x4f\x52\xe4\x24\x8e\xef\xcc\x11\xa3\x5a\xba\xe2\x76\xd8\xb4\x89\xe3\x24\xc9\x56\xb0\x5f\x23\xe2\x67\xac\x2f\x70\xfc\x94\x67\x49\x89\xd1\x97\x04\x40\x2a\xb0\x31\x5d\x39\x50\x6f\x53\xd3\x4b\x01\xbd\xcc\x2e\xf8\xb6\xd2\xf0\xa5\x7d\x8c\x1e\x00\x5f\xc8\xac\x85\x52\xa8\xd7\x4d\x36\xf2\x39\xbc\xd3\x95\x1b\x67\xb8\xc0\xbc\xc2\x8c\xb1\x42\xc0\xea\x1e\x11\x69\x71\x35\x52\xcf\x20\x14\x5c\x0e\xc1\xd1\x13\xe7\x48\x5e\x3b\xb7\x86\x37\x7b\x84\xee\x9b\x11\x6b\xbc\xee\x58\xaf\x3c\x76\x2f\x2d\xad\x8c\xb2\x66\x75\x4a\x7a\x87\x6b\xf9\x67\x59\x04\x6b\xf4\xde\xff\x4a\x19\x5b\x9a\x65\x35\xb5\x44\x94\x7d\x56\x2a\x40\x64\xb6\xa2\x60\xa0\xda\x71\xb8\x19\xfa\x0e\x6e\x66\xb6\x82\x13\xfd\xda\xb9\x5a\x6b\xf5\x53\x53\x47\xcc\x6a\xc7\x87\x84\xc3\xbf\x91\x4b\x0e\x9c\x36\x1c\x35\x97\x61\xf2\x61\xe6\xa8\xdc\x41\xfe\x8b\x9f\x38\x2d\x50\x91\x55\xca\x95\x1f\xac\xa7\x81\x56\xba\xb2\x4c\xd3\x67\xa9\xa8\x03\x6b\xe8\x2c\xbc\x7a\x8d\x65\x9a\xa6\x8a\xa5\x03\x51\x77\xc5\xd3\xa5\x8b\xd7\x90\x16\x7a\xa1\xf3\x1a\xfe\x14\xb2\xb9\xbd\x23\xaf\x36\x03\x2d\x9e\xb9\x8d\xd9\xc3\x80\xe4\x94\xfb\xf5\xda\x75\x0a\x16\x3e\xae\x82\xb8\xdc\xef\xf5\xd7\xc4\xb9\xfa\x5e\x79\xfb\xd2\x16\xe9\xf5\x42\xde\x22\xf5\x45\xe8\xb0\xd2\x37\x54\xb1\xea\x1f\xb7\x31\x72\xaf\x33\x8e\x8b\xcb\x20\x08\xc6\xfd\x8e\xb6\x8a\x38\xf5\x2c\xc9\x8d\x27\x71\x82\xe4\xce\xb8\x14\xd2\x59\x3d\x4f\x6e\xe1\x40\x9a\x41\x36\x63\x62\x1c\xe4\x07\x74\x8a\xed\xc2\xe3\x3c\x54\xb6\x4e\x6b\xad\x3e\x10\xc1\x98\x53\x9d\x42\x58\x54\xa5\xae\x38\x04\xb3\x61\x0b\x4a\x65\x2a\xf4\xb5\x5c\xd6\x9c\xb6\x16\x0a\x45\x4c\x33\x60\xb9\xfc\x53\x81\x8d\xc9\x82\x88\x6c\xd6\x20\x50\xbd\xd1\x2e\x57\xf6\x7d\xf3\x86\x89\x94\xda\xa5\xe7\x9c\x38\x86\x86\xd9\x19\x5b\xf1\x0f\x87\xcd\x93\xb3\x64\xe2\x1f\xd6\x5b\x89\x8c\x53\x77\x08\xdb\x30\x45\x1a\x49\x97\x76\x5d\xfa\x1e\x8f\x3e\x9d\xbe\xcb\xb5\x58\x09\xba\x95\x8a\x9a\x0d\x50\x1e\xea\xbc\xb9\x4a\x71\xe0\x61\x05\xe5\x85\x53\xba\xa9\xc5\x7c\x19\x6d\xf2\xdc\x99\xcd\x05\x6e\x72\xad\xc3\x1f\xe3\x66\xc6\x33\x1b\x0b\xb7\x3b\x8c\xf8\x9e\xeb\x30\x4a\x41\x63\x3b\x57\xf7\x3d\xf5\xb5\x36\x6a\xef\x55\xd6\x61\xbf\x12\x87\x46\x2b\xe9\xb2\xb1\xd2\xea\x24\xdd\xd0\xf3\xe5\x07\x66\x12\xdf\x66\x74\x4a\xb0\x61\x5b\x5c\x6e\x6d\xf6\xf8\x25\xe9\x7a\xb9\xbd\xc1\x9a\x49\x38\x74\x2c\xc3\xb5\x41\x6f\xa6\xd1\xa2\x46\x36\x4d\x6f\xf3\x17\x3a\x6f\x80\xd4\x5f\x85\x56\x80\x7d\x4b\xf2\xab\xbb\x06\x34\x1c\xc7\x03\x44\x76\x05\xdb\x6f\x57\x9a\xfb\x3b\xe1\xe2\xd3\x4e\xf7\xd2\xef\x2a\x33\x1d\xbc\xb5\x11\xbb\xec\xc8\x4f\x70\xe4\x14\x1b\xd2\x1a\x86\xcf\x1a\x2b\xac\xeb\xfc\x4f\x22\x06\x9b\x84\xb7\x62\xf8\x05\x4f\xce\xa5\xf2\xdf\xb5\xd5\x30\x51\x98\x26\x55\x63\xa0\x17\x75\x80\xb4\x59\x04\xc3\x6f\xfc\x77\x85\xf4\xad\xd5\x55\x2b\xab\xc8\x6c\xc1\x77\xaa\x87\x7b\x06\x01\x7c\x75\x78\x5a\x60\x1c\x0f\x1f\xa8\x95\xc5\x95\xb6\x10\x42\x67\xff\x98\xd5\xf0\x02\x0d\x37\x97\x70\xfe\x84\xd7\x9b\x8d\x9c\xf1\xf9\x8d\x1b\xa7\x02\xf1\xc6\xe0\xce\x29\x86\xc9\xfe\x7b\x73\x0f\x27\x74\x3e\xec\x84\x4f\x6d\x56\xc2\x0c\x6a\x7f\xfe\x36\x91\x83\x71\xfc\x21\x46\x2e\x52\x97\xb2\x9d\x70\xf8\x68\x99\x32\xf1\xb4\x57\x76\xdc\x0a\x13\x7e\xb8\x1a\x34\x42\x6b\x9b\xe7\x62\x8f\x0a\xa8\x2e\x34\xeb\x37\xd2\x80\xfa\xb6\xe2\x6f\xb8\xab\xfa\x91\xda\x8e\x9c\x01\xf6\xc6\xcc\x46\x6e\x71\xe7\x9d\x6a\xf3\xc2\x8c\x7d\xc3\xf0\xe0\x4e\x48\x78\x19\x49\x71\x12\x41\x68\xbe\xe9\xb5\xd9\xbe\xe5\xe1\x77\x4c\xe8\x3d\x18\x4e\x8d\x6d\xa9\x8a\x25\xae\xcf\xd9\xbd\x01\x39\x20\xdb\x1b\xce\x27\xdb\xe7\xbb\x31\xd7\x76\x91\x3f\x2a\xe2\x70\xaa\x31\xc2\x25\xd6\x55\x33\xac\x79\x13\xf2\xf4\x58\x59\x7e\x67\x39\xee\x77\x54\xfe\x83\xda\x0e\x97\x64\xa4\x37\xb5\xbf\xa8\x9d\xba\x60\xd7\x7a\x58\xbd\x59\xa1\xce\x98\xb6\xe5\x7f\x12\xf1\xa3\xa5\x6f\x88\x2e\x95\xff\x79\x60\x6b\x06\xa9\x6f\x9d\xeb\x08\xc6\x78\xc2\xe4\x42\x62\x8e\xc4\x5c\xc9\x84\xe1\x33\x06\xed\xa8\x32\x99\x28\xff\x62\x31\x42\xe3\x8a\x5d\x11\xf2\x86\xe5\x0a\x8b\xcd\x05\x7c\x57\xf6\x73\xdf\xea\x37\xec\xf1\xc9\x30\xe5\xe0\x4e\xec\x50\x7a\xd4\x8e\x65\x19\x32\x00\x31\x04\x94\xe2\xba\x33\xe4\x75\x28\x3d\x31\xb5\x64\x55\x46\x89\xff\x4d\xbf\xfb\xfb\xc4\x70\x44\x63\x24\xf9\x80\x0f\xc6\x94\xff\x1d\x10\x28\xf0\x1d\x61\xf4\xf1\x46\x78\xdc\x78\x0c\x3b\xd6\x3c\x6d\x3d\x81\x60\xb5\x62\x80\x8c\x85\x6e\xf6\xf8\x00\xaa\x3e\x98\xfc\x96\x37\xc3\xb7\xce\xa7\xc3\x17\x89\x89\xe3\xde\x89\x30\xdf\xef\xe8\x75\xb3\xeb\xe8\x4d\x37\x06\x6c\xfb\xad\xa6\xf3\x70\x1f\xc1\x28\xd9\x2d\x89\x77\x4e\x89\x3d\x55\xcb\xfc\x6f\xc3\x30\xc9\x3f\x25\xc7\x2f\x2e\x20\x5f\xb3\x26\xf1\x15\xce\x05\x97\xcd\xb7\x19\xb5\xd3\x40\x70\xf8\x22\x1a\x91\x72\x98\xb1\x8d\xca\x48\x41\xc4\x4c\xe1\x7d\x52\x16\x2c\x7c\xa5\x11\x6c\xda\xca\xb1\x8e\x62\xcd\xd6\xb2\x9a\x94\x6d\xce\xb1\x65\x2b\x29\x4e\xd5\x87\xaf\xf4\x6f\xa7\xdb\xa4\x00\xdf\x1c\xa9\x8b\x91\x79\x96\x13\x46\x73\x5d\x3d\x4d\xcd\xee\xed\x9e\xda\xbb\x12\xcb\x8a\x33\x46\x5d\x2d\x71\xef\x8b\x37\xc6\xf0\x29\xb3\x90\x25\x00\x9b\xcd\x85\x98\x70\x13\xdb\xc6\xa7\x41\x32\xc9\xd3\x2d\xee\x4c\x8b\xe5\xcc\x16\xe3\xe5\x20\x8f\xb0\xfb\x33\x1a\xcc\x6d\x2e\x20\x2f\x8e\x17\xd9\x0d\xf2\xff\xea\x77\x4b\xe7\x8e\x8c\xb0\x97\xca\x15\x93\x7d\xb9\x99\x22\x35\x36\x17\x38\x0a\x86\x8b\x4e\xe6\x30\xe2\xf2\xbc\xab\xce\x06\x27\x37\x7a\x1a\x9c\x71\xb3\xe7\x83\x13\xae\x4c\x27\xc1\x49\x8e\xec\xe7\x82\x93\x4f\xfc\xd3\xe0\x24\x4f\x09\xe6\x00\xa1\x53\xc0\xd6\xcf\x47\xa9\x8c\x7a\x03\xb7\xa0\x25\x84\x21\xc8\xf2\xa3\x03\xbc\xe7\x81\xf1\xec\xe4\x32\x07\xbb\x84\x10\xd9\xc0\x01\xc6\xe4\x48\x45\xc7\x6e\xa7\xf1\xa1\xcd\x62\xa8\x0e\xaf\xb7\x38\x59\x95\x8f\x7f\xf5\x37\x8e\x9e\xf3\x60\x03\x5f\xba\x98\x02\x98\x4b\xd3\xf6\xcf\x1c\xec\x6d\x6e\x14\xa9\xcf\xb4\xb1\x7b\xad\xd4\x75\x1e\x02\x5f\x3f\x38\xcd\xfa\x64\x45\x97\x6e\x1b\x77\xc3\xd7\x40\x5c\xb7\xc5\x57\x40\x5c\xb7\xc1\x97\x20\x6e\x15\x71\x7c\xbf\x67\xc8\x79\x15\xe3\x03\xbd\x9d\xa7\xcb\x95\xc9\x3a\xa3\x05\x42\x9b\xcc\x5d\x72\xa1\x54\x40\xfb\x6b\xd6\x00\x89\x5a\xe0\x2c\xed\x02\x25\x08\x3c\x43\x8d\x38\x43\x64\x42\x76\x5b\x91\x00\xc8\x4e\x17\x4a\xdb\x68\x8f\x71\xb1\x94\x9e\xd4\x3f\xae\xf8\x71\xc0\x0b\x51\x3f\xf8\x8d\x37\x1d\x05\xc8\x73\x8d\x3b\x2a\xd2\x55\xea\xb8\xcf\xd1\x86\xfa\x4a\xdc\x01\x5f\xbf\x1c\xf6\x4f\x34\x21\x81\x67\x99\x7e\x7d\xce\x6a\xc7\xdc\xb6\xc7\xf8\x4b\x9c\xfb\x70\xbb\x4e\x6b\xfa\x6c\x8d\xaf\xd1\x68\x27\x0d\x86\x67\xab\x97\xd3\x57\xbd\xc4\x59\x15\x65\x7c\xfe\x8c\x2a\x03\xde\xec\xd5\xe2\x09\xd0\x48\x80\xdf\xcd\xdb\xb4\x05\x49\x6b\xd2\x04\x4c\x4c\x6f\x37\xcd\x26\x9c\x76\xb5\xeb\xa5\xd0\x4c\xb3\x51\xa7\x19\x1b\xcf\x06\xad\x6b\xad\x55\x48\xe9\x81\xf5\xf9\xe9\x65\x62\xbe\x6b\x59\xce\x5e\xb9\xe7\x67\xfa\x4c\x17\xd1\x73\xd0\x4b\x83\x6f\xd2\x6f\x22\xa5\xcd\xe7\x6d\x1e\x1d\x7f\x9c\x3a\xe1\x59\x7c\x04\x72\xf0\x15\xcf\xcb\x47\xd4\x7f\xca\x3d\x01\xa1\x7d\x95\x7e\x5d\xf9\x20\x20\xae\xb0\xd2\x02\xfb\x8e\x0d\x9f\x85\x1f\xb9\x4c\x7a\x2f\xe0\xa3\x84\x2f\x33\xbe\x30\xca\x0e\x4b\x37\x47\x0f\xa1\xf8\x6a\x59\x57\xd6\xe3\x41\x19\xae\xf7\x5f\x2d\xdf\xce\x1c\xc1\x30\x4a\xa2\xb8\x72\xaa\xa1\x9b\x40\x33\xe6\xd6\x37\x21\x4e\x30\xc7\x7e\x71\x42\xc7\x54\x84\x1a\xea\xf4\x60\x20\x8e\x0f\x98\x7d\x1e\xb6\xac\x9a\x83\x4f\x4a\xd1\x25\x97\x71\x72\x52\xa5\x0b\xea\x55\x22\xd6\x97\xb1\xad\xbf\x06\x41\xb0\xad\x86\x69\xbe\xf8\xc4\xdb\xbc\xd7\x4e\xf6\x31\x33\x61\x4c\x75\x73\xdc\xa3\x58\xe4\x42\x9b\xdd\x6e\x89\x97\x15\xbe\xb1\x02\x15\x60\xe5\x41\x9f\xef\x05\x68\x84\x90\x8f\xb8\x5d\xc0\x8d\x55\x61\x28\xa4\xc1\x6d\xde\x71\xda\x3f\xec\xf9\x54\xa8\xee\x74\x78\xdd\xbb\x20\x08\x0e\xcd\xf0\x8d\x49\x1d\xa1\x0e\xe3\x9b\x78\x6e\x1c\xea\x83\x65\x30\xf0\xac\x71\x4b\xd6\xb0\x19\x97\x2a\x6f\x54\xa9\x66\x64\x86\x61\x6d\x0e\xd7\x41\x10\xac\x09\xd0\x77\x7e\x37\x3f\x83\x20\xd8\xb5\x38\x5c\xd0\x36\xaf\xee\xd8\xd0\xea\x34\x38\x75\xad\xb3\x47\x1e\x83\x20\x28\x1c\xa8\x64\x4f\x0d\x65\xef\x01\x8f\xc1\xd5\x40\xd6\x1a\xdc\x7d\x8b\x34\xf7\x9d\xab\xc1\x15\xdf\x48\xaa\x63\x8e\xc5\x57\xf7\x6e\x70\x59\xb5\x0b\xf9\x8e\xe8\x14\xa5\x62\x13\x22\xfd\xd2\x93\xda\xaf\x39\xeb\xcc\x17\x61\x29\xe4\x16\xcc\xf6\xbb\x77\x63\x6c\xfd\xc7\x37\xc6\x56\x53\x0e\x72\xb1\x96\x60\x9b\x86\xfe\xf5\xe5\xc6\xd8\x06\xc6\xcf\x8d\xf8\x11\x20\x9c\xa7\xc4\x27\x9a\x26\x63\x47\x4a\x66\x14\x75\x27\x07\xe1\x50\xda\x56\x43\xe9\xfa\x5f\xb0\xc3\x8f\x91\x1f\x99\x0d\x97\x28\x68\x45\x89\xcf\xab\xc6\x62\x14\x82\x88\xaa\x85\x4f\x5b\xd8\xde\x98\x5b\xc6\xad\xbb\x78\x0e\x64\xe5\x61\x43\x7a\x07\x23\x58\x6c\x64\xb2\x47\xd4\x92\x4b\x30\x1b\x13\x99\x2a\x86\x65\x11\x5f\x4b\xcc\xa5\xf6\x78\xb4\xdb\x4b\x30\xef\x42\x33\xca\x2b\x1e\x15\x1a\xd9\x61\x44\x55\xd4\xe6\x20\xbe\xa1\x01\x9a\x4a\xea\x59\x5f\xb4\x9f\x89\x18\x68\x15\xd2\x99\x7f\xd2\x8a\x10\x1f\x86\x6b\x58\xb2\x70\xac\x33\xf1\xb3\xaa\x98\x45\xf8\xe1\xdb\xfa\xfd\x45\x28\x8c\x65\xc2\x4c\x3f\x24\x7a\x35\xa6\x5b\x4c\x7a\x0b\x48\x0b\xcd\xba\x73\xd5\x08\x81\x55\xb0\x36\xd5\x0d\x1f\x08\xed\x3f\x6a\xad\x64\x56\x4e\xac\x65\x28\x55\xd9\x20\xb9\x00\xec\xce\x88\xaf\xbc\x31\xb7\xe5\x71\x68\xfe\x82\x7e\x02\x76\x37\xa2\x5f\xf8\xb4\x6b\xa5\x2c\x7f\x6e\x23\x2b\xd9\x07\x52\x72\x0b\x25\xd9\x26\x3a\xf4\xdb\x30\x74\xb6\xd4\x1a\x98\x01\xc0\xda\xbd\xc7\x6e\xc3\x8b\x2c\x0b\x52\xee\x41\x11\x0f\x26\x3c\xbc\x9b\x2b\x91\x90\x52\x75\x6b\x98\x15\xcb\x08\x3a\xb7\xaf\x69\x7f\xa7\xee\x89\xf8\xef\xb6\xad\xae\x8d\xfa\xde\x8f\xd4\x96\xbb\xb0\xa4\xad\x17\x59\xd4\x95\xc8\xd1\x53\x95\x11\x8c\x0e\xbc\x35\x87\x4e\xbe\xff\xa1\x59\x8f\xcd\x04\xee\x63\x53\xe7\xb0\x1e\x4c\x75\x60\x64\xf7\x5e\xe1\x70\xd6\xfa\x53\xb2\x37\xda\x76\x24\x17\x8f\x21\x5a\xe3\xf5\xeb\x5c\x24\x84\x4f\x0f\x59\x8d\x01\x8a\xb3\xf2\xee\xa6\x46\xe1\x68\x9b\x64\x49\xa5\x4b\xcd\x13\xac\xb6\xac\x0f\xda\xef\x9c\xd3\x7a\xb0\xe1\xf5\x58\xae\x45\xd7\x71\xa9\x35\xb9\xc5\x2b\xf4\xe4\xc8\x1c\x30\x8e\x8c\x1d\x2d\x2a\xb4\x4f\xb8\xf3\x39\x32\x44\x8e\x8b\x62\xaf\x4e\x0c\xf2\xd3\xeb\x29\x5e\xcf\xdc\xd2\x73\xbc\x5e\xb8\xa5\x97\x78\xad\x88\x6d\xfc\x7a\x8d\xd7\x31\x5d\x35\xaa\x97\xed\xe6\x19\x4f\xfd\xe4\xfd\x92\x7d\xd7\xa9\x51\x1d\x85\x88\xf5\x46\x78\x44\x72\x3f\xa1\xe5\xd7\x27\xa7\x1c\xbc\x61\x07\xa0\xfc\x7c\x3f\xa5\xc1\x32\x6b\x95\x2f\x43\xec\xe4\x34\x91\x09\x60\x2d\xb6\xe2\xb4\x68\x9d\xe6\x69\x1f\xef\xd3\x6e\x03\x78\x11\x1a\xc7\x88\xd0\xa8\x1c\x45\x91\xe9\x21\x8d\x99\x9f\xbd\xe5\x63\x96\x36\x7f\x27\xeb\x2e\x87\x97\xfc\x8d\x12\x7a\xba\xd7\x39\xf6\x03\xfa\x7f\xab\xf8\xe8\x18\x47\x47\x79\x76\xd7\x94\x09\x4e\x0e\xc4\x2e\x11\xc1\xeb\xcc\x61\xab\x2b\x35\x70\x2c\x34\x5c\x49\xa0\x6b\xee\xad\x30\xf3\xbc\x19\xb1\x43\xf0\xb1\xd4\x32\x28\x4a\x7b\x03\x8d\xc7\xcf\x64\x3f\xc1\x73\x4c\xf9\xad\xc3\x50\xcc\x68\x96\xe7\xe4\xf3\xf2\xb5\x39\x0e\xbd\x81\xe6\xc6\xcc\x42\xe7\x9d\x2f\xe4\x20\x59\xe1\x4f\x83\xb0\x3a\x4e\x04\xb3\xac\xad\x3b\x1c\x51\xaf\xbe\x4e\x3b\x05\xad\xac\xb2\x62\xd6\x31\xc5\x67\xd4\xb0\x18\x9c\x25\x4b\x77\xbc\x46\xa8\x9d\xe2\xd6\xa1\xdf\x6c\x99\xd3\xd7\x32\x36\x7e\x66\x06\x71\xb8\x7a\x4a\xc5\x75\x29\x3f\x45\xbb\xa3\xf4\x2b\x57\xf2\x5c\xd9\xe2\xc2\x77\xff\xe2\x24\xd6\x2e\xf2\x4c\x28\xcb\xde\x16\x1b\xee\xb5\x13\x6a\x12\x21\x7b\x9e\xd1\x45\xc5\x22\xad\x59\x27\x9a\x75\xc7\x3f\x5d\x90\xb4\xc3\xb2\x44\xbc\x26\xbb\x09\xd6\x24\x15\xe1\x47\x96\x74\xc4\x6f\x35\xfd\x51\x77\x0b\x0d\xfd\x59\xa9\xc0\x38\x6b\xf0\xb1\x15\x73\xc1\xad\xe8\xce\xc0\xd7\xbd\x8c\xef\x34\x78\x2d\x2d\x4b\x92\x31\xa1\x60\x96\x3a\x26\x09\xa3\x8c\xe9\xa4\x73\xa1\x75\xab\xb3\x51\x04\x9a\xb3\x0b\x27\x8c\x80\x4b\x00\x4c\x8f\x6b\x60\xc3\x6a\x13\x66\x2a\x0b\xec\x88\xb7\xe9\xa5\x1d\x75\x85\x9d\xcd\xdc\x2b\x9d\xe1\x5a\x69\xe1\x91\x5e\xde\x53\x2c\x5a\x7a\xbf\x4f\x2f\x6f\x72\x61\x7d\x76\x0e\x82\x63\x7a\x69\x93\xec\xea\x73\x9a\xb6\xa2\xf8\xd9\xa9\x73\xc6\x05\x8c\x7d\x6a\x8d\x33\xaf\x5e\x48\x77\x9f\x5f\x7e\xe9\x62\x9f\x52\xd5\xb9\xdc\x90\x46\x28\x39\xe8\x43\xe7\xcc\x2d\x6a\x85\x67\xa2\x6e\xb3\x2d\x3c\xe2\xab\xdb\x94\x98\x36\x6a\xf3\x4f\x0e\xc6\xb3\x9c\x02\xb7\x16\x9c\xfb\xfe\x33\xb3\xfe\x82\x8b\x1a\x53\x93\xbb\x25\x71\x69\x88\xea\x48\xe8\xb4\xa7\x8c\x5d\x97\xac\x45\x13\xb9\xa5\x64\x19\xb4\x37\x0c\x20\x84\x50\x0e\xd5\xf1\x15\xff\xbf\x57\x42\x7b\xfc\x27\x7f\x48\x57\x70\x25\xd0\x42\x1b\x09\x50\xe7\x27\x1b\xc3\x8f\x29\x10\x46\x38\xaf\x26\x9b\xe2\xe7\xb7\x69\x20\xb4\x83\x98\x1e\xcf\x1c\x04\x69\x80\xcc\xc9\xb7\x69\xd0\xda\xdd\xd7\xd3\x96\x4e\x07\x01\x39\x0d\x8c\xfc\x31\xb1\x94\x2e\x59\x49\xac\xe2\xde\x39\xa3\x54\x05\xbc\xff\x61\xca\xc3\x25\xd3\xeb\xf7\x0f\x01\x97\x82\x7b\xaf\x36\x60\x9c\x24\xd6\xfb\xf0\x96\x43\x3e\x35\x9f\x83\xb1\x8c\xb1\xc1\x77\x87\x87\x10\x49\x62\xd1\x30\x1e\x73\x7e\x6b\xf3\x69\xd2\x2f\x61\xd6\xa4\x5e\xad\xd1\x76\x54\x2c\x2b\x48\xb8\x63\xb0\x56\x83\x2d\xb3\x4c\xf2\xdd\x91\xb3\x06\xec\xa8\x00\xd5\x94\x34\x99\x6b\xb0\x62\x6a\xbe\x03\x29\x60\xef\x07\x08\x24\x59\x9b\x4c\x91\xe6\x04\x74\xdc\x4d\x2c\x44\x79\x9b\x94\x04\xcc\xbe\xa4\x1b\xf4\x77\xc3\x5d\x0a\x8f\xe5\xd1\x95\x26\xcf\x21\xe6\x6c\xf4\xfb\x41\x93\x25\x2a\x33\x89\x3f\x5e\x74\x7d\x86\xf3\x72\xfb\xf8\x39\x6a\xb6\x3d\x2d\xe5\x87\xf8\x27\x2d\x62\x92\x55\x34\x84\x1f\x3e\x57\xb4\xb7\xc9\x65\x30\x54\xa2\x74\x81\xd9\xec\x9b\xdc\x67\x3e\xc8\x10\x70\x57\x5e\x37\x3e\x33\x63\xe6\xbd\xde\x3f\xb0\x6a\xb1\x9b\xa4\x7f\x14\xd1\x63\xe3\x16\x3f\xb2\x33\x2c\x13\x95\x77\x46\xca\xb5\xca\x10\x57\x75\xe8\x44\x43\xfb\x2d\x19\x7a\xb7\x4a\xca\xd0\xe2\x46\xfd\x22\x19\x9a\x2d\x61\x2c\x9e\x21\x7d\xad\x15\x09\x29\x96\xd3\xa6\x73\xbe\xd0\xcc\xda\x85\x0d\xfb\x2b\x96\xdf\x8b\x14\xdb\x96\xf0\x95\x17\x56\x9f\xd4\x08\x13\xf5\x7e\x6a\x51\x0d\x97\xe1\x6b\xec\xad\xb8\x08\xcb\x5f\xb5\xe6\x62\xb5\x15\xeb\xc6\x7a\x47\x38\x74\xd5\x0b\x53\x6a\xf7\xbe\xa0\x76\xd3\xa9\xbd\x31\xb5\xb7\xbb\x0e\x5f\xc9\x37\xac\x5f\x8d\x77\x91\xc7\xfa\x15\xe0\xec\xfa\x8d\xfd\x01\xd2\xd8\xc2\xd5\xb2\xc5\x5e\xa2\x91\xc1\x60\xba\xcc\x30\x22\x3d\x79\x2c\x2f\xaa\x11\x8c\xbe\x3a\x14\x6f\x60\x8c\x33\xb8\x67\x34\xfe\x6a\xda\x34\x8c\xc3\x7a\xc9\x42\x5c\x4d\xb4\x69\x42\x38\x50\xa8\x79\x60\xba\xb8\xbf\x77\x5e\xd7\xf1\xfa\xe8\xbe\xde\x0e\xb8\x35\x58\x14\xfd\x46\xec\x16\xdb\x3f\xe8\xfd\x2f\xe5\xca\x28\x57\x4e\xef\x8c\xaa\xc0\xff\x59\xcf\x5b\xc6\xce\x98\xe1\x4d\xc0\xad\x9c\x31\xdc\x77\x67\x37\x97\x31\xc4\xaa\x9e\x61\xf1\x3e\x6b\xed\x6c\x30\xfb\x1e\xaf\x20\xa3\x9a\x12\x27\xdb\x6c\xe6\x89\xeb\x43\x8b\x53\x28\xca\x15\xc5\x75\x29\x7c\xf9\xc9\x7b\x0b\x4d\xdb\xed\xfc\xb3\x6a\x9c\xf5\x0c\x4d\xf6\xc9\x2d\x60\xc2\x7b\x50\xe5\xca\x83\xe3\x4e\xf6\x7c\x6f\x7c\x52\x1d\xe5\x26\x13\x57\xdf\x77\xd2\x4e\xfd\x13\xad\x20\xd0\x6b\x19\x39\xb6\x31\xde\x03\x03\x03\xcb\x5e\x7a\xd0\xd0\xaf\x6c\x4c\x5c\x3b\x10\xf3\x1d\x7f\x07\x7a\x1d\xf8\x09\x75\x0b\xfc\x54\x7c\x90\x92\x86\x01\xdb\xff\x4e\x73\x6e\x8a\xd3\x9d\x8a\xa5\xce\xee\x7d\x0f\xea\xbc\x40\x4d\xfa\x5d\xd6\x1f\x4a\x26\x2c\xaa\xd2\x23\xd8\x71\x50\x19\xe1\x56\x4c\x66\x55\x3a\x8e\xba\x69\x45\x65\xdc\x02\x26\x67\xe2\x7c\x69\xd1\xc5\xdb\xf5\xaa\xe5\x63\xe6\x66\xd7\x61\xcc\xdc\xee\x3a\xe9\xd4\x25\x6e\x73\xfe\xcd\x1c\x19\x4c\xd7\x97\x89\x03\x49\x74\xba\x97\xe4\x30\xfd\x82\x73\x68\x76\x43\x71\x31\x58\x2d\x75\x3d\xbf\x91\x97\xb0\x3c\xd3\x19\x7a\x93\xc5\xc0\xd9\x9c\x02\x88\xa7\x74\x99\x2c\x43\x63\x54\xc7\x86\xe5\x0f\x7a\x6c\x11\xe0\xfd\xd7\x82\x2b\x9b\x29\x07\xdd\x70\xe3\xbd\x78\x02\x5f\xb9\x6d\x5f\x3a\xb7\x0e\xb4\x79\xe8\x4f\x0c\x7a\xab\xa4\x39\x6e\xfd\x5b\xa7\xb2\x32\x65\x3d\x9f\xac\x41\x81\xa7\x6b\x7f\xea\x1c\x6b\x88\x6e\xb9\x32\x52\xaa\x32\x0c\x2c\xcf\x3c\xdf\x3b\xe6\xd6\x41\x6a\xe0\xb9\x2d\xf3\xa4\xe5\x9d\xc3\x15\xae\x0a\xa1\xc4\x22\x3b\x3a\x37\x70\x24\x76\xd4\xf8\x87\x62\x75\x0d\x9f\x85\xa4\xc5\x0f\x9a\xf2\x38\x29\xd7\x36\x83\xb6\x3d\x18\x8d\x8f\x33\xad\xf8\x2f\xfb\xbb\x6d\x45\x5c\x6b\xd2\x2e\xae\xe9\xd0\xbd\x19\x5f\x25\x67\xbc\x78\xb4\x04\x1e\xc1\xed\xa4\x27\xe3\x03\x98\x61\xc2\x97\x72\xc6\xb3\x2f\xcd\x0f\xc0\x16\x82\x2a\x9c\xc2\x9d\xf8\x2d\xca\x33\x5f\x9f\x18\xfd\xb2\xb3\xc8\x97\x94\xc1\xe8\x9b\xfd\x19\x69\xe3\x6d\xda\xcf\x35\xaf\xe5\xcf\x24\x29\xdf\xea\xb4\x2b\xb8\x5e\x54\x47\xa8\x15\x5c\x4a\xda\x55\x22\x9d\xc3\x6e\x5d\x8b\xf4\xf8\x36\xbf\xd4\xc5\x31\x72\xfd\x40\xb5\x0a\x03\xb0\x63\x87\x9f\xea\x7e\x25\x98\x73\x6c\x5c\xf0\x41\x78\x99\xc9\x7a\x53\x43\xb4\x2d\x6f\x35\x5a\xcf\x54\x6e\x5b\x56\xf0\x8b\xeb\xd1\x46\x6b\x95\x15\x81\x34\xe8\x37\x79\x84\xab\xe6\x12\x40\x17\x05\xcc\x6d\x10\xdc\xd5\xb5\x83\xec\xae\x1e\x4a\x52\x31\x18\x9c\x10\xba\x38\xfe\xc0\x8d\x45\x9e\x0b\xfd\xba\x1a\x5a\x2d\xf5\x14\x40\x33\xcd\xec\xd1\xe3\xd8\x7e\xe0\x66\x5a\x5e\x33\xf3\xaa\xbd\x01\xa3\xad\xee\x5b\x7f\x8b\x6d\xba\xec\x7b\xdb\xd0\x3e\x37\x53\x33\xaf\xb8\xe6\x9d\xda\x0c\xc6\x87\x7f\x9b\xc4\xe0\x6e\x4c\x59\xd5\x95\x01\x6f\x17\x74\xbd\x16\xb2\x36\x01\xef\xd1\x94\x76\xc4\x0f\x9e\xa9\x9d\x1b\x11\x3e\xcf\x54\xae\x9e\xc9\xbd\x50\xcd\xe3\xaf\xd4\x06\x6b\x70\x91\x64\x18\x9a\x36\xab\x15\x15\x22\xbe\x9e\x1c\xec\xa5\xd1\x8a\xdb\x00\x65\xf1\xe9\x72\x62\x2c\x59\xc1\xee\xe5\xe2\x84\x06\x59\xd6\x54\xeb\xd8\xcf\x2f\x9b\xab\xb4\x98\x7b\xf1\x54\xe3\x9a\xee\x54\x65\x04\xa0\xe6\x35\x89\x70\xfb\x9e\x1d\xe8\x47\x38\x7c\x48\xde\xf0\xcc\x7e\x72\x31\x47\xb2\x27\x4e\xca\x12\x14\x6f\x0a\x87\xf4\x59\x39\x44\xcc\xb5\x99\x92\x36\xb9\xc5\x1b\x49\x50\x2f\xe3\xfd\xc3\xe6\xdd\x3d\x43\x2d\xae\xd5\xc6\xe9\xc8\x36\xab\x9a\x03\x09\xad\x0c\xed\x07\xee\xb8\x11\x66\x6d\x40\x21\x64\x9d\x35\x36\x55\x4d\x02\x10\x8b\x3f\x44\x4c\x3a\xad\x01\xcd\x2c\x43\xbe\x96\x44\xb9\xab\x13\x5b\x8c\x98\x72\x5c\xcf\x1b\xbf\x16\x5c\xac\x93\x8b\x19\x97\x8f\xab\xcf\xee\xdb\x53\xc8\xbc\x47\xf7\xe3\x57\x44\xe6\xad\x4e\xed\x30\x3e\x85\xcc\x34\x16\x33\xec\x34\x82\x94\x35\xee\xe2\xb7\xdf\x18\xf6\x33\xf4\xe6\xd4\xb8\x4f\xd1\x9b\x13\x63\xb1\xf4\x26\xfe\xb4\xc5\xea\x7f\x48\xdb\xb6\xfd\xb1\xda\xb6\x7f\x88\x3f\x69\xdb\x36\x46\x22\xb3\x29\xec\x35\x7f\xca\x87\x7c\xee\x01\x7b\x15\xaf\xe0\x3f\xf5\x80\xe5\x10\x7e\x77\x80\xb0\x3d\x28\x2d\xa9\x30\xdc\x9b\x10\x50\x3e\x05\x88\xe6\x46\x0e\x3b\xe7\x14\xf8\x04\xff\x43\x8b\x1b\x91\xb0\x89\xc6\x35\x02\x38\x60\x1b\xcc\xc0\x9f\xe3\x37\x5c\xee\xe1\x26\xdb\xf1\x9c\x32\xb6\x49\x37\x08\x56\xdc\x60\xe6\x49\x9d\xbd\xd9\xf3\x9d\xe7\x6b\x42\x7c\x1d\x20\x34\x3c\x34\x80\x06\xc4\xa5\x96\xa6\xa1\x97\x17\xe0\x62\xba\x94\xbb\xcc\x0c\x3c\xe5\x5c\xee\x06\xc1\xa2\x7d\x82\x11\xc9\x66\x3f\xba\x41\x50\xcf\x9c\x95\x25\x80\x22\x27\x96\x42\xd9\x5d\xce\xc0\x0b\xad\xb5\x1e\xf8\x98\x44\x08\x42\x94\xeb\x9f\xa9\xad\x6e\xb1\x87\xee\xf4\xb9\x9e\x90\x21\x32\x40\xb9\xfd\x06\x36\x59\xd1\x80\x84\x5c\x91\x94\x24\x68\x8b\x92\x24\x91\x68\x97\x3f\x96\x7f\x28\x9d\x9e\x89\x63\xad\x9c\xba\xfe\xd8\x95\x35\x67\x22\xa8\xe4\x25\xe4\xd5\x9a\x75\xac\x33\x25\x0b\x57\x97\xe7\xca\xc2\x34\x54\xf0\x24\x71\x4b\x88\xc5\x42\x8b\xed\xfb\x8d\xb4\xad\x1f\x62\x6a\xc4\x06\xa3\xc9\x54\xc2\x31\x03\xba\x61\x54\xdd\x47\x88\xad\x29\x0d\x60\xd3\xa3\x23\x95\x70\x8e\xef\xde\x29\xe9\x9c\xe9\x18\x1c\xaf\x6a\xa1\x76\xe1\xb3\xd2\x91\x49\x4e\x0e\xae\x4b\x39\x0b\xb6\xcc\xa0\xc8\xd4\xbc\xe6\xff\xc5\x96\x5d\xbc\x86\x4a\xe2\x68\xbc\xf3\xe8\x11\x99\xa4\x7b\x5b\xa4\xdb\x11\xf7\xfb\x2d\x9f\xe5\xeb\x8d\xca\xce\xc1\xf7\xe0\x07\x5b\xe5\xb2\x3d\x84\x36\x4a\x3a\xcf\xa3\xf3\x5f\x4e\xd1\xf1\x8a\xd1\xa7\xce\x23\x5d\xb1\x36\x7c\xab\xee\xe7\x62\x76\xd2\xcc\xba\x72\xc1\x45\xbe\xda\x55\x65\x74\xb5\x9a\x2c\x03\xca\xfe\x6b\x80\xd2\x02\x04\x06\x86\x17\x40\x44\x46\x7d\x44\x24\x92\x31\x43\x1e\xe2\xec\x60\xab\x87\x4e\xc1\x1a\x0a\x4e\x76\xca\xde\x86\x0f\x96\x26\x82\x66\x50\xc1\x4a\x41\xc5\xbc\xec\x03\xca\x0b\x24\x86\x6e\x56\x39\x58\x4f\xd3\x09\x28\x32\xd8\x49\xc8\xf1\xd2\xa8\x6d\xc6\xda\x86\xef\xaa\x39\x80\xcb\x3b\xa0\xe1\x35\x11\x23\x3a\xca\x91\x8f\xfe\x41\x6b\xa8\x0b\x2a\x4a\x48\x7f\xdf\xf1\xb6\x2b\x13\x5e\x47\x21\xc8\x1a\xb7\x3f\x5f\x8a\xda\x2e\x1d\x91\x4d\x27\xb5\xd0\x45\xe4\x6e\x6a\x75\x41\xc5\x7a\xe8\x6c\x99\xfd\xb9\x28\x39\x08\xd3\x5a\x15\xcc\xdc\x9f\xc0\x4c\x57\x3d\x58\xff\x63\xf5\x60\x61\xc7\xde\x46\x45\x10\x9b\xc6\x0e\x68\x20\xca\xfc\x1d\x13\xba\x9f\x8a\x62\x6e\xb2\x12\xbd\xc4\x85\x49\xef\x42\x34\xd1\xb7\xf3\xda\x3a\x5e\x40\x1b\x43\x0c\xbf\x5a\xd8\x8f\x0a\x88\x39\x59\x72\x0f\xc3\x3a\xbb\x13\x0e\xa1\xb1\x96\xc3\x3d\xc7\x28\x37\x45\x50\x85\xd2\x98\xef\x67\x6c\xd9\x0d\x74\xee\xbd\x6e\x7e\x10\x9d\x5e\xd9\xfd\xf0\x09\x57\x87\xa7\x60\x81\xe4\xfd\xf2\x06\xec\xe8\xda\x6b\xe9\x03\x82\x5c\x2f\xbd\x0a\xf3\x9b\x37\xa3\x28\x08\x46\xd1\xd6\xab\xd0\x9f\xf2\x2a\xed\x61\xed\xd8\x41\xfb\x33\x65\x7b\x42\xad\x60\x2d\xfd\xf1\xe7\x11\x9c\x2a\x5b\xd0\x91\x0e\xf1\x7e\xd0\x10\xc6\xd1\x2a\x9f\x57\x25\x76\xe9\x3e\xee\x19\xca\x87\x3d\x47\xde\xae\xef\xe5\xde\xe8\x11\xab\x50\x40\x2f\x75\x89\x41\x51\xe4\xe7\xf2\x1d\x3b\xbc\x21\xc5\xc9\xa8\xcf\xc0\x6d\x6c\x2e\x24\x47\xaa\x18\xde\xf7\xc6\xc1\x0d\xbb\x77\xb2\x97\x63\x4b\x9c\xc4\x16\x5b\xdf\x2a\xbf\x60\xf7\xa5\x31\x53\x96\x51\x17\x77\xde\xc8\x8d\x83\xdf\x4d\x98\xdb\x5c\xad\xb9\xe3\x23\xc6\x77\x28\x86\x28\x4b\x31\xcc\xf1\xb6\x50\xe4\x5b\x30\x31\x2c\x10\x07\x12\x33\x2f\xed\x05\x5e\xd3\x4a\x88\x70\x05\xc2\x79\xef\xaa\xf2\x66\x25\x4c\x79\x13\x9b\xbe\x51\x93\x37\x4b\x5c\x08\xfc\x61\x49\x4e\x3e\x72\xf6\x07\x73\x71\x3b\xc7\xa3\xd3\x10\x91\x5c\xc2\x85\xbe\x6e\x57\xdb\xca\x70\xf5\x1f\xf4\xf0\xcb\x5e\x5d\x49\x2d\xa6\x72\x23\xd2\xa0\x50\xa8\x90\x55\x88\x28\x86\x09\x24\x48\x65\x24\x0f\x55\xa9\x17\x01\x6d\xea\x38\xdf\x6b\xbd\x48\x80\x87\x37\xbb\x43\x0b\xa1\xe2\x19\x98\x85\x43\x8b\xdd\x11\xf0\x3c\x18\x30\x9a\x4d\x41\xc4\x26\x03\x68\x66\xf1\x5c\x29\xc9\x51\xa1\xf7\x2e\xdd\x87\xc5\xf3\xe0\x1d\x37\xc0\xa6\xaf\xc9\x3b\xae\x0e\x17\x85\x77\xbc\x7f\xf8\x69\xf6\x8e\xed\x7d\x30\x92\x01\xc1\x8b\xe2\x18\x51\xe2\x9e\xc5\x51\xe2\x50\x12\x44\x2f\xe3\x4d\xc9\x8c\xc5\xf8\x58\x1c\x5a\xd8\xfb\x55\xcc\xa7\x72\x68\x01\x26\x32\xe3\xc1\xde\x38\x6b\x2a\xec\x46\x42\x78\xbc\x19\xed\x4d\xe6\x77\xbc\x99\x99\x5a\xb2\x27\x36\x46\x15\x73\x04\x86\x1d\x6a\x21\xa2\xdf\x6f\xf1\xa6\x56\x17\xf3\x6c\x5e\xa9\x6b\x90\xe5\xc4\x43\x07\x2b\x6d\xa7\xe1\x81\xfd\x4a\xde\xd5\x5e\x5d\x9b\x53\x32\xad\xae\xfd\x6a\xf4\xe2\xa6\x08\x0e\x08\x56\xa7\xec\x74\x42\x35\xf3\x9a\xdd\x98\xf5\xb3\x3d\xbf\xcc\x59\x15\xfc\xe9\x51\x35\x6b\x32\x95\x9a\xc3\x28\xb6\x68\xf2\xf2\x2f\xf1\xbc\x2b\x33\x70\x37\xda\xff\xa4\x18\x66\x9c\x55\x71\x69\x98\x3e\x45\xb3\xa5\x1b\xa5\xc1\x4b\xcb\xa6\x67\x49\xe7\x86\xe0\x1b\x62\xb2\x5e\xd5\x43\x4b\x14\x4c\x5a\x0c\x9e\xf6\xdc\x98\xf0\x5e\x6c\xc8\x1c\x6d\x3a\x84\x3f\x7c\xa5\xe3\x7a\x8c\x73\x37\x7e\x0d\x46\xc9\x58\xcc\xc6\x6b\xd7\x62\xa6\x5d\x83\x1f\x85\x30\x73\xab\x3d\x4f\xf7\x52\x66\x75\x8d\x5c\xd1\x5d\x31\xa6\xf3\xcc\x3a\x79\x3f\xbe\xa3\xc4\xfe\xc9\x4b\xd8\x89\x9d\xeb\xe7\x75\x4f\x17\x98\xe9\x12\x67\x7c\x9e\xcd\x77\xf0\xaf\xda\x19\xff\x3f\xbc\x59\xed\x74\x70\x3f\x32\x82\x31\xc7\x27\xa1\xf6\xe3\x02\x38\x3f\x76\xe9\x41\x26\x1b\x4c\x98\xfa\x6f\x4d\x79\x24\x63\x51\x5d\x30\xef\xd2\x89\xb9\x2b\x35\x14\x50\xf9\x8c\x76\x27\x6d\x9d\xb1\x22\x39\xf4\xf8\xcd\x8e\x0f\xdf\xb8\x61\x33\xa3\x47\x71\x7b\x7d\x4c\x6d\x76\xf1\x0d\xfd\x6e\x1f\xa5\x3c\xe6\x67\x9e\xb5\xfb\x94\x0d\x8d\x3c\x39\xd0\x82\xda\x48\xa0\x33\xec\x49\x81\xee\x66\x27\x18\xd1\x1f\x4b\xfe\x56\xc2\xfe\xe5\xc9\x45\xf5\x07\xbc\x12\x4c\xc9\x98\xc0\xc8\xc4\x36\xbc\x0c\x82\xab\xf9\x3b\x41\x2f\xa4\xed\xf1\x67\x11\x49\xa4\x1f\x75\x19\xa2\x56\xbc\xe0\xcb\x10\x42\x59\x59\x38\x08\xff\xfa\x8a\xc3\xb9\x2f\xa3\xdd\x41\xdb\x5c\x52\x61\x61\x1a\x19\x56\x2c\x60\xad\x58\xb1\xd5\x23\xdf\xac\xc2\x14\x78\xc7\xd5\xe0\x6d\x40\x2a\x14\xb5\x4c\x6a\x3f\x9b\x86\xda\xa2\x16\xed\xd9\x3d\x05\xef\x83\xbd\x92\xab\x7b\xcf\x2d\xe6\xab\x2f\x1e\x19\x2c\x1e\x9d\xed\x9a\xb5\x32\x3d\x24\x48\x34\x10\x1c\xfb\xa8\xf9\xbb\x10\x24\xd9\x29\x09\xc1\xeb\x20\xb8\x97\xd7\xe7\x01\xcc\xc6\x50\xcc\x19\xb7\x93\xbf\x09\x3d\x2f\xc1\x4e\xfc\x6b\xfd\x64\x47\x17\x57\x09\x36\x7c\xfb\xd4\x06\xcb\xcf\x58\xdc\x7f\x69\x21\x7b\x42\x8e\x98\x14\x9a\xc8\xfe\x1b\x2f\xd9\x80\xbf\xc5\x14\x82\x30\x05\x98\xca\x3c\x6d\x34\x7b\x57\xef\x78\xf4\x55\x79\xbf\x21\x53\x1b\x4e\xb0\x08\x74\x2c\xed\x05\xce\x65\xbc\xa9\xec\x05\xa3\xaa\x78\x53\xdb\x3b\x43\x67\x6d\xce\x36\x4b\xd4\x8e\x4b\xeb\x7d\x65\xe9\x6c\xfc\x47\x44\x74\xfa\xa3\x54\x58\xda\xff\xa6\xfe\x60\x90\xb3\xeb\x55\x6f\xff\x5b\xf9\xdf\xca\xff\x56\xfe\xb7\xf2\xbf\x95\x9f\xab\x6c\x5c\xb9\xfe\xed\xef\x7f\xb2\xbf\xff\xa9\xc1\xfe\x6e\x7f\xae\x0d\xe1\xdf\xca\xff\x56\xfe\xb7\xf2\x7f\x7a\x2f\xfd\xdb\xdf\xff\xb9\xfe\xfe\x33\x55\xfe\x47\xf7\xdf\xbf\x95\xff\x6f\x54\xfe\xc7\xee\x9b\xff\x9f\xaa\xfc\xbb\x42\xff\xf4\x2a\xff\xe9\x15\xba\x14\x17\xe9\xa1\xef\xd0\x64\x07\x60\x6b\x79\xdd\xfc\xf9\x87\x14\x31\x27\xb5\xc6\xe9\xc7\xd7\x69\x25\x06\x05\x8c\xb0\x56\xeb\xea\xc3\x83\x4a\xba\x96\xdb\x3f\x7f\xa7\x15\xcc\xcf\xbd\xc5\xb0\xfe\xab\x6f\xd9\x35\xe1\x7f\xe7\x2d\x52\x63\x9e\xf5\x56\x5d\x16\xfc\x9f\x78\x1b\xff\x12\xf3\x01\xbb\xfe\xeb\xe0\x22\x26\xae\x7d\xd6\xcf\x4b\xb9\x23\xe2\x35\xd9\xd6\x0d\xd2\x1f\x76\x7b\x7f\xb6\xc1\x6b\xd7\x9a\x6b\x1a\x0c\x74\x83\x26\x00\xb5\x53\xd5\x5c\x7e\x7a\xad\x11\xfe\x84\x1d\xcb\x6d\xfb\xac\x11\x2a\x18\x9a\x9f\xa0\x96\x7c\xc9\x42\xbd\x25\xaf\xf4\xc4\xdb\xf4\xb2\x2f\xed\x5c\x8d\xdb\xc4\xf5\x77\xde\xfe\x1f\x04\xcf\xab\x63\x8f\x19\x61\x3b\xa3\x95\xff\x29\xf0\xbc\x3a\xf6\xfc\xff\x05\x9e\x89\xb1\x42\xff\x65\xea\xf3\xec\xcf\xef\x26\xb3\xfd\x89\xe1\xa6\xb7\xfd\x12\xa8\xbc\x3a\x04\x55\x40\xcd\x2c\xb0\xbd\x3a\x8a\xfd\xc1\x61\xf3\x0f\x84\xe0\x4b\x4e\x68\x05\x0f\xf2\x3d\x7a\x0e\x94\x60\x13\xfe\xd2\x7e\x4d\x1f\xe3\x3f\xe5\x0c\x78\x1d\x76\xe7\xff\x06\x04\x9d\x5d\xfc\x17\x00\xf7\x3a\x9b\xf7\x6f\x1d\x15\xff\xc9\xed\x4f\xb8\x7a\xc6\xbb\x74\x81\xcf\xa6\x91\x4b\x17\x00\xfe\xfd\xfe\x77\xbf\xd3\x29\x7d\xe2\x3b\x44\xe4\x13\x25\xd8\xa3\xeb\xbc\x31\x64\xaa\x0c\x4e\x88\xe3\xf6\x7b\x3a\x06\x3d\x37\x83\xe7\xc7\xf7\x9f\x9b\xc1\x49\x35\xc4\x5f\x1c\xe1\x73\x30\xfa\xd3\x35\xf8\xfb\x30\x7e\xbd\x19\xa4\x7f\x87\xba\xe4\x44\x0f\xcf\x97\xb0\x63\x4c\x9b\xc1\xdf\xef\x41\xe3\x51\xfa\x2c\xf5\x2a\xbc\x46\x89\xe7\x68\x7a\xba\xc2\xea\x6f\x7f\xe7\xdb\x8b\xe7\xbd\x3d\xb4\x82\xe0\xd0\x3a\xef\x6d\xae\x15\x04\xb9\x73\xdf\xfe\xa5\x31\xec\x5a\x94\xdf\xeb\xac\xb7\xa7\xd8\x4a\x2a\xe0\x0a\x27\xfa\x25\xf2\x94\x3c\xc7\x12\xfd\xff\xd4\x20\x73\x8c\xc8\x97\x64\x3c\x95\xb9\x6d\xd3\xcb\x58\x62\xb9\x73\xe9\x06\x47\xc7\xa3\x57\x9b\xfd\x85\xed\xcd\xd6\x90\xe8\xff\xf0\x53\xd6\x35\x76\xfb\x0b\x1b\x23\xb5\x75\xb2\x72\xb2\x3b\x53\xd9\xad\x61\x82\xcd\xf3\xe6\xfd\xcd\xee\x36\xad\x20\xd8\xb4\x5e\x32\xbb\x45\x2b\x08\x16\x2f\xaa\x91\xec\xe3\xb9\x29\x15\x5a\x41\x50\x78\x51\x0d\xbe\x77\x28\x35\xdc\x42\x4d\x5c\x6b\x45\x68\xa9\xdf\x03\xd4\x39\x1d\xfc\x87\x07\x11\x7f\xdf\xe2\x4a\x9e\xc2\xe3\xf8\x5b\x39\xe1\x88\xff\x07\xaf\xad\x7f\x3f\x5f\x8a\x14\x07\x7e\x27\xec\xc7\x2c\xc2\x66\x6c\x9b\xa4\xfd\xb0\xd3\xa9\x0b\xef\x5c\x71\xcb\x27\x9b\x75\xe9\x6f\x6e\x55\x50\xdf\x1d\x27\xa6\xb6\x71\xa4\x96\x29\x49\x05\x75\x67\x4f\x0a\x5a\x5d\x13\xc1\x80\xfe\xe8\xbc\xda\x0d\x24\x69\xf6\xc3\x26\x20\xdc\xc8\x9c\xff\xf1\x18\x2a\xfc\x30\x54\xf7\x9a\x39\xda\xe1\x5a\xbd\xe1\xb8\x1c\x93\x02\x43\x65\x8d\xb4\x40\xbc\xa6\x8f\x6a\x7c\xbf\x14\x48\x78\x2a\x3a\xc4\x0c\xa6\x0b\x3b\x26\x7f\xd1\xa1\x4f\x78\xa0\x51\x10\x4c\xdf\xc6\x7f\x17\x6f\x11\xed\x64\xc1\x4d\xcd\xbf\xa7\x41\xdf\x04\xe0\xa0\x19\xd6\xb8\xed\xfd\xa3\x5e\x8e\xf8\xcf\xc6\x07\xf5\x3c\x05\xd4\x7c\x17\xa3\x6c\x82\xbb\x18\x60\xf3\x28\x61\x69\x6c\x7c\xa4\x77\x79\x16\x8a\x73\x0c\x64\x45\x74\x7b\x5f\xe8\x5f\x93\x2b\x0d\x6e\xe8\x69\xcc\x53\x44\x69\x1a\x2b\xbf\xc1\x1c\x47\x85\xd0\x52\x70\x9c\x03\xf5\xbd\x0d\x5e\xc5\x11\x3d\x0e\x88\x8d\xd5\x08\x83\xa0\x11\x1e\x2f\xed\x17\x9e\x07\x87\x01\xea\xb1\x38\xcb\x49\xb2\x3b\xea\xb3\xc5\x04\xbe\x18\x2a\xf9\xe0\xe2\x62\xc0\x19\xc4\x07\x90\xa9\x22\x21\x79\xa8\x56\xf7\xf0\x99\xde\x8d\x2f\x89\x71\x8b\x6c\x16\xae\x23\xaf\xfb\x81\x83\x61\x96\x79\x7a\x8c\xa1\x1b\x8e\x95\x56\xfc\x64\xe7\x53\x56\xc1\xf2\x24\x82\x27\x72\x21\x94\x11\x09\x61\x72\x40\x74\x3b\x1a\x98\x00\x23\x9e\x4e\x05\x59\x12\x24\xe1\x40\xcb\x5f\x2a\xb3\x1f\x19\xd1\xcd\x2c\xfb\x40\xc1\xd0\x66\xae\xc2\xda\xcf\x90\x20\x9c\xc3\x07\x0f\x2e\x54\x60\x26\xd3\x76\x89\xe1\xbb\x7e\xf7\x7c\xd1\x0a\x17\xdd\x9e\x51\x34\xc7\x45\x31\x34\xe4\x88\x22\xd4\xfa\x78\xba\xb2\x71\x04\xb0\xe7\xf9\xf0\xc2\x99\x9f\x89\x7a\x48\x1f\x57\x48\x94\xba\x8a\x82\x60\x15\x1d\x2f\x11\xc7\xa2\x9d\x06\x31\x05\xac\xcd\x41\xa5\x40\xdd\x62\xef\xab\x61\xae\x4a\x91\x0d\x47\x57\x64\xa2\x73\x89\x8c\x52\x85\x05\xc7\xc6\x28\x2e\x74\x20\x4f\x43\xbf\x02\x9f\x7e\x55\x0c\xa1\x35\x65\xe8\x4f\x23\x11\x76\x41\x22\x39\xc5\x5f\x11\x75\x42\x25\x0a\x9e\xbf\xd5\x74\x9b\x4b\x31\x59\x7b\xff\x6c\x59\x43\x33\x26\x3c\x7f\x24\xf4\x3d\xab\xca\xec\x51\xaf\xe5\x59\x55\x10\x87\x08\xbb\x50\x4d\x7c\xc3\x67\x23\x08\x55\x63\x8f\xac\xf8\x5b\x7d\xb5\xb4\x43\x51\x92\xcd\x46\x7a\xef\xec\x23\xc9\xe2\xd9\x3b\x70\x4c\x22\x09\x70\xc0\xb7\x0a\xb1\xc7\x98\x56\x94\xaf\x15\x35\xa4\x45\x9a\xba\x74\x29\x8f\xed\x87\xd7\xfe\x51\xe0\x53\x4e\x69\x66\x5e\x27\x66\x73\x55\x0f\x11\x45\x65\xc6\xb3\x99\x9e\x41\xcb\x2b\x0c\x77\x9c\x89\xd6\xbf\xa3\xae\x8f\xd0\x95\x4f\xd7\xa7\xcf\x1e\xa1\x6d\x93\x01\x02\x31\x21\x0e\x1c\xe4\x7e\x78\xe8\xb8\xa4\xd8\x50\x6a\x21\xc4\xbc\x9c\x45\x64\xf2\xff\xc6\xe1\x86\xc0\xa7\x19\xc4\xd6\x89\x35\x27\x3b\x6e\x7a\x2a\xc1\x55\x04\x9a\x88\x4e\x5d\xcb\x71\x5b\xd3\x55\x28\x5b\x3d\x6e\x0c\x31\xc0\x60\xf7\x5a\x44\x0a\xed\x2d\x7a\xcc\xb9\x09\x46\x92\x6b\xf5\x31\x1e\x31\xa2\x36\x02\xe6\x55\xb5\x41\xed\x19\x30\xaf\xf2\xe7\x4d\x64\x71\xe9\x42\xad\xe6\x5c\x1d\x80\x0b\x25\x8a\xcc\x9c\xd4\xb8\x6f\x2a\x51\x10\x54\x22\x39\x8b\x6c\xea\xa2\xf8\xf1\xa0\x21\x6f\xe8\x08\xad\x9b\x04\x05\x27\xee\xab\x14\xd9\xf1\xab\x79\xbe\xd3\x28\x87\x30\xd0\x7c\x72\x7d\x53\x6b\xf9\xdd\xee\x28\xde\x05\x75\x15\x86\x99\xa7\x32\x3a\x20\xfc\x21\x96\x78\x72\xd0\x89\x07\xa3\x20\x18\x3f\xc4\x7f\x67\x0f\x53\x29\xc0\x8d\x8e\x53\xd1\xb4\xcd\x71\xf4\x5d\x6c\x45\x54\xff\x22\x17\xb5\xec\x65\x55\xb0\x35\x86\x0c\x4c\x41\xc4\x5a\x46\xe7\xe1\x29\xfa\x37\x7c\xe5\x85\x05\xcf\x60\x87\x7c\x4f\x12\x4d\x0e\x19\x29\xb6\x4e\xee\x20\xcd\x39\xf2\x09\xbe\xc0\x45\xd9\x31\x62\x92\xc9\x9e\x06\xb2\x72\x24\x28\xdc\x95\x5d\x2b\xe4\x68\x39\x38\x5c\xc6\xa6\x68\x7b\xa8\xb7\xe6\xa8\x35\x4c\xee\x80\x00\xa5\x52\x2a\x06\xe6\xb1\xee\x63\xd5\x49\xef\xbb\x26\xba\x0a\x05\x1b\x0f\x16\x05\x8b\xdf\x52\x50\x70\xde\x4d\x43\xc1\x1c\x57\x43\xd0\xb4\x52\x21\x0b\x07\xfb\xcd\x30\x15\x07\x5b\xba\x3a\x70\x70\xc1\x6d\xae\x1f\x4f\x61\xe1\xb5\xde\xca\x39\x50\x6f\x6a\xd2\x48\x72\xf1\xc3\x31\x32\xe4\xdd\x18\x97\x97\xba\x80\xa5\x2c\x28\xba\x41\x46\xf3\x25\xe4\xa1\x2c\xfa\x35\x46\xfe\xac\x18\xf9\xe9\x19\xdf\x73\x0d\x24\x04\x34\x6c\x96\xdd\x0c\xcb\xa7\xf8\xef\xe6\x49\xf6\xc1\x8e\xbb\x14\x42\x72\x42\xf0\xb1\xbb\xa1\x2d\x2c\xde\xf4\xc9\xce\xa2\xa1\x50\xbf\xfa\x4d\x51\x99\x57\x4b\xa0\x4e\x5d\xaa\x5c\x93\x72\x32\xc4\xbf\xf7\x72\x28\x74\x29\x82\x29\xad\x21\x0e\xc5\xed\x41\xb1\x87\xc1\xcb\x7f\x12\x07\xf7\xdd\x76\x55\x4f\x76\xb5\x3a\xf0\x9c\xf6\x29\x5d\x11\x71\xfd\x61\xab\x4f\x7f\x24\xaa\x6f\x50\xfd\x98\x52\xfd\x52\x22\x00\xe7\x78\x69\xea\x67\x51\x15\x93\x6c\xb8\x2d\x8c\xc4\x27\x05\x7e\x4b\x65\x40\x18\x76\x61\x16\x4b\x47\x4c\xf1\x2d\x87\x64\xbd\xa5\x42\xcc\x38\x71\x3d\x04\x48\x6e\x3b\x22\xcc\x08\x07\xc5\x22\x96\xf0\x14\x2b\xd8\xbc\xb2\xa3\xe1\xc9\x39\xad\x54\x55\xae\x1e\x7c\x98\x46\x4a\xb4\xc1\xfc\x19\xb3\xb8\x18\x53\xa0\xa9\x4a\x82\x3d\x33\x3c\x0c\x45\x0e\x30\xcd\x30\x17\x45\xf4\x81\x93\x08\x20\xa0\xff\x7c\x15\xea\x22\x3c\x58\x7b\x4c\xea\x93\x11\x83\xc1\x96\xfa\xa9\x06\x63\xa7\x28\x64\xee\xc5\x53\x04\xd3\xf8\xe3\x2f\xcc\xa4\xa6\xa8\xde\x95\xee\x53\xd2\x5c\xc7\x23\x43\x94\x06\xc3\x74\x69\x06\xf1\x4f\x32\x73\xaf\x3b\x24\x82\xd4\x54\x58\x84\x71\x32\x66\x2b\xa4\xd4\xb8\x34\x2b\x85\x38\xe5\x56\x6a\x3e\x5f\x4b\xb1\x19\xa9\x24\x32\x58\x87\x53\x2f\x17\x0f\x1d\x7b\x50\xd9\x3c\xe7\x84\xe4\x1c\xe0\x64\x7f\xaf\xb6\xd7\xec\x13\x73\x0d\x9f\x58\x76\xd1\x82\x08\x61\x36\xed\x3e\x96\xc5\x03\x4b\xba\x98\x34\xd5\x2e\x25\x2f\xee\x25\x07\xf1\xed\x88\x2c\xf6\xa4\x50\xa4\xb4\xeb\x20\xfc\x20\x96\x8e\x62\x4f\x1d\x1c\xad\x93\x57\x86\x8d\xdb\x12\x5a\x82\x5e\xa9\x20\xb6\x15\x41\x15\xf3\x57\xc5\xda\x94\xa0\x6d\x9c\x5e\x1c\x19\xc2\x69\x6d\x2a\x07\xa5\x83\x13\x30\x1b\xaa\x2a\x71\x3c\x6b\x97\x2c\x82\x60\x46\x36\x7b\x95\x09\x49\x07\x8a\x75\x6d\xce\xb2\xcb\xe3\xb5\x80\xe3\x51\xdc\xd9\x6c\x4f\x47\x49\x8a\x62\xe9\x18\x0f\x51\x58\xb8\x6b\x49\x9a\x1c\x60\x59\x3a\x6e\xe0\xcc\xb8\x4a\xc3\xa8\x2c\x4c\x95\xc0\xb2\x5c\x7f\xf6\x33\x9e\xfd\xc9\x9f\xaa\xb7\xf4\x9f\x67\x75\x41\x93\xb9\x7d\xc9\xde\xd9\x34\x43\xc9\x29\x27\x0e\xf0\x26\x1b\x58\x15\x91\xd1\x7a\x0d\x09\x49\xd7\x07\x8c\x76\x4d\x0e\xd7\xb7\x47\x9d\x43\x13\x09\x05\x65\xa3\x34\x25\x82\xa2\xc8\x8e\xa5\xa6\x09\xbc\x27\xfd\x34\x39\x26\x23\x1d\xaf\xd7\x55\xf5\xd6\xc4\x49\x2b\x36\xd5\x76\x0c\xbc\x03\xa0\x01\x2d\x04\x0c\x83\x14\xdf\xf5\xca\x5a\x3b\x2e\xbc\x6e\xab\x50\x3e\xe5\xfd\x11\x32\x17\xdd\x7c\x1e\x51\x6c\xab\x66\xba\x68\x53\xb6\x3e\xa0\xc2\x22\x98\x93\x97\xc9\xa4\x0d\xb4\x9d\x90\x9a\x25\x14\x69\x9d\xe0\xcc\x81\x6d\x06\xf7\x56\x57\xdd\xe4\x6c\x54\x9c\x5f\xed\x97\x3e\xb1\xe3\xb9\x5b\x8c\x8d\x2b\xd4\x0c\xca\x9b\x5d\x10\x9c\x83\xfd\x4b\x92\x5c\x36\x91\x52\xa2\x5c\x78\xeb\xce\xe1\x7e\xf5\x66\xb2\x9d\x19\x76\x4c\x77\x66\x31\x3b\x70\xb7\xea\x94\x3a\x5b\x24\x3b\xb3\x68\xc7\x4c\xa4\x41\xe7\xb5\x36\x64\x71\x8e\x63\x48\x64\x46\x8d\x75\x61\x95\x48\x2d\xbb\xa9\x3b\x89\x02\x84\x36\x8f\xb6\x89\xf2\xe3\x1f\x35\x17\x17\x58\x0c\x43\x5b\x44\xb2\x5c\xeb\x42\x6d\x93\xbf\x88\x7e\xea\x1b\x2b\xf1\xf3\xf1\xce\xdb\x86\xac\xbf\xf7\x93\x7a\xb5\x1d\xa6\xb6\xae\xe2\x69\x57\x9c\xf3\xf9\x88\xd4\x41\x92\x96\x82\xaa\x3f\xa4\x95\xf0\x28\x68\x5b\x11\xd0\x17\x45\x20\x3c\x14\xc3\x37\xbd\x48\x6c\xf3\xbc\xf2\x45\xa8\x25\x28\xee\x20\x61\xed\x77\x3e\x82\x6b\x6a\xfd\xe2\x17\x9c\x3c\xf2\xa6\x7e\x49\x5f\x67\x7d\xd2\x37\x11\x41\xe8\xcc\x91\xa1\x62\x36\x66\x32\xc1\xa1\x43\x3b\x73\xc4\x97\x6f\x98\x40\x9e\xbc\x05\x90\xb8\x30\x87\x38\xa2\xbc\xd5\xf1\xb2\x67\xe3\x38\xd2\x6e\x2d\x23\x55\x6c\x39\xd4\xf6\xfa\x21\x5e\x97\x1a\x2a\xdf\x72\x19\x49\x89\x2a\x90\x75\xe8\x65\x15\x2f\x47\xf3\x50\x05\x3e\x1e\xcf\x11\x9a\x6d\x2e\x74\xcd\x9e\x6b\x57\x41\x10\x14\x28\x29\xec\xb5\xc4\x13\x4e\x26\x96\xe3\x7c\x10\x38\x88\xa5\xfd\x78\x32\x73\x8c\x70\x64\x3b\x88\xd7\x63\x8d\xa4\x9b\x79\xde\x1f\x39\xf3\x64\x38\x9e\x9c\x62\xca\xd2\xde\x13\x0a\xc4\x22\xdf\x93\xac\x8e\x51\xf4\x0e\x19\x77\xc4\x52\xd5\x67\x82\xd7\xe4\x70\xb4\x3b\xce\x93\x90\xff\xc8\x80\xd3\xda\x7f\xfe\x8d\x39\x56\xd4\x17\xe6\xa6\x78\x6b\x14\xb4\x50\xd6\x7f\x4a\x54\xcf\xdd\x2b\x41\xad\xfa\xa4\x18\xb9\x5a\xc7\x6a\x42\xcb\x5c\x07\xdc\x70\x8d\xf7\x67\x5f\x5d\x31\x03\x25\xac\x21\x69\xd1\x33\x48\x86\xe0\x62\x23\x61\x7c\x5c\x2c\x93\x14\x66\x91\x83\x66\xcd\x72\xa8\x36\xb8\xc5\xb3\x26\x4e\xce\xb1\x8f\x69\x12\x66\xba\xee\xe2\x5a\xbd\xa9\x20\x35\x72\x51\x4e\x82\xbe\x2a\xf5\xe0\xf7\x20\x08\x62\xe2\x1c\x05\xc1\xcf\xba\x4f\x2a\x0c\x5f\xf0\x64\xe6\x4b\x59\x97\x7b\x26\x5f\x51\x5c\x70\xd1\xc2\x26\xa7\xf5\xac\x21\xb7\x4a\xc3\x07\x87\x6c\xb7\x78\xa0\xa4\xac\xf1\xf6\x43\x13\xe7\xe6\xc8\x2d\x26\x47\xc5\x93\x81\x0b\x5b\x2d\xc7\x15\x07\x93\xe3\x56\x28\x56\xba\x53\xdc\x42\x6b\xea\x16\x3f\xa7\x75\x0f\x80\xa7\x5a\x9f\x97\xe4\x50\x96\xa5\x46\x00\x6d\xe7\x7d\xce\xc4\x07\x16\x72\x12\x97\x64\x8d\xaa\xa6\x3a\x5c\x66\x8c\x5b\x65\x7e\x9b\xfd\x4a\x2a\x9c\x64\xf1\xbc\x11\x0b\x81\xb1\xe8\xf7\x5c\x4f\xf6\xfd\x30\x1d\xc4\x2f\x6f\xf2\xe4\xe0\x0d\x81\x94\x19\xc4\xc7\x00\xf8\x29\x63\x6a\xa3\xc6\xe2\xb3\xc0\x4a\x7d\xe6\xbc\xf9\xf3\xb0\xf4\x8b\x71\x47\xf1\x8f\xac\xc9\x1a\xfe\x46\xd2\xca\xaa\x4b\xab\xe2\x57\x4c\xfb\xde\xdb\x17\xd0\x90\xf5\x55\x19\x36\xa6\x7d\xb2\x2f\x98\xb4\x7d\xb0\x2f\xf8\x64\xff\x62\x5f\xcc\x94\x26\xa9\xb2\x52\x1e\x0c\xbd\x4b\x71\x69\x23\xb7\x87\x6d\x32\x32\x1f\x11\xc7\xb1\x09\x78\x19\x17\xcb\x8f\xd3\x8b\x0d\x3e\xda\x33\x76\xfc\x31\xbd\xc8\x17\xcb\xb3\x8c\xbf\xa4\x16\xe9\x4d\xa0\x47\x8c\xcb\x0c\x27\xc9\xae\x0c\x1b\x33\x7a\xb0\x0c\x29\x8a\xc5\x1c\x6b\x61\x75\xc1\xa2\x2a\xd1\xb0\x29\xd3\xed\xc6\x5e\xc9\x29\xc4\x1d\xf4\x0f\xa9\x79\x3c\xed\x7e\x3d\x0c\x78\xab\x1c\xdd\xc4\x9d\xb9\x3d\xb2\x34\x1c\x9d\xc4\x9d\xb3\xad\xe4\x7c\xdc\xc2\x1c\x01\x22\xc1\xba\x4d\xd2\x54\x75\xe2\x3e\x89\x14\x1c\x54\x5a\x19\x49\x18\x5f\xab\x41\x2d\xd5\x60\x52\x3f\x3a\x18\x4f\x0e\x52\xa9\x66\x14\x8b\x67\x66\x98\xc2\xe6\x5e\x12\xc4\x77\xac\x6f\xca\x14\xbd\xce\x0e\x62\x97\xe7\x8d\x90\xbb\xb0\xdc\xa0\xca\x79\xb1\x18\x28\x06\x72\x3c\x6e\x5b\x4f\xf3\xfd\x8e\xe7\xba\x38\x48\xc4\x4a\xd6\x0a\x49\xd8\xf1\x0a\x5b\xed\x96\x88\xf3\xbe\x3a\x68\x95\x31\x06\x51\x5a\x18\x5c\x22\x8d\xf0\x1c\x6a\xda\x3b\x8e\x9e\xce\xf8\x51\x59\x88\xb7\x49\x75\xe1\x57\xcb\x23\x41\x48\x95\x8b\xd6\x16\x1d\xed\x6f\x58\x4e\x6d\xaf\xb1\xe8\x80\x46\x34\xd1\x9e\xad\x36\x2c\x3a\xed\x6d\x0e\x1c\x45\x94\x35\x8c\x9d\x2d\x86\xbd\x33\xb0\xdb\xe3\xcd\x01\x4a\x67\xb1\x49\xee\x95\x6e\xcc\x43\x95\xbe\x49\x07\x4a\xcc\x21\xf2\xa2\xc8\xd7\xbc\xe1\x27\x63\x18\xf7\x61\xda\x28\xb0\xc1\x87\x36\x7b\xa7\x0c\x7d\x4a\x09\x19\x17\x8a\xa0\xa9\x32\x86\x6d\xef\xc2\xba\x03\xd0\xe2\x6e\x46\xac\xf8\x38\x96\x5a\x4e\x67\xcb\x9e\x64\x1f\x98\xcf\x42\x99\xa8\x4d\xe8\x4e\xa1\xae\xc7\x44\x32\x95\xf5\xb0\xea\x44\x42\xce\x4d\x79\x2b\xe5\x67\x3c\x28\xb8\x53\x4c\x5b\x2c\x7d\x7e\xf4\xd7\x6b\xc2\x96\x2b\xcb\x8f\xe6\x66\x24\x03\xdc\x96\x11\x17\xb5\x07\x3c\x91\xdd\x51\x82\x39\xa0\x7c\xe8\x24\xb7\x90\xd1\x9a\x04\x94\xa1\x9e\x6d\x3d\xe5\xa3\x32\x37\x40\x9f\xb9\x68\x44\xea\xb2\x1b\xf1\x73\x39\x45\x66\x94\xf6\x3a\x50\xaa\xea\x46\x2e\x32\x59\x92\x59\xda\x6f\x36\x23\x67\xcf\xce\x07\x1d\xf1\x9e\x69\x5b\xfb\xd0\xa1\xcf\x31\x6e\x8f\xfd\x56\xea\xf3\xa6\xdf\x52\xf9\x04\xe3\x31\x37\x87\x2d\x8d\x2b\x15\x00\xa1\x89\xa9\xbc\xb0\xdd\x26\xd2\xbd\xcb\x28\x87\x18\x25\xbc\x76\x5e\xd0\x5a\x0c\x79\x19\xdb\x9b\xc8\xd8\xe9\x69\xdc\x77\x41\x10\x6c\x78\xf5\x58\x80\xdd\x82\xbc\x6e\x0e\x89\x48\xeb\x41\x99\xc8\xf0\x4f\x7b\xfc\x56\x57\x9d\x24\xc5\xaa\x3f\x70\xde\x8d\x92\xca\x53\x91\x0f\x33\xcb\x0d\x4b\xda\x11\xc8\x60\x68\xbf\xa5\x31\x54\x2a\x36\x45\x0d\xf9\x9e\x13\xe2\x5c\xba\x0b\x39\xed\xe8\xd7\x96\xdc\x2e\xdd\x0f\x06\xfd\xdc\xc4\x7d\xc4\x0b\x93\xb5\x1b\x3b\x77\x5a\xc6\x21\x32\xbb\x60\xe1\x69\xe4\x4e\x77\x8c\x4c\x3a\x3d\x2d\x83\x28\xd9\x44\xea\x29\xfb\x36\x0e\x5a\x6f\x5a\x55\x3a\xda\x6e\xc6\x83\x8e\x15\xc6\x03\xbd\x15\x39\xd1\x77\x0d\x4e\x25\x73\x49\x90\x42\xb5\xf2\xc7\xc8\x50\x89\xf6\x7e\x2f\x26\x2c\xab\xe7\x2a\xe9\x36\xf6\x9f\xdd\x76\x49\xc6\xfe\xec\x96\x8b\xdf\x9d\x28\x97\x3b\x72\x70\xee\x3a\x10\xbb\x76\xe4\xf0\xcf\x50\xae\xe4\x8f\x6a\x16\x3a\x37\x89\xdd\xb7\x09\xa3\x83\x68\xec\x58\x86\xf8\x61\x6d\x01\xe2\xf4\xc5\x0b\x52\xfa\xa4\x66\x02\x6f\x2e\x08\xa3\x4e\x02\xb1\x7a\x7a\xad\xaf\x20\x31\x1d\x38\x7d\xf5\x95\x75\x83\xcf\x44\xa5\x83\x47\xcf\xab\xb7\x0c\x8e\xb7\x6a\xb4\x5a\xbe\x6c\x83\x55\x53\xd6\x28\x2e\xd4\x38\x2a\x5c\x1f\xbe\x27\x55\xf3\xb2\x9c\xb9\x54\x5a\x7f\x65\x94\x2a\x92\xb9\x29\x72\xc8\xf4\x74\xd2\x01\x98\x98\xfd\x84\x5f\x65\xdb\x08\x8f\x39\xcf\xfa\xfa\x4b\x69\xe4\x7b\xb3\x96\x97\xff\x6e\x38\x6b\x69\xae\xb5\xa7\xb5\x13\x91\xc6\x47\x72\x24\x84\x1a\xe4\xc8\x3d\xcc\xd1\x03\x9c\xa3\xbc\xf3\xa4\x8e\xa8\xec\x43\xf6\x85\xfb\x79\xea\x38\xb6\xc7\xcb\xf2\xc0\xac\xcb\x92\x99\xc1\xdd\x67\xa5\xe7\xa1\x03\xf0\xb3\xc5\x26\xb8\xee\xcc\x3d\xfe\x6e\x60\xd9\x15\x3a\x30\xe2\x06\x84\x5d\x31\x7b\x6e\xeb\xa4\x38\x93\x60\xf8\x20\xda\xc3\x5d\xda\xd7\xe4\x20\xd7\x0f\xb2\x4d\x48\x89\xfb\x59\x51\x93\x98\x25\x8d\xb7\x4a\xcc\x92\xe6\x8f\x4e\xea\x9e\x2b\x9b\x2f\x4c\xe3\x2b\x7d\x74\x77\xdc\x27\x3b\x57\x18\x8f\xbd\xb9\x56\xfb\xae\x75\xc2\x10\xd0\x8a\x96\x3c\xd9\xc9\x22\xf7\x8d\x97\xde\x3a\x3b\x7c\xd3\x2b\x8f\x70\xe2\xb7\xaa\x7f\xec\x31\xc8\x35\xb0\xdf\x21\x7b\x79\x7f\xa3\x46\xed\xd4\x7d\xcb\xa6\x65\xb8\x97\x8e\xb1\x54\x2b\xce\xc6\x3d\x06\x28\x50\x16\xab\x19\x79\xa3\x47\x56\x5e\x8c\x1b\xd6\xe6\xbe\x78\x0b\x4c\x18\xfb\x84\x5f\xc1\x8e\x1d\x4d\xe1\x53\x06\x11\x03\x5c\xfe\x84\x99\x28\x08\x27\x63\x6d\x80\x96\x1a\x7d\xd4\x18\x3b\x35\x86\x5c\x63\xaa\x6b\xe4\x4c\xa8\x7b\xf1\x9a\x96\x4c\x4d\xa1\xf7\xbd\xee\x7e\x87\x92\xbb\x37\x35\x5c\xd4\xd8\x19\xa5\xdb\x70\x62\xa4\xb6\x5e\x73\xec\x7c\x76\x3b\x54\xe3\x7d\xf2\xb8\xe2\x2d\x30\x16\x89\xe1\x0a\xb7\x56\x41\xb7\xfd\x24\x2d\xea\x2d\x70\xdc\xf2\xe9\x56\x56\x16\xf1\x89\x93\x90\x59\x4a\x36\x6b\x2c\x5f\x4c\x95\xf5\xde\x70\x9f\xd7\xef\xbc\x3d\x31\x82\x98\xd6\x2f\x74\xf4\xde\x92\x7d\x79\x44\x63\xcb\x7b\x45\x0b\xcd\x00\x2e\x14\xd1\xe5\xdf\xa3\x30\x71\x26\x5f\xa7\xe5\xe7\x6b\xa7\x1d\xbc\xfd\x63\xc7\x43\x3c\xbe\xa3\xdc\x76\x48\x78\x3c\x52\x3e\xcf\x19\x5d\xea\xc0\xbb\xc1\xac\xa5\x18\x61\xfa\xd3\x08\x83\x20\x28\xf4\x5a\xf1\x53\x2e\x2c\xcf\x52\x92\xd2\x45\x9a\x12\xc4\xcd\x33\xf7\x30\x3a\x9a\x24\x67\xc7\x8e\xc7\xbf\x8c\x8f\x27\xda\xb1\xd0\x8e\x0b\x07\x31\xa6\x44\x31\x79\xad\xfe\x51\xe7\x86\xed\x3c\xaf\x6b\x4a\xb7\xb2\xe2\x95\x1d\x84\xe3\xc2\x33\x95\x9e\x94\x92\x9a\xf2\x3e\x30\xfd\x80\x6f\x5b\xed\x46\xf3\xe3\x29\x23\x5f\x3d\x2a\xf6\x66\xfc\x94\xca\x6e\x67\x5e\x55\x60\x9a\xd2\xfb\xa4\xb9\xe9\x94\xc2\xa6\x0f\xbb\xb8\xab\x78\x92\x83\x0a\xe5\x94\xd9\x84\xd3\x82\xf2\xf9\x0c\x34\x2a\x8b\x68\x16\x6f\xb9\x6b\x3f\xff\x5a\xd2\xed\x84\x0d\xe9\xcd\x2b\xbb\x28\x27\xdb\x91\x34\x50\x3c\xa6\x58\x6a\x0f\x66\x05\x02\xfc\x2c\x9c\xa7\x03\xde\x0c\xf3\x47\x86\xe8\x08\x67\x1e\x66\x04\x76\xd3\xc8\xc6\x88\xa8\x8b\x87\x08\x9d\x99\xa1\x32\xf7\xb9\x29\xc4\x71\x86\x30\x3a\x4d\x8e\x92\xee\x62\x29\x40\xba\x72\x92\x83\xab\x1d\x09\x47\x11\x51\x35\x34\x1f\x4c\xae\xab\xa4\x11\xa0\xd7\x67\x75\x21\x4b\x74\x92\x38\x50\x4b\x7f\x9e\x20\x68\xbd\xef\x2a\x7a\x85\x71\x9e\x2d\xe0\xb5\x36\x40\xca\xcc\x52\x3a\xd8\x37\x5f\xf9\xb4\x29\xa6\x7f\x46\x36\x33\x66\x32\x24\xd4\x9b\x5d\x9b\xc3\x01\x6b\xb3\x4c\x5b\x1b\x9d\xa1\xd2\x71\x81\xfa\xa4\x08\x5d\xe1\xc1\xc2\x30\xd2\x38\xbf\x3a\xca\xa9\xb0\x7e\x51\xe3\x1f\x54\xd9\xca\x83\x45\x0f\xb5\xd4\x0a\x88\xca\x43\x7b\xfd\x94\x89\x00\x91\x03\x9c\x7d\x45\x2e\x8d\x8a\xc6\xf7\xbd\x6d\x30\xb0\x3d\xc2\x9f\x7d\xf9\xe4\xe1\x4d\xcc\xba\x66\xe1\x0d\x30\x32\x1d\x71\x96\x3f\x75\xbb\x70\x54\xff\x03\xbc\xc1\x45\x9f\x3d\xf3\x79\xf5\x93\x28\x30\x5e\x67\x22\x90\xc1\x10\x1f\x8b\xe2\x3d\x88\x1c\x37\xf0\x3c\xc5\x98\x3d\xe4\x1c\x3f\xb1\x85\x8b\xa9\x52\xef\x31\xad\x68\xe1\x2b\x58\x81\x32\x7f\xde\xf2\xbf\x05\x7c\xef\x9b\xbd\xd0\x27\x66\x23\x21\x66\x5b\x1f\x7f\x12\x06\xe2\x94\x25\xd7\xb4\x2a\xb9\xe5\x4b\xe2\x3d\xe0\x96\x2f\x6b\x8b\x33\xf3\x20\xe4\x5c\xe9\x18\x4a\xd2\x01\x88\xc4\xff\xc7\xda\xc9\x55\xd8\x7c\xb0\x4a\x33\x9e\x65\xae\xd2\xe6\x59\xee\x4f\x90\x47\x62\x1a\xce\x9b\x6b\x12\xc9\x8f\x40\xf2\x7e\x94\x8a\xe5\xa3\xff\x00\x8c\xdc\xd9\x67\xc1\xc8\x85\x24\xc3\x68\x47\xa9\xd2\x18\x46\x19\x94\xe4\x19\x7f\x4d\x27\xcf\xb8\xe1\xa7\xa6\xee\x10\xc6\x65\xb9\x2c\x5b\xac\x6a\x8f\xb5\x2b\xca\x4b\x4e\xf8\x0a\xe1\xb2\x6e\x32\xac\xe2\xc0\xc1\xb5\x0b\xf8\xb3\xaf\x3e\xb3\xa1\x13\x29\xab\xad\x99\x92\xba\xbd\x9d\x3c\x6a\x2a\x76\x03\x30\x5e\x27\xa9\xe7\xc6\x2c\xc7\xb1\xe0\xf0\x0c\x97\x29\xa4\x69\x67\x0a\x57\x21\x85\x78\x70\x88\xab\x6c\x78\x80\xb8\xef\xb1\xc3\xe2\xde\x60\x83\xe7\x99\xf3\xe8\xe8\x66\x93\xc0\x91\xcc\xb1\x8a\x18\x91\x49\x1e\xa6\x91\xf8\x24\xc2\x6d\xc5\x05\xc3\xa1\x6a\xe0\xd0\x76\xf4\x18\x8b\x47\xcd\x53\xb9\x24\xb0\xd9\xf6\xd6\x2a\x48\x7f\x6e\x1b\x87\x5e\x22\x05\x27\xfa\x5d\xc8\xed\x6f\x4b\x61\x06\x84\x57\xbf\xe2\x87\x11\xb9\x7b\x75\xac\x1f\x5a\x3b\xa9\x53\x37\x88\xfc\x24\x5c\x6f\x06\xb5\x2d\x3d\x29\xc5\xeb\x7d\x7c\xc4\x96\x09\x77\x1f\xab\x69\xbc\xaa\xcd\x8b\x6f\x59\xce\x2b\x9b\xfd\x19\xd7\x1a\x21\xc4\x71\xba\xb0\x4d\x9f\xbd\x22\x96\x4b\xad\xd0\x81\x16\x7a\xc3\x2c\x0e\x3c\xbf\x1f\xd3\xcd\x02\xd3\xe2\x85\x52\x09\x8e\x1f\x70\x1c\x1b\x7d\x90\x8c\x4c\x6b\x29\xd6\xbe\x19\x02\x57\x09\xa6\xcc\xa9\x2e\xc3\xac\xaf\xe6\x9c\x84\x17\xf9\x89\x01\xe6\x1d\x4f\x17\xb1\x4c\x18\x3d\x49\xdc\x92\x3f\x8c\x69\x8f\xd7\x2c\xcf\x4c\xf9\x36\xcc\xfa\x1a\x57\xc6\xd7\xc2\x01\xdd\x6d\x71\xeb\x77\xc0\x58\x64\xcd\x4c\xc7\x2a\x53\x8b\xfc\x37\x45\xd2\xec\xe7\x72\x95\x11\xb4\x5a\x75\x2c\xd0\xaa\x40\x85\xf3\xc6\x8f\x38\x9d\x71\xb9\xaa\x9d\x27\x6c\xb1\x7d\xb5\x6d\x35\x40\xd5\x1f\x76\x87\x30\x74\xc6\x7e\xbf\xf5\x2a\x87\xea\x9a\xb3\x0a\x72\xee\x7f\x1f\x57\x78\x07\x96\x61\x9c\xda\xfb\xe3\x5a\x56\x99\x5e\xef\xb9\x81\xbd\xdf\x40\xb5\xca\xb9\x1f\xa7\xfc\x7d\xed\x7f\xcf\x63\xc0\x47\xb6\x72\xd4\x13\x03\xac\x48\x8c\x82\x63\x39\xd4\xaa\x75\x5b\xa4\x59\x55\x71\xa1\xe0\xfa\x5f\xf4\xdb\x29\x56\xb8\xd0\x98\xdd\x9b\x8e\xfe\xf7\xf8\x68\x63\x4c\x29\xfe\x10\x9a\xe6\x96\x58\xa3\x85\x3e\x1c\xa4\xfc\x16\xe6\xa6\x05\xd6\xf6\xff\x54\x42\x0b\xa9\xc2\x79\x64\x05\xfe\xc7\x5b\xec\x56\xfd\x9e\xaa\xd5\x82\x03\xa6\x2e\x7a\xa5\x7e\x0f\x7f\x28\xaa\x13\x97\x1f\x31\xe7\xdb\x67\x9e\x74\x76\x34\x69\x04\xcb\xfa\x9e\x08\x93\xe3\x2a\xf3\xbf\x7b\x17\x73\xa7\xf3\xb6\x93\x11\x72\x1e\x39\x9f\xf7\x79\x76\x79\x1e\xe3\xc2\xd1\x8c\x37\xc7\xfc\xd6\x29\xb5\xcd\xb7\xad\x77\x03\x4f\xea\x98\xbe\x8b\xf7\xb7\x89\x5d\x45\x29\xfa\x6f\xb3\x06\x45\x48\x4d\xba\x9b\xb5\x38\x19\xa9\x93\x4d\xb6\xfb\xba\xc1\x41\x5c\x8e\xbe\xe8\xd2\x60\x2c\x04\x41\x67\xdd\xb6\x8d\x46\x07\xac\x95\x6e\x8f\x05\x15\xa6\x6c\x0d\xdd\x2a\xb3\x2c\xfd\xef\x4e\xbb\xf5\x39\xee\xb4\x75\x9d\xd7\xf3\x83\x1c\x6e\xe5\xbc\x3b\x90\xe6\x1c\xea\xd6\xae\xd3\x63\x91\x4d\x60\x92\x82\x78\x56\x57\x13\x2e\xf7\x94\x27\x5a\x51\x28\xab\x31\xac\x4a\x1e\x69\x93\xa5\xbd\x2a\x9a\xb7\x59\x68\xa5\x5a\x64\x21\x66\xc2\xfa\x98\xd1\xc6\xc1\xf8\xac\x96\xd3\xda\xc8\x73\x1b\x4d\x20\xbe\x41\x32\x61\xa5\x07\x3f\x14\xae\x21\x15\x67\xe5\x51\xb1\x53\x1f\x04\xff\xda\x46\xc6\xe3\x6b\x5a\xb8\xa4\x94\x33\x09\xbd\x87\x55\xaf\x7f\xd2\x27\xcc\xc3\x54\x9c\x9c\x33\x49\x2d\xbe\x53\xda\xd4\x77\xaa\x5b\x8f\xbb\x68\x58\x5d\x0c\x9d\x56\x97\xfd\x8a\x87\x2c\x3d\xce\xd0\xbe\xaf\xaa\xeb\xf1\x73\x71\xcb\xdb\x1a\x8a\xa1\xcc\xdc\x84\x0b\xf0\x6e\x80\xa7\x0a\x76\xea\xf7\xf4\xf3\x32\xd3\x82\x2e\x47\xd4\x19\x18\xa6\xfc\x17\xd6\x50\xaa\x6e\x58\x5c\xc5\x75\x5d\xfa\xfd\x5d\x1f\xfb\xcb\x1f\x9a\x11\xb1\x0e\x1f\x0d\xbe\xcb\x37\x9e\x39\xda\x7f\xfb\x7d\x35\x14\xb7\xad\xe2\x91\x8b\xac\xd4\x75\xab\xf5\x53\xea\x21\xc8\xd8\x3b\x64\xd0\xc3\xd5\x56\x99\x0c\xdf\x6a\xdd\x7a\x75\x13\x9e\x3b\x6d\xd0\x58\xc2\x88\x9e\xdc\xdb\x36\xd3\x4d\xfb\xd5\x73\xf1\xa6\x08\xbc\xe9\x17\x1c\xaf\x18\x4b\xc9\xa7\xd5\x36\x74\x54\xe3\xaa\x5b\xf5\x88\x5c\xfc\xfb\x4e\x02\x13\x4d\x54\xe8\xf1\xd1\x6f\x6f\x5c\x15\x72\xb0\x55\x18\x55\x2d\xa7\xb6\xcd\x72\xd9\xd6\xf5\x47\x81\xac\xbf\xfd\xe5\x9f\x9e\x15\x09\x9b\x25\x48\xcc\x6d\xd0\xdd\xbb\x92\xea\x8c\xad\xd7\x95\x8c\x09\xc7\xcd\xf0\x5e\x5e\x57\xb3\x24\xbe\x6d\xd5\xaf\x15\xf3\x0e\x31\x1c\x0d\x03\xef\xf1\xd5\xbd\x93\xb0\xb3\xb2\xa1\xe8\x15\x67\x9f\xdf\x18\x37\x4d\xff\x60\x69\xd9\x5b\xb1\x6b\x21\x92\x4c\x34\x40\x3b\x1a\xcc\x04\xc2\xff\xbf\xfa\x35\x6d\xf7\x19\x31\x6b\xbe\x47\x8f\x8a\x40\xe8\xfb\xaf\x15\x6d\xea\x6c\x6a\x89\xb0\xa6\x64\x15\x7d\x59\x15\xbc\xf2\x32\x01\xa3\x43\xcb\x89\x25\x46\x9b\x35\x97\xbc\x83\x66\xe6\x62\x74\xf8\xe3\x74\xce\x92\x1d\x2f\x7a\x5c\xb9\x2f\xe2\x5b\xdb\x5a\x33\x12\xa4\x46\x92\xd5\x7e\xa0\xa9\x5d\xda\x59\x66\x55\xd8\xa3\x02\x73\x1c\xf5\x53\x8e\x40\xcc\x0a\x83\x96\x25\x99\xd5\xcd\x2f\x29\x7c\x29\xae\x59\x43\x6f\x47\x4d\x99\xdf\x28\x6e\x5d\xcb\xad\x2e\x02\xd7\x46\xb9\xbf\xff\x3e\xa5\x88\xd7\x0a\xcc\xb8\x3f\x4f\x35\x33\x8e\x7c\x7d\x9b\xe1\xbe\x2a\xae\x85\xd1\xae\x3e\xec\x81\xcf\x21\x19\x0c\x0b\xfa\x76\x18\xb3\x61\xb3\xc8\xe9\xba\x6d\xa5\xc9\x33\xd1\x37\xb3\x65\xdc\x95\x67\x9b\x55\x09\xd6\x29\x38\x9a\x4c\x0a\x30\x84\xad\x3b\x8a\x0d\xfc\x91\xbe\xac\xcd\x9d\xb9\xf7\x96\x04\xf3\x92\x7d\x54\xe6\x05\x96\x65\x86\x4f\xa7\x16\xe1\x24\xe2\x4c\x61\x2c\x7c\x70\xdb\x67\x6a\xb7\x3f\xa7\x85\x3a\xb0\x94\x41\xa5\x03\x19\xe1\x62\xd0\xc9\xa6\xb1\x73\xb4\x9b\xe9\x1d\x1a\xca\xac\x2b\x44\xf9\xbd\xc2\x08\xed\x22\xfb\x31\xbb\xea\x78\xd7\x51\x1c\x10\xee\x78\x9e\x9a\x9d\x84\x83\x3b\xa3\xa8\x80\x32\x0d\x93\xe5\xfe\x35\x49\x46\x0f\x9a\xea\x10\x9b\x90\xa0\x43\x42\xc6\x22\xfd\x14\xb7\x79\x65\x6a\x58\xdf\x55\x16\x9f\xc7\x2e\x12\xfc\xb4\x07\x50\xbd\xc2\x78\x87\xcb\x33\x5b\x5c\x9e\x71\x2f\xdd\x6c\x71\xf0\xf7\x4e\x92\x05\x5c\xf6\x9f\x3f\x9e\x43\x1e\x2e\xc9\x53\xf9\xef\x0f\xea\x04\xad\x3a\x9e\x31\xee\xf4\x29\x42\x7b\xd5\x48\xdb\x7e\x89\x99\xc6\xcb\x70\x6d\x0f\x79\x48\x46\xab\x46\x28\xec\x4b\x5d\xa3\x79\xdd\xac\x6a\x16\xba\x40\xcb\x4e\xdf\x5b\xfe\x4f\xc4\xd3\xb9\x53\x7b\x60\xf6\xa0\x79\xb8\x2d\x7b\x36\x5c\xa8\x73\xc6\xf9\x0e\x0f\x2b\xe6\x1f\xf5\xf5\xf0\x32\x4f\x1d\xbd\xef\x33\x11\x4a\xdc\x7b\x7a\x12\xee\x4c\x69\x14\xfe\xf4\x3c\xb1\x06\x90\x93\xab\xf4\x9b\xe7\xd3\x9e\x75\x91\x63\x8f\x6f\xac\x7f\x52\xe6\x74\x52\x1a\xf4\x12\x05\x48\x6c\x9d\x21\x72\x56\x25\xc9\x25\x93\x83\x4b\xfc\xd2\x63\x95\x97\xbd\x96\x48\x08\xe4\x9a\xb4\xb5\xfe\x90\x51\xfd\xb4\xd6\xca\x93\x4a\xf9\x0f\x19\xa2\x76\x8e\xc3\xb8\x29\x57\x60\x25\xd1\xb4\xa1\xae\xc7\x79\x7d\xd4\x3f\xf1\x48\x59\xbe\xcb\xf7\x3b\x4a\xd1\x58\x29\x18\x87\x6a\x33\xc4\xe2\xb1\x93\xcd\xff\xd4\x87\x4a\x9e\x93\xc8\x0e\x6b\x60\xc7\x6a\x97\x16\x81\xc5\x3d\x60\xeb\x47\x65\x11\xcb\x72\x75\x2e\x1e\xf9\xfc\x9c\xff\xd0\xac\x5f\x46\x43\xca\x1b\xcc\x3b\x2d\xb7\x3b\xc7\x26\xe2\x4b\x21\xbc\xb7\x8e\x61\x86\x9c\x23\x0a\x04\x9f\x8b\x06\x3e\xa6\xeb\x61\x06\x2c\x35\x37\xf7\xcf\x4b\xa4\x86\x27\x1e\xfb\xe2\xec\x27\xdf\xd5\xc3\x60\x69\x33\xe7\x87\xb2\x83\xcf\xcf\x7f\x49\xc8\x3b\x4f\xbe\x3b\x43\x86\x63\x77\xad\x30\x4d\xf4\x98\x6e\x3b\x69\x74\x61\x5d\xbc\x50\xb0\x9d\xfe\x48\x5b\x69\xd0\x87\x25\x8a\x7a\x0b\xd0\x94\x1b\x44\x55\xa0\xdb\xbb\x13\x4d\xed\xf9\x42\x92\x5d\x8a\x71\xd5\xa5\x0c\xa6\x20\x3b\xea\x2c\xd7\x2f\xc0\x00\xbe\x06\xb4\xe1\xd5\xab\x27\xad\xb6\xda\x3b\x9a\x74\x51\x70\x9f\x00\xef\x39\xf5\xb4\x00\x33\x56\x97\x16\x71\x2a\xbd\x58\x1f\x82\xfb\x53\xd8\xc5\x88\x3c\xd4\x78\xb2\x14\x46\xc4\x59\xdf\x59\x4a\x71\x38\xcc\xa8\x9c\x47\xed\xfe\x3b\x2a\x4e\xd0\x45\x9f\xf0\xbf\x6c\xfd\x70\xdf\x10\x52\x6d\xfb\xbf\xb5\x2a\x55\x18\x85\x71\x13\xc7\x20\xa9\x0e\xcd\xc3\xf4\xfb\xfb\xdf\x27\x17\x59\xe4\x36\x85\x7e\xf4\x8f\xff\x14\x02\x02\xfd\x41\x16\x00\x9c\x6b\x36\xb2\xdc\xaf\x41\x6d\x5e\xa1\x5f\x4d\x9a\x52\xf8\x1c\x82\x3d\x79\x33\x8f\x70\xaa\x7e\x4f\x45\x4c\xbb\xaf\xca\x30\x41\x9c\xb9\xaf\x98\x17\x78\x67\x97\x96\x21\x5a\x7d\xca\xa2\x63\x14\x24\xe3\xa0\xa2\x96\x26\x49\x88\x3d\x76\x66\x8c\x99\xfb\xb6\xf8\x5a\xba\x68\xe4\x14\x5a\xbf\xf5\x4f\x2a\x13\x9a\x85\x7f\xc9\x2d\x8c\x3c\xfd\x1d\x5c\xac\x98\xd6\x43\x87\x0b\x5b\xe5\xfc\x31\x65\x87\xf5\xbf\x9b\x06\xaf\xbf\x59\xbe\xfd\xc0\xb6\xa6\x22\x74\x2b\x95\xa3\x84\x69\xdc\x97\x1d\x60\xdb\xeb\x73\x79\x11\xf3\x1f\xa5\xf9\x36\xdb\xb4\x0c\x34\x06\xdf\xf5\xa9\x6b\x3d\xd2\x4d\x81\x79\xc5\x75\x8a\xdd\xc2\x11\xd5\x6e\x73\xc4\x36\xc4\xf6\xb1\xf7\xcf\xd6\x35\xa8\xdc\xe4\x86\x3c\xfe\xcf\xc5\x74\x5d\xe5\xbb\x60\xf5\x3c\x1f\x30\xcd\x31\xe3\xf4\x0c\x9e\xbe\xe2\xee\x3e\x54\xf7\x43\xa9\xd7\x11\x6e\x1f\x8f\xbd\xa1\xc9\xf5\xc1\xc4\x50\xe3\xc9\xec\x4a\xce\x75\xda\x7c\x4b\xe5\x8b\xa2\xdb\xfc\xd5\x0b\x2d\x0c\x1a\x6f\xe1\x4a\xdb\x1f\x0c\xad\x50\xcb\x99\x42\x79\xcc\x9a\xb0\x0a\xbc\x97\x4f\x4d\x99\xe4\x1c\x7b\x4b\xa1\x7a\xa1\xa1\x97\x18\x7a\x3b\xf5\xba\x82\x1d\x36\x0f\x7a\xe4\x01\x02\xee\xbf\xb5\x02\x0b\x0e\x79\x98\x6e\x76\xec\xce\xdf\xc0\x28\x63\x80\xc7\xcf\x29\x00\x27\xa6\xa3\x25\x95\x9c\xa9\xf9\x40\x47\x5f\x32\xd5\x75\x55\x49\x07\x2b\x99\x3f\x80\x5f\x28\xa7\xf6\x24\x0b\x7a\x04\x06\xbc\x4d\x0c\xf3\x14\x5e\xb4\x9d\x5b\x56\xfd\x96\x52\x87\x53\xe3\x18\x83\x2c\xb9\x5c\xcc\x92\x4e\xe5\x7d\xbc\x86\x19\xdd\xa4\x8f\xd1\xee\x02\x32\x89\xab\xeb\x1b\xf0\x5a\x48\x41\x27\x6a\x6a\x0a\x7f\x0e\xc1\x1e\x19\x51\x0a\x52\x9d\x98\xb7\xdc\x8c\xfb\xec\x0f\x07\x23\x69\x7b\xbb\x46\x2b\x28\x15\x5a\x9a\x0d\xb2\x61\x4a\xf0\xdc\xa5\xb0\xc3\x83\x53\xac\xbf\x6a\xbf\xce\x0a\x9f\x40\xc4\x19\x2a\x2f\xf1\xbf\xe4\xf5\x31\xe6\x62\x13\xaf\x0f\x73\xe1\xab\x03\x02\xaa\x68\x96\xe3\x63\x9f\x24\x59\xb2\x5f\x57\x0a\xa9\x89\xdb\x7a\x19\xc9\x12\x5c\x74\xef\xe3\xf1\x16\xf6\xd1\x52\x56\x9b\xf5\x54\x00\x4c\xa9\xde\x46\x00\x50\x5c\x30\x55\x38\x4b\x1e\x53\x79\x25\xee\x0b\x78\xe8\x4f\x94\x8a\xe3\xcf\xe1\x7e\x70\xce\x0e\xf0\x07\x35\x2a\x85\x0a\xb7\x0c\x65\x25\x0e\xa1\x74\xe1\x0f\x49\x16\x53\x10\x46\x9e\x05\x94\x81\xf2\x26\x32\x68\x2b\x88\xf2\x5b\x18\xc0\xca\xfe\x71\xa8\x0e\x7e\x1f\x7e\x0e\xe8\x16\x6a\x84\x1a\xfd\x64\x84\x3e\x5d\x4a\x5d\xb1\x7d\x83\x21\x5a\xeb\xb9\xef\xa7\xe0\x50\x0a\x45\xed\x0a\x69\x2e\x95\x20\x76\xe0\x64\x03\x8f\xb8\xa9\xbb\x09\xe7\xb8\xbb\xb2\x43\xed\x1d\x8a\x57\xda\xde\x25\x9b\x45\xc6\x96\xb1\x25\xe5\x5a\x8d\xbf\x1e\xb2\x81\x67\x9b\xb6\x77\xa3\xc7\x6f\x33\x1d\xda\xa3\xa9\x5f\x5f\x6e\xf6\xf8\x3d\xa5\x53\x54\x41\xbe\xd5\xa6\x6d\x6e\x3d\x65\xaf\xed\xc8\x2b\xdd\x47\xe9\xf4\xb6\xfd\x95\x5b\x75\x95\x64\x82\xd0\xa0\x27\xb6\xb4\x4f\x8b\xe2\xe7\x14\x4c\xd4\xb0\x29\x6d\xf8\x74\x18\x2d\x22\xa2\xff\xe5\x02\x6e\x61\xfc\xc8\x58\x38\xe8\x81\x14\x0b\x97\xe3\x23\x7e\x31\xc9\x5a\x41\x71\x07\x32\x55\x24\x5e\xc2\xf6\x73\x46\x5b\x4b\xff\x83\xd4\x98\x4c\x52\x67\xe3\x4f\xd2\x23\x08\x95\x3a\xbc\xcb\x6a\xcc\x0d\x43\xb2\xce\x6d\xf8\x2a\xdf\x76\xad\xfd\xb3\x17\xe4\x9f\x5d\x23\x9c\x5f\x85\xd5\xb3\x6e\xd4\x08\xcf\x7c\xb8\xb3\x32\x24\x1b\x89\x59\xaf\x66\x82\x76\x5e\x9e\xf2\xb5\xf0\x7d\xfb\xe6\xec\xde\xfb\x2e\xa5\xae\x11\x8d\xc7\x3a\x3c\x70\xcf\xb7\xb4\x33\xc3\xa1\x48\x07\x84\x11\x80\x45\x67\x17\xca\xbe\x23\xdc\xc5\x28\xdc\x6b\x5d\x17\x0a\x12\x4f\xa9\x02\x92\x6d\x47\x6e\x53\xb6\x9d\x7b\x65\xb0\x5b\x8b\x48\x73\x61\x49\x6a\xd3\x81\x66\x91\x95\x1c\xce\xe4\x2c\xd3\x60\x48\x70\xe0\xb1\x13\xd0\x05\x6e\x58\x2b\x4d\xbf\xf7\x9f\xce\x83\x0f\x70\x9f\xdf\xbf\x3f\x0b\x48\xb0\x70\xd4\xc2\x54\x30\xb5\xd5\x12\x66\x83\xa9\x9c\x0a\xa6\xfa\x73\x60\xc2\x0c\xf7\x7f\x04\xa6\xc2\x9e\xf5\x6e\xeb\x2d\x37\xfa\xf5\x04\xa4\x1c\xf0\x00\x46\x1d\x73\xd1\xf9\xfb\x3f\x1d\x5e\x32\xd5\xf2\x36\xfc\x13\x88\x55\x60\xde\x3e\x82\x85\xa8\x44\x27\x40\xa6\x7d\xcb\x2b\x61\x42\x5a\xfa\xa7\xee\x40\x99\x63\xbd\x70\xf1\x5b\xa0\xb2\x81\x82\x7a\xb8\x3a\xcc\xcd\xbc\x6a\xac\xa4\x64\x20\x24\xc4\xdc\x90\x85\x2e\xee\xc3\x04\x29\x58\xe2\xea\x6d\xcb\x99\x67\x15\x6b\x29\x74\x3c\x6e\xff\x50\xb8\x48\x46\x51\x7a\xd5\x1e\xd6\x91\x95\x8d\xc6\x6c\xbd\x47\xfb\x68\x6f\xcd\x1e\x49\x3f\x15\x17\x8b\x38\xa3\xbd\x3b\x6e\x75\x93\x61\x3b\xf2\x35\xa7\x4d\x47\x85\xc6\x5d\x21\xf2\x3f\x06\x8a\x81\xed\x93\x5d\xd2\xfb\x07\xb7\xb9\x1d\xa2\xe5\xd0\x84\x11\x50\x80\xaf\xd2\x6c\xbd\x3b\x59\xd9\x9e\x85\xa1\xce\x65\x6c\xcf\xcf\x39\xac\x46\x8b\x31\xee\x97\xce\x2e\xec\xb9\x0a\xa9\x22\xae\xd8\x3d\x70\x78\x94\x01\xb3\x45\x75\xe8\x58\x72\x47\xae\x96\x87\x01\xef\xa0\xaf\xd7\x8b\xee\xee\x36\x21\x29\xdf\x05\x41\x77\xd7\xe3\xa8\x3a\xac\x63\x93\xd0\x39\x05\xad\x56\xba\x09\x82\x80\x6e\x70\xdd\x36\xdd\xdb\xd4\x71\x31\x82\xcc\x3e\x2d\x8e\x81\x19\x94\xb8\xaa\xde\x6b\x2e\x06\x84\x05\x2f\x87\x5f\xbc\xfb\xdb\x63\xfa\x9d\x16\x65\x8b\xfe\x3c\x99\x1e\xcc\x3e\x93\xb9\xcb\xa0\x58\x33\x54\xc0\x45\xe3\x29\x87\xf3\x60\x7c\x9e\x22\xe8\x4d\xe5\xe2\xa4\x70\x44\x7f\x56\x37\x56\xac\x80\x19\xa1\x76\xec\x58\xb5\x76\x5f\xc7\x10\x62\x45\x3b\x4f\x1f\x6c\xd0\x53\x02\x52\xf1\x7f\xe0\x5f\xe3\x88\xd7\xfe\x3a\xca\x55\xa1\x02\x62\x10\xb8\xeb\x3a\xe4\xdd\xe6\x64\xd2\x08\xb4\x7e\xb8\x36\x21\xba\x44\xb8\xd5\x69\x4e\x78\x26\x89\x28\x50\xdc\xd8\xe1\x57\x4a\x0c\x28\x13\xba\xee\x8d\x89\x7c\x5a\x5d\xd2\xea\x4a\x78\x9b\xb8\x0b\x22\xab\xc7\xc8\x9a\x54\x79\x21\x0e\xe1\xf3\x48\xa8\xac\x32\xb2\x0c\xce\x0a\x80\xf3\x96\x6f\x43\xfd\x0d\x2c\xb6\x7c\x33\xb2\x7a\xfc\xcd\x5b\xa2\xe1\x41\x6b\xee\x42\x83\x0b\xd6\x9a\x44\x81\x82\xe1\x7b\x93\x9e\x42\xc7\x78\x2a\xf0\x7b\x89\x0f\x5d\x57\xf2\x66\x11\x8b\x3d\x4c\xf9\xc6\x14\x06\x07\xf5\x5b\xf7\xbb\x41\x9c\x6d\x55\xf8\x2f\xa2\x9f\x5a\x13\x24\x16\x37\x1c\xae\xce\x37\xd6\x09\xa3\xee\x27\xf7\xbb\x69\x5b\xd4\x25\x87\x07\x4d\x45\xfb\x4c\x6d\x67\x1f\xb8\x0d\xc8\x57\x7c\x3d\x1c\xe1\x4e\xf1\x6d\x88\x98\xfb\x70\x34\x40\xac\x53\x7c\xcc\xe3\xe3\x4c\x1d\xe9\xf4\xa7\x9d\xc6\x20\x1c\x13\xa7\xfd\x73\x9a\x7e\x5f\xc9\x4f\xf2\x37\x0f\xa4\x1a\x7a\xdf\xcc\x71\x0c\x8a\xff\x2b\xeb\x3b\xf4\xb1\xb8\xfc\xed\x4c\xb6\x3f\xf7\x5b\xed\xf0\x05\x71\x22\x6c\x8f\xa7\x8b\xda\x63\x9a\xcb\xd7\xce\x2d\x0f\x31\xd9\x64\x33\xc8\x28\xc6\xcb\xa8\x59\x2f\xd6\xd1\x58\xd2\xc9\x97\xef\x12\xc4\x41\x48\xa7\xbd\x9d\x08\x2c\xde\xbd\xb3\x69\xec\xd8\xe7\x86\xbb\x2b\x7c\xd2\xb1\x98\x60\xdd\xdb\x71\x88\xa3\xe3\x27\x6c\x8c\x94\x28\x99\x26\xb6\xeb\xe5\x4b\xc3\x32\xcf\x16\x1c\x77\x6d\x2e\x71\xd8\x16\x74\xed\xee\x7e\x89\x67\xb9\xc4\x5a\xc6\x4e\x5a\x21\x87\xc6\x1a\xdf\x57\x9f\xf9\x91\x47\xbc\xc3\x65\xe5\x3d\x14\x3e\x13\x5c\x4c\x9c\x62\x17\x95\xa6\xcc\x34\xd0\x61\xce\x71\x3f\xab\x3a\x4b\x85\xfa\xa9\x08\xcf\x93\xfd\x49\x55\xf8\x74\x42\xd6\x2f\xf7\x92\xaa\xa1\x2d\xb8\x74\x9a\x20\x23\x60\x8f\x39\xf9\x1e\x03\x90\x70\x9f\x8f\x28\xe4\x1f\xb4\x5d\x35\x23\x6c\x1a\x77\xad\x61\x70\x1e\x0a\xe1\xea\x08\x52\xb4\xd5\x0b\x15\x80\xbd\x6d\x7f\xaa\xb7\x8a\xe5\x81\x4e\x54\x60\x64\x8e\xc7\x65\x01\xc2\x4b\xbc\x26\x8b\x19\x9c\x8b\xa9\xbb\x78\x1c\xc7\xba\xbe\xc4\x58\x9a\x80\x19\xa6\xfc\x28\x93\xd4\xd4\x2c\x1d\x84\x72\x26\xe0\xdf\xaa\x5b\xf1\xb7\x02\xb0\xb8\x07\xc4\xc4\x44\xf0\x31\x84\xa3\x63\x1e\x98\x4f\x1c\xd6\x9d\x9c\x5d\xd1\x30\x5c\xc0\xa2\xca\x04\x80\xa6\xbb\xa6\xe9\x23\x35\x64\xc3\xb9\xbd\xcd\xac\xa2\xf9\x99\x73\xfc\x96\xad\x4c\xa0\xf6\xda\x08\x31\xa9\x59\x3b\x03\x44\x4c\x8b\x98\x62\xe4\x88\x1d\x5f\xca\x9c\x7f\x76\xa0\x5a\xc7\x30\x53\xaa\xd6\x70\xc4\x1d\xbd\xe9\x35\xb3\xab\x18\x84\x1a\x92\x19\x79\x72\x83\x1b\x7f\x6f\x9d\x7d\xd3\x17\xbd\x81\x15\xde\xe2\xd7\x2d\x8b\x01\x6e\xcc\x1c\x83\x87\x30\xac\x82\x12\xc2\xd5\x93\xcf\x82\x8d\x09\x03\xee\x8f\x89\xf1\x7e\x34\x63\xfc\x13\x0a\x70\xa8\x87\x16\x34\xcb\x19\xd7\x9e\x32\x6c\x0a\x80\x4d\x13\x34\x34\xa9\xb4\x2a\xe0\xae\xba\x9c\xc4\x25\x80\x26\x9f\x59\x83\xfa\xe1\x33\x64\x34\x55\x08\x3d\x9e\x3a\xf0\x53\xf4\x9e\x8f\x4b\xcb\x03\x98\xb9\xb2\x6a\x47\xee\x31\x98\x49\x2c\x6e\x35\xcd\x02\x05\x93\xcd\x25\x84\xce\x34\x44\xee\x9e\x62\x2b\x8a\xdc\x6f\x1d\xff\xba\x49\x3e\xab\x80\x70\x0b\x5b\xaf\x40\xdb\x67\x17\xa6\x1e\xd4\x4d\x0b\x63\xb7\x85\x64\x81\xfd\x2f\x4d\x94\x0e\x89\x1e\x58\x8a\xab\x0a\xc7\xd1\xb6\xbc\x09\xc4\xa9\xe5\x4a\x53\x89\x79\x08\xe9\xac\x6d\x2e\x6f\x2e\x9c\xe2\xc5\x25\x17\xff\x20\xfa\xce\xf8\x1f\xa2\x52\xf0\xbf\xf7\xba\xf8\x18\xad\x23\x26\xc9\x58\xad\x36\x16\xe4\x19\xa4\xd2\x3b\xed\x39\x74\xea\xa8\x7b\xd8\xd4\xe6\x94\x09\x37\x7b\x42\x48\x56\xa2\x1b\x24\xd5\xb9\x0b\x0c\xc8\x8c\x68\x2d\x7b\x79\xd0\x08\x71\x5f\x88\xea\x0e\x1b\xa1\x4b\xac\xbc\x03\x9e\x2b\x37\xaa\x52\x49\xca\x1f\xea\x49\xf4\x8a\x9f\xab\xda\x52\xac\x42\xb4\x48\xef\x20\x5e\xf3\x5f\xb6\x94\x7f\xf7\x48\x3f\xdb\xc5\x56\x14\x70\x53\x0e\x2d\xb5\xdd\x96\x43\x7d\x26\x9a\x06\xda\x66\x98\x46\x60\x73\x10\x26\x9b\x50\x6c\xc5\xcb\x9a\x6e\x62\x7d\x7e\xe9\x52\x0a\x44\x14\x21\x8b\x8f\x40\x12\xdb\xa7\xda\x1d\xb2\x57\x16\x87\x1e\xa6\x8d\x65\xa3\xde\x33\x64\xef\x87\x05\xc0\xaf\x54\xb0\x73\x4b\x8c\xd3\xdf\x3d\x68\xa1\xc8\xa6\x87\x7b\x98\x04\xad\x5e\xe8\x1d\x0e\x41\xc6\xee\x13\x7c\x39\xe3\x8b\x7b\xea\xc7\x7f\x96\x65\xd2\x3f\x6d\xca\x74\xf5\x8c\xe8\x05\x78\x3f\x30\x54\xf3\x9f\x69\xe7\xc0\x58\xf1\x81\xce\xad\x1b\x2b\x15\x83\xbb\x5a\xbc\xe7\xb0\x1a\xa1\xe5\x3b\xf7\xac\xf3\xdf\x7d\xb6\x83\xda\x1b\x8a\x78\xed\x24\x52\x03\xeb\x89\x79\x8c\x8e\xa1\x27\xba\xce\xbe\xe9\xd8\xc4\x47\x08\x25\x79\xe7\xa8\xc5\xd3\x61\x11\xe9\xbb\xd7\x4b\x0c\x18\xd3\x2d\x2c\x22\x9d\x6a\x43\xfd\xb1\x67\xa6\x59\x89\x3d\x0e\x28\xe7\x80\x1f\xf7\xd5\x7e\x0a\x4c\x97\x54\x49\x87\xc3\x42\xdd\x8a\x8d\x1f\x7c\x69\x71\x9e\x71\xa7\x71\x23\x89\xe6\xda\x36\x56\xa8\x1d\x4d\xa9\xe8\x4b\x84\x53\x51\x38\xbf\xb4\xe2\x12\x15\x73\x2f\xad\x28\x49\x24\x85\x4c\x2c\x7f\x25\xa9\xa0\x3b\xb5\xe8\x7f\x65\x6a\x63\x10\xce\xca\xa7\xd7\x85\x49\xdb\x32\x1a\x97\xce\x85\x10\x7d\x12\x81\xf5\x93\x1d\xdb\x04\xf1\xf7\x06\x91\x02\xde\xcc\x86\x1b\xef\xfd\x86\xe3\x42\xa7\x1a\x76\x7f\x1d\x11\x4c\x34\x72\x51\x7a\x75\x11\x04\x1c\x40\xbf\x53\x9d\xaa\xe3\x03\x7c\x23\xd6\xb9\xf9\xd1\xa7\x8b\xb5\xe4\x87\xa1\xb3\x50\xfa\x4b\x33\x95\x99\xbc\x83\x00\x70\x2b\x7c\x80\x3d\x81\x6a\x10\x61\x84\x7e\x6b\x0f\xb9\xe7\x97\x05\x83\x89\xff\xcd\x54\x7d\x7a\x51\x41\x58\xbd\x0d\x65\xa2\x62\x4d\x20\x5f\x34\x9b\x21\x0b\x69\xff\xe0\xb0\x6a\x33\x2f\x39\x29\x14\xc4\x17\xce\x47\xdb\xfe\x7c\x1a\x66\x75\xb0\x28\x84\x9e\x37\xb4\x85\x90\xa4\xa5\xce\x34\xda\xd6\x60\xfa\x4e\x23\x6b\xdb\x21\x24\x17\xf2\x49\xef\x78\x33\xce\xbd\x77\x06\x64\x10\xaa\xb4\x79\x29\x63\xed\xe2\xb6\x39\x7b\xa6\x07\x4e\xb5\x75\x88\x6a\xa0\xdb\x8e\x64\xbf\xbd\x49\x3b\x79\xea\x51\x96\x08\xd2\x3e\xa5\xf7\xe0\x35\x0c\x13\xaf\x20\xae\x7c\xf7\x0e\x2f\x50\xac\x8e\x1b\x5a\x88\x3e\x41\x7d\xd4\xdb\xca\x46\xd2\x98\x62\xff\x5c\x9b\xfc\x88\x7e\x03\x62\xdc\x40\x03\xfd\x79\x76\x03\x4f\xa9\x0d\xd4\xdc\x06\xea\xc9\x06\xcc\xf9\xf8\xcb\xe0\x80\xf2\xc7\xad\x2f\xd4\xcc\x04\x86\xcf\x30\x75\xdd\xb4\x1c\xf6\x8d\x45\x84\xdb\x4f\xfd\xa5\xbd\xbe\x32\xa4\x50\xc0\x93\x3b\xf8\x5e\x40\x6a\x10\xf5\x4d\x5e\x76\xa6\xbb\xac\xcb\x97\x2f\xab\x3b\x62\x9b\x4f\xdf\x7d\xcf\xec\xcb\xaf\xb4\xf9\x70\x4b\x6f\xbd\x0a\x96\x2f\x70\xdf\xe3\x3e\x79\x3e\xf2\x9a\x5a\x98\xab\x4f\x6d\x1b\x77\xe3\x30\x13\xc8\xd4\xf1\xdd\x28\x8d\xe2\xda\x9f\xbc\x42\x82\x03\xb2\x69\x68\x88\xa4\x49\x14\x41\x87\x44\x3d\x45\xed\x06\xca\x46\xf8\xd5\x0e\x06\xbe\xaa\xa5\x0c\x9f\x7f\x49\xdc\x47\x54\xfb\xc8\x94\x8e\x43\x58\x75\x0a\x89\x68\xf3\xc9\x2a\xe5\x3d\x57\xe1\x49\x40\x2f\x7c\xb2\x46\x1f\x35\xbe\xfc\x25\x18\x31\xeb\x6d\xc5\x72\xb5\x68\x5f\xd5\x3a\x59\xd3\x96\x51\xa4\xb1\x63\xf7\xf8\x59\xa5\xe9\xff\x59\x2c\xa3\xa5\x54\xca\xb0\xaf\x89\x03\x15\x58\xa6\x0c\x01\xc8\x84\xe6\xde\xe0\x57\x9f\x71\x69\x03\xcd\x16\x1e\xfc\xfa\xe5\x07\xfd\x21\x51\xbf\x8c\x70\x4a\x3c\x14\x27\x07\x1b\x33\x60\x0f\xfa\x43\xa2\x7a\x1f\xd5\xff\x51\xc8\x08\xbe\xea\x85\x0a\xa7\x8e\x63\x65\xc1\x21\xc6\xa6\x42\xa5\x73\x3a\x13\xc9\xcc\x7b\xe8\x50\xb7\x19\xc8\x37\x7d\xa6\xbc\x79\x3f\x30\x4a\x6a\x6f\x3f\x5c\xdb\xbc\x9c\xff\x14\x35\xd0\x8f\x67\x79\x18\xd9\xf1\xed\x6c\x9d\x4c\x2d\xc3\x74\xc8\xa3\xde\xcd\xe4\xf8\x35\x27\xaf\x9d\x18\x06\x65\xcb\xf4\x9d\xe5\x8a\xff\xe0\x5e\xda\x52\x92\xf0\xdb\xca\xd6\x22\xc3\x07\xbd\x4a\xdf\x45\xa3\xe0\xed\x38\xd4\x1a\x08\x67\xa8\xe0\xe0\x7a\xdf\x75\x07\xfe\xa0\x9b\x73\x3f\x95\xb6\x73\x55\xd7\xf6\x86\x30\xa5\x36\xfe\x46\x12\x34\x4a\xc1\x74\xba\xd3\xfc\x42\x75\x3a\x30\xc6\x56\x4b\xc3\xa1\x6b\x76\x23\xb4\x39\xf6\x99\xb4\x01\x30\xd8\x66\x0f\xa7\xba\xae\x2e\xfc\xf9\x56\x22\x90\x77\x77\xbe\xbf\x9e\x81\x2e\x8d\xf1\x9c\x1e\x1d\x08\x8b\x9f\x99\x3b\x55\x1d\x8b\xae\x6d\x42\x62\xe4\x16\xe2\x0a\x33\x5c\x3a\x0a\xab\xa5\x69\xda\x5d\x8d\x05\x52\xda\x33\xcf\xe5\x04\x29\x60\x15\x53\x2a\x1b\x78\x16\x5b\x28\xe3\x1b\xe7\xe8\xdf\x2c\x17\x4d\x98\x34\x2f\x5d\x7b\x9e\xa8\x9b\x2d\x03\xb8\x74\x0d\x80\x22\x4e\xc2\x76\x2c\x76\xc2\xe1\x46\x93\x3d\x72\x57\x12\x23\xd8\x8b\x6d\x8f\xab\x8d\xc0\x6d\x0d\x1a\x36\xe9\x71\x70\xce\x29\xec\x87\x95\xaf\x3a\xf5\xf3\x57\x79\x67\x2e\xe9\x93\xcf\x4a\x95\x1c\x71\x91\x39\x76\xb1\x8e\x6c\x2a\x98\xe5\x9a\x25\xab\x15\xbf\xbc\x53\x77\x10\x6e\x83\xa0\x5b\x64\x55\x28\x7b\x9a\x48\x42\xb1\x35\x33\x26\x5b\x54\xdd\xc0\x71\x6a\x0b\x3e\x5a\xe2\x49\xa1\x9b\xe9\x32\xd2\x2e\x38\xd4\x76\xa5\xad\x74\x4a\x74\xe0\xb6\xcc\x28\xdc\xec\x2c\xfb\x4d\xc2\x30\x3f\x72\xdb\x3f\x2e\x23\xb1\xcd\x9b\x7d\xe0\x15\x89\x47\x76\x69\xd2\x1a\xd0\xda\x79\x83\xec\x23\xed\x35\xb2\x43\xd0\x6f\x34\x12\x4f\xcf\xe0\x5d\xdc\x45\x30\x2c\xd2\x76\x96\xe4\x27\x29\x49\x4d\xdc\x53\x4f\x6b\x6f\x9d\xd0\xaf\xfe\x14\xaa\x3c\x05\xec\xcd\x05\x7c\xab\x23\xa7\xec\x72\xe3\xfb\x33\x34\x12\xcd\xf3\x9e\xfb\x89\xfd\xd8\x35\x09\xf8\xc1\x40\x73\x26\x12\x52\xbf\x5c\x0b\x7c\xf5\x15\xfe\xeb\x20\x08\x1a\x34\x89\x3b\xac\xcb\x61\x1d\x41\x2b\x70\xcc\xc6\x97\xef\x01\xb6\xa0\x2d\x15\x0f\x9a\x22\xc9\xae\xa3\xd4\x09\x5b\x68\x35\x5d\xec\xe6\x43\xab\x17\x6a\x00\x1b\xe3\x31\xb2\x0d\xf0\x90\x77\x7c\xd2\xae\xe9\xac\xec\xaa\xb9\xd8\xad\xc3\x66\xcd\x4d\xe4\x37\x46\x57\x48\xa8\xfb\x9b\x64\xbb\x2a\x85\xb0\xdd\xc8\x81\xda\xc7\x69\xb9\xf1\xbb\xee\x75\x3b\x2d\x19\x36\xf8\x5e\x47\x15\xd6\xf5\xc8\xe3\xae\xa6\xd1\x4b\xc8\xc2\xe0\x1b\x42\xba\x0c\x91\xc1\xe6\x9e\x0a\x57\x19\x7b\x37\x37\x7c\x37\x90\xd5\x12\xab\x9f\xa0\xb0\x6b\xa6\xf0\x87\x0f\xca\xbf\xe0\xf8\x41\xde\xd9\x4c\xe1\x31\xc1\x38\x5e\x29\x82\xb1\x69\x44\xf6\x52\xda\x16\x59\x1a\x4b\x6b\x5a\xa9\x7b\x85\x00\x31\xde\xe4\x99\x19\x12\xc4\x31\xa5\xda\x0e\x78\xca\x6e\x44\x1d\xe9\x60\x0b\x2c\xa8\x00\x56\x2d\xe7\x6b\xb9\xe6\x03\x8d\xfc\xff\x46\x57\xec\x00\x78\x6d\x17\xd6\x6b\x76\x59\x73\x28\x90\xf6\x54\xb8\x0b\x82\x60\xd7\xa4\x87\xaf\xfb\x66\x82\x2d\x1a\xb9\x0d\xd5\xab\x91\x44\x42\xe9\xda\x1b\xc2\x8a\xe0\x48\xc1\xf1\x38\x72\xc8\x89\x41\xf3\xc0\x5d\x12\x0b\xf0\xf5\x0f\x05\xf0\x14\xd8\xc6\xc4\xb8\xbf\x51\xc4\xf8\xd2\x94\x8c\x37\x26\xf5\x73\x5d\x86\xb3\xe7\xa1\xa1\x49\x56\x5c\xb5\xd9\xa0\x39\x5e\x71\x3c\x2b\x49\xe7\xc4\xdd\x3c\x96\x37\x4e\xfa\xaa\xb8\x36\x79\x4e\x60\xa5\xe3\x67\x32\x35\x55\x22\xbd\x2c\x07\x78\x82\x1c\x9b\x5a\x4f\x72\x19\x04\x41\x8d\xfc\xd0\xc5\x1d\xef\x7d\x3c\x3f\x1a\xca\x95\x45\x93\x41\x3b\x13\x4b\xf4\x24\x32\xba\xbd\x07\x16\xb0\xf2\xb7\x8c\x01\x00\xed\x99\x63\xb8\xf1\x18\x06\x9c\x38\x55\xa5\x59\xbc\xd0\x5b\xa7\xce\x27\x27\x4c\x30\x66\x7f\x51\x63\xf9\xaf\xe9\x8d\x69\x55\x60\x3d\x35\x15\x7c\xf0\xbb\xe7\x7e\xa5\xc9\x84\xb2\x8a\xb9\x15\xbe\xc4\xf5\xc8\xb1\x04\x81\x34\xa1\xa2\xf4\xd3\xc2\x97\x9c\xa5\x77\xdc\xc2\x83\xf2\x8a\x1e\xba\x7d\xed\x0a\xe4\x64\x88\x95\xda\x65\xa4\x88\x14\x44\x51\xaf\xcd\x19\xee\x60\x92\x57\x80\x37\x45\x2e\xf4\x06\xd0\xfb\x48\xfd\xd7\x6f\x7c\x4a\x3c\x4a\x6f\x26\xb3\xf5\x1b\x0c\xe2\xca\x22\x5d\xce\x41\xba\x14\x30\xd0\x2a\x59\x70\xd2\xcd\xc4\xcf\x7a\xd1\x05\xe6\x8a\x6d\x6a\x44\x69\xa0\x25\x85\x7f\xdd\x87\xee\xe4\x63\x12\xb8\xbd\xa4\x8a\x39\x72\xda\x6a\xae\x10\xa7\x5c\x40\xd2\xb5\x11\x4a\xcc\xb4\x51\xc6\x69\x99\xc5\xe3\xb4\xb5\x4b\x34\x49\xf4\x09\xe9\x7e\x3e\x3a\xe3\x69\x6b\xc9\x2c\x68\x78\xab\xd3\x4e\xcd\x11\xf1\xe3\xf9\xf1\xe7\x78\x67\xf4\x3f\xa2\xae\x4b\x1d\x72\xef\xd2\x16\xaa\xb9\x07\x71\xb7\xbc\x0d\x29\x1d\xde\xff\xee\x0e\x9a\x8d\xd8\x04\x3b\x47\x16\xfa\xc6\x00\x79\xf7\x21\xa3\x55\xba\x4c\x55\x98\x65\x68\x34\x99\xe6\x35\x81\x20\xb9\x26\xc4\x6c\x3c\xef\x16\xf0\xda\x83\xd9\xb5\x97\x13\x86\xa8\x0f\x1d\xc5\x20\xc7\x2d\x0c\xf1\xbc\x6a\x32\x71\x5d\xcb\x2d\x2a\x95\x9c\x8f\x8e\x96\x1c\xe8\x58\xbc\xa5\xc7\xa8\x14\xbf\x24\x28\xb0\xe8\x0e\x87\x8c\x3b\x72\xbf\xb8\x91\x74\x65\xf3\x46\xa4\xd1\xd6\xd4\x21\xc5\x44\x91\x89\xe5\x06\xff\xa5\x6c\x3f\xca\x2e\x8b\x99\x77\x9d\x61\x16\xc1\x7b\x8d\x1e\x78\x0c\xe4\xea\xfc\xe4\xcc\x6c\x5b\x77\x8b\xc4\x03\x44\x11\x01\xc6\x9b\x41\x14\x04\x83\x68\x0d\xf6\xaf\xca\x67\x74\xde\x87\xa1\x0d\xb1\xe0\x43\xd3\xb3\xb2\xcb\x72\x80\x43\xae\xcc\x92\x66\x6b\x63\xbb\xb6\xc7\x6d\x45\x33\x9b\xb4\xba\x1f\xb5\x49\xd1\x8a\x8a\x17\xce\x5a\x33\xca\x92\x17\xbf\x91\x44\xf9\xa2\x22\x57\x1f\xb2\x7a\xa6\xef\x62\x0c\x9f\x18\x75\x07\xec\x82\x5d\x1c\x86\xcb\xfd\x06\x3c\x34\xec\xc8\x1d\x2f\xb4\xb1\xd6\x2f\x6e\x53\x3a\x33\xc8\x2c\x42\x20\xcc\xfb\xc6\xdd\xbd\xda\x72\x36\x01\x33\xdd\x9f\x65\x11\xbc\x3d\xe6\xb9\xeb\x5c\xbe\x38\x7f\x7c\xa3\x6f\xa4\x78\x99\x55\x8e\x65\x61\xc9\x50\x5c\xcb\x45\x14\xde\x97\x37\x23\xc2\xb6\x35\xb4\x86\xc0\xda\xf7\x5a\xf6\x64\xd3\x4c\x51\x45\x00\x4c\x36\x01\x1c\x50\x35\xe7\x44\x32\xec\x05\xfd\xbc\x69\xe6\x9c\x63\x44\x1a\x28\xd6\x1d\x76\x50\xee\x84\x34\x23\x15\x4c\x2b\x26\x54\xcd\x27\xe6\xb6\xe2\xaf\xc3\x81\xdb\x5f\x1d\xfd\x4b\x9b\x7d\x30\x2b\x55\xb7\x2b\x3d\x4c\xd2\x28\xa9\x67\xb2\x88\xc9\xf3\xa5\xe2\x6c\xe3\xbe\x03\x4d\x23\xe3\x8d\xc2\x92\x4c\xbc\x3d\x48\x63\x6c\xde\x0c\xf1\x26\x2e\x43\x71\x16\xd4\xf3\x24\x44\x52\x8b\x1b\x79\x5b\xd3\x0e\xec\x69\x73\xf0\xf8\xeb\xab\xf8\x5c\xe3\x43\xf0\x36\xdf\x8c\x32\x46\xd3\xc3\x62\xcb\xf3\xc8\x6c\xec\x31\xde\x4c\xb0\x9d\xc7\x3b\x7e\x1e\x5e\x7b\x97\x78\x26\xac\x8b\xb9\x9d\xe6\x9d\x25\xb3\xb3\x30\xce\xd0\xe3\xbc\x52\x08\xe8\x24\xa2\x8e\x15\x75\x96\x37\xe1\x8b\x9b\xaa\x3c\x35\xfa\x70\xd6\x4a\x5a\x1e\x07\x0d\x1c\x56\x21\xd4\xf8\x74\x10\x2c\x5f\xb6\xd2\x79\x6c\x84\x46\xc2\xe0\xb5\xbb\x51\xcd\x16\x57\xa1\xb0\x4e\x34\x3f\x6d\xeb\x82\x16\x09\x87\x3e\xef\x92\xaa\x3f\x5d\xb6\x64\x36\x9d\x9d\x65\xbd\xae\xfb\x4a\x7d\x77\x60\x26\x16\x86\xf5\x4a\x14\x04\x95\x68\xf6\x8d\xcd\x2c\xb8\x7a\xf1\x41\xb4\xd2\xe4\x5e\x01\x05\x70\x9f\x17\x7b\x64\xb7\x0d\xd1\xa7\xa6\xb0\x3a\x06\x7b\x1e\x1c\xd4\x36\x34\xbc\x79\x49\x64\x0a\x1a\x60\x4e\x9c\xc8\x12\xd8\x20\x1c\xe7\x15\xa7\x31\xe9\x9a\x73\xe1\x72\xca\xb0\x12\xbd\x89\x41\xc1\x37\x97\x86\x50\xff\x0c\x82\x80\x72\x6d\xf6\xc2\x21\x9a\x59\x74\x59\xfe\xeb\x2a\x16\x24\x2e\xb6\xc8\x47\x5c\x70\x99\x4f\x88\x7c\xde\x32\xaf\x7c\xcf\xd8\x18\xd4\x26\x0b\xfb\x1e\x7e\x09\x6a\x39\xc5\xb7\xd4\x34\x63\x66\x5f\x44\x5b\x31\x2d\x84\x02\x17\x40\x83\x66\xb6\x82\x3d\x5c\x05\x61\x1c\x09\x2a\xee\xc2\x20\xd8\x85\xcd\x2a\x1a\xa3\x6c\x39\xd1\xb3\xf0\x5b\xe5\x23\x09\xe3\x9e\x8f\x3c\x08\x0c\x04\x02\x02\xaa\x4d\x5e\x2c\x46\xdb\xbc\xb2\xd8\xfe\xd4\xe3\xb3\x64\xde\xb2\xc8\xcd\x9e\x66\x91\x77\x39\xc5\xc5\x15\xf3\xf6\x2c\xb0\x09\x8b\x62\x4e\xb3\xb8\x36\x82\x88\xda\xec\x52\xb9\x7c\x84\xe0\x77\xe9\xbc\xfe\xc2\x27\x5e\xce\xe7\x27\x07\x43\x6a\xf4\x46\x48\xb4\x94\xdf\x7e\x4f\x63\x28\x87\xc3\xe8\x77\x39\xca\x1a\x56\xbe\x2e\x57\xda\x6b\xa1\x26\x4e\x84\x2e\x12\x83\xd0\x17\xcb\x2a\xf7\x96\xee\x56\xd9\xdc\x57\xd0\x17\x90\x8b\x12\xb0\xf1\xc1\xde\xba\xa8\xde\x2b\x4a\x1c\xd3\xd3\xeb\x03\xa5\x52\xff\x9a\xe6\x71\xd9\x75\x94\x55\x81\xc5\xc7\x74\xf5\x77\x3c\xee\xeb\x1e\x2b\x05\x1e\xfb\x0d\x85\x35\xba\xa8\x6b\x95\xd4\x2f\x4d\xcb\xca\xd5\xc2\x2e\x49\x8f\xd9\x2f\x66\x57\xfb\x0b\xe5\x70\x59\x53\x06\xc0\xba\x63\xe5\x02\x54\x00\x28\xc9\x0a\x02\xfb\xb5\x01\x0f\x60\x26\x19\xd4\x0a\x2c\xed\x17\x1f\x34\xf0\x56\x5b\xe6\x86\xe2\x8e\x1d\x53\x7a\x30\x61\x29\xfd\xde\x32\x6a\x53\xf8\xde\x57\xee\xd5\x14\xe2\x53\xaf\x42\xab\x07\xfe\x93\x7c\x41\x2b\x29\x25\xe3\x65\x2e\xf0\x3a\x53\xc9\x35\x0a\x1d\x1e\xc4\xf8\x16\x4f\xfa\xe8\x0c\x6f\xf3\x8b\x93\x43\x50\x2b\x74\x13\xb0\x9a\xd2\x72\xcc\xc5\xf4\x26\x04\xc6\x3b\x3b\x88\x2a\xce\xd3\xc4\x20\x06\x8c\x12\x40\x79\x72\x2c\x4b\x1b\xef\x0d\x67\x24\xeb\x48\x36\x46\xd6\xf3\x28\xe0\xba\xeb\x78\x65\xd5\x4d\xec\x38\x56\x4d\x2b\x19\xd3\x13\x62\x33\x84\x03\x8f\xbb\xdf\xa7\x4d\x2a\x1e\xe9\x8e\xb7\xeb\x77\xdb\xea\x1c\x7a\x26\xb7\xd5\xbb\x20\x08\xc8\x17\xe1\xd1\x36\xba\x4d\x1d\xe9\xf7\x80\xfc\x6a\xed\xdd\x63\xf6\x1d\x4a\x1b\x40\x5c\x74\xd1\x4f\x94\x1d\xd6\xd2\xda\x8d\x97\x60\xc2\x0d\xdf\xb1\x1f\xfc\x5d\xbc\xa4\x75\xbb\x06\x96\xf3\x8c\xcb\x8e\x64\xb9\x6c\xd9\x66\x2e\x72\xf7\xba\x01\xc3\x62\xe2\x2f\x18\x0b\x0e\xb6\x71\xda\x67\xe6\x83\xbb\x3d\x6c\x3b\xb3\x49\x94\xd6\x4e\x3f\x6f\x3b\x76\x1b\xf2\xb7\x92\x6d\x6a\x23\x43\xba\x91\xb2\xc3\x7c\xca\x54\xe3\xa2\x2b\xe9\xd5\x14\x1d\xe7\xd3\x66\x4a\x19\x99\x0f\xdc\xee\x22\xb4\xf4\x65\x6a\x1b\xb6\x3e\x17\xf7\x19\x58\xc0\x1e\x05\x8f\x76\xb9\xca\x76\x69\x8d\x67\x48\x5a\xba\x4a\xdd\xac\x4c\xc1\x2b\x91\x02\xda\x1b\x83\xf2\xee\x30\x26\x7d\x7f\x1c\x79\xb5\x1d\x9e\x1f\x48\x02\xf0\x29\x43\x49\x94\x49\x1b\x0c\x1d\xf9\x43\xda\xc5\x93\xd0\x6e\x23\xa1\x32\x89\xbd\x51\x19\x00\xe1\xd7\x10\x7c\x40\x88\x0a\x63\xe8\x08\x7c\x5c\x21\xf9\xbf\xe2\xcd\xcd\x46\x7f\xa6\xbc\x86\x04\xac\x19\x46\x19\x57\x58\x2b\x60\xc4\xff\xbd\x13\xad\xd0\xe7\x53\xd6\xce\x75\xee\x8d\xa6\x1f\x39\xd9\x41\xb2\xc0\x98\x52\x8d\xda\x4d\x81\x66\x56\x51\x03\x54\x29\x50\xaa\xc2\xea\x44\xec\x07\x26\x12\xbf\x34\xb1\xe6\x39\x1c\x51\x61\x4c\x13\xde\x29\xa8\x2f\x3d\xe0\x65\x4d\xfb\xc4\x78\xe4\x75\xad\x1a\xea\x78\x1c\x9c\x3e\x99\x0c\xb7\x2b\xd5\xe1\xf4\x79\x38\xc7\x0b\xf4\x93\x09\x50\x26\x90\x4d\xa7\xa2\x68\xa1\x2e\x63\x11\x9d\x93\xa0\x15\x54\x97\xeb\x33\xe7\x68\x68\x4c\x4a\xaf\x5a\xd1\x73\x72\xf5\xe5\x43\xce\xe1\x1a\x69\x60\x75\x06\xbf\x1e\xda\xf8\x3c\x68\x4c\xc2\xf3\x3a\x8d\xd9\x62\xdb\x29\x21\xfa\x15\x10\xdd\x74\xb9\xf5\x88\x22\x9d\xcb\x2e\x4b\xe7\x8d\xc2\x39\xf1\x2d\x47\x72\x08\x2d\xd1\xad\x70\x07\xfb\xbc\x33\xc0\xdc\x38\x42\xe4\x56\xaa\x5b\xee\xb5\x0c\xe3\x49\xd9\x4b\x2a\x4a\x38\xb1\x9e\xed\xdd\x06\x1b\xed\xd9\x33\xb7\x2a\x63\xc9\x47\x56\x47\x54\x44\x3f\x25\xfc\x2f\xe3\xff\xc0\xa2\x60\x3c\x0f\xe1\x4c\xe2\x62\x86\x83\xa6\x2e\xf2\x13\x42\xd2\xae\xdc\xcd\xea\x85\x6e\x7b\xbd\x96\x9a\x28\x85\x07\x19\xd4\xf4\xb1\x6b\xf2\xfe\xe4\x95\x52\x27\x31\x34\x8f\xf0\x51\x3b\x45\xee\xf9\xe7\xb0\x96\xe8\xd9\x2c\x51\x59\xb5\x41\x1a\xf4\x5e\x4b\x59\x67\x2c\xba\x53\x83\x33\xe6\x7e\x35\x3f\x60\xe8\x82\x33\x6f\x2a\xbd\xa5\xb1\xfc\x9c\x37\xa2\xd4\xde\xe9\x78\xf2\x7a\xe7\x97\x0e\x44\x6e\x83\xa0\x5b\x7a\xb4\xdc\x55\xf9\xc1\x40\xc3\xb5\xdb\xe5\x39\xda\xc8\x55\xf9\x51\x77\x27\x50\x2b\x3a\x8d\x16\x28\x0a\x0b\x4f\xf5\xc0\x22\xda\x51\x26\x1e\xef\x3b\x7f\xac\x86\xe5\x17\xbc\x32\xa2\xcb\x57\xe6\xea\x83\xb4\xc6\x29\x91\xb4\xb4\xab\x9a\x94\x0b\x0f\xcf\x00\xdf\xea\x3a\xbf\x06\x88\xe6\x83\x50\x2a\x4a\x09\xf9\x46\x99\x54\x05\xa5\x78\x07\xc8\xfe\xd0\xc8\x91\x40\x66\x4c\xc7\x03\x56\xd5\x01\x56\xcc\xde\x8e\x44\x4c\x31\x87\xcb\x18\x4e\x48\x3f\x52\x77\x87\xe9\xd5\xb0\x7c\x1f\x14\x7f\x4e\x87\x53\x72\x1f\x91\xe6\x46\x61\xbb\xb9\x9b\x53\xc5\x30\x8d\x58\xd9\xcc\x0c\x59\xf0\xdb\x8a\xd9\xcd\x63\xdc\xf4\xad\x15\x50\x61\x90\x56\x2a\x57\x9d\xb2\x88\x5e\x88\x5b\x97\xab\x94\xad\xb2\x59\x80\x5f\xaf\xaa\xb8\x24\x17\xaf\xe1\x96\x49\xc0\xf7\x02\x23\xfa\x47\x36\x15\xb0\x6b\xff\x2c\xa7\xee\x4a\xce\x73\xe1\x6f\xcb\xc2\xf0\xb7\x15\xb5\x72\x19\x6c\xf2\x22\x17\xaa\x3b\x23\x56\xb2\x2d\xf5\x43\x96\x6c\xfb\x2d\x5f\xbf\x43\xcd\x29\x07\x57\xbe\x4d\x7e\xc8\xcb\x82\x6d\xf3\x12\xa5\xd4\xf3\x12\xc8\x6b\xf6\x8f\x82\xc4\x60\x3e\xf1\x24\x5d\x6d\xe6\x92\xe5\x4c\x64\xbc\x8f\x4c\x29\x7b\x37\xc6\x14\x5d\xeb\xa2\xac\xe1\x88\x1c\xd0\x09\xd4\xcc\x54\xe9\x66\x90\xea\xda\xa4\xed\x14\x4b\xd3\xa0\x62\x6e\x08\x52\xc4\xa7\x4a\xe6\x00\x62\x14\xe6\xd8\x39\x8c\xc3\x79\xc8\x41\x2b\xf4\xb5\xf6\xfa\xde\xdf\xb1\x68\x39\x77\x5f\x1f\x1b\xfa\x82\x99\x52\x83\xbb\x90\xf9\x19\x40\x2e\xb0\x40\xee\x39\x18\x01\xa1\x1f\xa7\xda\xa6\xdf\xc2\xe1\x37\x1d\xb4\x92\x58\xc2\xcc\xbd\xce\xc9\x49\xdf\xda\xba\x89\x9d\x69\x62\xdf\x6b\x59\x82\xd1\x44\x9c\x92\x6b\x89\xc5\x44\x6d\x3d\x57\x33\x72\xbd\x29\xeb\x61\x7a\xf9\x58\x46\x35\xde\x75\x96\xc6\xf6\xe7\x12\x86\xc2\xd5\xdc\x24\x2f\x00\x3d\xd3\x22\xad\xd3\x2c\xd1\xd8\x0f\x77\xbf\xd1\x5e\x6f\x2a\x65\x8b\x7f\xf3\xc6\xed\xec\xd0\x6f\x41\xc9\x48\x2d\x6e\x87\x3a\x20\xf1\x95\xe4\xfb\x52\xcf\xa3\xd0\x45\xd2\xfc\x39\x63\xaf\x2f\x9e\xeb\x54\x59\xbf\x05\xb9\x96\x59\x4d\xcf\x81\x15\x66\xce\x29\x03\xf1\xba\x60\x88\x3f\xc6\xac\x24\xbb\xa6\xf7\x94\xa5\x6f\xef\x92\x27\x50\xa6\x06\xfb\x04\x60\x53\xe6\xf8\x09\x5b\x3a\x57\x0b\xad\xc5\x4d\x3c\xac\x37\xac\x92\x42\x8e\x2f\x4b\xcc\x5b\xbf\xab\x76\xac\xe4\x65\x3b\x57\xa1\x78\x5c\x18\x18\x2c\x11\xdc\x7b\x53\x0d\x51\x46\xc2\x30\xec\x6a\xdc\xfc\xbe\x06\xeb\x45\x4d\x78\xdd\x23\xde\x4c\xfa\x9c\xd7\x76\x8a\x36\x4a\xa6\x9f\xb2\x28\x38\x87\x66\x19\x11\x08\x6f\x35\x6c\xa1\xcc\x1a\x6f\x16\xe6\xcd\x12\x6f\x7a\x23\x8e\x99\xdc\x47\x16\xea\xc1\x88\xf3\x46\x0d\xf1\x3c\x1a\xb5\x94\xda\x74\xac\xde\x7e\xc7\xcb\xf6\xd8\xab\xca\x87\xa8\x2a\x69\xd8\x69\x29\x29\x9d\xd2\x83\xf4\x6c\xc7\x46\x8f\xcb\xc4\x24\xe8\x51\x66\x62\x67\x4b\x8f\x32\x65\x0b\x16\xc3\x81\x68\xe8\xd1\x2a\x0b\x08\x2d\x90\xe9\x51\x20\x2d\x6b\x41\x0f\xb2\x20\x76\xc9\xd8\x64\x83\x75\xb3\x6b\xcb\x63\x46\xcb\x16\x09\x3c\x7d\xb6\x28\xd9\x7f\x47\x9f\xbd\x63\xeb\x76\x7d\x07\xbf\xe7\x1d\x0e\x57\x3c\x37\xa6\xbc\x24\xcd\x29\x56\xa3\xc6\x32\x0b\x5f\xc2\xb9\x1e\x62\x22\xf1\x6b\x75\xd3\x20\x5f\x4d\xde\x46\xe4\x9f\x86\x56\x35\xde\xd1\x9b\x4d\x5f\x49\xdd\xcb\xa5\xd2\x8a\x78\x05\x96\x4b\x75\xd3\x87\x03\xc2\x67\x14\xb0\xec\x92\x0c\x9e\x35\x3c\xd3\x96\xe6\x2e\xdb\xd6\x72\x28\x54\x3c\xb2\x0e\x5d\x3f\x2c\x0b\xaa\xbd\xfc\x14\x85\x6e\x88\x53\x8c\xf5\xac\x7d\x23\xce\xc1\x72\x13\xd8\x89\x31\xaa\x09\xb1\x82\x43\x0f\x32\x44\x37\x09\x8e\xad\x06\x47\xef\xd2\x29\xb0\x4d\x80\x23\xbd\x21\x53\x4e\xce\xfa\xeb\x9e\x72\x85\xea\xbb\x8b\x6e\x2d\x3a\xe5\xad\xb6\xe8\xd4\x26\x2d\x25\x30\x19\xd6\x19\x26\x03\x1b\x72\x2f\x51\xea\x2a\x08\x82\x21\xdb\xa5\xae\xab\x97\x00\xbf\xef\x28\x6d\xc1\x6f\x58\xe8\x5f\x16\x54\xf6\x9c\x8f\xfc\xe5\xb5\x6b\xf4\x90\x32\x00\x32\x3b\x4c\x5a\xba\x8b\xda\x82\x0f\xa2\x21\x78\x17\x6c\x14\xef\x14\x15\xcf\x14\x75\xdb\xf8\x87\xdb\x3e\x9d\xe5\x68\xda\x5e\x7f\x75\xeb\xb9\x55\xf2\x40\x3e\x7c\x64\x86\xf4\x29\x0b\x6c\x06\xe3\x9a\xe8\x44\xee\xd2\xb4\x4d\x4c\xdf\x1f\x6a\x55\xe3\x11\x70\x89\xaa\x3b\xcf\xe6\x3c\xf4\x38\x90\xc7\x74\xfe\xe3\x92\xe8\x41\xc7\xa6\x06\xbf\xa6\xeb\xbc\x7a\x78\x43\x0c\x45\x85\xe8\x02\x54\x5b\xe9\x7d\x5e\x9b\xfb\x65\xaa\xbb\xb7\x09\xd0\x5e\xd8\x0e\xcb\xa1\x07\x51\xa7\xb4\xb3\xfb\xf0\xae\xae\x6b\xc4\x9b\xa0\x14\xea\xfd\xe7\xd4\xb4\x3b\x40\x5d\x44\xc2\x06\x10\x2a\x68\x37\x40\xdd\xd9\x00\x8d\x49\xcb\xd2\x86\xc8\x86\x59\xb5\x7b\x61\xec\xee\x05\xa9\x90\x5f\xa8\x50\x39\x76\x4f\x4c\x39\x8e\xee\x6b\xed\x09\xed\xca\xe7\x5c\x2a\xa2\x3f\x5f\xed\x4f\x3f\xf2\x30\xfc\x17\xcc\xf4\x2c\x7f\x44\x7e\x58\x13\x95\x1e\x85\xfb\x78\x48\x96\x1f\x4f\x94\x78\x95\xb8\x87\x93\xfa\xd2\x0c\x5f\x0f\xd9\xae\xa4\xca\x54\x1f\x99\xfe\x28\x23\x1a\x22\xa3\x06\xb6\x00\x16\x9c\x5e\x04\xd8\x55\xa6\xa1\x86\x46\x8f\xae\xcd\x60\xe7\x2c\xa7\x57\x24\xde\x72\x19\x65\xe8\xe8\x47\x68\x54\x78\x58\x29\x91\x79\xe6\x5c\x2d\x30\x18\xc6\xc3\xfc\xe4\x2f\x5e\xc7\x5c\x4c\xe3\x75\x5d\xa8\x2d\x41\x5d\xae\x15\xb7\xba\xe2\x49\x7e\x7c\x93\x12\xf0\xf9\x87\x33\x5a\x81\xd0\x77\x90\x0d\x0f\x36\x00\x90\xa1\x34\x3f\x2d\xa9\x71\x8c\xfc\xf4\x86\x85\xee\xad\xb9\x26\x17\xb7\xfb\xc1\x7e\xb6\xd7\xdc\xda\x8e\x80\xd0\xd1\x27\x9c\x11\x68\x03\xbd\x2f\x4d\x63\xd6\x3d\x4f\x73\x0a\xf1\x52\xfb\x25\xbb\x26\xde\xf1\xe9\xad\x75\x55\xad\xc9\x35\x4b\x8b\x54\x71\xe5\x3b\x7d\x70\x5c\x9a\x7b\x19\x5f\xd4\x72\xc5\x64\x8e\x8b\xbd\xb3\xa6\x9c\xf7\x9a\xec\xe0\x0a\x11\xfd\xf9\xa6\x29\xee\x46\x21\x02\xfd\x41\x10\xea\x5f\xe9\x5f\xd7\xda\x35\x67\xa3\xc4\xb2\xa3\x03\xed\x77\xfa\x90\x76\x56\xc0\x05\xcf\xd4\x59\x0a\xbc\x84\x8f\xc3\xca\xcf\x4b\xf6\x39\x65\x42\x2a\x1d\x51\xdf\x1b\x81\x95\xe9\xfd\xad\x6c\x50\x9c\x6c\x05\x9d\x2f\xfe\xc9\xe1\x50\x09\x39\x2e\xbb\x76\x20\x1f\x3c\x00\xba\xf8\xff\xcd\x76\x82\xc4\x5b\xae\x43\xd6\x95\x45\xe8\x5f\x6a\x8f\x76\x0c\xa9\x1a\x28\x54\xa6\x6a\x1f\xbc\x66\x5c\x58\x7f\xb5\x28\xe4\x4d\xf7\xd7\x3f\x61\xba\xc1\x0b\x3a\xfd\x91\x4e\xa4\xdb\xe6\x1e\x33\xcb\x2b\x1e\x86\xba\xe3\xd9\x2b\xf2\xb3\x0b\xcf\x5b\x00\xe3\x7e\x72\xe1\x2d\x08\x1c\x44\xcf\xa5\x14\x54\x8a\xb8\xa6\x7f\x57\xe8\x4f\x56\xe8\x95\x46\x94\x72\xe6\xe7\xf1\x69\xa2\xae\x3a\x0e\x3d\x9a\xe6\x1d\x67\x3a\xf6\x5d\x74\x02\x9f\x78\xc6\xa9\xf8\x64\x9e\x9f\x3c\xfc\xfa\x21\xcc\x92\x7f\x92\x18\x07\xea\x54\x4c\x8a\xb4\xbb\xf0\xf5\x37\x8f\xf7\x96\xc8\x71\xed\x44\xc4\x0d\xcb\x78\xfd\x00\x32\x93\x80\x76\xc5\x2c\x24\x79\x5e\x7c\x70\xab\xb5\xed\xf5\x09\x2b\x48\xf2\xae\x18\xb1\xc1\x64\xc9\xc2\x48\x99\xdb\xfd\x6e\x0f\xaf\xa1\x12\x1b\x71\x93\xc4\xe4\x05\x8d\xdf\x1d\xae\x10\x27\x6e\xfe\x41\x0f\x52\xb9\xef\xc1\xec\x8a\xd0\x76\x70\xf0\x0b\xe0\xf7\x49\xfe\x4f\x5c\x73\xf4\x41\xbd\x9b\xa7\xce\xc0\x32\x44\xf1\x1f\x5e\x01\x80\x48\xfb\xd7\x7f\xb1\x4b\x19\xa8\x43\x0b\x3b\x6b\xc4\x7b\x98\x5d\x80\x3a\x6a\xaa\x2c\xc3\xfc\x3f\xf6\xde\x7c\xbf\x6d\x9c\x59\x14\x7c\x15\x5a\xd3\xa3\x21\xdb\x34\x2d\x79\xc9\x22\x85\xf1\x95\x65\xc5\x71\xc7\x4b\x3e\xdb\xe9\x74\x7f\x96\x6f\x9a\x16\x61\x89\x31\x45\x2a\x04\x64\x5b\x91\x79\x9f\x65\x9e\x65\x9e\x6c\x7e\x28\x2c\x04\xb8\x48\x72\xd2\xdf\x39\xe7\xde\xf3\xe5\x8f\x58\x24\x81\x42\x01\x28\x14\x0a\x85\x5a\x78\xdc\xc5\xc2\x7b\xbe\x63\x71\x5c\xf8\x95\xa3\xc8\xb6\x25\xbf\xd1\xd6\x76\x95\x13\xc8\x40\xa5\x12\xfa\xff\x3f\x0a\xda\x11\x1d\x62\x27\x3b\x1d\x73\xe0\xff\x54\x26\xf9\x1b\xbb\xdf\x60\xee\x65\x62\x88\x32\xfe\xa5\x78\x83\x6a\xe7\x0b\x2d\x88\xec\x6b\xf5\x44\xde\x03\x07\xfb\xe7\x68\x02\x1f\x99\x2c\xbc\xfb\xc8\xcf\x5d\x8f\x4c\x07\xf5\x92\x3f\xaf\x27\x5a\xe8\x68\x50\xf3\x7e\xd3\xa8\x8a\x0f\x51\x2f\xd3\x90\xc2\x6c\x2a\x82\x54\xe3\x9e\x45\xc5\xdf\xe6\x30\x03\xee\xc1\xbb\xc5\x8d\x3e\x09\x0f\xb0\x45\x44\x7a\x52\xfe\xfd\x15\x8b\xc1\xb5\x3d\x63\xcb\x6c\x72\xa8\x7d\xdd\xe1\x4a\x5d\x42\x78\x12\xf4\x9e\xf6\x99\x7b\x87\x04\x1c\xf4\x07\xed\xe3\x0b\xde\x32\x8f\xca\x94\xc3\x6b\x9d\x43\x66\xd7\x6f\x3c\xab\x3d\x13\xb9\xb9\xf8\x4a\x47\x05\x4e\x6d\xa0\xcb\xe2\xe3\xf1\x70\xc2\xde\xfd\xd9\xe9\x1c\xdd\xc1\xf1\x97\xa9\xce\xbe\x47\x0c\xdc\xdd\xa3\x7a\x32\xa7\xa7\xc2\xc9\xe3\x01\xbf\xac\xa4\x93\xfb\xc0\x16\xcc\x23\xbb\xe6\xba\xfb\xa7\x48\x03\xc5\xe8\x75\x98\x01\x61\xa1\xfe\x8b\x38\x83\x46\xf3\x91\x8d\xc6\xf8\x51\x64\xa1\x8d\xf8\x9b\x57\xa7\xcc\x27\xe7\x54\x07\xbf\x73\x02\x86\x10\xd3\xcc\x61\xe6\xc3\xeb\x70\x5f\xc2\x88\x99\x66\xf6\x5e\x2a\x3e\xb2\xbb\x6b\xd4\xe9\x74\x68\x91\x43\xb5\x15\x81\xdf\xe8\x81\xd5\xe0\xa0\xb2\xde\xb0\x7b\xe3\xd9\xa7\xbc\x85\xc8\xd6\x04\x98\xe7\xc3\xfe\x64\xd5\x84\xb9\x3b\xba\x8f\x3e\x63\x44\x42\xa1\xf3\x41\x71\x95\x3e\x94\x77\x38\x6a\xda\xe8\xa3\x4e\xa7\x33\x9d\xc1\x04\x7c\x48\x66\x07\x45\xc6\xcc\xb6\xb7\xf8\x51\xa8\xfb\xef\x1f\x18\x62\xfc\x30\xfd\xc0\x37\xa5\xaf\xdf\x78\xe8\x82\x03\xbd\xa7\x0f\x6c\x47\xda\xb9\x57\xaf\xc6\xc1\xc4\x62\xc6\x4a\xae\xe7\x4d\x23\xd7\xef\x01\x9b\x93\x5d\x3e\x96\x9a\x1b\x30\x1d\x58\x50\x36\xcd\x8a\x8b\x08\x2c\x5f\x1f\x58\xa5\x6f\xbc\x72\xf2\x58\x8d\x0f\xfd\xfb\x3b\x5b\x5b\xfc\xc2\xe3\xeb\x59\x65\x61\xd8\xef\x08\xdb\xad\xa7\xec\x3a\xe5\xf5\x7b\x65\xb4\x32\xfc\x67\x2c\x46\xc9\xc9\xfd\xd7\xfd\xd5\xf1\x7f\x75\xcc\xf4\x5f\xfc\x46\x71\x55\xf4\x37\x05\xcf\xf8\xf4\xf7\xe0\x0f\xd4\x70\xc8\x88\xe1\x70\x75\xec\x77\x38\x23\x79\xfd\xcc\xd1\xff\x8a\xd9\xf7\x9d\xa3\xe7\xa0\xcf\x53\x99\x24\x87\xa5\xe8\x37\xe0\xf7\x87\xc7\xde\xea\xe8\xb3\x31\x8c\xf0\xf3\xc6\xfe\x35\xe7\xb8\xb3\x0f\xcf\x41\x9e\xb5\xf1\xd8\x2b\x27\x9d\x0f\x8c\x72\x3e\xac\x8e\xfb\x0b\x4e\xf8\x9b\xcf\x1c\xfa\xcd\x88\xed\x46\x8d\xde\x73\xb0\xe7\x69\xb7\xee\x3f\xa8\xe8\x67\xfa\x06\xb1\x21\x3c\xf2\xd0\x58\x1f\xb3\xfe\x29\xdc\x8b\x6b\x24\x87\x37\xc2\x57\x83\x5d\x0b\xf2\x4d\x45\x6c\xbd\xcc\xb6\x87\x31\xd6\x43\x7e\x21\xf2\x52\xd1\xb2\xbf\xd3\x36\x6e\x66\xe3\xf9\x58\xc2\xbf\xd8\x7f\x42\x3e\xe3\xcc\x58\x5e\xd6\xc2\x42\x18\xf3\xdf\xdc\x92\x0e\x74\xdc\xc7\x8a\xdc\xcd\x2b\x70\x77\x57\x51\x9d\xca\xa5\x7f\x64\x4d\x70\x14\x77\x42\xb6\x85\x3c\xc6\xfb\xa5\xbb\x3c\x9b\x2c\xbe\x91\xe0\x98\x4d\xc2\x64\xc2\x26\x8b\x87\x0f\xe6\xa0\xd6\xa7\x07\x2a\x5e\xaf\x79\xa5\xad\x7b\x36\x17\xdf\x79\x6f\xd9\x31\xe5\x03\x3f\xb9\x4c\xd9\xb2\x65\xf6\xa7\x8f\xb0\x7d\x7c\xe0\x84\x9d\x45\x1b\xe5\x79\x42\xb8\xe4\x5b\x81\x05\x60\xba\x1c\x15\xb8\xd7\x7a\x2c\xc6\x7f\x90\x13\x95\xed\x95\xea\xee\xf3\xac\xfb\xb4\xc6\x58\xdc\xfe\x35\x79\x52\x83\xd9\xe3\x01\xdf\xb0\xc5\x30\xe0\xef\xec\xee\x71\xa8\xf8\x41\xde\xf3\x6f\x30\x57\x1c\x1b\x1e\x61\xab\x2b\x2b\xa9\xde\x5d\x2f\xb9\x28\xf4\x47\xae\x11\xb6\xb5\xf1\x5e\x2a\x67\xa1\x57\xfb\x39\x4d\x26\x87\x9b\x21\x0c\x35\x1f\xc7\x4a\x3c\xaf\x77\xb9\x96\x47\xbc\xd1\xc9\x9f\x19\xf4\x7c\x99\xfb\x80\xb1\xec\x97\x4a\xf0\x05\x21\x66\xc2\x35\x9c\x6a\xcf\x14\xe4\x03\x26\xe8\xa7\xa1\x8c\xee\xef\xf8\x51\xf2\x5b\xaf\xd3\xf9\xc6\xb3\x22\x9d\x28\x80\x5e\x69\x77\x6c\xfc\x1c\xc0\x2f\x64\x3a\x82\x82\x68\x09\x91\x1a\x84\x4e\xde\x8c\xd7\xda\xe6\x05\xb7\x84\x69\x07\x2d\x91\x5d\x21\x1c\x6a\xae\xa5\x2f\x5e\x57\x54\x52\xf4\x9b\x7c\x3d\x6f\x66\xf2\xc2\x57\xb0\x24\x1a\xbf\x7b\x25\xcf\x1a\x3d\x19\x5f\x9d\xfd\xc7\x6e\x67\xa0\xc9\x8f\x8a\xfb\x8f\xea\x87\x9f\x0d\xf2\x84\x0f\x32\x8f\x06\xb0\xa3\x1d\x5d\xb2\x11\xa5\x8f\xbb\x3f\x6f\x3f\x76\x2b\x9c\xc2\x98\x26\x02\x63\x19\x8e\x0a\xf3\x63\xf5\x8d\xc0\x8b\xd5\x18\x8b\xe7\x88\x3d\x0f\x31\xbb\x5e\x19\x89\xf2\x9c\xd3\x4c\xb8\x1e\x74\xe7\x92\x5f\x77\xef\xf2\xb0\xcf\xb2\x85\xef\xbc\xc6\xb0\xc9\xae\x33\x47\x4d\xd6\x9d\x31\x16\x5e\x68\x91\x28\xe1\x81\xe8\x8b\xb2\x25\x35\x2a\x98\xb9\x29\x77\xb5\x62\x7a\x3d\x68\x08\x6a\x1d\xf2\x0a\x8d\x3b\x69\xa9\xcc\xfe\x88\x95\x4c\x1b\x1d\x4b\xff\xe5\xc3\x88\x1f\x23\x94\xf2\xec\x0a\x5c\x94\xa7\x48\x0f\xb8\x61\xda\xe1\xe8\xfb\x7e\xbe\x34\x1d\x7d\xc9\x25\x30\x7b\xcd\x78\xc2\xe1\xf7\x22\x6c\xd6\x5d\x51\x7e\xe7\x12\xd6\x3b\xb3\x10\x38\xdc\x3d\xcf\x97\xe6\x06\x2f\xea\x92\xee\x28\xab\x81\x6e\x5d\x99\x22\x0d\x6e\x0e\x38\x03\xe2\xab\x65\xb7\x9b\xfb\x3e\xda\x55\x95\x0f\xaf\xf8\x9e\x9d\xf1\x81\xd7\x5a\xfd\x31\x77\xf6\xcf\xbe\x47\x44\xad\xbf\x5e\x68\x7f\x53\xab\x1f\xcc\x0e\x32\x75\x8f\x5c\xb1\x5f\x81\x39\x8f\x8f\x92\x87\x03\xed\x3a\x81\x93\x13\x49\xba\xba\x84\x25\xef\x01\x71\x37\x0b\x2d\x33\x2a\x0e\x2d\xa4\x9d\x13\x93\x7c\xa3\xce\x43\xf4\xcf\xc5\xd3\x10\x6b\xa5\x27\x4b\x4a\x63\x7d\x92\xc9\xb2\x49\x9e\xde\x8a\x7c\x01\xb4\xf8\xbd\x9f\x2f\xcd\x38\xbe\x28\xad\xec\x63\x05\x3d\x44\xd1\x7e\x61\x98\xe5\xf6\x80\xaf\x17\xca\x45\x2c\x9b\x83\x58\xd1\xf7\x70\x3b\x98\xaf\x45\xa6\x78\x97\xf7\x94\x66\xa7\x83\x9e\xca\x96\x1b\x7c\x5b\xff\xce\x69\x20\x60\x62\xc1\x57\x6d\xc6\xd9\x3b\x1e\xb5\xd3\x17\xef\x32\xab\x3b\x30\xcd\x2d\xf4\x54\x17\x8f\x74\xdb\x8c\x44\x65\x73\xbf\xe7\xd8\xdc\xe7\x8c\xcd\xf1\x2d\xf4\x38\xaf\x37\xd9\x3e\x16\x4c\x53\x72\x90\xe5\x86\xb2\x39\xcd\x0a\x7d\xc5\x44\xd0\x63\x85\x0f\x81\xe1\x07\xb3\x1b\x13\xf9\x78\x8e\x65\x8c\x86\xce\xf7\x13\x45\xc9\x00\xff\xb1\x8d\x62\xf8\x9a\x87\x5b\x03\x32\x16\x41\x4a\x5e\x49\xcb\x9b\x6c\xa3\x82\x13\x8e\x1a\x92\x69\x86\x0f\xb3\xaa\x3c\x7f\x22\xfb\xc9\xb9\xc8\xa1\x38\xbb\x93\x11\x33\x8e\x57\x53\x60\x34\x26\x8a\xd3\x46\xf8\x7d\x3f\xa7\x7e\x7f\xc5\x67\xe0\xee\xa0\xd3\xb9\x63\xf6\xd5\x9f\x54\xcd\x48\xd0\x38\xe4\xa4\xfa\xb5\xc9\x4e\x42\x22\xc8\xd4\xb7\x43\xce\xf8\xbf\x7f\x3b\x54\x75\x1e\x6c\x73\x63\x32\xf9\x0e\x53\xda\x34\x59\xdc\xc1\xc6\xb7\x43\x6e\x03\xd5\xe4\x55\x32\x20\x2f\x1b\xef\xd8\x15\x20\x2b\xba\xf5\x4d\xe4\xac\xdd\x5e\x15\xfa\xce\xb7\x43\xce\x39\x77\x79\x95\x0c\xc8\xa6\x0e\xfd\xc5\xb7\x43\x7b\x67\xbf\xd3\xd9\xd9\x7f\xb9\x2a\xf4\x57\xdf\x0e\xed\xad\xfd\x4e\x67\x6b\xff\x35\xaf\x92\x01\xf9\xda\xd4\xa0\x0f\x93\x43\x16\xc9\x21\x59\x11\x76\x90\x30\x5d\xc5\x57\x5e\x41\x00\x98\x34\x55\x15\xca\x3f\x3a\x9d\xce\xe3\x25\xfd\x7d\x31\x51\x6e\xed\x5f\x68\x46\x07\x43\x21\x41\x43\x63\x53\x6e\x70\xf7\x91\x2d\x73\xba\x8d\x87\x67\x2a\x4e\x5f\xb9\xde\xf9\x26\xd3\x47\xed\x0e\x98\x26\x86\xab\x92\x61\xab\x38\x19\xee\x2b\xe2\xbe\x7a\x6b\xfc\x4a\x33\x23\x41\xd0\xc4\xf6\xad\xb2\xae\x66\x43\xb6\x57\x7e\x67\x2f\x79\xce\x86\x7f\x28\xff\xbf\xf8\x00\x05\xee\xd9\x1a\x63\x77\xb8\x3b\x23\xb1\x0b\x86\xfc\x2a\x90\x09\x8c\xd3\x91\xd8\xd7\x79\x3c\x01\xce\xb5\x77\x3e\xf0\x75\x34\x63\x4a\xec\x84\xbd\x1e\x0f\xb8\xf4\xc3\x55\xf3\x8f\xff\x94\x38\xc1\x58\x30\xcd\xc4\x3d\x7b\x3b\xf5\x29\x1e\x80\xf5\x61\xc8\x23\xed\xdd\x0b\xa1\x8d\x34\x19\x6f\x4b\x98\x9e\xaa\x31\xec\xf2\x20\x3b\xdd\xc2\x14\xbf\xe4\x99\x83\xf8\xa4\x46\x5c\x81\xc0\x19\x3d\x43\xbb\xc1\x9a\x8c\x98\xd0\xc8\xa3\xee\x72\x81\xeb\x1b\xfb\x33\xb9\x91\xeb\x8f\xd1\xf0\xd7\x86\x24\xa7\x4f\xdc\x0a\xfc\x90\x93\xd3\x78\xc8\x16\xfc\xd7\x5b\x0d\xbb\xe9\xb7\x5e\x81\xae\x78\xcc\xa3\xe4\xb9\xb0\x86\xdf\x7a\x25\x6b\x97\xcd\x91\xc2\x00\x56\x84\x76\xf7\xad\x57\xb2\x56\xd9\xfa\xda\x7e\x36\xb4\xf8\x5b\xaf\x64\x6d\xbe\xda\xef\x74\x5e\xed\x3f\x72\x45\xf6\xab\x80\xcd\x79\xc4\x15\x1d\xb4\x2e\xa5\x79\x65\x06\x65\x6b\x21\x8f\xa9\xc8\x02\x35\xc0\x02\x60\xe7\x3c\x46\xb0\x77\xea\x62\x58\xc7\x6c\xc1\x91\x21\xd3\x27\xec\xf2\x44\x1a\xa1\xde\x9c\x5e\x78\x57\x46\xf7\x26\x21\x3f\x75\x84\x4c\x46\x7e\x29\x9e\x7f\x63\xa7\x20\x66\x45\xf0\xe2\x90\x21\x91\x6d\x12\x94\x2a\x8f\xf0\x18\x76\x18\xe6\x92\x19\xe1\x43\xad\x63\xb3\xa4\xa7\x78\x3f\x82\x27\x1c\x19\x81\xae\x27\xde\x7f\xf9\x4d\x1f\x84\x97\xbf\x73\x74\x18\x2b\xe1\x66\x87\x33\xb6\xad\xed\x1e\x31\xab\xf1\x5e\xa7\xd3\x64\x51\xff\x5e\x05\xbd\x5b\xf9\x2e\x69\x7e\x05\x2c\xc2\xdf\x58\x60\x87\xb3\x1b\x96\x85\xb8\x67\x1f\xda\x2f\xde\x75\xbf\xef\x8f\xde\xd9\x1e\x15\x14\xbc\xce\x9f\x10\x0f\xe4\xcf\x06\x95\x0c\xbb\xe7\x8f\x2c\x86\xff\x03\xfc\x01\xb1\xa5\xfb\xcf\x06\x86\xd9\xfa\x90\xf0\xdc\x2f\x47\x74\x4c\x03\x9e\x3d\x80\x49\x5c\x1f\x28\xb5\xd1\xe7\x78\x9b\x2b\x8b\xa8\xa4\xd0\xfd\x7a\xf0\x72\xc4\x36\xe8\x19\xfc\x61\x76\x57\xb3\x7b\x1d\xde\x28\xa0\xf2\x55\x77\x7b\xff\xe5\x7b\xa5\xec\x07\x3c\x65\xe9\x7e\x37\x03\x7e\x5b\x39\xdc\xe7\xfe\x64\xdd\x66\x77\xf4\x0f\xb5\xe8\xd6\x7b\xc6\x17\x4f\x04\xf2\x27\x9d\xde\xe3\x3e\xef\xcb\x90\xa5\x7e\xff\x30\x7a\x7c\xa7\xd6\x99\xf2\xec\x35\xaf\xa7\xef\x28\xc8\xfb\x7d\x1e\x11\x96\x7f\x5e\x4f\x20\x63\x4b\xd7\xb7\xbb\x1d\xdc\xfb\xcd\x3e\xeb\x4c\x7a\x90\x0c\xb3\x13\x25\x50\xa2\x63\x7f\xee\x74\x21\xee\x26\x88\x53\x3d\x88\xd4\x75\xf1\x9a\xb5\xf1\x0a\x82\xe9\x5d\x30\x3e\xfd\x92\xbd\x7b\x41\xff\xb0\xfc\xfa\xbd\x0e\x40\x02\xf7\x90\x0e\x45\xfd\xec\x3d\x1d\x7d\xa6\x7f\x1a\xed\x4f\x0e\xf3\x88\x1e\x75\xba\xbf\x57\xe0\xff\x70\xcc\xdc\x8d\x21\x61\x32\x8b\x5e\xc6\xc1\x0f\xe0\x7f\x0a\xfe\x4f\xa6\x90\x0a\xf6\x21\xd4\x65\xf7\xfb\xfe\x4b\x46\xc9\x18\x34\x7d\x90\x84\xae\xfb\xc7\x14\xca\x50\x56\xdf\xfd\x9d\x7f\xcf\x35\xb5\xf5\x1b\xcb\xd0\x3a\x03\xc9\xf6\x02\x80\xf5\xc2\xee\x4a\x85\xed\x0f\x9d\x5e\x53\xe9\xfb\x0e\x30\x0d\x3a\x88\xbd\xa3\xf0\xc3\x02\x00\xdb\x2f\xde\x29\xb8\x52\x5e\xd0\xdd\x56\xe0\xbc\x84\x9d\x0c\x7a\x89\xb6\xe8\x0e\xdc\xfd\x63\xa2\x81\x1b\x32\x69\x75\x8b\xee\x86\x2c\x28\x17\xaf\xc9\x74\x8d\xac\xe6\x57\x88\x89\x70\x0b\x53\xca\x92\x4b\xbf\x60\x40\xb6\xe1\xc0\x75\xb6\xf3\x41\xde\x7c\x77\xe9\x9e\xd3\x65\xe7\xf1\x8f\x1d\xfa\x1b\xc4\xed\x0f\x9b\xef\x4a\xa9\xf6\x11\xba\xff\xe1\x25\x88\xac\x27\x2f\x28\x38\x66\xe4\xd6\xfd\x4d\x41\x05\x2e\xd6\x01\x95\x7f\x34\xe8\x6a\xee\xfe\xd6\xfc\xa0\x12\xef\x21\x61\x4c\x96\xe9\x94\xba\xe4\x1b\x14\x4a\xf6\x31\xac\xf6\x0b\x42\xff\x74\xe9\x16\xd5\xed\x70\xe2\x11\x15\xd7\x21\x48\x01\x78\x4f\x74\xb7\x9b\xf4\x5d\x37\xcc\x57\xeb\x6a\xc8\xc0\xad\x36\xe0\x72\xb1\x05\x9c\xe5\x12\x86\x25\x87\xd0\xf4\x58\x71\x01\xee\x7e\x67\xe9\xba\x83\x7d\x98\x01\x66\x07\xf4\xa1\x9b\x11\x17\xc8\x19\x1f\x0e\x14\xa6\xf2\x82\xa1\xc0\x22\x87\x5e\xc0\xe4\x90\xfd\x1c\x26\x31\x08\xc9\x6c\xa1\x7d\x7d\x5f\x31\x1e\x9f\x99\x3e\xa0\x9b\x74\x9b\x0f\xbd\xd2\xae\x8b\x12\x61\x77\x93\x2f\xc5\x62\x27\x44\x99\xc7\xee\xfd\x2b\x6d\x99\x0d\x71\x8f\xb2\xe1\xae\x9f\xa1\x95\x4c\x40\xcc\x62\x78\x4d\x18\x5e\x77\x1f\x28\x41\x74\x8f\x75\x52\xce\x98\x88\xac\x1c\xaa\x95\xc9\xfb\xaa\xa6\x60\x18\xb6\xdf\x81\xc1\x09\x08\x22\x9d\xc6\x57\x66\xe9\xda\xb1\xbb\x76\xfc\xbe\xfb\x0e\xce\xc9\x47\x8c\x79\x4f\x98\x2a\xc1\xfb\xba\x7d\xc0\xe8\xe2\x35\xbf\x5f\x7b\x01\xc7\xfa\x13\xb6\xc0\x37\x5f\xf0\x6b\x50\x50\x9b\xff\xd9\xa1\xa3\x9d\xd0\x31\x07\xa3\xb4\xf7\x8c\xbb\xb1\xd8\x07\x9c\xb9\x49\x53\xd9\x31\x63\xd9\x9f\x27\x5c\xdc\xe1\x80\x3f\x68\x20\xd9\xbc\x03\xe6\xff\x54\x10\x9f\x3e\x1c\xb2\x88\x15\x14\x8b\x81\x8a\x36\xa9\x40\xfb\x8e\xb5\x72\xc6\x6d\x22\xc0\x3d\x9c\x15\xfd\x40\x8b\xf6\x20\xae\x73\xb7\x33\xed\x52\xbc\x93\x2e\x43\xfc\x0f\xc1\x94\xe1\xf8\xcb\x47\x7b\x5c\x1c\x6c\x0e\xfc\xc3\x2e\xa6\x07\x6b\x75\x6a\x58\x9a\x79\xa0\xfc\x0f\x03\x8a\xd0\x01\x5f\x4b\xb2\x0a\x57\xb0\x0f\x00\x05\x85\x95\x8c\xa7\x87\xfa\xa8\x1d\xdd\x37\xf4\xaa\x70\x65\x30\x78\x07\x7d\x39\xb4\xff\xa4\xc4\xf8\x7d\x41\x11\x7a\x72\x3c\x52\xd9\xe5\xfd\xfd\x61\xb6\x59\x4c\x61\x19\xbf\xe7\x2b\x52\xd4\x07\xa3\x07\x30\xa4\xe8\x6e\xae\x43\x89\xd1\x7e\x78\x0c\xcc\x24\xb7\xae\xee\xc1\x22\x14\x60\x7d\x9a\x02\x27\x39\xcd\xc1\xfa\x1e\x81\x6c\x04\xb6\x37\xdd\x97\x8c\xaf\x46\x14\x1a\x5d\xac\x77\xf0\xe7\xe4\xf1\x23\xdd\xcf\xa2\xfc\xa2\xfd\x9c\xb1\x32\x56\xef\xb7\x1c\x6c\x38\xc9\xc2\xa5\x4d\x77\xb4\x09\x78\x7e\xcd\xe3\x09\xff\xbd\xec\xaa\xd4\x3f\x81\xe3\x36\x50\xff\x61\xf7\xe6\x12\x64\xc2\xad\x7d\xa1\xb7\x38\x1c\x29\xa9\xd0\xe3\xfd\x2e\x70\xd9\xfd\xcc\xae\x08\xc1\xa1\x62\xb6\x0f\x9d\x65\xe1\xa6\xbf\xed\xbf\x64\x7e\xe8\x5f\xf7\x5f\xc1\xa6\xdc\x7d\x9f\xa9\x6a\xbc\xd1\xec\xd0\xfe\x07\x98\x73\x53\x18\x80\xc3\xc5\xf0\xf1\x30\x83\x02\x32\xdc\xe1\xd7\x83\xcd\xc7\x43\xb6\x2f\x71\x75\xcd\xd9\x1f\x74\x2d\x75\x82\xd9\x21\x43\x05\x18\xcd\xa7\x90\x55\x65\xa6\x78\x4c\x18\xbb\x78\xf5\x48\x45\xb4\xc3\xcd\xee\x57\xf6\xf1\xec\x86\xd2\xe3\xad\x4d\xa5\xd0\x2e\xd9\xa7\xb2\x59\x97\x8e\x63\xb7\x63\xff\x83\xfd\xfa\x04\x36\xbf\x27\x0f\xc0\x33\xcf\x5e\xb0\x2e\x53\xa9\x1a\xee\xcc\xfe\xec\xf4\x58\x16\x2d\xd0\x37\x5f\x36\x09\x40\x45\x74\x4c\x99\x2e\x9d\x8b\x1e\x14\x87\x03\xf0\xe0\xf1\x1b\x0f\x74\x54\xbb\x67\xf2\x22\xa3\x33\x62\x37\x55\xdb\x98\xe2\xa6\xe4\xcf\xee\xf0\x23\xec\x3d\x9d\xd2\x1e\x0c\x4b\xf7\x64\xfa\x9d\x3e\x1d\x6c\x01\xad\xec\xee\xbf\xdc\x66\xda\x25\xa6\xee\x18\x81\x50\x77\x49\x7f\x83\x9a\xe3\xf3\x0b\xf5\xeb\x26\xdb\x0b\x76\xd4\x77\xeb\x8f\x87\xac\xf4\x87\x4e\xf7\xf5\xbb\xef\x0f\x6c\x54\xbe\xef\x2b\x45\x5e\x8d\xb8\xb0\x76\xf7\xc0\xa5\x15\x15\x73\x1e\x90\x9d\xb3\x0a\x78\x4b\xf9\xc5\x67\x18\x98\x5e\xe7\xe0\x43\x56\x7a\x76\x20\x2c\x27\x28\x29\xef\xb0\xb6\x2e\x9a\xec\xef\xc9\x16\x63\x59\xdd\xef\xfb\xd1\x8c\xae\xbb\x5e\xb8\xcf\xca\xaf\xbf\x13\x9a\x42\xba\x76\xe8\xd8\xbd\x86\xa1\xe8\xb0\x4b\xdd\x0f\x10\x4b\xbd\x7b\x69\xf7\x6a\x76\x0d\xc7\xd3\x64\x80\x70\xad\x75\x55\x7b\x40\x37\x13\x6f\x70\xd7\xda\xdc\xdc\x74\x36\xa3\xd8\x47\x5f\xc6\xb1\x3f\x0d\x11\xde\xfc\x1f\x8f\x04\x25\xe3\x4d\xcf\xf7\xe3\x68\xe3\x01\xdd\x6c\x84\x41\x74\x87\x37\xc3\xe0\x26\xff\xce\xf9\x8a\x6b\xb6\x0e\x09\x27\x83\xcd\x07\x74\x43\xc8\xcc\x21\xa5\x1f\x01\x78\xc5\xb7\x07\x2f\x20\xef\xe2\xa4\xe4\x6b\x19\x82\xec\x7f\x8a\x16\x83\x59\x44\x46\xab\x15\x06\x37\xde\x64\x82\x37\x47\x50\xcd\x0f\x30\xd9\xfc\xca\x9f\x78\x99\x65\x10\xb4\x81\xb9\x0d\x88\x32\x24\xb7\x01\x79\x56\xed\x07\x74\x33\x0c\xf5\x21\x1d\x86\x15\xc3\x39\x5a\x34\x62\xe8\x06\xc7\x83\x3b\x44\x0a\xdf\xf9\xcf\xcd\x9b\x38\x26\x98\x24\xde\xa4\xac\xfa\xd8\x0b\x22\x5a\xf3\x5a\x92\x46\x37\x8e\x08\x8a\x08\xa5\x90\xcd\x5f\xd7\xfa\x91\xf1\xab\x51\x4e\x0f\x86\x39\x22\x64\x82\x5b\x9b\x9b\xd1\x64\xfc\x15\x3b\x83\x78\xbc\x49\x81\x7b\x43\x54\x41\x41\x16\x83\x16\x06\x03\x14\x61\x64\x9c\x1c\x5d\xb2\x17\xf7\x28\xc1\x41\x1c\x19\x0d\xa7\xd9\x74\x1a\xf0\xce\x75\x2b\x88\xf0\xf8\xa8\xdb\x3b\xbd\xe8\xb9\x2e\x14\xeb\xc6\x93\x59\x12\x0c\x47\xc4\x30\x07\x96\xb1\xd5\x68\xbe\xb4\x8d\xcb\x11\x32\x04\x3d\x18\xde\x94\x8c\xe2\x44\xc1\x75\x18\x90\xd1\xf4\x06\x90\x85\x42\x5f\xb1\x24\x1e\x86\x1e\xfc\xf7\x11\x25\xe3\x00\x03\x52\x01\x36\x46\x28\x41\x37\x33\x63\x98\x78\x11\x41\xbe\x6d\xdc\x26\x08\x19\xf1\xad\x31\x18\x79\xc9\x10\xd9\x06\x89\x0d\x2f\x9a\x19\x13\x94\xe0\x38\x32\xe2\x1b\xe2\x05\x51\x10\x0d\x0d\xcf\x18\xc4\x93\x19\x00\x8c\x6f\x0d\x32\x0a\xb0\x81\xe3\x5b\xf2\xe0\x25\xc8\xf0\x22\xdf\xf0\x30\x8e\x07\x81\x47\x90\x6f\xf8\xf1\x60\x3a\x46\x11\xf1\x08\x6d\xf3\x36\x08\x11\x36\x4c\x32\x42\x46\xbf\x76\xc1\xab\xf4\x6b\x16\x34\xe5\x23\x2f\x04\x98\x41\x64\xd0\x12\xe2\xbb\xf1\x10\x90\x51\x3c\x25\x46\x82\x30\x49\x82\x01\x85\x64\x1b\x41\x34\x08\xa7\x3e\xc5\x46\x7c\x0e\x83\x71\xc0\xdb\xa1\xd5\x61\xf8\x30\x00\x24\xb1\x31\xc5\xc8\x06\xac\x6d\x63\x1c\xfb\xc1\x2d\xfd\x8b\xa0\x93\x93\xe9\x4d\x18\xe0\x91\x6d\xd0\x85\x93\x04\x37\x53\x82\x6c\x03\xd3\x97\x30\x9b\x36\xed\xd1\x66\x9c\x18\x18\x85\x0c\xbd\x41\x3c\x09\x10\x66\x3d\xcf\xb0\x84\x72\xb4\xa5\x09\x1d\x62\xc2\x07\x0d\xd3\x37\x0f\xa3\x78\xac\xf7\x28\x60\x78\xdd\x4e\x93\x28\xc0\x23\x04\xf5\xfc\xd8\xc0\x31\xb4\xfc\x15\x0d\x08\x7d\x43\xab\xdc\xc6\x61\x18\x3f\xd0\x6e\x0e\xe2\xc8\x0f\x68\xef\x70\x2b\x9b\x4f\x4a\x13\xde\x4d\x7c\x8f\xa0\x6f\x8c\x62\xa2\x98\x04\x03\x36\x11\x30\x35\x93\x6c\xce\xf9\x27\x3c\xf2\xc2\xd0\xb8\x41\x7c\x10\x91\x6f\x04\x11\x80\xa3\xaf\x45\xf7\x12\x8a\x0a\x26\x5e\x44\x02\x2f\x34\x26\x71\x02\x6d\xe7\xbb\xed\x28\xb8\xbc\xef\x19\x17\x67\xef\x2e\x3f\x77\xce\x7b\xc6\xd1\x85\xf1\xf1\xfc\xec\xf7\xa3\x83\xde\x81\xd1\xaf\x75\x2e\x8c\xa3\x8b\x7e\xcd\x36\x3e\x1f\x5d\xbe\x3f\xfb\x74\x69\x7c\xee\x9c\x9f\x77\x4e\x2f\xff\x34\xce\xde\x19\x9d\xd3\x3f\x8d\x0f\x47\xa7\x07\xb6\xd1\xfb\xe3\xe3\x79\xef\xe2\xc2\x38\x3b\x07\x80\x47\x27\x1f\x8f\x8f\x7a\x07\xb6\x71\x74\xda\x3d\xfe\x74\x70\x74\x7a\x68\xec\x7f\xba\x34\x4e\xcf\x2e\x8d\xe3\xa3\x93\xa3\xcb\xde\x81\x71\x79\x06\xcd\x72\x70\x47\xbd\x0b\x0a\xf0\xa4\x77\xde\x7d\xdf\x39\xbd\xec\xec\x1f\x1d\x1f\x5d\xfe\x69\x03\xb0\x77\x47\x97\xa7\x14\xf6\xbb\xb3\x73\xa3\x63\x7c\xec\x9c\x5f\x1e\x75\x3f\x1d\x77\xce\x8d\x8f\x9f\xce\x3f\x9e\x5d\xf4\x8c\xce\xe9\x81\x71\x7a\x76\x7a\x74\xfa\xee\xfc\xe8\xf4\xb0\x77\xd2\x3b\xbd\x74\x8c\xa3\x53\xe3\xf4\xcc\xe8\xfd\xde\x3b\xbd\x34\x2e\xde\x77\x8e\x8f\x69\x73\x00\xaf\xf3\xe9\xf2\xfd\xd9\x39\xc5\xd5\xe8\x9e\x7d\xfc\xf3\xfc\xe8\xf0\xfd\xa5\xf1\xfe\xec\xf8\xa0\x77\x7e\x61\xec\xf7\x8c\xe3\xa3\xce\xfe\x71\x8f\x35\x77\xfa\xa7\xd1\x3d\xee\x1c\x9d\xd8\xc6\x41\xe7\xa4\x73\xd8\x83\x5a\x67\x97\xef\x7b\xac\x9f\xb4\x28\xc3\xd4\xf8\xfc\xbe\x47\x5f\xd3\x76\x3b\xa7\x46\xa7\x7b\x79\x74\x76\x4a\xbb\xd4\x3d\x3b\xbd\x3c\xa7\x7b\x9d\x71\x79\x76\x7e\x29\xab\x7f\x3e\xba\xe8\xd9\x46\xe7\xfc\xe8\x82\x0e\xce\xbb\xf3\xb3\x13\xd6\x59\x3a\xc4\x67\xef\x68\xb1\xa3\x53\x5a\xf7\xb4\xc7\x20\xd1\xe1\xd7\xe7\xe9\xec\x1c\x9e\x3f\x5d\xf4\x24\x50\xe3\xa0\xd7\x39\x3e\x3a\x3d\xbc\x30\x8e\x4e\x0b\x13\x0b\xf3\xbd\xd9\x8f\xd6\x6e\xa7\x11\xac\x44\x13\xd9\xc4\x9a\xf7\x6b\x31\x90\x6d\xbf\xe6\xba\x64\x36\x41\xf1\xad\x81\x1e\x29\xcd\xe0\x7a\xbd\xe4\x1b\xdb\x39\xf6\xf8\xe6\xc4\x4b\xba\xc4\xb4\x5a\xfd\x9a\x00\xac\x14\xf7\xd1\x6d\x10\xa1\x7a\x9d\xfd\x75\xbc\xb1\xbf\xc7\x7e\x9a\x57\xd7\x36\xa1\x95\xaa\x5a\xdf\xe3\x7f\x9d\xcf\xe8\xe6\x98\xf2\xd9\x0e\x65\xbb\xd0\x12\x2a\xbe\x4b\x4d\x8c\xc2\x5b\xdb\x34\x2d\xf7\x2d\xfc\x37\xef\xd7\xa6\x18\x19\x8c\xed\xf4\x6b\xed\x7b\x2f\x31\x90\x3b\x7f\xd1\x82\x5e\xbb\x6f\xe7\x02\x59\x23\x32\x91\x35\x27\xc9\x6c\x3e\x88\x23\x4c\x0c\xe2\x46\xe8\xc1\xf8\x74\x7e\x6c\x22\xcb\x8e\x5c\xe2\x4c\x3c\x8c\x1f\xe2\xc4\xaf\xd7\x89\x33\xc5\x28\x89\xbc\x31\xda\xfb\xeb\x97\x39\x71\x26\x49\x4c\xe2\x41\x1c\xa6\x9b\x9b\xf4\x51\x7c\x4c\x5b\xf0\x91\x57\x4b\xff\x07\x7d\x1a\xc5\x98\xa4\x7f\xb5\x56\x85\xa0\xd6\x29\x2b\xc8\x3e\xb5\x13\x44\xa6\x49\x64\x20\x87\xc4\xc7\xf1\xc0\x0b\xd1\x71\xfc\x80\x92\xae\x87\x91\x69\x39\x98\x78\x09\xc1\x9f\x03\x32\x32\xa3\xb2\x02\x56\x3a\xf0\xc8\x60\x44\x7b\xcf\xe0\xac\x35\xd3\xf4\x0c\x66\xc3\x61\x73\xf4\x31\x89\x27\x28\x21\x33\x93\xd8\xfd\xda\x97\x2f\x08\x9f\xc0\xac\xf7\x6b\xf6\xfc\xde\x0b\xa7\xa8\xb5\xd6\x48\x2d\x9b\x38\x74\x2a\xba\xf1\x78\x32\x25\x28\x71\x89\x98\x9c\x8f\x49\x7c\x1f\xf8\x28\x71\xef\xe3\xc0\x37\x1a\x76\xf1\xc3\x20\xf4\x30\x66\xc3\x9e\x4c\x07\x24\x4e\xe8\xdc\xd8\x91\x1d\xbb\xf3\xd4\x9a\x53\x0e\xe8\x7c\xa1\x1b\x61\x10\x79\xa1\x8b\x6c\xf6\x22\x41\x43\xf4\xe8\x12\xfe\x34\xf2\x22\x3f\x44\x89\x1b\xf1\xe7\x78\x02\xbc\xce\x8d\xd3\x09\x6b\x05\xc8\x84\x51\x3a\x9b\xdf\xc8\x8d\xe9\x56\x4b\x91\xa5\xdf\x4c\x0d\xae\xad\x37\xaa\x37\x62\xb5\x89\xc9\x5e\x78\xbe\xdf\xf5\xc2\xf0\xc6\x1b\xdc\x61\x33\xb2\xac\x54\x7f\x23\x47\xd4\x40\xce\xd8\x9b\x98\x26\x72\xdf\x9a\xc8\x09\x91\x77\x8f\x5c\x0d\x4f\xf6\xce\x46\xce\x28\xbe\x47\x89\x6b\x12\x3b\xa2\xb4\x19\xdc\x9a\x7a\x31\xf8\xcc\x7b\x30\x4f\xbc\x68\x88\x5a\x71\xea\xa2\x76\x49\x29\x13\x46\xd0\x4a\x53\x1b\x59\x96\x95\xa6\x6d\x18\x65\x23\x9e\x63\xba\xc3\x0e\x8c\x5c\xdf\xed\xc4\x0e\xc4\xd0\x60\x20\xfd\x73\x34\xec\x3d\x4e\x4c\xe2\x30\xe9\xcb\x36\x89\x73\x1b\x7a\x43\xfc\xf4\xd4\xaf\xf5\x6b\xd6\x7a\xbf\x36\xa4\xfb\xfe\x95\x67\x0f\xae\xdd\xd8\xf9\x32\x44\xe4\x73\x10\xf9\xf1\x03\xf2\x8f\x83\x08\x5d\x90\x24\x88\x86\xd8\x44\x1b\x4d\x3b\xb1\xec\xd0\xf5\x9c\xaf\x71\x10\x99\x50\xb9\x1d\x22\x62\xf8\x6d\xd6\xdc\xc4\xbd\xba\x6e\xdf\xc6\x89\xd9\xf6\x5d\xec\xa0\x47\x34\x30\x43\xab\x2d\x90\x41\xae\x7f\xd5\xb8\x6e\x07\xb7\xe6\x1a\x5d\xa1\xd6\x20\x8e\x48\x10\x4d\x11\xab\x7c\x45\x6c\x0c\xad\x8f\xbd\xc9\x05\x49\x8e\xfc\x47\x33\xb1\x07\x76\xc3\xf6\x9d\x20\xf2\xd1\x23\xe0\x17\x16\x4a\x10\x1b\xdb\x74\x22\xa2\x21\x19\x59\x14\xf6\x46\xd3\x75\x5d\xf2\xf4\x04\x7f\x31\xff\xeb\xf1\xbf\x61\xae\x51\x63\xe4\xce\x61\x55\xb5\xe6\x8f\x2d\xbc\xde\xb4\x67\x2d\xb2\xde\x4c\x6d\x14\xf9\xf4\x4d\x68\xcf\x5a\xde\x7a\x33\x4d\xdb\x13\x67\x32\xc5\x23\x93\xcf\xd4\xc8\x26\xe8\x91\xb4\x90\xed\x0d\x48\x70\xef\x11\xd4\x0a\x52\x2b\xe5\x14\x32\x49\xf9\xbc\x54\x8e\x23\x25\x5d\x3a\x6c\x74\x5d\x20\x3b\x71\x91\x1d\xb8\x0d\x1b\xbb\x74\x40\x39\x5e\x1e\x1d\xc9\xe0\xd6\xa4\xec\xea\x66\x7a\x7b\x8b\x12\x07\xda\x42\xce\x10\x11\x0a\x8c\x0e\xa0\x1c\xd7\xc8\x21\x89\x17\xe1\xd0\x23\xe8\x32\x66\xcd\x98\x6b\x0d\x18\x8e\xc8\x09\xf0\xe7\xc4\x9b\x4c\x90\x4f\xb9\xbf\xd1\xaf\xad\xb9\x2e\xba\x6a\x5c\x5b\x73\x3a\x51\x81\xdb\x68\x2f\x68\x64\x63\x23\xb6\xac\x7a\x3d\x78\xb3\xd5\xd8\x79\x55\xaf\x9b\xb8\xaa\x29\x3b\x58\x77\x31\x9f\x06\xdb\x63\x83\x85\x2d\x5b\x6b\x9d\xcd\x08\x9b\xcd\xb3\x5b\x13\x90\xb1\xac\xb6\xd5\xf6\x9c\x04\x51\xf1\x1c\x99\x56\x4a\x91\xe2\xf5\x91\x65\x2f\x41\x6f\x7d\x3d\xa1\xe8\x69\xad\xfc\x30\xae\x95\xe8\xf1\x89\xbd\xf2\xec\xf8\x5a\xce\x6d\x46\x83\x9c\xc3\x89\xd9\x48\x5c\xa4\x63\x6b\x07\x6e\x42\x31\x3e\x9d\x86\x61\x17\x85\xa1\xc9\xd6\x0c\x76\x23\xb6\x54\x62\x65\x81\x24\xb2\x6b\x04\x66\x6f\x0d\x59\xbc\xf1\x8d\xa6\xbd\xd1\x64\x8b\x0b\x48\xc7\xc5\xed\xe8\x8d\x20\xfc\xf6\xfa\x7a\x64\xcd\x61\x5c\xa0\x85\xc8\x0e\xac\xb6\xe0\x00\x01\xbc\x1e\x79\x09\x36\x01\x26\x3c\x7f\x0e\x7c\x32\x32\xad\x7a\xdd\x8c\x37\xe4\x60\x3c\x3d\x35\xed\xc8\x75\x5d\x01\x76\xa3\x49\x49\x86\x6e\xe4\x2e\xb6\x4a\x91\x5c\x6f\x5a\x6d\x54\xaf\x23\x75\x02\xcc\x0c\x8f\x86\x1d\x58\xf6\x96\xeb\xba\xf9\x36\xd7\xdd\xa6\x65\xa5\xc1\xad\x19\xbf\x69\x88\x1e\x12\x3b\xba\x4e\xc9\xfa\xba\x8d\xdd\x46\x2a\xdf\xe1\xeb\x34\xcd\xed\x47\x71\x9a\xda\xc4\x9d\xa7\x6d\x65\xc3\x8f\xad\x39\x95\x07\x12\x97\x5c\xc5\xb0\x70\xd8\x16\xb5\xe6\xba\x09\x87\x6f\x24\x42\xb6\x01\xc9\x21\x80\x92\xee\x9c\xbf\x6b\xcd\xd3\x54\x6e\xbe\x57\xf1\xb5\x19\xd8\x81\x28\x6f\x47\x56\xf6\x90\xd2\xca\x74\x3b\xe3\xa5\x99\x68\xc2\x64\x91\xb8\x5d\xbe\xd9\xa2\x45\x9b\x6d\x5e\xf4\x61\x88\xb7\xa5\xe8\x62\xbe\xb0\xec\xc4\xdd\x64\x67\xcb\xbd\xa7\xf7\x97\x97\x1f\x2f\xf6\xac\xd6\xd5\xe6\xf5\x7c\x2b\xbd\xfa\x9f\xfd\x3e\xee\xd7\xfe\x9f\xb5\x5f\x4d\x6b\x9e\x3e\xf5\xe1\xdf\xff\x7c\xf3\xf6\xaf\xeb\x5f\xc5\xa7\x96\xed\xac\xed\x65\xdf\xfe\x57\xbf\x7f\xd5\xef\x5f\xff\x65\x5a\x6f\xde\x5e\x6f\x66\x43\x18\xe8\x3b\xea\x03\xf0\x2d\x27\x9e\xa0\x88\x51\x4d\xc4\x24\xaa\x08\x5e\xd1\xed\x79\x1a\x86\x4c\xdc\x98\xa7\x91\x13\xc6\x03\x38\xec\x39\xa3\x04\xdd\xba\x24\x45\x21\xa6\xa7\xa0\x08\xc7\x21\x72\x1e\xbc\x84\x6e\x16\x67\x13\x04\x07\x56\x7a\xc4\x36\x6e\xc2\x78\x70\x87\xe8\xe9\xd4\x60\x00\x8d\x41\x3c\x0d\x7d\x7a\x28\xa2\x67\xa1\x41\x88\xbc\x04\xf9\xfd\x9a\x95\xe6\xc7\xa7\x44\xc4\x70\x03\xa0\x07\x21\x60\x08\x09\x02\xe5\x24\x08\x92\x0a\x76\x0d\xf2\x61\x4e\x18\x69\x8b\xae\x6b\x95\xec\xd8\x8d\x9c\x69\x12\x9e\x53\x59\xe2\xe9\x29\xe1\xfb\x73\xa8\x0a\x3d\x3a\x24\x27\x41\xc3\x00\x13\x94\xa8\x82\x91\x49\xb7\xe1\x82\xb8\x64\xe6\x64\x93\x58\x97\x4e\x6c\x2a\x87\xf8\x01\x9e\xc4\x94\x33\xce\x8b\x2d\xef\x39\xf2\x6b\x9a\xa6\x96\x69\xd9\x31\xfd\xdf\xb2\xda\xfd\x68\x73\xf3\xff\x32\xd8\x76\x7f\xe2\x4d\x26\x41\x34\xfc\x74\x7e\xec\x16\x15\x6b\x54\x9a\xa9\xd9\x35\x46\xdc\x06\xdf\xc5\xb9\x64\x8a\x0d\xd7\xb8\xea\xd7\x98\x9e\xad\x5f\xbb\x6e\xf7\xa3\x7e\xa4\x95\x1c\xe3\xe1\x51\x34\x99\x92\x4f\xd1\x5d\x14\x3f\x44\x86\x6b\xf4\x6b\x8d\x7e\xad\x5d\x51\x0c\xbe\x37\x4b\xbf\x7f\xa4\x94\x41\x3f\x6f\x95\x7e\x3e\x47\x38\xf8\x8e\x2e\xf9\x40\x41\xc1\x6d\x28\x58\x2c\xca\x71\x39\x9b\x12\xd1\x62\x39\x46\x4a\x81\x0a\x94\xe2\x85\x28\x5d\x88\xcd\xfd\x32\x20\x21\x52\x50\x2a\x29\xf8\x31\x41\xb7\x28\x41\xd1\x00\x61\x28\xb8\x53\x55\xf0\x1c\x0d\xe2\x28\x42\x03\x86\xd7\xae\xde\xc5\x20\x22\x28\xb9\xf5\x06\xc8\x90\x03\x31\xef\x47\x86\x11\x44\xb7\xb1\x69\xb5\x8c\xb9\x31\x88\xc3\xe9\x38\xc2\x2d\x23\x9a\x8e\x6f\x50\xd2\x36\x92\xf8\x41\x3e\x19\x69\x9b\x96\x8e\xa1\xdf\xa6\xef\x11\xaf\x05\x87\xa9\x68\x68\xb5\x0c\xca\x75\xe0\x33\x1e\xc5\x0f\x27\x08\x63\x6f\x88\xcc\x31\xfb\x2b\x8a\xd9\x06\x09\xc6\x28\x9e\x12\x01\x51\xad\x97\xa0\x71\x7c\x8f\x44\x4d\x0d\xa2\x36\x50\x26\xa1\xff\x97\xb6\xac\x8d\x93\xc9\x58\xa4\xc1\x0e\x93\x6a\xb9\x38\x02\x62\x32\x07\x5c\x3a\x6f\x19\x66\x40\x5f\x48\x98\x86\xfb\x16\x4a\xeb\x95\x18\x09\xa9\xb5\x06\x71\x38\x9e\x66\xa3\x65\x6b\xa3\x55\x0a\x25\x41\x18\x11\xad\x73\x3e\x92\x3c\x45\x7d\x3d\x08\x61\x55\xca\x37\x69\xe9\x34\x76\xd9\x5c\x53\xf6\x0b\x13\xc9\xb8\xed\x02\x30\x74\x90\x22\xbf\x72\xee\x02\x7c\xc6\x21\xdc\xc4\x71\x88\xbc\x88\x77\x1d\xde\x2a\x1d\xaf\x1c\xa1\x01\x0a\xee\xb5\x21\xd2\x5a\x2a\xaf\xd5\x05\x1c\x17\x43\x5f\xd6\xfd\x77\x1e\x65\xe4\x33\x36\x0a\x83\x04\xf1\xe1\xcc\x0a\xe4\x60\xb0\x03\xd0\x67\x74\x73\x79\xf9\x27\xab\x44\x79\x68\x4b\xae\x0b\x36\x78\x79\xf0\xad\x62\x8b\x50\xd0\x4b\x86\x58\x74\x92\xbd\x98\x92\xd1\x65\x7c\x87\x22\xed\x6d\x22\xd6\xa6\x5c\x5e\x14\x23\xc3\x50\xb7\x22\xfa\x9c\x47\xc6\x66\x2f\x57\x41\x87\x17\x55\x11\x12\xaf\xf2\x28\xc1\x7b\x8b\x75\xde\x00\xdd\xa2\x43\x9b\x35\x5c\x68\xbd\xad\xbc\x2e\x34\x6c\xb8\x45\x64\xd4\x0a\xb4\x79\xc3\x05\x2c\xb4\xd7\x02\x05\xfa\x4d\xfc\x56\x0b\x24\x0a\xf3\xda\x68\xc2\x97\x94\x0d\x11\x23\x6c\x81\x2c\x95\x5f\x33\x04\x28\xc6\xa5\x68\x3a\x82\x10\xda\x59\x35\xba\x91\x5d\x06\x63\x94\xb4\x8c\x73\x10\xbf\x2e\x67\x13\xf4\x86\xab\x99\x30\x22\x47\x94\xb8\xee\xbd\xf0\xad\x52\x47\xa2\x75\x29\xb8\xd7\x69\xec\xa3\xdf\x2e\x1c\xfe\xcc\xa7\x91\x4f\x24\x85\x32\x9d\x18\x2e\xa7\x63\x8e\xb2\x3a\x7d\x0e\x5f\x50\xb9\x02\xa2\x3e\x1d\xfe\xa3\xe8\x36\x16\xfd\x02\xbd\x3f\x63\xd1\xb2\xa5\x1c\x40\x58\xd4\xd9\x17\xc3\xf8\xed\xe2\xec\xd4\x61\xf3\x1c\xdc\xce\xcc\xb9\xfa\xcd\x30\x3a\xc9\x10\xd4\xf8\xb8\x95\xcd\x97\x9d\x2b\x92\x91\x8b\x3e\x77\x5a\xb9\xd4\x52\x1e\x0b\xd8\x61\x50\xf2\x07\xdf\xd1\x7b\x26\x8e\xd0\x31\x59\xce\x32\x35\x5c\x17\xf5\xd1\x28\xd9\xd7\xd7\xf5\x02\xcb\x06\x82\x35\xc1\xb7\x3c\x8e\x9a\x5d\x2c\xc2\x70\xa4\xff\x17\x3e\x6a\x23\xc0\xc6\x40\x7e\xd2\xc6\x23\x9b\x4a\xb9\x93\x68\x83\xa3\xd6\xd4\x3e\x98\x82\x1e\x1c\x8e\xa9\x2d\x29\xc4\xa1\x28\x59\x95\xcd\xb0\x5d\xae\x64\x6f\x5b\x38\xc4\x52\xd6\x5a\x37\xa0\xa6\xd6\x25\xbd\x31\xb9\x98\x0c\x57\x5d\x3b\x45\xc2\x2e\x6d\x85\x4a\x6c\x1a\x70\xdb\xd8\x6e\x18\xbf\x1a\xcd\x46\xa3\x91\xbd\xd7\x9a\xd4\xd6\x90\xd8\x6d\x60\x8f\x29\x5f\x4a\x13\x6f\x16\xc6\x9e\x6f\xb8\x06\x2d\xe3\xe0\x30\x18\x20\xb3\xa9\x36\x8a\x1f\x02\x32\x18\xb1\x7d\xea\xaa\x71\x6d\xe5\xb0\xf6\x30\xca\x44\xbd\x96\x3e\xf9\xca\x50\x33\x89\xc8\x23\xf1\x8d\xc9\x9b\xb4\xd4\x46\xe8\xbf\x9b\x04\x79\x77\xed\x32\xe0\x54\x4c\x6c\xad\x5a\x58\x17\x1a\x2b\x31\xca\x89\x4c\x02\xa9\x95\x71\xd2\x45\xce\x5c\x33\x42\xc8\x57\x45\x52\x58\x67\x13\x2f\xc1\x95\x8d\x69\xc8\xa9\x72\x9a\x02\xe8\x59\x08\x4a\x51\xb7\x14\x3d\x6f\x4a\x62\x55\x18\x5e\x8e\xa0\x38\x6d\x86\xf1\xd0\xec\xd7\x7a\x91\x77\x13\xd2\x33\x85\xb2\x6b\xf7\x6b\xc6\x7a\x0e\xf0\x3a\x7d\x89\xe9\xa3\x8f\xfb\xb5\xd2\x3e\xab\xbb\x9a\x56\x79\x49\x67\xd3\xe5\x4b\x80\x89\x4e\xc5\x7d\x84\x1e\x7e\xe5\x6a\x94\xab\x54\xc5\x2e\x9b\x0d\x55\x00\x2d\x2d\xa0\x0a\xf4\xfd\x9a\x22\x72\x42\xeb\x7e\xbf\x66\x1b\x0d\xb5\x66\x70\x6b\x98\xb9\x8e\xbf\x35\x1a\xb9\x95\x95\xdf\x53\x19\x07\xe1\x0f\x65\x0c\xc4\xf8\x91\x1d\xbf\xd8\x19\x2e\x80\xe7\xbe\xc3\x96\x9d\x7b\x9b\xda\xf9\xe9\xcb\xb3\xa6\x55\xa6\x88\xa9\x3f\xd8\x97\x6c\x43\xd0\xdb\xe3\x5a\xa3\xbc\xbc\x40\x27\x51\x0c\x48\x7e\xb8\x32\x24\x94\xc6\xb8\xb0\xaf\xb4\x06\x18\xa6\xfd\xa8\x66\xd7\x82\x31\x08\xbe\x73\x23\x0c\x6e\x8c\xd4\xb8\x4d\xe2\xb1\xd1\xaf\x71\x63\x13\x7e\x4c\x94\x65\x8e\x0e\x40\x2d\xe0\xdd\x84\xc8\xce\xce\x8a\xb2\x96\x6a\xd8\x02\x55\x65\xc5\x77\x01\x01\x25\x4b\xa1\xac\x34\x3f\xd1\xcb\x7f\x46\x37\xc3\x70\x51\x0d\x30\x38\x29\xd4\xc9\xb4\x39\xd5\xd5\x98\x86\x22\xdf\x33\x6e\xba\xd3\x0b\x11\x15\x80\xb2\xda\x8e\x30\xea\xc9\x29\x05\xe0\x9c\xf0\x07\x08\xc6\x30\x33\x28\x44\xe3\x96\xf1\xfe\xf2\xe4\x98\x83\x68\x57\x1c\x1e\xd8\x1e\x7e\x1c\x60\x82\x22\x2a\x6d\x66\xa7\x1a\x7e\xec\x1b\xc4\x3e\x7d\x1f\x06\x37\xce\xa7\xcb\x77\xaf\x0e\xd8\x0b\x4e\x22\xf2\xe0\x9c\x6f\x89\x7f\xb8\xd4\xcf\xd1\xf9\x4f\x55\xd2\x2d\xaf\xf6\x96\xb7\x72\xcb\x67\xab\x25\xe7\x8d\xe1\x26\x27\x1f\xb7\x54\x52\xb8\xba\x36\x5c\xe3\xea\xba\xe4\xd4\x52\x18\x15\xfd\x5c\x41\x3f\x1b\x2e\x8c\x5d\x5b\x95\x94\x03\xcc\x36\x29\x6c\xb8\x82\x9c\xaf\xfa\x35\xfe\x8e\xf2\x15\x78\x68\xbe\x90\x3f\xb7\xb7\xe4\xcf\x6e\xaf\x5f\xbb\x96\xba\xf6\xc8\xbb\x0f\x86\x1e\x89\x13\x67\x12\x7a\xe4\x36\x4e\xc6\x96\xf1\xd6\x35\x1a\xed\xe2\xe9\x26\x42\x0f\x72\xa6\x32\x79\x70\x30\x4d\x70\x9c\x5c\x90\x59\x88\x28\x9f\x07\xed\x62\xbf\x66\xeb\x9f\xf7\x29\x49\xb5\x0c\x92\x4c\x91\xfc\xc2\xf4\x9c\xf8\x24\xf6\x51\x2b\xeb\x90\xfc\x7c\x1b\x47\xe4\x9d\x37\x0e\xc2\x99\xb2\x4b\xf5\x6b\x07\xe8\xab\xf7\xfb\xd4\xb8\xf0\x22\x6c\x9c\xc4\x51\x6c\x1b\xbd\x7b\x66\x97\xc3\x9e\xde\x25\x08\xb1\x5f\x27\x28\x0a\xe3\x6c\x11\xda\xc6\x38\x8e\x62\x3c\xf1\x06\xc8\x36\x3a\x93\x49\x88\x8c\x8b\xd9\xf8\x26\x0e\xb1\x82\x2d\x6d\xf4\x22\xf8\x8e\x5a\x46\x73\x8b\xbf\x54\x18\x14\x0c\x86\x98\x7a\x3e\x20\x62\xfe\x25\xf7\xc8\x38\x26\xdd\x2a\xd9\x37\xad\xe2\xa2\x82\x14\xa2\xb6\x4a\x4d\x2b\xd7\x3c\xa7\x55\x4e\x14\x4e\xfc\x10\xa1\xe4\x80\x1b\x17\x71\x26\xce\x29\xc9\xec\xd7\xfc\xe0\x3e\xdb\x5a\xd5\xea\x0e\x2c\xcf\x53\x6f\xcc\xb4\x67\xc0\x00\x36\xe2\x7b\x94\x84\xde\x0c\xd6\x71\xbe\x42\xb6\xd9\x6c\x35\x1a\x0d\x1d\x25\x7d\xc1\x16\xcf\x6f\x5a\xef\xe9\x0f\x65\xbf\x50\x36\xcb\x41\x12\x87\xe1\x65\xbc\x1f\x13\x12\x8f\xf3\x45\xb4\xad\x54\x92\x03\xbf\x58\xca\x80\x0c\xe2\x10\x5b\x20\x5a\x3c\x82\xc8\x51\x28\x00\x72\xbf\x9d\xdb\xac\xf5\x3e\xca\xaf\xc5\xdd\x47\x11\x5c\xe9\xf6\x44\x67\xc0\x2a\xf9\x78\x1b\x0f\xa6\x58\xf6\x80\xeb\xf3\x3d\xdf\xef\xdd\xa3\x88\x88\x71\x32\xfb\x35\x36\x70\x74\x61\x96\x8d\x98\x3e\xac\xd9\xee\x94\xb5\xa8\xb3\xe4\x37\x0a\x17\x79\x6b\xf6\x6b\x0e\x9b\x55\x3c\x48\x10\x8a\x8c\xb7\xc6\xc0\x8b\xee\x3d\x60\x0e\xbb\x74\x33\x16\x6d\x39\x64\x54\x76\xa2\xe6\x58\x27\xe8\xdb\x14\x61\xd2\x89\x82\x31\xdc\x32\xbc\x4b\xbc\x71\x89\xdc\xf4\xfc\xf2\x8b\x3b\xa9\xc8\x06\x25\x0f\x69\x86\x3c\xb3\xba\x30\x51\x52\x38\x02\x0b\xa1\x14\x25\x09\xe5\xb3\x49\x52\x7a\x32\x02\x24\xf8\x96\xc2\x57\x74\x6e\x5f\xe1\x38\x71\x75\xca\xca\x0a\x5f\x81\x0a\x17\x51\x94\xf2\x3a\xb5\x8a\x73\xbc\x4e\xa2\x99\x0c\xd2\xaf\xd0\x1b\x17\xd4\x4f\xce\x43\x12\x10\x64\xaa\x1d\xe2\x7f\xd9\x31\x4f\xeb\xc6\xb3\x54\xcd\x5a\x53\x82\x81\x10\xf4\x48\xb8\x29\xa9\xe1\x8a\x1d\xb4\x9d\xdb\xba\x1c\x6f\x32\x41\x91\xdf\x1d\x05\xa1\x6f\xaa\xd5\xb3\x09\x90\x32\xaf\xba\x09\x5b\x15\xc2\x5c\xb1\xa0\x58\x14\x0a\x30\xce\xa9\x74\xc9\xb9\x50\x73\x89\xd8\x9c\x75\x81\x69\xd7\xcb\xbb\xc0\xc9\x49\x0e\x99\x86\x0e\x1f\xea\x52\xed\xbc\x68\x2a\xdf\x7b\x7a\xce\x42\x11\x39\x8d\x7d\x64\xb8\x6e\x86\x45\xbe\x27\x2b\x61\xa6\x62\xb1\xf0\x26\x40\x00\x17\x46\xaa\x0e\xe1\xf7\x2a\xf0\xb7\xad\x83\xa9\xbe\x28\x10\x60\xf8\x4d\xec\x1d\x9a\xf1\x12\x96\x73\x1b\x27\x3d\x8f\x2e\xd4\x3b\x34\xd3\x87\x9a\x8e\xc0\x1d\x9a\x19\xf5\xba\x41\xff\xb8\x74\x3b\x42\xf4\x04\x89\x84\x04\x6b\x15\xe6\xa5\x7c\xd3\xe4\xe2\xb0\xa9\x28\x10\x52\x85\x65\x66\xab\x69\xe5\x4b\x0c\x8d\xf0\x15\xd9\x8e\xd9\x2d\x14\xb7\xb0\x38\x3a\xf0\x88\x57\xa1\x56\xe1\xad\xb1\x8f\x0a\x2b\xe2\xdb\x4d\x0e\xc5\x1f\xbe\x32\x79\x3e\xce\xbc\xa9\xe5\x58\x73\x7e\x05\x3f\x85\xfe\x6c\x51\x2f\x8a\x17\x34\x95\xc8\x49\xfa\xf0\x01\x03\x3f\xbb\x5d\x2d\x4a\x4b\x37\xe1\x34\xc7\x94\xb5\xbb\x21\xad\x8d\xdc\xe2\x2b\xc0\x02\xee\xa2\x03\xd3\x2e\x7e\x04\x30\xb9\xbb\x51\x70\xd5\xdb\x78\xc9\x96\x56\x6c\x53\x76\x4d\x3f\x66\x6e\xfe\xfa\x2b\x58\x99\x7e\xf6\x02\x82\x8d\xdb\x38\x31\x3c\xe3\xe0\xec\x04\xc4\x3c\xca\x64\xc7\x74\xa7\x0b\xa2\x21\x98\x1d\x63\x14\x22\x7a\x7e\x30\x48\x6c\xa0\xc7\x80\x9e\x08\x98\xb5\xb7\x5c\xc2\x00\xeb\x1c\xe1\x38\xbc\x47\xd8\x08\xc6\x63\xe4\x07\x1e\x41\xe1\x8c\xae\xb8\x80\x18\x5e\x98\x20\xcf\x9f\xb1\xda\x18\x8a\x33\x63\xfd\x89\x97\x78\xe3\xac\x81\xee\xc5\x45\xf6\x40\xb1\xa2\xad\x08\x9c\x48\x0c\x32\x08\x7d\xaf\x56\x16\x2c\xf8\x0c\x2e\xf2\xbd\x50\xbe\x08\x22\x63\x1c\x84\x61\xc0\xd5\x3e\x86\xe9\xa3\x5b\x6f\x1a\xd2\xad\x26\x96\x3c\x94\x41\x62\xfb\x26\x36\x3e\x26\xf1\x38\xc0\xc8\x20\x23\x0f\x94\xe2\xac\x3f\x0f\x01\x19\x71\xbb\xf0\x69\xe4\x0b\x7c\xb8\x4d\x2e\x3f\x81\x4a\xfb\x8a\x9c\x98\x74\x69\xa0\x47\x82\x68\xf3\x99\xb0\x04\xac\x8d\x75\x52\xbb\xe5\xe1\x38\xed\xc9\x55\xd7\x8f\xac\x96\xc0\xe9\xcd\x25\x5f\x2b\x7c\x8f\xa7\x7c\x88\x7f\x32\x4d\x8e\xaa\x6d\x24\x88\x31\xc7\x6c\x61\x6d\x6e\x1a\x47\x25\x73\x60\x8b\xee\xa9\xb3\xa5\x1e\xfa\xa0\x18\xbb\xac\x97\xd3\xfc\x6d\x8a\x92\xd9\x05\x47\xfd\xcd\xe5\x5b\x53\x74\x43\xd0\x1d\xe5\xaf\xa2\xa2\xc2\x49\x79\x53\xd9\xa7\x76\xf6\x85\x76\x26\xdb\x42\x54\x0c\xe2\x1b\x8c\x92\x7b\x29\x29\x9d\x4c\x99\x9f\xc1\x19\x7f\x9d\xdf\x46\x39\xda\xe1\xb3\x10\xe6\x28\x87\x1a\xdb\x17\x0d\xd3\xc5\xc3\xf5\x36\x66\x4e\xef\xcf\xba\x13\x96\x33\x7f\xf6\x53\x42\xe1\x3f\x4c\x89\xd5\x4d\xec\xcf\x6c\x2a\xa4\xd1\xcd\x94\x2e\x5d\x7e\x56\x35\xf0\xf4\x86\x24\x08\xb1\x47\x15\x96\x22\x6a\x28\x98\x2e\x12\x29\x96\xf7\x81\x12\x0a\xec\x66\x3d\x90\x59\xff\x12\x87\x2e\x4a\xc0\x74\xde\xe9\xf2\xe3\xa4\xde\x32\x7e\x99\x8b\x91\x4b\xff\xb2\x96\x0b\x23\x56\x3b\x63\x34\x9a\xd7\x0f\xfc\xbf\x82\xaf\x0f\xfc\xbf\xcc\xc3\x67\xd7\xd9\xcd\x3b\xf8\xb0\xff\x97\xb9\xf5\x6c\x6c\x35\x9a\xaf\x7f\xda\xb7\xa7\x00\x77\x87\xc2\x7d\x61\x1b\x17\x60\x8e\x73\xec\x05\x89\xf1\x31\x81\x2d\xc9\xe8\xc6\xe3\x89\x17\xcd\x32\xe8\x0f\x0f\x0f\xdc\x4a\x37\xf4\x82\x84\xb6\x52\x01\x74\x8b\x02\xdd\xb6\x8d\xee\x28\x09\x30\x89\x27\x23\x94\x18\xbf\xa1\xdb\xdb\x04\xcd\x4a\x71\x1d\x8c\xbe\x7e\xdd\xfc\xb7\xf3\xd1\xbf\x9d\x8f\xfe\xed\x7c\xf4\x6f\xe7\xa3\x7f\xa1\xf3\x51\x70\x6b\xfe\x90\xff\x91\x55\xf4\x3f\x6a\x83\x15\x29\x00\x5c\xc9\x0f\xc9\x52\xfd\x90\xa0\xf2\x9c\x5b\xfa\x9a\x16\x18\x4e\xd3\x27\x4c\x99\x4a\x60\x2d\x40\x52\xb8\x29\xb5\x90\x75\x85\xaf\xdd\xe0\x0a\x5f\xa7\xa9\x39\x0c\xe3\x1b\x2f\xbc\x1c\x05\x78\xb9\x4b\xd2\xce\xee\x8b\x97\x2d\x75\x58\xec\x80\x99\x27\x63\xb0\x15\xad\xd7\x99\x29\xe7\x17\x1f\x0d\xe2\xc4\x23\xe8\xe9\x49\x2f\x6c\x63\x6e\xcd\x6c\x47\xae\x27\x8c\x3d\x84\xc1\x7a\xec\x46\x6f\xb6\xf7\x48\x2b\x9a\x86\xa1\xeb\xba\x78\x0f\xbb\xfc\xac\x3b\x44\xe4\xec\x21\x12\x56\xc7\x07\x08\x0f\x92\x60\x42\xe2\xc4\xa4\xed\xb7\x70\xbb\x7c\x6a\xce\xd1\x2d\xdd\xc1\xe9\xd4\x94\x8c\x32\xff\xea\x08\x54\xad\xd8\xcd\xbf\x92\x38\xb3\xf9\x12\x03\xed\x29\x66\xe4\x6d\xef\xad\xdb\x68\x7b\x1b\x1b\x96\x99\xb8\xe8\xca\xbb\x06\x23\x70\xd7\xa4\x3d\x49\xcc\xd8\x6a\x45\x6f\xe9\x0f\x0a\x26\xb6\x5a\x0c\x61\xeb\xe9\x29\xb6\x84\x49\x76\xf4\x76\xbb\x5e\x8f\xeb\xf5\x2a\x67\x26\x5a\xcf\x8e\x53\x3b\xd1\x07\x18\x4e\x02\xfa\xe8\x4a\x47\x1e\xf9\x12\x86\x9b\xd0\x3f\x36\xb2\xd2\xb4\xc2\x86\x7b\x89\xc3\x54\x67\x30\x40\x18\x07\x37\x41\x18\x90\xd9\x89\x17\x79\x43\xe9\x26\x25\x0d\x8b\x03\xf3\x75\x63\x67\xcb\xb2\x63\xfa\xeb\xf5\xd6\x8e\x65\x7b\x6e\x60\xbe\xda\xd9\xb1\xec\x91\x1b\x98\x3b\x2f\xb7\x76\x2d\x7b\xe0\x06\xe6\xd6\xee\xab\x5d\xcb\x0e\xdd\xc0\xdc\x7e\xb1\xfb\x82\xbb\xd8\xb8\x15\x8d\xb0\x3b\x2e\x71\x9a\xf0\x9c\xec\xc2\xa7\xe0\x87\x05\x3d\xc5\xd3\x09\x4a\x4c\xcb\xae\x70\xc6\x1a\xc4\x09\xda\xa7\x07\x6b\x94\x5c\xa0\xe4\x3e\x18\x80\x75\x35\xf7\xa7\x8a\xfc\xec\x2d\x16\x6f\xe3\x87\x2e\xd3\x2a\xba\x4c\x07\xe2\xdd\x9d\x78\x13\x5b\x58\x2b\xdf\xa3\x73\x34\x0c\xe2\xe8\x38\x88\x50\x37\x9e\x46\xc4\x6d\x88\x96\x46\x5e\x82\x2f\xe3\x6e\x1c\xe1\xe9\x18\xb9\x74\xd5\xaa\xef\x3b\x51\x14\x4f\xa3\x01\x02\xaf\x18\xfe\xc9\x53\x07\xa0\x1b\x47\x54\x0c\x91\x06\xd8\x45\xcc\x9d\xb1\x17\x44\x4b\xee\x25\x16\x42\x66\x37\x14\x54\x14\x77\x3c\xdf\x37\xc5\x1d\x85\x56\x38\x83\x01\x23\xf1\x37\xe2\xa4\xc2\x73\x30\x22\x1d\xc2\xa5\x12\x7a\xdc\x8f\x81\x08\xfb\xb5\x30\xc0\xa4\xa2\xca\x0a\xc8\x6f\xd0\x73\x85\x56\x9d\xe3\x82\x85\x27\x17\xa5\x3d\xe4\x36\xda\xe8\x4d\xde\xcc\x3d\x7e\xc0\x6d\xb4\xbe\x6e\x15\xaa\x5e\xa1\x6b\xd1\x7d\xe8\x9e\x46\xb6\x97\x09\x42\xa7\xb1\x8f\xcc\x52\x94\x0b\xaa\xda\x1c\x5c\x70\x45\xe0\x88\xc4\x93\x7d\x7a\xee\xf6\x92\xd9\xbb\x78\x30\xc5\x42\xd7\xe1\x22\xf7\xad\x6a\x46\xaf\x15\x32\x91\xdd\x10\x0d\xdf\xc0\x1d\xcf\x0f\xc1\x68\x96\x0c\xd8\x55\xe3\xba\xec\x7a\x05\xae\x61\x24\x01\x57\x21\x5d\x06\xaf\xf0\x46\xb2\xd3\x15\x1a\x5a\xd0\x39\xd9\x16\xba\x4d\x10\x1e\x9d\xc7\x0f\xf8\x20\x18\xa3\x88\xca\x85\xd8\x5c\xb2\x20\x4a\x27\x48\x7e\xb6\x0a\xcb\xfe\xef\x58\x07\x19\xb4\x02\x49\xd3\x4f\x1b\x09\x7c\x2b\x2d\x9f\x5b\x35\x5e\x12\x78\x1b\xf4\x33\x2c\x1d\x0f\x63\x94\x10\x78\x7a\x76\xaf\xb3\x36\x8a\xad\x1e\xa0\x1b\xe0\x5c\x9c\x09\x08\x7f\x10\x38\x54\xc7\x60\x75\xba\xef\x61\xe4\xcb\x62\xa6\xca\x5e\xe9\x74\x38\x37\x41\xc4\x1a\xb2\x2c\xcb\x5e\xcb\x2d\x3c\x7e\xf8\xb6\xc8\x28\x89\x1f\x8c\xec\xa4\xde\xaf\x75\xbd\x28\x8a\x89\xc1\x34\xd7\x86\xd6\x17\xe3\x06\xdd\xc6\x49\xe6\x39\x00\x77\x87\xfd\x9a\xd5\x2e\x07\xee\x04\x11\x1d\x9b\x8e\xff\xd5\x1b\xa0\x88\x64\x13\xe3\xdd\x12\x94\xdc\xa0\x61\x10\x2d\x61\xca\x7c\x58\x64\xe7\x73\xed\x64\x1a\xdf\xdc\x52\xe3\xaf\x11\x53\xee\xd2\xfe\x2f\x85\x43\x87\x4d\x81\xa3\xd0\xb5\x89\x98\xcf\xb4\x8d\x1c\x14\xf9\xab\x40\xbb\x80\x0b\x60\x13\xa4\xbb\x22\xb8\x55\x20\x74\x9a\xcd\x59\x77\xe4\x25\x85\x9e\xc1\x4b\xb4\x0a\x08\xba\x57\xbe\x43\xc8\x57\xd1\x50\x60\xf4\x6b\xfd\x3e\x9d\xbb\x15\x91\xb9\xf4\x6e\x0a\xb8\xd0\x77\x2b\xa1\xf2\x01\xcd\x0a\x95\xe9\x3b\xe4\xdc\xa1\xd9\x2a\x00\xf6\xc3\x69\xa2\xf6\x03\x94\xdd\xc7\x72\xad\x54\x0f\xa9\x26\x6d\x38\x71\x94\xf1\xa8\xee\xc8\x8b\x86\xa8\x62\x8e\x54\x56\x56\x04\x6d\x36\xec\x90\xb2\x8e\x4c\x48\x3a\x88\xc7\x92\x31\x4a\x55\x9c\xdd\xaf\x31\xbd\x56\x10\x47\x03\x68\xad\x5f\xb3\x0b\x93\x71\x21\x8a\x70\x84\x2a\xbb\x52\xc2\xfd\xe2\xe8\x60\x92\x3c\xbf\x23\x3a\x35\x16\x3b\xe7\x39\x24\xce\xfa\x66\x31\xd0\xf3\x85\xbc\x8d\x5d\x27\x98\x25\x3b\x10\xdf\x6f\xdc\x46\x6a\x59\x56\xaa\x51\xce\x5c\x88\x06\xc4\x6d\xb4\xc9\x1b\xd4\x26\x52\x10\xd0\x08\xd5\xe8\xd7\x64\x4d\x4e\xff\xf3\x4a\xc9\xf0\xcd\x56\xb3\x5e\x37\xcb\x84\x43\x8e\xc9\xdb\xc6\x5e\xe9\x57\x3c\x0a\x6e\x89\x69\xad\xb9\x2e\xca\x03\x10\x52\xe4\xba\x8b\xac\x56\xd5\x17\x9b\xaf\x28\x57\x05\x50\x82\xe0\xfa\xba\xbd\x05\xde\xe5\x55\x05\x4a\x2a\xab\x77\xd4\xeb\x6e\xe4\x90\x38\x3e\x99\x0e\x46\xcc\x24\x19\xc6\xb5\xb0\x22\x0a\x23\xa4\xc2\x50\xc5\xe1\x52\xe9\x3a\x55\x57\xa9\x80\x55\x68\xc3\xde\xec\xf7\x27\x73\x0a\x33\x89\xc3\x74\x73\xea\x10\x84\x89\x89\xac\xa7\xa7\xd2\x11\xe6\xfe\xd8\xa9\xce\x5c\xe9\x69\xaa\x72\xf3\x73\x78\x51\x38\x79\x94\xc8\x8e\x00\x4c\xec\x78\xaa\xf3\x69\x90\x77\xa8\x64\xde\xd4\x36\x76\x03\x27\x0c\x22\x24\xe8\xd2\x21\xc2\xa7\xdb\x92\x92\x6a\xe2\xa2\x76\xf2\xc6\x25\xed\x64\x7d\x3d\x73\x58\x16\xf5\x86\x88\x98\x81\x33\xf3\x03\x3c\x59\xa7\x1b\x14\x3d\x73\x44\x2e\xda\x2b\x75\x13\xb7\x79\x90\x0b\x11\xeb\xc2\x62\xd1\x12\xec\xd8\xcd\x60\xac\x37\x2d\x05\x0b\xdb\x73\x8b\x52\x5c\x72\xdd\xf6\xea\x75\xb3\xe1\xba\x6e\xc4\x11\xdf\x33\x3d\x27\x88\x22\x94\x5c\xa2\x47\x3a\x9f\xff\xdf\xff\x2b\x67\x34\x3b\x4c\x51\xd1\xc5\xf4\xec\xab\x86\xdd\xbc\xb6\xac\x96\xe9\x69\x44\x10\x55\x95\x27\x96\x65\x7b\xa5\x62\xcf\x24\xc6\x74\x53\x27\xb4\x0b\x55\x65\x30\x22\xfc\x16\x11\x5b\x56\xca\xd9\x06\x5f\x27\x74\xf9\x7a\x03\x82\x12\x6c\x5a\x69\xe9\xdb\x79\x63\x4d\xac\x8d\xdc\x1a\xe3\x1d\x5f\xba\x3c\x4a\x2b\x2f\x38\x16\x4a\xde\x92\x17\xd0\x15\x62\x42\x0e\xf1\x92\x21\x22\x36\x2e\x99\x1d\x3a\x2d\x64\xaf\xd9\xaa\x94\xb5\xb7\xae\xa5\xcb\xfc\x82\x11\xb5\x5c\xd7\x35\x19\x2c\xf0\x26\x85\x08\x2f\x65\x44\xac\x11\x70\xfa\x97\xc5\x7d\xd3\x69\x1b\xc8\x49\x10\x25\x41\xff\x12\xd0\x5d\x73\x5d\x2c\xbe\x02\x65\xdb\x50\x8a\x35\x62\x26\x6e\x60\x47\xc5\xfe\x38\x93\x78\x52\x7e\xb0\x52\xcd\x34\x22\x4a\x4f\x49\x49\x6d\xce\x47\xed\x28\x3b\xf2\x57\xc1\x48\x2c\xcb\x4e\x2a\xae\xa2\x57\x3d\xf2\x44\x2b\xd5\x5f\x78\x92\x81\xe1\xc8\x16\xfa\x0a\xa7\xce\x76\xb1\xdb\xd3\x88\x75\x1c\x95\x8e\xdc\x4a\x92\x30\xb2\xc0\xe5\xfd\x27\x11\x11\x51\x2f\x96\x1c\x8c\x91\x58\x9a\xff\x3b\x9f\x3e\xe5\xc2\x60\x26\x97\x74\x03\xc3\x9c\xba\x37\x9a\xad\xf2\x03\xf6\xf2\xc5\x2a\xac\x1e\x6d\xe4\x4c\x12\x44\x71\x3c\x60\x97\xfb\xf0\x0a\x93\x78\x72\x24\xae\xb5\x3f\x26\xf1\xc4\x1b\xc2\x2d\x91\x29\xf9\x48\x41\xa4\x9b\x8b\x35\x57\xd1\xa6\x58\xa2\x32\xc2\x8d\x38\xd1\x0e\x11\x91\xc0\x4c\x3d\x96\x07\x5b\xed\x01\xee\xc6\x61\xe8\x4d\x30\xf2\x45\x84\x0a\xba\xd5\x94\x9c\xaa\x9d\x01\xfb\x45\x8f\x33\x5e\x34\x18\xc5\x09\xa5\x20\x4b\x68\x39\xe5\x48\xc2\x26\xaf\x34\xca\x5b\x55\xea\x3c\x3d\xad\x21\x36\x44\x00\x41\x69\x36\x67\xa9\xd8\xaf\x65\x95\xc4\xb5\x97\xac\x67\x78\x09\x32\xa2\x69\x18\x8a\xf0\x3f\xc4\x9d\x47\xb1\x8f\x5a\x6a\x53\x76\x7c\x7b\x8b\x11\x91\xef\xce\xe0\x31\xb5\x03\x59\x56\xc2\xcb\x8a\xc2\x2b\x5e\x92\x22\x6f\x12\x87\x16\x86\xe8\x4e\x5e\x82\x84\xba\xe0\x63\x8c\x03\xa6\xba\x85\xcf\x56\x9d\x42\x71\x0e\xce\xba\x9f\x4e\x7a\xa7\x97\x5f\x3e\x9e\x5d\x1c\x5d\x1e\x9d\x9d\x7e\xf9\x78\xde\xeb\xf6\x0e\x8e\x4e\x0f\x9f\x9e\x18\x20\x88\x44\x42\x7f\xd4\xeb\xc4\x61\xad\xbe\x0d\xf8\x0f\xab\x5e\x37\xaf\x88\x1d\x5c\xbb\x57\x81\x4d\xae\x2d\x7b\x49\xdb\x65\x4b\xd0\xaa\x9b\x15\xa8\x74\xcf\x4e\x2f\x3b\x47\xa7\xbd\x83\x2f\xfb\x7f\x3e\x55\x94\x79\x77\x76\x7c\x7c\xf6\xf9\xe8\xf4\x90\xa2\x22\xc6\xb4\x74\xa5\x83\x85\x00\x85\x42\x9f\xc4\xf0\x35\x52\xa9\x2b\x28\xa7\x1e\xd6\x21\x4b\x27\xd9\x92\x5d\x91\x3b\xda\x6d\x34\x2d\x1e\xae\x29\x58\x3c\x12\xf8\xe7\xba\x2d\x67\x89\x76\x5b\x90\x07\x16\xbd\xc2\xaa\x84\xb0\x27\x24\xa8\xbd\xa5\x9d\x0d\xca\x3a\x9b\xb8\x26\xa7\x3e\x01\x9e\xa4\xf4\x80\x24\x65\x05\x23\x88\x30\xf1\xa2\x01\x8a\x6f\x0d\x2a\x9d\xed\xa9\xc6\x90\x2d\xc4\x03\xf7\x80\x1f\xda\x51\x44\xcc\x60\x6f\x99\x60\x60\x37\x1b\xd6\x46\x13\x06\x11\x9f\x7a\xa7\x26\x16\x18\xe5\xa3\xa3\x24\xf1\x83\x11\x60\x23\x88\xee\xbd\x30\xf0\x1d\xe3\xdc\x1b\xa0\xec\xa6\x77\x8f\x82\xa2\x4b\x4e\x76\xa4\x20\xff\x81\x70\xcb\x96\x7c\x52\xd1\x06\xb7\xfe\xa5\xed\x50\x58\xd5\x8d\xb0\x08\x43\xe4\x4d\x22\xc6\x3b\xb9\x22\xd7\xad\x44\x23\x8c\xf5\x66\x76\x39\x93\x97\xd8\x07\x71\x88\xeb\x75\x73\x7d\x1d\xdb\x91\xdb\xb0\xec\x79\x12\x3f\xb4\xb0\xcd\xda\x6f\x45\x69\x6a\x47\x6e\x62\x12\xcb\x8e\xdd\x84\x23\x1d\xd5\xeb\x31\x70\xdb\x88\x9e\x0e\xde\x82\x73\xec\xd3\x13\x3c\xb8\xae\x0b\x8f\xf5\x7a\xc4\x9d\x68\xdf\xba\xc2\x9d\xb6\x44\x0b\xc6\x87\xd0\x48\xd8\xb9\xbd\xa0\xe2\x62\x27\x7b\x53\xc0\xb2\xa1\x0d\xdb\x84\x26\x36\xe0\xc1\xfa\xb5\xa4\x3f\x1b\xa2\xc2\xba\x6c\x3b\x4d\x73\x4a\x2b\x71\x1c\x5a\x75\x23\xfd\x59\xf9\x47\xd1\xd0\x97\xad\x05\xca\x25\x12\x24\x8e\x1d\xff\x65\x54\xf8\x10\xf5\xaa\x6a\x58\xde\xa2\xb6\xb5\x44\xf6\xac\x10\x7b\x4b\x24\xaa\xff\x2c\x1d\x7a\xba\x78\xd8\xf2\x62\xe2\x0f\x29\xc7\xb3\x50\x91\x8b\xae\x86\x02\x82\xc6\x74\x59\xd3\x53\xd0\xcd\x51\xe4\xa3\x47\x77\xa3\x59\x40\x5e\xc1\x1d\x59\x36\x4a\xab\xfa\x95\x85\x31\xd4\xb5\x73\xbe\x2c\xe3\x0c\x30\x76\x06\x28\x0c\x9d\x11\x0a\x86\x23\xa9\x20\xa8\x50\x3e\x61\x32\xa3\xec\x29\xf0\xc9\xc8\x95\x67\xa6\xc5\xb0\xc1\x81\x84\x55\x49\x27\x8f\x7f\x55\xaa\xad\xe4\x59\x54\x23\x77\x21\x34\x69\xeb\xb6\x4c\x3b\xf1\xbc\xcb\xaf\xb2\x91\x2c\x25\xfe\x34\xad\x1a\xf6\x39\xe2\xa3\xc1\x06\x6e\xd5\xe1\xc8\x86\x9a\x8e\x46\x9a\xb6\x2b\xae\x89\x7d\x17\x9b\x57\x89\xd9\xb4\x07\xce\xd1\x51\xc4\xad\x79\x28\xd7\xe7\x80\x2d\x3b\x31\xb7\xec\x91\x73\xd4\x2d\x50\x23\xfd\xb4\x4d\x3f\x9d\xab\x98\x58\xd7\xb6\x6f\xa5\xf6\xf6\x8b\xe6\x4e\x31\x02\x6b\xa0\x45\xcc\x4c\xd0\x24\xf4\x06\xc8\xdc\xec\xf7\x93\xbd\x7e\x3f\xda\x1c\x82\xc6\x2d\xa1\x07\x78\x59\x05\x6b\xb7\xf3\xf4\x20\xdd\x9f\x36\x1a\xcd\x9b\xab\xad\x46\xe3\x7f\xf5\x6b\xeb\x68\x5d\x79\xd3\xfc\x5f\xfd\x5a\x0b\x65\x95\x13\x1e\xf8\x32\xb2\xe6\xc8\xc5\x26\x72\x29\x02\x36\xf8\x9e\x70\x53\xbb\x13\x2a\x2d\x39\x37\x89\x37\xb8\x43\x04\xf9\x1f\x3d\xcc\xde\xd5\xeb\x6b\x8d\x35\xd7\x8d\x9c\xc4\x7b\x38\xe3\x51\x37\x83\x61\x04\x83\x90\x2f\x4b\x21\x92\x24\x18\x0e\x51\x72\xe0\x11\x0f\xb8\x87\x89\xec\xb5\x06\x15\x16\xc1\x1c\x00\xb4\x12\xa9\x1a\x88\x96\x19\x7f\x68\xb1\xf8\x80\xa3\x04\xd1\xb0\x1b\x06\x28\x22\xe7\x60\x82\x69\x27\x2e\x72\x06\xf0\xe2\x8f\x0d\x4a\xc2\xb7\x64\xa3\xd9\xb0\x23\xf9\xf6\xcf\x0d\xec\x90\x78\xb2\xd1\x6c\xb4\x89\xb6\x6c\xfa\xb5\xad\xc6\xe4\x91\x32\x2d\x9d\x7e\x0a\xef\x29\x4c\x4a\x55\x09\x5b\x36\xfc\x2d\x89\x27\xf4\x65\xa4\xbd\xfc\xce\x38\x45\xbf\xd6\x6c\x34\x1a\x00\x82\x9f\xab\x7e\x2c\x9a\x2c\x58\xa3\x75\xc3\x60\x70\xc7\x83\x62\xb8\xc4\xa1\xec\x9c\x4a\x58\x9d\x04\x79\x9f\x28\x59\x9d\xc4\x53\x8c\xba\xe0\xa8\xc9\x42\xf4\x12\xe4\x12\x87\xad\x53\x98\x01\x18\x6e\x97\x38\x83\x78\x32\xcb\xe0\xf0\x19\xa5\xa0\xde\xc5\xc9\x47\x5e\x6d\x92\x20\x2a\xb7\xf1\xb7\xe2\xd2\x2b\x8b\x5b\x5b\xf1\x3d\xb0\xcb\x01\x62\x5b\x6f\x56\x37\x28\x81\x29\x9a\xdc\xc4\x5e\xe2\x53\xb2\xa8\xd7\x73\x2f\x28\x83\x06\x9f\x8c\x7e\x8d\xca\xb2\x9b\x93\xd0\x63\xd7\x67\x8e\xbc\x64\xa0\xad\x95\x1d\x5a\x53\xbb\x64\x08\x8a\xc6\x42\xec\x68\xab\x9d\x68\xed\x02\x56\x89\x99\xc7\x6b\x58\x8a\x97\xc5\xa1\xd2\xb6\xd9\x34\x24\xf6\x92\xf9\x8a\x4a\x27\x39\x8f\xa7\x9d\x58\x73\xb1\x22\xec\xa4\x5e\xc7\x4a\x1d\x76\x6c\x05\xe5\x07\x5f\x49\x58\x1f\x1d\x39\x5a\xa6\x95\xa6\xf6\xcb\xad\xed\xd7\x2d\x0e\xca\x7d\x3b\xff\x21\xaa\xec\xc6\x61\x9c\x80\x06\xdc\xc3\xa4\xeb\x0d\x46\x48\x37\xd8\xc1\x6e\x60\x36\x77\x1b\xbb\x56\xbb\xb4\x6c\x31\x0e\xa1\x54\xb6\xd3\xc2\x60\x0c\x83\x9d\xcb\x87\xf8\x03\x9a\x65\x06\x31\x03\x8c\xf3\x5f\x52\x8c\x48\x17\x63\xc1\x2a\x64\x39\xd0\xe8\xb2\x97\xe9\x50\x16\xc9\x38\xa4\x2c\x37\x64\xe5\x2c\x00\x44\xdb\xce\x81\xa2\xaf\xf2\xc0\x44\xb1\x3c\x38\x28\x2b\x01\x72\xcf\x14\x0d\x10\x7f\x97\xf5\x47\xbc\x49\x53\xba\x1b\xec\x66\xf1\xb8\x7f\x68\x56\xaa\x2e\xe7\xb2\xb5\x5b\x59\xa2\x6c\x5d\x14\x84\x3c\x6e\xaa\xc6\x2e\x0b\xd6\xc4\x19\x66\xce\xfd\x61\x5a\x70\x5f\x96\x3c\x3d\x99\x89\xbb\xd6\xb0\x51\xa9\x84\xce\x40\xd0\xfe\xa6\xf6\xf6\xee\x6e\xf3\xdf\xa6\x7e\xff\xad\x4c\xfd\x8e\x83\xe8\x2e\xb8\x0d\xca\xec\xfb\xc0\x5c\x0f\xec\xfb\x5e\xed\xbc\x68\xe4\xec\xfb\x98\x55\xdf\x40\x58\xfa\x01\x09\x86\xae\x0a\x6f\x81\x29\xdf\x10\x11\x63\x30\x4d\x12\xa0\xc3\xe8\xce\xcc\xaf\xdb\xec\x53\x5a\x62\xf5\x47\x39\xaf\x6e\xf7\xc7\xed\x3c\xa4\xd9\xdf\x98\x72\x73\x61\xda\x47\x4a\x0d\xfe\xc4\x9d\x00\xbb\xc9\xc8\x9b\x01\xaa\x71\x49\xc5\xb7\x44\xf9\x06\x4c\x33\xeb\x10\xce\xec\xfd\x02\x0c\x5b\xc9\xd9\x94\xd0\x25\xc7\xde\x3d\x78\x98\xc9\xe6\xbe\xbb\xd6\x94\x76\x26\x24\xb8\x47\xc7\x41\x84\xb2\x23\x4c\x1c\x5d\x8c\xe2\x07\xda\x6d\xd8\x93\x42\xfa\x51\xbf\x14\x67\x46\x37\xb0\x80\x7b\xe3\x80\x10\x79\x76\xab\xac\x5a\x06\xd4\x81\x6d\x59\x36\xfa\x9e\x87\xa1\xff\x81\x46\x2b\xaa\x96\x01\x55\x1b\xd5\x2f\xf9\xe9\xc6\xcd\x18\x56\x27\x49\xbc\x99\x7a\xe3\x5f\x3d\xe2\x65\xc6\x10\x8b\xec\x05\x42\x0f\x13\x98\x19\x26\x75\x08\xfe\xab\xcc\x85\x98\xef\x73\x34\x09\x03\x84\xf7\xe4\x4e\x50\x65\x08\xa1\x91\x8e\x62\x03\xa4\xb4\x0a\x20\xba\x2a\xa5\x97\x90\x44\xa3\xa4\x05\xb3\x61\x47\x0b\x4c\x3b\x34\xb2\xb7\xfb\x35\x20\x78\x88\xd5\x2f\x4c\x3b\xe6\xd5\xe4\x58\x44\xea\x6f\x42\x80\x6e\x2e\x52\xdf\xc0\x04\x3d\x68\xfd\x24\xbe\x47\xba\x15\xd8\xcf\xb7\xe5\xc7\x0f\x51\x59\x5b\x07\xf1\x43\xf4\x77\xb7\x35\x9d\x94\xb5\xf4\x69\xa2\xb5\x93\xe6\x7b\xac\x58\x87\xe8\xb4\x87\x64\x38\x6c\xf6\x79\xc2\x55\xcf\xef\x92\x78\x9c\x15\x93\x89\x1f\x04\x32\x45\xd6\xc6\xf4\xa3\x44\x68\x85\x8b\x33\xde\x6c\x67\xf7\xc6\x83\x78\x4c\x97\x98\xff\xd1\x23\x23\x33\xaf\x10\x08\xa4\x56\x2d\xb3\x34\x20\x6e\x70\x85\x40\x63\x4e\x14\x4b\x45\xa9\x92\xe6\x16\xb8\xfd\x9a\x65\xb1\x60\x61\x4b\x0a\x6e\x40\xf6\x07\x5a\x9c\xa1\x9b\x66\x63\xb3\x0f\x0b\xa9\x8b\xc2\xb0\x5e\x27\xce\x63\x66\x93\xa2\x7d\x73\x1e\xe9\xd7\x59\xd5\xd7\xd9\xd3\x93\xa9\xce\xd1\x7b\x96\x6c\x42\x1a\x34\x6a\xa5\x5d\x22\xe7\x8b\x95\x43\x8a\x36\x28\x63\xcd\x6b\xae\x8b\x28\xe0\xfc\x9a\xb5\xf4\xed\xaa\x6a\x91\x7b\xf8\xee\x5d\x9c\xf0\x4c\x16\x6b\x4d\xcb\x56\xae\xc4\xb4\x3d\x41\x28\xfb\x94\x8d\x4f\x88\x02\x94\xf7\x75\xf2\xf7\x34\x4a\x39\x87\x16\xb0\x91\x25\x7b\xbf\x22\x36\x0d\xc8\x0a\xa2\xbe\x52\xb4\x5b\x25\xec\xb0\x5e\x27\xb2\x89\x0a\x7e\x29\x3d\xce\x91\xfb\x76\x8e\xf2\xcf\x80\xa8\xf0\xd4\xa6\xa7\x4a\xf5\x19\x58\x50\x6a\x59\x8b\x18\x32\x9c\x34\xb2\xb3\x87\xb2\x81\x22\x67\xc6\x04\x90\x80\x92\x3c\xa5\x6c\x96\x83\x03\xdb\xc9\x35\x77\xe4\x2b\xdd\xd2\x1d\xf5\x1d\x76\x50\x44\x92\x00\x61\xd3\xb2\x28\x29\x64\xcb\x60\x61\xa7\xe9\xe9\x02\x5b\x6d\x02\xb7\x3d\x7c\x06\x46\x68\x70\xa7\x46\x46\x3f\x47\x98\x9e\x7f\xb1\x8d\xa8\x78\xc8\xc2\xc9\x27\x8e\x9e\x00\xc6\x99\xd9\x26\x51\x53\xab\x64\xeb\x38\x7f\xeb\x43\xf6\xb2\xac\x2d\x73\x88\x02\x85\x28\x03\x6f\x2f\xc4\x93\x9e\x98\xa8\xe4\x64\xaf\x86\xe5\xe2\x9d\x91\xd2\xad\x62\x39\xb6\x6c\x60\x85\xbd\x8c\x90\xc3\xe8\x3e\x01\x11\x01\x31\x3d\x11\x47\xc3\x6c\x08\x16\xb4\x0a\x14\x52\x5d\x59\x35\x92\xa1\x84\x72\x81\x88\xe4\x71\xd8\x6d\xb4\xf1\x1b\x02\x68\xb7\x71\xc6\xe1\x12\x97\x88\xf9\x0b\x6e\xcd\xc4\xd2\xcd\x00\xc5\x75\x11\x58\x03\x4a\x9d\x57\x72\x45\xae\xed\xc8\xc5\x8c\x7c\xe1\x56\x86\x59\xe5\x3a\xb3\x37\x68\xaf\xd1\x2a\xf9\xf0\x68\xc7\x7a\x79\x14\xf9\xce\xec\x2d\xda\x2b\x13\x23\x06\x71\x88\x5b\x85\xd2\x8f\x0a\xbf\x8e\xda\xe8\x8d\x1b\x33\x4e\x0d\xd7\x99\x23\x0f\x43\xfe\x94\xc4\xc1\x13\xb8\xd2\x22\x1b\x1b\x76\xd3\x6a\x03\x5b\x4e\x03\x30\x2e\x47\x70\xc0\xab\x9c\x74\x7e\xd4\x83\xed\x64\xc1\x14\x70\xb6\x17\xe4\x6e\x5b\x4b\x0b\xb3\x73\xb7\x72\x36\xad\x36\xb2\x2c\xaf\x4f\xbb\x45\xac\x7a\x7d\x11\x46\xd0\x08\xb1\xf8\x09\x97\xdf\x17\xd6\xeb\x38\xbb\x94\xc0\xce\x2d\xdd\xa4\x33\xab\xdf\x1c\x43\x65\xb4\x6a\x13\xba\x80\x10\x2c\x62\x29\x27\xb1\xfd\xe1\x14\x3d\x30\x06\xc9\x52\x7c\x2c\x42\xe6\x07\x97\xc5\x5a\x60\x95\xa9\xe7\xab\xdb\x50\x77\xe9\x55\xe6\x60\xef\x19\x63\x10\xdc\x9a\xd8\x9a\x57\x8e\x02\x16\x64\x25\xf2\x03\x05\x69\x5e\xfa\x92\x1a\x96\xb1\x78\x43\x6b\xba\xc5\xa3\x9d\x2e\x4c\xf1\x2d\x78\xad\x50\x4e\x67\x7f\x7f\x83\xd0\x44\x04\x27\xd2\x11\x74\x8b\x28\x3e\x6f\x13\x26\xd2\x88\x25\xff\xc9\xc9\x52\x75\xd8\x15\x25\x08\x7a\x24\xc2\x7c\x56\xdd\xbd\x95\x7d\xb9\x0c\x31\x4d\xb2\xac\xd7\xcd\x35\xf4\xf4\xb4\x46\xa4\xdd\x6b\xbe\x15\x8d\x5f\xbd\x75\x51\x25\xc2\x0a\xa3\x7a\xe3\x82\x35\x49\x36\x12\xc7\xf4\x9c\x61\x96\x8d\x73\x71\x48\x4a\xb0\xb4\x8a\x85\xc5\x71\x0c\xce\x70\xbe\x72\x16\x5c\x7c\x02\x4c\x0b\x4b\x54\xa1\xa0\x5c\xa3\xcf\x21\xa2\x32\x00\xcf\xa1\xab\xaa\xe5\x95\x99\x73\x2b\x5d\x2f\xa3\x08\x4c\x3c\x82\xdc\x39\x57\x54\x81\x6f\xfc\x7c\x2a\x0e\xd2\x2d\x36\x58\x2c\xb3\x11\xc8\x50\x59\xb1\xa7\xa7\xe2\x3b\x47\xd6\xb4\x27\x31\xe4\x2b\x60\x7a\xee\x67\xc3\xd1\x6a\xa7\x76\x80\x41\x74\x46\x7e\x6b\xad\x91\x2a\xba\x11\x2e\x78\x6b\xc3\x85\x16\x91\x43\xb1\x29\x77\x9e\xda\x65\xda\x2c\x2a\x9d\x15\x4b\xdb\x73\xbd\x5f\xf3\x21\x22\x2d\xc5\x47\x23\x1b\xd8\x3d\x36\xb2\x7b\xd5\xdd\xb2\xc1\x74\x2b\x3b\xbf\x17\xea\x96\xad\x18\xf8\x50\x0d\x53\xb7\xe4\x5f\xbd\x5e\x35\x69\x38\x72\xec\x05\x3a\xc2\xd3\x29\x3b\x7f\x91\x78\x38\x0c\x91\x3c\x7d\xb1\xa0\xa1\x1b\xbc\x01\x30\xf2\xb4\xd2\xd4\xce\xa8\xea\x99\xa3\x96\x11\x15\x18\x1e\x3d\x6f\xc4\x16\x43\x5c\x73\x5d\xb2\xe2\x78\x4d\x33\xbd\xd3\xea\x63\x75\x1b\x24\x48\xaa\xa5\xf8\xb6\x21\x77\xc0\x34\x4d\xad\x05\x8a\x3e\x66\xd5\x2a\x04\x59\xdd\xa7\x87\x5d\x28\x23\xff\xf7\x00\x3d\x4c\xe2\x84\x08\x87\x18\xc4\xc4\xfa\xe5\x3b\x1b\x5b\x8b\xc0\x9d\xf7\x1a\x2d\xfe\x6b\xbd\xb9\x5e\x26\x27\x72\x0b\x6c\x30\xdd\x97\x32\x7d\x75\x91\xf5\xe6\x3a\xb0\xf3\xcc\xe3\x74\xd9\xde\x40\x56\xdb\x1b\x82\x6c\xa6\xf2\x5b\x17\xc9\xce\x11\xb9\x25\x9f\xb7\x19\xf9\x7b\xf9\xb0\xa4\xb8\xfc\xf9\x3b\xa5\xc7\x24\x2b\x55\xb8\x94\x7e\xb5\x54\x42\xba\x95\x54\x28\xa9\x4a\xd1\xab\xad\x46\xaa\x0b\xc8\x90\xb0\xdb\xf7\xe7\x32\x0a\x76\x47\x5b\xe6\x1e\x9d\x5f\xf5\xf4\x84\xcd\xd2\x70\xd6\xeb\xfc\x87\x19\xd8\x44\x48\x1f\x65\x2b\x43\xf7\x3e\x80\xb9\x97\xce\x07\x0b\x48\x32\xd1\x2c\xae\x34\x4d\x30\x03\x1c\x88\xd3\xd1\x46\xd3\x16\xbf\x67\x1b\x18\x9e\xe0\xc8\xc3\xff\xb2\x77\x6c\xaf\xb2\xda\x26\xe1\xa7\xa6\x12\xb5\x76\x4b\x7c\x29\xe8\x9e\x2d\x87\xf6\xcc\x4c\xf8\xdc\x33\x01\xe6\x6f\x99\xfb\xe6\xdf\x39\xf7\xcd\x9f\x9e\x7b\xee\xfe\xb6\x70\xfa\x41\x4d\x4c\xa7\x1f\x7e\xa8\xd3\x9f\x97\x5b\x4a\xa6\x5e\x4c\xd4\xaf\x55\x67\xd7\x75\x94\x3b\xfb\x62\x59\x15\x66\x73\x79\x45\x36\xf9\xf4\x6c\xbe\xa0\x30\x71\x1e\xc5\x15\x5b\xf0\xc6\x4d\xea\xf5\xe4\x8d\x8b\xd3\x05\xa7\x82\x82\xdd\x4a\x37\x8e\x13\x1f\x2b\xfe\x5c\xc5\x56\x4a\x3f\x30\x7b\x2a\x38\x26\xf1\xdb\xd6\xc7\x16\x18\x2e\xcf\x5a\xf8\xaa\x79\xbd\x94\x59\xa7\x69\xf5\x9a\x50\x2e\xb8\x04\xec\x66\x0b\xd9\xb3\x66\x8b\xd8\x8f\x5b\xad\xc0\x9e\x6d\x31\xc3\x53\xdc\xaa\xc4\xf9\x76\xd8\x4a\x52\xb0\x9c\xca\xae\xe2\x42\xc5\x5c\xea\x44\xe5\x95\x60\x26\x35\xc8\xdb\x42\x09\x0b\xa9\x7d\x15\x3a\x7d\xbb\x43\xcb\x1e\x17\x0f\xb6\xd6\xb5\x1d\x5a\xa9\xfd\xba\xb1\xb3\xf5\x73\xf7\xe5\x9a\x3f\x21\x58\xbe\xc4\xe3\x09\x39\xf6\x6e\x90\x66\xee\x92\xbd\xec\xd7\x64\x46\x00\x88\x38\x0a\x86\x28\x3a\x94\x7e\xed\x32\x8e\x8d\xf1\x74\x30\xe2\x51\x7f\x59\xfc\x2f\xee\x8e\x65\xf0\x68\xed\x88\xbe\x85\x38\xc1\x63\x2f\x9a\x7a\x61\x38\x83\x17\xc8\xf3\xfb\xb5\xd4\xde\x7e\xb9\xdd\xf8\xf7\xc5\xf8\x7f\xab\x8b\xf1\x33\x3c\x28\xc9\x12\xae\x5c\x8f\xef\x36\x9b\xec\x76\x1c\xae\xc2\x41\xcf\xe5\xb9\xc5\x7a\xe5\x49\xc4\xe5\xc6\xa3\xdf\x3f\xe7\x92\x7c\xe6\xaf\xb0\x63\x06\x5b\xde\x61\x57\x26\x11\x5f\x28\x10\x66\xee\xa3\x68\xa3\xc9\x74\x66\x81\xe6\x3d\x43\x4c\xb1\xdd\x0a\x8e\x79\x75\x2d\x37\x74\x1d\x35\xd5\xd0\x10\xc4\x2a\x9e\xec\x33\x06\x25\x6c\xe4\x74\x51\x18\x1e\x78\xc4\xb3\x3d\xc6\x75\x2f\x13\x88\xc4\x79\x0c\x64\xc4\x73\x07\x0f\xdc\x8d\xa6\x1d\xd2\xff\xfc\xa2\x9e\xd0\x03\x3d\x21\x64\xc2\x5e\x73\xdd\xf0\xe9\x09\xf4\x9d\xdc\x83\xc2\xa4\xa2\x24\xe8\x40\xc3\xd8\xf3\x21\x49\x2f\x01\xba\xa1\x65\x7a\x60\x79\x80\xfc\x0e\x21\x09\x36\xad\x7a\x3d\x76\x10\x7f\xe5\x4c\x93\xf0\xc8\x87\xaa\x3c\x91\xf6\x3c\x74\x89\x3d\x70\xf3\x45\xda\x22\xc1\x76\xea\x17\xbe\xad\xb9\xee\x00\x74\xf9\x0c\xb3\x7a\xdd\xf4\x85\x0e\xd2\x7f\x7a\x12\x2f\x89\xeb\xba\xde\x46\x33\x3f\x31\xfa\x4c\xf2\x14\xc4\x77\x60\xbf\x36\xb0\xf6\x9c\x69\x12\x80\x97\x45\x96\xc2\x36\x4b\xec\x1d\x42\x62\x6f\x24\xd3\x7a\x93\x75\xda\x1e\x59\x83\x76\xf6\x1a\xad\xa6\x05\x9f\x53\x18\xdb\x98\x8e\x28\x68\x45\xf7\x1c\x2f\x0c\xe3\x87\xd3\x38\x7a\x4f\xc8\xe4\xa3\xc8\x8a\x6a\x91\x64\x96\x65\xde\x46\x0f\xc6\xa7\xf3\x63\x33\xb0\xda\x57\xfd\xda\x88\x90\x49\x0b\x6c\xaf\x59\x04\x46\x96\xe3\x02\x22\xeb\xd1\x63\xb8\x48\xac\x6a\x3d\x3d\x99\x31\xed\x79\x96\xaf\x9f\x3e\xa6\xf1\xd3\x13\x3f\x2e\xcd\x21\xbf\x78\x60\xb3\x74\xe3\x51\x96\x67\x9c\xef\x15\xc9\x5e\xa2\x69\xc8\xec\xc8\x6a\x8d\xcc\x86\x4d\x2c\x1b\x44\xd4\xac\x1c\x13\x59\xf7\x1c\x5e\xca\x06\x11\x46\xf9\x0c\xcf\xf2\x73\x6a\xa5\x20\xa2\xad\x46\x0e\x7b\x66\x39\x0d\x58\x2d\x13\x88\x93\x92\xa9\x95\xa6\xc4\xc4\x94\xa7\x48\xab\xd8\x91\x8c\x14\x37\x88\xa3\xdb\x20\x19\x9b\x7f\x1d\xc4\xc6\x2c\x9e\x1a\x0f\x1e\x8b\xe7\xab\xee\x30\xbf\xcc\x49\xba\xd7\xef\x47\xfd\x7e\xf4\xb9\x73\x7e\x7a\x74\x7a\xd8\x32\x2e\x47\x01\x66\x79\x84\x59\xd6\xe0\x49\x4c\x69\x3b\x80\x3d\xe8\x06\x19\x3e\x1d\xb5\x24\x9e\xe2\xbf\x94\x73\x53\x21\xa3\x31\x62\x19\x8d\x51\x59\x46\x63\xf4\xaf\xcc\x68\x9c\x16\x59\x9e\xc7\xc4\x8d\x86\x1d\x97\xc8\x10\x74\x3a\x8e\xce\x34\x26\xc2\xc4\x10\xfa\x5a\x5b\x15\xd6\xb5\xed\x59\xa9\xfd\xa2\xf9\x7a\xfb\xe7\xa4\x0a\x26\xdd\x64\x81\x6c\xa4\x24\x91\xff\x50\xca\xab\x2d\xcd\x72\xbd\xcb\xc3\x77\x2f\x0a\x31\x46\x74\x97\x04\x51\x85\xb2\xd1\x42\x06\x64\x4f\x4b\xeb\x90\x1d\x3a\x8a\x5e\x14\x7c\xca\x07\x5e\x34\x40\x61\x2e\x1b\x44\x19\x2c\x79\x87\xa7\xbd\xe5\x9d\xb7\x52\xcf\xf7\xcf\x75\xfc\x14\x2b\xf7\x72\xfc\x73\x2e\xbd\x3a\xe0\xec\x76\x58\x6f\x6f\x59\x7f\x2a\xd2\x5b\x64\x9a\x28\x08\x2e\xc0\x51\x55\x83\x87\xe8\xed\xa4\x6a\x80\x86\x40\x71\x5d\x62\x81\x24\x02\x5b\xf4\x7c\xcd\x75\xd1\x1e\x6a\x35\x6c\x92\xbd\x20\x7b\xa4\xa5\x57\xc8\xdc\x4a\xe2\x87\x0b\xca\x79\x95\xc2\xda\xfb\xbd\x13\x8f\x8c\x9c\x71\xa0\xb8\x50\x5e\xb0\x20\x3d\x56\x0b\x29\xee\x1c\x91\x5f\x02\xa1\x17\xf9\xbc\xbe\xf7\x68\xaa\x6f\x6d\x62\xb5\xc8\x7f\xf2\x30\xa7\xb9\x57\x8a\x81\x44\x19\x45\xd9\x52\x9d\xac\x0f\xc4\xd3\x53\xf1\x43\x2f\xf2\xcb\x5e\xc3\xc8\xeb\x92\x08\xfb\x34\x8d\x72\xa4\x8a\x4d\x4b\x3a\x29\x17\x07\x90\x4d\x40\xc3\xb2\x89\x5b\x9c\x1d\x18\xdd\xdc\x5c\x2b\xce\x56\xea\x64\x97\x4d\x9f\x5d\xc6\x0c\x80\x4d\xd8\x0b\x90\x4d\xcb\x5f\xcf\xa5\xad\x82\x81\x0c\x69\xa9\x90\x5f\x76\x16\x32\x1b\x12\xc3\x12\x96\x92\xa6\xf6\xf6\xd6\xf6\x8b\x9f\xb5\x20\xcf\xf9\x15\x28\x76\xe3\xdb\x2f\x9a\x3b\x96\x9d\x48\x93\x50\x30\x0e\xdd\xdd\xe5\xe2\x2f\x0b\x03\xe9\xd1\x77\x2f\xb7\x1b\xcc\x3a\xb4\xf9\xe2\x55\x83\x59\x87\x6e\x37\x1b\x2f\x59\xf4\xc7\xdd\x97\x3b\x3b\x96\xed\x53\x81\xf9\xf5\x6e\xc3\xb2\xbf\xd0\x72\x5b\xaf\x5f\x58\xf6\xd4\x0d\xcc\x9d\xad\x57\x96\x7d\x0b\x3f\x5e\xbc\xb6\xec\x7b\x26\x60\xef\x58\xf6\xc4\x0d\xcc\x57\xaf\xb7\x77\x2c\x7b\x48\xc1\x6d\xd1\x26\xc6\xb4\xd9\xed\xe6\x96\x65\x5f\xc8\x50\x93\x5d\x37\x30\x5f\xbc\xdc\x6e\x5a\xf6\x0d\xad\xd1\xd8\xdd\xb5\xec\x07\xa8\x4b\xe1\xcd\xa4\x15\x6b\x4f\x58\xb1\xde\xd1\x0a\xd0\xc4\x31\xbc\xda\x7e\x69\xd9\x07\x4c\x9c\xdf\xb1\xec\x73\x37\x30\x5f\x6e\xbf\x7e\x6d\xd9\x8f\x14\x95\xd7\x3b\x4d\xcb\xee\x40\x6f\x5f\xee\x58\xf6\xbe\xb4\x80\xbd\xa4\x5f\x77\xb6\x77\x2d\xfb\x84\xa2\xb2\xfb\xe2\xa5\x65\x9f\xd1\xba\x2f\x5f\x5b\x6d\x66\x02\xfb\x51\x1a\xc1\x3e\x38\xdd\x38\x91\x09\x62\xc1\x0c\x36\x8e\x58\x94\x8f\x1c\xeb\xe5\xaf\x99\xd1\x64\xca\x0a\x42\xf0\xa9\x42\x39\xfa\x56\x2b\x26\x43\x76\x15\x8a\x8a\x2f\xdc\x8a\xb3\x50\xeb\xd2\xbb\x29\xaf\x74\xe9\xdd\x94\xd5\xf9\x1c\x84\x21\xcb\xd1\x9d\xaf\x24\xbe\xf0\xe2\xda\x8e\xea\xce\x53\x61\xbf\x2b\xb6\x92\x1b\xc6\xb2\x5c\x71\x43\x74\x87\x66\x07\xf1\x43\xc4\x0e\x13\x8a\x96\x8d\xbf\xbf\x40\x28\xd2\x5e\x7e\x4c\x10\xc6\x85\xd2\xd3\x68\x92\xc4\x03\x84\x21\x3a\x9d\xe7\x7f\x40\x33\xd5\xfc\xb6\xc4\xab\x0c\x3e\x69\x66\xaf\x3d\xe7\x64\x4a\xc0\x48\x30\x33\x2b\x95\x76\xb3\x4c\x01\x77\x12\xdf\x97\x19\xcc\xce\xca\x0d\x66\xf3\x75\x34\x30\x39\xbb\x5c\x8a\xf0\xca\x80\x65\x61\x56\x31\x07\x8a\x09\x3a\xab\x43\x53\xcb\xcb\xea\x39\x98\xb9\xe8\x12\xab\x03\x2f\xad\x58\x04\x98\x6b\x0e\xb2\xec\x3c\xb7\xa9\x42\x25\x1d\x50\xae\x89\x7d\xb0\x0c\x5c\x15\x76\x56\x9a\x57\xcd\x41\x83\x05\xbc\x2a\x38\xbe\x90\x9f\x51\x3c\xb7\x98\x9f\x59\x33\x5b\xd1\xcf\xa8\x28\x56\xf5\xca\x55\x78\x6a\x51\xfe\x94\xe9\xb0\xa5\xa0\xcc\x25\x8f\xa2\x03\x27\x77\x13\x3e\xe2\x01\x0c\xcc\x8e\x73\x90\xaf\x2d\xc0\x96\x56\xc7\x88\xf0\x9f\xe6\xbe\x73\x54\xa8\x5b\x85\x91\xb5\xc0\xfe\x7f\x75\x64\xcf\x9c\x32\x1d\xe9\x8a\xe8\x5e\x94\x6a\x58\xab\xf1\x5a\x80\xb2\x9c\x22\x15\xa0\xb9\x7a\x3f\xbc\xfc\xc9\xae\xc2\x10\x1e\x34\xaf\x5c\xf3\x03\xcc\x03\x44\x4d\xba\x24\x54\x01\x93\x2f\x12\xb8\x89\xa9\x0c\x2e\x58\x0e\xea\x5c\x89\xd3\x66\xf2\xa3\x20\xaf\x2d\x85\xfe\x67\x82\xbc\x40\x91\xcf\x76\x5e\x2d\x60\xe1\x24\x4e\x08\xdf\x90\x9f\x8b\x22\x46\x44\x81\xc5\x13\x28\x3d\x0f\x08\x4f\xd8\xc9\x4f\xc7\xe7\x80\x8d\x16\x0b\x94\xbe\xd0\x0b\x2d\x08\x7c\x99\x6b\x83\x79\xc9\x15\xe2\x78\xd2\xb7\xfc\xf6\xa1\x3c\xc4\xe4\xcc\xb9\x8d\x93\x07\x2f\x61\xae\x67\x56\x05\x70\xb9\x89\x95\x6c\x8f\x3f\x0c\x55\x61\xd5\x65\xfb\xc0\x0f\xc3\x15\xbc\xb3\x8a\x99\xfe\x14\xe0\x4b\xef\xa6\x82\xd5\x3e\xd3\x8f\x44\xce\x14\x04\xe7\x92\xa1\x64\xe1\x96\xa7\x32\xa2\xac\xd9\xb0\x7b\x0b\xdc\x60\x06\x53\x4c\xe2\xf1\x07\x34\x83\x5e\x08\xdf\x56\xf5\x68\xc3\x6f\xd6\xf7\x94\x50\x31\x7b\xc5\x80\x15\x22\x6c\xaf\x1a\x4c\x53\x23\xa5\xec\xb4\x48\x46\x68\x2c\x2f\x9c\xb2\x03\x0f\xa1\x07\x1e\x64\xcd\xc1\xec\xd1\x0e\xc0\xd7\xbc\xcd\x32\xe0\x9b\x84\xe5\xd2\xb5\xe6\x90\x61\x7d\x6b\xf7\x45\x0b\xb9\xfd\xda\x6d\x9c\xa0\x61\x12\x4f\x23\xbf\x5f\x83\x0a\xcd\x46\xbf\xc6\xcc\x11\xdb\xbc\xe0\x4b\x28\x48\x4f\x46\x7a\xc1\x66\xbe\xe0\x2b\x28\xc8\xee\x47\x45\xa1\x2d\x59\x48\xe4\xd0\xa2\x65\xbc\x08\x07\xbc\xc4\x4e\xbb\x5f\x5b\xe7\xb8\xa5\x12\x55\x32\x9b\x20\x8e\x69\xa3\x25\x0e\x4d\x37\x0e\xf3\x2f\x25\x31\x8c\xca\xf9\xe1\xbe\x29\x40\xb9\xae\x2b\x4c\x7f\xd5\xa1\x61\x15\xb0\x43\x0b\x5d\xf1\x46\xae\x5b\x95\xe5\x20\xf6\x08\x7c\xa5\x67\x7e\xf1\xad\xe0\xcf\xff\xd7\x2f\xf3\x03\xa7\xdb\x70\x7a\x17\xdd\xf4\xfa\x97\x79\x90\xb6\x7f\x99\x9b\x0d\xfb\xd1\x21\xf1\xf9\xf0\x86\xc5\x7a\xb4\x4c\x6c\xa5\x50\xae\xf9\xa5\x77\xd1\xed\x7c\xec\x1d\x38\x17\x97\xe9\x5f\x96\x3a\x64\xcd\x16\x5c\x36\x65\x5d\xb0\x4a\x50\x63\x29\x68\xa0\xc7\x18\xe8\x17\xe9\xdd\xa1\xc3\x32\xf2\xa2\x08\x85\x58\x8c\x8c\xe9\x38\x0e\x61\x7d\x02\x13\xdc\x2c\xee\x5c\xe0\xa2\xf6\x4a\x6d\x5c\x05\xcb\x01\xa7\xea\xec\x97\x8d\x6a\x82\x30\x89\x13\x46\xc3\x92\xfe\xd2\x34\x15\x32\x0c\x3b\xb1\xe4\x45\x9a\x45\xcb\x09\x0e\x49\x6c\x6d\xe7\x0e\x48\xec\x25\x66\x3a\x6f\x94\xf2\x68\x04\x6c\x85\x12\xf4\x48\xbc\x04\x79\xfc\xc6\x4b\x3c\xf2\x90\x05\x73\xee\x52\xcf\x02\x3b\xc3\xc9\x5d\x06\x7b\x83\xa4\xb4\xe7\xc8\x03\x6f\x76\x1f\xb1\xfd\x81\xdb\x20\x21\x6b\x8e\xf6\xd6\xaa\x8f\x3e\xcc\x4b\x3d\xb3\xd0\x57\x6e\x83\xa5\x4a\xb2\xba\xde\x33\x44\xa3\x93\xd2\x78\x1e\x30\x9a\x96\x08\x69\x5b\xda\x90\x70\xc6\x13\x81\x7b\xb9\xf3\x3e\x0f\x91\xc9\x07\x4f\x5d\x0a\xf9\x60\x19\x58\x6c\xf8\xbc\x97\x0b\x97\x8d\x58\x33\xeb\xfd\xda\xd5\x91\x0c\xa8\x5e\x34\xb2\x63\xb6\x36\x3c\xd0\x8e\x94\x7a\x47\xf1\x03\xdb\xfc\x4c\x4b\x3f\x0d\x70\xe1\x27\xbd\x29\x9e\xe4\xc5\x44\xef\xf1\x64\x8c\xf9\x8e\xf2\xc3\xbf\x4e\x14\x59\x94\x0e\x5b\x13\x87\x14\x2a\x13\x4e\x15\xe2\x89\x63\xf4\x2f\x19\xa9\xb3\x05\x23\x25\x2d\x53\x72\x83\xc5\x15\x18\x7c\x60\xbe\xe0\x59\x34\x10\x5d\x36\x15\x73\x5e\xd1\xe5\xa7\xa7\x35\xb5\x3b\x01\x66\x03\x7d\x14\x09\xa3\x3b\x69\xfa\x0c\xee\x6e\x60\x0c\xf2\x1e\x85\x13\x56\x96\xbd\x8b\x86\x02\x8a\x4e\xe9\xf9\xe8\x87\xda\xb8\xdd\x78\x18\xad\xe7\xc6\x55\x2b\xa1\xdc\xaa\xe6\xfc\xf2\x04\x3b\xd3\x75\x91\xbc\xda\xa3\x98\x8f\x10\x6f\x34\xad\x2c\xac\xeb\x8a\x61\x72\x6c\xee\xc3\xf2\x39\xf0\xc9\xc8\x0c\xac\x2c\x8e\xea\x52\x00\x10\x70\xe5\xd7\xc4\x8e\xf5\x8e\xfe\xfa\x4c\x04\x3c\x37\x58\xb9\x0a\x34\xd9\xd6\x69\x58\x09\xe7\xe2\xad\xf7\x6b\x2c\xc8\x4b\x49\x09\x12\x4f\xdc\x78\x51\x01\x16\x40\x26\x5a\x54\x84\x07\x93\xc1\x8b\xca\xd0\x79\x7c\xbf\x42\x39\x19\x55\x66\x63\xb7\x5f\x4b\xbf\x04\x51\x40\x0e\x21\xab\x92\xbc\xda\xb9\x09\x22\xff\x03\x9a\x95\x86\x36\x4f\x96\xf9\xa0\x66\x2e\xa8\x90\x93\xae\x66\x9b\xd2\x2a\x79\xe4\x61\x25\x2e\x66\xbd\x6e\x36\x6c\xac\x06\x74\xb1\xa4\x97\x81\x8c\x39\x22\x28\x1c\xfc\xc4\x04\x7d\x23\xf7\x2d\x54\xcd\x87\x64\x91\xf5\x45\x8f\x0b\x2c\x83\xab\x40\xf4\x4b\xbc\xf6\xf3\x3b\x29\x1b\xe8\xd7\x20\x36\x0b\x33\x4b\xfe\xa9\xd1\x52\xe1\xdc\x39\x01\x7e\x17\x24\xe8\x36\x7e\xdc\xfb\x19\x98\xaa\xc3\x31\x4c\xc3\x16\x18\xea\xde\x4c\x09\x89\x23\x3e\xfe\x85\x80\x31\x15\xa3\xc8\x72\xc7\xf7\x34\xf3\xd5\xfc\x34\x69\xc3\x5b\x08\x2b\x83\x3f\xc7\x89\x0f\x33\xd9\xfa\x39\xb2\x8a\x28\x66\x63\x14\x4d\x45\xb7\xfe\xd3\x3a\x02\x33\x75\x1c\x44\xd3\x47\xbe\xe5\xfc\x60\x9f\xbc\xe9\xe3\x80\xc2\x17\x1d\x6a\x16\xe7\x69\x51\xe4\x9f\x55\x7a\xca\x4f\x3c\xd9\xda\x9e\xff\x14\xd9\xdf\xa1\x19\x78\x97\x67\x87\xbd\x3b\x34\x03\x67\x28\x0b\x7c\x74\x7f\x60\x2d\xe8\xd0\x15\xb2\x95\xf0\xc1\x4b\xeb\x6f\x6b\x61\x92\x20\x8c\xf3\x4d\x80\x46\xfe\x6f\x6a\x43\xd9\xca\xc1\x08\x46\xcf\x5e\x51\xdc\xe8\xf3\xe5\x2b\x52\x67\xfc\x20\x0a\xd3\x89\xef\x01\x87\xc9\xfa\xbb\x10\x05\x56\xbe\x4a\xb9\xf2\x83\x48\x20\x38\xda\xae\x3a\x0a\x28\xf2\xff\x86\x31\x10\xf6\x95\x59\xbf\xe1\x8d\xd4\x1d\x95\xcd\x34\x5b\xff\x32\xab\xcd\x22\x7c\xd9\x38\x75\xb3\xf7\x22\xd0\x20\xbb\x8c\x06\x4b\x17\xee\xe0\x85\x4a\xe2\xa4\x4a\x33\xd0\x04\x7d\x9b\x06\x09\xc2\x86\x67\x30\x0d\x86\xc8\xef\xeb\xf4\x6b\x56\x16\xac\x1a\x92\x05\x23\x5f\x88\x8b\x61\x3c\xcc\xc4\xe1\x9b\xe9\x50\x81\x08\x16\x35\xc6\x83\x87\x21\x75\x3b\xf2\x8d\x38\x32\xbc\x28\x4b\xd8\x3d\xf2\x08\x7c\x8d\x62\x62\x78\x84\x78\x03\x9e\xf8\x94\x8c\x90\x71\x70\x76\x92\x97\x89\xf7\x9c\xf8\x21\x42\x89\x8c\x87\xc9\x75\x0d\x54\x7e\x95\x1e\x17\xc5\xa0\x85\x85\x98\xda\xa2\x53\x95\xc0\xb2\xec\x05\x55\x36\x01\xcb\x8d\x4d\xdc\xd5\x9a\x92\xbe\xe7\x22\x5e\xb8\x8b\xf4\xc2\xfa\x3e\x20\x4a\x9d\xdd\xa3\x24\x09\x7c\x71\xec\xac\xfa\xac\x46\x31\x16\x00\x25\xea\xb2\xc5\x12\x89\x44\xb5\x4d\xcc\x03\xd5\xe7\xc4\xd5\x81\x2d\x4c\xe0\x25\x46\xc3\x0f\x12\xb7\x5f\x0b\x49\x22\xe4\xc3\xaa\xd3\xa1\x08\xb3\xb9\xf4\x18\x29\xe2\x69\xd8\xa8\x18\x76\x56\xe8\xdb\x72\x0e\x8c\x39\x8c\xc5\xf0\xbc\x4b\xbc\x21\xa0\x2e\x26\xe6\x9e\x9f\x8e\x7a\xcf\xef\x6f\xbe\x6e\x85\xa7\x89\x28\x05\xf5\x4a\xc2\xe6\xe6\xa0\xe4\x81\x33\x85\x06\xdd\x94\x7f\x08\xb7\xac\x7a\x05\x7a\x2c\x2e\xff\x06\x65\x65\xd5\x3d\xab\xc6\x3a\x83\x6f\x95\xc8\x04\xcf\x41\x59\xab\x58\x8d\x2c\x42\x59\x0a\xb8\x67\x31\x6c\x5d\x2c\xd3\x03\xf3\x48\xce\xcd\x79\x2d\x08\x3d\x17\xf4\x34\xa3\x6e\x4f\x5f\x46\xc0\x90\xf3\xc9\x1f\x57\x9b\x90\x5c\xdd\x8a\x0e\xb2\x52\xb8\x62\x50\x8a\xd3\x90\x83\x5a\x4a\x61\xba\x94\xa6\xcb\x71\xcb\xba\x20\xca\x49\x84\xe4\x59\x6f\x11\xfe\x1b\xd5\xd5\x4a\x33\xf5\x79\x37\x28\xec\xd7\xec\x58\x75\x60\x60\xa2\x6f\x77\x94\xc4\x63\x74\x76\xc1\x77\xa3\x85\x60\xc6\xd3\x90\x04\xf4\x90\x0a\x96\xb9\xb7\x5e\x88\xd1\xf2\xf6\xa7\x24\x1e\xc4\x49\x02\x7e\x02\x76\xbf\x16\xdf\xde\xae\x56\xc7\x9b\x04\xc4\x0b\x59\x12\x9d\xd5\xaa\xe1\x09\x0a\x43\x08\x33\xb1\x08\x3f\x19\xbe\xb9\xb1\xc0\x8a\xb2\x28\x49\xac\xa4\x62\xbc\x77\x8a\x41\x7f\x73\x62\x3d\xaa\xde\xcb\xf6\xf6\xd8\xd6\x67\xeb\x24\xb3\xb7\xd7\xaf\x4d\x23\x66\x50\xe5\xf7\x6b\x6b\xc2\x9b\x82\x15\xe6\x75\xe4\x2e\x03\xae\x1c\xd6\x33\x6e\x7c\xab\x30\x2e\x13\x05\x7e\x4e\x8a\x13\x41\xc1\x0b\x39\xf4\x72\x0a\xd5\x9f\x16\x17\x6f\xc2\x69\x52\x96\x67\x4e\x57\x68\x56\x72\x9d\xe2\x02\x17\xb0\xa5\xee\x7d\xe4\x25\x17\xc1\x77\xf4\xfc\xfb\xf9\xa9\xd3\xd5\xeb\xe6\x26\xbb\x1c\xa3\xe7\x4c\x67\x29\xf8\x1c\xc2\x32\x77\x8c\x72\x0d\xf1\x8c\x4e\x74\x9d\x4b\xf5\x62\x6d\x75\xe4\xd4\x6a\x25\x28\xa8\xc3\x0b\xb9\xb0\x7e\x8b\x69\xef\x9f\x8f\xe0\xad\xd3\x2d\x05\xf1\xcc\x71\x2c\x02\x58\x88\x60\x16\xcb\x3e\xca\xdb\x6e\xfc\x00\x2f\x19\x3a\x9a\x67\x1c\x5f\x11\xf1\x03\x2e\xd3\x0c\x3c\xa3\x63\x25\x50\x73\xba\xe8\xd2\x9b\xe2\x67\x78\x9c\xb3\x0a\xd2\x74\x0b\xf4\xeb\xca\xaa\x2e\xb9\x65\xd6\x81\x27\xe5\xd7\xcd\x76\xe1\xf8\x46\xdb\x7e\x96\x88\x90\xab\x5b\xd8\x62\x95\xef\x20\x55\x96\xd6\x64\x87\xc6\x67\x50\xa3\xef\x74\xf3\xb5\xcb\x74\x3d\x79\xec\x56\xe6\x4e\x55\x15\xf5\x50\xa4\x2b\xa3\x3b\x71\x74\x3f\xcd\x95\x29\x4b\xad\x56\x82\x02\x87\x14\x4a\xd7\xd0\x1f\x5d\x19\x51\xe6\x5e\xba\x60\x2d\xa0\x32\x91\xce\x6a\x93\x64\x36\x17\x04\x2a\x4d\x45\x81\x44\xb5\xc3\x8e\xf0\x5f\x29\xa3\xcf\x91\x87\x39\xf5\x27\xa6\xcc\xf3\xa8\x17\xc1\x88\xc8\x22\x7c\x8e\xa0\x0f\x59\x3d\x8e\xa5\x90\xf2\x9f\x31\x3f\x23\x47\xac\xb9\xf2\xb3\x44\xe5\xf9\x24\xd7\xa4\x62\x90\xa4\x64\x0e\x93\x8b\x52\x4d\x27\x86\x1c\x6f\x1c\x4f\x21\x98\x0a\x9e\x4e\x40\xeb\xc6\xea\xb0\xb8\x08\xcd\x67\xda\x3f\xcd\xa2\x01\xab\xbe\xef\xa9\x9a\x19\x89\x18\x96\x05\xd8\x5d\x5c\x05\x78\x51\xbe\x42\xf3\x93\x19\x01\x69\x66\x28\xf9\xb9\x04\xf3\x91\xac\xa8\xbc\x49\xd5\x6e\x03\xab\x02\xb1\xea\x91\x57\xab\x1b\x50\xf3\x63\x64\xee\xdd\x8b\x32\x33\x17\x13\xfe\x96\xc1\xcd\x49\x32\x79\x10\x25\x56\x66\x45\x18\x4b\x6c\xce\x9e\x91\x3e\x78\xf9\x04\x16\xd4\xf4\x3f\xcc\x04\xc6\xce\x45\xa9\xc6\x5f\x8b\xce\x51\x72\x51\x20\xd9\xcf\x73\xf6\xcc\xf2\xa6\x8a\x77\x5c\xa5\x03\x98\x2f\xf5\xb7\xad\xbb\xca\x29\x2b\x69\x31\x9f\x8f\x4f\x33\x8e\xcc\x5b\x3f\x2f\xb6\x93\xac\xee\xcf\x39\xf2\x13\xef\xa1\x72\x5f\x2f\xcd\x0c\xe8\xeb\xa9\xc5\x6d\xc4\x73\x42\xb1\x62\x90\x2c\xe4\x19\x88\xc0\x45\x0e\xdf\x87\xc4\x35\x65\x76\x7b\x99\x33\x5e\xc8\x1d\xcd\x64\xca\xc3\xfc\x21\x93\x27\x4b\xa8\x42\x43\xe4\x3a\x67\x36\xd8\x4a\x73\x95\xcb\xa1\x82\x7c\xa4\x0d\x45\x45\x50\xe4\xa5\x47\xa0\xc2\x4e\xd0\xaf\x31\x6a\xd2\x0f\x43\xd5\xed\x56\xf3\xf1\xe5\x0b\x72\xe0\x30\x7f\xcb\xcc\xe0\x59\x6c\x76\x0b\x36\xe9\xbf\xe9\x56\xb4\xa2\x5f\xf9\xe8\x80\x0a\x29\xd1\xc3\xad\x2a\xaf\x38\x1e\x7f\x86\x95\x85\x3b\x60\x1e\xb5\x57\x45\x68\x7e\x00\x28\x9a\x4b\xb4\xaa\x28\xa2\xa5\x36\x00\xdb\x0d\xa0\x0e\xdc\xaf\x49\x5b\xa3\x02\x54\x56\x5c\x00\x15\x3a\x69\x9c\x33\xae\xfa\x0f\x34\x8a\x2a\xdd\x54\x74\x3d\x77\x1c\x5d\x4c\xd0\x20\xb8\x0d\x06\x9a\xd1\x17\x10\x9e\x86\x76\xc9\xb9\x7f\x89\xd9\x58\x76\x60\xe0\x23\x11\xdf\xd3\x46\xd1\xc3\xf9\x34\x44\x09\x58\x9d\xc8\xb1\xd0\x3e\x09\xba\xfb\xe1\xbd\x25\x74\xce\xca\xe0\x2d\x12\xb7\x72\xd4\x6d\x95\x99\x29\x54\x0f\x56\xb1\x67\xe2\x1a\x79\x6d\x41\xff\xea\x75\x69\x36\x97\xc3\x89\xbf\xd6\x90\xfa\xaf\x3b\x56\x59\xf0\xe5\x9c\x9a\xc2\x19\x23\x0f\x4f\x13\x94\x59\xb1\x30\x3e\xd5\xc8\xc4\xa7\x8d\x66\xb6\x8d\x67\x56\x30\xec\xd5\x4d\x10\xf9\xb0\xa6\xb3\x3c\x72\x99\xfc\xad\xbb\x8d\xad\xd2\xd3\x2f\xce\x41\x3c\xd6\xfa\x57\xaa\xbb\x59\x26\x80\x54\x88\xeb\xb9\x53\x5e\x5e\x58\x49\x95\xce\x68\x11\xcc\x84\x29\x18\x6f\xb6\xad\x64\x0e\xd3\x42\x28\x69\x47\x31\x67\x88\x58\x5c\x33\x66\xe7\xcf\xe3\x11\x81\x98\xa1\xcd\x8d\x16\xa0\x63\xad\xc9\xb2\x76\xda\x49\x66\x2b\x1d\xf3\x3b\xad\xcb\xd9\x04\x3d\x3d\xa9\x06\xc9\x9a\xfa\xbf\x95\xb8\xdb\x5b\x8a\x97\x2e\xb7\x8b\xc0\x7b\x26\x76\xb7\xed\xcc\x39\x39\xb3\x97\xc0\xf2\xe1\xcd\xf6\x9e\xf8\xd9\xda\xb6\xac\x16\x76\x9b\xf5\x0c\x40\xa3\xb5\xa3\x3c\x35\x5b\x5b\xca\xd3\x56\x6b\x5b\x31\x23\x56\x02\xea\xb7\x12\xb7\x61\x57\xb4\x50\xac\xc1\xf6\x99\x56\xe2\x36\x57\xaa\xf3\x30\x42\x28\xec\xd7\x5a\x70\xdd\xcb\xad\x74\x3f\xd3\x77\xaa\x9d\x6e\xbd\xbe\xc6\x0c\x44\xaa\x0a\x98\xc4\xca\x86\x9d\xa7\x4e\x46\x99\x44\xc1\x82\x76\x20\x2e\x0d\x22\x5f\x2b\x9e\xb8\xc4\xf1\x51\x48\xbc\x3f\xdf\x34\xf6\x1a\x2d\x8a\xf6\x4e\xce\xba\x5c\x94\xe5\xa1\x74\xd7\x4c\x39\x37\x89\xe2\x1d\x8d\x9f\x9e\xf0\xdb\x1d\x0b\xe2\x7c\xe5\xf7\x4b\x6e\x8d\xa9\x44\xba\x9a\x0f\xe2\xb0\x15\x50\xf1\xcd\x4e\xe2\x87\x56\x00\xd9\x40\x1f\x5b\x81\xf3\x68\xcf\x5a\x81\x33\xb3\xf9\x70\x61\x08\xc2\x11\x47\xad\xc4\x1e\x90\x24\x6c\x11\x87\xfe\xf9\x80\x66\xb6\x17\x92\x16\x71\xbc\x90\xd0\x07\x48\x25\xde\x22\x2c\x97\xfa\x07\x34\x4b\xad\x54\x58\xb8\xcf\xf9\x4c\x82\xae\xdb\x86\x01\x67\x3f\xd9\x7c\x25\xde\x50\x79\xa4\x14\x08\x8f\xa9\x1d\x65\x35\x91\xfb\xd6\x84\xd4\x76\xc2\x46\x07\x4b\xef\x76\xa9\x4a\x2a\x4f\x2a\x9a\xa5\x65\xc0\x0e\xff\x6d\x89\x9f\xb4\x69\xc1\x92\x57\x01\xc3\x2f\xc7\x94\xda\x52\x3e\x81\x50\x0b\x60\xdb\xc0\xfa\x27\x11\xd6\x3e\x33\xc3\x87\xac\xdb\x2c\xdc\x3d\xef\x51\xbd\x4e\x2b\xa4\xca\x30\x68\x9f\x9f\x9e\xe0\x73\xda\x2e\x61\xfd\x85\xe9\x8e\x23\x11\xb6\x45\x0d\x2d\x89\xf6\xcc\x7e\x0d\x8c\x16\xc0\x30\xbf\x6c\xcf\x53\x83\xf4\xc4\xc3\x63\x74\x8f\x42\x19\xab\xb6\x68\xf8\xb0\x1f\x40\x42\x3f\x83\xc4\x06\x60\x6d\x30\xa9\xa9\x25\x2e\xba\x0b\x78\xa1\x47\x48\xb6\xc6\xa4\x36\x13\xe5\x95\x3f\xab\x49\x64\x55\xf2\xb8\x14\xf3\xac\x96\x59\x89\xf2\xa7\xe8\x86\x23\x7d\x9b\xc4\x63\x0d\x6d\x67\x15\xa3\xe4\xe7\xa1\x24\x64\x44\xcb\x7e\x55\x47\x7b\x9c\x70\x28\x24\x4a\xbe\x65\x99\x58\x55\x3a\x8b\xb2\xe2\x92\x64\xe9\x83\xab\x7e\x68\x99\xcf\x20\xd9\x12\x50\xd3\x30\xb4\xec\xe6\x0b\xc0\x0e\x48\xb7\x0a\x33\xce\x28\xed\x88\x15\xb3\xe7\x13\x0f\xe3\xe0\x1e\xb5\xd6\x9a\x29\x85\x09\x6f\x5d\xfe\x75\x01\x5a\x02\x0e\xaf\xa1\x54\x05\x54\xb6\xb2\x71\x9a\x4e\x9e\x9e\x4c\xf9\x5b\xf4\x7a\x3a\x91\xd3\xfb\x13\x4b\x9f\xc2\x83\xf6\x76\xb2\xf6\xe8\x92\xcc\x5a\xa4\x4f\xa2\x4d\x58\xea\xcf\x69\xb5\x84\x53\xd8\x1a\x5c\xda\x76\xba\xe0\x78\x23\x62\xb4\xc3\x1a\x76\x57\x29\xf4\xcc\x13\x5a\x99\xb1\x2a\xec\x81\xf9\x54\x8c\x0c\xae\x76\xd8\x5e\xe9\x34\x26\xc3\xf1\x17\x16\x05\x1e\xc5\xd3\xd0\x7f\x17\x27\x03\xe5\xd8\x2f\x53\x96\x43\x0e\xd5\x6c\x9a\x0a\xfc\xb9\x6a\xd1\x3c\x87\xc7\x2f\x59\x78\xda\xb4\xe9\xfc\xfd\x07\x8e\xfa\x76\x46\xf3\x32\xc0\xaf\x20\xfe\xb9\x12\x64\x77\x91\xe4\xb1\xb0\x4c\x36\x76\x3c\x82\x17\x13\xa7\x99\x95\xfe\xc8\xe3\x52\xc7\x8d\x37\xb8\xcb\x65\x2a\xa9\x96\x4f\x98\x63\x02\x08\x7f\x79\xdf\x04\xe9\xc6\x91\x6d\x3d\x55\xee\x21\xde\x64\x12\x06\x2c\x9c\x14\x53\xd9\x7e\x40\x33\xbc\xd7\xaf\x9d\xf5\x6b\xad\x7e\xed\xaa\x5f\xb3\xd6\x4d\x94\xc9\x3e\xfd\x5a\x07\x3e\xec\xf7\x6b\x16\xcf\x38\x0f\xae\x7e\x7a\xca\x03\xf0\x8d\xf0\x6e\xb0\x49\x2c\xc8\x6e\x80\xd7\xdd\xa0\xad\x9e\x0e\x16\x3a\xa1\xe0\x2c\x6e\xae\xba\x29\xa7\x2a\x00\x39\x2c\xec\xdc\x0b\xe3\x6d\x22\x6b\x4f\xa7\x04\x1e\x14\x3d\x4d\x2d\x9d\x15\xfe\x00\x79\x90\x78\x3a\x18\x49\x83\x55\x2d\x08\xf4\x4a\x4b\xcd\x5a\x80\xfd\x25\x85\x0d\xa1\x6a\x0a\xd2\x88\xa5\xa1\xde\xf8\x71\xd4\x15\xa3\xa1\xbf\x1b\x73\x9e\x1e\x6b\x8f\x0d\x76\x6b\x01\xfe\x74\xe8\xd5\xd0\x4e\x56\xd9\x05\xc2\x9e\xa3\x64\xf8\x66\xb9\x3e\xcb\x2c\x9c\xe6\xe5\x9c\x6b\x8f\xb3\xae\xae\xa2\xf2\x94\x84\x51\x25\xc3\x30\xfd\xe8\x06\x83\xd5\xaf\x71\x75\xd2\x02\x09\x23\x5f\x21\xd5\xdc\xc4\x8a\xee\x6b\x99\x67\x53\x40\x02\x30\xc1\xf1\x85\x70\xbc\xa4\x98\x0c\x48\xbd\x8a\x37\x98\x95\x6a\xaa\x6e\x9b\xd8\x81\xdb\xb0\xc0\x70\x3e\xd8\x33\x99\xcf\x63\xa1\xc4\x42\x4d\x00\x1f\x0a\x31\xed\x7b\x7a\x75\x2b\x05\x07\x0d\x3a\x1b\x60\x8e\x0f\x4f\x3f\xe8\x70\x92\x32\x6b\xdb\x6e\x99\x0f\x66\x36\xdd\xe5\x2e\x9a\x48\xab\x5c\xc6\x7c\xe7\x0b\xb9\xb3\x8b\xd2\xd2\xe0\x0a\xf9\x10\x6a\x2b\x47\x65\x40\x96\x04\x98\xb3\x7a\xc8\x25\x46\x29\xb7\x7a\x58\x60\x10\x3d\x9e\x62\x88\xd9\x07\x71\xfc\x7c\xe3\x36\x48\x30\x25\xc0\x9c\x25\x69\x39\xdc\x8c\x6b\x20\x4b\x63\xc7\x55\x5a\xa0\xd4\x47\xff\xc1\xdd\x58\x88\x7e\x86\x8d\x89\x2c\xe9\x5b\x52\x86\x3a\x78\xeb\x8e\xbd\xe4\x0e\x25\xf9\x60\x4c\x7c\xb1\xf0\x8f\x72\x9a\x4e\xe0\x39\x3f\xe3\xbc\xb0\xe7\xfb\xfc\xbb\xb6\xde\x8a\x5e\x84\xeb\xca\xc4\x67\x5a\xfb\x02\x1d\x15\x22\x95\x38\xa5\x95\x52\xdd\x37\x8c\xc3\x58\xab\x90\xd9\x84\x04\x55\xa2\xb3\xcf\xa0\xa4\xfc\xee\x45\x8b\xab\x57\x94\xfe\x10\x51\xa4\x3e\x99\x99\xb9\x88\x8b\x51\xc1\x84\x2b\xe1\x2a\x59\xb3\x5b\x90\x8f\x5e\x05\x2b\x63\x95\x2b\x32\xd7\x0f\xf5\x52\xc4\xf2\x96\x51\x56\x97\xe1\x03\x9b\x2f\x0b\xfb\xbd\x5a\xd1\xe6\x75\x16\xb1\x75\x49\x85\x5e\xe4\xaf\x06\x99\x16\x6c\x5e\xa7\x29\x4b\x6d\xad\x0e\x76\xd5\x56\x97\x2f\xc8\x67\xb7\x13\x86\x0b\x2a\x29\x65\x78\x79\xb9\x19\x2c\xab\x94\x15\x4c\x15\xcf\xa3\x6c\xb2\x56\x8a\xf4\x95\x25\x58\x28\x61\xe5\x25\xb2\x74\x71\x2f\xc8\x24\x69\x8d\xeb\xf1\xb8\x63\x4e\x80\x4f\xbc\x41\xce\x0d\x61\xec\xf1\x0b\x82\x23\x7c\x82\x58\x1e\x7c\xa6\x14\x63\xc2\xb8\x3c\x08\x15\x3d\x59\xb8\xd7\x95\x72\xf8\xd1\x00\xb3\xfd\xf0\x2c\xfa\x84\x51\x72\x14\x4d\xa6\xe2\xa2\x40\xe5\x11\xc2\x79\x43\x0d\x1c\x9f\xdd\x27\xc4\x61\x78\x19\xef\xc7\x84\xc4\x63\xd3\xb2\xd7\x9a\x6d\xf2\xf4\xd4\xaf\x1d\x40\xac\x72\x48\x59\x79\x87\x66\xf5\x7a\xbf\xd6\x09\xc9\x61\xe2\x4d\x46\xd9\x5b\xa9\x5f\x2b\x8b\x8d\x26\xe3\x3d\x07\xae\xd9\xb0\xcf\x1d\x74\xef\x85\x53\x8f\xa0\x0f\x68\x06\x59\xf6\x75\xe7\xd0\x67\x1f\x11\xec\xe2\x90\xdb\x8b\x46\xdc\x92\xb9\x4a\xca\x84\x39\x7b\x9b\x8a\x28\xa0\xeb\x7e\x7a\xda\x92\xbf\x73\x67\x21\xc6\xdc\xb5\x9d\x4b\x15\x47\xb2\x7a\x7b\x1b\xa4\x45\x16\x1c\x21\x9a\xb2\xa4\x98\x86\x6c\x4d\xd8\x82\xbf\x06\xf8\x72\x14\x24\x3e\xe8\xd7\x2e\x46\xc1\x2d\xcf\x60\xc2\xbb\xcc\x92\x74\x06\x1c\xbc\xf0\xad\x57\xda\xb2\xd7\x02\x36\x47\x6b\x6b\x26\x9f\xc3\x35\x24\xf4\xb2\xf0\x9b\x11\x20\xfc\x1c\x23\xe2\xc1\x6f\xa6\xc2\xbe\x43\x33\x99\x4f\x8e\x3d\xd1\x1d\xb1\x1b\xfb\xa8\x43\xcc\x86\xf5\xd6\x7d\xb1\x5b\xfa\xe1\x8d\xfb\xba\x61\x2d\xa0\x8a\xbd\x05\xf4\xd2\xa4\x48\xb7\x4c\x40\x7a\xcd\xe5\x47\xc8\xcb\x3f\xea\x75\xed\x4d\xf7\x5c\x80\x2f\x09\x5b\x90\x45\x01\xf8\x80\x66\xcc\xe4\x61\x7e\x87\x66\x2d\x80\x60\xfb\xf1\x18\x68\xae\x85\xd2\xea\xd8\x0a\x0b\x0f\x86\x0c\x0e\x8c\xed\x12\xbd\x68\xfe\xaa\xf4\xe9\x49\x0c\x37\xfd\xc5\x27\x61\xaf\x30\x67\x2d\x25\xa5\x6b\x9e\x97\x35\x78\x14\xd5\x02\x55\xe4\x12\x6b\x70\xee\xb3\xb6\x98\xfd\x90\x6c\xf6\x89\x42\x14\x44\x50\x02\x45\x33\xc0\x3c\x38\x94\x5a\x7c\xb5\xd2\x70\x19\xe5\xc3\x3d\xd7\x05\xf1\xc0\x94\x3f\x63\x1f\x42\xf6\x53\xfd\x3d\xe1\x0a\x09\x96\x4e\xd0\x0a\xea\x75\x73\x8d\xd0\xb1\xee\xc2\xd0\xc9\x9f\x6f\x77\x5e\x32\xc6\xcf\xf2\xfb\x95\xf0\xf6\xe6\x4f\xf3\xf6\xa7\x27\x33\x4b\x07\x20\xc5\x8c\xe6\x0b\xb1\x2e\x18\x4a\xcd\x97\xb9\xe7\x57\xea\x73\x0a\x70\x8a\x3a\xb1\x52\xce\x23\x7b\x91\x0b\x3b\xc9\x7a\x2a\x3c\x5f\x21\xb0\x11\x69\xab\x3b\x5d\x79\x98\x4a\x9d\x6c\x34\x9d\xcf\xdf\xb7\xed\x09\x60\xf2\x94\x6d\x23\xc9\x08\x2c\xe2\x66\x0f\x2c\xe5\x43\x70\x6b\xf2\x6c\x14\xc8\x79\x18\x05\x83\x91\x72\x21\xc5\xdf\x40\x2d\x3e\x7c\x2c\x6c\x8f\xbc\x21\xe3\x35\xd8\x83\x6c\x45\xe2\x42\x44\x11\x79\xf1\xb5\x46\x9e\x9e\xcc\x92\xf5\x46\x7f\x72\x82\xcd\x12\x81\xae\xc2\x65\x89\xcb\x42\x1b\x39\xb7\x49\x3c\xee\x72\x0c\xb2\x64\xd0\x79\x76\x43\xfe\x06\x56\xa3\xe6\x6e\x2a\xcc\xb5\x90\x60\xca\xd9\x68\x83\x05\x5b\x56\x9c\x69\x99\xd2\xd6\xf7\xe8\xc2\xef\xd7\x82\x08\xa3\x84\x50\x09\x98\x85\x5e\x72\xa0\xec\x25\x6c\x46\xe6\x5a\x96\xda\x5b\x86\x35\x51\x56\x98\x95\x63\x2c\x2b\xb0\x3e\x5d\x3c\x53\x3b\xa2\xcc\x61\x75\x77\xa4\x88\xc5\x3a\xb0\xba\x16\x8f\x14\xb5\x78\x96\xbd\xd6\x48\x95\x7b\x52\x66\x93\x4e\xd9\xa7\x14\x91\x06\x71\x88\x59\xfa\x03\xb9\xe3\xef\x31\xbd\x85\x52\xbc\x95\x9d\x12\x15\xd3\x86\x4c\x86\xcb\x99\x3c\x8c\x3c\xfc\xbb\x17\x06\x3e\x7d\x27\x9d\x72\xab\xcc\x22\x52\x3d\x3e\x9b\x92\xaf\x53\xaf\xb1\x97\xb7\xa4\x50\x54\x24\xba\x6d\x1a\xe4\x52\x60\xf1\x8e\x60\x51\xe5\xa5\x41\x2a\x21\x3e\x3d\x15\x5e\xf3\x76\xf9\x23\x00\xe8\x84\xe1\x89\x38\xd3\x6a\x9a\x1f\x16\xad\x06\x23\x22\x8e\xc1\x85\x28\x36\x4b\xce\xad\x56\x19\x3c\x26\x81\xb8\x4d\xbb\x20\xbc\xba\x7a\x33\x00\x30\xff\xce\x6d\x28\x4a\xe1\xa6\xc8\x83\x4b\x27\x14\x54\xc2\xc5\xe6\xb2\x5c\x7c\xfc\xf5\x10\x91\xfd\xd0\x8b\xee\xa8\x74\x67\x1e\x3b\x07\xbd\x77\x9d\x4f\xc7\x97\x5f\x3a\x97\x97\xe7\x5f\x0e\x3a\x97\x1d\xe9\xa8\x2c\xcd\x05\x19\x0f\x10\x02\x7c\xab\x80\xb7\x8d\xe3\x69\x32\x40\xad\x46\x5a\x98\x34\x1e\xe1\x71\x91\x2e\x2c\x4d\x79\xa1\xb9\xb6\xb7\xd3\xaf\x19\xb5\xea\x42\x30\x25\xe7\x8c\xb0\xf5\x58\x44\xe5\x7c\xbe\x2d\x4e\x60\x2c\x30\x99\xa4\xfd\x0c\xb9\x92\xd3\x99\xfe\xbd\x4c\xbb\xa0\x7c\xaf\xe8\x73\x95\x6a\x6d\xe1\x88\x00\x59\x52\x56\x36\x4d\x50\x87\x84\x9e\x8c\xa0\x91\x57\xe9\x96\x14\x4c\xf5\x00\x9d\xac\x9e\x74\xab\xcf\x94\xae\x03\x66\xc0\x83\x95\x68\x53\x7b\xcb\xd9\x4f\x3e\xe6\x57\xeb\x79\x55\xce\x40\xa9\x5b\x11\xa2\x33\xe3\xa8\xba\x97\x0f\xb7\xe1\x11\xf1\x03\x2f\x9d\xb2\x08\xa0\x94\xd1\x3b\x87\xbd\xcb\x2f\x9f\x8f\x4e\xbf\x5c\x1c\xfd\xb3\xf7\xe5\xe3\xd1\x1f\xbd\xe3\x8b\x96\x4e\x1c\x8b\xc3\x2f\x79\xd1\xbd\x87\x59\x8c\x24\x87\xc4\xef\x82\x47\xe4\x9b\x10\x21\x7f\xf5\xca\x2c\x7a\x92\x52\xfb\x99\xf1\x07\xaf\x76\xda\xbf\xcc\x49\xda\xfe\x65\x8e\x52\xa2\x47\x17\x5c\xd2\xf1\x6e\xef\xf8\xb8\xa4\xe7\xc1\xf3\x62\x5d\xa9\xfd\x7e\x6e\x9c\xad\x9f\xe8\xf5\x8b\xf6\x2f\x73\x4c\x7b\x1d\xd0\x5e\xa7\xa9\x3c\x3e\x90\x8c\x2c\xe4\xea\x87\x6f\xec\x2e\xe5\xe9\x49\xe6\x42\x28\xb9\xbf\x45\x0e\x26\xf1\xe4\x63\x12\x4f\xbc\x21\xd3\xfe\x59\xf6\x5a\x33\x4d\x95\x38\xfe\x1f\x53\xfb\xf5\xeb\xad\x9d\x9f\xcb\x9d\x72\x19\x8c\xd1\xbe\x07\x1b\x7c\x21\x7d\x4a\xc9\xb7\xd2\x0c\x2a\x6e\x13\x6d\x2f\xc9\xa2\xe2\x73\x08\x97\x23\xca\x34\xe2\xd0\x3f\xb9\x90\x69\x54\x42\x4f\x46\x00\x3e\xc1\xd2\x63\xd8\xf3\x7d\xe0\xd9\x5e\x28\xa2\x03\x33\xfb\x77\x10\xad\x0b\x69\x56\x38\x37\xa2\x18\xc7\x53\x72\x74\x50\xaf\x33\xfe\xc2\x9e\xcd\xf2\x42\xd6\xff\x81\x49\x45\x64\x5a\x87\x03\x8f\x20\x27\x8a\x1f\x58\xfa\x20\xbc\x51\x32\xd6\x6f\xdd\xca\xc9\xb1\xca\xa6\x06\x4b\x2b\x50\x35\x6f\x88\x3c\x51\xac\x2d\x9b\x38\x25\x6b\x7f\x19\x3a\x92\x59\x95\xe0\xb3\x21\x62\x85\x2e\x22\x8b\x2c\x79\x87\x3e\xcf\x22\x9b\x12\x46\x44\x10\x84\xea\xac\xa4\x77\x32\x1b\xb7\xd2\xde\xae\x42\x9d\x55\x68\xf0\xbb\x67\xcb\x26\x56\x5a\x96\x7d\xe5\xef\xcd\xb0\xf2\x5f\x2e\x81\x4a\x9a\xa6\x76\xf3\xc5\xab\x7f\x27\x5a\xfc\xef\x95\x68\x51\x38\x52\x16\x33\x2c\xb2\x6c\x33\xb1\x4c\xf1\xe2\xc9\x24\x2e\x23\x91\xc4\x65\xa0\xe5\x5f\x0c\x5d\x05\x1c\x4b\xbe\x22\x52\xaf\x8c\x9c\xcc\xde\xa1\x98\x8d\xd1\xc6\x76\x62\xc7\xf6\xc8\x1e\x88\xd4\x24\x15\x31\x62\xe4\x86\x85\x95\x80\x35\xfc\x95\x9e\xca\x31\x10\xba\x06\x3d\x95\x23\x2e\xb7\xb2\x77\x13\xbb\x44\x20\x71\x63\x51\xba\x18\x1e\x63\x24\x8d\xdb\x99\x0f\x27\x78\x2c\xb8\xb9\x5c\xd4\xe7\xf1\x03\x8f\x65\x99\xfb\x70\x80\x28\x90\x2e\x0a\xc3\xdc\x77\xc6\xec\x06\x71\xe2\x23\x9f\xf9\x12\xb1\x5c\x8d\xa5\x05\xc4\x58\x2f\x85\x51\x52\x00\x0c\x41\xfe\xd4\x5e\x5d\xf0\xab\x0d\x79\x5a\xfc\x02\xf6\x54\x1f\xbd\x84\x04\x5e\xc8\xbe\xba\x39\x26\xae\x27\xb4\x02\x13\x3c\xc1\x97\x87\x51\x9c\xa0\x53\xf4\x48\x14\x77\xbd\x8c\xfb\xe2\x71\x1c\x93\x11\xfb\x04\x1a\x4f\x9e\x62\x91\xb2\xe3\x56\xc3\x8e\x93\x60\x18\x44\x2d\xba\x65\x7b\xc9\x10\x91\xd6\x46\x33\x95\xda\xa3\xa2\xeb\x60\x49\x4a\x0c\xaf\x2a\xb5\x4a\x79\xdd\x52\xb0\x6a\x4a\x91\xdc\x4c\x97\x92\xa7\x13\xdf\xde\x62\x1e\x0d\x76\x23\x4f\xa8\xea\xc7\xa7\xa7\xe6\x6e\xd1\x2e\x28\xfa\x19\xe7\x36\x56\x40\x7a\x15\xd1\xd3\xf5\x4d\x10\x31\xe5\xb8\x92\xb5\x0d\x2c\x84\x18\x55\x2c\x48\x52\x5a\xea\x01\x57\x56\x10\x9c\x74\xe1\x57\x47\x64\x90\x54\x02\xe7\xab\x8d\x09\xd3\x4a\xf6\x98\x61\xc4\x56\x5c\xe6\x51\xbb\xe4\x64\x50\x8a\xd9\x72\xff\xdc\x9c\x3b\xa6\xd2\x1c\x52\x62\xa0\x30\x13\xa9\x11\x1a\xf3\x0c\x07\xe6\x80\x87\x7b\xcf\x1b\x71\x0d\x1c\xe1\xb9\xa4\x44\x42\xaf\x02\x52\xed\xbd\xf9\x0c\x47\x32\x6e\x6c\xa8\x79\x31\x96\xb9\x18\xe7\x85\xa8\x8a\x82\x69\x29\x9e\xf3\x72\xaa\x66\x11\x77\xb3\xb0\xfe\xd0\x67\x57\x7d\x43\xcf\x6b\xba\xb2\xe5\xff\x14\x16\xf8\xe3\x29\xfd\xca\x06\x5d\x1e\x68\x98\x8a\xd9\xca\x39\x60\x69\x92\x2c\x5c\x6d\x51\x86\x9a\x9d\x2e\xca\x78\x6e\x75\xd4\xc2\x15\x52\x56\x96\x42\xb4\xac\x36\x17\xd1\x16\x36\xbb\x08\xc4\x7f\x68\x3e\xc4\x82\xfa\x18\xa6\xfa\x6d\xa3\x92\x12\xcb\x39\x81\xe3\x23\xe6\xf2\x96\xa9\x1d\x36\x2b\xbb\xe1\x4f\x92\x25\xe4\xbc\x72\x23\xcb\xa9\x7a\xd1\x5e\xc3\x8a\xe8\x87\x09\x58\x92\x66\x79\xe7\x7f\x5d\xbc\xc8\xac\x75\x73\x19\x3a\x1b\x15\x3d\x2b\xa8\xaa\xc4\xa9\xa4\x6a\x31\xd2\x53\xbb\x24\xa3\xca\x15\x5b\x94\xf8\xf4\x68\xe2\x8b\xab\xf3\x10\xe2\xc2\x6f\x0a\x2d\x4a\xcc\x0d\x1a\xe7\x5f\xcb\x87\xad\x3c\x90\xa3\xb4\x06\x99\x68\x7d\xa9\x10\x7d\x1a\xe5\x32\x6d\x06\xc4\x55\xc2\x27\x55\x49\x57\x69\x8e\xad\x20\x77\xad\xa9\xac\x85\xaa\x79\x95\x3c\x64\x41\x4a\x72\x76\xe6\xd1\x79\x52\x25\x33\x5e\x11\x9a\xad\xe6\x11\x95\xcc\xaf\x84\x30\x72\x24\xef\x3e\x5b\x31\x2a\x3d\xaa\x34\x36\x2e\xe0\xa8\xb2\xc7\xc2\x89\xd6\x93\x70\x2c\x5c\xb8\xca\xfd\x6f\x29\x0b\xc8\xc2\xe2\x88\x7e\xa7\x9a\x7c\xa6\x29\xa6\x75\xb4\x97\x10\x0a\x37\xa7\xa8\x60\x09\x1f\x21\xee\xae\x50\x33\xc8\x16\x4a\xa9\x32\xb7\x03\x55\xc9\xec\xca\x2c\x96\xca\xc9\xec\x1e\x87\x05\xea\x68\x35\xec\x92\x40\x1d\x70\xdc\x94\x77\x93\x05\x36\xa5\x75\x7f\xb3\x7c\x6a\xac\x8d\x65\x8b\xb7\xbd\x2a\x8a\xa4\x12\xc5\x54\x3b\x99\xa8\xdb\x4c\x80\x99\x68\x8e\x20\xbd\xbc\x9c\xfc\xc2\x41\xc6\x61\x67\x97\x25\x85\xd8\xb1\xa6\x34\xe7\x85\x56\xfa\x23\x4a\x06\x0b\x42\xc9\x2a\xcc\x63\x31\x3a\xeb\xca\x90\xa3\x5f\xcd\xc5\x68\x6d\x2c\x86\x65\x59\x36\x7a\xd3\xdc\xfb\xe9\x3d\x5e\x1f\x69\x19\x14\x82\x19\x49\xe6\xdb\x36\x73\x53\x23\x07\x26\x97\xfc\xb4\xfa\x9e\x5d\xa9\x7c\x30\x65\xf7\x6d\xd2\x38\xb5\xd0\x53\x79\x18\xcd\x94\xb9\x52\x17\x67\x66\x4a\xc8\xca\x91\x92\xf5\xad\xcd\x1f\x41\xcc\x6e\x5a\x76\xc3\x6a\x35\xd3\xca\xd1\x98\x2f\x6d\x59\xca\xb0\x55\xf3\xe8\x6e\x54\x9e\xc6\x39\x21\xb8\x1b\xcd\xf4\xcb\xcd\xf4\xe6\x26\xe3\x59\xaa\xf1\xd4\x12\x92\x5c\x5f\xc6\xe6\xdb\xc2\x02\x85\xbc\x69\xd4\xeb\x99\x1a\xbd\x12\xe2\xd3\x13\x79\xdb\xa8\xd7\x83\x37\x8b\x77\x7d\x0b\xec\x59\x98\xdc\x4b\x4f\xd2\xf5\x7a\xc9\x15\xce\x5a\xd3\x4a\x75\x67\x24\xdd\x78\xf1\xcb\x10\x91\x8f\xc1\x23\x0a\x35\x0f\x2e\x4e\x6c\x80\x6b\x16\x4e\xe2\x59\x73\xbb\x57\xb9\xfa\xb2\xa9\x2b\xa8\xb9\x4b\x49\xff\x4d\xb3\x1a\x16\x9f\xe2\x65\x3b\xc9\x0a\x4c\x6a\x6f\x09\x8d\x2c\xa5\x82\xd6\x62\x00\xeb\x52\x85\x57\xd9\x44\x71\x0d\x2e\xae\xb0\x50\xd2\xe2\x34\x62\x37\xca\xc6\xd6\x5c\xca\x86\xc4\xf7\xea\x0e\x2b\x2a\xc9\xdc\xca\xc9\xf9\xfb\x48\xfb\x12\x64\xc9\x6d\xe6\x79\xb4\x94\xd1\x2c\x5a\x2c\xb9\xfe\x97\x20\xb6\x95\x08\xa9\x72\x07\xfb\xdf\x8a\x4a\x52\xb8\x52\x58\x55\x1e\x41\xe5\xf2\x48\x93\xca\x23\x65\x6c\x28\x33\xf6\x63\x8e\x9e\x4f\x4f\x48\x06\x89\x10\x22\x5d\x03\x74\xf2\x62\x54\xbd\xc9\x24\x9c\x31\x08\xc2\xd0\x54\xba\x89\xda\x19\x5f\xe3\xaf\x4e\x62\x1f\xb9\xae\x9b\xf9\x5d\x39\x07\x67\x27\x5f\x0e\x7a\xc7\x97\x9d\x2f\xc7\x47\xa7\xbd\x3d\xf2\xab\x5b\x4e\x6e\xad\x15\x20\x7c\xec\x1c\xf6\x28\xef\xac\x82\xf1\x6b\x99\x9c\x07\x81\x02\x6d\xc8\x7d\xce\x58\xbd\x4c\x50\x01\x5b\x12\xed\x6b\x60\x73\xe7\x56\xb6\x26\x12\xf7\xea\xda\x8e\x5c\xb2\xb7\xb7\xea\x61\x25\x5e\x7a\xac\x91\x26\x52\xc4\x45\x6d\xf2\x26\x6a\x93\xf5\xf5\xec\xde\x34\x66\xa6\x5b\x2c\x66\x0c\xb2\x06\x71\x44\x82\x68\x8a\xe4\x9d\x0a\xff\xbe\xde\xb4\xf6\x9c\x00\x7f\x4e\xbc\xc9\x04\xf9\x70\xff\xbb\xee\x22\x87\x24\x5e\x84\x43\x8f\xa0\xcb\x98\x99\x4f\x9a\x6b\x91\x65\xaf\x45\x4f\x4f\xf4\xa8\x11\xcb\x3b\xa9\xac\xbd\x25\x11\x5f\xdb\x08\x8c\xbe\xbb\x71\x44\xa8\x1c\x8f\xed\x84\xd9\x6c\x81\x2b\x38\x83\x46\x77\x53\x33\xa0\x07\x4f\x36\x74\x29\x37\xf7\x9b\xdf\x68\x63\xdc\x4a\x6c\x96\xac\x93\xbf\x68\x05\x69\x5a\xe2\xdf\xfc\x9f\x49\x96\x60\x9a\xb2\x67\x92\xcd\x0a\xa2\x5a\xaf\xbe\xd4\x00\x86\xcd\xb8\xc7\x6d\x18\xc7\x89\x99\xb9\x43\x57\xd4\xb0\xac\x5f\x2b\xbf\xbd\x6d\xec\x35\x5b\x59\x4c\xa6\x62\x81\xff\xdb\x6d\x5a\x3f\xb2\x4c\xca\xd7\x43\xf9\x10\x16\xa5\xb4\xea\x7d\xe5\x56\x9e\xbd\x44\x7d\x69\x6f\xee\x85\xcc\xe6\x35\xc8\x2c\xda\x9f\x9e\xfa\xb5\x01\x49\xc2\xec\xbd\xb4\x16\xee\xd7\x60\xb2\xb3\x2f\x62\xee\xf7\xc4\xe6\xb4\x0a\x12\x17\xf4\xc4\x4d\x82\xfb\x80\xcc\x96\xd6\xc2\xf9\x1a\xad\xe5\x2d\x15\xea\xa4\x25\x4e\xdd\xf3\x82\x9a\x18\x39\xe0\x96\x8d\xf0\x55\xe3\xda\x99\x78\x43\xf4\x67\x5a\x74\xa9\xce\x49\x90\x59\xf5\x8d\x62\xf5\x76\x41\xd1\x52\xd9\x92\xad\x8b\x9b\x3f\x26\x79\xa4\x6d\xe5\x76\x36\x74\xb1\x79\x95\x98\x5b\xf6\xc0\x39\xda\x57\xe9\xca\xb2\x13\x73\x9b\xbe\x3d\xd3\xbd\x7d\xed\xc4\xdc\xb1\xe3\x42\x6c\x75\xfa\x7e\x97\xbe\x3f\xd7\xc3\x67\x27\xe6\x0b\x28\x5d\x12\x3f\x3f\x31\x5f\xd2\x4f\x5a\xf8\xf4\x6b\x3b\xb4\x52\x7b\xbb\xd9\x78\xf9\x6f\xeb\x83\xff\x56\xd6\x07\x55\xf1\x32\x8b\xd6\x08\xcc\x06\x21\x16\x96\x07\x9e\x66\x79\x30\x72\x17\x80\xd2\x2d\x11\xe2\xa5\x96\x08\x79\x1b\x04\x3d\xd9\x0c\x2a\x35\x37\x20\xd5\x96\x02\x41\x95\x95\xaf\x34\x46\xd0\x8d\x0e\x92\x42\x79\xb1\x0b\xbb\x11\x7a\x30\x4e\x3c\x21\x47\x7b\x21\x97\x84\x8e\x78\xe0\x87\xec\x76\xdd\xcf\x5d\x80\x2a\x66\x4f\x03\x99\x58\x66\xd5\x78\xf1\x8b\x93\xc9\x64\x68\x6e\xc8\xa2\x4a\xf0\xa6\x25\xa9\x65\x06\xb9\xf4\x0e\x3f\x18\x71\x3f\xd3\x29\xf9\x31\xbf\x21\xca\x08\xe1\xa7\x03\x3b\xcf\x2b\x07\x55\xc8\x14\xdf\xa6\x68\x8a\xce\x17\x84\xae\xad\xd4\x95\xc5\xd1\xc1\x24\x29\x76\x43\x07\x58\x05\x6f\xd5\x1b\x79\xa5\x13\x45\xa2\xa9\x06\xe5\x2e\xba\x34\xc0\x54\x1e\xa8\xec\x69\xd1\xa4\x3d\x8e\xd4\xa5\xc9\x0a\x23\xff\xf9\x7d\x5e\x06\x79\x1c\xdf\x53\xb0\xca\x85\x3f\x7d\xa3\xb9\xe9\x97\x86\x1b\x8a\x17\xa5\xed\x97\x6b\x80\x07\x14\x29\x5a\xee\x8b\x35\x2a\x33\x65\xc3\x95\xa5\xde\xa5\x79\xce\x22\xd0\x2b\xbf\x51\xf5\xca\xae\x52\x75\x4a\xf5\x7c\x9f\x43\x95\x26\x7c\x1a\xa5\x96\x2e\x02\xbb\x14\xbc\xb0\x7a\xa4\xe8\x96\xd7\x9b\xd3\xad\x89\x1f\x39\x8c\xf8\xb6\x32\x24\x42\xf6\x06\x5b\x2a\xd2\xda\xd8\xb7\xab\x19\x54\x5a\x56\x5e\x37\x20\xce\x39\x01\x16\xa0\x64\xb7\x37\x50\xfc\x0f\x19\xa0\x00\xc9\xf0\xa7\x82\xcd\x15\x84\xb5\x92\xc5\x39\xf6\x82\xe8\x60\xc9\x19\xab\x2a\x8b\x58\x36\x1a\x2c\x27\x5b\x56\x8a\xc4\xc3\x61\x88\xca\x18\x28\x89\x27\x1b\xa1\x37\xa3\x0c\x14\xc2\x00\x4d\x98\xc3\xd9\x9e\x30\x50\xdf\x73\xe0\x2b\x05\xa7\x26\x5d\xfe\xeb\x97\xb9\xa2\xdd\x37\x91\xb4\x67\x7f\xe0\xb6\x46\xd6\xf3\x52\x44\x5b\xe9\xe4\xf1\x2f\xd9\x06\xbf\xec\x52\xc0\x8e\xf8\xf5\xd6\x33\xe0\x8e\xd4\xdb\x58\x09\x9a\xc4\x13\x0a\x97\x85\xf6\x80\x03\xf6\x82\x2b\x1e\x91\xb0\x9f\x5d\xf5\xfc\x6c\xd3\x4a\x9e\xe9\xbf\x7e\x29\x4d\x8b\x50\x0d\x8b\x0e\x4f\x3b\x73\x20\x16\xc3\xf2\xb8\xb7\xd7\x10\x82\x57\x50\xaf\x07\x6f\xcb\xfa\x32\x88\x43\x4c\x57\x3a\x47\x83\x76\x25\xf4\x66\x6e\xbf\x16\xc5\x51\x96\xa9\xab\x84\x80\x6d\x02\xa7\xbd\xdc\x42\xc8\xd4\x7f\x3f\x34\x8a\x70\x3b\xf8\xa6\xf1\xf4\x44\xde\x56\x1f\x32\x91\x70\xf2\xa9\xd7\x4d\xf9\xbb\x02\x7f\x3b\xdb\xa5\xb9\xe5\x1d\xcf\x7d\x23\xb3\x8a\x30\x71\x97\xe9\x6b\xdc\x4a\x2e\x2a\x12\xb9\x3f\x3d\x99\xa2\x54\x7e\xf9\xda\x12\x66\x89\x88\x25\x01\x61\x0a\x48\xc6\x4c\x52\x38\xb9\x2a\x8b\x04\x96\xcd\x76\x7f\xe6\xb5\xa0\xb1\xd2\x22\x48\x1f\x85\x08\x62\x28\xd9\x81\xdc\x0f\x60\x23\x0c\x14\xb2\x26\x3f\x48\x9f\x41\x6e\x60\x2b\x76\xed\x3d\x31\xe0\xad\x7e\xed\x26\x8c\xc1\x30\xac\x62\xe8\x03\x2b\x4d\x4b\xe9\xc9\xcd\x26\x65\x5e\x9a\x31\x3f\x47\xda\xfd\x1a\xa4\x90\x06\x9e\xa4\x70\x03\x2f\x1a\x8c\xe2\x84\x9e\xfe\x43\x44\x0f\xff\xd6\x9e\x20\x0e\x28\xee\x06\x7b\xcf\xcc\x50\xcf\x87\x02\xc2\xcd\xb4\x88\x9a\xa1\xfe\xa7\x40\xa5\x65\xa2\x40\xf5\x2c\x33\x0a\xdc\x5b\x61\xc7\xcf\xe8\x81\x4d\x1b\x38\xbe\xc0\x71\xbb\xf2\x48\x32\x62\xc7\xef\xa6\xed\x95\x1c\xbf\xb7\xec\xa8\xea\xe4\xbc\x4d\x2b\x1c\xe4\x77\x5e\x76\x38\x8f\xf2\x87\xf0\x6b\x7b\x64\xa5\xf6\xee\xab\x97\xcd\x9f\xf3\x41\x02\x73\xbf\x7f\xc6\x11\xba\x20\x71\x82\x32\xff\xa3\xdc\xfb\xa2\xef\x91\x18\xdd\xef\x71\x84\xb0\x7b\x75\x6d\x67\x8f\x1f\xe3\x38\x2c\xbe\xd1\x93\x12\x52\x4e\xf6\xd1\xf3\xfd\x20\x1a\xba\xf3\xdb\x69\x18\xb6\x1a\x36\x25\x83\x56\xc3\x1e\xa0\x88\xa0\xa4\xd5\xb0\x81\xc4\x5a\x0d\xd0\x46\x1a\xd0\x4e\xfe\x42\x58\xc0\x16\xde\xb1\xb9\xbb\x81\xdc\x67\x05\x21\x69\x10\xa3\xbe\x93\x8e\xc1\xc5\x72\x12\xef\x5c\x6f\x52\xcf\xf7\x75\x9a\x03\xef\xf2\xd2\x88\xfe\x5c\xe9\xa2\x8a\x5c\x24\x13\xb9\xa0\x35\xb8\x29\x62\x66\xa9\xa0\x69\x5d\x04\x87\x15\xab\xd7\x89\x23\x5c\x6c\x97\x57\x11\x25\x55\xdb\x94\x20\x42\x47\x74\xc0\x31\x1a\x10\x4c\x67\x1c\xe2\xa4\x2b\x1b\x8e\x55\xb0\x36\xa1\x6f\x3b\xfe\x57\x8f\xce\xd4\x65\x5c\x56\xc7\x5e\x15\x11\x35\xfb\x32\x1f\x09\xcf\xf7\x8f\x83\x08\x95\x03\xb6\x52\x89\x85\x36\x15\x6f\x4a\x67\xdc\x2a\xa5\x96\xab\x92\xfa\xd7\x7c\xd4\x57\x19\x73\x7b\x15\x70\x72\x52\x56\x1c\x89\x95\x80\xc2\xb5\x1e\x37\xd5\x0a\x22\xa4\x0b\x06\x2b\x41\x40\x91\x5f\x59\x5f\x99\x03\x46\xfb\x99\x13\xf8\x42\xa8\xeb\xeb\xd7\x42\xf4\x57\xea\xcd\x61\xac\x5a\x2b\x0d\xa8\x74\x12\x5f\x75\xb0\x72\x03\xd1\xca\x11\x9f\xda\x49\xfd\x5b\x6a\xe5\x86\x29\xdf\x49\x7c\x55\x5c\xfd\x1b\xcd\xeb\x7c\x35\xde\xf1\x34\x05\x9b\x2c\xe0\x63\x8a\x66\x59\x61\x6e\x28\x2d\x5b\x62\xaa\xd2\x8d\xbc\x75\x51\x7e\x66\xeb\x75\xf2\xc6\x45\xfa\x6c\xa5\x65\xeb\x8e\x2b\x52\x17\x80\xda\x28\xe0\x74\x15\xd0\x0d\x9d\x32\xdd\x7e\xed\xba\xac\xa5\xf5\xc5\x55\xd2\xdc\x12\x65\x41\x23\x0a\xc4\x29\x99\x71\xe1\x13\x15\x77\x73\x4d\x66\xf7\xbb\xb9\x0f\xdc\x79\x6d\xf7\xe5\xce\xce\xbf\xd5\xc7\xff\xad\xd4\xc7\xa5\x79\x57\x8a\xba\x63\x2a\x03\x15\x3d\xd9\x76\x98\x23\x1b\x68\x91\xed\xc1\x52\x11\xc3\x0e\x97\x17\xf1\x97\x16\x01\x75\xf5\x17\xb7\x0a\x75\x5d\x57\xed\xa9\xba\x6a\x2a\xe1\x7c\x01\xa9\x76\x89\xcd\x5b\x75\xae\xa0\xa7\xa7\x46\x5a\xe9\x7c\xf7\x0c\xd7\x3b\x35\xf7\xfa\x42\xef\xbb\xe7\xea\xbc\x73\xde\x7a\xcb\xfd\xef\xbe\x0c\x74\x21\x34\x42\x0f\x46\x94\x93\x4c\x05\xde\x10\x66\xf8\x13\x84\x94\x52\xfc\x7f\xa4\x0e\x57\xfd\xde\x81\x33\x4d\xf6\x2d\xf4\x30\xf9\x10\xc5\x0f\x51\xa9\x43\x0a\xb3\x43\xfe\x41\x35\x12\xab\xac\xe8\xdb\x99\x51\xf3\x52\x65\xbb\x98\xdd\x8d\x84\x4e\x6f\x41\x73\xd0\x05\x30\x59\x3f\xab\xa6\xd5\x99\x80\xb5\x70\x4f\x84\xf1\x60\xc1\x8e\xf6\xd1\x6d\x2c\xd2\x81\x72\x8c\xca\xab\x0b\x93\xde\x81\xab\x61\x3f\x44\xcc\xea\xe0\x91\xf6\x70\xcb\xef\xd7\x98\x49\xc4\xa0\x24\xc2\x6c\x97\x3c\x1a\x03\x2f\x8a\x62\x08\x2f\x1b\xc1\xf6\x21\xc3\xca\x92\x47\x77\x20\xfb\x95\x0f\xb8\x2a\x9c\xe3\xb2\xbe\x89\x32\x6c\x96\x98\x4e\xb0\xba\x94\x1c\x9c\x8a\x82\xaa\x76\xd8\x5b\xa4\x1d\x86\x3e\xef\x69\xba\x80\x74\x31\xbe\xf3\x7f\x89\xce\x9c\x9f\xcc\x58\xe4\xbb\x9f\x51\x9e\xaf\x02\x3f\x5d\x36\xda\xa5\x7d\x7c\xfe\x85\xce\xbf\xec\x26\x84\x93\x6a\x99\xba\xe5\xc7\x2e\x43\x4a\x74\x32\x95\xf7\x23\x3a\x10\x11\x0f\xa9\x10\xf7\xa0\xc0\x73\x16\xfa\x71\x60\x27\x8a\x93\xb1\x17\x6a\x46\x4d\x79\x47\xad\x83\xc4\xe3\x16\x31\xdd\x98\x65\xfc\x52\x57\x06\xe3\x1d\x82\x7d\x0a\xa9\xd5\xca\xd3\x74\xe5\xca\x79\xc6\xa4\x97\xdf\xb0\xe8\x5e\x18\xb9\xd7\x99\xa9\xaa\x76\xad\x38\x08\x03\x14\x11\xe1\x74\x61\x96\xd0\x4d\x16\x1b\x2e\x0f\x71\x19\xbc\x05\x39\x2f\x7f\x2a\xb1\x5d\x05\x81\x2f\x58\xbb\x3f\x78\x79\xa8\x42\x2c\x7c\x49\x55\xaa\x50\xe8\x61\xae\xf9\x93\x31\xa3\x28\x6d\xd5\x80\x1c\xb2\xb9\x2d\x43\x54\x0c\x50\x10\x96\x97\x68\x87\x0e\x15\x89\xdc\xe2\x47\x3b\x64\x5a\x3d\x64\x87\x0e\x93\x93\x5c\x62\x87\x5c\x6b\x88\xec\x15\xa8\xd6\x67\xa0\x1b\xb6\xcf\x20\xd1\x1f\x1c\x12\x83\x6d\xfb\x1c\x1c\x7b\x5c\x17\x0d\xa5\x0b\xe1\xce\x07\x0c\xae\x72\xa9\xb2\xf5\x6b\xe5\x24\xf8\x93\xc4\xca\x07\x0a\x53\x1d\x93\x36\xab\x17\xac\x6e\x7d\xa8\xb9\xc5\x14\x6d\x59\x91\xdd\xdc\xb2\xec\x17\xd6\x32\x4c\xd8\x50\x10\x7b\x90\x0d\xea\x80\x8f\x42\x76\x7f\x50\x5c\xe2\xf3\x32\x79\xca\x51\x8e\xae\x4c\xb2\x2d\x10\xc4\xc2\x4b\x06\xb5\x7f\x9b\x66\xc9\xe0\x6c\x34\xad\x5f\xd9\x68\x5b\x4c\x64\xfe\x97\xc0\xa7\x90\x2d\x21\x8b\xff\x4b\x5a\x60\xb0\x2d\x2e\xe6\xff\x4b\x9a\x48\x38\x3b\x5a\x28\x92\x3e\x73\x73\x48\xab\xc5\xc5\xb2\x5d\x52\x5e\x37\xb2\x6f\xf0\xc8\xee\x0a\x0b\x8b\xbb\xe8\xe2\x05\xaf\x17\x13\xaf\x5d\xd2\xe6\x28\x77\x49\x57\xcd\xaa\x8b\x98\xf0\xba\x05\x54\xaa\x61\xac\x84\x5f\x39\xcf\x5c\xb6\x87\x66\x3c\x47\xbb\x5c\x5f\x74\x38\xc9\x5d\x67\x57\xca\xf4\x03\xf2\xc8\xec\x0e\xce\xd1\x80\x98\x0d\xbb\x51\x32\x21\x65\x23\x63\x95\x1e\xa2\x84\x09\x43\xfb\x87\xef\xfd\x73\xf0\xf2\x0a\xf0\x4c\xba\x07\x62\x64\x01\x35\x9a\x79\x1e\xaa\xc3\x00\x5d\x5b\x3b\xa7\x16\x47\x96\x50\x38\x41\xe6\x4c\xa1\xfa\xd3\x7d\x38\xe5\x4c\x98\xc4\xaa\x06\xe0\xae\x08\x60\xf1\x59\xb2\xb9\xe0\x2c\x29\xed\x1b\x32\x78\x59\x9a\x13\xf2\xe8\xdc\x06\x61\x08\xd7\xba\x2e\xd2\x74\xc8\xe2\x1b\xcc\xad\x7f\x85\x24\x96\x8a\xba\xcd\x56\xef\xff\x2b\x38\x48\x51\xc7\xb6\x60\x67\x2a\x65\x4e\xd6\xc6\xa0\xbc\xf9\xcd\x2d\xcb\x0e\x7f\x02\xb3\xbc\x42\x6f\xa3\x80\xaa\xf5\x6c\x5c\xd7\x2b\x70\x2d\x98\xe5\xa8\x69\x14\xca\xa7\x15\x09\x4f\xde\xf2\xef\xd5\x73\x4e\xca\x2a\xb2\x6f\xf6\x4f\xd8\x02\xfd\x90\xcb\xa5\x6e\x48\xf3\x3c\xc3\xa0\xb4\x5d\xa5\xaf\xfa\x22\xec\x88\x47\xa5\x76\xc4\xa3\xca\xdb\xca\x32\x93\xe1\x5d\x5a\xbe\x68\x77\x5c\x65\x49\x7c\x6d\x7f\xb1\x52\x7b\xeb\xf5\xee\xbf\x43\x96\xfd\xf7\xd2\xfa\x76\xf3\x39\x3f\x16\x59\x0b\x33\xf5\x2e\x37\x17\xde\xc9\xcc\x85\x8b\x40\xd8\x05\xf6\x10\x11\x23\xc0\xfc\x2b\x08\xc6\xba\x8b\x7c\xf6\xa9\x42\x95\x1a\x09\x6e\x22\x12\x2e\xc8\xb3\x8c\x92\xab\xe4\xf7\x00\x3d\xfc\x60\xe4\xb2\x2c\xf2\x69\x45\xd4\x32\x71\x4f\xa8\xa0\x9a\xed\x4c\x01\xbe\x40\x90\xaa\x55\xe9\xbf\x6a\x1c\x2c\x5f\x0a\x4b\x11\x1e\x97\xab\xd5\x80\xf4\x39\x0d\x11\x85\xcb\xf7\x88\xd7\x09\x13\xe4\xf9\xb3\x0b\x14\x11\xe6\x3c\xa4\x54\x87\x4a\x52\xbc\xd1\x50\x69\x54\x37\xc6\xd8\xbe\xab\x8f\x1f\x4b\x58\xa1\x5f\xd0\xe7\x86\x52\xf3\x73\xa2\xa8\x2c\xc0\xb2\x02\x42\x5e\xe1\xca\xf6\x14\x16\x3a\x44\x96\x64\x09\x09\x94\x7d\x7b\x01\x1a\x2c\xfe\x3a\x6b\x8d\x27\x32\xc8\x4a\x4b\xe7\xb5\x62\xc4\xa6\x22\x68\x39\x3a\x28\xf2\x17\x8d\x4d\x6a\xd9\x0d\x0d\x5d\x14\xf9\x72\x0a\x6e\x83\x08\x12\xd4\x29\x48\x80\x06\x20\x4b\x97\xa3\x86\x3a\x90\xd3\x25\x76\xb0\x32\xba\x81\x1a\x5b\x5b\xaf\xd5\x54\x0e\x5a\xce\x83\xe7\x65\x81\xc8\x87\xb7\x2f\xc5\xb8\x29\x73\xc2\x6c\x6d\xbd\x5e\xd3\xa0\x71\xe4\x99\x57\x4e\x27\x9a\x5d\xf2\x31\x62\x0a\x12\xcc\x5d\xbe\x4b\xc1\xaa\x9d\xaf\x26\x0c\x99\x4d\x50\xd2\x46\xf9\x4a\x43\x99\xfe\x84\x2f\x9e\x25\x04\x0f\x4b\x6b\xe1\xb4\xf3\x0c\xd5\x15\xcb\xb7\x51\x24\x22\x65\x2e\xcb\x26\x8e\x65\xc7\x58\xcc\x12\xb8\x10\xb6\xee\x96\xae\xa5\x4c\x6b\x51\x18\x83\xbd\x52\x1a\xc5\xd3\x1b\xcc\xdc\x1a\x91\xe8\x35\xed\x99\x70\xa4\x5d\x56\x9a\x32\xfe\xcc\x67\xb1\xc0\x0b\x2b\xf2\x19\xa4\x6c\x4d\x80\xc9\xe1\xc2\xde\xe6\x4e\x1f\x95\xd8\x2c\x9b\xc9\x85\xb3\x28\x4f\x3e\x8b\xf0\x66\x89\x8f\xd2\x05\x74\x3c\x5f\x84\x6b\xbb\x8c\x14\xd6\x0a\x73\x94\xb7\x7e\xd6\x81\xd8\x81\x4b\xc9\x7d\x12\x7a\x03\x2a\x72\x40\xae\xa0\x76\x39\x4b\x0d\xb2\x79\x11\x7c\x68\x6f\x85\x5e\x06\x90\xbe\x47\x54\x7d\xf3\x9c\xaa\x7f\xfd\x32\xf7\x9c\x6e\xc3\x39\xe8\x1d\xa7\x7f\x69\x60\x80\x9b\x08\xb5\x37\x8f\x2f\xf5\x4c\x4a\xa9\xe6\xd4\x15\x0c\x52\x79\x5b\xaa\xe2\xcb\x52\x84\x8a\x3b\x8e\x9c\x76\x35\xb3\x45\x2b\xad\xff\x58\x26\x24\x80\x19\x31\xf8\x98\x3e\x33\x90\xba\x1d\x2c\x8c\x80\xf5\x4c\xa3\x55\x1b\xcb\xb0\x03\x2b\x1a\x64\xb6\xcb\x79\xac\x62\xe3\x89\xa5\xa5\xf6\x82\x92\x24\x9e\xb8\xc1\x2a\x05\x45\x90\xb0\x55\xca\x2a\x26\xe1\x2b\x95\xbf\x8d\x23\xf2\xce\x1b\x07\xe1\x6c\xb9\x8b\xad\x2c\xba\x14\xe2\x45\xf0\x1d\xad\x04\x8f\x16\xe4\x68\x4a\x87\xf7\x72\xe0\x43\x44\xf6\xe9\x01\x9c\x32\x3d\xd0\x75\x81\x2a\x41\x2c\x68\xb9\xf2\xab\x27\x21\x57\xa4\x64\xf4\x73\x25\x14\x15\xe0\xd8\x7b\x34\x13\xae\x82\x6a\x5a\x0b\x6b\xa9\xea\x3a\x56\x8d\x93\xd9\x92\x7a\xca\xc4\x25\xba\x39\x75\x8a\x9e\x9e\x4a\x23\x62\x56\x2f\xf3\xb5\x86\x05\x8c\x00\x0e\xbd\xc5\x43\xc2\x48\x1c\x78\xe3\xd2\x03\x6f\x5c\xed\x38\x9b\x71\x20\x76\xd6\xad\xb0\xd7\x7d\xfd\xaa\xf1\x42\xda\xeb\x8a\x73\x93\x11\x88\x93\xad\x88\x1f\x1f\x54\xcd\xaa\x9d\xb8\x88\xdd\xbf\x8f\x27\x53\x82\x7c\xe6\x29\x10\x58\x76\xe4\x4e\xbc\x04\xa3\xa3\x88\x98\x90\xaa\x45\x9c\xb6\x7e\xa7\x0c\xdf\xec\xd7\x26\x4c\x51\xb9\xc1\xad\xb8\xe9\xe9\x69\xb5\x0a\xe0\xa7\x62\x89\xe3\xe3\x95\x50\xa8\xfe\xb1\x81\x81\x98\x36\x22\x5b\xbc\xfa\x73\x03\x53\xe2\xd9\x88\xaf\xd3\x1f\x3a\xf8\x41\xb7\xe2\xc4\xc7\xae\xf2\xfb\x1c\x85\x1e\x15\xc7\x2e\x63\x61\x93\x22\x2d\x94\x17\x94\x09\x34\x70\x9a\x4a\x00\x0e\x71\x76\x6c\x7b\x2c\x20\x35\xdd\x3e\x63\xdd\x34\x3e\x74\xd9\x7c\x60\x79\x66\x0e\xf7\xcc\xf0\xaa\x71\xad\x5c\x86\xc1\xf3\xba\x39\xd8\xf3\x36\xb7\x5a\x0d\xcb\xda\xf4\x2c\x3b\xbc\x6a\xaa\x45\xe8\xe3\xe6\x88\xbe\x16\x35\xff\x7f\xf6\xfe\x45\xbb\x6d\x1c\x59\x14\x86\x5f\x45\xf6\x64\x74\x88\x08\x62\x93\xb2\xe5\x8b\x64\xd8\xc7\x71\x92\x8e\xa7\x73\x5b\xb6\xbb\x33\x73\x2c\x2d\x87\x96\x20\x8b\x13\x8a\x54\x93\x94\x2f\x6d\xf3\x3c\xcb\xff\x2c\xff\x93\x7d\x0b\x57\x02\x24\x48\x49\x4e\x66\xf6\x3e\x7b\x7a\xd6\x9a\x8e\x45\x00\x85\x42\xa1\x00\x14\x0a\x75\x21\x67\x81\x64\x7f\xf2\x19\xba\x00\xc6\x04\x8a\x4b\x60\x28\x00\x0a\x35\x5d\x5a\x33\x04\x30\xc8\x73\xa8\xc3\xfd\xae\xc3\xd2\x4f\x40\xff\xd9\xc6\xdf\x44\xe2\xbd\x88\x4e\x70\x10\x9c\xe3\xdf\x17\x38\x1c\x61\xfd\xb2\x9d\xc8\x8b\xb5\xe4\xd5\x38\x57\xac\x88\x7d\x09\xb7\x43\xe6\x85\xe1\xa1\xb4\x1d\x52\x95\x03\xe4\xef\x6b\xde\x75\x62\xc5\x6d\x0f\xb4\x8b\x3a\x1c\x96\xac\xde\xe9\xd7\xc0\x90\xd1\x38\x42\xe4\xf4\xc3\x03\x0d\x5e\x3f\xcc\x23\x73\x78\x88\xa6\xc1\x47\x08\x45\x74\x65\x1d\xb5\xdd\x9e\x0b\xa7\xc8\x2f\xe7\x5d\x8a\x5b\xde\xcb\x10\xf4\xa7\x4a\x80\x8e\x66\x33\x69\xb5\xc4\xad\x23\xc9\x38\x7e\x62\xe6\x47\x56\x00\xa7\x16\x83\x0b\x13\x00\x32\x49\x87\x50\x89\x4c\x82\x1c\x48\x98\xb6\xd4\x1d\xd9\x0b\x50\xa2\x46\x03\x21\x43\xea\xc7\xcd\x26\x3e\x44\x4e\xb3\x89\x0f\x52\x96\x82\x09\xf8\xad\x96\x19\x44\xbb\x5d\x06\x22\xbc\x90\x72\x64\x22\x4d\x1f\x83\x0f\xd3\x23\x4a\x92\xde\x60\xf3\xd5\x60\x33\xaf\xe6\xe9\x8a\x0c\x82\x7b\x84\x30\x21\x39\x9c\xb2\xd8\x2a\x14\xbf\x68\x03\x21\xff\xe9\xc9\xdb\x40\x28\xe9\x83\xa8\x85\x62\x1a\xf3\x02\xc6\xcd\x66\x74\x18\x72\xe9\xe4\xc8\x9a\xb6\x50\x28\x10\x96\xd1\x4d\x72\xa5\xae\x8c\x73\xe2\x41\x72\xdd\xa0\x6a\x25\xe4\x40\x8c\x1c\xe8\xb5\x5a\xa0\xb7\x41\xc0\x1d\x38\xcd\xe6\x7a\x80\x1c\x88\x5b\xd4\xdc\x4f\x20\x02\x31\x8a\xa0\xd7\x6e\xcb\x39\x9b\xb6\xd6\x43\x2b\xa7\xcf\xb4\x10\x5a\xe3\x68\xb0\xf9\x89\x52\xf1\x72\xb0\x29\xa0\x27\x22\x2d\x91\xdf\xc2\x79\xcb\x11\xb7\x81\x55\x9f\xd4\x31\x53\x47\xf9\x39\x65\x05\xd3\x27\x07\xb8\x9f\xb4\x5a\xc0\x6f\xa1\x34\x9f\x4d\xe3\x72\x2c\xab\x33\x19\x76\x51\xce\xde\xf7\x30\xc8\x7f\xb0\x0c\xba\xf2\xe7\xd4\xe3\x11\x5c\xae\xbd\xd1\x37\x50\xd4\xd7\x09\x6e\x88\x60\x20\x99\xc7\x41\x08\xc5\x56\xca\xbf\x0a\xc1\x9d\x7a\xeb\x8c\x2c\xc6\x40\x18\xb2\x25\x1a\x91\x3b\x37\x8c\x44\x25\x38\xb5\x06\x9b\xaf\x07\x9b\x30\x00\x20\xb3\x22\x18\x40\x87\xe3\xdc\x8a\xad\x40\xfc\x69\xee\x9c\x50\x66\xdc\x1f\x97\x7b\x3e\x74\x8e\x92\x76\x68\x25\x30\xca\xf3\xab\x5c\xa1\x04\x2e\x4a\x94\x21\x7b\x3a\x03\x34\x95\x9c\x80\x62\x4b\x94\x98\xe0\x41\x7c\xe0\x37\x9b\xd3\x03\x94\x3c\x3d\xe1\x43\x44\xff\x4e\x8e\x06\x9b\x27\x74\xd2\x5f\x0f\x36\x33\x0d\xcb\x7c\x53\x20\x74\x18\x43\x1f\x5e\x41\x5a\x19\x21\xb4\xd0\xe8\xb0\xc8\x69\x20\x55\xba\x6c\x88\xfe\xc4\xa2\xb1\x97\xc5\x5c\x8c\x51\x74\x88\x8f\x68\x67\x3d\x0a\x0b\x8e\xf2\x00\x35\x11\x59\xfc\x53\x6b\x4c\x76\x9e\xfe\x18\x05\x74\x5d\xcb\x9a\x92\x1a\xb2\x7e\xd0\x4e\x15\x24\x8d\xba\xda\x94\xad\x1a\x9c\x59\x04\x1a\xee\x45\xd0\x07\x2d\xeb\xaa\xed\x82\x97\x3e\x2d\x6a\xb9\x2d\x8b\x96\x45\x3d\x0c\xc8\x25\x84\xf7\x9f\x65\xd0\xed\xec\xef\xfc\xa9\x8c\xff\x8f\x52\xc6\xbf\x8e\x66\xd5\x86\xd7\x5b\xbb\x7b\xbb\x42\x0d\xdf\x75\xb8\x1a\xbe\xd3\xd9\x62\x96\xd7\x3b\xee\xae\xcb\x72\x88\xec\x38\xdd\x0e\x91\x08\x84\xe2\x7e\x8c\x7c\x6b\xcf\xe9\x76\x01\xbc\x92\x49\x47\x16\xc2\x68\x7b\x22\xb5\xfa\xb7\x48\x1a\xc6\x46\xb3\x76\xcc\xd1\x68\x47\x77\x21\x8e\xdb\x83\x4d\x38\x97\xe5\xe4\x0c\x1d\x6c\xc2\x1b\xf9\x61\x72\x43\x2a\xcc\xe4\xef\x6b\xfa\xfb\x3c\x2f\x67\x99\xeb\xe0\x89\xfc\x22\xb3\xf8\x0d\x36\xe9\x4a\xbd\x46\x2e\xbc\x43\x3a\x01\x74\xf3\xed\xc5\xf2\xa4\x27\x1e\x0c\xe0\x18\x4e\xe0\x0d\x9c\xc1\x73\x78\x57\xb4\xc1\x4e\x45\x32\x31\x99\xa8\x8b\x9b\x11\xcb\xb7\x83\xa2\x0b\xac\x6e\x9d\x5d\x61\xb5\x2b\x1f\x0e\xa6\xf4\x52\x73\x22\x43\x82\x78\xb9\xeb\xdd\x37\x1a\x09\xaa\x83\x44\x3e\x8f\x62\xc6\x94\x89\xf9\x99\xe2\xc6\xf8\xa6\x31\xab\x36\xe4\x3e\x17\x43\x55\xe2\x01\xa1\xbb\xc2\xf8\x4f\x08\x5d\xd1\x75\xab\x25\x1e\x3c\xa2\x3b\x19\x14\x45\x7a\x11\xca\x09\x62\xd3\xf1\x21\x1a\xe3\x00\x59\x0e\x1c\x71\x9b\xeb\x73\x43\x39\xb0\x8a\x99\x41\xce\xf0\x38\xf6\xee\x0c\x09\x45\xae\xf4\x84\x22\x6a\x6e\x10\x96\x8a\x49\x10\x51\x9f\xa9\xfa\xe8\x2a\x6a\xc3\xc2\x13\xc4\xdc\x58\xa7\x74\xe3\x1d\x6c\x32\xbb\x1e\x79\x39\xd6\xab\xe3\xf4\x38\x4d\x63\xff\x7a\x41\x73\x4a\x7b\xb1\xef\xb5\xa7\xfe\x78\x8c\x43\x16\x62\x20\x5e\x94\x9d\xce\xcf\x72\xe2\x1a\x15\x53\xe4\x0c\x30\x2a\xa5\x78\x48\x32\x7d\x32\x9e\x47\x97\x72\xf3\x02\x75\x4e\x6a\x6a\xae\x33\xe8\x5c\x53\x45\x58\x65\xca\xb1\x3a\x2b\x44\xff\x96\x6c\x72\xb5\x28\x3c\xfe\x97\x8c\xc5\x8d\xaa\x9b\x28\xd4\x8c\x42\x15\x5b\x4d\xa6\xe5\xe5\x3a\x03\x1e\xc5\xa2\xda\xcc\x59\x5d\x24\xd5\x29\x48\xfc\x90\xec\xe3\x27\x34\x0f\x76\x6e\xfb\x99\x7f\x35\xc0\xd2\xd2\x9c\x10\x16\x7a\xeb\x91\x9d\xea\x01\x8d\x39\x45\x4e\xa9\x9d\xd3\x08\x5b\xa1\xba\xe1\x9d\xc9\x8a\x50\xcc\x2b\xd0\x37\xa6\xc2\xb4\xdd\xb6\x0c\x0b\x7b\xd5\x60\x41\x2a\x67\xaf\xda\xa6\xcc\x1e\x66\xca\xe6\x3b\x9e\x1d\x85\xe7\xd3\xe8\xee\xbd\x1f\x7e\xfb\x95\x8c\x92\xac\xb5\x52\x7e\x17\x52\xfa\x2e\xba\x65\x69\xbe\x2b\x26\x4b\x03\xf9\xce\x1f\xe3\xe5\x20\xdf\x63\xef\xd6\x9c\x30\xc6\x72\xe0\xa2\xc6\x07\xa1\x4c\x6d\xfe\x58\x55\x4b\x70\x6d\xab\x28\x38\xba\x1b\xd6\x55\xa1\x06\xd5\xe9\x9d\x78\xa3\xa9\xe2\xf6\xae\x6d\xe6\x64\xab\x12\x33\x53\x74\xa3\x97\x0b\xc8\x58\x2b\x37\xba\x56\x7a\xa1\xce\x3d\x91\xfd\x45\x7e\xb0\xf4\x1d\xc5\x7c\xa6\x19\xb0\x4d\x70\xfa\x36\x0a\xd3\xa5\x01\x77\x4b\x5a\xdb\xe5\x0a\xd9\x95\x2a\x7e\x51\xf3\x7e\xac\x52\xf5\x55\x14\x8c\xf3\x79\x11\x31\xac\xcf\xe7\xde\x88\x5b\x16\x96\x77\xa5\xc7\xa2\x35\x9d\xc9\xa0\xb1\x5f\xd8\x02\x65\x92\x83\xa9\xc7\x55\xb6\xc8\x78\xf8\xb3\xb2\x97\xb8\xb8\x85\x6a\xed\x55\x6d\xae\x6a\x1e\x6e\xcc\xd6\xf2\x12\x97\xf6\x63\x2d\xe3\x82\x82\x4c\x1d\xba\xad\x92\xa9\x67\x35\x79\x03\x4c\xce\x71\x4e\xc4\xfa\xde\xd5\xa1\x28\x66\xbd\xb5\x03\x5f\x1a\x87\x32\x3f\xc3\xab\x3b\x27\xe0\xb8\x65\x7b\x5d\x95\x34\x4f\x58\x64\xa8\xa1\x5a\xe5\x2e\xa5\xb1\x31\xf6\x6e\x7e\xe2\x57\x82\x57\xb3\xb1\xd4\x52\xb1\x32\xb8\x6f\xa9\x83\x62\xe2\xe4\x92\x1d\x6f\xfd\x58\x7f\x32\xb0\x54\x29\x6b\xc8\xea\x30\xb9\x31\x7f\x15\xd0\x6a\x26\x2d\x0e\xc3\x68\xc9\x68\xa4\x70\xe1\xb5\xad\x0e\x72\x8d\xab\x01\x55\x1f\x1a\x4d\x79\x15\x29\x1a\x60\xa3\x89\x77\xcd\x30\xa8\xb5\x35\x36\x1b\x69\xd7\x87\x4e\x92\xad\x0c\x31\x98\x56\x6c\x49\x4e\xde\x49\x10\xdd\xa1\xc1\xa6\x10\xec\x4a\x81\xc5\xd4\x83\x45\x1a\x87\x98\x8b\x97\x89\xa6\xb4\xd3\xd5\x83\x1a\x9a\x3b\x01\x79\xfa\x13\x69\xcc\x2e\x4e\x65\x76\x35\x89\xe2\xac\x61\xbf\x78\x9c\x67\x8d\x64\xee\x85\x8d\xc7\x06\xf7\x4a\xeb\x35\xfc\x90\x86\x75\xa2\x5e\x65\xfd\x06\x23\x48\xaf\xe1\x3a\xce\x5f\xfb\x8d\x5b\x1c\xa7\xfe\xc8\x0b\xda\x5e\xe0\xdf\x84\xbd\x46\x1a\xcd\xfb\xd9\xd7\x5a\x72\x68\x76\x4a\x69\x8d\x20\x5d\x4e\xb4\x64\xce\x0d\xa7\x65\xb2\xd2\xc9\xf3\x1c\xb6\xaa\x86\xb3\x84\xd1\xd4\xc5\x40\x20\x65\x9a\x2c\xfc\x58\x21\x9c\x48\xee\x28\x95\xfc\x60\xc6\x28\xc1\x07\x80\x47\xc3\x5e\xca\x11\x8f\x0d\x16\x2b\xa3\xf1\xe2\x11\xdb\x93\x28\xc6\x4a\xe2\xbd\x7e\x83\x88\x0a\xed\x09\x15\x55\x48\x8d\xd5\x05\x1b\xd1\x36\xf1\xff\xc0\xab\xb6\x24\xa7\x77\x36\xbf\xe7\x2d\xbf\xe1\x38\xf4\xc3\x9b\x5e\x23\x8c\x42\xdc\x6f\xdc\x4d\xfd\x14\xb7\x93\xb9\x37\xc2\xbd\xc6\x3c\xc6\x84\x13\x5b\xcb\x87\x67\x73\x35\x8e\x3f\x53\x47\x3a\x66\xf7\x12\x7b\xb6\x08\x52\x7f\x1e\x3c\x7c\x22\x87\x75\xfa\x60\xa9\x14\x80\x76\x17\x30\x2a\x64\x5f\x61\x7d\x57\x64\x55\xf5\xc2\x28\xb5\x78\x6f\xd7\x44\xac\x6a\x3c\xb2\x71\xdc\xf1\x45\xb5\x1a\x0d\x98\x5c\x96\xf5\xb3\xfa\xde\x94\x8e\xbe\xa7\x1f\x22\xff\xad\xda\x97\x9f\x7a\x81\x3f\x12\xbd\x51\x06\xed\x35\xd8\x47\xb2\x2d\x88\x97\x8b\xaf\xd7\xe4\x7a\x72\xb5\x10\xd7\x91\xab\x22\x70\x7a\x51\xc8\xbe\xc2\x44\x54\xbd\xf6\xe2\xca\x4a\xb1\xac\x44\x76\xa8\xaa\x6a\x94\x13\xfe\xf7\x37\xfc\x30\x89\xbd\x19\x4e\x1a\x2f\x1e\x7d\xc2\xd8\x5d\xe7\xaf\x8d\xc7\x46\xe3\x3a\x8a\xc7\x38\x6e\x5f\x47\x69\x1a\xcd\x04\xe2\x6c\x77\xef\x37\x32\x3e\xb9\x5a\xeb\x44\x6b\x7d\xdf\x4e\xa6\xde\x38\xba\x13\x9c\x68\x6c\x12\x93\x26\xbc\x85\xcc\x5e\xd9\x56\x96\x16\x0b\x73\xcf\x97\x55\xa3\x54\x70\x3c\x1a\xd1\x7d\x80\x16\x67\xb2\xf3\x12\x28\x3f\x9c\xe2\xd8\x4f\x4d\x20\x44\xe3\xa5\xec\x4a\x57\x86\xfd\xe2\xf1\x5c\x2e\x0f\x0e\x40\xfd\xd1\xa6\x74\xd7\x3f\xc9\x49\x6d\x3c\x36\xa4\x51\x7f\x8f\x91\xdb\x4d\x1a\x49\x8a\xe7\x6d\x1c\x8e\x1b\x7e\x38\xf1\x43\x3f\xc5\x75\x9c\xf5\x6c\x24\xae\xbd\xb8\xd8\x7d\xf2\xef\xec\x9e\x30\x62\x11\x81\xf8\x99\x08\xd4\xf7\xcd\x3a\x5a\x81\x9d\x6a\xb9\xe9\xbb\x71\x50\x77\x36\x95\x2e\x60\x15\xe4\x1a\x1b\xfe\x8c\x1c\xeb\x5e\x98\xd6\xe3\xa9\x56\xfc\x1e\x94\xa3\x45\xca\x39\x94\xff\xd5\x6b\xb8\xf3\xfb\x46\x12\x05\xfe\xb8\x4c\x39\x5e\xa7\xcd\x12\xdc\xf5\x1a\x6d\x77\x7e\xff\x7d\x14\xa3\xdc\xa9\x6e\x1a\xcb\xf7\x63\xd6\xf4\x0b\x97\x52\x1a\x4e\xc3\x29\x51\xd1\x0f\x13\xfc\x7d\x74\x51\xd7\xae\xb6\x23\x32\xfa\x94\x28\x63\xdc\x35\x29\x15\x73\x39\x71\xe4\x05\x23\x8b\x08\x8b\x8d\x36\x01\x02\x96\x9f\x94\xf6\x8b\xc7\x13\xb2\x53\xca\xa0\x5b\x0d\xef\x3a\x89\x82\x45\x8a\xfb\x44\xbe\xec\x35\x9c\x7e\x83\xba\xeb\x92\x3f\xfe\x68\xfb\xe1\x18\xdf\xf7\x1a\x6e\xbf\x31\x8f\xfc\x30\xc5\x71\x9b\x2a\xc7\x13\xbe\x15\x57\xd3\xc3\xa6\xcf\x2c\xbc\xbb\xb1\x7f\x5b\xd1\xa5\x99\x7d\xa5\xc0\xfa\x4a\x16\x7f\x9a\x7b\xbf\x2f\xf0\x2a\x0b\xea\x7b\xfa\x3b\x0d\x79\x3a\x49\x73\xbf\x5f\xf3\xdb\xd6\xa5\x0f\x93\x61\x34\x69\x60\xdb\x0b\x13\xdf\xc6\x61\x1a\xfb\x38\xb1\x00\x58\x4a\xfe\x9b\x8c\x9f\x8e\x12\x81\x44\x1c\x1c\x2b\xb4\x5b\x4f\x9c\x4a\x72\x19\x6a\x09\xf4\x99\xc0\xca\x44\x21\x89\xe0\x0a\x22\x1f\x41\xd3\xb3\x4f\x3f\xfe\xf6\xe6\xec\xe2\xcd\xeb\xab\xd7\x6f\xde\x1e\xff\xfa\xfe\xe2\xea\xe4\xd3\xfb\x4f\x67\x99\x09\xe7\x88\x52\xd8\x52\x93\x4e\xaf\x86\x72\x6d\x4f\xeb\xd1\xa9\x0e\x97\xb5\x48\x58\x37\x72\x33\xef\x95\x24\xfe\xec\x6b\xa5\xaa\x55\xbb\xdc\x65\x26\x85\xa1\xae\x1c\xac\x54\x65\xb4\x4b\x9a\xd3\x1b\x4c\x6e\x3d\x5f\x06\x9b\x70\xc3\x85\x1b\xae\x30\x21\x35\xbd\x50\xa9\xda\x35\xc2\x0c\x58\xb9\xd9\xe5\xef\x0b\xf6\x58\x43\x0d\x61\x9e\x54\x85\xe5\x52\xa5\x79\xaf\xce\xc8\xf1\xcd\x1f\x4e\xc4\x15\xae\xea\x15\x46\xc5\x95\x7b\x31\xd7\xa9\x4d\x0d\x0f\x5e\xf4\xa1\x5c\x58\xe2\xc8\xe0\xeb\x79\x05\xfe\xb2\xdf\xc7\x07\x28\xed\x63\x35\xf9\xd3\x92\xab\xa2\x08\x17\x5e\x26\x98\x7a\x4f\xc4\xa0\xfc\xc2\x29\x92\x36\x65\xd4\xf4\xaa\x0a\xa3\xc3\xb4\x0f\x2a\xb5\xfa\x85\x57\x94\x1c\x72\x34\xb7\x80\x48\x83\x78\x86\xc9\x2d\x50\xf5\x87\xad\xa0\xcf\x92\xa7\x30\x9e\xe3\x56\xaa\x13\xf8\xa3\x56\x41\xcb\xa0\x3c\xc2\xe6\x3b\xeb\xb9\xe2\x43\x51\x5f\xf3\x4d\x38\xae\xab\x37\x8a\x82\xc5\x2c\x64\x38\x90\x2f\x62\x8c\x22\x7d\x8d\x7c\x69\xfb\xa1\x0c\xc5\xfa\x78\x15\x2c\xf2\x08\xb1\x15\x0f\xbc\xfc\xa1\xe3\x5c\x3e\xf3\x10\xd4\xcf\xa2\xbb\xc4\x72\x2a\x9f\x56\xdb\x32\x61\xe5\x5b\x72\x6a\x2e\xeb\xc2\x1b\x8f\x4d\xf0\x4d\xd0\x85\x65\x98\xb1\x6b\x51\x28\x3a\x2f\x4d\x2c\x37\xf3\x91\x6e\x10\xc6\x97\x23\xea\x4a\x42\xd9\x30\xc6\xa1\x55\x7e\x68\xac\xe2\x1a\x06\x7c\x3d\x2a\xc1\x0d\xfc\xf4\x94\x87\xb3\xae\x61\x13\xee\xcf\xa7\x6f\xd7\x90\x1b\x78\x0a\x03\xd7\x9a\xf6\x42\x1b\x46\xf9\xf6\x2c\xba\x83\xf1\x2a\xb5\xdf\x84\x63\x52\x37\x5c\xa5\xee\x09\x35\xe8\x94\xf0\xa3\xd5\xdb\xb0\x5e\xfa\xfe\xc4\x0a\xab\x83\xbb\x3f\x3d\x45\x07\x8e\x6e\xdc\xec\x99\x77\x32\x11\xc0\xee\x6d\xec\xdd\xcc\x58\x46\x62\x7f\x62\xf9\xb9\x2d\x24\xbe\x74\x86\x87\xe9\xa5\x33\xec\x7b\xa6\x44\x2f\xba\x09\x86\xd8\x17\x43\xe8\x1f\x91\x36\x3d\xd2\x1a\xfa\x47\xe4\x9f\x1e\xf9\x00\xa3\x76\xd8\x72\x01\x77\xdd\x12\x7d\x24\x08\xa1\x90\x55\x72\xe0\x14\x85\x08\xa1\x98\xb5\xaf\x52\xaa\xaf\x89\x0c\x9c\x82\x3c\xa4\x5d\xd4\x0e\xdb\xd4\x8f\x71\x1d\x18\x2d\x17\x9a\x99\x93\xaa\xf8\x47\x00\xc0\x70\x03\xa1\x28\x3f\x37\x62\x84\x50\xf4\xe3\x06\x11\x41\x07\x62\x00\xb2\xac\x72\x31\xaa\xa0\x3c\x99\x17\xa3\x04\x88\x1b\x29\x21\x37\x37\xe3\x5e\xe9\x88\x23\x7c\xfd\xb2\x5e\xb0\xe8\x33\xbb\xe2\xfa\x4a\x2f\x2d\x5f\x31\x56\x0c\x5b\xd1\xe1\x32\xdd\x31\x35\xad\x5b\x56\xa9\x1d\x02\x58\xd0\x6c\x27\xd5\xe8\xea\xc1\xf9\x63\xc5\x01\x06\xaf\xdb\x88\xbe\xe3\x7d\x7d\xf1\x18\x52\x41\x28\x2e\x2a\xc6\x23\xf6\x59\x9c\x53\xf4\x8e\x47\xb3\xca\x81\xc7\xac\xc2\x4a\x64\xd9\xd9\xb5\x86\xc5\xc7\xff\xe4\xd7\x71\x11\xb2\x7d\x85\x37\xb0\xd2\x39\x95\x29\x67\x8e\x21\xa9\xa2\xe9\xa4\x84\x09\xf2\xed\x87\x6b\x2f\xc1\x2d\xdf\x7e\x80\x71\xee\xaf\xe1\x2f\x71\xe6\x0b\x97\xfa\x7d\xb1\xab\xff\xab\xc0\x0f\xbf\xc9\xa3\x60\x59\x6d\x7a\x37\x80\xde\x8a\xb5\xc5\xdd\x96\xb6\x92\x26\xe9\x53\x84\xfb\x53\x22\xf1\x4e\x55\x89\x77\x4a\x06\x38\xf6\x93\x79\xee\x86\x98\x53\xf3\x72\x3a\x84\x23\xe4\x6b\xbe\x0e\xd4\xf2\x3c\x7d\x7a\xda\x18\x81\xeb\x18\x7b\xdf\xfa\x69\x89\xe2\xb6\x6d\x97\x44\x03\x6e\x93\x15\xdd\x59\x23\x88\x21\x46\x08\x51\x83\x6d\xea\xa6\x53\xbf\x87\x94\xb8\x1b\xb6\x5d\xd8\x26\xc7\x0a\x4d\x18\x50\xba\xa1\xc9\x68\x0f\x5f\xed\x17\x8f\xb7\xa5\x8b\x1c\xd7\x63\x67\x06\x23\xa0\x47\xc9\x7f\x27\x38\x08\x72\x2b\x1f\x6c\xdf\xbb\x10\xdb\xf7\x1d\x88\xed\x07\xf2\xd7\x03\xf9\x8b\x9e\x05\x34\xfe\x5e\xd9\xf6\xe7\x39\x90\x5c\x90\x19\x1a\xa8\x9e\x1c\x3e\xf5\xa3\xc0\xc8\x01\x30\xa1\x7f\xa6\xc8\x11\x27\x9d\x39\xed\x2d\x13\xa6\xfa\xbe\x21\xad\x32\x35\x3a\x26\x90\x0c\x65\x09\x2f\x53\xf8\x3e\xae\xe4\x7a\x50\x90\x39\x8c\xeb\x69\x8a\x3c\xbe\x9e\x3c\xfb\x01\x8e\x72\xb8\x9e\x7d\x0f\x63\xb2\x70\x82\xb5\x16\xce\x78\xad\x85\x73\xf5\x5d\x0b\x27\x42\x7e\x3f\x3a\x40\x49\xbf\xd5\x92\x47\xfe\x02\x45\x64\x24\x74\xe1\x4c\x0c\x0b\x27\x1a\xc2\x5b\xe4\x29\x0b\x67\xc1\x16\xce\xe4\xe9\x69\xe3\x96\x2f\x9c\xc9\x9a\x0b\xe7\x16\x2e\xe0\x02\x21\x34\x85\x63\x78\x05\x47\x30\x58\x7b\xe1\x84\x47\x11\x42\xc8\x3f\xc2\x3d\xa7\xd7\x76\x61\x78\x64\x45\xd4\x08\x3f\xed\xc5\xa0\x4d\x13\xde\x72\x9f\x49\xd5\x1e\xfa\x8e\x79\x4b\xee\xc2\x89\x7d\xca\x2c\x08\x53\xbf\x18\x0b\x68\x0f\x06\xc6\xb4\xa2\xfb\xa4\x51\xd9\x99\xd2\x75\xc8\xf7\x92\xeb\xa5\xeb\x52\x30\xc6\xac\x29\x6e\x87\x94\x15\x12\x8e\xde\x81\x0c\x6e\xed\xee\xfd\x99\x70\xf4\x3f\xd6\x5d\x21\x37\x5e\x2d\x3b\x2e\x30\x27\x85\x08\xf9\xd6\xce\xf6\x16\xf3\x5b\xe8\xba\xae\x1e\x30\x5e\xb8\x28\xe8\x6e\x0b\xdb\x9d\x9d\x7d\xe6\xb6\xc0\xdc\x1b\x16\xd4\x0d\x62\x8b\x47\x1e\x9a\xa0\x2a\x14\xca\xe9\x73\x94\xfd\x1b\x46\x32\x53\x91\x70\x00\xc0\x8a\x5d\xbe\x37\x4a\x71\xfc\xb7\x88\x48\xf7\xc2\x82\xde\x2c\x40\x49\x37\x01\x83\x21\x7e\x5d\x80\xa1\x72\x1c\xf7\xd0\x64\xb6\x2f\xe2\xb5\xdf\x45\xf1\x37\x72\x16\x51\x8b\x4d\xcf\x26\x7f\xbe\x96\xb1\x70\xae\x8a\xba\x19\x19\x7e\xa8\xa0\x0b\x74\x96\x28\x1c\x0a\x17\x1c\x7a\x47\xce\xa3\xd4\x2b\x8a\x22\x25\x3b\x6b\xa1\x67\x3f\xcb\xb7\x48\xd5\x29\x63\x0a\x03\x78\x05\x27\x70\x2e\xf6\xec\x1b\x74\x39\x84\x33\x54\x47\x72\xb2\xac\xe9\x87\xf1\x89\x28\x4f\xac\x14\xc0\x73\x54\x29\x7d\x53\x96\x38\x81\xd7\xcc\x63\xfb\x63\xf4\xea\xe6\x22\xf6\x67\x33\x3c\x66\xd1\x3c\xc9\x15\xbb\xd9\xbc\x3e\xf0\x5a\x6e\xb3\x69\x5d\x23\xaf\xe5\x32\x2e\xba\x43\x0e\x7c\x60\xc1\x8c\xde\x20\x07\x7e\x43\x0e\x7c\x8f\x1c\xf8\x9a\x50\xf2\x0c\x39\xf0\x9e\xfc\x71\x2c\x7d\x67\x5f\x11\xe4\x2f\x50\xdb\xdd\x40\x68\xd2\x6c\xd2\x7f\xe7\xf2\x88\xfa\x80\x9c\xfe\x87\x83\xeb\xfe\x07\x22\xda\x61\x3b\x88\xbc\x31\x99\x30\xeb\x43\x61\x32\x01\xf7\x7a\xd1\xbf\x12\xc4\xbf\xb0\xa4\x04\x7d\x9e\xfd\xfd\x3a\x4f\x7c\x4f\x5a\x7c\x22\xc8\x7c\x46\x1f\xe0\x69\xa1\x29\xa9\x3f\x53\x62\xba\x7c\x40\x08\xcd\x2e\x9d\xe1\xa5\x33\x04\x8f\x9f\xd0\x86\x23\xed\xa5\x66\x2c\x93\xb8\x05\xfa\xa7\x94\xa5\xc6\x36\x27\x34\x67\x2c\x4b\x07\x0c\x8d\xb9\xf4\x1d\x48\xf5\x0a\xe9\x25\xcd\xd4\x72\xe9\x0e\xdb\xe4\x37\x80\x9f\x11\xfd\xe1\xc2\x6b\x74\xaa\x8c\x86\x45\xf7\x6a\xbc\xcb\xc3\xdb\xe0\x20\x38\x0d\x25\x33\x12\xfa\x00\xf8\x16\xf9\x0c\x71\x0f\x7e\x41\x17\xcd\xe6\x87\x43\x42\xe1\x0f\x07\x68\x4e\xc7\xfe\x2b\x92\xd1\x8c\xca\x71\x33\x27\x51\xfc\xc6\x1b\x29\xa1\xf8\x8e\x53\x41\x78\x1e\x1d\x10\x5a\x18\x1d\x3e\xfe\x8a\xc8\xde\xc5\xc8\xff\x91\xe1\x48\x38\x2c\xb1\xc8\xce\x6b\x7f\x79\x77\x7a\xf1\xe6\xfc\xf3\xf1\xc9\x9b\xab\x93\x37\xef\xdf\x5f\x9d\xbc\x3b\x3e\x63\x27\x48\x83\xba\x1d\x7e\x6c\x36\xad\x53\xdb\x4f\x72\xb9\x10\x3c\x3d\x91\x0f\x9f\x6e\xc5\x6f\xb2\xc9\x7f\x44\x83\xcd\xff\xff\xff\x8f\x5c\xdf\x8f\xd1\xf5\xcb\xa0\x7d\x45\x25\x8f\x8f\x90\xd4\x24\x17\x2c\x0b\xd0\x3f\x4f\xa9\x21\x89\x05\x00\x3c\xa1\x1a\xbf\xbb\x66\xd3\x7a\xd7\x6c\xde\x3f\x3d\x6d\xbc\x6b\x36\x37\xee\x9b\xcd\x53\xfb\xfa\x06\x21\xf4\x06\xf0\x92\x66\xf3\x3c\xd7\xda\xbe\x95\xcf\x18\x04\x87\x09\xa9\xf8\x0d\x90\x36\xcc\x65\x0a\x8f\xc9\x1f\x08\xa1\xf7\xcd\xe6\x17\x84\xd0\xeb\x66\xf3\x18\x21\x74\xd6\x6c\x6e\xbc\x6d\x36\x37\x3e\x35\x9b\x1b\xbf\x82\x47\x8a\x47\x78\xeb\x27\xfe\x75\x80\x2d\x70\xf4\xd0\x42\x66\x32\xf4\x1e\x5a\xe8\x23\xbc\x6b\xb5\xfa\x82\x21\x33\x82\xef\x89\xf6\x42\xf2\x00\xe0\xc9\x52\x33\xaf\xb9\x47\xb3\x78\xe6\xeb\x8e\xaa\xa5\x1a\xab\x36\x24\xf3\xf1\x06\x11\xca\xc0\x6f\x88\x8c\x1b\xbe\x47\xfa\x98\xe1\x6b\xf4\x05\x9e\xa1\x63\x78\x8f\xde\xc1\x4f\xcd\xa6\x77\x88\x3e\x34\x9b\xde\x01\xfa\xdc\x6c\x5a\x1e\xfa\x00\xe0\x46\x69\x77\x96\xa1\x65\xde\x51\x23\x99\x66\xf3\xad\x29\xda\x4d\x1e\x7f\xc6\x4f\x7d\x1a\xf8\x6a\x0c\xfc\x89\xf5\x8a\xbd\x2a\x08\xe7\x36\x26\xc3\xaa\x59\x9f\x4b\xf6\xe2\x7e\x42\xd5\xce\x78\x0c\xa6\xcd\xa6\xb1\x39\xb3\x37\x20\x40\x64\xf1\xb5\x17\x53\x2e\x4c\x8e\x8a\x55\x49\x41\x6f\xb0\x29\xdf\xbb\xcd\xd5\x94\xe2\x5e\xa9\x33\x1a\x62\x9f\x4b\x33\xfe\xc4\x8a\x41\x72\xe7\xa7\xa3\xa9\x15\x83\xc7\x91\x97\xe0\xc1\x26\x37\x1b\x18\x6c\xf6\xcc\xf8\xca\x72\xd0\x67\x62\x35\x6b\xc6\x21\x57\x34\x92\xfd\x6a\x4d\xe8\x70\x2a\x1a\x90\x32\xbd\xba\x3a\x2c\x73\x23\xa5\x06\xcd\x67\x96\xaf\xc3\x12\xf1\xaf\xa3\x60\x4c\x88\xae\xae\xcf\x52\x25\x66\x01\x26\xaa\xbd\xf6\x67\x86\x3a\x63\x7f\x46\x2a\x3c\xa0\xe2\x0a\xab\x58\x5e\xab\x6c\x45\xb0\xb0\xf7\x34\x9b\x82\xf5\xbe\xb2\x4e\xe5\x40\xdb\x2f\x1e\x95\x35\x21\x3f\xd3\xfb\x54\xf6\x15\x40\xb1\xa1\x3d\x34\x9b\xd6\x83\xdc\xad\x36\x34\xf8\xd4\x15\x8a\x2b\x80\x2c\x00\x00\x27\x9c\x5e\x7e\xf6\xf3\x2b\x0b\x80\x13\xa1\xcb\xc3\xf7\x69\xbe\x05\xd3\x0a\xe8\x6b\x7c\x73\x6d\xbd\x78\x5c\xd8\xd2\x8d\x8c\x9c\x32\x76\x1a\xc9\xf6\x74\xe8\x3a\x58\x0b\x00\xfb\x9f\x91\x1f\x5a\xd4\xc9\x0c\x64\xe0\x6b\x9e\xe9\x14\x23\x63\x83\xfe\xb2\xab\xe5\x38\xf6\xee\xc8\xac\x5f\xe0\xfb\xf4\x34\x7c\x15\xb3\x40\xf5\x44\x74\x20\x9b\x66\xce\x11\xf8\x60\x8f\xdc\xee\x5b\x68\x0f\xc0\xba\x81\x9d\x53\x3b\x84\x4b\x3c\xa4\xaf\xc8\xfa\x29\x90\xcf\x8c\xe0\x87\xe8\x56\xb2\xa0\x99\xfa\x8c\x99\xc8\x01\xfb\x0d\xa7\xd3\x38\x5a\xdc\x4c\x0d\x6c\x95\xa8\xe5\x04\xd6\x17\xba\x09\x9b\xb0\x44\xda\xd2\x60\x47\xde\x0b\x46\xbb\xb7\x37\x9c\x68\xf0\x9f\xda\x07\x22\xc7\x59\x00\xfe\xc1\x3e\xbe\x92\xb5\x7e\xd1\x3e\xb0\x5a\x5c\xa0\xf8\x1d\x6d\x6c\x70\x16\xc7\x71\x82\x99\xe4\xf2\x7b\xae\xd7\x7a\xd1\x7f\x81\xfe\x80\x7f\x20\x2c\x05\x90\x7f\xf6\xff\x89\x7e\x81\xbf\xa0\x34\x23\x18\xfd\x06\x7f\x86\x7f\x87\x7f\x23\x67\x3b\xdf\x71\xbe\xf7\x88\xe7\xc9\x9e\x37\xd4\xec\x8c\x34\xd5\x73\xb3\xf9\xb7\xa7\x27\xcd\xd2\x40\xb0\x60\xb3\x69\xfd\x82\xba\xce\xd6\x96\xbb\xb3\xbd\x47\x90\x35\xd4\xb1\xe3\x9b\x6b\xef\xf0\x70\xaf\xe9\xee\xec\xee\xee\x76\xdc\x2e\xfc\xcd\x58\x0f\x40\xd5\xc2\x40\xe9\xe1\x9f\x79\x0f\x2f\x90\xa9\x4e\xb9\x87\x9f\x8d\xf5\x00\xfc\x1b\x52\x32\x5a\xeb\x83\x04\x19\x00\x70\xe3\x6f\xcd\xe6\xbb\x66\xd3\xfa\xad\xda\x63\x49\x9e\x40\x47\xe7\xd5\xc6\x3f\xbd\xf3\xe5\x86\x3a\xf0\x0f\xf4\x5b\x19\x73\x85\x9c\x7f\x43\x1b\x0e\x34\xca\x2d\x45\xa2\x18\x2b\x99\xa8\x62\xac\x08\x00\xfc\x5b\x79\x1b\xd6\x12\x82\x93\x05\xf3\x0b\x3b\xd0\x1a\x1c\xdc\x4e\x8f\xfe\xda\xda\xea\x76\xb7\xb7\xb7\x3a\xbd\xbf\x8b\x75\xfd\xc7\x10\xea\x9b\xeb\xf5\x4d\xfb\xc5\xe3\x1f\xd9\x57\xf5\xf4\x69\x08\xec\x7b\x7f\x47\x23\x7b\x34\xf5\xc2\x10\x07\x89\xd8\xdc\xac\x3f\x0e\x0f\xdd\x1d\xf8\x07\xc1\xbe\xd3\xed\xc2\x4e\xb7\xdb\xfc\x43\x46\x88\x1e\xf3\x70\x52\x27\xf0\x6b\xc9\x4e\xe5\x2f\x2f\x1e\x6f\x2d\xd2\xfc\xd0\x01\x76\x2a\xc4\x6e\x77\x87\xec\x1d\xce\x60\x13\xee\x80\x1c\x0f\x7e\xd3\xeb\xfd\x7e\x64\x11\xe4\x15\x6b\x6e\x03\xfe\x61\x95\xb5\xcc\x57\x00\xe8\xd8\x73\x54\x32\xbe\x1e\x7f\x63\x22\x2e\x3f\xe6\xac\xdf\xc8\x40\x8d\x26\x3d\x7f\x87\x76\x17\x00\xf8\xcf\x7a\x02\xab\x5b\xed\x0b\xb2\xd5\x7e\xcf\xbe\x6d\xbd\xa0\xdb\x34\xa7\xe8\x7c\x1e\x3c\x7c\xf0\x43\x7f\xb6\x98\x11\x89\x34\xf6\x92\xd4\x3a\x81\x7f\x87\x7c\x46\x5f\x0c\xe1\x29\xfc\x8d\xef\x15\xe0\xe9\x49\x27\xcf\x84\x90\xe7\x45\xd5\xf4\x8a\xed\xcc\x30\xc9\x2f\xc8\x24\xd3\xf9\x7d\xa1\x4e\xf4\x0b\x71\x22\x55\xa2\x85\x29\x3a\x3f\x03\x11\x16\x56\xe5\x08\x85\x0d\x5e\xac\xca\x00\x4b\xa9\xa0\xb0\x86\xe8\xf9\x77\xb9\x62\x54\x32\xd4\x70\x49\xf6\x2a\xcf\x85\x74\xc2\x2c\x24\x3e\x7a\x33\x8c\x5e\x89\xf3\xba\xc1\x64\x56\x91\xc7\x17\xc0\xb7\x4f\x4f\x9f\x9e\x9e\x7e\x3d\x2a\x5c\x15\x7a\x77\xad\x16\x3c\x16\x39\x98\x74\x75\x85\x72\xa6\x95\x6c\x9f\x8e\xb3\xf9\xfd\x57\x00\x6f\x18\xd6\x27\x00\x7e\x40\x9f\x45\x40\xa9\x93\x66\xd3\x78\x29\xb9\xc9\xcc\x64\xd1\xb5\xfa\x13\xcb\x95\x21\xe4\xab\xd9\x71\xa6\xc3\xa0\x16\x55\x4f\x4f\x96\x03\xaf\xec\x94\xdc\x58\x7e\x0e\x1e\xe6\xd3\xe3\xe4\x95\x7e\x30\x00\x8b\x27\x72\x23\x47\x27\xc8\xa3\xf3\xea\x8f\x06\x3c\xd5\x1b\x81\xcb\x9c\x72\x79\x20\x1b\x8f\x1c\xaa\xf1\xd3\x53\xf8\xf4\x64\x79\x28\x62\x90\x08\xef\xa5\x74\x77\x84\x3e\xfd\x07\x80\x3c\x10\xbe\x57\xb4\xa5\x5a\x6f\x40\x3f\x59\x89\x58\xf2\x47\x9d\x9e\x0b\xfa\x9e\x5c\xf5\x38\x4c\x16\x31\xd6\x6a\x13\xd4\x52\x18\x3e\x3d\xf9\x10\x03\x18\xd9\x89\x40\x8f\x16\x00\x86\xa3\x45\xca\xf9\xdf\xde\xd1\x51\xb8\x08\x02\x11\x7e\x78\x63\xc3\xcb\x83\xf4\x8b\x45\x80\xc5\x22\x78\xf1\xe8\x51\x09\xeb\x2b\x60\xaf\x3c\x25\x22\xe1\x3c\x14\x97\x44\xba\x52\x4d\x64\x4f\xbd\x60\xa2\xb5\xef\x55\xd7\x1d\xa9\xf5\x32\x15\x37\x96\x81\x55\x8f\x8d\xc0\x1d\x98\xe0\xd7\x17\x8f\x54\x07\x65\x28\x03\x4f\x4f\xf4\xc6\xfb\xe2\x31\xcd\xfa\x5f\x41\x66\x50\x85\x18\x5e\x46\x0b\x26\x5d\x25\x2b\x9a\x37\xa1\x88\x52\xb6\x61\x6d\xf8\x4f\x4f\x1b\x09\x90\xf4\x2c\xaa\xe9\x8e\xfc\x4b\x67\x78\x80\x92\x4b\x67\x78\x84\x0f\x11\xf9\xd5\x6c\xa6\xe4\x0f\x77\x48\x64\xdf\x84\x7d\x20\x35\xdc\x61\x0f\x1f\x14\x2b\x1c\x22\xbd\x46\x7a\xc8\x0a\xd2\x03\xf2\xf3\xe9\x89\xfc\x22\x97\x4f\xf6\x11\xa1\xbc\x1d\x83\xc4\x7a\x60\xf5\x0e\xf2\x5a\x89\xd2\x7d\xa9\x50\x03\x01\xb2\x2c\x0f\x8f\x77\x2b\xf4\x97\xd4\x9c\x4f\xe8\xde\x0f\xfc\x3e\xc0\x28\x6d\x61\xa1\x49\xc7\x59\x95\xa6\x78\x22\x92\xc7\xf3\x77\x93\xb2\x2a\x92\x65\x91\x37\x26\x53\xd8\xaa\x7e\x26\xd9\x26\x2d\x4a\x61\x2a\xab\x52\x38\xec\x18\xde\x54\x26\x20\x23\xe7\x88\xf3\x7d\xf9\xe6\x73\x07\xff\x3c\x92\xa3\xf2\xcd\xa8\x28\x97\x51\xce\x03\x2f\xa5\x2a\xc2\xb7\x41\xe4\xa5\x5b\x9d\xe3\x38\xf6\x1e\xac\x4e\x77\x47\x1c\xb8\x93\x48\x0f\x03\x2f\x43\xae\x0a\xa3\x9d\xbb\x8a\xb0\x2a\x77\xd2\xd6\x00\x0d\x36\xd9\x95\x9b\x97\xcc\xb0\x47\xb6\x97\x72\x40\x1a\x99\x6b\x0e\xe1\xfa\x68\x27\xa3\x0a\xf3\x3d\x21\x11\x32\xc3\x95\x11\x19\x7e\x9b\xf7\xd6\x96\x6d\x4c\x60\xd6\x0a\xfb\x32\x2a\x98\xee\x52\x17\x3e\x72\x7a\x61\x34\xd8\x9c\xc7\x58\x09\x83\xab\x57\x24\xb4\xfb\x85\xb9\xff\x21\x91\xfb\x50\x3a\x98\x95\x87\x2c\x95\x61\x15\xa3\x1c\x4d\xbd\x58\x0e\x8f\x07\xb4\x20\xf5\x85\x1d\x5e\x35\xc4\xaa\x74\xa9\x15\x10\x61\xa2\x0c\xe0\x8b\x98\x6f\x36\xa7\x79\xb8\xc9\xca\xde\xaa\x66\xa9\xaa\x37\x95\x5c\x2c\xc1\xcf\x60\x53\xa8\x63\xe4\x93\x53\x75\x77\xe1\x9a\xdd\x85\xd5\x83\xd3\xca\x8a\xa8\x54\x71\x33\x17\x36\x4a\x4c\xad\xd9\x91\xf9\x65\x66\x52\x8b\x93\xfa\xe2\xb8\xbe\x38\x24\xbb\x82\xc1\x00\xae\x10\xe2\x83\xdb\xf9\x64\x32\x18\x49\x31\xb7\x64\x31\x08\x49\x61\xa8\x52\xfe\x13\x81\x44\xa2\x00\x8b\xa7\x41\x69\x44\x94\x6f\x33\x34\x29\x93\xd5\xde\xdf\xdf\xdf\x07\x5a\x0b\xb2\xfd\x7c\xf0\xe6\x99\x30\xa4\x92\x4f\xc5\x58\x8a\x6a\x84\xfe\xec\x9c\xd0\x77\xa1\x66\xd3\x97\xdf\xee\x78\x26\xcc\xa4\xf0\x85\x6c\x41\xd2\x63\x99\x6e\x67\xb8\xb8\x97\xa5\xfa\x5e\xe6\x97\xb7\xb0\xa4\x66\x49\x6b\x31\xad\xc9\x87\x9a\xba\xb4\x3b\xe9\xea\xa1\x78\x07\x7f\x35\xd3\xf8\xd2\x19\x96\xd9\xf3\xeb\x8b\x47\x3f\xab\x6a\xe0\x9a\x1b\x24\x95\x0d\x3a\xeb\xf6\xb0\xb5\xa4\x07\x3e\xf5\x20\xa3\x46\x4c\x7a\x70\x5a\x6a\xd0\xd4\x6c\x6e\xf8\xcd\xa6\xab\x45\x9f\xb7\xe8\x7e\x35\xf5\x62\x22\x3e\x1f\xa7\x96\x03\xc0\x01\x39\x86\x88\xc8\x4e\x79\x46\x66\x72\x25\xbc\x74\x99\x0c\x81\x96\x66\x86\x7f\xec\xeb\x41\xfa\x39\xe6\x16\x86\x8e\x7c\x71\x4f\x0f\x1d\x29\x38\xf1\x56\x28\x05\x90\x69\xaa\x62\x84\xfb\x69\xb3\x69\xc5\x2d\x44\x03\xbd\x02\xe8\x8b\x5f\xa7\x42\xbf\x26\xac\xce\x28\xf3\xb2\x18\xb8\x54\x21\x26\xe5\xf2\x30\x1f\x2e\x81\x95\x3c\x21\x97\xc1\x49\x9e\x50\x27\xb7\x5a\xcb\x91\x4b\x00\x0c\xf3\x24\x0d\x0c\x6e\x42\xe0\xc2\x50\x66\xef\x08\x33\xa5\x41\x49\x7a\x2c\x4e\x51\x3a\x94\x41\x50\x0b\x39\x56\x62\x3c\xc7\x5e\x6a\x6d\x75\x00\xf4\x6d\xe6\x1e\xf8\x85\x65\x1e\xed\x64\x59\x06\x3b\x9d\xce\xd6\xf7\x86\x40\xbe\x78\xf3\xf7\x8b\xab\x57\xc7\xe7\x6f\xde\x9f\x7e\x7c\x83\x52\xfb\xf5\xe9\x87\xab\x4f\x9f\x8f\x4f\x4e\x2f\xfe\x81\xd2\x8a\x5b\x67\x39\x48\xf2\x8e\xeb\x6e\x83\x7e\x65\xfd\x4e\x77\x17\xea\xa0\xed\x6e\xa9\x6f\x72\xc1\x79\xeb\xc7\x78\x12\xdd\x3f\x3d\x91\x1f\xef\xf1\x8d\x37\x7a\x78\x33\xbe\xc1\x47\x64\x8f\x4f\xd3\x68\x46\x1f\x4a\xfc\x31\x8e\x6e\x62\x6f\x3e\x25\x1b\x7b\x06\x77\xdc\x5d\xd7\x18\x53\x5c\xde\x42\xba\xbb\x5d\x67\xef\x00\x61\x22\xcf\xa2\xee\x6e\xb7\xbb\x97\x47\xae\x4d\xd4\xdb\xca\x21\x72\x3b\x7b\x5d\xb7\x43\x2b\x92\x3f\xf7\x5d\x1a\x19\xd5\xed\xec\xee\x6e\x6f\xcb\xaf\xae\xf8\xba\xb7\xb3\xed\x88\xaf\xbb\x3b\xbb\xf4\xeb\xfe\x6e\x67\x8f\x7e\xdb\xdf\xdf\xdb\x62\x5f\xf6\xf7\x78\x5b\xc7\xdd\xed\xd2\x4f\x3b\x5d\xa7\xc3\xbe\xed\x74\x9d\xad\x7d\x0e\x6e\xbf\xb3\x27\xc0\xed\x77\xb7\xba\xa2\xeb\xed\x1d\x81\xd0\xee\xf6\xde\xee\xf3\x82\x8b\x8f\x58\xc0\xf4\x8f\xf8\x3e\xfd\x8d\x08\x4c\x61\xfa\x89\xb2\x13\x4a\x2b\x82\xc2\xa1\xb4\xee\xf6\x8c\x52\xdb\x0b\x82\xe8\xee\x0c\x27\x23\x2f\x20\x22\x52\x6a\xfb\xc9\x9b\x59\xf4\x4f\x9f\xfe\x75\x86\x93\x34\xf6\x47\x29\x1e\x7f\x8e\xee\x98\xc6\x9b\x02\xa2\x85\xa5\x4f\x34\x6f\xfa\xe9\xe4\xad\x17\x24\x0f\xb9\x54\xac\x7d\xcd\x8d\x67\x58\xcc\x72\x6c\x48\xb6\x4e\x07\xdc\x98\x2d\x88\xc8\xc1\x12\xae\x4f\x48\x5b\x2a\xd5\x88\x6b\x07\x34\x20\xe0\xc3\x5a\x94\xd5\xae\x73\x86\xea\x38\x0a\x43\x75\x76\x19\x60\x46\x80\x04\x96\xa8\xa3\x59\x56\x51\xe5\x06\x87\x44\x15\x1c\xcd\x66\x7c\x98\x47\x92\x72\xed\xee\xcb\x10\x34\x9b\x8c\x10\x2c\xcf\x07\x3e\xec\x74\xbb\xcd\xe6\x06\xe1\x56\xb2\x21\xb3\x7f\x8c\x98\x6d\x6d\x6f\x0b\xcc\x76\xb6\x76\xb7\xb7\x32\x0b\x03\x82\x5d\xdd\x6c\x1a\x00\x91\x2e\x54\x9b\x25\x59\xb0\xbf\xbd\xdb\x11\x1d\xec\xef\x6c\xb9\x02\x7e\x05\x1b\x49\x08\x02\xc0\xe3\x28\x49\x7a\x8f\xcc\x68\xbd\xf7\x48\x85\xff\x9e\x03\xb9\x37\xaf\x93\xc1\x11\x0e\x02\xc3\xf7\x0c\xb2\x88\x45\xcf\x68\x0a\xc9\x49\x55\xfe\xce\x52\xf2\x3a\x30\x8d\xe6\x04\x7e\x96\xd5\x2d\x13\xdd\x34\x0e\x39\x62\x34\x16\x6e\x5b\x9d\x97\x6a\x9c\x25\xd0\xf6\x01\xf8\x6b\xf1\x23\xc8\x32\xb8\xe3\x74\x3b\xdf\x77\x79\xac\x0e\xf5\x29\xb7\x64\x1a\xa3\xd5\xd7\x6e\x90\x5c\xae\x13\x12\xa4\x26\xec\x4d\xbd\x44\x82\x93\xa6\x4a\x95\x36\x4c\x45\x8f\x20\x21\x4d\xea\xbe\x3f\xc5\xaf\xba\x97\x8f\xb9\x54\x6f\x49\xb3\x0d\x9d\x44\x81\xf8\x8d\x29\xa3\xca\x52\xdd\x28\x4a\x6c\x18\x5a\xd1\x9b\x70\x2c\x84\x5b\x91\xd6\x8c\x7b\x7c\x6c\xb8\xb9\x37\x57\x01\x52\x6a\x00\xe2\x43\x6a\xd3\xed\x3f\x3d\xa5\x97\xce\x90\xea\x3e\xa8\xb6\x85\x69\x55\xfc\x4b\x57\xca\x36\xb4\x3b\x95\xd2\xca\x6d\xab\x90\xcb\x93\x99\xc7\x86\xcc\x36\x27\x86\x11\x85\xd3\x8e\xa1\x97\x9b\x1c\x87\xd0\x01\x70\x9a\x9b\x03\x47\x50\x7a\x80\xf5\xbd\x43\x24\x1c\x9c\xa6\x07\xce\x91\xda\x67\xcf\x32\x4c\xab\x53\x31\xad\x49\xc5\xac\x86\xc6\x59\x8d\x6a\x67\xd5\xab\x99\xd5\x69\x61\x56\x99\xa9\x92\x32\xb1\x4c\x8d\xc4\x54\x6f\x0c\xbf\xdc\x10\x4e\x68\x24\x4b\xe3\x6a\x36\x2d\xbf\x2d\x69\x2b\x48\x2b\x10\xf8\x87\x79\xcc\x47\x1a\x26\x07\x48\xc1\xe2\x28\xe5\x9e\x64\xa2\xb4\xd9\xf4\xf9\x17\xf3\x98\x9b\xcd\xf4\x40\x69\xdf\x6c\xfa\x07\xa6\xea\x8c\x08\x3d\x5e\x77\x0d\xe0\x87\x68\x75\xe8\xfe\xa1\x71\x2a\x49\x2b\xc3\x5c\xf2\x07\x8e\xd2\xc4\x23\x64\xa8\xac\x5c\xdb\xca\xe0\xcb\x34\xd3\x68\x52\xd1\x91\x09\x27\x43\x37\xa2\xe0\x07\x82\xac\xc6\x1c\x64\x59\xed\x06\x5b\x3a\xc8\xa8\xec\xe1\x67\x19\xdc\xee\xee\x7c\xdf\xb6\x2e\xfb\x53\xb7\xf2\xf2\x77\x83\x6e\x50\x5c\xd9\xf5\x80\xd4\xfc\xca\xec\xf3\xb5\x72\x1c\x04\xc7\x74\x71\xc8\x7d\x5c\xdf\xf7\x78\x76\x75\xae\x06\xc8\x15\xdf\x1c\xf8\x7a\xdb\xed\x33\xbb\xbe\xc1\x69\x63\x92\x3b\xab\x88\xf2\x42\x82\xd2\x12\xd8\xa3\x4b\x07\x0a\xd7\x42\x15\x19\x7e\x3d\xd3\x3b\xe3\x1f\xbd\x38\x9f\x60\x9a\xed\x27\x39\xc3\xd4\x54\x62\x2c\x9e\x29\x54\x48\x3d\x03\x20\x03\xb6\x6f\x68\x32\x4a\x71\xae\x94\xf0\x04\x22\x7d\x50\x79\xb6\xaa\x23\x4e\x0b\xdf\x64\xea\x1d\x62\xaa\xc0\xce\x83\x61\xdf\x7c\x9c\x81\x3c\x37\x9e\x3a\x20\xbe\x7e\xea\xa8\x50\x78\xaa\xd2\xc1\x5e\x3a\xc3\x56\xe5\x4c\xf6\xf3\x14\x2c\x15\x23\x3d\xc2\x7f\xad\x2a\x42\xc8\x39\x5a\x42\xa1\x02\x2a\xee\xb0\xa5\x26\x1c\xa9\x0c\x3e\x09\xda\xee\xb0\x77\x59\xdd\xf3\xf7\x01\x27\xa0\x2b\x20\x0c\x33\xf3\xdc\xbc\x17\x69\xfc\x8a\xb3\xc3\xc4\x0a\x33\xb0\x7f\xe9\xb4\xfc\x2b\xa9\x23\x85\x9a\x22\x99\xc8\x80\x9d\x21\x30\x7c\x25\xa4\x53\x57\xbe\x5a\x98\x65\x75\xcc\x5b\x47\x24\xe1\xca\x67\x7e\xa8\x63\x7e\xf5\xcd\xa6\x85\x2f\xdd\xe1\x61\x4a\x5f\xcf\x30\x9f\x10\xf6\xe0\x25\x9c\xc0\x45\xb4\x80\x8b\xd8\x9f\x29\x57\x23\xe3\x9e\x63\x9a\x7e\x22\xed\x21\x6c\x18\x77\xa9\x3a\xa3\x45\x55\x65\x53\xdd\x03\xe7\xc8\xca\x25\x42\x65\x37\xa7\xc9\x24\x4d\xd8\x18\x37\x4b\x0a\xa9\x12\x7b\xe4\xb0\x7c\xb3\xe4\xf4\xeb\xec\xfd\xe9\x65\xf4\x1f\xe5\x65\x54\x70\x67\x33\xf8\x17\x51\x1f\xa2\x48\x26\x37\xf1\x78\x72\x93\x3c\x3d\x79\x01\x82\x9e\x59\xc4\x53\x33\x8b\x90\xa3\x76\xea\x25\xbf\x79\x81\x3f\x26\x4d\x0a\x12\x01\xbd\xd4\x4b\x75\x2c\xbb\xda\x1f\x3a\xe5\xe4\xe5\xc5\xdc\x23\x66\xcf\x21\xe6\xaf\xce\x65\x18\xee\x3f\x2f\x1e\x4c\xa8\x87\x8e\x12\x5e\xc5\x90\x44\x23\xd2\x93\x68\xb0\x86\xe6\x76\x25\x70\x2c\xe3\x46\x3f\x8d\x1f\x1e\x35\x2d\xf1\x79\x4a\xf8\xee\xe6\xc1\xd0\x9d\x39\x0a\x38\x00\xd9\xc8\x4b\x47\xd3\x95\xc1\x04\x94\x42\x15\xa0\xf4\xea\xa6\x4a\x76\x14\x7e\x60\x76\x67\x58\x4b\x03\x71\x39\xd8\xcc\xdf\x5b\xe8\xc3\xac\x78\x40\x19\x6c\x0e\x61\x9e\x24\x42\x28\xca\x01\x00\x20\x93\x3f\x0a\xc6\x32\x85\x51\xe4\x8d\xfa\x22\xc8\x00\x3f\x34\x79\xa8\x04\x19\xfd\x80\x7f\x66\xbf\xc4\xc3\x12\x6b\x81\x55\x67\x50\x5e\xbd\x10\xec\xb7\x34\x49\x13\x9f\x62\xca\xd2\x67\x16\x98\x58\x26\xcf\x0c\x4b\xa6\x09\x43\x38\x05\x5c\x35\x33\x32\xb3\xb9\xae\xaf\x61\xbc\x6a\xdb\xb6\xdc\x11\xf3\x2c\x26\xc9\x22\x48\x91\x41\x3f\x76\x75\x4b\x96\x88\x97\xe2\xe3\x70\x7c\xce\xde\x72\xc0\xa3\xae\x43\x74\x14\xa5\x22\xd9\xf5\x95\xc7\x15\x06\x57\x50\x46\xeb\x4c\x86\x48\x06\x59\xc6\xc6\x10\xc8\x31\x8c\xca\x3e\x7d\xc5\x95\x56\xf2\xe9\x9b\x7b\x31\x59\x24\x22\x06\x71\xbd\x2b\x9f\xfe\x56\xb2\xaa\x2b\x8b\xa9\xed\x9a\x0f\xcd\x46\x10\x7a\x22\xfe\x2f\x83\x4d\xf5\x85\xc6\xd8\x62\x2d\x5b\x85\x62\xdb\x7a\x83\x05\x63\x6d\x93\xd5\x82\x89\xee\x86\x17\x67\x1d\x9e\xba\x16\xb5\xc7\xbb\xca\x6e\x9f\x9b\x2d\xb8\x12\xa0\xfe\xfc\xba\x52\xd8\x66\xf1\x0a\x5a\x58\x0b\x1f\x17\xb3\x6b\xb9\x7d\x15\xfa\x53\x9e\xd5\xc0\x4f\x5b\x1d\xb8\xbc\x2e\xcf\x6b\xa0\x2f\x49\xb1\x36\xc6\x55\x6b\x63\xc9\x09\x24\x3d\x5e\xa9\x76\x9b\x3e\xb3\x7f\x9a\x4c\x58\xcc\xed\x13\xfa\xcd\x72\x1d\x07\xba\x8e\x23\xcd\x09\xd2\x7b\xa4\xb6\xb1\xb9\x1d\x1e\xbe\x27\x4b\xa1\x33\xce\xad\x4b\xc4\xba\x19\xa5\xf7\x62\xe7\xbc\x60\xb5\xbe\x70\xff\xad\x0d\x6b\xb0\x49\xd7\xfe\x60\xd3\x0f\x1b\x4c\x40\x8a\x42\x99\x82\xf7\x55\x74\x7f\x9c\x8c\xe8\xca\xa8\x28\x26\x12\x98\x2c\x07\x86\xc7\x99\x33\xfc\xfb\xc2\x8f\xf1\x98\x46\x6e\x6e\xcc\x70\x1a\xfb\xa3\x84\xbe\xd3\x24\x8b\xf9\x3c\x8a\x53\x4c\x10\x56\x98\x2e\x47\x99\x9a\x01\xac\xc7\x07\xeb\x85\x09\xff\x5a\xc8\x8f\x5f\x41\x27\x6d\x19\x14\x77\x5b\x7e\x98\x30\xce\x2d\xd1\xad\x55\xfa\xce\x09\x56\x64\x22\x22\x4f\xef\xec\xff\x29\x50\xff\xc7\x09\xd4\x26\x2f\xf7\x82\x23\xb0\x29\x03\xe1\xd6\x76\xad\x23\x7f\x49\xe8\x08\x75\xaf\xaf\xa5\xc7\xf7\x88\x9f\x76\xf2\x09\x61\x76\x4d\x50\xa2\xe8\xe4\x86\x86\x93\x1b\x84\xed\x09\xcf\x8e\x77\x4d\x7e\x5c\xdf\x18\x1a\xa4\x6a\xe0\x0d\xe4\x67\x7e\x72\xc2\x8b\xf3\x43\xa6\xe3\xec\xef\xba\xdd\x4e\x96\xfb\x2a\xeb\xc7\x0f\xcb\xa3\x90\xbb\xe6\x69\xa5\x6a\x6f\x99\xb4\xee\xd6\x41\xbb\xd4\x74\x29\x8e\x66\x04\x00\xf5\xaf\xa6\x5a\xd4\xe2\x7e\x45\x76\x26\x7f\x36\x67\x1b\x3f\xdb\x9b\x6e\x70\x7a\x9c\xc8\x56\x02\xec\x25\xa7\x00\x1b\x5b\x8e\x98\xfc\xcd\x87\x91\x97\x53\xa4\x86\x59\x56\x9a\xdf\x11\xbd\x20\x05\xa8\x92\x23\xf8\x3d\x69\x0d\x1d\x70\xd1\x9d\x5f\x31\xe0\x0c\x89\x30\xa3\x97\x9e\x8e\x73\x4b\x51\x73\x94\x83\x4c\xde\x05\xb0\x90\xd1\x53\xf4\xe8\x73\x35\xa9\x19\x66\xab\x05\x99\xba\x24\xee\xe1\x4c\xdf\x45\x8b\xd8\x31\x1f\x02\xb2\x2b\xda\xfe\x38\x1b\x63\xb5\x37\xe1\xd2\x9f\x22\xa7\xcf\x5f\x04\xca\xed\x79\x00\xd3\xb4\xd5\x02\x32\x64\x63\xb1\xd2\x65\x3a\xb4\xfd\x31\x42\x08\x83\x7a\x64\x92\x79\xe0\x8f\xb0\x95\x42\x17\xc0\x0d\x47\x28\x8a\xdc\xcc\x14\x0b\x81\xd9\x25\x38\xd2\x9c\xad\x02\x33\xa1\x08\x2e\x1a\x3f\x19\x35\xbf\xa6\xe8\x52\xb4\x87\x0a\x60\x3e\x99\x5c\x66\xb9\x51\x0e\x10\xc0\x6e\xdf\x31\x72\x60\x88\x1c\xe8\x21\x07\x4e\x59\xa2\xf9\xb7\x37\x96\x03\xe0\x88\xfd\x78\x45\x7e\xf4\xf3\x10\xb1\x4e\x1f\x1f\xd0\x82\x62\xec\x06\xcc\x29\x9c\x87\x54\xc0\xc5\x90\x0a\xd0\x91\x66\x60\x86\x80\x0a\x4a\x4c\x4d\x59\x3a\xb9\xd9\x40\x68\x2a\xdc\x6f\xe4\xe7\x6b\xf2\x99\x25\xab\xc7\xed\xf8\xd0\x2d\xde\x0e\xe5\x7c\x9c\x91\x4b\x5a\x62\x25\xd0\x83\x21\x4c\x61\x9c\x8f\x84\x31\x0d\xd6\xf8\x83\x87\x9e\xbd\x4c\x87\x20\x8b\x69\x1e\xf0\x10\x4e\x8b\x08\x4f\x6e\x08\x69\x8a\xf8\x64\x61\xcb\x30\x32\xbe\xf2\x79\x27\x55\x4e\xc3\xbc\x58\x6a\x86\x4d\xf1\xd2\xfe\x45\x83\x14\xa9\xb6\x4b\xc0\x14\xaf\x1b\xe9\x00\x63\x27\x8b\xeb\x84\x71\x8f\x4c\xe0\xec\xa1\xcb\x21\xd5\x51\x78\x15\x6c\x7e\xe9\x0c\x79\xb0\x53\x72\x34\x33\x4d\x84\xd8\x2a\xa2\x00\xdb\x98\x6e\xaf\x3c\xdc\x2f\xc3\xd9\x5d\x69\x35\x93\x4e\x75\x33\x3a\xd3\xb2\xce\xbb\x2e\x10\xc5\x57\x61\x61\x22\xd8\xc7\x37\x98\x0f\xde\x83\x3e\x25\x4f\x35\xb2\xda\x36\xc1\x68\xc2\xda\xb2\x6c\xe5\x12\x0e\x21\x20\xf4\xb2\xea\x2a\xba\x81\x25\x8c\xd1\x86\xcb\x97\x23\xbe\x4c\xe8\x43\x8e\x97\x6f\x74\x53\xe4\xf7\xa7\x07\x55\x3c\xa2\x46\xab\xf3\xd9\xe2\x65\x2b\x6b\x2a\x17\x33\x5f\xfb\xd3\x15\x39\x92\x86\x38\xd9\x40\x88\x85\xbb\xdd\x88\x9b\x4d\x8f\xba\xa6\x84\xcd\xa6\x45\xfe\x42\x53\x82\xb0\x03\xa0\x77\xe9\x92\xcf\xb4\x1a\xf9\x1b\x4d\xe9\x00\x5a\xad\x64\x08\x37\x3c\x1e\xc4\x8b\xb7\x3d\xd2\x9a\xf6\xc8\x88\xc9\xe2\x19\x65\x99\x47\xc1\xba\x43\xe3\x0e\x48\x9f\x0e\xb2\x2c\x49\xbd\xd4\x1f\x35\xb4\xe9\xa2\x72\x18\xcb\x2c\xbf\xe1\x16\xf3\xca\x8b\xa1\x24\x39\x71\x62\x49\x5b\x1e\xc7\x97\x62\x1f\x5f\x3a\xd2\x72\x03\x5f\x26\x6d\x77\x48\x51\xb9\x74\x87\x10\xf7\x95\x5a\xae\xa1\x96\x7c\xcf\xa0\xd5\x69\x1d\x88\xc5\x69\x91\x90\xd3\x02\xf7\xf5\xdf\x49\xbb\xcd\x62\xbd\x9a\xfb\xcf\xeb\x3a\x30\x05\x55\x08\x90\x26\xb9\x41\x08\x35\xa2\xa0\x50\x20\xee\x93\x1f\x07\x31\x7d\xa4\xb0\x2a\xab\xf9\x64\x06\x32\xb9\x0b\x1c\xe1\xcb\x5c\xc8\x96\xa3\xef\x61\x79\x06\x63\xa9\xe6\x32\x88\x22\x01\xd3\x76\x39\x70\x5a\x8c\x57\x36\x84\x01\xc8\x60\xd7\x75\xb7\xbf\xd7\x36\xb5\xec\xc9\x53\xb6\x3c\xa5\x49\xb3\x63\xa9\x6a\xa6\x52\xf1\x4e\x77\x47\x48\xbe\x91\x94\x7c\x93\xda\x7c\xd5\xe5\xdc\xd4\xf7\xa9\x17\x63\x4f\xca\x51\x77\x7e\x38\x8e\xee\x84\x08\x3b\xf3\xfc\x50\xc4\x0c\x96\xba\x2a\xe9\xc1\x2d\x1f\xbb\xaf\xa8\x57\xcb\xf8\x54\x16\xa8\x6f\xe4\x3c\xa1\xd6\xeb\x79\xfc\x21\x0a\xfd\x34\x8a\x99\xa8\x65\xa9\xfd\x49\x65\x01\xa9\x56\xa9\x77\x8e\xcd\x7a\xe7\x42\x13\x15\x88\x96\xdf\x39\x0a\xbf\xd0\xce\xd6\x85\x5f\x6e\x55\x00\xa5\xf6\xa2\xeb\x90\xf5\x7a\x4a\xb6\xd8\x22\x4d\x6c\xaa\x9b\x21\x55\xab\x12\xc7\xc6\xf6\x24\x8a\xef\xbc\x78\x4c\x71\x04\x56\x05\x1c\x65\xf0\x65\x9a\x82\xe2\xb4\xdb\xde\x98\xc1\x7b\x4f\xfa\x09\x31\xb9\x11\x88\xa4\xe9\x4a\x7e\x63\x65\xc6\x9d\x95\x60\x5c\x07\x8b\xb8\x12\x84\xcb\xac\xf0\x1b\x6c\xea\xcb\x17\x1f\xf2\x95\x5c\x5e\x44\x05\x29\xf9\xb3\xdf\x4c\xcb\xab\xb1\x0f\xc2\xc6\x29\x66\x6a\x6c\x8d\xcf\x58\xcf\xe3\x79\x5c\x7a\x5f\x21\xc5\x3c\x5b\x64\x9e\xb1\x80\xd6\x96\xa8\xe7\x6d\xa4\x59\xbd\x91\xfd\x73\x1f\xc8\xc2\xb2\x28\x90\x42\x5c\xc1\x25\x25\x69\xce\x7b\xb1\xde\xec\xa9\x97\xf0\x18\xf1\xf0\xf7\x05\x5e\xe0\x0f\xfe\x28\x8e\x52\x2f\xf9\xa6\xa6\x9e\x36\xaf\xbc\x3c\xf3\x6e\xa1\x9c\xdc\xc6\x0c\xdb\x4d\xc4\xb7\x11\x6f\x85\x6d\xa4\xb8\x85\x30\x7d\xeb\x17\x7d\x22\x18\x3d\x59\x32\x02\xc1\x17\x86\x15\x97\xd8\x1f\x16\x29\xe9\x42\x49\x89\xfc\x6f\xd9\x0a\x16\x29\x8e\x25\x5e\x39\x35\x13\x9c\xbe\x9e\xc7\xc7\xe1\xf8\xad\x1f\xe3\xd3\xc9\x6b\x9f\x9a\x33\xca\xa1\x8e\x16\x31\x19\x6b\x31\xaf\x05\x2a\x13\xa2\xc4\x49\x1c\x02\x0f\xf3\x3c\xd7\x52\x10\x7c\x31\x10\xab\x94\x92\xdc\x72\x60\x62\xca\x1d\xcd\x14\x02\x01\xf6\xe2\xbc\x29\x00\x20\x53\x37\x94\xc7\x9a\x99\x5a\xd2\x7f\x25\x49\xb2\xea\x96\x8f\xd5\x3c\x60\xd3\x83\x0f\x59\x0e\x0c\xc9\xbe\x91\x8f\xe6\x75\x34\x13\x75\xc4\xde\xa6\xa2\x0b\x07\x9b\x31\x05\xa4\xef\x2a\x55\xc8\x01\x86\x9e\xb1\xcc\x40\x8c\xd2\x6c\xc9\x0b\x5d\xc5\x8c\xcb\xe0\x11\x0a\x7f\x29\x9b\x4d\x2d\x6c\x50\x66\x85\x4c\xfd\xf1\x68\x60\x51\xf5\xfd\x2a\x0a\x16\xd4\x56\x0e\x8f\x7d\xef\x03\x11\xe5\x49\xa5\x23\xee\x16\x27\x27\xc1\x00\xe4\xc7\x71\x71\x15\x16\x26\x10\x33\x52\x48\xab\x59\x5f\xd9\x69\xd5\xf0\xc2\x71\xc3\xca\x61\xe4\x69\xbb\x6a\xfb\xce\xc6\xf3\xf9\x3d\xf8\x0a\x96\xe0\x40\xd8\xaa\x96\x0a\xdc\x32\xbc\xc4\xae\x55\x00\xe5\x5c\xaf\x35\x21\x6b\xcc\x47\x25\x35\x35\x29\x4a\xdf\xb2\xf8\x36\x9f\x65\x19\xdc\xdd\xdd\xff\x5e\x01\xf4\xbd\x1f\x7e\xfb\x1c\x47\xb7\xfe\x78\x89\x04\xca\x8f\x89\x78\xf9\x31\x51\x38\x25\x02\xa5\x87\x5c\x37\xb7\xda\xe6\xa6\xb5\xcd\xe3\x7b\x00\x20\x95\x74\x2a\xfe\x45\x3b\x25\xbd\x35\xcf\xc2\x03\x1f\xb9\x7f\x69\x8f\xa6\xdf\xd7\x74\x54\x7a\x03\x9a\x15\xed\xd3\xc4\xc2\xa0\x4f\x43\x6e\x0a\x76\xd0\x6b\x29\x1a\xb4\x2c\x23\x67\xac\x89\xa2\x71\x06\xf7\xf6\xb7\xb6\xff\x7c\xf4\xf8\x8f\x7a\xf4\xf8\x10\x2d\x92\x6a\x13\x22\x16\x72\x38\x42\xbe\xb5\xbf\xe7\xec\x08\xe5\x53\xa1\x55\x6d\xb0\x04\x96\xdb\xc0\xa4\x0e\x57\x8d\x36\x52\xf6\x4c\x10\xc5\xe3\x24\x0f\x3e\x23\x9d\x7b\x1c\xc8\x43\xbb\x90\x72\x60\xb1\x83\x1b\x8a\x7a\x46\x88\xb6\x6a\xac\x04\x0d\xa8\x2c\x0d\x4b\xbe\xbc\x36\xb7\x51\x89\xa9\xd0\x4e\x29\x72\x86\xa9\x47\x80\x1c\x47\xae\x18\xd2\xc7\x70\x86\x03\x2f\xf5\x6f\xf1\x45\x24\x9e\xf9\x95\x41\x81\xbe\xa6\x32\xaf\x1a\x94\x50\x47\xf8\x9a\x9e\x41\xea\x44\xc8\x67\xe8\x80\x95\x06\xa3\x66\x2e\x71\x01\xf4\x73\xe5\x8a\x0e\xd1\x5d\x13\x22\x23\x10\x01\xf9\x38\x8a\x82\x9e\x62\xa8\x4a\xb0\xfb\x69\xad\x59\x01\x30\x8e\xee\x74\x10\xee\xea\x20\x18\x26\x00\xde\x17\x91\x00\xf0\xa1\x08\x94\x87\x98\xd7\x58\xdc\x13\x6a\x96\xd0\x3e\x3d\x53\x7b\xa3\xa1\xdf\xc9\xd7\x62\x70\xf9\x21\xf4\x40\x06\xb7\x3a\x5b\xce\x9f\x1b\xea\x7f\xd4\x86\xaa\xb1\x47\x79\x47\xdd\x71\xf7\x79\xd0\x77\xb6\xb7\x7a\x52\x67\x36\x15\x6a\xb4\x11\xf2\xad\xdd\x4e\x67\x87\x45\x7d\x67\x0f\xc8\x64\xe3\x1d\xa3\x22\x74\xdd\x60\x73\x5a\x34\xd8\x1c\x2b\xe9\x7a\x74\x2d\x46\xcc\x23\xfe\xb0\xfb\x8e\xb2\x64\xca\x26\x9b\xf4\x41\x22\x82\x01\x1c\x17\x6f\xd6\x34\x27\xdc\xa2\x10\x26\x5e\xdd\xd5\x13\xa8\xf7\x66\xb8\x28\x4f\xab\x6f\xd8\x73\x6f\x91\xe0\x31\xbb\x9f\x5d\x78\xc9\x37\xaa\x97\x1b\xd9\xaf\xf1\x75\xb4\x08\x47\x78\x7c\x3a\x0e\xe8\x77\x21\x80\x5e\x27\x38\xbe\xc5\x71\x0e\x68\xbd\xee\xfc\xe4\xb3\xa7\x6b\x0d\x43\x8c\xc7\xc9\xdb\x45\x10\x9c\xb1\x14\x85\x79\x89\x9f\x7c\xc4\xf7\x29\x9b\x8b\x33\x3c\x8e\xbd\xbb\x4f\x61\xf0\x20\x3d\xfc\x58\x4b\xc5\x7d\xa9\xd0\x9c\x6d\x8f\x5f\x54\x2b\x57\xfe\xed\x9d\x6e\xec\xaa\x1a\x7c\xa7\x18\x3d\x52\x27\xa9\x1e\x97\xbb\x71\x38\x16\x7f\x16\xdd\xeb\x7a\x1b\x6e\x96\xeb\x29\xe4\xe4\x56\xaa\x2b\xbc\x0a\x75\x85\xb1\xa5\x01\x64\x41\x8f\xc9\xe3\x49\x8d\x7f\x13\x2e\x72\x6b\xf6\x5b\xd7\xbe\x12\xbc\x11\x87\x75\xfb\x2c\xf4\x51\x82\xc9\x52\x55\xe2\xdf\x17\x58\xdc\x26\x57\x83\x5d\x6e\x57\x02\xa7\xf5\xc5\x56\x8c\x60\x75\xa6\x92\x0e\xf9\xe2\x97\x5f\x2d\x8b\xbb\xbb\xa9\x6d\x64\x16\x29\x00\x83\xa2\x8e\xc6\x08\xbb\x58\x29\x50\xf5\x54\xca\x35\xa7\x3e\x67\x6a\x59\x27\x1c\xd1\x81\xd3\x6c\x9f\x8a\x46\x64\x92\x2f\x27\x73\x23\xe1\xa2\x1b\x85\xec\x39\x83\x3a\x6e\x91\xb3\x45\x01\xa2\xef\x5e\x47\x32\x78\x4a\x09\x9c\x6f\x47\xa1\x66\x0d\xad\x00\x31\xa7\x3b\x2b\xc3\x30\x4b\x62\x45\x93\xe4\x12\xa1\x4a\x49\x40\xcb\x90\xa9\x36\x5c\x86\x3d\x3b\xe3\x9f\xf1\x78\x0d\x7a\x15\x41\x90\x3b\xfd\x3a\xed\xfd\x1a\xb3\xf1\xd1\x22\x49\xa3\x19\x0d\x55\x90\x50\x2b\xd9\xea\x80\xa3\xb4\x58\x8b\x48\xc9\xbe\xf8\x21\x66\x3b\x9a\x34\x3c\x37\xda\xa1\xf3\x1f\x5f\xf4\xaa\x79\xe2\x35\xfa\xc9\x14\x8e\x91\x16\xc4\x34\xbc\x03\xa6\x41\xa6\xbd\xf9\xdc\x0f\x6f\x04\xce\xdc\xbe\x5d\xf3\xbb\x87\xca\x1c\x71\xf6\x8c\x98\x7b\x55\x44\x1d\xf9\x64\x0c\x37\x95\x70\xd9\xba\x94\x93\x89\xa0\x28\x86\x4a\xaa\x27\xdd\xe8\x3e\xcf\x7d\x9b\x48\xd6\xb7\x1f\xa0\xf2\xe7\x86\x63\x98\xb5\xb1\x2d\x7a\x63\xe4\x5f\x3e\xe1\x57\xa2\xed\x69\x98\xe2\x38\x61\x87\xca\x27\x7e\x62\x5a\x01\x7f\x5f\x90\x69\x77\xb5\xcd\xa0\xe2\x89\xa8\x16\x22\xdd\x80\x00\xcd\x7e\xbc\xa4\xd6\x23\x95\x45\x4d\xc5\xd4\x88\x15\xe7\x57\x28\xb2\x07\x62\xdb\x08\x28\xc7\x8a\x4d\xac\x5a\x89\x23\xae\xbd\xb2\x02\x00\x1f\xd3\x29\xa1\x51\x14\x8c\x7b\x4e\x06\xfa\xbe\xcd\xe5\x07\x4b\xda\x82\x96\x05\x8a\x5c\x3b\x3c\x35\x69\x83\x7c\x7b\xec\x27\xa3\x28\x0c\xf1\x88\x06\x86\xcf\xb2\x1a\x74\xc4\xfd\x58\x8a\x1d\xf2\xcd\x06\xd3\xa8\xe1\xa2\x45\x78\x73\xc4\x3f\x2a\x40\x28\xf3\xf7\x36\x8a\x35\x0b\x92\x8c\x30\xe0\xa9\xbb\x45\x56\xd5\x91\x06\xc0\x22\x27\x84\x00\x2a\x24\xea\xa2\x70\x24\x35\x8e\x45\xb1\xcd\x9e\x04\x8b\x64\x9a\xbf\x17\xe4\x1c\xef\x14\xe4\x48\x72\x51\xac\x94\xbc\x40\xa6\x36\x65\xe1\x3f\x36\xdc\x22\x15\x8f\xaa\xda\x3b\x3d\xcb\x97\x01\xcd\xaa\xc4\x37\x17\x98\x8f\x5f\x81\xb5\xe2\xa1\x23\x70\x66\x3c\xae\xa7\x6f\x34\x1d\x52\x34\x2f\x9e\xbc\x53\x63\xd3\xc8\x15\x63\x81\x4a\xc2\x14\xe4\xf6\x42\xcf\x75\xd2\xa7\xa2\x11\xd6\x40\xac\x96\x48\x9b\xca\x9f\xcc\x47\xdf\x28\x9a\xda\xb8\x9c\x2a\x9b\x15\x94\x92\x64\x2f\x11\x91\x41\xad\x88\x2d\xd8\xb5\x52\x08\xa4\xaf\x1c\x5c\x4e\xc6\x54\x44\x4e\x33\x50\x10\x0a\x6b\x2b\x55\x8a\xf6\x84\x01\x4b\xb9\xcb\xc5\x0d\x48\x50\x85\x40\xfe\xc4\x1d\x05\xf8\xe9\x02\x96\x64\x56\x2d\xf1\xc9\x1a\xeb\xc4\xd4\x1d\xc8\x8c\x9f\x6b\x7b\xab\xbe\x0f\x96\x14\x44\xca\xa3\xb2\xbc\xc4\x88\x3d\x61\x25\x28\xba\x47\x98\x76\xef\xc9\x67\xb7\x74\xc1\x50\x5e\xaf\x2a\x7b\xa1\x49\xe6\x13\x11\xcc\xd6\x2a\xc4\x2c\x29\xb4\xcb\x12\x9c\xca\xaa\xd8\x4c\x1e\x84\x8d\xcb\xae\x8a\x6a\x84\xbf\xa8\x28\xcf\xf8\x26\x3f\x95\xb4\x9d\x8b\xaf\x22\xb6\x64\x36\x94\xa7\xf0\x8a\x15\xe1\x98\x04\x12\x90\x79\xe3\x31\xff\x75\xe2\x05\xc1\xb5\x37\xfa\x56\x7c\x59\x28\xed\x62\xc6\x26\x99\x0e\x78\xf5\xfd\x74\x15\x36\x65\x4f\x59\x44\x5e\x5c\xc4\xf8\x38\x0d\xbc\x64\x4d\x46\x2c\xb5\x3f\xb2\x2d\xa3\x84\x26\x5c\xc1\xab\xee\x27\x8f\xcb\x8e\xb9\x75\xb0\xaa\xef\x6a\xa5\x83\x4e\xe0\x7b\x56\xde\x53\xcc\x28\x14\x66\xa4\x74\xca\x26\x38\xad\xbb\x22\x95\x7a\x03\xa0\x57\x33\x36\xa5\x62\x1d\xb5\x4b\x97\x1c\xe3\x18\x8e\xaa\xae\x44\x1c\xca\xab\x60\x11\x2f\x69\xca\xaa\xf0\xfa\xdc\xea\xa4\xb6\x01\xaf\xb3\x76\x76\x3f\x71\xca\x95\x73\xfc\xc9\x73\x0e\x55\x1c\x81\xe5\xc4\x7f\x46\xa6\x3a\xaa\x3a\x72\x19\x4e\xa6\xdc\xdc\xb5\x44\x55\x2a\x16\x02\xc8\x56\x5c\x93\xa9\x76\x5b\xd7\x23\x8e\x85\xcf\x6c\x60\x0e\xe7\x1d\x19\x93\xa7\x6e\x93\xea\xc6\xb8\xdd\x5d\x52\x52\x4a\x9f\xba\x43\xe1\x18\xc3\x82\xef\x92\xa2\x42\xa0\xef\x31\xc8\xe0\xfe\x96\xdb\xf9\x53\x7f\xfe\x1f\xa5\x3f\xcf\x23\x0f\x55\xa9\xd0\xe9\x53\x24\x7b\x94\xec\x3a\xdb\x4c\x85\xbe\xdd\xdd\x61\x1a\x74\xa6\x55\x1f\x49\xad\x7a\x20\xb4\xea\x63\x11\x1f\x95\xe6\x4d\xdd\xde\xdb\xe6\x79\x53\xa9\xa7\xd6\x44\x86\x4b\xb8\x45\xcc\x5c\xdb\x9e\x70\xdf\x24\xea\x27\xe4\x12\x50\x73\x7a\x05\x3d\xc3\x37\x6f\xee\xe7\xd6\x2d\x1c\x6c\xde\x88\xf0\xb6\x37\xc8\x80\xb7\xae\x9c\x0f\x6a\xed\x5e\x45\x06\x56\x38\x2d\xab\xd9\xb9\x37\x74\xbe\x23\x51\x2b\x95\xa2\xe3\x76\xe0\x87\xdf\xfc\x89\x8f\x63\xb9\xed\xe8\x8e\x48\x75\x99\x57\x67\xea\x53\x97\x48\xba\x5a\x70\x8c\x8d\x4c\xef\x7e\x22\xa4\x9c\x29\xd5\xab\xb8\x0f\x8c\x63\xef\xe6\x7c\x14\x47\x41\x70\x3c\xa3\xb2\xb2\x38\x0d\x71\x48\x68\x31\xce\x25\x1c\xcd\xd7\x69\x51\xcc\xe8\x4a\x91\x7c\x1d\xdd\x85\x17\xfe\x0c\x9f\xa7\xde\x6c\x9e\xc7\x84\x08\xc6\xef\x4c\x01\x14\x49\xc1\x79\x75\xd8\x2c\xad\xb8\x18\x3a\xeb\x2a\x0a\xdf\xfb\xe1\xe2\x9e\x3f\x03\x0a\xd0\xba\x7a\x84\xbd\x48\x18\x75\xbe\x95\x8d\xcd\x80\x4b\x9a\x66\x22\x41\x56\x2b\x9a\x2b\x3a\xd5\xe4\x4f\x64\x04\x56\xe8\xa8\x70\x0a\xad\xde\x95\xb1\x61\x19\x60\x69\x5c\x14\x09\xc6\x0f\xef\xfd\x10\x27\x6b\x0f\xae\xd4\xd6\x08\x56\xeb\x97\xb2\xce\x07\xc5\xdc\x09\x15\xf4\x45\x1f\x44\x05\x4b\xde\x4f\x69\x9b\x5f\xe7\xb5\x2d\x7e\x9d\xe7\xf5\xd5\x74\x98\x51\xf8\x6b\x82\xe3\xd3\x70\xbe\xe0\x32\x59\x39\xc8\x27\xdf\x58\x8b\xc1\x81\xb2\xdc\x7c\x39\xf6\x67\xba\x65\x6a\x9d\x73\x5a\x14\xd2\x18\x48\x45\x3d\x18\x0f\x8c\x54\xa1\xd3\x36\xc1\x33\x29\xde\x0b\x40\x0b\xc5\x8a\x3d\x38\x5b\xd1\x79\xe8\x7b\x1a\x2e\x8f\xbd\x8b\xe8\x31\xf4\x4c\x08\xc8\x6c\x55\x2c\xc3\xbd\x5a\x5f\x2c\x74\xd5\x1e\x2b\x30\x69\xe0\xa4\xe0\x33\x8b\x6e\xd9\x14\x91\x0d\x43\x90\x31\x61\x8a\x5c\x72\x8f\xc7\xa9\x16\x8e\x55\x9d\x81\xb1\x9f\xb0\x51\x98\xcb\x8b\x9b\x97\x9b\x89\x51\x3f\x16\xb7\x35\x6a\x9d\x9d\xd4\x05\xd2\x63\x24\xb2\x0d\x11\xf7\xf4\xb6\x2c\xac\xdd\xd2\x96\x6f\xc2\x71\xc6\x03\xf5\xa8\xe1\x03\x0b\x31\x5c\xaa\xba\x84\x69\x4d\x8d\x72\x84\xae\xa7\x27\xcc\x22\xb1\xa6\x2c\x7f\x4d\x1e\xa1\x0b\xe8\xc8\x53\xdf\xfd\x1f\x87\x05\x0d\x3b\x4d\x43\x84\x31\x7c\x06\x9b\x4a\x42\x90\x6a\xc6\x86\x09\xba\xa4\xde\x47\x5b\x52\xf5\x60\xe0\x34\xe6\xdc\x98\x8f\xab\xdc\x07\x91\xba\x9c\xe1\x41\x4a\xf3\x04\x5d\x3a\xc3\x1e\xf5\xec\x09\x95\xaf\xe4\x3f\x3d\xf2\x53\x3a\x45\x45\x88\x50\xa7\x1f\x1d\x50\xf2\xf4\xa3\xdc\x29\x0a\x23\x3f\xf7\x12\x65\x0b\x8b\x6c\x5f\xd2\x5f\x34\x82\x1b\x0e\x75\x67\xeb\x4b\xdb\xc0\x8c\x79\x30\xe5\xd8\x48\xba\xb3\x9e\xb9\xb8\xc4\xeb\xd7\x83\x27\x8d\x49\x0f\x98\x7a\x27\x81\xdc\x5b\x8f\xc1\x6d\xb9\xfd\xf8\x80\x67\xae\xee\xc7\x3a\xd6\xb9\x53\x2c\xd9\xa1\x97\x0c\x23\x86\x1b\x0e\xe8\xe3\x23\xdb\x4f\xbe\xc4\x34\x5e\xea\x51\x72\x99\xe4\xfa\xf8\x16\x4a\x7b\xd2\xe9\x38\xa3\x53\xe0\x0e\x37\x38\x37\x19\x3b\x65\x19\xb6\xe3\x25\xfd\xa6\x7c\x7c\x2c\x2d\x37\xe8\xe3\x66\x13\x57\xe3\x10\x0b\x1c\xe2\xdc\x3d\x2b\xb1\x67\xde\x9c\x6e\x81\x34\x0d\x40\xe0\x8d\xb0\x35\x67\x89\x4a\x81\xc8\xc5\x3a\x26\x20\xe9\x23\x49\x72\x34\xd8\x1c\x0c\xe2\xc1\x20\xa4\x11\xf2\xe9\xbf\xa0\x22\x9e\x27\x67\xf0\x8a\xfd\xa5\x7a\x0b\xd3\xd4\x0b\x79\x18\x93\xd2\xc1\xcb\x62\x24\x65\x52\x75\x9d\xdf\x0a\xe9\x87\xe3\xd0\x9f\xd1\x6b\xdb\xdb\xd8\x9b\x61\xa9\x1a\x37\x96\x56\x67\xcb\xe4\x7e\x29\x31\x3b\x7f\xf5\x56\xba\x3a\x42\x79\x91\x22\xf4\xa2\x22\x50\xb3\x89\x8b\x41\xef\xc8\x66\x21\xf3\x5b\xd4\xc9\x4b\xb9\x42\x50\x6b\x4b\xd5\xf1\xba\x2e\xcb\x3c\xa4\x82\xac\xa7\xcb\x48\xaa\x82\x78\xd9\x7e\x85\x45\x70\xd2\xaa\x1d\xab\x6c\x9d\x51\xbb\x05\x65\x2c\xfb\x59\xe0\x8f\xbe\x69\xe9\xcf\x80\x6e\x06\x7c\x25\x6c\x0e\x19\xdb\x0b\x9b\x43\x00\xfd\xa5\x3b\x6c\xb2\xda\x3e\xbf\x61\xf9\xcd\x26\xb9\x01\x02\x31\x13\x5e\x8c\x59\x3f\x2a\x62\xec\xc6\x9a\xad\x94\xb0\xed\xbb\x71\xca\xd3\xb8\xd5\x60\x74\x89\x61\x3a\x64\x58\x99\x2b\x68\x21\xad\x1b\x32\xcc\x24\x3b\xc4\x0e\x7c\x1a\x71\x52\x89\x2c\xae\x1d\x6e\x3c\xfc\xa4\x3c\xf5\x9c\x21\x4d\x05\xc7\x1a\x1c\x68\xd5\x7d\x59\xbd\xb2\x4a\x11\x62\xc6\x95\x4a\x5f\xa2\x78\x7c\x9c\x32\xdd\x8e\x89\x90\xf2\xb6\x67\x73\x6f\x89\xf7\x7e\xf8\xed\x88\x5a\x7d\x1f\xd9\x31\x59\xff\xcc\xd1\xd6\x20\x32\x14\xe2\x08\x5f\xfa\x4c\xe1\x65\xdf\xb7\x5d\x28\xfe\x7e\x68\xbb\x43\x58\xdd\x88\x87\x0b\xa6\xb9\x1d\x6f\x70\x4a\x1d\x82\xd9\x37\x60\x19\x6f\x9f\xcc\x8f\xd8\x0c\x51\xb9\x78\x6d\xe4\xf6\xfc\xb5\x3c\x2e\x39\x34\x91\xea\x51\x95\x6c\x56\x92\xab\x2d\xeb\x3a\x03\x59\x22\xc2\x03\x17\x36\x65\x43\xdc\x64\x67\xcd\x7d\x97\x81\xa6\x77\x11\x55\xbb\x5b\xb1\xe9\x63\xa4\x04\x67\x75\x8c\x8f\x81\x35\xd2\xbf\x38\xc3\x2a\x06\xcd\x27\xda\x81\xb8\x62\x52\x09\x55\x6a\x22\xfe\x0e\xd7\x1c\xba\x7e\xf9\xd0\x06\xae\x95\xf0\x45\x2c\xe1\x66\x55\xf3\x5d\xd8\xf9\x54\x75\x85\xad\xd9\x8d\x97\xf5\x23\x95\xdc\x68\x2c\x20\x87\x1b\x15\x55\xfc\x89\x95\xca\xc5\x73\xe9\x0c\xdb\x6d\x48\xc5\x20\xf6\x4f\xab\xee\x42\xc6\x92\x0a\xa4\xf9\x60\xe8\x65\x56\xd5\x80\x90\x11\xb1\x90\x08\xd4\xa0\xb8\xce\x2a\x7c\xc9\xc1\x0b\x8d\x63\x06\x44\xc8\xd4\xf7\x8b\xd5\xad\xb5\xf3\x94\x4f\xc8\xa1\xd9\x2c\xfd\x23\xa7\x67\xa5\x87\x3e\x59\x6a\x6d\xe4\x6b\xbc\x99\x7b\xe0\xc3\x76\xd7\x01\x90\xfc\x3f\xfd\x09\x75\x1d\x98\xfe\x44\xcb\xbc\xeb\xc4\x4a\x41\x4b\xc9\xc1\xe1\x6e\xbf\x4c\x01\xc8\x92\x69\xb4\x08\xc6\x6f\xa3\x78\x84\xb5\x33\x8e\xf7\x4e\x44\x84\x0f\xde\xe8\x08\xdb\x5e\x90\xfe\x82\x1f\x96\x67\x43\x9e\x79\x23\x6e\x86\x43\x4e\x4e\x0a\x38\xbf\x04\xf5\xb0\x9d\x4c\xfd\x09\x81\x94\x29\xf7\x77\x22\x59\xf1\x88\x31\x95\x3a\x26\x6c\xa7\xe2\x6f\x68\x75\x68\xf2\xf4\xeb\x45\x9a\x46\x21\xb9\x82\x14\x6f\xf5\xa0\xd9\x64\xc6\x1a\xac\x8a\x12\xfa\x5b\x5c\x0b\xd5\x68\xe0\x66\x12\x70\xb6\xeb\x63\x3b\x49\xa3\xf9\xe7\x38\x9a\x7b\x37\x1e\xbf\x9b\x62\x7b\x1e\x53\xc5\xc6\x6b\x96\x16\x38\x8f\xee\xb8\x44\xc9\x46\xe4\x5e\x41\x81\x23\xf5\x32\x7f\x1a\x8e\x62\xca\x34\x5e\x40\x09\x67\x61\xd0\x63\x49\xc6\xc6\x38\xf5\xfc\x40\xab\x7c\xee\x87\x37\x01\x96\xf5\x3a\x55\xf5\x5e\x47\x8b\x6b\xa5\xde\x96\x52\x4f\x26\xec\x12\x1b\xc1\x3c\xaf\x28\x14\x00\xe3\xf1\x72\xb9\x97\x86\x50\xa8\xaa\xfa\x68\x58\x14\xba\xf3\x72\x7e\x6e\x54\xd7\x31\x39\x8e\x53\x06\x21\x92\x79\x1e\xfe\xb1\xa8\x5b\x02\xa6\x25\xb9\x22\xe4\xc5\x5c\x87\x9b\xeb\x9f\x40\x79\xa6\xa9\xe5\xcf\xad\x17\x10\x5e\x8d\x97\x8a\xe8\x09\x4e\x45\x03\x55\x30\xcf\xc1\x59\x80\xae\xdf\xac\xe6\xea\xf1\x83\xe8\xca\x3a\xf8\x17\x91\xb6\x06\xf8\x0a\xd4\xad\xa6\x1f\x3d\xb2\x25\x05\x6b\xe7\x62\xd9\x54\xf1\x84\x38\xd5\x2b\xf0\xb1\xfa\x18\x97\x04\x36\x1c\xe1\xb5\x32\x93\x3c\x96\xf5\x45\xac\xee\x7d\x95\x82\x9e\x03\x97\x08\x47\x6e\x8d\xee\x4e\xd9\xeb\x4e\x94\x8b\x90\x85\xc1\xd1\x56\xcf\xa9\x93\x58\xea\xef\x39\x1b\xd5\x2d\xc5\x16\xba\x44\x04\x5c\x2f\xf6\x57\x75\x77\x97\xee\x10\xf4\xd3\x66\x53\x5c\x5c\xa5\x77\xb6\xb1\x32\xb9\x36\xb0\xe8\x61\x53\x6e\x3e\x53\x07\xda\x19\xca\xbb\x4e\x45\x79\xab\x95\x19\xb7\xdd\xc7\xb2\x60\x2c\xef\x13\x1b\x4e\x9e\x08\xdb\x34\x67\xae\x2a\xc4\x29\x3b\xf4\x6a\x57\xd0\x7e\x5a\x0b\xbc\xa3\x3d\x9f\x13\x09\xf9\x98\xeb\x73\x84\x58\x50\xe0\x93\x3c\x8b\xb9\x10\x06\x36\x2c\x2e\x20\x7c\xa7\x5c\x20\x87\xa9\x3e\x00\x50\x15\x20\x3d\x7c\x4f\x67\x33\x3c\xf6\xbd\x14\x6b\xa7\xf0\x2a\x9c\x57\x14\x58\x8b\x1c\x28\x12\x6c\x94\x4b\x64\x4e\x26\x53\x99\x3b\x1c\xd2\xd7\xea\x7e\xd5\xaa\x5d\xba\x0d\x54\x20\xff\x26\x1c\x97\xf3\x67\x29\x67\x6d\xbf\x53\xa7\xb2\x38\xaa\x41\xf8\xa0\x76\xdd\x54\xb7\x74\x86\xc8\xe9\xd5\x95\x56\x09\xf6\x54\x7c\xa9\x44\x55\x30\x0c\x83\x76\x11\xf1\x1b\x63\x25\x51\xaa\xe4\x2b\x9d\xc8\x26\x11\x1f\x6e\x6d\xd4\xe2\x51\x3a\x43\x58\xcb\x43\xa7\x96\x26\x95\xa3\x36\x43\xcb\x73\x47\x54\xd1\x18\x80\x15\x94\xe7\x75\xfc\x46\x75\x1a\xda\x45\xb4\x42\x63\x5b\xdd\x9e\x2a\x66\x99\xe0\x5c\xbf\x27\xf2\x44\x25\x15\x3b\x22\x2b\xad\x8c\xd4\x56\xdb\xaa\xd5\xca\xc8\x0e\xce\x35\xff\xd5\xf5\x64\xca\xb9\x9a\xe1\x70\x33\x46\x55\x54\xd5\xe4\xac\xca\x33\x37\x4f\x26\x52\x71\xf6\x9b\x27\x59\x86\xe4\x30\xbd\x83\x32\x55\xa6\x47\x2b\x56\x30\x09\x4c\x16\xf3\x79\x8c\x93\x84\x7d\xa4\xcc\xdc\xdb\x70\x33\x50\x88\xc7\x6c\xe4\x8c\x4a\x2e\xb6\x56\xe3\xff\xf5\xd8\xbc\x5a\xad\xa3\xf9\x2c\xf3\xd4\x7e\x95\xd9\x9a\x20\x2e\x6a\x4e\x40\xef\xbb\xf0\x75\xea\x11\xe3\xf8\x14\x75\xf7\x59\x56\x7a\x4d\x96\x27\xac\x72\xef\x6c\x57\x5d\x4e\xf3\x65\xb9\xec\xb9\xc0\xa4\x5f\x3f\x40\x2e\xb9\xe0\x77\x1d\x87\xdc\x0e\x57\xbd\x67\x7b\x41\x4a\x4f\x52\x72\x58\x26\x4c\xa0\x50\x18\xba\x3a\x73\x96\x5c\x32\xd5\x4a\x93\x35\xf5\x3c\xf8\xf9\x1a\x1e\x97\x69\x78\xd4\x3c\x0c\x74\x6d\x2b\x3f\xd5\x87\x27\xea\xbc\x4f\x08\xcc\x82\x48\x9e\x93\x55\x16\x8e\x30\xa0\x51\xfd\xda\x2e\x53\x0d\xb9\xa6\xfe\x0c\xc6\x01\x63\x3c\xfa\x1c\xd3\xa7\x73\xc2\x57\x89\xed\xcd\xe7\x81\x3f\xa2\xb2\x05\x23\xe7\x2f\xf8\x21\x01\xfd\x72\xc3\x34\xf6\x6f\x6e\x30\x8d\x7a\x4c\x97\x28\x93\xe3\x32\xf6\x1e\x28\x52\x7a\xfb\x31\x3b\x8c\x4e\x27\x25\xfb\x42\x6e\x18\x5e\x59\xfc\xa3\x5e\x68\xa1\x8f\x56\x78\x23\xee\xfb\x47\xe4\x30\x96\xeb\xaa\x64\xaa\x23\x59\x51\x37\xd2\x61\xda\x72\xc9\x4d\xa5\x66\x5a\x47\x15\x55\xdc\x61\x61\xab\x2f\xf4\x51\xde\xe7\x8b\x15\xe4\x26\xcf\x6d\xed\x0b\xd4\xe4\x2f\x0c\xc2\xc4\xb6\x60\x9f\x24\x46\x56\xd7\x34\xab\x2d\x7d\xac\x18\x59\x1e\x68\xae\x60\xd9\x94\x56\x58\x4a\xf9\x2b\xea\x72\x4b\x36\x1f\xb5\xc6\x11\xaa\xed\x8a\xcd\x23\xd9\x18\x0b\x11\xe6\xf9\x42\x5f\xad\x63\xcc\x92\x5d\x8d\xa2\xf0\x16\xc7\xa9\xf4\xfd\x88\x82\x8b\x48\x06\xc8\x3c\x0d\xc7\xf8\x5e\x0d\x4f\x9a\x6a\xd1\x49\xd3\x43\x94\x14\xe2\x92\xe6\xc1\x93\x93\x82\x29\x1a\x28\xc7\x13\xee\xe7\x71\xf5\x0c\xe1\x94\x8f\xfc\x76\xbb\x17\x1f\x92\x9d\x75\x03\xa1\xa4\xd9\xb4\xfc\x16\x8a\xdb\xae\x12\xf5\x37\xc1\x69\xe9\x29\x4a\x5d\x50\xcf\x7c\x11\xae\xd0\xfa\x63\xa9\xbf\xaf\xbb\xe1\xfb\x66\x15\x7f\xfd\x76\xc2\x1c\x40\xc9\x61\x90\x5f\xd5\x58\x3b\xe3\xfb\xa5\x7c\x63\x36\x5f\x49\xdd\xe2\x7b\xc0\x86\xb3\x12\x1a\xec\xd9\x80\xcb\xf1\xdc\x2f\xcc\x81\x09\xda\x70\xa4\x31\xc7\x61\xb5\x3c\xa1\xdd\xd7\xea\x0c\xad\x60\x88\xb4\x48\xe0\x6c\x0f\x9b\x58\x1b\xa1\x0e\x23\x42\xf1\x0a\x26\x17\xae\x0c\xa5\xc3\xb7\xf9\xa5\xfc\x1c\x52\x23\x0d\x00\xa7\xc8\xe3\x3d\x8d\xa8\xcd\x49\xdb\xe3\xd1\xea\x1d\x38\x46\x0e\xbc\x42\x0e\x5c\x20\x87\x59\x28\x37\x06\x9b\x08\xa1\xc8\x1e\x4d\xbd\xf8\x38\xb5\x3c\xc0\x82\x1a\xf7\xbd\x43\xa7\xd9\x2c\x17\xb7\x5d\xd0\x07\x5e\xbb\x4d\x97\x4b\x7f\x7a\x10\xc9\x87\xf8\x52\xdd\x69\x8b\xd4\x9d\xb6\x5a\xcc\x18\x85\xbd\x66\x50\x2b\x12\x9f\xfe\x43\x17\x49\x98\xaf\x0b\x9a\xcf\x2f\x68\xb5\x60\xda\x6e\x03\xd8\xd1\x0b\x7d\x52\x38\x6e\xb5\xa0\xdf\x6a\x01\xf9\x02\x18\x2a\xa1\x93\x7d\xb9\xf8\x08\x6a\x09\x59\x5e\xd6\xa2\x85\x92\xb6\x0b\xa7\xf4\x1f\xd0\xa7\x59\x94\xe8\xc0\xa4\xc3\x22\xa1\x20\xe1\x8b\x73\x3c\xf7\x62\x2f\x8d\x62\x2b\xcc\x57\x7a\x2a\x0f\x6c\xb9\xd6\x41\x1f\x3c\xd6\xd7\x28\x08\xc4\xd5\x41\xc7\x97\x6c\x12\x92\x14\x3d\x4c\xc7\x72\xd5\x42\xb8\xed\x42\xaf\x4d\xfe\x01\xd0\x6b\xb7\x49\x29\x0d\xce\xdd\xf7\x0f\x42\x39\x0f\xd3\x96\xab\xcc\xca\x6a\x03\xf5\x5b\xcb\x06\x6a\xa8\xb1\xfa\x40\x3b\xf5\x03\x15\xd3\xca\x07\xba\x60\x03\x9d\xb6\xd8\x40\xa7\xac\x34\xcb\xa6\xad\x16\x65\xe3\x09\xf2\x5a\xa3\x76\xd0\xba\x82\xb7\xca\x0b\x68\x95\x80\x37\x6d\x7b\xad\xa0\x35\x6e\x5f\xb5\x17\x4c\xa0\x7b\x7a\x1a\x6c\x0e\x36\x37\x08\xa3\x26\x34\xe2\x99\x07\xa7\x80\x08\x4e\x33\x1e\xe8\xde\x67\xf7\xcc\x49\xb3\xb9\xd5\xd9\xe0\x4c\x78\x12\x8d\xf1\xe7\xc8\x0f\x53\xcb\x01\xb9\x08\x5a\x5c\xec\x6d\x29\x33\x86\xb9\x05\x11\x07\x93\xea\x60\xaa\xf0\x25\xd7\x8c\xb2\x06\x8d\xef\x5c\x95\xef\xaf\x6d\x17\xb2\xfe\xc9\xb6\x01\x37\x1c\x29\xbd\x16\x05\x36\x43\xd3\x94\xbd\xe7\xf7\x27\x6d\x84\xe1\x6d\x0b\xe1\x2c\xcb\xfc\x89\x95\x34\x9b\x93\xd6\x6d\x85\x44\xce\xae\xca\x26\xf2\xac\x34\xae\x22\xdd\x5a\x1c\xdb\xa3\x65\x54\x73\xea\x88\xe3\x40\x06\x8b\xd1\xc0\xa5\x6f\xb4\x44\x76\xbc\x6d\xe5\x59\x18\x84\xcd\x16\xb7\xdb\x99\x40\xf6\xbd\x77\x9b\x65\xba\x59\x85\xc9\xa0\x42\x3b\x42\x00\x8f\x52\xce\xd6\x1f\xa3\xe1\x81\xd3\x07\xfc\x4f\xf3\xf3\x2f\xe5\x48\x3a\x53\x6d\xb3\xe2\x59\xb7\xb7\xa0\x55\x57\x39\x99\x45\x9e\x82\xac\xa8\xb3\x32\xa9\x63\xe5\x18\xe4\x23\x36\x97\x81\xa8\x01\x22\x1d\x4f\x9a\x8f\x27\x5d\x3a\x1e\xbf\xdd\xee\xe7\x6f\x98\x0c\xcd\xda\x94\xc5\x6a\x17\x2d\x31\x35\x95\xe9\x6e\x09\x0a\xfc\x0a\x5e\x83\x43\xab\x55\xad\xc9\xbf\x5c\x15\xb3\x23\x8e\x54\xaf\x88\x1c\xf4\x87\x59\x66\xdc\x44\x73\xcd\x33\x4d\xdd\xa7\xec\x6b\xcb\xaf\xc9\x77\x2a\xa4\x3c\x4a\xa3\xb2\x81\x82\x43\xe4\x64\xba\x12\xbc\x34\xa3\xc6\xbb\x32\x41\x83\x2d\x24\x6a\x78\xf3\x36\xa2\x02\x06\x33\xfd\xe2\xbc\xff\x78\xdf\x73\xe0\x43\x8f\x1a\xb2\x25\x69\x46\x6d\xd4\x1e\xef\x7b\x35\x5b\x0c\xa9\x1c\x78\x49\x9a\x65\xb5\xcc\xeb\x40\x0e\xb3\xc6\x92\x44\xb3\xac\xfb\x81\xe6\x43\xd4\x6f\xad\xe4\x65\x73\xc3\x5c\xd7\xb6\xe0\xc4\xe0\x71\xb6\x4d\xbe\x9e\xe4\x77\x68\xe6\x9b\x36\xb5\x4f\xd5\xe0\x6e\xcc\x35\x6d\x62\xf2\x7c\xdb\x25\x75\x4b\xf1\xde\xf6\xc8\x57\x83\x1f\xdb\x10\xde\x80\x0c\x6e\xef\x76\xba\xdf\x1b\xf0\xf4\xd4\x14\x9f\x33\xd5\x3d\xe4\xc8\xef\xca\x8c\x55\xa7\x25\x3a\xa5\x85\x81\x90\x0f\x5a\x88\xbb\xd4\x34\x26\xd1\x49\x65\x9e\x59\x1a\x79\x75\x6b\x7b\x0b\xf4\x0d\x35\x69\xd8\x54\x96\x1c\x92\xbb\x09\x46\x31\xb0\x06\x9b\x85\x7a\x34\xf3\xa2\xb1\xf7\x4a\x00\xa5\xaa\x1c\x86\x36\xa2\xaa\xd6\x6a\x25\xde\x4e\x27\x4d\x55\x43\xad\x16\x6f\x59\x22\x74\x55\xe3\x62\x45\x31\x6a\xf3\x14\xd6\x91\xae\x5c\x9d\xc3\xd2\xd8\xa3\x0a\x82\x5a\x89\xb7\x33\x71\x5b\x55\x73\x43\xdd\xc1\x26\xc8\xe0\xce\xee\x96\xfb\xa7\xa7\xe6\x7f\x94\xa7\x66\x61\x37\x7a\xfd\xe6\xed\xf1\xaf\xef\x2f\xae\x8e\x3f\x9e\x9f\x5e\x9d\x7c\x7a\xff\xe9\xec\xbc\xec\xbb\xb9\xdb\xd9\xda\xe7\x39\xa9\x9d\x6e\x75\xf8\x43\xe6\x8b\x19\x90\x0b\x67\x92\xd8\x69\x44\xe3\x1c\x59\x83\xcd\xbf\x4c\xe8\xff\x08\xdf\x8e\xcb\x85\x0e\xfd\x1f\x29\xbc\xaa\x6b\xb9\xa8\x6b\x39\x41\x8f\xa3\x24\xe9\x0d\x36\xe3\x9b\x6b\xcf\xea\x74\xbb\xb0\x91\xff\xc7\xb1\xb7\xc0\x60\x13\x92\xa2\xde\x76\x67\x7f\x7b\x7f\x67\xd7\x75\x77\xc9\xb9\x64\x1a\x3c\x27\xea\x24\xc6\x58\x04\x41\x93\x22\xfb\x65\x09\x85\x0e\xde\xda\xde\xda\x21\x28\x94\x8a\x46\x23\x81\x5d\xa9\x68\x1b\xef\x7b\x4e\x45\xab\x6d\xaf\xaa\xd5\xd6\xf6\x4e\xd7\xdb\x36\x16\xed\x76\xbb\xce\xee\xb5\xb1\xc8\xd9\xd9\xdf\xdb\xf7\x8c\x45\xe3\xad\xf1\xee\x68\x62\x2c\xea\x76\xbb\xbb\xdd\x2d\x63\x11\x9e\x74\xf6\x3b\xfb\xc6\xa2\x3d\x0f\x77\xb6\xcc\x18\x4e\x46\x78\x7f\xdb\xdc\xd7\x6e\x67\x7f\x52\x81\x86\x37\xde\x9d\x78\x7b\x15\xd4\xc0\x1d\xdc\x31\x63\x48\xfe\x37\x1a\x6c\x82\x21\xa4\xd2\xcf\x7e\x17\xba\x5b\x5d\xe8\xee\x76\x61\xc7\xed\xc2\x4e\xb7\x9b\x7b\xf9\xf8\xc8\xe9\xfb\x07\x1d\x77\xa7\xef\xe7\xda\xc5\x04\xa5\x97\xfe\x4f\x5b\x3b\x7f\xdd\x79\x72\x86\x64\xa9\x5e\xfa\x3f\xf1\x1f\x21\xf9\xf1\xd7\x9d\x61\x9f\xa7\xfa\xa1\x7c\x47\x35\x2c\x61\x88\x03\x8a\x46\x92\x58\x2c\x1d\x18\x63\x39\xad\xf0\x8c\xf0\x27\x2b\xcd\xd4\x3c\x5e\x4e\x3f\x3d\xe8\x6c\xd3\x04\x5b\xf2\x8e\xb3\xd7\x72\x9d\x97\x69\x7d\x47\x3e\xf4\xa1\x5f\xd9\x11\x2b\xcd\xa4\x1a\x13\x67\xc0\x02\x4c\x89\x75\x8b\x0a\x5b\xc1\x92\xa8\xa4\x23\x16\xb3\xac\xe0\xcf\xc6\xbe\x66\xcf\xca\xd5\xcb\x43\xc2\x9d\x78\xa3\x29\xe6\xa1\x12\xe9\x0c\x9e\xa8\x05\x50\xe8\x92\x83\xc9\xc9\x3a\x0d\xf4\x50\x6b\xab\x07\x7d\x2c\xb7\x2a\x80\xd2\x5c\x54\xd9\xf0\x11\xb9\x72\xe2\x1b\x6a\x29\xdb\x0b\xe0\xb5\x37\xfa\xc6\x7f\x8c\x21\x0b\x22\xd7\xbb\xe2\x7f\x1c\x8f\x46\x38\x4c\x7b\x0b\x28\x65\xeb\xb7\x79\x53\x2e\x82\xcb\xa2\x57\x12\xd0\x45\xec\x85\x09\xcb\x63\xd0\x9b\x98\x2a\x7c\x9a\x7b\xbf\x2f\x70\x8f\xc6\xc4\x8b\x62\xfb\x3a\xc0\xe1\xd8\x1a\xc3\x09\xc8\x2b\x9f\x86\x5c\x69\xbf\x0c\x6a\xb9\x62\x35\x74\x2f\x4c\xfc\x9e\x71\x1f\xe5\xaa\x1c\x00\xb5\x79\xee\x19\xe6\x1e\x96\x26\xb7\x57\x31\xe9\x22\x3a\x2a\xcb\x6b\x71\x86\x93\x34\x8a\x45\x30\x3d\x25\xb3\x08\x65\x6b\x73\xba\x7d\xe5\xae\x97\x92\x5a\x66\x17\xdb\x52\x8e\xfe\xf3\x39\x1e\xf9\x13\x7f\xa4\x85\x0c\xac\x0c\x6e\xa8\x26\xd2\x51\xd1\xaf\x8e\x78\xb9\x5e\xb7\x14\xf3\x52\xca\x92\x75\x46\x2d\x52\x99\xb0\x36\x18\x3d\x66\x45\xcd\x0a\xe3\x6c\xaa\x51\xb1\x73\xee\x46\x73\x0b\x2b\x3f\x61\x00\xa0\x6f\xe7\xfc\x4e\x8b\xf3\x9f\x70\x4c\x8a\x19\xe3\xd3\x22\xf6\x27\xbc\xca\x3f\xb3\xf5\xa0\x14\xb2\x0f\x70\x41\xaa\xd4\x2f\x04\xda\xc8\x50\x85\xb0\xa5\xb1\x2d\xe3\x62\xa4\x73\xb1\x8a\xfe\xd2\x2e\x35\xc0\xb5\xeb\x49\x47\xae\x5c\xf5\x7b\xbb\x5a\x6b\x2c\xb5\x98\x6a\x1d\xe5\x9b\x11\xc2\xa6\xaf\x47\xda\xb0\xf2\xef\x30\xb2\x3f\xfe\xfa\xfe\x3d\x5b\xfa\x40\x6c\x64\x66\xc0\x08\xa9\x95\x9b\x4d\xcb\x5c\x8d\xe7\x22\x81\x62\x88\x7e\xc2\xc6\x6c\x2d\xa5\x5c\xae\x61\xb5\xb7\xfa\x4b\xb9\x48\xc0\x8f\xe6\xde\xc8\x4f\x1f\x96\x82\x27\x92\xb7\x3f\xb1\xea\xd0\xaa\xa7\x77\x15\x7a\xf5\xfc\x54\x83\x66\x6d\x43\x8e\xae\x6f\x93\x9d\xda\x2c\xee\xcb\x9d\x9a\x55\xba\x74\x86\x6c\x1d\x07\xde\xe8\x1b\x34\xb6\x60\x09\x11\x59\x6d\x97\xd5\x8e\xf1\xb8\xa2\xae\x9b\xd7\xed\xb0\xba\x37\x31\xc6\x61\x45\xed\x4e\x5e\x7b\x8b\xd5\x7e\xc0\x41\x10\xdd\x55\x54\xdf\xca\xab\x6f\x0b\xb4\x17\xb8\xa2\xf2\x76\x5e\xb9\xcb\x2a\xcf\xbc\x1b\x1c\xa6\x5e\x45\xfd\x6e\x5e\x7f\x87\xd5\x1f\x3d\x78\x55\x88\xef\xe4\x95\x77\x59\xe5\xbb\xa9\x9f\x56\xa1\xb2\x9b\xd7\xde\xe3\x78\xd3\x77\xd9\x57\x35\x44\xdf\xcb\xdb\xec\xab\x6d\xce\x2a\x49\xbf\xaf\x4c\x93\xa3\x36\xf9\xb9\x66\x06\x5c\x75\x72\x5d\xb5\xd5\x3f\xea\x66\xc2\x55\xe6\xd9\xed\xe8\x63\xaa\x9c\x11\x57\x99\x6e\x77\x4b\x6d\xf4\xa1\x76\x66\x5c\x65\xde\xdd\x6d\xb5\xdd\x49\xf5\x0c\xb9\xca\xfc\xbb\x5d\xb5\xd1\x97\x9a\x99\x72\xbb\x34\x3f\x29\x93\x8b\xf1\xf8\x38\x4c\xfc\xfc\x96\x20\x1f\xbb\x18\x58\xa9\x45\xd8\x29\xb4\x10\x8f\x1d\x8a\xa7\xbe\xd3\x8f\x0f\x12\xea\x9e\xcf\x51\x8a\x5b\x2e\xe7\x32\xb5\xe5\x65\x3c\xac\x40\x8c\xd6\x07\x59\x8d\x9c\x51\x25\x3b\x17\xca\xeb\xa4\xa9\x82\xec\x9b\xbb\x6f\x33\xf9\x80\x46\xe5\x90\xcd\x54\x6f\x75\xed\xeb\xaa\xc0\x8a\xed\x1e\xfd\x89\x25\x8d\xbb\x30\x48\xee\x7c\x91\x63\xd8\x4b\x70\xa3\xd3\xdd\xe9\xa9\xc2\x8a\x2a\xa7\x94\xd1\x50\x8b\xfb\x2c\xc9\x2e\x87\xb2\xab\x43\x51\xc4\x19\x13\x94\xbc\x58\x87\xb2\xa7\x43\xe1\x52\x8f\x09\x02\x2b\xe2\xad\xc7\xcc\x25\x4c\x6f\x4c\xf9\x01\x0f\x8d\xad\x79\x59\x26\x35\x58\x4a\xaa\xf1\x8a\xea\xe2\xd1\xb7\xd5\xc2\x60\xed\x7e\x66\xd1\xd8\x9f\x3c\x70\xb6\xc0\xe0\x11\x5b\x2a\x88\xd5\xa7\xd6\xc8\x65\x06\x76\xd1\x6f\x53\x15\xf3\xab\xde\xb1\x2a\x26\x4f\xdc\xbc\x0c\xb3\xc2\x6f\x2d\x45\x4a\x88\x73\x30\xcb\xb2\xbe\x50\xb9\x35\xe6\x32\xdc\xb5\xc2\x88\x69\xfc\x20\xae\xc1\xba\xee\x01\xf3\x3c\xd8\x8f\x32\xe9\x75\x56\xb8\x65\xdf\x8a\x94\x34\xa3\xd2\xcb\xc5\x10\xde\x82\x0c\xee\x6c\x6d\x7f\x77\xe6\xb5\x13\x3f\x1e\x2d\x02\x96\x8d\xce\x94\x72\x6d\xc7\x11\x59\x7f\x65\xf2\xb5\x50\xde\xfc\xe3\x95\x73\x74\xce\xbc\x7b\xfe\x28\x84\xc5\xf5\xf9\x35\x0e\x70\x8a\xf9\xa5\xda\x98\x9a\xd3\x9c\xb2\x82\x36\x43\x26\x20\xea\x7d\x9b\xc8\x3a\x09\x8e\xd3\xb5\xe1\xb3\x66\xc8\x04\x44\x87\x7f\x11\xfb\xb3\xb5\xa1\x93\x46\xa8\x0c\x40\xd3\x14\x78\x71\xec\x3d\x50\xa5\xc5\x31\xf9\xcb\x2a\x50\x50\xde\x5e\x53\x2f\x4e\xa9\xe9\x90\x74\xdf\x12\xa9\xe9\x68\x78\x1e\xd9\xa0\x14\x58\x48\x14\xd0\x1c\xb7\x79\x35\xcd\x57\x4c\xce\x17\x61\xe2\x82\xcf\x4b\x8e\x1a\x06\x05\xe5\x58\x31\x00\xb6\x38\xcc\xfc\x56\x0b\xa4\x97\xbe\xd8\x3f\xe8\x10\x2f\xe5\xa3\xf6\xc9\xc3\x28\xf0\x47\xcc\x0c\xca\x07\xc3\xbe\x4a\x87\xb4\x8a\x83\x34\x02\xd0\x11\x07\xc6\xe1\x06\xf9\x58\x03\x75\xa0\xf8\x50\x2d\x07\xb9\x7e\x4d\xfd\xdc\x4f\x0f\x30\x4b\x8b\xaf\xe2\x3d\x14\x2b\x45\x23\x3b\xce\xa8\x49\x44\xa1\xfb\x9a\xa1\x62\x30\x24\x68\xa9\xd1\x03\xea\x6b\xa3\x34\xe3\x31\x82\x96\x57\xd7\x06\x37\x94\x44\x0b\xc4\xac\x16\xa8\x7a\x64\x95\x88\xda\x6a\x15\x3f\xfd\xb5\xd0\xc8\xb0\x14\xd8\x7e\xee\x4a\xcb\x58\xd6\x5f\xab\x95\xc5\x78\xf4\x30\xa2\x51\xb4\x24\x93\x15\x9d\xe9\x24\x87\xa7\xd3\x38\xba\x6b\x10\x36\x7b\x13\xc7\x54\x4f\x7b\xe2\x85\x8d\x28\x0c\x1e\x1a\x1c\x4c\xe3\x6e\x8a\x09\x85\x71\x83\xbd\x23\x37\xfc\xa4\x31\x59\x04\xc1\x60\x53\xbe\xae\xfc\xd8\xf1\xc0\xb5\x08\xde\x76\xc1\x50\xa4\x6e\x5e\x50\x8f\x10\x03\x4b\x96\x27\x21\x9b\x47\xf3\x62\xdd\x55\x7b\x6c\xd3\x3e\x79\x1e\x48\x72\x26\xd8\xb6\xcd\xf3\xf0\x33\x3b\x17\x6e\x26\xd2\xf7\x0f\xb4\x76\x29\x5b\x9b\x2b\x2c\xcb\x15\xd6\x6e\x2b\x95\xab\x57\x5a\x7d\x18\xf7\x7b\xee\xb5\x42\xcd\x26\x7a\x18\x0a\xef\x15\x4d\xcf\xad\x13\xb4\x9f\x1e\x22\xdc\x4f\xdb\xed\xe5\xb8\xa6\x2d\x29\x45\xaf\x80\x34\x41\x59\x57\xae\x4b\x29\xa8\xb4\xf0\x8d\xeb\x92\x0c\x1a\xf9\x97\xe9\x90\xa9\xc0\xb4\xd8\x46\xc5\x13\xc4\x38\x6c\x69\x01\x04\xb4\x45\x2a\x47\x71\x58\x5c\x1f\x05\xbb\xb0\x42\xf5\x76\xa1\x7a\xbf\xc8\xf6\xad\xe2\x6e\xb0\xea\x32\xc0\x40\x75\x45\xe0\xdd\xe6\x06\x4c\x69\xec\xcf\x58\x10\x3c\x22\xfc\x69\xdb\x2b\xcd\x8e\xa0\x6d\x49\xa5\x4d\xbc\x88\x55\x3b\x17\x15\x4c\x88\xd0\x60\x07\xdc\x43\x3c\x11\xcf\xd1\xfe\xc4\xda\xb0\xd2\x03\xe4\x30\x63\x40\x7c\xe0\x3c\x3d\xe1\x43\xbd\xe3\xf2\xe6\x42\x71\x68\x88\x37\xe9\x46\xb4\x48\x1b\xd1\xa4\x41\x83\xec\x90\xfd\x84\x00\x6a\xf9\x07\x8e\x79\x5b\x0a\xa3\xb4\x41\x71\x69\x70\x77\x95\xa4\xe1\x87\x8d\xc0\x4f\xd2\xc6\x35\x7e\x88\xc2\x71\x83\xce\x76\xc3\xe1\xa0\xfc\x43\x27\x5f\x8f\x09\x4a\xdb\x6e\x3f\x39\x44\x4e\x3f\x11\x9c\x4d\x4f\x84\x56\xd2\xe2\x86\x32\x37\xec\x27\xc8\xed\x66\x71\x2b\x6d\xf9\x6d\xed\x94\xf2\x27\x56\x72\xe8\xd0\x33\x4c\x9f\x9b\x44\x5b\x8d\x45\x46\xea\x03\x7d\x0b\x29\xcf\x49\xab\x66\x4b\xd4\xef\x15\x09\x19\xc3\x41\x4a\x0d\xef\x6b\xc7\x91\x65\xe5\x93\x4d\xe4\x01\x2d\xf5\x8f\x41\x71\x8f\xa6\x09\xe4\x55\xa1\x35\xcc\xa0\xbb\xbd\xc5\x04\xe1\x67\x8b\xc1\xa3\x20\x0a\xf3\x90\x61\xfc\xa7\x94\xec\xb1\x95\x42\x1f\x75\x79\x2a\x1b\x61\x6c\xb0\x21\xcc\x09\xf2\x40\x32\x72\x8e\xa8\x78\x64\xfb\x09\x97\xe0\xc0\xd1\xe5\xb0\xf7\x98\xd1\x7d\x86\x5b\xa2\x13\x2e\x49\x41\x72\x19\x0f\x91\x7f\x80\xdc\xa3\xf4\x32\x1e\xf6\xc8\x7f\x9a\x4d\x6c\x91\x7f\xa1\xdf\x76\xe5\x61\x96\x64\x19\xdc\x73\xba\xdd\xef\x1c\xa5\xfa\xfa\x80\x52\x3b\x8d\x3e\x7b\xe3\x31\x1e\xbf\xc3\xf7\x28\xb5\xe3\x9b\x6b\x8f\xfd\x83\x52\x72\x55\x21\xff\x25\x57\x15\xf2\x2f\x7f\x2c\x44\xa9\xa2\x8f\x15\x42\x10\x97\xfe\x60\x82\x1c\x18\x23\x07\x86\xc8\xe9\xdf\x7a\x71\x23\x82\x1e\x9c\xc2\x11\x0c\xf2\x2b\xd2\xb8\xe0\x00\x27\x6c\xe6\xdd\x9d\xfc\xd8\x16\xce\x6b\x9d\xa3\xc1\xa6\x33\xd8\x6c\x91\x63\x41\x02\xb8\xd2\xac\x1d\xf0\x41\x7a\x64\xa5\x2d\xdb\xe9\x82\x9f\x2c\x4c\xff\xed\xf1\x7f\x7f\xe2\xdf\x33\x0d\x63\xfe\xf2\xcf\xad\x01\x1c\x47\x3c\xf5\x3b\x19\xcc\xcd\x29\xc0\x23\x66\x2f\xa6\xa8\x6c\xc0\xa2\xba\x50\x93\x0b\x5e\x72\xf4\xf5\x2f\x2f\x1e\xc9\xb0\x32\xf2\x4f\xca\xfe\xf1\xd9\x3f\x09\xc8\xbe\xf6\x2a\xca\xbf\x66\x10\xf3\xa7\xd7\x52\x37\xa8\xd3\xed\xca\x25\x81\x0f\x0e\x3a\xdb\x4f\xe9\xc1\x81\xbb\xf3\xe4\x1f\x1c\xec\x3d\x25\xe0\xf0\xf0\xd0\x61\xcd\xe9\x55\x32\x6f\x5f\x48\xab\x4b\x47\xcb\xc7\x22\xcb\xd8\x80\x45\xdf\xf2\x73\x96\x65\x56\xf4\xf4\x64\x29\x73\x1d\xa1\xc7\x0c\x00\x8d\x30\x72\x1e\x52\x6d\x1e\x42\xa4\xc4\xff\xe9\x74\xbb\x2f\x53\x00\x2f\x29\xdc\x21\x0a\x48\xff\x1c\xa4\x85\x29\x93\x01\xc8\x1f\xa8\xc5\xbb\xb4\xfe\x04\x2e\x1f\xa4\xf9\xdb\x77\x86\xd9\xa3\x05\xd2\x2d\x5e\xfc\x89\x15\x22\xd2\x5b\x93\xb1\x2e\xf8\xa9\xd3\xed\x42\x17\x21\x24\x1c\x36\x68\x2f\x94\x95\x19\x68\x56\x2f\xe3\x8b\x94\xf3\xba\x77\x78\xd8\xd9\x6e\x92\xa6\x53\xf9\xc1\xdd\xa1\x1f\x46\xf2\xc3\x1e\xfd\x1d\x20\xac\xb7\x18\xcb\x0f\xbc\xc5\x95\xfc\x40\x5b\x08\x9e\xf6\x51\xa0\x46\x48\xb2\xbc\x76\x00\x5e\x86\x00\x26\x68\xac\x7d\x9f\xb6\xc7\xf4\x7b\x8c\xae\xb4\xef\xa3\xf6\x15\xfd\x5e\x26\x9b\x91\x68\x20\x23\xdc\x21\x9e\x1b\x90\x3a\x81\x1c\xa1\x4e\xb7\x8b\x18\xed\xf8\x8c\x64\x34\x5d\x49\xb2\x88\xb1\xf6\x42\x89\x8a\xf6\x5e\x62\x7f\x0b\x4c\xb5\xf9\xf4\x42\x46\x35\xe8\xd3\xf3\x4e\x78\xe0\x34\x22\xa9\xfa\x48\x24\x01\x13\x49\xb9\x84\x93\x8c\x62\x12\x95\x11\x17\x9b\x06\x41\xfa\x89\x23\x4d\xd6\x01\x27\xb1\x91\xdb\xd2\x1a\x8a\xa5\x19\xef\x68\xe4\xa7\xe4\x92\x89\xed\x19\xcb\xf5\xf6\xf0\x89\x7f\x53\x86\xee\x2b\x9c\x9e\x13\x0d\x92\x45\x10\xbe\xf4\x7f\x12\x68\xf3\xf1\x9d\xfd\xfc\xca\x40\xf3\xcb\x02\xef\x14\x38\x47\xe3\x9b\x61\x96\x59\x1e\x5b\x8c\x74\x81\x7b\xe5\x95\x48\xa5\x55\xe8\xf5\xd3\xf8\x41\x4a\x83\x63\x11\x22\x87\x59\xf5\x71\xe1\xc8\x1a\x6c\xb2\xf8\x5f\x44\x00\xc1\x3c\xc7\x8f\x0b\xb1\xc8\xd3\xe3\xca\xf0\x00\xdc\x07\x37\x4c\xf1\x3d\x69\xd5\x19\x93\x03\xe4\xce\x0f\x82\x33\xec\x8d\xdf\xd2\x10\xa0\x61\x1a\x3c\xd0\xd3\xa4\x4f\xc3\x85\x21\x1f\xa6\xf6\x4d\x10\x5d\x7b\xc1\x49\x34\x9b\x47\x89\x9f\xe2\x4f\x73\xcc\xd2\x45\xa0\xc1\xe6\x28\x9a\x3f\x0c\x36\x21\x59\x6a\x0c\xa7\xf7\x7e\x88\xbd\xf8\xe7\xd8\x1b\xfb\x04\x35\x07\x3a\xd0\x85\x2e\x90\xba\x30\xc3\xa6\x26\xe2\x75\xcc\x48\x0d\xeb\xa7\xbf\x5c\x0e\x06\x63\xaf\x3d\x19\x3e\x6e\xc1\xbd\xec\x27\x1f\x48\x5d\x6f\x1e\x9c\xc0\x4b\x70\x63\xbb\x27\x17\xdf\xdc\x8b\x13\x7c\x1a\xa6\x16\xe6\x7a\x3b\x17\x76\x80\x1d\xe3\x39\xf6\x52\xab\x03\xa0\xbb\x43\x96\x62\xa9\x56\x07\x6e\x15\x6b\xc5\xe5\x5a\x5b\x70\xbb\x58\x2b\xe7\x74\xc6\x71\x4c\xef\xdb\xfd\xaf\x43\x28\x2c\xd7\xda\x86\xdd\x25\x68\xc3\x90\x23\xbe\xdb\x53\x8f\x13\xb6\x7c\xac\xf2\x10\x28\x10\x72\x40\x91\xe5\x40\x8f\x28\xd6\x7c\xdf\xd0\xbc\xa2\x35\x6d\xc5\x2c\x84\x1a\x53\x24\xa7\x9c\x34\x39\x1a\x0c\xac\xc1\x20\x79\x69\x0d\x06\xe3\x47\x17\x6e\x65\x80\xfc\x82\x2b\x7d\xb2\xd8\x37\xe7\xc9\x7d\x1a\x0c\xc6\x47\x83\x81\x4d\xca\x5b\x80\x16\x82\xa3\xc1\x00\xfc\x44\xb7\xaa\x29\x28\xcf\xd0\x94\x3e\x4a\x26\xea\x87\xce\x50\xa3\xfb\x94\xbe\x2c\x96\x8e\x40\x4b\xa6\xfb\x9b\x5e\x76\x87\x47\x2e\x1b\xf3\xdb\x20\xf2\x48\x93\xee\x10\x00\x23\xc5\xa9\x2f\xc6\xd3\xd3\x86\x67\xb8\x6d\x28\xea\xe3\x5e\xe3\xd7\x30\x59\xcc\xe7\x51\x9c\xe2\x71\x63\x94\x24\x44\x0e\x9f\x79\x29\xbf\x64\xa4\xf6\xc4\x0f\x02\x9a\x8f\x12\x79\x50\xfd\x85\x21\xb9\xef\xc4\x34\x81\x67\x2e\xc0\xe6\x15\x7e\x40\xb7\x67\x78\x94\xaf\x6c\x2e\x07\xc0\x70\xc8\xdc\x81\x4e\x67\xde\x0d\x7e\xed\xa5\x9e\xac\x61\x8f\xbd\xd4\x83\x9d\x6e\x77\x83\x9c\xdc\xcf\xee\x9e\x33\x99\x59\x86\x80\x94\xf7\x88\x8c\x33\x65\xdb\x6a\x92\xa0\xe9\x32\xf1\x46\x3d\xef\x30\x15\x2e\x62\x94\xd2\x7f\x43\x44\x37\x7d\xde\xa7\xdd\x71\x3b\x3b\x2f\xad\xe4\x00\xd9\xce\xd6\x7e\x67\xef\x28\xf9\xc9\xed\xd8\xfb\x1d\x96\x76\x7e\x1e\xdd\x59\x56\x42\x64\xd1\x2e\xf8\xc9\x25\xff\xc0\x8e\xbd\x0d\x40\xcb\xde\x75\xbb\x9d\x97\x56\x2c\x9b\xc5\xa5\x66\xb1\xa9\x99\xb3\xdb\xe9\xbc\xb4\x42\xd9\x2c\x2c\x35\x0b\xcb\xcd\x32\x6c\xc7\x3c\xf8\xe4\xfb\xc5\xcc\x0f\xbd\x70\x64\x14\x0c\x52\x0b\xe7\x47\x92\x90\x7b\xe8\x91\x47\x4f\xb8\x12\x8c\x0e\x4a\x33\x6b\x44\x69\x4a\xee\x0d\xa3\xb5\x68\x2a\xcf\xc2\x18\xe5\xbd\x86\x48\xf4\xdb\x67\x91\xd5\x53\x59\xcd\x23\x7f\xf3\x6a\x53\xf2\xb7\x10\xcb\xae\xac\x91\x01\x35\x8b\x5e\x40\x00\x34\x96\x31\xbe\x60\xea\xeb\x7e\x70\x40\x4e\xb3\xe8\xd0\x79\x7a\xf2\xc8\x7f\xa6\x87\x0e\xe8\x83\xa8\x9d\xc7\x6c\x75\x20\xfd\x73\x84\xfd\xc0\xb2\xdd\x97\x11\x00\xd0\xab\x2e\xf6\x00\x80\xd3\xea\xe2\x29\x00\xdf\x87\x34\xbf\x1a\x44\xf4\x6a\xe0\xd1\xab\xc1\x54\xdb\x79\x25\xd1\xbd\xff\xf6\x44\x3f\x20\x02\xdd\x93\xc7\xfe\x99\x92\x7f\x08\xe9\xf3\xe7\x72\xd2\x59\xd4\xd2\xe8\x47\xbe\xb5\x23\xb2\x81\x7a\x7a\x3d\xcf\x50\xcf\x23\xf5\xa6\x7a\xbd\xa9\xa1\xde\x14\xfc\xcb\x67\x65\xe9\x3d\xa6\x7c\x85\x91\x2a\x05\x4f\x99\x92\xa9\x32\x25\x23\x75\x4a\xb0\x7a\x33\x51\x2f\x25\xff\xa2\xfb\x48\xf1\xda\xb1\xfc\x12\x41\x2f\xd1\xc2\x17\xdf\x40\x4d\xb2\xfd\xec\x91\xd3\xd4\x54\xe6\x93\x32\x72\xce\x5c\x59\x84\xe2\x07\x09\x23\xde\x41\x2c\x40\x86\x28\xe5\x7d\xc0\x08\x91\x4a\x26\x28\x21\x81\x42\xc1\x44\x07\x49\x7e\xb1\xf0\x78\x4b\x41\xa3\xe8\xb0\x0a\x40\x4a\x01\x1c\x85\xbd\x54\x3c\xdd\x86\x99\x08\x0d\x20\xa0\xc0\x69\x65\xff\x91\xec\x7f\x9a\xf7\x9f\x63\x2e\xfa\x9f\x56\xf6\xcf\x06\x70\x14\xf5\x42\xd1\x7f\x94\xb1\xcd\x79\xbc\x18\x29\xdb\x3b\xb9\xd4\xf8\x21\x91\xbb\x13\xe5\xab\xc7\x2e\x2a\xe2\x92\x6f\xba\xa8\xe4\x77\x94\x8a\xb3\x80\xdc\x4f\x02\xb1\xe9\x7b\x28\x60\xbb\xbe\xae\x4f\x1a\x97\xf4\x4d\x57\x19\xdc\xdb\xdf\xf9\xfe\x17\xeb\x28\xc6\x17\x38\x26\xe3\x09\x4c\x2f\xd6\xdb\xec\xc1\x9a\x39\x98\x84\xc8\xb7\xb6\xb7\xb6\xf7\x98\x47\xca\xee\xde\xce\x0e\xf3\x48\xd9\x25\xd5\xa6\xe4\x8f\x2d\xa7\xc3\x3c\x52\x76\xf6\x77\xbb\x22\x9b\xd8\x8e\xc3\xd2\x89\xb9\xbb\xdd\x2d\x96\x4e\xcc\xdd\xde\x73\x58\x3a\xb1\xdd\xfd\xfd\x6d\x96\x4f\x6c\xbf\xb3\xd7\x01\xf0\x16\xf9\x56\x77\x7b\xab\x0b\xe0\x9c\xfc\xb5\xbf\xe7\x02\x78\x43\x10\xd8\xd9\x71\x98\xfd\xfc\x0c\x6d\xb8\xfc\xed\xfc\x5c\xbe\x9d\x27\x45\xab\xf9\x28\x94\xe1\xc3\xb4\x07\x20\xf1\xfd\x78\x9e\xe7\x37\x56\xbe\x19\xde\x9e\x03\xd3\xdb\xb3\x6c\xc3\xde\x9a\x69\xf0\x95\xc7\x12\xb4\x23\xae\x5f\xb7\xe9\x5d\x8e\x06\x50\xcc\xf3\x97\x2a\xf5\x18\x90\x8c\x5b\xfb\x97\x6c\xfd\xcb\xce\x9d\xb4\x6a\x1c\xdd\x2d\xa9\x4a\x6a\xd0\xaa\x3c\x59\x51\x7d\x6d\x5e\x89\x36\xe0\x76\xcc\x85\x06\x45\x3b\x69\xf6\x93\x3e\x06\x8b\x06\x98\xa9\xe3\xf9\x3e\xd0\xa0\x29\xc9\x6b\xda\x5e\xa6\x43\x84\x2f\xd3\x61\xbd\x23\x03\x8b\x29\xcb\xfc\xe1\xfd\xf0\xe6\x1d\x5e\xc4\x7e\x92\xfa\x23\x93\x7b\x41\x62\x7f\x58\xa4\x84\x0d\x94\x6c\x47\x92\xe2\xaf\xfc\xd0\x8b\x1f\x56\x9d\x64\xbd\xbe\x6c\x5e\xc8\xd1\x45\xc4\xef\xd5\x21\xe6\xb5\x79\xd3\x02\x34\x72\xa5\x7f\x8b\xf1\x78\x75\x88\x7a\x0b\x05\x44\x29\x97\x58\xe2\xff\x61\xca\x58\x56\x01\x57\xad\x2f\x9b\x17\x60\x7e\x89\xfd\x14\x7f\x26\x57\xb1\x35\x10\x2e\x35\xd2\x01\x15\x33\xae\xd1\x45\xb2\xf2\xba\xf4\xc3\x24\xf5\xc2\xd4\x57\x53\x6c\x72\x97\x95\x53\x43\x11\x34\xf0\xa6\xa1\xaf\xa9\xad\x9b\x0c\x59\x18\xd4\x75\x68\xd3\x98\x45\xac\x66\x5c\x34\x37\x32\x75\x09\x4c\x6e\xdc\x05\x3c\x6a\xba\x63\xda\x20\x36\xbe\x11\xb6\x3c\x5b\xf7\xec\x5e\x03\xd5\x57\x86\x68\x6c\xc6\xb4\x63\x41\x74\xf3\xbd\x68\x46\xf6\x7b\x09\x64\x1d\x1c\xf3\x56\x25\x5c\x38\x14\x35\x69\xe3\x73\xb1\x1b\xd9\xaa\x23\xfc\x1a\xe8\x29\xcd\x4a\xd8\x28\xf8\xe9\xce\xe4\xcf\x44\x72\x4c\x91\xd4\xbc\xf3\xd7\xc4\x54\x6d\x6b\x46\x8e\x03\x5c\x84\xfe\x28\x1a\x7f\x37\xc6\x57\xf6\xaf\x1a\xa0\x75\xf0\xd5\x5b\x9a\xd0\x92\x71\xc9\xa7\x64\x2b\x49\x35\x64\x57\x42\x6f\x61\x9f\x68\x4d\xd7\xa1\xa6\xd6\xd0\x88\x88\x3c\x88\x92\xd1\x7b\x3f\xfc\xb6\x3e\x7a\x37\xf6\x27\xad\xe9\x3a\x9b\x90\xd6\xd0\x88\x48\x0e\x6d\xbe\x48\xdf\xd1\x20\x72\x26\x63\xbc\x5b\xfb\x54\xa9\x60\x0a\x73\x63\x1c\x7c\x69\x31\x94\x56\xaf\x69\x67\x34\x22\x6a\x66\x54\x23\x43\x14\x1d\xbe\x68\x2a\xc4\x49\x14\xdf\x79\x31\xcb\x29\x00\xac\xf2\xa0\x95\x53\xb5\x74\x30\x57\xb8\x90\xa9\xcd\x57\xee\x53\x97\xbf\xc4\x19\x5b\x38\xb1\x57\x1e\x82\x9e\x52\x53\x49\x05\xcb\x7e\x3c\x13\x0e\x93\x79\x0a\x12\x94\x99\x08\x7a\x43\x2d\xb8\xee\x45\xf4\x2a\x4a\xd3\x68\xa6\xe4\x52\x48\xf4\x82\x2a\xe7\xbc\xda\x44\xa1\x5c\x3c\x24\xc2\x03\x0f\x89\xc8\x62\x1f\xe6\xd5\xaa\xc0\x96\x5c\xfe\x3e\xb0\x07\x2b\xac\xb9\xfc\x5d\x0e\x36\xb9\xec\xf9\x21\x1a\x93\xcb\x93\xfc\xfd\x39\x7d\x18\x6c\x0e\x55\x4f\x40\xd6\xf3\x17\x59\xac\x01\xaa\x74\x3d\x2c\xb2\x00\xbf\xb5\x18\xee\x13\xdc\xda\x49\x5c\x25\x8c\xd1\x69\xb4\x9c\x3a\x49\xb4\x88\x47\xb8\xe7\x64\xa6\x75\x6d\xcf\xbc\xf8\x1b\x0d\x25\xf3\xda\xa7\xd7\xc4\x6a\x68\x62\xa2\xe6\xc6\x58\x33\x5a\x25\x36\x97\xca\x2d\xa7\x66\x95\xfc\xcf\x1b\xac\xca\x88\x86\x7d\x73\x6e\x7f\xc9\xcb\x2d\x8b\xdb\x9e\x18\xb0\xa5\x6f\x1b\xb4\xb8\x4c\xc7\xca\xbd\x44\x5d\x04\x9a\x3c\x6d\x12\xd6\x01\xc8\x68\x7d\xd5\x58\x56\x05\x90\x17\xb2\x7a\xe7\x0f\xe1\x48\xad\x9b\xef\xd9\x76\x10\xdd\xbc\xc7\xb7\x38\x38\x40\x31\x91\xe7\xe8\xdf\x6f\xc2\xc5\xcc\xfe\x72\x7c\xf6\xb1\xd9\xdc\x98\xc9\x90\xb5\x4a\xa3\x3b\x2f\x0e\xad\xc1\xa6\x84\xdd\xf0\x93\xc6\x22\x8c\x71\xe0\x93\xfb\x5a\xc3\x0b\xc7\x8d\x3b\x3f\x08\x1a\xd7\xb8\xc1\xe2\x78\x8e\x1b\x49\x14\x85\xf6\x60\x13\xc0\x19\xca\x23\x5d\x96\x70\x96\x88\x66\x94\xa2\xe4\x4f\x1a\xd9\xb2\xb4\x95\x18\xa2\x03\xa7\xd4\xa9\xc6\xff\x83\x53\xc5\x4f\x3e\x7a\x1f\x69\x1c\x4e\xf6\x57\x0a\x9e\x9e\x2c\x2d\xf1\x98\x67\x7f\x38\xfd\x78\xfa\xe1\xd7\x0f\x57\x27\x9f\xde\x9f\xe7\x99\x9e\x68\x82\xa7\xbc\xf0\xec\xd3\x97\x73\xa3\x80\x6f\x2b\xdd\x81\x8c\x31\x15\xc3\xd8\x15\x84\xd6\xeb\xe7\x55\x44\x75\x99\x30\x2d\x8f\x8a\x6a\x6a\xa2\x56\xe3\x2d\x3f\x7b\x37\x38\x91\xb6\xcf\x5a\xb5\x97\x6c\xc2\xe2\xe8\x8e\xc6\xaa\xcb\xc4\x9a\xb8\xa0\xf6\xb4\xa5\xfa\xed\x65\x8b\x33\x87\x20\xf6\xfa\x32\x90\x3a\x18\xd7\x5e\x82\xd7\xe8\x84\x87\xf7\xca\x2d\xa3\x96\xb6\xed\xd3\x18\xd6\x22\xb7\xa6\x8a\x15\x61\x09\xb6\xf2\xde\x24\x23\x21\xf1\xa8\xc6\x3a\x86\xe5\x5b\xd1\x42\x42\x7a\x3d\x4a\xd6\x84\x54\x68\x21\x21\x9d\x24\xfe\x9a\x90\x0a\x2d\x24\xa4\x4f\x6b\x8f\xae\xd0\x82\x7a\xb5\x2f\x24\x7f\x2c\x39\x0d\xf5\x9c\xd2\xc5\x0e\x68\x51\xd5\x82\x51\xca\x74\xf9\x52\x2f\x54\xd7\x7a\xa9\x40\x95\x1a\x45\x69\xb6\x04\xe5\x47\xe6\xee\xb5\xe1\xea\xc9\x4a\x6a\x42\xda\x49\x40\x7d\x2d\x72\xba\x7d\xbd\xf0\x83\xf1\xc7\xc5\xec\x1a\xc7\x55\xdf\x8f\x30\xda\xd8\xb0\x06\x9b\xa3\x28\x9c\x13\x41\x83\xe6\xbf\xb9\xf6\x46\xdf\x30\x4d\x79\xa0\x56\x3d\xe8\xb8\x5b\xbb\x3b\xdc\x41\x60\x29\x36\x3c\x36\x3f\xa6\x7b\xa8\x48\x44\xc2\x92\x9e\x7d\xa9\x52\xb2\x59\xc2\xfb\xa0\x52\x0d\x27\xfc\x1a\xb3\xe5\xa0\x94\x14\x6f\xd5\xe0\xa8\x86\x3a\xb7\xcb\xbe\x94\x31\x5f\xb8\x06\x49\xc8\xe2\xd6\xc4\x66\xde\x6d\x5f\xf2\xd1\xf1\x58\x7f\xe7\xa9\x97\x62\xfb\xda\x0f\xc7\x56\xb8\x08\x02\xa3\x2a\x03\x00\xa8\xc2\x35\xac\x91\x47\x1a\xad\xbd\x37\xd8\x7c\x37\xd8\xcc\x98\xb0\x47\x4e\xe0\x25\xdd\x1a\xc5\x7b\x00\x37\x5c\xa0\x88\x0a\xf5\x83\x67\xf1\xc4\x4c\x29\xdb\x55\xed\x6a\x34\x69\x60\x90\xe6\x21\xc3\x33\x00\x32\x6a\xd1\xab\x2a\xf5\xcf\x33\xb8\xb7\xbd\xe3\x7c\x9f\xad\x6b\xbc\x08\x8f\xc3\xf1\xf9\xe2\x3a\x19\xc5\xfe\x35\x46\xa9\x26\x83\xa0\x54\xd3\xc5\xe5\x96\xbf\xda\x57\xaa\xb3\xd7\x1c\xdb\xa4\x38\x21\x82\x73\xa3\x4b\x11\x28\x91\x8f\x89\x66\x8c\xbf\x21\x2b\x8f\x1e\xd2\x85\x8d\x89\x7e\x94\x6a\x7c\xfa\x0b\x61\x74\x68\x15\xa0\x8a\x54\xe0\xf0\x91\x43\xed\x51\x4a\xe6\x9c\x28\x3a\x03\xba\xe7\x42\x11\x8c\xe2\xc7\x90\x7b\xdd\x88\xd2\xcb\x74\xa8\x78\x77\x29\x69\x81\x14\x00\xdc\x9f\x24\x85\x2e\xc8\x32\xc9\x0a\x4c\xf9\xcf\x5e\x0a\xd4\x48\xab\x97\xb9\x27\x85\xea\x66\x5a\xc2\x07\x53\x57\xe6\x9c\x8f\x15\x9c\xf0\x10\xf4\x75\x93\x72\xe9\x8d\x91\x90\x56\x97\xc9\xd0\x1e\x79\x41\xc0\xcd\x6b\x20\xdd\xc9\x25\x3b\x29\x41\xeb\xcb\xe1\xd3\xf3\x09\x72\xb2\x62\x95\xe2\xb4\xe6\x22\x60\x01\x77\xe4\x80\x2c\x83\x05\x66\x32\x86\x62\xc3\x2c\xbe\xbd\x70\x58\x00\x20\x33\x70\xa5\xb1\x65\x6a\x89\x88\x16\x1c\x06\x6b\x9e\xc1\xee\xf6\x56\xf7\xcf\x10\x7c\xff\x51\x21\xf8\x4e\x35\xcd\x96\xcd\xf7\x6f\x7e\x46\x9e\xe1\x79\x14\xa7\x17\x0f\x73\x5c\x8e\xc3\xd7\xe9\xee\x6d\xf3\x57\x4f\xd7\xe5\xaf\x9e\x1d\xc7\xed\x16\xe2\xf0\x6d\xef\x75\xc4\xa3\xe7\xd6\x2e\x7b\xf4\x64\xcf\x9f\x57\xc8\xb7\x76\xb6\xb7\xd8\x9b\x67\xd7\x75\xd9\x93\xe7\xd6\xee\xd6\x36\x7b\xf2\x64\xef\xab\x73\xf9\x34\x7a\x43\xea\x77\xb6\x3b\xe4\xba\xe3\x5b\x3b\x5b\x5d\x17\xc0\x73\xfa\x20\xba\xed\x02\x78\x82\x1e\x07\x9b\xd6\x60\xb3\xe7\xc0\xc1\x26\x18\x6c\xf6\x5c\x38\xd8\x7c\x39\xd8\xec\x75\xe0\x60\xb3\x35\xd8\xec\x6d\xc1\xc1\x66\x9b\x7f\xb7\xc9\xf7\x0c\x5e\x23\x77\xcb\x75\x76\x3b\xb9\xfb\xc0\x9d\xb4\x98\xc0\x87\x9d\x6d\x69\x22\x61\x27\x38\xfd\xe2\xd3\x33\x36\x79\x7a\xda\x70\xfb\x05\xef\x7f\xb7\x27\xd2\x49\xa7\x36\xf7\x1f\xff\xe2\x87\xdc\x1b\x5f\x29\xa3\x31\x9a\xfc\x3f\xf2\xc2\x2d\xa5\x90\xf5\xf1\x99\x5f\xef\xfb\x9a\x8d\x69\x5e\x7e\xee\xff\x81\x3f\xfb\xf7\x38\x48\x74\xa3\x4f\xda\xb5\xe7\x27\x39\xec\x1d\xa5\x24\x88\xee\x70\x2c\x4b\x76\x35\x74\x69\xaa\x04\x59\xb6\x67\xec\x91\x2a\x72\x75\x6b\x4b\x3a\x1e\xef\x5e\x1f\x8f\xeb\x28\xa5\x93\x45\x10\xb0\x3c\x9b\x79\xb9\x4a\xa9\x1b\x06\x9e\x88\x07\xbc\x74\xab\x54\xaa\x93\xc3\xdd\x2e\x37\x2f\xd0\xc3\xed\xea\x55\xce\x29\x02\xa5\x5a\x3b\x7a\x2d\x9a\x93\xa7\x58\x67\xcf\xd8\x99\x42\x0a\x77\xbf\xaa\x2f\xa5\x52\xc7\xd1\x2b\x9d\x8e\xa2\xf0\xc2\x4f\x03\x3e\xe6\x4e\x99\x22\x6a\xa9\xca\x3d\xe4\x38\x53\xcb\x54\x6a\xcd\xa3\xb9\x5a\x54\xe6\x1b\xca\xbb\xdc\x9c\x63\xc3\xcd\xc8\x3e\xf7\xd0\xdf\xd0\x7c\x52\x2e\xb1\xfd\xf3\x9b\x8b\xab\x2f\xa7\x1f\xaf\xce\x4f\xff\xcf\x9b\xab\xcf\xa7\x7f\x7f\xf3\xfe\x1c\x39\x43\x34\xd8\x34\x14\x0c\x36\xa1\x68\x72\xf2\xe6\xfd\x7b\xad\x8d\x2b\xda\x14\x4b\x06\x9b\x99\xf5\x40\x0d\x3b\x2a\x37\x9a\x07\x6a\xec\x41\xed\x1a\xde\x20\x87\x9b\x35\x7c\xab\x0c\x06\x78\x9c\xa6\x54\x65\x51\x8a\x06\xb8\x88\x45\x91\xfe\x92\x0e\xb9\x47\x0a\x9c\xc2\x2b\x38\x81\xb7\x88\x47\xe0\x4b\x46\xde\x1c\x8b\xc4\x4c\x54\x27\x14\x17\x1f\xdd\xf5\xb7\x48\xb3\x4e\x1f\xe5\xf1\xf8\xf2\x17\x37\xbf\xfc\x44\x98\x98\x23\x12\xc6\xe6\xf7\x90\xa9\x02\x54\x7b\x26\xbb\x12\x81\x53\xf4\xb7\xa8\x09\xff\x4c\xf5\x66\x31\xba\x55\x7f\x72\x6d\x1c\x19\xf6\xaf\x7e\x98\x6e\x75\x98\x0f\xd9\xb6\xb3\xbf\x93\x3b\x4d\xc6\x7e\x78\xf3\x1a\x13\x90\xac\xe6\xc8\x66\x9e\x54\x17\xd1\xaf\xe9\x64\x4b\x24\xe0\x5c\xa4\x93\x3d\xbd\xd6\xaf\xe9\x64\x4f\xaf\x23\x92\x3a\xd0\x0a\x0b\x9b\xfc\xa9\x28\xe2\x99\xd0\x4f\x79\x17\x0d\x36\x65\x76\x5d\x7f\x14\x85\x1f\xbd\x99\xf6\x4d\xa9\x7a\x9e\x7a\xa3\x6f\xb9\x64\x2c\x6a\x17\x3e\x2b\x2c\x80\x82\x3c\x6e\xcd\xc5\xc5\xd9\xd5\xeb\xe3\x8b\x63\xe6\x84\x27\x27\x17\xc7\x5e\x82\x45\x7d\x9a\x6e\x97\x5c\x15\x96\xb7\x93\x6a\xfd\x57\xd8\xf8\x28\x3f\xae\xb2\x25\x28\x34\xd2\x01\x95\x2c\x15\x68\xc9\x19\xdb\xad\xcf\xa2\x3b\x93\x9d\x47\x7d\x4f\xa5\xb6\x46\xb0\x55\xfd\x26\x38\x7d\x46\x8f\xb2\x55\x01\x94\xb9\x97\x73\x1c\x8e\xdf\x46\xa3\xc5\xfa\x63\x2b\xb4\x34\x80\xac\xe8\xf1\x21\x1c\x31\xed\xfa\x2b\xcf\xa4\x9f\x5e\xd2\x6b\xb9\x75\x05\x68\x73\xef\xa6\x2d\x70\x6d\x24\xaa\x81\xd4\x77\x54\x40\xe9\xd8\x75\x1f\xc8\xa9\xb5\x7a\xff\x7a\x0b\x05\x84\x01\xf2\x85\x77\xbd\x1e\x60\xd9\x20\x07\x50\x00\xcb\xd2\x3e\x7d\x88\x6e\x4d\xc6\x29\x15\x90\x8b\x6d\x34\x30\xab\x5b\x1d\x55\x40\x5f\xd5\xea\xa8\xd2\x7c\xa7\x02\xae\x5a\xbf\x60\x64\x27\x61\xd2\x5d\x91\xe9\xe5\x56\x07\x5c\x6a\xa4\x03\x2a\x12\x9c\xb9\xea\xae\x4c\xeb\xbc\xba\x68\xac\x01\xa4\x47\x11\xdb\xb0\x1f\xe7\xde\x22\xc1\xe3\xde\x86\xcb\x03\x25\x51\x1f\xff\xbf\xf7\x1c\xf5\xe7\x3f\x7a\x0e\x1c\xd3\xa3\x66\xcc\xfc\xb4\x7b\x0e\x94\x6f\x61\x8e\x88\xc6\x9a\xcc\xf1\xc8\xf7\x02\x1e\xbd\xe9\xb2\xd3\xdd\x81\x9d\xee\x2e\xec\x74\xf7\x86\xc6\xd7\x37\x76\x3e\xe6\x17\xf8\x38\x7d\x38\x8b\xee\x2e\x62\x6f\xf4\x8d\x1f\x69\xef\xcd\x9a\x2b\xf6\x51\x4d\x3d\x57\x97\xf9\xcb\xd4\xb5\xd1\xd2\xd0\x8e\xc2\x42\xa2\xbc\x3c\x87\x9d\xd6\x99\x9e\xf6\x2e\x57\xa2\xb1\x01\x11\xa1\x2f\xd7\xd9\xbd\xf5\x82\xe0\xda\x1b\x7d\x93\x0f\x6c\xe5\x27\xab\x31\xbe\x5e\xdc\x58\x83\xcd\x5f\xc3\x6f\x61\x74\x17\x36\x4e\xce\x4f\x1b\x84\xd6\xbd\x06\xb9\x30\xfa\x63\x1c\xa6\xfe\xc4\xc7\x22\x84\x15\xef\x85\x7e\xcf\xf3\x92\x01\x48\xaf\xad\x49\x2f\xb5\xd3\x88\x09\x15\x20\x03\x99\x01\xb7\xfc\x1d\x20\xc7\x0d\xaf\x82\xd7\x9b\xf3\x93\x67\xe0\x55\x81\xc4\x3d\x1e\x2d\x52\xfc\x4c\x44\xfe\xfe\xe6\xe4\xd7\x8b\x37\x0a\x32\xf4\x2f\x6c\xee\xea\x93\x61\xbc\xb9\x95\xf2\xd2\xce\x3e\x55\x8d\x1a\x43\x6f\xc4\x1e\x83\xe1\xd8\x4b\xbd\x9e\x6f\xee\x3e\x7f\x2c\x31\x75\x3f\xd8\x7c\xf7\xe9\xd3\x2f\x4c\xa3\xde\x6c\x5a\x3e\xf2\xf3\xe9\x2b\xdb\xb6\x95\x90\x7b\x7d\x72\xfe\x1c\x56\x91\x88\xcf\xbd\x87\x20\xf2\xc6\x55\xb8\x7f\x8e\xfd\x50\x1a\xd6\xe4\x58\xd3\x6a\x73\x52\x26\x32\x65\x16\x9a\xd6\xa9\xae\xff\x37\x55\x5d\x8b\x85\xe5\xd3\x00\x2a\x2c\xa7\x0e\x5e\x09\x8e\x4f\xa4\x43\x9e\xd8\x3d\xe9\xd1\xd4\x76\xd0\x0c\x9b\xbf\x9c\xe1\x49\xba\x22\x68\x01\xe6\x58\x03\xc3\xf6\x41\x9a\xde\xf7\x7b\xf1\x3b\x36\xe0\x77\xe6\xdf\x4c\xd7\x45\xf0\x95\x01\xc1\xd7\xd1\x5d\xb8\x26\x98\x13\x03\x98\xb7\x4c\xf5\xb9\x26\xa4\xd7\x06\x48\xaf\xbc\xd1\xb7\x67\x80\x7a\x63\x00\xf5\x11\xdf\xa7\xfc\x19\x75\x1d\x50\x6f\x0d\xa0\x3e\xc7\x78\x84\xc7\x7e\x78\xf3\x0c\x78\x3f\x1b\xe0\x11\xd6\x3d\xbe\x4e\xa2\x60\x91\xae\x0b\xee\x9d\x09\x3d\x7e\xaa\xae\x09\xea\xb4\x7a\x26\x2f\xbc\xeb\x35\x81\xfd\x4d\x03\x46\xaf\x66\xa7\x21\xb9\xf8\x07\xde\x03\x4b\xf5\xb9\x0a\xb4\x79\x8c\x27\xfe\x7d\x6f\xb0\x79\xa4\x2c\x80\x65\xa0\x9d\xb5\x10\xfd\xc5\x04\x8d\xcd\xeb\x77\x61\x59\x0b\x77\x3d\x14\xdf\x1b\x76\x3b\x6e\xd6\xb0\x16\x9c\x0f\x1a\x9c\x31\x8d\xb6\xf5\x1c\x38\x9f\x0d\x70\xd6\xd9\x7d\x05\x9c\x73\xc3\x4e\xb6\xf2\x16\x29\x80\x5c\x18\x80\x3c\x63\x1b\xfb\x7b\x79\xba\x9e\x33\xa4\xff\x53\xb3\x87\xad\xbf\x88\xbe\xea\xd0\xa6\x1e\x59\xda\xcf\xdc\x28\x3c\x0d\xd6\x54\xec\x11\x67\xdc\x79\x6c\x4d\x68\xd7\x1a\x34\x16\x25\x40\xee\x8a\x32\x41\xd5\x9a\x40\x47\xfa\x54\xe2\x70\xfc\x1a\x13\x89\xe5\x38\x4d\x63\xff\x7a\x91\xe2\xe4\x73\xec\xcf\xbc\xf8\x61\x45\xb8\x72\x5d\x1e\x2a\xeb\x72\x79\x27\xe7\x78\x14\x85\xe3\xd5\xbb\x11\x90\xc7\x1a\xe4\xc0\x0f\xf1\xf3\x67\x0b\x6b\xb0\x6e\xbf\x73\xb6\x26\xfa\xdc\xff\xf6\xcc\x03\xe2\x46\x03\x93\x7a\xd7\x27\xd4\x44\x62\x3d\x20\xd3\x02\xfd\xd3\x0f\xd1\x78\xd5\xf1\x18\x37\x5a\x23\x40\x9e\x5e\x7f\x4d\xdc\x82\x02\x57\xff\x00\xec\x2a\x40\x3e\x0f\xbf\x59\x69\x3f\xc8\xb9\x76\x4d\x50\x61\x61\x0f\x27\x4b\xe0\x3c\xf5\xd2\xc5\xaa\x80\x8c\xa3\xad\x86\xba\xde\x80\x8b\xf2\xef\x86\xd2\xc7\x5c\x9f\xef\x68\xc2\x34\x92\x3f\x40\xb2\xfe\xbd\xc8\x49\x27\x5c\x7b\xf1\x10\xac\x3b\x53\x71\x11\x14\x53\xfa\x9c\xe1\x9b\xf5\x97\x5d\xa2\xc3\xf2\x6e\xb1\xc8\x98\xbe\x16\x98\x54\x03\xc3\x74\xf1\x9f\xa4\x87\xe3\x3a\x90\x16\x45\x9e\xa6\xf1\xb6\xd7\xc1\xa9\x38\x0b\xff\x4b\x99\x85\xcc\x74\xb7\x8b\x82\xc5\x6c\x65\x3c\xeb\xa0\xff\x5f\x93\xec\xf2\x1d\xd0\xff\xd7\x60\xf3\x7f\x55\x32\x50\x80\x47\xe9\xe7\x38\x4a\xf1\x28\xc5\xab\x5e\x61\x8a\xc8\xbf\xa8\x64\xfd\x98\xe9\x86\xd9\x0e\xb5\xaa\x4c\xa9\x2d\xdb\x67\xf7\x55\x96\x8b\x4b\xea\x18\x2b\xb4\x4f\x1c\xfb\xd5\x9b\xf7\x8a\x3f\xc1\x35\x0e\x02\x6b\xd5\xa6\xef\xdf\x2a\x2d\x03\x61\x1d\xb7\x6a\xeb\xdf\x2e\xbe\xa7\xf5\xdb\xef\xea\xfb\xe4\x4c\x69\x3d\xf2\xe2\xd8\xf7\x6e\xf0\x19\x8b\xfd\xb0\x32\xe1\xce\x55\xba\x79\xa3\x6f\xc9\xdc\x1b\xe1\x95\x9b\xbf\x53\x87\x9f\x7a\xd7\x2b\x37\x3c\xff\xa4\x34\xa4\x51\x4b\x3f\x31\x8f\x93\xd5\x5a\x9f\x16\x5b\x9f\xae\x3a\x64\xd7\x3e\xfd\xf8\x5a\x69\x4d\x63\xa2\xae\xdc\xf6\xa3\xc6\x67\xa1\xb8\xea\xaf\xda\xfc\xdd\xc5\xb9\x4e\xaf\x73\x6c\x18\xb4\xc1\x4c\xd8\x81\x21\xbe\x6b\x50\x17\x36\xa9\xe2\x92\xd6\x7a\x09\x4e\xa9\x36\x5e\x26\xad\x48\x98\xf5\xc0\x47\x6f\x46\xbf\xd1\x25\xbb\xbc\x0f\xd7\xdc\x87\x01\xe2\x2a\xd0\x3a\xf5\xd0\x04\xc2\xab\x80\xda\xae\x07\xf5\x29\x66\x0f\x55\x34\x4e\x2b\x1e\x8b\xa4\x06\xab\x40\xde\xab\x87\xfc\xee\x61\x8e\xe3\xc0\x0f\xbf\xad\x08\xce\xad\x98\xa6\x22\xa6\x6f\x6f\xd6\x41\xd2\x5d\x32\x31\x02\xea\xab\xf5\xa0\x2e\x99\x20\x01\x95\x9d\xb7\x6b\x41\x76\xea\x26\x8c\x1f\xe3\xcf\x98\x2c\xb7\x96\xbc\x1c\xee\xba\xa4\xad\xa3\x2d\x07\xb9\x26\x5d\x6b\x09\xab\x09\x31\x4b\xc1\x2a\x5e\x10\x52\x28\xda\x95\xd6\xd4\x45\x31\x6d\x2d\x30\x7b\x3a\x18\x5d\xb8\x5a\x0b\xd2\x6b\x1d\x52\xc5\x7e\x5a\x07\xe1\x8d\x0e\xa1\x7a\x57\xad\x03\xf2\x4e\x07\xb2\x6c\x6f\x35\x81\xf8\x50\xa4\x09\x4d\xe8\x7f\xba\xfe\x80\x90\x0e\xe8\x1b\x7e\x98\x7b\xe3\xe3\xf9\x3c\xf0\x47\xd4\xcb\x98\x8a\x37\x6b\x41\x3c\x34\x41\xfc\xb8\x98\xe1\xd8\x1f\xad\x0f\x6d\xa4\x43\x9b\x2c\xc8\x8d\x21\x59\x97\x5c\x61\x81\x13\x71\xca\x3c\xd8\xac\xce\x5a\x60\xa2\x2a\x30\x5b\x6b\x81\x79\xfa\x31\x60\xb2\x1f\x33\xa8\xff\x5b\x05\xa6\x5a\xd3\xab\x82\x29\x0a\xcc\x7f\x2d\xbd\x1b\x29\xa0\x89\xf4\xff\x9a\x65\x64\xe2\x7e\xf4\xab\xcd\x63\x5d\x27\x3f\xaf\xd6\x89\x12\x46\x1c\x37\xfc\xb0\x11\xd9\x27\xef\x8e\xcf\xce\xdf\x5c\x9c\x83\xb5\xbb\xb7\x64\xf7\xb8\xdc\xb5\xe8\x93\x56\x6b\x55\xdf\x70\xea\x3a\x00\xab\x75\x00\x9e\xdd\xc1\xcb\xd5\x3a\x78\xf9\xec\x0e\x5a\xab\x75\xd0\x7a\x76\x07\xed\xd5\x3a\x68\x3f\xbb\x03\x7b\xb5\x0e\xec\x67\x77\xf0\xd3\x6a\x1d\xfc\xc4\x3b\xe8\xaf\xdd\xc1\x5f\x94\x55\x52\x38\x44\x99\x0d\xf3\x71\xe0\xdf\x84\x33\x1c\xa6\x9f\xbd\x34\xc5\x55\x57\xb1\x38\x8e\xe2\xb2\x24\xaf\x3e\x9f\x63\x1e\x75\xf4\xb3\x17\x27\x7e\x78\xd3\xa0\xbf\xe9\xdb\x39\x06\xb0\x9a\x38\x8a\xbf\x63\xed\x1d\x9f\xea\x10\x88\xa0\x32\xb3\x95\x26\x9a\x67\x35\xbf\x8c\x33\xc5\x9a\x78\x90\x67\x9e\xd5\xd9\xd5\x3c\xc6\x09\x8e\x6f\x99\x65\x4e\xee\xd4\xa1\xe0\x44\x4b\x6c\x66\xb2\x83\x36\x9c\x92\x39\x8f\xad\xda\xf0\x48\x23\x59\x73\xf9\x3f\x50\xd9\x1c\xc8\xd6\xac\x7c\xa4\xe9\xac\xda\x37\xd7\x3f\xa3\x24\xa3\x94\x0d\xa2\xbb\x33\x9c\x44\xc1\xad\x1f\xde\x1c\x27\xd4\xdd\xb9\xd6\x2b\xfb\xd6\xe4\x95\xfd\x39\x8e\x66\x7e\x82\xed\x98\xdc\x93\x2f\x31\xa5\x21\xff\x26\xc9\x47\x2f\x38\x33\x1c\xc9\x58\x0b\xd6\x60\xf3\x2f\xe7\xef\x3f\x7d\xb9\xba\x38\xfd\xf0\xe6\xd3\xaf\x17\x83\x4d\x00\x60\x17\x93\xb3\x69\x08\x6c\x1a\x72\x9a\xd9\x93\x50\x0f\x96\x42\x55\x96\xbe\x8d\x86\xa3\xc5\xd4\xaf\x22\x0a\xa4\x1b\xb8\x47\x86\xd1\x60\x3c\xd0\x60\x5e\x98\x71\x23\xf5\xbe\x11\x8e\x09\xa2\xf0\x86\xfc\x9a\x7a\x61\xa3\xeb\x38\x4e\x63\x96\x0c\x36\xa9\xa3\x1b\xcd\x7b\xb1\x88\x63\x1c\x12\x49\xeb\xdb\xe9\xb8\xc6\x28\x5a\x66\x76\xb4\x17\x71\x70\x3a\xce\x72\x0f\x7b\xea\xd6\xe9\x43\x61\x4b\xa9\xda\x19\xd9\xf7\x30\x36\x7d\x7e\xa0\x39\x19\x44\x8c\xc2\x0a\x66\xa1\x11\x11\xa9\x73\x85\x8f\x34\x1e\x67\x5d\x2b\x9f\x5e\x29\x56\x53\x95\x9c\x41\x38\x56\x4f\x7a\x64\x64\x05\x1f\x40\xbf\x9f\x94\x71\x52\xb9\x54\x0e\xaa\x82\x4b\x0d\x2c\xc8\xd9\xdf\x85\xc2\x57\xe8\xf0\xba\xd9\xb4\x42\xc3\xd8\x39\xb3\xb6\xae\x69\xf2\xdb\xd5\xd9\xf2\xf5\x9b\x57\xbf\xfe\x2c\x1c\x82\x0c\xf6\x37\x73\xbe\x81\x8c\xbd\xd4\x1b\x6c\xb6\xac\x3c\xec\xb2\xf4\x81\xc2\x47\x5f\x1b\x83\xcd\x17\x8f\x38\x1b\x6c\x7e\xed\xb1\xbf\x59\xe2\x90\x79\x1c\xa5\x11\xa9\x65\xcf\xbc\x39\xf3\x77\xc3\x54\x5d\xc7\xf6\x03\x7b\x12\x47\x33\xb2\xad\x9e\x88\xf7\x0b\xfb\x9f\x91\x4f\x18\x93\x70\xda\x60\xf3\x2b\x80\xc6\xee\x30\xf5\xe7\x4b\x59\x3d\x02\x9a\x72\x3f\xa6\x6f\x0d\x04\xd4\x71\x6a\x39\x00\x80\x1e\xd6\x76\x39\xce\x44\x3c\x2d\x07\xd6\x13\x1c\x99\xaa\x5c\x4b\xef\x39\xa5\xb0\x64\xd0\x9e\xa7\x8a\x13\x1e\x68\xd7\x34\x26\xf6\xd3\x13\x6b\x5b\xb0\xf6\x63\x5e\x7d\x67\xcc\xb5\x59\x99\x56\xc5\x03\x32\xec\xa7\x12\xbd\x7e\xda\x42\xd7\x4a\x74\xcd\xd6\xb5\x2c\x3a\x4a\x5b\xd7\x3d\x9c\xbb\xbd\x19\x49\xc5\x70\xd0\x0c\xed\x39\x7f\x5b\xd8\x4e\x16\xd7\xac\xc4\x4a\x61\x68\xa0\x95\x70\x3f\x56\xec\xef\xb5\xc6\x1e\xcb\x0a\x63\x6e\xdb\x5f\x7d\x05\x46\x85\x25\xa6\x9f\x0e\x09\x8c\x61\x04\x53\xd5\x46\xcc\xbc\xfe\x58\x22\x1f\x7f\x62\x6d\x44\x79\x0c\x82\xb5\xa9\xb2\x1e\x19\xbe\x6f\xe0\xc5\xbd\xa5\x3c\xf0\x14\x3a\x2b\x0c\xdc\xb4\x85\x22\x84\xa4\xa3\x9f\xbe\x8b\x22\x84\x62\xc1\x9d\x9a\x69\x32\x75\xf1\x04\x79\xa4\x5e\x23\xff\xe2\x70\xdc\xfa\x01\x41\x23\xe0\xb4\x02\x3e\xcd\x9a\xf4\x23\x7a\xe8\x4f\x0f\x4c\x75\xe2\xe8\x4e\xd2\xc5\xe8\x9a\x40\xa9\x20\x57\xb5\x70\x89\x29\x03\x69\xbb\x00\xca\x6a\x5e\x5d\x35\x90\xa9\x26\x84\xf4\xe0\x4b\x60\x2c\x9d\x1c\xf9\xa1\xa9\xc7\x54\xe0\x3f\xa1\x38\xe7\xaa\x03\x0c\x30\xc1\xf1\x0c\x7b\x63\x1c\x93\xdb\x3c\xf4\x8c\x36\xc2\xa3\x28\x48\x24\xd1\xd5\x20\x0d\x63\x3c\xe2\xef\x9e\xa4\x75\x62\xdf\xc5\xde\xdc\x63\x09\x65\xc7\x86\xea\x33\x5a\x89\xbd\x78\xd1\xee\x16\xa8\x74\xea\x53\xb7\xaa\x89\xe9\x08\x0f\xfc\x10\xb3\x24\x5a\x26\xce\x24\x13\xdb\x32\x15\x08\x51\xbb\xc8\x2c\x33\x2f\xfe\xa6\x46\x16\x2a\xb4\x32\xd8\x4f\xdb\xf7\xcd\xa6\xdf\x4e\x0f\x9d\x66\xb3\x83\x10\x9a\x30\x6f\xb8\x71\x3a\x35\x41\xb8\x6f\xbb\xa0\xd9\x9c\xd0\x57\x56\x1c\x04\x6f\xc9\x71\x15\x8d\xf1\x3c\x22\xb3\x69\xae\x4f\xb3\x01\x2c\x98\x63\xd9\x6d\x61\x17\x10\xa6\x27\x7f\x8b\x84\x43\xa2\xd8\xf4\x6f\x50\xda\xbf\x39\xf0\xfb\xad\xd6\x0d\x15\x5d\x12\x84\x2f\x6f\x86\x30\x39\x70\x3b\xbb\xcd\x66\x98\x47\x64\x08\x2f\x4d\x47\x67\x02\x86\x7d\xdc\x6c\x92\x66\x85\x43\x30\xd3\x62\x66\x14\xfc\xb7\x98\xb1\x0e\xf3\xe0\xf5\x71\x62\x25\xf0\x16\xf4\x63\x34\x2f\x44\x0a\x24\x32\x5c\xec\x8d\x04\x99\x80\x4c\xb4\x52\x55\xf1\x7c\x1a\x2d\x82\x31\x19\xa5\x95\x52\x3f\xda\xa3\x7a\x90\xb7\xa0\xe7\x90\x5d\xf3\x16\xa5\x30\xca\xd7\xa6\xf4\xf4\xa0\x2b\x92\x26\x10\x66\x5b\xb6\x98\x87\xcf\x64\x1e\x80\x95\xc8\xdb\x4c\x59\x30\x95\xd0\x34\x47\x37\xdb\x1b\x8f\xdf\xfb\x21\xa6\x21\x6b\xbe\x59\x55\x8d\x4d\xec\x53\xc3\xa3\x46\x6e\x6b\xc5\xed\xd9\xa1\x07\x68\x5a\x0e\x39\x8b\x93\xbe\x9a\x1a\xb2\xc0\x42\xb3\x7e\x9e\xff\xae\xb0\xa5\xcf\x8c\x18\x89\xec\x76\xe5\x6d\xde\xf0\x59\x8d\xa0\xd5\x72\x8f\x8c\xeb\x46\x66\xd0\x33\x06\x41\x62\x45\x9a\x1f\x9b\xc5\x9e\x89\x7a\x46\x68\x87\xc6\xed\x88\x6d\xc3\xc6\x06\x95\xf5\xdb\xae\x91\xc6\xcf\xdd\x53\x6c\x3f\xe1\xc1\x43\x68\x50\x96\x1f\xba\x5f\xc1\x19\xd9\x61\x26\x0d\x9f\x07\x90\x8c\x26\x8d\x80\x07\x87\x25\x8c\x47\x36\x95\x51\x34\x7f\x20\xbb\x4a\x42\xd8\x99\x9e\x0d\x0e\x9c\xc1\x0d\x17\xf4\xd3\x03\xaf\x0f\x70\xc5\xae\xd3\x6a\xf1\x2d\x46\x8a\x3b\x46\x56\xf1\xda\x2e\x24\x1b\x5c\x0c\x46\x51\x98\xfa\xe1\x02\x53\xb9\xc4\x28\x11\xdc\x2b\x9c\xb9\x74\x3f\x3c\x72\x7b\x9d\xfe\x84\xac\x20\x89\xd4\x45\x44\xf0\x34\x37\xc0\x2c\x75\x50\x1e\x4f\x23\x6e\xcf\xfa\xed\x36\x3e\x44\x4e\x1f\xac\xb1\xb3\xd2\x61\x3b\xea\xb0\xc7\xcd\xa6\x35\x11\xa6\x17\x84\x8e\xc6\x76\x30\x6e\x1b\x57\xcd\x0d\x4e\x3f\x2e\x82\x80\x22\xbe\x00\x00\x16\x0e\x03\xaf\x6e\xe7\x27\xb4\xbd\xe2\xf9\xf8\xde\xd0\xa4\x7c\xaf\xdf\x68\x1f\xbe\x9c\xbe\xbe\x78\x07\x09\xd8\xf5\x46\x48\x24\xbe\x05\x80\x31\xcf\x81\xd9\x6f\xb7\xe3\x67\x12\x69\xc9\xc1\x23\x5d\x75\xf5\xf6\x07\x9e\x3c\x1c\x9d\xe5\x87\x23\x68\x36\x37\x26\xf6\xd4\x4b\x68\xae\xad\x0a\x94\xd6\x3b\x3f\x39\x6b\xc3\x67\x9d\xf6\x4b\xa2\x73\x51\xe3\xa2\x0d\x84\x88\x9c\x1b\x7a\xc1\xd3\x13\xb6\x99\x9d\x09\xf9\x4b\x53\x76\x1d\x19\x75\x63\x05\xa8\xbd\xe5\x95\xc8\xad\x74\xe3\xce\xc2\x36\x73\x58\xba\x74\x84\xcb\xf0\xb2\x68\x51\xfc\x17\x78\x7a\xe2\x31\x53\x56\x8a\x60\x56\xad\xcb\xc3\x65\x5d\x5d\x0a\x56\x8c\xb0\x56\xad\xdd\x5c\x3d\x8e\x59\xf5\x83\x27\x2e\x3f\x77\x12\xcc\x98\x0d\x4e\x31\x81\x80\xea\xb8\xcc\xee\x2a\x70\xc3\xc9\x72\xcb\x17\xbd\xfe\xf3\x64\xc5\xea\xa9\x19\x45\xe1\x2d\x8e\xd3\x37\x51\x60\x3e\xb7\xee\x91\x63\x96\x18\xfe\x3b\x9c\xcf\x32\x91\xf9\xaa\x67\xf3\xd1\x9a\x27\xb3\x09\xfc\x8f\x38\x98\x5d\xe3\x46\x65\xc6\x9b\x5c\x71\xcc\x07\x9c\xa4\xd8\x33\x99\x22\x77\xb2\xcd\xf9\xae\x68\x33\x55\xc8\x77\x5e\x60\x0d\xd2\x42\xb1\x90\x52\x62\x60\xd5\xdd\xc5\xf8\x2b\xf2\x17\x79\x25\xd3\xf5\x05\x31\x26\x02\xf1\x28\x15\x2f\xef\x66\x5a\x39\x95\x34\xd9\xa0\x62\xb7\x11\x56\x15\x7d\xab\xfa\x00\xe6\x2e\xfa\xe2\xb4\x76\xcc\xec\x7e\x6f\x56\x51\x18\x7c\x51\xf3\x00\xb1\xe6\x26\x07\xcb\x56\x93\xb1\xd9\x73\x59\xf4\x28\xe7\x51\xf1\x08\xf0\xef\x61\xfd\x7c\xf1\x17\x38\xac\x6a\xc2\xda\x22\x6e\x22\xfe\xa1\xf7\x71\x4c\x0e\xfe\x7a\xd9\x00\xaf\x20\x1b\x98\xb9\x26\xab\xe7\xf2\x0d\x27\xa3\xd6\x82\x8f\x15\xc2\x6f\xf5\xee\xc0\x97\xcf\x86\x53\x47\x93\xfb\x7e\xdd\x4a\x36\x7c\x0c\xf1\x7d\x7a\x9e\x46\x73\x6b\xf9\x21\x52\x54\xd6\xe8\xb7\xdd\x0b\xef\x9a\x6d\x30\x66\x51\x9a\x8e\x3c\x37\x77\x2c\x3c\xba\xe8\xfa\x23\xd5\x68\x40\x36\x3b\x2d\x6d\x53\x95\xad\x1c\xda\xaa\x48\x7b\x5c\xc3\x66\xc6\x75\x70\x9f\x67\x2c\xc3\x50\x49\x24\x67\x64\x07\xf3\xf1\xb9\x82\xca\x2a\x8a\xfd\x1b\x3f\x3c\x92\x5d\x2d\xd9\x09\x72\x44\xea\xb6\x19\x23\x32\x00\xf4\x0a\xbd\x98\x0e\xc3\x25\x23\x95\x51\xdc\xd7\x96\x70\xaf\xa4\xbd\xbf\x1a\x14\xfa\x79\x87\xda\x0a\x04\x35\x8b\x39\xb8\x6e\x9a\xcc\xb4\x6c\xa5\x66\xe5\x40\x35\x30\x81\x65\xc5\x11\xb7\x36\xe1\x66\x51\xee\x91\x90\x53\xae\x02\x7a\x4e\x65\xe3\x2d\xcb\x8c\x73\x2b\x05\x99\xe2\x41\xfd\xa8\x6b\xde\x0a\x9b\x78\x1d\xb1\xe4\xf6\x73\x88\x1c\x2e\x86\x29\xd8\x3b\xb0\x9d\x73\x20\x54\xee\x16\x4f\x4f\xae\x94\xf2\xf4\xfa\x56\xb1\x16\x15\x5f\x54\x5f\xea\x3a\x64\xd5\x95\x63\xc2\xfb\x61\x19\xbe\x6b\xa2\x5b\xa8\x93\xe3\x9a\x3b\x6c\xeb\x7b\x98\x3a\xb5\x5a\x5b\xe8\x28\xad\x15\x27\xed\xca\xe6\x25\x4a\x69\x10\x14\xdf\x6c\x0d\x82\x46\x49\xf3\xe1\xec\xe4\x50\x8a\x6e\xd9\x06\x50\x94\x7f\x96\x02\x2a\xf8\x63\xeb\x83\xca\x39\xb8\x38\xa4\xb6\x59\xac\x50\xc6\xa9\x38\xde\x55\x01\x95\xef\x96\xa8\x73\x94\x77\xe0\xf2\x0e\x7a\x0e\x2c\xf7\xca\x3a\x28\x79\x87\xfe\x08\xb4\x4d\x7e\xa2\xeb\xb1\x48\xd9\x0f\xb2\x0a\x2f\xa3\xd6\xa2\x62\xb4\x26\x8f\xc8\x4a\xbc\x8c\x8c\xaf\x79\x41\x1a\x38\x45\x29\xe5\x52\x91\xf0\x76\xcc\x83\xb0\xe7\x50\xc5\x42\xa5\xb2\xf8\x11\x73\x2b\x32\x09\x39\xa9\x77\x9d\x5c\x9a\x06\x3a\xec\x6d\xf1\xf0\x1d\x15\xad\xd0\x63\x56\x5e\xb0\xcc\xa5\xf8\x7b\x84\x35\xa6\x2d\xd7\xe9\xc3\xb2\xaf\xa6\xed\x76\xdf\x78\xf5\xa8\x97\xd3\xfa\x02\x74\x66\xf2\x7e\xfe\x6f\x80\xea\x3c\xc6\xb7\x45\x54\xcb\xae\x5a\x75\x93\xec\x6a\x33\xa5\x9a\xe4\x5c\xdf\x3c\xa1\xee\xd6\xce\xde\xae\xb3\xef\x76\x00\xec\xb0\x10\xfc\x34\x14\xba\x0c\xe9\xac\xd7\x6f\xa2\xb6\x68\xb0\xc5\xe4\x42\x1e\x2a\x20\xd7\x68\x0b\x23\x2e\x72\x6d\x89\x69\x1e\x05\xfd\x79\x73\xdd\x5b\x07\x06\xfd\xd0\x8e\xf1\x3c\xf0\x46\x98\x6b\x77\xa1\xbf\x4c\x91\x6b\x56\x7d\xc0\x18\xc0\xa4\xd9\xb4\x42\xed\x72\x05\xa8\x70\x8b\x53\x7d\x08\x0a\xe6\xfe\xf3\x31\xf7\x9b\x4d\xcb\xa7\x49\xc4\x4d\xd5\x56\xc0\x58\x8a\x3f\xc6\xf7\x6d\x6a\x42\xf2\xc1\x8b\xbf\xe1\xd8\xa8\xf4\x16\x78\x40\xbf\x30\xe2\x52\x18\x0a\x36\x5e\x6a\x89\x25\xa2\xcd\xae\xa9\x0d\x50\x38\x8f\x87\xa9\x75\x7a\x84\xdd\x8d\xd4\x7b\x58\x2a\xbd\xf9\x62\xe0\x65\x06\xf3\xcd\x7a\xb4\x7b\x23\xa5\xe8\x6b\x77\x95\xce\x01\xa6\xa0\xef\x57\x1a\x07\xf4\xfd\x56\x0b\x48\x2a\x68\x0c\xe2\x93\x96\xcb\x87\xd0\xbf\x8e\xb1\xf7\x8d\x47\x6f\xfd\x57\x51\x03\x9a\x2f\x51\x2d\x17\x6e\x38\x39\xff\x14\x0b\xeb\x14\x67\x26\x56\xca\xf9\xdd\x6f\xb9\xba\x76\x02\xf4\xfd\x7c\x47\x7b\x16\xa5\x1c\x8d\x52\x1d\x8d\x52\xe5\x79\x59\x4e\xad\xf6\x0f\xc7\x69\xab\xb7\x54\x77\xc2\x63\x78\x57\x72\x13\x3e\x74\xea\x48\x9b\xc6\xfe\x8c\x9a\xff\x55\x88\x7c\x74\x2d\xa3\xba\x0b\x2b\x33\x87\xc1\xb0\x42\xfb\x3c\xf6\x93\x79\x7d\x7b\x52\x43\x6d\xaf\xa7\x82\x72\xe8\x43\x01\x3f\x82\xf4\x08\x31\x6c\xf7\xf8\x71\xfb\x46\x15\xaf\xd7\xac\x9d\x1f\xb1\x15\x68\xab\x75\x2d\x1c\xaa\x97\xa0\x5b\x00\xdc\x79\x1e\x60\xc3\x48\xe8\xea\xce\xbe\xeb\xa5\x63\xc3\xc9\xf4\xf8\x3c\x15\xb7\x61\xb3\x30\x63\x16\x8e\x6a\x54\xb6\xec\xea\x28\x2c\xce\x0a\x5a\xdb\xba\x8b\x70\x51\x5b\x67\xde\x45\x2b\x95\x94\xd2\xb6\xd8\xa4\xa2\xa9\xbe\x81\x73\x1d\x91\x39\xd2\x22\x6b\x6c\xec\x8e\x2e\xc3\xa4\xb5\x44\xda\x63\xab\x9e\xe7\xa3\x88\xdb\x2e\xac\xb3\x69\xe0\xd5\x2a\xf6\xfa\x1b\x9c\xbe\x0a\xbc\xf0\x9b\xc2\x46\xa5\x57\x9f\xfe\x52\x46\x29\x65\x67\x5b\xbe\xce\xb4\x2c\x6c\x35\xf7\x54\x3d\x78\xd3\xff\x4c\x26\xa3\xe8\x27\x74\xce\xbf\x8b\xdd\xea\x1a\xd7\xb0\xdb\x6a\x7c\xe6\xaf\xc2\x65\xc9\xff\xa3\x5c\xa6\x07\x56\xac\xe2\xb2\x1a\x05\xd7\xb3\xdf\x40\xc4\xa8\xc9\xf9\xbe\xdc\x10\xa5\xa0\x78\x78\xd6\xc5\xe0\x99\xea\x4f\x90\xaf\xc6\xff\x72\x3a\x71\x34\xfe\xfb\xd2\x49\x09\xf1\xf6\xb8\xfe\x6d\x5e\x5b\x52\xeb\xd0\x29\x7f\x77\x58\x61\xad\xae\x0f\x98\x6f\x33\xff\x65\x4b\xbc\xf6\x59\x45\x5f\xea\x72\x0e\x84\x72\xfa\xdf\x3e\x0b\x9c\x58\xff\x92\x89\x20\x24\x58\x3e\x0b\x86\x84\x00\xff\x35\x73\xc0\x83\xca\x56\xa8\xc4\xfe\x1d\x07\xb2\x71\xe6\x99\x2d\x61\x1d\x98\x3e\x5e\x6a\x11\xd0\x6f\xb5\xf0\x8f\xd0\xf6\x68\x7b\x9a\x03\xd3\xe7\xee\x59\xba\xba\x66\xb9\x8c\xff\xe3\x67\x5b\x84\xe8\xfd\x73\xba\xeb\xa6\x5b\x3d\xea\xff\x1f\x9d\xee\x62\xc4\xb2\x3f\x27\x7c\xd5\x09\x37\x6b\x11\xfe\x5f\xe4\x81\x62\x5c\xb9\x3f\x79\x60\xd5\x3d\xfe\x7f\x0e\x0f\x68\x31\x84\xff\xcb\xee\x04\xfa\x3b\x8f\x91\xb8\x86\x8f\xad\xd2\x6b\xfd\xbf\xfd\xae\x50\x13\x53\xb8\x60\x52\x51\xed\x03\x46\x2d\x41\xcb\x5a\x88\xc2\x35\x28\x59\xea\x96\x65\xf6\x99\xbf\x6f\x27\xf0\xb9\x6f\x70\xc6\x71\xd3\x14\x74\xcc\x6b\x38\x06\x30\x2a\xf9\x43\x87\x5c\x23\xfe\xd2\x67\xaa\x1d\x0f\x39\x85\x6c\xaa\xa2\x46\x3f\xa7\x51\x68\x8f\x84\x3f\xd7\x71\x4a\x53\xbf\x3b\xfd\xe8\xd2\x6b\xb5\x86\x28\x85\xb8\x85\xd2\xc3\x9d\x6e\x77\xab\x7b\xd4\xe9\xb9\x19\x01\x34\x45\x9e\x02\xd4\xed\x63\xea\x3b\x87\x41\x44\xbd\x6a\xbe\xf8\xe9\x94\xba\x6e\x3a\xd0\x03\x70\xda\x42\x9e\x26\x39\x33\x67\xcc\x08\x3a\x70\xca\x44\x9f\xda\x18\xce\x32\x0f\x6a\x3e\x1f\x87\x8e\x7c\x27\xf5\x13\x6b\xb0\x79\x9f\xe2\x78\x36\xd8\x04\x62\x23\xa4\x1f\xe3\xfb\xdb\xb4\xcd\xfd\xed\x8a\x65\xcc\x0a\x70\xb0\x09\xb8\xb9\x4c\x6d\x7e\x7c\x1a\xb3\xf0\xcd\xf9\x49\x6b\xb0\x79\x79\xe4\xf6\x3b\xa3\xc1\xa6\xb0\x9b\xa1\xc0\x02\x3f\x5c\xdc\x0f\x36\xa5\x31\xe5\xea\xc0\x76\x46\x34\x92\x44\x05\x09\xd4\x08\xd3\x6b\x10\x61\xdd\x21\x1d\x3a\xfd\xce\xee\x4e\xdf\x29\x0e\xab\x40\xbf\xb5\xc1\xee\x75\xfb\xfb\xdd\x32\x58\x41\xad\x55\xe0\x29\xa3\x6d\xd1\xb8\x57\x1a\x24\x39\x89\x6b\x13\xfe\x70\x6f\xab\xbf\xed\x38\xce\x16\x43\x8f\xbd\xa8\xfb\x89\x42\x67\x07\x21\xc4\x89\x5b\x6d\x4b\x4a\x08\xfe\xd1\x9b\xe1\x16\x8b\x83\x40\x63\xa7\x7d\x9a\x58\x18\x64\x79\x48\xe8\x47\x3d\xb1\x32\x56\x53\x29\x8b\xf4\xa2\x62\x94\xa9\x78\x89\xd9\xee\x95\x07\x54\x74\xfb\x45\x1b\x8e\xf6\xbe\x21\x5e\x6f\x0a\xe8\x46\x25\xe7\x09\x44\xb7\x4d\x69\xd2\x50\x08\x34\xfd\x2c\x7c\x5d\x03\xbe\x45\x8b\x46\x2f\x0f\xa0\xc6\xce\xb5\x5f\xf0\x43\x52\x1c\x84\x80\x53\x36\x8a\x15\xc1\x7f\x1c\x18\xc9\x9b\x39\x8f\x56\x25\xed\x29\xab\x5b\xb9\xcf\x6a\xd5\x79\x56\xab\x2d\x43\x2b\xfd\x49\x73\x19\x5f\x69\x3e\x48\x6a\x62\x4f\xf9\x8e\x59\x50\x52\xe3\xc4\xff\x03\x5b\xae\xcc\xc5\x58\xd6\x61\xe7\x4f\x8b\x5a\x7e\x3e\xe6\x4c\xa1\xa1\xb7\xb3\xc2\x5c\x32\xeb\xd4\x3c\x2a\x50\x6e\x9d\xe5\x40\xfd\xfd\x76\x77\x05\x68\xb9\xbf\x7b\x81\x1d\xdc\xce\x12\x9e\x66\xa6\x43\x81\x1f\x7e\x2b\xb4\xdc\xee\xae\xd0\x6f\xc9\xb7\xa3\x00\x64\x47\x90\xc2\x10\x95\xe5\x1c\xc7\xbe\x17\x34\xe6\x51\x9c\x36\x78\xa0\x25\x3c\x6e\x28\x3c\xde\x60\x41\xfe\xec\xc1\xe6\x2a\xe6\xbe\x4a\xc3\x5f\x68\xbb\x9c\xb6\x15\x99\x06\x79\xa8\x08\x05\xdd\x7d\x65\xc8\x6a\xee\x50\x9e\x41\xec\x73\x1c\xa5\xd1\x28\x0a\xd0\x60\xf3\xef\xae\x33\xd8\xd4\x08\x8d\xb7\x56\x6e\xfc\xdb\x45\xc7\x29\x36\x77\x9c\xce\xca\xed\x5f\x9f\x1d\xff\x5c\x6a\xbe\x7a\xf7\xc7\x1f\xff\x51\x6a\x6d\xda\x2e\x8b\x14\x4e\xfe\x3f\xf6\xfe\x85\xcb\x8d\x24\x4b\x0c\x83\xff\x4a\x15\xb6\x17\x93\xd1\x08\xa0\xf3\x0d\x20\x51\x09\x7c\xec\x22\x39\x4d\x0d\x9b\xe4\xb2\xc8\xe9\x19\x01\x58\x76\x16\x10\x55\x95\xdb\xa8\xcc\x9a\xcc\x2c\x92\xb5\x85\x9c\x4f\x96\x25\xd9\xab\x97\x25\x59\x96\x64\x7b\x6d\xcb\xb6\xe4\x95\x7c\x74\x7c\x24\x1f\x1d\xbf\xb4\xb2\xcf\xe9\xfe\x01\xfe\x0f\xfe\x25\x3e\x71\xe3\x91\x11\x99\x09\x54\x91\xec\xdd\x9d\x95\xd5\xcd\x83\x8a\x8c\xc7\x8d\x1b\x37\x6e\xdc\x78\xdd\xb8\x57\xba\x8e\x6c\xa1\xac\xf4\x1e\xd9\xa4\xaa\x65\x9a\xde\x6e\x36\x78\xf8\xe8\xf8\xe4\xd1\x2b\xc8\x74\x90\xa4\xc5\x41\x7e\x7d\x45\x59\x82\xac\x0f\x8c\x9c\x90\x83\xdf\xb2\x3d\x73\x88\x16\x9d\x3a\x44\x7f\x7f\x73\x1f\x25\xab\x94\x2e\x51\xc3\x45\xe7\xe4\xa7\x2f\xeb\xcd\xb5\xee\x83\x8f\xf5\x21\xf8\x58\x1f\x84\x8f\x74\xf1\xab\x49\xee\xb6\x01\x17\xe7\x4c\x2a\x7c\x15\xaf\xd7\x24\x09\x0f\x2d\xbd\x5a\x77\xc4\xca\xa8\x46\x50\x6b\x39\xc6\x2d\x39\xd8\x00\x1f\x06\x22\x8f\x10\x31\xed\x8e\xf6\xa0\x05\x51\x41\x1e\x6c\xb8\x26\xca\x4e\x8d\xaf\x9d\xe8\x3f\x49\xe2\x22\x8e\x36\xf1\xef\x93\xb6\x61\xd9\xb0\x5c\xd2\xae\x3a\xa0\x3f\x9f\xbf\xf7\xa0\xb6\xef\xc7\xdd\xa7\xb0\x65\x2a\xc8\xfa\x45\x94\xb3\x38\x6d\x96\x57\x7d\x54\xfc\x09\x2e\x48\xac\x8f\x5d\x90\x58\x2d\xa8\xfe\xd9\x2d\x49\xac\x3f\x95\xd9\x7a\xb4\x9b\x4f\xfe\x64\x26\x6b\xeb\x47\x9f\xac\xad\x8f\x9e\xac\xad\x1f\x63\xb2\xb6\xee\x3d\x59\x03\x93\xc4\xc9\xf9\xc1\x69\xb4\xfa\xee\xa0\x48\x0f\x92\x34\xbb\x8c\x36\x9f\x3c\x47\x5b\x1f\x3e\x47\xcb\xf9\xb6\x9a\x39\x3f\x7c\x12\x7c\xf6\xfc\xd9\xa3\x4f\x9d\x05\xad\x0f\x9a\xe5\x5e\x9e\x7c\xcc\x2c\xf7\xe1\xf3\x0b\x5f\x38\x7f\xe0\x9c\xc7\xb0\xfb\x80\x39\xef\x5e\xd3\x95\xd9\x3e\x5d\xd5\x8c\x6d\x37\x66\xac\x8f\x9b\x9f\x9e\x01\x47\xf2\x29\x0a\x61\x0a\x29\x0c\x43\x45\xae\xf1\x4d\x6e\xad\xf6\x7f\xf7\xa6\x2d\x6d\x2e\x50\xdd\x89\x14\xf5\x53\xe4\x3d\x90\xf1\xad\x3e\x66\x82\x1c\xeb\xac\x16\x64\x65\xd8\xce\x93\xd2\xe0\x97\x02\x1e\xdf\xf2\xee\x0a\x22\xbc\x4a\x37\x79\x70\x51\xb6\x69\x0b\x89\x5a\x83\x15\x8e\x36\x45\xb0\x29\xc3\x48\x5a\xf0\xda\x39\x7f\xe0\x37\x21\x09\xa7\x64\x66\x05\x36\xbe\x6e\x7b\x47\x70\x16\x5e\xe3\xb7\x61\x31\xb3\xc3\x30\xbc\x9e\xb9\x81\x0b\x7f\xdf\x18\x69\x63\x06\x46\x81\xc5\x32\x39\x81\x6d\xf2\x5c\x6b\x65\xa2\x45\x81\x19\x58\x3c\x3e\x6e\x9f\xfd\x10\x3c\x30\xb9\x9e\xad\x77\x4f\x6b\xb3\x11\x85\x7d\x31\xb3\x03\xcb\xb1\x21\x64\x05\x66\x60\x06\xbe\x84\xcc\x66\x1c\x14\x0c\x65\x4c\x35\x6b\xa0\x60\xc4\x51\x1c\xf3\x54\xbe\x1f\x09\xc3\x30\x97\x0d\x00\xbc\xab\x09\x03\x05\xb6\xc7\xe3\x0f\xd3\xda\x38\x45\x81\xeb\xc9\x7a\x9a\xcf\xf5\x03\xdf\x6f\x6b\x31\x93\xe0\x28\xf0\x87\x9c\xaa\x16\x71\x24\x3e\x7c\x8b\xc3\x31\x32\x4d\x5b\xa6\xb0\xcd\x8b\x4c\xa8\x8a\xc0\xb6\x44\xc6\xbb\xb2\x4a\x29\x70\x21\xde\x13\x95\x99\xa6\x2f\x8b\xc2\x12\x1f\x0c\x05\x05\x54\x86\xc9\x2c\x96\x96\x45\xae\xba\x45\x4e\x97\xd1\xd1\x0a\x5c\x68\xc2\x76\x4b\x45\x8d\x0c\x09\xe2\xae\xc2\x30\xdc\xa0\xc0\x56\x71\x6a\x8e\x3a\x14\x98\x38\x6d\x1e\x99\x7d\xfb\xd9\xad\x38\x35\x2b\xe7\x9f\xdd\x16\xb3\x45\x67\xd1\x61\x4e\x81\xca\xcf\x6e\xcf\xca\xc9\x67\xb7\x6f\xcb\xcf\x6e\xbe\x45\xf8\xd0\x9c\xbc\x8d\xb2\x83\x33\xfc\xb6\x7c\x73\x7d\xb5\xa6\xeb\xed\xa2\x10\x1e\x12\xd8\xbb\x14\x9c\xc9\xc3\x35\x1b\x9e\x3f\x19\x64\x1b\x7a\xa6\xe3\x58\xbe\x3b\xc2\xa4\x1b\xf6\x2d\x7f\x38\x1c\xda\x96\x8f\xc9\x36\x3c\x1b\xc8\x73\x50\x78\x02\x03\xd6\xd6\x28\xb8\x97\x3f\xfd\xd2\x98\x03\xb8\x25\x42\x81\xc7\xdf\xd8\xd0\xe2\x00\x6b\x6c\xba\xb4\xb8\xe3\x78\x9e\xeb\x3a\xf6\xd6\xf6\xbc\x6e\x8c\x30\x29\xdf\xf0\xc3\x7a\x05\x27\x21\x4f\xf2\x70\x6e\x62\x13\x83\xe9\x38\x13\x9b\x4b\x38\x35\xcf\x42\x13\x8c\xdd\xae\x53\x30\x07\x37\x4f\x7a\xd9\x52\x11\xc7\xbd\x64\x89\xe1\x79\xfd\xc9\xf5\xe9\x0b\x88\x33\x8a\x5e\x82\x2a\x11\x45\xe0\x98\x5e\x4b\x04\xb8\x29\x83\x49\x11\xcf\xe7\xd6\xb2\xdb\x35\xb2\xd0\x42\x98\x56\x90\xf6\x2c\x5a\x49\x3c\x4f\x97\xe5\xbb\x8b\x78\x43\x8c\x5e\x2f\x3d\x8a\xa5\x9d\xd4\xb4\x97\xd0\x1c\x47\x42\xe5\x9d\x4b\xdc\x32\x3e\x33\x2a\x70\x49\x2f\x9b\x86\xf6\x76\x6b\xeb\x31\x1e\x62\xd2\x59\xa9\x53\xd6\x91\xf4\x0a\xc5\x1a\x6b\xa2\xd5\x50\x9d\xf1\xdb\x13\x22\xe3\xe1\xa8\xbf\x6f\x41\x15\x84\xc2\xa3\x7f\x42\x13\x89\x27\x2c\x8a\x52\xb9\x33\x0a\xe2\xc1\xd9\xb9\x30\x7f\x57\xe3\x0d\x9a\x84\x29\x4e\x38\x9f\x3b\xf4\xc7\xa5\x3f\xde\x52\x9b\x4c\x5c\x0a\xe2\x74\x37\x88\xd3\xbb\x41\x78\x14\x84\xb0\x84\x1c\x56\xc1\xc1\x6a\x93\x26\xc4\x40\x58\x89\xba\x4e\xd6\xe0\x36\x86\xa8\xae\xed\x9b\xb5\xee\xc8\xdf\x8a\x8a\xb8\x52\x4c\xca\x37\x57\x59\xba\x22\x79\xfe\x5a\x14\xe2\x8f\xa1\x2b\xe4\x8a\x26\x72\xc6\xe1\xaf\xc9\x76\x4b\xa6\x1e\xa2\xac\x4e\xd9\xa5\x68\xa9\x1e\x1c\xd0\x85\x04\x17\x83\xb3\xf3\x6d\x68\xfb\x23\xd7\xf1\x5c\xcf\x07\xcd\x7b\x02\xb7\x7c\x67\xe7\xdd\xb0\x2f\x12\x86\x14\x0a\x6b\xd6\x23\x0e\xcb\x40\x12\xbf\x93\x9f\xbe\x34\xe9\xd6\x8b\xd0\xbe\x6b\xd1\x85\xa2\xfd\x46\x68\xa7\xb4\xa5\x9d\xd2\x34\xd9\x20\xd2\x6c\x10\xd9\x89\xbe\xd9\x9a\x06\x94\xed\x86\x7d\x7f\x68\x99\xa3\x91\xef\x62\xd2\xc4\xbc\xe1\xe7\x90\x8e\x5b\x0b\xd6\x50\x82\xb5\x4d\x75\x45\x65\x2e\xeb\xa6\x5f\xab\x86\xf3\x05\x40\xf5\x04\x0f\x24\x5c\x75\x53\xce\x47\x01\x7b\xb6\x25\x84\x48\xa3\x90\x1c\x3c\x59\x68\x4e\xb2\xa3\x62\x92\xf5\x7a\x48\xb9\x57\xcc\x96\x38\x9e\x86\x8e\xd9\xed\xc6\x47\xa1\x33\x9c\x19\x39\xeb\x21\x29\xc8\x72\xe8\x49\x21\x16\xb7\x71\xdf\x31\x51\x10\x4f\x43\x97\x15\x71\xa1\xc8\x69\xad\xc8\xa9\x5e\xc4\x65\x45\xc6\xac\xc8\xf8\x8e\x5a\x6c\x77\x1b\xf7\xc7\xac\x88\x65\xb2\x32\x96\x79\x47\x3d\x50\xc8\x32\x4d\x14\x50\x02\xc7\xb3\x26\x3d\xe9\xec\x07\x49\xbc\x2e\xc7\xb5\xad\xe1\xd0\x1e\xc1\x62\x83\xc6\x52\x60\xa2\x73\x61\x81\x13\x33\x3c\x55\x3e\xd6\xc0\x2a\xe3\x47\x97\xc2\x19\x9a\xd5\x44\x6f\x86\xe6\xe6\x32\xb0\x70\xce\xe7\x0b\x81\x85\x7c\x81\x09\xeb\x14\x11\x2b\xb1\x18\xa9\x08\x9b\x43\x67\xe8\x5a\x23\xdb\x85\x55\x8b\x88\xb6\x2d\x77\xe8\x8e\x1c\xdf\x1d\x05\xb6\xd2\x90\xaa\x79\xb6\xd5\x24\x48\x85\xb9\x8d\x73\x14\xd8\x76\xd5\x5a\x3a\x07\xf2\xb2\x63\xcc\x29\x2e\x23\x50\x60\x57\xd4\xaa\xc6\x82\x17\xd8\xae\x06\x41\x8e\xef\x5d\x04\x33\x81\x12\x76\x45\x0a\xf5\x71\x69\x60\x0f\xd5\xf8\xaa\x92\x91\x1a\x2d\xe9\xe1\x05\xf6\x58\x49\x90\x04\x19\x06\xce\x58\xc3\x4a\x8e\x5c\x8d\xa7\xbd\x6e\xbb\x68\x41\x81\x2b\x8b\x9f\xd6\x8a\x9f\xde\x55\xfc\xf4\x1c\x05\x0e\xa0\xbb\xdd\xba\xfc\xaf\xc7\xd0\xcf\x7a\x7c\x94\xd6\x16\x03\x19\xed\x09\x4f\x65\x46\xa5\xc7\x3d\x4f\x25\xbb\xd2\x74\x4f\xe2\x28\x65\x5d\xde\x94\x75\xf9\xce\x99\xa5\x6f\xe1\xbc\x21\xc7\x60\x9d\xf8\x09\xa4\xc3\x1f\x49\xb1\x9d\xdb\xeb\xd7\xc9\x77\x49\xfa\x2e\x39\x38\xf9\xe9\xcb\x83\x48\xc8\xd7\xe0\xe0\xb7\xd7\x83\x45\x07\xc7\xca\xeb\xe8\x9a\x77\xd8\xdb\xfa\xd1\x9c\x5c\x12\xb4\xed\xbd\xf7\xaf\x3d\xcd\xe4\xdb\xda\xb1\xd7\x9e\x57\x81\x37\x3d\x0b\xb7\x5b\x76\xed\x59\x93\x0f\xad\xf9\xb3\x5b\x42\x97\xb9\x45\xf9\xf2\x5b\xe5\x15\x5e\xbb\xcb\x5a\x3a\xe1\xf8\xb5\x29\xe6\xf6\x4f\x0b\xd1\x59\x3b\xa6\xaa\xe3\xdb\x9a\xe1\xa1\x7d\x07\xf5\xf7\xd9\xef\xef\x56\x6f\x7a\x95\x5e\x85\xad\x1a\xd6\xaa\xf6\xd3\x9e\xe7\x36\xb8\x31\x95\xb6\x2e\x33\xc4\x08\x6b\xb6\x27\x63\xee\xb0\xda\xef\x6a\xf5\x44\x1d\xbf\xe8\x2d\x59\xff\x62\x07\xee\x34\xed\x97\x3b\xdf\x26\xed\x2c\x72\xac\x3c\xe4\x97\xeb\xe0\x95\x16\x79\xaf\xb2\xa7\x6d\x65\x4f\xf7\x94\x65\xad\xde\x6f\xdc\xfc\x43\x4e\x8f\x99\xb6\x80\xee\xec\xb8\xcd\xfe\xc1\x76\x6b\xc9\xa7\xec\xf2\x30\x5e\xbb\xde\xdf\x7b\x42\xcc\xd6\x81\x8b\xce\xe9\x26\x5d\x7d\xa7\x9f\x03\xf2\x43\x53\xf7\x43\xc0\x48\x99\xab\x83\xf2\x02\xed\xfc\xfc\x7e\x18\x45\xd9\xa2\x53\xca\x33\xa8\xdf\xb6\xc3\xd0\xd2\x5f\x04\xdc\xe3\xe8\x3b\xe6\x74\xac\x79\x7a\xde\x45\x48\xb6\xc4\x64\x95\x48\xa3\x2f\x47\xf6\x76\x6b\x28\x0b\x49\x6b\x89\xa6\xbb\x46\xd3\x76\x0b\xb3\x09\xdd\x39\xec\x7e\xd9\x8d\x70\x3c\xdd\x61\x54\xa4\x1a\xd1\x45\xbb\x05\x18\x6d\x4c\xc7\xfd\xf6\x5b\x06\xd0\xb0\xa9\x3b\x93\x06\x13\x8c\x9f\x62\x9d\xb5\x4d\x89\x95\x9b\xc5\xb1\x66\x0a\x75\x02\x73\xb2\x73\x32\xb2\xdc\x80\xdb\xdf\xa8\x89\xbc\x6f\xa0\xaa\x9c\xd7\xc5\xbc\x69\x32\xc9\x77\x33\xf8\xe9\xa3\x57\x6f\xbe\x79\xf2\xec\xcd\xc9\x93\xbf\xf8\x88\x1f\xcc\xe8\xe7\xc0\x92\xaf\xee\x0b\x0d\xac\x16\xef\x04\x37\x6a\x3b\x42\xbe\x97\xd6\x93\x36\x47\x8c\xe8\xfc\xb0\x83\x05\xca\x1d\x69\xab\x74\x93\x97\x85\x3e\xfd\xda\x76\x60\x32\x9a\xd9\x9a\xcd\x12\xd6\x3b\xe0\x1b\x96\x3b\xc5\xb9\xce\x2f\x9a\x69\x42\xf4\x36\xb2\x8b\xbe\x93\xf6\x32\x1b\x39\xc0\x88\x9e\x81\x10\xe6\xf5\x5b\x5a\xfd\x31\xf7\x71\xdb\xa8\x5c\x24\x88\x9a\xf5\x8c\x8d\x6a\xf5\x64\x51\xa7\x46\x01\xa7\x46\x81\xbd\x2d\xe2\x70\xa5\xdf\xdc\x5d\xd4\x4a\xaf\x9a\x4d\xdb\x8d\x70\x05\x55\xfa\xf6\x6d\x25\x03\x40\x55\x56\x04\xaa\x67\xf8\x3d\x26\x53\xf9\x5c\xd8\xb6\x3c\xf9\x88\xe9\xb1\xfd\x7d\xf8\x9f\xcb\x39\x93\x5d\x52\x6b\xce\xec\xf7\x5a\x9e\xdd\x49\xdb\xed\xb6\xdd\x38\xe1\x5e\x63\x11\x8c\xce\xad\x66\xe0\x60\x19\x22\x8d\x48\xac\xda\x68\x78\x17\xa9\x5b\xca\x9e\xde\xaf\xac\xa4\x6a\x3b\xd5\x38\x0c\x95\xca\x77\xf5\x42\x65\x3a\x69\x1f\xc4\x9d\xc5\x77\xda\x2f\x64\xf3\xaf\xf0\x60\xad\x77\x9d\x32\x26\xa5\x61\xc4\x34\x81\xef\xe3\x8b\x28\x39\xe7\x2e\x7a\x88\x80\xa2\x78\xd5\xd6\x01\x89\x31\x18\x12\x9e\x73\x87\x9b\x6b\x39\xef\xcf\x97\x98\xce\xe8\xc2\xaf\xd6\x64\xd1\x61\x87\xaf\x93\x58\xca\xa7\x49\xb5\x9b\x88\x85\x54\xc2\x79\x15\x9e\xc4\x67\xc6\x17\xbf\xbb\x58\xac\x7b\x9f\x7d\x31\x20\xef\xc9\xca\x20\xca\x81\x34\xe8\xbf\x3f\x49\xe8\x46\x80\x66\x7c\x68\xc4\x08\x81\xbb\xba\x19\xbf\xb8\x28\x98\xc4\xbc\x2d\x6e\xae\x48\x60\x62\xd0\x66\x0d\xe2\x12\x81\x05\x61\x59\xb3\x61\xe2\x13\xe6\x4e\x09\x9a\x80\x8c\x1c\x4d\xe8\x54\xa4\x16\xb6\x44\x61\xbc\xa2\x79\x02\x52\xa2\xb2\x94\xcf\x2a\x6a\x7e\xbf\xd2\x04\x00\x71\xb3\xab\x82\xb0\xaa\xef\x6e\x65\x6d\xa4\x91\x87\x8b\x34\xa3\x90\xcb\x22\xba\xca\x29\xe6\xd6\x52\xe8\x16\x67\x24\x2a\x48\x05\xaa\x80\x25\x06\x5d\x2e\x05\x87\x34\x2c\x50\x38\x8b\x93\x38\xbf\xa8\xf2\x21\x54\x36\xca\x2a\x36\x2b\x77\x3b\x39\x69\x00\x52\x1e\x13\x08\xd4\x03\x8a\x3a\xb3\x59\xc0\x12\xb3\x30\x1e\x9c\xc5\xc9\x9a\x79\x2a\x66\x8e\xd4\xc0\x07\x53\xfe\x4d\x5c\x5c\x18\x8b\x4e\xbc\x0e\x17\x9d\xea\x05\x70\x9f\xce\x0c\x19\x38\x9b\x89\xe7\xd9\x72\x90\xc3\x3b\x58\x07\x6d\xb7\x6f\xd3\x78\x7d\xd0\x2a\x00\xaa\xd3\xe5\x9d\x49\xf5\xed\xd4\x4e\x17\x82\xe2\x42\x53\x77\xe8\x22\x4c\xcb\x83\x3f\x97\xdb\x78\x1d\xe4\xf8\x3a\x8b\x83\xa2\x6c\x03\x58\x3f\xf4\x00\xfd\xeb\x06\xf1\xee\xf6\x69\xf8\xa3\x34\xc7\xbc\x2f\x82\xca\x28\x3e\xb9\x22\xab\x38\xda\xc8\xcb\x24\xf5\xde\xa7\x31\x84\xab\x87\x17\xd5\x5d\xce\xa1\x51\x08\x4b\x50\xb9\x02\xab\xba\x78\xe9\xf5\x08\xee\xf5\x0a\x75\x88\xc6\x73\xb2\x44\x2d\x83\x66\xae\x0f\xd9\x16\xa8\xf3\x62\x59\x2e\xb5\x81\x9c\x37\x07\x32\x80\x9f\xe4\xad\xe3\x72\xae\x0f\xec\xf6\x2a\xf8\x68\xcf\xcb\x25\xd2\x14\xcc\x9b\x7e\xf3\x1b\xb6\x1d\x77\xd0\xd5\x44\x65\xab\x87\xfc\xfb\x96\xb7\xb4\xf2\xba\xdb\xf6\xfb\xc2\xb0\x51\xd9\xee\xf4\x1e\xb6\x2f\x04\xd5\x5c\x24\x34\x89\x66\x97\x4b\xed\xfa\x60\x97\xa4\x6f\xb2\x09\x5c\xb3\x35\x84\x3a\xf4\x53\x75\x77\x29\xe5\x3a\xeb\xbf\x87\x46\x8e\x6a\xe2\xd8\xe6\xbd\x96\x97\xe8\x03\x84\x70\xc3\x23\x7f\xdd\x19\x44\x4b\x4b\x79\x45\xb6\xe7\xb3\x36\x97\x0d\x1f\xfc\x1f\x02\x64\xa8\x03\xd9\xd7\x7d\xfb\x01\x8d\x38\xa0\xca\x35\xfd\x1d\xae\x02\x20\x9a\xbb\xc2\xa7\x05\x77\xb8\x80\xbf\x6d\xf8\x25\xfd\xcd\xd4\x12\xaf\x9a\xa0\xf9\x9c\xbf\x1b\xfd\x3f\x53\xbd\x39\x2c\x2d\x6e\xd6\x3d\x97\xdf\xdf\x82\xfa\xce\x1c\x7b\x9f\x93\xc8\x8a\x45\xae\x8a\xdd\xec\xc3\xea\x42\x91\x5b\xe7\x6e\xc7\x11\x1f\x9a\x28\x60\xae\xaa\xc3\x30\x24\x70\x9c\x73\x27\x36\xc7\x73\x9a\x71\x89\x2b\x47\xec\x73\x32\xb7\x96\xcb\xed\xb6\x15\x4b\x54\x72\x1e\xbd\xfd\x60\xa7\x14\x7f\x3e\x7d\xa2\x7c\xbc\xbf\xb2\x1d\x2e\x0c\x4e\x9a\xec\xa4\x81\xde\x6d\x88\x97\x0e\x3d\x90\x4d\xa0\x70\xf4\x84\xf7\xc3\x2e\x67\x1e\x3b\x0c\xeb\xef\x21\xf6\xab\xf4\x6a\xef\xe5\xc1\x5d\x46\xc1\xab\x27\xda\x2d\x89\xdc\x82\x0a\xdd\x36\x3c\xda\x90\x4b\x92\x14\x7b\xcc\x98\xb6\xee\xdc\xc9\x7e\xdb\x2c\x1f\xfa\xa8\xf5\x63\x8d\xe2\xec\x79\x39\xfc\x63\x3d\xd2\x66\xee\xce\xf6\x72\x7c\xe3\xbd\xb6\x5c\xfd\x9c\x5d\x6f\x36\xec\xfa\x65\x97\x43\x26\xf5\x2e\xa2\x55\xdf\x1b\x0b\xa5\x78\x43\xec\x3f\x3e\xec\x5e\x44\xa3\xd9\x93\xa4\x20\x59\x12\x6d\xf6\x95\x2b\xeb\x64\xd6\x31\x6f\x85\x57\xbb\x73\xdc\x9f\x53\x5e\xb2\x3b\xdd\x3d\xa7\x33\xad\xa5\xcb\x4a\xba\x37\xee\xb3\x76\x4d\x03\x44\x98\x57\x69\xf5\xee\x5f\x39\xf6\x24\xef\x0e\xae\x07\xc7\x64\xb3\x01\xdd\x0d\x32\x58\x31\xc7\x29\xa1\x75\x74\x64\xdb\xdb\x45\xe7\xd1\xa2\xa3\xfb\xf6\xc4\x64\xe7\xe1\x14\xb9\xe3\xe8\xa9\xa6\x83\xaf\x3f\x70\xd8\x25\xcd\x26\x74\x3f\xb0\xcf\x92\xc2\xee\xf1\xd5\x2b\xda\xfd\xbc\x2b\xd6\x65\x61\xe9\x6f\xe4\xcc\x68\x32\x41\x38\xaf\x99\x2e\xbe\xd3\x2a\xc2\x83\xcd\x86\x0d\xb7\xa6\x13\x07\x93\x5b\x79\xe7\x6b\x20\x76\x71\xca\xdf\xb0\xb7\x28\xf6\xb6\x69\x4a\x4b\xfc\x77\x5e\x0e\xc8\x5b\x92\x70\x6a\x34\x57\x25\x7b\x4f\xc6\x3f\xbb\x25\xa5\xf2\xb9\x58\x2c\x16\xdf\x32\x8f\x9a\xc6\x4f\x16\x9d\x5f\xfd\x84\xce\xe0\xb3\x6f\x5f\x58\x9f\x65\x9f\x35\xc7\xe0\x20\xce\x2b\x93\xe0\x68\x66\x05\x66\xb9\xe8\xfc\xea\xdb\xe0\x27\x8b\xce\x15\x2b\xf9\x13\x5a\xd2\xb7\x26\x16\x8d\x09\x16\x9d\x8c\xad\x09\x04\xc4\x58\x71\xd3\x61\x95\x93\x2a\x42\x4c\xb8\x65\xf6\x6d\xb0\xe8\x5c\xf2\x52\x8b\x0e\x2d\x66\x5e\xc2\x51\xc2\xc1\xaf\x74\x58\xb7\x70\x6d\x16\xd8\x58\xde\x7b\x05\x2e\x3e\x8d\xb2\xc0\x2f\xe7\xda\x7d\xd6\xb2\x6f\x68\x17\x53\x14\x6f\x54\x1e\xfc\x8a\xd6\xf4\xc2\xfc\x2c\x5b\x74\x50\x59\x13\xa3\x77\x38\x3c\xa9\xe5\x2c\xcb\x62\xf0\x24\xb9\xba\x2e\xb8\x5b\xb9\xf0\x3b\x38\xf5\x78\x1a\xae\x36\x51\x9e\xb3\x1e\xcf\xae\x57\x05\x5b\xcd\xb7\x74\xbc\x38\x80\x53\xfd\xb5\x97\xea\x07\x2b\x04\x47\x25\x7b\x18\x47\x4c\x2e\x24\x59\xef\xcd\x55\x56\xe6\x26\x08\xba\x25\x47\x15\xf0\x99\x52\x0f\x09\xc8\x54\x80\x13\xab\x11\x0a\x99\xb4\x53\x8b\xc0\xb5\xda\xa3\x90\x60\x12\x16\xb8\x08\x1f\x21\xac\x42\x16\x10\x38\x6c\x84\x8b\x56\xe0\x05\x03\x5e\x0d\x30\xd6\xf2\x5a\x85\x7b\x15\xf8\xcb\x72\x72\x76\x9d\xac\x60\xcf\xf1\x50\x7d\xe7\x7e\x14\x92\x6e\x97\x1c\xd1\x2d\xdb\xd3\x30\x37\xe6\x74\xb0\xbe\x1d\x3c\xf9\x52\x05\x82\x96\xf8\x29\x2a\xf1\xc8\x75\x03\x68\x56\x38\xbd\x95\xc0\x62\xf1\x40\x8b\x6f\x6f\x0f\xd2\xb3\x03\x82\x8a\xc1\x3a\xce\xaf\xd2\x9c\x18\x68\x22\x96\xcb\xa1\x59\x3e\x3f\xfd\x3d\xb2\x2a\x06\x6b\x72\x16\x27\x84\xfb\x3d\xbe\x31\x0a\xbc\xe8\xbc\x79\x43\xf2\xaf\xd3\xf5\xf5\x86\x2c\x3a\xf8\xf6\x6d\xb4\xb9\x26\xc1\xa1\x59\x22\x5c\x50\xe9\xf4\x90\x01\x03\xfb\x16\x2c\x1c\x9d\x6e\x48\x28\x6b\x81\x84\xb0\x18\x14\xa9\x96\xfa\xf5\x75\x41\x43\x5a\x9c\xf2\xc1\x8e\xcb\xb0\x16\xd7\x64\xce\x8a\xe5\x45\xa6\x9c\x6e\xe1\xf9\x31\x6f\xce\x51\x03\xc3\x31\xb2\xcd\xb7\xcd\x54\x66\x83\x83\x4f\x36\x94\x48\x0d\xa8\x88\x28\x44\x6b\xa4\x56\x44\x14\x27\x6d\x8d\x19\x50\xcd\x0d\xdb\x7f\x82\x30\x29\xaf\x13\xb5\x80\x6e\x13\x45\x2d\x51\x59\x2f\x98\xc0\x09\xa3\xbc\x11\x55\x33\x09\xa3\x7b\x98\x72\x14\x6e\xa3\xf0\x6e\x02\xea\xb4\x3a\x27\xc5\x01\x74\x73\x7d\x7d\x51\x65\x9b\xb1\x0e\xe2\x7b\x04\xc8\x4c\xe7\x7f\x5e\x8c\x34\xe1\x6e\xb7\x44\x2e\xa9\x21\x93\xbc\x19\x84\xaf\x59\x45\x5f\xac\x44\xd3\xb1\x0b\x62\x45\x60\xca\x62\x59\xe5\xfb\xfb\x14\xdf\x03\x3a\x87\x43\xa9\xa5\xb1\xa7\x18\x41\x55\x37\xde\x72\x00\x01\x81\xdc\x1a\x6f\xc7\x7b\x07\xc2\x1e\x58\x06\x0a\xa7\x74\x8c\x96\x65\x89\x2d\xcf\xf4\xe4\x08\xfe\xa8\xb1\xf8\x38\xbd\xce\x7e\x46\x6e\xbe\x8e\xae\xc2\x62\xf0\xea\x5d\xca\xc3\xac\x8d\x13\xe8\xfb\x83\xb8\x7d\xf8\xd0\xd5\xea\x6d\x59\xc2\x76\x9a\x69\xdf\x57\x09\x73\xb2\x94\x5d\xc5\xbf\xc1\x91\x89\x16\x33\x2f\x96\x61\x4c\xf9\xa6\xc5\xbf\x29\xcf\x32\xab\x17\x08\x38\xf5\xb5\xfe\x95\xb8\x94\x6a\x1b\x62\xbd\x79\x7b\x04\x01\x2d\x4d\x57\x8b\xb1\x6c\x4c\x8e\x33\x9c\xa8\xe9\x03\x81\xa6\xd8\xf4\x43\xa4\xc8\x0e\x85\xd5\xd6\xc9\xec\x90\x85\x41\x13\x2d\xc5\x31\xce\x5b\x5a\x2b\x8b\xcc\xd8\xf2\x0d\xe7\xa8\xa5\x95\x03\x1e\x45\x7b\xdf\xb7\x2c\xf7\xd3\x7a\x3f\xce\x8f\x2f\xb2\xf4\x92\x3c\x3f\x09\xe9\xc7\xd3\x38\xb9\x7e\x0f\x21\xae\xdd\x00\xe1\x27\x57\x17\x69\x42\x78\x30\x5a\x43\xe0\xeb\x68\x15\x02\xff\x9e\x44\x67\x51\x16\xff\x9c\x64\x79\x9c\x26\x90\xc4\x62\x18\x3c\x72\x1e\xad\x6e\x1e\xad\xcf\x59\xe9\xc7\x71\x46\xce\x52\x56\xc1\xb3\x74\xad\xc8\x6b\xfe\xcd\x94\x7b\x68\x03\xd6\x8b\xce\x61\x58\xdc\x5c\x91\xf4\xec\x80\xeb\xbb\x76\xbb\x8b\x4e\x11\x17\xb4\x15\x71\x22\x22\x2b\x0b\xd3\x1c\xc6\x6c\xd1\x49\xc0\xbc\x4d\x90\x44\x6f\xe3\xf3\xa8\x48\xb3\xc1\x75\x4e\xb2\x07\xe7\x24\x81\x25\xf3\x9e\x7c\x57\x9b\xa8\x38\x4b\xb3\xcb\x89\x8a\x6c\x3c\x88\x93\xd5\xe6\x7a\x4d\x72\x63\xd1\xe1\x91\x70\x4c\xa6\xb7\x4f\xcb\x46\x63\x44\x1e\x4e\x8e\x2f\x7e\xd7\x30\x66\x87\x2b\xa0\xf6\x36\x4a\xd6\x59\x1a\xaf\xd1\x00\x7d\x9e\x43\xf2\x17\xf1\xa0\x20\x79\x01\xde\x29\x9a\x54\x95\xc2\x80\xfb\x38\x95\x50\xc5\x51\x75\xe5\x7b\x31\x1e\x5c\x46\xc5\xea\xc2\xf8\x82\x97\x5d\x2c\xbe\x30\x16\x8b\x75\x0f\x7d\x21\xed\x83\x25\xd7\x9b\x0d\x5d\x60\x6e\xb7\x95\xf6\xd1\xcc\x0c\xaa\xdb\xc4\xb9\xb5\x44\x25\x16\xbd\x3c\x5f\x74\xbe\x8e\x56\x71\x52\xa4\xf9\xc5\xa2\x83\xe1\x8b\x6e\xde\x36\xe2\xe3\xc5\x8b\x63\x11\xf4\x47\x3f\x5b\x74\x96\x15\x25\x72\x46\x02\xe0\x9a\x45\x27\x7e\x11\xad\xd9\xcd\x24\x56\xd8\x8a\xc6\xd3\x80\x92\x22\x98\x6f\xbe\xe8\xf0\x20\x54\xf0\x4d\x9c\x58\xbe\x08\x39\xb6\x08\x1d\x3f\x6a\xab\x93\xb1\x72\x35\x09\x2e\x3a\x4f\xb9\x99\xa2\x69\x68\xea\x9c\xff\xc5\x62\x71\x7a\x9c\x3d\x3f\x59\x2c\x4e\xbf\x10\xdd\x40\x07\x97\xe9\x7f\xda\xe0\x3a\x81\x37\xab\x4f\xe3\xbc\x10\xe2\x14\x74\xbf\xe8\x8e\x50\x4d\xdb\xb3\x7a\x3e\x27\xc5\xcf\xc8\x4d\xe5\xd0\x0f\x26\x8e\xf9\xb2\x26\x16\x20\xba\x5a\x4d\xb0\xd7\x83\x14\x08\xe8\x9d\x34\xb2\xcc\xa4\xda\x58\x4e\xa2\x4c\xba\x99\x60\x75\x19\xa4\x72\x19\x09\x65\x14\x7b\xf9\xa4\x3a\xdd\x83\x24\xbe\x22\xe1\x46\x0f\xf9\xfd\x89\xe2\x15\x42\xa9\x53\xe8\x75\x59\x35\xc3\x77\xb2\xd2\x49\x7c\x66\x30\x22\xd1\xf2\x55\xf6\xf8\xac\x81\x2d\xc2\xf0\x4e\x29\xd6\x32\x69\xe0\x94\xfa\xe7\xf1\x12\x1d\x6a\x10\xd9\xf3\x2f\x3d\x0b\x1d\x0e\xfa\xb5\x4f\xad\xf1\xcc\x75\x98\x78\x5e\x25\x1c\xdd\xa8\x2d\x14\x6b\xab\x76\x14\xa0\x51\xe2\x10\xc9\x2a\x3f\x67\xb9\x9e\x14\x24\x8b\x0a\x79\xf5\xd4\xde\x5d\x8a\x9a\x1f\xa7\x00\x41\xf8\xd0\x88\x8f\xcc\xed\x36\x9e\xb6\xd1\xfa\x4e\x54\x08\x42\xeb\xf4\xf6\x26\x26\x9b\xf5\x81\x9e\xfa\x69\x4d\x24\xa8\x3c\x4b\xb3\x47\xd1\xea\xe2\xcb\x1b\xe8\x56\x3a\xab\xff\xe9\x37\xac\xa8\xa7\x7c\x72\xab\x60\x58\xe7\x72\x5d\x3b\x1f\x0c\x06\x4a\xbe\xe5\x40\xa4\x97\x55\x4b\xb8\x85\x6d\x13\xc7\x2d\x2d\xe9\x73\x5b\xdb\xb4\x99\x13\x96\x35\x0f\x8b\x5e\x3c\x9d\x5a\x52\x85\x60\x27\x56\xf9\x12\x46\x4b\x36\x25\x28\x0e\xf3\xbe\xc5\x2e\x81\xe9\xc4\x60\x64\x47\x04\xb1\xbd\xdb\x24\xaf\x7c\x54\xb7\xc1\xe8\x5b\xac\x6d\x13\x94\xf7\xfb\x62\x66\xc8\xcb\x22\xcc\x7b\x56\xa5\xd8\x41\x17\x19\x43\xdb\x66\x72\x10\xc7\x1f\x2d\x09\x1f\x92\xd3\xf4\x3a\x59\x91\xf5\x93\xf5\x86\xbc\x8a\xf2\xef\xc2\x62\x20\x82\xbf\x73\x4d\xae\xe9\xf2\xe0\x45\x16\xa7\x59\x5c\xdc\x54\x71\x62\x0d\xca\xaf\x45\x63\x83\xae\x77\x10\x5f\x93\x66\xad\x2b\xb9\x22\xca\xbf\x53\x37\x73\xa1\x59\x92\xe4\x57\x14\x5a\x25\x54\x21\x8f\xdc\x4e\x71\x06\x04\x77\x41\xa8\x3c\xdb\xd0\x68\x4e\x42\x0e\xe3\x48\x2d\x26\xcc\x2c\x2a\x71\xfc\x36\x21\x5e\x1a\x95\x45\xc2\x5e\x6f\x52\x9d\x74\x18\xf5\x75\x5c\xbc\xde\x90\xe3\x68\xb3\x39\x8d\x56\xdf\x55\x3a\x51\x51\xb2\x22\x1b\x11\x6d\x34\x73\x4a\x55\x47\x25\x2e\xd4\x15\x44\x62\xa9\xfa\xa0\x62\x1b\x9a\xa5\x68\x60\x0b\x02\x95\xae\xa5\x0a\x97\x45\xf1\xd3\xbd\x1a\x52\x7c\xe9\x35\x38\x8d\x93\x35\x44\x21\x54\x3d\x33\x54\x76\x71\x4d\x3c\x27\xd5\xa0\x30\x71\x1e\x92\x41\x11\x5f\x92\x97\xe4\x32\x8a\x93\x38\x39\x37\x10\xce\xb8\x65\xcb\xbd\xb4\x07\xf9\x1d\x3e\x8c\x0a\x32\x48\xd2\x77\x72\x73\xb6\xa7\x33\x70\x51\x69\xe0\x59\xb8\x2a\xd9\x2f\x10\x8e\x15\xe5\x3c\x1c\x53\x14\x9a\x68\x59\x03\xef\xf3\x78\x9a\x89\x29\x22\xef\x17\x47\x7d\xdb\xec\x76\x29\x0b\xa6\x1b\x32\x78\x17\x65\x89\xf1\x2d\x45\xe0\x00\x98\xed\x80\xbc\x5f\x11\xb2\x26\xeb\x83\x68\xb3\x49\x8b\x82\xac\x0f\xd6\x24\x5a\x6f\xe2\x84\x1c\x9c\xde\x1c\x7c\x76\x0b\x55\x46\xa7\xb9\x01\x01\x78\xd7\x6e\xe4\xfd\x02\xa1\xf2\x32\xff\x16\x61\xa0\x96\xc6\x99\x93\x3c\xcc\x4a\x8d\xa5\x4a\x36\x0e\x92\x03\xa6\xfc\x42\x47\x44\xa3\xbf\xaa\xf3\x04\xd0\x8f\xbb\x24\xe9\x75\x61\x18\x74\x03\x29\xee\x5f\x98\x52\xd4\x43\x8e\x9c\x61\xf9\x08\x3a\xb3\xc6\x8c\x04\xdd\x42\xb5\x02\x04\x91\xea\x54\xb2\xa4\x72\x12\x51\xd1\xb7\x47\xb8\x68\xb9\xd5\x28\x0a\x5b\x58\xd5\x9f\x73\xbf\x2a\x82\x60\x13\xd7\x14\x06\x09\xae\x8b\x8c\xc3\x9c\x2f\xe5\xe9\xc6\x80\xb7\xfc\x89\xc2\x73\xb0\x4d\x60\xea\x7f\x33\x46\xab\x7b\x51\xaa\x05\x12\x6b\x6f\x93\x24\x10\x53\xcf\x58\x06\x49\xab\xc4\xdb\xbd\xfd\xfc\x15\x6b\x20\x79\x77\x50\x6b\x62\xc9\x6f\xaa\x95\x6c\xa2\xfb\xb1\x1a\x57\x89\x38\x29\xc0\xd4\x64\x1e\x47\x85\xf9\xd8\x1e\xd9\x9f\x2a\xcc\x99\x26\x15\x5f\x98\x7f\x9d\xae\x09\xbf\x53\x00\xd3\xbb\x2d\x42\xdb\x75\xd0\xe4\xae\x52\xea\x71\x47\xa5\x1b\x78\x5a\xbf\xd2\xa8\xce\x76\x99\x11\x69\xf9\xd9\xb7\xe8\x40\x2e\x66\x3c\x17\xf7\x9e\x0e\x63\xf9\xfe\x40\xd0\x24\xeb\x76\xe3\x6e\xd7\xc8\x94\x8b\x92\x78\x9e\xc3\xd5\x3d\x5c\xa8\xbd\x39\x7e\xfe\xf0\xd1\x9b\x27\xcf\x1e\x3e\xfa\xc5\xf2\x30\x0c\xf3\xc1\xb3\xd7\x4f\x9f\x32\x4d\x7f\x9a\xd2\xed\xee\xcf\xfd\xcd\x57\x4f\x5e\x3d\x3a\x79\xf1\xe0\xf8\x51\x55\x06\x95\x25\x76\x86\xce\x27\xee\xe3\x85\x5e\xdb\x83\xa2\xc8\xe8\x1e\x57\x33\xb5\x70\x8f\xc3\x9c\xb3\x73\x31\x73\x9c\xca\x90\x54\xc9\xa3\x9c\x99\x97\x79\x11\x15\xf1\xea\xa0\x48\xa5\xd1\x06\x39\x66\xe6\x64\x3a\x9d\x5a\x7e\xd7\xf6\x3c\x4c\x83\x23\x08\xd9\x9e\xd7\x25\x4b\x51\x4e\x33\xf7\x20\x4b\x1a\x90\x69\x6e\x2e\xd1\xd1\x91\xe5\x6f\xf9\xa7\x45\x3f\x47\x5b\xf6\x61\xd3\xed\x0e\x5c\x63\x6a\x17\x7b\xe2\x09\xcd\x41\x75\x65\xa7\xdd\xd2\xe9\x2f\xd6\xb5\x06\x55\x8f\xd6\xcb\x38\x7f\x92\xc0\x75\x7f\x75\x66\x29\xae\x3c\xbb\x1c\x66\x19\xe7\x5f\xa6\x9b\x75\x95\x41\x3e\x06\x56\x72\x54\x6f\x71\xf5\x83\x9d\x8b\x28\xd7\xba\xc6\x40\xdc\x2b\xac\x86\x8f\xfe\x62\x7e\x66\x05\xf2\x89\xb4\x8a\x84\xae\x42\x29\xdf\x3a\x2b\x59\x9e\x24\x6f\xe3\x3c\x3e\xdd\x28\x58\x54\xaf\x5e\xd5\x7c\x45\xb4\x89\x57\xbb\x9a\x7c\x4a\xb3\x3c\x8c\x2f\x77\xb6\x18\x32\x9c\x14\x59\xfc\x1d\x29\x2e\xb2\xf4\xfa\xfc\xa2\xca\x5a\x3d\xa0\x56\xea\x53\x2e\xd3\x76\xa0\x0f\x20\x9f\xbf\xad\xd3\xb0\x8e\xfd\xe9\x79\x79\x4e\x84\xd6\xa1\xae\xf2\x24\xec\x8e\xc8\x6a\xcf\x89\x50\x2f\xdc\x97\x11\x2a\x7e\x7c\x4e\x99\xb2\x91\x23\x0c\x8d\x3a\x54\x44\x3b\xe2\x9e\xb9\x4f\x21\xf7\xe3\xf3\x17\xd1\x86\x14\x85\xda\x2a\xfe\x96\xbf\x0d\xfe\x76\x2b\x0c\x9d\xec\xac\xfd\xfe\xf0\x4e\xf7\xc2\x13\xf8\x71\x3d\x27\x43\xb5\x94\xbc\xa3\xea\x7b\x64\x65\x50\x2b\xf9\xd3\x52\x42\x8c\x56\x66\xbe\xa1\xd9\xb1\x86\x7c\x69\xdc\xc0\x82\xbf\xf0\xe2\x0d\x66\x2f\xfe\x44\x03\x03\xc1\x82\x9e\x27\xf2\xf3\x97\x81\x1c\x4a\xa0\xd3\xab\xca\xb5\x66\x48\x06\x42\x1b\xbb\x54\x98\x67\x17\x32\xa7\x1f\x88\xcc\xe9\xbd\x90\x39\x6d\x43\xa6\x29\x44\xe4\x68\xd3\xe5\xc4\xe9\x79\x59\x57\x73\xbe\xd5\x25\x4d\x9c\x3f\xba\xbc\x2a\x6e\x0c\x6e\xab\xfb\x54\x33\x2f\x10\xf0\x38\xc5\x44\x03\x25\xc4\x6b\xed\x8d\x3b\x3b\x83\x6c\x54\xdc\xed\xfe\x7a\x87\x4c\x63\xba\xc8\xad\x34\xdc\x95\xf9\x83\x08\xbb\x03\xc8\x7d\xa8\xbd\xab\xa8\xde\x05\x4c\x92\xab\xec\x59\xee\x4c\x68\x90\x4b\x97\x3d\x1f\x4a\xb6\xd9\xbd\xe8\x15\xd4\xf0\x60\x75\xaa\xb3\x92\x9c\x78\x3f\x1d\x93\xc6\x80\xdf\xd5\x89\x0c\x2b\x29\x5c\x1b\xe8\x34\xc4\xd8\x07\xa3\xb4\x53\xee\xed\x42\x69\x8f\x30\xbc\xbb\x15\x12\xdf\x46\x4b\x1a\x32\xee\x83\x5b\xd2\x14\xa3\x77\xe3\x23\x6b\xd5\x98\x8e\x3d\xe3\xde\x85\xc9\xd9\xf9\xac\x81\xdb\x6c\xdf\x5a\x24\xb0\x02\x53\x83\xff\xf3\x28\x8b\xa3\xa4\x78\x7e\x76\xd6\x54\x81\x6b\xc2\xd0\x72\xd3\x7d\x9d\xbe\x2e\x8d\xf9\x92\x34\xbf\x3d\x27\x05\xdd\x9d\xd5\x6f\x8e\xe1\x39\xc7\xac\xef\xfa\xe3\xa1\x6f\x9b\xee\x98\x1f\x68\x91\xf7\x05\xdb\xdb\xeb\xc8\x1e\x1d\xd9\xe2\x95\x2e\x79\x5f\xc0\xc5\x32\x85\x29\x37\x50\xe4\x7d\x11\x12\xb8\xa6\xbe\xde\x41\x2e\xb5\x56\x2f\x30\x44\xbd\xa3\xaa\x5e\x34\x9d\xda\x3e\x80\xae\xc1\x50\x6b\xe9\x86\x15\xca\xb8\x42\x39\x04\x0c\xbb\x12\xaa\x8e\x8a\x90\xae\xfa\x9a\xcc\xe9\xea\x0d\xaa\x65\xaf\xd5\x5a\x57\xd7\xa3\x95\x4a\x40\xbc\xe9\xb4\x71\xad\x2d\x66\xf0\x21\x59\x82\x65\xef\x69\x6a\x44\xab\xf3\x80\x7c\x48\xe6\x0c\xbd\x91\x39\xf6\x9d\x91\xab\x13\x6c\x2c\xd7\xea\x47\xe6\xcc\xb5\xc7\xee\xd8\x1f\xda\xa3\xd1\xef\x92\x80\xe8\x8d\xd2\x21\xeb\x8d\x13\x2b\x46\xab\x4e\xd1\x71\xb7\xaa\xb7\xd4\xae\x51\xe8\x4e\x26\x34\xd5\xee\x17\xc7\x63\xfa\x3b\x21\x60\x0c\x2d\xa5\x90\x7b\x0e\x71\x69\x46\xf7\x40\x86\xcc\xae\x66\xa6\x02\x81\xcf\xaa\x8d\x45\x8e\xce\x24\xca\x82\x87\x93\xbc\xac\x6f\xdd\xf2\x12\x8f\xcd\xf1\x27\xef\xd1\x99\xb2\x4f\x58\x0c\xbe\x7e\xf0\x8b\x37\x5f\xbe\x7e\xfc\xf8\xd1\x4b\x78\x8b\xde\xb2\x3d\x77\xdc\x31\xdd\x28\xc7\xc6\xd0\xb6\x7d\x84\x93\x30\x36\xe8\x7e\x14\xe1\x34\x8c\x8d\x91\xeb\x0c\x11\x8e\xc2\xd8\x70\x7d\x1a\x77\x11\xc6\x86\x67\x59\x08\xaf\xf8\xce\x1e\x6f\x68\xda\xc8\x77\x10\x5e\x53\x18\x96\xe5\xd3\xdd\x7e\xbd\x5a\xd1\xe9\x63\xaf\x42\xae\xe5\xde\x4b\xd5\x22\xb8\x88\x72\xf6\x7e\x00\xce\x0f\x49\xab\x21\x81\xb0\x68\xd3\x90\x0a\x63\x16\xcb\xfc\xb4\xf3\x4e\x66\x4e\xdf\xc5\x87\x08\xc8\xa7\x21\x45\x74\x9a\x87\xb7\x25\xfb\xe0\x2f\x9f\x4d\xe5\xeb\x17\xda\x97\xf2\x4c\x36\x4c\xef\xd2\xd7\xd5\xde\x21\xaf\xeb\x5a\xff\x2c\xcf\x65\x94\x7d\x47\x32\xe5\xe4\x3a\xe1\x0e\x96\xc2\x0b\xa9\xc0\xca\x2c\x26\x5e\x44\x4c\x87\x77\x6e\xe2\x95\x7a\xfc\xf0\xd5\x83\x97\x5a\xc4\x37\x4f\x1e\xbe\xfa\x4a\xcf\xf2\xfc\xe1\xa3\xa5\x7c\xa9\x7f\x11\x17\x24\xbf\xe2\x1e\xa2\xf6\xd7\xd2\x38\xb6\x60\x75\xd5\xa3\x45\x8d\x6d\xa7\x1c\xb2\xde\x38\x3f\xde\x90\x28\x8b\x93\xf3\xea\xcd\xc8\x25\xb9\x4c\xb3\x1b\x1a\x9f\x5c\x5f\xfd\x8e\x3c\x0c\xcb\xf4\xc3\xb0\xb6\xcc\x2f\xd2\x3c\xa6\xfc\x50\xbd\xf8\x4b\x37\xed\x5e\x9f\xc1\xcf\x3b\x4b\xc8\x40\xaf\xa1\x25\x0f\x4d\x60\x79\xe0\xb0\x88\x9d\x7b\x0c\x8e\xe3\x6c\x75\xbd\x89\xb2\xa7\x71\x5e\x54\xd7\x8c\xc7\x69\x96\x91\x15\x37\x40\xff\x14\x0e\xa6\x8d\x0a\xbc\xb8\x43\x6d\x18\xcf\x69\x31\x97\xa3\x1a\xc8\xc9\x49\x71\x7d\xf5\x2a\x3a\x3d\x29\xd2\xab\x9c\xcd\xec\xd2\xd3\x96\xe2\x31\x48\x3c\xd7\x10\x4c\x32\x38\x3b\x0f\x49\xf5\xd6\x5b\x46\x9f\xd2\xe8\xd3\x46\x74\x8b\x1d\x3f\x14\xb4\x80\x34\x5b\xe0\x35\xe2\xb4\x53\xa2\x44\x97\x66\xa8\x96\x99\xb6\xe7\x1b\x8d\xf1\xda\x5a\xa5\xb3\x66\xad\x6d\xb5\x44\xbd\x85\xb5\xc4\x7d\xed\x6c\x56\x62\xee\xac\x61\x47\xca\x7d\x5a\xae\x17\x29\xb5\x07\x10\xaa\xce\x13\x05\x91\x72\xc1\xa8\xbc\x8e\xd8\xc5\xc3\x3a\x5f\xe0\x02\x38\xe5\x40\x93\x98\xf5\x29\x5e\x4b\xe4\x37\x83\xec\x4c\xf4\x32\x7a\xcf\x18\x78\x5a\x31\x24\xc0\xab\xcc\x4e\xff\x3c\x26\xef\xae\xd2\x4c\x9d\xec\x2b\xa1\xca\xd4\xd3\x6f\xfa\x95\xcc\x95\xd3\xfd\x34\x34\xbb\x5d\xae\x1e\xcb\xe0\xee\x1a\x3b\xfc\xf1\x65\x0b\xae\xe2\xd2\x85\x54\x2f\xaf\x7b\x6d\x73\x81\x6a\x54\x26\x97\xa5\x05\x2a\xf1\xb4\x31\x29\xcd\x1a\x31\x41\x5c\x9e\xc5\x9b\x8d\x68\xed\xcb\xf4\x5d\x5e\xd7\x6a\x60\x24\xe3\xf7\xd1\xb7\x52\x63\x81\x80\x19\xcf\x96\xa9\x40\xf8\xe2\xaf\x48\x50\xf7\xb2\xcc\x20\x56\xa6\x4d\x74\x1e\x41\x70\xd1\xa3\x5c\x1e\x7e\xc8\xa4\xf6\x9b\x22\xc6\xb8\x7f\x84\xe6\xbb\x00\x95\x8f\x77\x12\x2f\x0f\xcd\xe6\xa5\x78\x2b\xe2\xfc\x5e\xbc\x8d\xb7\xc5\x35\x6b\x2d\x3a\xcc\x10\x6e\xf4\xeb\xd4\x54\x9e\x7d\xd1\x41\x77\x44\x50\xcb\x7b\x0e\xb5\x08\xf3\x5c\xd1\x0b\x7b\x4a\x0a\xf8\x01\x44\x03\xd9\x78\xee\xbc\x2f\x09\xcd\x4a\x61\x85\x52\xed\xa8\x90\xd0\x73\x95\x4f\xf2\xa3\x62\x92\xf7\x7a\xa8\x51\xd9\x51\xd1\xab\x7a\x5f\xde\x1f\xdf\x65\x62\x09\x2e\x5d\x84\x45\x01\xa9\x90\x71\x67\xa9\x17\xc5\xcd\x80\x0e\x24\x92\xac\x3f\xb2\xf0\x75\xbc\x59\x3f\xbb\xbe\x3c\x25\xd9\xac\xce\xf0\x0d\xb1\x47\xa9\xc4\xf7\xb8\xd0\x3a\xa9\xc4\xa0\xb5\xbf\x29\x7c\x7a\x89\x7c\xc4\x08\xd1\xfd\x3e\x4e\xc4\x7b\x48\x18\x31\x12\x10\x7c\xf5\xfb\xbc\x92\x3b\x71\x61\x4f\xec\x0f\xea\xbe\x53\xa1\x83\xc8\xb4\x98\x90\x7e\xbf\xd9\x41\xd3\xb6\x0e\xd2\x33\x34\x1a\x60\x69\xc4\x49\xaf\x0c\x31\x55\xb1\x5c\x6a\x5b\x7a\x3d\xc4\x38\xfd\xa8\x8d\xa5\x6b\x22\x5a\xad\xb6\x9f\x4d\x80\xa2\x2a\x42\x45\x16\x5f\x9e\xc0\x1d\xb3\x50\x86\x60\x42\x45\xb7\x58\xc3\x88\x5a\xd9\xa2\x61\x52\xa8\x96\x07\x28\x5b\xe5\xe1\xab\x68\x3d\x13\x37\x76\x43\xc0\x82\x58\xfb\x88\x2c\xb9\x10\x63\x05\xe3\x84\x15\x7c\x8f\x89\x7c\xfb\x79\x53\x4b\xbb\xc1\x05\x4d\x4b\x44\xcb\x6e\x7a\x61\x82\xb4\xc5\xbb\x9e\x9f\x45\x2a\x00\x15\x01\x57\x8a\xb1\xa9\xcb\x38\x69\x05\x2d\xce\x5f\x92\xb3\x4d\xfa\xee\x51\x12\x9d\x6e\x88\x7c\xd4\xf1\x26\x83\x58\x90\x71\xca\x5a\x74\x4a\xd0\x8f\x24\x3a\x94\xf5\x2d\xd1\x16\xb2\x3b\x17\xd1\xf2\xaa\x38\x9f\x0e\xac\xcf\x1b\xf5\x4a\xcc\xf7\xaf\xa8\x5b\xe0\x8a\xeb\x66\x50\x24\xe0\x0b\x95\xa8\x58\x5d\x90\xf5\xd7\x6a\x66\x83\xa9\x12\xb4\x27\xdd\xb2\xd1\x74\x68\x4e\xf6\x20\x31\x6d\xb2\xf0\x9d\x58\x93\xf0\xd0\x12\x93\xae\xa6\x4b\xd2\x5a\xa0\xa5\x3b\x10\x65\x80\x5e\x58\xef\x8d\xdd\x30\x7a\x3d\x04\xa4\x4e\xae\xaf\x58\x23\xe9\xc6\x6f\x6a\x99\x66\x65\xcc\x4e\x2c\x61\x60\x59\x55\x67\xa1\xfa\xa2\xea\x5e\x62\x55\x82\xec\x76\x49\x53\xc4\xd6\x57\x7b\x8b\xce\x2a\x4d\xae\x8a\x1b\xf6\xb2\x4c\xc8\xf3\x5a\xd1\x69\x68\x5b\xce\x50\x9c\xa0\xd5\x20\x1c\x7e\xc0\x24\x53\xaa\x83\xe1\xb6\x62\xdc\x43\xbe\x4e\x9a\x56\x51\x33\x75\xf0\x3c\x8d\xb2\x73\xc2\x8c\xaf\x04\x6a\xfc\xc9\x65\xb4\xd9\xf0\x04\x54\x36\x33\xcb\x35\x85\x61\xe2\x68\xa0\x26\xff\x94\x80\x75\x88\xfc\x55\xfa\x92\x5c\xa6\x6f\x09\x52\x24\x9f\x32\x4a\x31\xc1\x0d\x81\xdc\x5c\x68\xb7\x2d\x50\x40\x0e\xc7\xca\xba\x41\xb1\xc5\xa2\xa3\x72\x0c\xea\x32\xcf\xc8\xbb\xa7\xd1\x4d\x7a\x5d\x68\x98\xc4\x68\xd2\xc8\xff\xe0\xea\x6a\x73\xd3\x9e\x3d\x1f\x6c\x58\x24\x6e\x52\xef\xc1\xfa\xf7\xae\xf3\x42\xae\xd7\xe1\x29\xc3\x60\x95\x5e\x27\x05\xa3\xc0\x1a\x95\xe5\x5d\x05\x14\x37\x0a\xf7\x5f\xa5\x65\x61\xcc\x46\x5b\xd6\xef\x1f\x4c\xcd\x09\x92\x4b\x66\xa0\xaa\x98\x9c\xab\x79\x58\xbc\xb5\xd6\x57\x36\xda\x74\xbf\x6b\x5e\xce\x11\x92\xb3\x23\x4c\x44\x6a\x4d\xfa\x3c\x8f\xd5\x35\x01\x97\xa2\xfb\x26\xa6\x18\x9b\x92\xc5\x54\xbe\xfb\xb0\x75\x2b\xce\xc3\xb9\x74\x3a\x21\xdf\x02\x27\x2d\x33\xb2\x35\x49\xa6\xa1\x39\x49\xfa\x7d\x26\x12\x2f\xea\x82\x27\x01\x16\x3b\xbc\xd8\x6e\x0f\x2f\x2a\xb5\x94\x6e\xf7\x82\xa6\xbe\xca\xe2\xcb\x4b\xb2\xe6\xeb\x5f\x74\x14\x12\xb4\x4a\x93\x22\x4e\xae\xc5\x6e\x69\x15\xce\x2f\x96\xac\x63\xb4\xe2\x09\xed\xa2\x46\x65\xfd\x7e\x82\xf0\x6a\x70\x9d\x30\xfb\x63\x17\xc2\xda\xd5\xa6\xb9\xe2\xa2\x58\x6d\xa6\x61\xd2\xed\x6e\x8e\x92\xde\x4a\x6c\x89\x6a\xd5\xaf\xc3\xd5\x7c\x25\xdb\xba\x6c\xc1\x19\xbf\x51\xc7\x0a\x27\xf9\x4f\x49\x41\x59\x3f\x4e\x08\xcb\x96\x23\x63\xa5\x8d\x57\x84\xaf\xc3\x37\x02\xee\x4a\xb5\xde\x7f\x36\x39\x0b\xcd\x56\x86\x38\x6c\xd9\xc2\xf5\xad\x99\xaa\x87\x76\x51\x6d\x64\x6b\xcb\x92\xde\x35\x0a\xea\x39\x35\x40\x3b\x0a\x71\x3a\xbc\xa5\xfc\xa0\x9b\x04\xba\x9e\x90\x5e\xaf\x26\xfa\xb5\xbd\x5f\x0b\x63\xe1\x43\x13\x4d\xde\x4a\xc5\xfb\xb7\x52\xf0\xc0\x3b\x6f\x66\x20\x08\x14\x06\x83\xaa\x4b\x7a\x19\x4e\x18\x2d\xf3\xe0\x6d\x89\x70\xd6\x0b\x45\x39\xda\xd7\x50\x68\x30\x18\xbc\x65\xc3\xf8\xaa\x22\xab\x85\xcf\xc3\x37\xf3\xab\xe5\x84\x92\xf3\xbc\xdb\x35\xe8\x70\x62\x51\x2c\xef\x65\x28\xbb\xf6\xba\x6f\xe1\x93\x70\xcd\x18\xed\x92\x72\x74\xd5\x32\xb9\xf6\x3a\xc1\xe7\xba\x9e\xff\x8a\x82\x62\x36\x38\xe3\x33\x83\x7e\x81\xaf\x71\xf0\x59\xff\x38\x4b\x2f\x8d\xd5\xfc\x72\x89\x4f\xfa\x04\x9f\xf7\x09\x26\xb4\xf5\xf8\xbc\x1f\x12\xdc\x82\x11\x3e\x11\x09\x27\xe8\xf6\xb2\xdf\x9f\xe8\xd5\x47\xef\x8d\x4b\x6c\xa2\xc9\x09\xe3\xb6\x73\x52\xf0\xa1\x40\x09\xa3\xb1\x24\x65\x35\xa2\x30\x1b\x2a\x4b\x7d\x05\xb7\x52\x17\x6e\x6f\xe6\xc5\xf2\x88\x74\xbb\xab\x79\xb1\xa4\xfb\x5e\x10\x09\x34\x52\x6c\xf7\x8e\xc3\xeb\xfe\x19\xa3\xcb\x71\xbb\x64\x64\xc1\xa3\xa2\x2f\x77\x30\x62\xb5\xaf\x6c\x06\xf6\xee\x06\x94\x0d\xd3\x91\xbe\xd2\xad\x31\x64\x93\x6f\x7b\x19\xea\xcb\x47\xcb\x6c\xe5\x2f\x90\xa3\xc0\x55\x61\x2a\x6b\x65\x28\xb4\x09\x53\x6d\x81\xfd\xcb\xde\xb5\x36\xad\xf6\x2d\x44\x17\xd7\x79\x63\xb6\x24\x70\xec\xdd\x1c\x21\xcd\xb5\x19\xad\xb6\x50\xce\x4a\x14\xa5\x3e\x54\x59\xe6\x6b\x96\x63\xd2\x37\xee\x5b\x38\x0d\x4d\x1c\x85\xf9\x3c\x5d\x4e\x1a\xd9\xc2\x0f\xa7\xdd\x84\xc9\xec\x4a\xc6\xaf\xf6\x03\xe9\x5b\x38\xee\x65\x7d\x0b\x4d\x56\x74\x90\xac\xfa\x7d\xba\xdc\x8c\xba\xdd\x88\xbd\x18\x9f\x26\xbd\x8b\xca\x3b\x26\x09\xa3\x81\x18\xbb\xd5\x84\x41\x68\xc9\xda\xbe\x33\x27\x85\xb1\xea\xf7\x71\x95\x1f\x4c\x87\xad\x7a\x3d\x4c\xb8\x5c\x60\xa6\xb3\x92\x9e\x85\xa3\x4b\xba\x1e\x08\x1a\xb0\x4b\xe6\xd8\xbf\x1e\x0d\xf4\xea\xf5\xd2\xa5\x62\x37\x45\xa9\x15\x17\xf3\xa4\xdf\xe7\x22\x61\xa5\x90\xa2\xb2\xdd\xdc\xb7\x26\x05\x45\xba\xe8\xf7\x11\xa1\x03\x05\x70\xe9\x85\x2b\x95\xa6\x69\xf2\x04\x1e\x2e\x3d\xba\x8c\x8b\x82\x70\x93\x51\x34\x37\xc2\xab\x5e\x08\xc5\x18\xe2\x72\x4e\x52\xe4\x31\x25\x6a\xeb\x66\x78\xb2\xa9\x1d\x21\xa4\x09\x1d\xed\x5a\x25\x1b\x54\x96\x45\x16\x25\xf9\x26\x2a\x48\xb5\xd0\x78\x95\x56\xf6\x2c\x98\xc2\xba\x60\xd8\xac\x3e\x6f\x12\xf9\xb8\x2e\x9b\x65\x03\x09\x4b\x42\x60\x4f\x3e\x83\x45\x67\xd1\x29\x2b\xd1\x03\x2f\xfd\x1f\xa7\x7c\x55\x23\x5e\x8c\x10\x1c\x87\x84\x6f\x5c\x6a\xb8\xf3\x6d\xa1\x9c\xc6\x27\xa8\xe8\xf7\xf9\x4b\x92\x9e\xd5\x1c\x2f\x8d\xc2\x71\xcf\xd2\x8a\xc7\xbd\x9e\x50\xd0\x3e\x8b\xb3\xbc\x08\x0a\xbc\x89\xf2\x22\x88\xe1\x55\xaf\x72\x86\xc7\x2d\x02\x24\xd7\x9b\xcd\x61\xc8\x45\x16\x58\x52\x82\x67\xbe\x7c\xf6\xba\xca\xc8\x5b\x9a\x9d\x0e\x46\x2e\xae\xc4\xb5\x1a\x09\x4d\x24\x46\x34\x48\xd5\x09\xe9\xdd\xb9\xdb\x29\x58\xed\xdf\xc4\xeb\xe2\x02\xa9\x55\x86\x87\x66\xa9\x54\x26\x51\x13\xe7\xb0\xec\xc0\x00\x4d\x0e\xab\x42\xfd\x3e\x59\x76\xbb\x84\x8a\x5f\xe5\x74\xba\xb1\x11\x61\x8a\xc3\x01\x39\x32\x67\x66\x40\xc0\xbc\xdc\x07\x54\xd2\xeb\x41\x25\x6a\x33\x3f\xa4\x36\xd8\xaf\x7f\xcd\x6e\x02\xd5\xc7\xf0\xd5\x8d\x99\xd9\x66\x57\x86\xdf\x1d\xaa\xb3\x92\x1a\x4f\x07\x0e\xe5\x00\xe1\x33\xaa\x96\x54\x7b\xe2\x2e\x80\x09\xb3\x00\xfd\x3e\xb6\x90\x38\x7d\xd0\x2e\xef\x18\xba\x0f\x36\x1b\x81\xf1\x7e\x84\x15\x91\x5e\x43\x98\xd4\x11\x26\x77\x61\x45\x00\xab\x56\xa4\xa2\xf5\x9a\xe1\xa3\x6a\x92\xd3\x2d\xc4\x66\x20\xe3\x35\x0b\xff\x02\x34\x9b\x54\x10\x2e\xa4\xdd\x53\xa3\x21\x35\xc0\x94\xeb\x6d\x01\x71\x7d\xf0\xcb\x45\x43\x47\x74\x90\x56\x18\x97\x60\xc4\x6a\x07\x14\x26\xe2\x54\x38\xd3\x90\x30\x71\x08\xfe\xbc\x68\x4c\x2f\x24\x5c\xd2\xed\x87\xf5\x90\x3d\xbb\x6c\x87\xc5\x51\xe3\xdf\x3d\x01\x51\xc3\x94\xe3\x3f\xad\x23\xd0\xdf\x83\x00\xad\x97\x97\x57\x8e\x7f\x32\xd8\x5b\x72\x02\x17\x08\x0a\x95\x7a\x6c\x0b\x3f\xf3\x07\x3a\x75\x96\x53\xe3\x2a\x13\x16\x60\x9f\xa2\xc4\x23\xd7\x19\xfe\x38\xca\x11\x54\xea\x86\x45\x73\x8d\xdd\x54\x91\x60\xea\x10\x99\x50\x7d\x48\x84\xea\x43\x0a\xaa\x0f\x36\x9a\xb4\x41\xe1\x98\x9d\x65\x84\xfc\x3e\x31\xd8\x1d\x8c\xa6\xfd\xc4\x26\xcc\x28\x14\x7a\xf9\x17\x4d\x55\x88\xf0\xd0\xe2\x54\x53\xde\x23\xc8\xa5\xe9\xe5\x69\x9c\x90\xb5\x54\x5a\x78\x43\x34\x45\x12\x19\x2d\x8d\x1b\xbc\x8e\x93\xc2\xb1\xc1\xd0\x84\xe1\x7c\x4e\x50\xe5\xe6\x6c\xbb\xcd\x76\xdf\xff\x27\x75\x2d\x83\xa4\xa1\x65\x90\x34\xb4\x0c\x6a\x72\x8a\x80\xa1\x2b\xb6\x34\xe4\x6b\xe4\x02\xe7\x7c\x04\xf3\xc5\x17\x61\xe6\x11\x1a\x06\x4d\xa2\x22\x9a\x3b\x9f\x93\x9e\xb9\xc4\x71\x68\x9b\xe3\xa1\xe5\x59\xdd\x82\x8f\xe1\x79\x2d\x93\xb5\xc4\x2c\x8b\xdd\x2d\x66\x3a\xa1\xe6\x64\x19\xc4\x33\x30\x0f\x99\xc3\xac\xfc\x18\x5e\x24\xac\xc9\x8b\x34\x4e\x0a\x64\xc4\x6c\x7e\xc6\xc5\x74\x6a\xdb\xfb\xa0\xa8\x26\xc3\x9a\x89\x62\xc5\x83\x82\x78\x29\xac\x49\x68\x86\x31\x18\x9a\x61\x31\x4f\x94\x97\x22\xc0\x37\xec\xa5\x08\xd6\x53\x20\xc4\x52\x2a\x4f\x18\xcd\x7a\xc3\x62\x6e\x2d\x71\x83\x64\x9c\x60\xf6\x96\x6c\x75\xb0\xd0\x71\x1c\xee\xd1\x91\x6d\x8b\x13\x37\xb5\xec\x6e\x44\x34\xa3\x69\x77\x40\x86\x05\x0f\x9d\xc2\x9b\xd6\x6d\xaa\xba\x28\xcd\xcb\x8b\x28\xaf\x67\xb4\x6c\x6f\x64\xcb\x57\x02\x6a\x09\xa6\x2f\xbe\x1b\xa6\xb5\x64\x4a\xdc\xbb\x73\xd8\x4b\x5a\xe3\x31\xb3\x09\xa7\x64\x73\xad\xb1\xeb\x98\x4e\x7b\x95\x92\x61\xf6\x72\xaa\x98\x61\x7e\x04\x2e\x92\x1c\x5f\xc6\xf9\x31\xcf\xa1\x5a\x2f\x15\x35\xb4\x21\x2b\xd6\xaf\x9f\x86\x69\x85\xc2\x9e\xd1\x23\xf3\xf0\x55\xae\xfa\xe8\x83\xec\x7a\xf5\xa1\xf5\xc5\x26\x8d\xd6\x4c\xa1\x41\xd1\x8b\x88\x42\xe7\x73\x3a\xcf\x0a\xcb\x7d\x4a\xb1\x88\x4a\x84\xa2\xb2\xd7\xc7\x23\xe9\x28\xa8\x4c\xf5\xf1\x48\x5b\x11\x0b\x02\x16\x4c\x77\xa2\x99\xa0\xc9\xd5\x68\x39\xc2\x8a\xb6\x2c\xa8\xf1\x1a\x45\xdd\x52\xb9\x26\x75\xa1\x0c\x28\x6a\x56\x2d\x69\xad\xb8\x39\x7c\x35\x54\xda\x2a\x6e\xad\x4d\xf1\x2d\x8a\x5a\x46\xbf\xac\xb3\x9e\x46\x05\x50\xa5\x54\xa3\x74\x43\x48\xab\x13\x0d\x10\x7d\x7c\xc5\x18\x5e\x58\xae\xa9\x70\xcb\xf7\xe2\x96\xef\xc7\x6d\x1b\x53\xf1\xd0\x82\x59\xde\x8e\x19\xbc\x6f\x88\xd6\x6b\x89\xd1\xab\x54\x50\x19\xc7\xf2\x11\x7d\x83\xc1\x05\xfd\xf3\x26\x67\xf7\xc2\xdd\x0c\x5d\x54\x43\x2f\x6f\x93\xb7\x77\x0f\x85\x1c\xf5\xf6\x81\xc7\x79\x37\xec\x73\xe4\x70\xbe\x15\x92\x1a\x05\x74\x42\x06\x0b\x95\x38\xee\x76\x0d\x9a\x8b\x4b\x41\x87\x66\x03\xa2\xb5\xd1\x33\xe7\x86\x3f\xe0\xf4\x4c\x10\x25\x3e\x33\x0c\xf2\xdb\xa1\x32\xcf\xa2\x6e\xd7\x16\x47\x3c\x95\x64\xee\x5b\xa8\x72\x3e\xd3\xd2\xf5\xe0\x49\xd9\xc2\x31\xc2\xe2\x06\x93\x09\x28\x52\x5d\x15\x30\x95\x3d\x69\x6d\x53\x2c\x00\xe2\x50\xcb\xdf\x2f\xfa\xd6\x24\x9e\x86\xe6\xa4\xdf\x8f\xf5\x15\x01\xe9\x15\x3d\xbe\xba\xa9\x64\x41\x8f\x72\x5c\xb5\x9c\xc8\x43\x13\xf4\x22\x7a\xbd\xbc\x5e\x38\xc7\x31\xb7\xec\xaa\x1c\x40\x4c\x34\x74\xdb\x56\x21\x31\x9a\x34\xe9\xa1\xa2\xbc\x9f\x32\x5a\x4e\x4e\x23\x6e\x10\xa5\xde\x11\x7a\x3f\x7c\x04\x21\xcd\x49\x7c\x54\x23\xe6\xa4\xd7\x6b\x50\xb1\x49\xc3\xa2\x46\x45\xa2\xf5\x49\x21\x8f\xda\x2a\x13\xf5\x3a\xc8\x8f\xa6\x2c\xf9\x44\x66\x93\xaa\x26\xca\x1a\x82\xef\x1a\xb4\xa9\x9b\xc7\xed\x10\x5b\xbc\x57\x32\x72\xb5\xe1\x8a\x78\xb9\x10\x66\xb0\xc2\x8e\xcf\x8c\x1c\x6e\xe9\xf7\xa0\x7b\xc8\x97\xe1\xca\xac\xf6\x91\x63\xa6\xad\x8e\x62\x47\x1d\xc5\x7e\xde\xe3\xf0\x69\xff\xc9\x63\x07\xcd\x40\x85\x3e\x0b\xeb\x54\x82\x6e\xc5\xa4\xd7\xab\x34\x5c\x3e\xb5\xbb\xee\xd9\xce\x4f\x69\x51\xc5\xe6\x3d\xd6\xa7\x95\x66\x19\x1d\x62\x52\x4d\x4f\xb5\x3a\x74\xe0\x7e\x5e\x89\x4b\x9e\xf4\xb9\x7d\xa4\xc4\xf1\x17\xe0\xa7\x37\x05\xbf\x70\x92\x67\xc9\xce\xe7\x64\x42\x01\x4f\x55\xb0\x95\x76\x58\x7b\xe9\x69\xe8\x7e\xce\x87\x65\xfb\xf6\xab\x51\x18\x9b\xd0\x6a\xd5\x2d\x4f\xbd\x0c\x4d\x57\xcc\x70\xaf\x61\x99\xa0\xd4\x41\xca\x56\x91\x3b\x89\x61\xf7\x55\x93\x12\x31\x2e\xd8\x90\x56\x2d\xe0\x29\x58\xe5\xd7\xa7\x60\x28\xc6\x00\xbc\xc4\xea\x91\xef\x69\xbf\x23\x37\x79\x6d\x46\x44\x75\x31\x25\x6b\xaf\xee\xb8\x14\xc7\x16\xc5\x3c\x5e\x62\xcb\x44\x93\x7c\x1a\x92\x6e\x97\xc9\xcb\x83\xda\x24\x9b\x2f\x4b\x51\xb0\x59\xb1\xb6\xd8\xa8\x6f\x37\xb5\xb3\xb0\xa6\xbb\x24\xf0\x6c\x42\x6b\x8f\x9b\xb5\xeb\x8b\x98\x78\x59\x6a\x6f\xfd\xc4\x56\x15\xbb\x9f\xc7\x77\x70\x50\x59\x53\x09\xa1\x3c\xf3\xe1\x7c\x88\x76\xb2\x43\x03\x52\x75\xd2\xb8\x97\x4b\xb0\x25\x5a\x64\x96\xcc\x30\x34\x2e\x84\x14\x2c\x5a\x75\x95\x6a\x02\x5e\x97\x4f\x35\x99\x52\x60\xc2\xd9\xf8\xbe\xa7\x14\x6d\x27\x9a\xbb\xe7\x14\x82\xca\x72\x95\x5e\xdd\xc0\xed\xa0\x38\x52\x62\xd9\x55\x37\x0e\x7b\x86\x1e\xe1\x44\x09\x54\x6e\x07\xab\x10\x2a\xb1\x44\x47\xcb\xc9\xba\xde\x9a\x89\x6a\x20\x37\xa6\x44\xaf\xc6\x42\x8d\x8f\x8b\x65\x48\xb4\xcf\xc9\x1e\x4a\xe8\x20\x75\x2e\x6f\xe3\x50\x06\xbc\x1e\x37\xe1\x3d\x25\x0e\x8d\x48\x15\x6e\x35\xa6\x70\x61\x98\x54\xba\xdc\x25\xac\x10\x96\x96\x7f\xd5\x7e\xaa\xe1\x5d\x93\x0c\x7a\xdb\xeb\x9b\xac\x62\xd9\x5e\x5c\x6f\x79\x4b\x13\x5b\xb7\x5f\xc5\xb2\x1a\x04\x55\xeb\x75\x62\x60\x38\x68\xaa\x69\x21\xdc\xb6\x2f\x8d\xf8\x65\x5b\xbf\x0f\x4e\x7b\x76\x1e\x0c\x48\x15\xf5\x9e\xd1\x7a\xb2\x21\x87\x26\xbc\xa5\x7c\x96\x7e\x79\xfe\xa3\x56\xbf\xdd\xea\x6f\x47\xd5\x5d\xd3\x07\xa0\xa6\x5f\xbd\xf3\x05\x12\xce\x04\xa7\x24\x21\x67\x10\x50\x3d\x95\x92\x22\x03\x13\x64\x19\xc5\x33\xeb\xf7\xd5\x96\x98\x13\x72\xe4\x54\xa7\xfb\xa2\x66\x23\xee\x65\xa8\x47\x96\x61\x42\x3f\x0a\xf6\x31\xa9\xf6\x94\x55\xb4\xbd\xdc\xb1\xb7\x8c\x7b\x59\x1b\xdb\xf7\xb2\x65\x6d\x9d\x9a\x51\xac\x8e\xf2\x49\x46\xe7\x81\x3f\x6b\xcc\x18\x19\x53\x6d\x32\x23\x6d\x53\x28\xdb\xe4\xa4\x62\x78\xe5\xd5\x24\x96\x55\x93\x58\x3a\xcf\xd9\x24\x96\x4d\xc3\x96\x23\x85\xac\x5f\xf4\x62\x5d\xf0\x50\x1c\xca\xe6\xdd\xa4\xdc\xd6\x17\x61\x31\x9b\x99\x38\x0e\xe3\xd9\x4c\xdd\xa8\x10\x30\xd4\x27\xaf\xb5\x63\xa9\x19\x57\x63\x62\x44\xb7\xb4\x5d\xa3\xb2\x3a\x26\x14\xc3\x16\x9d\x45\x87\x5f\x68\x1e\xc5\x93\xba\xb6\x23\x27\x7e\xa1\x1f\xf0\x12\x1c\x89\x1d\x71\x97\xd4\x77\xee\xc5\x9d\x27\xb9\x49\xeb\xa3\x35\xe0\xdc\x5e\x18\xe1\x1c\xe9\xcc\x10\xa9\x7b\x1f\x79\x17\x34\x29\x7a\x21\xa1\x83\x64\xbb\x95\x93\x66\xde\xed\x56\x77\x45\x59\x59\x6a\xb7\x09\x17\x25\x76\x47\xae\xf5\x69\xa6\x7c\xce\x49\x01\x17\xc3\x5c\x1d\x5a\x9a\xc8\xad\xc5\x57\x16\x93\xc4\xda\x97\x69\x10\x0c\x6e\xa6\x64\x40\x92\xf5\xe0\x06\x15\x17\x59\xfa\x0e\x9e\x16\x3d\xca\xb2\x34\x33\xbe\x65\xa8\x1e\x64\x14\xcc\x01\x49\xd6\x07\xc6\x67\xb7\x2c\xf3\xfb\x12\x1f\x88\xf0\x4d\x89\x0e\x56\x51\x92\xa4\xc5\xc1\x29\x39\x38\x25\x67\x69\x46\x0e\x00\x36\xcb\xcf\xaa\x11\x25\x78\xa5\x25\xfa\xb6\xba\x57\xfb\xdc\xe0\x90\xfa\x32\x1d\xf5\x78\xdc\x7b\x19\xf7\xbe\x07\x26\xc7\x5d\xdf\x69\x37\x42\x2f\x37\xce\x45\x18\x2a\xaa\x04\x52\xa2\xcd\x8b\x36\x7d\x32\x79\xab\x71\x08\x19\x94\x6d\x62\x0c\x9b\x0f\x0b\x7c\x37\xb1\xa2\x6c\x53\x12\x33\x4b\x51\x36\x4b\xe8\x59\x4a\x92\x29\xdb\x94\x77\xbb\xd9\x2c\xee\x5b\x41\xfc\xd1\x26\xef\x77\x29\x1c\x85\xc5\x1d\xca\x6f\x32\x43\x9b\x66\x68\x2d\xb1\xa6\x66\x5a\x4b\xad\xeb\xc3\x56\xdc\xb5\x37\x97\xca\x6b\xc2\x32\xb6\x90\x66\x8a\xd6\x4e\x14\x9a\x93\xe8\x48\x51\xfa\x88\xa8\xe4\x62\x1a\x32\x11\x5e\x85\x04\x74\x10\x7a\xbd\x0b\xa6\xd2\xb8\xaa\xe6\xe4\xba\xda\xe0\x26\x9c\xb3\xcc\x11\x12\xca\x8b\x12\x6e\xb7\xbb\x52\x55\x18\x36\x6c\x34\xae\x50\xa3\x82\x6c\x1a\x46\xdd\x6e\x76\x74\x81\x6e\xa3\x5e\xb8\xa9\xd0\x12\x95\x95\x14\xb5\x75\x68\xe2\x37\x61\x6c\x6c\xf0\x1a\x17\x08\x5f\x87\x16\x3e\x13\x8a\xe3\xd7\x47\x9b\xca\xe8\xa0\xb4\xb0\x6c\x6c\xf0\x35\xcd\x9a\x85\xa4\x7f\x86\xd3\x30\xef\xbf\xc1\x51\x25\x1f\x33\x9c\xa2\xc9\x66\xbe\xae\xeb\xb2\x6d\xe6\xd7\x4b\x7c\x86\xdf\xe0\x08\x1f\x5a\x08\xbf\xa1\x72\xe8\x4d\x18\x86\x54\x66\xae\x7b\x3d\xfc\x26\x34\x11\x3e\xa3\xb1\x67\xfc\xaa\xfe\xba\xd7\xa3\xb8\x20\xd0\x6a\x7b\xc3\x0c\x47\xad\xd9\xb6\x7a\x33\x5f\xf7\x55\x46\xcd\x81\xb7\x8d\xd6\x6a\x69\x4e\x9c\xf7\x2d\xfc\xa6\xd7\xc3\x16\x54\xce\x8b\x8b\x75\x35\x4d\x4c\x10\x2a\xa1\xb8\x76\x4c\xf2\x06\xe7\x38\x61\x72\xfc\x6d\xa8\x5e\xe6\x6f\xd4\x35\x8a\x09\x5a\xdd\x6b\xe6\x98\x7e\x33\x27\x6d\xe3\x12\x81\xca\xd2\xdb\x5e\x6f\xf2\x16\xf2\xa7\xac\xdf\xa2\x9e\x84\xf4\x16\x61\x1e\xf9\x16\x21\xac\x75\x99\x90\xbe\x69\x89\xf7\xb3\xbb\x2e\x15\xc5\xce\x8f\xeb\xe2\xe6\xa1\x89\xb3\xb0\xa0\x13\x67\xa2\x34\x26\x0d\xcd\x49\x2a\xd9\x6b\x92\xf6\x7a\x74\xb5\x95\x85\x61\x98\x2a\x6a\xbf\xf3\x5e\x2f\x5f\x4e\x88\xbc\x77\xd7\x34\x88\xb8\x72\x55\xda\x4f\x84\x72\x55\x5c\x22\x9c\xf6\x40\xe5\x2c\xe9\x85\x31\xd4\x4b\x21\xb0\xf5\x49\xcc\xda\x99\x0a\xf1\x72\xcb\x14\xba\xc1\xbd\x6e\xa5\xaa\x1d\x24\x65\xbd\xbd\xb5\xb1\xbf\xb3\xb9\xb5\xf3\x52\x75\x29\xc1\xeb\x66\x63\x85\x12\x03\xd5\xb7\xcf\xb1\xba\x7d\xe6\xbb\x49\x1c\xcf\x8b\xa5\xe2\xf9\x43\x80\xac\x10\xdc\x29\xbd\x74\xe9\x51\x2d\x65\xe6\xb4\x1b\xc8\xe0\x32\xba\x32\x0c\x83\x2e\x34\xc1\xad\x01\xce\x70\x81\x10\x1a\x64\x64\x7d\xbd\x22\x86\xc1\x67\x06\xd2\x2b\x10\xe3\x43\xa6\xc1\x67\x62\xa1\x75\x37\xb9\x38\x4a\x98\x4d\xd0\xa4\x7f\x71\x94\xa3\xdb\x8c\xeb\x8d\xf7\x2f\xb8\x83\xf7\x32\xed\x85\xb9\xd4\x87\xa6\x75\x44\xb8\x40\x93\x74\xba\xa2\x7c\xd8\x0f\x57\x98\x0a\x2a\x29\x7a\xd8\x44\x10\x29\xa3\x2b\xed\x5b\x68\xb2\xe9\x76\x53\xa9\x56\xba\x0e\x37\xb3\xbc\x6f\x05\xf9\x84\xd7\xb6\x06\xdd\xb9\xb5\x60\xd4\xac\xbc\x43\xe6\xc7\x25\xf6\xec\xb1\xf7\xe3\xa8\x32\x9c\x90\xa2\xa9\xb5\x30\x72\x7d\x93\x69\x2d\x8c\x5c\x97\x69\x2d\x8c\xcd\xb1\x2d\xec\xe7\xa6\x95\x35\x4c\xc5\x5b\x4a\x5d\x07\x01\xdd\xe6\xd7\x57\xa4\xb2\x37\x59\x33\xbf\x40\x5a\xcd\x2f\x88\xdb\xa6\x34\x61\xe8\x3d\x58\x15\xe0\x3c\x92\x2d\xf8\xa4\x2e\x09\xd3\x89\x00\xd7\x4d\x7c\x30\xf1\x5a\xda\xcb\x35\xc0\x0d\xc8\x5b\x79\xb3\xa5\x79\x5d\xd3\xd5\x65\xea\x0a\x66\x69\x02\xee\x60\xcf\xe2\x15\xd3\x33\x63\x5e\xc0\x8d\x45\xa7\x7a\x34\xbc\xe8\xe0\x4a\xb9\x85\x1f\x31\xb6\x34\x54\x35\x2a\xd0\xb4\x24\x80\xa4\x33\xbb\x8f\xc4\x47\x55\x7f\xd3\x30\xaa\x3d\xaf\x45\x08\xd5\xdc\xc9\x31\x9f\x9e\xfc\x5d\x3a\x23\x9a\x51\xf9\x15\xd5\xaa\x6f\x43\x5f\x3e\xdb\x07\x30\x83\xc6\x93\x68\x69\x20\x7e\x53\xd4\xea\xb0\x3e\xb8\x0e\xd5\x77\x59\xa8\x56\xbb\x83\x87\xb8\xbc\x55\x8b\x05\x5a\xb1\x38\x69\x49\x8b\x36\xd2\x6b\x75\x8b\x89\x85\x83\x68\xd3\xf4\x19\xb9\x29\x58\x12\x00\xdb\xe7\x51\x12\xb2\xb1\xca\xeb\xd9\x58\x6c\x19\x71\xdc\x9f\xc1\x27\xa7\x95\x34\xde\xaf\x80\x92\x0f\x6b\x59\x41\xb9\xab\xe3\x1d\xf1\x3e\x94\xb8\x0d\xde\xeb\x7d\x74\xa3\x24\xdd\x54\xdd\x33\x68\xe8\xe8\xd5\xd3\x5a\xfd\x58\xfe\x09\x77\x04\x92\x14\x79\xb0\xe1\x2f\xb8\x2b\xf5\xb0\x56\x7a\x44\x9b\x6a\x8b\x4b\x51\x6f\x79\xa5\xaf\x34\xec\x7d\xa8\x93\x4d\x49\xba\xd1\x93\xda\xbc\x54\x56\x55\x7e\x70\xcb\x69\x99\xd6\x66\x73\x46\x40\xfa\x85\x85\x86\x8a\x92\xa0\xe0\xdb\x88\xad\xab\xe5\x36\xf5\x74\x35\xa8\xf5\x54\x05\x74\x03\x52\xa9\x4e\x27\x69\x89\x3d\xcb\xfa\xd4\xe9\x49\x5c\x62\x36\x67\x27\x77\x64\xb3\xc9\x09\x34\xe9\xa4\xd1\xa1\xc6\xe4\x94\xe8\x4a\x73\x35\xdb\xb5\x6c\x72\x1a\x0c\x06\x51\x76\x7e\x0d\x4e\x4f\x79\x0b\x85\xbe\x08\x17\x7a\x77\x9a\xb7\xad\x99\xef\x10\x40\x14\xe5\x10\xd0\x6a\x51\x6d\xd9\x0a\x15\xb9\x9a\x9e\x69\x2a\x77\xc1\x94\xc2\x8f\xf5\x9c\x58\xd3\xe2\x69\x57\xe2\xe1\xa8\x57\x6a\x53\xba\x50\xe1\xc9\xa0\x30\x75\x4e\x98\x77\xe2\xfd\x90\x66\x8d\xc6\x54\x1a\x3d\x6a\x36\xc3\xc4\xf9\x1d\xca\x3d\x4a\xf6\x4a\x9b\xfd\xb8\xe9\x7a\x5a\x6d\x64\xb3\xfa\x86\xea\x93\x96\xd8\xa2\xfa\xa4\x92\xa5\x49\x54\x69\xc1\x98\xcc\xb3\x5d\x2a\x75\xa2\xeb\xf9\xc3\x60\xe6\x33\x44\xcf\xdf\xa2\x68\x67\xa3\x22\x3c\x34\xd9\xfd\x68\x7c\x66\xb0\x85\xe1\xfe\x32\xd5\x2a\x7c\x77\x4e\x4d\x7b\x8e\x22\xe2\x79\xf6\xd8\x3f\x0a\xe3\x6e\x37\x3e\x0a\x3d\xdf\xb1\xc6\xd5\x9d\xd9\xbd\xc0\x58\x68\xe2\xf9\x8e\x6d\x1e\xd1\xdd\x64\x7e\x14\x7a\x43\xc7\x75\x66\xda\x48\xb0\x4c\xdb\xfd\xdc\x88\xfb\x50\x17\xea\xe5\x7d\x28\xd0\xf3\x3d\xcf\xf1\xb7\x7a\x25\x75\x0d\xbe\x80\x52\x81\x3f\xfe\xa8\x42\x2a\xf0\x7b\xb6\xf5\x8e\x7a\x26\x52\xc8\x6b\x23\x6f\x27\x70\x7d\xa8\x4b\x4d\xc7\xbd\x75\xc0\x84\xff\x20\x97\xec\x23\x4d\x58\x73\x26\x92\x87\x9b\x7c\x60\xc9\x6f\x3e\x16\xab\x74\xe0\xfa\x25\x95\x9a\x52\xca\xa5\x25\xf6\x5d\xe7\xd3\x8e\xff\xda\xac\x67\x85\xcd\x68\x68\x57\x4b\x3c\x6d\x79\x58\xd4\xf4\x71\xb5\x08\x51\x52\xd7\xea\x0d\x8b\x56\xbb\xe5\x5a\xb4\x42\x4b\x3d\xbb\xec\x12\x2d\xba\x1a\x80\x8a\x9a\xf5\xa3\x5f\xbc\xaa\x29\x5d\x2b\x9f\xc7\xcf\x9f\x3e\x7f\xa9\x38\x71\xd4\xa2\xd5\x18\x28\x67\x7b\xfe\xb6\x96\xe9\xe8\x68\x8c\xf5\xba\x68\xa9\x56\x94\xf4\x04\xa5\x09\x16\xde\xd5\x66\x1b\xef\x20\x92\x83\x1b\xe4\x64\xaa\xc4\x0d\xb2\x5b\xb8\xd1\x37\x66\x5b\xa7\x33\x10\x07\x00\xa3\xbd\xeb\xad\x5d\xbc\xe2\xd8\x25\x76\x47\xbe\xf3\xa9\x73\x37\x5b\x32\xde\xb5\xaf\xe4\x13\x76\x02\x16\x3c\xe3\x86\x61\xc9\x78\x5d\xb6\x39\xb6\x82\xf7\x28\x7c\x5f\xa0\x39\x91\x14\x57\xd5\xad\x9e\x39\xd7\x61\x32\x78\x93\x90\xf7\xc5\x93\xb5\xf4\x75\x2f\x9f\x23\xdc\x7f\x73\xa9\x15\xa8\x00\xb0\xed\x64\xdd\x3b\xa4\xea\x8a\xd2\x68\xe0\xab\x3c\x04\x0e\xa5\x85\x90\x0a\x22\x77\xf7\x6d\x98\x38\xd3\x7c\x3f\x22\xa3\xd1\x4c\xd4\x6c\x79\x75\x8f\xf2\xa1\x0e\x42\x4b\xd9\x7b\x09\x96\x24\x0b\xad\x12\x0f\x2d\xeb\x13\x7d\x9a\xd5\xac\x17\xf2\x01\x7f\xf2\xe8\xd5\x49\x35\x6e\x65\xcc\x6d\xb9\xb7\xc4\xe0\x4b\x25\xf3\xdc\x5c\x86\xb7\x8b\xce\xb7\xe0\x03\xf9\xff\xf9\x87\x7f\x6d\xd1\xc1\x11\x0d\xfd\x83\xbf\xb7\xe8\xe0\x53\x1a\xfa\x3b\x7f\xb0\xe8\xe0\x15\x84\xfe\xe6\xa2\x83\xd7\x10\xfa\x5b\x8b\x0e\x26\x10\xfa\xeb\x8b\x0e\x3e\x0b\x16\x9d\xef\xff\xe5\xa2\x83\xcf\x69\xe0\x5f\x2d\x3a\xf8\x02\xd2\xfe\xc9\xa2\x83\x63\x08\xfd\x8d\x45\x07\xff\x1e\x0d\xfd\xfd\x7f\xb4\xe8\xe0\xef\x20\xf4\x77\x16\x1d\xbc\x81\x10\x85\x7b\x09\xa1\xbf\xbf\xe8\xe0\x04\x42\x7f\xbc\xe8\xe0\x94\x86\xfe\xf6\xff\xb1\xe8\xe0\x2b\x08\xfd\x9b\x45\x07\xff\x0a\x52\xff\xd2\xa2\x83\x33\x88\xa3\xf9\x72\x08\xfd\x5b\x3a\x6c\x21\xf5\x0f\x17\x1d\x7c\x0d\x21\x8a\xc1\x5b\x08\xfd\xeb\x45\x07\xbf\x83\xd0\xbf\x58\x74\xf0\x7b\x08\xfd\xe5\x45\x07\xdf\xd0\xd0\x1f\xd0\x7c\xbf\x0f\xa1\x7f\x0a\xfe\xed\x6e\x81\x1e\xff\xf7\x5f\x82\x8f\x2d\x23\xce\x1f\xfc\x63\xf8\x2a\xe1\xeb\xfb\xff\x1e\x3e\x7e\xcd\x3e\xfe\xd7\x45\xa7\x54\x88\x3a\x78\x40\x69\xfa\x5b\x32\xa3\x96\xf6\x65\xb3\xc7\xe6\xee\x52\x2f\x80\x17\x9d\xff\x1f\xfb\xf8\x3f\xe1\x63\x0e\x1f\xf1\xef\xc1\xc7\x82\xfe\x07\x89\xff\x16\xbe\x97\xf0\xb1\x55\xf0\xfe\xfe\x9f\x29\x78\x9f\xa9\x58\xff\xb1\x8a\xf5\xbf\xae\x61\x76\xac\x30\xc9\xdc\x03\x94\x58\xc5\x3f\xfc\x15\xbd\xe2\x1f\xfe\x81\x52\xf1\x0f\x7f\x15\x3e\x7e\x97\x7d\xfc\x21\x7c\x30\x76\xfa\xe1\x9f\x2b\x38\xfd\xf0\x4f\x14\x9c\x7e\xf8\x5f\x14\xa4\x7e\xf8\xa7\x0a\x52\x3f\xfc\x71\x0d\xa9\x97\x3b\x28\xf3\xc3\x3f\x56\x28\x03\xcc\xa7\x22\xf8\x47\x0a\x82\xdf\xff\x91\x8a\xc6\x3f\x57\xd1\xf8\xdf\x55\x34\xfe\x99\x4a\x9b\x7f\x56\x43\xe3\x77\x28\x1a\x2d\x35\xff\xf0\xdf\xed\xa9\xf9\x87\xff\x51\x25\xcd\xff\xa4\x92\xe6\x5f\x7f\x38\x4e\x3f\xfc\x9b\x1a\x4e\x3f\xab\x70\xe2\x6d\xbc\x4f\x77\xfd\xe1\xfd\x3a\x45\xe5\x94\x1f\xfe\x9b\x5a\xcd\xbf\xdc\xc5\xae\x7f\x74\xdf\x4e\xe1\x6d\xfe\x56\x6d\xf3\xad\x4a\x5e\x8e\xd3\xff\xbc\x93\x1a\xff\xa2\x86\xd3\x23\x95\x7b\xfd\xa5\xd2\x5f\x7f\x45\xa5\xcd\x5f\xab\x21\xf5\x8f\xee\xc7\xca\xff\x44\xc5\xf0\x7f\x50\x31\xfc\xdf\xee\xcd\xca\x7f\xf1\x5e\x54\xfb\x6f\x6b\x08\xfe\x5d\x95\x95\xff\x2f\x75\x94\xff\x4b\x15\x8d\x7f\xa5\xa2\xf1\x47\xb5\x9a\xbf\x52\x69\x33\x54\x69\xf3\x07\xf7\xe6\x9b\x3f\xd1\x61\x3e\x5f\x74\xc2\x45\x47\x91\x82\x9c\x25\xda\x46\xdc\x3f\xff\xa0\x11\xf7\xa6\x62\x9c\xb6\xa1\x77\xcf\x01\x40\x87\x5e\x89\x6d\x6f\x54\xdd\x99\xbf\x8d\xb2\x03\xd0\xd4\x99\x7c\xdc\x19\x8d\xf5\xe6\xd1\xc9\xf1\x83\x17\x8f\x1e\xd2\xbe\xb1\xe8\x8f\x29\x66\x06\xd5\x2d\x13\xa1\x0b\x57\xba\xae\x5d\x98\x74\xce\x1d\x9c\x3c\xff\x8a\x7e\x5d\x9b\xa6\x69\xb1\x88\x57\xbf\x10\x11\x36\x44\x3c\xaa\x22\x1c\x16\xf1\xfc\x95\x88\x70\x59\xc4\xb3\xdf\x11\x11\x1e\x44\x3c\x38\xfe\x99\x88\xf0\x21\xe2\xcb\x47\x4f\x45\xc4\x90\x45\x9c\x00\x0e\xa7\xf0\xf1\x15\xc0\x5b\x14\xf0\xf1\xf4\x31\x7c\x24\xf0\xf1\x73\x96\xf2\x16\x3e\x1e\xb3\x94\x33\xf8\x38\x86\xc5\xf9\x22\xe3\x8d\x10\xd0\x09\xfb\x7e\x22\xbe\x59\xe6\x87\x4f\x1f\xf1\x08\x8b\xb5\xfa\xe1\xb1\x25\x22\x2c\x1e\x61\x8b\x08\x9b\x47\x38\x22\xc2\xe1\x11\xae\x88\x60\xad\x7e\xf6\x40\x34\xd2\x62\xad\x3e\xf9\xe5\x33\x11\xe1\x73\xca\x7d\x29\x22\x58\xab\x8f\x1f\xc8\x1c\x23\x96\xe3\x6b\xf1\x3d\x66\x20\x5e\xcb\x12\x11\xcb\x70\x72\x2c\x22\x18\xad\x1e\x9f\x88\xef\x15\x7c\xff\x54\x7e\xaf\xe1\xfb\xa5\xfc\x66\xa4\x78\x2d\xbf\x19\x29\x4e\x5e\xf0\x1d\x09\x19\x3c\x84\x4e\xf9\xff\x2f\x3a\xa5\x11\xd3\x65\x31\xe5\x98\x38\xbc\x2d\x11\xaa\x71\xcc\x8b\x07\x0f\xc3\x45\xe7\xfb\xbf\xc4\x3a\xeb\x39\x85\xf0\xfd\x7f\xc0\xba\xf1\x05\xe5\x9e\xef\xff\x32\x23\xc8\x97\xf0\xf1\x1f\xc2\xc7\x93\x67\x50\xe6\xaf\xb0\x14\xa8\xe9\xfb\xbf\xca\x30\x38\x79\x40\x3f\xfe\x1a\x6f\x1f\x7c\xfc\x47\x9c\x0f\x28\xb2\xdf\xff\xc7\xfc\xe3\x2f\xd0\x8f\x3f\xe0\x7c\x00\x29\x7f\x1d\x3e\x5e\x3c\x05\xd0\x7f\x83\x7f\xbc\xa6\x1f\x7f\x93\x35\x9e\xf6\xfb\xf7\x7f\x8b\x57\x43\x7b\xf4\xfb\xbf\xcd\x3f\x68\x6f\x7e\xff\x9f\xf0\x9e\x04\x60\x7f\x87\x95\x7f\x4d\x39\xe1\xfb\xbf\xcb\x3f\xa0\xcc\xdf\xe3\x03\x01\xb2\xfd\xa7\xac\xe7\x8e\xa1\x6d\x7f\x1f\x3e\xbe\xfe\x86\x86\xff\x33\x4e\x4f\x68\xc0\x3f\x60\xad\x61\x1f\xff\x90\x33\x25\x94\xff\x47\xec\xe3\xa7\xc7\x80\xdb\x7f\xce\xbe\xd8\xc7\x7f\xc1\x40\x03\xb7\x7e\xff\x5f\xf2\x4a\x69\xf8\x0f\x21\xfc\x1c\xfa\xfe\xfb\xff\x8a\xa1\x46\x39\xe5\xfb\xff\x9a\x0d\xaf\x17\x90\x40\x67\x51\x23\x67\x3d\x67\x85\x79\x5b\xcf\x9d\xbc\x0a\xbf\xfd\xec\x36\xa6\x6c\x54\x52\x01\xf7\x6d\x69\x64\xbc\x80\x14\x17\x19\x14\x2c\xf1\xd0\x19\x8f\x3f\x75\xb7\x49\xe8\x57\x54\x90\x9f\x91\x9b\xd3\x34\xca\xd6\xb0\x73\x6b\x6e\x3e\xa9\xe0\xa3\x9b\xcf\x5b\x77\x14\xcc\x17\x1d\x13\x44\x23\x5a\x74\x96\xd8\x1d\xd3\x08\x0b\x22\x0e\x69\x84\x67\xd2\x08\x5b\x48\xef\x25\xf6\x2c\x1a\xe1\x40\xc4\x6f\x41\x84\x4d\x23\x5c\x88\xf8\x0c\x22\x1c\x1a\xe1\x41\xc4\x6f\x43\x84\x4b\x23\x7c\x21\xca\x97\xd8\xf3\x68\xc4\x10\x22\xba\x10\xe1\xd3\x88\x11\x44\x7c\x0e\x11\x43\x1a\x31\x86\x08\x83\x46\x58\x23\xc8\x32\x81\x98\x80\xc5\x40\x9e\x10\x62\x7a\x2c\x06\x9a\x83\xe1\xdf\x11\x8b\x81\xf6\xf4\x21\xe6\x0d\xc4\x8c\xa1\x41\x03\x88\x99\xb2\x18\x68\xd1\x17\x10\x33\x63\x31\xd0\xa4\x6f\xc5\x8c\xb1\xc4\xb6\x05\x70\xe6\x62\xaa\x59\x62\xdb\x06\x38\x6c\xda\x62\x53\x0e\x8d\x04\x50\x4b\x31\xef\xd0\x18\x00\xf5\x93\x45\x07\xff\x64\xd1\xf9\xc9\xb2\x9c\xec\xea\x24\xed\x7e\x3f\x56\x75\x83\x6e\x8b\x9b\x2b\x12\x98\x98\x39\x4a\x0c\x0e\x2d\xfc\x1d\xb9\x11\x0e\xfc\x71\x14\x1a\x64\x00\x86\xc6\x7e\x46\x6e\x66\x56\x60\xa2\xad\x41\x06\xd1\x06\x3e\x6d\xfe\xb9\x2a\xb2\x0d\xfd\x76\xf9\xf7\x25\x29\x22\xfa\x3d\x0a\x4c\x34\xe1\x4e\x85\xc8\xe0\x3b\x72\x73\x9c\xae\x09\x77\x1c\x64\x06\x8b\xce\xeb\x27\x3f\x23\x37\x4f\x92\xab\xeb\xe2\xf5\xd5\x83\x2c\x4b\xdf\x71\xd3\x87\xdf\x91\x9b\x59\x4a\x7f\xc3\x62\x96\x0f\x8e\x4d\xca\xe0\xbd\x45\xe7\xf9\x83\x45\x27\x50\xbe\xe7\x0f\xa0\xaf\x2a\x28\x4f\xc9\x59\x71\x1f\x38\x0f\x6b\x70\x1e\xd6\xe0\xbc\x8c\xcf\x2f\xee\x05\xe8\xb8\x06\xe8\xb8\x06\xe8\x61\xfa\x2e\xa9\xc1\x01\xad\x9a\x26\xa4\x2f\x6b\x90\xbe\x5c\x74\xb8\x62\x04\xf3\x91\x34\x0a\x58\xa9\x8a\xd8\x7c\x82\x65\xa5\x1e\x3e\x7a\x8a\x45\xb7\xc8\x1a\x24\x3c\xf8\xd4\xc0\x8d\x03\xa6\x8c\xc8\x3b\x16\xdd\xd6\x4a\x2c\x3a\xf3\xbf\xb8\xe8\x08\xcd\x8c\x2a\xed\xab\x57\x38\x1d\x30\x4e\x09\x0f\x4d\x15\xa2\xe5\x48\x0c\x39\x77\x48\x60\x10\x38\x7e\x19\xf0\xbf\xbb\x20\xd8\xc3\x40\xc7\x62\x4f\x8b\x44\x00\xed\x02\xe6\x0c\x59\x0b\x39\x2b\x72\x03\x66\xd1\xac\x0e\x68\xd1\x99\x5b\x93\x45\xa7\x67\x44\x3d\x0b\xf5\x16\x9d\x87\x8b\x0e\x66\x59\xc2\x5a\x26\xe7\xe1\xa2\xd3\x44\xc4\x88\x67\x8b\xce\x29\x74\xfb\xdc\x9a\x78\x0f\x17\x1d\x84\x50\x70\x4f\xa6\xd3\x10\x1e\x7f\x1c\xc2\xc7\xbb\x11\x3e\xde\x89\xf0\x99\x44\xf8\x78\x37\xc2\x2d\xcc\xad\x21\x3c\xfa\x38\x84\x1f\x2c\x3a\x38\xde\x6e\x21\xd7\x61\x03\xe7\x07\x8b\xce\x76\xdb\x0a\xc2\x7b\x40\x51\x6d\xc5\xb4\x45\x2e\xa8\x98\xba\xe6\xc7\x61\xfa\xe5\x5e\x4c\xbf\xdc\x8d\xe9\x97\x3b\x31\x6d\x19\xe6\x1a\xa6\x5e\x50\x0d\xca\xed\x56\x0e\xf6\xd6\x8a\xec\x5f\xd7\x64\x84\xeb\xf3\x3a\x23\xb5\xce\xb9\xa3\xb6\xe9\xd7\x35\x04\x9c\x5f\xd7\x7a\xb5\x1d\x86\x46\x97\xaf\x16\x9d\x40\x6f\xd6\x57\x35\xa8\x5f\xd5\x80\x7a\x77\x03\x7d\xdc\x00\xfa\xb8\x06\xf4\x71\x0d\xa8\xa3\xd0\x6a\x96\x0e\xe8\x34\x16\xda\x41\x25\x20\x9b\x14\xf3\xea\x94\x68\xc9\x52\xa7\x87\xdb\x52\x8b\xb3\xb7\x16\xff\xee\x5a\xfc\x5a\x2d\x96\x65\xdf\x4d\xa1\x17\x3a\x3d\x9e\xbf\xa8\xc3\x70\xee\x86\xf1\x3b\x35\x18\xbf\x53\x87\xe1\xde\x0d\xe3\x65\x0d\xc6\xcb\x3a\x8c\x7b\xf4\xf6\x49\x0d\xc6\x49\x1d\xc6\x0e\x36\x6c\xf4\xa0\x9e\xda\x20\xeb\xb0\x1d\xcc\x70\x2f\x98\x61\x03\xcc\xa8\x1d\xcc\x68\x2f\x98\x51\x03\xcc\xb8\x1d\xcc\x78\x2f\x98\x71\x1d\x8c\x6d\xb6\x82\xb1\xcd\x7d\x60\x6c\xb3\x01\xc6\x6a\x07\x63\xed\x05\x63\x35\xc0\xb4\x73\xae\xbd\x57\xea\xd8\x75\xb1\x63\xd9\xed\xcc\x6b\xbb\x7b\xc1\xb8\x15\x18\xe1\x0e\x32\x3e\x33\x0e\x15\xb9\xa9\x8b\x53\xb6\x9c\xa0\x21\x31\x17\xc4\x67\x46\xdc\xed\x1e\x26\xdb\xed\x61\x5b\xf2\x61\xac\x17\x6b\x85\x7b\x58\xad\x78\xf9\x12\xaf\xc2\x00\xc2\x62\x15\x53\x65\xec\x76\xe5\x7a\x78\x1a\xba\x23\xfe\xe2\x81\x46\x89\xd7\x91\x62\x31\x45\x17\xe3\x1c\xaa\x02\xd4\x80\xfd\x46\x63\x4d\x09\xc4\x79\x7d\x82\xd8\x6e\xaa\x3d\xf9\xd9\xeb\xa7\x08\x05\xbe\x27\x52\x8f\xc1\x39\xbb\xc1\x45\x9b\xa5\x3d\x70\x2e\xc2\x6c\x2e\x33\x2d\x99\xf3\xee\xb9\xbe\x1f\x58\x82\x71\x6d\x54\x93\x71\xb1\xd4\xc7\x50\xda\xe9\x7b\x4a\xb3\x8f\xc2\xb1\xa9\xba\x11\x17\xf2\x54\x66\xe8\xfb\x6e\x20\x3f\x7a\x8e\x3d\x61\x0f\x97\xd9\x83\x28\x69\x00\x0b\x6e\xf8\x0b\x78\x75\xcd\x91\x82\x87\x50\xf1\xa0\x48\x5f\x5f\x5d\x91\xec\x38\xca\x89\x81\x10\xae\xe3\x57\x0a\xfc\x1c\x5b\x25\x44\xbd\x1d\xca\xe6\x46\x10\x2f\x80\x03\x16\x24\x1b\xb8\xe8\x3c\x24\xd1\x5a\xa5\x36\x19\xac\xd2\x35\x7f\x40\x93\x7f\x13\x17\x17\xc6\xa2\xf3\x33\x72\x43\x17\x05\xc2\x7c\x24\xcf\x01\xb6\xd4\x1c\xec\xaa\xf8\xd3\x0d\x7c\x58\x0c\x8a\xf4\x69\xfa\x6e\x27\xfe\x85\xba\xee\x2d\x59\x63\xf6\x51\x9a\xb3\x53\x1b\xf1\x54\x82\xa3\x40\x27\xc7\x4c\xe7\x9b\x40\xa9\xc2\xb3\xb4\x2a\x3c\xef\x5e\x55\x78\x56\xcf\x1e\xa2\xc0\xf3\x77\xd5\xf2\xf0\xd1\xd3\xc0\xb6\xc6\xbb\x92\x1f\x9d\x1c\x07\xb6\x6d\xee\x4a\x7e\x7c\x12\xd8\xb6\xd5\xe0\x6c\x99\xfe\xd3\x13\x54\xbd\x52\x28\xb1\xcb\xfd\xec\x7f\xf4\x81\xc8\xeb\xe2\x6c\xf4\x2a\x7d\x5d\x9c\x39\x76\x58\x0c\x58\xd3\xab\xef\x6b\xfa\x57\x3c\xe1\x0b\x8b\x36\xb5\xad\xea\x76\xaf\x2d\x51\x3d\xed\x91\x16\x2a\x7d\xcf\x73\xbc\x99\x41\xfa\x21\xa8\x05\xe1\x36\x82\x83\xfe\x50\xcf\x20\xd3\xa9\x65\x22\xd4\x6b\xed\x93\xdf\xb6\x4c\xdb\xed\x81\x82\x11\x42\x41\x6b\x16\x54\xe2\x7a\x2b\xd4\x73\x84\xd0\xc4\xb1\x7c\xf3\x25\x6c\xfb\xc8\x77\x84\xec\x59\x61\x31\xc9\x8e\xe2\x49\xaf\x97\x49\xd6\x9f\x67\xcb\x49\x21\x5a\x51\x88\x56\xe4\xbd\x56\xce\xe1\x0d\x29\xf6\x34\xa4\xd0\x1b\xb2\x03\x50\x21\x3b\x3e\xa7\x8d\xd2\xbb\xaa\xe9\xe4\x50\xda\x41\x4c\x0a\x92\xc5\x97\xa1\xa9\xfb\x77\x52\xe2\xd7\x64\x05\xb4\x52\xdf\x76\xc8\x67\x2a\x74\x32\x8a\xc5\x5b\x38\x53\x79\xdf\xa2\x78\x17\xe2\xa0\xd4\xd2\x8a\x3e\x56\xd6\xeb\x49\xb5\x31\xae\x7a\xc6\xd4\xc6\xe6\x79\xaf\xb7\xe4\x0a\x63\x1a\x20\xa1\x3c\x16\xab\xca\x63\x81\xc1\x0b\x68\x59\x31\x8f\x8c\xa5\xe3\x3f\xd9\xac\xca\x1c\x7e\x36\x49\xa0\x07\x93\xea\x51\x88\x86\x61\xa2\x6a\xc7\x65\xdd\x6e\x26\xb5\xe3\xe2\x33\xa3\xd7\x4b\xa6\xa1\xa4\x80\x5e\x49\x86\xc5\x7b\x8f\xb4\x01\x91\xb7\x38\xed\x76\xd3\xd6\x16\x67\xa2\x95\x69\x6b\x2b\x33\xd1\xb2\x94\xbf\x35\xf6\x3d\x7b\x38\x3e\x0c\x29\x7e\x32\x8f\xc2\x11\x65\x6d\x2c\xef\x64\x08\x81\xbb\x78\x7e\x3f\xe2\x96\x1a\x91\xce\x1f\x3c\x1b\xa8\x40\x1b\x26\xfa\x70\x26\xc1\x19\x4e\x70\x2a\x9e\xd0\xe0\x95\xc2\x30\x1c\xf6\xdc\x5c\x8a\x21\x77\x68\x61\xae\x10\x5d\xa5\x4d\xb2\x6e\x68\x8d\xed\x30\x34\x6c\xdb\xed\x66\x68\xe6\x58\x81\x6d\xbb\xf4\xdb\x35\xe9\xb7\xe5\x05\x43\x66\x72\x1b\xa7\xe2\x91\x8e\x91\x84\xc2\x97\xad\x80\xd4\xeb\xa5\x4b\x44\x7b\xc1\x9d\xa0\xec\xe8\x28\xf4\x71\xb6\x0d\x13\xde\x6f\x17\x4a\x15\x75\xdc\x66\xb6\x52\x5f\x23\xd1\x09\x5c\xbc\x09\x2f\xfa\x29\xab\x78\x75\xb4\x61\xaf\x83\x56\x0a\xb7\x40\x93\x93\x90\xcc\x57\xbd\xde\x12\x5b\xf6\xe8\x30\x34\xac\xb1\xdd\x4d\x10\xba\x5d\xf5\xfb\x38\x97\x47\x3e\xa5\x06\x3f\xa5\xbd\x9b\x60\x89\xad\xef\x74\x93\x32\xdf\x6e\x41\x35\xf4\x62\x96\x1d\x59\xf6\x68\xb6\xea\xf7\x83\x62\x1e\x01\x23\x04\x0e\x4f\xb0\x4d\x77\xb4\xdd\x66\xd3\x10\x98\x8b\xb1\x32\xe5\xbd\xed\x16\xf8\x27\x0c\x43\x38\x5e\xe7\xc5\x50\x90\x1d\x31\xcd\xcc\x6d\x36\xb5\x2c\xcb\xb5\x2c\x4b\x4d\xe6\x83\xaa\xce\x0b\xe2\x05\x53\xdc\x77\x27\xec\x6d\xe3\x8a\x11\x61\x0d\xef\xae\x21\x78\x68\x1c\x1a\xeb\xa3\x0d\xda\x6e\x2d\x7b\xd4\x35\xf2\x90\xcc\xd7\x4b\xf1\x95\xd1\xaf\x9e\x25\xbf\x13\xf8\xb6\xe5\x77\x0a\xdf\xce\x12\xa1\x09\xe2\xc8\xe4\x58\x60\x25\x02\x89\x08\xa4\x78\xdd\x0b\x5d\x4a\x6a\xa8\x85\x92\x3a\xa7\x14\x92\x45\xe5\x42\xa7\xea\xeb\x1c\x41\x67\xad\xeb\x43\xbb\xea\xe1\x30\xc7\xcc\x04\x81\x80\x59\x75\x5f\x86\xd0\xed\x9a\xbd\xd1\x62\x0f\x3c\xe3\x33\xe3\x22\x34\x1c\xab\x9b\xa3\xa3\x23\x7f\xeb\x3b\xdd\x0c\x5f\x00\x0a\x7a\x3e\x8e\xd0\x85\x5c\xba\x55\xfc\xf5\xa3\x23\xb4\x1f\x92\x16\x63\x51\xaa\x46\x82\x57\xd7\x4d\x5e\x6d\x69\xac\xe5\x41\x63\x2d\x7b\x6b\xd0\xe6\x8a\x76\x27\xf8\x82\xf3\xe0\x85\xe4\xc1\x8b\x06\x0f\x2a\xfe\x3b\x9a\x24\x71\x4d\x20\xc9\xe8\xcf\x17\x49\x3e\x14\xb6\x16\x63\x53\x6e\x86\xda\xd2\x66\x6d\x69\x7b\x07\x0c\x19\xfd\x47\x92\xfe\xbc\x2b\x12\xd1\x15\x29\xbe\x10\x83\xfb\x42\x0c\xee\x16\xba\x8b\x29\x24\x2a\xcb\x12\xdb\xf6\x27\x3f\x15\x7c\x9d\xc4\x74\xa6\xf8\xb9\xdf\xbc\x55\xb3\xdc\x11\xa8\x74\xce\xe7\x43\x7f\x84\x47\xc3\xf1\x12\xcf\x2d\xcb\xf3\xb0\x65\x79\x23\x08\xfb\x26\xb6\x2c\xdf\xa2\x61\xd7\xf6\xb0\xe5\xfa\x90\xc7\x1d\x5a\x98\xfe\xb0\xb0\x43\xc3\x2e\x0b\xfb\x34\x3c\x64\xe1\x31\x0d\x43\x7e\xba\x1c\xb3\x3c\x87\x85\x3d\x1b\x5b\x9e\x07\x79\x7c\xcb\xc2\x96\xef\x98\x10\x76\x47\x98\xfe\xd0\xf0\xd0\x33\xb1\x35\xf4\x01\xe6\xd0\x1f\xd2\x30\x8b\x1f\xd2\xf8\xa1\x43\xc3\x23\x73\x88\xe9\x0f\x0b\x8f\x69\x18\xe0\x8f\x5c\x13\x5b\x23\xdf\xa7\xe1\xb1\x37\xc2\xd6\x18\xca\xda\xa6\x3d\xc4\xb6\xe9\x78\x34\xec\x98\x1e\xb6\x1d\xd3\x87\xb0\xef\x62\xfa\xc3\xc2\x63\x6c\x3b\x43\x16\x3f\xb2\x30\xfd\x61\x61\x9a\x7f\x04\x70\x5c\xd3\xc6\xb6\x6b\x3a\x10\x76\x1c\x4c\x7f\x20\x3c\xa6\xf1\x63\x9b\x85\x87\xd8\xf6\x4c\xda\x2e\xdb\x33\xc7\x34\x3c\x86\xb0\x63\x62\xdb\x73\x00\xa6\xe7\x5b\xd8\xf6\x7c\xc8\xef\xdb\x26\xa6\x3f\x2c\xec\xd1\x30\xe0\xe0\x3b\x16\xb6\x7d\x87\xe5\x71\x68\xbc\x33\x84\xf0\xd0\xc6\xb6\x0f\x74\xb0\xfd\xd1\x18\xdb\xfe\x18\xca\x0e\xdd\x11\xa6\x3f\x10\xf6\x1c\x6c\x0f\x81\xce\xf6\xd0\x1b\x63\x7b\xe8\xb3\x3c\xbe\x47\xc3\x40\x87\xe1\xc8\xc7\xf6\x70\x04\x79\x46\xd6\x10\xd3\x1f\x08\x0f\x7d\x4c\x7f\x58\x78\x4c\xc3\x80\xff\x88\xd2\x64\x34\x82\x7a\x47\x63\x07\xd3\x1f\x1a\x1e\x53\x9a\x8c\x4d\xc0\x73\xec\xfa\x98\xfe\x2c\xf1\xdc\x31\xcd\x11\xa6\x3f\x10\xb6\x2d\x4c\x7f\x68\xd8\x72\x5c\xec\x58\x0e\xe4\xb1\x5c\x1b\x3b\x96\xeb\xb2\xb0\x4f\xc3\x63\x08\x7b\x43\xec\x30\x3e\x74\x6c\xdf\xc4\xf4\x87\x85\x1d\x1a\x76\x20\x3c\xa4\xf1\x43\x16\x3f\xf4\x69\x78\x08\xe1\xf1\x08\x3b\xf6\x18\xe0\x38\x63\x07\x3b\xce\x98\xb6\xd7\x71\x4d\x0f\xd3\x1f\x1a\xa6\x7d\x41\x7f\x58\x78\x84\x1d\xcf\x65\x61\x8a\x8f\xe7\xd2\xb6\x38\xbe\xe3\x60\xfa\xc3\xc2\x3e\x76\x7c\x1e\xef\x79\xd8\xf1\xa1\xef\x9c\xa1\x6f\x61\xfa\xc3\xc2\x2e\x0d\x43\xbd\xc3\x21\x8d\x1f\xb2\x3c\x23\x1a\x3f\x82\xf8\x11\xcd\x33\x02\xfa\x3b\x94\x86\x0e\xa3\xa1\x33\x1a\x7b\x34\xcc\xe3\x87\x34\x0c\x6d\x19\x7b\x0e\x76\xc6\xc0\xcf\xce\xd8\x1f\x61\x67\xcc\x60\x8e\x87\x2e\x0d\x43\xfe\x31\x85\x3f\x1e\x03\x0e\xe3\xb1\x83\x5d\xd3\xa6\x74\x73\x4d\x67\x84\xe9\x0f\x0d\x5b\xae\x85\x5d\x46\x67\x97\xd2\x99\xfe\x40\xd8\x33\xb1\x6b\x79\x16\x0b\x3b\x34\xec\x40\x78\xe4\x62\xd7\x1a\x51\xf8\xae\xeb\x8e\xb0\xeb\xc3\x58\x73\xc7\xde\x18\xd3\x9f\x25\x9e\x7b\x63\xd3\xc7\xde\x18\xfa\xd7\x1b\x3b\x23\xec\x8d\x81\x86\xde\x78\x68\x62\x6f\x0c\xf2\xc1\x37\x4d\x1b\xfb\x26\x8c\x17\xdf\xf4\x47\xd8\x37\x81\x3e\xbe\x39\xb4\xb0\x6f\x42\x7f\xf9\xe6\xc8\xc7\xf4\x87\x85\xc7\xd8\x37\xa1\xef\x7c\xcb\x1c\x63\xfa\x03\x61\xcf\xc3\xbe\x05\xfc\xec\x3b\x96\x83\xe9\x0f\x0d\xbb\x8e\x8d\x7d\xd7\x71\x59\x78\x8c\x7d\x17\x70\xf0\x5d\xcf\xc4\xf4\x87\x85\x87\x34\x0c\x70\xfc\xe1\x18\xfb\xfe\x08\xe2\xc7\x96\x8d\xfd\xb1\xe5\x41\xd8\x77\x31\xfd\x61\x61\x1f\xfb\xe3\x21\xcb\x33\xa4\x79\x80\xe6\xfe\x78\x38\xa2\x61\xda\xde\xa1\x69\x8d\xf1\xd0\xb4\x29\x3e\x43\xdf\xf2\xf1\x90\x8d\xd9\xa1\x3f\x1c\xe1\xa1\x0f\xe3\x65\x64\x9b\x0e\x1e\xd9\x40\xb7\x91\xed\xb8\x78\x64\x43\x5f\x8c\xec\xd1\x08\x8f\x6c\xe8\xaf\x11\xe5\xd5\x91\x03\xf4\x19\xb9\xa6\x89\x47\x2e\xc8\x07\xcb\x76\x1c\x13\xd3\x5f\x0f\xbe\x5c\xd7\xc2\xf4\x97\xe2\xe1\x3a\xa6\xe5\x62\xf8\xe5\x5f\x63\xf8\x1a\xb3\x2f\xd7\xa3\x5f\xd0\xbb\xbe\x6b\x53\xd2\xd2\x5f\xfa\xe5\x99\xb6\x8b\x7d\xcf\x04\x49\xec\x7b\xa6\xe7\xd3\x2f\x46\x17\xba\x14\xc0\xf0\x0b\x5f\x9e\x4d\xbf\xa8\xac\x5a\xe2\x24\x9c\xcf\xfd\x91\x39\x1e\x62\xfa\x0b\xe9\x23\xcb\xb4\x30\xfd\xb5\xf9\xd7\x88\x7e\x59\x16\xfb\xf2\x6c\xfa\xe5\xb9\xfc\x6b\x0c\x5f\x6c\x76\x19\x5b\xae\x83\xe1\x8f\xc7\xbf\x61\xbe\x19\x5b\x40\x6d\x08\xb0\x74\x3e\x1b\x8d\x6d\x8b\xce\x41\x63\x1b\x7a\xdb\xb2\xc6\x8e\x6f\x63\xf8\x43\xa1\x8f\xe9\x54\xe1\x61\xf6\x87\x7f\x3b\x3e\xfd\xf6\x81\x8a\x63\x6b\x38\xf4\x4d\xfa\x3d\x1e\x8f\x97\xcc\x1c\x44\x3a\x51\x27\xc5\xb6\x7d\x99\xd8\x17\xbd\x25\x59\x1e\xa7\x49\xc8\x54\x41\x0e\x53\x74\x9b\xd6\xb7\x69\x30\xa1\x23\x9c\xb2\xb5\xb8\x85\x70\x4a\x17\x18\xa6\x88\x30\xb1\x85\x1d\x1b\x29\x9f\xf6\x10\x5b\xbe\x29\x63\x6c\xec\x3a\x9e\x8d\xe9\x08\xa3\x65\xc7\xa6\x69\x2d\x43\x9b\x85\x6c\x08\x89\x7c\x96\x35\x36\x5d\xec\xda\xd6\x98\xc2\xa3\xfc\xe1\x59\xcb\xd0\x52\x00\xb9\xa6\x63\x63\xcf\xb3\x4d\x57\x01\xef\x3b\x43\xd7\xa5\x1c\xe0\xf9\x6a\xac\x67\xba\x26\xf4\xbd\xa9\xc7\x52\x66\xf7\x2c\x47\xcf\x6b\x8f\x68\x5e\x67\x38\xd4\x62\x3d\x93\xf2\x92\x67\x59\xa8\xe6\xec\x23\x53\xad\x2a\xc9\x96\x67\x73\xb2\x9c\x9b\x4b\xf6\xd7\x5a\x82\x11\xa0\x77\xab\x77\x35\xc3\xef\xe4\xc8\xb1\x67\x66\x40\x8e\x2c\x7b\x38\xb3\x02\xc2\x56\x4c\xb3\x74\x4e\x96\x81\x6e\xf5\x02\xce\x6e\x31\xb7\xed\x51\x59\x25\x89\xcf\x0c\x72\x54\xcc\x4d\x5a\xd7\x76\x4b\xa6\xc5\x3c\xa3\xd5\x09\x9f\x9c\x16\x77\x56\x38\x0d\x73\xf0\xf8\x19\x87\x79\x2f\x9b\x4e\x2d\x4c\x73\xc6\x90\x33\x0f\xe3\x9e\xc5\x8e\xac\xe9\x3e\x1a\xc0\xc5\x14\x1c\x52\x1c\x7b\x86\xb1\xb4\x4e\x72\x68\x95\x06\xc1\x09\xa2\x68\x4f\x43\xcb\xb1\xcc\xa1\xdd\xed\x92\xa3\xd0\x1a\xfb\xbe\xe9\x51\x24\x58\x70\x04\xb1\xb6\x6f\x5b\xae\x35\xb3\x03\xab\x5c\x5d\x44\x19\x5f\xc6\xc5\x24\x57\x9a\xc5\xb6\xde\x15\x75\x70\x06\xbe\xed\x62\x66\x0b\xa6\x60\x96\xd8\xa4\x65\x9a\x5c\xb0\xb3\x30\x2d\x40\xde\x17\x59\xb4\x12\xb6\x57\x11\x38\x72\x23\xb3\x2c\x3c\xb4\x02\x32\x8d\xe1\x34\x9b\x54\x47\x15\xf5\xd2\x2b\xb0\xad\x22\x96\x97\x3f\xa7\x6b\x49\xc3\xc4\x31\xce\xc0\x11\x87\x37\x1e\x7d\xf2\xf3\xe0\x6f\xb2\x58\x38\x5c\xba\xef\x3b\xa3\x7b\x58\xad\xa8\xdb\xac\x88\x80\x59\xa4\xad\x8a\x77\x4a\xa5\xf2\x6d\xd1\x2a\x62\x96\x1f\x94\xe7\x46\x57\x24\x59\xc7\xc9\x39\x3c\xec\x33\x35\x13\x06\xcf\xcf\xce\x72\x22\xdf\x16\xbf\x89\xf3\x93\x9b\x64\x45\xdb\xc2\x7c\xd0\xf0\xe8\xfc\x26\x59\x1d\x47\x9b\x4d\x2e\x33\xae\xe3\xf5\xeb\x9c\x64\xa0\xbe\x53\xe5\x4b\x13\x20\xc3\x8b\x28\xcb\x85\xad\xc2\xfb\xbc\x62\x6a\x14\xd2\x01\xf1\xd7\x4c\x17\x51\xb2\xde\x10\x59\xab\x3c\x64\xd4\x51\x31\x4b\x20\x0a\x6d\x86\x34\x27\x56\xb9\xfa\xe6\x06\x7b\xab\x06\x4d\x0b\xb1\xa1\xa2\x99\x8c\x46\x73\x51\x75\x02\xa9\x10\xb1\x57\xb7\xa6\xa9\x74\x84\x7c\xbb\x54\xeb\x0d\x6e\x0e\x08\x50\x41\x75\xba\xca\x37\x60\x5a\x07\x70\xd4\xd8\x95\x0e\x0c\xf2\xd6\x5e\x32\x27\x7c\x70\x69\x68\x30\xb7\x97\x68\xa2\x1a\x23\x48\x13\x43\x9a\xc0\x15\x8f\xc6\x2a\x04\x45\x09\xd2\xed\x12\x03\x95\xf7\x64\x1d\x9b\x6e\x94\x46\x8e\xef\x0e\xef\xcd\x43\xac\x8b\x64\xf7\x34\x2a\x9a\x7a\x64\xd8\xb0\xf8\xb6\xe8\x40\xa9\x83\x75\x54\x44\x07\xeb\x38\x5f\x45\xd9\x9a\xac\xf1\xc1\x75\x4e\x0e\xce\x36\xe9\xbb\x03\xba\xed\xcc\xd2\xcd\x41\x91\x1e\x44\x40\xe6\x4d\x9a\xc7\xc9\x39\x14\x58\x74\x98\x9d\xae\x26\x99\x1a\x66\x90\x5b\xc7\x85\xca\x63\xa8\xf6\x6a\xad\x6d\x20\xfc\x28\xbc\x52\x20\x0c\xed\x10\xe7\xc1\x09\xc9\x60\x54\x18\x68\x92\x93\xe2\x55\x7c\x49\xd2\xeb\x42\x75\x5d\xa4\x66\x41\x2d\x1d\xf8\x29\xa8\x94\x2a\x74\x42\x09\x13\x1e\x9a\xca\x31\xed\x76\xfb\x30\x2a\xc8\x20\x49\xdf\x19\x48\x75\x55\xdd\xa4\xf5\xb4\x49\xe7\x86\x21\x45\xa5\xd4\xbc\x99\x7d\x89\x85\x73\x84\xa8\x9a\x3c\xe1\x6c\xae\x82\x43\xc2\x69\x85\x50\x3f\x9e\x86\x96\x3d\xbb\x93\x6a\x26\x26\x48\xf8\xec\x57\xe3\x63\x5c\x79\xda\x82\x2e\xc9\x07\xab\xa8\x58\x5d\x80\xc3\x2a\x03\x3c\x88\x7f\x1d\xaf\xb2\xb4\x88\xf2\xef\x18\xe8\x5b\xc6\xbe\xa4\x44\x08\xbf\xc8\xd2\xcb\x38\x27\x83\x8c\xe4\xe9\xe6\x2d\x31\x0e\x2d\x84\x10\x1a\x14\x17\x24\x31\x88\x38\xe9\xcc\xea\xc3\xb1\xad\xdd\x30\x49\x76\xbb\xd5\x7c\xa0\xa6\x4a\x19\xa2\xf4\x78\xbf\xea\xf1\x3a\x35\x90\x72\x26\x7c\xbf\x5e\x9a\xb5\x8c\x90\xa9\x27\x7d\xf0\x6b\xb3\x51\x8b\x3c\xaa\x3c\x62\x69\x10\x1a\x1c\xd7\x94\x4b\x77\x94\xd4\x47\x2c\xc2\xf7\x19\x1c\xc2\xa9\x5f\x4b\xcb\xe5\xa0\xaf\x30\xa8\x25\xdc\x3d\x9d\xa2\xb6\x09\x91\xbf\xa1\x2d\x4b\x7d\xb5\x90\xd0\x05\xc8\xa7\x5a\xda\x2c\xd2\x97\xe7\xa7\xf2\x0a\x15\x2c\xab\x1e\xa7\x9b\xb4\xb6\x16\x89\xc3\x2f\x7e\xd7\x98\x2f\x16\xeb\xa8\x7f\xb6\x44\x8b\xc5\x17\x3b\x3e\x3e\xdb\x56\xd9\x6e\xed\x52\x4b\x6c\xfb\xd6\xf2\x3b\xb5\xf4\x96\x6f\x2d\xbf\x5b\x4b\x6f\xf9\xfe\xec\x0b\x9c\x87\x5f\xfc\xae\x88\xea\x7d\xf6\xc5\x44\x5a\xd7\xcc\xea\xf7\x45\x85\xb0\x06\x6b\xf9\x08\xe7\xa1\xb0\x00\x77\x64\xcf\x40\xc9\xbe\x17\x07\xb1\xd0\xb6\x2e\xb8\x96\xb5\x1b\xf0\xc1\x1d\xcf\xcd\xa5\xd0\x24\x16\x6b\x49\xa1\x7a\xc3\x23\x8c\xbc\x97\x23\xce\x93\x26\x76\x90\x54\xa9\x11\xf9\x7b\x39\xed\x61\xa5\x0b\xd4\xfb\x69\xd0\xbb\x51\xe7\xf5\x02\x30\x56\x94\x18\xe8\x18\x07\xaf\xba\xd2\x61\xdc\xa2\x93\x9d\x9f\x06\xa0\x17\x51\x84\x05\xaf\xda\xad\xe6\xf1\x78\x40\xde\x93\x95\xc1\x44\xa0\x62\xc2\x85\xcc\xad\xe5\xcc\xf2\x02\x32\x77\x97\x33\xdb\xa3\x81\xe1\x72\xe6\x9a\x63\x2f\x80\x7b\x65\xe1\x77\x0c\xcc\x3d\x66\xe9\x75\xb2\x36\xa4\x49\x5e\x5a\x76\xbb\xa5\x25\xe9\xef\x10\x7e\x2d\x73\x89\x2d\x1f\x7d\x51\x7c\x6e\x7b\x1e\xc2\xed\xc5\x6c\xc8\xea\xc1\xef\x88\x15\xb3\xee\x51\xcc\x81\xac\x3e\xfc\x8e\x59\x31\x5b\x2d\xb6\x2c\xe5\xe1\x7d\x9d\x38\xbf\xb5\xe8\x20\x2a\x83\x24\x69\x2c\x84\x73\x41\x92\x6e\x77\xee\x60\x1f\x8f\xb1\x65\x2f\x07\x71\xb2\xda\x5c\xaf\x49\x6e\x88\xbd\x15\x42\xca\xc4\xc3\xe3\xbe\x70\x70\x1c\xce\x4d\x6c\x62\xb3\x6e\x7b\xd0\x01\x5f\x2d\x4d\xfb\xc5\xa2\x62\xf2\x79\x8e\xc9\xe7\x79\x8f\x20\x8a\xf9\x24\x9e\xe7\xcb\xd0\x62\xfb\x94\xa3\x23\x37\xb0\x59\x10\xee\xd1\xc8\x2c\x9b\x4e\xdd\x20\x9b\x4e\x47\x62\xd3\x12\xc3\xfd\xaa\x3a\x90\x35\x2d\x02\xcb\xe7\x35\xcf\x63\x9c\xe3\x64\x19\x12\xde\x7f\xdf\x52\xee\xf8\xec\x36\x63\x8e\x10\xbe\xa0\xa1\x5c\x86\x12\x1a\xfa\x96\xee\x71\x86\x43\xf3\xd3\x44\xcc\x8b\x07\xbf\x7c\xfa\xfc\xc1\xc3\x37\x4f\x9f\x7c\xfd\xe4\x55\xa5\x91\xa1\x47\x5b\x64\x58\x62\xdf\xf1\x3e\x79\x3f\xf5\x70\x95\x7f\x05\x0b\x7e\xba\x13\x7e\xb8\xca\x41\x84\xb6\x6c\xad\xa4\xf1\xa5\xd1\xd0\xb5\x99\xf5\x25\xda\x54\x84\xc1\x9c\xab\x5a\x74\xb7\xfa\x02\xdb\x59\x64\xd2\x37\x03\xdb\x2d\x82\x87\x54\xdd\xa4\x58\x98\x4a\xfb\x0d\x8a\x45\x26\x51\xfe\xf1\x69\x08\x53\xbf\x70\x0f\x90\x17\xd1\xea\xbb\xf0\xf6\x2a\xba\xce\xc9\x3a\x38\xb4\xf0\x26\x4d\xaf\x5e\xa4\x79\x4c\xfb\x34\x30\xf1\x59\xb4\xd9\xbc\xba\xc8\xd2\xeb\xf3\x8b\xe0\xd0\x2a\xeb\xe6\x1a\xee\x83\xd6\x8e\x9a\x05\xb6\xd2\xd8\x02\x27\x25\x13\x95\xd2\x67\xb9\x5e\xcd\x9c\x54\x96\xc0\x95\xb8\x70\xbe\xac\xb9\xa3\x56\x53\xc5\xaa\x28\x96\x4b\xd6\x5b\xde\x8c\x00\x30\xaa\x64\x94\x18\xb0\x05\x9a\xf4\xad\x43\xb0\x0a\x1b\x4b\x27\xa8\xcc\x23\x26\x28\x07\x48\x54\xeb\x64\x00\xfc\x34\x07\x17\x4a\x4a\x99\x93\x82\x97\x7c\xcc\xa7\xed\x06\x84\xc7\xa7\x21\x91\xd6\x05\xe5\x7a\x9f\xd1\x4a\x08\x84\x9a\xf1\x7a\xd6\x87\x03\xd6\x85\x33\x35\x4a\xed\xcb\xbe\x15\xb4\xc0\x52\x4d\xde\xab\xc9\x73\xb2\x1c\x5c\x27\x17\x69\xfa\x1d\x5d\x09\x4e\x9a\xf5\x54\xdb\x88\x76\xae\x2b\xa1\xac\xb6\x7b\xd2\x6c\x46\xf2\x7c\x44\x07\xd2\x20\xd9\x76\x9b\xe2\xfb\x90\xa0\xb5\x51\xd2\x67\xb7\xd2\x28\x40\xab\xe0\x2a\x7f\x35\xca\x1b\x0a\x66\x78\xd1\xf9\xea\xf9\xf3\x9f\x2d\x3a\x54\x36\xd1\x9d\xbc\x62\x1e\x7b\x0f\x3e\xf9\x0e\x7c\x72\x8a\x4f\x5e\xc7\x27\x5f\x0e\x2a\xd0\xf7\x41\xe9\xc5\xeb\x57\x8b\x0e\x06\xc3\x61\x9a\x2e\x17\xe2\x30\x50\xc9\x3b\x8d\xf0\xad\xcf\x0e\x74\xf9\x69\xd7\xa1\x85\x77\x20\x8c\x33\x6e\xb3\xab\xd9\xf3\xdd\xae\x91\x87\xbb\xb9\x0c\xc7\x61\x21\x74\x58\x78\x06\x45\x86\xe0\x56\x4e\x42\xf8\x30\xeb\x76\x0f\xe9\x34\x14\x73\xb5\x09\x4a\x30\x38\x30\xab\x13\x4c\x34\x10\xe1\x43\xf3\x90\xe6\x07\xb2\xc6\x67\x46\x7c\x10\x27\x79\x11\x25\x2b\x92\x9e\x1d\xf0\xed\x8c\xbe\x0d\xd6\x6b\x35\xf1\xae\x46\x88\x7b\xea\x26\xfa\x94\x62\x31\xad\xb0\x94\x48\xca\xea\x77\x61\x4a\x9b\xf7\xa7\x83\x9b\x89\xe3\xf2\x1e\x4c\xf4\xfa\x19\xe7\x6c\x22\x06\xf6\x8e\x21\x5c\x72\x91\x1a\x71\x17\x69\x2f\xa2\x2c\xba\xcc\x27\xd1\x20\x5a\xaf\x21\x6c\x98\xb5\x59\xb0\x39\x7d\xd5\xe5\x9b\x1c\xf1\x6b\x61\xe4\x4f\xec\x57\x00\x78\x18\x89\x49\x23\x2e\x9e\xc6\x97\x71\x11\x1e\x5a\x5c\x94\x08\x40\x3c\x23\x91\xde\x59\xb7\x5b\x32\x60\x91\x73\x73\x39\x23\x03\xee\x70\x25\x88\x76\xd4\xa4\x82\x56\x46\xb6\x9e\x28\xac\x0f\x41\x69\xf0\x5b\xb8\x63\xc8\x29\x95\x08\x8c\x12\x7d\xbd\x21\x27\xac\xdd\x88\x98\xca\xc8\x15\xda\x95\xea\xf8\x13\x39\x11\x44\x4b\x7d\x6c\xb6\xa2\x54\xc9\xab\xd4\xa4\xd1\x15\xe1\xa2\x8d\x05\x25\x0f\xb2\x8d\x3e\x9c\x14\xb4\x76\xc7\x1e\x1a\xc2\x71\x84\xe6\xe2\xfb\x43\x0a\x17\xa0\x6d\x61\x5a\x9f\xac\x6e\xf1\x28\x5f\x45\x57\xe4\x84\xfc\xea\x9a\x24\x2b\xc2\x97\x53\xc5\xe0\xe7\xaf\x3c\xd3\x7c\xf3\xea\xe5\x83\x67\x27\x4f\x5e\x3d\x79\xfe\xec\xcd\xab\x07\x5f\x3e\x7d\x14\x16\x83\x57\x59\x94\xb0\x21\xf5\x2a\x3a\xdd\x90\xb6\xf3\x70\xb7\xbe\x68\xf3\x6d\x1a\x4a\x69\xc8\xf1\x2c\x71\x46\x1e\xb5\x32\x7c\x01\x50\x6b\xb7\x56\xcc\x7e\xe8\x43\xb6\x19\x53\x8c\x92\x42\x66\x76\x61\x43\x8e\x8e\xdc\x6d\x81\xca\x68\xbd\x56\x5c\x85\xc8\x4c\xf3\xe2\xe8\x68\xb4\x25\xcb\x30\xa6\xf9\x72\xe6\x7f\x3d\xb9\xa9\xb2\xea\xae\x58\xa4\x66\x62\x26\x9c\xaf\xa8\x50\xe6\xd9\x52\x02\x2a\x9b\x24\x89\x2a\xdd\x40\xdf\x9c\xec\xa4\xa5\xdc\x01\xe8\x3e\x8e\x22\x83\xee\xe2\x10\x2e\x42\x68\xfb\x20\xba\xba\xda\xdc\xc0\xc2\x10\x33\x62\xd8\x9e\x8f\x10\x37\x47\xce\xd6\xfc\x05\x42\x38\x0e\xc1\x51\x5e\x38\x95\x1b\x16\x3a\xc8\xc0\x2d\xb8\x8d\x2d\x7b\xc8\xfa\xc4\xc4\xb6\x8b\x84\x2d\x70\xdb\x43\x98\x05\x79\x25\x19\x8e\x0d\x7b\x84\x1d\x1b\x89\x55\x61\x02\x65\x2c\x97\x9b\x34\x87\x3d\x53\xca\x9c\x3e\x29\x1d\x62\x61\x13\x61\x32\x10\x34\xcd\xb1\x89\x6d\x1a\x95\xa0\x2a\x72\x6e\xbb\xd8\x06\xad\x1a\x0c\x17\xad\x29\x76\xf4\x52\xb1\x61\xd9\x23\x6c\x51\xee\x69\x4b\x73\x5d\x6c\x79\xb6\x9e\x66\x58\x9e\x8f\x53\xba\x9b\x13\x11\xf6\x10\xa7\xd8\xb2\xb0\x55\xe5\xa0\x31\x2e\x1e\xa9\xe0\xe6\x16\xe8\xf4\x8c\x30\x5c\xf2\x52\x00\xc3\x2a\xbf\xc7\x20\x38\x32\xc6\x75\x59\xcc\x58\xf1\x5c\x26\x20\x65\xd8\xac\xe3\x9a\x61\x0b\x3b\x0a\x02\xf6\x10\x83\xe3\x41\x3d\xcf\x08\x9b\x3a\x4e\x19\x76\xe8\xff\x6a\x31\x87\x02\xd7\xf3\xb8\xd8\xc1\xae\x9a\xc7\xc5\xa6\x8c\xe0\x79\x7c\xec\x60\x5f\x8f\xf2\xb0\x83\x3d\xb5\x98\x87\x4d\x19\xc1\xf3\xd8\xd8\xc1\xb6\x9a\xc7\xa6\xdd\x28\x22\xc6\x0e\xb6\xea\x64\xcc\xf1\x08\x7b\x32\x0a\xca\xa8\x11\x82\xd4\x3e\xa6\xc0\xa0\xf7\x87\x4b\x3c\xc2\x7e\xbd\x6f\x19\xcb\x35\x49\x32\x1f\x8d\xf0\xd8\xc5\x63\x6f\x09\x14\x1c\xea\x75\x0f\xeb\x51\x99\x16\x05\xbc\x31\x54\x79\x83\xe2\xa7\xe5\x18\x5b\xd8\x52\xbb\x9a\xa3\xe3\xbb\x6c\xbc\x38\x34\xb7\x9e\xe4\x8e\xb0\x6f\xd2\x94\x91\x4e\xf4\xb9\x6f\x62\xdf\xc2\xbe\x8d\x7d\x67\x89\x1d\x3c\xd6\x93\x65\x41\xb7\x5e\xb0\xaa\xcd\xad\xd7\xa6\xc3\xa4\xfd\xec\xeb\x25\x41\x8f\x04\x51\x72\xca\x14\x68\xa3\xdf\xcc\x2a\x2a\xf1\x15\x7a\x54\x50\xdc\x11\x02\x9c\xbd\xd6\x14\xaf\x99\x42\x5b\xe3\x22\x60\xa2\x1d\x15\x79\x4d\xda\x71\x70\xee\xce\x8a\x2c\x3c\x96\xfc\xa6\xa7\xd8\xcd\x14\x77\xc4\x2a\xb2\xb1\xd5\x68\x92\x3b\xc2\x23\x93\xc2\x6b\x26\x8d\x2c\x3c\x1a\xb5\x25\xcd\x47\x63\x3c\x36\xf1\xd8\x5e\xb6\x96\x1b\xfb\xac\x3a\x2d\xcd\x18\x99\x8c\x81\xc6\x3a\x1b\x8e\xb1\x29\xa3\xa0\x47\xd4\x08\x9d\xe7\x5b\x52\x78\x9b\xc7\x70\xae\xd5\xca\x45\x63\x3c\xc2\xd6\x1e\x5e\x81\xa2\x75\x99\x04\x32\xc8\x6a\x54\x65\xd9\x94\x1c\x6d\x89\x1c\xc3\x96\xb4\x0c\x88\x50\x55\xc1\x64\x9c\x16\x55\x83\xd1\x96\xc6\x1b\x63\x99\x77\xb4\x86\x15\x6e\x62\x0e\x2c\x63\x36\xa8\x94\x61\x8b\x0a\x2e\x4b\x13\x65\x7a\x54\x0d\xb9\xb6\x34\x01\xdf\xde\xd1\x0b\xae\x28\x67\xb5\xf3\xbf\x65\xc3\xbf\x1d\x92\xc5\x32\xf7\xa5\x8e\x9b\x89\x19\xb6\x1c\xf6\x4f\x97\x81\xb5\x58\xd6\x56\x3a\x6d\xe8\x19\xe7\x34\x9a\xca\x61\x2a\x84\x97\x50\xc4\xad\xb8\xf8\x42\x4c\xd7\xe2\x53\x93\xea\x17\xba\x80\xb9\xa8\x31\x04\x8d\xa8\x90\x28\x0d\xb1\xb8\x5b\x49\x05\x88\x7c\xa7\x02\xc4\xce\x65\x66\x5d\x33\xa2\x90\x0b\xac\x5c\xee\x83\xe0\x80\xf6\x84\x9d\xc2\xe5\x45\x54\x90\xc0\xc4\xe2\x00\x24\x98\x2f\x45\xf8\x45\x9a\x07\x26\xae\x00\x04\x26\x5e\x5d\x5c\x27\xdf\x41\x7c\x29\xb4\xa8\xe3\x22\x8e\x36\x27\x14\x8a\x38\xf7\x5b\x5d\x67\x19\x49\x0a\x16\xd7\xc8\xa5\xef\xbd\xd4\x5d\x9e\x96\xa2\x6f\xf8\xd8\xbd\x53\xba\xd9\x90\x95\x3c\x5e\xbc\xca\xc8\x8a\xac\xe3\xe4\xfc\x2f\xa4\x71\xa2\x21\xf0\xe6\x2a\x8b\x13\x79\xec\x75\x1a\x56\xcb\xfc\xca\x43\x29\x59\x5d\x17\xa4\xca\x42\x94\xc4\x55\x1e\xeb\x65\xb5\x92\xf9\xaa\xbd\x14\xc9\xb2\x34\xd3\x92\x48\x0b\x36\x61\x1b\x82\xad\x48\xed\x3b\xde\xac\x30\xdc\x97\xab\x42\x75\x4f\x2e\xa9\x87\x02\xdb\xcd\x22\xad\x18\x0e\xc9\x1b\xdb\x0f\xa8\xf2\xde\x4d\xb8\x03\xb9\x52\x7a\x56\x79\x93\xe6\x2b\xb1\xb5\xba\xa8\x2b\xce\x24\x83\xe7\x22\x55\xee\x8a\xe5\xc1\x76\x33\x7b\x5a\x1d\x7b\xa3\x96\x6e\x0b\xdb\x7a\x52\x27\xd3\x23\x89\xb6\x71\x7b\x16\x27\xd1\x26\x10\x66\x96\x4a\xe6\xbd\x05\xf6\xd5\xec\x38\x23\x3e\x8b\xd9\xd1\x72\x38\x07\xf9\xe4\x2f\xc5\x21\x18\xbc\x4d\x22\x94\x83\xcf\xe2\xf7\xdc\xb3\x1f\xfb\x90\x27\x0c\x2d\x7a\x1e\x69\xb2\xb9\x39\x48\x13\x72\x70\x7a\x53\x90\x83\x28\x3f\x60\x45\x0e\xf2\xeb\xab\xab\x34\x2b\xc8\x9a\x6b\x73\xc4\xa1\x84\xa6\x99\x66\xc7\x71\xb7\xeb\x9b\xd3\x78\xbb\x8d\xa7\xbe\xd3\x52\x01\x87\x77\x79\x9d\x83\x5b\xc0\x38\xe1\x6e\x04\xcd\xf7\xce\xea\x60\x30\xa0\x7f\xcf\x16\x1d\x54\x02\xbe\xf0\x7e\xe2\x92\xac\xe3\xa8\x20\x39\x6f\x83\x16\xa7\x58\xd8\x6f\x6f\x4a\xf1\x2e\x85\xa6\xe4\xb4\x2d\x5a\xd1\x83\x28\x23\x7a\xb3\x74\xef\x55\xed\x35\x81\x33\xe1\xca\xa8\x7e\x2d\x8f\xea\x90\x00\xc8\xe4\xd8\xd3\x7c\xbb\xcd\xa7\x6e\x9b\x4e\x8d\x5a\xb6\x8d\x20\xb6\xc9\x08\x62\x9f\x01\xd1\x8f\x8e\xc2\x11\x8e\xb7\x61\x5e\x52\xe2\xc0\x31\xfe\x00\xd8\x43\x9c\x7e\x36\x6b\x80\x64\x09\x3a\x3a\xc8\xe3\xe4\x7c\xc3\xfa\x96\x82\xac\x9a\xc1\xe0\x34\x1c\x0a\x14\x73\x73\xc9\x1a\x50\xcc\xad\x65\xd3\x11\xa4\x0e\x5f\xa2\xfe\xd9\x2d\x2d\x58\x52\xec\x69\xd0\x5a\x96\x95\x53\xc7\xaa\x19\x38\x2e\x81\x85\x2b\x0f\xa2\xd5\xf5\x29\x77\x3d\x36\x21\x13\x54\xb0\xcd\x70\xdb\x8b\x59\xdb\xf3\xba\x04\x21\x4c\xa6\xd3\x70\x54\xf9\xcb\xc8\xc8\x5b\x92\xe5\xc4\x40\x83\xdf\x4b\xe3\xc4\x58\x74\x28\x3f\xe5\xa4\x78\xa1\x08\x44\xe5\xdc\x4d\x95\x9c\x84\xdd\x83\x68\x39\x5b\x33\xb6\x89\xd8\xb2\x65\x00\x6b\xf7\xe3\xca\x31\xa4\x18\xb7\x73\x58\x28\xfb\x4b\x34\xa9\xdd\x0c\x29\xb2\x6b\x1e\x2b\x6e\x62\xb5\x68\xe5\x7e\x28\x6f\x2d\x27\xdd\x4e\xde\x71\x45\x94\xb7\x5d\x11\xe5\x6d\x57\x44\x6a\xdb\x04\x65\xd4\x3a\xf7\xb5\xb1\x7e\x87\x74\xef\x72\xb4\xf7\xaa\x8a\x9b\x97\x4c\xfa\x84\x09\xb9\xb5\x49\x42\xf5\x93\x53\x9b\x3e\xe6\x44\x67\xfb\x65\x58\xf0\x86\xd6\x20\xdc\xb7\x7c\xc3\x11\xfc\xfe\xec\x4d\x64\x5b\x9a\xd7\x58\x49\x48\x56\x3b\x96\x53\xe6\x5d\xac\xd6\xe0\x30\x65\xb6\x55\x39\x4c\x8f\x6e\xe1\x30\x3d\xc3\x8f\xcf\x61\x6a\x93\x50\x73\x65\xd0\xc2\x29\x0d\xa2\xdf\x95\x9d\x12\xbd\xaa\xa6\x49\x70\x6d\x75\x56\x11\xbb\xba\x11\x60\xc4\xd6\x95\x11\xc5\xac\x3f\xa8\x5f\xfc\xb6\x60\x80\x0b\xfe\x1c\x5b\x05\x29\x95\x6a\x25\x24\xed\x52\xb6\x05\x0c\x3b\x76\x95\x20\x9a\x0d\xa9\x40\xb5\xde\xd1\xca\x96\x3d\xaf\x49\x2c\xad\x65\x72\x71\xd4\x68\x19\x91\xed\x78\xde\x22\x16\xaa\x72\xb5\xcb\x65\x8a\xf5\xf3\x3d\xc3\xb9\x2a\xd8\x8e\x35\x1d\x32\xca\xfa\x49\x19\x28\xea\x42\x8b\xcb\x72\x2d\x67\x6b\xc6\xb6\x15\x99\xee\x09\xef\x5e\xbb\x0d\x95\x4c\xea\x8d\xb0\xca\x18\x6a\x3c\xdf\x83\xb4\x46\x7e\xdc\xc6\xc4\x94\x8e\xce\xaa\xdd\xd7\x00\x36\x5f\x72\x74\xd7\x13\x42\xbb\xb1\x5f\x1b\x48\xdd\x87\xf9\x12\x95\x6f\xae\x28\x82\xd9\x5b\x96\xa6\xba\x73\xdf\x01\xb0\xb9\x01\xac\x00\x16\x3b\xd3\x5e\xa4\x79\x18\x37\x53\xab\x8d\x61\x98\x37\x53\xc5\x4e\x31\xcc\x4a\x88\x15\x57\x5e\xdc\x3e\x41\x68\xe2\x24\x34\xc1\x76\x40\xa5\xe9\x5c\x43\x17\x71\x7f\x4c\x3b\x52\x77\xb4\x91\x02\xdd\x89\x8d\xf2\xd8\x43\x4a\xdc\x78\xbb\xb5\xf6\xd5\x42\xd7\x55\x3b\xea\xb2\xb0\xb6\x66\xbc\xbc\x82\x8b\xa3\x03\xfe\xd0\x37\x02\x3d\xbc\xf5\x35\x39\x28\x52\xba\x56\x7f\x1b\xa7\xd7\x74\xad\x7b\x93\xac\x0e\x38\x69\xf1\xc1\x79\xfc\x36\x4e\xce\x0f\xae\xaf\x0e\x28\xf4\x38\x39\xaf\x16\x7f\x45\x13\x27\xd1\x5b\xcc\xf4\xc2\xce\xf4\x17\x69\xde\xb7\xa4\x32\x5f\x7b\xc3\x98\x86\x9f\x03\x16\xaf\x2c\xf6\xe0\x24\x99\xf6\x2d\x50\x2b\x98\x24\xec\x2a\x3c\x0f\x8b\x79\xb2\x34\xf4\x5b\x3d\xb8\x03\xcf\xd1\x24\x61\x97\xd0\xf9\x9d\xf7\xcc\xed\x1c\x95\xe0\x7c\xb2\x8f\xbd\x35\xd3\x84\xf7\xc1\xf2\xcf\x04\x33\x3f\xe0\x4f\xe0\x77\xb2\x5c\xa5\x94\x5d\x09\x1b\x7e\xef\x6a\xbb\xcc\xa6\x88\xed\xd3\xbf\x70\xe7\x84\xa4\x76\xa5\x3d\x0c\xb9\xc1\x91\xdd\x03\x6f\x1b\x5a\x9f\x28\xb1\xd4\xb6\x78\x1f\xd0\x96\x4a\xa0\x92\x64\xfd\x9b\xd0\x90\xf2\xe3\xc4\xc1\x5d\x47\x49\xda\xec\x62\x79\xdd\x3d\x6d\x90\x46\x6f\xe2\x30\x9d\xc4\x47\xc5\xa4\xd7\x8b\xd1\x2d\x1f\x84\x94\xac\xf1\x12\x8b\x21\xab\x9c\xca\x89\xdb\xd1\x7a\x6d\x47\x47\xa3\xad\x91\x1d\x59\xbe\x39\xcb\x82\x0b\xb4\xc4\xc9\x74\xea\xf2\x51\x6b\x07\x95\xf2\x4f\xdc\xb3\x26\x4c\xff\x92\xb2\xfc\x34\x2c\xb6\x5b\xa8\x2d\x5f\xa2\x23\xc7\x06\xe3\x22\xb6\xcf\x7d\xa4\x37\x77\x46\x06\x81\x2b\x5c\x1c\x87\x54\x62\x30\xd5\x77\x30\xbc\xf3\xef\x2c\xa4\x52\x35\xcf\x19\xb4\x6f\x04\xb2\xe5\x6c\x57\x82\x81\x5a\xcb\x3c\x3e\x35\xc4\x91\x52\x1b\x33\xa9\xc3\xcc\x0c\x54\xcb\x85\x81\x9c\xfe\xd4\x45\x8e\x71\x7b\x25\xf4\x21\x63\xbc\x4a\xd7\x24\xc8\xb0\xca\x1c\x41\x83\x5d\x30\x1f\x09\x81\x36\x2e\x30\x1b\x38\x81\x3a\x8a\x70\x74\x9a\x66\x45\x70\x68\x95\x68\x00\x41\xa1\x76\xad\xa0\x35\x0c\x84\x69\xa5\x5d\x8b\x76\x5e\x01\xe5\xd2\x8c\xbd\xb5\x8d\xc2\x74\x96\x4a\x6d\xae\xa0\xcf\x9f\x5f\x46\x42\x48\xa7\xf3\x68\xd7\x54\x12\xdd\x5b\x60\x6b\x0b\x1e\x07\xa7\x38\xc2\x09\xc8\x9b\x49\x74\x64\x8a\x57\x6c\xea\x16\xc1\x68\xa2\x5b\xd7\x52\xb9\x4f\xa7\x8d\x82\x75\x2a\xc7\x32\x1f\x85\xde\x38\xd8\x25\x9d\x34\xb1\x3a\x6a\x64\x3b\xb9\x3e\x65\x39\xfb\x16\xaa\x19\xa0\xac\x67\x7d\x18\x9f\xc7\x85\x91\xf5\xdd\x11\x2a\xcb\x77\x17\xf1\x86\x18\xbd\x5e\x7c\x54\x74\xbb\x5c\xa6\xa0\xa9\x3b\xa4\x03\xc0\x37\xd1\x24\xee\xf7\x75\x33\xdd\xb5\xc6\x87\x23\x5d\x6c\x6e\xc3\x4c\x33\xa3\x69\x06\xc2\x83\xfa\xae\x43\x80\x66\xb7\x6f\xc2\xd5\x6c\xd5\xec\xf6\x8d\xe8\xf6\xd5\x7c\xa3\xce\xcd\x9b\x8f\xeb\x6a\x17\xaf\xf0\x46\x74\xf5\xa6\xea\x6a\xf5\x74\xa1\xa5\xab\xef\xd9\xbb\x96\x15\xfc\x68\xb3\xa8\x65\x07\xf5\xe9\x9e\x29\x80\xde\xc1\x87\x35\x6b\xe8\x2d\x02\x5e\xca\x77\xdb\x0d\xc3\x50\x88\xc1\xed\xd6\xf6\x99\x69\x29\x36\xd1\x32\x99\x38\xd4\x64\x62\x85\x0a\x53\x3e\x6b\x08\x45\xb5\x6e\x58\x6c\xdd\x73\xcd\xa2\x4c\xf4\x6d\xbd\xe6\xe3\xf9\x12\x9b\xa2\xdb\xe4\x42\xe0\x47\x98\xee\xef\xd7\xaf\x6e\xd0\xd8\xb4\x16\x51\x56\x18\xfa\xf8\xac\xd3\x3a\xef\xf5\xd0\xee\xb9\x54\xa7\x6c\x05\xf9\x6e\xca\xfa\x2a\x61\xf7\x2d\xa0\xee\xa0\xaa\xf7\x67\x40\xd5\xb2\x75\x35\x94\x94\x65\xb9\x43\x0d\x6e\x55\x62\xdf\x76\xed\x4f\x55\xb1\xab\x8e\x22\xc2\xa2\xba\xeb\x69\x6a\xce\xb1\xb7\x0d\x99\x78\xf8\x90\xb0\x47\x0e\x55\x81\xdd\x8f\x1c\x72\xed\xe6\x90\xab\xa5\x26\x52\x2d\xb5\xf2\xf9\xf8\xf1\xcf\x0e\x3e\xf4\xc1\xc3\xbf\x7f\x9d\x10\xd7\x5e\x27\xfc\xe8\x4f\x40\x12\xf5\xc1\x43\x75\xc8\xc0\xb6\xc6\x7f\x4a\x8f\x1d\xe8\xc0\xbf\xe7\x4b\x87\x36\x7e\xe4\x8c\x5b\xbe\xe1\x32\xad\xae\x78\x5f\xef\x76\x01\x61\xb9\xdd\x26\x3f\xee\x03\x07\x21\x54\xf7\x2a\x82\xe3\x45\xe7\xe4\xd5\x83\x97\xaf\x16\x1d\x54\xbe\xf9\x0d\x78\xdd\xa0\x3e\x6d\xc8\x76\x3d\x6d\x10\xa4\x85\x42\xba\x34\xe5\x27\x40\xb5\x87\x1a\xce\xa1\xce\x4a\x34\xce\x6a\x61\xaf\x49\x01\xe6\x1a\x2b\x47\xe2\x45\xaf\x07\xcf\x98\xbd\x31\x7b\x91\xa0\x56\x62\x57\x55\x56\x93\x17\xdd\x12\xc5\x47\xee\x68\xbb\xf5\x86\x47\x71\x9b\xb5\x06\x28\xeb\xd0\x81\x2b\x11\x88\xd7\x52\x58\xc4\xeb\xea\x39\x6e\xbc\x0e\x2d\xf3\x73\x11\xee\xc5\x7d\x77\x54\xd6\x06\x45\xb7\x1b\xf7\x8b\xa9\x5c\x77\x55\xad\x2e\x4b\xca\xc7\xca\xe3\x0f\xb3\x85\x04\x75\xb2\x34\xa9\x22\x2d\x50\xb0\x36\xb6\x32\xe8\x9f\xe3\x27\x24\x40\xa3\xdf\xfc\xf7\x23\x5c\x24\xfd\xa6\x3c\x1e\xc1\x8b\xce\xa3\x67\x0f\x5b\x9e\x8d\xec\x93\x87\xf0\x5c\x54\x59\x37\x7c\xc2\x03\x11\xf5\xd9\x86\x26\x0a\x7e\xac\x07\x1e\x3b\x04\x4f\xcb\x03\x8f\xfc\xa3\x1e\x78\x30\xb6\xfb\x91\x5e\x77\x7c\xf0\x83\x8e\x0f\x7b\xc1\x71\xe7\x93\x8d\xd1\xd0\xfd\x44\x83\xeb\x4c\xcf\xac\xfe\xf6\xbf\xb2\xd4\xc2\x15\xf0\x72\xd0\x8a\x8b\x57\x07\x67\x59\x7a\x29\x5e\x51\x48\xfd\x07\x30\xd8\x33\x61\x8e\x22\xb8\x60\x12\xed\x98\x54\x47\x80\xec\x01\x42\x9c\xf3\xe2\x60\xb6\xd8\x0a\xcc\x49\x5c\xbd\x8f\x80\xf3\x41\xa9\xe7\x31\x8f\x41\xfe\xeb\xe5\x72\x84\x74\x7b\x5b\xb9\x6a\x6f\xab\xd0\xce\x12\xe8\x82\x4a\xcc\x79\xd5\x22\x3f\x97\xc6\x9f\x0a\xdd\x4d\x7b\xe8\xd8\xb8\x08\x1d\xbb\x9a\x81\x2f\xa3\xf7\x4f\x99\x41\x07\x3e\x1e\x2e\xa3\xf7\x02\x7a\xce\x53\x0a\x5c\x4c\x6d\xcf\x6f\xd1\x67\x69\x66\x66\xca\x27\x49\x0a\x0a\x28\xe7\xb0\x42\xcb\x0e\x8a\x8b\x28\x39\xb0\x3d\x7f\xd1\xe1\x43\x5a\x51\x04\x7c\x92\x14\x8e\x2d\xe8\xcd\x50\xa8\x59\x98\xc8\x45\x0d\xf5\xfc\xd2\xe8\x45\x5e\x43\xb8\x51\xf2\xc9\xfa\xbd\x7c\x22\x63\xf9\x7a\x6d\x6f\x32\x42\xb9\x0a\xce\x5c\xf2\x6a\x11\xc6\x62\x4f\xae\x4f\xeb\x09\x6b\xfa\xfd\x24\x3f\xb9\x3e\xa5\xe3\x9e\x3f\x02\xd3\x5e\xa4\xe4\x35\xd2\xee\x22\xac\xf2\x3e\x82\x6f\xd3\xe8\x5a\x43\x21\x10\xc2\x82\x6f\x42\x85\x30\x98\x28\x2d\xab\x8a\x54\x71\x48\xcb\xf1\x54\x01\x50\x8f\xd5\x32\x3e\x59\xbf\x6f\x83\xf6\x64\xfd\x1e\x00\x6a\x64\x6a\x52\xae\xca\x52\xd1\xac\x95\x92\x34\xa3\x42\xc3\x3a\x51\x31\x29\x8b\x94\xf5\x50\x45\xd5\xf9\xb2\xa6\x0c\xa6\x90\x83\x69\x80\x11\xbe\xab\xa9\x88\x37\x2f\x1a\xbb\x21\xb5\x4d\xf3\x62\x39\x9d\x8e\x70\x1e\xda\x9e\x38\xe1\xaf\x25\x4f\xf2\x7e\x4c\x17\x3f\x1c\x34\x1b\xa4\x57\x59\x5a\xa4\xc5\xcd\x15\xf7\xc4\x31\x58\x45\x9b\x4d\x9d\x62\x70\x20\x20\x87\x20\xd1\xaf\xae\x77\x31\x77\x8d\x75\x3f\x89\x29\xa5\x20\x20\xca\x52\x5b\xcb\xa2\x0e\xb4\x69\xa8\xb3\x2b\x6a\xc3\xc0\x94\x77\xa8\xe4\xa8\xdf\xa6\xa8\x08\x32\x37\x3f\xd8\x90\x3c\x17\x23\xbe\x6f\x81\x4e\x1f\x15\x06\xd1\x66\x93\xbe\x63\x5a\x7d\x6d\xb4\xae\x90\x59\xb6\x33\xea\xd1\xd1\x68\xdb\xce\xc1\x5a\x8f\x57\x70\x7a\xbd\x65\x48\xa6\xf1\x2c\x0e\x48\x59\xaa\x12\x73\x17\x49\x4c\x95\x24\x48\x66\x51\xa9\xb0\x6d\x47\xa1\xa2\x5f\x7d\x7c\xef\xe8\xb4\x3f\x31\x5a\xce\x5b\xf1\x53\x48\xd1\x22\x17\x55\xa2\xf5\xad\x65\xaf\x57\x96\x17\x51\x2e\x5b\x52\x99\x6e\x34\x76\x0c\x14\xb2\x44\xfd\x16\x99\x31\x27\x74\x7c\xa1\xa9\x59\x9e\x93\x42\x03\xa7\x5f\x74\x37\xcb\xe0\x78\xd7\x98\x54\x0e\x31\xe8\xbe\x64\x56\xcb\x32\xc8\xaf\x4f\x23\x36\x33\xe0\x18\x05\xc9\xf5\x66\xa3\x55\xfe\x60\xb3\x51\x64\xca\x6d\x79\x97\x4c\xf9\x31\x84\x87\x41\xe6\x45\x83\xa7\xf9\x8b\xc3\x9a\x98\x90\x07\xff\x62\xf1\x36\xd9\xc1\x85\x87\x72\xbd\x56\x31\x70\x9d\x16\xac\xeb\x03\x95\xa7\x05\xfb\x56\x85\xc4\xfe\xab\xc6\xa1\xe2\x6e\x48\x57\x33\xdb\x5d\x57\xa0\x8c\x41\x9c\x85\xf9\xbc\xe8\x5b\xcb\x09\xfb\x13\xfe\x3a\x9b\x81\x95\x9b\xcb\x38\x31\x2c\xf3\xf3\xac\x47\x68\xdf\x90\xb2\x94\x2b\xb3\xbc\xc4\xde\xf0\x53\x6d\x3e\x3d\x58\xaf\xd3\xe4\xeb\x28\x89\xce\xe5\x49\x61\x3d\x76\xf7\x71\x60\x44\xb3\xe5\xe1\x7c\xa9\x9c\x39\x35\x0e\x46\x20\xcf\xee\x83\x11\x48\x9e\x93\xe5\x40\xac\x96\x07\x12\x56\xb9\x49\xa3\x35\xa0\xa2\xeb\x04\xde\x8a\xac\x41\x81\xc5\x51\x5c\x21\x8a\xe1\x38\x67\x6a\xf9\x70\x7a\x58\x4e\x34\x2c\x60\x42\xa2\x5b\x06\x91\x3b\xac\x6c\x7b\xbd\xcb\xa2\xab\x2b\xc2\xea\xe3\x10\x58\x56\xd8\x46\x45\x05\x38\xe9\x69\xcd\x45\x84\x46\xb7\xac\x59\x37\xce\xc4\xaf\x79\xa4\x3a\xfb\x51\x0b\x65\x26\x31\x3b\x48\xd7\xa8\x12\x2f\xc3\x30\xa4\x1b\xb0\x30\xae\xce\x31\xd8\x09\x45\x8b\xf4\x3b\x4e\xaf\x37\x6b\x90\x74\xbc\x71\x07\x51\x72\x00\x90\xa8\x28\x2c\x0e\x2e\xa2\x9c\x2f\x30\x49\x72\x40\x49\xcb\x64\xa1\x8a\x37\x15\xe7\xb2\x03\xf8\x63\x5d\x22\x7b\x46\x1e\x34\x30\xc4\xf9\xc9\x66\xc1\x4e\x36\xf1\x68\x38\xfc\x64\x83\x3d\xcc\x9a\xd9\x83\xab\xf8\xe7\x31\x79\xd7\x3c\xb8\x76\x86\x23\x8f\x1d\x5c\x83\x75\xdd\x7a\xfe\x96\xcd\x6b\xa5\x2e\xcb\x6c\xab\x89\xd5\x3a\x38\x60\x2b\xca\x38\x61\x62\x43\xdb\x5b\x69\x39\xa9\x20\x3c\x58\x5d\x67\x79\x9a\xfd\xd2\x68\xcd\x38\xb8\x51\xf2\xfc\x62\x47\x9e\xf7\x90\xe7\x6d\x4c\xde\x5d\xa5\x59\xb1\x13\x12\xa5\x3c\xe4\x3c\x8d\x72\xb2\x33\x17\x4d\x84\x5c\x8c\x75\x76\x64\xdb\xc4\x89\xd4\xf6\xa7\xb9\x9f\xc6\x09\x69\x4e\x23\x5a\xe6\x73\x42\xa9\x01\xe2\x53\x6c\xd3\x98\xc5\x55\x46\x67\x0a\x81\xd3\xda\x28\x10\x85\xf9\xec\x7a\xb3\x39\x26\x30\x3d\x28\xf9\xb3\x01\x8d\x7b\x18\x15\xe0\xaa\x81\x76\xda\x8f\xc3\x17\x4a\xfd\x2d\x97\x1a\x2a\x47\xa8\x39\xf7\x1c\x69\xd0\x56\x87\x8c\x94\x71\xfe\x0d\x1b\xd9\x75\x6a\xd2\x3c\x03\x99\xba\x87\xec\x90\xb1\x22\x37\x90\x45\xd8\xd7\x39\x34\xc8\x91\x09\x06\x8f\x1b\x79\xab\x23\x01\x61\x1a\x91\x25\xa6\xd1\x5a\x82\xc0\x85\x50\xa4\xa8\xa7\xb1\xee\x11\xe4\x46\x25\xe8\xca\x6c\xa2\x82\x54\x8f\x11\xd8\xe1\x4a\x13\xd5\x5d\x59\x61\x2c\xdb\x3f\x56\x9f\x3d\x8b\x2e\x49\x7e\x15\xad\x68\x77\xb4\xd8\x70\x18\x0e\x2d\x61\xd3\xd8\x37\x99\x11\x07\xc5\xba\x71\x2a\x1f\xf7\x25\xf7\xb6\x6e\xbc\x4a\xb3\x4a\x77\x33\x4d\x18\x16\xc7\x17\x51\x72\x4e\x5a\x1e\x39\x65\xed\xc6\x84\x9b\xa5\x6a\xa0\x98\x39\x61\x5e\x4b\x92\x66\x97\xd1\x26\x54\x87\x8a\x1c\x26\x12\xa7\x01\x1b\x69\xf9\x80\xe5\xc6\x8b\x0e\x0b\x2c\x3a\x52\xac\x6e\x0a\x92\x25\x51\x41\xee\x0b\x29\xda\xd0\x2e\x90\xc5\x2a\x48\x5a\x2e\x81\xf8\x03\x31\x8d\x29\xf6\x2c\x6b\x8d\x02\xdb\x92\x90\xc2\x8e\x0e\x11\x82\x51\x7e\xc0\xbe\xd4\x5b\x13\x1d\x0f\x76\xce\x28\xf5\xf1\x9b\xad\xd5\x8e\x43\x59\xd4\xe4\xc3\x61\x45\x1b\xdd\x6e\xae\x6c\xf9\xa4\x39\x19\x42\x6b\xc9\x01\x2b\x7a\x10\xe7\x07\x09\x89\x8b\x0b\x92\x1d\xb0\xda\xe9\x9f\x03\x95\x72\xd0\x4e\x96\x56\x1f\xd8\x2c\x16\x34\xa5\x77\xf7\x27\x27\x94\x80\x58\x87\x21\x13\x76\x82\xa1\x8d\xa3\x8b\xbb\x96\x61\x93\x96\x78\x38\x1e\x7a\x9f\x7c\x9c\x97\x03\x37\x29\x56\xf7\x64\xd4\x1e\x19\xc9\xc6\xd3\xce\x77\x1a\x5a\x2b\xa1\x41\xad\x39\x0d\x12\x4e\x0b\x83\x0c\xe4\x11\x05\x65\xad\x68\xbd\xde\x07\x6e\x47\x95\xf7\x7b\xc5\xa0\xa1\xa2\xe5\x34\x84\xfd\x12\xfa\xb7\x81\xd0\x3e\xa0\x3b\x2a\xde\xf9\x5c\x6a\x37\x42\xb5\x9c\xb4\xe2\x7d\x85\x77\x15\xbb\xd7\xab\x07\xad\xe2\xe7\xcd\x8a\xf7\x15\xde\x55\xac\x2c\xf1\xd0\x1c\x7f\xa2\x2d\x48\x6e\x5e\x5f\x63\x49\x25\xee\xfe\x3c\xa9\x27\x0c\xae\x75\xb3\xfd\x4a\x2e\xb6\x08\x63\xce\x2b\xf2\xfa\x10\x6d\x2b\x2b\xf2\x2a\x52\xf0\xe7\x2c\xea\x3e\xa5\xb5\x02\x65\xde\x00\xb1\x17\x6d\x2d\x6b\x48\x80\xe4\xae\xab\xf9\x7a\xa0\xf3\xfa\xdb\x28\xe3\x3b\x4d\xb1\x29\x7d\xb3\x26\xab\x34\x8b\x0a\xb2\xdd\xea\x99\x71\xce\xb2\x67\x38\x09\xa3\xec\xfc\xfa\x92\x24\x85\x3c\x1b\x4d\xc3\xe4\xc8\x99\x15\xb0\xf9\x0f\xc3\x30\x9f\x49\x75\x81\x73\x52\x3c\x7f\x97\x88\x4e\x7d\x48\xf2\x55\x16\x5f\xd1\xee\x80\xc3\x02\x38\xdc\x5f\x74\x52\xc8\xbb\xe8\x84\x21\x5d\x59\xa7\x67\x07\x2f\xc9\xd9\x86\xac\x8a\x6e\x77\xd1\x11\x58\x34\x53\x07\x02\x55\x94\x86\xf5\x28\x89\x33\x3b\xa5\xa7\x1b\x28\x8a\x7c\x14\x2a\xf7\xda\x11\xdd\x4b\x46\xfd\x3e\x02\xc5\xa3\x68\x89\xba\x5d\x23\x0d\x0d\xda\x92\xcc\x48\x51\x90\x4c\x69\x80\x82\x49\x51\xc0\x10\x46\xdb\x6d\x2a\xcf\x8f\x93\xa9\xd3\xed\xa6\xdd\xee\x2e\xf6\xa5\xe5\x70\x5a\xf2\xbb\x4e\x49\x60\xd8\xb1\xeb\xd4\x95\xdc\x20\x23\x99\x5d\x28\xfa\x07\x13\x54\x96\x93\x4f\x58\x43\x71\x96\x08\x8b\xc1\xd7\x4f\x9e\x3d\xf9\xfa\xf5\xd7\x6f\x5e\x3e\xff\xe6\x44\xf9\x3c\x7e\xfe\xf4\x44\x5f\x5c\x25\x72\x49\x95\x0a\x53\x59\x11\x5d\x24\xdb\x63\x0f\xe1\x8b\x30\x36\x6c\x6f\xe4\xd1\xf5\xb2\x06\xc2\xc6\xb5\x2a\x2c\xd8\xc1\xae\xc2\x3a\x26\x6c\x79\x26\x16\x67\xa9\xba\x38\x83\xdd\x0b\x64\xae\x0d\x11\x7d\x86\x2f\xf7\x2d\xe2\xe2\xfc\x75\x4e\xb2\x93\x55\x96\x6e\x36\x9a\xfd\xff\x34\x79\x49\xf2\xf8\xf7\xdb\x56\x72\x49\xfb\x4a\x4e\xcd\x2f\x8b\x6b\xab\xb7\x34\x61\x15\xdd\x1f\xa6\x9a\x5f\x16\x57\x61\xae\xd2\x4d\x1e\xb2\xd3\x9b\xe8\xbd\x41\x06\x59\xf4\xee\xf9\x15\x53\x60\xa7\x49\xdb\xad\x89\x75\xca\x0b\xfb\x02\xe9\xbb\x5d\xe5\x68\x92\x5e\x8e\x76\x10\x2f\xc7\x49\xdb\xd2\x82\x48\x76\x1c\x5c\xb3\x5e\xc4\xec\xe4\x8c\x12\x41\xd9\x1c\x03\xbe\x44\xc1\xa1\xd0\xe0\x0e\x94\x02\xb5\x8e\x60\x4b\xc6\x5b\x0a\x20\x20\x98\x96\x0d\x8a\x12\xe9\x27\xf7\x0a\x94\x4a\x25\xa4\xd9\xc5\x65\x0e\x1f\x4c\x3b\xc2\xaa\x9d\x22\x32\x18\xcc\x61\xeb\xa4\xb2\xee\xbe\xba\x20\xeb\x2f\x37\x51\xf2\x1d\xdd\xf0\xe1\xbc\xdb\x95\xf7\x04\x7c\x01\x49\x11\xa3\xb1\xe7\xa4\x78\x7c\x6e\x98\x08\xfc\x55\x9f\x9d\xf3\xa8\x2f\x65\xd4\xe9\xf9\x76\x6b\xe4\x61\x0c\xb1\x02\xa0\xda\xe0\x5a\x5d\x61\x8e\x70\x5e\x6d\x0b\xc3\x62\x22\x0c\x3a\xc7\x6c\x7f\xde\x8b\x07\xac\x3d\xaf\xd2\x2b\xba\xad\xa9\xc5\x7e\x99\x16\x45\x7a\x29\xcc\x74\x2b\x79\x91\xa2\x4f\xc6\x36\xe5\x71\xfe\xf8\x7a\xb3\x99\x24\x90\x4f\xdd\xd4\xf7\xad\x19\x99\x89\xa8\x8c\xac\x6e\x56\x1b\x62\xa0\xc1\x2a\xbd\xba\x79\x9c\xa5\x97\x46\x8e\x02\x91\x0a\xe7\x5e\xb9\xb0\xbc\x58\xc5\xf3\x23\x9c\xa4\x67\x61\x13\x57\xe9\x98\xcc\xda\x3a\xa9\xdb\x35\x62\x76\x46\x51\x31\x29\x8f\xe8\x5b\xd8\x44\x28\x30\x44\x3b\x7b\xad\xbd\xbc\xdd\xf2\xec\xbd\x1e\x73\x16\x5c\x5d\xff\xf5\xb3\x9e\x35\x91\x68\x5d\xc4\x67\xc5\xa3\x0d\x81\x19\xca\xc8\x7a\x16\x26\x7d\x0b\xf7\x2d\x84\x65\x0e\x52\x18\x89\x82\x71\xd9\x5e\x9d\xc4\x97\xe3\x85\x6a\x63\x9e\xb1\x2f\xcf\x84\x38\x07\xd2\xfe\xcd\xc5\xfc\xaa\x9d\xe5\x72\x2e\x84\x0b\x08\xae\xbf\x43\xe7\x4a\x5e\x9c\x9f\xf9\xb5\xb3\xb7\xc9\x1d\xc7\xf7\x78\xee\x29\x2d\x46\x51\x12\xca\x09\xcd\x01\x81\x24\x4f\xf1\x32\x93\xbc\x4e\x7d\x79\x42\xcc\x53\x7a\x04\xe7\xa2\xa5\x26\xc2\xd9\xa1\xc4\x8e\x56\x23\x0e\xb2\xf5\xd6\x0b\xf4\xe9\x24\xd5\x90\xf3\x61\x6e\xcc\x33\xc3\xc4\x17\x83\x27\x5c\x12\xf1\x24\xb4\xc4\x2b\x44\xf7\x25\x63\xf7\xd3\x56\x81\xc7\x17\x74\x17\x52\x88\x1a\xe5\x4a\xb0\x16\xbf\xf3\x10\xfa\x7c\x43\xde\x92\x4d\xe5\x6f\x81\x15\x83\x43\x69\xfd\xe9\x2b\x4b\x90\x15\xd4\x73\x63\x0d\x1a\x5d\xad\x9d\x3f\xa5\x61\xb9\x4a\xe3\x49\x5c\x4c\x0a\x70\x3a\x1c\xae\xa6\x79\xce\x91\x57\xcf\x1f\x95\x2c\x42\xbc\x72\x88\xa0\x28\x6a\xe8\x50\x61\x89\x6d\x0d\x3d\xe7\xdf\x2f\xf8\xfe\x3f\xb5\xe0\x3b\x4e\x33\xf2\x75\x7a\x9d\x13\x7d\x3c\x28\xab\x3a\x58\xb8\xf1\x55\x1d\x5d\xdf\x45\x62\x7d\x77\x11\xde\x3e\x7b\xfe\xec\x51\x70\x0b\x0b\x91\x3c\x30\x71\x46\xf2\x22\x8b\x57\x05\xe8\x29\x1f\x5a\x25\xfe\x85\x65\xca\x64\xab\x4a\x26\xe1\xd4\x05\x2b\x2c\xa7\xd7\x45\x91\x26\xdd\x2e\xf8\x1b\x18\x30\xbf\x38\xdd\xae\x41\x06\xab\x22\xdb\x80\x22\xd2\x20\xda\x30\x8d\x24\x26\xa3\x69\xf0\xd0\x44\x25\xfe\xf9\x2b\xdb\x54\x60\x8f\x35\xe0\x8e\x7d\x58\xc1\x2b\xf1\xc3\x97\x0f\x7e\x2a\xb3\xda\xce\xee\xac\xdb\xad\xa3\xa0\x55\xe2\x07\xcf\x7e\x29\xcb\x39\x3a\xfe\x87\x66\x59\x56\xee\x3c\x56\xaa\xcb\x38\x8e\xfe\xcc\xf2\x03\x13\x6d\x0d\x8e\xf9\xcc\xe5\x5f\xd1\xa6\x98\x8d\x02\x53\xb2\x88\x1b\x56\x55\xce\x8c\x78\x1b\xfa\x2e\x8e\xb7\x12\x27\x3a\xc7\x6d\x43\xa7\x2b\xb2\x60\xb7\x5b\xd1\x8d\x65\x47\x78\x54\x8b\x03\xe3\x77\x8e\xad\x50\x75\x46\x81\xd8\x81\xa9\xb5\xb6\xa0\x13\xd6\x36\x74\x10\xc2\xb1\xf4\x5d\xde\x62\x2f\x06\xaf\xc3\xdb\x87\x8f\x1e\x3f\x78\xfd\xf4\x15\x6d\x7b\x65\x6c\x86\xb6\xfb\xd0\x42\x3d\xc7\xc6\x84\x2e\x7d\x58\x20\x4b\xdf\xf5\x1c\x5b\x5e\x01\x83\x2d\x1c\xdb\xf3\xb6\xdb\x62\x6e\xc9\x90\x0d\xa1\xd9\xa2\xb3\xe8\xfc\xbf\xec\xfd\x0b\x7b\x1a\x39\xb6\x2f\x0e\x7f\x15\xc5\xdd\x13\x20\xae\x60\xc0\xf8\x9a\xd0\x19\x62\x4c\xda\x7b\x12\x3b\xc7\x76\x3a\x7b\x1e\xe3\x49\x0b\x4a\x80\xda\x45\x15\x5d\x25\x6c\xd3\x09\xf3\xd9\xdf\x67\x2d\x49\xa5\x4b\x15\x0e\x3d\x73\xf6\xfb\xfc\xf7\xd9\xbb\xd3\xc6\xb8\xea\x27\x69\xe9\xb2\xae\xba\x1d\xff\x3a\x58\x34\x1a\xcd\xe1\xcd\x87\x1f\xbf\x46\x78\x74\x4e\x6d\x25\xbf\x35\xf3\x6f\xad\xdb\xda\xea\xd7\x55\x70\xf5\xee\xd2\xa1\xa0\xe1\x0c\x1c\x7b\x50\xbd\x19\x6c\xcd\x06\x5b\xc7\x83\xad\x0f\x83\x2d\x7d\xe7\x84\x2a\xe6\xf5\x8f\x5f\x91\xf0\x46\x6d\xf5\xea\xc7\xaf\x48\xb8\xfc\x92\x26\x0f\xab\x1f\xbf\x0a\x55\xd0\x97\x8f\x67\xff\x79\xfa\xfe\xea\xff\x7e\x79\x8f\xf2\xd7\x52\x95\xb5\x42\x2b\xf3\x4b\xa7\x84\x19\x5d\xb7\x87\xae\x8d\x49\xc3\xe0\x73\xa3\xd2\x43\x47\xad\x32\x2b\x4e\x9b\x3b\x77\xf9\x01\x68\x89\x48\xd0\x20\x37\xa7\xa5\xc5\xa3\x24\xe4\xf1\xc4\x7a\x24\x9d\xa8\x8f\x0a\x6b\xaf\x04\x94\x6f\x4e\x55\x12\xfb\x4d\x44\x33\x81\xfe\x4c\x07\x0f\xf9\xd5\xb6\x80\xce\x64\x6d\x8c\x3c\x29\xf7\x82\xca\xd2\x15\xb2\x93\x5e\x11\x4e\x7f\x2a\x53\x8f\x24\x63\xa2\x44\xe3\x1d\x5b\x66\xd5\x69\x4d\xce\x04\xd3\x30\xd4\x49\xab\x2c\x98\xe2\xfa\xbc\x27\x92\x85\x26\x99\xae\x6b\x95\x05\x21\x26\x53\x55\x40\xe5\xbf\x72\xf3\x15\x66\xe7\xab\x6a\x66\xd4\xc7\x2b\x37\x1b\x73\xc6\x8e\x6e\x79\x89\x32\x51\xa0\x3c\x4b\x3f\xce\xeb\xbc\x95\x09\xd4\x20\xc2\x46\xcc\xba\x3a\x94\xae\x92\x59\x47\x5d\xe4\x14\x95\x65\x75\x2b\x5b\x32\xb3\xc2\x48\xa6\x5a\x72\x8e\xa9\x58\xb1\xe2\x41\x57\x8b\xf8\x2e\x4e\x1e\x62\xa2\x51\x64\xb0\xf5\xe3\x57\xb6\x1a\x6c\xfd\xea\x2e\x1a\xce\x47\x16\x5b\x33\x4e\xac\xb9\x02\xa7\x48\x45\xa6\x3d\x6f\x90\x37\x6c\x69\x5b\xe9\xb7\x56\xc5\x4c\x4f\xd8\x15\xb3\xfb\x62\x7d\xc5\x34\x6a\x5d\xc5\x72\xc6\xf0\x96\x97\x15\x18\x0a\x74\xa9\x66\x9d\x02\x4f\x29\xe9\xbb\x86\xb5\x56\x22\xe5\x93\x09\x4b\x4d\xb7\xe7\x4b\x04\x46\x49\x84\x13\x81\xf0\xe5\xa7\x4e\x89\x6c\x50\x01\x02\x14\x7e\x12\x99\x26\x0f\xe5\x48\xf0\xb6\xcd\xf5\xad\x7c\x5c\xb5\x55\xd7\xf3\xe7\x8e\xbe\x71\x70\xbb\x1e\xee\xd9\x1a\x9c\x6b\x14\x54\xed\xfc\xbe\x7d\xdb\xb5\x73\x77\x92\x49\xd5\xb3\xad\x34\xcf\xb6\xab\xf8\xb4\x4d\x95\xb7\x58\xbe\x39\xf5\xf7\x05\x8d\x24\x8f\x54\x3d\x48\xc0\x82\xc1\x96\xd1\x00\x60\x56\x76\xca\xfa\xd4\x25\xa3\xc0\x0f\xe5\x6c\xa5\xad\x88\x2a\xb3\x92\xbb\x73\xe4\x66\xe4\x95\x95\x7a\x5b\x35\xf7\xfa\x89\xe7\xcf\xab\xd6\xe8\x58\x43\xe7\x9b\x82\xf4\xaf\xab\x11\xf3\x96\xc7\x34\x5d\xca\x21\x93\xcf\xf9\x96\xe0\x7a\x54\x50\x85\x02\x3d\x56\x2b\x0c\x43\x50\x6f\x2b\xf6\x38\x8f\x28\x8f\x55\xa3\xe6\xcb\x1c\xbe\x86\xc9\x43\x7c\xfc\xec\x59\xb5\xf9\x9c\xd5\x82\xc5\x1c\xbe\xb6\xe0\x6b\x98\xd2\x09\xfc\xd1\x86\x3f\x66\xc9\x3d\x83\x3f\x0e\xe1\x8f\x87\x29\x63\x11\x26\xd9\x7f\x0e\xc6\xad\xd3\x5b\x66\x43\x0f\x57\xa3\xfc\x11\x84\x5a\xfd\xd1\x1b\x15\x4b\x7c\xba\xcc\x9f\xae\xf2\xd5\x7c\x30\x60\xf0\xe5\x28\x89\xbc\x44\x69\xf2\x80\x6f\xd2\xe4\xc1\x24\xcc\x97\xff\xca\xb1\x89\x77\x79\xe9\x61\xaa\x07\x1a\x3e\xd4\x63\x4e\x59\xb0\x58\x84\x48\x23\x44\x45\x42\x42\x22\x01\x7f\x4a\x73\x16\x1e\xe0\x37\xf4\x85\x0b\xfa\xff\x8b\x76\x87\xe3\xfa\x99\xe3\x28\xd7\x82\xb4\xda\x84\xa7\x27\xa6\xaf\x6a\xb7\xc1\x97\xda\x2a\xd8\x3f\x3a\xd8\xfb\x5f\x27\xee\x7f\x9c\x13\xb7\xd6\x7f\x6b\xb6\x77\x8f\xd6\xf8\x6f\xda\xb9\x1b\xe9\x4e\x1c\xa7\x8c\xfd\xc1\xaa\x5f\x79\x9c\xb1\x54\x7c\x48\x42\x86\x27\x51\x04\x91\x0f\xa0\xf3\x79\xc4\x47\x78\x86\xd2\x09\xae\x43\xfa\x1b\x5b\x66\xc7\xcf\x9a\x81\xf5\xe2\x6f\x6c\x39\xa7\xb8\xa3\x76\x98\xd2\xd1\x1d\x13\x2c\xfc\x48\x33\xc1\x54\xb6\x41\x92\xf2\x09\x8f\xe1\x9b\x3a\x77\xf2\x73\x4a\xe7\x14\x2f\xd9\x83\x87\x19\x8b\xc3\x7e\x32\x5a\x60\xb6\x0f\xd6\xab\xc6\x4a\x5e\xda\x10\x76\xdc\x9a\x6f\x6e\x2c\x03\x47\x6c\x62\x2e\x47\xc9\xc4\xb7\x96\x13\x27\x28\xa5\x4f\xde\xe2\x99\x6c\x85\x33\x79\xb8\x19\xff\xc3\xda\x25\xaa\xdf\xfd\xcc\xc3\x90\xc5\xf6\xd4\x02\x5e\xc5\xb9\xb1\xf9\x6b\xd0\x2a\xa9\x37\xa9\x60\x2e\xf4\xdd\x38\x4b\x2f\x89\x9d\x89\x97\xb9\xd4\x13\x9b\xe7\x6c\xe3\xf3\xe4\x5e\x9e\x97\xec\xf7\x05\xcb\xc4\x95\x8a\x44\xcb\x08\xf5\xe6\x45\x3c\x91\x7c\x5d\xe6\x36\x01\xb3\x24\x64\x59\x07\x45\x2b\xc6\x74\x6b\xd5\x91\xca\x3a\x64\xa3\x8f\x29\xae\x5c\xf9\x50\xc0\x44\xde\x54\xc3\xbf\x9c\x4b\x41\xaf\xea\x59\x88\x7c\x95\x8a\x3b\xd2\xec\xa9\x99\x90\xe3\xa8\xbe\x12\x21\x8f\xdd\x25\xc0\xbc\xd4\x6e\x53\x51\xe4\xdc\xf2\x59\x9f\xb3\x8c\x47\x5f\x98\x61\xf0\xfc\xb9\x0a\x64\x3f\xeb\x74\xb8\x0e\xec\x3e\xdd\xc6\xf2\xbe\xd8\xc0\x94\x66\x0d\x2a\xfd\xce\xe3\xae\x7a\xc8\x86\x8b\x49\xf5\xd7\x4c\x5e\x51\x2b\x6f\xcb\xce\xed\x69\x79\x74\x33\xc3\xb9\x03\x21\x0f\xa5\x95\x97\xc4\x30\x78\xea\x1c\x0a\x5a\xb3\x0e\xa6\x96\x3c\x82\x25\xb2\xbc\xbd\x6d\x7b\xc7\x9c\x9a\xb8\x51\x4b\xe7\xfb\x03\xd7\xd3\x3d\xc4\xdc\xff\x7d\xca\x15\xbb\x28\xda\x6b\xb9\x6d\xa0\xa5\x4e\x68\x45\xc9\x4b\xcc\x82\x69\xfd\xec\x7d\x4e\x23\x3c\x6a\x95\x86\xd3\xc3\xda\x2a\x38\x6a\x1c\xb4\xff\xed\x4b\x2f\xa5\x2a\xe6\x49\x5c\xaa\x83\x70\xd9\x5d\x63\x6f\xaf\x6c\xd9\x9d\xbc\x3a\xa9\xd9\xd8\xaf\xa9\x43\x8a\x1a\xc1\xb4\xd3\x28\x9c\xb4\x1f\xfb\xf3\xbd\x61\x5e\x64\x61\x55\x85\xf5\xaa\x2e\xb7\x67\x54\x6b\x2b\x37\x8c\xef\x8a\x7e\x2b\x41\x47\x8a\x9b\x2b\x3c\xd8\xfa\x3d\xcf\x84\xec\xa9\x37\xf5\x19\x4d\xef\xd4\xa2\x55\x7b\x80\xe5\x29\x2f\x95\xbc\x62\xe1\xe6\x4b\xfe\xd6\xa7\x5e\x93\xb5\x27\x3e\x6d\x08\xd8\xce\xff\x62\xd1\x56\xd2\xb2\x4c\xed\x42\xed\xd3\xe8\xe3\xb2\xd3\xe8\xed\x38\x48\xad\x66\x2d\x9c\xca\x73\xcd\xfd\x52\xd5\xa2\xc5\x15\xec\xf6\x46\xce\x28\x5f\x1c\x6c\x5d\x78\xab\x52\x9a\xd5\xf0\xb2\x68\xb3\x8a\xbf\x56\x7b\x25\xfc\xd7\x5f\x85\xd9\x93\x6b\x0d\x10\x79\xf4\x05\xde\xb8\xbb\xbe\x05\x64\xe0\xa1\x16\x58\x1b\x05\x6a\xab\x5a\xc9\xf0\xa9\x4b\xb3\xa9\x2a\x9e\x1e\x22\x3a\x43\xb3\xf5\x53\xab\x14\x2f\xfc\xb4\x7e\x40\xd7\x2c\x5a\x5e\x15\x61\x78\xe8\x47\xb5\xb6\x7a\x31\x61\xc2\x50\x90\x75\xf3\x35\xc2\xf9\x59\x9f\x9d\x46\x90\x76\x1a\x56\xdc\x2b\x2e\x2f\x78\xc2\xc4\xdf\xd8\xf2\x4c\xb0\x94\xa2\x4d\x5f\xab\x65\x9d\xb8\xae\x04\x67\xfd\xf1\xcd\x1b\xc8\x27\xdb\xae\x9a\x67\x0f\x3c\x14\xd3\x37\x6f\x9a\xb5\x80\xfd\xd4\xc9\x9e\x3f\x67\xaf\xd3\xe7\xcf\xab\xcf\xf8\xb7\x6f\x16\x28\xa2\x4b\x96\xbe\x79\x33\xd8\x1a\xa2\xee\x18\x6c\xd5\x70\xbb\xfe\xf3\xe7\xd5\x25\x67\x51\x48\xe2\xda\x6a\x9c\xa4\xa7\x74\x34\x35\xd5\xb0\x6b\x91\x5f\x85\xe6\x10\xab\x92\xbc\x5d\xfe\x8d\x81\xf0\xaa\x8a\xce\x4f\x5f\x69\x47\xb8\xe4\x4e\x3b\x74\xbb\x2a\xca\xc9\xa5\x40\xee\x54\x93\x2b\xbe\x4f\x6e\x06\xdd\x59\xc3\xe5\x94\x45\x69\x38\x52\xf2\x2c\x5a\x2f\xcf\x0c\x1b\xf8\xe2\xcc\xbc\x51\xcb\xf4\x47\x77\x13\xb4\x83\xf1\x96\xee\xcb\x77\x6f\xad\x95\xf0\xd2\x27\x73\x96\x0f\x4c\xf4\xb0\xd7\x55\xf0\x32\x78\xe3\xa2\x3b\x59\x7d\x94\x65\x75\x91\xe0\xcb\x27\x53\xe6\xc1\x02\x9d\x54\x0a\x7d\x6f\xf9\xc2\x04\xa9\x1e\x27\x29\xfb\x13\x54\xf7\x0b\x54\x7b\x19\xbc\x71\xd1\x4f\x51\xed\xa5\x74\xa9\xee\x97\x53\xdd\x9f\x3c\xb9\x58\x48\x65\xad\xbd\x04\x60\xed\x38\x64\xa9\x12\xb2\x9b\x4b\x61\x99\xac\x53\x96\x89\x2f\xea\xd5\xde\xa1\xcd\x05\xbc\x9d\xc0\x64\xe0\x64\x9b\x77\x9c\x15\x9c\xcf\x9b\xc5\x3c\x93\xe2\xb6\xa3\x25\xb6\xd3\x04\xf5\xe4\x1e\xc6\x38\x7b\xb8\x5c\x44\x2c\x55\x06\xc6\xf3\xe7\xcf\xbe\x8b\xa9\xeb\x03\x14\xfd\x8e\x7e\x12\xdc\x19\x6c\x8d\x17\x51\x34\xd8\xaa\x15\x8e\x1c\x32\x55\x54\x26\x26\xf6\x98\xb5\xb3\x6b\xb5\x0a\xda\xbb\xed\xc3\x7f\xd7\xd6\x39\xc3\x9d\x49\x82\x3b\x0c\x2e\xea\xea\xdb\x89\x3c\xaa\x0b\x48\x2d\x98\x40\xd2\xd3\x46\x13\x68\xb7\xbd\xab\x37\x1c\xc4\x8e\x6b\x5a\xaf\xd7\xcd\x89\xdc\xb1\x48\x39\x93\x26\xc9\x07\x3a\x37\x22\xfa\x46\x04\xfc\x36\x19\x13\x75\x64\x11\x6e\x04\x0f\x38\x9e\xed\x5d\x76\x92\xbd\xca\x47\x6f\xb5\x71\x84\x8b\x7e\xa7\x93\x06\x5c\x8b\x5b\x18\xf4\x85\x12\xdd\x44\xea\x37\x28\x23\x49\xc0\x94\x66\x85\xad\x4d\x1a\x2c\xdf\xad\x24\x11\xe5\x10\xf9\x0e\x44\x68\xb1\x35\xe3\x75\x4d\xff\xc4\xc9\x61\x12\x21\x1b\x50\x9f\x48\xa2\x1f\x62\x8d\xb3\xfa\x59\x59\x9e\x72\xd1\xda\xca\x2c\x05\xb1\xe7\x67\x9c\x0c\x70\x65\xf2\xc4\xc2\x79\x35\xcb\xc1\xaa\x6a\xf2\x1c\xac\x33\xb5\xb9\xad\xca\x82\x7a\xbd\x6e\xf5\x17\x9e\x38\x62\xb2\xeb\xb1\x39\x88\x84\x78\xc4\x59\x56\xab\xb2\x5a\x3d\x4b\x52\x91\xdf\x8c\xc9\xe4\xe1\x5f\x2f\x85\xfc\x5d\xab\x05\x99\xde\x7c\xaf\x2c\x28\x50\xe4\xbc\xb0\x37\xd6\x26\x49\xd4\x79\x88\xf6\xd5\x33\x5e\x9c\xdf\xb8\x71\xa9\xbd\x25\x3f\x7e\x65\xf5\x98\xce\xd8\x8a\x84\x48\x59\x46\x92\x98\x7c\x3a\xff\xdb\xf9\xc5\xe7\x73\xa2\xf2\x25\x3f\x7e\x85\x4c\x57\xf5\x5f\x6b\xaf\xf2\xcd\x8f\xab\x3c\x16\xa5\xf7\xb1\x37\xde\xf0\x9b\xc6\xad\xa4\xfc\x58\xe4\x1b\x12\xc7\x55\xfd\xfd\x59\xa7\x13\x6f\x40\x52\x9f\xa7\xc0\x5d\xaa\xec\x50\x37\xd8\x12\xaa\x6e\xc8\xa5\x82\x68\x09\x42\x7e\xfc\x1a\x6f\x37\x57\x64\x94\xc4\xe3\x88\x8f\x44\x46\x1e\xb8\x98\x22\xd5\x6a\x23\x15\x51\x87\x8b\xe4\x91\x4f\x73\x01\x0b\x50\xc2\x80\x47\x6f\xa0\xdf\xa0\xf3\xb2\x5b\xb9\x32\xfd\x70\x7f\xff\x7f\x23\xae\xff\xa3\x22\xae\x22\xa5\x23\x76\x42\xa3\xa8\x23\x40\x14\x5c\xc3\x9f\xef\x93\xc9\x04\x4f\x42\x34\xce\x77\xd9\x1a\x69\xe5\xf5\x4a\x7d\x40\x3b\x5f\x31\xab\xe3\x04\x52\xe1\xfa\xaf\xd3\x78\x31\xab\x5f\x5f\x76\x4f\x4e\x03\x0c\x2f\xf8\xaf\x7a\xa7\x6f\x3f\xbd\x0b\x78\x3c\x4e\xfc\x37\x67\xe7\xfd\x8b\xe0\x81\xa6\xb1\xff\xe2\x73\xf7\xf2\x3c\xc0\x13\x8c\xfd\x37\xa7\x97\x97\x17\x97\x41\x32\x1e\xfb\x2f\x2e\xfa\x7d\xb9\x2e\x61\x1a\x8c\xdc\x2a\xb9\x61\xd6\x82\x29\x1b\xa9\x5c\x0a\xbb\x15\xd5\xf3\x27\x4d\x2b\x3f\xbc\x6a\x05\x62\x31\x71\xa7\x48\xa5\x42\x2c\xe6\x21\x15\xec\x7d\x5e\xb8\xe7\xb1\x96\x06\x7a\x92\xf8\x6a\xce\x46\x7c\xcc\x47\xd2\xd2\x90\x13\xcd\xd5\xc1\x96\x2e\x6e\xb0\x15\x58\x7b\xd7\xfc\x22\x6a\xb5\x5a\x20\x8f\x6b\x59\x15\xde\x7d\xf5\xe8\xa6\x37\xdf\x0b\x35\x69\xe8\xed\xea\x0b\xbb\xa7\xd1\x7b\xfa\xc7\x52\xbe\xa2\x91\x39\x91\xc1\xbf\x68\x4b\x49\x4e\xb1\xbd\x5d\x2b\x65\x67\x76\x23\x6e\xf5\xd1\x06\xf0\x01\x9e\x2b\x10\xe5\x9e\x80\xb5\xa6\x3c\x0e\x2e\x2f\x1e\x9b\x02\x5d\x96\x44\x2c\x58\xd3\x8c\xa6\x06\x13\x96\xca\x15\x3d\x83\xad\x47\xc1\xd2\x59\xfd\xb7\xec\x98\x0c\xb6\x6a\xdb\x28\x2e\x39\x6e\x17\xb5\x34\x9f\xdb\x48\xaf\xfd\xde\x45\x26\xc8\xe7\x6f\x93\xc9\x46\xc5\x4b\xd6\xac\x0f\x79\x1c\x6e\x82\xaf\xbd\x79\xa3\x6a\x07\x0f\x02\x54\xe9\x32\xaa\xb7\x21\x91\xc8\x8e\x7f\x9a\x48\x2c\xe2\xdf\x22\x12\x04\xc0\xa6\x34\x82\x60\xf8\xd3\x24\x42\x01\xff\x0a\x85\x90\x4e\x92\x08\xa2\x68\x53\x12\x41\x44\xfd\x69\x12\xa1\x80\x7f\x85\x44\x48\x27\x49\x44\xa1\xb8\x29\x8d\x28\x2c\xff\x34\x91\x58\xc4\xbf\x42\x25\x26\x94\x64\xae\x5e\xb9\x22\x58\xc7\x7f\x93\xd2\x55\xd2\x41\x41\x27\x19\x8d\x58\xfb\x3a\xed\xb0\x95\xa3\xc1\x7c\xcb\x05\xed\x06\x23\x4c\x9e\x69\x61\xc2\x65\xf8\xa9\xe4\x20\x88\x38\x11\xee\x85\x80\xb9\xdb\x23\x93\xbc\x52\xbf\x4d\x51\xd2\xd3\xe1\xe3\xea\x34\x17\x7c\xcf\x3a\xa5\xfc\x9f\x5f\x55\xa1\x4e\x87\x80\x36\x0c\x58\xed\xd5\x54\xd6\xa0\xfa\xeb\xbb\x68\x39\x9f\x4a\xef\x99\xa5\x3f\xfc\xf8\x35\x93\x66\x5f\x15\x0c\x40\x1d\x6c\xff\x8f\xab\x8b\xf3\x7a\x86\x0b\x1b\xf9\x78\x59\x65\xb5\x5a\x7e\xc5\x5d\x00\xf2\x69\x55\xfb\xd5\xdc\xeb\xe2\x97\xa4\x08\xf8\x5e\x81\x44\x2d\xfa\xc3\x2d\x1c\x68\x16\xee\x36\xfe\xfd\x13\x96\x5d\x7d\x28\xea\x6a\xa9\xc7\x97\x8b\x8f\xd7\x67\x17\xe7\x57\x25\xa1\x76\x0c\xb0\xa7\xda\xd4\x88\x31\xc0\xde\x6c\xd7\x5e\x15\xd3\xca\x5d\x34\x87\x0d\xb9\x8d\xa6\xd5\x0e\xe4\x91\x12\x6f\x23\x1e\xdf\x1d\x3f\x6b\xaa\x3f\xaf\xc4\x32\x62\xc7\x83\xad\x61\x94\x8c\xee\x06\x5b\xea\xe9\x67\x1e\x8a\xe9\xb1\xc6\x9c\xc5\x72\xc1\x89\xc6\x26\x0b\x11\xf1\x98\x21\x3a\x13\xc9\x0c\x9b\x2c\x3b\x7e\xd6\x08\xc2\x94\x3e\xbc\x4d\xa2\xf0\x9a\x3d\x8a\xb3\xf8\x6d\xca\x27\x53\x81\x91\x19\xf9\x36\x19\xa1\xf5\x7b\x71\xcf\xd2\x94\x87\x0c\xad\xde\x60\x4c\xf5\x24\xd3\x87\x24\xc4\x1b\xbc\x8e\x71\x17\xfa\x60\xcb\x7a\x75\xc5\xf0\xce\x8e\x7b\x2e\x96\xc7\x7b\xc1\x38\x89\x45\x9f\xce\x78\xb4\x3c\x1e\x6c\x8d\x92\x45\xca\x59\xfa\x32\x66\x0f\x01\x51\x7f\x04\x64\x96\xc4\x09\xee\x78\x86\x6c\x92\x58\x5c\xf1\x3f\xd8\x71\x53\x26\xfd\xcc\x80\xae\x63\xb3\x65\xde\x7a\x0a\xd4\x43\x73\x24\x51\x38\xd8\x0a\xf8\x24\x4e\x52\xf6\xb6\x74\x82\x1b\x9a\xe0\x67\x99\x53\x33\x88\x98\x10\x2c\xbd\x9a\xd3\x11\x8f\x27\xc7\x0d\x78\x79\xa7\xb6\xb8\xca\x5a\x6a\x3e\x38\x1e\x6c\x81\x08\x1d\x6c\x05\x52\x22\xc8\xb7\x72\x66\x6e\x48\x47\x77\xc7\x4d\xb6\x1b\x14\x26\xea\xa0\xf5\xb2\x42\x43\x34\xe1\x19\x63\xf1\x25\xa3\x21\x4b\x35\x5d\xd9\x2c\x49\xc4\x54\x36\x5b\x6f\x21\x83\x95\xc7\x8d\x60\x46\x95\x1d\x74\x96\x7d\x60\x82\x02\x32\x7f\x74\x12\xf1\xd1\x5d\x3f\x49\x47\x2c\xbb\x62\xca\x2b\x47\x00\x8f\xf9\x6c\x31\x3b\x49\x62\x91\xd2\x4c\x5c\x42\x5e\xc7\xcd\xc0\x9e\x37\xc3\x55\x01\x51\x94\x3c\xc0\x98\x4f\x32\x16\x76\xe7\x3c\x7f\x76\x9d\xd2\x38\x9b\xd3\x14\xbc\x36\x78\x28\xe8\xf0\x4a\x24\x73\x39\xba\x0e\x03\x31\x65\x33\x76\xfc\x75\x15\xa4\x2c\x1b\xd1\x88\xc1\xb8\x88\xe8\x7c\xce\xe3\x89\x1e\x52\xcd\x40\x8e\x21\x20\x50\x92\x96\x7d\x4e\xd2\xf0\x38\xae\xf3\xec\x03\x1d\x05\x0f\x3c\x0e\x13\x6d\x65\x41\x56\xf2\x41\xa6\x1b\x43\xfd\xf9\x51\x2c\xf1\x65\x92\x86\x57\x0c\xfc\x08\x91\xc0\x28\x23\xd5\xda\xcd\xed\xd7\x55\x25\x18\x0c\x06\x5b\xbf\x0e\xb6\x02\x1a\xc9\xa2\x3e\x24\xf7\x4c\x4d\xec\x43\xd3\x8f\x92\xf8\x9e\xa5\xe2\x34\x89\xb0\x16\x2c\x9d\x9d\xd3\x19\xd3\x66\x10\xf0\x01\x78\xac\x6a\x01\x13\x2e\x7e\xb0\x03\x5d\xb2\xba\x8d\xd5\x2b\x7d\xaf\xc7\x8d\x35\xf2\xf2\xa1\x36\xd8\x6a\x36\x1a\xf8\xbb\xa5\x7e\xef\xaa\xdf\x6d\xf5\x7b\x4f\xfd\xde\x57\xbf\x0f\xd4\xef\x43\xf5\xfb\x08\x7e\xdf\xaa\xd0\x13\xcd\x6d\xf8\x74\xe3\xb3\x2e\x92\xd8\xb6\x94\x4b\xe2\x91\x59\x79\x3c\xb2\x98\xca\xcb\x4a\x2d\xdb\xcd\x0f\x5c\x02\x7d\xec\xcb\xab\x95\x13\xdd\xe0\x31\xc1\x93\x8a\xf1\x1b\xaf\x89\x74\x69\x9d\xd6\x29\x6e\x5f\x71\xeb\x38\x2f\x1a\x73\xc1\xff\x60\xdd\x38\xfc\x85\x46\x1c\x2c\x75\x59\x76\x55\x04\x59\x6d\x35\xa2\x42\x06\xbc\x1c\xc5\x8b\x93\xc6\x58\xbf\xdc\x46\xd7\xab\x3d\x74\x00\x18\xa8\xe4\xf9\x31\xf2\x4c\x2c\xe6\x0a\x58\x70\x3f\x30\xb4\xb3\xf6\xfa\x66\xdb\x0b\x30\x52\xc1\x8a\xc1\xda\x33\xd2\x9e\x84\x94\xeb\x3f\x6b\xb5\xda\x6a\x8d\x37\x53\xd8\x62\xef\x36\x7c\xb5\xca\x3b\x3f\x7d\xe5\x72\x4f\x90\x3a\x27\xc2\x14\x77\xc3\x6e\x71\x5e\x23\x89\x3f\x2c\x22\xc1\xe7\x11\xfb\xf3\x79\xcb\x93\xe9\xf3\xb3\xea\x79\x0d\xca\xc1\x5c\xbd\x36\xcb\xe7\xf8\x18\x50\x84\x67\xd8\x40\xdf\x16\xc6\x41\xad\x18\x19\x3a\x4f\x88\xec\x14\x19\xcf\xb9\x63\x4b\x7b\x39\xae\x73\xc0\x80\x5d\xb7\x55\xc0\x3b\xea\x70\x86\xff\xab\x05\xf2\xef\x0e\x3c\x96\x9f\x23\xec\x10\xf4\x0c\xef\x50\x2b\xe9\x85\xfc\x8a\x3f\x8f\x6d\xf2\x25\x02\x3e\x6f\x78\x59\x98\x7d\x85\xe0\xa4\x1f\x5b\xfe\x11\x98\x2b\x19\x13\xc7\xdc\x79\xb4\x36\x2c\x62\x8d\xff\x00\xb9\x67\xf5\x9d\x5a\xea\x7b\x79\xd4\x9d\x76\x83\x2d\xcb\xaa\x18\x6c\x1d\xf3\x71\x95\x7f\xfb\x56\xe5\x45\xd3\x06\xc6\x5e\xf0\xcc\xb6\x5c\x65\x3f\xe6\x96\x08\x8c\xd9\x6f\xdf\x06\x5b\x0b\xb0\xc4\xa4\xb9\xa1\x1f\x0d\x69\x2a\xff\x58\x55\x79\x49\xef\x41\x57\xf1\xd5\x60\x0b\x8f\x69\x49\x04\xa1\xe4\x1e\x08\x27\x68\x7a\x91\x71\x92\x12\xe8\xca\x5f\xed\x8b\x48\x06\x5b\x8e\x6a\x00\xca\xd7\x93\xed\xa4\x33\x96\xc3\x60\xeb\xd8\x7f\xf4\x16\x45\xfb\x31\x9a\xdc\xf1\x62\x36\x64\xa9\xe5\xbd\xf3\xe7\xcf\x9b\xaf\x61\x40\xf0\xd7\x9d\x26\xdb\xad\xc9\x5c\x79\x27\xa9\xf3\x78\x14\x2d\x42\x06\x3e\xfa\x1b\x7e\x5c\x46\x83\x43\x82\x65\xb2\x41\x61\x72\x3b\xe7\x38\x4a\x92\xb4\xca\x6b\x0a\x63\x8c\x95\x9c\x4c\x5b\x19\xab\xae\x7a\x5d\x3c\x05\xf3\x57\x68\x2b\x32\xa2\xb1\x3a\x4b\x38\x62\x59\x26\x8f\xc2\x6c\x06\xb2\x45\x8f\x09\x34\xb7\xd7\x9c\x65\x96\x83\x21\x6e\x46\x1f\xab\xcd\x20\xdf\x6d\xda\x52\xdf\x71\x22\xaf\xda\x6c\xbc\xe0\xb5\x9d\x66\xa3\xe6\xe6\x68\x4c\x24\x49\x6c\x55\xe7\xc5\xe3\x2a\x0f\xda\xad\xa3\xf6\xd1\xfe\x41\xeb\x68\xaf\x56\x7b\xdd\xf8\x13\xb5\x68\x3c\x55\x8b\x52\xfb\x33\x6f\xc0\x82\x41\xa6\x5b\xb1\xf3\x67\x08\x48\x52\x82\xab\x9f\x89\x48\x9e\x26\x06\xcc\xf8\xbc\x6c\xb0\xed\x65\x71\xcf\xf8\xf3\xe7\xf2\x64\xfb\xf2\x32\xf5\x2d\xe4\xf1\x62\xc6\x52\x3e\x7a\xaa\x04\x63\x2c\x61\x57\xf1\x37\x6f\xbe\xae\xf4\x32\x06\xbe\x5a\x15\xfc\x15\xba\x0a\x5a\xfb\xfb\x8d\xff\x0d\x8e\xff\x8f\x0a\x8e\x5f\x64\xa3\xf7\x3c\xbe\x7b\x7a\x47\x29\x06\x97\x93\x4e\x01\xfd\xc4\x29\x3c\xe5\x8b\x74\x63\xf0\x24\xc3\x4e\x33\x70\xa6\x13\x3f\x73\x31\x3d\x0b\xf5\xec\xa9\x75\x64\xff\xdb\x25\x94\x66\x5e\xe5\x8b\x94\xe0\xf1\xba\xe3\x0a\xbd\x95\x94\xf6\x05\xb5\xac\xce\x43\x6b\x96\xad\x4e\xc3\xf0\x03\xce\x94\x57\x85\x3a\x9a\x40\xd4\x97\xb5\x20\xeb\x7c\x85\xd2\x8f\x59\xc0\xc3\x63\x9b\xf0\xed\x6d\xf4\x13\xb3\xe3\x1b\x7e\xbb\x32\x57\xff\xf8\xcb\x9b\x30\x45\x8a\x2b\x92\x64\xf6\xfd\x34\x99\x21\xc9\x19\x8c\x8f\x5a\x49\x0d\xd5\x24\x27\x0f\x03\x79\x76\x44\xb8\xca\x2f\x34\xc9\xaf\xe8\x98\x30\x71\x1a\x8b\x74\x79\x16\xfe\x8d\x2d\xab\xbc\x96\xdf\xb2\xe1\x34\x23\xce\x16\x66\x38\x55\x98\xba\x07\xa2\x85\xe1\x7b\x1e\xb3\xeb\x04\x29\x49\xa1\x2c\xa7\xd6\xf0\x24\xef\xf8\xb5\x6d\x93\x74\xbe\x16\x1b\xe5\x8e\x2d\x8f\xd7\xd0\x88\x0d\xc9\x75\xb3\xc5\xa6\xd9\xe2\x3f\xd1\x6c\x49\x10\x9b\x66\x73\x6b\x0b\xed\x96\xd4\xef\xd8\x12\x18\x69\x4d\xbb\x26\x50\x57\xe0\x33\x68\x57\xb7\x19\x4a\x26\xe1\x9d\xe4\xe6\xd0\x4b\x50\xed\xea\x7c\x09\x76\xcf\xd2\xa5\x5a\x18\x0a\x4f\x9e\x75\x3a\xa2\x56\xb3\xd6\xbd\xad\x1d\x8d\x76\xab\xd6\x5e\x39\x07\x70\xb0\x5a\xc0\xfe\x44\x93\x70\xbc\xf7\x61\xa5\xce\xee\xbc\xeb\x51\x41\x0b\x73\xda\x25\x35\x79\x53\x87\x87\x2b\xaf\x9f\xf2\x84\xa0\x64\xa0\x91\x5e\xe1\xa6\xd7\x45\xca\x57\xbf\xae\xca\xcb\x77\x1a\x8e\xe9\xd3\x48\xbc\x3b\xae\x38\xee\x0f\x77\x4e\x13\xe1\x41\xb3\x16\x48\x5e\xb4\x8f\x2b\x79\xfe\x5c\x71\x29\xfa\x1f\x78\x5d\x07\x0f\xf3\xdd\x5f\x4e\x8f\xab\x75\x80\x0c\x3a\xbd\xb4\xcb\x73\x00\x0f\x6b\x6a\x41\xae\x27\xb7\x92\xb5\x5b\x75\x6e\x83\xa4\xb6\x0a\x0e\x77\xdb\xbb\xff\xde\xc1\x15\x72\xf6\x5b\xad\x2f\x4b\xd2\x8e\x58\xb3\x58\x00\xa7\x24\xf1\xa9\x5c\x73\x98\x2e\xfd\x3b\x35\x06\x5b\x21\xff\x51\xd0\x74\xc2\xc4\x60\x2b\xc8\xe4\xdf\xa1\x95\xc5\x60\xeb\x55\x31\x93\x5c\x96\xae\x2b\xb7\x68\xab\x13\x76\x93\xdd\x7e\xfb\x76\x73\xbb\x2a\xa1\xdf\x86\xe3\xdc\xbf\x57\xa0\x5a\x34\x62\x6e\x30\xf1\xdf\x2b\x46\xd2\x87\x96\x38\x76\x43\x9c\xdf\x6c\xe4\x1b\x0d\x25\xf1\xeb\xbf\x9e\xa9\xea\x9c\xd3\x19\x7b\x19\x6a\x0a\xc1\x1a\x23\x49\x1c\x2d\xc1\x3a\x5a\x64\x2c\x04\x0b\x4c\x6b\x7a\x42\x09\x6a\x54\x26\xc0\x66\xaf\xbd\x7a\xe6\x14\x9f\xd6\xbe\x0a\x79\x9a\xb2\x78\x23\xe4\xc5\x57\xd9\xb4\x0a\x62\x8e\x05\x72\xd9\x43\xba\xaa\x1d\x57\xe1\x55\xe7\xc6\x7d\x7c\x1b\x60\x4a\x51\x5b\x55\xd3\x80\x05\x71\x2d\x17\x6f\x69\x5d\xa8\x93\x53\xf1\x14\x69\x16\x14\x9b\x44\x2e\x4b\x49\x6b\x41\xba\x5a\x05\xa0\x67\xff\xed\x05\x4f\xc5\xf5\x8c\xa2\x7e\xf6\xc9\x39\x3a\x0e\x9e\x78\xdc\x20\xfc\x89\x09\x78\x62\xcd\x60\x08\x27\xd2\x0f\x2f\xd7\xac\xac\x3a\xf3\x8e\x65\x11\xce\x96\x37\xfd\xa7\xb3\x69\x4e\x78\x0c\x58\x12\x23\xc7\x15\x58\x68\x55\xbe\x2a\xa0\xab\x78\x30\x91\x3b\x56\x6b\xd5\xc1\x96\x83\xc2\xa3\x4f\x4b\xca\x5e\x97\xd8\x07\x5a\xe9\x37\x49\xea\xa5\x72\x9b\x64\x6d\x42\x07\xa6\xd2\x96\x36\xf3\xba\x1c\xca\xc0\x90\x8f\xcd\xb9\xec\x86\xc9\x89\x9a\x4e\xe3\xb6\x33\xd8\xc2\xaf\x83\xad\x00\x1e\xe3\xd4\x68\xa7\x79\x8b\xfb\x97\xdf\x7e\x7a\xa7\x1e\x9f\x9d\xf7\x2f\x3a\x2d\x78\x0a\xdf\xd4\xc3\xcf\xdd\xcb\xf3\xce\x2e\x3c\x84\x6f\xea\x21\x4e\xb8\x75\xda\xf0\x14\xbf\xaa\xc7\x17\xfd\x7e\x67\x0f\x1e\x5e\xf4\xfb\x83\xad\x55\x35\xc5\x45\xba\xce\x80\x4a\x3b\x5f\x71\x89\xb6\x33\xe8\xd6\x55\xd3\x40\x54\x23\x79\x43\x77\x5d\x3a\x17\xa6\xd3\xba\x8c\xb0\x36\xad\x03\x53\x69\x3d\xb6\x5a\x97\xd6\x85\xa9\xb4\x45\x3e\x5d\x97\xbc\x80\x1c\x6c\xd5\x56\x41\xb3\x7d\xd8\xf8\x77\x85\x85\x47\xff\x13\x73\x53\xad\xd6\x9e\x59\x02\xa9\x96\x5c\xb1\x47\x91\xd2\x91\xb8\x9a\x26\x8b\x28\xfc\x8f\x84\xdb\x7a\xa4\xf1\xac\x83\xbb\x87\x57\x2e\x16\x43\x13\xb6\xba\xf9\xe9\xa7\xe6\xf3\x5d\x0f\x04\x7c\xf0\x37\x2e\xef\xda\x32\xb8\x1c\x25\x5b\x48\x57\xf1\x17\xa8\x8f\x6c\x06\xdc\x8e\xa5\xae\xd4\x68\xee\x1f\x1c\x1c\xb4\x9a\x7b\xcf\x59\xed\xf5\xeb\xdd\x6f\xd5\xdd\xe7\xa2\xf6\xfa\x75\xf3\x5b\x95\xbf\x69\x1e\x37\xfc\x0d\x26\xd2\x80\x98\xa7\xc9\x3d\x0f\x9f\xbe\x07\x53\x9d\x3e\x6c\x1d\x9a\x91\x87\xc9\x8b\xe1\x74\x1d\x4d\xf7\xe2\xe8\x25\x11\x74\x99\x3a\xd5\x1d\xf2\xcb\xfe\x2b\x37\x1e\xcd\xbc\xf2\xf3\x83\x47\xfd\xd3\x3e\xb0\x02\x25\x57\x7c\xe6\xa5\x9a\x15\xb6\xe5\x47\x9d\xda\x47\x68\x78\xcd\x52\xfb\xfe\x21\xa7\xea\xe8\xc6\xd2\x93\x4c\x9d\x1d\xf7\x32\xc7\x27\x0f\x6a\x50\x6d\xa1\x69\x5c\x77\x5e\x43\xee\x57\x7a\x6d\x50\x2c\xca\xeb\xb0\x7c\xab\x59\xf1\x94\x58\x2b\x95\x6e\xe8\xdb\x0e\x5b\x3d\x8c\x1e\xbc\xf1\x5b\x56\x72\xdd\xc0\x70\xb1\x29\x1a\x00\x27\x2c\x8a\xf2\xc1\xaf\x56\x04\x05\xbc\x63\x98\x2d\x5f\x1b\xa4\x97\x0c\xa5\x9d\xc6\xab\xf4\x75\xf6\x6a\x7b\x3b\x95\x29\x92\x8e\xb3\x05\x2d\x45\x8f\x64\x6f\xaf\x75\xb4\xff\xba\x93\x3c\x7f\x9e\xbc\xee\xec\xed\xef\x36\x8f\xb0\xa1\xb7\xb7\xd3\x9f\x3a\xe6\xda\xe3\x6d\xa4\x53\xd3\x95\x98\xdb\x9b\xfc\x1c\xf7\xf6\x77\x5b\x0d\x1d\xc2\xdc\x3b\xd8\x6d\xef\xbe\x49\x3a\xcd\x46\xab\xfd\xa2\x9a\xbc\xc4\xb2\x6a\xdb\xfc\x25\xa2\xb6\xf7\xf7\xf6\x76\xf7\x8f\xc5\x76\xc7\xc9\x3c\x5f\x3e\xaa\xf6\xbe\x42\xfe\x8a\x57\x39\xcb\xaa\x49\xc0\x65\x24\x61\xda\x89\xeb\x8e\x50\xa0\xb5\x57\xf9\x13\x4b\xa4\xd0\xda\xf3\xe7\xd5\xe9\x4b\x1f\xcd\x41\x59\x6c\x77\xa6\x01\xef\x50\xeb\x4a\x36\xb7\xb0\xe2\x51\xc7\x5e\x4f\x95\xe0\x57\xab\x82\x58\x8c\x57\xab\x40\xe0\xad\x36\xfa\xf8\x28\x5e\xd5\x41\xae\x0e\x58\x84\x26\xbe\x80\xf7\x4d\xe7\xd6\x1f\x7b\x9c\x27\xa9\xc8\xd0\x70\x89\x11\xd9\xf9\xaa\x9e\x1d\x7f\x5d\xe5\x66\x22\xde\x15\x89\xeb\xb6\x62\x9d\x24\x88\x03\xf3\x9d\xd7\xcc\x1f\x2b\x19\x89\xfb\xaa\x13\xcb\x59\x29\x78\xc8\x3a\xd9\x9a\xe8\x0f\x7b\x4a\x09\xb0\xfa\x35\x4b\x67\x3c\xa6\x91\x2b\xfe\x45\x87\x57\x8f\x1a\xed\x96\x14\xff\xbb\xad\xdd\x7d\x6f\x17\xe0\xde\x41\xbb\xa9\x36\xa7\xb7\x0e\xd5\x99\xb1\x07\x47\x07\xb8\x3b\x9d\x57\x0f\x1a\x47\x8d\x5a\x10\x75\x6e\x74\x60\x33\xd0\xe1\x4e\x3d\x9d\x19\xfe\xab\x47\xf7\x17\x27\x31\xd3\xbc\x0e\x55\xb3\xdd\x8f\xda\x37\xd4\x14\xd3\x24\xce\x15\x36\xf9\xa5\xde\x8b\x61\xa4\xe7\xe3\xe4\x7c\xa1\x29\x58\x4f\xa3\xac\xf2\x16\x62\xda\x3b\xb7\x5f\x83\xa0\xc1\x59\x2a\x91\xcf\x17\x7e\x19\x4d\xd9\xe8\xee\x92\xd1\x10\x9c\x13\x3d\x7f\xc6\x9c\xc3\xf8\x4d\xea\x8e\x58\x39\xe7\x1a\x71\xe7\x04\xe9\xa4\x74\x7e\x48\x58\x93\x41\xac\x38\x3f\xc4\x9e\x9e\x1f\x72\xab\x1d\x30\x39\x4d\xb4\x86\x68\x10\x2f\x91\x99\xd0\x60\x25\xd3\x35\x12\x9c\x0b\x6c\xc7\x2d\x03\xd5\x80\x35\x62\xc4\xea\xea\x5f\x6b\xaa\x3c\x6b\xcd\x41\xd5\x56\x19\x76\xdd\x4b\x16\x63\xfa\xeb\x15\x4a\x7c\xc6\xbf\x27\x0b\x19\x39\x07\x0a\xa0\x78\x3f\x8d\x9e\x20\x14\x09\x11\xe9\x82\xc1\xef\x45\xc6\xc8\x5c\x21\x48\xf7\xe3\x99\xbe\x06\x20\x89\xdf\x3a\x77\x9a\xd8\x34\xe2\x2b\x8d\xc2\x7d\xc1\xeb\x70\xf8\x52\x21\xe5\xca\x84\x0f\xc9\x7d\xe1\x62\x00\x85\x36\x00\x95\x02\xa3\x3d\xe5\x58\xbc\x58\x45\xa2\xfe\xc6\xd6\x15\xff\x37\xa6\xcb\x7e\xcf\x63\xd6\x67\xc5\xad\x6c\x0a\xa8\x5f\x2b\xb4\x5c\x48\xb5\x06\x2b\x5f\xe6\x48\x3c\x14\x78\x1d\x12\x5e\x2a\xa4\x9c\x91\x59\x83\x94\x2f\x35\x52\x2f\x66\x51\x33\xd6\x6b\x92\xb8\x28\x95\xf6\x9a\x8b\x88\x3d\x99\xce\x42\xa8\x34\x9f\x53\x2e\xe4\x25\xfc\xeb\x9a\xc7\x42\x60\x1a\x26\x4f\xa5\x2d\x45\xab\x77\x88\x9b\xe3\xdd\x0a\x3e\x4c\x3e\xcd\xb7\xae\xcb\x3f\xd1\x38\x9c\x9a\xdb\x18\xac\xdb\x21\x72\x71\x27\x91\x98\xb3\x3a\x27\xbe\x40\x41\x81\xbf\xf0\x72\x98\x91\x75\xa4\xbe\x9d\x31\x66\x25\xd8\xa3\xa0\x29\x2b\x1f\x68\xfa\x25\x22\x41\xb8\x97\xa2\xe0\x85\xbc\xff\x28\x89\xca\x11\xf0\x62\xb5\xf6\x54\x70\x15\x43\xcd\x9b\x44\x5d\xbe\x54\x94\xe8\xb4\xe4\x66\x0c\xa7\xa5\xdc\xb3\x43\xb0\x44\xb9\x47\xae\x48\x56\xb1\xa9\x2c\x7a\x55\x22\x99\x41\x02\x42\xd0\x0f\xfb\xaa\x6a\x99\x53\x99\xbc\xc3\x25\xd4\xb5\x5f\x83\xad\x38\x89\xd9\x60\xeb\x95\x9a\x72\xf7\x12\xdb\xf1\x07\xef\xf8\x31\x3d\x37\xff\x9f\xcd\xc6\x60\xeb\x18\x72\x7a\x84\x6f\xce\xdc\x1f\x9e\xb8\xa9\xde\xde\x0b\xfc\xee\xbc\xef\x5d\x76\xdf\xa9\xd7\x61\x4a\x27\xde\xdb\xee\xf9\xdf\xd5\x4b\x1a\x2f\x07\x5b\xca\xc6\x2a\x3f\x47\x06\x97\x66\xc9\xdb\xc0\x0a\xef\x8a\x07\xcc\x14\xd1\xf2\x79\xd9\xa9\x33\xac\x5e\x7c\x18\x58\x87\xdd\xac\x69\x6e\xec\x95\xba\xc1\x05\x33\x68\xca\x6b\xc8\x8a\xc7\x13\x99\x52\x1d\x67\xa3\x8a\x91\x7f\x14\x0f\xb6\x51\xaf\x0b\xcf\xcd\x69\x37\x0a\x91\xff\x6d\x1d\x7d\xa3\x5e\x99\x07\x2b\x29\x55\xf2\x05\x34\x2e\xeb\xdb\x4a\x18\x5d\xa8\xc4\x28\xdd\xc2\x4a\xaa\x92\x34\x7a\xd3\xc0\x6a\x18\x2d\x8c\x57\x2b\xef\x90\xc1\x27\xab\x31\x10\xe8\xbe\x51\x8f\x56\x3c\x56\x17\x6d\xe3\xc5\xf3\x16\x20\x7f\x51\x72\x2c\xfc\x97\x7b\x96\xf2\xf1\xf2\x2c\x16\x6c\x02\x6c\x64\x1f\x87\x2e\x2f\x15\xc9\x13\xac\x92\x39\xf3\x2f\xb4\x50\x8f\x56\x54\x08\x3a\x9a\x9e\xe0\xca\xd3\xbf\x31\x79\xda\x47\x7e\x9b\x88\x93\xe2\x69\xa4\x93\xd1\xe7\x29\x53\xeb\xf7\xbe\x9f\x55\x19\xd6\x99\x67\xd4\x1e\x43\xc1\xf5\x73\xee\x4e\xf1\x90\xe6\x4a\x9c\x29\x05\xcf\x85\xa5\xe0\xd1\x94\x65\xf2\xa4\xb8\x59\x9f\xcb\x2a\x64\x4f\x14\xb1\x49\xde\x4f\x65\x90\x93\xaf\x26\xab\x58\xa7\xe1\xd1\xed\xf7\x7e\x29\xd9\x3a\xf5\xba\xd3\x25\x36\x6b\x09\x59\x94\xbc\x06\xff\x9e\x99\x22\xe5\xd9\x00\x4c\x1f\x07\x00\x5f\xa7\xb8\x28\xe6\xcd\x9b\x46\x29\x39\x4e\xe1\x78\x21\xab\xb6\x15\x4a\x75\x93\x0b\x58\x65\xf8\xdd\xdd\x8d\x53\xe4\x01\x73\xe7\x3c\xe6\xe1\x24\x92\xfb\x4f\x9f\x2a\xd2\x05\x38\xf8\x8f\x6a\x5b\xe4\x77\xd3\x19\xe0\x0a\xcf\x96\xb0\x4b\xb4\x65\xa6\xf7\x4e\xd5\x4f\x5e\xe7\x5a\xa8\x01\x3e\x56\x90\xfc\x08\xfc\x0d\x25\x81\x9f\xca\x0a\x50\xf9\x3b\xbf\x9d\x33\xf6\xd7\x65\xef\x66\xee\xa4\x50\x19\x7c\xa4\x93\x3f\x99\x81\x4e\xb1\xd2\x77\x2d\x5c\x27\x73\xaf\x1d\xec\x17\x39\x4c\x9e\xa3\x54\x8e\xd4\xef\x72\xb0\xbe\x64\x71\x63\xaa\xf2\x24\x2b\x75\x4a\x48\xa1\x03\xab\xb5\xd5\x03\x18\xa1\xce\x61\xf2\xf0\xd6\x3c\x95\x80\x28\x5e\x07\x71\xca\x95\xcf\x06\x5b\x83\x41\x3a\x18\xc4\x83\x2d\x48\x3f\x07\xed\xeb\x49\x50\xfd\x6c\x95\xb2\x71\xca\xb2\xe9\x9f\x52\x0c\x26\x85\x7b\x40\x57\xae\x38\xf0\x6c\x5e\xac\xdf\x35\x7b\x14\x8b\x94\x75\x45\x44\xb3\x92\xea\xbb\xaf\xed\x2b\x61\x9d\x5b\x68\x95\xa7\x5f\x37\xef\xb5\x6b\xac\xe2\xca\xa0\x9a\xe5\x96\x13\x5b\x35\xaf\xfc\xaa\xc8\x9d\x30\xde\xbe\x6d\xb9\xb2\xb9\xd3\xe9\x34\x77\x1a\xdf\xbe\xf1\xec\x9c\x9e\x57\x45\xed\xdb\x37\xf1\x97\xe6\xb3\x92\xb5\x63\x83\xad\xeb\x29\xcf\xc0\xa3\x94\x7e\x31\x1d\x8d\xd8\x5c\x64\x84\xab\x42\xc0\xcf\x5c\x27\xf2\x9e\x28\xff\xf9\xf3\xf5\x34\x7c\xfb\x26\x5e\x37\x8a\xbe\xfa\x3a\x4a\xe6\xaa\x58\x87\xa4\x95\x15\x2c\x0a\x57\xb5\x6a\x2d\xc8\xe0\xb3\x56\x7b\x35\x88\x77\x76\x7e\x20\x59\xb2\x48\x47\xec\x83\x5c\xef\xff\xe9\xf2\x7d\x47\xef\x29\xac\xcf\xe8\x7c\x2b\xd8\xda\x79\xf1\x6c\x10\x93\x17\x24\xe2\x43\x3a\x9f\x67\xa4\x3a\x15\x62\x9e\x1d\xef\xec\xc4\xf3\xd9\x6f\x59\x7d\x94\xcc\x76\xe6\x74\x74\x47\x27\x6c\x47\x41\x6a\x88\xff\x6b\xc4\x47\x2c\xce\x18\x79\x7b\xd5\x7b\xb9\xfb\xf2\x24\xa2\x8b\x8c\xc9\x37\x3a\x38\xdc\xac\x1f\x34\xea\x0d\x7c\xd6\xe9\xa8\xc4\x3b\xef\xcf\x4e\x4e\xcf\xaf\x4e\x3b\x1d\x7c\xbe\xb3\x43\x4e\x92\xf9\x12\x77\x1f\x90\xea\xa8\x46\x5a\x8d\xc6\xfe\xcb\x56\xa3\x71\x44\xae\xa7\x8c\x9c\x4c\xd3\x64\xc6\x17\x33\x72\x71\x45\xba\x0b\x31\x4d\xd2\xac\x4e\xba\x51\x44\x30\x41\x46\x60\x48\xa6\xf7\x2c\xac\xab\xcc\x74\x9e\x97\x2c\xe4\x30\x6c\x86\x0b\x8c\x1e\xd0\x38\xc4\xb0\x01\x8f\x55\x73\xe0\x13\x75\xd0\xd8\x38\x49\x67\x59\x20\x97\x20\x27\x29\xfe\x4e\x16\x42\xe7\x34\xc3\xcd\x32\xd2\x24\x0e\xf0\x52\xf2\x39\xb4\xb6\x10\x2c\x24\x2a\x22\x1d\xca\x8b\x7a\xc5\x94\x91\x71\x12\x45\xc9\x03\x8f\x27\x64\x94\xc4\x21\x4a\xfb\x0c\x12\xe5\xb9\x31\x71\xec\x91\x4a\x08\x79\xe1\xd1\x9b\xc1\xe8\x51\x84\x62\xb4\x1d\x43\x24\x29\x13\x54\x05\x69\xe8\x30\xb9\x87\x57\xaa\xe1\x74\x56\x71\x22\xf8\x88\x05\xa8\x7f\x48\xc4\x33\x1c\x85\x36\x21\x71\xe8\x51\x19\xf2\x6c\x14\x51\x3e\x63\x69\xfd\x49\x7a\x78\x6c\xb7\x96\xa6\x67\x9e\x26\xe1\x62\xc4\x0c\x49\x3a\x8f\x9c\xb2\x7f\x8b\x24\x9d\x9b\xaa\xb4\x5e\xb4\x4f\x75\x97\xee\x24\x29\x49\xf0\x76\xc8\x19\x15\x2c\xe5\x34\xca\x4c\x97\x60\x77\x8a\x69\x4e\x92\x5d\x1f\xb7\xae\xe7\xea\x8a\x49\x28\x23\xa6\x33\x3c\x34\xea\x5d\x92\x4c\x22\x46\xce\xe2\x51\x1d\xef\x9c\xd4\xef\xb0\x67\xb8\xc8\x4c\x45\x63\x99\x6b\x92\x66\x64\x46\x9d\x35\x0e\x2c\x0e\x93\x34\x63\x30\xa6\xe6\x69\x32\x4b\x04\x86\xad\xc2\xc5\x48\x64\x24\x64\x29\xbf\x67\x21\x19\xa7\xc9\x4c\xe7\x85\x4d\x94\x25\x63\xf1\x00\xa3\x4c\x0d\x43\x92\xa9\xed\x08\x64\x9e\x72\x18\x9d\x29\x0c\xbd\x58\x0e\xc2\x2c\xb3\x2a\xa3\xb3\xb9\xfe\xf9\xec\x8a\x5c\x5d\xf4\xaf\x3f\x77\x2f\x4f\xc9\xd9\x15\xf9\x78\x79\xf1\xcb\x59\xef\xb4\x47\xde\xfe\x9d\x5c\xff\x7c\x4a\x4e\x2e\x3e\xfe\xfd\xf2\xec\xdd\xcf\xd7\xe4\xe7\x8b\xf7\xbd\xd3\xcb\x2b\xd2\x3d\xef\x91\x93\x8b\xf3\xeb\xcb\xb3\xb7\x9f\xae\x2f\x2e\xaf\x74\x56\x83\xad\xee\x15\x39\xbb\x1a\x6c\x21\xa2\x7b\xfe\x77\x72\xfa\x9f\x1f\x2f\x4f\xaf\xae\xc8\xc5\x25\x39\xfb\xf0\xf1\xfd\xd9\x69\x8f\x7c\xee\x5e\x5e\x76\xcf\xaf\xcf\x4e\xaf\x02\x72\x76\x7e\xf2\xfe\x53\xef\xec\xfc\x5d\x40\xde\x7e\xba\x26\xe7\x17\xd7\x3a\xab\xf7\x67\x1f\xce\xae\x4f\x7b\xe4\xfa\x22\x40\x22\x8a\xa9\xc9\x45\x9f\x7c\x38\xbd\x3c\xf9\xb9\x7b\x7e\xdd\x7d\x7b\xf6\xfe\xec\xfa\xef\x58\x6c\xff\xec\xfa\x1c\x8a\xec\x5f\x5c\xea\xcc\xba\xe4\x63\xf7\xf2\xfa\xec\xe4\xd3\xfb\xee\x25\xf9\xf8\xe9\xf2\xe3\xc5\xd5\x29\x81\xda\xf6\xce\xae\x4e\xde\x77\xcf\x3e\x9c\xf6\xea\xe4\xec\x9c\x9c\x5f\x90\xd3\x5f\x4e\xcf\xaf\xc9\xd5\xcf\xdd\xf7\xef\xdd\xca\xeb\xbc\x2e\x3e\x9f\x9f\x5e\x42\x7d\xec\x06\x20\x6f\x4f\xc9\xfb\xb3\xee\xdb\xf7\xa7\x50\x2c\xd6\xbc\x77\x76\x79\x7a\x72\x0d\x55\x34\xdf\x4e\xce\x7a\xa7\xe7\xd7\xdd\xf7\x81\xce\xec\xea\xe3\xe9\xc9\x59\xf7\x7d\x40\x4e\xff\xf3\xf4\xc3\xc7\xf7\xdd\xcb\xbf\x07\x2a\xeb\xab\xd3\xff\xf3\xe9\xf4\xfc\xfa\xac\xfb\x9e\xf4\xba\x1f\xba\xef\x4e\xaf\x48\x75\xb3\xd6\xfa\x78\x79\x71\xf2\xe9\xf2\xf4\x03\xd4\xe3\xa2\x4f\xae\x3e\xbd\xbd\xba\x3e\xbb\xfe\x74\x7d\x4a\xde\x5d\x5c\xf4\xb0\x2b\xae\x4e\x2f\x7f\x39\x3b\x39\xbd\x7a\x45\xde\x5f\x5c\x61\x43\x7e\xba\x3a\xcd\x89\xea\x75\xaf\xbb\x48\xc6\xc7\xcb\x8b\xfe\xd9\xf5\xd5\x2b\xf8\xfe\xf6\xd3\xd5\x19\x36\xeb\xd9\xf9\xf5\xe9\xe5\xe5\x27\x5c\xf2\x5e\x23\x3f\x5f\x7c\x3e\xfd\xe5\xf4\x92\x9c\x74\x3f\x5d\x9d\xf6\xb0\xfd\x2f\xce\xa1\xfe\x66\x74\x9d\x5e\x5c\xfe\x1d\x8a\x80\xf6\xc1\x5e\x0a\xc8\xe7\x9f\x4f\xaf\x7f\x3e\xbd\x84\x26\xc7\x56\xec\x42\xf3\x5c\x5d\x5f\x9e\x9d\x5c\xdb\xb0\x8b\x4b\x72\x7d\x71\x99\x57\xd2\xd4\x9f\x9c\x9f\xbe\x7b\x7f\xf6\xee\xf4\xfc\xe4\x14\x40\x17\x90\xd9\xe7\xb3\xab\xd3\x1a\xe9\x5e\x9e\x5d\x01\xe0\x0c\x89\x20\x9f\xbb\x7f\x27\x17\x9f\xb0\x1d\xa0\x33\x3f\x5d\x9d\xe6\xdd\xd8\x77\x07\x7e\x80\x3d\x4f\xce\xfa\xa4\xdb\xfb\xe5\x0c\xea\xa2\xd2\x7c\xbc\xb8\xba\x3a\x53\xc3\x0b\x9b\xf3\xe4\x67\xd5\x23\xc8\x48\x3b\xa0\x34\x09\xaa\xdf\x31\x8f\x18\x79\xa0\x19\x99\xb0\x98\xa5\x14\x04\xfe\x70\x09\x6a\x32\x4c\xc4\xce\x90\xc7\x3b\xa3\x24\x1e\x51\x51\xcf\xa6\x75\x4c\x74\x26\xef\x6a\xc7\x7b\xda\x31\x1a\x15\x92\x94\xd1\xf0\x25\xaa\xf0\x71\x92\x92\x65\xb2\x48\x49\x46\xc7\x4c\x2c\xeb\x84\x5c\x52\x90\x3a\x98\x12\x17\xa8\xb3\x90\x0b\xc2\x05\x09\x79\xca\x46\x22\x5a\x06\x64\x1e\x31\x9a\x31\xa9\x81\x96\x24\x89\xd5\x71\x76\x2c\x63\x4a\x39\x60\x62\x20\x33\xab\xd7\x91\x06\x7c\xa0\x28\xfc\x2d\x03\x7d\x5d\xff\x2d\x2b\x3e\xfc\x32\x4f\xa2\xe5\x98\x47\x51\xf9\xdb\x11\xee\x24\x2d\x7f\x37\x2e\x7f\x3c\x63\x59\x46\x27\xec\xcb\x4c\xd9\x73\xe5\xa5\xa6\x6c\xcc\x52\x16\x8f\xbe\x83\x4b\x99\xac\x5e\xf9\xdb\x4c\x24\x29\x9d\x3c\xfd\xf2\xcb\x08\xec\x86\xef\x60\xa2\x64\x44\xd7\xb4\x80\x86\xcc\xd8\x2c\x49\x97\xe5\x18\xc1\x32\xf1\x74\x3d\x16\x62\x7c\xe8\xbd\x11\x53\x9e\x86\x5f\xe6\x34\x15\xcb\x1d\x35\x39\x8b\xd0\x87\x91\x06\x4e\xc1\x3a\x83\x1c\xa6\xca\x4c\x2b\x79\xfa\x65\x9c\x52\x53\x3b\xef\xdd\x1d\x5b\x0e\x13\x9a\x86\xdf\x79\xfd\x65\xc8\xf1\xb8\xd5\xec\x7b\xb8\x3b\xb6\x9c\xd1\xf9\x06\xa8\x39\x15\x82\xa5\xf1\x1a\xa4\xde\xa0\x5f\xfe\x56\x06\xca\x9f\x7c\xf9\x85\x87\x2c\x16\xb8\x71\x79\x6d\x2e\x6b\x07\x98\x0f\x5c\x0c\xb3\xc5\x70\xcd\x4b\xb9\xd9\x77\xfd\xcb\x24\x8a\xe6\x49\x2a\xd6\x00\x84\xb2\xc5\xbf\xf3\xfa\x0b\x4f\xd6\x22\x1e\xc5\x17\x2a\xa4\x59\xc1\xd6\x55\xf5\x7e\x5d\xf9\xf7\x02\xef\x2c\xc3\xa8\xd1\x97\xf5\x1d\x27\x67\xae\xd5\xcb\x41\x8c\x90\xab\x8b\x4f\x97\x27\xa7\xa4\x7f\xf6\xfe\xf4\xb8\x5c\x8a\xf8\xa6\x7a\xb3\xf5\x67\xad\xf4\x9d\x1d\xf2\x29\xcb\xcf\xe5\x74\x8c\x5c\x9e\x91\x49\x72\xcf\xd2\x58\x0a\x5a\x8a\x8e\x45\x26\x96\x11\x23\xda\xd5\x40\x3b\x7b\x44\x63\x32\x54\xb2\x2f\x59\xc4\xa1\xb6\x0f\x95\x63\x81\x02\xb1\x0e\x55\xaa\x80\xc9\x2f\xaf\x89\xa8\xbc\x82\x07\x7c\x4c\xaa\x6a\x17\x4a\xc4\x87\xe4\x59\x87\x54\x16\xb1\x9c\x7b\x0d\x2b\xe0\xd5\x10\xdf\x13\xab\xbc\x8b\x92\x21\x8d\xc8\x60\x2b\xe2\xc3\xc1\x16\x91\x7b\x5d\x08\x8d\x40\xb2\x2f\x09\x7b\xe4\x99\xc8\xea\x95\x1a\x66\x7f\x4f\x53\xcc\xb7\x43\xbe\xae\xf0\xc1\xce\x8b\x17\xa8\x9f\x3e\xd0\x39\xd4\x78\xb0\x65\x0e\xd7\x1a\x6c\x81\x89\x78\x33\xd8\x52\x92\x7c\x2b\x20\xf5\x7a\xfd\x16\x75\x10\xa6\x39\xa5\xa3\xa9\x7d\x18\x17\xcf\x08\xd5\xc5\x83\x25\x1a\x90\x88\xdf\x31\x49\x58\x7d\x9c\xc9\x23\x18\x74\x66\x80\x86\x26\x59\xa4\x11\xb6\x19\xe6\x68\x1d\x38\x06\xef\x64\x5e\x5a\xe9\x41\x2e\xe9\x22\x16\x7c\xe6\xac\x46\xfe\x52\xac\xcc\x7b\x65\xc4\xeb\x75\x17\x99\xec\x95\x98\x49\xab\x77\x08\x5e\xd6\x7d\x02\xda\x2f\x5c\x80\xdf\x0e\x4d\x92\x82\xe7\xc0\xf5\xb1\xee\x34\xb7\xc1\x4d\x4d\xd5\x24\x9c\xee\x4b\xc0\x9e\x50\xb9\x0f\x2d\xfb\x42\x68\x9a\x52\x6c\x02\x2e\x32\x16\x8d\x09\x25\xe2\x21\x79\xa9\xd3\xe0\x5b\x69\x06\xab\xdb\x27\x49\x43\xb6\x57\x36\x4d\x52\x1d\x3f\x20\x21\x6e\x5f\x1a\xc2\x57\xac\xff\x43\xcc\x52\xa5\x51\xb1\x3c\x92\x26\x0b\xc1\x63\x16\x80\x05\x3f\x5e\x44\x98\x21\xe8\x6d\x3c\x66\x66\xc2\xe3\x49\x9d\xe4\x05\x34\x75\x13\x8f\x14\x95\x79\x7b\xd8\x2d\xea\x55\xa3\x43\x6e\x6e\x9d\xb6\xbc\x64\xa3\x24\x0d\x81\x52\xd5\xf6\x56\x8f\x9b\x06\x42\x6b\x44\x8e\x7a\x45\x1a\x79\x98\xb2\x18\xec\x09\xf2\x40\x63\x81\xce\xc6\xe3\x3c\x65\x99\xca\xe9\xa5\x97\x15\x51\x23\x60\x94\xcc\xe6\x60\xd4\xc0\xeb\x3a\x01\x83\x45\x6d\xdd\xe4\xb1\x00\xa8\xee\x40\x4a\xc6\x8b\x28\x7a\x39\x8e\x58\x38\x61\x61\xde\x81\xd9\x32\x13\x6c\x46\x92\xd4\x1a\x4e\x98\xbd\xc0\xe9\xa0\x14\xb3\xac\x64\xe4\x37\xf0\x0e\xc1\xb8\xc1\xe9\xfa\x19\xbd\x63\x60\xd7\xcc\x93\x2c\xe3\xc3\x88\xc9\xe5\xdf\xc3\xc5\x24\xf7\xce\x42\x36\xcf\x72\x7f\x27\x5d\xc4\x31\x74\x11\x8d\x22\xb5\x1e\x21\x64\xa6\x29\x2e\x0c\x03\xa0\x5f\xad\xdd\x23\x16\x12\x9a\xe9\x40\x51\x9d\x90\x7e\x92\x12\xf6\x48\x67\xf3\x88\xa1\x69\xa4\x92\xc3\x7f\x38\xd2\x45\xc8\xe6\xd5\x0a\x7c\x95\xc6\x4e\x25\x20\xf8\xd7\xc7\x5c\x83\xa8\xc8\x14\xb2\x76\x59\xe1\x38\xde\xd5\x2e\xc3\x34\x49\x94\x75\x08\x99\x54\xea\x84\xe0\xba\x06\xba\xc4\xa0\x03\x0a\x3a\xb9\xe6\x3d\x02\x92\xa9\xdf\x7c\xe8\xcd\x2e\x6d\x86\x54\xdd\xce\xc8\x28\xe2\x30\xda\xe6\x69\x32\x49\xe9\x0c\xb3\x84\x01\x87\x95\x60\x71\xb6\x48\xd9\x65\x91\x69\xab\x35\x42\x61\xd4\xd3\x54\x2c\xe6\x84\xc7\x98\x5b\x92\x86\xe0\xe3\x82\x5b\x0a\xc9\x24\xd3\x42\x56\x85\x91\xc7\x59\x46\xa6\xf4\x9e\x29\x4b\x96\x59\x24\xfd\x15\x17\xeb\x93\xaf\xb2\xa1\x57\xe4\x9e\xa6\x5f\x68\x3a\xc9\xc8\x45\x8c\x7e\xee\x2c\x49\xb5\x60\xc9\xca\xbb\xc6\x16\x37\xd0\x09\xa4\x63\xb6\xcd\xe9\xdc\x6a\xe4\x2b\xc8\x62\x5c\x54\x85\x02\x0d\x79\x86\x10\x91\x2e\xe5\x9b\xa2\x9c\xc6\x5e\x22\x2b\x82\xa7\x10\x90\x2a\x7b\xac\x69\x24\xe6\x22\xe8\xe8\xae\x8b\x32\xa4\x43\xd8\x63\x1d\xff\x56\xe7\xc9\x57\x06\x83\x58\x76\x32\x21\xe0\x48\x9c\xc5\xe4\x8a\x8e\x69\xca\x03\x1c\x7e\x29\xcb\x16\x91\x80\x01\x69\x65\xf2\xc0\xa3\x48\x46\xe6\xb0\x9d\x5a\x5a\x7a\xe5\xe1\x8c\x3c\x37\xb0\xb1\xee\x79\xb8\xa0\x91\x6e\x01\x1c\xb5\xe3\x24\x9d\x51\x0c\x21\x85\x7c\x8c\x03\x4e\x44\xc8\xf0\x84\x10\x50\x52\xa6\x2c\xb5\x00\x91\xfc\xd4\x21\xbb\x79\x9d\x88\xd6\x9b\x1d\x8b\xaa\x9b\xd6\x6d\x3d\x65\xf3\x88\x8e\x58\x75\xe7\x1f\x83\x41\xf6\x82\x8a\xc1\x20\xdb\xde\x09\x48\x25\xaf\xe0\x8a\xe0\x8e\xca\x27\xf3\x69\xfa\xf9\x4c\xa4\x0e\x04\x4e\xfc\xab\x9b\x1b\x36\xba\xec\x1c\x10\x94\xb8\x4b\x93\x93\x0e\x69\xbc\x22\x9c\xbc\x26\xfe\xa6\x91\x57\x84\x6f\x6f\x3b\x3d\x33\xa7\x62\x4a\x3a\x06\x78\xc3\x6f\x5f\x99\x66\xc0\xb7\x5c\x1d\x54\x99\x8c\x09\xd2\x67\xb5\x42\x3e\x8a\xd4\x59\x43\x11\x1f\x06\x98\xe5\xba\xea\xe2\x2e\xd2\x14\x46\x81\x5c\xa9\x50\xa2\xf0\x6e\x20\xbd\x26\x42\x92\xf1\x8c\xa6\xcb\x9a\x7e\x40\x36\xcb\x40\xcb\xfa\x3c\x89\xba\xcc\x19\xdb\xdb\x6f\x3f\x57\xc1\x9e\x22\x83\x66\xdf\xe1\x50\x18\x46\x33\x26\x02\x60\x3b\xf0\x1e\x1f\x47\x4c\xae\x94\x42\xbd\x94\x26\x0f\xb6\x86\xbd\x67\xe9\x92\x2c\xe2\x19\x13\x25\x8a\x46\x0e\xe7\x21\x23\x78\x52\x0e\xea\x00\x18\xf9\xff\x71\x45\xf4\x51\x1e\x84\x9c\x8d\xb5\x0e\x01\x9f\x54\xa0\x33\xea\x1a\x27\x32\x77\x94\x75\x98\x5f\x4a\x79\xc6\x1c\xca\x6c\xde\x5f\x2b\xbb\xbe\xd8\x02\xc1\x12\x04\x73\x9a\x65\x2c\x84\x76\x4f\x17\x5a\x1e\xe4\x43\x4e\x8d\x13\xb2\xce\x88\x71\x85\x01\x76\x01\x5a\x31\x9d\xb5\x29\x9c\x51\x80\x2b\x45\x51\xe8\x77\xb0\x28\x2d\x39\xb4\xdd\x67\x24\x07\xcd\x83\x94\x18\x19\x64\x8f\x82\x54\xe4\x6e\xef\x8a\xb6\x17\x14\x33\x29\x61\x4f\x64\xaa\x87\x24\xbd\x63\x29\xe1\xa2\x92\xe5\xd9\x81\x9c\x67\x21\xa9\x80\xc1\x53\xa9\x1b\x4a\x92\xe1\x6f\xa4\x43\xaa\x32\x5b\xf2\xed\x1b\x01\x80\x1e\x51\x65\x5c\x88\xa4\x97\x72\xa0\x1a\xde\x55\x44\xdc\xf0\x5b\x68\xc3\x64\xf8\x5b\xcd\x02\x10\x62\x1f\xf7\x56\xad\x7c\xe0\x59\x26\xef\xe9\xab\x90\x6d\xd9\xf0\xdb\xa4\xa2\x0e\x81\x60\x2c\x44\x35\x58\x09\xac\x56\xae\xbd\x32\x79\xe5\xbd\x38\xa6\x51\xc6\xac\x17\x72\x91\x8b\xfe\x7b\xa5\x5b\x95\xa8\xda\x26\xc3\xdf\x6e\x34\x91\xb7\x25\xc2\x07\xab\x21\x33\xaf\x95\x2b\x88\x4a\x9f\x72\x68\xce\x92\xe1\x8f\xd3\xdb\xd8\x95\x2b\xcf\x38\x93\x93\xd3\x30\x88\x5d\xdb\xd5\xb5\xf5\x72\x65\xbd\x06\x24\x79\x55\x1b\xc5\x3c\x26\x72\xd6\x5b\xce\x77\x2b\xbd\x0c\xf6\x9c\x9e\x85\x41\xab\xb1\x5a\x43\x73\x57\x26\x02\xbb\x13\x8c\xe4\x7c\xa9\xb3\xe4\x30\x36\x62\xfc\x1e\xac\x35\xe8\x91\x88\x99\x9d\x74\x01\x79\x98\xf2\xd1\x14\x33\x44\x3b\x38\x4f\xe8\x1a\xe8\x68\x45\x72\x81\x76\x61\xc4\x04\x43\xfb\x1a\xb2\x11\xb6\x5d\x5c\x66\xb3\xfb\x86\x00\xc6\xcd\xbb\xca\xde\x0e\xd5\x39\x01\x40\x9c\x0e\xa8\xfb\x46\xb6\x36\x64\xc7\xca\x9a\x84\xff\x8c\x9d\xed\x94\x91\x8b\x03\xfd\xa5\xb6\x32\x56\xf7\x13\xed\x0e\x95\xd5\x0b\x0c\x54\x8e\x6a\xfe\x30\xcf\x72\x25\x8d\x2c\x9d\x59\xde\x80\x8e\x99\xa2\xb2\x38\x03\xea\x2d\xe1\x24\x9d\x30\x9d\x56\xb1\x4c\xd1\xe8\x97\x72\xff\xc6\x45\xdf\x4a\xa6\x50\xe4\xe8\xa7\x85\x11\x68\x2e\xc2\xc2\xf6\x53\x76\xb8\xe7\x18\xe0\x58\x28\x18\x75\xf9\x3d\x19\xdf\xd1\x1e\x34\x0e\xe5\x30\xc1\x21\x81\x76\xa8\x95\x76\xdd\x88\x36\x24\x9c\xb9\x08\x18\x6d\xd9\x32\x1e\x4d\xd3\x24\x4e\x16\x60\x89\x5f\x1b\xc2\xb5\xb7\x21\x7d\x67\x10\x55\x60\x1e\x03\x79\xd2\xd7\x42\xaf\x2c\xc6\x76\x36\x8b\xfa\x0d\x13\x14\x06\x9f\xd1\x13\x2b\x9d\x0e\x4a\xb3\xfb\x5f\x55\x4b\x0e\x74\x9f\xd4\x7c\xe0\xe9\xf1\xbf\x66\xdc\xbd\x80\xfc\xe7\xe2\x4b\x94\x4c\xfa\x3a\xef\x6e\xac\x16\x82\xd1\xc8\x29\x30\x63\xaa\x41\x51\xba\xba\x25\xa6\x2c\xc2\x28\x72\x94\x4c\x88\x0a\x98\x82\x63\xe0\x3b\x8c\xf6\x20\x93\xd5\x0a\xfc\xe2\x2d\xc5\x28\xad\x91\xe2\xb8\x53\x9a\x09\x75\x41\xcc\xc5\x39\xe8\xa2\xa2\x6a\x95\xa2\x13\x06\x95\xda\xd6\xeb\xda\x4a\x29\x1b\xa1\x75\xb6\x94\xd7\x2b\x56\x6b\x8e\x5d\xe4\x13\x65\xc4\xb9\xf7\xa6\x5a\x01\x12\x8e\x09\xa8\x8c\x94\x8d\x6e\x1a\xb7\x26\x23\xf8\xbb\x79\x5b\xc5\x28\x46\x9d\x46\x34\x9d\x55\x35\xbd\xb5\x75\x66\x9c\x6c\x95\xaa\x6b\x46\xbd\x32\xaa\x40\xc5\x78\xd4\x98\x78\xd6\x21\x15\x5d\xef\xca\x3a\xf5\xa0\xf5\x5a\x02\xcd\x25\xcf\x31\xd2\x46\xe9\xb1\xca\x28\xd7\xf6\x4f\x1b\x30\x55\x0d\xcb\x98\xb8\xe6\x33\x96\x2c\x44\x5e\xa3\x80\x34\xb4\x9e\x79\x32\xde\x56\x08\xd0\x9b\xc0\x5b\xab\xd1\x3c\xf8\x6f\x15\x74\xd3\xc2\xec\xaf\x00\xd1\x07\xf6\x91\x8f\xaa\x82\x19\xca\x81\xd3\xab\x56\xa3\xb9\xbf\x4d\xc6\x8c\x0a\xb4\x7d\x1f\x58\x1e\xd9\x58\x64\x4c\x73\x88\x0a\x64\xca\xe5\x09\x21\xbb\x67\x51\x32\x67\x69\x7d\x96\xfc\xc1\xa3\x88\xd6\x93\x74\xb2\xc3\xe2\x97\x9f\xae\x76\xc2\x64\x94\xed\x7c\x66\xc3\x9d\xff\xa0\xf7\xf4\x0a\x95\xd1\xce\xa5\xf6\xec\x77\x64\x4c\xef\x8b\x74\xe7\xb3\x1d\xb9\x17\x6c\x67\x4e\xc3\x2b\x70\x99\x65\x98\xf0\x99\xba\xc0\x1d\xef\xa1\x85\xf1\x54\xd7\xef\x15\x8b\xac\x7d\x6f\x73\x99\x3c\x1d\xe0\xbd\x3c\x66\x87\x20\x02\x52\xe5\x5c\x06\x56\xa3\xd4\x8d\x2a\x46\x05\xf2\x53\xc5\x16\xa3\x24\x9e\x10\x16\x27\x8b\xc9\x34\x00\xb1\x39\xc5\xc0\x55\x42\xc2\xe4\x99\x1a\xc3\x56\xe6\xe4\xa5\xf2\x48\x94\x99\x67\x78\xdb\x41\xbd\xee\x90\x46\xcd\x70\x1e\x6a\x1f\x49\x12\xae\xbb\x31\xe6\xac\xf4\xbe\x14\xb9\xa4\xd3\xe9\x90\x3c\x50\x9a\xa7\xb7\xde\x93\x0a\xa9\x78\xa6\xf0\x88\x66\x52\x6b\xcd\x69\x08\xd5\x9a\xa9\xa3\xef\xc8\x68\x4a\xd3\x0c\x6b\x57\x5f\x43\xe5\x4f\x26\x6b\x2d\x96\xca\xca\x34\xa0\x94\xcd\x19\x15\x55\x37\x97\x9d\x62\x2e\x64\x9b\x34\x4d\x1d\x55\xfd\x0d\x2a\xc3\x73\x30\x1a\x81\xd3\xb2\x90\xc8\x6b\x22\x29\x6c\x56\xff\xf5\xe3\xf1\x14\x74\xc9\xda\xd1\x78\x1a\x87\x4f\x8c\xc5\xd3\x38\xfc\xdf\x91\xf8\xdf\x6b\x24\xda\xf5\x47\xe7\xea\xe9\x81\x69\x8f\xc4\xa7\xb5\x89\x3b\xa1\xfb\xdf\x7c\x12\x47\xeb\x93\x7c\x47\x09\x6a\x10\xac\x22\x59\x08\x1e\x71\xc1\x99\x13\x67\x94\xb5\x2f\x4e\x64\xe0\xbd\x27\xe0\xa9\xce\x18\x9e\x18\x87\xf3\xf5\x93\x45\x44\x53\x1d\x4d\x47\xe7\xed\x81\x55\x52\x46\x26\x89\x1a\xf4\x6a\x19\x99\xd0\x2b\x04\x72\xb3\x34\xb7\xfa\xd6\xfe\xf7\xf6\xb2\x7b\x72\x4a\xfe\x7e\xf1\xe9\xf2\xea\xf4\x7d\x7f\xb3\x34\x84\x90\xe0\x9f\xff\xfc\xe7\x3f\xeb\x1b\x41\xbf\xfd\xf4\xe5\x35\xf9\xe7\x3f\x37\xc1\xee\xfe\xfa\xf2\xe5\xcb\xca\xcb\x9d\x8d\x32\xde\x3d\x86\xff\x06\x83\xfb\xc1\x60\x03\x78\x27\xe9\x28\x7c\xb0\x11\x9e\x7c\x23\x1a\xaf\x12\x3c\x95\xe8\xfa\xe7\x53\x72\x79\xfa\x0e\xd7\xfe\xa8\xe5\x48\x67\x17\xe7\x57\x1b\x94\xd3\xbd\x3c\x25\x27\x17\x1f\xce\xce\xdf\x39\x7e\x7b\xca\x2a\xe0\x97\x90\x07\xba\x44\xff\x38\x65\xf4\x4e\xca\xbc\xcb\x53\x12\x71\xc1\x52\x1a\xe1\x0a\x38\x23\xbc\xeb\x84\xf4\xf9\xa3\x1c\xc9\x0f\xd3\x25\x09\x93\xb8\x22\xc3\x63\xcb\x64\xf1\x86\x90\x8b\x29\x7a\x56\x84\x46\x59\x22\x67\x42\x9c\x22\x70\x2d\x2f\xf8\xed\x52\x80\x60\x36\x61\xc2\xb2\xb8\x22\xa7\x62\xd2\x79\xca\x64\x76\x2c\x1b\xd1\x39\x73\xfc\xad\x4c\x30\x1a\x06\x60\x21\x65\x22\x49\xe6\x32\x5c\xc7\x33\x92\x07\x6d\x6b\x04\xb8\xe5\xae\xc8\x02\xf5\x94\xe1\x7c\x1e\xc8\x0d\x90\x03\x57\x57\x64\xca\x1e\x25\xeb\x04\xe4\x87\xcb\x77\x6f\x51\x0e\x4e\xd9\x63\x73\xff\x98\xec\xfc\x50\xbd\xa1\x2f\xc7\x8d\x97\x47\xb7\xb5\xb2\x6f\x3b\x3c\x90\xf2\xab\x2c\xab\xcb\x77\xef\xde\xe6\xb9\xb5\xda\x4e\x6e\x5f\x5b\xab\xda\xfa\x3f\xfc\x6c\xd3\xc9\x50\x67\x9b\x4e\x86\xd5\x34\x4d\x83\xc9\x64\x12\x0c\x87\xc3\x1a\xe6\x9f\x4e\x86\xc7\x68\xc8\x5f\xb2\xc9\xe9\xe3\xbc\xaa\xe5\x73\xb5\xf2\x8f\x9d\xec\x45\x3a\x19\xee\x64\x2f\x76\xaa\x3b\xd9\x8b\xea\x4e\xf8\xb5\x19\xec\xae\x6a\x3b\xd9\x8b\xc0\xff\xbb\x42\xb6\x73\xef\xa5\xe2\xbd\xdc\x81\x8f\x1f\x2b\xf9\xfb\x9a\x09\x8f\x0f\x06\x3b\x3b\x93\x80\x54\x06\x83\xc1\xa0\x52\x0b\x48\x85\x57\x6a\x9b\x92\x1f\x50\x4a\xf3\x2a\xd0\xa7\xeb\x40\x77\xb2\x17\x2e\x89\xdf\xad\x91\xf7\xb7\x93\xba\xfa\xe6\x58\xbd\xdf\xae\xbe\x39\xde\xa9\xef\x84\xdb\xb5\x37\x80\xaa\xfd\xcb\x75\x3d\x95\x6b\x28\x2f\xdf\xbd\x05\x17\xea\xf2\xdd\xdb\xae\xae\xda\xe3\x77\xaa\xf6\xe6\xff\x5f\x75\x7b\xf3\x2f\x57\xae\x1b\x93\xff\x6c\x36\xc9\x60\x0b\x06\x5b\x18\x86\xe1\x4e\xfe\x31\xd8\x92\x07\x7d\x62\x6d\x1f\x9b\x4d\x1c\x8e\x72\xda\x04\xbe\x9a\xa1\xdd\x0c\xda\xab\xda\x60\xb0\xb3\xc1\x93\xec\xc5\x8f\x36\x17\x9c\xc6\x93\x88\x67\x53\xa5\xe2\x62\x3a\x93\x85\xc1\x97\x63\xb2\x73\x43\x5f\xfe\x71\x0b\x1f\x8d\x97\x47\x83\x41\x76\xbb\xbd\x13\xf8\x61\xa4\x13\x79\xac\x3a\xa1\x7a\x44\x56\xc3\x30\x0c\xd4\x4f\x4d\xe5\x2b\x4f\xed\xe5\xb1\x48\x08\x95\xd5\xb5\x9e\x5b\x13\xb0\xd8\xcd\x90\x8f\xf5\x5a\x45\x38\xf1\x10\xff\xd0\x9a\x63\xc4\x33\x8d\x69\xba\x94\x57\x51\x4f\x69\x1c\x46\x3a\xba\x67\x66\xfe\x2b\x61\x18\x56\x30\x04\x93\xc4\xb8\x02\x00\x17\x3a\xc4\x8c\x0c\x97\x82\x29\xb2\xcc\x54\x22\x8f\x49\xc8\x46\x7c\x46\xa3\xa7\x66\x25\x21\x0d\xda\x34\x2e\x9d\x40\x9a\x3a\x63\xde\x0b\x08\xea\xa4\x90\xc8\xab\x3b\x8c\xe7\x78\x11\x45\x60\x1d\x82\x85\x22\x1f\x8e\x92\x45\xa4\xe7\x7f\xad\x38\x12\xe6\xad\x62\x55\x9e\xec\x9d\x0c\xaf\x13\xc8\xda\x99\xf0\x8c\x16\x4c\x99\xe0\x79\x10\x09\x8f\xe8\xaf\xde\x9b\x39\x0b\xd2\x21\xd5\xfc\x08\xde\xfb\x80\xb4\xf6\xf6\x6a\xe4\x05\x69\xed\x1d\xd4\xf2\xa3\xcc\xaa\xcd\x7d\x1d\x0d\x51\x55\x92\x01\x95\x3f\xe6\x34\x84\x34\x6d\x65\x2d\x9a\xa0\x90\x8c\x1b\xc9\xde\x9d\xe1\xd9\xed\xae\xa2\x00\x82\x1f\x65\x2a\x6f\x0e\xcc\xba\x72\x54\x59\xb0\xea\x49\x05\x46\x7c\x85\x6c\xab\x2a\xd0\x74\x79\xd3\xbc\x05\x4b\xb6\xb2\xe3\x3e\x6d\x95\x3e\xdd\xbd\x2d\xc6\xe0\xcd\xd0\x8d\xd8\x84\x8e\x96\x79\xe7\xdc\x33\x7f\xc8\xea\xb1\x5d\xaf\xd7\x6b\xe5\x63\xf7\x7a\xca\x96\x44\xd0\x3b\xa6\x56\x9c\xa7\x33\xb9\x16\xbf\xd9\x22\x43\x2e\x8e\x51\x03\x1a\x6b\xe1\xe5\x4f\xe4\x87\xcb\x46\xa3\xf1\xae\xd1\x68\xbc\x6d\x34\xe4\x36\x86\x56\x5b\x43\x51\xc3\xd9\xd0\xcb\x46\xe3\xdd\xbb\x46\xe3\xed\x5b\x05\xdd\xdd\xcf\xa1\x97\xef\x00\xfc\xd6\x40\x2f\x1b\xef\xde\xbd\x6b\xbc\x7d\xfb\x56\x42\xdb\x87\x06\x0a\x58\x00\xbf\xd5\x24\x67\x0c\xb9\x0b\x48\x9e\x25\x99\x20\x19\x9f\xc4\xb8\x23\x21\x16\x90\xca\xb2\x0d\xae\xd3\x45\x3c\xa2\x9a\x69\x32\xbc\xe6\x96\x84\xc9\x03\x06\x26\x25\xe5\x24\xe3\xf1\x48\x9a\xe0\x95\x0c\x23\xc5\xd0\x6c\xea\xd6\x99\x12\xab\xb9\xfe\xd8\x6c\xfe\xcc\x1e\xaf\x13\x80\xd9\x23\x57\x0d\x4f\x1c\x1a\xf7\x75\x5c\x6b\x80\xc7\x40\x56\x2b\x3f\x54\x6a\xa5\x03\x05\x65\x19\x8c\xd6\xb9\x0c\x66\x33\x8a\xb7\xbd\xff\x40\x92\xf1\x18\x05\x1a\x0c\xf4\xfb\x7a\xb6\x18\x66\x22\xad\xe6\xde\x11\x6e\xe6\xc0\x75\x17\xfa\x08\xa2\x8c\xff\x21\x2d\x22\x2c\xfd\x66\x37\x20\xfb\x01\x39\x0a\x48\xb3\x75\x9b\x9f\x73\x79\x9f\x3b\x5a\x9d\x0e\x79\xd9\x5c\x3b\x72\x4d\xee\x71\x12\xbf\x04\x13\x46\xb6\x5d\x9e\xfd\xbd\x62\x8e\x9d\x9b\x7f\x28\x29\xbd\xc3\xcb\xeb\xa7\x6b\x38\x8f\xb8\x50\x2b\x57\xd0\xef\x48\x16\xa2\xae\x99\x0e\x48\xc7\x5a\x46\xda\x33\xdc\x7d\xa5\xdf\xa5\x76\xf5\x1b\x01\x62\x6b\xf9\xdb\x89\xfd\x16\x5e\xf9\x80\xa1\x0f\x00\xde\x72\x70\x8a\xc0\x73\xbc\x12\x03\xe7\x14\x12\xd2\xdc\xcf\xc7\x90\x91\x40\x71\x92\xce\x9a\xfb\x9e\x08\xc2\x45\x98\x67\xb1\x00\x69\x52\x10\x36\xb2\x5e\x1d\xd2\x22\x6f\xc8\x3d\x39\xce\x79\x68\x67\x47\x95\x60\x42\xc3\x84\xe4\xe8\x26\xa2\x5f\xbf\x26\x6d\x99\x64\x67\x87\x1c\x16\xc0\xf7\xe4\xa7\x9f\x48\xb5\x4d\x5e\x10\x59\xab\x97\xa4\x55\xab\xbd\x42\x70\xab\x0d\xb2\x79\xb7\xa5\xd3\xac\x2c\x59\x64\x0d\x61\x5c\x1e\x76\x9d\x80\x4d\x52\xbd\x49\x03\x32\x09\xc8\xf0\x16\x2f\x35\x92\x15\xad\x3d\x21\x76\x0a\x9a\xf0\xcf\x89\x1b\x4c\x2d\xd3\xa9\xcd\x21\x4e\x8e\x72\x52\x48\x4e\xe0\x83\xec\x51\xfa\x66\x9c\xcb\x27\xcc\x07\xa4\xea\x74\x3a\x9d\xee\xe4\x1f\x6a\x42\xde\x52\x9a\x8a\xb6\xcc\x3a\xf0\xbc\x4d\x42\x3e\xe1\x22\x23\x5c\xe8\xb9\x8e\x39\x0d\x43\x16\xc2\x88\x84\xbe\x6f\xe3\x0a\x17\xa5\x70\xc2\x5c\x50\x8c\x39\xae\xc2\xcb\x67\x15\x41\x0d\x6f\xa2\x6b\xfd\x86\xda\x48\xd7\xfa\x0a\xfa\xff\x8e\xae\x7d\x6c\x36\xd7\x4a\xac\xb5\x7a\x76\x67\x87\x7c\xa4\xb2\x71\x94\xfc\xc4\x2d\x44\xa6\x41\xc7\xc9\x22\x55\x6d\x8a\xf3\x5a\x3c\xc3\x06\x05\x21\x56\x9d\xa7\xc9\x90\x0e\x23\xad\x22\x77\x76\x08\x8a\x0d\x96\x11\xb9\xdb\x4e\xad\x8c\x0b\xf9\x78\xcc\x47\x8b\x08\xdb\x3f\xa3\x72\x12\x4c\x9a\x4a\x28\x97\x11\x4c\x32\xc6\x66\x19\x11\x49\x9e\x17\x4d\x53\x9c\xe8\x15\x78\x5c\x2a\xf6\xa1\x6c\x19\xb5\xdc\x08\xb7\x03\xe1\xc6\x2c\x19\xcc\x48\x66\x43\x1e\xab\xe9\xe5\x71\x9e\xcb\x84\xce\x66\x30\x66\xd2\x54\xee\x2c\x0e\x54\xcb\xcb\x20\x8a\x48\x69\x9c\xc9\x75\x49\x72\xa7\x5b\x1c\x92\xdf\x17\x34\x16\x66\xee\xd7\x04\xc9\x72\x01\x06\x5c\x6c\xcd\x19\x81\xfc\x93\xa3\x46\x8d\xbd\x39\xcd\x87\x1b\x36\xdf\x70\x49\x64\x88\x4c\xaf\xc2\xcc\xd7\x2a\xd7\x09\x19\x6c\x8d\x07\x5b\x64\xc8\x46\xc9\x8c\x65\x56\x96\x83\xad\xf1\x78\x3c\x1e\x6c\xd5\x09\xb9\x1a\xd1\x08\xd7\x72\xc2\x60\xa5\x24\x17\xd8\x79\x2c\x4a\x2d\x42\x87\x82\x5a\x7b\x07\x7a\xd1\x45\x46\x67\xcc\xca\x90\x66\x64\xb4\x10\x48\x43\x32\x1e\xe7\xc6\x66\x9d\x90\xcf\x8c\x64\x77\x4a\x43\xcd\x78\x18\x46\xe0\x65\xb3\x39\xb6\x06\x2e\x6b\x0c\x93\xc5\x30\xb2\xf3\x72\x2b\xe1\x45\x34\x8d\xd0\x24\xdb\xc4\x11\x9c\xab\x75\xcd\xd9\xf2\x9b\x73\xc6\x23\x9a\x92\x90\xd1\x88\x4c\x59\x0a\x44\x02\xa7\xcd\x69\x98\x11\xf1\x90\xc8\x86\xce\x35\xbe\xd7\xbc\x56\x46\x68\x4d\x57\xa1\xbb\x61\xdc\x93\xc5\x5c\x35\x51\x0d\x5a\x15\x07\x9f\x17\xe8\x92\x38\x2e\x6f\xcb\xb7\x32\x92\x4d\x1f\x2f\x1f\xe8\x12\xa3\x10\x23\x1a\xcb\xa6\xc9\x37\xbf\x03\x1b\xf3\x09\x8f\x69\x64\xf9\x46\xa5\xad\xb2\x51\x8b\xec\xba\x2d\x72\x3d\x4d\x19\x73\xab\x0d\x0c\xa3\x96\x36\x28\xf6\x28\x8c\xb3\x31\x92\x83\xa9\xea\x56\x66\xac\x3e\xa9\x93\x66\x63\xac\x47\x1d\x7c\x1f\xe7\x00\xb4\x48\xa0\xe7\xb4\x5e\x6d\x15\x88\x85\x2e\xc2\x86\x92\xe2\x73\xca\x48\xcb\x72\x5c\xea\x8e\x96\xb4\x2e\xdf\xf0\x9a\x80\xec\x60\x57\xac\xb1\xd1\xcb\xed\x73\xe9\x6c\x7a\x16\xba\x25\xcc\xe4\xa1\x19\xca\xd6\x42\xdb\x59\x72\x77\xdd\x6e\xe5\x72\xc3\xad\x4c\x8b\x5a\x86\x60\xf5\x5e\x37\x03\x8b\x32\xb6\x3e\x09\xa8\x37\xd4\xbb\x3a\x81\xaa\x1a\xce\x27\xcf\x75\x4c\xbb\xe9\xac\x85\x58\xa3\xb7\x21\x09\x68\x6c\x1c\x94\xeb\x15\x76\x26\x77\x49\xa9\x85\xa8\xa0\x01\x2a\xca\x52\xaf\xb8\xfe\x2a\x6a\x71\x31\x65\x3c\xcd\x95\xb8\x5e\xee\x3d\x33\xca\x0e\xd7\x1b\x4a\xe7\x36\x57\x37\xa0\x1b\x31\x68\x50\x97\x3a\x58\xa9\xa8\xfc\xc6\x91\x1c\x18\x58\x8a\x57\xc5\x19\xd4\xae\x54\xd0\x70\xeb\x34\xea\x37\xb9\xea\xf3\xb5\xfc\xeb\xa7\x15\xe9\x6a\x3d\x6c\x19\x08\xa9\x5a\x10\x9f\x8c\xcd\x53\xa5\x30\x1c\xe5\x58\xaa\x78\x0b\x25\x5c\x4f\xed\xea\xe5\x45\x18\x43\xd8\xd3\xae\x53\x18\x06\x50\xae\xa5\x5d\x69\x3a\xb1\xd6\x24\x60\x04\x51\xad\x4a\xb0\x46\x2c\x3e\x7e\x65\x81\x5a\xed\x52\x50\xab\xad\x17\xf8\x69\x5d\xad\xc8\xab\x4e\xad\x85\xbd\x30\x80\xa7\xec\xd1\x12\x14\x6d\x4b\x50\x80\x66\xe8\xc0\x67\x1e\xe3\xc1\xd2\x03\x43\xf2\x34\x20\xca\x18\x74\x96\xbb\xa9\xc6\x1a\x6c\xfd\x30\xd8\x22\xdb\x24\x55\x3f\x13\xf5\x33\x84\x1f\xb3\x50\xcd\x59\x82\x60\x33\x2d\x94\x2c\xd9\x16\x2b\x54\xb3\xe6\xc1\x9c\xe5\xa4\x45\x1f\xc2\x71\xa7\xab\x72\x95\x9d\x12\x16\xd2\xa3\x96\x12\x63\x9b\x54\x02\x62\x47\xbe\x5c\x58\x6b\x33\xd8\xae\x81\xd5\x2a\x36\x8f\xca\x65\x21\x93\xf5\xab\x6f\xd7\xac\xf7\x5d\xb3\xce\x90\xa6\x93\x1b\x7e\x4b\x3a\x79\x4f\xca\x07\xee\x0a\x0e\x67\x95\x07\x14\xee\xc0\x1d\x11\xa2\x9a\x88\xa6\x93\xcd\x45\x41\x6e\xad\xe3\x86\x7f\x5b\x04\x94\x0b\x09\x2b\xe8\x3e\x26\x13\x7e\xcf\x40\xed\x61\xb0\xd6\x64\x13\xa8\x43\x0b\xe7\x53\x4a\xc6\x9c\x45\xa1\x59\x7e\x4b\xe8\x03\x5d\xfe\x7f\x54\x96\xe4\x4d\x51\x14\x28\x8e\x38\x94\x63\x5a\x49\x97\xff\x5a\xa9\x82\xf1\xb1\x9f\x91\x6b\x4b\xa4\x4a\x41\x12\x80\xea\xb3\x57\xf5\x9a\x65\x50\x2a\xbf\x51\x4a\x47\x77\xa0\x7b\x72\x25\xf9\x5d\xee\xb3\x79\xef\x07\x60\x3c\x2b\x86\x56\xad\x3a\x7c\xd3\xb8\xad\x81\xe3\x0a\xac\xf3\xcd\x71\x57\x8b\xff\x55\x3d\xf6\xc5\x84\xe4\xf0\xcf\x26\x6c\xa9\x84\x8d\x9a\x1b\xf5\x0b\xc8\x7e\xed\xff\x0d\xc6\xbd\xa6\x6a\x01\xa2\x5c\x7e\x35\xca\x32\xc5\x8e\x38\xdd\xcf\xf3\x83\x3c\xe4\xdd\x3e\x22\xf7\xc4\xd3\xc9\x10\x46\x16\x30\xa6\xef\x82\x5f\x62\x69\xd9\x77\x7c\x4a\x12\xeb\x90\x48\x99\x33\x99\xbf\xf4\x1c\xca\x90\x8d\xad\x20\x58\xc8\xc6\x4f\x47\xc1\x4a\x14\x28\x66\x61\x2d\x5b\x2b\x09\xc0\xd6\x05\xcb\x04\xe2\xdc\xdc\x42\x36\x76\x63\xaf\xa5\x66\x97\xca\x7f\x5d\x48\x75\x17\x9a\xad\x4d\x9c\x6d\x74\x76\xab\x2a\x39\x27\x59\xba\xa4\x65\x2c\x03\xcd\xe5\xda\xa5\xbd\x3e\x11\x65\x63\xc7\x5e\x64\x48\x7e\x02\x9b\xfe\x0d\x91\x0a\x88\x1c\x93\xe6\x2b\x2f\x8a\x4c\x51\xef\x49\x46\xcb\x55\x18\x91\xfc\xe3\xfe\xdd\xb2\xff\xc6\xa2\xb4\x2a\x73\x6b\x7d\x71\xcf\x52\x39\xed\x6a\x04\xf6\x68\x4a\xe3\x98\x45\x20\xf5\x64\x85\x77\x70\x0c\x61\xed\x4a\xaa\x9b\x31\xd1\x55\x95\xc9\xeb\x9a\x4e\x86\x81\xcc\xad\x74\x49\xe6\x5a\x59\xa4\xaa\xde\x91\x69\x37\x33\x80\x8b\x5d\xf9\x81\x3f\x12\x0a\xbe\xff\x88\xc5\x82\x4e\xd0\x0b\xa6\x44\x70\xdc\x7e\x10\xe1\x52\x46\xe8\x4c\x32\xa4\x19\x5b\x5b\xad\x19\x77\x64\x2e\x60\x03\xcc\x23\xd0\x39\xbb\x55\x6b\xae\xa9\x1b\x24\x34\xe1\x48\x9a\x2e\x5b\x6b\x80\x90\x77\xcd\xdf\xc2\x61\x09\xa3\xf6\x2b\xb2\xbd\xcd\x1d\xe9\x1e\xf2\xf1\x58\x2e\x44\x6d\x81\x34\x7a\x89\x74\x98\xbd\x42\xea\x2f\xd2\x29\x75\xb1\xd4\x5b\x30\x72\x30\x9f\x17\x79\xbd\x4a\x04\xd3\xfa\xe6\x6f\x16\xdb\x5f\xc6\x7a\x0b\x63\x27\xe7\xa1\x5c\xa9\x72\x91\x99\x60\x9d\x65\x58\x5c\xc4\x24\x5b\x8c\x46\x2c\xcb\x02\x42\x0b\xac\xa8\xf7\xe5\x48\xd2\x70\x1b\x40\x5f\x0a\x3a\xa5\x46\x2d\xeb\x03\xb3\xd3\x09\xf0\x30\xe5\x84\x34\x4b\x7a\x5b\xf7\x82\xdd\xe5\xf8\xca\x92\x65\x72\xa4\xd8\xd2\x0c\xea\x56\xa9\x95\x28\x5c\x09\x5d\x37\x7f\x44\x6d\xc5\x6b\xbb\xa7\xa4\x74\x4d\x71\xae\x1b\x96\xeb\xb5\xcb\xa6\x45\xff\xb9\x92\xf3\xfd\x59\xcd\xef\x52\x23\x47\x8b\x7b\xc9\x71\xe5\x04\xb4\x49\x3c\x18\x54\x04\xc1\x06\x96\x4b\x9d\x65\xbb\xda\xcc\xad\x0c\x8d\x0d\x82\xcd\xb8\x6f\x42\xb1\xaf\x63\xbc\x7a\x1a\xee\xdc\xec\x84\x15\x29\x9f\xcf\x59\x88\x67\x47\xcd\xe9\x88\xc9\xdd\x88\xc6\x06\x13\x09\x89\x92\x07\x96\x8e\x68\xa6\xb6\x74\xe5\x27\x1e\x29\xd3\x52\xcd\xb0\x04\x4a\x5f\x66\x66\xe4\xb9\x5b\x0e\xcc\x39\x4e\x39\xa9\x22\x41\x57\x74\x26\x8f\x19\x83\xb4\xf6\x11\x47\x6a\x61\x61\x32\xba\x83\x2a\xea\xa8\x76\x5d\x3c\x0a\x77\x0d\x55\xf9\xbe\x92\x6b\x3d\x99\x92\x17\xf5\xfd\xc0\x32\x86\x39\xb3\x79\x82\x67\x5c\xac\x6b\x41\x4f\xd1\x6b\xbd\xe9\xef\xf2\xb0\x58\x43\x75\x8b\x23\xd7\xe0\x17\x76\xc3\x5a\x85\x6f\x20\xb8\x0f\xe4\x56\x09\x3f\xcc\xac\x23\x67\xf4\x45\xf2\x1e\xfa\xe6\x84\x66\xac\x6a\x62\x3a\xff\x65\xc5\x59\x0b\x1f\xb2\x6d\x5c\xf9\x50\xf9\x2f\x2a\xf5\xa9\x91\x7f\x9d\x8f\x0a\xd9\xbd\x73\x8a\xf7\xfb\x97\xe9\x5e\x40\x9d\xc0\xf7\x8f\x12\xe3\xea\x16\x6d\x51\x41\x81\xd5\x1b\x0c\x12\x32\x32\xd8\xea\x9e\x5f\x9d\x91\xe6\xfe\x60\x4b\xee\x01\x27\x84\x54\x7e\x68\xe0\x7f\x60\x31\xfc\x70\x72\x92\x7f\x6d\x9f\x1e\x75\x1b\xfb\xf2\x69\xbb\x8b\x4f\x75\x82\xdd\xf6\xfe\x5e\xb7\x8d\xaf\x0e\xf6\xf6\x1a\x07\x6f\xf1\x6b\x63\xff\xe8\xf0\xa8\x8b\x5f\x7b\xbb\xbd\x83\x93\xbe\x49\xb0\xb7\xb7\x77\xb0\xb7\x8b\xaf\x4e\xfb\xad\xa3\xd6\x91\x4c\xd0\x78\xdb\x6d\xca\xa7\xfd\x93\xd3\xa3\xb6\x95\xe0\xa0\x75\xd4\x87\x0c\xe0\x55\xab\xd1\x38\x79\xab\x13\xec\xbd\xed\xc9\x6c\xe0\xbf\x93\x4a\x60\x05\x1d\xa1\x82\xfb\x8f\xfb\xaa\xe1\x46\x8b\xa1\x3a\x03\xa8\x50\x49\xf8\xb2\xd7\xcf\xbf\x1e\x1e\xe4\x5f\xbb\xe6\x69\xcf\x3c\xed\x5b\x84\x41\xca\x3c\x9b\xbd\x7e\x9e\xcd\x5e\x3f\xcf\x66\xaf\xdf\x35\x4f\x7b\xe6\xa9\x9b\xcd\xe1\x41\x9e\xcd\xe1\x41\x9e\xcd\xe1\x41\x9e\xcd\xe1\x41\xd7\x3c\xed\x99\xa7\x6e\x36\x5d\x43\x4d\xd7\x50\xd3\x35\xd4\x74\x0d\x35\x5d\x43\x4d\xd7\xa3\xa6\x67\xa8\xe9\x19\x6a\x7a\x86\x9a\x9e\xa1\xa6\x67\xa8\xe9\x79\xd4\xf4\x0d\x35\x7d\x43\x4d\xdf\x50\xd3\x37\xd4\xf4\x0d\x35\x7d\x45\x4d\x3e\x5c\xfa\x79\x5f\xc1\x57\x95\x11\x7c\x55\x19\xc1\xd7\xae\x79\xda\x33\x4f\x6d\x7a\xa0\x7b\xf2\x6c\xf2\xbe\x82\x2f\x79\x36\x79\x5f\xc1\xd7\x9e\x79\xea\x66\x93\xf7\x15\x7c\xcd\xb3\xc9\xfb\x0a\xbe\x76\xcd\xd3\x9e\x79\xea\x66\xd3\x35\xd4\x74\x0d\x35\x5d\x43\x4d\xd7\x50\xd3\x35\xd4\x74\x3d\x6a\x7a\x86\x9a\x9e\xa1\xa6\x67\xa8\xe9\x19\x6a\x7a\x86\x9a\x9e\x47\x4d\xdf\x50\xd3\x37\xd4\xf4\x0d\x35\x7d\x43\x4d\xdf\x50\xe3\xf7\x15\xb4\x8d\xca\x08\xbe\xaa\x8c\xe0\xab\xca\x08\xbe\x76\xcd\xd3\x9e\x79\x6a\xd3\x03\xed\x9a\x67\x93\xf7\x15\x7c\xcd\xb3\xc9\xfb\x0a\xbe\xf6\xcc\x53\x37\x9b\xbc\xaf\xe0\x6b\x9e\x4d\xde\x57\xf0\xa5\x6b\x9e\xf6\xcc\x53\x37\x9b\xae\xa1\xa6\x6b\xa8\xe9\x1a\x6a\xba\x86\x9a\xae\xa1\xa6\xeb\x51\xd3\x33\xd4\xf4\x0c\x35\x3d\x43\x4d\xcf\x50\xd3\x33\xd4\xf4\x3c\x6a\xfa\x86\x9a\xbe\xa1\xa6\x6f\xa8\xe9\x1b\x6a\xfa\x86\x1a\xbf\xaf\xba\x86\xaf\xba\x86\xaf\xba\x86\xaf\xba\x86\xaf\xba\x86\xaf\xba\x1e\x5f\x75\x0d\x5f\x75\x0d\x5f\x75\x0d\x5f\x75\x0d\x5f\x75\x0d\x5f\x75\x3d\xbe\xea\x1a\xbe\xea\x1a\xbe\xea\x1a\xbe\xea\x1a\xbe\xea\x1a\xbe\xea\x7a\x7c\xd5\x35\x7c\xd5\x35\x7c\xd5\x35\x7c\xd5\x35\x7c\xd5\x35\x7c\xd5\xf5\xf8\xaa\x6b\xf8\xaa\x6b\xf8\xaa\x6b\xf8\xaa\x6b\xf8\xaa\x6b\xf8\xaa\xeb\xf1\x55\xd7\xf0\x55\xd7\xf0\x55\xd7\xf0\x55\xd7\xf0\x55\xd7\xf0\x55\xb7\xc0\x57\x3d\xc3\x57\x3d\xc3\x57\x3d\xc3\x57\x3d\xc3\x57\x3d\xc3\x57\x3d\x8f\xaf\x7a\x86\xaf\x7a\x86\xaf\x7a\x86\xaf\x7a\x86\xaf\x7a\x86\xaf\x7a\x1e\x5f\xf5\x0c\x5f\xf5\x0c\x5f\xf5\x0c\x5f\xf5\x0c\x5f\xf5\x0c\x5f\xf5\x3c\xbe\xea\x19\xbe\xea\x19\xbe\xea\x19\xbe\xea\x19\xbe\xea\x19\xbe\xea\x79\x7c\xd5\x33\x7c\xd5\x33\x7c\xd5\x33\x7c\xd5\x33\x7c\xd5\x33\x7c\xd5\xf3\xf8\xaa\x67\xf8\xaa\x67\xf8\xaa\x67\xf8\xaa\x67\xf8\xaa\x67\xf8\xaa\x57\xe0\xab\xbe\xe1\xab\xbe\xe1\xab\xbe\xe1\xab\xbe\xe1\xab\xbe\xe1\xab\xbe\xc7\x57\x7d\xc3\x57\x7d\xc3\x57\x7d\xc3\x57\x7d\xc3\x57\x7d\xc3\x57\x7d\x8f\xaf\xfa\x86\xaf\xfa\x86\xaf\xfa\x86\xaf\xfa\x86\xaf\xfa\x86\xaf\xfa\x1e\x5f\xf5\x0d\x5f\xf5\x0d\x5f\xf5\x0d\x5f\xf5\x0d\x5f\xf5\x0d\x5f\xf5\x3d\xbe\xea\x1b\xbe\xea\x1b\xbe\xea\x1b\xbe\xea\x1b\xbe\xea\x1b\xbe\xea\x7b\x7c\xd5\x37\x7c\xd5\x37\x7c\xd5\x37\x7c\xd5\x37\x7c\xd5\x37\x7c\xd5\xf7\xf8\x4a\x99\x89\x93\x94\x2d\xe5\x64\x7e\x4a\x67\x73\xdb\x4a\x3c\x84\x7f\x98\xb4\xd9\x82\x7f\xf2\xeb\x09\xfc\xc3\xaf\xad\x7d\xf8\x87\x5f\x77\x1b\xf0\x4f\x7e\xed\xc2\x3f\x43\x6d\x1b\xff\xc3\x57\xed\x53\xf8\x27\x95\xe7\x21\xfc\xc3\xaf\x98\x8b\xcc\x7c\xff\x04\xfe\xe1\xd7\x83\x7d\xf8\x67\x09\x7e\x24\x47\x0a\xf3\x2e\xfc\xc3\xaf\x47\x6d\xf8\x27\xbf\x9e\xc2\x3f\x29\x41\x10\x81\x5f\xdf\xb6\xe0\x9f\xc9\xe6\xed\x09\xfc\xc3\x57\x58\x96\x24\xbf\xd7\x80\x7f\xf2\x6b\x17\xfe\xe1\x57\xa4\x56\x66\x8e\x26\xf6\xa9\x5c\x1b\x7e\x5b\x2b\x78\x29\xa3\x45\x9a\xb2\x3c\xac\xa6\xfc\x94\x40\x9f\x69\xb5\x94\x73\x31\x8b\x8c\xa5\x18\x54\x9c\x94\xce\x70\x8c\xd6\xba\x2f\x05\xef\xa6\xb0\xd1\x29\xd4\xab\x09\xe9\x68\x94\xa4\xa1\x5a\xa2\xe1\x78\xd5\x45\x8f\xba\xa4\xf8\x73\x75\x8c\x09\x3a\xb4\x83\x2d\x1a\xf1\x11\x1b\x46\x0b\x36\xd8\x3a\x96\xcb\xdb\xab\xad\x76\x23\x20\xad\xf6\xa1\x5c\x67\x3c\xd8\x0a\x14\x32\x16\xfc\xf7\x05\x7b\x98\x72\x61\x83\xf7\x00\xbc\xbb\x17\x90\x56\x73\x0d\xb8\x69\xa3\x01\xb8\x7b\x04\xe8\xa3\x72\x74\xcb\x42\xef\x02\x0d\xad\xdd\x80\xb4\x1a\xed\x72\xf4\xae\x85\x6e\xec\x05\xa4\x79\xd4\x0a\x48\xf3\x60\xbf\x1c\xdd\x36\xe8\x26\x10\xd1\xdc\x6d\x06\xa4\xd9\x6a\x58\xe8\xdf\x17\x74\x46\x53\x1e\x5b\x55\x6c\xb6\x0e\xb0\x29\x80\xe8\x56\x19\xb4\xf9\x27\xb0\x56\xf5\x9a\x4d\xa8\x1e\xd4\xb1\x79\x74\x58\x86\xb5\x2a\xd7\x6c\xb4\xa0\x15\xa0\x86\x07\xa5\xe4\x5a\x55\xdb\xc7\x9a\xc1\x47\xd3\x6e\x87\x3f\x16\x69\xa1\x93\x91\x50\xa7\x93\x01\xd5\xdc\x0c\x66\xf7\x54\xab\xad\xaa\xd2\xda\x3d\xf4\x60\x76\x2d\x8e\x76\x55\x2d\x5a\x0d\x3f\x37\xa7\x6f\x9a\xba\x06\xbb\xd6\x28\x19\x32\x3e\x71\x6a\x00\xf9\xe0\x87\xdd\x83\x43\x9e\xfd\xee\x8c\x66\x24\xbe\x85\xad\xbc\xef\xc3\x0a\x43\x73\x0d\xae\x30\x28\x9b\xbb\x01\x69\x1e\xee\xfa\xb8\xc2\x70\x3c\x04\xdc\xde\xa1\x8f\x2b\x0c\xc4\x16\x80\x1b\x07\x16\x2e\xa2\xa3\x3b\x83\x6a\x04\x04\xfe\x77\xde\xc7\xa3\x29\x0b\x69\x34\x4b\xe2\xb0\xc0\x61\x7e\x13\xbb\x1c\x2e\x73\x73\x7a\x14\x00\xcd\xef\x22\x5a\x05\x84\xdd\xdd\x80\xd8\x2d\x20\x7c\x32\xda\x3e\xc2\xed\xe4\x68\xc1\xee\x79\x12\x31\x61\x37\xd1\x61\x40\xda\x30\x74\x5a\x76\xcf\xa4\xc9\x43\x6c\x81\xf6\xf7\x02\xd2\x6e\xc1\x8f\x87\xf1\x3b\x79\xbf\x0d\x3f\x1e\xc8\xef\xe1\xbd\x23\xf8\xf1\x40\x7e\xf7\xee\x35\xe1\xc7\x03\xf9\x7d\x0b\x7d\xb1\x6b\xb7\xc1\x22\x8d\x96\x0f\x49\x62\x77\x5a\x0b\xa4\xd6\x61\x1b\xda\xa2\x0c\x59\x18\xa6\x4d\x60\x90\xbd\x32\xa8\x5f\x8f\xe6\xd1\x41\x40\x9a\xed\x32\x68\x61\xb0\x1e\x34\x70\x24\x96\x40\x0b\xe3\xb5\xb9\x17\x90\x43\x0b\x39\xa2\x21\x13\xee\x20\x3b\xda\xc3\xa1\x1f\x90\xe6\x7e\xa3\x04\x68\x0b\xcd\xbd\x96\xe6\xe4\xbd\xb2\x3c\x6d\x99\x09\x3d\xdc\x6a\x1d\x79\x23\x2f\x87\xda\xc2\x06\x1b\x15\xaa\xef\x0c\xc1\x1c\x6a\xd5\x09\xb9\x74\xb7\xed\x0d\xc5\xd1\x94\xa6\x22\x65\x8b\xac\x54\x17\x34\xca\x80\xa5\x9a\xa0\x14\x59\xaa\x07\x4a\x91\xa5\x5a\xa0\x14\x59\xa6\x03\x1c\x60\x32\x4a\x22\xea\x68\xef\x26\x74\x39\x64\xb8\x5b\x06\xf4\xc7\x1d\xd6\x69\x77\xbf\x04\x59\x18\x76\x50\xa7\xdd\xdd\x12\x64\x61\xd4\x61\x9d\x8e\x4a\x90\xfe\xa0\xc3\x3a\xd9\xc0\x24\xa5\x51\x19\x85\x87\x0d\x0f\x54\xa8\x47\xb3\x1d\x90\xc3\x7d\x0f\x55\xa8\x43\x63\xbf\x24\x2f\x9f\xfe\xa3\x26\x50\xe6\x81\x0a\xa4\x83\x5c\x3a\x70\x40\xf1\x18\xa7\x62\x5c\x9e\x69\x36\xa0\x3f\xda\x38\xbc\x3d\x78\xc6\xa3\x3b\x5f\x0c\xa0\x8d\xd6\x6a\x14\x81\x05\x81\xb1\x16\x59\xd0\x6c\xbb\x2d\x9f\x61\x14\xd2\xaf\x78\x0b\x69\x3d\x28\x21\xb3\x68\x66\xed\x7b\x66\xd6\x68\x49\x63\x47\x0d\x14\x4d\x0c\x80\x34\x37\xc0\xb8\x2a\xa9\x68\x83\x00\xc6\x55\x4a\x45\x03\x04\x30\xae\x5a\x2a\x5a\x1f\x21\x4d\xef\xca\xb4\x68\x01\x54\xa8\x5b\x79\x5e\x93\x24\x0a\x59\x9c\xda\x6a\x40\x69\x00\xf8\x68\xae\x01\x17\x46\xf2\x21\x4a\xd9\x35\xe8\xc2\x88\x3e\x00\x41\xd7\x5e\x83\x2e\x70\x66\x1b\x2d\x93\x35\xe8\x42\x27\x37\x9a\x01\x39\xf4\xc0\x29\x5d\xda\x1a\x1a\x60\xea\xc3\x07\x32\xe6\x35\x5a\xc3\xb5\x77\x14\x6a\xb3\xec\xee\xa6\xf4\x8e\xdb\xed\x7a\xa4\x4d\x31\xdb\xc4\x02\xe4\x8c\x4e\x58\x2c\xa8\x57\x97\xb2\x6e\x4d\x22\x7e\xcf\x3c\x3a\x0f\xa5\xd5\xe6\xf2\xb6\x0b\xb6\x3b\x0c\x25\x9d\x94\x3f\xad\x75\x78\x5b\x2f\x1c\xe6\xfe\x41\xa3\xbd\x0e\x6f\x6b\x87\x7d\xad\x1d\x8e\x1a\xeb\xe0\x76\xaf\x35\xf5\xd8\xdc\xf7\x46\x5b\x92\x82\x03\xeb\x8f\xb4\x76\xb1\x43\x24\xb0\x54\x4b\x94\x22\x4b\xb5\x44\x29\xb2\x54\x4b\x94\x22\xcb\xb4\x44\x01\x38\x9a\x72\x9b\xcf\xf6\x76\x03\x82\x7e\x6b\xa1\x5d\x11\x69\x6b\x71\x14\xef\x2d\x4f\xee\x18\xa8\xdd\x5d\x07\x60\x36\xfa\xe2\xc7\x40\xed\x9e\xda\x6b\x6b\x02\x4a\x73\xb5\xeb\xd4\x68\x07\xa4\x60\x9a\x00\x34\x65\x61\x71\xd8\x7a\x35\xcf\xd0\x3d\xb0\x5b\x1d\xfd\x11\xb4\xf3\xbc\x21\x98\x31\xea\x8d\xee\x66\x1b\x9d\x1c\xe8\xa7\xf6\x6e\x39\xb8\xe9\xfb\x76\xd8\xff\x47\x6b\xd0\xce\xd8\xd6\xc2\xba\x79\xe8\xd3\xac\xd0\x4e\x7b\xed\x69\xef\xd7\xef\x06\x8d\x76\x9a\x6c\x4f\x0b\x5d\xbf\x79\x33\xb0\x2b\x5c\x29\x7e\xd0\x02\x06\x28\x69\x5f\xc4\xba\x12\xac\x7d\x10\x90\x83\x23\xf8\x59\x03\x75\x8c\xda\x66\x99\xca\x72\xe0\x8e\x61\xdb\x2c\xd3\x5e\x0e\xdc\x31\x6e\x9b\x65\x8a\xcc\x81\xdb\x06\x6e\x6b\x9d\x1a\x52\x68\xb6\x41\x2d\xc5\x22\xfd\x7d\x91\xf0\x8c\x79\xda\x74\x1f\x3e\x3c\x6c\xc1\x85\x03\x03\xa4\x81\x9e\x8b\x05\x64\x43\x4e\x63\x67\x1c\xb7\xc0\xb1\x00\x13\xce\x81\xb1\xf9\x9c\xc7\x05\xeb\x07\x4d\xa5\x83\x22\xae\x60\xfc\xac\x03\x16\xc4\x11\xfc\xec\x96\x00\x0b\xd2\x68\x1f\x65\x57\x11\x58\x54\x8a\xae\x05\x09\xb8\xec\x6e\x59\xb0\x23\x50\xcc\xb8\xe3\xc4\x20\x9b\x9b\x43\x5d\x63\x08\x25\x92\x3b\x9c\x0c\xd4\xb5\x89\x50\x22\xb9\x43\xc9\x40\x3d\xd3\xa8\x51\x90\x46\x7c\xe6\x69\x7a\x29\xb2\xf7\x7c\x0e\x04\x1c\xdb\x00\x97\x84\x13\xdf\x32\xde\xc5\x4e\x6c\xfb\x55\xcf\x91\xcd\xcd\xa1\x76\xb7\x1f\x2a\x83\xcb\x6d\xa5\x1c\x6a\x77\x3c\x9a\x65\xfb\x7e\x2b\xe5\x50\xbb\xeb\xf7\x03\x72\x70\xe8\x35\xd2\x98\xa7\x6c\x98\x72\x3b\xa8\x83\xfd\xb3\x8b\xf2\xbd\x04\xe7\x0f\x63\xe0\xa0\xf6\x61\x09\xd0\x1f\xc6\x50\xf5\x76\x59\x8e\xfe\x30\x06\xf0\x6e\x59\x8e\xfe\x30\x6e\x41\xb5\x2d\x77\x69\x1c\x81\x93\x53\x88\x04\xa3\xac\xc3\xd8\xb1\x35\xe4\xc7\x49\xca\x32\xe1\xa9\x16\xa5\xd0\xdc\x9a\x4f\x28\x8f\xb3\x61\x92\x26\x76\x60\xa4\x81\x7e\x8b\xe7\xbc\x4c\xa6\x49\x26\xfc\xe2\xd1\xc5\x29\x44\xad\xc1\x5e\x2d\x44\x4f\x5c\x07\x1a\x20\xc5\x08\x4b\x11\x53\x70\x95\xc0\xe2\xf5\x30\xc5\x98\xca\x6e\x01\x53\x0c\xa6\x1c\x14\x30\x9e\x67\xd0\x42\xd1\xb4\x0f\x7d\xd6\x2a\x01\x16\x2c\x30\xd0\xc5\xb6\x20\x5b\xef\x11\x80\x1e\x76\x3a\x61\xad\x37\x80\xcd\x72\x54\x82\x2c\x0a\x3d\x14\xba\x16\xd2\x15\x0e\x47\x28\xc5\xe4\x87\x0b\x6a\xf8\xce\x95\xf7\xde\x66\xf2\x80\xc0\xff\xde\x7b\x2b\x03\x39\x66\xdd\x71\x2b\x31\x8d\xc2\x98\xf5\x95\x34\xe2\x9a\xae\x98\x90\x3f\x1e\xc6\x6a\xce\xdd\x66\x40\xe4\x8f\x87\xb1\x1a\x12\xac\x2f\xf9\xe3\x61\xac\x26\x04\x5f\x59\xfe\x78\x98\x3d\x0b\x73\x58\x64\x5e\xc4\xec\x5b\x5a\xbc\x19\x10\xf9\xe3\x61\x0e\x2c\xcc\xae\x8c\xab\xb6\x7d\x7a\x0e\x2d\xcc\x7e\x40\xe4\x8f\x87\x39\xb2\x30\x87\x45\xf1\xe4\xd9\x37\x7b\x01\x81\xff\xbd\xf7\x56\x57\xc8\x58\xaa\x1b\x4f\x45\x8c\xd5\x0f\x68\x36\xe3\x8f\x87\xb1\x0b\xda\x0f\x88\xfc\xf1\x30\x56\x3f\xc8\xe0\xae\x1b\xe0\x45\x8c\x1d\x41\x6b\x4a\xbb\x70\xdf\xa7\xc7\xea\x07\x19\x49\x76\xa3\xc9\x88\xb1\xfa\x61\x7f\x3f\x20\xf2\xc7\xc3\x1c\xb8\xd1\x3a\xf9\xe3\x61\xac\x7e\x38\x68\x06\x44\xfe\x78\x18\xab\x1f\x0e\xda\x01\x91\x3f\x2e\xc6\xaa\xfa\x61\x40\x0e\x1d\x3f\x1d\xdf\x5b\xfd\x70\x00\xd6\x1f\xfe\x78\x18\xab\x1f\xa4\x75\xe8\x5a\x88\x88\x69\xb9\x26\xa7\xfc\xf1\x30\x36\x31\xed\x80\xc8\x1f\x0f\x63\x9b\xae\x60\x0d\xe2\x8f\x87\xb1\xfa\x01\xfc\x7b\xf9\xe3\x61\xac\x7e\x38\x6a\x05\x44\xfe\x78\x18\xab\x1f\x8e\xda\x01\x91\x3f\x1e\xc6\xea\x87\xa3\x83\x80\xc8\x1f\x0f\x63\xf5\xc3\xd1\x51\x40\xe4\x8f\x8b\x71\x9c\x14\x69\x1d\x36\x3d\x11\xd7\x6e\xd8\x98\x96\xf2\x7c\x9b\x0d\x8f\xea\x76\xf3\xbb\x56\x14\xc2\x6c\x0f\xa3\x71\xa0\xa2\x15\x4e\x14\x04\x61\xbb\x7e\x58\x40\x7d\x78\x30\x27\x7a\xd0\xc2\x38\x86\x17\xcc\x40\xd8\x9e\x0d\xdb\x53\xb3\x05\xcd\xa6\x4f\xdb\xbe\x0d\x3b\x50\x7a\xb0\xd9\xf4\x69\x3b\xb0\xbd\x1e\xf4\x5c\x1b\x5e\x34\x11\x61\x87\x36\xac\x85\x0e\xae\xe7\xe5\x22\xec\xc8\x86\xed\xe9\x99\xb7\x96\x47\x9b\x5d\x03\x9c\x1b\x80\x1f\x0f\x62\x77\x54\xeb\x40\x85\x3d\x9a\x2d\x8f\xfc\x3d\xbb\xa3\xd0\x32\x55\x1f\x1e\xcc\xee\x28\x74\xd2\xd5\x87\x07\xb3\x3b\x6a\x17\xdd\xdc\x3d\x6f\xd2\x08\x61\x8e\x4a\x46\x4b\x54\x7e\x78\x30\xbb\x9a\xed\x86\x8a\xf1\x34\xdb\x3e\x6d\xfb\x7e\x4c\x40\x7d\x78\x30\xbb\xa3\xda\x18\x31\xda\xf3\xa6\x9e\x10\x76\xe8\x79\x85\xfa\xc3\x83\xd9\x1d\x85\x01\x0b\xf5\xe1\xc2\x6c\xd2\xd0\x48\x71\xa3\xa1\x08\x69\x78\x91\x1f\xfd\xe1\xc1\x1c\xdf\x1d\x1c\x3c\xf5\xe1\xc1\xec\x8e\xc2\xd9\x2d\xf5\xe1\xc1\x9c\xb8\x5c\x13\x8c\x37\xf9\xe1\xc1\x1c\xaf\x01\xc8\x52\x1f\x1e\xcc\xee\x28\x50\x26\xfa\xc3\x83\xd9\xad\xb1\x8f\x16\xa3\xfc\xf0\x60\x76\x47\x81\x4a\xd1\x1f\x1e\xcc\xee\x28\x0c\x1c\xab\x0f\x0f\x66\x77\xd4\xc1\x3e\xae\xbe\xf0\x96\x60\x00\xcc\x2e\x53\xbb\xda\x1e\x5d\x07\x76\x47\x81\x7a\xd1\x1f\x1e\xcc\xee\xa8\x43\xa0\x5c\x7d\x78\x30\x27\xda\xd4\xd6\xf3\xab\xbe\xaa\x39\xb0\x3b\xea\x10\x28\x57\x1f\x1e\xcc\xee\x28\x19\x4e\x96\x1f\x1e\xcc\xee\x28\x70\xd4\xf5\x87\x07\xb3\x3b\x0a\x14\x8e\xfe\xf0\x60\x76\xa3\x1d\xed\xe3\xca\x04\x6f\x79\x02\xc2\xec\x8e\x3a\xc2\x49\x32\xf9\xe1\xc1\x8e\x6c\x8b\xbe\xa9\xfc\x97\x56\xc3\xa3\xed\xd0\x46\xc9\xe0\x89\x2f\x6b\x0f\x6d\x0b\xba\x81\x81\x83\xb6\x17\x4c\x45\x98\x13\xfb\xc6\x79\x58\xf9\xe1\xc1\x6c\x9f\xa4\x71\x84\xc1\x24\x2f\xa2\x84\x30\xdb\x21\x01\xbd\xa3\x3f\x3c\x58\xdb\x86\x01\x59\xea\xc3\x83\xed\xd9\x30\x20\x4b\x7d\x78\xb0\x7d\x1b\x26\x97\x2d\x79\x6b\x97\x10\x76\x60\xbb\xac\x38\x43\x2d\x3f\x3c\x98\xdd\xb6\xb8\x62\x46\x7d\x78\x30\xbb\xa3\x70\x16\x59\x7d\xb8\x30\x1b\xb5\x1b\x10\xf9\xe3\x41\xec\x8e\xc2\x49\x73\xf5\xe1\xc1\xec\x8e\xc2\xf9\x3f\xf5\xe1\xc1\x1c\xe7\x31\x5f\x66\xe2\x2b\x9f\x23\xbb\xa3\x76\x0f\x70\x2a\xd3\x9b\xcf\x44\x98\xdd\x51\x72\xc5\x99\x1f\x3a\x40\x98\xdd\x51\x38\xf9\xaf\x3e\x3c\x98\xdd\x51\x66\x61\x90\xaf\x7c\x8e\xec\x8e\x6a\x03\x59\xea\xc3\x83\xd9\x1d\x85\x11\x0d\xf5\xe1\xc1\xec\x2e\xc0\x35\x0c\xea\xc3\x86\xf9\x13\x5b\xfe\x92\x00\x3f\x8e\xbe\x0e\x52\x32\xcf\xe9\x43\x4a\xa6\x39\x7d\x48\xc9\x2c\xa7\x0f\x59\xb2\x28\x4a\x1e\x3c\xd9\x2f\x23\x50\x4e\x33\xb1\x4d\x7c\x7a\xf6\x1d\x9f\x9e\x7d\xc7\xa7\x67\x1b\xf8\xf4\x6c\x43\x9f\x9e\x6d\xe0\xd3\xb3\x0d\x7c\x7a\xb6\x81\x4f\xcf\x36\xf0\xe9\xd9\x06\x3e\x3d\xdb\xc0\xa7\x67\x1b\xf8\xf4\x6c\x03\x9f\x9e\x6d\xe0\xd3\xb3\xef\xf8\xf4\x6c\x03\x9f\x9e\x6d\xe0\xd3\xb3\x0d\x7c\x7a\xb6\x81\x4f\xcf\x36\xf0\xe9\xd9\x06\x3e\x3d\xdb\xc0\xa7\x67\x1b\xf8\xf4\x6c\x03\x9f\x9e\x6d\xe0\xd3\xb3\xef\xf8\xf4\x6c\x03\x9f\x9e\x6d\xe0\xd3\xb3\x0d\x7c\x7a\xb6\x81\x4f\xcf\x36\xf0\xe9\xd9\x06\x3e\x3d\xdb\xc0\xa7\x67\x1b\xf8\xf4\x6c\x03\x9f\x9e\x6d\xe0\xd3\xb3\xef\xfb\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xcd\x7c\x7a\xb6\x99\x4f\xcf\x36\xf3\xe9\xd9\x66\x3e\x3d\xdb\xcc\xa7\x67\x9b\xf9\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xef\xfb\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xcd\x7c\x7a\xb6\x99\x4f\xcf\x36\xf3\xe9\xd9\x66\x3e\x3d\xdb\xcc\xa7\x67\x9b\xf9\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xef\xfb\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xcd\x7c\x7a\xb6\x99\x4f\xcf\x36\xf3\xe9\xd9\x66\x3e\x3d\xdb\xcc\xa7\x67\x9b\xf9\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xef\xfb\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xcd\x7c\x7a\xb6\x99\x4f\xcf\x36\xf3\xe9\xd9\x66\x3e\x3d\xdb\xcc\xa7\x67\x9b\xf9\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xef\xfb\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xcd\x7c\x7a\xb6\x99\x4f\xcf\x36\xf3\xe9\xd9\x66\x3e\x3d\xdb\xcc\xa7\x67\x9b\xf9\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xef\xfb\xf4\x6c\x33\x9f\x9e\x6d\xe6\xd3\xb3\xcd\x7c\x7a\xb6\x99\x4f\xcf\x36\xf3\xe9\xd9\x66\x3e\x3d\xdb\xcc\xa7\x67\x9b\xf9\xf4\x6c\x33\x9f\x9e\x6d\xe2\xd3\x4f\x93\x98\x2d\x43\xf6\xe0\xd7\x55\x2e\xb4\x6e\x14\x81\xe5\xfb\xa9\xca\x90\xe5\x5b\xaa\xec\xc1\xa4\x91\xa5\xbb\xaa\x9c\x95\x77\x1a\xb9\x66\x63\x55\xd3\x46\x8a\x92\xf5\x55\xd2\xfa\x3c\x6c\x14\x70\xc5\xd5\xf4\x8d\x72\x60\xe9\x82\xfa\xe6\xfe\x41\x01\x58\x58\x53\xbf\x8f\x2b\x78\x0a\x38\x7f\xa5\x01\xa8\x69\x7b\xeb\x1c\x8f\xc3\xc2\x82\x32\xcc\xcf\xf3\x11\x72\x5c\xa1\x2a\x48\x61\x63\xbf\x04\xea\x57\xc6\xf7\x05\x72\xa0\x5f\x99\x43\x6f\xab\x4c\x0e\x2c\xab\x8d\x6d\x73\xf0\xfb\x24\x5d\x96\xc6\x35\xec\xa1\x83\xa8\xc2\xf2\x95\x72\x58\x71\xb1\xbf\x3f\xbc\x10\x56\x5c\xe9\xef\x8f\x2d\x84\x15\x97\xf9\xfb\x03\xcb\x5b\x87\x2d\x07\xff\xae\x6f\x8f\x22\xaa\xb8\x63\x61\xdf\xb3\x47\x11\x56\xac\x41\xc3\x33\xa9\x11\x56\xdc\x16\x7a\xe8\x79\x2b\x08\x2b\xd6\x00\x1c\x6d\xab\x0b\x22\x7a\xcf\xe2\x90\xa5\x76\xa9\xba\x0e\x8e\xe8\xd0\xc0\x61\xb4\xc8\xa6\x85\xaa\x34\x3c\xb1\xe5\xa0\x8b\x35\x7f\x12\x5e\xdc\x1f\xdb\xf6\xc4\xbf\x03\x2f\xb6\xc4\x2e\xee\x8a\x5a\x03\x2f\xdf\x21\x6b\x2f\x10\x8a\xe8\x43\xec\x2f\x14\x46\x12\xf6\xdc\x15\xda\x11\x9b\x25\xf1\x68\xca\xc7\x63\x67\x01\xb2\x59\x24\x66\xfb\xb5\x36\xb8\x38\x96\x9f\x42\x17\x07\xc4\xae\x67\x9c\xd9\xe8\xe2\xc8\x46\x0b\x7e\x4d\xde\xc5\xc6\x38\xf0\x5c\xe3\x88\x4f\xa6\xde\xb6\x37\x19\x2e\xc5\x85\x82\xb6\x43\x98\x23\xfd\xc5\xe5\x72\x37\xb4\x1d\xa9\xcc\xa1\xfe\xe2\x72\xb9\x15\xda\xf6\xf8\x72\xa8\xbf\xb8\x1c\xf7\x41\xbb\x8d\xa6\xa1\xfe\xe2\x72\xad\x14\x3c\xa8\xbf\xbb\x0a\xdd\x48\x5c\x2f\xd9\xf2\x09\x70\x77\xbc\xc8\x01\x59\x88\xbf\xe6\xc8\xe6\xe6\xd0\x82\x15\x59\x58\x1f\x9d\x43\x1d\x93\xbf\x74\x93\x4f\x0e\x6d\xfb\x51\x85\xc2\xc2\x68\x84\x96\x2d\xc3\x93\x0c\xd7\xf4\x9c\x7d\x17\x5e\xdc\xee\xbe\xff\x64\xf6\x45\x86\xf6\x83\x09\x2e\xbe\xc8\xd1\x8d\xb2\x51\xb9\x7e\x79\x1e\xd8\x8b\xb6\x2b\xe7\xc2\xfd\xf0\xbf\x65\x2b\x35\x0b\x34\x39\x0b\xfb\x70\x57\xaa\xfe\x28\x20\xbd\xad\x05\xda\xb8\x71\xd4\xbc\x86\x6e\x98\x69\x99\xd1\x82\x2b\xdd\x6d\x55\x95\x23\x0b\xba\xfe\x00\x7d\x47\x7f\x84\x94\x1a\x2e\xfb\x2d\xcf\x4b\xce\xa1\xc5\x4d\x53\x72\x07\x5f\x09\xd4\xef\x08\xdc\x20\xdb\xf0\x2b\x55\xd8\xb2\x81\xb4\xee\xfb\x5b\x36\x2c\x6c\xa1\x62\x4f\x81\x0b\x55\xc3\x4d\x5e\x4d\xbf\x13\x24\xb8\x50\x39\x18\x3a\x47\x3e\xfb\x49\xac\x5f\xbb\xc3\x03\x37\x3e\x2e\xa1\x85\x4d\x26\xbb\x2d\xb5\x4e\xdd\x39\xd7\x40\x82\xfd\x85\xf2\x4d\xb9\xad\x7d\xdf\xd7\xbd\x16\xb8\xe9\x05\x2e\x5a\x38\x5d\x54\x10\x2e\xc5\xe5\xf2\xcd\xfd\xb6\x1e\x67\x05\xf9\x52\x5c\x31\x8f\xbb\x35\x70\xac\x15\x45\x4c\x71\xd1\x3c\x9a\xb3\xad\xdd\x32\x29\x50\xb2\x21\xa5\xb9\xab\xa3\xb0\x25\x74\x17\xf7\xa4\x34\x9b\xf9\x0e\xcb\x3d\x7f\x80\x96\x6c\xee\x78\x12\x2e\x18\x8b\x7c\x6d\xa6\x43\x14\xad\xe2\x80\xd2\xf0\xc2\x1e\xb7\x56\xa9\x44\xcf\xf1\x85\x3d\x6e\x4d\xff\x24\x01\x17\xef\xef\x71\xc3\xe0\x50\x49\xc3\x6b\x7c\x61\x93\x5b\x79\xdb\x17\x25\x5d\x6e\x39\xb7\x7c\x7e\x90\xd8\x72\x33\x7b\x0d\xb8\xdc\xd8\x6e\x94\x53\x51\x6e\x72\x1f\xfa\xa3\x5c\x82\xcb\x0d\x6f\xb7\x7f\x66\xfe\x5e\xc5\x3d\xad\x14\x5d\xd6\x89\x59\xec\xcb\x7a\x65\xa5\x1b\x54\x61\x93\xa4\x9c\xa0\xf6\xfa\x58\xa1\xfc\x36\x5a\x03\xf3\x5b\xc7\x1f\x01\x0a\xe6\xb7\x8b\x6f\x0a\x2a\x98\xdf\x22\xfe\x06\xce\x19\x4d\x13\x5b\xa8\xe2\xb0\x6e\x83\x17\xb7\xef\x83\x7c\xfa\xf7\x5a\x5e\xbc\x52\xc2\x0a\x9b\x2e\x0e\x3d\xd7\x56\xc2\x7c\xfa\x51\x6e\xd8\x2a\x4f\xc2\x0a\x1b\x2e\x3c\xc7\x76\xc6\x42\xbe\x98\x95\x1e\x4e\x53\x7e\x30\x8c\x4c\x50\x7a\xea\x87\xd3\x7c\x08\x2b\xec\x8f\x3c\xdc\x97\x6e\xab\xa3\x72\x6d\xac\x6f\xc3\x35\x1b\xbe\xb8\xb2\xd1\xbe\x19\x77\xb4\xe7\x77\xb6\x05\xf6\x0d\xb9\x82\x90\xb5\xc1\xbe\x29\xb7\xb7\xe7\x77\x3c\x82\xe7\x8b\x74\x1e\xd9\x8d\xd6\x3e\xd0\x22\xb6\xb9\x06\xec\x28\x92\xa6\x9a\xe2\x29\xa9\xa1\x44\x3b\x13\x08\xc8\x8c\xbe\x22\xb1\xd1\xce\x84\xcf\x81\xda\x51\x55\x52\x47\x89\xb6\x15\xc9\xae\x9c\x2f\x2e\xa9\x62\x51\xb3\xa2\x15\x80\xd1\x76\x7b\x9a\x4b\xa1\x4b\xd4\x0e\x0a\xc9\x86\xbf\x17\x4a\xe1\xe7\x29\x8f\x27\x65\x8b\x59\xe4\xde\x31\x1f\x5f\xb2\x55\xf0\xa0\x95\x47\x81\x0b\x70\xb9\x5b\xd0\xdd\xd0\x7a\x84\x41\x59\xcf\xb9\x9f\xf1\x30\x2e\xba\x5c\x52\xdd\x78\x46\xf0\x8c\xc7\x62\x94\x32\x3a\xf3\x83\x88\xca\xa7\xb4\x91\x99\x58\xa6\x49\x56\x7a\x68\x50\xcb\x9e\x46\xcc\x91\xa5\xe7\x06\x95\x43\x4b\x8f\x0e\x72\x4c\xe9\x1c\x5a\x7e\x7a\x90\x3d\x09\x92\x43\xcb\x0f\x10\xb2\x63\xc5\xb3\x64\x34\xa2\x19\x2f\xf8\xde\xe8\xc2\xd9\x79\xc6\xf4\x9e\xfe\x96\x94\x6e\xe6\x6a\xf9\x66\xaf\x85\x2d\x36\xc1\x13\xe0\xe2\xd6\xa9\x03\x6f\xe6\xcc\x02\x17\xf7\x50\xf9\xfe\x99\x05\x2e\x36\x44\xd3\x9d\xeb\x8f\xe9\xfd\xd2\x97\x81\x8e\x0b\x0b\x80\xd2\x83\x1d\x6c\x50\x12\x85\x11\x1d\x39\x0d\xb4\xab\x03\xd2\xb6\xaa\xc4\x9d\xf6\x61\x4a\x87\xb6\x84\xc6\x13\x78\x5a\xee\x29\x40\x39\xd0\x89\x07\xe8\x03\x02\xf6\x5b\x25\x48\x27\x1c\xa0\xbd\xe1\xbd\xc3\x12\xa4\x1f\x0d\x28\xe8\xfd\x1c\x59\xba\x6d\xda\x0e\xf7\x94\x9f\x05\xb0\xef\x2e\x2d\x5b\x73\x0e\x40\x29\xaa\xe0\x80\x00\x81\x05\x54\x61\x0c\xec\xee\x96\xa0\x0a\x1e\x55\xa3\x04\xe4\x86\x83\xb1\x75\x8f\xca\x61\x85\x83\xa2\xd6\xe0\xfc\x2a\xec\x97\xd5\xa0\x24\x12\xbc\x57\xd6\x1e\x25\x81\xe0\xdd\x03\x0f\xe7\xaa\x67\xb9\x19\x50\x6a\xaf\xb6\x0f\x2b\x74\xc2\x6e\xd3\x13\x77\x45\x9d\x8c\xdd\x80\xb3\x5b\xb6\xac\x2d\xa8\xe3\x56\xbe\x26\xc5\x99\x60\x2c\x6a\x62\xa8\x83\x54\x53\x96\x3d\x34\xa7\x11\x5b\x1b\x52\x91\x5e\x60\xc3\x43\x7b\x31\x03\x39\x11\x83\x27\x5f\xb5\x4a\x90\x4d\x7f\xd0\x63\xf5\x6d\xdd\x94\x43\x5b\xdf\x8d\x44\xe4\xd0\x5d\x3f\xcc\x29\xfd\xe0\x32\xa8\xbd\xc0\x49\xef\x6f\x3d\xf4\x80\x25\x8a\xb1\x79\xb0\x57\x16\xd9\x72\xd0\xce\xf4\xf8\x41\x59\xcc\xcc\x81\x3b\x92\xa2\xf4\x64\x3e\x07\xee\x88\x8b\xd2\xd8\x99\x03\x6f\x7b\xd6\x67\x31\x7e\x06\xf0\x12\x9d\x8e\x13\xad\x72\x7d\x51\xfb\x60\x0d\xba\x38\x7e\x1b\xde\x3a\x06\x07\x5e\x1c\xc6\x38\x3e\xd6\xd1\x52\x1c\xcd\xed\x92\x61\x9a\xc3\xcb\x06\xb5\x1d\x5b\x9a\xd3\x39\x5d\xd2\x87\x29\x9f\x17\x62\x7e\x68\xbd\xd8\x50\x46\x47\xd3\xf9\x62\x3c\xf6\x91\x72\xd5\xc4\x5e\x09\xb2\xb8\x27\x79\x2d\xb4\xa8\x5f\xfd\x65\x1d\x39\xb4\xa8\x5d\xf7\xbc\x80\x55\x0e\x2d\x6e\x54\x3e\xf2\x22\x56\x73\x96\x2e\xca\x24\xb5\xbd\xd8\xa5\x2c\x4a\x27\xa3\xd3\x1e\xa8\x78\xb6\x51\xd3\x9b\xaa\x28\x8f\xcd\x1d\x79\x4b\x40\xca\xc3\x72\x7b\xde\x8a\x9e\xd2\x88\x1c\xd6\xcf\x06\x45\x0b\xdb\x7e\xc4\xc1\xb5\x8f\xbb\xd1\x9b\x2e\xa8\x48\xfb\x81\xcf\xa0\xd1\x62\x56\x3c\x8f\xc9\x37\xb7\x01\x55\xdc\x79\xed\xbb\x6d\x80\x2a\xee\xba\x6e\xf9\x5c\x98\x3c\x84\x85\x03\xc6\x64\x50\xac\xed\x99\x2d\x05\x07\x09\x2a\x89\x0b\x06\xda\x05\x94\x23\x67\xd5\xb9\x04\x6e\x4d\x0b\x2e\x11\x34\x7e\xbb\x50\xd5\x82\x2f\xd4\x52\x67\x12\xb8\x75\xf5\x9d\x20\x74\x4c\xfd\x90\x7a\x51\xc9\xbb\xa6\x40\x89\x64\x29\x00\x4a\x42\x12\x2e\xa0\x24\x18\xe1\x02\x4a\xc2\x10\x36\x20\xc9\x96\xfe\xa1\x95\xea\x74\x1d\x6f\xaa\x33\x47\x96\x6e\xec\x77\xc2\xdb\x39\xb4\x74\x67\xbf\x13\x41\xca\xa1\xa5\x5b\xfb\x9d\x93\x75\x72\x68\xe9\xde\x7e\x67\x49\x6a\x9a\x2c\xa9\x17\x34\xdc\xcf\xed\x84\x56\x19\xb0\xe9\x3a\x85\xf2\xf8\xc3\xbd\x32\xa4\x55\xa7\xfd\x03\xb5\xd0\xc0\x19\x43\x39\xd2\x5e\x08\x7e\xa8\x22\x0c\xa5\x54\xda\xab\xf2\x8f\xa4\xe9\xe6\x0c\xa4\x8c\x86\x61\xc4\xfc\x6e\x2a\x3b\x7e\xb0\x18\xa8\xcf\x67\xc8\x6c\xb3\x6c\x4d\x8c\xbe\xdd\xf0\xda\x71\x4d\x78\x1e\xd4\x9f\x1d\x09\x5a\x13\x98\x07\xa5\x7a\x58\x28\xb5\xa0\xbf\xf6\x03\xb2\x77\x60\xa3\xe2\xd0\x1f\x92\x2d\x60\x54\x8c\x86\xdb\xb1\xb1\x62\x78\xa1\xbd\xaf\x4d\x9c\x83\x22\xac\xe9\x9a\x42\xca\x14\x3b\x2a\x02\xad\xfa\x1e\xe4\xa7\x9d\xd9\xeb\x46\x4b\x4e\x83\xda\x3f\xc8\xcd\xb0\x12\x60\xfb\xfb\x24\x66\x53\x16\xf9\x07\x47\x2a\x57\xee\xb0\x08\x2c\xce\xcf\xaf\x43\x16\x67\xf2\x8e\xbc\xb8\xb9\x46\x16\xe7\xf0\x0e\xbc\x59\x6b\x8d\x2c\x5d\xa2\xe0\xcc\x0e\x66\x9c\xc5\x31\xf5\x64\xf7\x61\x2b\x20\xf6\x12\x02\x09\x2a\x35\xae\x6c\xdb\x4a\xc2\x4a\x8d\x2a\x7b\x2e\x47\xc2\x4a\x8d\x29\x67\x78\x21\xac\xcc\x88\x72\x5a\xef\x89\x69\x1e\xdb\x63\x2e\x99\xe1\xb1\xe6\x83\x8a\x40\x5b\x01\xa1\xbe\x40\xa3\xa3\xa4\x64\xe7\x80\xd5\x43\xb5\x10\xd7\x91\x1e\xc5\x29\x1d\x9c\x3b\x6c\xfa\x1a\xb7\x2c\xac\x06\xe4\x1d\xf9\x0a\x3c\x07\x3a\xb5\x01\xeb\xa2\xe9\x9f\xee\x94\x43\x9d\xfa\xe0\xfe\x01\x7f\x35\x40\x0e\xdd\xf5\xbc\xfa\xc3\xa3\x75\xe5\xdb\x55\x82\x4e\xf6\x03\xe7\xa5\x13\x4e\x2d\x2d\xe7\x6c\x8f\xa9\xf4\x0c\xb4\xa3\xc3\xb2\x29\xb8\xd2\xf3\xcf\x0e\xf7\xca\xe6\xdf\x4a\xcf\x3e\xc3\x08\x6b\x21\x2e\x5c\x76\xee\x99\xec\xcf\xc2\xf4\x4f\xe9\xbc\x58\x79\xad\xe2\x92\x19\x22\x7f\xf1\x0f\x80\xca\x57\xad\xf8\xa8\xd2\xd5\x2a\x8e\xd7\x0d\xa8\xd2\x55\x2a\x8e\xcf\x0d\xa8\xf2\xd5\x29\xb6\x2f\xb3\x3e\x6a\xbb\xe7\xed\x6a\xb0\x90\x25\x5b\x11\xd7\x41\x4b\xb6\x24\x3a\xa7\xa2\x59\xd0\x92\xad\x89\xce\xfe\x17\x0b\x5a\xb2\x45\xd1\xde\x43\x55\x32\x49\x79\x90\x6f\xc1\xb0\xcd\x9d\xb2\xe9\xc9\xa3\x23\xb5\x66\xdc\x1d\x8f\x25\x13\x93\xf2\x1e\x81\x82\xc4\x28\x99\x92\xc4\xe8\x64\xdb\x37\x5b\xcb\x26\x23\x71\x61\x4e\xc3\x67\x31\xe1\x2c\x9e\x51\x6b\x29\xbd\x25\x72\x82\x96\xcc\xf2\xef\xb9\x9b\xb5\x04\x2d\x5a\x0f\x50\xa2\xed\x05\x0a\x5a\x34\x1d\x7c\x7f\x4d\xd0\x82\xdd\x00\xf2\xcb\xb6\x4f\xc5\x94\x67\x22\x72\xce\x91\xde\xd7\x27\xd3\xd9\x77\x0e\x28\x5c\x31\x54\xec\x47\x2f\x14\xb0\x18\x2b\xf7\x0d\x3e\x05\x2c\x46\xca\xfd\x19\x61\x05\x2c\x86\x87\x7d\x59\x20\x92\x19\x15\x89\x47\xe1\xd1\x91\xab\x17\x25\xc8\xaf\x47\x39\xaa\xb0\x50\xb4\xe5\x2a\x4f\x89\xf2\x6b\x00\xa3\xc8\xd6\x9d\x12\x55\x58\x22\xda\x76\x75\x67\x49\x38\x69\x3f\x5f\x83\xde\x28\x03\x7a\xec\x5d\x38\x74\xbd\x2c\x86\xd4\x28\x3b\x72\xbd\x2c\x7a\xd4\x28\x3b\x70\xbd\x2c\x6e\xd4\x28\x3b\x6f\xdd\x3f\x33\xd2\x18\xc0\x4e\xc1\x65\x81\x25\x10\xf3\x18\x43\xb4\x65\xf7\xda\x98\x12\xae\x21\xb0\x45\xf3\xda\x70\x12\xee\x03\x6a\x97\x21\x0b\xb1\x5d\x7f\x03\xdb\xda\x20\x12\xd4\xdb\xde\x40\xf9\x30\x65\xd4\xae\x75\xdb\x4c\xa6\x1c\x79\xa8\xe2\xd2\xb2\xa6\xb7\xaf\x05\x61\x45\x36\xc2\xdd\x3b\x6d\x0f\x56\x64\xa2\x7d\xaf\x5d\x10\x56\x64\xa1\x7d\x4f\x78\x97\x1f\x04\xe8\x8f\x2c\x44\x65\xb3\xe4\xae\xfc\x0e\x0f\xdb\x5a\x5d\xbf\x32\xa3\xe1\x83\x4a\x97\x64\x14\x50\xa5\x6b\x31\x0a\xa8\xd2\x45\x18\x05\x54\xe9\xea\x8b\x02\xaa\x10\xbc\x76\xa6\x61\xe4\x35\xa8\x3b\x3b\xe4\xea\xe2\xd3\xe5\xc9\x29\xe9\x9f\xbd\x3f\x3d\x26\x11\x1f\x86\x89\xd8\xf9\x2d\xdb\x89\xf8\xf0\xcb\xb8\xfe\x5b\x86\x98\x93\x64\xbe\x4c\xf9\x64\x2a\x48\x75\x54\x03\x3b\xa0\x85\x17\x12\x9d\x4c\xd3\x64\xc6\x17\x33\x72\x71\x45\xba\x0b\x31\x4d\xd2\xac\x4e\xba\x51\x44\x10\x9b\x91\x94\x65\x2c\xbd\xc7\x9b\x7b\x77\x76\xc8\xa7\x0c\xef\x06\x07\xb1\x48\xb2\x64\x91\x8e\x18\x19\x25\x21\x23\x3c\x23\x93\xe4\x9e\xa5\x31\x0b\xc9\x70\x49\x28\x79\x7b\xd5\x7b\x99\x89\x65\xc4\x48\xc4\x47\x2c\xce\x18\x11\x53\x2a\xc8\x88\xc6\x64\xc8\x30\xab\x71\xb2\x88\x43\xc2\x63\xbc\x7c\xe8\xfd\xd9\xc9\xe9\xf9\xd5\xa9\xbe\x72\x68\x10\x57\x16\x99\xbc\x89\x78\x24\x2a\xce\x25\x46\xef\x52\x3a\x24\x43\x3a\x01\x32\x16\x82\x47\x5c\x2c\xf3\x4b\x76\x9d\xcb\x92\xc6\xa4\x43\xbe\x7a\x17\x24\xa7\x8c\x0a\x46\x28\x59\xc4\xfc\xf7\x05\x23\x2c\x5e\xcc\xfc\x7b\x90\xff\x9a\x2d\xe6\xf3\x94\x65\x19\xf9\x1a\xf1\x58\x9c\x4c\xd9\xe8\x2e\x5b\xad\xbf\x53\xb8\x4b\xa6\x8b\x19\x8d\xc9\x38\xe5\x2c\x0e\xa3\xa5\x7c\x3a\x4e\x52\x12\xb2\xe1\x62\x32\xd1\x37\xde\x9b\xdb\x85\x2f\x86\xbf\xb1\x91\x58\x91\xae\x43\x06\x36\xcf\x43\x12\x57\x04\x5e\xf0\x4d\x53\x46\xd8\xef\x0b\x1a\x11\xbc\x01\x7c\x29\xa6\x3c\x9e\xe0\x05\xd6\x4e\x1d\xeb\x23\xac\xd2\x29\xe4\x50\x7e\xd9\xf0\xce\x0e\xf9\xcc\x08\xb4\x26\x25\x57\x48\x38\x49\x90\x00\x42\x33\x12\x27\x26\x5f\x92\x4d\x93\x45\x14\x92\x21\xa0\xf1\x5e\xa8\x29\x9b\x91\x97\x2f\xc9\x03\x23\x0f\x34\x16\x44\x24\x2a\x3f\xdd\x35\xf1\x84\xcc\x53\x3e\xe3\x82\xdf\x33\xc8\x2b\x9d\xd1\x28\x5a\xd6\x09\x79\xbb\x10\xaa\xf6\x2c\xcd\xe4\x65\xe2\x3c\x1e\x45\x8b\x90\x91\x64\x21\x2f\x5f\xc6\xbb\xc3\xf4\x95\xbe\xec\x41\x91\x26\x09\x2f\x5c\xef\x7b\x29\x2f\x19\x26\xf7\x34\xe5\x74\x18\x31\x92\xb2\x31\x4b\x59\x3c\x62\x19\x0c\x20\xaa\xa8\x31\x9d\xf8\x8b\x02\xca\x0b\xad\x13\x79\x41\xf5\x38\x49\x67\xe4\x2f\xfd\x4f\xe7\x27\xd7\x67\x17\xe7\xd5\x5f\xba\x97\xe7\xdd\x0f\xa7\xb5\x3a\x21\xfa\x19\x0c\x63\x1a\x93\x64\x0e\x8d\x48\x23\xcc\x8a\x65\x23\x3a\x67\x79\xd3\x62\x77\xcc\xe7\xd1\x52\x5f\x9b\xe5\x0d\x9f\x7e\x92\x12\xf6\x48\x67\xf3\x88\xe1\xdf\x84\xc8\x7e\x52\xf7\x24\xff\x42\xd3\xac\x3a\xd8\xfa\x4b\x15\x18\x5b\xf0\x78\x52\x0b\xc8\x5f\x58\x0c\x3c\xf4\xe9\xf2\xec\x44\xdf\xec\x2e\xdb\x41\xca\x82\x17\xa4\xec\xbf\xaf\x44\xe7\x00\xb2\xe1\x67\x10\x16\x4f\xc1\xe5\xa5\xcd\x00\x7d\x97\x24\x93\x88\x6d\x0f\xb6\xc8\x0a\x2f\x6a\x96\x64\x7f\x86\x3e\x4a\x59\xb6\x88\x04\xb4\xa8\xca\x31\x20\x12\xfd\x97\xd6\xdb\xc1\x96\x3b\xee\xac\xfa\xd8\x03\x2f\x13\x69\x00\xdd\x94\xa9\xd1\xa7\x7a\x38\x13\xa9\xb9\x29\xfa\x2f\xd5\x1b\xfa\xf2\x8f\xdb\x17\xb5\xc1\xa0\x5a\xbd\xf9\xc7\x60\x50\xbb\xdd\xae\x0d\x06\xb5\x9d\x09\x0f\x4c\x4e\x78\x1f\x7b\x40\xc6\x31\xe6\x67\x0d\x68\x7d\x19\xbb\x58\xce\x59\x32\xc6\xc2\x6e\x14\xe2\x96\x74\x3a\xa4\xb2\x88\x43\x36\xe6\x31\x0b\x2b\x35\x8d\x27\x44\x4c\xd3\xe4\x81\x54\x3e\xc9\x8b\xc9\xf3\x91\x24\xef\x57\x57\xc9\x5f\xe9\xfb\xee\xe4\xed\xf0\xe9\x3d\xe9\xb8\xd9\x5b\x00\xa0\x60\x1c\xeb\xcb\xad\x9d\xf6\xa8\xe7\xe2\xc8\xa2\x98\xc8\xec\x9e\x00\xdf\x8c\xe3\xdb\x6a\x7a\x6f\xee\x8d\x57\xf7\xd5\xcb\x92\x9c\xac\xbc\xca\x78\x43\x54\xd6\x69\x1c\x9b\x8c\x0c\xd9\xaa\x3f\xd2\x7b\x7d\x15\x7d\x91\xd9\xfa\x9a\x20\x5b\x62\x03\xcf\x87\xf2\x72\x3a\x9b\xf8\x7c\xfc\x9c\x44\x9c\xc5\x22\x43\x34\x0d\x43\xc9\x1c\xfa\x82\x77\x91\x10\xf6\x28\x58\x1c\x96\xf0\x42\x6d\xed\xb0\x32\x2d\xa3\xaf\x99\xcb\xf9\xe4\xd8\x7c\x0d\x9c\x17\x39\x03\x1d\x97\x3c\x93\x50\x6c\xab\x9f\xaf\x3f\xbc\x3f\x76\x46\x6d\xde\xbe\xd0\xf3\x33\x3a\xd7\x65\xe2\x5d\x80\xaf\x2b\xc7\xa4\xf2\x3c\x12\xaf\xf4\xed\x80\x84\x54\x7e\xc2\x67\x13\xe7\xd9\x73\x7c\x46\x67\x73\xfb\xe1\x60\x0b\x9f\xfe\xbe\x48\x6c\xec\x60\xab\x02\x6a\xbd\xf2\xfc\x87\xdd\xa3\x57\x15\xd5\x19\xf9\xf8\x2a\x63\x9b\x9b\xd7\x3f\x3d\x1f\x0c\x06\x5b\x83\x41\xe5\x76\x67\x62\x73\x4a\x8d\x7c\xd5\x29\x66\x74\x7e\x33\xbb\x55\xac\x0d\x1d\xef\xf6\xed\x3b\x26\x50\x68\xe9\x7b\xf7\xe9\x68\xc4\xe6\x82\x85\xe4\xd3\x19\x89\x68\x3c\x59\x50\x7d\xe3\xa0\xa3\xf0\xf2\xa2\xba\x69\x4a\x97\xb5\x15\x19\xd1\x28\x1a\xd2\xd1\x5d\x3e\x58\xa0\x8f\x79\x7c\x9f\xdc\x31\x39\x48\xa0\x10\x29\x4e\xb2\x3a\x01\x3b\x23\x97\x4c\x98\x25\x13\x2c\x45\x61\x9b\x53\x12\x25\x78\xb1\x24\xb0\x99\xab\xc5\xeb\x13\x26\xba\x48\xe6\x7b\x4d\xa0\x2d\x70\x34\x25\xd6\xd5\xfa\xeb\x92\xd5\x47\x60\xea\xb0\xab\xc5\x7c\x9e\xa4\x82\x85\xd5\x5a\xde\xe9\xf2\x4d\x9d\x37\x0f\xe3\x92\x84\xa6\x10\xd9\xaa\x92\x2f\x55\xd2\x8c\x89\x6b\x3e\x63\xc9\x42\x54\x73\xa2\x1c\x66\xd5\x89\xab\x37\x31\xbd\xe7\x13\x2a\x92\xb4\xae\xdb\xda\xf4\xee\x4b\xbc\x3b\xff\x4b\xa5\x76\x6b\x09\x00\x30\x08\xdd\x8e\xdc\xb4\x6e\x76\x13\xb9\xa2\xf8\x81\xc7\x61\xf2\xa0\xf0\xe4\xf9\x73\xbb\xee\x05\x59\xf0\x91\xa6\x68\x38\xfc\xbe\x60\xe9\x52\xeb\x7c\x1e\x83\x0e\x24\x53\x9a\x4d\xcd\x50\xb9\x06\x6e\x17\xf4\x0e\x54\x2e\x59\xa4\x91\x9f\xc4\x68\xe0\x0a\xf4\x71\xb3\x83\x7a\xf3\x39\x7c\x6f\xc9\xef\x15\x42\xe3\x10\xf3\x1a\x25\xf1\x3d\x4b\x45\x46\xb8\x50\x85\xc5\xda\x66\xb1\x55\xf9\x57\x1c\x2d\xcd\x63\x52\x91\xe9\x03\xfc\xbb\x95\xff\x4d\x56\xd2\xf0\x3a\x1b\x13\x4a\x26\xfc\x9e\xc5\xd2\x36\xa3\xf3\x39\x03\xb5\x35\x5b\x44\x82\xcf\x23\x46\x04\x9f\x49\x43\x02\xb2\xb6\xe9\x0e\x48\x12\x83\xa6\x57\xc3\x37\xa2\x99\x90\xfa\x5e\xda\x34\x32\x23\x9d\x50\x0e\x77\xd3\x22\xf2\x86\x4c\x1a\x87\x32\x89\x34\x45\xe6\x34\x03\x41\x0a\x02\x7c\x31\x99\x92\x90\xf9\x42\x8a\x0c\xd9\x38\x49\x19\x19\x32\x68\x37\x1a\x86\x4c\xb6\x89\xb2\x36\x94\x8a\x96\xad\x51\x64\x54\x6d\x99\x62\x25\x94\xb5\x77\x3d\xcd\xad\x35\x91\x00\xfb\x65\xac\x4e\xa0\x51\xb8\x20\x99\xa0\xd0\xce\xc8\xb2\x34\x67\xd1\x88\x51\xbc\x18\xb4\xf2\xa6\x12\x60\xa9\x95\x37\x15\x59\xe3\x21\x23\x7c\x12\x27\x29\xba\x03\x16\x8f\x62\xae\xff\x07\x5b\xce\x1a\x78\x16\x15\x16\x7b\x5a\x4f\xeb\xb2\xfc\xcf\x5c\x4c\xab\x95\x37\x95\x9a\xd2\xd7\x36\xf5\x1d\xe2\xe0\x17\xc3\x4c\xa4\xd5\x66\x4d\x49\xca\x5c\x4d\x7f\x5d\x59\x4f\xe6\x94\xa3\x55\xe2\xa4\x9c\x47\x5c\x54\x2b\xcf\x2b\x92\xa1\xc0\x3e\xaf\x02\x96\x93\x0e\x69\xbc\x22\x9c\xbc\x96\xc9\xea\x11\x8b\x27\x62\xfa\x8a\xf0\xed\x6d\x47\x27\xc0\x5b\xd2\x91\xa0\x1b\x7e\xab\x33\xec\x54\x34\xbf\xa6\xf7\x37\xc5\xee\xac\x02\xfe\xa6\x71\x5b\xbb\x25\x9d\x92\xde\x96\xaf\x9b\xb7\x39\x97\x5b\x8c\x8a\x3a\xda\xe3\xfa\x4f\x97\xef\xed\x06\x9e\x53\x31\x2d\x13\x7c\x9f\x2e\xdf\x97\x08\x3b\x47\xb5\x28\xae\x4f\x17\x31\x8c\x7e\x95\x48\x66\xf8\xca\x21\x03\x1e\x95\x12\xf2\xef\x8b\x1c\x55\x78\xf1\x89\x2a\xa1\x20\x8e\x4e\x22\x3a\x9b\xe7\xcc\xcc\x63\xc1\x26\x2c\x45\x8b\x9c\x64\x73\x36\xe2\x63\xce\x42\x82\xcb\xe1\x8a\xac\xa1\xd0\x2b\x72\x8f\x1c\x21\xd9\x58\x24\x30\xa4\x47\x90\xad\x1a\xd2\x45\xfc\x8c\xc7\x98\x62\xc6\x63\x3e\x5b\xcc\x94\xce\x44\x37\xc4\xd8\xfe\x25\xc9\xe8\xa3\x4c\x46\x1f\xd7\x27\x33\x6e\x1c\xd6\xcc\x6a\xc1\xfb\x00\x0a\x0c\x20\xb9\xd5\xc3\xf7\xe4\x35\x3c\x76\xbb\x72\xc6\xa5\xa9\x27\x01\x3f\x61\x12\x17\x40\x1f\x5f\x59\xdd\x71\x5f\x68\xd7\xf7\x6c\x2c\xc8\x9c\x86\x84\x92\x78\x31\x1b\xea\x36\x95\xcd\x2c\x19\x42\xca\x08\x2d\x19\xfe\x60\x69\x52\x62\x27\x48\x31\xf3\x2d\x6f\x03\x95\x19\x34\x83\xc9\x77\x4e\xd7\xb5\xb4\x2a\x09\xe0\x21\xcb\x78\xca\x42\xf5\xc8\x73\xa0\xb5\x94\x03\xe0\x1c\x45\xa4\xce\x9e\x66\xae\x33\x98\xb7\xef\x1f\x50\x3b\xdb\x41\x46\x7c\xa0\xf2\x77\x87\xab\x76\x45\x11\x52\xab\xcf\x69\x78\x05\x62\xaa\x2a\xb1\x01\xa9\x34\x2a\x65\x2e\x2a\xa6\xd5\xa5\x83\x0e\x13\x94\xc7\x28\xc4\xb5\xf2\x91\x34\x26\x63\x92\xcd\xc1\x9b\x1d\x4d\x69\x4a\x47\x82\xd9\x76\x34\xaa\xd1\x19\x13\xd3\x24\x24\x33\xca\x31\x0f\x59\x27\x2a\xf8\x88\x8c\xe8\x68\x9a\xfb\xb3\x11\x4d\x27\x2c\x13\x84\xce\x92\x45\x8c\xaa\x51\xc6\xc6\x20\x73\xe9\xba\xde\xb3\x94\xa4\xec\xf7\x05\xcb\x04\x0b\x41\xe8\x0b\xe5\xe4\xc7\x15\x91\x1b\xf5\x22\x21\x13\x16\xb3\x14\x23\x23\xc0\x55\x19\x8d\x59\xb4\x24\xd3\xc5\x84\x99\xbc\x31\x43\x93\xff\x13\xfc\x55\xd2\x8b\x65\x14\xd6\x4b\x15\x57\x57\xb7\x9f\x6e\xa5\x4c\xd7\x36\xaf\x87\x3d\x26\x6c\x23\xf1\x73\x9e\xb5\xdd\xd1\x4e\x07\xa3\x90\x94\xe4\xbd\xee\x90\x86\xcb\x25\x95\x8a\xa5\x42\xc6\xa4\x83\x0e\x8c\x9b\x71\xce\x66\xcf\xc6\x75\x53\x13\x95\x8d\xfd\x88\x74\x48\xc5\xb8\xde\x3a\xe3\x87\x29\x8f\x58\x4e\xc1\x4f\x4e\x8a\xba\x43\xa8\x97\xdb\x76\xc7\xf9\xbb\x44\x59\x38\x59\x29\x2d\xd9\xc8\x87\x77\x3e\x5a\x89\x1e\xae\xa7\x71\xb6\x48\x55\x4c\x8e\x9a\xe0\x06\xcf\xd0\x5c\x55\xae\x1e\x86\x56\x46\x2c\x85\x41\x88\x46\x12\x89\xf8\x8c\x5b\x66\xc7\x15\x9f\x81\xfd\xb4\xc8\xe8\x84\x91\x28\x49\xee\xc0\xe1\xbb\x63\xb2\xe5\xea\x06\x87\x7e\x5f\xca\x26\x3c\x13\x2c\x3d\x8b\xb9\x50\xaa\x8a\x46\x34\x9d\x55\x93\x18\x1e\xd5\xac\x68\x04\x72\x01\x1a\x1c\x51\x02\xfc\xf3\x40\xd3\xd8\xba\xa9\x7c\x94\xc4\x59\x12\xa1\x67\x2c\xd3\x56\x6b\x40\x79\x9c\x08\xe5\x83\x68\xf2\x31\xb3\x3d\x92\xb1\x51\x12\x87\x16\x97\x9d\x8d\xc9\x32\x59\x54\xc0\x1e\x63\x29\xd8\x92\x90\x79\x06\xca\x29\x99\x03\x23\xa0\x43\x03\x4d\x33\xa3\x4b\x34\x6a\x49\x94\xc4\xa8\x6a\xa6\x34\x36\x19\x42\x26\xd2\x60\xa5\x31\x5a\x76\x84\x92\x70\xa1\xd2\x73\x10\xcc\x51\xc4\x35\x96\x66\x48\xbb\x8e\x2d\xa9\x3c\x8c\x3b\xe4\x53\xa7\x33\xd4\x16\x74\xc8\x62\x01\x0a\x0e\xec\xcd\x4c\x30\x1a\xa2\xff\x66\x3c\x31\xdd\x87\x01\x56\x2d\x8a\xc8\x84\x09\x65\xd3\x3d\xa4\x60\xa9\xa6\x9a\xcd\x93\x94\xa4\x54\x4c\x75\x75\x28\xc9\x78\x3c\x89\x98\x86\xd5\x09\x39\xa5\xa3\x29\xe6\xac\x5a\x1c\x73\x31\xa9\x1f\x64\xb0\x48\x09\x3c\x99\x2c\x24\xf7\x2c\xcd\xa0\xe2\x8a\x5f\x73\xc2\x1e\x50\x04\x60\xf0\xf0\x05\x14\x36\xa5\xf8\xb7\xf4\x99\xd0\x39\xe4\x19\x74\x1f\x98\x64\x23\x9a\xb1\x8c\x3c\x4c\x59\xca\xb0\x0d\x54\xdc\x91\x30\x7b\xb8\x0a\x50\x43\x99\xc0\xfc\x92\x98\xc9\x76\xc8\x18\xca\x17\x5d\x2a\xe6\xa8\x07\x83\x32\xa9\xa9\x2e\x94\xb0\xc7\x39\x4f\x6d\x47\x57\x32\x3d\x0e\xc7\x3c\x48\x23\x07\x67\x65\xcc\xc4\x68\xaa\x0c\x6e\x69\xeb\xe5\x41\xbd\x24\xa9\xe3\x5b\x19\xd0\xad\xea\xd1\x7c\xb5\x18\x8d\x58\x96\xd5\x02\xa2\x9f\xf4\x29\x8f\x16\x29\xb3\x87\x78\xc1\xb5\x7e\x61\xbb\xd5\x20\x3c\xed\x88\x23\xb4\x31\x46\x3a\x63\x99\x67\x41\x81\xae\x60\x60\x7d\x99\x65\xe4\x42\x8f\x2f\xa3\x6d\x9c\x61\x08\x99\x51\x9e\xbb\x19\x29\xe5\xd0\xfb\xb9\xe9\x9f\x17\x40\x48\x8f\x8d\x29\x86\x03\x33\xb2\xd7\x68\x34\x48\x35\x1f\xf7\x35\x4f\x1f\x6b\x4a\x57\x30\x74\xf3\x3a\xa0\x7b\x6f\x2a\x31\x65\xda\x4d\x92\x46\x88\x71\xa3\x86\x26\x38\x00\x00\x3d\x9e\x74\x46\xd2\x59\x71\xb3\xd5\xfe\xcc\xda\x4c\xf3\x1c\x87\xcc\xa5\x82\x8a\x5c\xdb\x65\x18\x78\xf6\x8b\xf3\xa2\x0f\x7a\x4c\x14\x02\x0e\x81\x6a\x71\x25\xb1\x31\x6c\x04\x4e\x87\xea\x87\x6f\xdf\xc8\x1e\x79\x41\x9a\x8d\x46\xe3\x95\x7e\x9f\x09\xa8\x80\x1e\x5f\x13\x26\xae\xe0\x81\xf1\x66\x54\x2d\x4a\xe2\x08\x3b\x3b\x92\x4d\x92\x85\x60\x69\x99\xb8\xe6\xb3\x19\x0b\x39\x15\x0c\xe3\xef\x67\xa2\x92\x11\x64\x22\x91\x90\x11\x9d\x8b\x05\x0e\xff\x98\x3d\xe4\xd9\x65\xa3\x64\x2e\xa7\x29\xa0\xfd\x34\x63\xe8\xb0\x68\x5d\x07\xa2\xb0\x60\x46\x2a\x0a\x50\x31\x21\x78\x9e\x69\x56\x1e\x2e\x65\xac\x4f\x67\x62\x24\x11\x38\xbf\x52\x7c\xc8\xac\x8c\x4c\x50\xa2\xc6\xb8\x57\x3a\x71\xe7\x7b\x01\x15\x00\xa3\x1b\xdf\xc9\x43\xc0\x79\xb6\x9d\x0e\xa9\xc8\xa1\x51\xa9\x91\x37\x12\x76\x6c\x06\x92\x8a\xf1\x9a\x78\x38\xe9\xc8\x5f\x6f\x48\xb5\x22\xa3\xa6\x32\xce\x7c\x2c\x8d\x01\x15\xbf\x91\xda\xa6\x0e\x4a\xa8\x5a\xb1\x46\xc5\xb1\x27\x4f\x42\x99\x45\x75\x96\x91\x1d\xec\xf8\x1a\xd9\x26\x95\x2c\xcf\xb6\x90\x63\x94\x4c\xaa\x38\x26\xcc\x2b\xd3\x0c\xf1\x22\x8a\x74\x90\x36\x20\xb3\xac\x96\x07\x07\xa1\x05\x54\x03\xbe\xcb\x65\xf2\xfa\x90\x98\x65\xe2\x94\x07\xa8\x30\x98\x2e\xcb\x75\x9e\x13\x32\x8a\x18\x4d\x75\x67\x68\xc8\x2b\x1b\x51\x4a\xaf\x17\x73\x36\x3e\xa7\xee\x08\x9c\x40\xa9\x42\x8a\x80\xd0\x74\xb2\x98\xb1\x58\x64\x35\x3b\x5e\xed\x86\x43\xad\x70\x7f\x69\x5f\x7b\xd5\xf4\x1b\xc7\x0f\xab\xfa\xef\xfd\xf8\x5e\xad\xba\xd6\xbe\x47\xcd\xb6\x48\x53\x16\x0b\xa9\x20\x25\x4f\xd3\x31\xf0\x65\x76\xc7\xe7\xf3\x72\x8b\x7f\x9c\xe6\x81\xcd\x82\x9d\x8f\x9a\x4a\xb0\x38\x94\xc6\xb8\xb6\xcb\x9d\x29\x44\x0c\x44\x49\x0b\x5e\x56\x22\x23\x54\x9a\x37\x52\xf9\x38\x46\x41\x4c\x30\x4e\x1b\x90\x21\x1b\xd1\x05\x4e\xbd\x1a\xa3\x49\xb6\x19\x58\x12\x19\xa1\x00\xcb\xc8\x70\x89\x39\x85\x4a\xe0\x4b\xae\xa5\x20\x43\xc0\xa4\x7a\xc0\x89\x49\x39\x07\x68\x2a\xd0\x25\x62\x39\xe7\x23\x1a\xc9\x66\x98\xe1\xc4\x32\x98\x80\x68\x01\x3a\xc6\x9f\x3b\xe0\x2b\x57\x09\xd4\x1b\xea\xf4\xc0\x47\x77\x18\x0c\x03\x6b\x8f\x2e\xc9\x88\xce\x58\x25\xf0\xc5\x63\x2d\x57\xba\x20\x42\xd6\xfd\x77\x9e\x08\x3e\xd2\x35\x9d\xcd\x28\xf9\x87\x67\x4d\xe2\xdc\xe6\x3c\xe5\xb1\x8c\x80\xcf\x58\x86\x56\xab\x32\x29\x7f\xcb\x34\x91\x01\x19\x27\x51\x94\x3c\xa8\x89\x6c\x1d\x79\xd4\xfe\x0f\x1a\x46\xb1\x8c\x1a\x28\xf2\x13\x92\xb2\x7b\x46\x23\xcc\x08\xc7\x43\xd1\x3b\x92\x23\x41\x6a\x69\x19\x41\xeb\xe3\x88\x40\xe9\x9a\x14\x75\xb6\x1c\x56\x72\xd4\x68\xdb\x09\x39\x01\xd3\xca\x90\x3a\xa1\x23\xb1\xa0\x11\xa9\xe8\xa6\xaa\xc8\xbe\x00\x0d\x19\x3d\x40\xc7\x96\xc6\xea\x34\xda\x16\x19\x3e\x59\x96\x52\x73\xa8\xed\x14\x2b\xf0\xa6\xf8\x68\x9b\xb4\xc8\x31\x69\x59\xee\x14\x56\x07\x07\xa5\x7a\x28\xd2\xa5\x16\x35\x72\x32\x0b\x54\xf1\x69\x9a\x26\x69\x55\x07\xd9\x47\x14\x0c\xaf\x2a\x7b\xcc\x85\x92\xc9\x85\x74\x08\x7b\xac\xcb\xb6\x56\x81\xb8\xc1\x20\xae\x38\x61\xb4\xbc\x5c\xc5\x21\x2a\x48\xe8\xc5\xfe\x6c\xc2\x65\x18\xd0\x94\x52\x1a\x0b\xb4\xb2\xbc\xe1\xe4\xa5\x93\xc1\x2d\xa8\xaf\x3c\xf9\x0d\xbf\x35\xf1\xfd\x7f\x0c\x06\xd9\x0b\x2a\x06\x83\x6c\x7b\x27\x20\x95\x4a\x59\xc4\xcf\xca\xba\x20\x7f\x7a\xfc\x9e\x87\x4c\xfa\x10\xe2\x21\x51\x43\x45\xc6\x97\xc7\x51\x92\xa4\x99\x3d\xe7\x12\x90\x45\x1c\xb1\x4c\x3f\x9b\x51\x1e\x87\x72\xc6\x05\x9e\xca\x80\x32\xda\xfe\xe0\xa7\x8c\x52\x16\xf2\x61\xb4\x24\xd9\x0c\x86\x0f\x1a\x51\x01\x58\x9b\x7a\xb8\x67\x8c\x70\x23\x77\x90\xc5\x18\x8f\xf2\x85\x0d\xda\x80\x5f\x64\x6c\xbc\x88\xc0\x7a\x97\x72\x52\xc7\x64\xc0\x0c\x49\x17\xf1\x88\x82\xf3\x4e\xe7\xf3\x34\x79\xe4\x33\x2a\x67\xf6\x70\xe6\x07\x5c\x2b\xcc\x49\x06\xca\xa5\xdd\x90\x25\x24\x4c\x40\x4a\x84\xfc\x9e\xa3\x63\xa1\x27\x96\x32\x96\xd7\x7e\xc9\x59\x04\xbe\x95\x99\xba\xd6\x95\x91\x7e\x59\x94\x64\x4c\xc6\xb2\x1e\xa6\x20\xfc\x64\xba\xf5\xec\x19\x2f\x66\x52\x25\x94\xbe\x0d\x59\x9c\xcc\x78\x6c\xde\x6b\x03\x58\x01\x1c\x36\xcb\x66\x34\x15\x7d\xe8\x19\xd9\x75\x5e\xf4\x49\x16\x13\x10\x3b\x53\x8b\xeb\xee\x69\x84\x3a\x55\xe1\xc8\x8e\x8d\xcb\x0d\x4a\xd5\x0d\xa4\x43\x3e\x50\x31\xad\xc3\x9f\xd5\x7b\x1a\xd5\xf2\x38\x85\x06\xbc\xc4\x0c\x5f\x93\x7a\xa3\xd1\x68\xe6\x43\x59\xab\x65\x09\x2a\x99\xdb\x52\x00\xcc\x1c\x07\x99\xc9\xbd\x74\x6a\x91\x92\x94\xc6\x61\x32\xcb\x43\xb3\x18\x41\xc0\x80\x2c\xa9\xe2\x0a\x90\x8c\xdf\xb3\xda\xfa\xf6\xd7\xb1\x56\x90\xbf\x99\xb0\xb3\xc1\x81\x9c\x47\x76\x8b\x09\x55\xb4\x75\xca\x27\xd3\xef\xa4\xf4\x3a\x8d\x74\x35\xd1\x6a\xbc\x0e\x99\x78\x60\x0c\xc3\xaa\xe4\x39\x64\xec\xcd\x50\x23\xf8\x2c\x16\x76\x87\x7a\xa1\xda\x62\xbb\xe1\x57\x99\xb4\x5a\x23\x2f\x48\x15\x08\x7e\x89\x65\x6c\x93\x66\x0d\x2c\x45\x19\xc6\xfd\xfe\x82\x2e\xa5\xb9\xbe\xcc\x68\x4c\x27\x2c\xfd\x7f\x6c\x79\xd7\x07\x59\xbb\x0f\xb2\x72\x64\x14\xd1\x2c\x23\x53\x1a\x87\x11\x93\x66\x52\x1a\x53\xa9\x2d\xf9\x1f\x2c\x54\xd6\x8c\x65\x58\x9d\x27\x82\x1d\xdb\x73\x9a\x84\x67\x71\x45\x90\x6c\x31\x1e\xf3\x11\x97\x33\x6c\x68\x15\x29\x1b\x05\xd5\x6a\xb3\x0e\x8d\x95\xb2\x0a\xc8\x92\xe1\x02\x27\x2c\xd5\x74\x85\x8a\x03\xdd\x31\x9c\x8e\x5c\xc4\xf4\x9e\xf2\x48\x7a\x40\x31\xe1\x52\x43\x1f\xdb\xeb\x6e\xa6\x42\xcc\xb3\xe3\x9d\x9d\x51\x3a\x5c\x4c\xea\xa3\x64\xb6\xd3\xdc\x6d\xb4\x1a\x8d\x1c\xd3\xc2\xc2\xc0\x7e\x40\x2b\x12\xda\x77\x46\x97\x68\x6b\x0d\x19\x99\xd3\xd1\x1d\x9d\xb0\x50\xf2\xce\x89\x24\x02\x97\x4f\x80\x10\x34\x24\xef\x96\xe7\x82\x39\xa4\x72\x72\x1f\x06\x4e\x4a\xd3\xa5\x97\xa7\x98\xf2\x34\x7c\x09\xa8\xa5\x4d\x77\x69\x51\x0e\xb3\xa1\x56\x5b\x99\x85\x02\xe4\xbd\x9e\xbc\xcf\x9f\x88\x84\x44\x09\x0d\x03\xdd\xf1\x49\x1a\x62\x9c\x89\x99\xa2\xcc\x32\x33\x40\x62\x5c\xfa\x9c\x3d\xb0\x54\x9b\x64\x99\x5e\x61\x42\x92\x08\x12\x27\x31\xcb\xea\x84\x54\x58\x5c\x21\x3c\x33\x91\x8a\x05\xae\x6d\x06\x13\x34\x5a\xca\x89\x52\x1d\x63\x1b\xf3\x34\x13\x39\x51\x20\x08\xb9\xd0\x01\x42\x1a\xa5\x8c\x86\x4b\x32\x87\x81\xaf\x0c\x5a\xc5\xdb\xde\xd0\xb3\x83\xc8\xba\x7e\x8a\xbf\x31\xbe\x99\x3f\xfc\x02\x2e\x7d\x3e\x11\x3f\xa3\xf3\xaa\xf6\x47\xf2\x0c\x58\x64\xad\xd1\x60\x51\xc9\xb4\xbf\x5c\xb2\xa1\xe5\xb6\x57\x40\x1d\xd4\xf7\xe3\xc5\xb8\x0a\x8d\x50\x03\xd7\xe7\x65\xb3\xa6\xad\x27\x17\xb9\x88\xb3\x29\x1f\x0b\x89\xd4\xc6\x16\x60\xf2\xd6\x55\x76\x90\x2b\xbd\xbb\x61\x98\x9b\xc4\xb8\x7a\x8a\xab\x25\x40\x89\x63\x2d\x6b\x99\x53\x3a\xed\xef\x4f\xd2\x67\x6a\x21\xe4\x8c\xaa\xe1\xa8\x46\x98\xa6\xa4\xfe\x5b\x96\xc4\x52\x24\x10\x72\xc5\x64\x14\xe8\xb5\x66\x9f\x90\xdd\xb3\x28\x99\xb3\x54\xcd\x1b\x22\x27\xe5\x83\x33\xdb\x01\xde\x7e\xa9\xb3\xfa\x69\x7d\x3f\xd6\xe7\x69\x22\x12\xf0\x1e\xeb\x34\x0c\x3f\x98\x56\xc8\x3b\x27\x64\x63\xdd\xb1\xb9\x69\x78\xc7\x96\x30\x84\xad\x57\x52\xe3\x86\x6c\x8c\x13\xb9\xe3\xec\xe6\x8e\x2d\x6f\x1d\x0f\xf5\x59\xc8\xc6\x75\xec\xd7\x29\x8e\x5c\x7b\xf9\x97\xd3\x05\x98\x54\x66\xa3\x9f\x69\x4f\xdf\x51\xbf\xe8\xf0\xe8\xb5\x8f\x83\xad\x1f\xcf\xbb\x1f\x4e\x7f\x1c\x6c\x11\xbb\x0c\x69\x15\x0d\xb6\x7e\x6c\x0e\xb6\x02\xc2\xc4\xa8\xbe\x69\x91\xf9\x20\xb4\xfd\xf9\x9d\xc1\xe0\x47\xb9\x3c\xef\x06\x2c\xd6\xc1\xe0\x47\x5c\x9b\xf7\xe3\x0e\x9f\x04\x36\xce\x68\xbe\x80\x78\x6b\xf3\x1c\x57\x3c\x6f\x29\xa7\x61\x6e\x70\x05\xa8\x48\xde\x27\x0f\x2c\x3d\xa1\x19\xab\xd6\x6e\xeb\xff\x3f\xf6\xde\xbe\xbf\x8d\xdb\x78\x10\x7f\x2b\xb0\xaf\x17\x92\x31\x45\x91\xd4\xa3\x9d\x2a\x39\x8a\x92\x5a\xf7\x6c\x27\x17\x39\xcd\xaf\x67\xf9\xeb\x82\x5c\x50\xda\x78\xb9\xcb\xee\x83\x24\xb6\xf6\xbd\xf6\xdf\x07\x33\x03\x60\x80\xdd\xa5\xe8\x24\x4d\xdb\x7c\x93\x3f\x62\x7b\x89\x9d\x05\x06\x83\xc1\x3c\xcf\x3c\xd3\x4a\x70\xe9\x99\x17\x3e\x1a\xa3\xc0\xc7\x46\x99\xe3\x45\x26\x23\x76\xe2\x1d\x6b\xb6\x67\xdf\x10\xee\xac\xd2\x37\x48\x7b\xc0\xc4\x4a\x96\xfa\x6a\x11\x13\x88\x5d\x31\xff\xf2\x9c\x78\x88\x63\x32\x4e\x83\xff\x0d\x42\x96\x2c\x43\x02\x4b\x12\x31\xb7\xeb\x6c\xb0\x21\x80\xaa\x6f\xc2\xa8\xb2\x74\x9a\x2d\x57\x89\x2a\x95\x17\x48\x35\x53\xd6\x0b\xa3\x65\x69\xcd\x26\xb9\x8d\x36\x2e\x20\x42\x58\xbf\x46\x8a\xa0\x56\x08\x48\x97\x97\x66\x72\xc4\x9a\x0b\x34\x46\x6b\xc1\x1c\x54\x05\x19\x27\x14\x51\xa2\xff\xf3\xa2\xae\xc0\xce\xea\xb0\xe9\x05\x6a\x91\xcf\x6a\xd8\x17\x69\x46\x6f\x15\xe2\x4e\xe5\x8a\x81\x02\x66\xbe\xcd\x39\x5c\xc4\x69\x34\x49\x23\xbd\x7b\x4d\xe7\x11\x77\x9c\xf6\xa0\xcf\x90\xc4\xe4\xe3\x84\xc5\x82\x85\x2c\x70\x9e\x69\x5d\x83\xf4\x48\x18\x0c\x53\x13\x27\xe2\xcd\x5b\xfb\x0c\x11\x61\x9e\xc1\xd9\x37\x3b\x90\xa5\x26\xac\xca\x7c\xb8\x5b\x94\xb2\x74\x34\xae\x0f\xbb\xff\x44\xb8\x6f\xb8\x9b\x00\x19\x71\xaf\xe5\x68\xdb\x09\xb4\xbe\xc0\x79\x8b\x1b\x14\xf8\x09\x41\x95\x7e\xa5\xee\x6d\x28\x58\xeb\x07\x1d\x1e\xbb\x38\xd9\x3e\xcd\x21\x3c\x63\x06\x45\x01\xe0\x86\xf8\x0e\x73\xfd\xb0\x8d\xc4\xab\x8b\x58\xcb\xb7\x36\x4c\xbb\x6b\xb7\xd3\xdd\xa5\x7d\x9f\x63\xb8\xff\xea\x1b\x30\x98\xc5\x69\x04\xa0\xfb\x5a\x97\x54\x3f\xf6\xdd\x85\x4c\x0a\x72\xc3\x88\x8f\xee\x87\x9e\xb3\x4a\xd4\x50\xd9\xc0\x71\xec\x55\xba\xc8\xb3\xa5\x90\x4d\x17\xda\x36\xc7\x20\xd9\x48\xff\x55\x9e\x68\xda\x27\x67\x12\x7a\x1b\xb2\x14\x4c\x24\xec\x1c\xdc\xdf\x68\x41\x25\x55\x77\xe2\xff\x7b\xf9\xe2\x8f\x65\xb9\xfa\x16\xdd\xe4\x5d\xb3\xa4\xfb\x9b\x7c\x90\xa5\xb0\xe1\x69\x53\x88\x0e\x92\x97\x1e\xa5\x29\xba\x2a\xc4\xa3\x13\x31\x1e\x0e\x83\x58\x6b\xfe\x71\x87\x79\xf6\x94\x41\xe8\x7d\x11\x86\x1b\x87\x04\x0d\x24\xc2\x2e\xe3\xee\x9f\x2e\xbf\x7e\x85\x31\x64\x00\x27\x57\xc5\x2a\x4b\x0b\xf5\x5a\xdd\x93\x5b\x18\x36\x96\x50\xd1\x6d\xdd\x3e\x58\xeb\x4a\xa5\xdd\xce\x1f\xce\x5f\x77\xfa\x1a\x85\x38\x16\x26\xa7\xd2\xa8\xd1\xae\x8b\xd7\xeb\xef\x46\x83\xc1\xe0\x77\x29\xcf\x2c\xb0\x81\xac\x2a\x51\x60\xa1\x36\x82\x8d\xcc\xaf\xc9\x76\xda\x7e\xa1\x2c\x8b\x6b\x93\x6e\xc1\x6e\x11\x2e\x4b\x69\x76\x6c\x8c\xdf\xec\xb3\x83\x26\x91\x1b\xbe\x88\x96\xaf\x00\x9a\x85\x80\xb6\x93\x0d\x84\x57\x3b\x93\x9e\x02\x5b\x5c\x83\x29\x3e\x88\xdb\x5f\x16\xd7\x4e\x56\xd5\xa2\xc1\xd5\x55\xf4\xa4\xc7\xa3\x8f\x85\x96\x00\x40\x3c\xad\xbb\x1b\x34\xbc\x37\xf0\x9b\xd8\x11\xa3\xb7\xed\x21\xe7\xdf\xa8\x7c\x27\x4e\x8b\x52\xa6\xa0\x70\xae\xd6\x1a\xd3\xb5\xf9\x6e\x75\xa8\x1a\x56\x89\x9f\xdd\x06\x23\x0d\x06\x0d\x2b\x40\x60\x62\x4f\xdf\x1a\x6b\x93\x35\xcd\x10\xa4\x03\xe3\xc4\x10\x65\x96\x6d\x24\x0a\x90\x12\x9a\x09\x03\x7e\x22\x12\x63\xe6\xe9\x6b\x55\x36\xd2\x84\x3e\x7d\x40\x17\xd6\xe5\x2b\xb7\x25\x90\xda\xc4\x34\x2c\x63\xfe\xb7\xe0\x6c\x88\x1c\x6d\x67\x4c\x53\xa3\x45\xa0\x42\x65\xef\x7f\xd0\xf7\x07\x82\x1c\x25\x85\xb7\x0a\x18\x3f\x5b\x1b\x0f\xc3\x56\x1b\x79\xad\xca\x80\x40\x2d\xfe\x61\xd9\x7d\x3e\x69\xee\x84\xb5\x02\xb5\x51\xa6\xec\x84\x53\x5f\x26\xb6\x04\x6b\xa6\x79\x12\xc8\xcc\xf4\xa2\x11\x10\xfc\x0b\x55\x43\xf6\x02\x1b\xc1\xda\x60\xb9\xa3\x83\x19\xc4\x96\xd3\x82\xcd\xac\x7a\xbe\x0a\x41\xaf\xb1\xb3\xe4\xbb\x1f\x4d\xca\x07\x8d\x43\x8f\x23\x03\xe5\x9d\x3f\xe3\x33\xe3\xbb\x1b\x24\xc8\x88\xaf\xec\x7e\x3e\xe3\xe3\x1a\x44\x02\x98\x9f\xc1\x7e\x10\x60\x58\xc3\xf9\xa3\xae\x25\x4f\x73\xb0\xb3\x05\x72\x30\x13\x88\x6a\x07\x9c\x88\x37\xe6\xef\x6f\x7d\x4f\x78\x8b\x2c\x41\x9f\x73\xb4\xd0\xc0\x51\xf2\x4c\xdf\x15\x42\x26\x89\x39\x52\x57\x8f\xf5\x16\x5c\x3d\x16\x37\xe5\x32\x11\xb2\x2c\xf3\x78\x56\x95\xfa\x16\x37\x96\x2a\xe3\xb6\x8b\xb2\xa5\x58\xe4\xf2\x7a\xa9\xb8\xc7\xeb\x35\x98\xd2\x65\x22\xee\xb2\xfc\xbd\xb8\x91\xab\x95\x4a\x21\x6a\x7c\x85\xdf\x7a\x3e\x3a\x4e\x27\x06\xea\x56\x24\xde\xf4\xa2\xaf\x99\x66\x4b\x46\xd9\x69\x16\xc1\xcf\x51\xb6\x1c\x60\x68\xb3\x4a\xd4\xbc\xcc\xf2\x49\x92\x74\x3b\x6f\xf4\xea\xde\x5a\x9d\xbf\x29\xc0\x19\x00\x78\x4e\x0d\x76\x1f\x37\x4d\xa6\x0b\x6f\xbc\x89\xdf\xb6\x23\xd8\xc3\xac\x45\xaa\x31\xff\xb8\xa8\x5c\x0d\xc9\xc7\x25\x18\xe7\xdc\x1b\xa4\x39\x11\xf7\x12\x52\x68\xa1\xc0\x04\xba\xa3\x9a\xf3\x5e\x19\x05\x47\xbe\x57\xa9\x71\x8b\xcd\x14\x83\x02\x9a\x8c\x0d\x3c\xe0\x91\xf7\x9c\x17\xf9\xa1\x60\x7a\x20\xfb\x98\xb8\x81\x28\xd2\xab\xc7\xef\xae\x1e\x8b\xae\x3e\x2b\x79\x31\xcf\x72\xd5\xd3\xdf\xef\x8b\xb8\x2c\x88\x33\xa2\xcb\xc3\x58\x9d\xd0\xa9\xa2\xee\xcb\x29\xea\xb1\x86\xec\x48\x78\x70\x5f\x7c\xc9\x27\x02\x16\x53\xb8\xfc\x35\xa3\xcd\x20\x2a\x8b\x91\x66\x96\x3a\x4b\x0a\x01\x42\xb1\x84\x5c\xb6\xab\x5c\x2d\xe2\x7b\xf4\xa5\x96\x37\x42\x8a\x28\x4b\x12\x99\x8b\x22\xbe\x4e\x07\x82\x27\x23\xfa\x1e\xd9\xdf\xcf\xaa\xb2\xcc\x52\x11\x47\x27\x1d\x2d\x18\xed\xe0\xbf\x3b\x57\x7e\xfe\xa0\xde\xa2\x93\xce\x3f\xae\x1e\xcb\x3c\x96\x3b\x89\x9c\x29\xaa\x77\xf4\xbb\x38\xba\x7a\xdc\x47\x1c\xe9\x7f\x5f\x9e\xbf\x3a\x7b\x77\xfa\xdd\xeb\xd7\x5f\xbf\x7a\xf7\x62\x72\x7a\xfe\xe2\xea\xf1\xc7\x10\xd8\x97\xbf\xdf\xc5\xaf\x7c\xe9\x91\x81\x03\xed\x5f\x17\x26\xdf\x40\xab\xba\x55\x89\x68\xf6\x3f\x34\xf9\xf6\xf9\xc4\x7c\x6d\x60\x8c\xbf\xe8\x04\x96\xa5\x21\xcc\xc8\x23\xcb\x3b\xbd\xb5\xfa\xe0\x92\xaf\x1d\xbc\x69\x32\x87\x50\x39\x33\xa8\x6f\xf3\x50\x58\xc2\x05\xa5\xa4\xe0\x5b\xdf\x7d\xf3\xcd\xf9\xb7\xef\x26\xaf\xce\xde\x7d\xf7\xea\xec\xfc\x5b\x01\x86\xf0\x1f\x7d\xe2\x3d\xc7\x50\x16\xb1\xbc\xdd\x29\x7e\x94\x96\x92\x64\x77\x2a\xdf\x91\x69\xb4\x13\xc9\xe2\x46\x15\xde\xc2\x90\x98\xe2\xd4\xe6\xe8\x5e\x3d\x0e\x66\x79\xf5\xd8\xcd\x93\x07\x44\x55\xe9\x7b\xca\x7f\x6b\xcc\x3a\xb3\x06\xca\x41\x99\x7d\xb7\x5a\x19\x73\x0d\xd7\x13\xe1\x20\x9f\xe0\x09\xbf\x56\xa5\xe3\x1e\x1d\xfd\x4b\xc7\x79\xa3\x1e\xb1\x1b\xd2\x6a\x06\x81\x37\x98\x80\x31\x8d\x00\x5e\x6a\xf5\x09\x9b\xeb\x51\x81\x16\xd2\x99\xca\xf4\xea\xaa\x53\x62\x9a\x0b\x46\xf4\xe8\x69\x95\xf2\xfa\x95\x26\xaa\x27\xa2\xf3\x3f\xec\xc3\x38\xd2\xff\xc6\x2b\xd4\x7d\xc4\x38\xa4\xd5\x3d\xf7\xd0\xee\xee\xa2\xea\x07\x31\x91\x4e\xb2\x29\x18\x87\x23\x96\xe7\xb3\xb5\x62\xd0\x64\x56\x84\xaf\x79\xb1\x5d\x0a\xa6\xc4\x29\x55\x75\x90\xfe\x0b\x55\x96\xe4\x6a\x35\x61\x8a\x65\xa9\x95\xbe\xf7\x6a\xed\x85\x04\x99\x7b\xfc\x04\xc0\x1b\xf3\x24\x7d\x41\x73\x82\xab\xc7\x27\x8b\x2c\xd3\xe7\x36\x57\x3b\x26\x2c\xc4\x2a\x1e\x91\x77\xfc\x06\x4e\x26\x21\xb8\x5e\xae\xce\x49\xa7\xc7\x44\x14\xbd\xaa\x13\x61\xc7\xb1\x1c\x1d\x92\x85\x5a\x67\xf6\x91\xc5\x99\xe1\x14\x7f\x47\x53\x9c\xcb\x64\x5e\x25\xb2\x54\x35\x41\xf2\x81\xa9\xfd\xce\xa6\x11\xf1\x0f\x23\x9d\xd7\x49\xb4\x36\x69\x88\xd9\x7a\xa7\x49\xe2\xbd\x5a\x3b\xe1\x4c\xcf\x2f\x46\xa9\x3f\x31\x46\x47\x63\x47\xf5\xb6\x80\xc5\x8d\x77\x03\xb9\x4c\xcf\x18\xf7\xee\x04\x4e\x94\x99\x25\x52\x28\xbb\x39\x00\x97\xf4\x92\x16\x39\xbd\x81\x05\x9f\xbe\x06\xd7\xd7\xa3\x3d\xa7\xec\x66\xff\xe1\xca\x6e\xf9\xaf\xd4\x85\x38\xcd\xd2\xa2\xcc\x2b\x2d\x19\xc1\xc9\xd3\x1c\xf9\x1b\xbb\x68\xe3\xde\xc1\xcb\xde\x0b\xc9\x52\x7a\xea\xf8\x58\x44\x20\xe9\xe9\x4b\x75\xa5\xf2\x22\x2e\x4a\x50\xd8\x6e\x64\x4a\x5e\xae\x02\x53\x79\x8a\x32\xcb\x8d\x32\x9f\x66\x65\xbc\x58\x1b\x4b\xad\x66\x4c\xd5\x12\x2c\xf4\x37\x2a\x15\x2b\x66\x58\x40\x30\x4c\x06\x29\xfd\x18\x30\x73\x7d\xcd\xe4\xfc\x3d\x44\xa6\x97\x59\xae\xb1\x48\x6e\xb3\xc2\x06\x50\x65\x2e\x8a\xfb\x8f\xaf\x5f\xbe\x38\x00\x68\x34\xa5\xbe\x98\x55\x00\x26\xd7\x77\xac\x4a\x3b\xa5\x90\xe9\x1a\x6a\x37\x60\x94\x35\x7d\x64\x99\x81\x78\x22\xc4\x73\xca\xd1\xac\x4a\x0c\xb5\x36\xc6\x5d\xf2\x2a\x4a\xe3\x10\x95\xab\x18\x11\xa0\x27\x55\xac\xd3\xf9\x0e\x60\x42\x53\xfa\x2e\x0a\x46\x90\x23\x87\x42\xd8\x9d\xea\x44\x10\x39\x66\x62\x4e\x1a\x92\x16\xf5\xfe\x5c\xe2\xa4\x07\x9f\x7f\xb4\x28\xc5\xbc\x45\xfc\x3b\x49\x66\x65\x86\x85\x2c\xc0\x4b\x8b\xc8\x71\x6e\x45\x3d\x9f\x76\xed\x16\x25\x25\x3f\xdc\x8a\x9e\x05\x31\x77\x9a\xc5\xbb\xdd\xf2\xcc\xfb\x94\xcb\x2c\x3a\xbb\x1d\x97\xbd\xe3\xd5\xcd\x40\x01\xa1\x50\x7a\x06\xa5\x12\x89\xba\x55\x09\xd8\x8d\x6e\x62\x95\xcb\x7c\x7e\xb3\x76\x35\x1a\x62\x9b\x85\x70\x9d\x51\x76\xc3\x8d\xbc\xa5\x63\xf0\x3e\x4e\x23\x3a\x47\xe9\x35\x9a\xe6\x57\x79\x76\x1b\x83\xdd\x56\xef\x13\x4e\x3e\xf4\xaa\x02\x27\x34\xc2\x60\x67\xb7\x83\x6f\xa6\x59\xc9\xde\x8e\x4b\xa3\x88\x03\x25\xeb\x51\x4c\x76\xa9\x9f\x14\xaf\xbc\x03\xd1\x96\x43\x29\x77\x89\x9a\xed\x3a\x31\x1b\xf7\x45\xf8\xd3\xd7\x33\xe0\x15\xf9\x3b\xc3\x27\xb3\x94\xb6\x7e\x0a\x87\xe2\x5d\x83\x51\x56\x0f\x8b\x8b\xc9\xbc\x8c\x6f\x95\x7e\x0f\x8c\xb8\x0e\xb2\xd4\x3f\xc8\x52\x75\xbd\x17\xca\x9c\x12\x81\x68\xb0\x11\x56\x68\xcf\x4f\x38\x51\x7c\xf8\xa0\x91\xe0\xc4\x14\x7c\x3c\x50\x69\x44\x77\xca\xae\xbd\x53\xe8\x8d\x27\x27\xf4\x86\xfd\x9e\x85\x8b\x7f\x09\x7f\xfa\x56\xcd\xb3\x3c\x02\x57\x31\x45\xa1\xe1\x2d\x91\x64\x33\x99\x18\xa4\xc0\xcf\xd6\x1f\x01\x03\xe6\x37\x71\x12\x5d\x48\xcd\xcb\x62\xe5\x5e\x27\x91\xe4\xa5\x5c\x81\xfb\x3d\x2e\xca\x1d\xb8\xe8\xca\x4c\xfc\x63\x89\x0f\xe1\x4d\x98\x8d\xf1\xda\x42\x15\x1b\xfd\xda\x44\x33\x1b\x54\x08\xc4\xee\x2e\x3d\x64\xdf\x7b\x11\x17\x25\x7e\xcb\xfc\x26\x44\x67\x95\x67\x9a\xf5\xee\xc4\x51\xd1\x79\xc6\x7f\x11\xa2\x93\xa5\xaa\xf3\x4c\xd4\x28\xa7\xef\x0d\x2a\xef\xb2\x07\x07\xd9\x49\x81\x70\xd0\xf7\x27\x28\x44\x67\x91\x67\xb3\xa6\x19\xf8\xef\x99\xbf\x7e\xf4\xd1\xe8\x96\x55\xf7\x7f\x7f\x57\x80\x04\x07\xe1\x25\x09\x16\x77\x89\xd3\x28\x9e\xa3\x00\x42\xac\xd2\x04\xfe\x22\x97\x23\xfd\xce\xb1\x0a\x3a\x83\x46\x29\x45\x25\x15\x5c\x04\x25\xe4\xc2\xa1\x01\x06\x5f\x26\x03\x8c\xb3\x31\x3b\x30\x8e\x41\x9e\xff\xad\x92\x50\xdf\xa8\x54\x45\x59\x08\x79\x2d\xe3\xb4\x28\xf1\x6a\x45\x30\x2f\xbf\xbb\x7c\x0d\x2c\xb1\x73\x72\x72\xd2\x11\x59\x2e\x3a\x8f\xf4\x5f\x90\xa5\xc9\xf9\xbc\xd2\x6c\x68\xe3\xf1\x66\xda\xc9\xd9\xf9\xc5\xe4\xbb\x17\xaf\xdf\xfd\x79\xf2\xe2\xbb\x73\x9b\xa7\xe0\x2a\x0c\x75\x3b\x34\x82\xac\x0c\x36\x78\x20\x05\x64\xdd\xc6\x51\x25\x93\xc6\x95\xf8\x77\x2b\xa8\xe3\xf0\x75\x4a\x1e\x50\x0d\x64\x01\xf9\x3f\x2e\x5b\x31\x55\x2e\x89\x08\xc3\x81\xb0\x3e\x51\x14\xe7\x6a\x5e\x26\xeb\xcd\x6b\xc4\xe3\x17\x56\x48\xea\x9b\x4d\xf9\xb3\x46\x26\x67\x64\x2c\x39\xc0\x1d\x56\x3e\x18\x5d\xe9\xf6\x9f\x6e\x10\xd1\x88\x19\x04\xcf\x3c\xbc\xba\xa1\x99\x39\xf6\xe6\xd4\x07\x21\x19\xe8\x67\xb5\xf6\x70\x8d\x26\x7f\x87\xb4\x88\x51\x52\x86\xd4\x52\xbe\x87\x28\x4d\x88\xfa\xbc\x55\xf9\x2c\x2b\x1e\xd8\x77\xc4\x49\xfb\xf6\x3b\xb3\xf9\xd6\x34\x13\x78\x56\x30\xdf\x8f\x27\xa9\x21\x5d\xda\x24\x3d\x8c\x14\x8d\x0b\x7e\x88\x48\xc6\xda\x50\x84\x84\x02\x54\x4d\x89\x86\xc6\x19\x7e\x14\x06\xbb\x5e\x2e\x95\xbd\x2e\x6d\xb9\x12\x8c\xa9\xa7\x8c\xb6\xb9\x8a\x6f\x51\xe1\x48\xd5\x9d\x09\x84\x0d\x4d\xf3\x6e\xae\xee\x2a\x07\x5f\x8e\xd3\xa5\x8c\x69\xa1\x7e\x97\xca\xc2\xf9\xd5\x8b\x4f\xdc\x1f\x19\x45\xe6\xa6\xf0\x62\xb7\xe9\x19\xa7\x5f\x4b\x5a\x83\x55\x55\xdc\xb8\x21\x75\xbe\x97\xe6\x76\x9b\x52\x87\x33\x9b\xa9\xd1\xba\x0b\x0c\xc1\x13\x8d\x92\xdb\x38\xab\x0a\xf0\x89\x20\x38\x9e\xc0\xf5\x69\xcb\xcc\xd5\x32\xbb\x55\x5b\xac\xd4\x58\x37\x83\x15\x9b\x58\x29\xbe\x68\xbc\xd8\x63\xf1\xa5\xcb\xfa\x0d\xde\x2a\x56\x5a\x0b\xe9\xc6\x7d\x31\x6a\x28\x89\x04\x39\x80\xd6\xa0\x68\xf5\x9b\x80\xd5\x6d\xbf\xc6\xc0\xb9\xc1\xd2\x93\x1b\x98\xc8\x49\x13\x1b\xf1\xdc\xb7\xbb\xff\xd5\xa5\xd4\x7b\x4a\x5a\xff\xdd\xee\x40\xdf\x19\xc6\x01\x50\x63\x5f\xbd\x30\x65\xa6\x36\xa2\x29\xf7\xa6\x81\x0b\x9e\x88\x8e\x49\x8d\xf4\xa2\x96\xbe\xb7\x35\xe3\x5c\xa2\xe8\xf4\xeb\x6f\xfe\x62\x0e\x91\x7f\x1b\x16\x19\x5e\xb2\x55\xa1\xb9\xe1\x5c\xa6\x0c\xd2\x32\x8b\xe2\xc5\x9a\x5c\x59\xb9\x5c\xeb\x4b\x8e\xd4\x01\x7d\x79\x66\x55\x89\x2c\xc3\xf8\xbb\x3c\xc8\x83\x60\x99\xcc\xac\x04\x7f\x35\xc9\x30\xeb\x6e\x03\x8a\x42\x1b\xc5\x06\x54\x85\x91\xfc\xb5\x5d\xac\x91\xd4\x65\x99\xad\x6a\xbc\x8f\x04\x35\x12\x1a\x72\xa6\xfe\x69\xa9\xba\xc6\x19\xa7\x68\x8d\xd2\xba\x63\x5d\x95\x28\xee\xb4\x1c\x58\x95\x90\x22\xdb\xf4\x0d\xad\xea\xa4\xa8\x41\x16\x99\x55\xcf\xe0\xda\x8d\xa0\x0c\xa1\x26\x52\xd0\x69\x63\x15\x09\x39\xd3\xb0\xe2\x3c\x57\x89\xba\xd5\x3b\xcb\x67\xb3\x85\x6c\x11\x29\x23\xa7\xb7\x10\xfe\x23\x5f\xce\xef\x5d\x35\x26\x87\x74\x5e\x65\xa5\x30\x90\xa2\xce\xb6\x3a\x02\xa1\x30\xe0\x2d\xdd\x46\xcd\xa4\x7e\xfc\xa1\xfc\xc3\x16\xfb\x61\x12\xb7\x1d\x37\x74\xab\x8e\xda\x36\x1b\x05\x1d\x74\x03\x58\x14\xc5\x94\x6f\x84\xd2\xa1\x4d\x15\x1b\x08\xf1\x17\xbb\x3d\x24\x11\x51\x9e\xb6\x1e\x24\x4b\x01\x81\x9b\x32\x89\xff\x4e\x49\xec\xb1\x96\x72\x24\x46\xcd\xc6\x65\xa7\x08\xc2\x66\x29\xcc\x0c\x6f\x25\xeb\xb2\x98\x3b\x03\xca\xb6\xdb\xfb\xc0\xe6\x6e\xb7\xb7\x13\x8a\xcd\xdd\x62\x7f\xcb\xbc\x6a\xd8\x5e\x76\x43\x6e\xbb\xb7\xdf\x2a\xb2\xe6\xcd\x82\xdd\xa5\xd4\xd8\x82\x1f\x1e\xb6\xd7\x7f\xb1\xd2\xa9\x88\xa8\xd6\x5d\xa6\x77\xb5\x79\x0f\xa0\xee\x49\x0e\x7f\x31\x81\x83\x58\xcb\x03\x60\x65\x0b\x4e\x17\xe4\xa7\x47\x4b\x43\xc3\xc1\x05\x59\x65\x99\xa5\x71\x49\xc9\xbb\xdc\x12\xc2\x67\x4f\xf4\xd9\xd7\xec\xd5\x09\xd3\x60\x0c\xa8\xd3\xce\x32\xc3\xfc\xfa\x14\x96\x11\x04\xf8\x5a\x77\x41\xae\xe6\x55\x5e\xc4\xb7\x0a\x6e\x7a\x19\x15\xde\x07\x35\x30\xa7\x76\xfa\xd3\x2e\x0c\x15\xde\xa9\x24\x69\x03\xaf\x69\xb8\x58\xa7\xf3\x9b\x3c\x4b\xb3\xaa\xe8\x13\x5f\xb3\xd3\xd5\x9f\xac\xa3\xaa\x6f\xeb\x30\x7c\xbe\xac\x8a\xf2\x73\x4c\x70\x37\xa9\xcd\x0f\x8b\x32\xdd\x1e\x9a\x88\xac\x94\x6a\x23\x20\x16\x0d\xd5\xed\x5c\xca\xb9\x74\x71\x94\x37\xd2\xc5\x64\x46\xdb\x9e\x19\x0d\xe1\xd2\x5a\x4c\xbc\x5c\xbc\x20\x85\x17\x0c\x17\x2a\x8d\xe2\xf4\x7a\xaa\xf1\x9b\xab\x14\xbc\xba\xb5\xc0\x45\xf8\xd5\x86\xf9\x79\x32\xc2\xce\x4e\x0d\xc2\x89\x18\x8a\xcf\x3e\xf3\xd6\x6e\xe5\x02\xfe\xb0\x5b\xcb\xab\x03\x4f\xec\x09\xe5\x9e\x0e\xf4\xbf\xba\x35\x53\x47\x6f\x8b\x50\x78\x6e\x3a\x79\x22\x54\xe2\x45\x75\xd5\x02\xe2\xc1\xa6\xd3\xf3\xfd\x3e\x90\x52\xfa\x0d\x33\xae\x6a\xac\xa2\x4f\x87\x01\xf7\xf8\x88\xe1\x16\xd7\xaa\x7c\x5e\xaa\x65\xd1\xd5\xf3\x67\xf5\x14\x63\xfd\x30\xc8\x38\x47\x30\x2f\x30\x0a\xf6\x84\x83\x36\xfe\x74\x17\xf4\x56\xf3\xf6\x04\xf0\x6c\x86\x17\x68\x88\xf0\x2b\xf7\x89\x08\x3f\xc9\xfd\xbd\x5a\x1b\xef\x04\x9f\x44\x2f\x1c\xad\x54\x74\xb9\x4e\xe7\xe2\x44\x74\xbd\x68\x17\x6e\xfa\xf8\xec\xb3\xab\x96\xb0\x49\x21\x42\x81\xe8\x16\x75\xe2\x47\x27\xed\xaf\x88\x26\x19\x8a\x93\x00\xc4\x79\xbf\xf5\x04\xa1\x5e\x8f\xc7\x07\x36\x58\xc8\x1a\xde\x81\x32\xac\x5c\x26\x35\x34\x6d\x16\x1d\x44\x9f\x07\x84\xfe\xe4\x89\x9f\xb2\x0e\x34\xb0\x4e\xe7\x53\x83\x19\x32\x06\x04\xc7\xa7\xe7\x67\xb3\xdb\xbf\x5c\xb1\xb8\xc8\x4f\x3a\x52\x5e\xad\x48\x6f\x84\x91\x34\x03\xe2\x0f\x32\x40\xc1\x64\x24\x64\x8b\x81\x25\x2e\xac\xee\x55\x08\x29\x3c\xfb\x86\x51\x65\xb5\x9a\xaa\x57\x09\x09\x79\x68\x45\x21\x41\xb0\x11\x68\x63\xbd\xeb\xd7\xad\xea\xb0\xa9\xe5\x62\x3c\xf7\x48\xae\x60\xe3\xb9\xe2\x05\x3e\xe8\xbc\x1b\x25\xaa\xae\x24\x53\x6d\x92\xbb\x3c\x2e\x4b\x88\xf3\xa0\x1b\xd3\x1c\xdc\x86\xc9\x91\xe2\xf3\x61\x96\x65\x89\x92\xe9\x07\xe4\x4c\x1f\x20\xe0\xe8\x43\x5a\x25\xc9\x47\x3a\x70\xaf\x6b\xca\x07\xd5\xb6\x32\xa4\xe1\x2f\x68\x62\x2a\x6f\xf3\x5a\xb8\xb9\xa2\xec\x21\xf4\xfa\x42\xec\x08\x94\x25\xb9\x95\x49\xec\x2e\x85\x9a\x26\xf2\xe3\x6d\x19\xab\xf2\x9d\x53\xb7\x5d\xc8\xdd\x86\xeb\xa9\xc1\xa2\xd2\x6a\xe9\xb0\x00\x1f\xb6\x78\xb4\x58\x3a\x2c\x84\x9f\x64\xf1\xe0\xda\x82\xa6\x75\x37\xa2\x1e\x1e\x8d\xf4\x4d\x13\xc6\x40\x64\xa4\x6b\xe0\x05\xe6\x9e\xca\x8d\xdd\xaf\x85\xcd\x58\xd3\x00\x0e\xf4\xc3\xda\x11\x6f\x54\x06\xa7\xcb\x3e\xd8\x54\x06\xf6\xa1\x2f\x09\xc6\x47\xb5\xc8\xbb\xc9\x50\xd0\xf0\x2d\x77\x13\x7a\x6b\xe5\xdf\xf6\xa4\x5f\x6f\x54\x1b\x2b\xb1\x05\x50\x57\x61\xd4\xb3\xad\x09\x65\x49\x4c\xf3\xaa\xd6\x8c\x40\xeb\x4e\x9a\xa4\x46\x49\x5f\x88\xbd\x1d\x13\xb1\x84\xa9\x29\xa6\xae\x54\x79\x93\x2b\x1b\xcd\xe4\x2c\x68\xf0\x5a\x10\x04\xa6\x89\xef\x0d\x44\x5d\x99\x8d\xa6\x25\xbd\x65\x34\x85\x0c\xcc\x02\xda\xd6\x26\xd3\x4e\x6c\x61\x72\x18\x2c\x2d\x4c\x10\x63\x61\x75\x66\x48\x63\xb9\x00\x63\x2d\xf0\xbe\x60\xa1\xbe\x89\xdf\xbe\x19\xbe\xb5\x7c\x1a\xfe\x3d\x0a\xfe\x3d\x7e\xdb\x92\x71\x6d\x2e\x84\x14\xb3\x2c\x55\x64\x93\x7e\x42\x21\x9c\xdb\x0c\xc2\x9f\xc0\x1a\x1f\xc5\x0b\xf8\x77\x89\xa6\x87\x1f\xaa\xa2\x04\x6e\x0b\xb1\xcd\x6c\x4f\x59\x98\x1c\xe9\x94\x54\x53\x49\x41\xc5\x30\x80\x8d\x35\xf4\x6d\x38\x37\x64\xfe\xd5\xf5\x01\x73\x59\x2c\x95\x4c\xfd\x42\x6a\xc4\xe8\xb8\xb3\x9d\x79\x17\x6a\x4b\x43\x96\x74\xad\x4a\x2c\xe0\x06\x2c\x58\x5a\x5b\xaf\x31\x69\x74\x72\x05\x8a\x4f\x4e\x05\x2c\xb3\x1c\xae\x17\xb2\x95\xc8\x54\xd8\x98\xd8\xba\x06\x13\x36\x88\x08\x6e\x45\x8d\xf4\x57\xd8\x09\xc2\xb6\x7e\xe0\x19\x58\x73\x12\x0e\xec\x8a\x35\x72\x59\xcd\x2b\x6a\x02\x11\xd7\x4d\xe1\x1c\x55\xca\x7d\x87\xee\xd7\x39\x38\xe3\x1b\xe8\x1e\xa3\x06\x1b\x6f\x56\xeb\xa0\x2e\x33\xca\x13\x0b\x48\xc7\x82\xa3\xbd\x8c\xe8\xda\x80\x9a\x22\x45\x86\x00\xe2\x54\xe3\x7b\x57\x46\xd1\x2e\x1a\x54\x5c\xd9\x3c\xdc\x2e\xac\x55\xb7\xf6\x6e\x86\x10\x1d\x10\xef\xb8\xc2\xb2\x93\x26\xaf\xb9\x6e\x64\x66\xfe\xcf\xb5\x98\x04\x85\xbc\x8c\xa0\x11\x96\xb1\x74\x1e\x76\x22\x42\x93\xb9\x51\x28\x7f\x37\x94\x58\x10\x68\x0b\x38\xbc\x1f\x1d\x7e\x25\x9c\x8f\x4d\xc1\x24\x74\x39\x9a\x0d\x8d\x2c\x29\x68\x86\x0f\x1f\x6e\xd8\xad\x4f\xbc\x13\x99\xfe\x17\xdc\x88\x86\x3e\xfa\x1e\xd2\xec\x75\xb8\xbb\xdb\x24\x41\x42\xd0\x41\x96\x44\x4d\xb4\xc0\x68\x80\xfb\xc0\x7c\x4e\xe6\xbe\xfa\xe6\x6d\x6b\x52\x96\xb1\xb6\xa7\x56\xe4\xae\x79\xfb\xfb\x76\xfe\x64\x78\x6d\x72\x7f\xbf\x31\x63\xde\x42\x5c\xbd\x5b\xe5\x17\x4d\x9e\x5e\x6f\x74\x83\xcf\xd7\x3a\xa8\x34\x25\x12\xd3\xd9\xc6\x11\x75\x61\xa9\x13\xdd\xf7\x62\xc2\x1c\x5c\x96\x2e\x31\x40\x1c\x48\x40\xdd\xaa\x7c\x1d\x5e\x4c\x28\x2e\xc9\xa2\x80\xca\x59\xc6\xd2\xc1\x4c\x7b\x59\x1a\x08\x8d\xa6\x6f\xcc\x52\xae\xc4\x44\x90\x9b\x9f\xbb\x9f\x31\x14\x71\xce\x4a\xd9\xf9\x5f\xb0\x9f\x0d\xbe\x24\xd3\x07\xdc\xa7\x8d\x3e\x28\xef\x9a\x44\x4c\xf4\xf5\xac\x98\xd9\x8f\xf0\xf3\xd9\x67\x82\x3c\x08\xf4\xe0\xd1\x89\xe8\x98\x57\x3b\x6d\xd6\xc0\xe7\x29\xf0\x72\xbc\xe9\x9f\xd1\xab\x45\x87\x5b\x05\xf0\x19\x77\xe8\x84\x01\x15\xe8\xff\xa2\x71\x3c\x3f\x41\x4f\xf4\xaa\x1e\x89\x6a\xef\x77\xa3\x43\xbb\x05\x99\xc4\x06\x4f\xbb\xf6\x0c\x1e\x56\xd3\xab\xad\xc5\xa4\x6d\xb8\xdd\x62\xe5\xe6\xbe\xf0\xf2\xe2\x1a\x74\x61\x2e\xd8\x2d\xe5\x0a\x9f\xb6\x09\x05\x71\xb1\x92\xc6\x5b\x85\x24\x2c\x9c\xa3\xd9\x58\xe9\xc2\xd9\x14\x5e\x30\x1a\x45\x7c\x51\x3d\x1f\xdf\xc4\x0c\x85\xce\xb8\xe5\xca\x98\xbd\x0a\xa8\xf9\x40\xf5\x1e\xd0\x9f\x00\x61\xd5\xab\x55\x12\xcf\xd1\x12\x0a\x39\xb3\x7a\x94\xd6\xbe\x51\xd0\xac\x0a\x95\x37\xcf\x03\xee\x4a\xde\x7c\x84\x7c\x1c\x56\x32\x88\x1a\xe5\x0a\x70\x79\x80\x10\x03\x91\xfb\x00\x4a\x8a\x44\x73\x73\x64\xd2\x7d\x3c\x92\x18\x15\x8f\xfa\x52\x71\x17\x97\xf3\x1b\x23\x0b\x30\x61\x88\x2c\x3c\x5b\x9e\x0d\x8c\xff\x9b\x24\x49\x83\x11\xbc\x46\x57\x75\xea\xf1\x24\x46\x84\x45\x5c\xb2\xeb\xa2\x48\x6b\xfb\xfd\x2a\x33\x37\x6d\xcb\x6e\x53\x4e\xcb\xcf\xa0\xdf\x93\x0e\x8c\xc8\xff\x34\xa4\xd0\x42\x5a\x5a\x54\x7d\x92\xa6\xf6\x88\x54\xb5\x16\xae\xb1\xcd\x49\x83\xd2\x49\xbe\x7d\x89\x54\xa8\x6b\xe5\x32\x67\x9b\x44\xfd\x66\x1e\xd3\x92\x51\x13\x8e\x7b\x13\xbf\x25\xcd\xce\x33\x88\x6d\xf8\x1c\xcd\xca\x79\xa9\x9b\x34\x8c\x70\x90\xfe\x0c\xff\x40\x9f\x74\x65\x13\x53\xd7\x40\x44\xb6\x2f\x9a\x15\x54\x1a\x64\x47\x23\xcc\x20\x3d\xe1\x28\x7d\xc3\xfa\x59\x3d\x36\xb8\xf2\x26\x4e\x83\x1a\x02\xd0\x59\x4b\x6a\xd1\x88\x2c\x40\x58\xb4\x85\x62\x25\x64\x55\x66\x3b\x46\x82\x43\x41\x29\x14\xa4\x34\x43\xd0\x9f\x45\x37\x58\x4e\x73\x30\x22\x1c\x16\x61\xce\x0b\x05\x2c\x20\x08\x91\xd4\x92\x59\x05\x75\xcc\xb6\x10\xe4\xa1\xae\x8e\x5d\x1f\x30\x40\x44\x90\x91\xe5\xac\x72\xa3\x19\x4d\x7b\xcc\x29\xa0\xe0\x6b\x0f\x21\xa0\xcc\x60\x27\x34\xd2\x6f\x8d\x90\xd5\x0e\x26\x8e\x1c\x90\x18\xf0\x95\xdd\xaa\x3c\x8f\x23\x9c\x90\xc5\x99\x01\xb2\xc5\xa9\xc4\xf5\xa0\x2e\xc8\xeb\xdc\x58\x61\xce\x4c\x7f\x83\x48\xf7\xc0\x7f\x38\x73\x1e\xaa\x11\x15\x3c\x38\xde\x8a\x7b\x5f\xb8\x01\x5f\xf8\x66\x8e\xd8\x19\x64\xe2\xc8\xd4\x1e\x8c\x58\x34\xbd\x16\x4d\x4d\xb8\x87\x1e\xfc\x88\x15\xc6\x69\xe0\x0d\x67\x15\xde\x45\x84\x74\x64\x0c\x76\xd7\x5d\x2e\x48\xd4\x6b\xcc\xf8\xdc\xdd\x15\xdf\xc4\xf3\xf7\xb6\xca\x59\xdf\x10\xe8\xfe\x4e\x14\x5f\xc7\xa5\xb8\x51\xf7\xbc\x4e\x37\x97\xfe\x29\x7a\x92\xe2\x11\xa8\x10\xfc\xa3\x38\x12\x1f\x3e\x88\xe6\x55\xb0\x04\xfc\xc8\x35\x0e\x33\xc5\xc7\xba\xa3\xbe\x18\xde\x2f\x16\x8b\x45\x6f\x50\x66\xd4\xb1\x60\x74\xe8\x6c\xd6\xec\xa5\xbf\xaf\x64\xd4\x8d\xa3\xbe\xd8\x67\x3f\x13\x8a\xf5\x1e\x33\x03\xb5\x45\x33\x10\xab\xc6\x08\x22\xa4\xa5\x42\x04\xa0\xd1\x85\x09\x6f\x16\xd9\x49\xcc\x8f\xa9\xde\x04\x7f\xd7\x46\xeb\x3a\x37\x4f\x7d\x4c\xae\x0a\x55\x4e\x92\xc4\x8f\xf3\x6d\x94\xf7\xdf\xc4\x91\xd5\x10\xe8\x75\x43\x5a\x11\x85\x44\x99\x69\xa0\x37\x80\xd1\xa3\x9e\x61\x11\x54\x64\x0e\x00\x85\x6a\x04\xa8\xc0\xb2\x6e\x9a\xb0\x7c\xc2\xf1\x1c\x1c\x5c\x34\x8c\xb6\x02\x8c\x66\x55\x50\x78\xb7\x80\x80\x7d\x0e\x0f\xd4\xf6\x08\x7d\x4a\x5b\xf2\x31\x7e\x95\x33\x9e\x16\x24\x89\xe3\x2f\xac\xce\x28\xea\xf5\xcd\x3c\x29\x8e\x18\x87\x7c\x7e\xb6\xbd\xbb\x53\x83\xdc\xc0\x73\x3c\x6e\xa1\x97\xcd\xf9\x05\xbc\xe7\x0f\x86\xfd\x83\x71\x75\xda\xd8\x8e\xe1\x88\x93\xf0\xf0\xb1\x58\x31\xff\x18\xea\x71\x41\x8c\x98\xbd\xe8\x1b\xc9\xc7\x1e\x94\x48\x41\x81\x9f\xcd\xd4\xda\xde\x4f\xa4\xed\x3a\x76\x77\x10\x93\xf2\xe8\x06\xb8\x62\x99\xad\x6c\xd3\xb3\xdc\xde\x36\xa6\x1c\x1a\x0a\x4b\xa5\x75\xdb\xe4\xae\xcc\xb1\xcd\x6c\x03\x68\x81\xcf\x24\x27\xee\x2a\x53\xa1\xee\xe7\x6a\x85\xee\xfb\x85\x48\xb3\x60\x24\x58\xb4\x30\xf3\xe0\x47\xdd\xbc\x50\x52\x38\x4e\xb7\xa7\x44\x3b\xe8\x73\xbf\xac\x81\x27\x9c\xf8\x73\xac\x95\x38\xf0\x6d\x35\x84\x2a\x2c\x70\xb0\x25\xb1\x1b\x8a\x6d\xa3\xf4\xa6\xea\x05\xa8\x5e\x5a\x5c\x34\x38\x70\x7b\x0f\x49\xbd\x0e\x77\xfe\xe5\xe6\x49\xbe\x06\x9e\xc7\xb1\x43\xa2\x74\xf2\x76\x37\x8e\xb0\x1c\x22\x8d\xea\x79\xfa\xf0\xc3\x25\x06\x1e\x54\x8a\xaf\x1e\x87\xf7\xf0\xd5\x63\x7e\x43\xbb\xfb\xd8\x32\xe4\xb0\x52\xc1\xc7\x3a\xbb\xd6\x53\x6d\x3c\x59\x53\x2f\xb3\xd0\x28\x7b\x73\x65\x0b\x7f\x96\x77\x19\xcc\xa6\xa8\xd9\xc0\xa8\x30\x08\x1c\x35\x56\x73\x8b\x0f\x43\x39\xbb\x66\x4f\xc4\xc3\xec\x17\x93\xc6\xc2\x6d\xd8\xe2\x0d\x92\xa9\x91\x43\xc2\x3f\xf4\x25\x70\xf5\x78\x9e\x2d\x97\x59\x7a\xf5\x58\x1f\xa1\x95\xca\xcb\x58\x59\x2f\x0a\x3d\x59\x9b\x92\x88\x52\xf0\xbc\x8f\x1d\x94\x13\xff\x5a\xe6\x95\xfa\xab\x9f\x08\xde\x47\x56\x11\x54\xe8\x96\xe2\x44\xbc\xe9\xe0\xbb\xf7\x9d\xbe\xa0\xbf\xae\x3b\x6f\xcd\x88\x19\x1b\x41\x8f\xcd\x4f\x1a\x87\xd6\xb2\x57\x74\x65\x5f\xcc\x7a\xe2\xe4\x4b\x7b\x80\xc4\x3f\x50\xd4\x7f\x26\xfe\x21\xec\x37\x9e\x41\x0c\x97\xf8\xd8\xa7\xbb\x46\xff\xfa\xb1\x2f\x70\xc9\x6c\xe4\xda\x8e\x04\xf1\x83\x25\x8e\x6b\x90\x64\x80\x8e\x18\x86\x84\x2c\x8a\xca\x14\xee\xfc\xab\xfc\xab\x3e\xbf\x3c\x7b\xc3\xd7\x59\x3c\x4f\xd6\x1b\x64\x2c\x6f\x3f\x0a\x89\xbd\xbb\xb2\xa2\x04\x63\x30\xbd\x56\x27\x88\xb6\xf7\x67\x62\x92\x52\xfd\xca\xb6\x17\x6b\xed\xa0\x53\x1e\xd7\xea\x2f\x6f\x17\xd1\xc2\xe9\x60\x23\x23\xf2\x77\x84\x33\x21\xdc\x1c\xa7\x76\xdf\xba\x46\xa7\x66\x8f\x3e\xf6\xcd\x59\x73\xfb\x62\x82\x6e\x68\x73\xf0\xc1\xc7\x0d\xaa\xab\x6c\xd4\x55\x35\xc7\x98\xd9\xfb\x56\xbe\x89\xdf\xd6\xc5\xdd\xfc\x76\x80\xdf\x79\xa3\x7f\x7f\xcb\x83\xfd\xea\x45\xcd\xf2\xdb\x01\x4c\xbb\x71\x2c\xe3\x0c\x4d\x53\x9c\xb5\x4e\xb1\x3b\x7b\x13\xbf\xd5\x4c\xcf\x80\xef\x69\x39\x9d\x3f\xc5\x19\x3a\x8b\x9f\x96\xa7\xe2\x94\x85\xa8\xe4\xb7\x24\xf0\x44\x6f\x66\xe1\xd4\x5a\xfb\xfc\xd9\x80\x53\x8a\x81\x8b\xff\xae\x58\x8b\xd4\x16\x49\xa0\x60\x6e\x0e\x9b\x4e\x44\xc4\x0e\xd0\xe0\x7d\x27\x3a\xa2\xc4\x74\x55\xef\xb5\x84\x60\xca\x18\x1b\x81\xad\xc5\x32\x2e\xa0\x0f\xb8\x8b\xe0\x4b\x23\x0c\xc1\x33\x47\xa9\x16\x8a\x07\x10\xc1\xfa\x66\x62\x35\x20\x84\x02\x23\x3a\x59\x2c\x20\x9c\x4d\xa8\x24\x08\x6d\x95\x5c\x23\x4d\xdf\x13\x4d\x7d\x5c\x66\x8a\x84\xa8\x1f\x27\x42\x14\x0e\x9b\x2d\x51\x18\x3f\x2a\x00\x50\x83\xe5\x32\x82\xad\xc9\xb8\xa5\x88\xe0\x85\x20\x6d\x72\xe7\xd4\x02\x02\x37\x87\x04\xd6\x03\x02\xc9\x54\xfb\x4f\x8a\x07\xa4\xfa\x05\x35\x36\x47\xbe\x10\x25\x3e\x47\xaf\xfe\xe7\x98\xdd\x2a\x79\x04\xfa\x20\x30\xc7\x3d\x6f\x17\xd9\xd9\xa7\xa8\x04\x92\x25\xcb\xd2\x74\x5e\x70\x21\xcc\x1a\xb9\x44\x7b\xe6\x73\x45\x89\x44\x0e\xe0\x09\x1a\x4c\x9a\xde\x57\x69\xc4\x52\x79\xa3\xb8\x98\xcb\x9c\xa4\x56\x98\x62\x96\x44\x38\xbd\x5a\xd4\x63\xa3\x00\x55\x6b\x51\xba\x0d\xa7\xee\x3a\x3c\xf4\xe9\x83\x9b\xec\x83\x6e\x74\x6b\xdb\x52\xd0\xe8\xdd\xb8\x37\xf1\x5b\xbf\x68\x04\x4e\xe3\x39\x14\x69\x3b\xa1\x4f\xd6\x14\x22\xaa\xb6\xc0\xc7\xb2\x4c\x1a\x61\x5e\x23\xfd\x88\x8f\x23\x55\x89\xf9\x4f\x36\xeb\x41\x41\xd8\xe5\x4f\x31\x30\xd8\x2f\x72\x20\x7e\x67\xe6\xa0\xb4\x16\xe4\xb1\x83\x32\x40\x19\xf7\x0f\x5b\x89\x18\x28\xc3\xff\xf1\x01\x0b\x14\xdc\xc6\xd2\x21\xc4\xa7\xdb\x33\xf0\xad\xf6\x60\xc7\xc0\x7a\x62\x5d\x36\x5d\x9f\x2d\x34\x95\xff\x6c\x22\x36\xda\xe4\x26\x42\x7b\x58\xc5\xc5\x97\xf5\x45\x18\xc6\x33\x3d\x0a\xd9\x50\x33\x07\xda\x10\x3a\x19\x2a\xce\x05\x14\xee\xf3\x7d\xdc\x31\x94\x74\x40\xfd\x04\xdc\x50\x4d\x17\x60\xc4\x7d\x67\xb5\x38\xc9\xb8\xe6\x0f\x41\xed\x11\xbb\xb0\x98\x8e\x13\x6d\x4e\xe3\x9a\x8f\xc5\x9f\x1f\x18\x30\xb6\xb7\xa4\x14\x7e\xfe\xd8\xbf\xd0\x97\xd2\x90\x5e\xf3\xbc\x54\xcb\xae\x1f\xd9\xcd\xdf\x70\xe1\x76\x7e\x90\xef\xa3\xcd\x79\x6e\x4d\xaf\xb4\xe6\xd7\x7e\xaa\x17\x8d\x88\xc6\xab\xfc\x50\x08\x93\xb2\x5a\xde\xa8\x38\x6f\x20\x9f\x6d\xb7\xaa\xd9\x25\x88\xfc\x0d\x3d\x99\xbc\x0c\xb1\x39\x7a\x1b\x0d\x01\x9c\xc5\x7f\x82\x42\xcf\x4f\x76\xa0\xd5\xb3\x8a\x83\x5c\x7d\xf6\x4d\x6b\xad\x7c\xe2\x61\xb7\xa6\x8d\xe2\x7f\x28\xd8\xfb\x01\x3a\xd8\x3a\x64\xbc\x95\x34\x84\xf5\x61\x82\x25\x98\x97\xe8\x09\x0d\xdc\xdb\xe7\x39\xf8\xf9\x0d\x57\x0d\xd9\x95\x2c\xcd\xa1\x56\xc0\xf6\x81\xd3\x84\x29\x0a\x66\x90\x99\xfd\x22\xcb\xcf\xe5\xfc\xa6\x5b\x27\xf5\x8d\x71\xe4\xa6\x93\x99\xd6\xa9\x35\x4f\xbb\xcb\x4c\x99\x3c\x27\xfd\xe8\x9b\x31\xc6\x60\xa0\x34\x2b\x77\xd4\xdf\x2a\x99\x78\x96\xc5\x59\x56\xde\xf0\xea\x7a\xb6\x4a\x5d\x31\x97\x89\xcc\x21\xde\x03\x2d\xd9\xd9\x72\xa5\x07\x00\x08\xdf\x36\x02\xb0\x4c\x57\x21\x48\xd8\x13\xdd\x34\x63\x16\x99\x5e\x1f\x2b\xdc\xdc\xc5\x85\x6d\xf1\xa8\xa7\x1d\xf0\x6e\x53\x87\x4f\xab\x0f\x09\xb4\x0c\xc6\x1a\xed\x77\x2e\x07\x75\x7e\xa3\xe6\xef\xf5\x6a\xbd\x7b\x01\xb2\x76\x98\x3b\x5b\x7c\xcb\xda\xa2\x42\xdb\x57\xd3\x1b\x11\x60\xd0\x4a\x50\xce\xbf\x37\xab\xbf\x53\x18\x2e\x69\x50\x06\x65\x09\x30\xf6\x30\x33\x7d\xb8\x66\x2c\xc2\xb2\x7e\x35\x7c\xfe\x51\x48\x31\x71\xb6\x48\xfa\x50\xcd\x9a\x39\x6b\x1b\xb4\x4d\xf0\x58\xbc\x58\xb4\x98\x01\x76\x77\x8d\xa9\x58\x8f\x0c\xe2\x41\xfb\xc2\x74\x88\xd4\x1b\x6a\x7a\x68\x88\x02\x1b\xff\xae\xf2\x78\x19\x83\x66\x47\xc1\x4a\xa8\x3d\x93\x4d\x50\xf6\xe0\x2c\x9b\x7f\xce\xb4\x12\x6d\x0e\xc6\xa3\xee\xee\x7f\x75\xad\x91\xd0\x86\xed\x53\x14\x3f\x5e\x96\x61\x16\xb3\xec\xf5\xc2\xd6\x45\x2d\x2a\xb5\x84\x0f\xcf\xea\xa6\x3f\xbc\xd1\xeb\x09\xc8\x41\x90\x6a\x23\x81\xd9\xde\x56\x45\x35\x83\xb6\x34\x5a\x37\x6e\x48\x74\xf3\xfd\xe1\x56\x17\x8b\x32\x65\x3a\x90\x94\x2a\xdf\xa6\x9e\x88\x69\xe2\x85\x81\xb6\x58\x97\x12\x24\x93\x24\x0a\x72\x0b\x84\xf8\x1e\xb5\x52\x59\x9a\xc2\xa4\xfd\xc6\x90\x10\x32\x3c\x62\xd8\xa4\xc9\xed\xfd\xd4\x80\x10\xeb\xd3\x87\x83\x55\xef\xc9\xf4\xf9\x47\x2d\x44\xfc\xd9\xa6\x5b\x68\x89\xc2\x47\xb7\xf1\x8c\x7e\x7a\xac\xb6\x17\x93\x5f\xaf\xe7\x61\xbe\xfb\x2f\x12\x86\x9c\x82\xa3\x0f\x90\x91\x72\x78\xae\x38\x9b\x22\x2f\x00\x78\xe6\xa1\xe7\x46\x42\xcb\x22\xc6\x9a\xfc\x52\xea\x1f\x7f\x92\x20\x65\x7a\xc9\x42\x69\x20\xac\x75\x6a\x23\x07\x29\xcc\x1e\x19\x5a\xfd\xb0\x50\x45\x2f\xcd\x20\xcc\x81\xb7\x82\x59\x50\x1d\xc5\x2c\xf3\x8b\xb6\xd9\x3f\xf8\x9a\xbd\x0f\x9b\xa5\xb8\xed\x4f\x76\x53\x9a\x43\x9d\xe6\x1b\xa3\x2b\x81\xee\x77\xbe\x14\xac\xae\x19\x21\x6b\x6d\xab\x76\x3b\xea\xbe\xf2\xf2\x68\xb6\x0e\xec\xf5\x68\xda\xaf\xca\x6e\x83\x0f\xc3\x9c\x42\x1e\x96\xd8\x90\xac\x02\x39\x13\x4b\xb9\x82\xbc\xc2\x16\x99\xf7\xb2\x41\x4d\x0a\x49\xe1\x5f\xa5\x25\xe9\x55\xd6\x95\xa4\x22\xac\x84\xfe\x39\xcf\xea\xb2\x57\xa3\x1e\xb6\x55\xe6\x96\xdd\xaf\x20\x83\x8b\xad\x7d\x1b\x3b\x5e\x5d\x17\xfb\x97\x33\x22\xb2\x57\x6d\x88\x6e\x0b\x58\x95\x19\xcc\xf9\xd3\x55\x3d\x3c\xd6\x0a\xf1\x9f\xc2\xdf\x9a\x35\xb7\x80\x41\x78\x92\x6f\x81\x99\xb9\x0d\x4a\x24\x83\xdf\x9a\x84\xf5\x69\x3a\xe2\xd6\xba\x2b\x37\x78\x7e\xaf\x6c\x4e\xfa\x52\xa6\x40\xd8\xa2\x50\x69\x64\x43\xcf\xf0\x6e\xa5\xb8\x57\x93\x8f\x61\xc3\x41\xa0\x28\xdf\x9d\x62\x26\x4d\x93\x46\xaf\x6e\xa1\xc4\x33\xc4\x66\x2f\x62\xec\xda\xcd\x41\x99\x8e\xbe\x77\xaa\x73\xab\x6c\x33\x33\xba\x29\x08\x1e\x13\x2d\x68\x4f\x8a\x4c\xcb\x0f\x08\xb5\x50\x8a\xc5\xb8\xba\xc9\x88\x48\x25\x72\x0d\xf9\x2f\x58\x4d\x85\xa0\x79\xc8\xac\xd2\x32\x36\x7d\x6e\xd9\x84\xfb\xc4\x48\xd0\x3b\xc0\x7a\x91\x53\xbc\xb0\x84\x64\x1b\xb3\x5e\x6c\xc5\xcb\x22\x0d\x4c\xc1\x0c\x56\xb3\xc5\x56\x7d\x7b\x1d\x22\x13\xf0\xc8\x7a\xf9\x17\x19\xf5\xc0\x2b\x28\xa4\x5d\xce\xe7\x10\x84\x05\x9b\x12\xa9\x15\x6c\x8b\xd9\x38\x29\x58\x7d\x01\x0f\x30\x7c\x96\x59\x99\x36\x69\x55\xd4\xf3\xaa\x2f\x86\xf5\x9b\xe8\x0f\xaa\xf4\x2b\x05\x6d\x97\x5b\xdb\xcc\xf1\xae\xb7\x37\x0a\x5d\xff\xdb\x98\x84\x8c\x5f\xcb\x67\x3a\xcd\xe1\x2d\x49\x22\xd2\x2c\xdd\x31\x77\xb6\x97\x97\x56\x04\x45\xe0\x03\xa1\x1c\xc3\x28\x31\x48\x2a\x55\x45\xa9\xda\xca\x4e\xb8\x92\x13\x5b\xa0\x51\xdd\xaf\xb2\xbc\x9c\x14\x7f\x2a\xb2\xb4\xc5\x68\x83\x3e\xd3\x9a\xf3\x73\x3b\x13\x48\x5b\x6e\xbe\xe7\x00\x35\x29\xa3\xa6\x61\x95\x67\xe9\x09\x7c\x24\x7e\xe7\x87\x46\x2f\x01\xbd\xd5\x68\xba\xf5\xfd\x04\x34\x12\xbd\x04\xe6\x67\x33\x1f\x34\x97\xfc\x23\x8e\x9e\x41\x00\xcb\x0f\x45\x96\x3e\x0b\xe2\xb3\x52\x13\x9b\xe5\xe1\xb1\xdb\xfb\xd8\xab\x1b\xc6\x43\x57\xee\xd6\x64\x6a\x50\xd9\x2c\xfb\x36\x89\xbe\xf5\xb5\xb8\x4b\x31\xa8\xd2\x14\x5a\x81\xda\x9d\xb4\xcf\x97\x7a\x85\x86\x46\x67\x49\x36\xf3\xf3\x71\x0a\x5e\x08\xc8\x05\xe9\x82\x8b\x96\x63\xa7\x49\xc6\xa2\x78\xe3\x9f\x8f\xac\x63\x98\xec\x45\x9e\x2d\x43\xc2\xd6\xdb\xd8\x96\xa4\xc0\x7e\xdb\x9a\x7a\x43\x8b\xa4\x86\x11\x6c\x5e\x2b\x91\xea\x57\xb6\xa4\x52\xb4\x4f\xbe\x1d\xd8\xa0\xe1\xe0\xeb\x1a\x19\x4d\x8e\x23\x32\x8b\xa6\x2c\xf0\xce\xbc\xeb\x9c\x45\xec\x65\x46\x3b\xa2\x1d\xb2\x0b\xa7\x36\xf2\x5f\x95\x24\x7d\x2f\x72\xa9\xe9\xfd\x60\x5b\xba\xde\xca\x00\xf9\x0f\x1f\x1b\x1b\x81\x88\x1f\x76\xe8\xde\xdc\x3a\x71\xca\x1a\x0c\x66\x69\x53\x88\x68\xbd\x62\xf5\xd6\x1a\x4d\x3d\xd1\xaf\x29\x0e\xce\xab\x1c\xec\xd5\xe3\xe0\x7e\xdf\xf6\x69\x4b\xa3\x0c\x71\x79\xe4\x93\x67\xea\x97\x1f\xfe\x74\xed\xcb\xb3\x6b\xc7\xf7\x41\xe3\xb4\xf7\x6a\x3d\x48\x64\x51\x3e\x27\x8f\x2a\x1b\xa9\xa5\x07\xcd\xaf\x86\xbd\x56\x37\xe2\x47\xee\xaa\xad\xd7\x83\xa9\x57\xa1\x09\x7c\xad\x9b\x72\xd5\xbc\x72\x7d\x97\xd9\x52\x69\x81\xaa\xa0\xbe\x03\x0d\xa5\xdf\x30\x20\x17\x94\x29\x09\xc9\xd4\x26\x78\x83\x6c\x78\xb6\xd4\xde\xa6\x35\x6c\xc1\xdf\xd9\x82\x8d\x11\xe9\xc4\xaa\xb2\x83\x40\x6b\x68\xcf\xe4\x69\x60\xeb\xd0\x10\x3d\xac\xac\x48\xc3\x9b\xef\x8b\x00\x74\xf7\x36\x8b\x23\x94\xf9\x82\xbd\x07\x75\x28\x48\xba\xa9\xe9\x41\x5e\xc0\xa4\x5b\x9c\x17\x2d\x29\x3e\x7c\xe0\x3f\x9d\x00\x23\xf1\xd8\x60\xb3\x8e\xd3\xb4\x0c\xc7\x3b\x02\x96\xb1\xa5\x4a\xe6\x39\xb1\x37\xfa\xd3\x7c\x26\xb3\xb9\xfd\x40\xae\xb0\x2b\xc0\xaf\xac\xe9\xc0\x25\x2f\xbc\x26\x53\xfd\x41\xb3\xd2\x5a\x8f\x01\x7d\x7e\xaa\x02\xb5\x46\x2d\xfd\xfe\x49\xde\xca\xcb\x79\x1e\xaf\xa0\xb6\x73\x7a\xcd\x8e\xd9\x3c\x4b\x12\x35\xd7\x42\x40\x54\x61\x35\x06\x31\xab\x4c\x70\x72\x51\xaa\x15\x39\x59\x4c\x77\x9a\x38\x45\x2b\x8e\xca\x63\xcc\x7a\xef\x68\x0e\x68\x71\x2e\xa3\xa8\x3b\x18\x0c\x7a\x1d\x48\xe9\x2c\x58\xdf\x65\xec\x31\xf3\xbf\xcc\xc8\xab\xc7\x54\x59\x39\xbe\xc5\x2c\x27\xb3\x8b\xb3\x38\xdd\xc5\x06\xab\x83\xe2\x86\x15\x59\x4b\xb3\x34\x9e\xcb\x44\x54\x05\xc2\x9b\xcb\xa2\xc1\x8c\x4e\xf9\xbf\xb6\x8c\xbc\x5f\x99\x8e\x54\xee\x75\x56\xe5\x16\x79\xd4\xd9\x46\xaf\x4a\x9f\x3e\x84\x9d\x25\x49\x0c\x5d\xa0\x39\x9b\xb7\x6f\x9c\x98\x16\x86\x84\xfe\x77\xcf\xc4\x3f\x6a\xf7\xdf\x24\xc2\x3a\x36\x84\x98\xcd\x26\xf0\xa0\xb2\x83\x7d\x4b\xf0\x32\x80\xa6\x9b\x00\x74\xc4\x36\x99\x14\x30\x69\x36\x61\x14\xff\xec\xd4\x4c\x07\xd1\xe2\x46\x62\xe2\x3d\xf4\x6b\x6f\x0e\x76\x07\x0f\xcc\x44\x2c\xc1\x1d\xa5\xff\x1e\x4e\x07\x7c\x35\x57\x8f\x73\x79\x77\xf5\x18\x63\xf1\x8d\x45\x92\x92\x70\x67\x49\xdd\x52\x1f\xc9\x52\x32\xf3\x19\x89\x01\x1e\x5e\x02\xfc\x6a\x22\xaa\x1b\xbc\xf4\x8c\xfa\x00\x8d\xb8\x95\xf7\x8a\xdb\x0b\x2b\x7e\x1b\xe3\xe5\x7a\xa5\x9e\xe1\xdb\xf8\x40\xff\xfe\x0c\x6d\x3d\xf8\x40\xc3\x7c\x06\xff\xbf\xa2\x98\xd3\x9a\x2a\x99\xc7\x0a\x22\xcb\x2c\x09\x10\x7f\xbb\xf2\x7b\xb7\xd1\x8f\xb0\xe4\xd8\x66\xd3\x50\x8f\xad\xab\xc7\xf0\x89\xc7\x2e\xb2\xda\xe2\x42\x6b\x00\x7a\x60\xa0\x86\x6e\xe5\x2d\xb1\x5f\x6d\xea\xe4\xe8\xa7\x28\x38\x8f\x49\xf6\x40\x0b\x46\x0b\xd4\xf6\xc3\x4f\xb3\x92\x5f\xc4\x2c\xbc\x38\x6b\x0e\x2f\xbe\x7a\xac\x71\x8e\x71\xe7\x7a\xbe\x2e\xe8\xdc\x47\x43\x10\x6a\x6c\x77\xb4\xc1\xdc\xd0\xaf\x2d\xc6\x4b\x6c\x30\xb2\x48\x0b\x61\x3c\x94\x56\xd0\x74\x5b\x06\xb9\x05\xd6\x3a\x61\xa0\x3a\xdb\xc4\x86\x04\x82\xb6\x1a\xbe\x1b\x09\xb8\x9d\x0a\x3d\x32\xfb\x4f\x23\x96\xcf\x3f\xd6\x8f\x4a\xdb\xf6\x9f\xe9\x63\xf4\xdf\x98\x04\x06\x1a\x39\x5b\xd0\x01\xd8\xb1\x90\x89\x55\x79\x43\x0d\xad\x7f\x7b\x8a\x98\xb8\xd9\x0b\x95\x6a\xb9\x2a\x12\xb7\x2a\x2f\xc0\xb4\xbd\xc5\x7d\x41\xb4\xf2\x5d\x9e\x6c\x4d\x2e\xa8\x2b\xd8\xfb\x3c\x04\xd7\xf6\xf2\x17\x6c\xef\x3a\x30\x69\xbd\xf9\xf6\x4d\xb8\x35\x9f\x88\x4e\xdf\x7b\xca\xb6\x71\xb3\xe4\x6a\x3c\x05\xbf\x2e\xc1\x55\xeb\xd9\xc5\x4a\x52\x22\x21\xc4\x75\x2c\x55\x5a\x52\x35\xa7\x6c\x61\xfa\x5f\x81\x99\x7f\x95\x15\x45\x3c\x4b\xd6\x62\x9e\x64\x55\xb4\x33\x93\xf3\xf7\xca\xc8\xa2\xae\x36\x23\x11\x80\xab\x6d\x9b\xaa\x3b\x8a\xa1\x02\x53\xf0\x56\x68\x7e\x47\x7d\x73\x7f\x5d\xd8\xa6\x45\x19\x6b\xc5\x4c\x16\x2a\x12\x10\x4d\x42\x59\x3f\x29\x56\x40\xc6\x5e\x34\x0b\x69\xaa\x6e\x50\x7f\xb0\x1c\xcd\x1b\x5a\x92\xbb\xb2\x39\x64\x58\xc3\xdd\xeb\xa2\x15\xee\x63\xc3\xb6\x0c\xa6\xd8\xce\xab\xde\xdd\xa9\xa1\xa3\xd3\xbb\xa6\x96\x4e\x59\x63\xdb\x22\x7f\x85\x03\xe3\x20\x86\xf2\x84\x2f\x80\x8e\x4c\x71\x6e\xfb\xd3\xe6\x78\x35\x32\xf9\x50\xa3\x18\x83\x39\x7f\x81\x2c\x2b\xc3\xfc\x5e\x60\xe7\x80\xd8\x2f\x55\xe2\x2f\x3e\x30\x59\xe1\x64\x38\x46\x6c\x09\x6d\x99\x2b\xc9\x5c\x2a\x60\x4a\xf0\x16\xfa\xc6\x8c\x78\x6b\x6d\xd0\x06\x77\x1b\xeb\x0c\x85\xc5\x45\xb2\xe6\xb2\x22\x9e\xaf\x3f\xf3\x4a\x8a\xd0\x1c\x5b\x23\x5b\x6d\x17\x16\x9e\xcc\x62\xea\x5d\xb5\xd6\xb2\xaf\xe5\xc8\x2c\xe5\xaa\xf7\xd1\x15\xba\xf2\x62\x9b\x9a\xb2\x63\x10\xb0\x75\xb1\x37\xd8\xe5\x5a\xf7\xa2\xa5\xd1\x49\x50\x14\x3b\x44\x17\x78\x27\xda\xe3\xc2\x79\xa7\x93\x30\x2e\xea\x67\x6f\x73\xd2\xba\xb4\xf6\xe6\x26\x0d\x25\xbf\xeb\xcd\x4d\xde\xd9\xd4\x0c\xbf\x76\x30\xcf\x58\x6f\x24\x94\xcd\xfd\x4d\xce\x30\x7e\x1f\xea\x94\x61\xd0\x84\xa9\x46\xc8\xd9\xfa\xcf\x42\x17\x98\x2a\x60\xc9\xa2\xb5\x70\x7a\x2b\x06\xa1\x34\xc2\x03\xf5\xd2\xbd\xe3\x87\x6f\x78\x81\x0f\xdb\xe7\x17\x34\xba\x78\xbf\x75\xae\xeb\x5a\x08\x9f\x74\x1c\xa8\x54\xcb\x87\xfd\xbd\xfa\x4f\x93\xe6\x5e\xad\x36\x55\x09\xee\x6d\x8f\x64\x1b\x46\x66\xf1\x3c\x53\x4a\xcb\xc4\x28\x9b\x6e\x87\x68\x2a\x8f\xce\x51\x0d\x61\x45\x1b\x71\xad\x85\x33\x7f\x94\x11\xad\x9a\x5b\xe9\x14\x5e\x80\x16\x47\x5d\x03\x2f\xa2\x6a\xb3\x10\x94\x6d\xfb\x81\x3f\x88\x3c\x30\xd6\x7f\x1a\xea\x0a\x48\x55\x7b\x00\x79\xdb\xa1\xaf\x08\xf0\x57\x6c\x87\xc0\xa2\x8e\xc1\x30\x72\x8b\xea\x2b\xa4\xed\x67\xb4\x89\xd6\x8c\xd1\xc8\xaa\x06\x33\x45\x86\x90\x6d\x42\xab\xdc\xe0\x96\x00\xab\x42\xe5\xd0\xfa\x42\xb9\xf2\x09\x20\xa3\xd8\x08\xab\xf9\x5c\xad\xca\xba\x25\xea\x27\xa5\x62\xda\x4f\x15\xaa\xf4\x32\x31\x79\xbb\x14\x6c\xad\x99\xf9\xcd\x21\xf4\x0b\x14\x4c\x0d\x1c\xd0\x54\xb0\xb3\x10\x4d\xd3\x09\x8b\xb2\xbe\x28\x62\xac\x85\xe6\xf5\xf1\x80\x18\xe1\x55\x04\x1e\x5e\x16\x61\xe2\xf7\xa5\x6b\xa5\x95\xa2\xe5\xa8\xb1\xf2\xd6\x0d\xd7\x43\x36\xfb\xc1\xb5\x93\xcc\x66\x3f\x80\x87\x84\xd5\xca\x0f\x49\xab\x50\x65\x37\x9b\xfd\x10\xc0\x6b\xa4\x2e\x7b\x22\xe9\x38\x6c\xa2\xb2\xc6\xc0\xc9\xf7\x6a\xbd\x4b\xef\x62\x44\x5e\x08\xe2\xb7\x9d\xe7\x3b\x5f\xf8\x6d\xce\xc2\x3d\x6a\x62\x14\x5b\xee\xa6\xa9\x4e\x84\x6d\x28\xfc\xdc\xec\x6d\x2f\x27\x08\x9c\x84\x5c\xf6\x7f\xc6\xd6\x51\x09\xe1\x9f\xb8\x7b\x16\x9c\xa9\x40\xf9\x4b\xec\x9e\x8b\x19\xac\x1d\xdd\x07\xf7\x0f\xdf\x6d\x18\xdc\xb6\x85\xf6\x4c\xc2\xed\xf8\xc0\x4e\xb6\x5d\x95\xbf\x6d\xe5\x83\x5b\xd9\x70\x63\x7f\xc2\x66\x86\xa3\x3f\xc5\xb2\xf4\x0e\x56\xf3\x2b\xb3\x78\xdc\xc5\x69\x94\xdd\x0d\x60\x69\x97\x9f\x6e\xf6\x00\x18\x81\xe9\xe3\x27\x99\x3d\x5e\x00\xc5\xd4\x23\xfb\x5a\x4c\x1a\x75\x3b\x48\xc3\x82\x60\x1c\x3d\x97\x51\x74\x7e\xab\xd2\xd2\xda\x3a\x3a\xf4\x6e\xa7\x6f\xaa\x60\x5f\x1a\xb2\xf9\xc5\xcd\x1e\xb0\xf8\xa6\xf0\x17\xcf\xea\xc1\xad\x1c\xd6\xc0\x31\xc9\x95\xdc\xca\xb4\xb1\xbb\x2b\xfe\x74\x89\xe6\xf8\xa2\x56\x1f\xcc\x35\x60\x04\x12\x84\x4a\x4a\x7a\xcc\x72\x55\xae\xa9\x0b\xca\x40\x5c\x66\x82\x12\xf8\x08\x5e\x96\x26\x6b\xaa\xed\x49\x26\x6c\x5b\x5c\xac\xcc\xab\xf2\x66\x3d\x70\xcd\x04\xb0\x96\x03\x83\xd7\x77\xb5\xfd\x4d\x10\x70\x1a\x61\x49\x6c\x88\xb5\x4b\xb3\x12\xba\xd5\x68\xf0\xae\xda\x83\xd6\xf5\x4d\x5c\x84\x1a\xd8\x58\xfa\xaf\x78\x0b\x49\xf7\xbc\x27\x9e\xb1\x51\xb6\xc0\xdc\xbc\xca\x1d\x0c\x1b\xd6\x11\xc0\x70\xa9\x02\xcf\xd8\x28\x0b\x23\x63\x32\xde\x1b\x35\x20\x19\x8f\xcc\x41\xe6\x8b\xcf\xdc\x7c\x8d\x1b\x95\xe0\x3c\xb3\x93\xb8\x7a\xa0\x62\xcf\x8f\x34\x3f\x65\xff\xb9\x86\xa7\xf0\x34\xfc\x7a\xec\x4e\xe1\xca\x7e\x33\x3b\x7d\xa2\xd9\x29\x44\xe0\x6f\x56\xa7\x7f\x8e\xd5\x29\xc4\xf3\x96\x46\x27\xde\x40\xaf\x66\x3f\x81\x1c\x9e\xf7\x6a\xed\xf5\x0f\x44\x67\xf2\xad\xf5\x20\x23\x46\x5c\xd7\xe2\x32\x5f\xf3\x18\x66\x04\xcd\xf8\x34\x6b\xc6\x24\x84\x26\xbc\x72\x7e\x23\xec\x4d\x49\x61\x94\x98\x48\x33\x97\x5a\xd8\xc5\xeb\x8a\x09\xad\x90\x54\x69\x1c\xb1\xa5\xa8\x52\x76\xe3\xf8\x31\xe7\x8c\x2a\xec\x21\x07\x51\x01\xa3\x8a\x71\x2a\x8d\x34\xf2\xeb\xb1\xae\x6d\x41\x24\x0f\x9b\xd6\x36\x64\x6b\xc4\x18\x4a\x6b\x92\x22\xc4\x8e\x18\xe9\x6b\xf0\x4b\xbc\x0e\x77\x76\xbc\x0a\x1b\xfa\xb8\xe0\x70\x97\x19\xb1\x35\x09\x06\xf1\x0c\xed\x24\x18\x10\x21\x24\x2b\xd0\x75\xdf\x46\x88\x2d\xa4\xf8\x53\x89\xd1\xff\xf8\x6d\x18\x13\xda\x14\x53\x0a\xb8\x6c\x28\x90\xfb\x09\x74\x9d\xdf\x36\x13\xf5\x6f\xe6\xce\xff\x6c\xa3\x57\x78\x7c\x3f\xdd\xda\x59\xb3\x7c\x99\xf3\xd5\x0f\x5b\x90\xe2\xe9\xd8\x78\xeb\x7e\xca\x9d\xfb\x9b\x2d\xf4\x17\x27\x8b\xad\x4c\xa1\x61\x42\x46\x36\xfb\xc1\xd7\x51\xb6\x22\x16\x63\x33\xef\x35\x36\x59\xfc\xd1\x44\xf3\x9b\xc9\xf5\x9f\x47\x24\x3f\xdd\xe2\xda\x24\x1d\xfe\x1c\xdb\xfd\x9b\x79\xf6\x17\xd9\x76\xbf\x98\x71\xde\xbc\xef\x8d\x05\x89\xf3\x75\xbb\x49\xa3\x89\x46\x64\xbe\x7e\x13\xbf\xfd\x39\x58\xc3\x76\xc6\xdf\xa5\x5a\x66\xf9\xfa\x57\x66\xfd\x7d\x9e\xee\xe0\xba\x9c\xc1\xe7\xc7\x04\xbb\xc1\x78\x00\xf8\x23\xad\xbe\x2f\x71\x12\x3f\xc1\xec\xbb\xa9\x81\xe0\xbf\xaf\x89\x0b\xd7\xfd\xab\xb4\x71\xd5\x96\xf6\x9b\x91\xeb\x13\x8d\x5c\x35\x0c\x6e\x63\xe5\xd2\xc8\x53\xce\x26\x1d\x4a\x62\xbe\x7b\xc0\x30\x59\x65\x74\xc9\x7f\x38\x8b\xb5\x37\x12\x7e\xef\x33\xab\xb5\xc9\xb5\xfc\xc8\xf9\x6f\xe3\x99\x0c\x78\x70\x78\xc0\x7f\xbc\xb1\xbb\xd1\xdc\x1d\x64\x3c\x32\x17\x4e\xdf\x65\x86\xfe\x66\xed\xdb\x92\xe0\x7e\xaa\xb9\x0f\xc8\xe6\x37\x33\xdf\xaf\xc3\xcc\xd7\x46\x1d\xff\xa6\x76\x3e\x43\x7b\xbf\xd9\xf7\x7e\xb3\xef\xfd\xb7\xb6\xef\xd5\xce\xed\x8f\x0c\x67\x74\xf5\xea\x5a\xce\x59\xfd\xb1\x39\x3a\xa1\x01\x90\x95\xc1\x63\xb2\x4a\x93\x14\x52\x2f\x7c\xf7\x0c\xe7\xf9\x9f\x24\x5a\xfc\x66\xd2\xfc\xf7\x3e\x09\x5b\xd9\x34\x3d\x62\x7d\xc8\xc8\xf9\xe9\x02\xb5\x31\x76\x7e\x6c\x28\x7e\xd8\x76\x98\xac\x81\xf4\x8b\x66\x2e\xff\x2f\x3b\x10\x3f\xb7\xf1\xee\x37\x5b\xed\x3f\x83\xfa\x3f\xcd\x58\xcb\x9b\x88\xb4\xc9\xf7\xbf\x19\x6a\xff\x73\xf6\xfc\x67\xb7\xd4\x36\x12\x08\x5a\x69\x6b\x5d\x65\x7e\x76\x2b\x6d\xa9\x8a\xf2\x1d\x55\xdf\xfb\x95\xd9\x68\xff\x97\x1e\xa2\x3f\x75\x1b\xab\x3b\xc1\x8a\x11\x55\x69\x5c\x0a\xbd\x70\x2d\x16\x2f\x72\xb9\x54\x77\x59\xfe\x1e\xf6\x8c\x57\x51\x95\xa9\x93\x8e\x25\xff\x41\xbf\x1a\x76\x9a\xd3\xdf\x32\xdd\x87\xb1\x9c\xbd\x26\xa7\xd7\xaa\x28\x5f\xb2\xfe\xc7\xb9\x4a\x80\xfe\xc0\x58\x0c\x4d\x2f\x27\x58\x55\x75\x99\x2d\x4d\x5b\xbb\xb8\xec\x14\x50\x40\xd4\xd5\x48\x82\xc2\xb0\x45\x9c\x5e\x27\x0a\x3f\x84\x04\x0e\x23\x73\x25\x8b\x2c\x95\xb3\x64\x2d\x8a\xa5\xa4\xce\x72\xdd\x93\xff\x37\x7a\x2f\x92\x38\x55\x5a\xc8\xd2\x5f\x46\xa8\x22\xc9\x4a\xa1\x64\x11\xe3\xb9\x31\x2d\xdb\xb3\x94\xe0\x42\x99\x25\xa8\x53\xa4\xd7\x08\xa0\x6e\x64\x9e\xaa\xa2\xc0\xe6\x11\x31\x88\x2b\xec\xcd\x42\xdd\xaa\xd4\xaf\x47\xb3\xc8\x92\x24\xbb\xd3\xa8\xa5\x55\x62\xe7\x05\xaa\xc2\xe0\xb5\xe7\x0c\x51\xb4\x83\x55\x3a\xb2\xac\x24\x73\xba\x9e\xb9\x4a\xcb\x7c\xbd\xca\xe2\x14\x79\x02\xd4\x24\x04\x7d\x46\x69\x55\xb0\x22\xbb\x78\x1d\xda\xe0\x45\x76\x2d\x76\xc4\x8b\xec\xfa\x5a\x0f\xd7\xb4\x19\x53\x25\x87\x86\xc1\x97\x55\x5c\x2a\xb1\x23\x26\x06\xed\xa6\x0a\x84\xdd\xeb\x86\x97\xf4\xdf\xe1\x1d\xda\x1b\x3d\x78\xd3\xd8\x6f\xab\x54\xec\x08\x7c\x82\x44\xa2\xee\xd5\xbc\x32\xdf\x92\xc0\xec\x1e\xfa\xe8\xb7\xaa\xa8\x92\xda\x67\xf5\xe9\xab\x92\xd2\x25\xf1\xd9\xdb\x41\x63\x93\x2a\xe4\xd0\x11\xb2\xf4\x2f\x6e\x62\x95\xcb\x7c\x7e\xb3\x46\x22\x79\xaf\xd4\x4a\xe5\xa6\xf8\x45\x92\x5d\xb7\xd6\x06\x6a\xc0\x35\x5e\x0c\xfa\x25\x7b\x27\x34\xed\x08\x83\x08\x27\xeb\x45\x76\x5d\x50\x33\x22\x7e\x46\xa9\x87\x99\x66\x7a\xd9\x32\x2e\x03\x4b\x2f\x27\x9a\xc0\xac\x9b\x64\xd7\xdc\xd8\xaf\xe7\x73\x62\x67\x86\x55\xe8\x9a\xe6\x85\xb5\x7c\xbd\x40\x75\xac\x55\x2a\xe1\x0d\x43\x6c\x06\x93\x78\x3b\xc5\xc8\x0b\x4c\xf5\xd2\x76\x25\x03\x58\xf3\x3d\xab\x55\x84\x57\xed\x4a\x9f\x0f\xa8\xb6\x0d\x60\x0a\xa0\xc1\x42\x95\xd5\xaa\xdb\xeb\x5b\x0c\xad\x72\x25\x97\xb3\x44\x75\xe9\x28\xc3\xd8\xb9\xd4\x27\x8b\x8a\xa7\xb9\x99\xe4\x55\x3a\x10\xc8\x91\xcc\x9e\x17\x22\x5b\xc9\xbf\x55\x8a\xab\x08\x21\x02\x3e\x07\xde\x3c\x10\xe2\xb9\x66\x13\x2a\x2d\xe3\x5c\x25\x6b\x51\xad\xcc\xce\xb0\xf9\xdd\x81\x2b\xab\xec\x38\x03\x29\x74\xa9\xa1\xae\x87\x0d\x3b\xc4\x0d\xf1\x80\x53\x73\x14\x42\x83\xbc\x29\x32\x49\xf6\x9d\xa6\x9d\xa2\x57\xa9\x5a\x35\xbd\xf5\x40\x35\x4d\xbb\x77\xb2\x28\xb2\x79\xec\xaa\xd5\xd6\x36\xd0\x4a\x19\x8c\xbb\x4f\xa9\x08\xf7\x52\xae\x85\xbe\x4c\xf2\x38\x52\xa6\x18\x1a\xd8\xeb\xc0\xdd\xb7\x5a\xe5\xd9\x2a\x87\x16\xa3\x66\x4d\x0f\x63\x23\x4b\x69\x39\x53\x23\xdc\x30\x8c\x94\xf8\x53\xcf\xe8\x4d\x61\xfe\x84\x5a\x64\x50\x46\x1d\xe6\xff\xf0\xca\xe2\x02\x68\xe3\xc1\x83\x8c\xdc\xe5\x23\xb1\x13\x53\x35\x49\xff\xd5\xa3\x7c\x25\xaa\xd5\x3c\x5b\x62\x39\x75\x22\x2b\xcb\xfc\x42\xea\x9f\xdf\x63\xf7\xd2\x2c\x2d\xd5\xbd\x07\xc8\x6d\xce\xc3\xd8\xd2\x23\xbf\xa1\xa3\xc0\x11\x85\xd3\xeb\x0b\x20\x9f\x46\x5c\x99\x62\xed\x5b\xa2\x6a\x11\xa7\x71\x71\xd3\xe4\xd8\xfc\xd1\xc8\x22\x90\xd1\x2f\x8b\xac\xac\x28\x3f\x05\x5b\x67\x20\x11\x61\x02\x0e\x4c\xdc\xf0\x19\x91\x55\xe5\xaa\xf2\x0a\x95\xdf\x89\xc9\x37\xcf\x6d\xc7\x1d\xdb\x25\x8b\x3a\xf9\x18\xe6\x4d\xbc\x5e\x08\x35\xb8\x1e\x88\xef\x95\x28\xaa\x15\x14\x97\x8e\xd3\x45\x66\x58\x1c\x74\xa9\xec\xf5\x85\x82\x4a\xec\xfa\x2f\xe5\x7c\x30\x18\xa0\xa9\x37\x89\xdf\x5b\x70\x03\x7a\x8b\x06\x6c\x66\xb6\x34\x83\xd7\xb5\xd9\x80\xbe\x90\x55\x9a\xb3\x27\x89\xbe\xe3\xae\x91\x83\xe6\x59\x75\x7d\xe3\xae\xa5\x4b\x53\xfc\x10\x7a\xfc\x8b\x42\x66\x4b\x05\x6b\xa6\x25\x16\xa5\x4c\x23\x99\x47\x16\xfa\xe4\x9b\xe7\x6d\xdb\xf2\x02\xee\x20\x9f\xd7\xe1\x5b\x27\xf4\xa7\x17\xd7\xa3\xb5\xa0\x13\x6c\x1c\xe6\xcc\x83\x11\x56\x25\xeb\x74\xdc\x23\x2c\xcc\xf8\xae\xf1\xe9\x65\x29\xe7\xef\xdf\x51\xe7\xdc\x2b\x4c\x0f\x9a\xca\x55\x59\xe5\xb8\x6e\xbe\x4b\x20\x60\x09\x90\xb0\xc0\x64\x06\x5b\x0e\xb2\xba\x04\x6a\x83\x46\x61\x50\x57\x53\xbf\x56\x98\xe4\x25\xac\xa3\x99\xac\x07\x42\xef\xac\xe9\x48\x36\x53\xc2\xb4\x1b\xc5\xc6\xb4\x85\x52\x54\xfd\x73\x70\x65\x9b\x4c\xc8\xa4\xc8\xa0\x58\x78\x61\xba\xd5\x6b\x58\x80\xdf\x32\x13\x5a\xfe\xd4\xdf\x53\x79\x21\xba\x40\x3a\x77\xca\xee\x04\x92\x4b\x6f\x60\x17\x4c\xcb\x78\x47\xd7\x3c\xfd\x13\x10\xf2\xa6\x93\x64\xd7\x9d\xbe\xe8\x44\x6a\x56\xc1\x5f\x34\x09\xe9\x3f\x35\x14\xfd\x27\x10\x5d\xe7\xad\xed\x39\xd7\x4d\xd4\xad\x4a\x7a\xe2\xe4\x4b\xa3\x9d\x25\xaa\x14\xcb\xe2\xfa\x1b\xac\x82\x69\x71\x2d\x44\x71\x17\x83\x03\x83\xde\x70\x6d\x06\x35\xfa\xe8\x8b\xcf\xfc\x87\xf0\xd5\xe0\x19\xce\xe0\x99\x73\x60\xf0\x8f\x01\xec\x41\x99\x7d\xb7\x5a\xa9\x7c\x2a\x0b\xd5\xed\x51\xa7\x56\x56\xdf\x7b\x96\x2b\xf9\x3e\xac\x4a\xac\xd1\x50\x8a\x0c\x49\xcf\xc3\xd3\x1b\x00\xfa\x96\x99\xcb\xe8\x49\xcb\x40\x71\x22\xba\x83\xc1\x40\xe6\xd7\x05\xc7\x0b\xab\x12\xac\x29\x96\x15\x7b\x76\xf4\xfa\xe4\xc4\xa7\xd4\x27\x6c\x71\x4f\x84\x86\x38\xf8\x21\x8b\xd3\x6e\x47\x74\x60\x5d\x57\x57\xa9\x5b\x98\x9e\xfb\x40\xae\x56\xc9\xba\xeb\x4d\xab\x0f\x2f\x5a\x13\x1a\x6a\xc8\xac\x93\xf2\xf7\xb9\x5c\xed\xce\xe2\x14\x2d\x02\xd7\x79\x56\xad\xec\xd9\x43\x1a\x7c\xd3\x81\xa7\x7a\xff\xe1\x2f\xd3\x2c\x49\xe4\xaa\x50\x11\x27\x04\xf8\x85\x2f\x98\x30\xfa\x07\x00\x18\xa2\x0a\x46\x7b\x38\xc5\x27\x2d\x03\x35\x4e\x13\x39\x53\xc9\x49\xa7\xe3\x23\x15\xe1\xe3\x8f\x7e\xbf\xdf\x4f\x45\x35\x80\xa8\x61\x35\xe4\x1c\x42\x74\x06\xb9\x5a\x29\x59\x76\x9f\x3c\xa9\x31\x90\x16\x2c\x73\x54\x9c\xa7\x51\xb8\xc8\xc1\x35\xfd\xe0\xb8\xd2\xf5\x43\x43\x35\x46\x38\x26\x2c\x70\xdb\x9f\x73\xc3\xcc\x77\x76\x5a\x66\xde\x58\x55\x15\xfa\x32\xa2\x58\x0f\x0b\xc9\xab\x79\x99\xe5\xcc\x80\x05\xfd\xbd\xb1\xa9\xf6\x8d\xca\xe3\x12\x6c\x69\xf0\x76\xa3\xd6\xe8\x6e\xa2\xef\x0a\xe5\xb7\x82\x04\x19\xb1\xa6\x47\x90\x9c\x4f\xed\xf6\x40\xea\xc6\xef\x99\x36\x7f\x00\x0c\x0b\x95\x26\x6b\x11\xa7\x71\x49\xde\xba\xe6\x09\x5b\x53\x99\x83\xf8\x97\xac\x02\x0b\x4a\x79\xa3\xd0\x5e\xc6\x44\x57\xab\x62\x80\x36\xe1\xb4\x0b\xb1\x54\xe5\x4d\x16\x15\x50\x63\x57\xcd\x55\x51\xc8\x7c\x0d\x63\x64\xc4\xb5\x0e\x80\x47\x7a\x81\xfd\x24\xd3\xea\x6f\x65\x2e\x5e\xae\x35\x9a\x0a\xaa\x91\xd7\x88\xb6\x6e\x87\x06\x75\x60\xaf\xcc\xdb\xf4\xd0\x77\x36\xc0\x89\x73\x61\x4f\xa4\x28\x7c\x6e\x5c\xc6\x97\xaa\x2c\xe8\xf2\x8c\xff\x8e\x6d\x24\xef\xf1\xaf\xf1\x42\xc4\xa5\x50\xf7\x71\x51\x16\xb6\xe7\x63\xad\x93\xda\x68\xc8\xa1\x61\x89\x61\x27\x0a\x98\x4e\x04\xa6\x09\xd9\xfc\xbe\x2f\xfe\xa1\xa1\x3f\x13\xa3\x21\x76\x00\xf9\xdc\x9c\x91\xf6\x55\xac\x1e\x12\x5d\xbd\x05\x69\x69\x03\xac\x00\xa2\xab\x6e\xa1\x37\xe3\x5c\x6f\xc8\xa2\x4a\x44\x96\xaa\xa2\x07\xea\x48\x11\x47\x6a\x47\x2d\x16\x20\xd5\x68\xb2\x4b\xe2\xa2\xec\x8b\x22\xe3\xa0\x72\x45\x04\x18\x97\x46\x69\x80\x98\x2d\xcf\x58\x61\x94\x65\x6c\x6d\x81\x91\x82\xf8\xbc\xd5\xf1\xa1\x11\xc0\xec\x98\x9f\x73\x8e\x94\x60\xab\x07\x71\x22\x62\x07\xe9\x63\x13\x9e\x76\x77\xc5\xa9\x2c\xe2\xb9\x08\xed\x6b\xae\xd0\x36\xc3\xa6\x8c\x22\xfd\x97\x6e\x67\x95\xad\x76\xd0\x94\xda\xe9\x3f\x84\x4e\x36\xa7\xc1\x2a\x5b\x75\x3d\x6a\x13\xc2\x35\x0a\x8d\x0b\xad\x1c\xa8\x1c\xcf\x94\x8c\x13\x6a\x36\xa9\xa7\x03\x77\x35\x9c\xd1\xa2\xcc\x56\x90\xc6\x3d\x60\x20\xc8\xf8\x82\xaf\x9f\xff\x9f\xae\xfb\x22\xce\xb2\xcf\xa8\x73\x87\x82\x0c\x82\x29\x4c\x48\x09\xd1\x52\x6f\x9c\x46\xf1\x9c\xf6\xec\x46\x16\xc6\x4e\x30\x5b\x83\x58\x64\x35\x7e\x3c\xaf\x0d\xf3\xd0\xe3\xbb\x3d\x86\xfa\x5e\x80\xf3\x4b\x09\x7d\x4e\x6b\x56\xcd\xcd\x58\x87\xe1\x3b\x9f\x86\x7b\x4d\x3a\x85\x4a\x16\xc4\xf8\xc3\x85\x43\x36\xb9\xf1\x25\xd4\xa2\x58\xcd\xa8\x26\x14\x6b\xa0\x3e\x8a\xe1\x89\x8f\xe2\xfa\xfb\x21\x6a\x02\x7a\xa4\xcd\xf8\x5e\xc6\xa5\x18\x0d\x87\xcb\xc2\x75\xd9\xd5\xa4\x20\xf3\x5c\xae\x05\x85\xdc\x58\xb6\x2b\xdf\x3b\x53\xb7\xba\x07\xd4\xf2\x4d\x69\x08\x1f\xe9\x6b\xe0\x35\x2a\xd8\x82\x4e\x0d\x61\xc0\x1d\xe5\x54\xd7\x54\xa9\xa8\x10\x32\xc5\x28\xe2\xb1\x9d\xb8\xf1\xb2\x34\x50\x3b\xd9\x74\x6c\xfb\xd6\x5c\x81\x66\xa6\xf1\xb3\xab\x89\x9f\x2a\x34\xa4\x7d\x32\xfa\xb2\xd6\xc9\x65\xe6\xc3\x43\xbf\x4d\xbc\x54\xd0\x27\xae\x81\x1e\x73\xf5\xb7\x4a\x15\x80\x85\xee\xd8\x2c\xbc\x81\x32\x9b\xb4\x3a\xe3\x9c\x84\x4b\xf3\x55\x53\x2d\x61\x77\xa7\xb6\x29\x60\x68\xdc\xe5\x15\x41\x0d\x30\xe3\xae\x31\x57\xa9\xbe\x58\xc1\xf4\x42\xaf\x3a\x82\x36\xfb\xc3\x7e\xd4\x62\x08\xfb\xa7\xe7\x80\xb6\xb3\x3d\x71\x33\xb7\x95\x9a\xcd\x8d\x52\xad\xba\x68\xbe\xb2\x82\xbb\xfe\x7e\xeb\xcb\xf4\x33\x9d\x47\xaa\x1f\x5c\x17\x47\xe8\x77\xf7\x42\x14\x17\x5a\x27\xdb\xf8\x12\x1b\xe3\x5e\xbc\x56\xe5\xc6\x97\xe8\xf7\xda\x0b\xd4\x22\x69\xe3\x4b\x7a\x8c\x7b\xb1\xa4\x27\x2c\x50\xdd\x3e\x7f\x29\x57\xef\x5c\xb0\x0b\x3c\xb6\xd7\xaa\x6b\x62\x8e\xb7\x5c\xb7\xf9\x9b\x76\x7c\xcf\xc1\xe0\xa2\x54\xcb\x5c\x69\xc3\x9a\x61\x1a\xd1\x47\x15\x14\x46\x5e\x66\x79\xd0\x2a\x4e\x3f\xaa\x49\xa0\x80\x9c\x6c\xd1\xe2\x81\x70\x50\xfb\xc6\x5c\x4f\x6e\xce\x1b\xb5\x16\x77\x8a\xb9\x52\x36\x11\x3b\x9b\x9d\x2b\x62\xeb\xf7\x88\x80\x63\x03\x5d\x35\x1e\x90\x6a\x5f\xbb\xbb\x06\x19\xc1\x2a\x46\xa3\xb5\x16\xed\xd8\x77\x8c\xbb\x77\x8d\x1d\x3e\x60\x3f\x1e\x98\xa5\x23\x65\xcf\xee\xf9\x0a\x5b\x2f\xa8\xa2\xbc\xa0\xc7\xac\x72\x8b\x19\x60\xa3\xb2\x0d\x8d\x78\xbd\xfd\x3a\x67\x15\xf4\x86\x28\x89\x3f\x60\xfb\x85\x8e\x78\x22\xcc\xfb\x2c\x96\xaa\xc4\x39\xb4\x19\x9c\xc9\xda\xdc\x32\x33\xa7\xe4\x98\x89\xbc\x31\x23\xdf\x12\x83\xf0\x87\x00\x9d\x23\xcd\xe8\x7f\x36\x85\xd6\xeb\x0d\x86\xf2\xea\x78\x2a\x23\x27\xac\xb5\xa2\xd2\x3f\xe4\xff\xe1\xe8\x34\x16\xbf\x24\xbb\xee\x76\xce\x38\x12\xdc\x47\x07\x8b\x2a\x49\x9a\xbb\x69\xfd\x01\x22\x2f\x1b\xbd\x75\xa6\x57\xa9\xbe\xde\xf4\x22\x7e\x4e\x32\x6f\xbc\xb7\x2c\x7e\xc3\x6b\x2b\x52\x45\x9c\xf3\xad\x75\xc5\xe9\x9b\x66\x6e\x3a\x18\xc0\x4d\x4a\xaf\x81\x46\x63\xab\x00\x91\xb2\x73\x27\x0b\xd6\x22\x45\xa0\xf7\x7c\x33\xed\x38\x3e\x5f\xa3\x1b\xdf\x25\xd3\x42\xe6\xcd\x1b\x90\x92\xb8\xd4\xc0\xeb\x50\x39\x6c\x34\xc5\xff\x72\xcc\xc7\xbf\xac\xc2\x98\xaf\x70\xc5\x70\x6a\x1b\xa3\x0e\x5d\x47\x11\x91\x59\x7f\x13\xea\xf8\x86\xda\xfa\x62\x55\x19\xc1\x5d\xb9\x4e\x2c\xd4\x35\xde\x58\x17\x4a\x66\xf7\xe7\x8a\x2b\xe8\xe0\x10\xcf\xc3\xb4\xd7\x42\x44\x31\x4c\x58\x2b\xe9\x4c\x65\x75\x58\xa3\x74\xb3\x34\x42\x84\xcd\x14\x3a\xea\xe2\xd4\x79\xf8\x71\x9a\x9d\xc2\x5a\x04\x08\xd3\x24\xe1\x21\x61\xb9\xce\xf8\x85\x95\x79\x3d\x7f\x60\x3c\xbf\x01\x7d\x74\xa6\x8c\x99\x21\x82\xcd\x00\x93\xba\x0d\x00\xf2\x3d\x1a\x03\x21\x2e\xb2\xdc\x8a\xcb\x5e\x58\xc0\xcb\x75\x70\x6b\x3f\x64\x02\x08\x34\xf4\x62\x0b\x15\x9d\x64\xe0\xc0\xcd\x82\x6d\xe3\x3b\xfa\xcd\x8e\xdb\xa6\x12\x69\xcb\x28\x70\xc6\xeb\x81\x91\x49\x76\xe7\xac\x35\x81\x6c\x0f\x7d\xcc\xe9\xbb\x8b\x0b\x15\xbe\x7c\x0d\xfc\xa9\xc1\x0c\xd1\xee\xd4\xd8\xda\x2d\x54\x7b\xd3\xd2\x8b\xf3\x3e\x53\x9c\x8a\xa6\x47\xcd\x91\x76\x79\x1b\x78\x8a\x7b\xcd\x52\x0f\xbb\x4d\x44\x0d\x8e\x66\xb3\x6e\xad\xb6\xa8\x88\xea\x9b\x11\x82\x90\xdc\x16\x5e\x08\x18\xb6\x4a\x29\x78\x67\x0e\xd3\xa9\x28\x20\x90\x8d\x67\xd7\x23\x8d\xa6\x16\xf3\x9a\x02\xcc\xca\x6b\xc9\xf5\xfa\x0c\x04\x3f\x92\xd5\xf6\x3d\x98\x66\x61\x80\x26\xb1\xaf\xc4\xfc\x5e\x3f\x7b\x66\x87\xbf\x79\xff\xb6\xa5\xed\x3c\xf1\x22\xf0\x7e\xd0\x31\x9a\xa3\xff\x91\x50\x5a\xad\x9a\xd4\x95\x2b\x13\x37\x63\xc8\x21\x28\x85\x67\x14\x4b\xc7\x03\xa5\x48\xb3\x9d\x6c\x85\x0d\xae\x83\xa3\x0c\xd0\xf4\x25\x11\xe7\xaa\x10\x45\xb6\x54\xe2\x7d\x9c\x46\x1a\x0a\xfc\xbe\x73\x07\xde\x2c\x7d\x9c\xd0\x26\x01\xf1\x3c\x9a\x27\x25\x12\xbb\xb1\x44\x99\x88\x19\x27\x81\x80\x00\xe0\x02\xe0\xd1\xc9\x72\x70\x7d\x95\xca\x6c\x5a\x23\xb3\x03\xed\x14\x87\x11\x2d\x00\x2c\x09\x36\xac\x98\xdc\x43\xe0\x86\x82\x7b\xc0\xb4\xba\x04\x9c\xc0\xaa\x64\xba\x66\xee\x47\x66\x8b\xc1\xd0\x04\x3c\x73\xee\xcb\xb6\x01\x14\xd2\x5d\x14\x17\x73\x99\x6b\xb6\x07\xc6\x4b\xb8\x2a\xb2\xd4\xd1\x25\xdd\x0e\x9a\x20\xec\xe9\xcd\xd5\x92\x4e\x44\x10\xdd\x35\x49\xd1\xd0\x26\xd0\xd0\x56\x68\x15\x17\xfe\x6d\x36\xa6\x01\x03\x68\xc5\x99\x29\x11\x47\x6a\xb9\xca\x4a\x95\xd2\x0d\xcf\x58\x5e\x5f\x9f\x8c\x75\x56\x75\x72\x25\x64\x14\xe9\x2f\x9f\x7d\xfd\x52\xa4\x59\x44\x6d\xe1\x44\x94\xcd\xab\x25\xb4\x27\x59\xca\xf7\x1a\x3d\x39\xe0\x6d\x11\xe7\x14\x9a\x85\x12\x3c\x5a\x02\xd4\xba\x03\xdd\x2b\x4b\xdb\x3c\xbd\x04\x23\x95\x20\x4e\x07\xf7\x62\xdf\x44\x60\x96\x37\x6a\x29\x72\x09\xd6\x82\xf2\x46\xa6\x44\x36\x15\xba\xe3\x96\x7e\x03\x38\x0d\x74\x9e\x55\x69\x49\x7b\x1e\xe7\xb8\xb7\x2c\xce\x92\x34\x93\x55\x9e\xcd\xe4\x2c\x59\xa3\xad\x5c\x2d\x34\x0e\x6e\x34\xf9\x41\xa0\x9f\xde\x46\x12\x5c\xfc\x2e\x7a\x1a\xc5\xae\x9a\xa2\x63\x21\x72\x96\xe5\x25\xdb\x9d\xc8\xc5\x26\x79\x2c\xef\x67\xf7\xa3\x6f\x77\xfd\x7c\xca\xf9\x8f\x32\xb1\xca\xd5\x0e\xd2\x0a\xf0\x82\x5f\xf6\xf0\xf3\x8f\x6f\x7b\xf4\x41\x88\xa0\x84\xa1\x8a\xe2\x94\xb0\xef\x9f\x14\xb3\x2a\x9d\xdf\x68\xc0\xb3\x2c\x4e\x54\xbe\x4a\xa4\x89\x5c\xda\x2d\x95\xcc\xa3\xec\x2e\xa5\x70\xcf\x94\x8e\x58\x5c\x58\x61\xc3\x50\x40\xf1\x4f\x22\x81\x7f\xf7\x98\x96\x90\xbc\x1e\x74\x0d\x7c\x2a\xa5\x65\x45\x89\xbb\xad\xf7\x62\x47\x6f\xc6\x6f\xd4\xf6\xef\x47\x6d\xbf\x50\x50\x50\x8d\xda\x3e\x31\x2c\x08\xe7\x20\x72\xb5\xca\x55\xa1\xef\x5f\xe8\xd6\xca\x43\x4f\x63\x5f\xeb\xf1\x68\x8d\xda\xc2\x9a\x2b\x17\x9c\x19\x79\x69\x43\x4c\x37\x59\x85\xac\x3a\x82\x38\xe1\x37\x92\xba\x55\xb9\x4d\x17\xb0\x86\x3c\xb8\xe4\x67\x6b\x71\x23\xd3\x06\x85\xbc\xf1\x5b\x64\x57\x9e\x42\xb4\xf1\x6b\x5f\x9e\xc1\x10\x64\x27\x2b\xd7\x05\xe2\xc1\xc3\x1a\x3f\x26\x20\x38\xbd\x3f\x66\x8e\x96\x3e\x5c\xad\x18\x4a\x4d\xba\xa1\x47\x0b\x34\x0f\x6b\xa6\xa8\x67\x63\x34\xd3\x5e\x9f\xf6\xac\xf7\xd1\x33\xad\x78\xe9\xcd\x57\x2c\x1a\x94\xd2\x35\xfc\x98\x56\xb8\xa2\x85\xd5\x24\xc9\x05\x25\x05\x85\x1f\x5b\x51\x47\x62\xa0\x85\x85\x17\xd0\x68\x5d\xc7\x6f\x38\x4b\x0d\x54\x1b\xda\x23\xdc\x36\xb5\x5a\x8e\x50\x90\x47\xb2\x15\xc4\xe9\x36\x6c\xa7\xef\xa9\xc7\x0c\x62\x3d\x13\x6e\xc1\x47\xba\x38\x61\x44\x62\xe2\x4c\xbc\xaf\xb4\x6c\x72\xc3\xfe\x36\xed\xab\xf7\x59\x4b\x3c\x27\xa1\x65\xcd\xff\x24\x75\x1c\x6e\xf8\xe6\xa7\x7d\xcf\x18\xd1\xbc\x45\x32\x0f\xc4\x13\xd1\x79\xc3\xcd\x7c\xfa\xc1\xdb\x8e\x8b\xb6\x09\x53\xe6\x21\x22\xd6\xa3\xa4\x81\xb7\x36\xb3\x5b\xc6\x77\x62\xfe\x5d\xb3\xac\x9c\x43\x64\xbc\x0a\x0e\x9b\x67\xdd\x98\xdb\x52\xe2\x75\x63\x5f\x40\xa6\x7d\xce\x79\x30\xbe\xa2\x25\xb4\xb8\x41\xf6\xd5\x4b\x8a\xcb\xed\x39\xcb\xd6\x37\xc0\x26\xab\xae\xfe\x3b\xcf\x3f\xf2\xe3\xa5\x11\x9e\x09\x1b\x74\xe9\xf7\x7a\x47\xd0\xb6\xa6\xd5\x8a\xd5\x2a\x21\x6b\x19\xdc\xbc\x12\xca\x6d\x6c\xf6\x3b\x0c\x02\x57\x97\xdd\x2f\x0a\xc5\x22\x8f\x1e\x10\x48\xdf\x05\x22\x35\xfe\xf7\xc6\xdc\x2a\xf4\x12\x85\x34\x0f\xe6\xf7\x26\xf3\xd2\x16\x01\xb8\xf7\x5a\xa4\xaa\x7b\xbb\x71\x0d\xc6\x43\x44\x2f\x3c\x32\x81\xd3\x36\x24\xca\xab\xd8\xee\x9c\xbe\x79\x9c\x96\x49\xda\xed\x00\x57\xc9\x65\x0c\xac\x8c\x95\x70\x47\xab\xb2\xba\xf7\x5b\xe0\xab\xfb\x41\x51\xba\x9c\xae\xf0\x31\x9f\x23\xe4\xd3\x05\xfd\xec\xbd\x4f\x9b\x97\x28\xe0\xed\xea\x2a\xed\xf4\x7a\x1b\x3b\xd9\x37\xbe\xde\xab\xd5\x33\x08\x96\x6a\x5c\xbe\x7a\xa5\xef\xcc\x6e\x5d\x4c\x9e\xbf\x38\x3f\xeb\x63\x4c\x69\x4b\x5d\xf3\xef\x48\xe6\x9a\xdf\x64\x99\xbe\xb4\xbd\x5c\x14\x4c\x5e\xaa\x52\xd4\x0e\x7d\xe3\x40\x91\xc4\xd7\x37\x65\xb2\x16\xcb\x0c\x1a\xbb\xa7\xb7\x2a\x8d\x55\x5a\xd6\xaf\x66\xbc\xf4\x0b\xd5\x1e\x4f\xd5\x92\x29\xd0\xed\x3d\x78\xe8\x3e\x72\x4f\xac\x65\xfd\x36\xf7\xaa\xc1\xd2\x6c\x6f\x2c\x73\xf0\xdb\x24\xaf\x89\xbd\xd3\xbc\xac\x0d\xc8\x95\x32\xa7\xb8\x30\x57\x25\x93\x60\xf9\x15\xab\x91\xb9\xd9\x8c\x9a\xe5\x10\xf6\x71\x1b\x47\x95\x4c\x58\xb4\xd5\x26\xfe\x10\x24\x51\x34\xfb\xad\xfd\x7b\x83\x61\x22\x4c\xa4\xb1\x76\xbd\xa6\x3b\xc9\x65\xdb\xf8\x1e\x6f\xff\x0b\x97\x37\x59\x5e\xce\xab\xd2\xb0\x9c\xe0\x13\x9d\x42\x24\xd9\x75\x0d\x3e\xe6\xe8\x30\xb8\xfa\x49\xe3\xad\x67\x24\x07\xb3\x23\xdb\x65\xac\xf8\x49\x33\x04\xee\x26\xbb\xb3\x7a\x89\xde\x2d\x0c\xc3\xb3\xd9\x32\x2d\x59\x32\xe4\xf0\x0d\x57\x30\xbf\x17\x27\x9a\x54\x3e\x7c\x70\x69\xee\x81\x88\x40\x5e\x5f\x37\x0f\xb4\xdc\xa8\x14\x4c\x2b\x10\x57\xb1\x90\x71\x52\xe5\x0d\xe0\xcd\x0f\xbc\x1f\xe9\x76\xe0\x91\x56\x6b\x00\x57\x81\x67\xb8\x86\x67\x68\xc6\xcf\x11\x5e\x94\x32\x2f\x55\x04\x1e\x27\xe8\x31\x81\x0e\x8a\x1b\x59\xa4\x9d\x12\x8b\xe0\xd0\x10\xb1\xc6\x7e\xce\xbe\x34\xa5\x7f\x3b\x93\x10\x85\xa1\x5f\x6f\xff\x6a\x9c\x8a\x65\x9c\x24\x71\xa1\xe6\x59\x1a\x15\xd6\xbe\xe5\xa6\x52\x66\xd9\x7b\x1e\xdd\xc2\xe7\x44\xd0\xdc\xcc\x6c\xa1\xb0\xc6\x69\x45\x55\x8e\xaa\xef\x86\x59\x2d\x33\xc8\xae\x9b\x6b\x96\xe6\x5d\xe3\x1e\x2e\xbc\x19\xd2\xb7\x09\x21\x04\x4b\x7f\x5f\x88\xe7\xa9\x4b\x5b\x8e\x54\xa9\xa5\x01\xd0\x66\xcd\x16\x3b\x65\x19\x44\x8f\x44\xc9\xdc\x64\x32\x99\x4f\x10\x3c\x2f\x57\xc9\xa7\x46\x2c\xac\x45\x22\x50\xcb\xd2\x5e\x55\xcb\x19\xaa\xb7\x4b\x79\x1f\x2f\xab\xa5\x23\x3f\xe1\x9f\x35\x17\xf6\x76\x67\x1c\x21\x22\xc5\xb7\x63\x73\x9a\x72\x25\xe7\x37\x78\x88\x16\x62\xa8\x11\x43\x59\x7b\xdc\x6c\x6b\xae\x94\x42\x51\x5e\x2b\x99\x7f\x21\x35\xa9\x2f\xd4\xad\x4a\xcd\xfe\x2d\xd0\xa0\xa0\xa7\x54\x5b\xde\x52\xde\x5f\xb8\x03\x31\xac\x6f\x5a\x5e\x51\x3f\x15\x96\x15\x27\xd0\x0f\xa6\x64\x9e\xac\xc5\x4c\xcd\x65\x85\xf9\xc9\x32\x15\x55\xaa\xee\x57\x38\x21\x4d\x72\x71\xa3\x3a\xb0\x92\x69\x3c\x67\x69\x19\x24\xfe\x9a\x60\x8e\x95\x4a\x23\x9b\x94\x6a\xf9\xb6\x63\x9f\xff\xa7\x52\x95\x62\xfd\x84\xfd\xbb\x17\x6e\x0e\xf4\xa3\xd0\xfd\xe1\x32\x03\x11\x59\xdd\x1e\x2a\x6a\x3c\xfc\xcb\x19\xd0\x51\x58\x05\x50\xe0\x97\x42\xf4\x3e\x70\x73\xb0\xcb\x76\xf2\xe2\xc5\xbb\xd7\xe7\x97\xaf\x2f\x29\x10\x66\x41\xd7\xef\x79\x5a\x2d\xbb\x9d\xdf\xcb\x24\x01\x73\x4e\xf1\x65\xa7\xd7\x10\x48\xc2\x4d\x01\x9c\xf9\x6e\xb0\x49\xd4\xa7\x80\x93\x6e\xf2\x42\xf3\xdc\x18\x87\xca\xa6\xf8\x89\x6d\xbf\x52\x0b\x07\x43\x09\x8a\xab\x98\xd9\xaa\x7c\xb7\x92\x65\xa9\xf2\x94\x95\x31\xa1\x27\x94\x69\x62\xfe\xf5\xe1\x03\x4e\xce\x62\xd1\xf6\xb8\xc1\xcf\x4d\xc1\x76\x8e\x94\xea\x02\x24\xc8\xed\xcc\x94\x2e\xe6\x8f\xb6\xfd\x35\xac\xcf\xea\x07\x0c\xbf\xfd\x41\xfc\xde\xbe\x6d\x8b\x09\xfc\xc0\x8a\x09\xb0\xf8\x0b\x33\xee\xcd\x0f\x26\x31\x61\x77\x57\xbc\xca\x0c\xf9\xdc\xa9\x4e\xae\x05\x15\x4d\xb6\x57\x8f\x1f\x9d\x9c\x5c\x3d\xe6\x2e\x01\x78\x76\xf5\x58\x14\x19\x1f\xbe\xd4\xf2\x3a\xda\x42\x10\x9e\xde\x6d\x47\x3e\x97\x60\x02\xb1\xfc\x91\x83\xb3\x1e\xbe\xb4\x2c\x8c\xf9\x87\x1a\x23\x39\x89\xdb\xa0\xf4\xd1\xc9\x49\x80\xd3\x40\x06\x37\x03\x99\x08\xfe\xad\xba\x3e\xbf\x5f\x79\x32\xb8\x1e\xf9\x88\x86\x02\xed\x00\xc1\x58\x1d\xbb\xd7\xe3\x0a\x8c\x9e\x5c\x9c\xf2\x8a\x61\x28\x94\x9b\x20\x19\xa7\x9a\x3f\x3a\x11\x3e\x6d\xb4\x01\x08\x44\x74\x72\x53\x1b\x42\xb7\xd4\x0b\xc4\xe7\x48\xe5\xc9\x13\x1e\x11\x48\x71\x08\xec\xf7\x86\x20\x84\x04\x3d\x53\x29\x88\x91\x20\x87\x23\x63\x28\x33\x71\x8d\x7b\x80\x37\x57\x61\xd3\x74\xd9\x8b\xc6\x54\x00\x19\x7c\x40\x3b\x08\x41\xef\x5a\x06\x75\x06\xa0\x1e\x41\x76\xd7\x1e\xe6\xf2\x01\x91\xff\xd1\x9e\x90\x6f\xe8\xcf\xca\xe3\x62\xcc\xb7\x06\x08\x7a\xbe\x10\x1b\x98\x51\x9f\x71\x38\x99\x07\x7c\xcd\xbc\x2f\x6d\x37\x2c\x68\xa6\x65\x99\x0f\x0a\x57\xf7\x72\x0e\x9a\x89\xa6\x5a\x05\x37\x4d\x0b\x10\x9c\xbf\x01\x02\x9f\x34\xa4\x0e\x30\xf1\x77\xd4\xaa\xa3\xc8\x43\x84\x09\xda\x89\x53\x8a\xd1\x49\xed\xcd\x2a\x23\xbc\x4d\xa4\x59\x06\xcc\x0a\xec\x96\x28\x31\x29\x5b\xe0\x81\xc5\xd4\xc2\xbd\xc5\x95\x92\x4f\x60\xa0\xdf\x58\x0e\x65\x99\x5b\x9d\x8d\xd5\xd9\xd2\x55\x4b\xc9\x92\x07\x23\x1f\x9b\xea\x99\x70\xf0\x26\x2d\x89\x31\xde\x96\x10\x4d\x07\xf4\x4d\xfc\xf6\x21\xcb\x02\xfd\x67\x96\x16\x56\x49\x79\xc4\xa6\xe0\x47\xef\x6a\xf5\x03\x32\x08\x3b\xaf\x32\xbe\xcf\x2a\xa2\x69\x43\x10\x70\x1e\x97\x2a\x8f\x25\x5a\x05\x9a\x3e\xb2\xc5\xa1\xfc\x63\x96\xbd\x57\x11\x29\x24\xd4\x43\x2f\x4b\x21\xdb\xcf\xa4\xed\xb3\xd4\xf4\x98\x89\x85\x68\x13\xb1\xb6\x09\xca\xb7\x01\x1e\x0c\x36\x29\x17\x56\x72\x9d\x89\x2a\x9d\xcb\xea\xfa\x66\xa3\x19\xc9\x27\x94\x2c\xfd\x8e\xde\x39\x37\x9f\x78\x57\xbf\x0c\x97\xaa\x28\xe4\xb5\xea\x43\x5d\x90\x3e\x94\x12\x01\x4c\x1a\x14\xd3\xef\xb6\xb6\x70\xc7\x00\xdd\xc6\x5c\xd3\xe9\x89\x93\x13\x31\x14\x1f\x3e\x98\x7d\xae\x81\x2b\x4a\x59\x56\xc5\x33\x12\x84\x3a\x3d\x2a\x54\xcc\xed\x5c\x24\x27\x4b\x3f\xb4\x5f\x73\x40\x7a\xa0\xa5\xc7\x6e\x8f\x4c\x92\x79\xb6\x14\xd2\x15\x5e\x16\xe2\x7b\x7d\xa1\x59\x68\xc6\x6b\x7e\x9d\xc1\x91\xd7\xc2\xb9\x4c\xd0\x58\x10\x97\xa1\xdb\xc2\x37\xb2\xe0\x17\xd8\x8d\x28\xad\x8d\x29\x2e\x31\x3b\x56\x4b\x75\x85\x5c\x68\x0d\xb5\xf8\x5b\xa5\x92\x39\x05\xbb\x21\x39\x98\xc5\x1b\x43\x0e\x06\x9e\xe5\x74\x93\x70\xba\xae\x8b\xf7\x4d\x9d\x0a\xd9\xfe\x40\xc1\x4e\xbb\x35\x60\xc8\xad\x81\x18\x18\xf1\xf7\x5c\xcf\xe6\x25\xbe\xf8\xae\x17\x98\x14\x49\xab\x5c\xca\x35\x64\x1b\x40\x1a\xb5\x5e\x24\x4a\xd0\x37\x32\x8d\x12\x2d\x5f\x5b\xaf\x5a\x80\x32\x6b\x09\x66\x73\xb5\x6b\xd3\x5c\x07\x74\x8b\x13\xd1\xc1\xb3\xd1\xe1\xc5\x6f\xeb\x33\x46\xea\xb0\x6d\x1b\xfd\x1f\xbf\x39\x7f\x75\xf6\xfc\xd5\x1f\x08\x33\x06\x2e\x14\x01\x30\x60\x2d\x2f\xc0\xa4\x73\x87\x21\x37\x7f\x8d\x2b\x78\xf7\x89\xe8\x38\xb1\x1e\x58\x42\x03\x73\x6a\x98\x46\x2d\x46\xb5\xf6\x59\xb3\x47\x4f\x44\xa7\x0f\xdf\x83\x1a\x3c\x4f\x44\xe7\x99\xfe\x07\x1c\x39\x3e\x5f\x1f\xbc\x4f\x83\x0d\x03\x6a\x46\x3f\xc6\xb8\x8c\x16\xd3\x58\x2e\x41\xf3\x2b\xab\xe8\x71\x9d\x36\xa8\xba\x5d\x8b\xcf\x2c\xd7\xab\x58\x1f\x85\xb5\xc8\xd5\x4e\x5e\xa5\x85\x88\x4b\xc8\xfd\x91\x5e\xbd\xad\xbe\xc7\xed\x12\x55\x5a\xff\xd1\xd9\xd7\x2f\xb5\xd2\x3c\x8b\x93\xf8\xef\x68\xb6\x29\x6e\xb2\xbc\xdc\x29\x55\xbe\x04\xeb\x40\x56\x95\x5e\x62\x8b\xc9\x68\x8b\xd4\x3c\x91\x39\xf7\xa1\x31\x4b\x11\xcb\x81\xf1\x44\x97\x59\x96\x25\x4a\xa6\x58\x30\xa0\x78\x1f\xaf\x28\x4b\x07\x22\x66\xf2\x4a\x51\xf6\x17\x3d\xd4\xb2\xc3\xfb\x78\xb5\xa2\xa8\xa2\x9a\xaf\x0e\xb8\x38\x43\x91\x88\x97\x4b\x15\xc5\xb2\x54\x90\x22\x0f\x78\x22\xa7\x02\x08\x19\xc6\xcd\x0d\x8c\x49\xf3\x99\x38\x88\xb8\x7b\xa8\x8e\x48\x13\x67\x0f\xea\x89\x34\xf0\xf5\x60\xad\x2c\x10\xfc\x51\xf3\x4f\xce\xcb\x13\x1b\x39\x06\x98\x00\x48\x31\x10\xe3\x23\x35\xa9\x5e\xab\x1c\xab\x2c\xd9\x5c\xa7\xc1\x60\xd0\x17\xc3\x1e\x58\x49\x96\x72\x3d\x73\xbc\x76\x05\x37\x23\x99\x75\xf4\x9e\x83\x03\xf9\x4e\xae\x59\xea\x6d\x99\xc7\xd7\x60\xb9\x05\xb3\x40\x49\x81\x4f\xca\xbc\xa5\xd2\xc8\x82\xb3\x55\xc6\x4a\xc8\xac\x2a\x32\x71\xa7\xa0\x05\x2b\xd5\x1d\xa0\xda\xfd\x18\x75\x50\xa8\xb2\x4c\x94\x80\x90\x01\x22\x9e\xac\xca\x2d\x2c\x5c\xe4\x5c\xd3\x45\xb5\xc2\xa8\x54\x3f\x83\xab\xc4\x56\xb7\x21\xa2\xfd\xa2\xa6\x7d\xa0\x1f\x23\xda\xd7\xf9\x5d\x68\x7b\xea\xa6\xea\x4e\x9c\xc9\x52\x75\x7b\x3d\xb1\x13\x58\xcc\x42\x96\x75\xed\x27\x46\xdb\xe7\x50\x1d\x83\x59\xf7\x4c\x65\x68\xcd\xbf\xf0\x16\xed\x37\x33\x2f\xcf\xc4\xc8\xdf\xc2\x80\x2d\xfd\x56\xeb\x6b\xcb\xe2\x75\x76\x89\x96\x3a\x62\x42\x66\x59\x3d\x8f\x77\x15\xd5\x72\x29\xf3\xf8\xef\xca\x6a\xb6\x81\x48\xe4\x59\xa9\x42\xab\x73\x1d\xe1\x88\xea\x07\x9a\x0b\xb7\xf8\x04\x4d\xb4\x20\xab\x0e\xd4\x50\xf7\xe7\x47\x3b\xf7\x30\x1e\x5a\xb3\xcb\x1f\xaa\xa2\x64\x7e\xf1\x86\x8e\x05\x0f\x9d\x67\xfc\x58\x53\x79\xa0\x36\x07\x60\x0d\x75\x25\xaf\x04\x63\xe3\x3c\xc8\x6a\xed\x48\xd4\x79\xf5\x5c\x80\x48\x30\xba\xbc\x6f\xf7\xda\xd5\x2f\x54\x6b\x53\x63\x7d\x92\x53\x61\x61\xb7\x5d\xa4\x82\xf9\xd7\xbe\x12\xf6\xaf\xcf\x84\xba\xef\xf9\x95\x00\xc8\x20\xd7\x24\x27\xe5\xa1\x94\x40\x0f\xbe\x99\x5c\x5e\x9e\x9f\xf5\x1a\xa7\xec\xbd\x83\x5f\xb2\xea\x3f\xfd\x66\x4f\xec\x97\xe2\x60\x38\x0c\xc1\xa0\x5a\x71\x99\x64\x77\xc6\x14\x96\xbd\x77\x12\x97\x77\x50\x02\x78\xbd\xe0\x24\x7b\x27\xbc\x79\x4d\x27\x76\x4d\x78\xcd\xfb\x1b\x61\x0f\x33\x18\xc9\x88\x54\x38\xf2\x48\x52\x30\x86\x30\x3a\x7a\x9e\xc9\xa3\xed\x7b\x84\x43\xef\x7b\x2b\x96\x06\xc7\xbf\xe6\xbb\x35\xeb\x34\xf2\x3e\xd5\x6c\x98\x8e\x8f\x91\xf8\x35\xca\xf2\x06\x11\x8a\x0a\x9f\xb4\x50\x4d\xc3\xf6\xf9\x39\x1c\x6d\xf4\x02\x3f\xe6\x55\xfa\x4a\xdd\x97\x24\xcf\xff\x6c\x6c\xc5\xb1\x02\x52\x2f\xae\x52\x66\xb8\x8f\x28\xe7\xd6\x25\xee\xd2\x2f\xe6\xd2\xf7\x82\x1d\xaa\xa2\x02\xd1\x8a\x6c\xc0\xfa\x7a\x83\x92\x81\xb3\xea\xfa\x7a\xed\x82\x6a\x8d\x17\xcb\x84\xe2\xd2\x37\x40\xdd\xa4\x88\x3d\x9c\x6d\x2a\xd4\xbd\xd6\x6c\x50\x96\x49\x85\xbc\x96\x71\x4a\x6a\x52\xea\x67\x86\x7b\xdd\x6a\xc8\xf1\x0b\x32\x00\x94\xf1\xa1\xfa\x4f\x10\xa9\x6d\x9d\x35\x89\x2c\x4a\x21\xe7\x9e\xf8\x8f\x75\x85\x64\x05\x25\x21\xe1\xde\xc7\x96\x3a\x00\x11\x51\x45\xb7\x3e\x85\x13\xda\x9b\x1f\x8a\xb7\x41\x11\x2f\x67\x5c\xc6\x3a\x1e\x36\xbe\x19\x07\x03\x28\xd4\x45\x72\x87\x5d\xe3\xd9\x00\xd5\x50\xeb\x2c\x05\x2a\x2d\xa1\xcc\xef\xd2\xfd\x41\x06\x01\x60\x90\x0a\x0d\x25\x18\xca\x1b\x48\x67\xa1\x94\x7c\xa3\x2f\x36\x88\xc4\xcf\x53\x88\x5f\xc7\x08\xaf\x5c\xed\x98\x5d\x75\x1a\xff\xe4\xc5\xf7\x93\xbf\x5c\x8a\x65\x76\xab\x0a\x48\xaf\x36\xae\x64\x33\xd1\x55\x9c\x34\x08\xac\xff\x9c\xab\xa8\x16\xbf\x96\xc8\x52\x5d\xe2\xb1\x7f\x8d\x95\xae\xf4\x5f\x7d\x3f\x9c\x2c\x4b\xb5\x5c\x95\xa4\x07\xaa\x79\x96\x47\xbe\x53\x1d\x7c\x79\x32\xdf\x94\x7b\xd6\x7e\xe1\x7d\xab\x9a\xae\x3c\x7e\x55\xf5\xd9\x2c\x83\x72\x8f\x86\xbd\xbc\x90\xa5\xd3\xd4\x6d\x41\xb3\x1f\xc7\x5f\xd8\xc7\x58\x3d\x2d\xca\x88\x87\xdd\x4e\xd8\xd7\x40\xfd\x35\x7b\x89\x7e\x2d\x74\x97\x42\x09\xd6\x28\xab\x66\x89\xda\x59\x81\x9f\x01\x22\xe8\x09\x1e\xfd\xbe\x8c\x8b\xaa\xf0\x92\xdb\x35\xe5\x50\x79\x31\xec\xf1\x94\x46\xea\xde\x54\xd2\x21\xde\x6b\x0c\x27\x9c\xfd\x42\x87\x27\x18\xfb\xe5\x89\x18\x36\xb2\x6c\xd3\xf9\x42\x8f\x62\xdd\x2f\x1e\xb8\x45\xea\x4d\xf1\x31\x34\x44\xa4\x10\x25\x41\x31\xa1\xfa\xc1\xdf\x2a\x55\xb5\xa6\xe5\xd7\x09\x80\xf3\xe1\x86\x9c\x3c\x6b\x0d\x40\x66\xfe\xe1\x83\x78\x14\xba\x85\x50\x7c\xed\xd5\xf9\x7f\x5d\x66\xf7\xae\xd7\x9a\x67\xf1\xb3\xcf\x9a\x05\xe3\x2f\x4f\x6a\x5e\xc8\x56\x29\xe8\xa5\xef\x59\xa5\x2c\x0a\xf2\x95\xf6\x31\xdc\x98\x97\xb2\x1d\x74\x9a\x6e\xae\x96\x99\xdb\x1b\x6c\x77\x57\x7c\xa3\xd4\x7b\xa3\x1a\x95\xd9\x0a\x01\x42\xa2\x08\xda\x9f\x4c\xe1\x6d\x74\x36\xe7\x58\x5b\x8f\xd4\x1f\x24\xbb\x59\x56\x95\x04\x0c\x19\x6e\x9f\x79\x7e\xa8\x3e\x77\x14\x17\x65\x95\xcf\xe0\x2b\x71\x6a\x8f\x16\x49\xd0\x7a\x69\xb1\xa9\xf7\xad\xe1\x10\xfb\x26\x10\x58\x53\x02\x3f\x99\x57\x29\x44\x60\x62\xfc\xb7\xe7\xb3\xf2\xb7\xf3\xcd\xf0\xad\x73\xa6\x91\xb0\xd2\xe0\xe2\xfe\xaa\xc9\x40\x82\xe3\x9f\x79\x7a\x85\x93\x93\xd1\x4c\x0c\x43\x34\x19\x75\xfd\x04\x1e\x8a\xa4\x60\x41\xa0\xbd\xc0\x01\x05\xbf\x84\x95\xb8\x1a\xd4\xb3\xfa\x6f\xdd\x00\xb2\x0b\xb6\x74\x6f\x98\xb5\x9a\x92\x51\x6c\x78\x37\x94\xf0\x6b\xc2\xfc\xc7\x36\x21\x9d\x4a\x7f\x04\xa5\x66\x31\xbd\x8a\xfc\x7b\x69\x56\x22\xbf\xb2\x76\x50\x8d\x33\xba\x82\x5d\xb0\x53\x33\xb9\x5b\x7b\xb2\x31\x70\x03\x7c\xe4\xb8\x3f\x56\xaa\x17\x0f\x9c\x81\x46\xf5\x3a\x50\x87\x02\xd4\x5b\xf7\x9f\x5f\x8f\xa3\x16\x35\xd1\x90\xbe\x8e\x3f\x52\x02\x3b\xc6\x40\x0a\xee\xc5\x6b\xd6\xbe\x4c\x85\xad\xfa\x67\x6a\x7b\x47\x1a\xd8\x96\x6f\x04\x1f\x25\x16\x58\xdc\xc4\x8b\xb2\xfb\x13\x75\x35\x53\x59\x58\x13\x8b\x99\xce\x4f\xd6\xd9\x1a\x95\x9b\x7f\xe6\xce\xfb\x1c\x21\xaf\xd2\x0d\x68\xd9\xdd\x15\x7c\x9c\x31\xd6\xe1\x40\xc0\x83\x73\xc9\xa0\xd8\x4c\x8d\xec\x96\x28\xbf\xf9\xd1\x5b\xae\x93\xd5\x75\x56\x42\x8a\x09\x14\xd2\x59\x2a\x89\xe5\xe1\x73\x70\xab\x96\x39\x08\x03\xe6\xb6\x2c\xc3\x9a\xf4\x2d\x07\xed\xc1\x1d\xcb\xab\xf4\x9f\xa2\x60\x37\xdf\xfa\xd6\x8d\xc9\xa3\xd0\x98\x29\x85\x55\x33\xf3\xdc\x07\x55\x5a\xb3\x0c\x17\x50\x7e\x5e\xcc\x65\x0a\xa9\x8c\x45\x51\x51\x20\x1a\x9a\x57\x3d\xfd\x89\x59\xa9\x6d\x04\x3a\x53\x0b\xd2\xa2\x54\x32\xea\x83\xed\x0b\x2d\x8c\x3c\x4e\x9d\x52\x52\x4d\x08\xb9\x46\x81\x0d\xb2\x7a\xc8\xdc\x6d\xe1\x80\xa5\x32\xc9\xae\x29\x65\x08\x3d\xec\x41\xc2\x10\x15\x8c\x5d\x8b\x1b\xb9\x5a\x69\x41\x90\x64\x7d\x8c\x7f\xcd\xae\x6d\x16\x34\x69\x97\xed\x01\x9a\x03\x21\x4e\xd7\x36\x77\x8b\xc2\xc4\x08\x23\xb6\x5c\x46\x9f\x84\x7e\x8a\x23\xba\x8d\xd5\x9d\xb2\xbd\x13\x1a\xea\xab\x67\x0b\x0c\x70\x9b\xe5\xd9\x5d\xa1\xf2\xc2\x4f\x14\xa3\xa7\x94\xcb\x1b\x17\x10\xb2\x96\x2f\xf9\x7c\x41\xd3\x33\xb1\x3f\x58\x7e\xfc\x7b\x85\x85\x07\xd0\xf5\x4d\xe9\xa0\x24\x42\x64\xa8\x1b\xa1\x81\xd5\x8a\x18\xb4\xe7\xfa\xfe\x5d\x61\x35\x3b\x9b\x66\xbc\xf0\x33\x47\xfb\x82\x92\x76\x13\x25\x31\x91\xd5\x4e\x12\x15\xb2\x05\x98\x9b\x53\x13\x44\x4b\xf1\x25\x2e\xef\xcb\xc6\x52\xc6\x69\x4b\x19\x74\x91\xe5\xf5\x4b\x92\xd7\x43\x06\x58\x36\x69\x0f\x88\x00\xe3\xc9\x82\x30\x45\x14\xf0\x3e\x49\xfa\x6d\xeb\xe4\x6b\x0d\xbc\x9d\x6f\x49\x76\xb2\x96\xa5\x9a\xf0\x6b\x3d\x56\xdd\xa2\xd7\x69\x35\xb7\x12\x73\xad\xfb\x82\x99\x29\x9b\x77\x27\x63\xf1\x9b\xd6\x58\xfd\xc5\xb6\x06\x94\x8b\x2c\x5f\xca\xd2\x0f\xec\x94\x85\xe6\x73\x73\x8a\x8f\xa0\xa7\xdb\x23\x8b\x1b\xd4\x38\xd6\x96\x85\x17\xe9\x30\x2f\xc4\x89\xe8\x2e\x0b\xb1\x2b\x46\xc3\xe1\xb0\x37\x28\xb3\x8b\xf8\x5e\x45\xdd\x31\xce\xde\x7a\xf2\xe7\x85\xc6\x5b\xd1\xa9\xd7\x6b\xa2\xf3\x6d\xda\x95\x1a\x73\x15\x58\xb4\xd7\x9f\x10\xa0\x61\x4c\xe0\x9b\x14\x9b\x40\xdb\x78\xb8\xff\x54\xf0\x42\x63\xf7\x29\x76\x73\xa0\xb5\xf0\x99\xa3\x1e\xf3\xfe\x9b\xf8\x6d\x93\xc7\xd2\x6f\x84\x68\xa7\x59\x57\xb8\x5a\xa2\x2c\x5e\xbb\x00\x07\xc3\x4d\x9f\x6d\x24\xdd\xa6\x1b\xcb\x52\x33\x66\x99\x43\xb5\x3a\xa7\x2c\xd5\xaf\x25\x34\x47\x10\x1f\x36\x16\x91\x85\x1f\xa9\xd8\x98\xa4\x68\xb2\x15\x54\x54\x0f\xd1\xe8\x03\x93\x42\xa1\x80\x37\x2b\x82\xdc\xfc\x2c\x45\xa6\x90\x51\x6d\x15\x2f\xe3\x76\xe2\xc2\xd4\xac\xaf\x0a\x93\xd1\x5c\x5e\x5d\x0c\xfc\x42\x2b\x86\xa4\xbb\x19\xe7\x1f\xd8\xf3\x4c\x2f\x1c\xf1\xb9\x4b\x8d\x8d\x22\x13\x37\x50\x78\x51\x97\x70\x07\x38\xa3\x0c\x2d\xc0\x95\xf5\xa3\xd4\x7d\x53\xb8\x84\x4a\xe2\x63\xd5\x4b\x2a\x91\x6a\x6b\xd6\x5a\xe1\x62\x67\x95\x67\xd9\x42\xdc\xe5\xfa\x0e\xa3\xfc\x05\x63\x15\x44\x33\x19\x2f\xb0\xbc\xd9\x6a\x45\x27\x03\x13\x36\xb4\x08\xa1\x2f\x1a\x93\xcd\xe0\xd2\x0a\xfd\x8c\x0d\xdf\x35\xca\x7a\x9d\x6c\x4c\xef\xa4\xec\x4e\xf8\x02\xda\xba\xbd\xf4\x3f\x63\xeb\xa3\x40\x10\x63\x1c\x4b\x5c\x50\x9c\xfd\x96\x8d\x9b\xdb\xb8\x2c\x5c\x93\x8b\x9e\x46\x9d\xea\x01\x88\x0d\xcc\xc3\xea\x20\x61\x37\x08\x5f\xe9\x68\xca\xef\x78\x08\x91\x21\x02\x6b\x89\x1e\x98\x53\x42\x7f\x6b\x0c\x88\x7f\x00\x93\x0f\xac\xb7\x9e\x64\x69\xa2\x60\xdb\x33\x3e\x3e\x19\x2e\x8b\x80\x6d\xcf\x34\xb8\x53\x36\x65\x01\x42\x0a\x92\xc4\x16\xd2\x35\x46\x46\x16\xe0\x7f\xa7\xe0\xc8\xb3\xb8\xfe\x7f\x5a\x92\xc3\x2f\x9c\xe0\x60\x2e\x36\x32\xf4\x7a\x69\xca\x2d\x84\x62\xbc\x42\xf8\x2f\x0a\xb8\x71\x96\xd1\x49\xea\x47\x36\x05\xeb\x03\x47\x00\xd4\x4a\x25\x25\xa6\xcc\xc4\xb5\x4a\x55\x2e\x31\x4c\x03\xa1\x36\x46\x25\xb9\x75\xf8\x3c\xff\x9b\x8c\x0a\xcb\x50\xf7\x4e\x93\x81\x4a\x33\xdd\x7c\xd0\xd8\x25\x4d\x4b\x11\x27\xa2\x43\x21\xfd\x5a\x20\x78\xf0\x35\xbc\x56\x85\x7e\x0d\xff\xba\xd5\x5b\xe8\x4a\x83\xb7\x28\xcc\x2d\xc8\x80\x35\xaa\x1d\xd4\xe0\x4b\x9b\x3d\xd6\xa2\x0b\x0a\x4e\x96\x83\x64\xdb\x03\xde\xaf\x52\x28\x16\x93\x66\x18\xc9\x9b\x2d\xae\x4c\x99\x1b\xb4\xcd\x16\x9b\x62\xf3\x1b\xe2\xf5\xda\x1d\xcf\x20\xfb\x19\x6e\x85\x7f\x69\x0d\xc7\x6f\x00\xcc\x3b\x96\x64\x14\x3c\xde\x5a\x8a\xad\xb3\x05\x40\x26\x5c\x34\xdb\xf8\x8d\x7c\xd1\xe9\x7b\x0e\x47\xfe\x06\x3e\x0f\xdb\x41\x5d\xea\xc3\xcd\x1c\x20\x9b\xd9\xea\x56\xc4\xd6\x2c\xef\xd7\x2b\x26\x6f\x2d\x85\xc3\x5a\x73\x6a\x8f\x54\xb3\x6e\x3b\x57\x2e\x3f\xb5\xe2\xb3\xcf\x8c\x15\x1d\x43\x5c\xde\x05\x8e\x02\x2f\x77\x36\x8a\x23\xaa\x16\x8c\x95\xea\x29\x6b\x45\xa6\x11\xfb\x09\x4a\x14\x52\x10\x79\xbc\x54\xce\xaa\x8d\x36\x99\x7a\xe0\xda\x56\xf9\xa9\x2e\xc6\x30\x60\x2d\x86\x57\x21\xc3\x28\x42\x6e\xc2\xe3\xd4\xa8\x2c\x13\x76\x5e\x93\xf3\x92\x82\xc7\x79\x74\xad\x96\x70\xc0\xc7\xd2\xa2\x31\x63\xd3\x9a\x65\x9c\x56\x58\xcf\x84\x47\x57\x62\x03\x02\x5f\x85\x76\x1c\x0f\x4a\x2d\x7f\x9e\x66\xe5\xe7\x42\x56\x65\xb6\x94\x25\x45\xcb\x81\x5c\x46\x39\x64\xfe\xe2\x62\x57\xca\x91\x25\x0a\x6e\x4d\x60\x88\x11\xce\x40\xbd\x92\x0a\x65\xce\x8f\x71\x1b\xbf\x2d\xca\x7a\x0d\x5b\x5b\x52\x62\x5e\xef\xb4\xa5\xb7\xbc\xb0\x85\xa0\xb7\x99\x66\x96\x52\x74\x55\x93\xcf\xc7\x23\x4d\xff\x1a\x0b\x29\xfb\x91\x4f\xd9\x4d\xa1\xb1\x0d\x24\xed\x0a\x57\x77\xd8\x51\xda\x86\x4a\x7d\x9c\xf8\xb5\xb9\x25\xdb\x78\xac\xce\x6d\xcf\x43\xad\x32\x37\xbc\x7e\xea\x35\xf4\x82\xf7\xc8\x98\x05\x76\x43\xec\x7b\x0f\x25\xba\x25\x93\xe6\x99\xa0\xc2\xcf\x1d\xf2\x7b\xfa\x56\x94\x89\x22\x63\xee\xe9\x85\xf9\xc8\x86\xda\xdf\x38\x19\x13\xff\xa8\x8f\x16\x54\xf9\x89\x99\x67\x1c\x5a\xc5\xea\xf7\xb0\xac\x8b\xb4\x91\x92\xa4\x52\x62\xef\x79\x74\x8c\x5a\xc8\x85\x2d\xc2\x96\x66\xa5\x35\x4c\x39\x55\x04\xb4\x97\x59\x45\x41\x80\x60\x03\x34\xfd\x0d\x4c\x04\xa2\x53\xe8\xbc\x12\x0a\x78\xe0\xfc\x40\x65\x88\xfc\x66\xc5\xc7\x83\xc4\x16\x5b\xd6\x08\x95\x39\x29\x16\xea\x4e\x24\x72\xad\x72\x34\xab\x65\x7e\xe4\xaa\x69\x4f\x74\x9d\x99\xda\x96\x5c\x27\xc4\x8f\x01\x37\x82\xa4\x99\x95\xca\x11\x96\xd3\x5f\x64\x2a\x54\x51\xc6\x4b\xb2\x6b\xdd\x64\x77\x22\xc9\xd2\x6b\x54\xfb\x6c\x15\x7c\x0c\x7f\xd4\x5a\x65\x23\x9d\x18\xfd\x03\xd2\x4d\x96\x05\xcf\xe3\xe4\x12\xa5\x2d\x14\xbb\xfd\x6d\xc4\xf0\xd4\x64\x4f\x71\xca\xbf\xb9\x27\xf0\x7c\x41\x8e\xaa\x17\x1e\x69\x07\x78\xe1\x7c\xee\x08\x37\x84\x53\xd2\x8f\x5e\x18\xe5\xb2\x21\xc0\xef\x5b\xa4\x54\x16\x84\x6f\x7b\x67\xfa\x94\x50\x2b\x1f\x5f\x0b\x68\xe0\x76\x5a\xd7\xf6\xa0\x31\x38\x18\x6b\x20\xdb\xb6\x96\xf4\x9b\x0d\xc5\x49\xaf\x35\x03\x84\x08\x1e\x2d\xa8\xb3\xda\xbb\x65\x46\xf5\x93\x4b\x52\xcd\xac\x44\x65\x55\xeb\xad\xf7\xc7\xe3\x48\x3e\x1f\xd7\xeb\xe9\xbb\x99\x86\x1b\xd6\x7c\xf1\xfb\xd7\xfc\x27\x44\xa3\x0a\x11\x6a\x01\x56\x62\x0a\x1c\x52\xdf\x56\x69\x2d\x88\x91\x59\x16\x1b\xc2\xc3\xc2\xb7\x5c\x24\x88\x71\xba\xb1\x00\x2f\x66\x95\x92\xf9\x35\xd4\x4a\xb4\x6e\xfa\xdf\x8b\xb1\xf8\xf0\x81\xe1\xc4\x7c\x44\xef\x46\xbb\x6b\xcf\x13\x26\xdb\x82\x4c\xa9\x1d\x84\x56\x69\xee\x32\x2c\x72\x8c\x19\x6a\xea\x6f\x95\x4c\xb6\xde\x50\x78\xf1\xfc\xff\x78\x7b\x29\xe7\x65\x25\x93\xbe\x55\x8d\x78\x7c\x36\xfe\x06\xee\x6a\xfb\xb3\x17\x2d\x60\x87\x68\x91\xce\x0e\x61\x97\x25\xfe\x6c\x50\xf4\xe8\xc4\x7e\xa6\x31\x6c\x82\xa7\x3a\x37\xf6\xb3\xe6\xd0\xbe\x10\x4f\x9e\xc4\x3d\xe7\x5b\xc7\x1f\xdf\xc4\x6f\xf9\x67\xde\xc4\x6f\x83\x4a\x2d\xde\x47\xfc\xcc\x17\x1f\xe9\x13\xb0\x51\xd1\xdd\x9a\xd2\xb7\x49\xfa\xc4\xb6\x1b\x90\xe9\x07\x3b\x60\xec\x61\x56\xbf\x84\x61\x81\x2c\x58\x15\xd4\x82\x97\x89\x78\x9d\x93\x93\x93\x8e\xc8\x56\x5a\x76\x84\x7a\x1c\x2e\x4d\x01\x4b\xd1\x41\xcb\x81\x79\xa6\xf2\xb9\x17\xa3\x47\x21\x68\xad\xdd\x63\xf4\x0c\x97\x32\x7f\x6f\x6e\x4a\x13\x0f\x82\xe5\x49\x39\xc9\x61\x12\x37\x0b\x99\x2d\x48\xf9\xab\x73\xb6\xcf\x3f\x1a\x2c\x40\x5d\x0f\xfc\xeb\x52\x49\xad\xfa\xf1\x25\xf3\x17\x2c\x46\x5c\xe1\x5e\x4b\x02\x8d\x6c\x53\x9f\x1f\xa8\x31\x35\x49\xf5\xdf\x91\xff\xc1\x03\x63\x88\x8c\x23\x95\x96\xf1\x62\xed\x87\x7f\x39\x54\x30\xd7\x26\x14\xff\x80\x3b\x97\x8a\x03\x18\x79\xc2\xc8\xe4\x8b\x38\x51\xcf\x92\x38\x75\xd6\x38\x93\x70\x05\xdd\x00\xb7\x3f\x59\xd4\x24\xa6\x1e\x3d\x16\x9e\xaf\xbe\x5d\xa1\xb1\xa6\xed\x8a\xef\xca\x38\x89\xcb\xb5\xe7\x2e\x5c\xe5\xaa\x2c\xd7\xa6\x84\xaf\x29\x62\xc2\x3b\x70\x2d\x65\xd9\x05\x8c\x7a\x95\x8c\xf4\x74\xb2\x05\xa1\xfa\xe4\x44\x74\x30\x39\xb4\x13\x1e\x03\x18\x60\x19\x28\xa8\x80\x65\x2e\x4e\x28\xa1\x9a\x00\x7f\xe1\x7e\x95\xf9\x1a\x45\x73\x88\xe0\x2a\xa9\xa0\xd0\x60\x29\x57\x5d\x3b\xa9\xae\x9e\x8a\xf9\xc0\x9f\x2e\xbf\x7e\x35\xc0\x5d\x8d\x17\x6b\xfd\xd3\x47\x03\x0f\xf9\xe7\xda\x06\x38\x89\x11\x73\x20\xb8\x76\x31\xa4\x2a\xdd\xc8\x42\xf3\x4f\xe8\x2d\xde\x47\x53\x98\xde\xc6\x6c\xb1\x10\x7a\xb7\xcb\x42\x64\x77\x29\x24\x2f\x19\xef\x1e\x03\x05\xb1\x46\xae\xff\xb8\xbe\xd2\x20\xa5\xf6\x5a\xc6\xa9\x56\xaa\x29\x0e\x96\x3e\x05\x8a\xb5\xf9\xd6\x20\xc0\x18\xac\x18\xba\x08\xae\x79\x4d\x25\xe3\xb5\x08\x0a\x2a\x19\x7d\xb5\x79\x70\x78\x99\xe0\x59\x3a\x39\x71\x9c\xab\x49\x97\xd8\xdd\x15\x67\x36\x49\x70\x9e\x2d\x97\x99\x6b\xef\xbc\x5e\xa9\x82\xca\xe3\x72\x15\x52\xa6\x1d\x34\xa6\x61\x1d\xa9\x95\xc9\xfe\x0d\xea\x48\x31\xfa\xd1\x97\xa2\xb9\x28\xea\xb7\x43\x73\xdd\x2b\x4d\x20\x29\xd6\x74\xb3\xe7\xf7\x2b\xaa\xe3\x66\x1f\x40\x1d\x37\xf1\x0c\xfb\x59\x5e\xf1\x4a\x33\xdd\x8e\x39\x3f\xfa\x85\x94\x87\x46\xe2\xa0\x6b\x55\x42\x44\x74\xfe\x22\x9b\x83\xd0\xf0\xae\x3b\xea\xb5\x84\x4f\xd2\xc9\xc0\x99\xc3\x20\x48\xee\x87\x6c\x37\xfc\xc9\x2d\x66\x33\xd3\x77\xcc\x5e\x5f\x10\xff\x1c\x6e\x8e\x05\x5f\x98\x95\xc0\x88\x7a\xf8\xed\xbf\xea\x2f\xff\x15\xcb\xfa\x41\x08\x1d\x84\x29\x5f\x3d\x2e\xf3\x2a\x2e\x6e\xae\x1e\x87\x17\xcd\xbf\xe4\x5e\xb0\x92\xeb\xa7\xdd\x0e\xbf\x06\x8e\xdf\x24\x49\x05\xfc\x3d\x38\xdf\x90\xa7\xd5\x70\xb6\x7f\xa6\x23\xf4\x33\x1c\x20\xba\x01\xe8\x00\x35\x69\x44\x26\x0e\x09\x90\x09\x8d\x59\x80\xfb\x82\x52\x64\xfa\xc5\x61\x90\x0f\xc4\x15\x35\x9d\x1c\x29\xa2\x38\x2f\xd7\xe2\x06\x53\xa3\x9f\x97\x48\x5d\x85\x57\x24\xaf\x8f\xb1\x50\x60\x06\xc0\x4e\xf4\xea\x5e\x2e\x35\x6f\xb6\xe6\x65\xfc\x8c\x6d\x9c\x60\xf7\xd2\x8f\xb3\x6f\x51\x66\x61\x76\xcf\x21\x5e\xf9\xb5\x85\x05\x0f\xd1\x9f\xa9\xd7\x39\x10\x62\x68\x2a\x09\xd3\x4f\x78\xc3\x90\xf3\x8e\x32\x58\x5d\x52\x6a\x5f\x8c\xa0\x11\x46\x49\xe5\x22\x73\x9c\x79\x91\x09\x73\xe4\x6d\x01\x07\x73\x02\x26\xe6\xfe\xa1\xe9\x23\x9f\x12\x57\x8f\x3d\xfc\xe2\x45\x7e\xf5\x78\x6b\x12\xad\x6f\x3a\x27\x57\xb7\xf8\xa6\x9c\x2e\xa3\xb4\x9c\x63\x8f\xec\xd6\x18\x36\x4d\xb6\x88\x96\x13\x1b\xda\xe5\x49\x08\x6f\x18\x92\x9f\x88\xf1\xdb\x9a\x48\x81\x24\x02\x35\x11\xba\xbb\xdd\x37\xff\xb5\xfb\xf6\xc9\xb3\xab\xab\xe8\x49\x0f\xfe\x7f\x75\xd5\xfb\xea\x77\xbb\x41\x90\xb2\x7e\xf1\x2b\xfd\xff\x37\xa3\xb7\xfa\x34\x7c\xf5\xd5\x57\x9d\x66\x1b\xee\xf7\x39\x94\x63\x73\xb6\xdb\x8c\xbb\xe8\x49\xaa\xda\x0a\x99\x64\xc2\xf3\x0c\x15\x08\x34\x2c\x17\xa4\xb5\x49\x1b\x3d\x63\xc6\xd4\x4e\xd1\x4b\x99\xbf\xf7\x03\x8d\x88\xc0\xb5\x68\x53\x95\x2c\x98\xa0\xcd\xf2\xa4\x49\x0e\x4d\x37\xb0\x5b\x01\xfb\xf6\x4f\x11\x16\xdd\xe1\x41\x25\x26\x80\xaa\x28\xb3\x55\xbb\x11\x43\x73\x1e\x83\x3b\x6b\x8d\x60\xc8\x84\x3e\xad\x19\x17\x51\xb7\x42\x26\x98\xfc\x82\x06\xe5\x3e\x36\x9b\x54\xec\x5e\x83\x93\x80\xbf\xe9\xa5\xae\xb7\x5b\x53\x4d\xa6\x6c\xe3\x7e\x98\x32\x58\xff\xfa\xfd\xd8\x8a\x28\xb1\x58\x70\xa3\x05\xbb\x01\x03\xe8\xfe\xf3\x31\xb0\xbb\x2b\x2e\xbf\xfe\xee\xdb\xe9\xb9\xb8\x78\xfe\xe2\xfc\x99\x48\xe2\x59\x94\x95\xbb\x3f\x14\xbb\x49\x3c\x7b\x57\x95\x8b\xe3\xc1\x0f\x05\x0c\x9b\x66\xab\x75\x1e\x6b\xbe\xda\x9d\xf7\xc4\x78\x38\x1a\x03\xd7\x9c\xde\xe4\xd9\x32\xae\x96\xe2\xeb\x4b\x31\xa9\xca\x9b\x2c\x2f\x06\x62\x92\x24\x02\xc6\x82\x8b\x4a\xe5\xb7\xa0\xee\x69\x55\xa7\x70\x21\x29\x45\x56\xe5\x73\x6a\xfc\x1e\x17\xe2\x3a\xbb\x55\x79\x6a\xca\xeb\x9e\x5e\x9e\xed\x14\xe5\x3a\x51\x22\x89\xe7\x2a\x35\xa9\x5e\x26\x30\x65\x77\x17\xdb\x4c\x99\xbb\xff\xc5\xf3\xe9\xf9\xab\xcb\x73\xb8\x91\x06\x7a\x5f\x3b\x55\x81\x1a\xc4\xbc\x24\x27\xe7\xae\x78\xfd\xf5\xd9\xd7\xdd\x48\xde\xc6\xd1\x4c\xa5\xbd\x67\xe2\x7b\x13\x7f\x49\xec\x57\xa5\xf3\x2c\xa2\xdc\x17\xe0\xe1\xa6\x5a\xbd\x8a\xfa\x00\x20\x57\x54\x4c\x1e\xf7\x9a\xaa\x4b\xa7\x98\x1c\x17\xa7\x3b\x26\x30\xd0\x2f\x73\x0f\x2b\x87\xf7\x6f\xca\x72\x55\x3c\xdb\xdd\xbd\x8b\xdf\xc7\x83\xbb\x1b\x59\xde\x5d\x0f\xb2\xfc\x1a\xfe\xbd\x8b\xf7\xee\x39\xcd\xc1\x1b\x6f\x26\x36\x28\x56\x6a\xce\x5f\xf4\x64\x57\x8c\xb4\x59\x54\x89\xf8\xee\xf5\xc5\xce\xb1\x88\x94\x46\xad\x27\xd2\x7c\xf7\xfa\xe2\xf8\x0c\x1f\x37\xd0\x0d\xe5\xdd\xbb\x72\x42\xb3\x75\xa9\x0a\xcc\xb9\x27\x3c\x5b\xd7\xbd\xfa\x5b\xa5\x4c\xe9\x4e\x20\x2e\x18\xfb\x42\x0f\x35\x85\xc7\x08\x5c\x0c\xc1\x3c\xd7\xb9\x82\x62\xd8\x91\xc2\xc6\xff\x62\xa6\x34\xa6\x71\x8e\x11\xf4\x26\x71\x10\xbe\x14\xc3\x01\x23\xe4\x48\x7d\x03\xaf\x04\x80\x93\xec\x4e\xe5\x62\x06\x64\x90\xa5\xcc\x60\xef\xbe\xb2\x09\x2e\xbc\x7e\x0a\x6f\x23\xe0\xb0\x27\xde\x1c\x3a\xa3\x48\x94\xb9\x09\xa5\xb2\x94\x7d\x51\xca\xf7\x90\x4c\x92\x6a\x0e\x38\xc7\x44\x14\x0c\x1e\x85\x6c\xc6\x55\xae\x6e\xe3\xac\x42\x21\x05\x7a\xa5\x17\x65\xae\xe4\x12\xe4\x04\xdb\xa2\x0a\xa9\x4d\xe5\x75\xe6\x7b\x69\x2d\xc8\x39\xbe\x0e\xc5\x61\xf4\xe0\xbe\x2b\x8a\x6f\x24\x78\xa7\x7e\x58\x99\xe4\x92\x29\xb3\x68\xe9\xd7\xf8\xa8\xd2\xb8\x56\x53\x5f\x63\x46\xcc\x54\x79\xa7\x54\x2a\x86\xf7\xc3\x21\xef\xb4\x3a\xbc\xbf\xb8\x08\x04\x16\x33\x33\x68\xe9\xa0\x67\x46\xdb\x47\xa8\xe0\xba\x90\xc6\xd7\xe8\x90\x15\x5c\x6b\x20\x41\xc6\xc9\x10\x50\xb3\xb3\x50\xcb\x0a\xb9\xd2\xdb\xdf\xc1\x6b\xbe\xc9\x36\x58\x94\x79\x63\x44\x22\xf4\xfb\x25\xcb\xc5\xfc\x46\xe6\xd3\x2c\x52\x93\xb2\x1b\x73\x5b\x44\x48\xbf\x3c\x77\x0d\x47\xcc\xc5\xef\x4f\xc4\xf0\xfe\xe8\x22\xa8\xb8\x0c\xf5\xa6\x0c\x68\x0e\xd6\xcb\x6c\x1e\xde\x4f\x87\x1a\xc0\x5c\x7c\xf6\x99\x20\x50\x67\x3e\xa8\x1a\xa5\xcf\xc5\x8e\xd0\xef\x7d\x11\x8c\xe1\xc7\x6c\x14\xfe\xe8\x93\xf4\xfd\xf1\xb0\x79\x36\xe7\xb5\xd9\x9c\x6f\x35\x9b\xf3\x8d\xb3\x19\x3f\x38\x9b\x96\xe9\x5c\xd4\xa6\x73\x71\xb4\xcd\x74\x2e\x36\x4e\x67\xef\x81\xe9\x8c\x86\xc3\xd6\x09\x1d\xd7\x26\x74\xba\xd5\x84\x8e\x37\x4d\x68\xff\x81\x09\x8d\x87\x1b\x66\x34\xad\xcd\xe8\x6c\xab\x19\x4d\x37\xcd\xe8\xe0\x81\x19\xed\x0f\x1b\xa7\x54\x3f\x01\x9d\xab\xab\x6a\xb1\x58\x44\x9d\x5a\x25\xc2\xe0\x0d\x5c\xcd\x71\x6d\xc3\x4f\x1b\xe8\xcf\xce\x74\x67\x27\x9c\x27\x5f\x68\x37\x78\xf2\xfb\xdf\x8b\x43\xad\xda\x76\x11\x03\xc7\xc3\x1e\x7b\xfb\xe1\xd3\x2e\xd0\x6e\xf8\x87\xac\x84\xfc\x8d\x24\x71\x57\x1d\xf9\x61\x4c\x62\x2d\x96\xd0\xc1\xfb\x07\xf2\x73\x02\x10\x8b\x38\x29\xf5\x35\x5a\x95\xa2\xa8\xf2\x3c\xbb\x46\xbf\x74\x9c\x3b\xcb\xa2\x30\x0c\x8a\xad\xc7\x5f\xce\x17\x7c\x28\x70\x22\xb7\xd0\x70\xcf\xae\x82\x48\xe6\x0f\x1f\x34\xb2\xcf\x8e\x87\x88\x6e\xfb\xa2\x46\xbb\x83\x82\xcc\xe8\xe2\xa2\xd7\xf0\xba\x1b\xf6\x25\x9c\x98\x0b\x3d\xce\xc7\xd5\x06\x1a\x68\x26\x19\xc2\x0e\xc8\x39\x4a\xdf\x61\x74\x53\x98\xde\xc3\x55\xb9\xaa\xca\x81\x3f\x3e\x5c\x38\x9d\xde\xda\x54\xec\x64\xf0\xa2\x1a\xe8\xeb\x78\x4a\x4c\xdf\x01\xe8\x7d\xe1\xbf\xd5\x3c\x47\x6c\x5b\xef\x6d\xdc\x20\x1c\xe1\xe6\xb4\x53\x67\x29\x5b\x4c\x29\x1c\xaa\x2f\x5d\xd8\xaf\x27\xa2\xcb\x16\xfc\xe5\x97\x5f\x8a\xd1\xb0\x27\x3e\x13\xc3\xfb\xbd\x8b\x8b\x5e\x43\xb1\xc2\xe1\xfd\xd9\x14\xdf\x63\xfb\x4c\xc3\x6b\xeb\xf5\x36\xc8\xfd\xe3\x63\xfb\x39\xd7\x12\x57\x96\x41\xb8\x02\xca\x84\x71\x2a\x96\x55\x52\xc6\x3b\x20\x42\xb8\x23\xf2\xad\xba\x8b\xd3\x88\x04\x1e\xac\x8c\xe4\x41\xc1\xa4\x9c\x24\xa3\xdc\x15\x48\xdf\xd6\x20\x06\x5b\xf0\x94\x56\x41\x93\x88\x84\xf1\x89\x8f\xbe\x9d\xdd\x5a\x0e\x72\x55\xaf\x9b\x68\x04\x3d\x27\xe1\x0d\x58\xa9\x3f\xdb\x5e\x60\xae\x3c\xef\x0b\x45\x20\x81\xba\xa7\x9c\xa4\x17\xbb\x42\x0d\x50\x6b\xe4\xbf\x9b\x74\x87\xaf\x68\x19\x8f\xcb\x72\x5a\x8d\xf4\x43\x2b\xbb\xc6\x23\xce\xc4\xc1\x6e\xaf\x47\xef\xe3\x0b\xf5\x0e\x2d\xa9\x11\xc9\xbd\xef\xe3\xfc\x60\xfb\x98\x3a\x1e\xe8\x7a\x67\x50\xa4\x0b\x32\x01\xa5\x53\x94\x6e\x55\x5e\xf0\x46\x64\x46\xc7\xbc\x72\x65\x3d\xf4\x70\x8f\x0b\x08\x30\x6f\x01\xbf\xba\xc3\xf6\x33\xc5\x57\xe2\x7b\xac\xb3\xba\x5a\xa9\xb4\xd0\xec\x0a\x4b\x9f\xbc\x57\xeb\x15\xe8\x3d\x98\x99\x8e\xf1\x7e\x10\xfa\x43\xc1\xec\x30\x1b\x2d\x3b\xca\x39\xdd\x15\xd0\xe9\x51\x1f\x8d\xd3\x97\xdf\x7c\xb5\x91\x78\x5e\x3b\xc5\x15\x22\x70\x35\x6e\x36\xec\x28\xd7\x71\x91\xbc\x00\x63\xfd\x56\x42\xe3\x3e\x31\x3c\xf4\x01\x79\x5a\xc2\x2b\x50\xef\x21\x12\x73\xa4\x45\x34\x81\x9f\x0c\x69\xe2\x67\x92\xef\xf5\x5d\x0d\xcd\x6d\xab\x34\x86\x09\x31\x15\x93\xec\x36\xfa\xd5\xed\x95\x01\xe2\xa4\x35\x71\xdd\xbb\xf9\xe6\x20\x1f\x5d\x5c\x5c\x9c\xf9\xee\x3f\x02\x70\xdc\x00\xe0\xd4\x03\x00\x95\x32\x9e\x8c\xbc\x85\x79\xd7\x99\x9e\x6a\xd4\x30\xd5\x27\xa3\x50\x9e\x71\x13\x8e\xf4\xf7\xa2\xc6\x09\x13\xaa\x2e\xef\xa0\xae\x72\x8d\xa6\xbd\x9b\x6d\xee\xe4\x63\xbc\x88\xec\x4d\xa2\x85\x2b\x7d\x11\x3d\x11\xdd\xc8\x3e\xf4\x45\x14\xaa\x25\xdd\x76\x91\x34\xa0\xee\x81\xab\xa7\x61\x7c\x58\xe6\xda\x89\x13\x73\x7d\x2c\x2d\x27\x20\x34\xda\x0b\x83\xed\x72\x93\x42\xb7\x51\x9d\x0b\x6a\x6d\xb3\xfd\xb6\xa0\x1a\x60\x35\x5d\xfa\xa0\x0d\x7e\xd0\xef\xe9\x7b\xfd\x90\x5d\xcf\x4d\xba\x5d\xfd\x43\x81\x10\xb6\xf1\x4b\xe7\xec\x4b\xa3\x71\xcb\xa7\xc6\xfe\xa7\x76\x3f\xe7\x5f\x33\x42\xdf\xe7\xbb\x5b\x7e\xf2\x82\x7f\xf2\xb8\xe5\x93\x7b\x5f\x04\x5b\x78\x77\x13\x27\x4a\x74\x3d\x53\x0d\x5b\x64\x93\x2e\xb0\x71\x16\xc7\x30\x0b\x9a\x46\xf7\x50\x7c\xee\x40\xf4\x8c\x20\xd5\x0b\xdd\xf1\x0d\x62\x42\x8b\x79\xb4\xbc\x89\xf3\xe8\xdd\x4a\xe6\xe5\x7a\xf7\x6e\x7e\x17\x47\xe5\x0d\xd8\x4b\xef\xe6\xad\xd6\xd2\xfd\x1f\x6f\x2d\xd5\x4c\xf4\x6e\xfe\x4b\xdb\x4b\x79\xab\x08\x76\xf5\x27\xf1\x2c\x87\x0e\xf0\x85\xa0\x58\x5c\xdb\x28\x9e\x30\x31\xf8\xa1\x10\xcb\x2c\xaa\x30\xd9\x3b\xd5\xd7\xd2\x0f\x85\xf3\x76\x67\x79\x7c\x0d\x66\xba\xa0\x19\x28\x25\x90\xe3\x34\x65\xf9\x0c\xef\x60\xb2\x80\xa6\xab\xe5\x0f\x05\x98\x3c\x57\x72\xfe\x5e\x5e\xab\x5d\xf7\x31\xba\x6a\xdc\x94\xd9\x6c\x4d\x29\xb2\x6c\x01\x16\xfe\xaa\x10\xff\xbb\xba\x49\xb5\xf6\x86\xaf\x77\x7b\xc1\x34\xbc\x50\xfa\x45\xa6\xb9\x25\x5c\x9b\xf7\xab\x44\xa6\x34\xd1\x6c\xa9\x0a\xb7\x6a\xbb\x9e\x69\x00\xea\xd9\x55\x58\x52\x4d\xa6\x0d\x1d\x50\xdd\x4c\x64\x1a\x89\xbb\x79\x61\xfe\xd9\x35\x89\xfa\x54\xa8\xf5\xf9\xf9\xf9\xb9\xb8\x2c\x23\x31\x1a\x0e\xc7\x83\xd1\xce\x78\x38\x1c\xf5\xe0\xb2\xfc\x0e\xef\x3e\x27\xfd\x68\xb4\x3d\xdb\xdd\xbd\xbb\xbb\x1b\x64\x2b\x95\x42\x09\x0c\xc0\x5e\x96\x26\x71\xaa\x56\xd5\xac\xd8\x1d\x0e\x8f\x9e\x0e\xf7\x9f\x1e\x1d\xec\xda\x5c\x4a\x8b\xd4\x9b\x72\x99\xfc\x44\x40\x85\x0f\x89\x22\xd6\xc5\x22\xbe\x57\xd1\x0e\xfc\x46\xba\x9e\x88\xd4\x6d\x3c\x57\x45\x5f\xbc\x90\x65\x9c\x3a\x71\x08\x9a\x00\x88\x6c\x3e\xaf\x56\x6b\x9b\x4b\x0b\x70\xae\x1e\xcf\x55\x92\x5c\x3d\x16\xab\xac\x88\x0d\x1e\x31\x12\x0f\x20\xf7\xb5\x74\x9e\x2b\x59\x88\x38\x52\xd9\x75\x2e\x57\x37\xf1\x5c\x4c\xff\xf4\xbf\x19\x70\x0c\xb8\x46\xe0\x5a\x90\x2b\x2a\x2d\x4b\xab\x24\x29\x06\xe2\x79\x5a\x2a\x70\x29\x43\x65\xe0\x72\x6d\xa5\x68\xac\x45\x20\x93\x1d\x1b\x41\x00\x2d\xef\xd0\xbd\x8a\x45\x3a\xba\xa5\x4a\x54\xb9\x5e\x29\x3c\x8e\x3d\x26\xde\x99\xb7\x0b\x61\xfd\x3f\x98\x69\x02\x9a\x87\xf5\x3e\xd8\x16\xb7\xf2\x3a\x57\x40\x2b\x22\x4b\x4d\x95\x05\x0b\x8c\x82\xc0\x65\x74\x2b\xb1\xa2\xd7\xe7\xc6\x40\x5f\x64\x39\xb4\x0e\xcc\xee\xc4\x12\x6a\x1f\xa8\x24\xb1\x98\x2a\x06\xe2\x55\x26\x54\x51\xca\x59\x02\xcd\x60\xd1\xdb\x8c\xbb\x5d\x94\x32\x8d\x64\x1e\x15\x42\xdd\xc7\x50\x74\x4d\x90\xc4\xe7\x66\xf0\x9d\x91\xb3\xd8\x4c\xdc\x3e\x21\xd1\x34\x7f\x59\xc3\x68\x40\xc6\x80\x12\xa2\xf3\xac\x2a\xe3\x54\x41\x60\x2b\xa2\x16\x0b\x4a\x99\xd2\x6f\x7a\x8f\xe1\x44\x40\x78\x81\xde\xad\x99\xba\x91\xb7\xb1\x5e\xad\x2c\xb0\xab\x7f\x01\xc7\x4b\xe4\x55\x42\x31\x02\xac\x23\x21\xa8\x34\xab\x3c\xbb\x8d\x23\x57\x4c\xc2\xac\x66\x9a\xa5\x85\x66\x15\x15\x6b\x36\x77\x91\xe5\x68\xfb\x27\x02\x92\x09\x23\x9f\xbe\xf7\xba\x41\x1c\xf0\x89\x78\x1e\x97\xa6\x06\x05\x9c\xe0\x82\x0b\xf9\x3b\x80\x14\x3c\x00\xb7\xb1\x04\x30\xb8\x2c\xd7\x12\x59\x89\x73\x59\x94\x62\x52\xc4\xa4\x8a\x5c\x54\x49\xf2\x3d\xbc\xd2\xbd\xe8\xf5\xc5\xf7\x5a\x49\xe8\x7e\xdf\xeb\x8b\x3f\xca\x64\x41\xa7\xa9\xfb\xc7\x1e\x86\x1a\xbc\x92\x79\x9e\xdd\x89\xee\x2b\xd9\xe3\xfd\xc3\xb0\x4e\x20\x2a\xac\x05\x96\x4f\xc4\x55\xe4\x94\xf6\x23\xe4\x72\x16\x5f\x57\x9a\xde\xa1\x3a\x17\x6d\x38\x42\x97\x94\x32\x81\x9b\x46\x7b\x5e\x15\x6a\x00\x68\x62\x67\x96\x2e\x18\xb7\x00\x31\x01\xb0\x59\x55\x88\xee\xa4\x07\x60\xe6\xd4\x56\x55\xdf\x19\x00\x7d\x7e\x93\xc5\x73\x8d\x87\x95\x4a\xa3\x42\xac\x2a\xe8\xad\x06\x55\xed\x56\xb9\x5a\xa8\x5c\x51\x2e\xfb\x4c\xce\xdf\xdf\xc9\x1c\xa3\x93\x20\x9a\xaf\x8c\xe9\x8c\xa2\x46\x1c\x43\x3c\xdf\x4d\x5c\x94\x59\x4e\x67\x3e\xcb\xc5\xf7\xaa\x80\x2e\x15\x2b\xa8\xff\x30\x27\x3d\x69\x7a\x93\x65\x70\x10\x91\xb5\x10\x1e\xa9\x55\x5e\xa1\xbc\x55\x41\x14\x21\x14\xa6\xfa\xa1\x2a\x20\x18\x49\xba\x28\x14\xb9\x5a\xe5\xd9\x2a\x8f\xb5\x38\x9d\x64\xe9\x35\xd6\x0f\x2f\xb2\xa4\x42\x87\x2f\x56\x64\x81\xc9\x98\x19\x98\x1c\xc9\x28\x2e\x56\x89\x5c\x13\x3b\xf0\x3f\x2a\x0b\x53\xbb\x8f\xb0\xe4\x2e\x1e\xb3\x40\x80\x11\xdc\x29\x70\x08\x34\x11\xae\x45\xf7\x78\x67\x16\x97\x56\xe9\x63\xb0\xa1\xb0\x01\x7d\x9c\x82\xbd\x3c\x2c\x68\x42\x1a\x1d\xc2\xdb\x99\xa6\x60\x3e\x11\xaa\x30\xa8\x11\xf5\x87\x5c\xa9\xf7\x98\xa1\x36\x5d\xe7\x71\x92\xc4\xf3\xbe\x50\xe5\x7c\x80\xb7\x19\xe4\xd3\xa4\x6b\x51\xae\x57\x96\x0d\xcf\xa9\x8a\xa1\x0c\xd2\xf7\x5f\xea\x23\x9d\x80\x97\x30\x81\x84\x38\x44\x1a\x91\x86\xbe\x28\xf9\xf6\x88\x57\x59\x19\x9e\x92\xee\x2b\x55\x95\xb9\x4c\x88\xec\x07\xe2\x5c\x73\x31\x8d\x5a\x8b\x75\x9b\x81\x14\xc5\x73\xf0\xd8\x49\x06\x56\xa6\x78\x6a\x6d\xdb\x48\x87\xaf\x81\x78\x6e\xf4\x77\xe8\x05\x5d\xde\x28\x98\x2a\x14\x63\x28\xb4\xbc\x85\xc4\xe0\xd6\x09\x89\x76\x65\x06\x8d\x6c\x30\x4b\xeb\x2e\x63\xec\x0f\x6e\x1a\x6c\x7f\x69\xf7\x44\x33\x35\xe4\x5a\x98\x4f\x6c\x53\xea\xcf\x5f\x8a\xcb\x6f\x26\xd3\x73\x4d\xca\x7f\xfe\xfa\xc5\x77\x2f\xcf\xc5\xf3\x57\xaf\xcf\xff\xf0\xed\xe4\x05\x2b\xbf\xa3\x97\x35\x33\x5d\xd2\x99\xa6\x1e\xe9\x9b\xb1\xd4\x07\x0a\x8e\x88\xf4\x37\xfa\x3a\x59\xaf\x6e\x06\xbe\xb8\x83\x30\x2c\x3f\x76\xb7\xc0\x52\xc1\xc1\x94\x45\x11\x5f\xa7\x0e\x12\x63\x69\xb8\x62\x00\x90\xe2\x6e\x78\x4c\x93\xb8\x43\x0c\x79\x85\x18\x4a\xe1\xc8\xd5\xd9\xdd\x5c\x0e\x22\xb5\x59\x2c\x64\x19\x17\x0b\x39\x2f\xb3\x7c\x6d\xea\xf4\xeb\xcd\x80\x9c\x30\x43\x51\x9a\xad\x43\x1e\x19\xbe\x6b\xee\x38\xb4\x86\xe1\x35\xe7\x38\x35\x55\xe3\xb9\x9b\xeb\xfb\x46\x0e\xc4\x04\x93\x7c\x96\x99\x3e\x48\x7d\x67\xd5\x53\xf3\x18\x4c\x44\x88\x66\x9f\xea\x38\xc5\xb1\x6d\x34\x53\xab\x6d\xc5\x6c\xed\x1f\x68\xc0\x7d\x61\xf6\x6e\xad\x20\x0a\x54\xa6\xc5\x1d\xae\x65\x6d\xaf\xb0\xb5\xe9\x81\x6e\xaf\x37\x27\x7f\x9a\x3b\x48\xdf\x6f\x33\xa8\x78\x8b\x4d\xaf\x06\xe2\x52\x95\xa5\xd9\xcd\x6a\x05\xbc\x54\x0b\x35\x0e\x07\xe6\x2c\xd9\x8b\x34\x5b\x90\x30\xd2\x70\x4f\x03\x18\x08\x70\x21\x01\x05\xa2\xfd\x72\xb0\xa3\xc9\x54\x26\xeb\x82\x7a\x08\x42\xb7\x01\x2d\x90\xc9\x26\x71\x01\x99\xc5\xac\x2a\xb1\x98\xaf\x19\x47\x48\x92\x36\xba\xbd\x0f\x77\x6f\x69\x1b\x22\x49\xd0\x96\xec\xd9\xf4\x49\x14\x0a\xe4\xde\x66\x70\xb3\x9b\x04\x44\xb1\x90\x79\xa3\x44\x4c\x96\x22\x10\x63\xe9\xef\xbb\x54\xba\x77\xb7\xcc\x47\xa3\x5d\xc7\x92\x9c\xca\x20\x76\x76\xc4\x78\x38\x3c\xda\x19\x1e\xec\x8c\x0f\x45\xd7\xac\xeb\x60\x00\x75\xb9\xa9\x28\x80\xc6\x55\x51\x50\x08\x7f\x55\xa8\xbe\x98\x67\xab\x75\x5f\xab\x43\xf1\x62\xdd\xa7\xb4\x65\xad\x66\xcd\xaa\x52\x39\xc5\x6e\x51\xde\x19\xa9\x87\x18\x91\xbe\x03\x57\xd0\x17\x37\xc5\x84\x6f\x48\x74\x54\x70\x55\xeb\x2b\x7b\xb6\xd6\x62\x89\xa6\x2a\x3c\xbb\x88\x1e\x73\xa5\xcc\x13\x19\x2f\x51\x7e\xbe\x93\xb9\x1e\x17\x2b\x8a\x58\xc9\xd5\xb5\xde\x7a\xea\x36\xca\xbe\xee\x70\xf5\x42\x42\x34\x12\x19\x47\x9f\x71\xdc\xcd\x93\xc1\x5c\x2e\x07\x72\x3e\xa8\xde\xef\xfe\xbf\xe5\xf5\xfb\xf1\xc1\x6e\x35\x77\x8a\xc3\xbc\xa6\x8c\xf9\x7a\x94\x35\xa1\x1b\xc9\x08\x13\xeb\x92\x6a\x99\x12\x03\xc1\x16\x89\xcf\x2f\xbf\x16\xa3\xe1\xe1\xfe\xa1\x23\x1c\xc7\x19\x35\xb0\xc2\x69\x57\x62\x87\xc2\x56\x12\xc6\x6b\x44\xf7\xbb\x27\xe8\x23\x02\xda\xa8\x7d\x63\x38\x30\xef\x7e\x0d\x12\xc3\x74\xb8\x3b\x1d\xc1\xd1\xc9\xb3\xc4\xbb\x84\xd3\x48\x9c\x9d\xbf\xa0\xd2\x6b\x4a\x62\x31\x1c\x2f\x8d\x42\xc3\xdb\x19\x59\x80\xaf\xb2\x74\xa7\x58\xc9\x39\x9c\xd9\x34\xd2\xb7\x6f\x82\x72\xc6\x3c\x5b\xce\x50\x7e\x65\x1f\xe8\x62\xee\x78\x22\xf4\x2d\x71\xad\xf9\x1b\x10\xd6\x4b\xdb\x9d\x23\xcb\xc5\x4b\x5b\xb1\x2f\x3c\xed\x3d\x93\x4a\xda\xbe\xc0\xcb\xaf\x2f\x5e\x8b\x3f\xfe\xe5\x9b\x3f\x9e\xbf\x42\xac\x4c\xce\xda\xb0\x32\x0a\xb0\x42\x91\xa8\x0f\xcf\x76\xba\x68\x9d\xa0\x59\x86\x46\xc5\xff\x3d\xff\xf6\x6b\xf1\xfd\xf3\xb3\xd7\x7f\xa4\x0b\xad\xfb\xdd\x93\xf1\x70\x78\xba\xc5\x2a\xfe\x28\xd3\xeb\x2a\x11\x7f\x92\xcb\x4c\x40\x9f\x93\x44\xdc\x66\x77\x2a\xc1\x1d\x32\x81\x3f\x69\x91\xa5\x32\x2d\x0b\x0d\x78\x34\x3a\x1c\xee\xe8\x3f\x2e\x2e\x0c\x7c\x33\x97\x0d\xc8\xa2\x8d\xdb\x28\xd1\x1a\xf9\x5b\x6f\x0d\x7b\xac\xa5\x74\x23\x8c\x5f\xd8\x75\x5b\x44\x69\x71\xce\x6a\xf4\x16\x4f\xaf\xd5\xfc\x26\x05\xe5\x82\x52\x4d\xff\xc7\x68\xd4\x82\x0d\x03\x71\x6c\x67\xdb\x28\x65\x73\xe2\xcd\x15\x64\xf6\xa6\x7e\xb0\x52\x6c\x41\x21\x37\x98\xfe\xf0\xde\xbd\xbe\x48\xe4\x35\xc8\xbb\xa9\x9c\x25\xc4\x5e\xd6\x6d\xfb\xe3\xa6\x02\x46\x2c\xb5\x94\x75\xfa\x8e\xd3\x79\x52\x81\x66\xab\xf9\x11\x44\x6e\x6a\xc8\x70\xc6\x8f\x8f\x0f\x9e\xee\x8c\x60\x0b\xbf\xff\xc3\x8b\x7d\x8b\x33\x26\x32\xd8\x1b\xa4\x76\x36\x8d\xa4\xd9\x32\xb7\x51\x58\xd3\xde\x17\x93\xb1\xd6\xa3\xf1\xf9\xf8\x38\x33\x02\x73\xcc\x38\xd1\xc0\xb2\x36\x62\x9c\x27\xa6\xf5\xf2\xee\xae\xf8\xde\xf2\x2e\xcd\x87\x1c\xb8\x81\x19\x3d\x48\x2b\xd2\xe0\x4c\x03\x3c\xff\xad\xda\xea\xdc\x9b\xf4\x53\xed\xed\x0b\xbd\x51\x26\x0f\x98\x7a\x9f\x43\x79\xf0\x07\xa8\xc2\x41\x6e\xd8\x7d\xde\x70\xd6\x9b\x61\xfa\x00\x58\x36\x5f\x06\xcf\x4c\x7a\x6c\x00\x5e\xa2\xcd\xd0\x14\xee\x4c\xb3\x74\x27\xbb\x55\x79\x22\x57\x2b\x72\xe5\xa9\xfc\x56\x26\x85\xf9\xb1\xa8\x9d\x47\x00\x63\xea\x6d\x80\x4c\x75\xf5\xb8\x4a\xe3\x42\x95\xe2\xc9\x5c\x96\x27\x2f\x15\xfd\x99\xe2\x9f\xd3\x85\xd8\xd1\x3c\x4f\x20\x43\xd0\xec\x40\x00\xd3\x11\xf3\xab\xc7\x0c\xc9\x86\x35\x9f\x88\x37\x68\x16\x7e\x23\x86\xf7\xc3\xbd\xe1\xb0\x0f\x7f\x1e\x5e\x88\xb7\x7d\x7c\xb6\x7f\xbc\xd7\xc7\x3f\x0f\xd9\xb3\x63\x7a\xf6\x54\x98\x6e\x82\xf0\xc3\xc1\xd3\x11\xfc\x70\x70\x7a\x66\x07\x1f\x9c\x5e\xd0\x33\x07\xf4\x60\x4a\xe3\xa6\xe3\x00\xc0\x74\x9f\x7e\x38\x60\x83\x8f\xe8\xd9\x91\x7d\x76\x48\x33\x3d\x1c\xee\xf9\x00\x0e\x47\xf4\xc3\xc8\x01\x38\xdc\x3f\xc5\x67\x07\xe7\xee\xd9\x11\x8d\x3b\x1a\x06\x00\xce\x0e\xf1\x87\xf3\x7d\x37\xf8\xfc\x88\x9e\x1d\xb3\x67\x13\x7a\x76\xe6\x03\x38\x1a\xe2\x7a\x8f\x86\x6e\xbd\x47\x23\x5c\xef\xd1\x68\xe4\x9e\xed\xe1\x0c\x8e\xf6\x27\x01\x80\x09\xce\xe0\xe8\x74\xe8\x06\x9f\xe3\x12\x8e\x2e\xf6\xec\xb3\xa7\x43\x04\xfa\x74\x18\x20\xf1\xe9\xde\xb4\x4f\x7f\xba\xc1\xfb\x34\x78\xff\x98\x3d\x3b\xa3\x67\xc1\x12\x9e\x1e\xd0\xe0\x03\x87\x83\xa7\x87\x63\x7c\x76\xc8\x66\x70\x4c\xe3\x8e\x47\x01\x80\x53\x9a\xc1\x29\x9b\x01\xed\xf9\xd3\x29\x03\x3a\xa5\x19\x4c\xc3\x19\x9c\xd3\xd7\xce\xdd\xd7\x26\xb4\xde\x09\xac\x97\x9e\xd1\x52\x27\xb0\x54\x06\x60\x42\xeb\x9d\xec\xb3\xc1\xfb\x47\xf4\xec\x98\x3d\x3b\xa5\x67\xc1\x0c\x26\x44\x20\x93\x23\xb7\x65\x13\x5a\xef\xe4\x98\x01\xa5\xa5\x4e\x4e\xc3\x19\xd0\x7a\x27\x8c\x94\x27\x44\xca\x93\x29\x9b\x01\xe1\x60\x12\xe2\x60\x42\x38\x98\x30\x1c\x9c\x12\x0e\x4e\x87\x6e\x56\xa7\x84\x83\xd3\x10\x07\xa7\x7b\x17\xf4\x83\xa3\xc4\x53\xc2\xcb\xe9\x3e\x03\x4a\x74\x70\x1a\xe2\xe0\xf4\x00\x29\xf1\xf4\xc0\x9d\xfd\xd3\x63\x9c\xd5\x29\xc3\xc1\xe9\x14\x71\x75\x3a\x0d\x0e\xd3\x29\xad\xed\x74\xea\xf8\xc1\x74\xef\x1c\x9e\x4d\xf7\x1d\x79\x4f\xf7\x0f\xe9\xd9\xb1\x0f\x60\xba\x3f\xa1\x1f\x18\x80\x83\x03\x7c\xc6\x66\x35\xa5\x5d\x98\x86\xbb\x30\x25\xee\x33\x65\xdc\x67\x3a\xa5\xaf\x4d\x19\x80\x29\x01\x08\x77\x61\x4a\xbb\x30\x65\xbb\x70\x46\x48\x3c\xdb\xe7\xcf\xce\xe8\x59\x00\xe0\x6c\x8a\x4b\x38\x9b\x4e\xdc\xe0\x33\x04\x7a\x76\xb6\xcf\x9e\x1d\xd2\xb3\x43\x1f\xc0\xf9\x1e\x7e\xed\x7c\xcf\xed\xf9\xf9\xde\x3e\x3d\x73\x40\xcf\x89\xbc\xcf\xf7\xcf\x03\x00\xa7\x04\xe0\x94\x01\x38\x25\x00\xa7\x4f\xd9\xb3\x53\x7a\x16\x20\xf1\x7c\x8a\xfc\xfe\x9c\x6d\xe3\xc5\x08\x9f\x5d\x8c\x1c\x80\x8b\x3d\xdc\x99\x8b\xbd\x03\x1f\xc0\xc5\xde\x11\xfd\x70\xc4\x06\x3f\xa5\x67\x0c\xc0\x11\xce\xf4\xe2\x28\x58\xc2\xc5\x31\x52\xd8\xc5\xb1\x43\xd8\xc5\xf1\x21\x3d\x63\x40\x9f\xd2\xb8\xa7\x47\x01\x80\xa7\xf4\x35\xc6\x91\x2e\x88\x0e\x2e\x1c\x1d\x8c\x86\x63\xd8\xc6\xd1\x70\xcf\x27\xe5\xd1\x70\x6f\x4c\x3f\x8c\xdd\xe0\xbd\x43\x7a\x76\xc4\x9e\x3d\xa5\x67\x4f\x03\x00\x07\xc7\xf8\xc3\x81\x5d\xaf\xbe\xa3\xe1\x99\xbe\xa6\xcd\xb3\xbd\x03\xa0\x58\xfd\xa7\x0f\xe0\x68\x84\x33\x38\x1a\x59\x1c\x8c\x8e\x68\x56\x47\x7b\xec\xd9\x01\x3d\x3b\xd8\x0b\x00\x1c\xd1\x0f\x47\x7b\x6e\x30\xd2\xc1\xe8\xe8\xf4\x80\x3d\x3b\xa2\x67\x67\x01\x00\x44\x98\xfe\xd3\x0d\x9e\xe2\x7a\x8f\xce\x18\xd0\xb3\x33\x7a\x16\x00\x38\x1e\x02\x85\x8d\x8e\x87\x96\x90\x46\xc7\x13\x04\x70\x3c\x71\x78\x79\x3a\x46\xbc\x3c\x1d\xfb\x57\xdb\xe8\xe9\xf8\x88\x7e\x38\x76\x83\x09\x07\x4f\xd9\xce\x3c\xa5\x5d\x78\xba\x77\xea\x03\x98\x8c\x10\xc0\x64\xe4\x00\x9c\xa2\x30\x31\x3a\x1d\xba\x25\x9c\xe2\x01\xd3\x7f\xfa\x00\x4e\x69\xcf\x4f\xdd\xc9\x1b\x11\x07\x1e\x9d\xba\x0b\x77\x74\xba\x8f\xb3\x3a\xdd\x0f\x96\x70\x7a\x88\x38\x38\x65\xbb\x70\x86\x0c\x74\xc4\x78\xc4\xe8\xec\xe2\x1c\x9f\x5d\xf8\x74\xa0\xa5\xb9\x3e\xfe\x69\x89\x66\x3c\x1c\x4f\xf0\xd9\xf8\xdc\x3d\x43\xe2\x1a\x0f\x0f\xf7\x02\x00\x87\x34\xf8\x90\x01\x38\xa3\xc1\xe7\xf6\xd9\x1e\x01\xdd\x1b\x8e\xfd\x19\xec\x0d\xf1\x30\xed\x0d\x9f\xda\xe9\x4e\x8e\x87\x80\x17\xfd\x27\x7b\x76\x4a\xcf\xfc\x5d\x98\x1c\x8f\x0f\xf0\x87\xb1\x1d\x7c\x71\x3a\x82\xf5\xea\x3f\xed\xb3\x73\xdc\x99\x8b\xf3\xa1\x3f\x83\x8b\xf3\x31\xfd\x30\xde\x73\x83\x2f\x2e\xfa\xf4\xa7\x7d\x76\x71\x01\x33\xbd\xb8\xb8\x08\xe8\xc0\x48\x13\xfa\x2f\x6e\x1f\x86\x93\xe1\x81\x79\x7a\xc8\x9f\x4e\xcd\xd3\x8b\x10\xcc\x1e\x9d\xea\x09\xa3\x87\xe1\x04\x6f\x5e\xf8\x8b\xdb\xd0\xd1\x21\xd2\xde\xd9\xe8\x30\xe0\x0d\x67\xa3\xa3\x3d\xfa\xc9\x5d\xab\xfa\x1f\x07\xe6\xe9\x29\x7b\x3a\x99\xd0\xd3\x49\x70\xbc\xce\xc6\x44\x74\x67\xe3\x7d\xcb\x0f\xce\x87\x43\x5c\x2a\xfc\x85\x3d\x45\x14\x9e\x0f\x87\x47\xfe\xa2\xce\x87\xa3\x21\xfd\x34\xd2\xd4\x70\x95\xbe\xfd\x31\x0a\xcd\x03\x8a\xd9\x26\xcd\x06\x8c\x26\x3b\x13\xb1\x43\x2a\xce\x0e\xa9\x38\x3b\xa4\xe2\x70\x5d\x46\x32\x6d\x8e\xeb\x32\xc3\x09\x5e\x25\xc3\x89\xbb\xf4\x86\x93\x7d\x7a\xb6\xcf\x9e\x1d\xd1\xb3\x40\xf4\x18\x22\x9a\xf5\x9f\x6c\xf0\x39\x3d\x73\x9a\xc4\xf0\x14\xaf\x9c\xe1\xe9\x7e\x00\xe0\xf4\x90\x7e\x60\x00\x48\x4e\x19\x32\x71\x64\x48\xd7\xd0\x70\x1a\x5c\xfc\x74\x26\xf5\x9f\x6e\xf0\x19\x4d\xf7\xec\x98\x3d\xa3\x59\x9d\x07\x62\xf8\xf0\x9c\x20\x9f\x3b\x41\x67\x78\x7e\x4c\xcf\xd8\xac\xce\x69\x56\xa1\x2e\x33\xbc\xa0\x19\x5c\xb0\x19\x5c\x8c\xe9\xd9\x1e\x7b\x46\xb3\xba\x98\x84\x00\x08\xf2\xc5\x94\x0d\xa6\xe9\x5e\x38\x24\x8e\x48\xae\x1d\x0d\x83\x25\x8c\x48\x73\x1a\x31\xcd\x69\x34\xda\xa3\x67\x7b\xec\xd9\x29\x3d\x3b\x0d\x00\x8c\x11\x07\xa3\xb1\x93\x12\x46\x63\x1a\x3c\x3e\x75\xcf\x48\xca\x1a\xed\x05\x1a\xe5\x08\x4f\xb8\xfe\x93\x0d\x46\xa9\x72\xc4\xb4\x8b\xd1\xfe\x3e\x3d\x0b\xe8\x60\xb4\x4f\x00\xf6\xd9\xd7\x48\x5a\x1c\x31\xb9\x76\x84\xf7\xf6\x70\x74\x10\xce\xe0\x90\x96\x70\xc8\x96\x70\x48\x4b\x38\x64\x40\xa7\x88\xd8\xd1\x34\x90\x9e\x46\x44\x48\x23\x46\x48\x23\x12\x41\x47\x67\x6c\x09\x67\xb4\x84\xb3\x70\x09\x24\x9b\x8e\xce\x0e\xd9\x60\x5a\x16\xa3\xc4\xd1\xd9\x84\x9e\x4d\x42\x00\x53\xfa\xc1\xd1\xc1\x98\xb4\xcc\xf1\x81\xdb\xda\xf1\x21\x3d\x3b\x0c\xe8\x60\x4c\x86\x81\x31\xd3\x1e\xc7\xa4\x4d\x8d\x99\x61\x60\x8c\xe2\xc8\x70\x3c\x3d\x0d\x01\x9c\xd1\x0f\x0e\xe3\x63\xc2\xcb\x98\xe1\x65\x4c\xcb\x1a\x9f\x85\x00\xce\x08\xc0\x19\x07\x70\x41\xcf\xdc\x71\xde\x23\x1b\xc8\xde\x24\x58\xc2\xde\x64\x8f\x7e\x70\x02\xef\x1e\x89\xe6\x7b\x53\x87\x83\xbd\x29\x8d\x9b\x06\xd6\x95\x7d\x3a\x24\xfb\x4c\xf9\xdb\x27\x7b\xc7\xfe\x3e\x33\xd9\x10\x62\xf7\x0f\x46\xc1\xc5\x3f\xa2\x4b\x7e\x34\x74\x17\x3f\x1e\xa6\xf1\x70\x74\xc8\x9e\x1d\xd3\xb3\xa7\x21\x80\x29\xfd\x70\xc6\x44\x0f\x02\x3a\x1e\xb3\x67\xfb\xf4\xec\x28\x00\xb0\x47\x83\xf7\xd8\x0c\x50\x7e\x1b\x0f\xf7\xf6\xd8\xb3\x03\x7a\x76\x10\x02\x20\xe1\x67\xef\x94\x0d\x3e\xa7\x67\x4c\xf8\x39\xa2\x19\x1c\xed\x07\x00\x8e\x2e\xe8\x07\x26\xfc\xa0\x5e\x3f\x1e\x3a\xed\x62\x3c\x9c\xd0\x52\x27\xbe\x32\x34\x1e\x0d\x11\x61\x23\x27\x37\x8c\x47\x28\x36\xe8\x3f\xd9\xb3\xa7\xf4\x2c\x40\x22\xb1\xaf\x31\x63\x5f\xe3\xd1\xe8\x90\x9e\xb9\x5d\x18\x8d\x71\x56\xa3\x40\x08\x1e\x13\x4b\xd3\x7f\xb2\xc1\xa7\xf4\xcc\xe1\x65\x74\x40\x1f\x3a\x08\x70\x30\x3a\xa0\xc1\xce\x20\x36\x26\x55\x64\xcc\x18\xca\x78\x74\x44\xcf\x8e\xc2\x25\x3c\xa5\x1f\x9e\x3e\x75\x83\x4f\x91\x68\x46\xa7\xec\x19\x32\x99\x31\x32\x19\x0e\x00\x39\xcd\x78\xe4\x14\xe0\xf1\x08\xad\x6c\xfa\x4f\xfb\x6c\x8c\x92\x88\xfe\xd3\x07\x30\x1e\x8e\xe9\x87\x3d\x36\xf8\x88\x9e\x1d\xb3\x67\xa7\xf4\xec\x34\x04\x70\x41\x3f\x38\x3a\x18\xe3\x65\xa3\xff\x64\xcf\x0e\xe8\x59\x40\x89\xe3\xd1\x84\x7e\x98\xb0\xc1\x67\xf8\x6c\xec\xc8\x7b\x3c\xde\xa3\x67\x81\x18\x3e\x1e\x13\xe4\xf1\x01\x1b\x4c\x4b\x18\x4f\xd9\xb3\x73\x7a\x76\x1e\x00\x40\x1d\x65\x3c\xde\x63\x08\x43\x55\x64\x3c\xde\x73\x27\x74\x8c\x17\x90\xfe\x33\x00\xb0\x4f\x83\xf7\xd9\xd7\x0e\x08\xb1\x07\xee\x38\x8f\x89\x36\x42\xae\x3c\x1e\x1f\xd2\x0c\x0e\xd9\x0c\x48\xbb\x18\x33\x42\x1a\x1f\xd2\x12\x0e\x03\x5d\x66\x7c\x4c\x5f\x3b\x66\xdb\x88\x7a\xfd\x78\x7c\xcc\x80\x3e\x25\x5c\x3d\x0d\x77\x01\x55\x11\xfd\xa7\x1b\x3c\xa1\xc1\x13\x86\xd8\x53\xda\xee\xd3\x60\x06\x7b\xa8\x55\xeb\x3f\xed\xe0\x7d\x5a\xef\xfe\xb9\x03\xba\x8f\x16\xd8\xf1\xc1\x7e\x40\x48\x07\x07\x38\xf8\xc0\xe9\x73\xe3\x83\x63\x7a\x76\xec\x88\xeb\xe0\x29\x7e\xe8\x20\x5c\xc2\xc1\x84\x06\x3b\x49\x75\x7c\x80\x77\xc5\xf8\xc0\xdd\x15\xe3\x83\x53\x02\x70\x1a\x10\xd2\x01\x0a\x9a\xe3\x83\xd3\x23\x36\x78\x4a\xcf\x1c\x1d\x1c\x4c\xe9\x43\xd3\x60\x1b\x0f\xa6\x04\xc0\x99\x25\xc7\x07\x53\x5a\xef\xf4\x94\x3d\xc3\x6d\x3c\x38\x0b\x01\x9c\xd3\xd4\xce\x1d\xc6\x0f\xce\x2f\xe8\x99\xc3\xc1\x21\xf1\xc9\xc3\xa1\x2f\xea\x8e\x0f\x89\x59\x1e\x0e\x9f\xb2\xc1\xe7\xf4\x8c\x01\x18\x21\xc1\x1d\x86\xa7\xf1\x90\x6e\xa6\xc3\xd1\x94\x0d\x26\x00\x4e\xa3\x1c\x1f\xee\x23\x0e\x0e\xf7\x03\x86\x72\x88\xaa\x93\xfe\xd3\x0d\x26\x3a\x38\x3c\x1c\xb1\x67\x7b\xf4\x2c\x9c\x01\x6a\x77\xe3\xc3\xc3\x09\x1b\x4c\xb3\x3a\x3c\x63\xcf\x2e\xe8\x59\x40\x89\x47\x7b\xc8\x3c\x8e\xd8\xd1\x3d\x3a\xc2\x9d\x39\x72\xb7\x95\x56\xe3\xfa\x90\x80\x1d\x18\x06\x2e\x2e\x2e\x00\x80\xfe\xd3\x2a\xc0\x43\x33\x9a\x3f\x85\x74\x17\xb4\x38\x0c\xf1\xb9\xd5\xf1\x28\x90\xe1\x34\x4e\x65\xbe\x16\x85\x92\xf9\xfc\x06\x23\xb7\x28\x1d\xb8\xbc\x51\xe2\x3a\xbe\x55\xa9\x4b\x42\xb2\x61\x08\x90\x44\x58\xac\xe4\x5c\x79\xae\xb2\x7a\x39\x2a\x75\xad\xf2\x8f\xa2\x9a\x17\x62\xd2\x00\xc6\x0f\xef\xb6\x09\x5e\xb6\xf4\xda\xeb\xbc\x52\xfe\x54\x36\x4f\xe1\x0b\x74\xf3\xd9\x64\x2f\x28\x83\x78\x17\x17\x5e\xeb\xdc\xbb\xf9\x20\x2e\x2e\xe1\x45\x9e\xcc\x37\x2f\x5c\xbd\x90\x49\x75\x1f\x27\xb1\xc6\x8b\x97\x1c\x39\xf3\x70\x15\xa7\x56\x0d\x16\xe0\xfa\xb5\x4d\x58\x97\x71\x2a\x4e\xc4\xb0\x2f\x96\xf2\x5e\x9c\x88\xd0\x17\x67\x2a\x44\xee\x50\x3a\x0c\xbe\x12\xb1\x02\xb3\x1a\x5f\xbf\xaf\xbd\xf7\x66\xf8\xf6\xcd\xf0\xad\xf8\xf0\x01\xf0\xf9\x65\xfd\xf7\xa5\xbc\x7f\xfb\x66\xf4\xb6\xb9\xfc\xac\xcd\x46\xd1\x93\xfa\xf2\x44\x4f\xd2\xa6\xa2\x2c\xe3\x48\x9c\x88\x97\xb2\xbc\x19\x2c\x92\x2c\xcb\xbb\x5d\xbd\x84\x27\x7a\xfe\x3d\xb1\x2b\xc6\x3c\x93\xac\xed\xdb\x71\x04\xdf\x76\xd9\x2d\x88\x05\x0d\xfa\x49\x53\xde\x4f\xcb\x1a\x01\xce\xd0\x83\x03\x48\xd4\x70\x76\x42\x38\x61\x5d\x4a\xd6\xf4\x92\x17\xa3\x0c\x30\x11\x14\x47\x6c\xde\x6b\x38\x06\x60\xea\xd8\xe2\x24\x9c\x4b\x6a\x0b\xbe\xc9\x8f\xfc\x8b\x1f\x8e\x26\xbb\x0c\x46\x18\x7b\xb3\xe2\xc7\x22\x74\x9a\xd7\x4f\x47\x3b\x7d\x5b\xfb\xcc\x27\xd2\xb7\x7d\xaf\x85\xbe\xdd\xef\xbf\x3c\x7d\xb3\x6f\xff\x24\xfa\x0e\xe0\xfc\x92\xf4\x7d\x66\x5a\x4d\x36\x06\xa5\x35\x10\xcf\xcf\x47\xaa\xf6\xbd\xd7\x9f\xf0\x65\x47\x8e\xfa\xb9\x89\xb4\x68\xa0\x44\x8d\xe4\xd6\x88\x0f\x8b\x5f\x9a\x4b\x08\xf2\x5b\x78\xc3\x0e\x07\xb0\x0d\xc5\xd4\x5b\xde\x3e\x8b\x8b\xbc\x15\xc0\x4f\xde\x00\x1b\x18\x69\x42\x5f\x34\x1b\x7a\x98\xc5\x34\xf4\x8c\xfb\x57\x6f\x5c\x1d\x4f\xad\x57\x2e\xb4\x9c\xd0\x8c\x17\x63\xfb\xeb\x61\x51\x03\xce\x3c\x4e\xa0\xbe\x49\xd3\x1e\x99\x80\xa4\x2f\x7c\x5e\xb3\x07\x65\xec\xf1\x70\x43\x5e\xeb\x42\x7c\xf6\x99\xc0\xdf\x86\xf7\x72\xd8\x6b\x04\xc6\x63\x94\x5c\xb5\xe2\xaf\x57\x65\xbc\x8c\xff\x0e\x15\x2d\xc5\xe4\x72\xfa\xfc\x79\xdb\x34\x7f\x0f\x5f\xf2\x41\x8f\x1c\xa0\xd3\x50\x9e\xc0\x08\xb2\xd6\x18\xa1\x41\x40\xf6\x24\xc6\x00\x22\xfd\x8f\x0c\xdd\x47\xb0\x7b\xb2\xcc\xf3\xf8\x56\x51\x03\x65\x3d\x35\x8a\x6a\x96\x2c\x7a\x33\x6b\x8d\x17\x1d\x30\x2e\x33\x32\x95\x55\x1d\x32\x47\xa3\xe1\x50\x7c\xf6\x19\x31\x2b\x5c\x39\x3e\x3f\x58\x68\xb4\xf3\xff\x76\x77\xbd\x98\xc7\x38\x8d\xcb\x01\x8b\x70\x34\x0c\x0f\x37\x19\xd4\xb5\xf1\x53\x73\x25\x98\x07\x52\x7c\xf8\x60\x06\xba\x59\x8c\xd5\xf1\xd0\x6e\xaa\x7e\x20\xf7\xe7\x0b\x37\x2d\x84\xf9\xe8\x04\xdc\x59\x7b\x8b\x9e\x3f\xb1\xdd\x5d\xc8\x63\x19\x0c\x06\xe2\x2f\x71\x1d\xb6\x9c\x0f\x7d\xd8\xd1\x91\xdc\x43\x10\x6e\x41\x97\xeb\x24\xd1\x1b\x58\xd4\xdf\x5f\x3c\x0d\xde\x5f\xc8\xc5\xc2\xbe\xaf\xbf\x3c\xf5\xb2\x7e\x9e\x9b\x04\xbf\x26\x58\x6a\x14\xc0\x52\xa3\xa7\x16\xd6\x9f\x55\x0e\xfd\x90\x20\xc8\xb5\xf1\xed\xbd\xf0\xed\xc3\x4d\x33\xb9\x68\x01\xb3\x08\x17\xb4\x38\x1c\x5a\x30\x17\x55\x92\x20\xbf\x68\x7d\x5d\x85\xaf\xab\xc3\x5e\xf3\xb6\x42\xc6\x3e\x1f\x3b\x5e\x2c\x16\x51\xf3\xe0\xbd\xda\xe0\x3d\x18\x4c\x49\xd1\x54\x2d\xf1\x99\x50\xcb\xec\x87\x98\x87\x47\x56\x45\x05\xa9\x2d\x26\x09\x00\x15\x0b\xa8\x88\x12\x47\x7e\xfa\x52\xa2\x99\xf3\xf5\x0d\xc1\x63\x42\x16\xae\xb8\x58\xa9\xb9\x28\xe4\x1a\xce\xd7\x8d\x16\xf7\xc5\x25\xa6\x4e\xe8\x63\x18\x45\x30\x20\x86\x50\xe3\xc2\x76\xd8\x53\xcb\xaf\x7e\xfa\xb5\x11\x5e\x17\x2c\x87\xe8\x3f\xe3\xba\xf8\x76\x9b\xbb\xc2\xe3\x7f\xfc\xca\x6f\x60\x83\x6d\xa1\x9b\x7e\xa3\x8c\xed\x6f\xf7\x1f\xb7\x43\xac\x9e\xcc\x55\x53\x39\xda\xa2\xcc\x6d\xb1\xe4\x1f\x8f\xdd\x7a\xd5\x9a\xbb\xf9\xa0\x28\xeb\x12\x94\x5f\xa2\x84\x52\xdf\xf2\x5b\x1b\x83\xfb\x60\xa5\x12\xbf\x0a\x21\x2b\xf2\x05\x35\x26\xcc\xbf\x79\xa1\x89\x3b\x9a\x43\x88\xe9\x7a\xf5\x2a\xbd\xbb\x38\xfa\xf7\xf6\x82\xb7\x1b\xb5\x63\xc4\xe3\xfc\x56\x3c\x39\x41\xa8\xe6\x3d\xfd\xa0\x1b\x14\x00\x5b\x2c\x34\x93\xfd\x4a\x8c\xc4\x33\x2a\x07\xe1\x0b\xcc\xf9\x6d\x6d\x4f\xff\xa0\xa8\x6b\x7a\x35\xa3\x4a\x31\xd4\x71\x93\x48\x18\xd1\x9f\x2d\x16\x85\x2a\x03\xea\x66\x3b\xb3\x79\xaf\xfd\x12\x37\xd7\xaa\x64\x5f\x5b\xe4\xd9\x72\xd0\x7c\x28\xb1\x47\x04\x95\xf4\xc6\xfc\x7f\x7f\x3a\x21\xb0\x16\x38\xd9\xaa\x7c\x87\x28\x6e\x23\x28\x1f\xc2\x55\x63\x75\xef\xd7\xb5\x71\x8c\xea\xe0\x79\x40\x73\xd4\xe4\xa2\xef\xbe\xcf\x1b\x35\xea\x9f\xa0\x9c\x76\x5f\xa8\x34\xa2\xbf\xdd\xb1\xb3\x0a\x34\xe9\x86\xa1\xfe\x79\x67\x83\xc7\x19\x84\xa0\xac\x8e\xfb\x81\xd5\xd7\xc1\x17\x9f\x34\x50\x64\x50\x99\xc6\xbd\xdd\xab\x93\xe8\x97\x08\xdc\x92\xe9\x2c\x57\xf2\x7d\xd8\x52\xc9\xa1\xfb\xd1\x89\xa8\x52\xca\x95\xf0\x3b\x92\x9b\x25\x63\x0f\x28\x8b\x89\x3b\x16\x1b\x6f\x25\x15\x3b\x96\x2f\x53\x5f\x79\x74\x6c\x4e\x1c\x82\xf9\x6b\x5b\xaf\xd8\xc0\xef\xf5\xdc\x56\x3c\x79\xd2\xb4\x78\xb7\x91\xe6\x3b\x66\xbc\xad\x67\x62\xda\xc2\x97\xf9\xc0\x12\x4b\xb7\x69\xb3\x7b\x0d\xc7\xd3\xbd\xc5\xb7\xa1\xf1\xc8\xb6\x1c\x57\x3c\x32\x98\xad\x14\xf9\xa7\xe5\x5f\x72\x44\x5b\x5e\xd3\x93\x7b\x0d\xb5\x73\xa3\xe6\x57\x7e\xec\x11\x0c\xfa\xc0\xf2\x53\xa8\xd2\xc8\xaf\x5d\xe6\xbd\x18\x0e\x15\x3b\x44\xea\x84\x7d\x3d\x38\x57\x58\xba\x65\x20\xa3\xa8\xdb\xa1\x12\x32\xf3\x1b\x99\x5e\xab\x24\xbb\xde\xa5\x3c\xbb\x4e\x5f\x74\x4a\x75\x5f\xee\xae\x12\x19\xa7\x9d\xfe\x55\xda\x19\x0d\x46\x87\xd0\x9f\xa1\xd3\xb9\x4a\x7b\xb6\xc7\xed\x03\xf0\x22\x59\xaa\x06\x60\xe3\xe1\xe8\x68\x67\x78\xbc\x53\x03\x19\xd6\xb8\xb9\xd1\x97\xf5\xee\x0f\xc5\x2e\xfc\xe5\x57\x52\xfe\x1b\xf0\x56\x46\x6a\x05\x08\x1b\x5c\x96\x59\x2e\xaf\x55\xa7\xe7\x1d\x90\xff\xa5\xdf\xd7\xf3\xb8\x8d\xd5\x9d\x38\x53\xf3\x44\xe6\x94\xa3\x88\xb8\xf8\x1c\x9a\x6b\xa0\xc8\x8b\x5d\x1d\x96\x4a\xcc\x64\x11\xcf\x45\x71\x23\x73\x15\x89\x0a\x7a\x39\xc5\xb6\x45\x85\x2c\x31\x09\x2b\xcb\x44\xb1\x84\xea\x0b\x99\x88\x10\x27\x22\x52\xd8\xc0\x33\x82\x79\xdb\x9e\xd1\x9a\xcd\xc3\xe7\x58\x86\x11\x4b\xa6\x84\x26\x32\x90\x0e\x9f\x46\xd9\x9d\xb8\xc9\x30\xc5\x1d\x27\x78\x15\x96\x9c\xd1\xd7\x9d\x2c\xc4\x4a\x1f\xb7\x6c\x41\xa3\xb4\x2e\xd9\xed\x0d\x04\xeb\xca\xa5\x47\xa7\xb7\x32\x89\x23\x51\xa5\x65\x8c\x19\xdc\x50\x94\x42\x26\xf1\xdf\x6d\xe1\x1b\x6c\x01\x6d\x66\x8a\xd0\x70\x22\xaf\xf5\xb4\x58\xb7\x54\xdb\x82\x41\xe6\xa0\x33\xb3\xae\x01\x54\x76\xc0\xf5\x6d\xa1\xa2\x12\x50\x52\xd1\xd4\x50\xff\x7b\x96\x2d\x79\x1a\x9a\x5d\xd9\x5f\xb2\x0a\xe8\xc0\x14\x63\x87\x06\x2f\xe5\x8d\x58\x67\x55\x8e\xad\xa0\xb2\xb9\x9e\xb3\x8a\xcc\x37\xfd\xe9\x6a\xc0\x34\x29\xd7\xa3\xb6\xf3\x7f\xbf\xfe\xfa\xa5\xbe\x77\x46\xc3\xe1\xff\xf4\x0b\x20\x9d\xe6\xb1\x5a\x08\x8c\xe9\x5b\xdb\x65\xd8\xd2\x09\x38\x6b\x7d\xd6\xf4\x6c\xe7\xd9\x8a\xca\x8d\x80\xa4\x9b\xc4\xab\x59\x26\x73\x36\xfb\xd3\xb5\x88\xd4\x42\x56\x09\x34\xb1\xa2\x1a\x07\x46\x7f\x38\x7d\x31\x99\xfe\x6f\x71\x39\x7d\x7e\x79\xf9\xf5\xb7\x97\x2c\x67\x1a\xf2\xa5\xd7\xb8\x70\x93\x55\xfe\x29\x8b\xf7\x48\x02\xf2\xb3\xc3\xf9\xdf\x28\xd1\x41\x54\xef\xd8\x59\xef\xa4\x59\x19\xcf\x55\x87\xd5\xe0\x40\xb2\xf0\x77\xc5\x62\x56\x0f\x5f\xac\x35\xa3\x60\x88\xbd\xba\xaa\xc6\x47\xc3\x31\xe2\x94\x51\xb2\x46\x58\x71\xa3\xa7\x1c\xa7\x42\xea\x33\xf1\xbe\xcc\x56\x02\x60\x50\x41\x1d\x9b\x9f\x6e\x28\x04\x53\xc7\x55\x92\x0c\x84\xd0\x70\xc7\x87\x58\x71\xd3\x22\xf0\xfc\xf9\x1f\xfe\xf8\xfa\x8f\xe2\xd5\xd7\xaf\xcf\xfb\xe2\x7f\x76\xcb\xb8\x4c\x54\x2f\xec\x20\xab\x11\x67\x0b\xc0\x58\xe2\x83\xb1\xfe\x7a\x68\x4e\xaf\xd8\x94\x5e\xeb\x51\x66\x59\x87\x87\x13\xf7\x11\x7a\xe0\xd3\xce\x0b\x8a\x0a\x85\x5a\xa0\x74\xa8\x21\xb7\xba\xa8\x62\x73\x8e\x50\xed\xc4\xc7\x37\x32\x4f\x55\x61\x4b\x08\x50\x5b\x75\xd3\xcc\x7e\x0d\x09\x94\x58\x9a\x87\x1a\xe6\xe6\x55\x9a\xb2\x3b\x0d\xe7\xad\x41\x9d\xa9\x15\x84\x7f\x76\xf0\xd1\xe5\x3c\xcf\x92\xe4\x9b\x2c\xc7\x86\x93\x85\xbe\x1f\xec\x2f\x4a\xa5\xe6\x29\x93\x83\xec\x7f\x34\xf0\x35\x61\x2a\x04\xf0\xe7\xd7\x5b\xbc\xfc\xe7\xd7\x83\xa9\x4c\x53\x15\xe1\xd0\xb7\x35\xae\xf6\xff\x93\xf7\x2e\x7e\x6d\x24\x47\xe2\xf8\xbf\xd2\xe6\x7e\xb7\x23\xad\x25\x81\xf0\x5b\x0e\xc9\x61\xc0\x6b\xce\xd8\x10\x84\x71\x2e\x88\xf5\xb5\x46\x2d\x31\x61\x34\xad\xcc\x8c\x00\xed\xda\xf7\xb7\xff\x3e\x5d\x55\xfd\x9a\x87\x24\x58\xef\x5d\x92\x2f\x9f\x64\x3d\x9a\xe9\xae\x7e\x55\x57\x57\xd7\x13\xe7\x46\x11\x1c\x73\x0a\xb7\x58\x2a\x26\x51\x06\x19\xa8\x11\xcb\xf1\xf0\xc3\x77\x87\x48\xc3\x4a\xd8\x4d\x19\x79\x46\x73\x38\xd3\x55\x8d\xa8\x50\x52\x73\x15\xba\x9d\x6f\x4c\x26\x0a\x1a\xba\xaa\x6b\xd5\x96\xad\xc9\x6e\xc1\xa3\x78\x0e\xe1\x3a\xa2\xe4\x46\x5e\x0b\xd8\x34\x46\x79\x5a\x20\x93\x40\x06\x9c\x2c\xba\x9b\xfa\xd4\x76\x3a\x8e\xd3\x12\xb4\x9c\x1c\x28\xd0\x07\xe2\x34\x4c\x2f\x64\xf2\x19\xa8\x6b\x03\x89\xac\x61\x86\x2b\x28\x2f\xfe\xe8\xa8\xe3\x81\x78\x4a\x27\xed\x2d\x42\x6f\xb1\x2d\x8f\x7d\x74\x9a\x39\xe3\xc3\x46\xce\x87\x7e\x2e\x41\x3e\x44\x76\x19\x00\x87\xea\xa4\x17\x6e\x10\x4c\x78\x41\x9d\x80\x1c\x53\xaa\x06\xfd\x3e\x1c\xb5\xe0\x2c\x68\x99\x21\xd4\x65\xca\xd3\x89\x39\xd2\x49\x94\x8c\x78\xb3\x67\x56\x12\x62\x78\xb1\x5b\xe0\xf6\xd8\x7c\x86\x91\x11\xd8\x4d\x97\xf1\xd9\x2c\xc8\x20\x14\xd0\x24\x05\x2e\x60\x46\x74\x4e\xc3\xfb\xc0\x17\x43\xc1\xbc\xd9\x09\x12\x99\x88\x80\x42\xb8\x0c\x29\x31\xb3\x13\xb7\x07\x32\x5a\x9b\x88\x13\x06\x58\xc5\x3c\x07\x09\x44\x12\xb1\x71\x89\xeb\xa7\xb9\x9c\xe9\xef\x91\xa6\x2c\x70\x04\x10\x17\xe2\x4d\xba\x37\xdb\x10\x40\x14\xa7\x39\xc3\xb2\xe5\x37\x9d\x6c\x91\x84\xce\xb2\x54\xb5\x40\xe9\xfb\x1d\xce\xa7\x03\x8c\x9b\x68\x54\xc1\xaa\x59\xa8\x35\x01\x1f\xa9\x13\xa8\x51\x35\x01\x94\xb7\x83\x9a\xcc\xf9\x30\xd3\x99\x56\x12\xa9\x48\xe2\x8c\x02\x0a\x46\x09\xa3\x28\x7f\x90\x1d\x3f\xa3\xb8\x19\x22\x17\x61\x8e\x8a\x66\x82\xb6\x90\xf3\x00\xe2\x90\xb8\xc5\xf1\x44\x88\xa3\x5c\x51\x6a\x7e\x0b\xe1\xa2\x8c\xc1\x41\x94\x9d\x50\xd1\xdd\xd9\xcc\x71\x76\x5e\x3e\xf7\xa9\x62\x89\xaa\xde\x28\xa4\xff\xc0\x93\x68\x2c\xb2\xdc\x13\xf6\x4c\xe9\x25\xdb\x59\x52\xc3\x4c\x52\xb1\x57\xba\x76\x47\x0d\xe7\x87\x1f\xbc\xdf\x1d\x8b\xf7\xc5\x0b\xb4\x07\xc6\x8d\x90\x7b\xe2\xce\x26\xf0\xa3\x10\xc4\xc8\x61\x02\x22\xcb\x78\xa9\x75\xe9\x54\x10\x10\xdc\xc5\x98\x30\x1b\x77\xf6\xaf\x8a\xd6\xf4\x58\x30\x93\xb3\xf9\x2c\xf8\xd6\xb4\xe4\xc5\xc3\x9c\x65\x33\xab\x1a\xf3\x93\x7f\x2a\x0c\x99\x88\x7c\x8f\x12\xcd\x60\x52\x35\xf5\x06\x59\x25\x45\x93\xe0\x3c\x8c\x32\x36\xd8\xa0\x74\x34\xf1\x42\x1f\x84\x83\x0d\x4c\x96\x88\xe1\x7b\x34\xcc\x5c\xce\xa6\x52\x9d\xc4\x29\x1b\xcb\x10\xd3\x0a\xf2\x61\xa7\x40\xc8\x60\xe0\xb6\xe9\x06\x10\xc5\xba\xcd\xb0\xe6\xd4\x10\xad\x70\xe6\xc6\x6e\x89\x6f\xcd\xaa\xbc\x7a\x23\x11\x46\x53\x1e\xb3\x5f\xb5\xc0\xf1\x4a\xc0\xad\xeb\x1b\xd1\x3f\xbc\xaf\x8f\xe4\x14\x23\x6b\x7a\x07\xbf\xea\x7c\x1c\x89\x24\xef\x47\xbf\x78\x36\x3b\x23\x39\xf5\xef\xb0\x23\x09\xa5\x21\x6f\x40\x94\x4c\xb0\xd6\xa9\x08\x11\x27\x2b\x13\xfe\xe9\x8e\x39\xf1\xb2\xd6\xeb\x4c\x49\xae\x7a\x9f\xde\x74\xb4\x7c\x66\x69\x9f\x68\x8e\xee\xd1\xa9\x77\x58\xe3\xa1\xbd\xc2\x06\xcb\x99\xba\xe5\x6c\x51\xc8\x93\x14\x0b\x93\xd3\x17\x24\x86\x8b\x2c\x17\xd3\xaa\x9b\x81\x66\x4b\xde\x9d\x7d\x38\xda\x97\x21\xa4\x3e\xa3\x60\xec\xf4\xcb\xa6\x9c\xf2\xc0\x86\x72\xb6\xf0\x47\xa9\xde\xf4\x75\x91\x33\xb9\xa7\x1b\xf3\x87\x8b\x40\xcb\xd9\xff\xf4\x97\x8e\xb8\x13\xe1\x9e\x9c\x4e\x79\x32\x6a\x04\x0a\x66\x50\x48\x04\x38\x8e\x52\x31\x96\x77\x07\x3a\xb5\x99\x4b\x73\x0e\x27\x89\x4c\x31\x55\x56\x87\xbd\x7d\x5b\x95\xdf\x91\x6c\x72\xd4\x21\xcf\xf1\x4b\x9a\xca\x94\xa2\xcb\x59\xdd\x11\x6e\x61\x35\x6a\xa3\x30\x82\x5c\xa8\xae\x31\x47\xa7\xd2\xa0\xe0\x84\x67\xb9\xa8\x9c\x76\x8c\x87\x02\x69\x98\x30\x26\x08\xce\x2d\x50\x07\xbb\x24\x1f\x65\x2e\x7a\xec\x30\x41\x29\x87\xd8\x7c\x8b\xe3\x55\x64\x74\x53\xdc\xe5\x22\x81\x50\x4f\x22\xb9\x89\x52\x99\x40\xaa\xba\x16\x9c\x49\x71\x8c\x91\xe6\x75\x10\xb1\xc1\x86\x69\xf8\x54\xf0\xd1\x60\x83\xcd\x4c\xa4\xa8\x0e\x53\x0d\x60\x1a\x62\x1f\x12\x26\x95\x04\x34\xe5\xf1\x2d\x5f\xa0\x48\x01\x72\xe7\x51\x40\x41\x4d\xb2\xc7\x29\x24\x60\x50\x74\x70\x18\xcb\xf0\x3a\x63\x3c\x0c\xd5\x3d\x42\x6d\x88\x4c\x84\xf3\x34\xca\x17\x2c\x15\x3c\xf3\x22\xee\xad\x81\x71\xb9\x64\x33\x98\x44\x35\x5f\x9d\x35\xec\xab\xb0\x74\x36\x0f\x43\x21\x46\xc5\x0b\x22\x7c\x7c\x9b\xca\xe9\x3d\x31\xd2\x6c\xc8\x2a\xc4\x04\xa0\x0f\xc6\x4c\x85\x9a\x4f\xb7\x80\xc1\x90\xf1\x48\xa4\xc4\x21\x46\x49\x28\xd3\x54\x40\x8a\x77\xca\xe7\xe7\x23\xae\x8b\x98\x05\x04\x86\xb8\x7d\x82\x8f\xd4\xc5\x0f\x7b\x0e\xc2\x50\x83\xa6\x15\x06\x59\x25\xcc\xdd\x4b\x05\x46\x27\x54\xdc\x95\x7b\x27\x2e\xaf\xde\x31\x64\x80\xfe\xc6\xe0\x67\xc6\xce\x79\x1a\xc9\x79\x86\x3f\x05\x28\x62\xf5\x35\xba\x04\xa7\x24\xd1\x45\x18\x1d\xb8\xd2\xa2\xb0\x09\x9e\x1a\xc4\xf4\x65\x9a\x8a\xe1\x71\x1e\x64\xf8\xbd\xb9\x14\xd8\x50\x8e\x16\x98\xe6\x98\x84\x02\xf0\xa2\x31\xe5\x11\x8a\x4d\x9a\x55\x42\x04\x17\x2f\x10\x8e\xa3\x03\x19\x89\x31\xdb\x61\x0d\x45\x63\x5b\x6a\x12\x63\xc5\x12\x35\xd9\xce\x1f\x81\xec\x42\xba\x67\xa3\x3e\x60\x7f\xc2\x97\x3d\x53\xd0\x70\x7b\x34\x61\x3b\x5e\xf1\xaf\x5f\x99\xf3\x5e\x1d\xe6\x24\xb3\xd7\x6f\xb5\x48\x0e\x2f\x1a\x22\x9d\x20\x81\x99\x67\x22\x0d\x32\x8a\x56\xe9\x24\x07\xd4\xc2\x9e\x0c\x63\xf1\x29\x8c\xfb\x2c\x28\x0d\x4a\xce\xaf\x05\x8b\x72\x82\x35\x8a\x08\xdf\xa2\x04\x34\xde\x20\xdb\xe1\x19\xcb\xf2\xf9\x78\xac\x6f\xc0\x0a\x05\x33\x45\xff\x92\x6b\xc3\xd3\x62\xd2\x64\xe8\x9a\xe6\x4e\x02\x35\xc7\x41\xcf\x5d\x02\x73\x3b\x0f\xa2\x50\x26\x41\x4f\xf5\x8c\xa6\xa0\xa3\xde\xb4\x98\x27\x5a\x9e\x88\x7c\x9f\xe7\xfc\x53\x1a\xd3\x5d\x75\x33\x9a\xf2\x89\xc8\x36\x55\xd9\xf6\xab\xe7\x41\x13\xd3\xd0\x7c\xb3\xe9\x8b\x73\x92\x8d\x38\x80\xe1\x55\x4b\xdf\x20\xcd\xfe\x45\xac\x31\x0b\xf1\x08\x7f\x63\x07\x35\x14\xba\x21\x43\x21\xfd\x4e\xf5\x70\xdc\x21\x11\xce\x39\x4f\xb3\xc6\x72\x41\x4d\x8b\xfd\x1a\x40\xdd\xa0\x87\x30\xbe\x35\xdd\x74\xcb\x74\x79\x71\xab\x35\xa8\xc7\x34\xa7\xd8\xc7\xa4\x23\x93\x30\x8e\xc2\xeb\x8a\x9c\x89\x4c\x0f\x0e\x8e\x0e\xc3\xd1\x63\x16\xa7\x58\x66\x42\x27\xcf\x7d\xed\x70\x16\x49\x05\xe3\x90\x64\x79\x3a\x0f\x73\x60\x51\x15\x17\x43\xd2\x19\xc5\xc8\xa5\x22\x94\x2e\xa7\x70\x48\x71\x41\x33\x23\x4b\x87\x78\xa7\x18\x07\x6b\x36\x1f\xc6\x51\xa8\x88\xfd\x68\xf3\x16\xd2\xdf\x4e\xc5\x74\xa8\xc9\x80\x0d\xee\x8a\x1c\xcc\x12\xd3\x06\xab\xf9\x74\x54\x9e\x51\xe6\xf6\xa6\x5c\x89\x18\x31\x90\xe8\xe0\x63\x45\x35\xb3\xd7\x8b\x6c\xaa\xc7\xf1\xba\xc9\x4c\xb5\x7e\xcf\x2a\xeb\xe0\xf5\x95\x66\xe2\x6a\xd8\xb1\xdd\x11\x30\x0a\x36\xce\xb0\x1d\x78\x55\xbf\x56\xcd\x83\x42\x96\x87\xcd\x85\xaa\xb9\xe6\x7c\x38\x49\x11\x53\x91\xfd\xce\x13\x44\x6c\x34\x07\x1e\xb2\x7e\x4a\xf4\x89\x6f\x7b\xf9\x8d\xed\xe2\xa0\xec\x3a\x9a\x68\xb5\x96\x4b\xe5\x53\x67\xe2\x01\x94\x83\x75\x75\xa3\x0e\x63\x99\x88\x8a\x9d\xa6\xf7\x8e\xd7\x6a\xc3\x8e\xbe\xe5\x0e\xb9\x7c\x8b\xe9\x93\xbd\x02\x4d\x09\x86\xd5\x74\xd7\xd2\xf4\xdf\x44\x13\xe7\x09\xb2\x65\x4e\x37\x4b\x68\xe2\x4e\x09\xdc\x4b\x21\xc5\x01\x1c\xc9\x9a\x37\xb7\x7a\xd0\xba\x21\xab\xcb\xa4\x74\x87\xac\x20\x55\x2d\xaf\x7a\xdf\xa9\x5b\x63\xf8\x58\xb3\xd0\x60\x34\x1a\x8d\x2b\x86\x64\xc7\x1d\x65\x14\x43\x1f\x0e\x79\x50\x14\xac\x3d\xe0\x3a\xa0\xab\x58\xc6\xa1\xcc\xaf\x4c\x61\xa2\x60\x3e\xea\x6c\xe2\x88\x5a\xab\x1c\x56\x2a\x27\x16\xc6\x93\xd5\xcc\xac\x36\x15\x77\x26\xd8\x9d\x61\xf6\xc3\x0f\xfe\x04\x2f\x9f\x61\xb3\x95\x48\x9b\x6c\xe2\xfe\xf2\xdc\xcd\x30\xe5\x4d\x4c\xb5\xb6\xda\xa4\x83\x47\x39\xc7\x48\x24\xea\x7c\x22\x3d\x64\x1d\x1d\x73\x84\xd1\x4e\x03\x75\xf3\x92\xcb\x7e\x49\xe7\xed\xcf\x4a\x70\x61\x2b\xf6\x58\xc0\x1e\xbb\xf3\xf4\x98\x05\x2d\xfb\x8e\x3a\xf2\x98\x05\x97\xc1\xda\x07\xdb\xa9\xbc\xdd\x93\xf1\xf7\x3c\xda\x90\x49\xd7\xc6\x0b\x05\xc5\x00\x42\xc1\x48\x94\x02\x58\xf5\x40\xde\x88\x74\x1c\xcb\xdb\x80\x0d\x23\x1d\xeb\x3e\xca\x14\x23\x87\x72\x7e\xd4\xcd\x92\x0a\x17\x85\xfd\x3a\x13\xc1\x15\xcf\xd8\x50\x88\x84\x4d\xf9\x08\x4a\x4f\x25\xe1\x2d\xa5\x5f\x20\xc3\x04\x9d\x4d\x1c\x2d\x16\xc8\x68\x08\x20\x65\xa8\x75\x61\x3a\x07\x75\x94\x99\xec\x61\xb7\x82\xc5\x82\x57\xc2\x23\xdb\x25\x48\xb7\xce\xb3\x9c\x5e\x03\x40\x6d\x90\x04\x70\x41\x5d\x98\x11\xc1\xd3\xe3\x54\xc3\xc4\xcb\x26\xaa\xdf\x21\xfc\x39\xc1\x57\xfd\x57\x9c\x19\xd2\x68\xea\x08\xca\xae\xe2\x05\x6a\x1f\x79\xb2\x30\xe3\x57\xb7\xc2\x34\x4a\x72\x20\xc6\x8e\xc5\x67\xc8\xe7\x19\x66\x3b\x48\x37\x63\x8c\x31\x0a\x29\x1c\x96\x9c\xae\x6a\xd5\x14\x05\x51\xff\xae\x75\xaa\xd2\x54\x38\x16\x59\xcb\xaa\x19\x82\x23\x67\xf9\x17\x33\x13\x26\x95\x3d\x7d\xd6\xab\x6d\x36\x9d\x9a\x37\xc4\x50\xb3\xaf\xd4\x9a\x6b\x00\xc5\x7b\x2d\x21\xb3\xb3\x99\x52\x79\xdb\xa2\xfe\xb5\xbc\xb6\x5d\xaa\xae\xc6\xbc\xa3\x46\x6e\x89\x39\x0d\x69\x87\xea\xda\x0f\xa6\xef\x3b\xec\xd1\x23\x17\xe0\x32\xa6\xc7\xdf\x12\xeb\xb3\x3c\x7a\x51\xd4\xf2\x3e\x64\x61\x00\x2d\xfe\xb1\x16\xc7\x21\x7e\xb0\x59\xff\x31\xd6\xea\x41\xfc\x17\x0e\xc8\xe7\xc0\x08\x03\x6b\x78\x30\xc2\x03\x00\xe6\x90\xc7\xfa\x29\x5a\x9b\x07\xc3\x9a\x0d\x3d\x45\x2d\x77\x66\x5a\xfe\x6c\xd4\xb3\x64\x35\x68\xba\x8a\x21\xa3\x5e\xd7\x70\x28\x7a\x96\xd6\x67\xca\x4a\xb3\xb0\x92\x2d\x43\xa4\x00\xae\xa0\x1a\x33\xe0\xd3\x12\xf4\x80\xef\xb5\xd8\x51\xcd\xb4\x15\x97\xfa\x3e\x6c\x5b\x79\x52\xea\x01\xff\x26\xd6\x2d\x95\xb7\x9b\x1a\x0b\xd6\x62\xdc\x4a\x93\xbf\x0e\xeb\xd6\xb0\xab\x60\x97\xc1\xf0\x6d\x7a\x15\xbc\x65\x70\xdd\x5c\x58\x69\x41\x0a\x2b\x52\xab\x0b\xf9\xbd\xb9\xbc\xea\x1d\xb1\x82\xc7\x2b\x4d\xe1\x6a\x2e\xaf\xa1\xd9\x3c\xac\xeb\x30\x7a\xaa\x07\x3e\x9b\x47\x7d\xd1\x2f\xeb\x67\x11\x18\xc1\x66\x4d\x02\x3d\xdf\xb8\xf0\xcb\x38\xe5\x53\xf1\xaf\x69\x62\x38\x2e\x18\x17\xbe\x85\x64\x56\xa3\x94\x8f\x8d\x3d\x3c\x78\xc5\x8f\x79\x68\xd3\xf4\x7a\x26\x49\x0a\x03\x38\x83\x5c\x83\x60\xc0\xb7\x60\xa3\x88\xc7\x72\x52\x36\x7a\x49\xe5\x7c\x72\xa5\x98\xbb\x3c\x20\xe5\x88\x0b\xa8\xfd\x47\xac\xc7\x62\xbe\x10\x69\x87\xb1\x33\x69\x2c\x54\x18\xd8\x3b\x50\x72\x0f\x11\xc4\x31\xa6\xe5\xa0\x44\xb9\x21\x0a\xd9\xdb\x7f\x34\x7d\x32\x20\xd4\x5c\x41\x4e\x04\xdc\xf8\x92\x8d\x79\x18\xc5\x91\xe2\x2a\xe9\x9c\x29\x54\x35\xbd\x90\x29\xc9\x3a\x6d\x19\xfa\xa2\x7e\xcf\x93\x92\xa4\xfb\x90\x45\x53\x3e\x41\xf7\x11\xc3\xcb\x43\xdb\x68\xf4\xca\xb2\x68\x92\x80\x08\x0f\x54\x20\x64\xd0\x66\x13\xf2\xda\xc8\xed\xa5\x5b\x09\x49\xd8\x01\x0d\x8d\x9c\x1c\x15\x88\xba\xdf\x25\x5a\x6a\xe6\xe2\x57\xdf\x30\x0a\x55\x27\x33\x0e\x8a\x3f\x53\x08\x8f\x1d\x8f\xf1\x99\xa7\xb1\x9f\x9b\x57\xbd\xc8\x25\x8b\x25\x37\xe8\x86\x1b\xc3\xad\x05\x8c\x04\x89\x7a\x8d\xd0\xdf\x30\x4b\xfa\x8b\x1e\x03\xd6\x67\x90\xb0\xc6\x04\xbe\x2f\xb2\x46\x6f\x61\xd8\x2e\x89\xa5\x5e\xb7\x54\x97\x5a\x6e\x93\xee\xb1\xa7\x4b\x7d\x51\x27\x18\x3d\xdb\xe3\x6d\x14\xdd\xb8\x1f\xe0\xb7\xfd\xaa\x86\xba\xa3\xa0\x3b\xe7\xa1\x91\x5f\xbb\x43\xfc\xfa\x15\x25\xed\x54\x28\x82\x01\x7d\xb1\x16\xa6\xe6\xa8\xc5\x44\xca\x69\xf9\x13\xe9\x1b\xf6\xae\x78\x92\x88\xd8\xf9\xee\x93\xf4\x77\x98\xe6\x99\x4a\x3b\x89\x1d\x23\xbb\x06\xfe\x8c\x39\x24\x56\x26\x64\xea\xf8\xc5\x9d\x46\x6d\xd1\x93\xdd\x46\xa0\x8d\x12\x1d\x48\x2b\x9e\x70\xc7\x7e\x0a\x44\xfc\x41\x34\x0b\xdb\x51\x12\xe5\x6d\x79\x1d\xf4\x1c\x8b\x85\xcf\x60\x04\xa1\xd9\xc1\x6c\x26\x15\x7d\xe2\x63\xf0\x79\x86\x84\x53\x70\xab\x9c\x32\x5d\x1f\x68\x05\x98\x08\x8e\xa3\x24\xca\xae\x8c\x6d\x03\xcc\x84\x2a\xaf\xb1\xf4\x30\x19\xcb\x2f\x8d\xa6\x9b\x46\x75\x9e\x26\xaf\xdd\x4e\x99\x1d\x1b\x25\x63\xf9\xd0\x9e\x79\x40\x6a\xbb\xa7\x8e\x87\x2b\x79\x8b\x28\x0b\x9f\x20\xa1\x28\x9f\x8a\x96\xae\x93\xb0\x54\x0c\x23\x75\x7d\x9e\xa7\x46\x87\x84\xb9\xb9\x53\xba\x0d\x3b\xd0\x42\xd2\xf2\xb0\xa1\x88\xe5\xad\x3f\x0d\x16\x57\x3a\x40\xf8\x3b\xda\x10\x79\x87\x05\xe3\x58\xdc\x59\x93\xae\x2a\xfc\xe9\xcc\x64\x9a\x77\x3b\x32\x99\x1a\xe3\x56\x44\x5f\x8d\x02\x68\xff\xa1\xde\x35\x7d\x40\x32\x39\x92\x7c\x54\x37\xe7\xa4\x21\x32\x73\x0c\x2e\xbe\xb1\xe8\xc4\x72\xd2\x08\x3e\x25\x68\x3a\xaa\xdb\x04\xe4\x84\xf9\xe9\x05\x2d\x86\x78\x55\x09\xb7\xac\x51\x04\xf3\x85\x8c\x85\xa0\xdf\x54\x27\x61\x8a\xa9\xc6\xa3\xac\xc5\x0e\xd9\x64\x2e\x32\x47\x35\x7c\x98\x43\xaa\xb4\x24\x30\x76\x59\x98\xef\x7f\x06\xc7\x65\x96\x8b\x04\xf2\x6f\x0c\xe7\x39\x3b\x0c\xa6\x64\xbf\xa5\x4d\x55\x51\x85\x5a\x48\x8d\x76\x25\x52\xa1\x4f\xa8\x59\x2a\x87\x7c\x18\x43\x5e\xcd\x1c\x57\x31\x9b\x09\x7e\x6d\x75\x60\xb9\x84\xe5\x46\x62\x9a\xad\xb9\x07\x0b\x7c\x4e\xe5\x36\xc7\x4d\xcd\x70\x49\x30\x2f\xfb\x2a\xe8\xaa\xe4\x97\x0a\x1e\xaa\x8e\xc8\x88\x5b\xf6\xc1\x7b\x4b\x2b\xff\x20\xa4\xfa\x52\xc4\xaa\x25\x50\xc0\xf1\xc4\x6d\x8c\x88\x66\x87\x32\x82\x91\x99\xd2\x4c\x66\x39\x41\x6f\x68\xcc\xf9\x55\xd1\xa6\x9e\xa5\x47\x41\x8b\xf1\x74\x72\xd3\x63\x17\xbf\x52\x5b\x27\x32\xcd\x7b\xf5\xad\x6f\x7f\xbb\xfc\xd6\xf2\xb0\x1e\x4e\x90\x8b\xfa\x0a\x97\x65\xee\x5a\xe3\xe8\x94\x2f\x7c\x0c\x5d\x67\x89\x96\xae\x7e\x1f\xf2\x4a\x7a\x4c\x11\xd0\x25\xc7\x2b\x61\x5d\x92\x5f\x22\xa6\x15\xa8\x81\x8a\xca\x89\xc8\x77\xc3\x50\xcc\xf2\x23\x9e\x4c\xe6\xea\x70\x69\x98\x82\xb1\x7e\xe5\x58\xbf\xc1\x48\xdd\xd5\xf1\x29\x71\xd0\x62\x17\x6e\x2a\x75\xee\xc3\xee\x31\x03\xd3\xb5\xc4\x1e\xcb\x54\xa0\xb9\xe0\x9e\x8c\x65\xda\x2b\x1c\xe1\xaa\x93\x6f\xfd\x22\x8d\xa6\x5b\xdf\x9a\x1b\xd6\xd6\x7f\xe3\x17\xf1\xeb\xa3\x84\xb1\xb6\xee\x9e\xfd\xec\xd7\x1b\x4b\x34\x63\xab\xee\x30\x7e\x2b\xd7\x78\xcb\xa7\x51\xbc\xa8\xab\x83\x5f\x8b\xe3\xcb\xc4\xa7\xd3\xa3\x9e\x5d\xb3\x4f\xa7\x47\x8d\x60\x33\x68\xba\x37\x9c\x6f\x97\xf6\x97\xb1\xe3\x73\xb6\x66\x19\x97\x3f\x65\x22\x65\xa0\x35\x26\x09\x30\x68\x83\x15\xc5\xcc\xc1\xe0\xda\x72\x69\x6c\x24\x42\x99\x5a\x9e\x77\x09\x9e\xef\x29\x18\x7b\x08\xb4\x96\x24\x59\xb5\x73\x71\x77\xc9\x8c\x58\xe8\x35\xd0\x1c\xbb\x5b\x6e\x02\x15\xf6\x05\xd6\xeb\xeb\x57\x56\x7c\xd7\x41\xda\xfd\x51\x8e\x44\xb3\x74\x3e\x55\xb0\x6f\x4e\xf9\x4e\x2a\xa6\xf2\x46\xec\x5d\x45\x31\x4e\xaf\x53\xcc\xa1\x6e\x34\x1d\xce\x48\xbf\x03\x25\xd9\xab\x18\x76\x99\x94\x30\xfe\x10\xca\xe1\x6c\x6d\xb7\x85\x04\xb9\x9d\x74\x72\x53\x9a\xe2\x02\xe1\xd4\x26\x12\x60\x90\xa4\xce\x99\x83\x34\x95\x69\x23\xd0\x40\x43\x2c\x67\x2c\xaa\x45\xce\xe6\xb3\x4e\xd0\x74\x67\xbc\xfa\xe8\x70\xa9\x0e\x9d\x05\xb6\x5b\x3d\xf8\xef\xb7\x0a\x01\x9e\x66\xdd\x3e\x1d\xd2\xc5\xc3\xc3\xad\x81\x76\xee\xa0\x43\x37\x4b\x43\xdd\x35\x75\xd5\x11\xe4\x6a\x46\x86\x6e\x68\xe8\x6b\x3c\x38\x56\x10\xe1\x2b\x90\x9f\x15\x91\x13\x3c\xa4\x45\x3c\xa6\x63\xf4\x75\xd1\xcd\x61\x96\xd3\x6c\x13\xd3\x75\xce\xe3\xb9\x6f\x7e\xaf\x3e\xab\x3b\x98\x82\xa2\x6f\x26\x45\xef\x7a\xf7\xdb\x85\xaa\x70\x49\x0d\x59\x4b\x35\x07\xfc\xeb\x82\x99\x4c\xb9\x7f\xe0\x6b\x51\xd8\x51\x56\x88\x55\xb5\xa1\xcc\x25\x82\x78\x45\x81\x78\x80\xf7\x39\x1e\xa7\x82\x8f\x16\xec\x26\xca\xa2\x61\xac\x4d\xe3\x8a\xdc\xa1\xee\xce\x95\xe0\x23\x91\x1a\x73\xd8\xa0\xfb\x7c\x76\x17\x38\x56\x32\xa3\xe8\x86\xcc\x34\x2a\x6c\x8c\x1b\xe6\xc6\xe7\x1a\xd6\x68\x6d\xb5\x9a\xee\x00\x7e\x04\x2d\xf6\xfc\x29\x19\x40\x63\xa3\xd4\x1c\x14\xc1\x5f\x41\x8b\x3d\x7d\xe9\x94\x89\xc5\x58\x95\x68\x50\x07\x48\xf5\xd8\x66\xe4\x11\xbf\x49\x81\x0a\xc0\xf2\x48\xce\xdc\x92\x04\xbd\x6d\xec\x24\x36\x29\xff\x18\x8d\x48\x1b\x37\xee\x14\x8f\x09\xfd\xe5\x8b\x53\xda\x2c\x80\x2e\xee\xdd\x38\x8d\x49\x53\x08\x06\x7b\x07\x78\xcf\x6e\x04\xa3\xe8\x86\xe6\xdd\x14\xa7\x3b\x47\x98\x65\xe0\xfb\xb6\xc3\x0c\xf3\x15\xe8\x14\xe9\x3d\xc6\x87\x90\x35\x5a\xbc\x76\x24\x6c\x01\x5d\x53\x7a\x2c\x91\x89\xff\x45\xdd\x5a\xda\xc8\x34\x43\x75\x12\x35\xbb\x45\x72\x39\xeb\xb1\xee\xd6\xbf\x7b\x2f\xd5\xdc\xf6\xd8\x53\xff\x25\x4c\x6c\x8f\xbd\x2a\x94\xc5\x49\xec\xb1\x97\x85\xf7\xd3\x28\x69\xeb\x6f\xdb\xc5\x6f\xfc\xae\x5d\x57\x6f\x28\xef\xda\xd9\x15\x1f\xc9\xdb\x1e\xdb\x62\x5b\x6c\x7b\x76\x67\x85\x8c\xcb\xf9\x12\xf6\x98\x05\x05\x58\xe9\x48\xa4\xbd\xfb\xc2\x60\x99\x8c\xa3\xd1\x6b\x43\x18\xd5\x06\x04\x29\xb5\x6b\x26\xfa\x11\x32\xb8\x1a\x81\x8a\x7b\x7c\xb7\x58\x26\x59\xe2\x7f\xd7\xee\xb8\xb0\x9d\x28\x0f\x39\x5d\x3f\xed\x36\x5b\x0b\x63\x18\x15\xae\x47\x18\x17\x27\x14\x0a\xbc\xf6\xe4\xb1\x01\x65\x28\x6f\x13\xdb\x8f\x65\xda\x22\x19\x15\xca\xe9\x15\x52\x33\xe7\x91\x81\xc2\x34\xab\x89\x36\x2c\x5e\x3b\x44\x56\xee\x81\x4b\xc6\x58\xb0\x14\x40\x89\x97\xac\x00\xa0\x18\xbd\x76\x06\xbc\xa1\xa2\x56\x55\x5f\xc7\xc4\x07\xd6\xf5\xd2\xf2\x82\x7a\xce\xed\x3e\x05\xa1\xe1\x08\xb9\x0f\x9c\x96\xa6\xa1\xef\x6a\x29\x89\x85\x5b\x6f\x29\xb1\x70\x27\x13\xf9\x6e\x4e\x69\x7f\x1b\x41\x2a\x63\xf0\xd0\xc7\x8f\xa5\xb2\x4b\x96\x7d\xca\xd3\x49\x94\xb4\x61\x53\xb7\x9f\x94\xc6\x4e\x9f\x53\x5c\xd7\xf2\x77\x64\xc6\x7b\x6c\x26\x41\xf4\xfc\xba\xd8\x74\x2e\xee\xf2\x3d\xc4\x1a\xed\xe4\xca\xb7\xc7\x81\x5f\x88\x8f\x46\x07\xea\xde\x7c\x44\x72\x80\x46\x00\x6c\x6e\xd0\xf2\xd8\x32\xcd\xa5\x16\x98\x64\x07\xbd\xdd\x79\x46\xd0\xcd\xe2\xe1\x44\x8c\xc3\x4e\x51\x06\x58\x37\xf3\x58\x22\xd0\xa6\xa5\xc0\x34\xc8\x24\xc6\xdb\xa1\x23\x8b\x29\xdd\xaa\xa9\x6c\x3d\x89\xae\xdd\x6f\x40\x83\x7b\xac\x5b\x45\x4a\xc1\x99\xdc\x6f\xc0\xc3\x83\x2c\x0d\xf5\xac\xcd\xd3\x78\x59\x41\xc1\xa7\xb1\xc8\x32\x55\x3a\x9d\x8b\xe2\xc9\xe2\xce\x24\xd6\xf7\x58\x3e\x75\x3e\x7b\x65\x4c\xcd\x35\xb5\x34\xd7\x62\x81\xce\x2a\xff\x72\x8a\x1a\xe4\x69\xde\xeb\xf1\xbd\x17\x8b\x0f\x7c\x56\x50\xdc\xe8\xaf\x5a\xe8\x68\x79\xdb\x3d\x99\x60\x0e\x59\x99\xbc\x17\x8b\x1f\x51\x9c\x84\x09\x89\xd1\x4f\x58\x7d\x39\x3f\x7b\x2f\x16\x59\x9e\xca\x6b\xa1\xaf\x7d\x3c\xcb\x64\x18\xf1\x5c\x90\x51\xa4\xa7\x46\x70\x35\x06\x74\xe1\x10\xa0\x94\xe9\xb1\x8b\xbf\x9c\x1d\x9c\x7e\xb8\x64\x5c\xcd\x25\x79\xe4\xc3\xb8\x6f\xf2\xce\xdf\x2a\x1c\x3b\xaa\xf4\x13\x85\x66\x9c\xbe\x68\xa3\x81\x28\x63\x66\xc1\x3d\x26\xdc\x4c\x44\x85\xc6\xc0\x89\x4f\x69\x95\x20\x37\x39\xaa\xb8\x66\xa9\xd0\xb1\x11\x3d\x62\xec\xeb\x0f\x9c\xfa\xc6\x29\x47\x04\xa9\x71\xa6\x8a\x17\x2c\xe4\xb3\x1c\x1d\xbb\x75\x0f\xf5\x9c\x8f\xa5\x03\x5f\x7f\x24\xba\xf0\xc5\x8d\x4b\x61\xdb\x50\x15\xf5\x9a\x66\x18\xfa\x91\x54\x72\x22\x43\x37\x54\x23\x83\x8e\x52\x36\x04\x1c\xd3\xe2\xe5\xac\xc5\x32\x7e\x03\xeb\xa7\xe0\x65\x12\xa5\xdb\x88\x93\x6c\x9e\x80\x86\x16\x1c\xd1\x29\xe9\xba\xba\xd0\x7a\x54\xb3\x85\x7a\x2a\x0a\xa3\x37\xb2\x9d\xd7\x3d\xfa\x62\xb3\x37\x31\x76\x11\x80\x7d\xb9\x9c\xe7\x96\xcc\xbe\x55\x6f\x8e\xe7\xb9\x4b\xcc\x2e\x5b\xb6\xc6\xb5\x58\x8c\xe4\x6d\x62\x2b\xbc\x17\x8b\x7d\x79\x9b\x2c\x29\x3f\x4b\x89\xc8\x98\x0a\x27\xea\xcd\x92\x1a\xf3\x99\x57\xfc\xd3\xac\xae\xac\x3a\x5a\x0e\x93\x99\x3b\x80\x33\xfd\xca\xab\xa3\xaa\xe8\x0b\x15\x6e\x41\x46\xd7\x48\xed\x54\x77\x2d\x16\x6c\xca\x67\xc8\x5d\x29\xf4\xb4\xcb\xfe\x81\xcf\x48\x04\x5b\xb9\xb3\x0d\xc5\x37\x75\x54\xc3\x51\x32\xc9\xaa\x6b\xbd\xa1\xaf\x5e\x3d\xdb\x29\xc5\x8f\xf7\xd8\x7e\x94\x41\x34\x52\x9e\x2c\xd8\x6e\x9c\xff\x94\xb2\x54\xc4\xb0\xa1\xa6\xf3\x64\x62\xbc\xc9\x7f\x64\x61\x9e\xc6\x6d\x1e\xe7\x3d\xb6\x0b\xb9\xa7\xd9\x5e\x9e\xc6\x8f\x77\xe3\x9c\x4d\x05\x4f\x32\xac\xac\x0b\x2b\x16\xdd\x2b\x0c\xf7\xa1\x9a\xc2\x40\x60\xbd\xd2\x48\x9e\xab\x8b\xdb\x19\xe3\xea\xed\x07\x45\x75\xb5\x87\x7c\x69\x8c\x87\x63\x38\x72\x5a\xac\x7f\x15\x8d\xf3\xf6\x61\x92\x89\x94\x34\xbf\x63\x88\x67\x73\x05\xca\x67\x2d\x07\xd1\x2e\x69\x90\x5e\x1e\x5c\xb3\x3a\x16\x10\xf0\xd8\x2d\x28\x77\x6d\x68\x22\x80\x1a\x82\xaa\xc0\x58\x37\x5e\x49\x34\x1a\xf4\x3a\x9b\xa9\x0e\x60\xfb\xe8\xd8\xb7\xa3\xc3\x3c\xd7\xf4\xf8\x4a\x4e\xc5\xa6\x00\x43\xef\x38\x36\xb1\x5a\x3d\x15\x7b\x06\x71\x31\x86\x3c\xc5\x70\x3e\xaa\x05\x53\x8d\xc0\x41\x65\xad\xd7\x62\xe7\x67\xaa\xeb\xea\xa0\xca\x3a\xcc\x8c\x09\xf5\x54\xa6\xbd\x0c\xa4\xcd\xe7\x67\x70\xa0\x65\x64\x7a\xa5\x60\xf9\x0d\x50\xeb\x59\x69\xa4\xaa\x80\x3a\x34\x30\x6a\x87\x97\x93\xdb\x1d\x68\x1f\x6e\xfb\x19\xe3\x43\x79\x23\x5a\xe4\x9e\x06\x17\x92\x19\x9f\x08\x36\x9f\x6d\xc2\xbf\x8a\x08\x94\x9a\x50\x5f\xd6\x68\xc2\xcc\xa5\x42\xd5\xf6\x49\x3c\xcf\x36\x3f\x44\xc9\x3c\xdb\xfc\xab\x48\xa5\x9e\xd2\x0c\x82\xf5\x94\xd7\x19\xea\x20\xda\x2c\xad\x49\x25\xe1\x33\xcd\xdd\xcf\x5f\x5a\x04\xce\x36\x0c\x15\x47\xd2\x44\x0b\x2d\x0e\x49\x6d\x2f\x55\x10\xe0\xa8\xc2\x7f\x95\x72\x5a\x87\x24\xb0\xf5\xf6\x30\x5e\x4f\x06\xce\x8b\x30\x4c\x6a\x7d\x4f\x21\xa2\x42\x42\xf5\xc5\xf1\xdc\xa3\x7a\x30\xa6\xc7\x7b\x95\xa5\x11\x8e\x85\xeb\xd6\xf6\xfb\xba\x07\xde\xc2\x75\x33\x0f\x0d\x9d\xe3\x16\x2a\x77\xf0\x7c\x9d\x0e\x9e\x57\x96\x46\x38\x16\x6e\x7d\x07\xcf\xf5\x36\xab\xee\xe1\x01\xc4\x00\xda\x1c\x69\xf2\x37\x9b\xc5\x3a\x70\x8f\x3a\x4a\xf8\x88\x80\x1a\x0a\x1e\x65\x64\xb0\x41\xa6\xec\x7c\xc1\x92\xf9\x54\xa4\x51\x08\xe4\x00\xce\x5f\xa0\x02\x46\x05\xef\xf2\x21\x3e\xe1\xb2\x8d\xbd\x87\xb6\xd6\xed\x25\xb0\x5f\x4e\x4f\x8d\x01\xf4\x48\xac\xd1\x5d\x2a\xfd\x1b\x7a\x8b\xfa\x8e\xd5\xfb\x0d\x68\xa9\x62\x34\x20\xd6\x18\xc5\x03\x02\x2a\xf4\xa6\xcf\x1a\xc1\x60\x70\xb7\xf5\x32\x68\x31\x7e\xcd\xd9\xcf\xef\x9a\x1d\xc6\x8e\xb5\x5d\x1d\x41\xf2\x01\xa8\x23\xd3\x05\xa2\x00\xbc\x18\x07\xa5\x9e\x9a\x1a\xa0\x30\x7b\x63\xea\xd7\xf5\x17\x83\xf1\x85\x72\x84\x21\xbe\x40\x84\xab\x08\xd0\x88\xe7\x7c\x35\x45\x37\xa6\xe3\x07\x1a\xc4\x0e\x0b\xe6\xf9\xb8\xfd\xb2\x7c\x0e\xf5\x45\xae\x38\x26\xb0\x57\xcc\xc1\x9b\x34\xe7\x38\x2c\xc0\x71\xce\x62\xc1\x01\x84\xc8\x42\x3e\x13\x4c\xa6\x8a\x50\x94\x9a\x54\xd5\x60\x6c\x07\x58\xac\x86\x3c\xb8\xad\xa9\x2a\xed\x73\x0c\x41\xa1\x2d\xfa\x65\xf5\x80\xd4\xe7\x0f\x22\xe7\xe7\xb5\x64\x47\xd3\x3d\x2d\x39\xe7\x31\xf2\x33\xe0\x00\xa0\x18\xbf\xc2\xae\xa1\xe1\x74\xf0\x8f\x94\x0f\x09\x3b\xe8\xef\x41\x54\xae\xe8\x4e\xef\x7b\x0c\x07\xdf\xd1\x05\x77\x47\x23\xd6\xdd\x7e\xa9\xa7\x7f\x9e\xc0\xd1\x23\x46\x4e\x8c\x62\x9e\xa9\xab\xc3\x9d\x8e\x1b\x07\x40\xe8\xf8\x6e\x5f\x8b\x45\xa7\xc3\x3e\xf3\x28\x37\x02\x2e\xcd\x1e\x12\xe3\x0c\xe7\xa5\x10\xec\x56\x9b\x64\xeb\x93\x3f\xe3\x8b\xcc\xc0\xf3\xff\x1a\xb0\xa9\x6e\xc1\xf9\xf5\x56\xa6\xd7\xec\x56\xc4\xb1\xba\x14\xcd\x62\x9e\x43\x18\x6e\x0a\xfa\xe3\xc0\xab\x86\xc4\x66\x22\xc5\x0a\xdc\xb8\xd8\x72\x9b\x93\x04\xe2\xf2\x71\x70\xbb\xfd\xfb\x5c\xdd\x92\xb2\x4e\xb3\xbc\xbb\xc9\x27\x17\x03\xa2\x4d\x79\x0e\x3e\x0c\xc0\x95\xab\xaa\x51\xc6\x46\x51\x96\x47\x49\x48\x5b\x1c\x30\xae\xc1\xe3\xfc\x10\xd6\x98\x45\x19\x01\x43\x0a\xda\xac\x60\xae\x00\xd3\x3e\xab\x19\xda\x61\x01\xae\xe4\x6a\xcc\xd6\x28\xc1\x43\x75\x97\xcc\x40\xd7\x84\xb8\xde\x72\x5d\xcb\x67\xa9\x1c\xcd\x21\xee\x3d\xac\xbc\xe6\x31\xfd\x18\xf8\x76\xc0\xe9\x1c\x74\x55\x18\xb8\xad\xa5\xd9\x16\x08\xc6\x87\x6f\xd4\x0d\x49\xbd\xe0\xf3\x5c\x62\xac\x1d\x6b\x78\xad\xd7\xa7\x8a\x81\xa4\xd9\x58\x4d\xd1\x52\xb0\x6e\x95\x14\xc8\x87\xed\x1f\x1c\xc1\x30\xe9\x02\x67\x42\x25\xc2\x5c\xf3\x38\x6f\x5b\xea\x25\x13\xbd\x7d\x30\x7e\xcc\x71\x9f\xdd\x90\xa1\x16\x07\xe8\x06\x18\x60\xa8\x3f\x72\x2b\x51\xec\xb1\x5d\x32\x8c\x8c\xa6\x18\x42\x31\x8d\x14\x02\xb4\xd4\x10\x0d\xe8\x56\xa1\xf1\x28\x53\x97\x8d\x99\xd0\x3c\x5c\x2e\x55\x6b\x1d\xd6\x57\xc5\xe7\x99\xc2\x99\x29\x5f\x28\x0e\xf6\x8a\xcf\x66\x0b\x7b\x8b\x46\xf3\x18\xb0\x77\x36\x45\xc6\xe9\x3c\xcb\x53\xba\xf9\x33\x1d\x21\x32\xca\x83\x8c\x45\xd3\x99\xcc\x40\x63\x03\x93\x24\x91\xee\x98\x7e\x74\x60\x26\xc9\xd3\x9c\x96\x31\xc3\xdb\xba\x22\x04\x9a\x5d\xba\x85\x02\x30\x2d\x51\x78\x0d\xdb\x5f\xed\x31\x7f\x9a\x70\x1f\x97\x27\xba\x67\x67\xda\x7b\xdf\x52\x60\x89\x0f\x16\x1e\x8e\x4e\x24\xb0\x97\x2d\x64\x80\x27\x22\x67\x5c\x37\x82\xec\xbd\x37\x4c\xf2\xa9\xd2\x8b\x8d\x9b\x2c\x91\x39\x2e\x9b\x18\x75\x40\xd6\x71\x95\xe7\xb3\xac\xb7\xb9\x19\xa6\xc3\xf9\xa4\x13\xca\xe9\x66\xf7\xc5\xd3\xa7\xdd\x2d\x56\x85\x7d\xe6\x88\x42\x34\x5c\x7d\x62\x7d\x22\xfa\x7d\x2d\xc4\x8c\xe5\x29\x0f\xaf\xb5\x35\xae\xbe\x5e\xaa\xa1\xc3\xc1\x92\x43\x5c\x30\xe3\x19\x96\x88\x50\x64\x19\xe4\x3f\x92\xa9\x73\xca\x2e\xeb\x85\x8d\x9c\x88\x5c\x3a\x90\x4d\x4d\x51\xcd\xed\x8b\x80\xd9\xc2\x60\x60\x8b\xa6\xbd\x9c\x0d\xa3\x7c\xca\x67\x88\x57\x48\x1e\x87\x51\xce\xb4\xce\x28\x63\x10\xa9\x22\x9b\xc9\x64\xe4\x9a\xc3\xfd\xc8\x06\x1b\xb1\x44\xa6\x63\xb0\xa1\xa8\xc5\x4c\xa4\xf9\x42\x0f\xd6\xec\xbc\xaa\x49\xd5\xf7\x7e\x31\x72\x62\x9d\x57\x5d\x0a\xcc\x76\x9c\x8a\x51\xc4\x91\x2f\xd2\xf7\x39\xdc\x34\xd4\xa5\x28\x65\x6f\x61\x52\xc5\xdf\xe7\xd1\x0d\x8f\x6d\xc3\xec\xa0\x33\xe9\xb0\xc1\x86\x9a\xb3\xc1\x46\x45\xed\xb7\xdd\x8e\x7b\xa7\xc0\x26\xc9\xf2\x18\x4c\xba\xf4\x75\xb2\xe2\xac\x1f\x45\x5c\x5d\x72\x76\x53\xf1\x56\xfd\x5b\x8b\x14\xef\x64\x4c\xe6\x41\xb3\x54\xdc\x40\xfc\x0c\x73\x38\x8c\x99\x47\xc8\xe1\x7c\xd8\x3f\xd8\xeb\x1f\x9c\xb1\xee\xd6\x93\x57\xe4\x33\x38\xea\x80\x2b\x1f\xc1\xdb\x3f\xd8\x3b\xed\xfb\xdf\x5b\x3e\x18\xc3\x5c\x8e\x80\x4b\x33\xce\x1b\x28\x70\x82\xa5\xd7\x42\x86\x39\xc8\x91\xe4\xbc\x82\xdd\xa0\xce\xee\x3a\x90\x6b\xed\x5c\xfb\x94\x4d\x01\x66\x0d\x22\x92\x20\x27\xbb\x07\x77\x54\x08\xc2\x69\x84\x6a\x31\x5f\x50\x7b\x65\xe9\x9f\x7a\xd8\x0d\xbd\x90\x13\x0e\x7f\xc3\xe3\x18\xe6\x50\x24\xf9\xbe\x3e\x97\x15\xa7\x90\xcb\xd9\x49\x2a\x67\x7c\xe2\x46\xf6\x44\x49\xa3\xc3\x50\xd0\xd5\x8e\x80\x89\xc2\xc5\x64\x6f\xf7\xe3\xde\x81\xb1\xd4\x21\xd1\x7f\x32\x9f\x36\x02\xfc\x12\x34\x5b\x65\xfe\x54\xd1\x47\xcd\x2b\xb8\x01\x39\xac\x95\x7d\xe8\xc5\x1a\x55\x9c\x0f\x5c\xec\x21\x4c\x18\xca\x94\x09\x98\x8e\xe6\xa5\xab\x90\x70\xb0\x20\xcf\x30\x2e\x21\x20\x01\x49\xa3\x04\x73\xd5\xc0\xf1\x6d\x61\xb9\x39\x8c\x6a\xe4\x1f\x5e\x2f\x64\x22\xf4\xd6\x9d\xca\x51\x34\x8e\x0c\x67\x84\x9d\xc9\x5a\x85\x58\xba\x0a\x2a\x0d\x9c\x82\xbf\xa8\xbe\x9b\xae\x83\xc1\x6e\x83\x4e\x9c\x45\xd3\x52\x7d\xcc\x8a\x11\xe5\x05\x36\xb4\xad\x8f\x1f\x82\xa3\x19\x2b\x8c\x76\x4d\x01\x4f\xf6\xfa\x87\x2d\x8a\x4f\x45\x5f\xf5\xe0\x38\x38\x25\x9a\x53\x8f\x31\xf4\xb1\x05\x77\x5c\x6f\x50\x36\x6e\x8d\x62\x7d\x46\x22\x0b\xd3\x68\x88\x53\xa0\xa5\xdf\xda\x42\x9e\x22\xc2\x6a\x78\x3a\x23\x90\xfa\x36\xd8\x38\xd9\x6b\xf7\x41\x67\xf0\x56\x1b\x7f\x28\x02\x30\xd8\x60\x19\xea\xca\xeb\x86\xa7\xa5\x44\xc4\x93\xab\xc3\xcd\xac\xb3\x7a\x57\xb3\xba\x36\x54\xaf\xed\x91\xae\x36\x9f\xcd\x44\x0a\x96\xd5\x14\xe9\x5b\xf7\xd2\x32\xe5\xd7\x62\x11\x72\x88\x5c\x48\x8e\x20\x16\xca\xf3\xa7\xac\x81\xa9\x93\x82\xff\x08\x9a\x00\xf4\xd5\x33\xf3\xea\x4b\xd0\xa4\xb3\x77\x59\x4b\x16\x5a\xa9\xc9\x29\x08\x5d\x9e\x3f\xc5\x58\xd1\x49\xae\x4f\x9e\x29\xbf\x16\x19\x0b\x7e\xfe\x8f\xc0\x5e\x18\xb7\xb6\x02\x47\x96\xc5\x18\x0b\x7e\xfe\xe2\x7c\xee\x8e\x83\x0e\x63\x8d\x8f\x52\x7b\x4d\x2b\x9c\xbd\x8a\x26\xc8\xd7\xf2\x9c\x6d\xdd\x75\xc7\xaa\x9d\xad\xbb\xed\x2d\x7b\xae\x3a\x4b\x08\xab\x9a\x66\xb9\x33\xb1\x38\x4e\x88\x51\x5d\x60\xe1\xed\x9a\x39\x77\xa8\x7b\xaf\x17\x4c\x9e\xdf\x05\x0c\x88\xad\x99\x02\x37\x53\xa0\x9e\xbb\xf9\x8c\x0d\x17\xea\x7a\x55\x85\x45\x53\xbc\x1b\xd8\xae\x84\x32\x19\x47\x93\x79\x8a\xc7\x59\x46\x37\x38\xbc\x0d\xb4\x70\xe6\x86\x81\x47\x06\x6c\x7f\x28\xcc\x6f\x79\x03\x5b\xb2\x26\x3c\x79\xc3\xfe\xc1\xdb\xdd\x4f\x47\x67\x55\x44\x92\x3e\x55\x50\xc9\x3d\xf4\xdb\xf6\xe3\x21\x4b\x26\x67\xb9\x3a\x76\x20\x6e\xb8\x3e\x34\x3c\xde\xc1\xde\x47\x62\x3c\x2d\x5d\xd9\x03\x5d\x07\x47\x02\xa8\x51\x7e\x65\x69\x0a\x74\xf4\x64\xb7\xdf\xaf\xea\xa5\x7a\x5f\xd1\x45\x92\x3b\x5b\x14\xc1\xc8\x66\x8a\xe9\xb1\x4b\x64\x79\x9b\x3d\x3e\x6b\xd9\xeb\x8b\x40\xd9\xf1\x7b\xb1\xe8\x38\x72\x0b\x35\x0c\x3d\xeb\x74\xf7\x46\x4a\x4b\x7a\x12\xd4\xfe\x88\x8e\x7f\x9c\x35\x9a\xba\x92\xa6\xe4\xc6\x5c\xcd\x62\xc2\x61\x4e\xc7\xfe\x78\x1e\x53\xd8\x03\x22\x70\x23\x7d\xb5\x83\x00\xc7\xc8\xce\x45\x39\x53\xcc\x56\x92\x47\x90\x59\x29\xcb\xd3\x68\x96\x39\xfb\xd6\xd0\x46\xcc\xdb\x48\xfd\xd1\xab\x61\x83\xc0\xc9\x29\x4b\x05\xc7\x18\xa9\x74\x90\x5c\x9b\x21\xc3\xa4\xf7\xcf\x4e\x0f\x4f\xaa\x66\x1d\x3e\x04\xcd\x22\xcf\x00\x72\x19\x61\xdd\x1d\x79\x18\xca\x74\xe4\xc0\x0f\x14\x3a\xb7\xb5\x04\xc8\x8d\x14\x5e\xc3\x3c\x38\x0e\x9e\x08\xbb\x32\xdf\x8e\xb5\x88\x2b\x4b\x88\x8c\x88\xc8\xcf\x60\xe4\x29\x16\x3b\x37\x39\xc1\xff\x74\xf6\xf6\x25\x00\x7e\x5d\xcc\x98\x51\xb6\x8f\x05\xe5\xa2\x28\xa9\x16\xdd\x83\xd9\xd1\x96\x92\x8e\xb2\xe0\x8c\x67\x2f\x66\x8e\x3c\x90\x69\xd8\x06\xa6\xba\xe8\x86\xa8\x3d\xa6\x50\xe4\xda\xb1\x0d\x03\x4d\x68\xa5\x05\x5c\x8e\xec\x29\x1e\xa5\x45\x69\x87\x4c\xd9\x70\x3e\xa4\x4b\x23\x45\x11\xc4\x8e\x39\xfa\xe0\x13\x9e\x65\xb0\x7c\x78\xc9\xb7\x21\x0f\xe3\xd8\xea\x2a\xbd\x2e\x1b\xbd\x68\x75\xb4\x40\x52\xac\x7e\x33\xa0\x3c\xa5\xed\x95\xcc\x84\x99\xbc\x2b\x1d\x71\x39\xa4\x29\x68\x31\xb8\x3d\xa1\x48\x47\x0b\x1d\x5c\xf1\xec\x72\xe5\xb3\x83\x41\xd4\xf1\x2a\xb5\x34\xf5\xc5\x41\x27\xdd\xbb\x9d\x9d\x6a\x1d\xb1\x87\x4d\x8e\x5d\x98\xae\xa7\x0d\x32\x6b\xea\xa1\x81\x8a\xdf\x21\x88\x05\xdb\x5c\x92\x2a\xca\xd7\xf7\x9a\x44\x3c\x91\x93\x7f\x07\x6c\xc7\xc8\xd9\x69\xa7\x50\xe1\x22\xba\x74\x92\xcd\xf8\x43\x56\x7f\x1a\x43\x4b\x06\x3b\x04\xe1\x62\xeb\xb2\xa5\x81\x5f\x74\x2f\xeb\x42\xdd\x56\x0e\xbb\x53\xa1\xd2\x5e\x05\x77\x60\x8d\x7b\xea\xd4\xf4\xd4\xe5\x72\x06\x31\xc2\x0f\x7f\x6f\x6a\x9c\x2a\xec\x41\xc0\x6b\x1e\xc7\x24\x62\x35\x81\x8d\xa5\xba\x05\x43\xfc\x3c\x47\xee\xa4\xa3\x9c\xac\xc4\x36\xb3\x51\xaa\xf0\xcd\xb5\xbf\xaf\xc3\x82\x4a\x7f\x24\x47\x0b\x4e\x3d\xb2\x83\xf9\x0c\xd6\x0f\x90\x7c\x32\xcc\x31\xeb\x1e\x38\x63\x91\x04\x03\xdd\xf0\x84\xba\x15\x0f\xe7\x39\xbb\x15\x6c\x24\xb5\x85\xc9\x07\x1e\x6a\x3e\x59\xf1\x83\xe8\xde\x0b\x87\x8d\xef\x50\xcc\x67\x33\x12\xa0\x67\x8b\x24\xbf\x12\x39\xe9\x62\xe0\x2a\x03\xd2\x3a\xbc\x70\xaf\x9c\x1d\x57\x9b\x5f\xe5\x0a\x09\x36\xed\xe4\xaf\x56\xb1\xd3\xc8\x43\x32\x9b\xc5\x51\xde\x08\x82\x66\x67\x2c\xd3\x03\x1e\x5e\x35\x7c\xb2\xee\x59\xd3\x58\xa3\x01\x53\xa0\xc2\x0f\xc3\xcc\xb3\x16\x6a\xb8\xd3\xbc\x7c\x44\xc6\xfc\xa1\x6a\x40\x3a\xa5\x9b\x63\x2a\xac\xb0\x6a\x87\xa1\x63\x6f\x47\x1d\xc7\x7b\x94\x2c\xaa\x21\x3a\xc0\xed\x3a\xc6\xcd\xf2\x56\xa4\xef\xa1\xbc\x3a\xa2\x73\x79\xa4\x5e\xec\x71\x13\x2f\x50\xcd\x57\x43\x80\x1a\x4e\x15\xfb\xfa\x95\x09\xd0\x5d\xbc\x17\x8b\xa6\xa2\x45\x0d\x0b\x61\x87\x05\x61\xa0\x4a\x78\xaf\x6e\x82\xa6\x6b\xcd\x7a\x9c\x60\x10\x5e\x61\xc5\xa4\xac\xa1\x50\x4b\xfd\x54\xac\x6a\x93\xb6\x14\xa8\x39\xc6\x91\x3a\xab\x20\xbb\xb7\x9c\x2d\x36\x1d\x3d\xbe\x82\x75\x24\x20\x79\x89\xa7\xfe\xd7\xd7\x67\x7d\x3c\xe9\x4d\x37\x14\x57\xfc\x26\x92\x69\xa7\xb0\xe8\x5e\xe0\x72\x41\x42\x27\x43\x64\x7d\xd1\xf9\x0e\x0b\x1c\xbd\x44\xa0\x4a\x09\x93\x88\x0b\x72\x9d\x7a\xe1\x5d\x21\x8d\xeb\x44\xe6\x0c\x65\x65\x02\xa2\x12\x81\x04\x53\xfd\x16\x77\x33\x0a\x23\x5f\xa0\x0d\x24\x4d\xe2\x89\x81\xe4\x2a\x10\x60\x8b\x45\x39\x1b\x45\xa3\x24\xc8\xd5\x4e\x8b\x72\xba\x79\xdd\x0a\x8a\xd2\x3b\x14\x18\xa4\x84\x1d\xf7\x75\x66\x62\x0b\x2b\xd1\x39\x53\xd8\xe1\x87\x03\x8a\x47\xac\xc3\x31\x81\x35\x1b\xf6\x11\x26\x55\x4b\x84\x40\x37\xd3\x8e\x23\x12\xa3\x2a\x38\x85\xf9\xdc\xdc\x34\x5f\xce\xdc\x20\x52\x30\x74\xd0\x6b\x80\x02\x41\xc7\x3e\x55\xb7\xbb\xc5\x2c\x0a\x81\x96\x00\xed\x70\x54\x2f\x78\x54\x1b\x78\x90\x39\xc8\x5d\x87\x5c\x92\x59\xb3\x51\x65\x28\xee\x23\x00\xed\x43\xe0\x98\x3a\x87\x57\xb5\xbb\x80\xc4\x4d\x6e\x8e\xb4\x47\x96\x39\x37\x7e\x16\x00\x21\xbc\xaa\xd8\x16\x8c\x11\xd3\x18\x5e\xb9\xa9\xd8\xb6\x9a\xec\xb1\xba\x8f\xd1\x66\x74\x92\x8b\x3b\x88\xf2\xc7\x1d\xf6\x64\xdb\xba\x4e\xa8\x36\xec\xd7\x22\x4a\x86\x57\xee\xc1\x5e\x4d\x80\x1a\x55\x83\x0c\xaf\x9a\x4d\x43\xd4\x8a\x57\x87\xd7\xf8\xba\x20\x0d\xab\xf0\xd5\x3a\xc1\x8a\x66\x3b\x79\x42\xbb\x44\x26\x6d\xb0\x25\xd2\xf7\x51\xeb\xc6\x8a\xe7\xc6\x15\x64\x59\x9c\x0e\x21\xa2\x2d\x4a\x66\x50\x6c\x6a\xc3\x4e\xb3\x80\xcf\x66\x1d\x1d\xbb\x74\x1e\xc7\x14\x91\x4c\x3b\x4b\x1d\x64\x21\x24\x74\x41\x5e\x94\x92\xaa\xa8\xc6\x21\xec\x8b\x26\x1a\xf0\x51\xfd\x98\xcf\x88\xac\x62\x1d\xb5\xb5\x0e\xfa\x7b\x74\x03\x9f\xf2\x28\x51\xb7\x21\x38\xc1\x55\x77\xa2\x84\xd9\x26\x75\xdf\xd4\x51\xa4\x73\x89\xac\xa2\xcd\x34\xaf\x58\x73\x77\x36\xfb\x28\x93\xbd\x3c\x8d\xc1\xec\x81\x26\xbb\xfe\x14\xf2\x73\x11\x7c\xfd\xca\xfc\x37\x90\x74\xa1\xf2\x2d\x4d\x57\xf1\xfc\x32\x78\xec\x10\xeb\x32\x56\x57\x22\x03\x2e\xfa\x92\x23\xc8\xd8\xf8\x55\x8d\xa6\x56\x5c\xbf\x12\x2c\x5a\xea\xd5\xcd\x90\xd9\xa7\x8a\xb6\x76\x5f\xba\x1b\xa1\xd8\x5a\xc5\xcb\x1f\xd8\xff\x34\xba\xec\x0f\x7f\x50\x70\xb4\x02\x82\xb5\x59\xb7\xe9\x7a\x5b\x78\x4d\x6c\xbf\x70\x9b\x58\x67\x6d\x1b\x62\xf9\x41\xaf\xae\xef\xf7\x3a\xe7\xc1\x2e\xf2\xf7\x99\x8f\xaf\xec\x7f\x69\x3a\x1c\x36\x64\x5f\x68\x17\x33\x32\x8a\xec\xe0\xcb\xec\xc2\xb4\x74\x69\x31\x17\xbf\x95\x9c\xca\x6e\x79\x9a\x34\x82\x8f\x92\x41\x6c\xec\xc8\x48\xc9\x09\x00\x3a\x57\x94\x68\x7a\xf9\x84\x27\x7b\x5b\x9d\xb7\x8e\x2e\xae\x68\xda\x3b\x91\x24\x4c\x98\x93\xa8\x5f\x0d\x20\x15\x99\x8c\x6f\xc4\x08\xb5\x0c\xc5\xc4\x72\x55\x5e\x74\x8e\x8f\x1f\x38\x5d\x1b\xbf\x4a\x97\x31\xd0\x19\x6b\xad\x00\xa6\x10\xf1\x85\x5e\x26\x18\x39\x45\x0b\x17\x8d\xbc\x8d\x1b\x48\x36\x43\xd5\x28\xca\x66\x10\x71\x3e\xca\x4b\x55\x46\x62\x2c\x52\x13\x32\xdd\x13\xdf\xb5\x0c\x28\x1a\xab\x56\x90\x82\x34\xad\x63\xbd\x09\xab\x26\x82\x4f\x85\xe7\x8f\x42\xcd\xed\xd0\xc2\x1b\x8f\x44\x7d\xc2\xaa\x89\xb7\xf3\xae\xb8\x29\xdd\x7f\xeb\xe3\x6c\x60\xe0\x03\x58\x2c\x2d\x1a\xe0\xe8\x88\x08\xd4\x62\x17\xa2\x45\x2d\x5c\x5a\x7f\x18\x05\xdf\x00\xde\xd1\xd2\x47\xc5\xa1\x81\x23\xe5\x23\x9b\x2e\xa9\xdc\x94\x5d\x29\x53\xa6\xe8\x47\x89\x65\x0b\xc8\x64\x05\xcc\xa4\xec\x06\xb9\x65\x1a\xcd\x62\xd1\xa6\xa8\x61\x8d\x60\x67\x67\x27\x68\x32\x39\x13\x29\xcf\x25\xc6\x09\x11\x59\x8e\x91\xd2\xa2\xdc\xa8\x70\x31\x80\x7f\x86\xc2\x98\x9c\x43\xde\x85\x28\x61\xe0\x56\x46\x72\x09\xc5\x2b\xce\xa3\xec\x4a\x1d\x60\x13\x2b\x17\xa6\xf2\x28\x76\x83\x4f\x04\x4f\x4d\x35\x8b\xa3\x5c\xa4\x3c\xf6\x62\x7c\x69\xde\x2c\x97\xda\x75\xc3\xc6\x4b\x1b\x2e\x28\x1d\x1c\xac\x28\xaa\xb3\x8c\xcb\x65\x85\xe6\xad\x83\x45\xcc\x7d\x42\x4f\xfc\xb2\x2a\x54\xc6\xd4\x39\xd9\xed\xf7\x97\x56\x50\x05\x4c\x69\x90\x10\x2e\x2d\x0e\x25\x0a\x9e\x93\x29\x84\xc5\x34\x47\xa3\x81\xa6\x58\xeb\x9d\xa2\x09\xc9\x9f\xc8\x2a\xa5\xc7\xf4\x85\xc0\x94\x9f\xa2\x89\x49\xa9\x82\xbd\x3a\xf8\x37\xa4\x9e\xfd\x61\xad\xfe\x0f\x13\xbd\xff\xdb\x53\x85\xd1\xb7\x82\x65\xf3\x14\x53\x88\x59\xb9\xb1\x61\xb1\x8c\xb6\x00\xb4\xa3\x83\x8d\x8b\x4e\xa7\x73\x39\xd8\x18\xd8\x54\x52\x46\x9d\xb0\xc3\x1e\x35\x36\x7f\x1e\x0c\x2e\x06\x83\xdb\xc7\x83\xc1\xe5\xff\xb7\x09\x49\xf8\x1a\xb8\x5f\x3a\x08\xd8\x50\x7c\x1d\x16\xc8\x37\xc1\x2e\x44\x06\xd2\xc6\xe2\x3a\xf8\x0e\x25\x78\x32\x4d\xfe\xf0\x83\x99\xe0\x1f\x7e\x50\xf3\xe9\xa7\x51\xd2\xd5\xed\x28\xc8\x10\x1c\xda\xc3\x2c\x04\x61\x2c\x78\x0a\x12\x7e\x57\xf3\xa5\x35\x3c\xf6\x0e\xa4\xe5\xcf\xa8\x9d\xbe\xe5\x51\x8e\x8a\x0c\x61\x34\x24\x70\x74\x45\x66\x7a\x47\xe6\xf8\x35\x01\x78\x2c\x32\xd8\xac\x17\x40\x0d\x00\x11\xdc\x77\xdf\xf0\x1f\x9d\x22\xda\x9d\x13\x63\xe6\xbe\x64\x52\x0a\x12\x03\x23\x4c\x2c\x32\x29\xdb\x4d\x37\x95\xdd\xf7\xe8\x9d\xb6\xd8\xff\x0e\x9d\xeb\x7e\x97\xce\x79\xae\x74\x86\x94\x9a\x1b\x0e\x82\x35\x0d\x55\xd1\x65\x2a\x13\x78\x69\xbd\x80\xe6\x3b\xf8\x56\x55\x51\x4d\x43\xa9\x92\xda\x90\x4b\x6b\xa9\x02\x41\x55\x0a\xb1\x15\x67\x86\x7b\x3a\x1c\x8e\xd5\xd6\xe7\xd9\x75\x9f\xf8\x6f\x4c\xa2\x21\x72\xd6\xa0\x9c\x90\x06\x46\x53\x5d\xe8\x71\x57\x00\x21\x06\xe3\x7c\x54\x24\x12\x30\xed\x4a\xcf\xc3\x50\xce\x93\x9c\xae\x40\x84\xe8\x5a\x89\x03\x9b\xc2\xd8\xe8\x92\xb8\x8e\x29\x9e\x01\xa2\x26\x13\xa8\xf1\x3c\x05\x97\x60\x9b\xa8\xd2\x78\x35\xc1\x3d\x1d\x14\xfd\x0a\xba\x63\x35\x7f\xc6\x87\x5a\x4f\xea\x18\xef\x12\xc0\xc1\xc6\x5e\xff\x90\xfd\x55\x67\x3c\xc3\x9f\x5d\xf6\x9a\x6d\xab\x97\xe6\x2c\xc1\x51\xed\xa8\x1b\x89\x37\x2b\x20\x44\xd1\x77\x94\x02\xf7\xa8\xb6\xaf\xc9\x26\x62\xd8\x3d\xc3\xea\x11\xf7\x02\x95\x7b\x0e\x94\x96\xea\x96\xea\xcb\x7f\x9b\x86\xff\x9b\xac\xcc\x86\xf2\x46\x0b\x90\x14\x65\xea\x69\xa4\x26\x50\xe0\xb9\xc2\xe3\x9c\x7e\x2a\x3c\xe8\xc1\x7f\x07\x94\x3a\x43\xf7\x8e\xdc\x75\xf4\x51\xa0\xbd\x77\xc0\x73\x18\x9f\x1b\x34\x00\x97\xbd\xa6\x62\x2e\x33\xb8\xe7\xd1\x3e\xa3\x61\x1b\x46\x79\xc6\x32\x89\xc2\x54\xc8\xd1\x92\x42\x30\xaa\xe9\x3c\xa1\x44\x2f\x5a\x20\xe4\x30\x83\xa9\xe3\xeb\xad\xa7\xdb\x6e\x5a\xdc\xa6\x53\xdf\x46\xb2\x96\xbb\x2b\x64\x97\x34\x88\x4f\x43\xe8\x78\xdb\xf8\xe1\xfc\x9d\xba\xd0\x37\xd0\x48\xd1\x23\x49\x2d\xe6\x4c\x9f\x27\x10\x51\xc3\x58\x5b\x3c\x67\xfb\x42\x4c\x87\x3b\xf5\x9f\xc9\xc2\xd6\x33\x86\xf2\x40\xa0\xbd\x61\xbd\xf1\xb1\x15\x45\x1e\x26\xe6\x53\xcb\xb7\x42\xc6\xfd\x02\xc1\x29\x75\x24\x74\xac\x6b\xce\x2b\x37\x76\x9c\xda\xeb\x36\x19\xa8\x55\x29\xdb\x96\xfc\x1c\xa5\x7b\x46\xe7\x1c\xca\xa9\x35\xc5\x43\x9d\x9d\x10\x3a\x33\x78\xcc\xc3\x6b\x36\xe5\x93\x28\xec\x14\xd6\xd3\xf0\x56\xee\x14\x5b\x46\x1a\x78\xb3\xaf\x5f\xeb\x98\xeb\x47\x9a\x7a\xab\x32\x6a\x65\xbe\x7e\x05\x0c\x6b\x36\x0b\x92\x50\x63\x63\x15\x65\x9e\xee\xc0\x51\x79\x53\x22\x64\x9a\x38\xc8\x83\x8a\x99\xa9\x1d\x49\xe8\x3c\xf1\xd4\xd7\xa5\xec\x46\x9a\x14\x82\x3c\x54\xdc\x45\x14\x1f\xd0\x73\xb1\xec\xb8\xfd\x02\x8b\x57\x9e\x14\x00\xb7\xd4\xfb\x6a\x85\x3c\x8a\xee\x75\x4a\x58\x03\x2a\xe4\x09\x1a\xb8\x82\xd5\xf7\x5c\x7d\x04\x72\x89\x66\x23\x21\x2d\x73\x04\xc6\x03\x35\x22\x53\xc8\x98\x06\x8b\x46\xac\xb9\x5a\x38\x6b\x76\x81\x7c\xaf\xe2\xe6\x5a\x36\x76\x31\x85\x4a\x05\x4d\xbd\x81\xe6\x11\x12\xb2\xe3\x4b\xae\x71\xa8\x12\xe4\xb9\xb1\xf0\x4d\xe5\x7d\x03\x46\xc7\x76\x59\xdf\x99\x75\x41\x34\x99\xbf\x4e\xe4\x2d\xdd\x9b\xf3\x74\x41\x17\xe7\x48\x67\x33\x13\x05\x3e\x0d\x64\xd2\x06\x9a\x56\x22\x03\x5e\xfa\xcb\xb6\x54\x34\xef\xe0\x1f\xcc\x84\x3d\xbf\x63\x9f\xcc\xb9\x94\xad\x70\x23\xed\x20\x4d\xfb\x2e\x57\x52\x47\xa6\xb1\xce\x95\xd4\xdd\x34\x1e\x33\x4e\xca\x56\x90\xb7\x94\x9b\xf4\x8b\x66\xf3\x61\x96\xa7\x8d\x06\xd2\xf6\x3f\xb1\x2e\xeb\xb1\xad\x66\x8b\x75\x3d\x22\x79\x2f\x69\x6f\xc5\xf4\xe2\x8d\xae\x4e\x0d\x4d\x05\x1f\xf9\x43\xf2\xe7\x51\xdd\xb6\xf1\xc2\x19\xd4\x08\x73\x0e\x29\xc5\x3f\xa7\x78\x31\x01\x7b\xcc\xfe\xb3\x7f\xfc\xb1\x83\xd5\xa2\xf1\x82\x1a\x6a\x2e\x15\xe7\xf4\x15\xde\xfb\xf8\xae\x73\xb2\x96\xdd\xc9\x2d\xa3\x94\x45\x60\x12\x08\x56\x14\xf3\x29\xde\xe1\x09\xa2\x81\x73\xc5\x33\xc3\x75\x41\x8a\x8d\x25\xac\x57\x47\x4f\x4e\xd5\x49\xba\xc3\x2c\xf7\xea\x4c\x46\x09\x5b\x1d\xfe\xb4\x06\x0c\xf0\xb2\x3e\xda\xdf\xa7\x3a\x32\xb5\xba\x7e\x89\x0f\x28\xed\x35\x8d\x6e\x5b\x2d\xb6\xdd\x04\x08\x60\x21\x76\x01\x07\x6b\x83\x88\xbd\x43\xfe\x01\x2b\x3d\xba\x7f\xe6\x8b\xad\xb4\xad\x99\xd5\x65\x51\x4e\x93\x91\x4e\x31\x97\xa7\xd1\x64\x02\x69\xd6\x1d\x7b\x57\xa0\x1a\x60\x3b\x17\xa2\xdc\xce\x2a\xdf\xf5\x6a\xc1\x39\x3d\xe5\x0b\xca\x76\x29\xd1\x7e\xd4\x95\x81\xe5\xd2\xc0\xaa\xb4\xf6\x24\x42\xab\xd8\x5a\x63\x76\x6a\x25\x5b\x53\x39\xf2\xb6\x35\x6e\x40\x38\xff\xfc\x79\x70\xaf\x4b\x53\x39\x52\x7c\xd4\xeb\xed\xc0\xb7\x67\x70\x98\x98\x47\x04\x69\x39\x80\x27\x15\x00\x4c\x0f\x34\xa4\xe2\x2d\xca\x56\x7f\x5a\x51\xdd\xb9\xb1\x3b\x7d\x50\x97\xa9\x0a\x00\xcf\x96\xb5\xef\x42\xf2\x2f\xff\xba\xfa\xf3\xfa\xf1\xbb\x95\x11\x7d\xca\xd5\x5f\xac\x31\xfa\xfa\xc1\xbf\x0c\xec\x95\xb4\x48\x96\x1d\xd2\xfb\xc4\x17\x5a\x80\x4b\x0d\x09\xd8\xd4\x6d\xc6\x78\x6f\x21\x1f\xf7\x8b\x48\xa5\x9b\xd7\x72\x9e\xc4\x8a\x29\xd0\x1c\x44\xa7\x44\xc6\x69\xe7\x74\x15\x99\x53\x3d\x7b\xcc\xfc\x2d\xb6\x6d\x68\x78\x65\x5a\xfa\x63\x74\xdd\xc1\xe4\xab\xd8\x05\x9e\xb3\x58\xf0\x0c\x6d\x5b\x4d\x57\xca\x2d\x97\xb6\xb2\x3f\xf4\x36\xeb\x36\x75\x9f\x74\x5d\x5b\x5f\x57\x2b\xd7\xf1\x27\xb5\x9c\x66\xbb\xcc\x2d\x3a\x13\xfc\x90\xd3\x4d\xd7\xad\x12\x18\xe8\x5d\x6a\x6d\x8a\x6b\x40\x6f\x39\xd3\xac\x2b\x91\x1a\xd7\xd4\xf5\xb5\xb9\x4e\x61\x6c\x19\xd5\xb7\xcf\x9f\x22\xd6\x8d\x04\xfb\xc3\x0e\x7b\xf5\xcc\xeb\x8a\x33\xc0\x4a\xbd\xac\xaa\xd5\x66\xcf\x9f\xba\xc0\xbf\xe9\xc7\x6f\x55\xd8\xba\xec\xc6\x83\x5a\x6f\x7b\xd7\x71\x90\xba\xeb\x74\xcb\x19\xaa\xbe\x79\x55\x6a\xad\xd7\x1c\x40\xb3\xb8\xab\x30\x20\x77\x2a\xb2\x19\xc4\x72\x89\xf3\xcd\xa2\x83\x2b\x24\x53\x8e\x8c\x61\xec\x94\xcf\x8c\x06\x86\x67\x56\x52\x6d\xc0\x21\x27\xe0\x3a\x14\x43\x42\xe6\xd4\xc4\xd1\x1c\xe1\xed\x0d\x1a\x32\xa0\xec\x65\xcb\xa1\xf8\xe1\x95\x08\xaf\xab\x3a\xd5\xb1\x93\xbc\x7c\x96\xc9\xce\xa0\xc9\xbe\x7e\xb5\x8b\x06\x72\x24\x53\xa7\x00\xba\x59\x85\xf0\xda\xc6\xfa\xb1\xab\x50\xa8\x30\x48\xab\x51\xf3\x13\x4b\x74\xbf\x58\x49\x5f\x8c\x6c\xa2\x2e\x68\xd2\xb3\x7f\xaa\xa0\x49\x26\xbd\x14\xb8\x66\x81\x29\x42\x2a\xa7\x15\xea\x80\x13\x70\xa4\x85\xcc\xe4\x3c\x71\x38\x35\x32\xd0\xf3\xae\xd1\x6f\x41\xd4\x7e\x8b\xe3\x31\xa1\x58\xf4\x88\x7c\xb9\x18\xf8\x3d\x6a\xf3\x04\x54\xeb\x56\x07\x79\x61\x59\x6e\xbd\xc3\x14\xf9\x8e\xf5\x99\x32\x9c\x47\x71\xde\x8e\x12\x1d\x41\x66\x06\xeb\x43\x01\xcf\x03\xb0\x52\x4d\xa2\x10\xce\x3a\x34\xea\x01\x4f\x4d\x72\x66\xb8\x41\x8d\x90\xba\x9b\x56\x07\x89\x41\x7b\xf3\x1a\x7d\xf3\x1b\x1b\x67\xa6\xd2\x68\x50\x0f\xfe\x8b\xce\x30\x5c\xcc\x3b\x03\x59\xab\xc0\x38\x48\xe3\xd5\xf2\x86\xbc\x50\xbe\x82\xa7\x4e\xc3\xec\x3e\x2d\xef\x8e\x46\x94\x24\x43\x8b\xa0\x6c\x90\xf8\x44\x2d\x34\x8f\xd9\xee\xc9\x21\xf1\x94\x19\xc6\xc3\x9a\xf1\x14\x4c\xef\x21\xc4\x54\x86\x9e\xe6\xb3\x39\x29\xe3\xc1\xc9\x13\x7c\xed\x30\x9f\x1f\x1f\x8d\xa8\xd3\xb0\xce\x53\xc5\x10\x8e\x44\xce\xa3\xb8\x36\xa4\x55\x05\xbe\x7d\x53\x8b\x4a\xcf\x83\x72\x3a\xea\xaf\x7a\xf0\x5f\xeb\x14\x58\xdf\x08\x57\xd7\x9e\x56\xdb\x6f\xcf\x72\xc0\x76\x43\x9f\xfa\x8e\xc5\xa0\x95\x5f\x9a\x5c\x15\x60\x0e\x18\x65\x79\x51\xa6\xf9\xe5\xc2\x42\x2a\x2b\xed\x55\x0d\x43\xea\xaa\x6c\x8b\x55\x81\x4a\x8b\x62\x5b\xff\x22\xba\xec\x38\x6d\x4c\x79\x1e\x5e\xd9\x09\x75\x06\xd2\xf4\x0e\x5a\x3b\x06\x02\xe2\x1c\xa8\x56\xf5\xe0\x9f\xaa\xde\x3d\xa7\x28\x8e\xf5\x65\x9b\xe6\xa8\xac\xd0\x03\xd8\xa6\x7f\xb5\xbd\xeb\xb1\xf2\x94\xf7\xe8\xdf\x6f\xde\xfd\xe1\x91\x37\x6b\x45\xfc\xaf\x9a\x6f\xb6\xc3\x2e\xa8\xc0\xe5\x32\xf3\xe8\xa5\x40\x3a\xb3\x79\x76\x65\x46\xed\x70\x55\xb0\x46\x99\x4c\x73\x1b\x17\x9e\xb7\xd8\xd0\x9b\x6d\xd2\x84\xd7\xe2\x3d\xd4\xdf\x93\xd3\x19\x4f\x45\xc3\xe5\x86\x18\xe3\x1d\x77\x62\x86\xce\x2f\xcb\x03\x7d\x2b\x5a\x67\xaf\xbf\xfb\xc7\xe0\x9b\x6c\x37\x2e\x71\x18\x9a\xfe\xeb\x5b\xbc\xb8\x8b\xb2\x3c\x83\xab\x26\x39\xdb\x58\x46\xc2\x42\xfb\x00\xd7\xc0\x99\x08\xa3\x31\x9a\x20\x13\x98\x0c\xb3\xa4\xcf\x52\x11\x8a\x11\x5e\x45\x81\x10\x83\x8f\x01\xba\x44\x47\xf1\x28\xe4\xe9\x28\xeb\x30\xf6\x53\x74\x23\x70\xf7\x9b\xc3\x44\xf5\x6c\xb0\x01\x4a\x95\xdd\xc1\x06\xdc\x7a\xe9\xe7\x8f\xea\x45\x8b\xb2\x2c\x39\x45\x48\x81\xd9\x22\x4f\x42\xfd\xde\x05\x8b\x43\x81\x0d\x63\x18\x2c\x17\x2a\xf0\x56\xe8\x5f\x33\x82\x54\x9d\xfe\xb4\xd9\xbb\x39\xb1\x5b\x2d\x77\x7a\x4c\xd6\x50\xb4\xac\xc5\x95\x3f\x51\x14\x35\xed\x00\x61\x35\x24\xcb\x42\x55\x07\xa9\xb8\xe3\xd3\x59\x2c\x7a\xe4\x5c\xa1\x58\x43\x05\x91\xd2\xa5\x53\x20\x25\xd7\xba\xdb\x26\x09\x44\x2b\x85\xc1\xc6\x55\xb4\xe0\x8f\x50\x79\xa4\x40\x58\x0a\xd7\x08\xb0\x7a\xd0\x62\x83\x8d\x00\x8a\x05\x83\x0d\xc0\x1d\xb7\xad\x90\x27\xa1\x88\x0b\x0e\xb1\x22\xc9\xa3\x54\xc4\x90\xf3\x1f\x12\xde\x3b\x41\x9c\x9a\x55\x4d\xed\xc6\x79\x7b\x3f\x68\xad\xb4\x7e\x28\x35\x2f\xee\x44\x38\xcf\x49\x2d\x0d\x8e\x4b\xc9\xc8\xfa\x07\xb9\x62\xa3\xca\xd1\x9d\x05\xad\xe2\xe1\x8c\x5e\x2a\x5e\x4a\x96\x9f\x64\xce\x38\x3b\x7b\x14\x98\xe6\x97\x6c\xd2\xa2\x29\xc5\x8f\x66\xcb\xfd\x58\x75\x48\xfd\x43\x9e\x6e\x85\xc3\xad\x70\xaa\x69\x8b\x6b\xb0\xe6\x42\x33\xaa\x25\x4c\x21\x72\x04\x10\x7e\x2a\x43\x4c\xb8\xb5\x62\x3c\x92\x66\x2a\xe6\xac\x4a\x94\x89\x57\x04\x7b\xe8\x7a\x9d\x59\x26\xae\x7c\x87\x4a\x03\x96\xab\x0d\x89\xe6\x5f\x76\xeb\x19\x45\xa9\x1f\x38\x10\xf7\x9b\x91\xd5\xce\x3a\x8a\x0f\x07\x83\x0e\x6b\xc4\xaf\xc5\x13\x3a\x9e\x60\xba\xd0\x5d\x35\x92\xb6\x1d\x36\x33\x7b\xb6\x4f\x2f\x1b\x5a\xc3\x1d\x72\xcc\x0e\x75\x57\x13\xcf\x5d\xdc\xd5\x0f\x0b\x8e\xb3\x59\x27\xca\xf6\x28\x91\x5b\xa3\x59\x03\x65\xa6\xa3\xc3\x1f\x80\xe5\xbb\x18\xe9\x5c\xc4\xba\x93\x28\x06\xd6\xbf\x96\x4b\x7e\x6b\xa8\x17\x0c\x11\x6d\xe0\xcc\xb5\x51\x4b\x79\x41\xff\x11\xf2\x38\xe6\xc3\x58\x14\xd7\xda\xd1\x00\x14\x97\x5b\x4f\xb9\xbf\xc0\xce\x24\x3b\x17\xbc\x59\x81\x30\x36\xac\x54\xa7\x3c\xc9\xf5\xd3\x5c\xc8\xcc\x54\xe4\x5b\xfe\xb7\xe7\xbb\x84\xf0\xd5\x71\x2d\x35\xbf\x66\x20\xba\x9b\xa2\x7c\x9c\x9b\x3c\x4e\xe6\x88\x54\x8c\x3b\xc6\xc4\x99\x93\x9b\xe0\x94\xcf\x54\x8f\x89\xba\xf4\xcc\x3a\x77\x3a\x9d\x6f\xbe\xaf\x15\x38\x0e\xbb\x5b\x06\xdc\xac\x00\x1d\x40\xd0\xcb\x67\xa4\x7f\x4c\x72\xc9\x6c\x67\x33\x13\x5a\x15\x40\xa9\xf6\xc0\xed\x3a\xc3\x82\x25\xb2\x66\xe9\xd8\xb2\x33\xcf\x50\xec\xef\x70\xf6\x31\x7d\xe2\xf5\xdc\x13\xaf\x55\x6c\xe1\xe1\x27\x1e\xa3\x73\xae\xb7\xf2\x9c\xa3\x46\xbf\x95\x4e\x0d\x9d\x05\x70\xca\x67\x0f\xa0\xeb\xde\x5d\x74\xca\x67\x84\xcf\xe6\x32\x81\xcb\xc6\xec\x97\x12\x46\x22\x05\x9e\xf2\x99\xe2\x7a\x2f\x9b\xd5\x89\xc7\x4e\xed\xf9\xab\xb9\x27\xad\x2c\x82\x77\x22\xcb\x89\x93\xf2\xad\x71\xb5\x21\x0a\x66\x43\xc6\x39\x90\x29\x7a\x8c\xa2\x3c\x2b\x15\x18\x3f\x08\xab\x97\xef\x8a\x7a\x7a\x34\xa4\x5d\x7d\xfe\xe0\xea\x73\x6d\xda\x62\x83\xe3\x28\x9c\x04\x29\xb3\x71\x51\x85\xdb\xa8\xce\x44\x4d\xe5\x22\x91\xd9\xb8\x02\x14\x8c\xd8\x2a\x5f\x21\x82\x02\x78\xd6\x68\xa8\x09\x9f\x0a\x9d\xbc\x75\x3a\x37\xc3\x45\x1e\x16\x8c\xab\x51\xf3\x52\xcf\xe3\x5b\xe0\x6b\xaf\xb3\xb5\x88\x29\x9c\xdf\x60\xdd\x61\x6f\xa4\xb5\x57\x4f\x55\xae\xc2\x58\x1c\xae\x50\x2e\xc5\x72\x2d\xb3\xef\x75\x11\xf5\xef\xc3\xfe\x5d\xd2\xb9\x26\x56\x5d\x51\x55\xdf\xcc\x58\x8a\xe9\x59\xa8\x9e\x4b\x49\xfd\x9e\xde\x47\x8a\x87\x22\xd3\xff\x17\x02\x9f\x13\xcd\x29\x04\x3f\x3f\x73\xac\x3c\x48\x6a\x06\xab\x7c\xa5\xc3\x06\x9a\x48\xe8\x39\x78\xf9\x70\x23\x1e\x44\x4e\x0e\xa3\x0b\x41\xbc\x2d\x70\x40\x60\x0d\x7e\x8d\x71\x1b\xad\x57\x41\xd6\xc4\x3d\xa3\x5e\x03\x34\xc7\xe1\x20\x17\x71\x8c\x84\xa2\x10\x83\x1c\xb3\xc0\x42\x18\x45\xe3\xbb\x67\x22\xf3\xfa\x67\x14\xd9\x02\x41\xc4\x41\x94\x30\x65\xe8\x70\xa7\x4e\x21\x1d\xf6\xa9\x14\x19\x24\x03\x07\x5b\xb2\x43\x01\x60\xd6\xc0\xd5\xb5\x45\xf2\x7d\xf8\x5a\x45\x81\x3b\xc5\x75\xb9\x4d\x65\x32\xb1\xea\xd5\x1f\xf5\x64\xb6\xe8\xb2\x92\x62\x42\x5c\x63\x56\x64\xfd\xe6\x33\xcf\xb7\x6b\x3f\x1a\x43\x80\x85\x9c\x62\x34\x65\x2d\x96\xcd\xc3\x2b\x35\x8e\xfd\x1b\x99\xf2\x6b\x6f\xb4\x5e\x44\x77\x68\x0d\xc6\x2b\xc9\x23\x98\x40\xb0\xdc\xf8\x04\x82\x94\x51\x4f\x23\xe3\x68\x1b\x2d\x13\x3f\x36\x00\xf9\x36\x82\x71\xfc\x3c\x1d\x62\xdc\x8f\x1f\xf5\x0d\x6b\xce\x63\x1a\xb7\xb7\x0e\x8a\x5a\x53\x10\xbc\x28\xcb\xe6\xfa\x08\x76\xe2\xed\x64\xaa\xa1\x44\x26\xed\x4f\x7d\xd3\x56\xa6\x48\x3e\x14\x34\x6f\xa8\x2d\x9e\x33\xd0\x4a\xf8\xb9\x7f\x4d\x2c\x56\x74\xf3\xe4\x68\x96\xa5\x1a\x07\xbb\x7e\x34\x0e\xd2\xbe\x96\x53\x8e\xe8\xa6\x33\x18\x47\x09\xd8\x2b\x29\x2e\x8b\x56\xc7\x1f\x81\xa3\x8f\x74\xa8\xb6\x31\xb1\x52\x5b\x03\xac\x87\xa0\x13\x75\xb1\xfa\x01\x18\xc4\xeb\x6f\x61\xec\x24\x14\x27\x68\x6e\x44\x90\xde\x3c\xca\x63\x31\x62\x83\x8d\x5d\x0a\xa0\x05\xf6\xee\x18\xc2\xa8\x3e\x2c\x17\x46\x3f\x77\x89\x3d\x7c\x72\xa5\xbd\xd7\xd6\x79\x5d\x3f\xbe\x76\x3f\xc2\x1e\xdd\xf1\x52\xef\x22\x1b\x5e\xcd\x4c\x72\xa6\x38\x46\xdc\x7a\xce\xb6\xf5\xa7\xcd\xd9\xce\x70\x6b\xb8\xe2\xd9\x95\x76\x81\xd0\x8e\xb8\x63\x19\xc7\xf2\x96\x0e\xd3\xac\xc7\x02\x54\x21\x06\x2d\x63\x11\x89\x1c\x80\x31\xea\x40\x06\x12\x8c\x33\x6c\x6b\xac\xad\x8d\xf8\x9d\xeb\x89\x4e\xae\xbe\x70\xe2\xd7\x74\x18\xb0\x8f\x66\xdb\x6b\x9e\x4c\x35\x6e\x02\x94\x33\xb5\x77\xed\x46\x14\x77\x1c\x73\x93\xde\x4a\x87\x4a\x54\xac\xa2\x06\x66\x15\xa3\x14\x8e\x89\x5a\x25\xa6\xb5\xc5\x02\xbe\x0b\x69\x60\xde\xa8\xff\x76\x1f\x05\x38\xa4\x9d\xc7\x01\x16\xd4\x70\x3c\x67\x84\x9a\xce\x69\x47\x06\xc4\xc9\xec\xef\x73\xae\xf8\x96\x94\x87\x44\xe4\x08\xf1\x14\xdb\x79\x71\xf8\xb1\x7f\xa9\x5a\xbc\x38\x3a\x78\x7b\x76\xa9\x1a\x7b\xb3\x50\xeb\x01\x51\x65\x64\xd2\x2a\x34\x48\x9b\x99\xd2\x23\xd8\x20\x53\x1a\xe0\x70\x9e\xeb\x90\x75\x68\xfd\x4c\x67\x8e\xce\x6d\xe0\x47\x49\x61\x6d\xf6\x11\x5d\xa1\x88\x01\xd4\x96\x22\x6a\x47\xdb\xf1\x98\xe0\x46\x3a\x9d\xb7\x58\x68\x3b\x46\x0a\x16\xa9\x9b\xd7\x26\x41\x43\x6b\xa9\x92\x58\x76\xac\xc3\x40\xdd\x00\xd9\x80\x0d\x83\x49\x29\x6d\x85\x36\x84\xca\xbc\xee\x51\x8c\xde\xef\xd5\x3f\x1e\x4b\x77\x87\x6b\x82\xf7\x1b\x3a\xb8\x1b\xe7\xbf\x53\xe7\x5c\x6f\x8f\x07\x74\x8c\xc2\xe2\xfe\x1e\x3d\x03\x9d\xef\x43\xbb\xa6\xc3\x15\x52\x7a\x0e\x27\x96\x5e\x7d\x68\x43\x9e\x99\x2c\x43\x8a\x1f\x53\x4d\x91\x3f\x74\xc1\xb9\x0b\x2c\x66\x79\xc2\x78\x9a\xf2\x45\xa5\xdf\x60\xd9\x1b\x8c\x84\xd4\xce\xfd\x93\xc2\xaf\x79\x19\x90\xfd\x48\x80\x79\xd1\xaa\x0b\x1a\x64\x10\xf9\xf7\x47\x98\x75\x7e\x2d\x12\x52\x51\xd6\x19\x7d\xd1\x09\x0c\x76\x5a\xc8\x66\x1a\x53\x2c\x1d\x42\x53\x1f\x75\xa1\x4c\x46\xed\x5c\xb6\x63\x9e\xe5\x26\xb6\x0f\x4d\x1b\x36\xed\xca\xf3\x6f\xd3\x28\xcf\x45\xe2\xd3\x40\x88\xa0\x5a\x0c\x5b\x48\x34\x96\x67\x5a\xdc\x2f\x46\x5e\x48\x3f\x1b\xc9\xcf\x46\xf1\xc3\xfb\x7e\x21\x92\x9f\x7b\xcc\x2e\x3d\x13\xfd\xdb\xef\x7b\xed\x1e\xeb\x9e\x93\xe0\xd6\xa0\x0e\x2a\xc7\xed\x57\xdf\x0e\xe9\x8c\xd7\xa7\x63\x73\x50\x61\x58\xb9\x3f\xc7\x08\xef\xc2\xf7\x8e\x75\x7c\x63\x8b\x87\xec\x85\xa3\x62\x1a\x89\xf1\x72\x51\x4d\x81\x5f\xc6\x68\x9d\x74\xf2\x2a\xc6\xad\xc0\xf0\x1a\x45\x6f\x0e\x51\xfc\xf4\x89\xe1\x42\xe0\x99\xba\x7f\x45\x18\xb9\x3f\x9d\x60\x42\x44\xb8\xaa\x31\x76\xc0\xc3\x2b\x44\x75\xfd\x21\xaa\x02\xe2\xac\x1f\xb7\x08\x69\xbb\xd2\x20\xa4\xb5\xbd\x91\xf2\x1a\x6d\x49\x40\x12\xa2\x6a\xa9\xad\x38\x8c\x26\xc8\x12\xdc\x0a\xcc\x4e\x0e\x01\x36\x20\x48\x34\xde\x06\xf4\xdc\x5a\xa1\x51\x2a\xc8\xe4\x44\xe1\x32\x8b\x65\x8e\xf7\x74\xc5\xc7\x02\x97\x7d\x03\x86\x98\x10\x30\x90\x02\x99\xf1\xf0\xaa\xd4\x7d\xc7\x45\xe0\xb9\x89\x9a\xd5\x63\x16\x1f\x74\x20\xb9\x92\xef\xee\x8f\xd6\x5b\x4e\x3b\x01\xd9\x90\x5c\x60\x7c\x6d\x8d\x63\x9a\x44\xad\x08\x17\x2d\x06\x12\xe1\x42\x01\x98\xe0\x09\x5d\x9a\xd0\x1f\xd5\x0b\xe2\x75\x1f\xc4\xf6\xa4\x3a\x37\x3c\xfd\xc2\xd3\x49\x56\x14\xed\x38\xd7\x73\xbd\xc6\x59\xe5\x1d\x5d\x0b\x7c\x10\x76\xc3\x14\xbe\x88\x2e\x2f\xb6\x2e\x5b\xbe\xbe\x91\xfe\x7e\xa5\x79\xeb\x31\xaf\x78\xb7\xa6\x38\xa3\xe9\x2d\x14\xdf\xae\x2d\x4e\x53\x5f\x28\xff\xa4\xb6\x3c\x3a\x17\xb9\x65\x9f\xd6\x96\x45\xcf\x23\xaf\xf0\xb3\xcb\xca\xb2\xdf\x6a\xc4\x5d\x7d\x48\xba\xeb\x79\x47\x20\x19\x74\x43\xde\x52\xf6\xa2\x75\x16\x16\xb8\xef\x3a\xab\x91\x02\xc3\x3e\xa8\x4d\x31\xab\x9d\x1d\xcc\x5e\xa4\xa8\xc4\xda\xfb\x63\xb0\x31\xe5\x61\x2a\x15\x55\xa5\x12\x19\x9e\x79\x90\xb2\x9f\xa2\x81\x46\xda\x5a\xdb\x0d\x54\xae\x1d\xb0\xc1\xa3\xa8\xc9\x00\x8c\xa1\x07\x44\x3e\xc0\x14\x68\x41\xe1\xe9\xa0\x04\xe8\x01\x4c\x67\xc8\x72\xba\xa1\x37\x93\xda\x7a\x5e\x56\xde\x75\xfc\x05\x3c\x97\x71\xc7\x81\x9d\xdc\x04\x2e\xd7\x73\x2e\x3f\x1c\x23\x0f\x5b\x4a\x66\xc2\x78\x0b\x15\xff\x43\x2b\xac\xc8\xf4\xbd\x3f\x85\xf0\xde\x73\x3d\x3f\x15\xb5\xc9\x4d\x23\xca\x0d\xe3\xa3\xf9\x1e\xcf\x7c\xd5\x4c\x09\xbf\xf6\x4d\x01\xa8\xcf\x36\x3e\x85\x3b\x45\x85\x38\x00\x0d\xeb\x92\x87\x6e\xd1\x5e\x14\xa9\x0a\x7f\x69\xcf\xbc\xce\xfd\x7b\xa4\x23\x00\x90\x9b\x6a\x31\xeb\x4a\x93\xfd\x89\x71\xd6\x63\xc3\x82\x02\xa5\x7a\x45\xb5\x5a\xa5\x3c\xe5\x53\x39\xa2\x84\x1d\x55\xc9\x59\x1e\x38\xf3\x54\xfb\xde\x33\x1f\xfe\x63\xcf\x3c\x66\x90\xf9\x5e\x33\xaf\xa6\xdc\xc4\xf9\x6f\x43\x28\xb8\xb6\x97\x36\xc6\x47\x7d\x6f\xa6\x86\xd9\xc3\x67\xaa\x30\xbe\xba\xbc\x33\xdf\x6f\x90\xce\xca\xd4\x0c\x27\xbb\xfa\x0d\xc3\x71\xc0\x17\xfb\x5c\x70\xbc\x35\x99\x61\x7e\xfb\x88\x08\xa1\x6a\xc6\xc3\xe3\xfc\x37\x0d\x88\xa0\x7f\xaf\x25\x70\xdd\xd3\xaa\x3b\x3c\x95\xa3\xdf\xd0\xe1\x7b\xef\xbd\xef\xb2\x85\xf6\xe4\x74\x36\xcf\x15\x17\xaa\x39\x42\x2b\xc3\xc5\xc0\xbf\xa8\xcd\xf2\x3d\x4a\xcd\x90\xc3\x3c\x6e\x84\x57\x4d\xf6\xab\x6e\xbb\x3a\xa4\x58\xc1\x6a\x1c\xcc\xd8\xdd\x4e\x70\x48\xf1\x41\xf9\x97\xac\xb8\x76\xca\x67\x10\x53\x86\x53\x3c\x5e\xa7\xdd\xc6\xd4\x69\xd4\x1a\x86\xd2\x0c\xbb\x41\x75\x2f\xa6\x97\xf4\xfa\x9b\xbb\xa4\x44\x55\x11\x15\xf3\x94\x84\xfe\x36\x0f\x44\x61\x69\xc5\xa8\x31\x4e\xd6\x5d\x58\x50\x34\xf9\x04\xa2\x94\xcb\xc1\x33\x92\xdb\xdc\x64\x6f\xc0\x8d\x53\x51\x8e\x16\x7b\x2b\xd3\x5b\x9e\x8e\xf0\xba\x70\x2a\x20\xff\x2f\x1e\x1a\x92\xf1\x1b\x19\x8d\x58\xc2\x6f\xa2\x09\x07\xa9\x1d\xbf\xe5\x28\x37\xf6\xc0\xe5\x4e\x42\x90\x19\x9f\x88\xce\xa0\x68\x91\x57\x08\x0b\xf5\xfc\x39\x22\x97\xf7\xee\x45\xc5\xbb\x97\x4d\xf6\x27\x9f\xe6\xaf\xd2\xff\xb2\xde\xba\xe5\x8d\x57\x31\x73\x9d\x1b\x0a\x68\x3d\x5e\x86\xd2\x6a\x4f\x1d\xf4\xf7\xac\xd1\xbc\xb1\x76\xd9\xeb\x1f\x5a\x97\x1a\xfb\xba\xdf\x7f\x62\x5e\x1f\x07\x0e\x13\xfa\xcf\x1f\xc4\xc6\xbf\xfc\x64\x64\x5d\x89\x0e\x76\x99\x60\xe3\x48\xc4\x23\x10\x8b\xf6\xd8\x05\xe9\x4c\x5a\x24\x2d\xd5\x77\xc6\x96\x09\x74\x00\xe1\x0d\xe0\x7e\x71\xe9\x38\x6f\xb8\x4e\xbe\x18\x87\x55\xab\x8d\x14\xbe\x6c\xd9\x64\x56\xb0\xa5\x18\xfb\x0c\x7e\xc7\x7f\x9b\x67\xb9\x6b\x5e\x63\xc0\x99\x70\x5a\x23\x94\x1e\xa1\xae\x12\x6f\xdb\xc3\x85\xb9\x90\xe0\x55\x44\x66\x6e\xde\x14\x76\xb1\xd5\x02\xe9\xf0\xa7\x8f\xef\x3f\x1e\x7f\xfe\x78\x19\xb4\x60\x72\xcb\xff\xbd\x6c\x39\x03\x78\x0b\xc1\xd8\x53\x79\xab\xa1\x6c\xbf\x68\x29\x28\x07\xfd\x3d\x05\xe1\xa0\xbf\xd7\xaa\x62\x6f\x98\x89\x54\xdf\xb2\x0f\xce\x5b\x7d\x41\xbb\xe8\x76\xb7\x5b\x2c\xb8\x78\xdb\x55\xd0\xe0\x84\x50\x08\xf7\x98\x05\x27\x41\x0b\x50\x12\x1e\x9b\x0e\x14\x7c\x39\xd8\xd8\x7e\xf2\x3f\x83\x8d\x56\x05\xc0\x27\x00\x70\xbb\x08\xf0\xcf\x16\xe0\x9f\xab\x01\x3e\xad\x01\xf8\x14\x00\x3e\x29\x02\x3c\xb5\x00\x4f\xab\x01\x3e\xab\x01\xf8\x0c\x00\x3e\x2d\x02\xec\x5b\x80\xfd\x6a\x80\xcf\x6b\x00\x3e\x07\x80\xcf\x00\x20\x41\xe8\x3e\xfb\x9f\xa0\xb8\x34\x65\x80\x2f\x6b\x00\xbe\x00\x80\xcf\x3d\x80\x2f\xd6\x01\xf8\xaa\x06\xe0\x4b\x00\xf8\xc2\x03\xf8\x72\x0d\x80\x4f\xba\x35\x00\x5f\x01\xc0\x97\x1e\xc0\x57\xeb\x00\xdc\xae\x06\xb8\xbd\x05\x00\x5f\xb9\x00\xb7\xb7\xd6\x01\x58\x83\x87\xdb\x5d\x44\xec\xad\x4b\xbb\xac\xdb\xdd\x75\x00\xd6\xe0\xe1\x36\xed\x94\xae\x0b\xf0\xc9\x1a\x00\x9f\xd6\x0d\x19\x77\x4a\x77\xdb\x05\xf8\x74\x1d\x80\xa5\x21\x1b\x7a\xd1\xc7\x9c\x0d\x0e\xc1\xe8\xbe\x52\xfd\xfe\x6f\x05\xd6\x00\xca\xae\x1a\x8a\x33\x0a\xfe\x43\xa1\x39\x3c\xfd\x1c\x34\x9b\x2d\xbf\x35\xfb\xa7\xa9\x12\xc0\x7b\xfa\x4a\x11\xa0\xee\x23\x17\x5e\xd8\x08\x30\x6c\xe2\xc7\xf9\x14\x52\xa6\x30\x86\xef\x76\xe3\x5c\xbf\x82\xdf\x1f\x44\xce\xf1\x85\x81\xf7\x4c\xd1\xc5\x60\xfb\x3f\xbe\x1b\xbc\xae\x82\xf7\xe4\xdf\xbe\x1b\xbc\x6d\x05\xef\xe9\xff\xf7\xdd\xe0\x3d\x51\xf0\x9e\xfd\xfb\x77\x83\xf7\x54\xc1\x7b\xfe\xf3\x77\x83\xf7\x4c\xc1\x7b\xf1\xc3\x77\x83\xf7\x5c\xc1\x7b\xf9\xe3\x77\x83\x07\x07\xe0\xab\xc6\xf7\x82\xf7\xf4\xa5\x82\xb7\xd5\x2c\xc1\xf3\x72\x1d\x2b\x10\x05\x88\x95\x85\xec\xee\x7e\xa9\x28\x64\xfb\xcb\x6a\xb0\x2b\xbe\x3b\x10\xd5\xa9\xb0\xf3\xf8\xbb\x41\x44\xf6\x42\x8c\xe5\x1d\x6b\x7f\x01\x5e\x7e\xe7\xb1\x6e\xeb\xc5\x93\xef\xdc\xfb\xe7\xdd\xdf\xad\xf3\x87\x39\x8f\x23\x9e\xb0\xc7\x3f\x9a\xde\xab\xc6\x1e\x97\x51\xee\x21\x8d\x11\xcc\x97\xc8\xbd\xbd\x79\xdf\x3f\x51\xe4\x7a\x98\x35\x28\xc7\x2f\xa4\x18\x1a\x2a\x58\xf8\x6e\x88\x6f\xd4\xa7\x66\x3d\xf3\xe5\x70\xa8\x51\xea\xd1\xeb\x57\xd8\xd0\xd9\xee\x1b\xd5\x4e\x76\xa5\x60\xe6\xf6\x80\xf8\xab\x82\x0a\x5c\x74\xcb\xd0\xe6\x16\xab\xe0\xec\x5e\x02\x1d\xfc\xfb\x9f\x83\x56\x0d\x55\x67\x48\xf9\x81\x19\x2b\x71\x8b\x16\x0c\x6c\xb7\xdb\xcf\xab\xc0\x7c\x5e\x0e\xe6\x39\x9c\x1a\xe2\x60\x15\x98\x83\x15\xbd\x01\x62\x9c\x9e\xae\x02\x73\xba\x02\x0c\xd0\xcc\xfc\x6c\x15\x98\xb3\x15\x60\x60\x50\x8b\xff\x5a\x05\xe6\xbf\x56\x80\x01\x8a\x3b\xff\xb4\x0a\xcc\xa7\xe5\x60\x5e\xc0\xc1\x12\x1d\xae\x02\x73\xb8\x02\x0c\x0c\x4a\x1e\xaf\x02\x73\xbc\x62\x50\x70\xac\xcf\x4e\x56\x81\x39\x59\x0e\x66\x1b\x19\xcd\x5f\x57\x81\xb9\x58\x01\x06\xb8\xc1\xcb\x6f\xab\xc0\x5c\xae\x02\xb3\x05\x9b\x7b\x30\xf8\x0a\x90\xea\x01\xa9\x32\xde\xfe\xaf\xda\xfb\x6f\xe5\x3c\xcd\xaf\x60\xf3\xb3\xc6\x67\x01\xf1\xab\x9c\xf0\x84\xff\x89\x6e\x3c\x10\xb4\x10\x83\xa9\xef\x8b\x9b\x33\x29\x63\x9d\x6d\x99\x5d\x6c\xc3\x2c\x5f\xec\xed\x9e\x80\xc9\x91\xa5\x06\xe6\xa1\xe6\xaf\x96\x6c\x3c\x07\x64\x04\xc3\x29\xe6\xcd\x15\x0c\x6b\x97\x0e\xd7\x8a\xbf\x7a\x4c\x00\xbc\xcc\xfa\xd5\x10\xfb\x0f\x80\xf8\x1c\x8e\xec\xd1\x7e\x35\xc4\xfd\x07\x40\x7c\x01\xf3\x38\x7e\x5b\x0d\xf1\xed\x43\x20\x02\xf9\x9d\xfc\x54\x0d\xf1\xa7\x87\x40\x04\xda\x77\xf5\xae\x1a\xe2\xbb\x87\x40\x04\x32\xf8\xb7\xff\x2c\x41\xd4\xf7\x83\xff\x54\x40\x15\xaa\x14\x60\xd7\x43\x04\xec\xb9\x7e\x5f\x0b\xf1\xbd\x61\xc5\x20\x42\xe4\x17\x7d\xed\xa8\x87\x08\xec\x63\x7c\x54\x0b\xf1\xe8\xbe\x7d\xec\xbe\x54\xd7\xf5\xd7\xbd\x12\x44\xe7\x54\xbd\xdf\x3c\x6e\xc3\xd5\x70\x30\x08\x06\x1b\x41\xeb\x3b\xc1\xec\x3e\x41\x39\xcf\xc7\xb3\x83\xd3\x4b\x64\x29\x52\x04\x4e\x4e\x2b\xb5\x20\xcd\xf7\x4a\x92\x13\x8d\x35\xc5\xa1\x48\xa9\x18\x36\x2a\x23\xe3\x39\x9d\x8d\x86\x65\x57\x32\xcd\xc3\x79\x9e\x75\x18\x3b\x4e\x40\x48\x66\x80\xd8\x9c\x26\xe0\x7c\x06\x24\x6b\x6f\xf3\x1c\xf2\x7c\x53\x3e\x6e\xf8\xa0\xb8\x6d\xf5\x01\xc3\x21\x93\x40\x0d\x73\x9c\x18\x58\x54\x19\x8b\x6a\x9b\x11\xa0\x7b\x64\xa1\x65\x62\xf4\x91\x76\x11\xbd\x52\x38\xcb\x44\x2c\x8c\xc1\x88\x4e\x02\x33\x72\xe9\xe7\x39\x42\xfd\xb1\x7d\xae\xe1\x52\xa8\xa1\x2a\xf0\x0d\x88\x9e\x66\x40\xa1\x95\x48\x26\xc4\x94\x2c\xbe\x52\x11\xca\x49\x12\xfd\x82\xd6\x38\x38\x47\xb9\x94\x4d\x73\xcd\x06\x3c\xbd\xe8\xbf\x3b\x7c\x7b\x56\x94\xed\x95\xff\x6a\xc9\xef\x2b\x20\x44\xbf\xfc\xd5\x3f\x5e\x00\xd1\xff\x5a\xde\xe1\xf5\x34\x17\x28\xe4\xdd\x5f\x2a\xc0\xfc\xe5\x1e\x60\x9e\x03\xf3\x17\xee\x15\xc0\xe8\xdb\xd6\xde\x17\x0f\x96\x5f\x40\xcd\xfd\x9e\x7b\x03\x78\x09\x33\x74\x73\x5e\x03\xec\x7c\x15\xb0\x73\xef\x3a\x01\xc0\xc0\xb2\xb7\x82\x26\xbc\x29\xd0\x04\xb7\x80\x79\x86\xef\x96\xce\xc0\x8c\x25\x1f\x6b\x7a\xf7\x71\x55\xef\x3e\xba\xbd\x7b\x01\xf3\x36\xfd\x50\x31\xfd\x1f\xee\x31\xfd\x5d\xb5\x8c\x41\xeb\x0f\x3e\x18\x1e\xe7\x0d\x22\x2b\x1e\xd9\xab\x07\xa3\x90\x2a\xe8\xfc\xf1\x37\x83\x51\x3c\xd4\xe6\x9f\xaa\xa7\xfc\x8b\x11\x25\xfd\x09\x68\xfa\x52\xc6\xa7\x1f\xdd\xe5\x57\x98\xab\x1d\x4c\x12\x5d\x71\x15\xca\xb7\xf7\xce\x4e\x8f\xea\x38\x1a\xef\x95\x33\x59\x50\x71\xf7\x08\xb6\xdf\x3d\x2a\xbe\x82\x93\xfa\xe2\x68\xf7\xe4\x9e\x2d\x3e\x81\x03\x99\x05\xa5\x99\xb3\xb2\xb5\xda\xc9\x7c\x05\x75\x2f\x4e\xef\xdd\xe8\x2b\x3c\x17\x4e\x3f\x1c\x7c\xfc\x64\xe9\xcc\xf2\x8a\x05\xc5\x0a\xe8\x2b\x8c\x5a\xe2\x29\xf6\xe4\xe4\xf4\xac\xbf\x77\xba\x5c\x2b\x81\xf3\xfc\x14\xc4\xe7\xfd\xbd\xd3\xa3\xf7\x4e\xd7\xeb\xcb\xc3\x7d\xe2\xe2\xcd\xe9\xc1\xee\xaa\xf2\xbe\xda\x06\x14\x8e\x72\xcc\xb2\xe8\x0e\xb5\x8b\x98\xe1\x9f\xec\x63\x29\x8d\x11\x8c\x00\x98\x8e\x8b\xc3\x8f\xfd\x83\x53\x58\x7c\xd8\x94\xef\xc5\x02\x93\xda\xd2\xce\x2d\x2e\x45\x79\x4d\x9e\x20\x09\x7f\x77\xfc\xe1\x00\x51\x48\xc3\x79\x27\xa7\xc2\xec\xff\x35\xe0\xe0\x12\x9d\xfc\xf4\xe9\xc4\x87\x73\xc2\x27\xe2\xd3\x6c\xed\xfe\x3c\xc5\xfe\xec\x1f\x20\x8a\x58\x38\xfb\x22\xb6\xe4\x68\x8d\xfe\x3c\x23\x56\x62\xbf\x00\xe7\x20\x19\xdd\x0b\xce\x53\x1a\xd7\x3e\xe9\xaf\xdc\x71\x41\x86\x9f\x2a\x94\xaf\xa6\x00\xbb\x6a\x05\x8d\xd6\x4d\x1d\xed\x4e\xa8\x62\x30\x5b\xd7\x41\xd7\x60\xbd\xcb\x66\x47\x60\xf4\x67\x8f\x7e\x1b\x3a\x18\x2a\xd3\x41\x0f\xc9\xa0\x75\xb4\x43\xe3\xba\x06\x63\x01\x85\x88\x5e\x20\x33\x12\xe8\x16\x2d\xd1\x1a\x0b\x04\x3a\x0b\x3d\x1b\x3e\x90\xf5\xe6\x03\xfb\x02\x57\xdc\xd3\xc3\x9f\xde\x01\xf6\xf2\xb0\x41\xb2\x1e\x75\xee\x92\x6e\x6a\x6f\x4d\x50\x2f\xac\xdf\x49\x8b\x39\xa0\xf6\x2d\xa8\xfd\x35\x57\xe9\xa2\xfb\x14\x34\x6f\x1f\x3f\x7d\x38\x3a\xde\x7b\xbf\xa6\xc2\xf2\x73\x94\x5f\xb1\x64\x3e\xa5\xdd\x3b\x36\xde\x3e\x33\x3e\x62\x13\x91\x88\x94\xe7\xc4\x6d\x42\x66\x16\x70\xb5\x41\x6f\xb8\xcc\xd9\xdb\x1e\x4f\x17\xb8\xb4\x20\xf0\x95\xb6\x68\x84\x00\x5e\xcb\x16\x94\xf6\x59\x48\x45\x66\x23\x9e\x6e\x6e\x32\xb4\xaa\x43\x23\x7a\xd3\xc7\xc4\xe9\xd6\x3c\x89\xfe\x3e\x77\x3a\xd5\xe9\x18\xb1\x1c\x6e\xc6\xf7\x27\xa0\x4f\xaa\x9d\xbe\x0a\x4a\xff\x82\x2a\x76\xef\x5b\xf1\x25\x55\xdc\xbe\x6f\xc5\x57\x54\xf1\xc9\x3d\x2b\x76\xb7\x00\xa1\xdf\x9f\x3c\xbd\x77\xc5\x2e\x56\x7c\x76\xef\x8a\xdb\x58\xf1\xf9\xbd\x2b\x3e\xc1\x8a\x2f\xee\x5d\xf1\x29\x56\x7c\x79\xef\x8a\xcf\xb0\xe2\xab\x7b\x57\x7c\x81\x15\x1f\x5f\x7e\x47\x65\xc0\xd6\x2b\x04\xda\xfe\xae\x40\x9f\x23\xd0\x1f\xef\x3b\xc4\x2e\xad\xff\xe6\xbd\x2b\x12\xc6\x75\xd6\xaf\x68\xaf\x8e\x28\x14\x3b\xb6\xee\xac\x2c\x97\x33\x8f\x99\x7c\x0e\x03\x7a\xb3\x8b\xe4\x8b\x81\x9d\x14\x69\xfc\x1f\x6b\x13\x07\xf5\xd0\x2c\xa8\xfb\x1f\xd7\xdb\x37\x3c\x47\xdd\xfc\x67\x7d\x98\x7a\x20\xff\xac\x41\xfe\xb9\x12\x64\x8d\x66\xf9\x39\x1c\x46\xa7\x07\x47\xc7\xbb\x00\xd5\x03\x79\xaa\x41\x9e\x56\x82\xac\xb1\x71\x78\x89\xba\x65\x62\xe9\x0a\xbd\xec\x6b\x90\xfd\x4a\x90\x35\x56\x0e\x2f\x61\xab\x7e\x26\xef\x46\x04\xe9\x18\x3b\x78\xd7\x9a\x22\xc8\x6a\x3b\x87\x6d\x34\x9c\x78\x73\x7a\x78\xd6\x46\x63\x0c\x07\xe4\x8b\x15\x20\xab\x2d\x1d\xb6\xd1\x74\x42\x81\x7c\x5c\x02\xf9\x72\x39\xc8\x82\xad\x83\x83\x69\xdd\x17\x4f\xd8\xc5\x87\x4f\x67\x07\x97\x2d\xd6\x7d\xf1\x94\x5d\x9c\x1f\x1f\xb5\x2f\xe1\xe4\xe9\xbe\x78\x06\x3f\x1f\x5f\x82\x03\x27\x58\xea\x59\xbb\x7f\x83\xa2\x06\x14\xe6\xb8\x64\x53\x9e\xf0\x89\x48\x5b\x98\x0c\x25\x80\xb4\x16\x37\x60\xa4\x04\x1c\xcc\xb4\xe3\xa4\x61\x53\xad\x47\x19\xe3\x71\x26\x8b\xba\xaf\x20\x63\xed\x2f\xda\x9e\x09\xb0\xbe\xec\x47\x7c\x80\x49\x65\x6d\xc2\x6e\x14\x5e\x48\xb4\x88\xc2\x30\x1d\xc6\x8d\x6d\x5d\xb7\x09\x97\xbf\xae\xcb\xeb\xe8\x39\x44\xa3\xf1\x28\xd6\x38\x81\x0e\x78\x19\x72\xfc\x90\x17\x2b\xcd\xcd\x06\x36\xe8\x04\x59\xcc\x6d\xff\x4f\x50\x37\xf2\x2c\x4c\x25\xe5\xdf\xc7\x47\xc8\xff\x3b\x9c\x8f\xc7\x22\xfd\x1e\xd3\x00\xd7\x83\xda\x74\xa8\xfe\x2c\x5c\xc9\xa9\x78\x2f\x16\x59\x1f\xfb\xf4\xb3\x3b\x05\xae\x47\x06\x26\x5e\xab\x34\xb5\xb5\xe5\x5d\xe3\xf6\x42\x3b\x15\x06\xed\xc6\x9e\xd3\x9f\xb8\x77\xa5\x50\xe2\xde\xf7\x63\xfa\x5e\x95\x58\xde\x06\xf4\xc5\x79\x55\x13\x41\xa1\xa1\x56\x2e\xa4\xb1\x4d\xfc\x3f\x59\x32\x75\xf3\xf9\x5d\x56\xac\xda\x3a\xfa\x3b\x2f\xd9\xdb\x15\x4b\xf6\x76\xfd\x25\x3b\x48\x46\xff\x1c\x2b\x46\x77\xe7\x35\x17\x6d\xc6\x27\xb5\x8b\x56\x31\x63\x17\xcf\xfe\x27\x78\xbd\xc6\x6c\x61\x27\xbe\xd3\x84\xe1\x84\xe4\xe9\x5c\xb0\xfd\x83\x23\x70\x73\xce\xe6\x43\x08\x09\x25\x72\x6e\xbd\x44\xac\xc7\xe7\x71\x62\x0f\x94\x16\x45\x51\xbe\x4e\x88\xaa\xf3\x58\x27\x57\x63\x18\x5e\x73\x38\x87\x0c\x9e\x13\x91\x33\xae\x5a\xa0\x74\x41\x94\x15\xe4\x47\x16\xc6\x3c\x9a\x92\xa3\x4f\x01\x40\x22\x73\xed\x2f\xde\xf2\x1a\x51\x60\x30\xae\x79\xb6\x48\xf2\x2b\x91\x47\x21\x06\x8e\x4a\x28\x2c\x07\xc7\x38\xd2\x98\x90\x33\x82\x90\xe9\xce\x48\xd8\x1b\x0e\x71\x8b\x13\x5d\x6e\x96\x8a\x31\xb4\x10\xf2\x44\x8d\x5e\xc7\x81\xf1\x67\xc0\x84\x01\x09\x79\x76\x3f\xac\xd9\x17\xf1\x9a\xc7\x13\x8f\x73\xe3\x16\x83\xe9\x2f\xad\x97\xcc\x0f\x3f\xe8\x7d\x58\xaa\xe3\xa6\x15\xfc\xc1\x7a\x75\x54\x21\x19\xda\x84\xbc\x2e\x1f\x5d\x4f\xfe\xef\x8e\x2e\x23\xb9\xf9\x9d\xf6\xd5\xf3\xf5\xf7\x15\xc4\x9c\xfa\xa7\x20\x45\x5a\x48\xb4\xe6\x9c\x95\xe8\x7a\x81\xf3\xf1\x7c\x81\xeb\x66\xe8\x28\x4a\x2c\xe5\xb9\xcf\x0c\x15\x63\x74\xfd\x56\x17\xba\xd5\x87\xd6\x9f\xf4\xe2\xef\x06\xac\xa7\x8f\xa4\xdd\xff\x33\x14\xb7\xd2\xb8\xff\xed\xf5\x72\x30\xfa\x9f\x64\xc5\xde\x38\x2b\xf6\xa6\xbc\x62\x98\xd4\x91\xe2\x79\x4d\x79\xba\xd8\x84\x40\x17\x09\xcf\x61\xed\x84\x48\x32\x1d\x41\xa0\xbc\x96\xeb\x2f\x1a\x5a\x06\x78\xab\xa5\xf3\x90\x55\x85\x5a\xb2\x53\x7f\x1b\xcd\xc4\x9e\x4c\x72\x91\xe4\xd9\xf7\x21\x25\xa0\x29\x06\x95\x72\xb7\xd3\x79\x55\xd4\x19\x6b\xec\x54\x17\x36\x2f\xa0\x88\x39\xb1\xed\x25\x0e\x81\x58\x15\xf5\x2b\x4a\x80\x89\x11\xbd\xe2\x05\xa5\x52\x9c\x89\x30\xe2\xb1\x13\x09\x6b\x0a\xf7\x49\x0c\x67\x22\xb1\xa5\x28\x61\x77\x6a\x3c\xaa\xfd\x49\x22\xa7\xa2\x6d\x66\x00\x1d\x78\x53\x9e\x4c\x40\x4b\x9e\x0a\x00\x0d\x0d\x6e\x77\x3a\x2f\x81\x29\x00\x58\xb7\x3a\x05\x20\x83\x81\x61\xea\x30\x62\x2e\x20\x8e\x2f\x0a\x63\x6f\xaf\x64\xac\xe1\x51\xdf\xee\xb1\x8e\x64\x90\xbb\x6c\x25\xff\x21\x5c\xfc\xca\xdc\x80\x99\x50\x85\x00\x34\x8e\xa1\x48\xe9\x8c\xff\x0d\x97\x56\x9d\x9b\xba\x3e\x91\x4f\x21\x4f\x75\x37\xe8\x99\x33\xb5\xab\xf9\x7e\xfc\xb4\x6d\x3f\x69\x8d\xa3\xf7\xfd\x49\xe1\xfb\x45\xe1\xfb\xd3\xc2\x77\xb4\x59\xf3\x8a\x3c\x2b\x14\xb9\x2c\x7c\x7f\x5e\xf8\xfe\x73\xe1\xfb\x8b\xc2\xf7\x2f\x85\xef\x2f\x9d\xd1\x39\xfc\x91\xfe\xfc\xca\xf9\xfc\x2a\xa8\x0e\x08\xe1\xee\xd4\xdd\x38\xbf\xff\x46\x5d\x0b\x97\xc9\xec\x7b\x19\x2a\xaf\xc0\x22\x84\xf0\x5d\x90\x68\x65\x59\x12\x61\x2d\xa5\x6a\x60\x1b\xf3\xfb\x4c\x96\xb6\xb2\xff\x0d\xb3\x45\x20\xfe\x21\xa6\x8b\x38\x90\x9f\xf7\x20\x77\x6b\x92\x8b\x74\x96\x52\xa6\x51\x1b\x93\x18\x2e\x45\xa1\x9c\x2d\x58\x28\xa7\x53\x9e\xd4\x25\xaa\xa9\xa1\x93\x7b\x4b\x27\x8b\x82\x8e\x08\xed\x8c\x5d\x33\x71\x13\x91\xef\x53\x4c\xad\x46\x53\xfd\xea\xeb\x3a\x5e\x52\xcc\x47\x06\x14\xc4\xdb\x8e\x63\x3e\xcb\xc4\xc8\x0f\x08\xe2\x35\xa0\x18\x8e\xbd\x3d\x35\xb6\xc2\x5a\x78\xe9\xdc\xd0\x92\x4b\x9b\x5a\xc1\x54\xb8\x71\x84\x5d\x8b\x2d\x9c\x52\x35\xa1\x5a\x6d\xdb\x71\x00\x9d\x50\x2e\x55\x6d\x91\xc6\x86\x0b\x16\x8b\x3c\xd7\xf1\x05\x0b\xe9\x5d\xb1\x5d\x34\x53\x9b\xca\x2c\x77\x20\x51\x49\xca\xc2\xac\xc3\x2c\xfd\x28\x93\x78\xf1\x23\xbb\xe5\x10\x05\x0c\x23\x58\xe7\xe2\x2e\xd7\x9e\xdd\x61\x1c\xcd\x50\x9d\xe0\xba\x2d\x93\xd3\x72\x30\x4a\xa3\x1b\xd1\x1e\x2e\x02\x76\x2b\x86\xa6\xdb\x4b\xd0\x19\xd2\x03\x99\x95\xd8\x1d\xe7\x22\x55\x73\xe9\x39\x58\x67\x22\x3f\x8b\xa6\x42\xce\xf3\x86\x5d\x9c\x90\x96\xe6\x4c\x1e\x24\x23\x08\x1e\x6c\x3f\x36\x5b\xec\x99\x93\xc7\xad\xe8\x8b\xbc\x96\x0b\xb3\x97\x8d\xed\xd1\x92\x25\x5f\xba\xe2\x68\x6b\xf7\xbb\xac\xfb\x94\x27\xc0\x1b\x69\x5b\x45\x48\x58\x75\x2b\xd3\x6b\x88\xd0\x95\x45\xf9\x9c\x02\x90\x42\xde\x62\x07\x92\x8e\x2c\xd7\x11\x77\x22\xdc\xc3\xfd\xd8\x08\x14\xcc\xa0\x89\xa2\xf4\x58\xde\x3a\x19\x0d\xff\x51\x56\xaf\xae\x0f\x72\xb6\x30\x5d\x38\x93\x7b\x1a\x3f\x1b\xc5\xc0\xfa\xeb\x5d\x2f\xfc\xc8\xfb\xce\xf1\xbb\xf5\xa4\xfe\x96\x46\x34\xf0\xa3\xa2\x81\x72\x06\x69\x28\x12\x71\xab\xd5\x19\x74\x4c\x80\x46\x3f\x96\x78\xbb\xb8\x27\xa3\xb8\xf2\xb4\xa8\xc0\x42\x6c\xbd\xa3\xfa\xd3\x30\x6b\x6e\xda\xbf\x02\xe1\x52\x10\x54\x04\xa3\x0a\x42\x60\x75\x77\x12\xd9\x0a\x63\x99\x89\x9d\x85\xc8\x5a\xa9\xc8\xa2\x5f\xf0\x51\xdf\x5e\xd2\x0c\x7e\x06\x7e\x1a\x49\x82\x31\x8d\x92\x68\x1a\xfd\xc2\x87\x31\x56\xba\x8d\x46\xf9\xd5\x4e\xc0\x1e\xeb\x7e\x45\x49\x22\xd2\xcf\xea\x6d\x65\xfd\xd6\x95\x88\x26\x57\x79\xa9\xc6\x3b\x78\xfd\xdb\x2f\x8e\xb0\xa4\x62\xe5\x92\x9e\xc3\xb1\x96\x65\x73\xc5\x82\xa3\x6e\xc8\x3d\xc2\x4a\x61\xaa\x87\xe2\x8a\xdf\x44\x50\x07\x93\x11\xa8\x1a\x14\x90\x59\x0b\xf5\xb2\x4c\x64\x9e\x29\x2e\x9a\x69\xa8\x26\x29\xc8\xe3\xcf\xe7\xf5\x75\xce\x3b\xb8\xdf\x29\x9e\xe4\x38\x8e\x40\xa7\xe6\xc5\x3e\x0c\x14\x85\x6a\xdf\xb4\xa1\xf9\x00\x04\x89\x18\x04\xd8\x74\x7a\x6d\xd4\x3b\x5f\x89\x7a\x0d\x37\xfe\x8c\xce\x8c\xe8\xd1\xca\x73\xd0\x69\xb9\xf2\xfd\x86\x5f\xa5\x82\xbe\x52\x1d\x2f\x77\x3f\xa4\x1e\x77\x22\x0c\xa8\xe1\x41\xe0\xba\x79\x9a\x89\xf8\x06\xcd\x64\x20\x8e\x53\x1c\x9b\xe3\x6d\xf3\xb8\x8f\xe9\xfd\x68\xfa\xdc\x24\x91\x04\xa0\xc3\xd4\x5d\x94\x0f\xe3\x05\x58\x69\x4f\x79\x78\xdc\x6f\x51\xf1\x4d\x77\xa1\x9c\x54\x0a\x36\x57\xfa\x3b\x79\x2b\x6e\x44\x4a\xc7\x28\x64\x3e\x67\xe9\x3c\xc1\x64\x12\xb7\x62\x08\x86\x36\x69\x84\x08\x09\x3a\xcd\x68\xcc\xa2\x9c\x8d\x79\x14\x67\x20\xdf\x85\x9c\x81\x06\xde\x98\x93\x68\x80\xe8\x86\x7b\xba\x27\x3c\x8f\x6e\x84\xc5\xb2\xc6\x95\x9c\x89\xf1\x3c\x8e\x17\x4d\x96\xa9\x3b\xf2\x3c\xeb\xd4\x31\x2a\x2e\x0b\x09\x29\x44\x1e\x46\x1e\x45\x9c\x89\xfb\x1f\xa8\xe5\xcd\xd7\x7d\x5e\xbb\xf9\xca\xd9\xfd\x7f\x0f\xc2\x8a\x86\xc9\xff\x7a\x84\x55\xce\xf3\x7b\x12\x56\xa8\xf1\xbd\x08\xeb\x6f\xbd\x49\x90\xb3\x83\x74\x95\xf2\x9a\xa9\x85\x38\xe9\xf5\x57\x0c\x0a\x8e\x59\xb8\x66\x0c\x28\xf3\x99\x9b\xb4\xc3\xe1\xba\x14\xad\xae\xa0\xb5\xd0\x0d\x62\xdf\xc0\x4c\x2f\x41\x53\x04\x14\x36\xa5\x3c\xc9\xa6\x51\xce\x78\x62\xf2\xbb\x36\xa2\x31\x2b\xe6\xbf\x05\xb6\xac\x49\xf1\xc5\xd1\xf0\x21\x08\x03\xd5\x64\xb0\x17\x54\x77\xce\xe3\x08\x6f\x61\x1f\xe0\xc0\x9d\x79\xd0\x61\xff\x49\xe9\x03\x2a\x22\x90\x3e\x4a\x12\x60\x61\x34\x77\x7d\x25\xca\xa4\x1d\xde\x75\x22\x6f\x33\x10\x70\x09\x30\x09\xba\x12\x53\xca\x42\x17\xab\x62\x12\xc4\x49\x78\xbb\xa5\xe9\xbc\xe2\x10\xc0\x57\x16\xd6\x67\xb8\xc0\x48\x30\x57\x91\xa5\x4e\x90\xdd\x6a\xc2\xa3\x7b\x6e\xc2\xd5\xd7\x3b\xbd\xcb\xd6\xbc\xdd\xbd\x2e\x6f\x5e\xf6\xf5\xab\x65\x7c\xfd\xcb\x5f\xe5\x3d\x0f\x03\x87\xc1\x3c\x42\x6a\x6a\xd2\xfd\x0d\x85\x1a\xeb\x95\x88\x47\x80\x38\x2e\x4a\x99\x3e\x16\x38\x7a\x03\x4f\x4f\x9d\x0d\x24\x48\xc9\x24\xe4\x48\x60\x38\x63\x3e\x42\xf1\xf0\x41\x7f\x8f\x55\x63\x53\x9e\xce\x1d\xbb\xde\x5b\x41\x6b\x40\x39\x04\x46\x22\x8c\x46\xea\x74\xc8\x6f\x85\x48\x00\xd5\xc0\x42\x14\x71\xcd\xee\xea\x4a\xf9\x9a\x17\x44\x0e\xf2\x70\x9b\xcc\xd9\x36\xf2\x96\x4d\xb0\x15\xd3\x0e\x2c\xdc\x37\xd5\x9e\xa8\xba\xec\xff\x96\x5b\x84\x73\x83\x70\x03\x91\xd6\xae\xa7\x77\xb9\x68\x34\xd9\x37\x7b\xa1\xf8\xb6\x16\xa1\xa2\x53\xab\x92\x4a\x41\xcc\x27\x69\xe3\x45\xc1\x9a\x9e\xb7\xd8\x48\xcc\x04\xa6\x93\x91\x49\x15\xc3\xc5\x76\xd1\xea\x1a\xea\x3b\xc4\xe5\x1c\xe2\x82\x01\xa5\x5b\x8b\xca\x11\x87\x58\x66\x45\xd7\xde\x6e\xab\x39\xba\xef\x21\x50\x2a\xaa\x46\x51\x6a\x75\x6e\xc3\x8f\x2d\x07\x66\xc3\x8e\xdd\xff\x3c\x79\x87\xa8\x38\x96\x49\xce\x7e\x91\x72\xea\x65\x0e\x75\x82\x5e\x05\x99\x4d\xca\xac\xca\xb1\x2b\x40\xdd\x61\x94\x63\x20\x7f\xcd\xf7\xe7\x2c\x14\x69\xce\x75\xa9\x58\xdc\x08\xca\x0e\xcc\x76\x73\x34\xb6\x9e\x72\x4a\x04\x42\x4c\x1e\x46\x8d\xe7\xd9\x3c\x15\x23\x86\x07\x2e\xc0\x64\xa9\xbc\x85\x38\xcb\xe2\x2e\x67\x23\x48\xa7\x92\x69\x41\x0a\x92\x6d\x2a\x0c\x6a\x91\x5b\x9e\x31\x71\x37\x8b\xa3\x30\xca\xe3\x85\xda\x07\x76\x1c\x9f\x4d\x2a\x53\xe1\xed\x43\xe8\xa2\x8e\x37\xa7\x88\xf7\x04\xbf\xa3\x52\xfa\x44\xa6\x79\x90\xe1\xd4\x28\xb6\x03\x99\xe1\x1f\x29\x30\x9d\x2a\x07\x63\x5e\x1f\xa1\x7c\x73\xd9\x55\x88\xf5\xa8\x42\x76\xe6\x41\xf8\xab\xea\xbd\xa7\x38\x2f\x50\x64\xb8\xd8\x9c\x7c\xf8\xab\x56\x87\x64\x38\x60\xa3\x58\x73\x89\xb5\x31\xd2\x90\xd6\xa3\x12\xea\x43\xa9\x5a\x28\x90\xb4\xc7\x01\xe3\xda\x7b\x18\x38\xc4\x10\xb0\x5b\x8e\x21\x86\x8d\x33\x85\x51\xd3\x60\xf4\xf6\x2c\x17\x1c\x12\xf0\xf1\xf1\x58\x11\xa8\x64\x02\x4d\x39\x4c\xba\x47\x8c\x21\xbc\x70\xfb\x4b\x29\xb0\x30\x30\x19\xe3\xe0\x35\xb4\xfd\xf3\x17\xc7\xfa\xf2\x38\x89\x17\xec\xe7\x2f\xaa\xa3\x37\x3c\x8e\x46\x88\x7b\x92\x38\x2a\xad\x28\x83\x13\x22\x91\x3a\xd4\x77\xe7\xc1\x4c\xde\x12\x32\x3e\x11\xb9\x5a\xbe\xb7\x3c\xcc\x65\xda\x68\xb2\x47\x3b\xac\x5b\x58\x3d\xcc\xd4\x09\x37\xb4\x9c\x75\x7b\x5d\x9c\xf6\x31\xd4\x68\x99\x23\x45\xdd\xb8\xd8\xe3\xcd\xf6\xe6\x16\x22\xb2\x9e\x52\xbc\xdd\x7a\xc2\x4b\x00\x80\x77\x2a\x85\xd7\x82\x67\x11\x12\x50\xed\xe4\x30\x27\x82\x3a\x11\x18\x6a\x56\x3d\x77\xb7\xb6\xfe\x7d\xdd\x19\x28\x5e\x60\x14\x37\x12\x42\xa6\x9b\x7a\x25\x95\x61\x3f\x42\x5a\xd0\xad\xa0\x98\xf7\xb9\x42\x33\x2e\xf2\xb7\x32\xc9\xfb\xd1\x2f\xa2\xa1\x0f\x2b\x2f\xd9\x33\x88\xb9\xd5\x96\x5d\xc6\x03\x19\x10\x4d\x2f\xf7\xb4\xee\x48\x3b\x50\x7c\x50\x19\xe3\xd0\x54\xde\xe9\x24\x34\xd4\xde\x61\xdd\x9a\xbc\xd3\xf0\xfd\xb1\xf3\x5d\xb7\xb6\xc6\xe8\x54\xdd\xe6\xbd\x2e\x0e\x9e\x1a\xfa\x1e\xc9\xd3\x66\x94\xb9\xad\x2e\x81\xda\xb3\x7f\xaa\x04\x6a\x26\x39\x03\x65\x25\x54\xdd\x30\x79\x2d\x86\x51\x8e\xe6\x05\x3a\x7c\x23\x04\x58\x07\x9e\x70\x1c\x25\x82\x6c\x44\x4a\x79\xb4\xcf\xdc\xdc\x18\x90\x2a\x10\x0c\xb5\x45\x32\x9f\x82\xd3\x8f\xe9\x5e\x96\xf3\x3c\x0a\x59\x55\x5a\x40\x00\x64\xf2\x0d\xea\xc0\xed\x90\xf4\xc0\x80\x26\x61\x15\xb0\xaf\x6c\xcc\xe3\x4c\x00\xff\x3c\xd8\xf8\x71\xb0\xa1\xf8\xe1\x74\x0e\xe7\x65\x92\x99\x73\xd0\xcd\xd8\x81\x89\x0b\x87\x90\x89\x3b\x13\x49\x4e\x20\xb0\x86\x62\x39\xe1\x7b\x22\xf3\x16\xa5\xd8\xfe\x71\xb0\xe1\x80\x83\x14\x98\x22\x4b\x02\x48\x7e\x98\x2f\xb3\xb6\xd0\xa9\x82\x9d\x73\x2c\x9b\x89\xd0\xb5\xac\xd0\x29\xbf\xf7\xe4\x1c\x2e\x24\x5b\x5e\x0a\x2b\x0c\xb5\x0a\xe6\x00\xfa\x27\xed\xc4\x75\x12\x2c\x8e\x65\xaa\xe6\xcd\xb2\xb9\x53\x39\xf2\x4c\x6a\x2e\xa6\x72\x74\x49\xf0\xf1\xf9\xeb\x57\x9c\x8c\xd7\xbe\xd8\x87\x0a\xee\xb0\xe0\x47\x7b\x98\x94\xfb\xff\xf8\x31\x6e\x44\x14\xc1\xab\xef\xcd\xb2\x8d\xfc\xb9\x3a\x57\x0a\x68\xb2\x72\x0a\xed\xa8\xd8\x0e\xbb\x50\x8d\x04\x70\xaa\x06\x2d\x94\x4e\xaa\x7f\x79\x0c\x3f\xd5\x3d\x27\x18\x24\x97\x05\x2c\x0f\x31\xaf\x3c\x04\xf7\x07\xd2\xad\x68\xfa\x2e\xa4\xf9\xb0\x1c\x08\x24\xb0\x6f\x16\xd8\x3b\x9d\x62\x14\x6f\x56\x3c\xc9\x33\x8a\x53\xa0\xf8\x31\x3c\xad\x79\x0a\x49\x30\x31\xcb\xb9\x4e\x85\x13\xe6\x22\xcb\x4d\x22\xc0\x99\x4e\x02\x3f\x8e\xd2\x2c\x6f\xe1\x35\x9a\xe7\x2c\x96\x32\x13\xf1\xc2\xa4\x61\x33\xe5\xe0\x90\xe5\x4c\x5d\xf5\x21\xbb\x97\x4c\xa3\x7c\xa1\xea\x60\xc2\x1d\x48\xe1\x65\x4a\x97\x33\x86\x2e\xc9\xbf\xcd\xd7\x2d\x38\x5c\xb9\x2c\x4e\xc6\x7e\x17\xcb\x9d\xd0\xd7\x0a\x85\x78\x01\xcd\xff\xc0\x86\xfe\x1b\xff\x62\xd0\xee\x3a\x1a\xd4\x62\xdd\x3f\x2e\xaf\xdb\xf5\xef\x0d\x5b\x25\xf4\x3b\x49\xa3\x1b\x9e\x0b\x1d\x61\x5a\x13\x36\x9d\xc7\x94\x12\xe0\xcd\x74\xe6\xff\x09\x57\x5c\x17\x71\x40\xce\x17\xa4\x05\x12\xdf\x8d\xe4\x6d\x82\x26\xbf\x15\x0b\xa1\x53\xb7\x2a\x5c\xa2\x9c\xad\xb9\x9b\xe7\xd5\x14\xa4\xd4\xac\xdf\x90\x7e\xa1\xc9\x31\x69\xfa\x28\xf0\xbf\x1e\x77\xd6\x61\xea\xe4\x18\xcf\x63\x0c\xd5\xb1\x90\x73\x40\x4c\x4a\x38\x95\x4b\x9d\x9c\x0a\x08\x18\x62\x0a\x0e\x50\x8f\x87\x27\xa5\x11\xad\xde\x83\x76\x9f\x00\x30\x8f\x3f\x97\xc3\xbf\xb5\xb0\xa5\x0f\xea\x5b\x85\xe5\x01\xd0\xb2\x47\x3b\x6a\x0e\xf4\x4f\x7f\xe9\x34\xe1\xd1\x8c\x51\x7a\x63\x03\xcc\x7f\x17\x92\xa7\x80\x4e\xe5\xe8\x9c\xc7\x73\x85\xad\xea\x9b\x3a\x90\xe4\xf0\x6f\x4d\xf6\x27\xf5\x0f\x92\xb9\x5e\x89\x04\x3e\x4a\x6f\x14\x65\x6c\x3c\xb2\x03\xd4\xaa\x09\x8f\x32\xaa\x42\xde\x4b\xdd\x5a\x81\x01\xb7\xe9\x3b\xd4\x10\x6d\x6b\x45\xc2\xe9\x20\x72\x7a\x53\xc2\x64\x9d\x8d\x98\xb0\xa5\x9c\x6e\x98\xb0\x2d\xc2\x54\xa6\x36\x2d\xb1\x8f\xe3\xff\x2f\x27\x1b\xae\x47\x6e\xca\xcc\x5b\x9f\x70\xd8\x15\x4c\xe0\x76\xd0\x05\x88\x9f\x28\x9f\x7c\xb5\x0b\x56\xcf\x39\x44\x99\xcd\xd5\xa8\x75\x13\x5c\xb3\x35\x20\x0f\x16\xf7\x21\xfd\x0f\x98\x85\x0a\x1e\xc6\x66\x31\x5e\x3a\x17\x54\xa6\x05\x03\x6e\xae\xc7\x6f\xcb\x19\xf2\xe8\xff\x1a\x49\x8a\xf5\xc2\xff\x87\x2a\xa2\x9a\xba\x89\xc4\x2d\x65\x2f\x8a\x62\xc1\xa2\xe9\x8c\x72\x63\x39\x19\xfc\x8e\x71\x0a\x30\x2b\x30\x66\xe8\xc2\x5c\xaf\x59\x2e\x53\x91\x99\x50\xfe\x6a\x93\x60\xd8\xff\x50\x26\x23\xca\x85\xa6\x2f\xaa\x9e\x95\xaa\xc2\x13\x4d\x0a\x00\x1e\x1c\x7a\xae\x34\x81\x65\x22\x55\xbb\x53\x8e\x19\xe0\x90\x80\xa4\xc1\x46\x94\x98\xf1\x9b\x28\x99\x6c\xa6\x42\x75\x81\x72\x7b\x61\x6c\x08\x9d\x40\x4c\xb7\xaf\xae\xcc\xf1\x82\x92\x9b\x49\xb5\x95\x6f\xa2\x11\xe6\xf0\xe3\xd9\x82\x0c\x80\x54\x27\x43\x39\x9d\xca\x44\x55\x1d\x47\x93\x79\x0a\x92\x2e\x3c\x52\x09\x03\xac\x27\x4e\x1a\x4d\x20\x72\x0d\x2c\xda\x70\xc1\xf6\x64\xba\x60\x1f\x78\x18\xf2\x34\xd5\xf8\xbf\xe9\xd9\x4e\xcb\x24\xcb\xd3\x79\x98\xcb\xd4\x4c\x48\xd5\xdc\x52\x5b\x60\xb7\xcb\x51\x9a\x62\xa4\xcd\x7a\x60\x1a\x50\xa5\x7e\x1e\xaf\x37\x3c\xf3\x89\x51\x3e\xeb\x6d\x6e\xde\xde\xde\x76\x6e\xf2\xee\xd6\x56\x27\x11\xf9\xe6\x48\x86\xd9\xe6\x4d\xfe\xac\xbb\xd5\x4e\xa7\x9b\xfb\x07\x7b\xfd\xb3\x53\xe2\xe2\x42\x31\xd3\xf2\x39\x75\x53\xc2\x2c\x76\xf3\x5c\xde\xa6\x7c\xc6\x1a\xea\xbf\x98\xba\xb8\xe9\x46\xbd\x47\x1b\x62\x4c\x48\x29\xc4\x34\xd3\x82\xb7\xa1\x60\xb7\xea\x25\xda\x2c\xab\x6b\x4a\x1d\x75\xa0\x99\xd8\xf9\xa6\x26\xe1\x0b\xc8\xd7\x8f\x69\x36\x4c\x9e\x0d\x90\xf9\xc9\xd9\x82\xd8\x14\x67\x36\x3c\x3a\xa2\x27\xd5\xe5\x06\x08\xa6\xb5\x3c\x56\xbb\x93\xe7\x79\x1a\x0d\xe7\xb9\xc8\xac\x97\x11\xa4\xbe\x56\xb3\x38\x9b\x0f\xe3\x28\xb4\x38\x07\xf8\xc2\xc3\x50\x64\x19\x79\xf8\x12\x24\x83\xda\x8e\xb3\x8b\x9d\x26\xb6\x63\x07\xf4\x27\xf3\xe8\x16\xe8\xd9\xa4\x35\x94\x13\xf8\x46\xa4\x99\xf8\xbc\x0a\x44\xb9\x9c\xcb\x28\x00\x28\x09\xa8\xfa\x01\x2f\x6d\x55\x30\x9c\x02\xa5\xca\x6a\xd1\xf7\x78\x9a\x46\x7c\x22\xe8\xa4\xa8\x06\x52\x51\xb0\x04\x0c\x77\xe7\x79\x84\xb9\xcd\xaa\xe1\xf8\x65\x6a\x40\xbc\x89\xa3\xe4\x7a\x29\x00\x2c\x51\xaa\x1e\x81\xfb\xf1\x92\xb9\x70\x0a\x94\x2a\xd3\x5c\x9f\x47\x23\x21\x97\x2f\x07\x16\x29\x01\x18\xa6\x3c\xbc\x16\xb9\x18\xa1\xff\x73\x35\x88\x42\x21\x0b\x64\x8d\x83\x6a\xc6\xd3\x4c\xa4\xff\x22\xb2\xa0\x07\x24\xd3\x2f\x52\x03\x76\xa2\x26\xa4\x3a\xb7\xe6\x22\xc9\xf9\x1d\x1e\x3a\x8a\x1c\xa3\xe6\xd8\xe8\x2b\xe7\x59\x2e\xa7\xd1\x2f\xdc\x92\x7d\x43\x59\x00\x66\x5a\x91\x31\x10\x7b\xc1\x54\x3f\x14\xb3\xc2\x7e\xc5\xd4\xb3\x78\xc9\xa2\xb9\xc3\x57\x28\x99\x55\x20\x09\x33\xe8\xeb\x0e\x0b\xb4\xbb\x5c\x09\x58\x02\xc6\xd0\x08\xcc\x24\xce\x91\x99\x49\x07\xee\xc1\x9b\xc9\x8c\xc4\x36\x4b\x3a\xf6\x27\x02\x66\x9c\x2d\xc8\x0f\x74\x25\xf4\xf0\x8a\xed\x40\xc4\x1d\xc3\x4c\xba\x33\xe3\xb0\x6b\x22\x4d\xa5\x37\x53\x53\x91\x65\x7c\x22\x7c\x0e\x2d\x11\xb7\xec\x40\x95\x6c\x04\x00\x81\x61\x35\x9e\x43\x8a\x57\x33\x9e\xc7\x2c\xc0\xa4\xaf\x1a\xc8\xaa\xd6\xa3\x6c\x4f\x2a\x5e\x26\x17\x15\x8b\xe5\x72\x87\x30\x5b\x3b\xee\x4a\xe8\x5c\x9d\x2b\x5a\x28\xe5\x8e\xc4\xda\x70\x86\x7f\x99\xc9\xcc\x95\xa9\x99\x25\xc6\x87\xd7\x85\xb5\xa2\x1a\xea\xb2\xe6\x48\xdb\x60\xa6\xa9\x4b\x05\xf1\x7b\x41\x80\x00\x13\x57\xe1\x25\x47\x82\x26\xf7\xbd\xda\xbb\x74\x2f\xc2\x1b\x11\x25\x10\xf6\x2e\x3e\x0e\xf7\x00\x20\xbc\x19\xa0\x84\xef\x70\x87\xd1\x35\xde\x8b\x45\xe6\x59\x81\x70\x13\x45\xa9\xc3\xd8\x7b\xa1\x99\x97\x91\x30\x76\x7d\x1c\x0c\xc8\xc4\x04\x7d\x0e\xd4\x2f\x03\xd7\x2a\x0c\x6b\x1b\xa6\xfb\x9e\xba\xa2\x7d\xb0\x99\xcf\x50\x3c\x0c\x1f\x9c\xb4\xd8\x7f\x93\x6a\x2c\xc8\x8d\xe0\xa5\x65\x04\x39\xf2\x5d\x8f\x22\x9a\xaa\x84\x29\xba\x9b\x46\xd9\x35\x09\x59\xa9\xb3\x5a\x26\x13\x25\x23\x4c\x44\x6c\xfc\xa6\xe7\x89\x4d\xd4\xeb\x4b\x8c\x15\x0b\xa1\xd9\x39\xdb\x84\x93\xa2\xbe\x47\x17\xc9\xdd\x1e\x83\x0b\xbc\x20\x1b\x67\xee\x85\x43\x1b\x6c\xec\xaa\x7e\x78\x9d\x65\x8c\x3d\x7f\xd6\x63\x7d\xbc\x7b\x61\x68\x3c\xfd\x61\xeb\xee\x69\xb7\xe6\x13\x58\xfa\x15\x5b\xc3\x97\x5e\x91\x5a\xd8\xf0\x75\x55\x03\xa8\xf6\xaf\x6c\x86\x3e\x79\xc5\x7f\x74\x8b\x62\x67\x20\x7f\xf5\xad\x50\xfc\x59\xe6\xe4\x36\xf5\xd0\x18\x16\x40\x87\xaf\x25\x78\x4c\x91\x8d\x58\xf0\xcc\x51\xb3\x29\x9c\xd8\xb5\xe9\xb7\xf1\xa4\xa0\xfd\x6f\xc4\x0a\x05\x71\x02\xc8\x71\x5b\xa0\x4a\x75\x32\x4b\xb5\x34\x6e\x51\x6b\x56\x84\x50\x75\x44\x38\x84\x02\x0e\xe6\xf7\x62\xd1\xd7\x7d\x2f\x13\x24\x23\x5c\x22\xb9\x90\xc9\x73\xad\x08\x2d\xc8\x61\x88\x9a\x9b\x24\xc3\xd7\x56\xcc\xb0\x62\x5f\xda\xbc\x70\x37\x17\x6b\x55\xb8\xb8\xbe\xbc\xf4\x85\x40\xd8\xf6\xed\x95\xba\x21\x36\x0c\xdd\xfa\x43\x05\xd1\xf4\xfd\x63\xb3\xeb\x68\xd6\x9f\xf1\xd0\x55\xd7\xa9\xce\xe7\xf2\x5a\x18\x4f\x16\x98\x9e\x33\xf5\xc6\x58\xb4\x83\x90\x4e\xbd\xe9\xc0\x91\xb5\xb3\xc3\x02\xa2\x15\xae\x0e\x2f\xbd\x71\x14\x12\x58\xfc\x86\xc7\x46\x38\x67\x94\x7a\x55\xd0\xcc\xd0\x83\x42\xca\xc3\x79\xa8\x85\x71\x0e\xc4\x4e\x2e\x3f\xcd\x66\x22\xdd\xe3\x99\x70\xcc\xee\x15\x60\x5d\x7e\xdd\xd5\x70\xc2\x09\x58\xe3\x8f\x15\x75\x3a\x57\x3c\x3b\xbe\x4d\x4e\x48\x0a\xa5\xdb\x6c\x7a\x6e\x08\x24\x4a\x34\xf9\xd7\x56\x2d\x32\x01\xb9\x7c\x6d\x41\xa8\xf1\xa4\x37\x28\x2a\xfc\xe1\x07\xa6\x1f\x1f\xf9\x4a\x16\x5c\xdd\x14\x2c\x17\xa3\x0c\x8f\x79\x37\x47\xbb\x6e\x05\xcf\x6b\x67\x16\x9b\x4e\x53\x1a\xb6\x27\x4e\x2d\xac\xd9\x3a\x53\x6b\xc8\xbd\x3f\xad\xab\x66\xd7\x1c\x1f\xeb\xcc\xac\x87\x67\x2b\x41\xba\x13\x5b\x18\x94\x03\xb3\x3c\x81\x9f\x92\xeb\x44\xde\x82\xa8\x74\xc9\xcc\x7d\x5b\x8d\xdb\xd9\x62\x3a\x94\x71\x50\xc8\xf8\xe8\x40\x33\xb2\x61\xa7\x3f\x36\x79\xf9\xe8\xfe\x84\xc5\x22\xe0\x6c\x6d\xf4\x8b\x46\x2e\xe6\x19\xa1\xf6\xc5\xec\xb2\xe9\x2f\x24\xbc\x63\x3b\x4c\x75\xd9\xa9\xf1\xed\x7e\x73\x2b\xee\x66\x22\xcc\xc5\x88\xe1\xec\x2c\x9f\xe1\x2a\xb0\x65\xa0\x07\x1a\xa4\xc3\xc6\xb8\x74\xa5\xd2\x72\xa0\x8a\x22\x1a\x95\x44\x78\x05\x7b\xad\x6d\xf7\xda\x30\x15\xfc\xda\x2b\xe8\x20\xe3\x23\xe4\xc3\x9b\xcb\xba\x98\xa7\xdc\xbd\xf8\xf0\xb1\x62\xf5\x73\x9e\x4e\x04\xe8\x01\x03\xdb\x0b\xca\xc7\x78\xc3\x93\x50\x34\x7c\xbb\xc8\x42\xbb\x3b\x5e\xbb\xe5\x56\x3f\x44\x59\x06\x16\xb3\xe5\x66\xca\xaa\x83\x15\x67\xe6\xae\x76\x7a\xac\xcc\xd0\x5e\x9e\xcd\x55\xa7\x8b\x51\x01\x15\xf6\x0c\xdc\x89\x02\x5f\xfb\x53\x3e\x52\xd6\x3c\x49\x8a\xfb\x6d\xd9\x86\x42\xf3\x7f\x9f\x7e\xad\x2a\x5c\xa4\x5a\x2e\x1e\x57\x3b\x3d\xd4\xc3\xba\x70\x2a\x5f\x3a\xc8\xb0\x84\x3c\x91\xcb\x42\xcd\x1e\x32\x71\xa7\x6a\xf7\x0b\x4e\x76\xc5\x76\x59\x85\x13\x42\x5c\xa3\x7b\xff\x8a\x2b\x9d\xba\x38\x41\xd6\xd4\x20\xd0\xfa\x2f\xf3\x6e\x23\x58\x89\x7a\x42\x5c\x1f\xda\xbb\xc8\xaa\xa6\x50\xbd\xd0\xd8\xbc\xe0\xed\x5f\xbe\x5c\x6e\x46\x2b\x6f\xa6\x00\x9f\x48\xc6\xda\xc0\xb7\xda\xaf\x2e\x37\x57\x83\x36\xc8\x5e\x01\xd9\x25\x33\x85\x13\xc0\xb2\x9f\x0a\x4c\xcf\x9c\x21\x2d\x06\x0b\xdb\xd3\xdd\xf9\xf6\xba\x9e\x56\xf8\x9b\xbb\x6c\x4f\xe7\x4f\xab\xf1\xce\xd1\xac\x38\x35\xec\x60\x84\xdf\x38\x0c\xcd\xad\xff\xed\x75\x45\x03\x88\x1e\x75\xc0\x69\x97\x57\x00\xd6\xf5\x2a\x81\xd2\x62\xd5\x76\x99\x38\xd3\xaa\xfe\xea\x9a\x08\xb7\x7a\x5f\x38\x87\x13\x6c\xa6\x60\xbd\x65\x5e\x8a\xa2\xd6\xa7\xb7\x66\xda\x97\x1d\x67\xc5\x4d\x59\x90\x97\xa8\xc6\x49\x91\x86\x58\xbf\xd5\x7e\xf5\xe5\xf2\xf1\x66\x34\x59\xb3\xe3\xb5\xb8\xaf\xd0\x70\xc8\x33\xc5\x66\x75\xb7\x8a\x2b\x41\x58\xbb\x15\x18\x17\xbc\xba\x3b\x08\x6b\xb3\x6e\x31\x6a\x97\x2f\x46\x71\xc4\x4a\xdd\x16\xeb\x36\x01\xf2\x5d\x50\xcc\xa0\xad\xbb\xdb\xa8\x18\xf8\xd6\x9d\xda\x93\xbc\x3d\xbe\x7c\xbc\x39\x89\x9a\x55\xf6\x7e\xcb\xaa\x0f\x06\xa3\xc7\x9b\x93\x0a\x5b\x24\x2d\xcb\x51\x27\x68\x0c\x71\x3a\x47\x72\x3e\x8c\x05\xfb\xfb\x5c\x5a\xe2\xe9\xeb\x7e\x8a\x32\x3b\x93\x48\x45\x46\x49\xae\x05\x7b\xc0\x02\xf0\x18\xe1\x38\xf2\x04\xc6\xfa\xd0\x14\x40\xf3\x1a\xc9\xd0\x69\x63\x48\x31\x61\xc4\x88\xc5\x51\x2e\x52\x1e\xc7\x8b\x56\xa1\x57\x50\x70\x96\x4a\xd0\x8d\x08\xf0\xe6\x70\xee\xdb\x67\xc7\xfb\xc7\x8d\x74\x12\x25\x23\xde\xec\xb1\x73\x9e\x46\xa0\x53\x42\x1f\x00\x19\x5b\xb7\x36\x4f\x2b\x74\x82\x1b\x93\xe7\xe2\x1b\x9b\x99\x67\xaf\x88\x96\xb1\xe2\x98\x76\x4b\x93\xd6\x2e\x0e\xd6\xbf\xfe\x53\xf5\x35\x6e\xef\xb5\xc7\x0e\x50\x4e\x91\xcd\xe3\xdc\x95\xdf\xaa\xb7\xd8\xf4\x8e\x26\x9d\xc6\x66\x16\xdf\x3f\xc2\xb3\x48\xe1\xb2\xf3\x62\x10\x04\xb5\xfb\x93\xba\xa0\x69\x85\xd9\x9b\x65\x5a\x6c\xfb\xc5\x76\x40\xbe\x7a\x2a\x26\x07\x77\xb3\x46\x70\x31\xa0\x3f\x75\x70\x63\xb3\x8f\x59\x00\xf9\x85\x26\x06\xde\xbd\x6e\xf9\xa9\xe8\xc4\x3c\xcb\x0f\x93\x91\xb8\x33\x1c\x97\xcc\x3c\x43\x15\x01\x7e\xf8\x0d\x07\x4a\x73\x09\xcb\xfa\x29\x21\x6d\x9a\xc3\x29\x10\xda\x39\xcc\x2a\x4d\xf9\xe3\x9d\x8a\xdd\xad\x08\xb9\xee\x48\xcb\xef\x61\x9b\x75\x6b\x18\xde\x42\x31\x33\x7a\xaf\x86\x5d\xbe\x1d\xbb\x7c\x3e\xc7\x31\x18\x94\x4c\xa1\x4b\xe7\x64\xa9\xfb\x80\x62\xe8\x03\xe5\x48\x17\x42\x99\xe4\x51\x32\x17\x55\xf1\x1a\x9c\x5e\x28\x26\x67\x45\x37\x0a\xcd\x11\x32\x2e\xeb\xe0\xb2\xb6\x9d\x96\xa0\x1b\x6b\x8d\x57\xe7\xc8\x9f\xc7\x79\x45\x14\x82\xfb\xa3\x81\x3e\x50\x0b\x64\x33\x21\xe2\x83\x6a\x2a\x88\x49\x59\xa5\xd4\x60\x0d\xb2\x5f\x70\xe9\x24\x29\xac\x55\x79\x30\x88\x74\x74\x23\xbb\x6f\xcf\x0e\x4e\xc9\x57\x99\x83\x0f\x14\x44\xa7\x8c\x79\x76\x05\xc9\xf8\x7e\x7c\x28\x5d\x21\xc7\xb7\x6a\xba\x32\x05\x33\x7c\x9a\x5c\x85\x6e\x3d\xf8\x6f\x4b\xbf\x18\x04\xf0\x66\x10\x38\xaf\x06\x03\x7c\x37\x18\x98\x97\x1c\xdf\xdc\x6d\xbd\x30\xaf\x86\xfa\xd5\x4b\xf3\x4a\x04\x3a\xf6\x9b\x79\x35\xd6\xa5\x42\xf3\x2a\xd1\xaf\xb8\x79\x95\xea\x57\x23\xf3\x2a\xd7\xaf\x5e\x99\x57\x37\xfa\x95\x05\x7f\x17\xf4\x4a\xc3\xd6\xcc\xe8\x8d\x96\xc1\xd5\x72\x1c\x97\xbf\x6e\x7f\x23\x96\xc3\xc3\xb1\xaa\xf8\x5f\xe6\x20\x06\xb0\x2d\xd6\x7d\xde\x34\xb7\x73\xdd\x9b\xf9\x6f\xec\xcd\xd3\xef\xd2\x9b\x81\x23\xea\x75\xfc\x89\xc2\x2b\x08\x8b\xca\x67\x6a\xa7\x4f\xf9\xac\x74\x01\xc4\x42\xcd\x7a\xee\x4e\x5f\xdf\x70\x7b\xf4\xac\x72\x2d\xbc\x72\x8f\x0c\x3d\xd2\x29\x9f\x5d\xd0\xe7\xcb\xd7\xf5\xa7\x0c\x90\x83\xc5\x4c\xc8\x31\xb3\x92\x25\x3d\x8b\xfa\x28\xd3\x30\x51\x92\x1a\xf2\x38\x46\x73\x42\x9f\xb7\xd4\xd7\xec\x2a\x6e\xc8\x9a\xa5\x69\x23\xd8\x2c\xe7\x29\x58\xc7\xd4\x6e\xf1\x32\x3f\x81\xa7\xe0\x37\x03\x63\xd7\x3c\x79\x16\x80\xb9\xab\x15\x05\x8b\xa3\x6c\xc6\x93\x0e\x63\x1f\x3e\xf5\xcf\x48\xf4\x4f\x7a\x07\x28\x3b\xd8\x98\xc4\x72\xc8\xe3\xc1\x06\x9d\xb3\x6c\x1c\xf3\xc9\x83\x39\x8d\x0a\xe3\xb6\x99\x67\xd9\x06\x68\xa1\x0d\x25\xb1\xe9\xda\x55\x57\xac\x76\x9a\xf0\x18\x95\xaa\x3d\xd6\x9f\xf1\xc4\x9a\x73\x6b\xa7\x03\x04\x62\x4e\x57\x0d\xbb\xf6\x60\x57\x88\xc2\xd3\x05\xdb\x31\x45\x4b\x07\xbc\x8b\xc2\xaa\xe8\xd7\xaf\x15\x60\xdb\x0a\xca\xc5\xd6\xa5\x66\xdb\x1f\xd9\x76\x56\xdf\x52\x8c\xf5\x28\xe2\xb2\x9e\x23\x97\x29\x42\xdd\x6a\x55\xbb\xdd\x25\x38\x4d\x4b\x86\x5d\xab\x38\x69\x76\xb1\xc2\x9a\x48\xa7\x15\xf7\xa1\x9c\xa3\x31\x74\xfd\xf2\x53\x4f\xdc\x95\x87\x5a\xae\xc0\x0b\xee\x2c\x3b\x08\xad\xa0\x28\x5e\x72\xcd\xa9\x54\x1a\xfb\x3c\x34\x59\x5d\x21\x77\xc9\x76\x59\x1c\x65\xe0\xd0\x09\x2e\x77\x2c\x91\x49\xfb\xf6\x2a\xca\x05\x46\x44\xf6\xb6\x87\xb6\xf0\xd6\xc7\x35\xa3\x69\xb0\xc8\x7f\x23\xa3\xd1\x0a\xd4\x37\x82\xbc\xa2\xc9\x16\x76\xc8\x45\xfd\xcd\xc1\x20\xdb\xec\xe4\x22\xcb\x2d\xd9\x73\x6f\x6d\x45\x06\x58\x95\x7f\xbc\x39\x99\x52\x40\xd0\x3a\xb4\xd6\x75\x8c\xa6\xde\x99\x4f\xc3\xbb\x6b\x5e\xd6\x67\x63\x1d\x64\x73\xe1\xbb\xa8\xb8\xe6\x0a\xe9\x76\x4a\x23\xf7\x38\xaf\x4e\xa4\xc0\x1f\x8f\xbd\x62\x3b\x3b\xac\xdd\x6d\xae\x25\xaf\x96\x09\x68\xfd\xd5\xb6\x71\xd6\xfc\x31\x0b\x5a\x68\xa5\x03\x3b\x6a\xe0\x69\x7b\xcc\x41\xe1\x72\x6e\x6b\xdb\x24\x7d\x71\xe5\x8e\xff\x1a\xf6\x49\xd6\xb0\x33\x26\xbf\x7c\x30\x55\x75\x6d\x18\x64\xea\x0b\x5f\xab\x76\x80\x33\x31\x8a\xd5\xf3\x77\xe8\x07\xd7\x43\x0c\x7d\xd7\xc0\x0e\x01\x1c\x2c\x50\xa8\x4f\x16\xeb\xc6\x0f\xd6\x93\x0b\x28\x86\x38\x15\x6c\x3e\x9b\x81\x83\x9a\x1a\x81\xd4\xd1\xd6\x13\x99\x4e\x79\x0c\x0e\xd2\xda\x89\x34\x4a\x66\xf3\x1c\xf4\xe5\x43\x30\x88\x9d\x44\x37\x5a\xd2\xc0\x06\x1b\x7b\x67\xa7\x47\xed\xdd\xc1\x06\x39\xa0\xa1\xa2\xde\xfc\x04\xaf\x63\xae\x7e\xa6\x02\x82\x13\xf1\x30\x14\xb3\x5c\x8c\xfc\x60\xb8\x3d\xf6\x11\x86\x01\x51\x25\x42\x9e\x24\x32\x07\x27\xef\x98\xcf\x50\xf3\xbe\x5a\x61\xb7\x62\x16\x7d\x5d\x2b\x71\xcf\x90\x96\xb5\x67\xfc\xb3\xd4\x2b\x35\x9c\x9e\x76\xd4\x1a\x98\x50\xb4\x53\x99\x30\x1e\x47\x1c\x83\x0c\xed\x1d\x7f\x3c\x3b\x3d\xf6\xcb\xed\x1e\x29\x48\xe0\xd8\xa5\x7e\x7e\x38\x38\xdb\xed\x19\x0f\x2f\x7f\xfd\xde\x9b\x8c\x64\x73\xc7\x33\x66\xd5\xc2\x9d\x28\xf2\x87\xa1\xed\x14\x1e\x4f\x65\x96\xc7\x0b\x16\x8b\x71\xce\xe4\x3c\x37\xe8\x0e\x04\x7a\x28\x42\x3e\xd7\x59\xef\xd4\xb2\x4e\xe5\x8d\x5a\x74\x85\xcb\x68\xef\xa2\x23\xee\x1b\xe3\xb6\x58\x86\x3c\x16\xb8\xcc\x14\x6c\xc5\x34\x7d\x98\x14\x8c\x88\x58\x1c\x5d\x0b\xbd\xda\x07\xfd\xbd\xc1\x46\xcb\xc4\xef\x08\xa5\x5a\x49\xe2\xbf\x74\x87\xe4\x18\x1d\x12\x9d\x05\x61\xec\x10\x1c\x3e\xc4\xdf\xe7\xd1\x0d\x8f\x05\xba\x93\x13\xcc\xed\x17\x3e\x46\x6d\xdd\x75\x87\x83\x8d\xdf\x11\x8b\xcd\x40\xdc\x56\x0f\xb2\x10\x5e\xe8\xdf\x02\x7f\xd7\xa2\xf2\x67\x81\xd1\x64\x34\x1b\x18\x3a\x88\xe3\xe4\x9f\xd3\x19\xee\x3a\x8c\x0d\x36\x74\x1b\x23\x7c\xe6\x33\x41\x4d\xe8\x90\x66\xa6\xf4\x77\xda\x31\x9e\x01\xc1\xaa\x5d\x63\xd4\xe8\x3b\xc6\x3c\xfa\xcc\x49\xa6\x75\xd0\xdf\xdb\x3d\x39\xe8\xb1\xed\x17\x2d\xfa\x69\x9e\xdf\x76\x7b\xac\xdb\xdd\xc6\xe7\x6d\xf5\xfc\x04\x9f\x9f\xa8\xe7\xa7\xf8\xfc\x54\x3d\x3f\xc3\xe7\x67\xea\xf9\x39\x3e\x3f\x57\xcf\x04\xe7\x85\x7a\x7e\x89\xcf\x2f\xd5\xf3\x2b\x7c\x7e\xd5\x63\xdd\xed\x2d\x6a\x6b\x4b\xfd\xe8\xd2\x0f\xd5\xf2\x36\xb5\xdc\x55\x4d\x6f\x3f\x69\x99\x40\x2e\xa7\xea\xf4\xbb\x95\xd0\xfd\xe3\x8f\x07\x3d\xf6\x14\xe1\x9d\x7d\x3e\xee\xb1\x67\x08\xef\xec\xdd\xe9\xc1\x41\x8f\x3d\x23\x80\xc7\x9f\x4e\x7b\xec\x19\x01\x3c\x3c\x57\x5f\x70\x2c\xfd\xc3\xbf\xf4\xd8\x33\x1c\x4b\xff\xe0\xfc\xe0\x63\x8f\x3d\xc3\xd1\x1c\x1c\xfe\xf4\xee\xac\xc7\x9e\xe1\x78\x3e\x1e\xaa\x86\x9e\xe1\x80\xfe\x7a\x70\x7a\xdc\x63\x4f\x71\x44\x6f\x76\xf7\xde\xf7\x4f\x76\xf7\x0e\x7a\x8c\x5e\xbc\xef\x9f\x98\xe7\x3e\x3e\xb9\x3d\xbf\x4a\x05\x46\xc7\x3c\xdb\x7d\xd3\x63\xd8\xf5\x3f\xf7\xd8\x4b\xec\xea\xe7\x1e\x7b\x49\x4b\xd1\x63\xcf\xf1\xeb\x69\x8f\xbd\xc4\xbe\x9f\xf5\xd8\x4b\xec\xec\x7f\xf5\xd8\x4b\xfc\xfa\xa9\xc7\x5e\x62\x97\x0f\x7b\xec\x05\x0e\xeb\xb8\xc7\x5e\xe0\x57\xd5\x95\x2d\xbf\x07\x63\x39\xc7\x50\xdb\x7b\xbb\x27\xfd\x2f\x47\xc7\x7b\xef\x7b\x8c\x96\x41\xbd\x29\xbd\x30\x3f\x76\x7b\xec\x39\xb6\xa4\x86\x85\x2d\xed\xf7\xd8\x73\x5a\xda\x1e\x7b\x81\xe5\x7e\xea\xb1\x17\x38\x9a\x77\x3d\xf6\x02\x7b\xfe\x9f\x3d\xf6\x02\x7b\xfe\xbe\xc7\x5e\x20\x94\xa3\x1e\x7b\xf1\x5c\x93\xe8\xcf\x02\x6e\xc1\x22\x01\x8b\xd5\x64\x64\x55\xb5\x13\x01\x36\x62\xe2\x06\xf2\x84\x83\xd7\x2b\x96\x22\x19\x0f\x05\x43\x1f\x0a\xd6\xdd\x22\x60\x9a\x7a\x2a\x12\xcb\x66\x42\xce\x62\x41\x61\xd9\x21\xe3\x89\x54\xe4\x46\xd1\x80\xa1\xa2\xbb\xe0\xb1\x11\x65\xb9\x4c\x17\xb0\x19\x3b\x8c\x9d\xc4\xf3\x4c\x77\x0c\x60\x68\x22\x9b\x6d\xce\x52\x39\x49\xf9\x14\x02\xb8\xeb\x50\xca\xd4\x43\x1e\xa7\x82\x8f\x14\x51\xc0\xf8\x4b\x0b\xdd\x35\x72\x97\x04\x87\x02\x89\x01\xfd\xa0\x26\x46\x51\x11\x49\x1e\x2f\x5a\x96\xd2\x03\x01\x22\xda\xcf\xc0\x9b\x3d\x0a\xe9\x8a\x0d\x78\xf1\xf1\xec\xe0\xb4\xc7\x68\x33\x1e\x7c\x3c\x33\xcf\xa7\x07\x67\x9f\x4e\x3f\xba\x3f\xe9\xd9\x5d\xfc\x08\x6d\xfa\xd8\x5f\x7b\xec\x15\x2e\xd7\x5f\x7a\xec\x25\x2e\xe1\x5e\x8f\x3d\x47\xe4\x3b\xef\xb1\x97\xb8\x34\x6f\x7a\xec\x39\xed\x81\x1e\x7b\x81\xe5\x3e\xf4\xd8\x8b\x17\x16\xee\x41\x1e\x02\x48\xda\x06\x4f\x70\xc5\xd5\x2e\xa0\xc7\x93\xd3\xc3\x8f\x67\x5f\xfa\x7b\xa7\x07\x6a\x83\x3d\xd5\x2f\xcf\x14\xb1\xa1\x5f\xfd\xbd\xd3\xe3\xa3\x23\xc2\xc6\xee\xd3\x67\xfa\xe5\x91\xf3\x13\x52\x0d\xf7\x18\x91\x8f\x37\xa7\xf6\x19\x53\x04\xf7\x18\x15\x3c\xfc\xd8\x37\xcf\xef\x8e\x3f\xa8\x3e\xe1\x10\x4e\x76\x7f\x3a\xf8\xf2\x49\x75\x0c\xa7\xe8\xe4\x27\xe7\xc7\xfe\xc1\xd1\xc1\x99\x22\x27\xcf\xf5\x4f\xf3\x7c\xf0\x71\xbf\xc7\x9e\x3c\xb3\x30\xf6\x8f\x3f\x7f\xec\xb1\x27\x4f\x09\x4a\xf1\xa7\xfd\x01\xf0\x71\xd6\xb0\xd0\x53\x9c\xf4\x53\x24\x2f\x4f\xb0\xff\x47\x07\x8a\x8b\x79\x82\x73\x4f\x79\x59\xd5\xb8\x9f\xda\x49\xc6\x14\xa7\xb0\x81\x4e\xb6\x7a\xec\x15\x76\xec\xfd\x49\xb7\xc7\x5e\xbd\xa0\xe7\xed\x1e\x7b\xf5\x92\x9e\x9f\xf4\xd8\xab\x57\xf4\xac\x88\xf4\xd6\x16\xfd\x50\x54\x7a\xab\x4b\x3f\x14\x99\xde\xda\xa6\x1f\x8a\x4e\x6f\x3d\xa1\x1f\x8a\x50\x6f\xd1\x8e\x3d\x51\x94\x7a\xeb\x19\xfd\xf8\x72\x72\xf4\xa9\xaf\x5e\xe8\x66\xbf\xec\xee\xef\x7b\xbf\x3f\x1c\x7e\xc4\x12\xba\x03\x5f\xfa\x9f\xde\x9c\x9d\xee\xee\x9d\xf9\x2f\xcf\x76\x15\x22\x6f\x3d\x37\xf5\x3e\x1d\x9d\x1d\x9e\x1c\xfd\x97\xf7\x72\xff\xf0\xfc\x70\xff\x40\x1d\x1b\x5d\xf3\xea\x60\xef\xf0\xc3\xee\x91\x7a\xb7\x65\x3a\x75\x70\x7a\x78\xbc\xaf\x5f\x69\xbe\xcf\x64\x92\x9c\x8a\x51\x04\x1c\x10\x64\xa0\xfd\xb8\x7b\x7e\xf8\xd3\xee\xd9\xc1\x17\x45\xbd\x7b\xac\xab\x31\x5c\xbf\x7e\x7b\x7c\xfa\x79\xf7\x54\x41\xa3\xfd\x80\x39\x1c\xd5\x6f\x22\x76\x9f\x8e\x8e\x0c\x42\x77\x89\x16\x7e\x3e\xfc\xb8\x7f\xfc\xf9\xcb\xf1\xf9\xc1\xe9\xf9\xe1\xc1\x67\xf5\x61\x9b\x50\x55\xad\xf6\xc7\x83\x7e\x1f\x90\x6f\x9b\x0e\x49\xe7\x35\xe2\xc6\x76\xf7\x45\x91\xd3\x3c\x74\xae\x11\xe4\xcf\xa0\xae\x32\xd6\x56\x63\x35\x07\xa0\xed\x50\x76\x8a\xee\x0c\x27\xa9\xce\x1c\x65\x63\x30\x29\xca\x6b\x9d\xfd\xb2\x45\x96\x8b\x29\xb2\x82\x10\x25\x4d\x8b\xd1\xa0\xa2\xeb\x40\x80\x71\x4e\x7a\x2b\x23\xa1\xb4\x8a\xae\x0b\x9f\x79\x94\x53\x3a\x88\xc1\xc6\xb5\x58\x40\xb8\xa2\xc1\x06\xb6\xd0\xb2\xc1\x89\xf4\x27\xa6\xf3\x3d\x14\x43\xd8\xeb\x9e\x50\x68\xad\x65\x5d\xd1\xf9\x21\x8b\x7d\x39\x2a\x04\x86\xc3\xc8\x9d\xfe\x5c\x50\xb0\x38\xea\x92\xdb\xf0\xc9\x6e\xbf\xbf\xac\x55\x48\xac\x5c\x6c\xb2\x6f\xb3\xe4\x68\x5f\x33\xb8\xc5\xcf\xf8\x44\x71\xc6\x2e\x7c\x37\x55\x99\x23\xd1\xd6\xd5\xac\x7d\xee\x92\xdc\x66\xf7\x0c\x9c\x74\xbf\xee\x8e\xe4\x6d\x52\xdd\xe1\x7d\x79\x9b\xdc\xb3\xcb\x0f\x4f\xb2\xb3\x56\xa7\x09\x79\x72\x59\x31\xc5\x67\xf2\x4c\xde\x67\x86\x6d\xae\xbd\xdf\xb1\xa7\x43\x99\xe7\x3a\xf8\x96\xdf\xd9\x37\xf0\xe5\xff\xa4\xbf\x36\x71\x90\xe9\x2e\x84\x83\xae\xca\x11\xa4\xbb\x8d\x21\x13\x4d\x89\xb5\xfa\x5d\x91\x00\xe8\xde\x21\xc0\xd6\x91\x69\x99\xd8\x87\x5f\x28\x8f\xeb\xbf\x88\x6f\xb8\xe3\x73\xa7\x1e\xc7\x41\x8b\xc1\x43\x3f\x97\x29\x9f\x88\x82\xbb\xdd\x89\x99\x86\x0f\x38\x0b\x2c\x9b\x0f\xd1\x79\x16\xa6\x45\x51\x43\xd4\x2c\xb0\x8f\xbc\xdf\x7f\xe7\xc4\x8c\xf4\xc4\x54\x98\x99\x81\x24\xe9\x31\x05\x5d\xe5\x09\x93\xe9\x48\xa4\x60\x73\x82\x92\x68\xd4\x5f\x85\x32\x49\x28\xea\xeb\x2c\x95\x6a\x2c\xc5\xa3\xad\xd4\x2d\x57\x93\x82\x55\x0e\x75\x00\x0e\x35\xba\x52\x05\xab\xa2\x6a\x11\xda\x90\x8f\x33\xcd\x43\x45\xdc\x63\xef\x2f\x40\x3c\xd9\xd4\xfd\xdb\x04\xfd\x84\x69\xd9\xa8\x50\x46\x62\x9c\x59\x73\xe9\x52\x2f\xa8\x51\xfb\x01\x95\x2f\xe8\xb2\xa2\x2e\xec\x59\x43\x41\x68\x96\x03\x8c\x5c\x17\xd3\x94\xa1\x37\x97\x85\xa4\x4a\xb4\xa0\xfd\x8b\x6b\xb1\xb8\xbc\xe8\x5e\x36\x97\x44\x49\xaa\xeb\x60\xc8\x73\x31\x91\xe0\xa4\x4f\xa2\xcb\xd5\x25\xcd\x0e\x64\x3b\x2c\xd0\xcf\xc1\x7a\x55\x77\x67\x33\xc1\x53\x52\x91\x04\xf6\xd7\x9a\xd5\xd5\xe6\xd4\xae\xb7\x81\xf9\xb1\x66\xe5\xbe\xda\x49\x6a\x9c\x01\x3e\xad\x5b\x0d\x08\x18\x5a\x0e\x05\xe6\xc7\x9a\x95\x0f\x92\x50\x8e\xa8\xae\x7e\x5e\xb3\xea\x87\x28\x0b\x45\x1c\xf3\x44\xc8\x39\xf4\xda\x7b\xe1\x4b\xb0\x8f\x68\x7f\xd9\xea\x2d\xb3\xf7\x86\x0b\x36\x8a\xb2\x59\xcc\x17\xf8\x8a\x35\x72\x39\x83\xdb\x29\x9c\x26\xcd\xe5\x3b\x4f\xf7\x68\xb1\x6f\x0c\xd0\x4d\xac\xac\x5f\x59\x34\xea\xd5\xe2\x7e\xe5\xaa\xb7\x34\xb9\xbf\xcb\x7b\xee\xfa\xb3\xc6\x58\x26\x79\xd6\x62\xa1\x8c\x65\x9a\xb5\x58\x34\xe5\x13\x91\x35\x03\xd4\xed\xaf\xdd\x92\xc1\x09\xbf\x21\x4c\x83\xc2\x10\x5b\xee\x09\x52\x2f\x9b\x0f\xd1\x2c\xe6\x3d\xa1\xe9\xfd\xe2\x43\x33\xbb\xe8\x9e\xd0\x0c\x3a\xfa\xe0\x2c\x96\xde\x17\x1e\x6c\x8c\x02\x30\xdc\x2c\xf7\x84\xe4\x21\xab\x0f\x50\x7d\xea\x04\xdf\x74\x2c\xb5\x7a\xd4\x2b\x53\x4f\x7d\xb3\x09\x78\x9c\xb7\x27\x69\x7b\x2a\x47\x22\x80\x20\xbc\x17\xf7\x99\x7b\x70\x7d\xc0\x4e\x5d\xc0\x23\x0b\x12\x99\x08\x1d\xf5\xad\x4d\x21\xdf\x62\x31\xce\xf5\x33\x1c\xf3\xf0\x83\x12\xd5\x07\x18\xcc\x59\x9d\x72\xbb\x71\xfe\x93\x3a\x0a\x72\x3a\xd4\xae\x78\x78\xfd\xf3\xe7\x2b\x31\x4f\xa3\x2c\x8f\xc2\xce\x60\x90\x68\x65\x5c\xe0\x3f\x07\xe0\x1a\x38\x08\x7a\x8a\xa7\x90\x08\xc1\xca\xfb\x13\x7e\x13\x4d\x78\x2e\xd3\x4e\xcc\x93\xc9\x9c\x4f\x44\xcf\xad\x8e\x27\xd5\x60\x10\x88\xa4\x3d\xcf\x06\x83\x80\xed\xfc\x51\xfd\x54\x43\x19\x0c\x82\x16\x3a\xbf\xe0\x3b\xd3\xfd\xc1\xa0\xd4\x05\x2c\xde\x63\xfb\x51\x86\x61\x42\x92\x05\x0d\x29\x15\x31\xd8\x6e\x4d\xe7\xc9\x04\x04\xf0\x7e\x4d\x3d\x57\x38\x80\x2c\x9b\x4f\xd1\x5f\xf3\xf1\x6e\x9c\x33\x0c\x7b\x08\x70\x8a\xf5\xf4\xbc\xba\xf5\x40\x37\xb2\xa2\x9e\x3b\x08\x53\x11\x79\xb5\xaa\x9a\x97\xc4\xc4\x06\x5e\x06\xe3\x76\x94\xb5\xfd\xdc\xc4\x0f\x41\x20\x8a\x0e\x19\x0c\xa5\x24\x9d\x12\x0b\x0e\xc7\x2c\x13\x79\x8b\xcd\x93\x91\xa4\x90\x05\x56\x2a\xb1\x1b\xe7\x6d\x93\x8e\xb8\xfd\xc7\xfd\x83\x23\x96\x8a\x29\x9f\xd9\x88\x7d\x66\xa4\x5e\x77\x59\x94\x8c\x84\x18\x61\xca\x23\x37\x11\xb3\x3f\x3c\x1a\xd4\xf7\x1a\x4a\x5f\xe4\xec\xf6\x4a\x98\x3c\x17\x3a\xb1\x34\x0f\xf3\x0c\x83\xd9\xa8\xd6\xe0\x95\xba\xcf\xab\x17\x23\x85\xeb\x49\x98\xeb\xb2\x85\x0e\xaa\xdb\x7d\xd6\xbe\xbd\xe2\xf9\x43\xfa\x18\xa0\xc9\x13\x75\xef\xc2\xfc\x64\xc1\xcb\xf6\x30\x82\x0d\x4a\x37\xf9\xf6\xb5\x58\x98\x2d\xba\xa7\x03\x27\x5f\x95\x33\x6c\xe3\xed\x7e\x54\xbb\x39\x19\x99\x59\x75\xf0\x8f\xf5\x21\xb1\x40\x02\x6a\x33\xc5\x05\x47\x77\x1d\xbf\x38\xf4\xa4\xa3\x8b\xef\x8e\x46\xac\xbb\xfd\x52\xdf\xe9\xe6\x09\xe8\x2d\xc5\xc8\x0d\xd6\x90\x99\x3c\xa0\x05\x50\xce\x58\x3a\x1d\x2b\x37\xf1\x84\x23\x28\xd0\xc1\x94\x3c\x14\x9e\xc7\x15\x68\x94\x09\x85\xfd\xcb\xf8\x22\xeb\x30\xd6\x00\xbe\xfd\x56\x26\x83\x41\x90\x43\x52\x2e\xf4\xd7\x56\x6c\x79\xcc\xf3\xb1\x4c\xa7\x94\x97\x0b\x6d\xa4\x96\x40\xd4\xad\x52\x7c\x40\xc0\x07\x3f\x35\x8a\xea\x3f\x04\x21\x57\x4b\x60\x35\xa6\xcd\x40\x01\xb4\x98\x32\x1f\x45\xc3\x58\xb4\x87\x22\x8e\xdb\x99\x3a\x78\xd6\xc7\x16\x3a\xbb\xe0\xba\xd3\x4e\x05\x5e\xbb\x7a\xc8\xc6\x2b\xb8\x72\x53\x41\xd5\x18\x3e\x4f\xcd\xe3\xa7\xd3\x23\x1d\x40\xc1\xdc\x6d\x55\x51\x06\x1d\xe8\x30\x76\x30\x9d\xe5\x0b\x6d\xc0\xaa\x06\x92\x48\x46\x3d\x85\x82\x0e\xaa\x8f\x44\x76\x9d\xcb\x59\x3b\x91\xb9\x89\xb4\x0e\xa3\xb9\xff\x38\x6a\x48\x0c\x46\xa7\xf5\x3a\x9a\xe9\xeb\xa1\xa2\x0e\x13\x0c\x22\x04\xc6\xfc\x21\x98\xfc\x33\xce\x3e\x8b\xa1\xa5\x2f\x1f\x9d\xbe\x75\x20\xb0\x54\x46\x91\xa5\x6e\x9f\x74\x64\x3a\xd9\x3c\x3b\xdd\x74\xfb\x9f\x6d\x16\xf7\x08\x3d\xee\x23\x5b\xa9\x66\xc5\x2b\xcf\x52\xf1\xf7\x79\x94\x8a\x4c\xe1\xc3\x34\xca\x32\x40\x00\x6d\xe4\x37\x87\xdc\x20\x9f\xaf\x04\xc5\x6a\x32\x90\x31\xce\x82\xda\x9b\x99\x00\xfd\x32\x0e\x15\xa6\x8c\x52\x4f\xe4\xb9\x98\xce\xe0\x1b\xcf\xae\xad\xbe\x58\xad\x89\xd3\x94\x81\x18\x8d\x59\x22\x42\x91\x65\x3c\x5d\x74\x30\x93\xaf\x4e\xb8\xc4\xa6\x7c\x01\x31\xbe\xb3\x2b\x32\xb1\x71\x21\xa8\x01\x88\x2c\xa7\x1c\x48\x06\xde\x08\xcc\xa8\x72\x86\xf1\x96\xd4\xd4\xba\x19\xf3\x11\xd3\x6b\x09\x0a\x9d\x05\xe2\x2e\x17\x49\x86\x39\xef\x28\x1b\x16\x1b\x6c\x78\xf3\x37\xd8\x70\xfb\x02\x01\x5b\x9d\xdf\xb9\x74\x3b\x84\x8c\xbd\x57\xdd\x41\x47\x8b\x10\x6d\x60\xac\xd7\xc7\x42\x87\x65\x67\x41\x3a\x19\x36\xba\xcf\x5b\x0c\xff\xdf\x04\x3e\x09\xc0\x11\x5a\x9e\xf9\xb8\x07\xdf\x90\x62\x89\x3b\x0a\xc7\x90\x48\x0a\x00\x81\x1f\x6d\xcc\xae\xea\xde\x02\xfb\xff\xc0\xde\xaa\xee\x69\x2f\x31\x9a\xfa\x7e\x9f\x2c\x58\x69\x9f\x3b\x9d\x85\x96\x6a\x36\x39\x7e\xab\x5b\x50\x2f\x0a\x88\x47\x1c\xe7\x69\xdc\xd0\xfb\x6a\x22\x65\x67\x12\x6f\xf2\x44\x8c\xce\xde\x37\xfd\x72\x71\x94\x08\x9e\xb6\x27\x29\x1f\x45\x22\xc9\xe1\x62\x86\xb7\xb2\x16\x1b\x82\x5d\x71\x2a\x46\xcd\xca\x09\xca\xa2\x5f\xfe\x17\xe7\x07\x42\xa9\x77\x18\xdb\xd7\x01\xea\x72\xc9\x14\xdf\x58\xbd\x78\xda\x92\xf2\x7f\xb1\x7f\xd6\x78\xf3\xde\x8b\xd5\xdd\xfa\x77\xf5\x7f\xff\x65\x08\x7a\x67\x7f\x74\xc8\xba\x21\x23\xf3\x7b\x30\x8f\x44\xd9\x69\x78\xc8\xfd\x91\xe2\x1b\x74\x23\x6f\xfa\xac\x01\xec\x3b\x18\xfd\x03\x87\xcf\xaf\x39\xfb\xf9\x5d\xb3\xc3\x9c\x9c\x37\x66\x14\x3e\x24\x30\x09\x72\xa0\x69\x48\x2f\xc6\x83\x41\xe0\xac\xa3\xe1\x4f\xda\x53\x3e\x6b\xeb\xec\x1d\xd9\xc3\xd6\x92\x2e\x57\xb0\x76\xc6\x67\x40\x8b\x0b\x6d\xcc\x1d\x88\x10\x43\xd1\x5b\x3a\x64\x6a\xc4\x59\x36\x43\x7f\x90\x34\xe5\x8b\x16\x31\x22\x82\x87\x57\x6a\x7d\xc8\xb4\x31\x30\x41\x5d\x29\x31\xac\xe5\xae\xd4\x19\x02\x32\x57\x9d\x75\x83\xdc\xb8\x9d\xa6\x28\xfe\x8c\x3d\x82\x58\xe0\xb7\xca\xa2\x3c\x13\xf1\xb8\x83\x89\xac\x78\x5e\xe8\x12\x74\xa6\xd8\x03\x0b\x2b\x15\xa1\x88\x6e\x7c\x96\xaf\xd8\x17\x08\x64\x84\x44\xdc\x2d\xe8\xa2\xb1\x87\xc7\xb5\x88\xac\x26\xe5\xd7\xc1\xc6\xd6\x60\xa3\xf7\xeb\x60\xe3\xf1\x60\xa3\x37\xd8\x50\xeb\x3b\xdf\xee\xbe\xda\x1e\x6c\xb4\xe0\x7f\xce\xbb\x2d\x78\xd1\xf6\xde\x75\xe1\x5d\xc7\x7b\xf7\x64\xb0\xd1\x72\xc6\x84\x2d\xe8\xcf\xcf\x5e\xbe\x1c\x6c\x7c\xfb\xe6\xf3\x70\x90\x34\xae\x2d\x93\xb6\xb8\x8b\xee\xc1\xec\xfb\x02\x03\xda\x0c\xde\x16\xf9\x4c\x17\x12\xa0\xcd\xc0\x04\x40\x53\x30\x87\x94\x6b\xef\x16\xb9\x0a\x93\x73\x88\xa9\x3e\xb8\x47\x0c\xc6\x16\x6c\x0f\xe3\x28\xb9\x7e\x18\x4a\x57\x6d\xde\x72\xcf\xa0\x01\x6d\x5e\x9e\xc9\xd4\x89\xb2\x59\xd3\x9b\x76\xb8\x08\xe3\x07\x92\xf4\x8b\xee\xd6\xd6\x56\x8b\x3d\xdb\xda\xba\x2c\xec\xb6\xe0\xcc\xe9\x02\xf4\x29\x55\x6c\x4b\x94\xb0\x69\x14\xc7\x51\x26\x42\x99\x8c\xb2\x5a\xaa\xb9\xcb\xf2\x5b\xc9\x04\x46\x93\xd5\x68\x6f\x9d\xab\xe4\x98\x62\xc8\x46\x78\xc5\x8a\xa5\xf6\xbd\xc0\x16\x6d\xf8\x2e\xcb\xe4\x41\xc2\x31\xd5\xaa\x57\x29\xca\x9d\xc2\x72\x3c\x2e\x4f\xd2\x6f\xe4\x5f\x78\x63\xfb\xd9\xb3\x16\xdb\xc2\xff\x75\x9e\x35\xf5\x04\x95\x18\x19\x64\x50\xe8\xa0\xb9\xa1\x30\x96\xd8\x09\xb7\x57\xaa\x54\x7b\xc6\x63\x91\xe7\xe2\x77\x20\x93\xc1\xb1\xce\x9b\x84\x12\x51\xcd\xe2\xeb\x6b\x15\xb5\x5c\xbb\x72\x6e\xf6\xd5\x22\xa1\x45\xda\x86\x01\xdb\x34\xd1\x65\x87\xe3\x52\x39\xbb\x68\x14\xe6\x17\x09\x33\xc8\x5d\x46\x94\xac\x60\x09\x99\x36\x94\xd1\xf2\xe3\x8a\xac\x6b\x3b\x27\x30\x80\xc7\xfc\xa3\xb9\x99\xf6\x55\xc3\x82\xa8\x3c\x35\x03\x8b\xc1\x7e\x8b\x27\x0b\x16\x66\x19\xc1\x43\x63\x2a\x8a\x56\x6c\xfb\x41\x21\xc7\xd8\xbf\x9d\xfe\xf4\xa6\xc5\xfe\xed\xf4\xf4\xa7\x9f\xde\xbc\x69\x31\xc5\xe7\x76\x3a\x9d\x26\x3c\x71\x7a\x84\xbc\x83\x0a\x28\x00\x44\x13\x6e\xe7\x8c\xe5\x39\x19\x99\x66\x92\xcd\x78\x9a\x6b\xcc\xc9\x72\x19\x5e\xb3\xbf\x74\xbb\x0a\x56\x27\xbf\xcb\x49\x69\x57\x33\xb0\xff\x92\x73\x18\xd5\x3c\x13\xcc\xca\x05\xd1\x73\x49\x0d\x72\x61\xa3\xd5\x69\x14\xc0\x43\xc4\x6e\x1b\x45\x7a\x0c\xbc\xa1\xa0\xbc\x5a\x23\x3d\xfa\xc8\x98\x30\xc3\x5d\xfc\x3a\x9a\xcd\x20\x34\x31\xcb\xa6\x3c\x8e\x19\x3a\xb9\x80\xfd\x7b\x32\x8a\x42\x77\x90\x86\xaa\x9a\x63\xab\x12\xa3\xbc\xdd\x31\x5b\xa8\x23\x00\xb3\x0c\xae\xbf\x29\xac\xf8\xbe\xea\x00\xd8\x9d\xe7\x72\xca\xf3\x28\x04\x53\x3b\xcc\x2f\x2e\x41\x01\x6a\xb2\x48\x6a\x64\xd2\xf9\xb5\x9d\x3e\xcd\x33\xd1\xa6\xa9\x6b\xe3\x71\xd1\x86\x74\xe2\x0f\xe9\xdc\xb2\x43\x20\xb7\x26\x7d\x7a\xa5\xe8\x74\xc2\x4c\xf8\x94\x15\xd7\x99\xac\x58\x5d\x02\xcc\x18\xda\x10\xdf\xe7\xe1\x7d\x5b\x72\x72\xc2\x91\xa9\xf5\xf8\x76\xd2\x30\xa0\x90\x6a\x30\x4a\x26\xee\x2a\xe6\x69\xdc\x9e\xc5\xf3\xac\x3d\x8d\x92\x79\xd6\xfe\x45\xa4\xb2\xfd\x8b\x94\xd3\x87\x30\xbd\x15\xdd\x32\x3c\x2f\x18\x6c\x9f\xc4\xf3\x6c\x13\x72\xac\x6d\xfe\x55\xa4\xd2\xcf\x7a\xe6\xed\x9b\xc3\xb1\x5e\x00\x27\x20\xe1\xd2\xea\x54\x12\x3e\x03\xfb\x9b\xb1\x9f\xbf\x58\xbe\x26\xb0\x1d\x80\xba\x4e\x02\xe5\xc2\x6c\x84\xf7\x5c\x97\xe5\x4c\x3f\x08\xcb\xf7\xd4\xcc\x47\x22\x83\xd8\xfd\x30\x1d\x3a\xc5\x7e\x2e\xc1\xe4\x49\x7d\x80\xda\xde\x24\x40\x5d\x18\xfa\xe3\x3d\x3d\x24\xaf\x0a\xc2\xb2\xb0\x11\x44\x61\x3c\x3a\xfb\xf6\xf7\x1c\xd0\x39\xe6\x7d\x2c\x0d\xe8\x7c\xed\x01\x9d\xeb\x01\x9d\x97\x07\x64\x61\x17\x07\x24\x78\x96\xb7\x79\x16\xf1\xa4\xcd\xa7\xc3\x68\x32\x97\xf3\xac\xcd\xb3\x76\x7e\x2b\x15\xf7\x30\x9f\xde\xe3\x42\xba\xbe\x78\xfc\x80\x67\x39\xdb\x55\xad\xb2\x5d\xdd\xaa\xeb\x5c\x87\x69\x4f\x6f\x15\x42\xaa\x2e\x30\xc8\x84\xec\xf6\x1a\x62\xb3\xb7\x41\x7a\xdc\x26\xa4\xfd\x5e\xfd\x84\x8c\x2f\xb9\xd4\xf1\xdf\xa1\x0d\x9b\xfb\xcf\xf4\x51\x67\xaa\xca\xa5\xce\x08\x93\x5f\x89\x69\xed\x51\xf5\x59\x0c\x06\x41\x1c\xb3\x54\x64\x33\xbc\x45\xc1\x00\xdb\xc3\x45\x2e\xd8\x8d\x48\x33\xed\x48\x95\x83\xe3\x47\xb9\x3d\xbb\xef\x52\x31\xe1\xe9\x28\x16\x59\x66\xcd\x65\x30\x91\x78\x79\x86\x86\x32\xbe\x87\x34\xb8\x82\xbd\xca\xd3\x28\xcb\x79\x2e\xbc\xd9\xf1\xf2\xe1\x28\xba\xad\x9a\x61\xb7\x98\xdf\x12\x32\x50\xfa\x72\x2c\x34\xd0\x8a\x47\x9b\x43\x54\x3c\x59\xad\x8d\x96\x68\x75\x18\x7b\xab\xa7\xd3\xd8\x76\x83\x8f\x8b\x0b\xb6\xc3\xd8\xc7\x79\x0c\x36\x5f\xdc\xa8\xfe\xaa\x07\xad\x70\x18\x5b\x7b\xd8\xf0\x2b\x28\x6f\xcd\xd0\x71\x48\xc4\x70\x36\x5e\xb6\xbb\xcf\x98\x3a\x1e\x58\xf7\xb9\xcf\x9e\x35\xed\xb0\xc1\x9e\x33\x59\x54\xcc\x10\x2b\xcf\x88\xd4\x42\x8a\x8a\x81\x3e\xfc\x46\xb6\xd6\xf8\x5c\x64\xc5\x8b\x50\xe5\x82\x11\xfe\x47\x6a\x7d\x4a\x7d\x34\x5c\x05\x88\xf7\xef\x23\xfb\x59\x7e\x3c\xf7\xd5\x35\x88\xeb\xa8\xd8\x9a\xd3\x37\x22\x7e\xc3\x7e\x01\x21\xbc\x4d\x23\x45\xff\x96\x30\x3a\xa5\xde\x42\x95\xef\xc6\x84\x99\x7c\xe7\xd0\x9d\x5c\x62\x8f\xd8\x28\x4a\x05\x26\x94\xa1\x7c\xf7\x68\x44\xbb\xa4\x83\x23\x11\x76\xb7\x1f\x2c\x20\xa8\xa2\x77\xa7\xce\x22\xab\xde\x0d\x06\x41\xe6\x2a\x0d\x9c\x4c\xb3\xde\x9d\x58\x91\x85\xb9\x62\x8f\x15\x43\x6c\x50\x7b\xff\x60\xcf\xa4\xf5\x82\x7c\x02\xdd\x6d\x6f\x10\x37\x51\x2a\x13\x75\x31\x7e\xf0\x18\x7e\x0d\xce\x0e\x4e\x3f\x04\x3d\x16\x80\x16\xb0\xbd\xfd\xec\x39\x5e\x47\x29\xa2\x45\xf9\x2a\xaf\x39\x4a\xa7\x75\x76\x43\xb1\x98\xb2\x96\x2f\x48\xb3\x7d\x55\x04\xa7\x3d\xe6\xd3\x28\xbe\x07\xeb\x52\x34\xda\x09\x06\x1b\xfb\xe2\x6f\xfc\x7c\xce\xfa\x3c\xc9\xd8\x07\x99\xc8\xc1\x46\x8b\x0d\x36\x0e\x14\xcd\x97\x89\x79\xf3\x36\x15\x42\x3d\xab\x6f\x1f\x44\x12\x53\xb1\x33\xc2\x67\x57\xa0\x14\x4c\x65\x22\x51\x8e\x5a\x12\xfa\x92\xac\x99\x88\x30\x74\xbe\x94\x87\x06\xc8\x4e\x71\xa0\x0f\x17\x8d\x77\x9f\xb5\x20\x14\x5c\xd5\x8c\xdb\x6c\xc4\x51\xc2\x66\xd1\x9d\x88\xb3\x52\xc3\x53\x89\x5c\xe3\x03\xc5\x14\x3c\xc9\x23\xf4\x3f\x1c\x55\xcb\xc0\xfd\x56\xcc\x05\xdb\xeb\x47\x2a\xbe\x93\xc2\x67\xfb\xe9\x56\x8b\xe9\xff\x54\xeb\x7c\x6c\x6b\x0f\xd6\xf9\x5c\xc9\xa9\x68\x5f\x8b\x45\xd6\x46\x53\xe2\xef\x2e\x4f\x57\x0d\x6c\x0a\xa3\x11\xb5\x59\x7a\x2d\x12\x69\x23\x66\x94\xcf\x62\x5a\x65\x53\xcd\xde\x82\x55\x7d\xe3\xa4\x70\x7e\xa6\x93\x98\x66\x28\x3c\x21\x16\x4a\xd1\x6a\x53\x17\xb9\xd8\xf3\x33\xf2\x20\xe6\x2e\xb8\x42\x33\xd8\x07\x77\x66\xae\xc5\x42\xe7\x88\x7c\xb0\x89\x53\x81\x82\xec\x82\x2b\x9b\x1c\x17\xa2\xb0\x4b\xcf\xc9\x04\x42\xfd\x3b\x59\x99\xb5\x83\xac\x4e\x38\xe0\xec\xdd\xd4\xcf\x80\xba\x3c\x7b\x80\x9f\x39\x60\x24\xc2\x48\xb1\x44\x2e\xc0\x2b\x71\xc7\xf5\x7b\x14\x47\x80\x19\x23\x41\xb2\x8e\x2e\x04\x4f\x7b\xbb\x94\x84\x41\x96\x27\xd3\xfa\x3c\x93\xfb\xda\x3a\x92\xb4\x48\x00\x46\xf6\x09\x1e\xf4\xb7\xd0\xe8\x58\xf1\x67\x06\x96\xb8\x9b\xc5\x3c\x41\x97\x6e\x12\xf1\x8c\x15\x57\x07\x9e\x2b\x82\x15\xd4\x7d\x47\x9f\x4f\x93\x51\xd1\x80\xc9\x3e\xf7\x41\x7e\xcf\x9c\x25\xf6\x94\x52\xbf\xfa\xca\x28\xed\xa9\x1f\xe7\xed\xf7\x83\x8d\x1e\x1b\x6c\x14\x2c\xeb\x07\x1b\xad\xca\x1a\x78\x33\x3e\xc2\x3a\x27\xbb\xfd\x7e\x5d\xc1\x77\x58\x64\x30\x08\xde\x1d\x1c\x1d\x1d\x0f\x06\x83\x41\x32\x18\x04\xea\x8d\x2d\xfd\xcd\xe2\xe6\x94\xdf\xb5\x71\x6a\xdb\x1a\x51\xd6\xc7\x51\x63\x50\xc9\xba\x5b\x5b\x20\xb8\x76\x69\xee\x07\x7e\xc7\x28\x96\x0c\xa4\x10\xdb\xdf\xeb\xb7\xd8\x71\x7f\xaf\xc5\x4e\x3e\xc0\x9a\xed\x9e\xf4\x2d\xee\x0e\xc5\x18\x32\x58\x62\x6c\x21\x36\x9f\xf9\x9b\xcc\x5e\x67\x10\x11\x9d\x11\x88\x51\xc4\x91\xf0\xf0\x54\xb4\xc7\xea\xe9\xbb\xd3\x9e\x50\x26\x37\x22\xcd\x1d\x97\x34\xc2\xc0\x28\x65\x6f\x15\x4e\x5b\x7f\xfa\x0e\xb3\x52\x8d\x58\xe4\x05\x2d\x1e\x99\xd7\xf8\x1e\x49\x99\x37\x9c\x9c\x93\x6a\x92\x6c\xa3\xbe\x8f\x88\xa6\x68\x08\x66\xcc\xbe\x90\xb4\x71\x13\x4b\x8d\x42\xb6\xa1\x06\xc4\xed\x98\x9c\x67\xa2\x8d\x96\x7b\x61\x1c\x85\xd7\xf7\x15\x38\x2c\xe7\x46\xd1\x18\x5c\x26\x64\x06\x88\xe2\xc0\xe1\x3c\xcf\x65\xc2\xa0\xb9\x7a\xdd\x06\x26\xb0\x33\x36\x27\x8a\x0e\xdc\xa0\x6e\x64\x24\x66\x22\x19\x41\x32\xbc\x31\xd9\x67\xe0\x30\xa0\xeb\x6d\x04\xff\xff\xb3\xf7\xf7\xfd\x6d\xe4\x46\x82\x38\xfe\x56\x60\xdf\x9e\x49\x8e\x49\x4a\x9e\xbd\xbd\x5f\xce\x1e\xcd\x9e\x2d\xdb\x89\x7f\xb1\xc7\xfe\x58\x9a\x87\x3d\xcb\xf1\x81\x6c\x90\xec\xa8\xd9\x60\x00\x90\x14\x13\xfb\x5e\xfb\xf7\x83\xaa\xc2\x53\x37\x9a\xa4\x34\x4e\xb2\xd9\xdd\xf9\x23\xb1\xd8\x40\x01\x28\x14\x0a\x85\x7a\xbc\xba\x1f\xf1\x72\x7a\xb3\x76\x0d\x85\x49\x00\xd0\xdd\xca\xde\x22\xb4\x8f\xe0\xf3\xf8\x80\xa6\x6e\x7f\x13\x05\x5b\x96\x10\x2b\xa2\x50\x98\x6e\x21\x32\x9e\xc1\x9d\x70\xd8\xf2\x7c\x3d\x1d\xb2\x47\x43\xf6\xed\x90\xfd\xf3\x90\xfd\x8f\x21\xfb\x97\x21\xfb\x9f\xce\x7d\xee\x0d\x60\x13\x86\x24\x9c\xc2\x01\xac\xdb\xef\xd6\x7d\x56\xf7\xd0\x6c\xc8\xb6\xa4\x3a\x70\xef\xe2\x65\x59\x58\x44\x24\xdb\x86\xbe\x17\xf5\xe8\x97\x47\x8f\x02\x86\x83\x43\x5a\x1f\xef\x23\x4b\x73\xde\xbb\x12\x0c\xe0\x35\xfb\xe5\xd1\xa3\xf6\x10\x31\x61\x04\xed\x38\x0e\xd5\x77\x05\xef\x04\xb3\x9c\x7d\xe3\xed\x88\x4b\x17\x0d\x43\xb9\x05\x01\x05\x9b\x92\xc7\x93\x8e\xee\xc1\x30\xfb\x41\x27\x2a\x4e\xd9\xd9\x19\xee\x78\x7f\xa5\xca\x25\x57\xbb\x01\xf5\x49\xba\x3c\x82\xfa\xae\x38\x42\x9f\xaf\x6f\xca\xaa\xec\x6a\xfa\xad\x6d\x4a\xa1\x4a\x68\x52\xeb\x6a\xf9\x2b\xc9\xbe\x75\x7a\xff\xd6\xb4\xbf\x95\xaa\x18\x41\x1a\xfd\x11\xa4\x0c\x1b\xd9\xde\x77\x21\x7f\x9c\xd2\x87\x3f\xd8\x0b\x4e\xdb\xff\x81\x6c\xaa\x1f\xfb\x83\xbf\x7c\xf9\xee\x7b\xb8\xff\xec\xdf\x7f\xb8\xf7\xbf\xff\xdb\x3f\xfd\xf7\x07\xdf\x0c\x9f\x3c\xfe\xbf\x1f\xdb\x92\xf8\x7b\x31\x5f\x57\x5c\x31\x71\x03\x9e\x98\x64\x76\x58\xf0\x8a\x2a\xc9\x92\xc0\x81\x99\x26\xed\x7e\x43\xa2\xbb\x81\xab\x88\x49\x5a\xf7\x3d\x08\x53\x4b\x30\x70\x18\xb2\xda\xf0\xc8\x81\x00\x63\xb3\x8c\x64\x4a\x80\x49\x8e\x84\x9e\x69\xa4\x5d\x1b\xa7\xba\x3a\xaa\x7b\x78\x75\xff\xff\xf9\xd4\x25\xe3\xab\xfb\x71\xd5\x47\xae\xd9\x8a\x9b\x85\x66\x33\x70\x7b\x83\x00\x2e\x98\xb2\xd3\xe7\xc8\x44\x61\xd3\xda\x8c\x5b\xaa\xa6\x7e\xc5\x6e\xfc\xbf\xf1\xaf\xdc\x0f\x3a\x2d\xa2\x2e\xfe\x76\xdb\xb1\x07\x73\x78\xce\xff\x8a\xa8\xfb\xf8\xcd\xb1\xe8\xa2\x3a\xde\x14\x92\x1a\xe9\x6a\x49\x1b\x85\x53\xfd\xdb\x10\x6d\xfc\xef\x1f\xa9\x68\x97\xb8\x59\x39\xe7\x99\x60\xb8\xd2\x6b\x05\xaf\x4f\x17\xab\xee\x33\x4a\x42\x32\xd8\x08\xf3\x2b\x3e\xff\xeb\xbe\x32\x29\x88\xfb\x04\x4a\xb6\xdf\xee\xa5\x19\xee\xb8\x16\x8c\xa3\x5e\x9b\x49\xb7\x88\x2d\xb7\x9e\x9e\x38\x5c\xd2\xbc\xfd\xea\x5c\x71\xad\x47\xbc\x32\x23\x7c\x80\xfd\x8a\x97\x67\x53\xdd\x1e\x8b\x92\x41\x2f\x6b\xc7\x83\xe0\x88\x47\xe3\xf1\xff\xf2\x11\xd0\x2e\xa9\xd5\xbe\x3b\x8c\x7c\xf8\x77\xa8\x1f\x55\xeb\x1a\x12\x72\xa1\xb7\x70\x59\x33\xee\xa5\x66\xc3\x27\x21\xca\x62\x27\xd7\xac\x20\x97\x77\x0f\x0f\xdc\x88\x50\x9a\x00\x95\xe1\xd5\x7d\xbd\x2d\xa1\x26\xb8\xb4\xbd\xaf\xee\x87\xd4\x5b\x7c\x3a\x15\x95\x50\xdc\x40\x00\x30\xba\x31\xd7\xd2\xf8\xf1\x23\x1f\x03\xc6\x6d\x67\x56\xa2\x1a\x72\x22\x8c\x41\x13\xac\xdb\x55\x2d\xe2\x27\x01\xaa\x53\x61\x9a\x94\x1d\x26\x76\x9b\xa1\xd2\xca\x6c\x53\x2e\xad\x08\x26\x96\x7c\xda\x7d\x66\x3c\x55\x7a\xbc\xba\x1c\xf0\x14\xf4\xe0\x4a\xe8\x39\x3c\xb3\xe8\xf1\xe1\xfb\xa4\x8a\x0f\xfb\xc0\xa6\xb4\x5f\x3e\x15\x03\x74\xc3\xdd\xe6\x99\xf0\x25\x1f\x14\x40\xb2\x5b\xf4\x2e\x07\x75\x0c\x48\x5a\x90\x39\xb2\x41\x7e\x60\x99\xfc\x5b\xd2\x1f\xbc\x81\xff\x8b\x00\xbf\x3e\x01\x06\xc4\xde\x82\x02\x43\xa7\xbf\x07\x09\x12\x0d\xc2\x83\xfa\x6f\x49\x83\x6f\xec\x80\xff\x45\x83\x5f\x9f\x06\x03\x62\x6f\x41\x83\xa1\xd3\xdf\x8f\x0d\x02\x09\x6e\xfe\x0a\x8a\x1c\x00\xfc\x13\x9b\x0b\xa3\x81\xf6\x50\xc2\x82\xb5\x84\x29\x90\xf7\xf2\x48\xb8\x40\xe7\x3b\xe8\xf7\x7a\x6b\x33\x1b\xfd\xa6\x37\x64\x1f\xfc\xbf\x7a\x8a\x6f\xa3\x10\x5a\xb4\xd5\xf9\xda\x39\x6e\x30\x50\x02\x14\xdc\x70\xe6\x9d\xa8\x7d\xfc\x10\x66\x01\xea\xf6\x0f\x2c\x0b\xf4\x53\xc3\xfa\xef\x57\x57\x38\xf4\xd5\x55\x0f\x5f\x3f\x57\x76\x06\xa9\xcb\x3b\x4a\x41\x23\x59\x83\x88\x68\x94\xbc\xbe\x85\x4c\x1e\x42\xb0\xf7\xba\x38\x69\xca\xf7\x12\xa7\x78\x01\xe3\x7a\xbd\x63\x7e\xd4\xec\x9c\xe4\xda\xac\xd6\xb7\x78\x5f\x45\x13\xda\x2b\xb2\x76\xcd\x28\x64\xfb\x81\x81\x5b\x73\x9a\x70\x35\x22\xb7\xd8\xaf\x85\xa5\xcb\x05\x38\x8e\x80\x67\x5f\x24\x23\x2f\x53\x95\x2d\xa1\x64\xbb\x10\xa2\x1a\x2d\xf9\x0e\xf4\x9d\x23\xae\x94\xdc\x8e\x6e\xa7\xbe\x3d\x80\x22\xe0\x67\x68\x0c\xa6\xa0\x51\xa1\x48\x3f\xa4\xa7\x4a\x88\x9a\x72\xdd\xa0\x6f\xe8\xf3\x17\xe7\xe7\xbf\x7f\xc3\xfa\x4f\x57\x58\x3c\xd3\x3e\x4c\xce\xd1\xba\xec\xc9\x12\x2b\x2d\x3a\x75\x8b\x18\x92\x3e\x0a\x96\xe2\x36\x02\x02\x3a\x49\x49\x22\x96\xeb\x0a\x22\xf7\xec\xe2\xa8\xf0\x6d\x17\x9f\x73\xd9\x62\x98\x11\xcb\x95\x54\x5c\x95\x15\x64\x7c\xe0\x13\xe2\x71\x0b\x59\x85\x17\x12\xbc\x01\x20\x9d\xd5\xbe\x6b\x25\xd2\x04\x60\x8a\xd8\xf5\x0a\x6f\x18\xc4\x8a\x7d\x43\x28\xcd\xfa\x95\xd0\x7a\x60\x59\xb1\x22\x2d\xf0\x92\xe3\x7b\x24\x8e\xea\x23\x8b\xa0\x28\x4a\x03\x6e\x25\x9b\xf2\xa4\xe6\xb5\x84\x7e\x08\x0e\x91\x7a\x62\x96\xeb\x9b\xce\xed\x96\x1b\x31\x5a\xae\x2b\x53\xae\xaa\xf2\x36\x57\x72\xb4\xd5\x8f\xda\xc6\xdd\x00\xd1\x9b\x96\xc1\xb4\xcb\x0a\x51\x19\x6e\xef\x1a\xdc\x22\xda\x1b\x48\x35\xe9\xef\x8d\xf0\xd6\xc2\x0d\x84\xa6\x63\x2b\x40\x83\xdf\x97\xdc\xb2\x99\xab\x62\x0c\x8f\xae\xf6\x63\x0b\x08\xf8\x6f\xc2\x60\x5b\x7c\xd5\xdd\x62\x0d\xae\xef\x0e\xff\xaf\x9b\x55\xa9\xe5\xe8\xdb\xd3\x6f\xbf\xf5\xf1\xda\xe1\x87\x30\x65\xfc\xc7\xa8\x92\xd3\x6b\x51\xf8\x19\xc7\x26\x77\xcf\x89\xfc\xf4\xfb\xcf\xdf\x9e\x5f\x74\xeb\x58\x5f\x5d\xbc\x85\x61\xc8\xe1\x2d\xf2\xc3\xc3\x1c\x9e\x8a\xd7\xba\xa2\x18\xd5\x3e\xa4\x45\x9e\x2b\xbe\x5a\x94\x53\xc8\xf1\xa9\x53\xc0\x3f\x5e\xbe\x1c\xfd\xc6\x1d\x24\xcd\xf4\x7a\xb5\x92\xca\x05\x62\x4b\xbd\xcf\xf5\x5e\x30\x5c\x15\xba\x66\xd4\x2e\x35\x41\xb2\x13\x94\x07\x38\xf8\x69\x33\x0e\x02\x94\x29\x97\x11\x69\x81\xce\xd9\xa3\x01\x6d\x2c\x51\xbe\xe9\x3d\xce\xe4\x2e\xd6\xcb\x94\xd3\x6b\x54\xe4\xe1\x82\xd6\x35\xb8\xdb\x59\x11\x10\xbd\x98\xac\x80\x72\x6d\x85\x47\x51\x17\x02\xac\xa5\xd0\x3a\xc8\x85\x62\xce\xa7\x3b\xc6\x03\x7b\x4b\x48\x18\x4c\x8c\x65\xad\x85\x32\x77\xf7\x25\xcd\x3a\x45\x59\x4e\xf5\x90\xbd\x02\xd0\x39\x97\x52\xd3\xf6\x27\x4d\xbc\xbd\xd5\x68\xaa\xef\x18\x90\x01\x31\x88\xed\x10\x71\x08\xf3\x85\x74\x5d\x7a\x21\x30\x46\xd9\x59\xc7\x9b\x4e\x5b\x85\x9c\xae\x97\x22\x51\x42\xb9\x29\x8d\x2c\x3f\xfc\x15\xf3\x02\xa6\x55\x95\xb5\x18\x35\x3c\x44\xd6\xda\x5e\xe1\xe7\x17\x17\xc8\x71\xc1\xcd\xdf\xec\x7c\x26\x47\x9f\x63\x0d\xa6\xb4\x3f\x2f\x94\xaf\xea\xc0\xce\x00\xb8\x4b\x59\x85\x11\xe5\xfd\x7c\xce\x2d\xdf\x69\xb0\x2f\xc3\x91\xac\xb5\x51\xeb\xa9\x91\xaa\x3b\x71\xd6\x11\x09\xdc\xd6\x13\xbd\x9e\xfc\x07\x49\xda\xe6\xd2\x38\xfd\x68\xf7\xd5\xec\x48\x61\xba\x26\xc1\x9c\x17\x05\x5b\xad\x27\x55\xa9\x17\x27\x7a\x3d\xd1\x53\x55\x4e\xc4\xc9\xba\xf6\xff\xf6\xb9\xd1\x38\xf4\xa6\x72\x1e\xbc\x66\xe2\x06\x92\x72\xcc\x9d\x47\x58\x9a\xea\x69\x3d\xb9\x58\x4f\xba\xaa\xf2\xca\x09\xa0\x46\xe9\x4f\x2e\x31\x58\x9a\xad\xf4\x69\x98\xd4\x90\xf9\x99\xa0\x44\x14\x4f\x6d\x29\xcc\x42\x16\xf0\xbe\xeb\x98\x10\xa5\x49\x27\x57\xa1\x50\x90\xdf\x59\xa1\x28\xf8\x08\xd2\xac\xcb\xf5\x74\x21\x0a\x7a\xc8\x0a\x05\x7b\x53\x4b\x56\x0b\xc0\x14\x40\xda\x4a\xa5\x76\x94\xef\xd9\xe2\x91\x3c\xa5\xd0\xc8\xd5\x28\xf7\x9f\xd4\x50\x41\x0a\xff\x62\xc7\x03\xe2\x71\x31\xa2\xb8\x01\x40\x15\x2e\x76\x83\x19\x99\xc3\xe5\x98\x17\xc5\x33\xd7\x24\xae\x81\x32\xf9\x63\x54\x11\x0c\x29\x97\xaa\xfa\xc5\xdd\x29\xdd\xa1\xaf\xe2\xbd\x8c\x6a\x0e\x23\xfc\x70\xc0\x5c\x6a\x38\x39\xf9\xe3\x87\xe5\xc7\x70\x90\x1a\xed\x3e\x2c\x3f\x62\x3a\x38\x1c\x74\x10\x67\x48\x0c\x7b\x79\xe1\x77\x0b\x63\xba\x30\x9b\x80\x7d\xbd\xce\x9c\x53\xaa\x26\x8c\x72\xbb\xd7\xe9\xd6\x35\xeb\x38\x52\x03\xc0\xa1\xfb\xb7\x7d\xf0\x47\x83\x8c\x93\x8e\x1e\x4f\xb8\x03\x83\x2f\x6c\xca\x29\xa7\x24\x38\x99\xd1\x67\xe4\xb6\x1b\x79\x2d\xc8\x44\x1c\xa7\x3c\xc8\xed\x46\x54\x99\xc6\x8f\x1d\xed\x0a\xcd\x6d\xe8\x47\x8b\x0b\xd4\xb8\xaf\x78\x86\x93\xf3\x90\x54\x8c\x09\x3f\x7f\xa0\x1e\x76\x33\x3e\x7c\x8c\xeb\xc6\x64\xda\x8c\x57\x6b\xbd\xe8\xfb\x81\x5b\xa7\xeb\xc7\xf8\x70\x63\x8a\x89\xbb\xe2\x7d\xdd\x00\x75\x34\xee\x9f\x86\x7f\xae\x94\xd8\x94\x72\xad\xab\x1d\x53\x62\x5e\x6a\x03\x89\xe5\x36\x25\xa7\xba\x41\x2c\xec\x6e\x7f\x70\x60\x2f\xe2\xf9\x1c\xb1\x1b\xf6\x20\x40\xf6\xc8\xb3\x4e\x64\xfa\xca\x3e\xf7\x6c\xc3\xa4\xea\x54\xef\x55\x8d\xc5\x8f\xa8\x2d\xd6\x99\xa2\x3f\xa2\x82\x41\x25\x3b\x83\x51\x7c\x55\x9e\x78\x6b\x10\x78\xc9\xbe\x63\xa7\x29\xf0\x1f\xa4\x09\x0b\x2f\x72\xb0\x01\xa6\xb6\x82\x93\xe8\x97\xd9\x0a\x4e\xef\x90\x87\x46\xee\xdf\x9d\x07\xcd\x1f\x53\xfb\x8a\x72\xc6\x30\xb4\xe4\xf3\x8a\xcd\x40\xec\x08\xd8\xb3\xfc\x12\x8f\x4b\xc1\xb8\xde\xd5\xd3\x85\x92\x35\xec\xe1\x38\x24\xed\x44\xee\x8c\x6f\x4e\x4a\xb2\x4a\x1e\x55\xbc\xde\xc9\x5a\xd0\x93\x75\x0d\xa6\x3d\xc7\x16\x6e\x4d\x82\x2b\xb7\x46\xbb\xb2\x71\x96\xe9\x0a\xf6\xb4\x66\x5c\x4d\x4a\xa3\xb8\xda\x79\x9e\xaf\xb5\x9c\x96\x1c\x8b\xd3\x82\x29\x1a\xf8\x7d\x94\xbe\xe6\x00\x31\xcb\x95\xf9\x54\x71\x6d\xce\x3d\x51\xd7\x11\xc6\x22\xc6\x32\x85\x22\x21\x33\x23\x94\x27\x69\xfb\x8b\x8e\x50\x0e\x81\x3c\x13\x81\xaa\xce\x80\x88\x6e\x4a\x77\xcb\xce\x51\xb9\x18\xb6\xe6\x46\x04\xef\x67\x05\xa3\xec\x5e\x97\xda\xf4\x4b\xcf\xef\xad\x54\x04\x6f\xba\x52\x33\xfb\x52\xb0\xa4\x42\x3b\x06\x9b\xed\x8b\xdf\x11\xd0\x21\x15\x5a\xc1\x92\x08\x18\x8b\x24\x3d\xa8\xa9\xac\xa7\x42\xd5\x4c\xae\x95\x16\xd5\x46\x50\x4a\x1a\x71\x33\x15\x2b\xcf\x57\x59\xa0\x7f\x20\xe7\x50\x9f\xd9\x57\x80\xd5\xc2\x5c\xe2\x64\xfa\x61\xd6\xe0\x5a\x54\xb2\x87\x71\xf1\x55\x0b\xe0\x43\xf9\xb1\x9f\x96\x99\xbf\xcd\x19\x87\x23\x1e\x61\x03\x32\x3b\x82\xab\x05\x0c\x59\xd6\x58\x5e\xa6\x34\xf4\xac\xd2\x54\x0b\x77\x2b\x7a\x8a\x6e\xb6\x1d\xd5\x92\xa1\xf9\x00\xbf\xb6\x62\xe9\x94\x1b\x04\xdf\x2c\x7d\xde\xb1\x53\x99\x09\xd1\x89\x07\xee\xde\xea\xe5\x2a\x6f\x61\x5e\xbe\xa4\x87\x9d\x43\xb3\xfd\xc7\x4c\x8d\x55\x3f\x20\x7e\xea\xc6\xfb\xa9\xe3\x34\x07\xc4\x68\x54\xbd\xfc\x07\x11\xa3\xbb\x72\x1f\x6f\x7d\xed\x53\x4a\xee\x8b\x07\xf6\xbd\xdc\x9e\x43\x7d\x7c\xfa\xfb\xa2\xfc\xb3\x08\x7f\x5d\x8a\x1b\xf3\xd4\x7b\xac\x37\xf2\x26\xff\x6f\x3b\x09\xbb\x98\x4d\x29\xb6\xc8\x4a\x51\x66\xf7\x55\x28\x75\x28\xff\x1d\x5b\xff\x2d\xfb\x00\xbf\x62\x8b\x21\x71\x13\x71\xf7\x57\x86\x2d\x79\x59\x1b\x5e\x92\xa6\xc0\xd5\x25\xa4\x48\x15\x5f\xf6\xd6\x72\xfe\x05\xd7\x6c\xc2\x75\x39\xf5\xf2\xb5\xf3\xbc\xc7\xd2\x4d\xf8\x66\x86\x0c\xff\x1b\xa1\x20\x40\x87\x02\xd9\x0b\x50\x3e\x80\xca\x6e\x29\x37\xf6\xdf\x4a\x6e\x75\xd0\xae\x13\x41\xa4\xb9\x9d\x71\x6d\x76\xd0\x5a\x42\x0e\xe7\x4a\x14\x73\x9f\x8c\x27\x9b\x03\x3c\x14\x36\x0f\x81\xe5\x30\x92\xac\xa3\x71\x2c\x51\x14\x02\x11\x04\xd6\x92\x6a\xe7\xb4\x6b\x69\x37\xaa\xea\x4b\x11\xf0\x96\xbb\x41\x99\x28\xbb\x4c\x1d\x72\x08\xd0\xe4\xc1\x20\xc3\x5d\xab\x2d\xaf\x31\x61\x91\xa8\xf5\xda\xde\x6c\x00\x0b\x9e\xa1\xbc\x36\x7b\xa7\x37\x64\xa5\xe9\x69\x72\xd8\x55\x42\xaf\x64\xad\xcb\x49\x49\xaf\x2c\x44\xa1\x03\xa8\xa0\xde\x8e\xc2\xd4\x07\xf6\x0f\x9c\x5d\x7c\x5d\x5e\x86\x75\x43\x14\x28\xb2\x2b\x59\x1b\xc5\x81\x77\x69\x26\xea\x99\x54\x53\x41\x15\xbe\xaa\x50\x47\xca\x95\xf6\x5a\x29\x3e\x35\xe5\x54\x8c\xc7\x78\xf5\x8d\x00\xa8\xa3\x58\xa2\x33\xda\x2e\x59\xd9\x77\xd7\x56\xd2\xe7\x0b\xc2\x38\xac\x7b\x0a\x8e\x24\x6f\x6b\xe1\xf4\x9e\x00\x8d\x1c\x13\xdd\x24\x81\x7e\x42\x13\xaf\x08\x6f\x53\x89\x9b\xc6\xb2\x72\xc3\xe0\x1c\x60\x43\xa7\x5c\x41\x3a\x4c\x6e\x10\xc5\x56\x32\xf9\xdd\xe5\x9b\xd7\x2f\x30\xad\x08\x78\xb4\xd4\x7e\x0e\x15\x57\x73\x08\x19\xa9\x41\x89\x21\x67\x38\xfd\x21\x5b\xc8\xad\xd8\x08\x85\xf9\x47\x00\xd0\x82\xaf\x56\xa2\xa6\x47\x4b\xc8\xa2\x63\x99\x4b\x0d\xb0\xfc\xc2\x65\x55\xbd\x93\x74\x22\xe8\x12\xa4\x58\x05\xc6\xd9\x4c\x6c\x99\x5a\x57\x82\x32\x5b\x62\x81\xeb\x31\x63\x2f\xf8\x74\xe1\xb7\xd6\xd5\x59\x55\x12\x6a\xe5\x13\x91\x4e\x51\xe5\x62\x57\xc3\x0c\x9f\xb3\xde\xcd\x48\xc9\x6d\x0f\xcf\x1a\x50\x02\xf4\x83\x21\x3d\x99\x60\xe1\x4a\x9f\x1d\x03\x99\x9e\x54\x48\x5f\x85\x37\x85\x62\x7e\x0c\x3a\x63\x48\x50\xe4\xc8\x5e\xfb\x83\xde\x79\x02\x19\x55\x5d\x2b\x6b\x52\x41\x22\xda\x3d\x7d\x4d\x76\x0d\xa2\xc1\x4a\x73\xbe\x14\x1d\xe6\x45\xc2\x08\x43\xd4\x45\x38\xc9\xa2\x41\x4c\xf1\x94\xc0\xa5\x2e\x8f\x79\x27\x2a\x45\x45\x17\x5d\x6e\x42\xfb\x0c\xd6\x29\x6d\x66\x8f\x0c\x64\x9f\x06\x41\x94\x18\x11\x12\x93\x65\x6a\x6c\xc9\x6f\xca\xe5\x7a\xe9\x62\xac\xa1\xb4\xaa\x9d\xcd\x69\x5b\x56\x2d\x6b\x23\xe6\x42\xa1\x6c\x88\xed\xcf\xa1\x39\xd8\x03\x08\x4e\x60\x0a\xd8\xc2\xd5\x83\x2b\xb5\x13\x0f\x3d\xab\xb9\x10\x82\x8e\x3a\xd6\x89\xee\x0f\x52\xbe\xeb\x7f\xb5\x10\xca\x1a\x63\x46\x80\x8f\x5b\x69\xd8\x81\x83\xfc\x9d\x48\xcf\x9a\x02\x3e\xa5\x64\x4b\xc8\x3b\x12\x7c\xf1\x20\xd1\x48\x51\x80\xb2\x43\x5a\x52\x95\xdb\x34\x29\x9b\x03\x77\x6a\x25\x85\x5a\x1a\x4b\x65\x9b\xb2\x68\x8a\xaa\xb4\x7b\x8d\x32\xad\x11\x32\x06\xad\x02\x32\x56\x96\x9d\x0e\xc1\xd0\x33\x82\x53\xcd\xa7\x53\xa1\x3d\xb1\xc2\x5e\xd0\x5b\x39\xe2\x0e\xae\x12\x04\x88\x75\xb6\xcd\x53\x48\x3d\x13\xbd\x90\x4f\x4e\x1c\xe2\x93\x00\x79\x8f\xef\x18\x18\x96\x30\x0d\xb3\xfc\xc4\xce\x5a\xbb\xf8\xf9\x33\xfb\xcd\x69\x0a\xdb\x5f\xa4\xb2\x92\x6a\x08\xb1\xc9\x90\xa4\x57\xa8\xaa\xac\xa9\x8a\x62\x1a\x11\xac\xc3\x70\x26\x11\x03\x12\xad\x4d\x2a\x21\xf4\xd1\x92\x3f\x76\x8a\xdf\x41\x98\xc4\x39\x4d\x00\xf2\x67\xa0\x5f\x00\x5d\xea\x53\x29\x55\x01\x99\x24\xa3\x21\xf1\xdb\x3b\x77\xdf\xc7\x43\xa2\xc8\xd2\x77\x02\x5e\xb4\xc8\x5a\x16\x78\x0e\x39\x16\xa6\x74\x4c\x23\xdc\x99\x38\x62\xa9\xbd\x24\x01\x17\x6e\x73\xd8\xf7\x72\xfb\x83\x2c\x84\x45\x6d\xbd\xae\xaa\xc3\x83\xe8\x15\xaf\x9d\x34\x73\xeb\xd1\xba\x87\x92\xb3\x99\x16\x06\x2f\xc8\x88\x2c\xe0\xaa\x8f\xfb\x86\xfc\xb4\xb9\x21\x9b\xe3\xbd\x05\xa8\xed\x11\xdf\x8b\xb9\xb8\xa1\xaa\x8f\xe8\x69\x0a\x76\x10\xa9\x8a\xe0\x6d\x1a\xed\x90\xfd\xf0\x4c\x09\x7e\xfd\x86\x9b\xe9\xe2\xb5\x98\x99\x00\x31\xdb\xe4\x3d\x08\xd5\xfb\xdb\xbc\x41\xa7\x7f\xdf\x28\xd5\x13\xbc\xa7\x1a\x79\x81\x1f\x42\x2c\x2a\x06\xfc\x06\xf9\xb5\xa5\x58\xf5\x05\x9c\x43\x9b\x2f\xed\xf6\x99\xea\xe9\x44\xb3\xc8\x09\xfd\xa3\xd8\x89\x49\x1c\x43\x3e\x81\x35\xb6\x8f\x7d\x93\xd3\x44\x8f\xe2\xb9\x30\x30\x6e\x5b\xed\x4c\x13\x0d\xc4\x6e\xdb\xf5\x5b\x67\x7e\xd8\x60\x26\xf4\x1e\x6d\x6b\x56\x22\x8c\xa5\x8b\xf1\x8b\xc8\x4c\x3c\xc5\x99\xbf\x2b\x32\x72\xec\x6d\x57\xfd\x3b\x41\x34\xd0\xb1\xee\xec\xaa\x6e\xb7\xa8\x3d\x1b\x72\xd4\xba\xee\xba\xa1\x3f\xc3\xd1\xdc\xbf\xb2\x78\x0b\x5b\xab\x72\x66\xea\xee\xeb\x77\x25\x94\x2b\x64\xda\x71\x9d\x4f\x8f\xb8\xc4\x63\x28\xdd\x2b\xd2\xc2\x9c\x47\x37\xca\xbe\x52\xee\x8d\xcb\xc8\x95\x74\x77\x4f\xf5\x0c\x3b\xa7\x2e\xec\x7b\x6a\x1d\x2b\x93\xed\xc0\x49\xe3\x2c\x00\x25\xb7\x43\x5a\xed\x28\xa7\x51\x7c\x8f\xaf\x92\x90\xa5\x0f\x5e\x26\xe9\xfb\x2e\x2e\xbb\x59\xe6\xb8\x45\x24\x9f\x23\x95\x04\x50\xb7\xa2\x0e\x30\x0f\xbf\x97\xdb\x03\xd4\xe1\x9a\xe9\xfe\xa3\x41\x5c\xb1\xbf\xb1\xa6\xf4\xa9\x6a\xe4\x2a\x12\x80\x1b\xab\x82\xaa\x9b\x71\x72\xb2\x63\x28\xa7\x71\xc4\xfd\x13\xaf\x51\x0b\x1f\x4f\xe8\x77\x11\x8e\xbe\x47\x24\xe1\x5d\x21\x0a\xe8\x7e\x24\x66\x74\x17\x81\xe5\xf9\x02\x29\x93\x4f\x89\x04\xda\xdb\x4f\xf6\x72\x10\x0e\x19\xdd\xc6\x2d\x4c\xb5\xb1\x91\x6c\xb8\xed\x7a\xe9\x04\x08\x49\xe2\xed\x81\xf5\x50\x86\xfb\xc6\x5e\x2b\xb9\x8d\xcf\x4b\x6e\x1d\xa7\x43\x3b\x4e\xe7\x42\xf0\xba\x39\x7a\x1d\xd9\xbd\x01\x18\x97\x4e\x4c\xbd\xfd\x8a\x74\x63\x49\x3a\xbf\x26\xea\x30\xe6\xab\x55\xb5\xeb\xa7\x1f\x61\x91\x7a\xef\x69\xad\xf8\xd7\x3a\xac\x1e\xd2\xad\xce\xea\x4a\xae\x0e\x9f\x54\x6c\x74\xab\x73\xea\x5c\x0b\xff\x61\x8f\x2a\xad\xf9\x4e\x07\x35\x7b\xad\xb3\x11\xae\xe4\x56\x87\x38\x87\xc6\xbf\xc2\x39\x5e\xad\xf5\xe2\xd8\x43\x0c\x7a\xee\x63\x0f\xef\x71\xf3\xff\x8a\xe7\x97\x56\xd2\x75\x78\x61\xe3\x6d\x9b\x5b\x9d\xd7\xdc\xce\x84\xcc\x13\xf6\xc7\x03\x0b\xf4\xb4\x8c\xfa\x9d\x4b\xaf\xe9\xf1\xcb\x72\x6f\xb7\xf1\xd7\xdd\x58\x6c\xd4\xd8\x5a\x18\x1a\x19\xf0\x3e\x36\x4d\xcd\x6e\xc1\xaa\xff\x4a\x38\xd1\xe3\xbf\x16\xb5\x78\xf4\xe8\x3c\x7e\x1c\xd9\x78\xf7\x8c\x92\x9d\xb1\xd3\x27\xac\x64\xdf\xe1\xc4\x48\x62\x67\xe5\xc3\x87\x69\xe5\xbe\x3c\x36\xd9\x43\x56\x3a\x8c\xea\x0f\xe5\xc7\x0e\xdf\x0c\xe2\xa8\xfc\x56\x17\xc3\x21\xb4\x46\x4a\xc5\x2e\xc6\xd9\xba\x53\x62\x86\x79\x00\x95\x08\x30\x47\x69\xc7\x70\x4c\x42\xf9\xdf\xe7\x82\xc9\x10\x20\x86\x42\x27\xe6\x92\xf1\xbf\xa7\xdb\xc9\x63\x3b\x47\xb8\x47\xdf\x53\x49\xfb\xcc\x01\x07\x37\x0a\x6e\xc4\x3e\xd3\x54\xc3\x6a\xa4\x85\xd1\x59\x8d\x96\x91\x0c\x55\x58\xa8\x46\xa8\x04\x57\x9a\xc9\xb5\xc1\x02\x41\x16\x9d\xca\x69\xa4\x0b\x6e\x78\x00\xfb\x14\x53\xb9\x51\x40\x37\x71\x06\xa9\x82\xb2\x95\x92\x4f\x81\xc5\x37\xd2\x09\x79\xdb\x59\xa9\x41\x23\x5e\x95\x05\xc0\x43\xbf\x07\x5e\x6a\x81\x69\xd3\xf4\x74\xad\x44\x30\x7f\x1f\xe4\x18\x0e\x29\xe7\x4d\x8d\x5d\xd6\xa5\xae\xf1\x8e\xb3\xbb\xe6\x35\x79\x07\x74\x70\xfb\x94\x66\xfb\x15\x5c\xe9\x3e\x86\x2a\xbe\x53\xaa\xb1\xeb\x4e\x0d\x61\xea\xf0\xe1\x86\xed\x3a\x77\xf3\xdc\xbf\x56\xb7\x90\x71\x59\xd7\x42\x81\x95\xe4\x8c\xf5\x7a\x5d\xeb\x25\x52\xf6\x3a\xd5\x7e\x0f\xbc\x5c\xed\xee\xce\x2a\xb9\xed\xb5\x10\x15\x56\x7b\xda\xfc\xd4\x7c\x6f\xef\x6b\xe2\x06\xb0\x8b\xe1\x95\x16\x91\x63\x90\xa5\xa7\x27\xc9\x73\x3e\x55\x08\x8f\x4b\x4d\xea\xf7\xfe\x20\x2a\x66\x7c\x63\xc2\x42\x53\x7b\x3f\x7d\x03\xfb\x34\xe8\x4e\x16\xa5\x11\x90\x01\xaf\xad\xea\x4a\x1c\x11\x4e\x4e\xd8\xcf\x2e\x62\x10\x7c\x39\x64\x0d\x06\x85\x8d\x50\xda\x27\x89\x07\xcb\x01\xec\x10\xa4\xf6\xb6\xfc\x4e\xf0\xa1\x8f\xef\x27\x38\x90\x6c\xb0\xa7\xa1\x38\x08\xe5\x66\x13\x8a\x6b\xe1\xfd\x1b\xc7\xde\x2f\x8a\xc0\x9f\xe5\x94\xe1\x63\xfa\xfa\xa4\x43\x59\x3e\x0e\xbd\x1d\x5a\xf3\xed\xf4\xae\x9e\x9e\xc3\x02\xfa\x83\x08\xf7\xa0\x6d\xce\x8f\x8c\x6e\xc8\xe7\xa8\x89\x16\xaa\x6f\x3f\x77\x1e\xa3\x31\x98\x55\x8a\xf3\x45\x59\x15\x7d\x0b\xb4\xd5\xd2\x9f\x28\x59\x88\xd8\x73\xaf\x73\x3d\x87\x56\xde\x58\x51\x7a\x08\xdf\x70\x75\x9d\xb0\x51\x10\x25\xc1\xc1\x08\x6c\xf3\x44\x8d\xc2\xa7\x2b\xab\x2d\xcd\xd8\xa3\x90\xda\xc5\xc0\x7a\xe1\x69\x17\xe2\x4c\x29\xc9\x7b\x41\x84\x80\xe9\xa7\x30\xcb\xbb\x82\xd4\x97\x41\x7b\x69\x61\x3b\x07\x04\x74\x3e\xb8\x16\x9a\x95\xc6\x32\x4b\xac\x79\x00\xb7\xd6\x54\x2e\x27\x76\x1c\xb3\x85\xe4\x6f\x90\xf3\xcd\x8f\xe9\x3d\x1b\x3c\x4c\x80\xe6\x3d\x1f\x9a\x73\xc6\x80\x55\x5f\x29\xd0\x5f\xe0\x2e\x19\xa7\xb0\x53\x25\x9b\x62\xba\xb0\x31\xa3\x98\x2a\x34\x7b\xba\x6f\x90\xaa\x9e\x1b\x67\x5e\x5e\xa9\x12\x35\xd8\xa9\x15\xc2\xb3\x7f\x4a\xcc\xb0\x5c\x96\x86\xcc\xb1\x09\x0e\x87\x2e\x38\x02\x0b\x1d\xac\x94\x98\x8a\xc2\x79\xab\x28\xe1\xc0\xc0\x26\xc5\x5c\x13\x9d\x13\x24\xe3\x90\xb7\xa8\x31\xf1\x03\xdc\x14\x26\xf3\xba\xac\xc5\xdb\x88\x09\x1d\xc1\x51\xb5\x30\x9d\x7c\x12\xe3\x29\x72\xba\x86\x4a\x4e\xa3\x3b\x5c\x83\x27\x33\xe3\x98\x3b\x0d\xa8\xd0\xab\xf5\xf7\xc8\x48\xee\xf1\x01\x09\x01\xd1\x9c\xd5\x7a\xad\x44\x32\x11\xb0\xdf\x46\xfb\x68\x8c\xfd\x7a\xd8\xce\x8b\x95\xb4\xa0\x16\x4c\xec\xb7\x9b\xb7\x0d\x38\xe6\x3b\x95\xb5\x96\x95\x18\x6f\xb9\xaa\xfb\xbd\xa7\x21\x31\x2c\x14\x0b\x6a\x10\x8b\xac\x99\xc0\x9a\x60\x38\xb1\x5e\x5a\x8d\xbe\xe9\x24\x66\xb1\xf2\xfd\x59\x87\x71\xa2\x39\x01\xa1\x94\x54\xfd\x9e\xbd\x40\xad\xdc\x23\x67\x6c\x02\x55\xff\xd0\x87\x94\xde\x58\x30\x16\x10\x44\x97\x12\xe1\x51\x7c\xc1\xb8\x49\x7c\x67\x05\xab\x5f\x37\xde\x69\x73\x71\x41\x69\xdd\xbe\xa4\x3a\xc6\x42\x15\x7a\x6e\x38\xda\xb5\x27\xae\x1b\xdd\xcf\x6d\x85\x7a\x66\x81\xd4\x7a\xcf\x1a\x6f\x3d\x6e\xb2\xd8\x5b\x8a\x07\x0a\x8f\x63\x6b\x8b\x3e\x28\xb9\xfd\xf8\xa4\x71\x91\x51\xe3\x31\xa8\xd2\xe1\x36\x8a\x4c\x05\xf7\xe0\x62\x72\x6b\x6a\xf4\x90\xdb\x5a\xa8\xe7\x2e\xa2\x08\x2f\xbf\x4b\x71\x63\xec\xc7\x7e\xaf\x17\x6d\x1e\x34\xcf\xdf\x77\x91\xb3\x25\x5d\x3c\xe7\x31\x0a\x22\x3a\xc6\x25\x9d\xe5\xf8\x4e\xe2\xfa\xd8\xa4\x8a\xac\xe0\x35\xca\x08\x6c\x91\xbf\x64\x7c\xc9\x47\x97\xf1\x13\xf7\xbd\x39\xd5\x5b\x8e\x94\xf8\x50\xa6\x82\x58\x56\xde\xa6\xd5\x1f\x22\x09\x90\xdd\x63\x16\x44\x08\xc4\x97\x47\x3f\xd9\x4b\x8b\x70\xb2\x66\x9f\x31\x3f\xd5\x64\x5d\x4f\x42\xcb\x2d\xd9\xd2\x72\x2e\x06\x63\x0b\x17\x8c\x6d\xd1\xb6\x46\xe4\x33\xb6\x82\xc2\x45\x39\x81\x88\xaf\xcf\x9f\x09\xd6\xf7\x34\x7a\x84\xf4\x6e\xd1\xa7\xf5\x3d\x88\xd8\x08\xc5\xb7\x89\xb8\xa0\x47\x55\x73\xbb\x1e\x9e\xe1\x1c\x9e\x24\x54\xdd\x9c\x6a\x47\x50\x0a\xd9\x04\x9d\x07\x4b\x94\xf6\x29\x44\xe6\x40\x01\xa2\x29\x57\xc2\xc4\xe5\x4c\x4c\x2c\x5d\xa1\xb7\x5f\xe6\xa1\xba\xe7\xe2\xd9\xd5\xd3\x0b\x07\xee\x1c\xa0\xc7\x3e\xdc\xee\x8b\xbb\x9d\xd5\xce\x61\x36\x64\x13\x9b\xca\xaa\xe2\x2b\x2d\xfa\x4d\x54\x0f\x73\xc7\x81\xb8\xdc\x14\x72\x70\xf5\x67\xa5\x12\x33\x79\xf3\x0a\x72\x97\x16\x2f\xdc\x6b\x34\xf6\x7a\x7e\xf9\x12\xdc\x64\x31\x0e\x01\xe2\xaa\xa8\x11\x04\x48\x2e\x04\x49\x7b\xa5\x7d\xde\xcd\x86\x4c\x71\x4a\xe0\xc9\x6b\xf6\xc7\xb5\x36\xac\x96\xc6\xc3\xa2\x9a\xbd\xde\xf0\x4f\x33\x1f\xe7\x77\x65\x55\x95\x26\x08\x78\xb0\xa3\x28\x4b\x6e\x25\xfc\xe5\x15\x80\x56\xa6\xa8\x89\x68\x82\x30\x91\x54\xaf\xb3\x3f\xfc\x16\x9a\xd9\x0e\xcf\xdf\xbe\x61\x33\xc5\xe7\x90\xd3\xbc\xf7\x5d\x51\x6e\xbe\xff\x4e\xaf\x78\xfd\xfd\xef\x44\x55\x49\xf6\xb3\x54\x55\xf1\xdd\x09\xfc\xf2\xdd\x89\xfd\xda\xc3\x60\x11\xa6\xed\x9c\x00\xb9\xe8\xc4\xc8\xb5\x4e\x9c\x53\xb0\x80\x93\x3b\x83\x72\xc6\xfe\xa7\x2b\x89\xb4\x85\x10\x59\x48\x61\x8c\xfe\x7c\x7e\x7c\x92\x64\x27\x56\xfe\x15\x8f\x33\xd3\x71\x33\x81\xff\xcd\xcc\x0d\x9d\x50\xdd\x1c\xd0\x27\x8e\x63\x21\xa9\xe0\x66\x84\x69\x4e\x70\x16\x21\xbc\x00\x4a\xb6\x44\xc2\xff\x96\x96\xa1\xa1\x3c\x73\xfa\x06\x30\x72\x34\x11\x23\xc0\x00\x6e\x46\xe4\x6f\xe8\x3c\x75\x84\x0a\x99\x5f\x1c\x44\xf4\xe4\x21\x4f\x6b\x8b\xb4\x8a\x4f\x45\x81\x2f\x0d\x23\xb3\xda\x44\xfb\x7c\xb7\x58\xfe\x82\x9d\xbd\x3f\x10\x94\xa8\xaa\x4a\xd3\x21\x00\x12\xda\x13\x9f\x1e\xb7\x34\xdb\x3d\x38\xf0\xe0\x2a\xf0\x85\x1b\x1c\x4e\xa6\xd3\xb5\x3a\x74\x5e\x3d\x01\xc4\xe7\xd4\x42\x1f\xa6\xbc\xcf\x32\x58\x08\xf2\xf8\x21\xe2\x44\xd3\x4a\xd6\x02\x6e\x52\xb8\xdd\x07\x8d\xd7\xff\x39\x2a\x4a\x5c\xeb\xe8\x27\x38\xb5\xcd\x1f\xf7\xb1\xee\x8b\xf5\x44\x1b\x45\x13\x3b\xf5\x73\x03\x38\x7e\x5a\x0d\x60\xe8\xbf\x0e\x11\x6c\x06\xdf\xb9\xf4\x2d\xee\xee\xee\xee\x2c\x90\x41\x60\xbe\xe3\x15\xb7\x2c\x11\x5a\xa0\xf6\xec\x19\xc4\x8e\x84\x8e\xc3\x16\x77\x0e\x11\x50\xf7\x9a\x6b\xed\x80\x8c\x5a\x9c\x54\xfc\x48\xb9\xc8\x0b\xf4\xc4\x46\x8a\xb4\x24\x07\x3e\xe6\xe5\x6a\x25\x0a\x5f\x22\x33\xb8\x73\x4d\x2b\xbe\x5c\x85\x03\x11\xfb\x78\x1e\x20\x8c\x25\xdf\x4d\xc4\x79\x55\xae\xc8\x03\x2f\xaf\xb0\xba\xc5\xb5\x9b\x93\x88\x22\xfc\x23\x94\xef\xf6\x49\xc9\x91\x3b\xa0\xe5\xdd\x85\x14\x10\xd1\x84\x21\xac\x80\x03\x48\xa1\x30\x59\x1b\xac\x50\x8d\x3f\xf3\xe5\x2a\x04\xad\x1c\xf6\x2c\xe9\x1e\xfe\xf6\x9e\x26\x59\xb1\x7c\x90\x13\x15\x72\x02\xb3\x7d\x88\x36\x65\x84\xf6\xfb\xe9\xe4\x84\x5d\x58\x96\x25\x67\xb3\x54\xbf\x8c\x2b\xc2\x10\x26\xcb\xad\x60\x43\x99\x12\xda\x60\x95\x16\x56\x71\x23\x82\xba\xea\x78\x61\x31\xb8\xfe\xbd\x71\xe6\xf7\xf0\x20\x46\xd7\x19\xf0\xa4\xf7\xef\xd4\xaf\x87\x37\xef\x72\x88\x86\x1d\x57\x3b\x07\x15\x18\x5c\x91\x8f\xb3\xc3\x21\x7a\x1d\xde\x9e\x3c\x5b\xb4\x99\x91\xe9\xbe\x23\xb8\x76\x62\x19\xb1\x18\x15\x0d\xb7\xe3\x6d\x57\x3e\xcc\xa6\x2d\xf8\x9c\xe6\x64\x1f\x17\x1f\x16\xd3\x82\x43\x4d\x55\x39\x91\x02\x0a\xd4\x85\x4d\x1a\x77\xbc\xbf\xd2\x93\xd9\x7c\x7f\xb5\x96\x96\xca\xa0\x5d\xf2\xbb\x7b\x55\xe5\xd8\xda\x9e\x17\x4c\x4e\xc2\xf5\xcf\xe9\x84\x4e\xbf\xdb\xcf\x2e\x5e\x25\x0a\xfa\x2d\xc7\x20\xbd\x32\xf1\x05\x0d\x69\xf0\xc1\x5a\x25\x80\x85\xd6\xd1\x41\xd1\x41\xdc\x8b\x64\xe0\xbb\x38\x9e\xc5\x53\x1f\x64\x14\xdc\x27\x27\x51\x2d\xea\x4a\xd8\x63\x6d\x25\x46\x72\xe0\x71\xce\x29\x74\xb2\xf3\xba\xbe\x16\x25\xee\xe5\x2c\x2d\x19\xd5\x9b\xe8\xa9\xf8\x43\xfa\x1e\x88\x72\xc2\x78\x55\x4f\x88\x6e\x88\x1f\x0d\x70\x2c\x53\x9f\x70\x1c\xe0\xdf\xe4\x1a\xe5\x2c\x10\x3f\x33\x97\x4c\x7f\x40\x24\x5b\xd6\x4c\xaa\xc2\x55\x5e\x2c\x57\x91\x72\x37\x1a\xa2\x26\x16\xdf\xa0\x70\x1f\x17\x56\x6a\x2c\x2f\xba\x5e\xf9\x3b\x10\x43\x9b\x8c\xa4\x30\x92\x6a\xe7\x83\xc7\x28\x18\xb2\xa5\x1a\x06\x60\xb8\xd0\xe4\xb6\xcc\xa8\x20\x9b\x31\xdc\x1d\xb6\x72\x8c\x6c\x48\x9e\x46\x46\x45\x77\x6a\x38\x0c\x5d\x0f\xfc\xb4\xd5\x25\x9a\x46\xc2\x0f\x0d\x61\xeb\x57\x58\x8d\x82\x01\xc5\x5e\xaa\x10\xc7\x04\x78\x42\xfe\xe7\x2b\xb6\xc2\x7a\x26\x3b\xb6\x52\x90\x0a\x1d\x72\x53\xc9\xa5\x60\xcb\x12\x9e\x14\x04\x65\xeb\x4d\x36\xda\x85\xd7\x52\x02\x0a\xd0\x97\xab\x22\x86\x86\x23\xf0\x85\xe0\x90\x4e\xc1\x94\x4b\xe1\xb9\x97\x36\xca\xb9\xce\x3a\x31\x8f\x7e\x01\x4c\x86\x79\xff\x00\xf6\x1b\x3b\xe9\xed\x82\x9b\xa1\x3b\xee\xe0\xda\xe5\xe3\x85\xa1\xd4\x75\xcc\x2a\xbc\xe3\x3c\x64\x5d\xdf\x08\x02\x66\x91\x45\xf9\x2c\x96\xeb\xe9\xa2\x2b\xee\xc0\x89\x13\x0f\xcf\xfc\x3c\xc3\x84\x5e\xcb\x29\x04\x9b\x4f\x17\xa2\x61\x40\x0c\x0f\xbe\x54\xf1\x91\x55\xcd\x78\x7e\x8f\x76\x15\xf7\x3e\xc0\x55\xd0\x5f\x4b\xc1\xad\xb0\x18\x25\x00\x14\x75\x91\x6e\xd9\x98\xe0\x40\xed\xce\x72\xb9\xaa\x4a\x67\x10\x48\x05\x49\x6e\x9a\xfd\xe9\x1b\x48\xb0\xfe\x4e\xc1\xd9\xbc\x75\x33\x3f\x70\xe7\x06\x72\x1d\xb0\x51\x50\x92\x78\x75\x5a\x02\x2d\xd6\x5b\x9e\x9c\xb0\xa7\xac\x16\x73\x4c\x2c\xa7\x52\x1c\x84\x84\x51\xd9\x48\x8a\x95\x4b\x2c\x26\xea\xc2\x43\x73\x6b\x0a\xf1\x42\x92\xdc\xff\xc0\x0e\xc3\xd8\xcf\xa2\x67\xaf\x54\xa2\xd5\xc8\xb1\x26\xa2\xef\x06\x85\x8f\x23\xcd\x94\xee\xb0\x5b\x8e\x92\x35\x86\x60\x6f\x88\xe4\x28\x75\x04\x2d\x2a\x56\x3c\x95\xcb\x55\x25\x8c\xa8\x76\x6c\x5d\x43\x14\x70\x31\x66\xec\x47\x17\x95\x33\x04\xe3\x24\xd6\x96\xba\x0a\xe1\xea\x10\xc0\x03\xb9\xac\x8d\x2a\xaf\x85\x59\x28\xb9\x9e\x2f\xe8\x05\x3d\x09\xe5\xba\x65\x1d\x8d\x3a\x0c\x02\x64\xcf\xb0\xb5\x16\x01\x63\x35\x91\xaf\xd4\xf8\x4e\xd7\x98\x52\xaa\x2a\x28\x61\x12\xda\xc7\x9c\x8e\x2d\x6b\x00\x0e\x81\x44\x9f\x3f\x5f\x45\x41\xc6\x59\xb3\x60\x32\xeb\xc3\xed\x03\x0e\x8e\x68\xbc\x9d\x02\xab\x4d\x1b\xde\xcb\xb5\xe4\x7a\x5a\x96\x99\xc6\xb9\xb6\xa6\xac\xc4\x73\x6e\x38\xbb\x87\x2e\x05\x83\xe8\x29\x71\x72\xc2\x9e\x09\xb8\x06\x2d\xfa\xa6\xa2\xe6\xaa\x94\x43\x27\xab\x83\xa2\x69\xa5\x84\x71\x49\xcc\x91\x65\xb2\xad\x7d\xef\x47\x95\xb2\x23\x68\x52\x95\x73\x8c\x94\x0e\xe7\x1a\xf4\x6a\x46\xb1\x33\x4b\x80\x0f\xed\x3f\xd3\x38\x7a\x92\xa7\xdc\x95\x61\x0f\xe6\x25\xe4\xad\x3a\x63\xff\xdc\x58\x1f\x62\x24\x6e\x9d\xc5\x99\x6b\x18\xb5\xeb\xc2\x18\xfd\x17\x5f\x59\x65\x25\x8e\x6a\x08\x34\x0f\xd8\x7e\x6e\x2f\x0d\x8c\x09\x3c\xae\x53\x20\x0b\xb0\x31\x37\xb6\xe4\x02\xab\xeb\x4f\xdc\xce\x0c\xd3\x68\x11\x0a\xc5\xe7\x64\xe1\xf5\xc4\xde\x3a\xf3\xac\xe3\x26\x66\x67\x31\xc2\xe1\xd2\x7e\x68\x37\xa7\x2b\xbf\x81\xbd\x77\xa5\xf2\x93\xd9\x0a\x1f\x81\x3b\x8d\x43\x40\x9d\x2e\x69\xdf\x84\x90\x0d\x91\x44\x11\xcd\x6e\xaf\x7d\x24\xcc\xac\xcb\x37\x25\x52\x84\x20\xf4\x61\x0c\xbc\xa5\x0b\x61\x79\x0d\x7a\x22\xee\x20\x9c\x63\x14\xea\xec\x8c\xa5\x0c\xf4\x49\x1b\xfd\x24\x19\x6d\x75\xf3\x29\x8d\x32\x4d\x2d\xb7\x10\x95\x8f\x19\xdf\xbc\x66\x05\x53\x5e\xd0\xa5\x87\x52\xb7\x17\x7d\x3b\xee\x3f\xd6\xba\xfd\x5a\xa6\xc0\x1c\x93\x00\xe7\x12\xa1\x83\x3f\x46\x74\x29\xc6\xf7\xdd\x25\x69\x1f\x41\xec\xa5\xac\xa5\xa4\x79\xf4\xe5\x43\xcb\xba\x63\x66\xed\xdb\xf4\xec\x2c\xba\x4e\xf7\x90\x6b\x93\x5a\xf3\x4c\x44\xde\x0e\xa8\xe5\x49\x0f\x1b\xa0\x3b\x4e\x40\x17\x8c\xf8\xac\x1f\x7a\x58\x07\x18\xb1\xea\x90\x72\x34\xb2\xc0\x26\x1f\xde\x0a\x52\xac\x81\x8c\xc8\x2a\xf7\x4c\x4f\xc4\x40\xd6\xa5\xc6\xb9\x4c\xb7\xce\xc9\x72\x5b\x25\xad\x2c\x0d\xc9\x3e\x5c\x36\x01\x47\x08\xa8\x29\x8f\x89\x95\x60\x4d\xc4\xbc\xc4\x7c\xe2\x52\x75\x08\x6d\x43\x7c\xe7\x42\x72\x82\xe2\x8f\x7c\x9a\x70\x38\xfb\x64\xe2\x04\x6b\x25\x2d\xca\x4b\x10\x5a\xeb\x02\x9c\xf6\xc6\x51\x82\x97\xcc\xd6\x5b\xf1\x8c\x1c\xd7\xc3\x3c\xf2\x13\x60\xd3\x85\x98\x5e\x93\xb5\x0a\x33\x65\x31\x8d\x1c\x23\x92\x9f\xdc\x27\x67\xa0\x4b\x38\x58\xe3\x63\x64\xd9\x6b\x76\x7b\xf0\xa0\xa1\x63\x39\x74\x16\x1b\x00\xe2\xdb\xa2\xf1\x29\xa1\x4e\xdc\xf0\x7d\x0c\x2f\x3f\xe7\x0e\x66\xd7\x7c\xe0\xec\x19\x7a\x70\xc0\xc6\x08\x2a\x1d\x91\x28\x7e\x0e\xb8\x87\xd1\x6b\xea\xa8\x1b\x80\x20\xc7\x57\x40\xa6\xaf\x37\x9b\x8a\x6d\xc4\xe8\xb3\x2b\x3f\x78\x6c\x0e\x30\xb6\x40\x88\x7b\xce\x40\x44\x82\x60\xc3\x69\x93\x5f\x6c\x1b\x3e\xeb\xb8\xdf\x22\xb2\x8b\x9b\xdf\x9a\xe4\xe2\x2b\x33\xb6\xf5\x87\x9f\xb3\xcc\xb4\xe3\xfb\x3e\x1a\x6c\x4f\xfe\x48\xfa\x8b\x48\xe2\xef\x4c\x67\x19\xf9\xe2\x20\xa1\x91\x33\x28\xd5\x51\xc2\xec\x6c\xfe\x59\x87\x09\x69\x79\xbd\x73\xef\xba\xf8\x05\xb6\x10\xca\x3e\x88\xa0\xee\x5d\x69\x7a\x41\x2f\x38\x97\xe4\x7c\x17\xc4\xb1\xb6\x22\x2e\xe0\xf3\x90\x7f\x02\x4e\xb7\xdb\x65\xaa\x25\x15\x5a\xf6\xaf\xe5\x52\xa0\x3d\x30\xa9\x3a\x95\x93\x56\xe8\x35\x4b\xa0\x9c\x44\x89\x26\xc4\xd2\xb4\x6c\xd2\x90\x46\x0a\xdd\xc5\xd7\xb0\xab\xc1\x38\x6a\xc7\x9a\x08\xb3\x4d\xb2\x4c\x04\x93\x62\xe7\x7d\xf9\x2b\xc8\xe3\x2e\x4c\xa8\x2d\x87\x1e\xa0\x92\x43\xcc\x28\x55\x9a\xbe\x0d\x2e\xf4\xf4\xf2\x6d\xe9\x4d\xbb\x9c\xfd\xff\xd3\xab\x43\x1b\xb9\x5e\xba\x35\xa2\x4b\x7e\xf3\x1a\x7d\xf7\xf2\xee\x6e\x7b\xed\x55\xa4\x84\xf0\x30\x06\xf1\xd1\x62\x1f\xb4\x51\x1f\x23\xd3\xf5\x76\xbf\x62\xf1\x16\xb2\x7c\xcb\xa8\x14\xdd\x07\xfb\xac\x45\xde\x66\x9d\x71\xff\x3a\x03\x4a\x4c\x9f\x06\xa5\x8e\xe2\x38\xbc\x46\x87\xb3\x5a\x8e\xe4\x6a\x88\xea\x84\x65\xc3\x58\x17\x82\x7c\xba\x79\x55\xc3\x09\x69\xbf\xaa\x73\xbb\xf7\xa6\x86\xbe\x85\xa8\x84\x11\xe7\x0b\xae\x74\xff\x0d\x37\x8b\xf1\xb2\xac\xfb\x94\xcf\x2b\x6c\x4e\x74\x44\x93\xec\x40\x84\xff\xf4\xf0\xbd\x94\x6a\xcb\x55\x31\x42\xd0\xa8\x96\x22\x5f\xeb\x38\xfb\xcf\x91\xe7\xf1\x92\x9c\x38\x8c\x2f\x78\x48\xfc\x13\xc1\x17\x49\x75\x3f\x8d\x25\x21\x44\x01\xb5\x2a\x21\x27\x58\xb5\x63\x7c\x36\x13\x53\x83\xc9\x8e\x9a\xfa\x44\xc1\x34\x5f\x0a\xe7\xb4\x9e\x3b\xa3\x7b\x02\xa3\x92\x64\x2e\x72\x16\x03\x37\x92\x26\xe8\xbc\x73\x42\xb2\xa5\x0e\x17\x00\x84\xb2\x2c\xeb\x75\x46\xef\xdd\x08\xb5\x4a\x52\x5e\x34\x67\xd1\x50\x9b\xfa\x8c\xa7\x84\xb0\x03\xc7\x3f\x22\x88\xae\x10\xe1\x3d\x56\xc8\x27\xc7\xab\xca\x63\x13\x37\x7c\x3e\xce\xd0\xcd\x08\xff\x67\xcc\x93\x2b\x45\x1f\xe7\x78\x50\x66\x80\xc8\x05\x24\xce\x59\x41\xa8\x3d\x8d\xfd\x61\x37\x51\x16\x0c\x67\xe4\xe0\xca\xe0\xa1\x18\x5a\x09\xf6\xb5\x4b\x6c\x72\x95\xda\x5b\xd9\x83\x07\x49\xb4\x1a\x8b\x7b\xde\xce\x21\xf2\x2b\xf8\xe4\xc4\x0f\xeb\xe3\xfa\xd2\xf6\x3d\x0c\x21\x74\xb6\xaf\x5f\xf0\xed\x56\x40\xe9\x3d\xce\x12\x1c\x8c\x12\xf4\x39\x41\x5d\x3a\xcb\x42\xdc\xf4\xc1\x83\x68\xe4\x07\x0f\x52\x54\x9e\x85\x6f\xa9\xe6\xf0\x07\x19\x9f\x02\xd0\xd3\x3a\x96\xb1\xa5\x67\xb6\x8a\x74\xf8\x28\x83\x29\x70\xd1\x9c\xf0\x49\xb5\x63\x46\xed\xbc\x19\x01\x20\xfa\x33\x0d\x3c\x2d\x4d\xf0\x85\x69\xad\xb7\x65\x11\x9d\xbd\x20\xdb\xb9\xe4\x8a\xa9\x82\x38\xd3\x1a\x24\x5a\xba\x08\x40\x97\x64\xc5\x3f\x48\x63\xeb\xbd\x14\xdb\x4a\x44\xf8\xe5\x16\x92\x5b\x8f\xf5\xc2\x6b\x61\xaf\x27\x95\x87\xdc\xe5\x49\xd5\x41\xa0\x14\x2c\xd6\xa4\x99\xd3\xa0\x0d\x74\x24\xf1\x28\xff\x4e\x41\x6d\x67\x97\x7b\x2d\xd2\x4a\x04\xf9\x8c\x9d\x5a\xc2\x00\x0c\xde\x6b\x73\xa5\x86\x87\xf6\x21\xf7\x2e\xe6\x7c\xac\x83\x93\x2f\x4d\x88\x3e\xca\xac\x3e\x31\xf8\x7a\xb4\x64\xd9\x72\x46\x51\x38\xdc\x85\x61\xd4\xb2\x86\xca\x19\xe1\x69\xd2\x70\x6b\x21\xb7\x0b\x67\x00\xb8\x77\xc6\xfe\xd9\x2e\xf1\xde\x3e\x21\x25\xf1\xd2\x3e\x6c\xb0\x66\x4d\x73\x43\x53\xb9\xb2\xd7\xc7\xfa\xa0\xbe\xe7\x6e\x6f\xad\x58\x05\xb8\x67\x6a\xfb\xcd\x26\x11\x99\x1e\xbb\x86\xa3\xdf\xde\xa7\x1d\x7a\x51\x8b\x73\xd8\xdb\x6e\x1f\x9e\x63\x43\x1f\x0e\x07\xfe\xf9\x81\xf6\x2a\xf1\x7d\xab\x23\x57\xd4\xfd\xd8\x8f\x8f\x49\x53\x95\x44\xe4\x4f\x17\xa8\xda\xb4\x05\xc2\xb2\x2e\x34\xe5\x5c\xfa\x65\xf4\xfe\xed\xcf\x58\xad\x1a\xde\x31\x51\xfe\xbd\x90\x64\x01\x1a\xa1\xc8\xe3\x2a\x26\xbb\x82\x45\xc9\xe3\xa7\x2d\xa4\xa1\x4b\xaf\x95\xe6\x70\x20\xf0\xaa\x9f\x97\x35\xd3\x82\xab\x29\x26\x62\x0c\xc9\x9f\xe4\x2c\x04\xf5\x05\xe1\x0a\x61\x58\xc9\x8a\x60\x50\xfe\x50\xde\xa1\x40\xf5\x20\xf6\xe7\x15\xb3\x8f\xb0\x0b\x7b\x73\xbd\x97\xdb\x4f\xf9\x84\x24\x24\x40\x28\xb9\x6d\xd2\x7b\xa2\xb5\x62\x99\x06\xe3\x05\xd7\xdd\x4e\x23\xb1\xfb\x17\xc6\x85\x64\xcf\xec\x97\x78\x1f\xe5\xb6\xb5\x91\xbf\x85\x18\x78\x97\x1b\x15\xf7\x22\xa0\x03\xae\x29\x1f\x3b\x77\x81\x1b\xa6\x8f\xdf\xb1\x97\x29\x81\x64\x76\xc6\x65\xe6\x87\x37\x01\xc5\x7c\x27\x4d\x0f\xef\x80\xed\xda\x81\x7d\x72\xc1\x23\xf3\xd4\xd5\xfd\xab\xfb\x4f\xd2\x4d\x89\xb1\xe8\x2c\x85\x76\xbd\x6d\xed\x1e\x85\x1e\x1d\xb9\x29\xf1\xb6\xb4\xd9\x50\x93\xcf\x40\xc9\xf5\x24\x12\x28\xdd\x35\x32\xdd\xe4\x32\xed\xe9\x26\x45\xd7\x53\xf0\xa9\x73\x94\xec\xee\xa2\xdc\x0e\xc1\x4d\xf8\x03\x99\x35\xe7\xc2\x6d\x94\x07\x31\xa3\x37\x53\xf3\x1c\x35\x9a\xc9\x19\xa9\x79\xa5\x02\x0b\xbc\x4b\xed\x0a\xc9\xd1\x8f\xd8\xc3\x5f\xde\xcb\xed\x53\x02\xd6\x72\x90\x4f\x8f\x51\xe2\xf7\x08\x5a\x60\x67\x52\xff\xc1\x3e\xf9\xce\xce\xce\x58\x0f\x66\xd7\x1b\xe4\x70\x1b\xc7\xf7\x04\x81\xa1\x75\x4e\x28\xd4\x28\x8f\xee\x28\x56\x17\x9c\x1c\xf1\x2c\x44\x0f\x45\xcb\x54\x48\x9a\xa0\x26\x7e\x0f\xee\x70\x82\x08\xd7\x26\xe5\x51\xd1\x41\xda\xbf\xa3\x21\x58\x74\xb6\x3f\xfc\xe1\x6d\x14\xfa\xd0\xa0\x99\xd6\x0b\xf5\xdd\xaf\x40\xc1\x7e\x52\x70\x90\x7f\x2e\xcd\xc2\x69\xb7\x9a\x47\x7b\xc8\x32\x81\x13\x21\x42\x31\x79\xfa\x8d\x1e\xf9\x67\x9e\x23\xd7\xf7\x21\x60\xb5\x49\x7b\x91\xb4\x08\xf0\xa2\x2e\x9d\x60\x57\x21\xf4\xf7\x34\xe6\x2d\xf1\x70\xf7\xce\x58\xcc\x6a\x7c\x97\x87\x07\x25\xa7\x28\xf0\xf5\x28\xfe\x63\xc5\xc9\x06\xcb\xb9\x23\x4b\x4a\x57\x9a\x61\x4b\x61\x15\x1e\x99\xf1\xee\x95\xb5\xbd\x13\x33\xfb\x75\xf4\xc1\xa2\xdb\xfc\xa8\x73\xf5\xdc\x45\x29\xdc\x5d\xa6\x48\x4e\x0b\x0e\x70\xbb\x13\x16\xb8\xe5\xfe\x23\x16\x4d\x7e\x0f\x8c\x83\x87\xee\x16\xe8\x39\xfe\xcc\xe1\xae\x1d\x7b\xe0\x1a\x7c\xb4\x49\xe7\xe8\x1a\xbe\x15\xcc\x28\x0e\xc6\x43\xaf\x1e\x33\x72\xd5\xb0\x8e\x2b\xd1\x83\x0d\x5c\x50\xea\x9c\x59\x59\x17\xf0\x70\x1e\x37\x78\x7d\x34\xdc\x19\x39\x7c\xe5\x48\x36\x39\xae\x7b\xe8\xb3\x01\xb3\xb9\xd4\xc4\x7b\xe1\x28\x3a\x4f\x80\x9d\x0e\xc2\xdd\x92\x65\x16\x1d\xb9\xba\xc6\x53\x2b\x95\x5b\x18\xf9\xac\x5d\x91\x9e\xed\x07\x1f\x88\x1d\x75\xfa\x50\x7e\x4c\x5f\x83\x09\xce\x02\x97\xcc\x1d\xe6\x24\x8a\xf6\x16\xac\x2a\x1a\x65\xd0\xba\x51\x61\x4f\xf2\xc7\xde\xc7\xd9\x41\x52\x7a\x24\xe0\x50\x6c\x80\xc8\x21\x77\xe9\xfe\xb5\x6f\x54\x7f\xf2\xfc\xe0\xd9\x7b\x0f\x9c\xaa\x8d\x2a\xc5\xa6\xb5\x8e\x5c\x32\xad\x2f\xec\x72\x2b\x99\xc0\x64\x5a\x98\xed\x2b\x7e\x30\x35\x31\x61\xd1\x20\xa0\x24\x33\xd5\xda\xd8\x7f\x96\xed\x2a\x9f\xd6\x05\x72\x9a\xfd\x97\xa8\x5b\x55\xeb\x9d\x62\xef\x10\xbf\xe4\xef\x8f\xb9\xa1\x12\x89\xec\x57\xde\x51\x7e\xe4\xd1\x6d\x2e\xc7\xaf\x7c\xb7\xb9\x83\xde\x42\x67\x7c\xda\x3d\x02\xbf\x2e\x69\xfb\xd7\xd6\xdf\xe2\x4e\x3b\x4c\xe3\x3e\x05\xdf\xbf\x5b\x12\xef\xb8\xb3\x1a\xf4\xfd\x2b\x38\x6d\xbd\x9f\xc5\xba\x26\x96\x4e\x7f\xbe\x5b\x72\x04\x8f\xfd\xef\xce\x52\x50\xd1\xc1\xe8\x78\xed\x5c\xbc\x7b\xfa\x43\x2f\x6a\x06\x35\x31\xd8\x73\x55\x56\x15\x2b\xe4\x16\x72\xd9\xd5\x51\x55\x04\xcc\x16\x64\x7b\x8d\x11\xd3\x5e\x01\x71\x1c\xe9\xe3\xfd\x18\xd3\x3e\x76\x6f\x9e\xb1\x60\xf7\x4d\x7b\x7c\x0c\x3d\x12\x0d\x55\x7c\xee\x13\x14\xb4\x5f\x67\xdd\xd5\x07\xfe\x11\x6e\x13\xcc\xd6\x08\x5a\xa3\xf8\x75\x46\x09\x11\x5a\x33\x6a\xf5\x17\x75\xc1\x5e\xd4\xc5\x6d\xfa\xbe\xb7\x9f\xbf\x50\x2b\xf8\x03\x12\xae\x41\x56\x81\x43\x27\x4e\x0b\x03\x3d\xda\x07\x0c\x16\x02\x16\xb3\x21\x82\x8e\x74\x2e\xf0\x2d\x21\xa1\xe8\xcd\xd5\x7d\x49\x45\x80\xc3\x33\x2c\x07\x2b\x91\xfc\x22\x33\x38\x28\x6c\xeb\xe2\xae\x23\x8b\xba\x08\xe3\xb6\xe1\x74\x8d\x0a\xab\xb7\x98\x82\x5d\xcd\x4c\xf8\xc3\xe9\xc7\x61\x06\x27\x1f\x1e\x51\x52\x55\x0f\xe0\x45\x5d\xb4\xc6\x85\xce\xad\x1f\xb1\x6b\x23\x6a\x1d\x0a\x83\xe8\x28\xd3\x08\x68\x59\x15\x06\x68\xfc\xf8\xfe\x75\xa6\xa8\xb0\x4f\x23\xf2\x25\xea\x76\x11\x03\xc0\x72\x23\x87\xe8\x04\x5b\x85\x8e\x7b\xf2\x91\xc0\xdb\x3a\xfc\xd8\x40\xa7\x57\xdb\x01\x9d\x9e\x45\x29\x4b\xe6\x44\x8a\x4f\x4d\xff\x34\x7a\xa5\x63\xc3\xcf\x9f\x09\x8b\x46\xba\x82\x46\xe8\x29\xd2\x3f\xb9\xba\xd2\x27\x83\xce\x61\x12\x75\x40\xa2\xd0\xed\xe7\x95\x04\xb4\x59\xb6\x95\xb7\xbf\x0d\xe2\xf9\x34\xb4\x05\xd1\x60\xd0\x29\x4a\x16\x96\x7b\x50\xa4\x24\x99\xbc\x3f\x8e\xfe\x2f\x37\xc5\x5f\x0f\xea\x6d\xe4\x5b\xe6\x0f\x66\x58\xcd\x19\x1b\x3d\xea\x3c\x91\x7f\xf5\x45\xe3\x3c\x45\x5d\xfc\xba\x05\x7b\x30\xcd\xc5\x26\x6b\xc8\x2d\x95\xcc\x85\x3f\x6a\xf4\xff\x81\x4a\xfc\x53\x59\xcf\xca\xf9\x5a\x41\x2c\x0b\x50\x23\xd3\xc2\x98\xb2\x9e\x6b\x1f\xcd\x57\x89\x99\x81\xf2\x3a\x8c\x39\xe4\xb4\xab\xf7\x78\x54\x82\xbb\x0c\x35\xcf\xb6\x86\x42\x3e\xbe\x79\x59\xeb\xb2\x10\xd8\x3e\xdb\x1c\x6b\xfa\xf8\xe9\x43\xae\x01\xbc\xa1\xe8\xa9\x0e\x4e\x37\x6d\x55\x7a\x7c\x60\x40\xff\x1e\xa4\x71\x2c\x96\x5a\x8b\x1f\x57\x97\xf2\x3d\x1d\xe2\x24\x49\x88\x3d\x9c\x04\x09\x3c\x1a\x22\xd4\x46\x10\xc4\xcc\xbc\x17\xf3\x75\xc5\xd5\x8b\x9b\x95\x12\x5a\x87\x52\x53\xef\xc5\xfc\xc5\xcd\xaa\x1f\x30\xf7\x30\x59\xe8\x43\x76\x75\xff\x9f\xae\xee\x07\x58\xc8\x9b\x44\x81\x97\xee\x59\x3a\xbb\x31\x9a\x91\xfa\xd9\x01\xa3\xfd\x4f\x61\x58\x0a\xb0\x3c\x27\xfd\xf9\xfb\xf4\x84\xe7\x49\x04\x70\x0c\x21\x67\x91\x07\xd4\x38\xc6\xdc\x4b\x25\x97\x87\x31\x97\x0c\x75\x3c\xb1\x37\xfd\xed\x08\xde\x60\x90\xd2\xd8\x01\xdc\x5f\xdd\xff\xc3\xd5\xfd\x16\xde\x03\x75\x06\x68\x58\x22\xf5\x2c\x5d\x18\xb1\xe6\xfc\x48\x11\x2f\x85\xce\x1d\x4c\x85\x30\xff\x02\xa0\xa7\xbc\xe8\x61\x6b\x95\x00\xe8\xc3\xe9\xc7\xf6\x86\x42\xff\xe6\x76\xda\x1f\xbf\x4b\x08\x33\xb3\x95\x2e\x33\x01\xca\x47\x24\x41\xc4\xf4\x30\x8c\xe1\x39\x21\x09\x26\x10\x2e\x35\x5e\x14\xd0\xbf\xef\xbf\x1e\x57\x14\x57\x56\x95\x95\x54\xff\x03\x17\xc6\x8d\x8b\x56\x37\x6a\xe0\xa6\xb5\x6e\x9f\xb2\xde\xa6\x14\x5b\x8b\x8e\x1e\x83\x7a\xb7\x72\xc6\x66\xe5\x8d\x28\x46\x0b\xac\x69\x05\xd9\x5f\xc1\x96\xe9\xde\xd2\x10\x88\x16\x12\xb2\xd5\xe8\xde\x3b\x95\xab\xdd\xc8\xc8\xd1\xb4\x2a\x57\x13\xc9\x55\x54\x1a\xb5\xf7\x93\x1f\xc2\xd5\x2c\x81\xa8\x52\x17\x07\xcd\x0d\xd6\x12\xb5\xeb\x75\x41\xbe\xbe\x98\x68\xe9\x13\x88\x51\x36\x5b\x9f\xde\xfe\x1d\x26\x8f\x53\x50\x32\xf2\xd1\xe9\xe9\xf0\xf4\xf4\x14\xfa\x61\x86\x1d\xdb\x2a\xaa\x0e\x5a\x52\xc1\xd2\x6f\xff\x25\xaa\x39\xcb\xab\x8a\xf4\xa8\xee\x5b\x21\x97\xce\xad\x5c\x09\x0a\x62\x2c\xb0\xe2\x66\x0c\x0d\xe2\xee\xb9\xbe\x66\xae\xb2\xe9\xfb\x68\x3e\x21\xfa\xd1\x9e\xfa\x64\x45\xb2\x66\x85\x58\x42\xd2\x32\x4a\x10\x66\x87\x41\x9a\x14\x76\xd3\x5d\xba\xd9\x18\x17\x5c\x09\xde\xc8\xb4\xeb\x36\x0d\x6b\xec\xea\x72\x6e\xe9\xcb\xe5\x01\xc3\xcd\xa1\x7c\xaf\x8d\x5d\x61\xda\xd8\xa9\x6f\xa5\xba\xd6\x43\x80\x27\x36\xa2\x46\x17\x30\x5e\x55\x4c\xaa\x38\x7c\x37\xda\x67\x2c\x34\x83\xd3\x94\xb3\x59\xab\xdc\xc3\x0f\xd2\x88\x10\x97\xff\xcb\xa3\x47\x6c\x29\x2d\xa9\x86\x91\x7d\x3a\x24\x3b\x78\x70\xe6\x6e\x0e\x0d\xd0\x72\xc3\x47\xa3\x32\xf6\xca\x04\x37\xe2\xa2\x9c\xcd\xca\xe9\xba\x32\xa8\xfd\xbe\x41\x12\xb3\x34\xeb\x8a\x70\x52\x65\x64\x8b\x27\x88\xa9\xa8\x0d\x3c\x50\x21\x71\x83\x7d\xd4\x72\xb3\x90\x95\x9c\x53\xb4\x05\x54\xa9\x8d\xc6\xb6\xc4\xaa\xd3\xd4\x6c\xf1\x76\x93\xcf\x5c\x30\x39\xeb\x7c\x21\x59\xc3\xe7\xac\xe6\x4b\xe1\x0a\xc9\x8e\xc3\x76\x62\xf5\x62\xed\x42\x3b\x81\x1b\xfc\x69\x5d\x4e\xaf\xab\x1d\xe3\xda\x4e\x9b\x5c\x63\x95\xb2\x3b\x4b\xe5\x70\x19\x1e\xd1\x98\x64\xc2\x69\x9d\xea\xcc\x8b\x25\x9a\xf6\x97\xe4\x08\x3d\xf5\x89\x17\xa7\x7c\x05\x22\x97\x9c\x51\x76\x46\x5f\x46\x9a\x07\x97\x5d\xc5\x29\xce\x13\xb3\xca\xe3\x89\x69\x79\xd2\xba\xc3\x92\xbe\x7e\xdd\x98\xf4\xa2\x49\xea\xeb\xf3\xa2\x78\x46\x69\xca\xe1\x05\x31\x88\xaf\x8b\xa8\x2f\x65\xf3\x74\x7f\x06\x11\xf2\xe2\xe7\xa7\xbf\x4d\x3d\x7e\xb1\x94\xe2\xba\x36\x65\xe5\x13\x4d\x61\xd6\x09\x4a\x84\x47\x0e\x3e\xae\x3d\x15\x30\x6c\x54\x2a\x7c\x74\x3a\x64\x8f\xe2\xb2\x9c\xcf\xdf\xbe\x41\x65\x09\x64\xe4\xb6\x2c\x31\x8c\x48\xf0\xc1\xa9\x29\xcc\x7e\x5d\xe1\xbc\xa3\xe2\x94\x74\x0b\x86\x77\x5f\x34\x6a\xa8\xae\xeb\x1f\x86\x09\x4a\x20\xc3\xc4\x92\xaf\x28\xeb\x37\xd6\x1d\x3e\xfb\xde\x67\x4d\x4a\xca\x55\x3b\x0f\x87\x42\xf1\x2d\x24\x1b\x74\x67\xdc\x87\x50\x52\x46\x14\x25\x6c\x93\x4f\xfd\x01\x84\x5d\x8c\x19\xfb\x81\x9c\x12\xd0\x3d\xb4\x84\xda\xbc\x8d\xc6\xd8\xf4\x2a\x8a\x4a\xa1\xd0\x10\x3b\x8f\x73\x3e\x5d\x64\xaa\x80\xde\x72\xea\x5b\x9e\x99\x7b\x08\x26\xf5\x81\x99\x8d\xe9\xfb\x39\xb9\x06\xcd\x49\xfd\xe5\x4b\xf2\xfa\x28\x58\xb1\x86\x20\x0f\xe4\x74\xc0\x1a\x0d\x39\xaf\x1b\x7b\x38\x9c\xa7\x2c\x55\x98\xdd\xd9\xb6\x58\x55\xb9\xa4\xea\xd2\xe5\x9f\x45\x18\xb6\xe2\xda\xe0\x6b\x1f\x24\xa9\x76\x5d\x87\xd0\x00\x2b\x48\x66\xca\xa5\xaa\xb5\x70\x79\x3f\xe1\x5d\x14\xb2\x6c\xf0\xca\x27\x92\x27\x8e\x8f\xe9\xf6\x6a\x8a\xf2\xc1\xf4\xed\x2e\x7f\x4a\x94\xa0\xdd\x9e\xef\xe0\xf5\xcb\x16\x52\x1b\xa6\xc4\x9f\xd6\x42\x1b\x4d\x5c\xbb\x50\x7c\xee\x96\xef\xae\x95\xad\x60\x85\xac\x7b\x86\x00\x5a\x31\x7c\xbd\x42\x66\x83\xc1\x58\x96\x46\xa1\xe6\x44\x10\xd1\xda\x54\xfe\xa2\x86\xe1\x3f\x85\x2c\x4f\x57\x21\xba\xd8\xd7\x36\x43\x87\x58\x64\xa9\x81\x91\xda\x2f\x94\x32\x56\x0d\x99\x12\xa3\x95\x5c\xad\x2b\x7b\x43\xd3\xc6\x11\x28\xc8\xf1\x0a\x5b\x88\x68\xc5\x20\x9f\x80\x72\xa8\xb4\x4b\x65\x1d\x1b\xf5\x84\x69\xe7\xb7\x0b\x21\x2a\xb6\x2a\x6f\x44\xc5\x0a\x51\x19\xce\x96\xeb\xca\x94\xab\xaa\xc4\xfb\xbd\xac\xed\x0d\xaf\xc5\x49\x21\xf0\x1f\x04\xc2\x04\x10\x7a\x25\xe0\xaa\x24\x8c\x22\x44\x44\xe9\x98\x5d\x08\x61\x25\x53\xb3\xd2\x8f\x4f\x4e\xe6\x52\x8e\xe7\xd5\x89\xfe\x45\x54\xf5\x9f\x02\xc6\x00\xcc\xcf\xb6\xdb\x1b\x3f\xb6\x9d\xf1\xa3\x0c\xce\x8c\x5c\x4f\x17\x6e\xc3\xb6\x82\x69\xbe\x8d\xdd\x04\xf1\x33\xa6\x67\x47\xb8\x65\x3d\x87\xd2\xec\x85\xb8\x81\xf8\x2c\x88\xc9\xde\x51\xc3\xb2\x10\xb5\x29\x67\x25\x70\xcf\x7a\x2a\x1c\xe3\x84\x48\xbc\x25\x66\x27\xe2\x35\xb8\x7d\x63\x07\x0e\x36\x88\x14\xc9\x97\xf6\x4b\x7a\xc8\x7c\xc5\xe9\x98\xaa\x61\xfe\x84\x33\x38\x4b\x45\x84\x45\x9a\xbd\xa5\xfa\x6d\x94\xba\x8f\x0c\x3d\x49\x05\xea\x52\x5f\x90\x7c\x82\xcf\x9a\x98\xba\xfc\xc0\x4f\xd9\x7c\x2d\x74\x2b\xdc\xc6\xd5\x58\x57\xae\x76\x3f\x88\xc0\xf6\x28\xe1\x91\x26\x02\x8a\x87\xa3\xae\x17\xae\x27\x9c\xf0\x77\x37\x76\x7f\xfe\x67\x6b\xd8\x9f\x17\x82\x92\xf4\x0a\x36\x35\xaa\x1a\x6d\xd8\xb5\xd8\xf9\x90\x1b\xaa\xf9\x8b\x27\x7b\xc5\xb5\x4b\x93\x16\x0f\x67\x54\xf5\xd3\x3b\xfb\xa9\x91\xa9\x1c\xc3\x96\xca\x4d\x9b\xb9\xb8\x62\xd5\x6d\xa6\x72\x6e\xd1\x34\x75\x1a\x70\xdc\x3c\xc8\x5e\x25\xd7\x86\x2d\x78\x5d\x54\x49\x95\x6c\xfc\xa0\x93\xbd\x84\x2f\x72\x02\x4f\x20\x95\xf9\xf4\xfc\xc5\xb3\x1f\x7f\xfb\x29\x9a\xeb\x97\xf8\xd9\xf1\x4e\xc9\x9b\x5d\x48\x16\x80\x59\x92\x5a\x39\xa0\xb7\x8b\x72\xba\x40\x56\xab\x0d\x68\x67\x17\x68\x51\xdb\xf2\xea\x1a\x22\x04\x49\xf8\xb6\x97\xb1\x73\x7c\x70\xf5\x6f\xc8\x62\xe6\xa4\x13\x4c\x2c\x24\x21\x46\xd4\x41\x9e\xca\xa5\x20\x47\xdc\xb6\xa8\xd4\xbc\x86\xbf\x10\x91\x80\x44\x63\xcf\x1d\x3a\x2b\xb4\xae\xeb\xb4\xce\x7d\x46\x1c\x1a\xe7\x15\xbd\xfe\x7b\x5c\x17\x22\xfc\x0a\xf1\x9d\xfe\xaf\xf6\x81\x22\xee\xd8\xac\xdf\x6d\x72\xb2\x3c\x11\x97\xef\x5a\x6a\xc8\x9c\x36\x11\x71\x8a\x4a\xc5\x66\x6b\xfb\x0f\x57\xad\x0a\x65\x6e\x6a\x97\xca\xe6\xbc\x9e\x2e\xa0\x50\x86\x05\x47\x7b\x3a\x93\xd3\x35\x3d\xc4\x4a\xfb\x58\x76\xd7\xbc\x7d\x0f\xaf\xb9\xe2\xb5\xa1\x90\xe6\x89\x60\x95\xd0\x7a\x64\x39\xca\x48\xaa\x91\xf8\xd3\x9a\x57\x23\x48\xd1\x6c\xc1\xe1\xeb\x70\xe6\x42\xe4\xdf\xfb\x83\x4f\xdf\x5f\xcd\xf0\xe9\x66\x79\x11\x14\xc5\xd4\xa1\xbe\x16\x3c\xec\x34\xa9\xa4\x29\x34\xe6\x3d\x54\xd5\x7f\x95\x08\x34\x04\x2a\xa2\x3f\xd5\x7e\x7d\xb8\xd4\xd9\x19\xb0\xf6\x70\xb5\x0e\x6c\x68\x90\x1c\xbe\x43\x3b\x16\xe7\x3f\xfb\xf7\xba\x5f\x73\x78\xdc\xaa\x63\xb6\xcc\x61\xe1\x1f\x64\xd3\x70\xac\xce\x2d\xa3\x5b\xcb\x83\xb9\x77\x96\xd2\x64\x7c\x19\xc1\x9d\x0d\xa6\xd0\x03\xd0\x5a\x93\x86\x60\x58\xce\x56\xb2\xb4\x22\x50\x94\xdd\x9d\xea\xfc\x64\x06\x3b\xf7\xeb\xec\xa8\x0d\x86\x99\xd8\x39\xab\x4a\x0d\x7b\xe3\x9e\x2f\x18\x3d\x9f\x64\x13\x0f\x75\xf5\xc2\x23\xc7\x6e\x29\xc0\x29\x5d\xe0\x02\x9f\x4e\xa5\x72\x46\x61\xce\x0a\xb1\x32\x8b\x11\x7e\x42\xa5\x70\xe0\xa8\xce\xbe\x1c\xfc\x9b\xeb\x10\xf5\xbf\x28\xab\x42\x09\xa8\x65\x15\x39\x3d\xef\x65\x9b\x91\xe5\xcc\x72\xfc\x97\xbe\xe2\x46\xcc\x4f\x51\xe7\x88\x3c\x7a\x88\xc3\x3c\x55\xbb\x76\xc4\x26\xb6\x68\x97\xed\xe8\x72\x9a\x76\x90\xc6\x50\x53\xef\xed\x8c\x5a\xdc\x8b\xcc\x1a\x4d\x5f\xe8\xab\xd4\x0b\xaf\xe5\x35\x31\x48\x83\x66\x20\xcc\x12\xf6\x35\x5d\x1d\xb9\x0f\xf8\xa5\x78\x67\x00\xf0\x1c\xda\x0c\xae\x9a\xde\x03\x10\x7a\xc2\xe2\x60\xb2\x7a\x7f\x8d\x86\xab\x03\x8e\x02\x17\xbb\x7a\xba\x50\xb2\xb6\x2f\x64\x50\xb1\xb8\x7b\x1a\x9e\x00\x91\x38\x65\xe9\x26\xe1\x5e\x69\x8d\x28\x6e\x0f\xfe\x68\xcb\x77\x20\xa8\x23\x44\x48\x91\x36\xf4\x54\xd7\x38\xc5\x21\x67\x3e\xc5\x0d\xe3\xc8\x43\x50\x27\x41\x3e\x49\x38\x25\x16\x24\x57\xb7\xa6\x22\x3b\x8b\x8e\xd4\xe1\x5a\x54\x33\xda\x8e\x54\xea\x2e\xe4\xb2\x2d\xb0\x2c\x38\xbc\x8f\xed\x34\xa0\x02\x17\x3c\x24\xac\xa4\x81\x47\xcd\xca\x1b\x74\x7c\xca\x3a\x7a\x30\x38\x41\xcd\xe5\x32\x74\x09\x2f\xc0\xfe\x45\x4a\x35\xb9\x36\xf4\x92\x8b\xdf\x73\x3e\x3f\x68\x52\x1a\xcc\x3e\xd4\xf0\xbd\xea\xf5\x71\x57\xf7\x89\xe9\xdf\xf7\x29\x94\xbc\xdc\x13\xa0\x60\x1b\x20\xb9\xfe\x20\xaa\x7b\x31\x8b\x6f\x33\x6c\xf4\x1e\xe2\x61\xd2\xef\xe4\x4f\x19\x29\xe8\xa1\x69\x14\x71\x15\xda\x7a\xff\x82\x66\xeb\x24\x4f\x1a\xb4\xf7\x4c\x19\xee\xa8\xc6\xc0\x64\xdc\x4f\x00\x41\xbb\xe6\xa8\x22\xf2\x69\x68\x34\x8d\x86\x8c\x93\x5d\xdd\x0e\xbf\x00\x69\x3f\x7a\xa1\xc9\x01\xec\xe6\xd6\x98\x47\x6e\x76\x95\x5d\xb8\x6d\xae\xb3\x89\xda\xec\xa6\xe6\x70\x9b\xdf\xd2\x3c\x72\x5b\x1b\x1a\x55\x29\x8a\xb5\x5e\x4d\x51\x77\x3c\x17\xc6\x45\x05\xf6\x07\xf6\xaf\xa0\x02\x4b\x34\x82\x6d\x19\xab\xe3\x1e\xdf\x77\x2b\x67\x2f\xd1\xe0\x63\xc1\x3e\x7f\x8e\x96\x14\xb5\x6a\xa6\x5f\x8f\x3e\x75\xf9\x30\x78\x2c\xef\x43\x69\x08\x82\xa0\xb6\x0f\x1e\xb0\x7b\xfd\x9e\x93\xc8\xc0\x86\xe2\x3f\x06\xff\xd1\x18\xb6\xff\x77\x26\x52\xe7\x2a\x8a\xd0\x20\x18\x1d\xc5\xb6\x2e\x1a\x02\x23\xca\x5d\xc6\x29\xb7\x21\x9b\x90\x7b\x5e\x41\x11\xae\xab\x8c\x1d\x35\xb7\x4c\xef\x86\xd7\x9d\x41\x08\xad\x9f\x78\x14\xf6\x50\x3d\xe1\xca\xb7\xcc\xa0\xca\x7d\x0b\x98\x8a\xe0\xba\x7f\xee\xc3\x93\x07\x70\x10\x4d\xd0\xf2\x57\x62\xc9\xaf\xef\x08\x24\x41\x55\x10\xbf\xd5\x5e\x64\xff\x2e\x2c\xcb\xfd\xd6\xa0\x12\xe2\x41\x44\x99\x51\xd0\x70\x06\xda\xf7\x7b\xa0\xc5\x0c\xad\x0d\x2c\xb3\x28\xc8\x0d\x93\xa1\x88\x44\xc4\xca\x33\x10\xf6\x5d\x9e\x9d\x45\xd2\x53\x73\x71\x2c\xe3\x5b\xd9\x98\x72\x24\x1e\xb5\x32\xdd\x5f\x26\x82\x39\xf0\x1a\x14\x97\x45\x5d\x68\xa7\x66\x75\xe9\x52\xe8\xe9\xa4\xeb\x9e\x89\xdc\x45\x39\x26\xb1\x02\x70\x40\x09\x51\x69\xa5\x28\x7d\x1b\xdc\x15\x71\x9c\x74\x43\xf2\x0b\x24\xe3\x37\x68\xc8\x3e\xe4\x10\x39\xcc\x91\xd2\xc7\x41\x22\x85\xde\xf3\xc3\x79\x99\x11\x6b\x4d\xd5\x62\xcb\x5e\x20\x51\xff\x58\x8b\x9b\x15\x3e\xc8\x80\xcc\x41\x52\x03\xcd\xb8\x07\xdf\x4b\xa1\x46\x6b\x38\xb0\xc7\xbf\x66\xa3\xd2\x6c\x3d\x29\x3f\xcf\x10\xef\xbd\xb3\x36\xf5\x7a\xb1\x36\x08\xb6\x97\x56\xe4\xe5\xac\x28\x37\xae\x7e\x51\xa9\xdb\x76\x98\x2e\x91\x32\x4e\x16\x03\xc9\x7e\x45\x2c\x4c\x16\xe5\x26\xd6\xe8\x90\xa6\xae\x28\x37\xf1\x45\x56\xce\x14\x5f\x0a\xfa\x90\x0d\x8b\xa7\x12\xe2\xfd\x1e\x36\x8d\xcb\x25\x53\x67\xca\x1f\x3c\xd5\x9a\xfc\x8c\x3c\xd9\xf4\x26\x90\x98\xeb\x31\x3b\x7d\x12\xf1\x9f\x1e\x5a\x0f\x1f\xb3\x47\xa7\xa7\xff\x3d\xf9\xe0\xdc\x63\x1f\x33\x3e\xd1\xb2\x5a\x1b\x91\x7c\x06\x15\x29\x76\x8b\xf3\xef\xbb\x9a\x6e\x38\x1d\xa6\xd5\xd4\xca\xb0\xff\xcd\xd2\xfd\xcb\x97\x63\x16\x15\x8e\xf0\x96\x07\x5c\x8a\x26\x00\x95\xe4\x05\xaa\xb0\xed\x81\x10\x1a\x7b\xb2\xd2\xc4\x55\xc4\x4d\x28\x6f\xed\xde\x90\x38\xa0\x4f\x1a\xd1\x5b\xca\x3f\xbf\xaa\x6b\xa1\xd0\xb0\xf2\x0b\xdc\x02\xdb\xb2\x2e\x2c\x0b\xb7\xe3\x90\xec\xc6\x2d\x70\x50\x43\xa0\x29\xda\xec\x70\x85\x29\x4e\x95\x7d\x19\xf4\xfe\x5b\x8f\xd6\x69\xb7\x27\x4e\x3c\x10\x37\x1e\x64\x76\x74\x4c\x73\xfd\x19\xc6\x1f\xf3\xa2\x78\x61\x17\xf8\xba\xd4\x46\x40\xee\x11\xd4\x2f\xf7\x6e\xed\x70\x87\xfa\xd7\xfa\x3d\x74\xff\x34\x9e\x94\x35\x4e\x66\x10\x97\xb8\x2a\xe4\xd4\x71\x94\x58\x19\x9c\x9b\xa0\x23\x37\x20\xab\x42\x4e\xc7\x13\x59\xec\xf6\x90\xd4\x92\xab\x79\x59\x3f\x66\xa7\xab\x9b\x94\x76\xd0\xd4\xde\xfe\xd0\x49\x6d\x11\x39\x25\xbf\x3b\x0f\xf2\xc7\x6c\x51\x16\x85\xa8\x93\x8f\x98\x74\xe1\xb1\x5d\x65\x7f\x34\x82\x23\x39\x02\x3b\xcb\x08\xbf\xa0\x8b\xcd\x20\xe9\x33\xda\x8a\xc9\x75\x69\x46\x6b\x2d\xd4\x08\x39\xd4\x63\x50\x46\xa4\xad\x96\xf2\xcf\xb9\x26\xad\x72\x3b\xa8\xe1\x8e\x23\xf6\x7e\xc6\xc7\x41\x0f\x52\xeb\x4c\xd6\xf3\x39\xa4\x01\x10\x8c\x17\x05\x23\xbc\x38\x3b\xbd\xc5\x6e\x52\xb7\x4d\xce\x66\x68\x06\xf0\xd0\x28\x08\x04\x1d\x51\xc8\x15\x24\x4e\x84\xe6\x77\x34\xde\x2a\x1a\xe6\x52\xae\xe2\x0c\xc4\x07\xdb\x3f\x93\xc6\xc8\x65\xdc\xa5\x37\xe5\xd5\xb4\x1f\xa3\x77\xba\xe0\xca\x12\x1b\x39\x06\x0d\xd8\x37\xec\x9f\x07\xbd\x96\x5c\x0f\xae\x4d\x67\x40\x42\x0d\xce\x05\x9f\x88\x71\x85\x04\xe9\x51\xe2\x71\xbf\x07\xe0\x1f\xc1\xfe\x12\x6f\x0b\x73\x4e\x0f\x8f\xd9\xa4\x92\xd3\xeb\x27\xe9\x47\x47\x5d\xfb\x26\xdc\xe8\x02\xa1\x55\xb7\xee\xf7\x85\x16\x60\xd7\xb7\x10\xbc\x48\xb8\x01\x11\x5d\xc4\x06\x2c\x21\x9d\x6b\xfd\xba\xac\xaf\x3f\xe5\xb1\x52\x95\xf5\x75\xcc\xcd\xe3\x1e\x8d\x42\xd0\x4a\x54\xbd\x21\x43\x3c\xea\x85\x10\xa6\x97\x1b\xcb\xa5\x74\x38\xb0\x03\xd9\x05\xb4\xe0\x44\xfc\xfd\xf2\xed\xf3\xb7\x7d\x7b\xe8\x0b\x3e\x78\xcc\x2e\xa4\x52\x3b\x4c\x32\xc6\x7a\x48\xb9\x9f\x7a\x24\xff\x78\xb9\x08\x43\x52\xb9\x4e\xb2\x30\x12\x38\x48\x11\x45\xee\x3c\x7f\xd4\x63\xc6\x5e\xf9\x2c\xa7\xab\x72\x7a\xcd\x38\x9b\x08\xa8\x8a\x02\x2e\x33\x33\xa9\x42\x41\x07\xb1\x04\xa5\xe3\x46\x96\x45\xa4\x45\x99\xca\xaa\x2a\xb5\x53\x97\xbb\x82\x30\xd7\xae\x92\x4a\x29\xaa\x82\x89\xa2\x34\xe0\xdd\x22\xb0\x30\x25\x16\x98\x20\xbb\x76\x48\x0d\x07\x96\x75\xc6\xeb\x1d\x2c\xc0\x8d\x01\xba\x6f\x0b\x41\x60\x78\xad\x3f\xbf\xe0\x29\x28\xd0\x27\xac\x88\x53\xf3\xe1\xfa\x41\x3d\xb6\x29\x95\x05\x4e\xb0\xae\xc5\x0e\x7c\xa2\x50\x9e\x7c\xf5\xe6\x85\x45\xc0\xb3\x35\x16\x6a\xc7\x2c\xef\x5b\xc1\x40\x13\x27\x67\x33\xf0\x8e\x82\x9b\xae\x5e\xad\x0d\x5b\x88\x6a\x25\x14\x03\x7f\x25\xbf\x7e\x6e\xc0\xbf\xca\x2e\x03\x61\x80\x6b\x21\x26\x84\xb5\x63\x2c\x61\x42\x65\xcd\x8b\x8d\x50\xf6\xc0\x55\x3b\xb6\x5c\x63\xfa\x6d\x0d\x75\x9c\x2c\x6c\x87\xba\x0b\xbb\x1e\xc4\xb5\x16\x71\x4d\x4b\xf0\x56\x33\xbc\x2e\xb8\x2a\xe8\xf5\x05\xaa\x37\xfc\x32\x51\x72\x0b\x3e\x0a\x94\xbb\x76\x48\xe0\xac\x68\x1c\xfc\x16\x34\x9f\x89\x6a\xc7\x4a\x2c\x81\xca\x26\x3b\xd2\xde\x51\xef\xc8\xf2\x48\x74\x95\x27\xe6\x9b\x11\x7e\x8e\x0f\x0f\x75\x68\x9c\x1b\xba\xe2\xdc\xe6\xdb\x33\x64\xd4\x5a\x1c\xee\xa8\x57\xa2\xaa\x20\xf9\xb2\xed\x03\x96\xcc\xc3\x9d\xf8\xda\x48\x57\x00\xc5\x76\x93\xb3\xd9\xb1\x9d\xc0\xbb\xeb\x76\x7d\xf8\xca\xf0\x0a\x24\x08\xd6\xb3\x17\xd5\xe1\x6e\x4a\x12\x0a\xc4\x8d\x99\xc8\x9b\xc3\x1d\x0c\x9f\x80\xb2\xdb\x76\x1a\x3d\xca\xb6\xef\x14\x13\xa0\x7c\xef\x08\x6a\xbb\x3c\x66\x46\xf1\x5a\xe3\x4b\x3b\xe1\xa9\x7b\x38\xfb\x4c\xd6\x66\x34\xe3\xcb\xb2\xda\x3d\x66\x4b\x59\x4b\x48\xc1\xd6\x6e\x62\xf9\xf5\x63\xf6\xe8\x5f\x1a\x42\x07\x7c\xdb\x70\x55\xf2\xda\x8c\xaa\x72\xce\xcd\x5a\x09\x9d\xb9\xf5\x3b\xa5\x13\x27\x85\x8c\x76\x8f\xc9\xfe\xfa\xc4\xc7\xb6\x8d\x6e\xb2\xb2\x09\x24\x64\x1e\xc1\x44\x1f\xb3\x95\xea\x14\x9e\xd3\x71\xd6\xc6\x5e\x48\x38\x35\x76\xaf\x5c\xae\xa4\x32\xbc\x0e\x2c\xde\xcb\x64\x2d\x7e\x4d\xbb\x90\x6a\xc6\x68\x67\xda\x02\x27\x2e\xa2\x37\x74\x12\x24\x3e\x64\x9a\x12\xe4\x41\x30\xe0\xce\xd2\x84\x02\xce\x2a\xb7\x06\x05\x2e\x24\xf0\xbc\x0e\xf0\xd0\x79\xe4\x4e\x90\x96\x72\x23\xbe\x0a\x20\x51\x17\x5f\x05\xce\x94\xd7\xd3\x18\x57\x77\x03\x35\x95\xab\x5d\x80\x71\x2e\x57\xbb\x5b\x83\x00\xcf\x92\x00\x03\xbc\x49\xda\x40\x4e\x4e\xd8\x73\xf4\x11\x43\x2f\xb0\x07\xac\x50\x12\x7c\xf5\x2c\xc7\x38\x21\x66\x8a\x79\x1c\xf1\xde\x44\x8f\x11\xaa\x04\x68\xef\xaa\xfe\x4e\x98\x7f\x1d\x38\xee\xef\x8a\xbe\x16\x62\xc6\xd7\x95\x61\x13\xf2\xf0\x44\x43\xe7\x54\xd6\xb3\xb5\x16\x4e\x46\x38\x62\x19\x76\x3a\xbd\x61\x78\x61\x07\xcd\x02\xe6\xc5\xb3\xaf\x19\x1c\xaa\x9f\xea\xce\xbc\x2f\x0a\x63\x5f\xda\xc7\xaa\x35\xce\xb5\xd8\x15\x72\x5b\x07\x84\x3d\x93\xc5\xee\xf7\x62\xf7\x5c\x6e\xeb\xdc\x8b\x2b\x72\xb2\x83\xf4\xe6\xbc\xac\xa3\x44\xe4\xce\xd9\x05\x3d\x8b\x94\x2b\xfe\xe9\x3c\x5b\xc1\x20\xd8\x71\xd3\x15\xe5\x26\xe6\xba\xbe\xf5\xb8\x2c\xec\xe3\x14\x10\xf7\x58\xc9\xed\x08\xcc\x4c\xbd\x5c\xcb\x6e\x0e\xbd\x87\xf9\x06\x3d\x00\x4c\xfa\xf8\xd7\x59\xf6\xa5\x65\xa9\xe7\xc0\x4b\x0b\x9b\xe4\x68\xb9\xc9\xf3\xfc\xca\x62\xe4\xfb\x8c\xf0\xae\xd2\x90\x7f\x54\xa1\x67\x24\x39\x77\xa2\xb0\xb8\xda\xa1\xae\x21\xf2\x73\x92\x2b\xd4\xe5\x3e\xe3\xf3\x6e\x99\x03\x5a\x8c\x26\x7c\x1e\xcf\x33\xe9\x7a\x37\x64\xef\x45\xe8\xad\x9f\x29\xed\x3b\x28\xb9\x1e\x26\xf0\xde\x4b\x56\x9b\x59\x47\x28\x9e\x9d\x94\x2b\x04\xaf\x81\x89\x4b\xd6\x6d\xe4\x8a\xcd\x2c\xb2\x39\xd4\xa5\xaa\xc8\x4f\x0f\x47\xa0\x2f\x4a\xd0\xa2\x30\x90\x02\x82\x1e\x08\x1c\x28\x60\xd6\x94\xdf\x06\x36\x0d\x7c\xcd\x41\xa0\xe5\x69\x2d\xb1\x48\x19\x6b\x05\x4a\x88\xcf\x40\x83\x73\xb5\x23\x68\x49\x84\x82\x9b\x9d\x54\x6e\x36\x04\xc7\x47\x64\x78\x6f\x0a\xb7\xf8\x97\xb2\x2a\x3a\xb7\xde\xae\xa5\xb1\xe9\xd0\x3e\x39\x86\x46\xae\xa0\xe1\x68\x26\x95\x7d\xc5\x8e\xfc\xa4\x7b\x99\x9e\x4d\x4a\x69\x11\x48\xee\x2c\xb7\x0e\x83\x03\x97\xd9\x62\xb7\xa0\x74\xd8\x74\x63\xdb\x1d\x92\x15\xe1\xef\x87\x17\xb5\x67\x82\x11\xe8\x26\xb3\x44\xba\x00\xd5\x2b\x9f\x82\xd7\xaf\xf6\xac\xd2\xbe\x54\xca\x29\xaf\x30\xa3\x2f\x39\x21\x87\x1a\x83\xb5\x5e\x2f\xe1\xfd\xe0\xee\x19\x7a\x25\x01\x01\x91\x7a\x7e\xb2\x9e\xcd\x84\x22\x37\x9b\x1d\xa6\x3d\x76\xba\x14\xc6\x5e\x99\x9e\x86\xaa\x9b\xe8\x78\xaa\x23\x97\xf2\xe0\x11\x6a\x9f\x9a\xab\x95\xe0\xca\xb9\x6b\x86\x97\x07\x3e\xad\x4a\x4c\x5d\x9f\x2b\xdd\xbb\x5d\x88\xd8\xd0\x1f\x80\x96\x1a\x4b\x75\xa6\x36\x7d\xac\x7f\xa0\x85\x61\x3d\x98\x64\x59\x95\x66\xe7\x18\x42\xcf\xce\xe4\x5a\x08\x2c\x9d\xe0\x9e\x5a\x58\x38\x13\x52\x33\x47\x05\x42\x08\x5e\xe9\xbd\xc1\xc3\xd1\xc1\x70\x1b\xf4\x25\xef\xc1\x05\x8f\xdf\x74\x8f\xad\x57\x5b\x78\x93\xf6\xe1\x67\xb8\xc3\xc0\x75\x19\x3d\xbb\x2c\x52\x42\x60\x11\x39\xec\xf2\xf8\xb5\x5f\x2e\xc5\xc0\xca\x05\x18\x78\x03\x54\x31\x6c\x8c\x3e\x17\xc6\xa9\x7b\x6d\x13\x39\xb3\xe8\x9f\x5e\x27\xd7\xbe\xac\xaa\xa7\x4a\xf0\xe3\x2e\xc3\xa8\x7d\x42\xb5\xf8\x3b\x57\x82\xf7\xf2\x8d\x5b\x47\x2f\x83\xf1\x23\x2e\xa2\x08\x64\x93\xb4\xf5\x66\xee\x33\xb9\x38\xff\x81\x4c\x28\x81\xdb\xc9\x52\xb3\x3f\x4b\xb9\xf4\x9e\x7b\x56\x38\x9a\xf8\x08\x07\x2c\xa4\xe6\x4a\x2a\xaf\xed\x1a\xa5\x36\xde\x75\x04\x23\x50\x9c\x4b\x32\xc7\xf2\x7f\x13\x1f\x31\x34\xce\xea\x70\xd0\x93\x30\x04\xe1\x01\xe6\x58\x2d\xb4\x33\x5c\xd6\x4e\x99\x0f\xaa\x8d\x5a\x1a\x07\xcf\x33\x5c\x5a\x8c\x5b\x83\x5d\x00\xab\xc4\x46\x54\x28\x1f\xd2\xa3\x1f\x1c\x5f\x5c\xac\x80\x57\xec\x80\x69\x21\xd2\xd7\xfc\x20\x8d\x70\x93\xc2\xc5\x83\x87\xfc\x63\xd0\x85\x6a\xe1\xd4\x2c\x53\x5e\xc3\x4c\x30\xc2\x0e\x7c\x26\x09\xc9\x7e\x72\x3e\x22\xf8\x66\x59\xd5\x1a\x89\x02\x00\x6d\xb7\xdb\xf1\xf6\x9f\xc7\x52\xcd\x4f\xbe\x3d\x3d\x3d\x3d\xd1\x9b\x79\xbc\xc9\x9b\x70\x13\x16\xe5\x26\x9f\x9f\x98\x08\xf1\x87\x8b\x3e\x00\x1f\xb2\x9e\x05\x32\x48\xa1\x24\xa4\x68\x91\x32\x42\x44\x49\xd5\x18\xae\xf1\xd4\x06\x90\xbd\x21\xce\xbb\x09\x33\x6d\xba\x11\x4a\x5b\x06\x3c\x64\xbd\x47\xe3\x47\xad\x09\x74\xcb\x20\x07\xac\x3b\x46\xae\x9a\x86\xa2\x4a\xcc\x4c\xf3\xb7\xcc\x69\x19\x90\x55\xcd\x57\x30\x12\x75\x41\x36\x71\x67\x53\x73\x3b\xf5\x47\xdc\x5f\x28\x74\xcc\xd1\xe3\x9d\x2d\xe0\x6c\xe9\xa8\xa0\x2b\x81\x9a\xf2\x95\x41\x3f\x28\x81\x4d\x8b\x50\x4b\x66\x86\xc5\x35\x2c\xa7\xa3\x94\x1d\x72\x29\xec\x0b\x7a\xbb\x90\x6c\xca\x55\xec\xc7\x0e\x7d\x2f\xb9\x9a\x8b\x2e\xfd\xa8\x05\x0b\x2c\x23\xc2\x66\xdc\x2b\xd9\x56\xf4\xe3\x1f\xc1\xf7\x91\x81\x06\xbd\x8e\x6e\xc7\xea\x53\xd2\x4e\xf9\x1d\xdc\xbb\x7f\x41\x8f\x11\x2b\x42\xbc\xd2\x21\xf9\x91\x76\x75\x75\xf3\x24\x78\x25\xf4\xf0\xa6\x6e\x58\x6f\x7a\x72\xc5\xa7\xb0\xd3\xa7\x9d\xb3\xa5\x67\xe1\x0b\xa7\x60\x4d\xe2\x2f\xf6\xb3\xd0\x18\x4e\x17\xf8\xd6\xeb\x2c\xd0\xab\xb8\x31\xaf\xea\xd5\xda\x2b\x0f\xf0\x35\xfa\x2e\xf4\xbe\x74\x2d\x72\x8f\x36\x14\x5d\x28\xc8\xa3\xed\xf1\x48\x71\x55\xe0\x20\xed\x35\x51\x44\x79\xb5\x19\xe9\xa5\xa4\xbc\x8b\x28\xb3\xf8\x20\xd9\x95\x33\x18\x27\x31\x05\x2e\x61\xb3\xed\xfb\x12\x41\xfd\xc4\xab\xb5\xf7\x86\x3d\xbf\xb8\x48\x54\x5e\x70\xe5\xdb\x1b\xd8\x41\xf7\x01\x98\xd1\x28\x8c\x5d\x84\x90\xb0\xa0\x23\x83\x41\xc6\xd9\xe1\xe5\xca\x7c\x0a\x33\x7f\xbb\xb2\xd4\xc4\x2b\xb6\x81\xa9\xd8\xa1\xfc\x03\x2e\x5d\x24\x45\xac\xda\xff\xe8\x81\x0d\x27\xdb\x27\xf1\xa7\xaa\xe8\x94\xc2\xd8\xe7\x2f\x3f\xc2\x70\xae\x85\x79\x19\x70\x12\x59\xcf\x03\xa6\x86\xe9\xb4\x1b\x51\x12\x91\x1a\x72\x96\x00\xf2\x7f\xf8\xe4\x05\x39\x30\x59\x40\x88\x03\x3b\xaf\x0b\x8f\xac\xb3\x74\x16\xa8\x4b\x48\x3c\x17\x8e\x06\xd4\x4b\x6c\x67\xd8\x6d\x57\x4f\xcf\xe3\x40\xd4\x88\x24\xf7\x60\x6f\xde\x85\x3d\x5a\x5d\x9c\x9e\xac\x0b\x57\x19\xd2\x37\x8c\xbb\xd0\xe5\x60\x72\x8a\xab\xd0\x05\x59\xb7\x45\xf1\x31\x7d\xd4\xeb\xaa\x1a\x82\x9c\x81\x29\xec\x1c\xd0\xa9\x06\x5d\x49\x25\x79\x01\x42\x8f\x1d\xb1\x34\x50\x1b\xdc\x75\x63\x10\xa6\xf0\x0d\xde\xf2\x31\x8d\x41\x5a\x3d\x28\x2e\xc1\x7d\xf4\xa7\x3d\x98\xab\x55\x55\x8a\x22\x1a\xe1\x38\xe2\xfb\x11\x4d\x5e\x3f\xaa\x2a\x46\xdf\x5a\x55\x51\xda\xa5\xf0\xd7\x61\x4b\xdd\x42\x89\x59\x6f\xc8\x6c\x97\xd4\xf5\xa6\xdd\x31\x78\x9e\x45\xde\x38\x89\xb9\x76\xaf\x95\x0e\x80\x0c\x62\x3a\xf4\x06\xea\xae\x61\x92\x45\x34\x86\x89\x0b\x1b\x74\x0d\x73\x04\x45\x06\x94\xd2\xe5\xe5\x71\x6a\xd9\x75\x7c\x76\x63\x63\x63\xc3\x1e\x6c\xe2\xcc\xed\x7b\x06\x43\x11\xa3\x4d\xf6\x89\x9b\x03\x34\xea\x67\x54\x4b\xe1\xc3\x71\xe7\x4c\x89\xa8\x3a\xf7\xad\x0e\x1b\x58\x41\x8e\x19\x47\xef\x1d\x07\xc0\x74\xb3\xbf\x29\xb5\x3f\x7a\xb4\xb9\x30\xcf\xd2\x9a\xe3\xb7\x5a\x55\xa3\x5e\xf9\x91\xeb\xdb\x33\xe2\x81\xf5\x4d\x5a\x3d\x6f\x83\xd7\x30\xee\xab\x25\x9f\x27\x8e\x5a\xa5\xfd\xe1\x98\x71\x5d\x4f\xe8\x70\xeb\x71\x29\xbf\x40\x08\xfc\x2b\xff\x7c\xd4\xa8\xd4\xcf\x36\xbf\xf5\x98\x51\x06\x31\x3f\x6e\x23\xc7\xe7\xde\xb1\xa3\xfe\xae\xdb\x91\x73\x38\x4f\xc2\x56\xfd\x16\xfb\x5f\xe3\xd1\x93\x10\xd7\xf0\x47\xae\xec\x06\x85\xc3\x83\xa4\x09\xf9\x1d\x9c\x86\x30\x04\x0d\x37\xf3\x93\x5c\x2e\x04\x15\xa7\xf2\x8f\x59\x77\x8f\xa5\xaa\x19\x68\x74\xc4\xb5\x31\x17\x14\xba\xdf\xdc\xd1\x38\x7c\x04\x3f\x21\x94\xb9\x30\xe7\x55\x69\x1f\xe8\xf6\x66\x6f\x9a\xee\xfc\x19\x23\xee\xec\x24\x79\xc8\x28\x80\x7f\x90\x93\x18\x49\xf3\xf0\x01\x57\x34\xda\x1b\x92\x0c\x4c\xfb\x10\x16\x93\x72\x79\x7b\xd1\xe8\xaa\x7e\x97\xc5\x1c\xf2\xa5\x87\x32\x7d\xbf\x02\x87\x2e\xf9\xeb\x3e\xbe\x93\x20\xbc\x3f\xa0\xb5\x1f\x5a\x18\xa5\x31\xda\xbb\xb2\x23\x27\x89\xc9\x04\x6e\x39\x4b\x1c\xbf\x23\xe9\x6a\x12\xfe\x43\x4a\x18\x59\x15\xba\x9d\x0a\xc9\xe5\x96\xba\x83\x57\x6a\x14\x4d\x71\x60\xee\x5e\x18\xd8\x9b\x23\xd6\xa9\x3f\xfd\x6b\xbe\x31\xef\xaf\x30\x5f\xc4\x20\x79\x44\x1f\x71\x17\xb5\xe6\x7b\x5e\x81\xc2\x76\x6d\xa0\x54\xf2\x94\x4f\x17\x68\x74\xfb\x61\x5f\xa2\x9a\x68\x0e\x4a\x58\xe6\x65\xbb\x75\x09\x16\xfb\xd3\x9c\x1c\x93\x77\xa4\x31\xe3\x05\x26\x97\x8d\xc2\xe8\xa2\x0c\x37\x8d\x03\x08\x2c\x0c\xbc\x62\x7d\x5e\x0c\x58\x23\xe6\x7c\x82\x84\x24\x9c\x92\xa1\xb4\x5f\xa1\x6f\x21\x58\xed\x56\xf9\x7f\xdc\xb6\xfa\xf7\x9f\xcb\xe3\x75\x87\xed\xd5\xc2\xc4\xd9\x93\xf6\x26\x07\x72\xaf\x73\xda\x8b\x7e\x6a\x05\xed\xce\x06\xe4\xef\xb3\x85\x28\xd6\x95\x78\x0f\x98\xc8\xbc\xef\x5f\xd5\x33\xa9\x96\xcd\x54\x61\xde\x29\x53\x49\x69\xa2\x50\x59\x48\x7c\x06\x9e\x51\x0a\x13\x56\x25\xe6\x24\x00\xe8\xd3\x96\xd5\x92\x55\xb2\x9e\x0b\x65\x9f\xd5\x65\x94\x0c\xed\x22\xaa\xeb\x4d\xfe\x73\xc1\x35\x0a\x6a\x1d\x17\x68\xae\x68\xac\x11\x52\xb8\x22\x19\xf5\x07\xac\x96\x5b\x1c\x8f\xce\xa5\x7d\x83\xd7\xa6\x54\xa2\xda\x41\x3a\x2c\x01\x04\xe4\x62\x77\x6b\xfb\xae\x2a\xca\x82\x54\x6e\xa8\x60\x76\xe9\xb8\x00\x4e\x1d\xa2\xbb\xe3\x39\x24\xbe\xd6\x21\x8e\xc5\x99\xb8\x29\x6b\x1b\x52\x08\x45\x08\x4f\x81\x8e\x8b\x06\xc1\xea\xeb\x72\xa5\x09\x79\x08\xd8\xe7\xdf\x02\xc8\x33\xfb\xd8\x43\x82\x1d\xc6\xee\x62\xf6\x9a\x9e\x60\x92\x25\x8c\x3f\xa6\x6c\x5c\x0c\x2b\x89\x37\x58\xfa\x82\x6b\x36\x81\x54\x1a\x64\x07\x84\xba\x4a\x5e\xd3\x1e\x12\xcb\x2c\xb8\x6e\x4d\x76\x3f\xd5\x96\x35\xec\x63\xc3\xb9\xbf\xa3\x02\xac\x37\xb4\x35\x83\x6c\xe3\x92\xa8\xae\x30\x63\x6c\x1c\x4b\x52\xa7\x27\x35\xfd\x3b\x0a\x3f\x46\x65\x33\x48\x8b\xd9\x59\xc2\x31\xaa\xdd\x98\x89\xfb\xdd\xcb\xae\x3c\x53\xdb\x80\x3d\x6c\xf5\xde\x27\x6d\xf2\x77\xde\x65\xf8\xb5\x1f\x12\x58\xe2\xda\x32\xcd\x9f\x25\x1f\xfa\x11\xcc\x44\x31\x67\xe9\xe1\x27\x3c\x5e\xef\xe5\x56\x7f\x8a\x1b\x0e\x1b\xd0\x8f\x7a\xc2\x39\x8e\xf0\x6a\xdf\x76\x86\xea\xd9\x2e\xf3\x49\xb4\xfd\x9d\xf9\x89\x93\x48\xe1\x66\xea\x94\x94\x7e\xb4\x30\x97\xf8\xa5\xef\x83\x43\xfb\x51\x7c\x0c\x95\x55\x85\xd0\xca\x1c\x08\x1f\xfa\x0d\x2d\xc2\xef\x21\x52\x86\xea\xa7\xb4\x55\x3a\x4e\x95\x99\x88\xcd\xb7\xe5\xdf\xa0\xca\x6a\x48\xbd\xab\x9b\xfd\x2a\x39\x6a\xbf\xba\x61\x0f\x59\x6f\x75\x13\xdb\x41\xf6\x68\xbd\x32\xe2\x92\xbb\x1d\x7f\xdd\x2a\xe6\xf9\x55\xa4\x22\xc6\x8a\x2b\x2d\x5e\xd5\xa6\xbf\x67\x4d\xed\xb9\xbe\xa1\xf4\x72\xc0\x9c\x68\x7e\x3e\xf2\x2b\x64\x89\x2b\x6b\xcc\x2f\x95\x49\xd3\x17\x2b\x6a\xb7\x28\x74\x5e\xba\x7d\xa3\xbf\x8d\x74\x69\xe6\x80\xc7\xf5\x6a\xa9\x96\xbc\xea\xb1\x72\xe6\xef\x68\xb9\x2c\x8d\x2b\x70\x1d\xca\x4c\x84\xa4\x76\x5f\xd8\xd3\x46\x9a\x3b\x92\x01\x8e\x40\x1f\x8d\x7d\xde\xc8\x9a\xe7\xf1\x18\x66\x4e\x18\x3d\x39\x61\x3f\xac\x97\x13\xa1\x5c\x8a\xff\x60\x10\xe5\x1b\xa1\x38\x89\x3e\x41\x5a\x6f\x63\xcc\x5b\xf5\x6a\x00\xf4\x76\xf6\x1a\xc0\x9c\xb1\x47\xa7\xa7\x4f\x5a\x63\x80\x7b\x0c\x03\x47\xe9\xb2\x16\xd9\xc1\xfc\x9b\x67\xcf\x58\xb6\xb3\x2f\xd8\x8b\x03\x39\x16\x81\xca\x3c\xcc\xeb\x97\x2a\xd5\x7c\xae\xbf\x86\x8a\xad\xd3\x94\x9d\xf4\x4b\xdd\xba\xec\x4f\x23\x3f\x2f\x70\x74\xed\x65\xfa\x74\xda\xfb\x0e\x5a\xfc\xb2\x36\xbf\xbc\xd5\x2f\x6b\xf7\x6b\x34\x70\xef\x56\xbe\x36\x32\xf2\x63\x6d\xb4\xa2\x37\x6c\xab\x51\x50\x97\xa2\x0d\xd1\x87\x04\x50\xe8\x97\xcb\x70\xc7\x99\x5e\x71\x30\xf8\x91\x8b\x3f\x1d\xb5\x29\xaf\xa6\xeb\x0a\x92\x49\x78\x30\x69\xba\xd1\xb2\x66\x2f\x4b\x25\x66\xf2\xa6\x89\xc4\x8b\x15\xaf\x0f\x6f\x9a\x1d\x37\xb3\x6b\xd0\x39\xb3\x73\xb6\xf9\xc8\xce\x00\xf3\x52\xb4\xb7\x8e\x3a\xd6\xb5\x50\xbf\xbb\x7c\xf3\x3a\x8e\xc1\xe9\xf7\x7e\xe9\x8d\x95\x58\x09\x6e\xfa\x81\x0e\x07\x96\x81\x5e\x5d\xa9\xde\xc0\x7d\x4b\xce\x43\x8e\xa0\xda\xee\x73\x7e\xe4\x80\xf0\xf0\xe1\x19\xd7\xc2\x8e\xf7\xd5\x91\x31\x21\xc0\x0e\x0b\xb8\xc7\x5b\x5e\x03\x3f\x73\xc9\x7a\x9c\x31\x77\x21\x98\xeb\xd0\x39\xc3\xf6\x05\xd3\x3b\x75\x97\x4b\xbe\x43\xa3\x32\xf7\x2f\x6d\x2b\x4c\xb4\x84\x00\xfd\x67\xf7\xf6\x8f\x78\xf2\xe7\xcf\x68\xc4\xb9\x3a\xc2\x05\x8a\xd8\x44\x48\x14\x0e\x83\x1c\x50\x0f\xb5\xb7\x29\x52\x2a\x35\x32\x94\x7a\x80\xa4\x17\x39\x89\x58\xd7\x81\xe8\xc2\xd0\x95\xd8\xef\x09\x6b\x91\x54\x8a\x9d\xae\x05\x7a\x34\x53\x94\x97\x85\xe9\xf6\xd0\x11\x53\x63\x3f\xb0\xd0\xcc\xa5\x5c\x3d\x69\x0e\xd1\xb2\x45\xb4\x87\xc8\x60\x3e\xdf\x2b\x6d\x9d\x71\xee\xe8\x70\xad\xdf\xcc\xe3\xa5\xfc\x59\xca\xe5\x4b\x3e\x35\xa0\x76\x0e\xbe\x16\xb1\xdf\xcd\x93\x83\x83\xb4\x26\xe8\x06\x89\x04\x8f\x44\xcb\x9b\x4f\xbf\xd3\x4c\x71\x9b\xd3\x10\x28\x31\x5a\x46\xc2\x88\x93\x9c\x1a\xb9\x71\x21\x03\x54\x01\x2e\x19\xe1\x0a\x76\x59\x98\x79\xcd\x30\x1a\x0f\x58\xad\x99\x1e\xa3\xd5\x6b\x09\x74\x9d\x3a\x94\x46\x23\xf8\x31\x27\x5a\xf4\x8f\x33\xd7\xbf\x17\x5a\xd8\x87\xee\x52\xd4\x1a\x72\x91\xda\xa5\x45\x6a\x34\x7a\xfd\x59\x31\x00\x7d\x0d\xe1\x49\xcf\xe9\x19\x48\xf6\x4c\x80\x14\xc1\x20\xe9\x32\x78\xfd\x1d\xa7\x3e\xda\xb7\xec\xce\xd4\x91\x0d\x4e\x80\xf9\xf7\x13\x4d\x31\x1b\x65\xcc\xcc\xd3\xd0\xfa\x49\xc3\x9c\x9c\xa6\x41\x4d\x85\x6e\x7a\xe6\xe9\xe7\x7e\xb1\x9f\xfa\x83\x43\x4f\x9a\xd5\x7a\x52\x95\x3a\x14\xa6\xf7\x11\xcc\xec\x2f\x51\x82\xc2\xc7\xa8\xd9\xf8\xe2\x39\x4f\x13\x11\xd1\xfb\x05\x7b\xbd\x97\xdb\x4b\x89\xcf\xc2\x3e\xfc\x9c\x51\x7e\x40\xd2\xd6\xfe\x20\xa4\xbe\xf2\x10\x5a\x7a\x1e\xfc\xfa\xa5\xfb\x11\xe4\x6b\x40\x81\x37\x63\xf4\x8c\xf0\xf9\xac\x9d\x7e\xf3\x48\x8a\xcf\x60\xb3\xcb\x2a\x10\x9b\x0d\x72\x4a\xe3\x78\x13\x33\x39\x84\x43\x7f\xe4\xf5\xfb\xf3\x09\x47\xad\xbd\x2e\xfa\xca\x3b\x69\x61\x04\x87\xbb\x82\x21\xcd\x2a\x77\x69\x05\x01\x15\x13\x41\x09\x8e\x93\x84\xeb\xda\xd8\xc3\x19\x82\x23\x41\x24\x73\x29\x87\x9d\x0b\xd7\xac\x92\xf6\x78\xd5\x3b\x36\x83\xd6\x92\x52\xb7\xe2\x31\x0c\x8e\x59\x1b\xff\xc2\x87\x0d\xa6\xca\x1d\xb3\xb1\x5e\x72\x65\x5e\x5a\x20\xcf\x4b\x4b\x07\x9e\xe6\x5a\x4b\x1a\x66\xf8\xc9\xd8\xf9\xc5\xc7\x79\xbb\x6a\x36\x95\xcb\xd5\xda\x34\x5f\x1b\x72\x6d\x1f\x64\x46\xcc\x15\xaf\xe8\xf2\xa3\xec\xd4\xa1\xda\x4c\x98\xa6\xf6\x96\x80\xec\xfc\xbf\xe9\x9e\x4d\x63\x32\xa0\xfe\x27\x75\xdd\x54\xb0\x89\x30\x5b\x21\x12\x0f\x62\x9a\x22\xc4\xd0\x48\x43\xf8\xa3\x1f\xad\x70\xac\x83\x77\xee\x44\xb0\x25\x2f\xc0\xd1\x12\xd8\x9a\x06\xef\x77\x0c\xd4\x47\x77\x4c\x27\x4d\x2b\x31\x95\xaa\xc0\x23\x8a\x5e\x3f\x5a\xb2\xd2\x25\x76\xc6\x52\x14\xf8\x62\xaa\xb8\xc1\x84\xc7\x85\xc0\xdd\xf5\x4e\xff\x4e\xed\x92\xdb\xc6\x4b\xb9\x7a\x03\xc3\xfa\x62\xad\x8d\x06\x78\xce\x7d\x9b\xd6\x7e\xb2\x51\x1b\xdb\xf1\xa1\x68\x38\xd0\xe3\x1a\x5d\x10\x7b\xf7\x6c\xbc\xe6\x21\xf0\x38\x82\xe4\xb3\x57\x9d\x3e\xd9\xab\xd0\x73\x1a\xb2\x0e\xa5\x5e\x78\x06\x26\x60\x1f\xb6\x38\x3b\x31\xe4\x9c\x7e\x0e\x34\x7a\x99\x61\xbe\xb4\x32\x6d\xb4\x2f\xa9\xc4\x64\xe4\x63\x8f\x32\x81\x46\xce\x33\x89\xcc\x6e\x4d\x8e\xd2\xd2\xd1\x34\x3b\x2e\xdc\x01\x68\x1f\x8a\x87\xcd\xc5\x1f\x00\x65\xdf\x99\x51\x12\x30\xb8\xd0\x50\x28\x7c\x6d\xbf\x1c\xea\x6e\x69\x3c\xdb\xfb\x52\xae\xd8\xa8\x6b\x2e\x87\x15\x85\x8d\xbb\x33\xc3\xca\x4f\x4e\x18\xa6\xdf\x88\xb3\x7e\x73\x25\x78\x14\x32\x00\x55\x3e\x20\xca\xbc\xf4\x79\x81\x34\x13\x1b\xa1\x76\x3e\x89\xb5\xe7\xdc\x71\x5a\xf2\x2e\xfd\x3f\x5d\x81\xfb\x7c\xda\xfd\xde\xf4\x3b\xd9\x10\x65\x62\x3d\xf4\x5f\x66\x66\xd9\xf4\x55\xf9\x8e\xd9\x13\x78\x97\xee\x09\xb7\x38\x0e\x82\xdd\xe6\xcc\xdd\x4f\x72\x82\x37\x8e\x41\xd0\x11\x48\xfd\x8c\xbb\x5c\x94\xe0\x49\x16\xa4\xe9\x57\x64\xc8\x5c\x0a\xb3\x90\x05\xa4\xa3\x44\x03\x09\x25\x84\xc7\xb8\x07\xed\xbc\x99\x41\x82\x40\xd8\x0b\xae\x49\xb6\x9c\x52\x0c\xc5\x37\x4c\xad\xeb\x28\xf5\x2d\xb6\x93\xd3\xe9\x5a\x1d\xe5\xa8\x96\x88\x39\xc7\x29\xae\x71\x8c\x3b\x2a\xad\x95\x1b\xe8\x6e\x0a\x6b\xec\x9e\x2a\xab\x7d\x85\x86\xbd\x9a\x6a\x5a\x61\xfc\x68\x69\xe5\xd9\xc6\x6c\xf6\xb2\xee\x48\xe4\xee\xe4\xbb\xb0\x93\x90\x9e\x05\xc7\x2f\xeb\xf9\x10\x32\xb3\x28\x01\x5e\xe2\xb3\x75\xe5\x75\x49\xda\xe7\xdc\xf4\xc6\x6c\xac\xaa\x83\xb9\xb4\xa1\x24\x9f\x77\x4a\xf4\xe3\x86\x5c\x79\x60\xfc\xa3\x94\xfb\x2e\x8e\x62\xc7\xb6\x7c\x37\x66\xec\xb9\x84\x1c\x5a\x92\x44\x29\x2b\x47\xad\xd5\xc4\x43\xf3\x50\x30\xb0\x68\x5a\x91\xcf\xe4\x7a\xc5\xf8\xcc\x60\x1a\x60\x27\x86\xa1\x54\x36\xab\xb8\x5e\x08\x8d\x45\x54\xb5\xf1\xd5\x98\xca\xda\xd5\x8a\x89\x66\x06\x95\x77\xb4\x81\xbc\xff\xda\x08\x5e\x00\x0e\xb0\x96\xa9\xcf\xbc\x8a\x7a\x2a\xca\xfc\x10\xea\xba\x58\xf1\x01\x92\x66\x68\xc3\xf5\xa2\x11\xd5\x03\xa8\x39\x81\xd4\xd5\x6b\xa3\xcb\x42\x34\xef\x23\xe0\x8a\xa4\x9a\xf6\x55\x8f\x7c\x7d\x66\xed\x6d\x8f\xae\x3d\x79\x96\xde\xc1\xba\xec\x6a\x92\x74\x3c\xbd\xc0\x96\xec\x43\x1c\xf5\xa7\x84\x93\xfa\xa4\x65\x96\x15\x34\x32\x4d\xe6\x9e\x52\x87\x7c\x01\x7c\x46\xfc\xbf\x87\xd9\xec\x92\x44\x96\x66\xa3\xa8\xc9\xb3\x60\x79\xec\xb7\x6d\x69\x77\x34\xc1\x1d\xfd\xc2\xdc\x6b\x71\xec\x44\xeb\x93\x43\x48\x6f\x96\xd7\x69\x96\x85\xe8\x47\xef\xe7\xe6\x06\x58\xd9\x25\x27\xd0\x7f\x7f\x96\xb9\x0a\xdb\x5c\xeb\x45\x9d\xf2\x8e\xba\x33\x54\x56\x09\x5f\xff\xcb\x1b\xff\x1b\x57\x4e\xeb\x7c\xd9\xb3\x7d\x82\xec\x27\xaa\x50\x16\xa0\x27\x51\xad\xa1\x88\x56\xc6\x49\x03\x93\xa1\x1b\xca\x62\x0c\x9a\xa2\x89\x20\x15\x50\x54\x46\x0c\x0f\x2a\xc8\x31\x00\x2e\xba\xe1\xfc\x4a\xfa\x18\xd2\xae\xb4\x61\x18\x20\xeb\x1e\xcd\x43\xc6\xaf\x79\x22\x3c\x0f\x92\x05\xd6\xd2\x0c\x53\x50\x6e\x1e\x01\x62\xfc\xfe\xc6\x7e\x10\x48\x37\x55\x25\x86\x85\xd2\x2c\xc3\xe5\xec\x2b\x8c\x2d\x1d\x52\x02\x0e\x91\x95\x11\x0b\x06\x68\x9e\x0d\x07\x47\x9a\x16\x3b\x8f\x79\x25\x5e\xed\xda\xfb\x92\x59\x6e\x49\x21\x19\x1e\x77\x81\x7b\x2e\x8f\xc9\x17\x18\x9d\xd3\xc4\x49\x3a\x3a\xb2\x51\xdd\xdf\x26\x97\x72\xd9\x6f\x3f\x7f\xbe\x8a\x3d\xc7\xdb\x2d\xa2\x6c\x9e\x67\xac\x0d\x9c\x1e\x15\x51\xc6\x6d\xef\x4b\x12\x02\xba\xdd\x3e\x0d\x31\x78\x2b\xbe\x2a\x05\x6e\x20\xe0\x82\xf9\x60\x57\xdc\x43\x48\x57\x4e\x69\xcb\xbc\x78\x12\x64\xf8\x90\x77\xdd\xfb\x43\xf8\x68\xe6\x64\x51\x51\xd2\x83\x5a\x0b\x65\x9e\x01\x31\xa6\xf1\xcf\xc3\x66\xd3\x00\x3d\x98\x39\xf2\x69\x54\x9b\xb8\x8d\x33\x4b\x76\xa2\x97\x72\xff\x1f\x81\xdc\xb7\xae\xbc\xa1\xdf\xb3\x32\x66\x0c\x16\x7d\x4d\x1c\x65\x76\x31\xf6\x08\xf9\x0a\xd8\x3a\x46\x90\x3e\x62\x2a\x83\x4c\x10\xcc\xc9\x09\x7b\x26\xcd\x22\xb8\x43\x1d\xbb\x56\x42\xe9\xde\x95\x06\xb1\xf3\xaf\xba\xd6\xf6\x54\x1a\x09\x63\xa9\x3e\x57\xb9\x04\x01\xaf\xac\xed\x39\x17\x45\xc9\x8d\x40\x03\x37\xad\x92\xd4\x03\xc7\x6d\x6a\x32\xcf\xec\x84\xba\x97\xdf\x36\x2c\x1c\xb1\x6f\x69\x56\x55\x98\xeb\x11\x67\xb4\x0d\xb9\x61\x00\xdf\x63\x8e\xe9\x38\x9d\x51\x60\xc9\xfe\xfb\xb4\x3b\xc7\xc4\x57\xba\x52\xc3\x00\x7f\xf5\x2b\xd5\x49\xf5\xe9\x5a\xfa\x38\xd5\xa9\xac\x8b\xee\x5b\x35\xb8\x8d\x75\x5c\xac\x31\xc4\xf8\x6e\x85\x7a\x5b\xff\x29\xae\xd6\x67\x49\x0a\x0c\x7f\xbb\x36\x64\xd6\xee\x0b\x96\xb2\xc8\x1f\xcd\xff\xbf\x3b\x6b\xca\xc3\x07\xef\xd7\xc0\x17\xa3\xed\x3a\xfa\x8a\x85\xad\x3c\x70\xc3\xda\x36\xe9\xe1\x8d\x1d\x0e\x3b\x58\xc9\x31\x19\x3c\xbe\xea\x55\xda\x96\x54\xf6\x22\xd3\xdf\xa7\xb4\x45\x65\xcc\x16\x72\x37\x4c\x9c\xdc\x24\x77\xb9\xb4\xb8\xec\xd1\x57\x4c\x04\xf9\xee\xb7\xcc\x51\x77\xe8\xd7\x5a\x61\x8b\x65\xff\xf5\x57\xe9\x87\xfc\xcf\x79\x83\xb6\xcf\x60\xe7\x9c\x8e\xbf\x3e\x3d\xd0\x23\x6f\x4f\xa0\xa3\xd8\xc2\x64\x25\x7a\x48\xda\x14\x38\x8f\x3e\x74\x8f\x5e\x46\x57\x02\xd7\x7a\xbd\x74\x45\x8b\x13\x95\xc3\x00\xe0\x36\x55\x0c\x03\x2c\x6c\xc3\x2b\x25\x78\xb1\x73\xea\xd0\x21\xe5\x87\x73\xb7\x23\xb4\x01\x9b\x80\xa5\x09\x77\x03\x87\xcb\x46\xc9\x6d\x54\x22\x00\xef\x71\xbc\x9a\xe3\xa2\x22\xa2\x2e\x06\xc9\x62\x61\x75\xc9\x75\xa7\xc4\x74\x37\xad\x84\x8e\x1d\xfc\x21\x99\xce\x42\x34\x0b\xca\x92\xb7\xf9\x4a\x6a\x98\x0d\x7a\xa8\xbb\x12\xe0\x5e\x7b\xa7\xe4\xf6\x02\x2b\xbf\x3b\x55\x62\x2d\x9c\x29\xb9\x9c\xb1\x5a\x4c\x85\xd6\x5c\xed\xfe\x63\x5f\xba\xb1\xae\xa8\x5d\x90\x6b\x9f\xf2\xe8\x40\xd5\xa5\xdf\x0b\xb1\xc2\xa0\x6f\x0c\x23\x2f\x84\x1e\xe2\xf6\xfb\x24\xbb\xb4\x5c\x2c\x84\xe0\x4b\x3e\x8b\x1a\xec\xcd\x42\x11\x20\xcc\xd5\x01\x35\x36\x18\xbb\x5c\xb8\xba\xec\x33\x5e\x56\x6b\x25\xd2\x92\x3d\x78\xfe\x7e\xb4\xa0\x20\xf2\x22\x19\x21\x00\xf2\xc7\x97\x58\x55\xd4\x0c\x8e\x7c\xbb\x21\xdd\x95\x51\xc3\xa8\x80\x17\x96\x63\xe8\x3d\x2f\x31\x00\xc2\x2f\x80\x00\xc1\xe2\x7b\xfe\x1a\xa6\xc2\x64\xd1\x90\x58\x81\x61\x96\xbd\xe9\x3d\xf4\x17\x0e\xaa\x48\x58\x80\x57\xf3\xe4\x87\x82\xb4\xf2\x82\xbb\xc2\x40\xd1\xa8\x5e\xcf\x9f\xcc\x24\xfe\x2b\x13\xbf\xc0\x3c\xb0\x28\x42\x3d\xe1\x7a\xee\x7b\x8e\xd9\x5a\xb1\x6a\x21\x95\x59\x50\x2a\x18\x8c\x45\xd1\x94\x83\x7d\x2e\x29\x53\x00\x86\x43\x55\xd2\x8c\xaf\x9a\xd5\x87\x2e\x42\x05\xa1\x0e\x86\xff\xa4\xd5\xe7\x85\x2b\x2e\x94\xe5\xe4\x0d\x25\xae\x45\x3e\x6b\x0b\x5e\x69\x31\x31\x30\xfd\xe2\xa4\xc5\x0d\x5f\x62\x35\xc8\x38\x5b\x21\x1d\xe3\xd2\x08\xc5\x7d\xca\xa4\x23\xa3\x4e\xbc\x02\x1a\x36\xf4\xb9\xe2\xde\xcb\xe2\x0d\x37\x8b\xf1\xb2\xc4\xba\xe2\x4d\xa5\xe7\x31\xd7\xfc\x01\x23\xa5\x93\x14\xed\xce\xf4\x81\x70\xa2\xc1\x4f\x9f\x44\x7f\x7e\xd7\x9c\x5d\xf4\xf1\xe1\xc3\x24\x2c\x46\x45\x5a\xf1\x48\xa5\xfe\x30\x74\x68\x95\xdc\xb3\xe7\x21\x7a\x2e\x85\x23\x08\x2e\x30\xbd\x8d\x60\x8b\xd2\xb4\x85\xf0\x6d\x70\x98\x40\x81\x88\x71\xe0\xe8\xbe\xf8\xb0\x0f\xd4\xd9\x26\xb5\x5b\x84\x99\x2e\x48\x2b\xfd\xa9\xaf\x12\x8d\xba\x3f\xf7\xd4\x27\x71\x86\x72\x75\x85\x2a\x39\xef\x5f\xdd\x3f\xb7\xac\xbc\xee\x19\x06\xf0\xb0\x4c\xa6\x05\xf4\x98\x5d\xdd\x67\x0f\x59\x1b\x2e\x63\x13\x25\xf8\x75\xf0\x7d\x0a\x87\x76\x9f\x78\x47\x33\x19\xb2\xd8\x17\x01\x26\x63\xca\x7a\x2d\x9a\x02\x9b\x2f\x63\x18\xf6\xe1\x8c\xb5\x0a\x03\x85\x24\x68\x2e\x5c\x8c\x2c\x3a\x98\x17\x1d\xb2\x99\x0d\xf1\x56\xe3\x95\xac\xe7\x1e\x9f\xfb\x2a\x14\x1e\x9a\x56\xfb\x50\x3f\x78\xd0\x3e\xe9\x47\x4d\xbc\xad\x29\x70\x65\x4a\x53\x7b\x15\xe6\x57\xa7\x4c\x24\x78\xd3\xc3\xb5\x13\x01\xdb\x0a\xac\x4b\x5c\x1a\xbf\xc8\xe6\xa5\x52\xa7\x85\x7b\x2e\x1a\xc2\xb2\xc7\x4a\x7b\x2d\x77\x46\x11\xf1\xb0\x18\x41\x2f\x1a\xaf\xd9\x23\xd1\x23\xea\xe2\x6f\x89\x9c\x17\xd1\x7b\x29\x87\x9a\x17\x2d\xad\xdd\xd1\x24\x9d\x14\x2e\xba\x08\xca\x75\xd6\xfa\xf8\xa2\xf9\x8e\x40\x5f\x3a\x11\xdd\xa8\x5e\xd9\x7b\x92\xab\xe8\x4b\x12\x64\xe2\x7e\x87\xfe\x57\x04\x6d\x27\xc8\x4c\x9b\xb0\x1d\xa8\x2d\x2d\x78\xf1\x9f\x97\xfd\x20\xf9\xb9\x1a\xc0\x18\x7a\x0a\x89\xa6\x78\xc5\xf8\xc4\x65\x9d\x64\x48\x34\x58\xcc\xb8\x07\xcc\x47\xae\x15\xd9\xe0\xdf\x0b\x60\x3f\x1e\x5e\x19\x15\x30\xf5\xc5\x6e\xa3\x98\x5c\x3b\x5c\x54\xab\xeb\x56\xe8\xee\x40\xf6\xaf\x44\x75\x8c\xe8\x2c\x15\xb7\x47\xbc\x2b\x5f\xbd\xf5\xd6\xc5\x2b\x4e\xde\xca\x41\xde\x9b\xac\xe7\x73\x8a\xd2\xde\xfb\xde\xcd\x06\xaf\xb6\x00\x37\xd5\x4f\x9d\xb1\xb5\x4e\x67\x95\x63\x2f\x91\x74\xd0\xb6\xea\x42\xde\x29\x4b\x5a\x13\x69\x16\x2e\x07\xea\x84\xcf\xd1\xbd\x9c\xf8\x1b\x54\x25\xf1\xef\x47\x17\x30\x93\xa4\x1f\x71\xfe\x14\x98\xe6\xd8\x47\x33\x25\x4e\x9f\x4e\x2b\x9d\xad\x03\x0e\x80\x28\x9a\xd9\xbe\x14\x21\x16\x4a\x63\xf5\x0c\x28\xac\x25\x67\x33\x97\xd6\x22\x24\x5a\x66\xb3\x12\x53\x22\xaf\x4d\xec\xe1\x4e\x39\xe4\x43\x12\xec\x63\x32\x22\x44\x9e\x13\x7b\xdd\x8f\x92\x34\xd2\x5d\xa9\xa7\xd2\x56\x8d\xb8\x9c\x24\x84\xa7\x0b\x5e\x5b\x3d\x92\xb4\x1c\x34\x69\x23\xa2\x89\x23\xe6\xd7\x6a\xb8\x6f\x8a\x7b\xa0\xb6\x67\xd9\x6c\xdc\xa1\xc1\x79\x67\xf9\x54\x12\x76\x4f\xce\x4e\x90\xea\x41\xce\xbc\x76\x24\xb8\xe9\xb4\x94\x34\x4b\xbe\x43\x87\x33\xe7\xd1\x4b\xcf\x0a\xe7\x01\xf7\xe9\x88\xad\x87\xf1\x1c\x8f\x6b\x24\x6c\x88\xd0\xd6\xe9\x95\xf1\x81\xda\x79\xd9\xe2\x23\x26\x6c\xa0\x57\x63\xba\xe8\x97\xc0\x04\x63\x47\x7c\x9f\x0f\x7a\x0e\x45\xcc\x4b\xe7\x75\xdc\x8e\x76\x31\x58\xc7\x0f\x3b\xb9\xb3\x88\xd8\x2a\x67\x91\xfa\x46\x2a\xd7\xe3\x4f\x6b\x50\x80\xd4\x78\x26\x7c\x9f\x38\x41\x05\xa6\x33\x4c\x6c\x2c\x1e\x79\x24\xd9\xae\x94\x9c\x2b\xa1\x7d\xfa\x93\xc8\x00\x54\xb8\xc2\xd5\x51\xf8\x8d\x9d\xd0\x11\x68\x4f\xae\x96\x06\xda\x9b\x1a\x93\xa8\xd4\xb8\x27\xf4\xbc\x6f\xcd\x83\x07\x51\x71\xff\x7a\x8f\x17\x8e\x3f\x0c\xf1\x1b\x33\xdb\xf2\x83\xdf\xd7\x8c\x1a\x3b\xee\xdd\x95\xcf\x22\xbd\xe2\x9a\x07\x36\x47\x52\x83\xe8\xe8\x25\xe4\xe9\x6f\x8d\xab\xba\x59\x87\x3d\x9b\xda\x93\x57\x55\x92\x30\x7c\x53\x8a\xed\xea\xd8\x40\x78\x0b\xe1\x69\x55\x75\x84\x79\x80\x7d\x13\x35\x02\x4d\xee\xd8\x7a\xa7\x27\x25\x2b\x4f\x9b\xea\xa4\xbd\x3e\xe8\xb7\x50\x67\x77\x82\x68\x5e\xfb\x6e\xea\x79\x29\xe7\x74\x90\xbf\xbc\x13\xe9\xc0\x81\x18\x36\xac\xf7\x71\xd7\x7d\x2e\x62\x4d\x3a\x6a\x4e\xa9\x33\xc7\x46\x54\x8c\x8e\xfc\xb5\x12\x2f\xba\x6e\x75\x05\x1b\xb1\x47\x4f\x1a\x5d\x9b\x7b\x17\x5b\x59\x1a\x48\x4c\xb6\x30\x1e\x39\xbb\x9b\x1d\xe6\x9a\x5b\x6c\x66\x17\x84\xe6\x5e\xd2\x54\xf2\x5b\x99\xcc\x33\xbf\xab\xb1\x2d\x90\x9a\xe7\xf6\xa7\x31\xcc\x31\x88\x6a\x6e\x57\xab\x26\x78\x88\x3b\x6e\xd5\x00\x8f\x6b\x26\xbb\xc0\xe1\x88\xe6\x4e\x9b\x6d\xc4\x8d\x11\xb5\x5f\xc0\xd0\x4d\x77\x0c\xd6\x53\xcc\x0a\x55\x61\x78\x75\xe2\xc3\xd8\x76\x09\xed\xcc\x4b\xb1\xe4\x37\xe5\x72\xbd\x74\x81\x00\x3e\xbe\x2c\xcd\xf3\x70\x4c\xea\x2b\x59\x55\x6f\xf8\x4d\xc2\xf2\x45\x9a\x98\xa2\x9f\x0f\x27\x31\x8d\x80\x80\x41\xea\x2d\x6f\x3a\xbd\xf2\xf7\x7a\xdc\x8f\x62\x18\xfb\x07\x86\x10\xc5\x9c\xdf\x3d\xa0\x24\xdc\xe1\xfe\xa8\xd0\xd5\x68\xa8\xc0\x50\x97\xcf\x6f\x92\x1d\x03\xe2\xb4\x84\xfa\x12\xa0\xe0\xff\x12\x00\x52\x5c\x93\x96\xee\xa0\x4b\xbd\x8f\x3d\x84\x9a\x99\x9d\x97\xac\x39\xec\x05\xdc\xe1\x69\xaa\x82\x8a\xf2\x76\xce\xa5\x57\x21\x5c\x50\x56\x15\x4e\xcf\x03\xdb\x13\x63\x16\x36\xbd\x6b\xc3\x5b\xc0\xdf\xf0\x9b\x34\x14\x91\x48\x90\x8e\x1a\xa8\x8e\xfc\x2c\xbe\x0f\x9d\xe8\x1a\x8e\x67\xe8\xbf\x35\x59\xa7\x4f\x9f\x12\x1a\x9f\x85\x9e\xb9\x08\x85\xae\x6e\xa1\xd7\x2d\x52\x7d\x1d\xa4\xc1\xb4\x46\xcc\xdf\x8d\x0c\x7d\x14\xdb\x7f\x0a\x4a\xdc\xcf\x7a\x90\x87\xfb\x41\x47\x77\x8e\xb7\x4c\x09\xf8\x3b\x76\x9a\x21\xdc\xd3\xbf\x11\xc1\x76\x5e\x20\x5e\xf1\xe3\x48\x08\x3d\x68\xa3\x98\xbe\xc6\xab\xa7\xd4\x69\x10\x4c\xe3\xe6\x19\xb3\x03\x6f\x15\x32\xf6\xaa\x28\xb7\x23\x44\xfa\x2f\xb8\x61\xdf\xa0\x02\xec\x1b\x78\xc5\x18\xc7\xa4\x8f\xbb\xc2\x2e\x93\x50\x87\x8e\xdc\x4a\x60\x7c\x02\xeb\x72\x17\xb6\x4f\xba\xb7\x75\xef\x45\xdc\xc2\x23\xb8\x49\xfd\xbb\x41\x23\xf2\x99\xe3\x30\xf9\xac\x19\x08\xb2\xc7\x45\xdc\xa5\xc5\x4c\x8c\x62\xd9\xf3\x82\x72\x6e\x8a\xbf\xdf\x41\xd5\x04\x2c\x53\x47\x08\x00\xcd\x90\x4e\x33\xe8\xba\x4a\x8f\x49\x9d\x76\x50\x49\x05\xb1\xa3\xa7\xa3\x73\xe5\x6a\xab\x53\x8e\x05\x0d\x8a\x29\xc2\xd8\x92\x83\x5a\xa2\x58\x0b\xc7\x83\xa1\x2a\xd1\x92\xd7\x58\x86\x37\x78\x3d\xb8\xa8\x2e\x78\xba\x73\x44\x3e\x5f\x2e\xb9\x29\xa7\x04\xf8\x08\x7c\xfa\x5a\x97\x39\xc1\xea\xd8\xb8\x7c\xcf\x4b\xd2\x78\xd9\x7b\x11\xeb\x4c\xa2\xf5\x83\xc7\x5b\x3b\xc8\xb9\xdd\x89\xa2\xf6\x63\x57\x37\x20\x51\xc4\xb6\xc5\x17\xaf\xb4\x04\xb4\xc7\x8a\x1c\x08\x42\xed\x4f\xd6\x26\x8d\x42\x84\x9f\xa1\xeb\xbd\xc1\x38\x05\x48\xc5\x56\xda\x55\x88\xb0\x92\x55\x82\x74\xc6\x75\x52\x86\x0d\x01\x07\x80\xaf\x6a\x8a\x16\x83\xcc\x8c\x60\x37\x75\xf9\x04\xb0\xc6\x6f\x7c\xaa\x70\x25\xbc\x2e\x58\x25\x0c\x73\x05\xec\x3d\x2c\x2a\x25\x89\x76\x7c\x3c\x79\xce\x4a\x32\x44\x1f\x5b\x70\xe8\x28\xd8\x7a\x45\x10\xa3\xa2\xea\x5b\x25\x31\x21\x01\x96\x4c\xf2\x09\x1e\xc0\xc9\x96\xa7\xf3\xc6\x47\x4e\x48\x24\xc2\xb2\xfe\x8c\xd4\x2a\x0e\x59\x44\x35\x08\x25\xc1\x08\xd5\x54\x73\xc9\x2f\xda\x5c\x0a\x85\x66\x0d\x21\xf6\x72\x23\x94\x2a\x0b\xaa\x4f\xed\x2b\x94\x11\xe6\x16\xc2\xdf\xb7\x50\x6a\xb5\x75\x1a\x1d\x28\x4b\x14\x53\xee\x30\xdb\x2a\x80\xd9\x02\xec\x2b\x88\x85\xbc\x99\x41\xf7\x05\xd4\x05\x7b\xe0\x5c\x0f\xa2\x61\x8f\x3b\x5d\x50\x03\xb6\x79\xc2\x0e\xf1\x9a\x51\x7e\x8d\x31\xc7\xf9\x39\xb4\x88\xd9\x4e\xe0\x1a\x8e\x70\xcb\x14\x6f\x16\xcd\x81\x49\xb7\x16\xc0\xd8\x33\x4a\x70\x01\x37\xae\x92\xb5\x81\xc2\x5a\xbe\x70\x57\x3e\x12\xd1\x3b\x4a\x51\x3d\x4f\x4f\x6c\xcf\x5f\xfd\x34\x8c\xe9\x1d\x27\xe1\x1c\xb9\xc0\x5e\x35\xd9\xb9\x52\xa8\x69\x24\x26\x4e\x90\x6f\x04\x46\x25\xbb\x9a\xaa\x8e\x1d\xde\x76\x0f\xb2\x6c\x0e\xa8\x37\x69\xd6\xf7\xda\x32\xcb\xd8\xc4\x98\xa6\xf6\x0e\xe9\x48\x14\x39\x39\xe7\xe4\x84\xbd\x2c\xe7\x6b\x05\x95\xc8\xd8\x42\x6e\xd9\x8c\x53\xf9\x1b\xdc\x20\x4b\x6c\x9a\x61\xe1\x27\x44\x84\xf7\x58\x29\x44\x65\x78\x14\xb1\xef\xe6\xf1\xdc\xfe\x1e\x26\x43\x21\x93\xcd\xd0\xfe\x48\x18\x44\x48\x9e\x25\x9b\x44\xb0\x33\x89\x48\x77\xab\x87\x8e\xc9\x3e\x71\x4c\xf7\xe3\x46\xae\x82\x5b\x67\x73\x9a\x31\x27\x7f\x83\x9e\x6b\x61\x09\x54\x74\x90\x27\xbc\x71\xc8\xb6\x8b\x72\xba\x60\x46\x95\xf3\xb9\x50\x3a\x8a\x28\x8f\x59\x57\x4e\xca\x34\x20\x5f\x5e\x25\x4e\xd2\x29\x3f\xc0\x33\xb3\x05\x9f\x17\x5f\xed\xde\x25\xcb\x45\x76\x6b\x16\x42\x89\x9e\xa7\x56\x0f\xcd\xef\x64\xcc\xdf\x57\x9c\x94\xde\xb8\xed\x66\xa1\x20\xd7\x81\x96\x51\xb1\x36\x57\x23\x8e\x6a\x2b\x62\xed\xbf\x8d\x50\x11\x5d\x74\x56\xee\x6d\x99\x44\xce\x29\xbf\x9f\xf0\x54\xc7\x59\xc4\x3b\x9c\xd9\x36\xc0\x4e\xdf\x6c\x40\x69\x50\x48\xea\x0b\x13\xc0\x5e\xb0\xc2\x61\x0c\xc2\x2e\x4b\xc9\xa9\xa0\xda\x31\x21\x73\x26\xa6\x85\xf9\xc2\x7e\x47\x23\xf7\xbd\x66\x67\x90\xd2\xf9\x51\x8f\xbd\x40\xf4\x5d\xe2\x88\xa3\x6f\x78\x04\x6d\x4b\x33\x5d\xe0\xf9\xac\x0c\x7f\x13\x1b\xab\xec\xb5\xcb\xc2\xca\xc6\xcf\xdf\xbe\xf9\xf4\xfc\xc5\xeb\xcb\xa7\x9f\xde\xbd\xfa\xe5\xc5\xeb\xc7\xc1\xf2\x8a\x83\x11\x8c\x7f\x73\xef\xa6\x68\x3e\x6f\x30\xa7\x41\x29\xd4\xa7\xac\xb5\xb9\x7b\xa8\xd7\xaf\x7e\x78\x71\x70\xa4\x8e\x17\xda\x6d\xc6\x79\xf7\xf4\xb7\x77\x1b\x27\x5a\x2d\x1c\x9c\xb9\x30\x49\x56\xac\x74\x0a\x5f\x12\xff\x3c\x5d\xce\x6b\x94\xfb\x37\x42\x19\x51\xe0\x65\x09\x85\x43\xed\x61\x00\x92\x13\x37\x2b\x57\x68\x91\x08\x06\x67\xf7\x0d\x1b\x05\x69\xfb\xce\x92\x00\x64\x13\xf8\x07\x90\x01\xa0\xb6\xf9\xf1\xb7\x7f\x6b\x59\x47\xc1\xdf\x77\xb3\x41\x83\x3b\xde\x69\x2f\x6e\x20\xab\x15\xbd\xbd\x45\x55\x44\x1e\xe1\x97\x61\xa6\x94\x85\x01\xbd\x03\xbd\x8c\xaa\xf9\x06\xdd\x7e\x08\x18\x36\x2d\x4a\xac\x48\x39\xb4\x37\xf9\x82\x6b\xa6\x04\x25\x7b\x82\xbb\x11\x4c\xf7\x94\x75\x57\xb3\x7e\x55\x5e\x0b\x4c\xb7\x37\x70\x09\xd5\x2d\xa8\x25\xd0\xaf\x36\xe5\xf4\xda\x39\x64\x63\xde\xba\x4a\xda\x1d\x2a\x97\x82\x5e\x55\x6c\xcb\x77\x76\x2e\x60\xf0\x05\x49\x42\x2f\x21\x51\x3d\x0e\x70\xe5\x73\x75\xc9\x35\x5a\x38\x08\x9d\xda\x70\x23\xc6\xd1\x4d\xb9\x9e\xb4\x36\xd2\x78\x7e\x93\xd6\x29\x61\xac\x2c\x1e\x33\x33\x2e\x0b\x51\x9b\x72\x56\x0a\xe5\x3d\x47\x77\xf6\x77\xcc\x4d\xf7\x6f\xfe\xc7\x9b\xf0\xe3\x2f\xf4\xe3\x17\x3c\x72\xd1\x65\x5d\x0e\x91\x34\x9e\xa4\xbc\xcf\x12\x41\xca\xf6\xb0\xc2\x3e\xb8\x4d\xf4\x3c\x5b\x38\x39\x61\x17\x7c\x23\x1a\x1e\xf0\xf8\x7e\x81\xac\x1c\xda\x3b\x50\x81\x6b\x6a\x89\xee\xa8\x25\xfb\x8e\x89\x31\xa5\x84\xbf\xa4\x86\x68\x14\x78\xc2\x1e\x3e\x2c\x13\x6f\x29\x43\xf8\x09\xc8\xea\x37\xfb\x7e\x28\x3f\xc6\xee\x51\xfe\xa9\x87\x48\xff\x00\x10\xc6\x65\xf1\x11\x6e\x6e\xb7\x58\xe6\x5c\x9c\x63\x7e\xd4\x5a\xf0\x94\xd7\x53\x51\xb9\x15\x47\x1f\x44\x5d\x24\x78\x00\xf7\x76\xc6\x2d\x5d\x88\x9b\x52\x1b\x7c\x2d\xc1\xf4\x1c\x19\xf7\xc0\x45\xa4\x2e\xf5\x42\x14\xe0\x09\x75\x37\xe4\x84\x85\x52\x32\x98\xe6\x7a\x33\xe8\x89\x88\xe6\x63\x8b\x09\xb7\xd6\x66\x25\xfc\x64\x71\x3f\xf3\xea\x3a\x2e\xc4\xe0\x16\xe6\x8a\x53\xc8\x5a\x44\xef\xcd\xa5\x50\x73\x11\x35\x2f\x55\x04\x8a\xb4\x13\xac\xac\xed\xa9\xac\x05\x32\x6f\x77\xac\x2a\x61\x99\xac\xcb\xf7\x33\x2b\x6b\x10\xcc\x48\x1c\x9a\x71\xed\x12\x46\x33\x96\xca\xb8\xa7\x4f\xfe\x0e\x74\x86\x83\x3f\x74\xe9\x9f\x72\x14\x37\xde\x41\x66\x2c\xfb\xd7\xee\xce\x24\x1a\x61\xef\x15\xdc\x8b\x3e\x45\x68\xd8\x0c\x4a\x62\x17\x5e\xea\xc8\x0f\xed\x43\x49\xce\xbc\xce\x61\x5b\xd6\x85\x4b\xb4\x17\x56\xf0\xcd\x19\xde\x9c\x31\x62\x8f\x7e\x11\x30\x96\x7b\x15\xb4\x5f\x06\x0e\xf0\x51\xaf\x83\x18\x68\xfb\x85\xc0\x3a\x5f\x09\x71\xbf\xc3\x2f\x05\xf6\x75\x5f\x0b\xec\xf0\x8b\xa1\x83\xeb\x24\x52\x90\x64\x45\x89\x05\x95\xe6\x42\x9b\xb5\x7d\x7f\x63\x6e\x47\x7c\xd3\x62\xe5\xc1\xda\x08\x35\x13\xca\xc7\xe3\xd8\x6b\xc6\xef\x3d\xcc\x27\x2b\xe7\x77\xcb\x07\xb1\x0e\xab\xa1\x17\x08\xc4\x03\x8e\x3c\xd0\x6e\xad\x99\x5e\x03\xfd\x05\x95\x35\xe8\x62\xb5\xe1\x3b\x1d\xe9\xb1\x9d\xff\x2d\x40\x5b\xc1\x9d\xdc\x30\x03\x51\xca\x5b\xdb\xf1\xd6\x8a\x5b\xa7\xd5\xca\xca\x29\x90\x35\x6e\xe4\x73\xf7\xeb\xb2\x9e\x0a\xaf\x07\x73\xc2\x17\x2a\xe7\x2c\x06\x92\xca\xda\x4e\x87\x7a\xb5\xbf\x74\xc2\xa1\x34\xb9\xb7\x94\x3d\xa7\x72\xb5\xfb\x07\x10\x3d\xcf\xed\x34\x1b\x08\x67\xdd\xa4\x65\x57\x35\x32\x72\x34\xad\xca\xd5\x44\x72\x55\xb4\x96\xf8\x6a\x96\xab\xf6\x83\x2e\x01\x58\x4d\x0a\xc3\x25\x83\xd7\x25\xa4\xd3\xe2\x3b\x1f\x36\x32\xb3\xb4\x59\xd6\x71\x84\x60\x08\xc1\xcc\xe4\x22\x48\xdd\xea\xdd\xed\xb3\xa0\x59\xfb\x14\x9c\xa8\x7a\x2a\x67\x74\x79\x2f\x4b\xad\x31\xad\x58\xa8\xae\xe3\x67\x69\xc4\x8d\xc1\x10\xcb\xd2\x2e\x87\xad\xe4\x0a\xde\xcf\x78\x3b\x4a\x08\x53\x5a\x84\xd4\x06\x82\x5d\xdd\x8f\x3c\x5c\xaf\xee\x07\xdf\x68\x37\x8c\x85\x78\xf4\x86\xec\x13\xd5\xed\xf7\xbb\x48\xea\x8e\xb8\x6f\x9b\xc8\xeb\x6e\x39\x74\x9a\x41\xfe\xa3\x23\x42\xd7\xd9\xb7\x0d\x61\xb9\xe9\xe9\xf2\x37\x4a\x06\xb6\x2f\x99\x4c\x34\xdb\xae\x8c\x40\x86\x94\xfe\x3a\x4e\x5d\xd0\x4e\x67\x15\x39\xc7\x8b\xba\x78\xc6\xa7\xd7\x96\xee\x9d\x87\xcf\x95\x77\x0b\x3f\x80\xd8\xfc\x3c\xf0\x61\x06\xe9\x12\x8e\x9c\x07\x6b\xcd\xa2\x2b\x54\x2f\x75\x44\x6a\x3a\x34\x35\xb2\x36\xa0\x03\x91\xce\x64\x44\x3a\x38\xee\x5e\x87\xbf\xac\xc7\xfd\x3e\xd7\xe8\x2e\x2f\x36\xa8\xfc\xd1\x6f\x5e\xfa\x7b\x36\xfe\x21\x7b\x34\x6c\xcd\xf9\x18\xd7\xbe\xf6\x14\x8f\x08\x16\xec\x9a\x4e\xc6\x75\xed\x18\xdf\xc0\x4e\x02\x6f\x25\x65\x3a\x2a\x27\x47\x63\x6b\xa3\x38\xc0\x88\xba\x61\xce\x47\xd3\x77\x26\xf9\x56\xd7\x54\x3a\x89\x7c\xdf\x8c\x58\x66\x3e\xdd\x61\xac\xc9\xb6\x1f\x43\xef\xd0\x51\xe7\x13\x94\x1c\x31\x83\xa3\x1c\x25\xa3\xa9\x24\xe4\x7f\xc0\xf3\xfe\xd8\x13\xd0\x9e\xdd\xf0\x00\x23\x38\x9a\xfa\x9b\x33\xec\x00\xdc\xa1\xc5\x7e\x29\xa7\x20\xcb\x93\xc3\xc1\x0a\x6a\xde\x92\xc3\x90\xac\x19\x87\xea\xb7\xa3\x0d\xbb\x16\xbb\x42\x6e\x6b\x27\xea\x73\xed\x84\x89\x97\x2f\x6d\x23\x42\x88\x28\x4a\x03\x92\xb9\xb3\x59\x2d\xd7\x1a\xaa\xe6\x41\x69\x6b\x51\xc4\x46\x61\x1c\xea\xd8\x98\x0f\x59\x3f\x93\xc5\xee\xf7\x62\xf7\x5c\x6e\xeb\xec\x55\x1e\xee\xd4\xa8\xa6\x6f\xe6\xce\xb6\xc7\xe7\x5a\x58\xf9\xec\x02\x6a\x5b\x8d\xad\xbc\x67\x25\xd7\x73\x59\x88\xbe\x18\xc3\x2b\x26\xdc\x79\x95\xdc\x0a\xf5\x7b\x68\x7f\x2d\x76\x63\x23\x5f\xdb\x1f\xce\xb9\x8e\x8d\xf0\xf6\x21\x6c\x54\x65\x9b\x7d\xfe\xcc\xc4\x78\x29\x0c\xff\xbd\xd8\x0d\xd8\x83\x07\x11\x80\x33\x76\x75\x7f\x73\x75\x3f\x76\x18\x07\x24\x5c\x02\xba\xdb\xf5\xbf\x53\x59\x11\x92\xe1\x7b\x94\xb9\x0d\x33\x49\xb5\x31\xf4\x77\x88\x0a\xa2\x1e\x85\x59\x40\x55\xb7\x78\xd4\x31\xc7\xab\x8e\xc4\xbd\x99\x04\xbd\x71\x7e\x5e\xc8\x06\xe0\x8d\xd6\x00\x1b\x6c\xd6\xf6\x5c\x3d\xa6\xaf\xf1\x80\x98\x14\xfe\xcb\x20\xcd\xdd\x9b\x69\x12\x85\xc1\x84\x6a\x0e\x8d\xba\xea\xac\x33\xcd\x2f\xe2\x58\x43\xe9\x80\x1b\xf3\xaa\x5e\xad\x4d\x8a\xe8\xf8\x64\x8c\xd9\x85\x91\x2b\x74\xb8\x81\xe7\x02\x3d\xde\xe4\x8a\xcf\x39\x28\xb6\xb8\x0e\xb6\x29\x28\x53\x8c\x61\xa8\x30\x48\xe1\x2c\xb9\x1e\xf3\x18\x20\x73\xc4\x5e\x21\x80\x77\x61\xf1\x97\x6e\xb2\xd9\xed\x13\x63\x6d\xe4\xea\x9d\x9b\x17\xf9\x2b\xe7\x8b\x50\x6c\x84\xc2\xd4\x1f\xc1\xd9\x62\x29\x8b\x3b\xd7\xe5\xf3\x15\x45\x28\x09\x47\x52\x67\xdc\x70\xb3\xa7\xd0\xb8\x7d\x07\xce\x2a\xb9\xfd\x37\x76\x86\xea\x60\xf6\xaf\xcc\x79\x37\xb0\xc7\xac\x87\xb5\xbe\x7a\xd9\x95\x24\xa6\xee\xa5\x37\x21\x8d\xf1\xf9\xc2\x2b\x23\x94\x06\x7b\xdd\x72\x4d\xca\xa1\x44\x2f\x64\xf9\x20\xfa\x03\x35\x6d\x71\x47\x25\xc5\x76\xcb\x46\x03\x96\xdc\x08\x32\x62\xa5\xb5\x65\xc3\xb4\x1a\x38\xc8\x98\xbe\xd8\x59\xb4\x0a\x5a\xb1\xbd\x1b\xdf\xfe\xf8\xfe\xfc\x05\x7b\xf9\xea\xf5\x8b\xc7\xe8\x10\x70\xf2\x47\x7d\x02\xff\xf8\xe4\x4a\x5f\x8c\xff\xa8\xa1\xad\x7d\xdb\x60\xac\x7b\x7f\x3a\x60\xdf\x9e\x3e\xfa\x16\x94\x16\x60\x15\x2d\xd7\x4b\xf6\xf6\x82\x3d\x5d\x9b\x85\x54\x7a\xcc\x9e\x56\x15\xc6\xc5\x6b\x66\x5f\x35\x6a\x03\x35\xfb\x4e\x4e\xd8\x8f\x5a\xf8\x84\x73\x1a\x33\xcb\x4c\x29\x9c\x7e\x6e\xf7\xab\xb6\xbc\x7d\xc7\x38\x7b\x76\xf1\x7c\x04\xdb\xc8\xaa\x72\x2a\x6a\x4d\x31\xac\x58\xc8\x01\x40\xcd\xc0\x6a\x40\x47\xe0\xf5\xab\xf3\x17\x3f\x5c\xbc\xb0\xcf\x53\x31\xb6\x9b\xd9\xb3\x78\xd7\x46\x95\x53\x83\xb9\x3e\xaa\x72\x32\x56\xa6\x10\xab\x7e\xcf\xfe\x13\x2a\xec\xeb\xde\x90\xc1\x5f\xef\xbc\x0d\xe3\x0d\xaf\xf9\x5c\x28\xf7\x41\x09\x9c\xa5\xfb\x7b\x3b\xed\x25\x82\x21\xfc\x38\xb3\x5f\x71\x3f\x7f\x2f\x76\xf0\xf2\x0e\xbf\xbc\x5d\xd9\xcd\xd2\xe1\x87\xcc\x58\x09\x44\x4f\x18\x42\xd4\xa1\x57\xc4\x9b\xc3\x6f\x50\xa4\x26\xd3\xd9\x9e\xe6\xa7\xc6\xa8\x72\xb2\x36\x22\x1a\xfa\xa7\x4b\xaa\x46\xe7\xd5\x26\xb2\xd6\x46\xad\xa1\xfc\x93\x0b\x49\xbb\xa4\x7d\x67\xd3\x8a\xeb\x48\x77\xf0\x34\x7c\x59\xad\x2d\x89\x1b\x39\x17\x60\xec\xc9\x79\x93\x0c\x59\xbc\x0e\x78\xad\xbb\x39\x3c\x3a\x3d\x05\x80\x00\x1f\x8d\x46\x58\x96\x99\xcc\x1b\x72\xb9\x42\x6d\xbb\x1b\xce\x51\x3c\xaf\x4a\xb3\x4b\x54\x66\x0a\xf3\x9d\xf3\xa8\xbe\x09\x5c\x93\xa3\x4a\x6c\x44\x15\x26\x8c\x8c\x51\xc7\x34\x44\x39\xef\xaf\xb0\x34\x12\x9a\xb4\x50\xdd\x5b\x97\xa8\x4f\x70\xc6\x16\x2d\xd5\x90\x94\x0e\xc4\x16\x94\x98\xfb\x8c\xe6\x68\xef\x72\x73\x45\x0f\x1a\x8f\xfa\x31\x63\xbf\x93\x5b\xb1\x11\x6a\x48\x49\x98\xca\x25\x57\xbb\x28\xf3\x3e\x28\x18\x57\x4a\x98\xfe\xc0\x29\x3e\xa1\x44\xa7\x66\x3f\x5d\x02\x30\xa1\xa7\x7c\x65\x65\xe8\x3f\xad\xd1\xc6\x06\x8a\x8f\x7a\x23\xaf\xc9\xa9\x8d\xaf\xec\x85\xa1\x20\xc5\x58\x73\xc1\x0d\xb7\x50\xc0\x38\xdb\x72\xcd\x16\x82\x6f\x4a\x28\x1d\x38\xab\x00\x2e\x1c\xbb\x73\xa9\x76\xec\x0d\x9f\x4e\xb9\x52\xb2\x16\x3d\xcd\x5e\x2a\xbe\x14\x93\xf5\x6c\x26\x54\x93\x1e\x2e\xdf\x3e\x7f\xdb\x57\xf3\xb2\x2e\xf8\xe0\x31\x03\xa3\x36\x3a\x5f\x34\x52\xd5\x38\xcd\x11\xa4\x52\x50\x51\xa9\x2e\x4d\xeb\xe5\xca\x15\xa8\xd2\xab\x8a\xef\x6c\xeb\x6d\x39\x85\x9c\x5d\x5b\x4b\x14\x5c\x5b\xf6\x5d\x17\x5c\x41\xf1\x96\xb2\x8e\x40\x38\x85\x12\x5e\x8d\x34\x04\x92\xf6\xff\xff\xf7\xac\x6f\x71\x45\x31\x92\x3b\xda\xa9\xa8\x52\x98\x30\x7a\xb0\xbf\x52\xe9\x4a\x49\xcb\x51\x5e\x15\x0c\x8f\xb1\xa5\x7d\x7f\x7c\x19\x7d\x65\x35\x07\x73\x25\x66\xaa\xbc\x72\xb5\x4a\x89\xa6\x8b\xa1\x73\x8d\x82\x29\xf6\xe8\x8f\x46\xc9\x2d\xbf\x71\x8d\x82\xa3\x7e\x02\x89\x20\xe5\x7e\x6c\x24\x07\x3f\x39\x61\x97\x5b\xe9\x6e\xa2\xb2\xb6\x58\x9b\xc6\xba\x55\x22\x3f\x3c\x93\x9f\xd2\x82\x7b\xf0\x5b\xac\x72\x82\x4b\xae\xe6\x46\x1c\x68\x1e\x39\x15\x5c\xdd\x27\xdb\xe4\xd5\x7d\x17\xb4\xdd\xbc\x9b\x43\xd4\x65\x3c\x95\x14\x4c\x25\xad\xfc\x50\x4b\x67\x54\x89\xaf\xd7\xf2\xcf\x16\xd5\xd8\xed\x19\xd0\xa5\x76\x3a\xd6\x8d\x80\xaa\xa7\x7f\x16\x48\x57\xde\x34\x5c\x94\x53\xd0\x0e\xa2\x23\xdd\xca\x5e\x48\x54\x66\x77\xcc\xd8\x73\x74\x39\xc5\x4a\x9b\xa8\x8b\xa6\x24\xde\x5b\x09\x8a\xcf\xa2\xd4\x7c\xae\x04\xda\x92\x4f\x4e\xd8\xd3\x4a\x4b\x6c\x51\xd6\x7c\x6a\xca\x8d\x9b\x9b\x95\x99\x2d\x14\x4c\xe3\x80\x32\x82\x28\x28\x67\x57\x09\x61\xed\x50\xcb\x08\xce\x2c\x74\x24\x88\x79\x4c\x5d\x64\x4b\x22\x9e\x92\xd0\x19\x61\xcb\xfb\x76\x2b\x30\x7d\x62\x94\xee\x5a\xd3\xe9\xa3\x43\xc5\x4c\xa3\x94\xce\xb8\x21\x30\x58\x9e\xdd\xda\x62\xfa\x1d\xde\x87\xad\xfa\x2c\xd0\x63\xac\xd7\x13\x3d\x55\xe5\x44\xf4\x43\xd5\x34\x52\x86\x92\xc5\x60\x3c\x29\xc9\x21\x7e\x70\x18\x86\x77\x3e\x4d\xbc\xfa\x6e\x07\xc3\xbd\x05\x08\x04\xca\xc6\x87\x21\x78\x75\x7b\xa4\xcb\x8d\xbb\xa5\x58\x2f\xca\x0d\xdd\x26\xae\x02\x0e\xca\xe7\x4e\x68\xba\x8a\x6b\x26\xb6\x8f\x69\x94\x50\xa1\x05\x46\x44\x7e\xb7\x96\x42\x91\x61\x84\xa0\xeb\x79\x25\x27\x70\xd3\x58\x48\x1e\x0a\x5c\x86\x51\x52\xde\x70\x7d\xda\xb7\x85\xbf\x41\xb1\xe2\x45\x39\x23\xe7\x8d\xba\x67\xa0\xbc\xbc\x3f\x2c\x1a\xbd\x81\xc0\x68\xcc\x03\xf4\x9d\x30\x68\x60\x52\x62\xa4\x05\xf8\x90\x16\x62\x2a\x15\x54\xe8\x8e\x16\xeb\xa2\x1b\xd9\x19\x99\x40\xfd\x4f\xe9\xe2\x43\x0d\x12\xf4\xe9\x20\x7f\xbd\xd8\xf0\x00\x35\x1c\xa1\xa6\x06\x38\x85\x08\xc5\x78\x51\x28\xa1\xc1\x64\xd7\x24\xdf\x09\x9f\x5e\xbb\xfc\x7c\x1f\x3e\x86\xb1\x2e\xd0\x85\x85\x4f\x98\x7d\xc1\x44\x54\x6f\xf8\x04\xde\x5e\xcd\x0e\x90\x92\xcf\x28\x3e\xbd\xb6\x9c\x67\xbb\x40\x09\x87\x98\x76\x00\x84\xd3\x86\xc2\xfc\x42\x71\x2d\x8a\x27\xde\x27\xfb\xf2\xd9\x39\xc1\x82\xa4\x85\x1a\x2c\x2d\xbe\x63\x74\x1b\x70\x25\x2c\xfa\x95\xd0\x46\x2a\x8c\xd5\x70\x46\x3f\xe0\x19\xe0\xde\x2d\xa2\xa2\x72\xd4\xf3\x92\xa6\x6e\x49\x55\xad\x45\x8a\xd8\x9f\x2e\xd1\xd1\x31\x62\x9d\x8d\xa4\x98\x70\xfa\x99\x95\xc4\x7d\xe6\x04\x30\xb3\x80\xbc\x01\xd3\x06\x91\xc7\xfb\xff\xc2\x33\xb4\x2e\x22\x8b\xf7\x54\x2e\x97\xbc\x2e\x22\x6c\x6e\xe8\xc1\x72\x29\x57\x49\x71\xfd\xe4\x23\x2a\xf7\xf3\x87\xe1\xf9\xab\x9f\xbc\xae\xc7\x09\xa2\x8e\x5d\xe1\x7c\xc2\x60\xf8\xb7\x4b\x21\xd0\x86\xe5\x93\x12\xe0\x3a\xf4\xc2\xca\x4f\x0e\x17\xad\xf3\x89\xad\x2e\x6c\xa3\x4f\xbe\x5c\xa5\xbb\x8e\xe3\xaf\xe3\x67\xaf\xdf\x9e\xff\xbe\x63\x28\xfb\x9a\x70\x63\xe4\xe7\x7b\x6e\x9b\xb4\x27\x7c\x8e\x93\x9c\x54\x65\x7d\xcd\x64\x7d\x62\x0f\x00\x24\xf1\xb4\x47\x6c\xa9\x87\x60\xcd\xdc\xaa\xd2\x18\x51\x5b\x11\xcd\x8a\x1f\xf6\x75\x39\x85\x8b\x64\x67\x25\xad\x4a\xf2\x02\x6b\xa2\xc7\xe3\x3d\xb3\x10\xcf\x2d\x24\x20\xf1\x47\xa7\xa7\x43\xf6\xe8\xf4\x34\x22\xf5\x77\x4a\x8c\x26\xf0\x88\x92\xf5\x79\xe8\xf3\xc9\x59\xe7\x5c\xcd\x43\x4c\xe8\xe4\xbc\xb8\x0b\x49\xea\x0a\xa9\x98\xe0\xfe\x9a\x25\x64\xd3\x0a\xec\x93\xaf\x9c\x3a\x0b\x39\xcc\x6a\xb9\x7b\x9b\x8e\x12\x18\x6d\xf4\x6b\x17\xbf\xd5\x82\x56\x8e\xe5\x8d\xa0\x0c\x51\x6e\x76\x4a\x70\x72\x65\x44\x21\xc2\x1e\x2d\x3e\x17\x60\xf2\x23\x68\x76\xd2\x4c\xae\xcd\x6a\x8d\x06\xca\x6b\xb1\xd3\x46\xc9\x6b\x11\x27\x98\x29\xeb\xd2\x94\xbc\x2a\xff\x8c\x82\x31\x25\x50\x75\x82\xdf\x12\x1f\x6e\x61\x71\x96\xfd\xcc\xc1\x8d\xad\xb9\xcd\xd4\x60\x26\x95\xd8\xdb\x00\x4f\xd7\xdb\xfa\x2d\x4c\xac\xfb\xfb\xef\xdd\x6c\xbb\x9a\xc0\xcb\xff\xa9\x52\x72\x6b\x9b\x66\x4e\x88\x5a\x0b\x34\xb4\x3a\xcf\x62\x6f\x2f\x47\x65\x05\x6a\xab\x94\xb0\x02\x05\x09\x11\xbc\xaa\xe4\xd6\x61\xd4\xeb\x83\x63\xbe\x24\xb8\x79\x63\x7b\xbf\x87\x6e\x98\x4a\x87\x57\x3a\x66\x4e\xee\x3a\x9a\x88\xaa\xb2\x6f\xff\x3a\x22\x59\xfb\xdb\xd3\x75\x51\xca\xc3\xf5\xb9\xb9\x6d\xd6\x8b\xee\xf0\xd0\x37\x29\xcf\x6d\x7f\x1e\x61\xe3\x6c\x5b\x2d\xc2\x13\xb9\xdf\x5b\x29\x61\x8f\x91\x7d\x2a\xf3\xb5\x91\xbd\x88\xfa\x9e\x5a\xf6\x9d\x4c\xde\xb2\xd7\x99\x15\x2a\xa1\x4e\x61\xb8\xc5\xe0\x3a\x98\x8b\x5a\xd8\x6b\xb1\x60\x7d\x2b\x06\xba\x14\xb9\x65\xb5\x73\xe2\xde\x42\x6e\xeb\x41\xba\xf6\x1f\x22\x88\xaf\x4b\x6d\x9a\xb7\xd2\xcf\x74\x0f\x6d\x05\x8e\xb4\xb2\xf3\xd1\xda\x32\xf9\x48\xc6\x4b\xe6\x15\x6f\x8f\xbe\x36\x72\x15\x8f\xf1\x4c\x50\xcc\x58\xba\x47\xe7\x29\xe7\xc7\x2b\xd8\x3f\x66\xc9\x1f\x14\xac\xe7\xcf\x5f\x9c\x5f\x9c\x47\x97\xb0\xfd\x42\x9a\x8e\xa4\x4c\x54\x83\x4f\x82\x26\x70\x52\x1a\xed\x99\x7c\x9b\x21\xcb\x00\x26\x08\xa3\x04\x3b\x79\x70\x50\x51\x36\xf0\x50\xf0\xc5\x43\xa1\xea\xba\xbd\x77\xa3\xab\xde\x55\x6f\xcb\x4c\xec\xa7\xcb\xe6\x03\x3b\xbc\xc8\xe3\x03\xbe\x31\xc9\x74\x7e\xba\xcc\xc9\x84\xd7\xa4\xfc\x71\x0c\x34\x74\xf7\x5f\x62\x20\x4e\x57\xd4\x04\xf5\x5b\xa0\xa0\x8a\xbd\x7a\x4b\xee\x47\x7c\x9a\x68\xbf\x28\xd8\x1b\xa4\xc1\x52\x15\x58\xda\x56\x68\xd8\x18\xb9\x36\x4c\xdc\xd8\x0d\xf4\x75\x6c\x31\xa7\x3c\x18\xe2\x3c\x19\xa3\xf7\x6c\x98\x5f\x29\x93\x99\xf9\xeb\xef\xd5\xdb\xd6\x3a\x89\x7d\x00\xaf\x18\x4d\xab\x72\x7a\x3d\x2a\x14\x9f\xa7\x61\x0a\x1d\x5b\x2b\x6a\x2b\xbb\x01\xa3\x78\xae\xf8\x9c\xe2\x2e\x13\x31\x06\x6f\x30\xb9\xda\xbd\xad\x29\x9d\x4d\x93\xcd\xc1\xc8\xef\xed\x86\x9f\xdb\xd1\x41\xbc\xcf\x37\x82\x4f\xcf\xd6\xc6\x40\xfa\x8d\x94\x0d\xba\x13\x45\xb9\x74\x21\xc3\x99\x0b\x28\x01\xc1\x15\x7d\x84\x26\x62\xc1\x37\x65\x7c\x9b\xdb\xb9\x63\xc3\x9f\xa1\x9d\xf3\xd1\x89\x4e\x12\xae\xc1\x12\xa1\xb7\x3d\x3e\xb5\xc2\xa1\x7b\x5f\x34\x56\xab\x04\x5c\x34\xf6\x7d\xf7\xa9\xff\x9b\xd3\x21\xfb\xf6\x7f\x24\x9e\x1f\xce\xf5\xc8\xc9\x7d\x8d\x32\x6e\xc2\xbc\x43\x7d\x40\xaa\x30\x80\x52\xfe\x4e\xd9\x90\x35\x66\xc7\x56\x15\xef\x6b\x4e\x7b\xf6\x5e\xf0\x62\xd7\x1f\x3c\x61\x5f\x1a\x0f\xa7\x46\x3a\x2f\xca\x3f\x95\xc8\x5a\x3a\xaf\xda\x88\x65\x29\x7b\x12\xed\x94\x40\xa4\x7a\xcc\x7a\xf0\xff\x38\xcb\x67\x2f\x9e\xbe\xb1\xbf\xbc\x78\xfa\x06\x7f\xf8\xf1\x87\xe7\x2f\xde\x43\x2c\x06\xeb\xf9\x7f\xf7\xba\x1c\xc0\x9a\x77\x5a\x64\x35\x41\xf6\x68\x39\x98\x8b\xb2\x8b\x9f\x48\x21\x83\xbb\x65\x4d\x6b\x2d\x52\xdf\xbc\xd0\xd4\x49\x06\xdc\xbb\x6d\x44\x65\x36\x51\x27\x88\x93\xc0\xb7\x15\x8b\xec\x95\xe4\x35\x95\x29\xbd\xd9\x81\xb2\x24\x4e\x20\xde\x9a\x46\x10\x7a\xc3\x29\xec\x79\xf4\x5c\x41\xaf\xc5\x19\xfb\x4d\xf0\x65\xbd\x81\x41\x0e\x8d\x68\xf8\xe4\x67\xaa\xa5\xfb\x9b\x6c\x9a\xa9\x8c\x2a\x2c\x97\xc3\xcc\xde\xab\x29\xb6\x57\x51\xc4\x40\x9a\x08\x2d\xd6\xa8\xf9\xc2\x8f\x5c\x6b\x39\x05\xf5\xa6\x7d\xe4\x03\x9b\x36\xf1\xd8\xce\xd1\x39\xa4\xbc\x14\xdb\xbd\x73\x6b\x6a\xfa\xc2\x99\x81\xcc\xd5\x3c\xf8\x9c\x65\xa0\x30\xf6\x52\xaa\xad\xe5\xe5\xba\xe2\x7a\xe1\xd5\x7d\xb1\x5a\x93\x52\xa5\x61\x7e\xa3\x22\x44\x5c\x80\xa2\x30\x99\x82\xdb\x44\x54\x37\x5a\x5a\xb0\xa2\x64\xd0\x36\xfa\x5f\x20\x63\xf3\x46\x5e\x8b\x40\xbd\x34\x23\x3f\x03\xa3\x78\xed\x12\xf4\x68\xaf\x46\x3f\xb8\xcf\x81\x81\xc4\x44\xe5\x71\x32\x4c\x66\xd6\xa9\x86\xf4\x7f\x8c\x15\x26\x23\xed\x9f\x5c\x5d\x9d\x9c\xcc\x87\xac\xd7\x4b\x02\x20\x83\xa2\xd3\x84\x5c\xf8\x71\x82\xb7\x99\x4e\x52\xa1\xe1\x2f\xe3\x42\x80\xce\x0c\xf4\x0d\x8d\x6a\x8b\xb3\x86\xac\xd0\x32\xb0\xf4\x1b\xd3\x8d\xa3\x9e\x11\x3a\x2f\x8a\xb7\x13\xb0\x53\x29\xdd\xb7\x17\xc5\xd0\x19\x9a\x7b\xbc\x32\xa3\xb9\x1a\x59\xc9\xa5\xf7\x38\xe0\x67\xd3\x48\x7b\xbf\x81\x24\xa5\xeb\xaa\x4a\x9c\x9e\x21\x7b\x27\xdf\x94\x73\x6e\xa4\x1a\x57\xbc\x9e\xaf\xf9\x5c\xa4\xc6\x7f\xdb\xb1\x27\xea\xd1\x5a\xf7\x92\xbe\x8c\x6d\xac\x34\x5b\xcb\x5a\xf4\x22\x87\xf6\xa6\x87\x8b\x6f\x08\xf6\xb6\x11\xaf\x4c\xd2\xda\xfd\x93\xba\x01\xa2\x77\x2b\x21\x67\x0c\x66\xdc\xc3\x33\x90\x8e\x6c\xc1\x6d\x32\x1e\x0a\xf9\xe1\x33\xb3\xfc\x92\x3a\x89\xdf\x3b\xf9\x43\xdf\x36\xf8\x0c\x3e\x20\xbc\x32\x9f\x2b\x31\x83\xa9\x7e\xf6\x93\x1e\xfc\xd3\xc9\xd8\x08\x6d\xfa\x9b\xc1\xa0\x03\xb6\xfb\xd9\xcb\x15\x4e\xaa\x1a\xf3\xca\xfc\x56\xbd\xc1\xac\x7c\x1b\x6f\x9e\x77\x3d\x60\x0b\x2d\xf1\xea\x15\x9f\x8a\x51\xa9\x47\x4b\x61\x78\xf8\xa5\x6b\x5b\xb3\xe3\x3c\x73\xbd\x5e\xe9\x37\xc2\x70\xff\x67\xf7\xc8\x34\xde\xad\x46\x41\xe0\xdd\x30\xb5\xa8\x0b\x3d\xda\x2e\xb8\xd9\x47\x93\x16\xef\x28\xdd\x7e\xfe\xcd\x68\x52\x9a\xcf\xe4\x79\x3d\xba\x16\xbb\x3d\xf8\xc6\x2e\x07\x31\x7e\x61\xe7\xf0\xb3\x15\x4b\xf3\xd3\x5c\x17\x56\x32\x18\xc1\x3b\x0c\x9e\x7b\x5d\x53\xb5\x6c\x81\xab\x1d\x10\x1d\x5c\x50\xfd\x93\x3f\x54\xe5\x64\xe4\x6c\xaf\x8f\xfb\x57\x57\x17\x0f\x07\x27\x69\xc4\x02\x57\xbb\x34\xaa\xc4\xcd\xb1\xf3\x8d\xa7\xd5\x34\x2f\x08\x75\xfc\x17\xdb\x7f\xc7\x73\x61\x9e\x73\xc3\x7f\x54\x95\x1d\xf9\xc3\xa3\x8f\x83\x7d\x67\xe2\xc8\xc9\xb0\xcd\xa0\x19\xab\x10\x61\x90\xde\x6d\xa3\xf8\x59\x07\xe8\xdc\xcf\x87\x1e\x3c\x60\xf1\x53\x2f\x8f\xa4\xee\x37\x61\x8a\xa0\xb8\xc1\x38\x7a\x75\x9e\x59\xde\x31\x57\xbc\x36\xa2\x88\xf9\x0d\x3a\x4f\x1d\x1a\xa5\xc1\xe7\x4e\x4e\xec\x38\xe2\x31\xfb\xd9\xa9\x73\xc0\xfd\x3e\x19\x9b\xf2\x9a\xbe\x0b\x53\x00\x85\xf7\x04\x33\x1d\x34\xa0\x51\xa4\xb6\xed\x03\x69\x15\x30\x67\x6a\xa8\x17\xa7\x84\xb6\xe2\x91\x9c\x31\x8e\x99\x16\x38\x3a\x08\xf6\x21\xd4\x82\x6b\xc6\xeb\x06\x44\x59\xc3\x53\xc7\xbd\xec\x06\x28\xe7\xd9\xdb\x83\x55\xa5\x36\xf6\xc5\x86\xba\x29\xb5\xce\xd5\x5d\x8f\x40\x35\x00\x3f\x85\x00\x47\x39\x63\x5b\xa9\xae\x41\xd5\xea\xca\xd3\x58\xf9\xc9\x25\xec\x8e\x1e\xf9\x9c\x15\x25\xaf\xe4\x3c\x24\x3e\x8e\xc1\xf9\xeb\x15\x84\x21\xce\xae\xee\xe3\x13\xcd\xc8\x11\x61\x70\x14\x76\xf1\xea\x3e\x9b\xc0\xeb\x28\x99\xa2\xcb\xe4\xbd\xe5\xaa\xee\x77\x13\x21\x98\x5c\xed\x63\xd0\xa7\x7d\x07\xb3\x17\xa8\x27\x7a\x7b\x4a\xda\xf7\x8e\xd1\x5d\xf4\x06\x7b\xee\xb0\xdb\xd1\xb3\x7f\x99\x75\x1d\xb3\xa0\xbb\x1b\x81\x1a\xf7\x20\xa3\xd6\x02\x6e\x81\x48\x9d\xd7\xdf\x0c\xda\x0c\x30\x82\x5b\x2e\xf9\xfc\xf0\x35\x93\x98\xb3\xe2\x31\x5e\xd9\xee\x87\xc6\x00\xdb\xdb\x9d\x87\x00\xe3\xe2\x81\x11\x9c\x5a\xe8\xee\xa3\xbc\x23\x08\x9d\x23\xe1\x0d\x8d\xb7\xdb\x1d\xee\x67\xdf\x05\xee\xa6\x03\x77\xb3\x17\xd8\x47\x4b\xbe\x1a\xb9\x07\xa3\xde\x7b\xa1\x06\x31\xcf\x3e\xaf\x37\xde\xc6\x2e\x67\xec\x2d\xa8\x54\x06\xd9\xfa\x03\x78\x94\xde\x25\x4f\x96\x68\x6c\x28\x57\xef\xf5\x89\xce\x7e\x5c\xef\x39\x46\x3d\x54\xe0\x3c\xb6\x4d\xe2\x4b\x24\x09\xce\x60\x8d\x92\x05\x0e\x5d\x1b\x13\xb2\x09\xbc\xe1\x2b\x0a\x3c\x89\x64\xbc\xee\x96\x5a\x98\xb7\x0e\x51\xd9\x4d\xc4\x37\xfe\x08\xcc\x19\xc7\x1c\xa4\x48\xf7\xdf\xbf\x77\xef\x10\xc4\x11\x58\x46\xba\xe0\xba\x0b\x30\xda\x94\xa7\x4a\xf1\x1d\x7b\xf0\x20\x45\xa3\x13\x80\x3f\x9c\x7e\x04\x19\x18\x9d\x87\x7a\xdd\xed\x1e\x25\xed\x1a\xb7\x97\x49\xf5\x1b\xa9\xdd\x65\xd3\x96\xdc\x5b\x22\xf8\x1d\xc0\x7e\xd8\x0c\xd9\xe6\xe3\x81\x57\xc1\xc9\x09\x7b\xc9\xb5\x21\xdb\x52\xf0\x83\xe0\x35\x13\x4a\x49\x35\x3e\x7e\xb8\xd8\x7a\xe4\x87\xec\xda\xaa\xa3\xb9\xe8\x79\x30\x8c\xe5\x89\xc9\x7e\x19\xad\x78\x25\x8c\x11\x5f\xeb\x84\xb6\x7e\x06\x1a\x39\xf6\xdc\xe6\x67\x14\x9d\x59\x0e\x14\x27\xd5\x57\x3e\xbc\xc1\x65\x11\xff\xef\x1d\x4e\x81\x9d\xc5\x5f\xb4\x91\xd3\xeb\xf3\xe8\xf3\x78\x2a\xeb\x29\x0f\x99\x34\xfd\x19\x49\x56\xeb\x6b\x59\x5d\x8b\x9d\x95\x2a\x36\xcd\x67\x28\x57\xac\xb4\x4f\x7c\xae\xb4\x78\x55\x9b\xbe\x7d\x3e\x3c\x89\x5b\x58\x98\xa5\xfe\x81\xff\xd0\x2f\x07\x16\xbf\x25\xfb\x8e\x9d\xe2\x3f\xbe\x67\xdf\xfe\xcb\xbf\x34\x00\xa6\xd5\x42\x7a\xaf\xea\x0d\xaf\xca\x82\xa1\xfb\x75\x59\x33\xc2\x2f\x22\xc8\x4e\xea\x21\xeb\x11\xb6\x3e\x5c\x8b\xdd\xc7\x74\xf0\x56\xa5\x8f\x16\xf2\xfc\xb2\x3f\x94\x1f\x5b\x53\x81\x02\x5c\xf3\x49\x8a\xc9\x5a\xaa\x25\x28\x65\xcf\x2f\x2e\xb0\x5b\x63\x48\x0b\x4e\xcd\x27\x83\xe6\x16\x77\xec\xd3\x87\x12\xea\x03\xcc\x27\xcd\x29\xb6\xfe\x99\x63\xd8\xa9\xaf\x14\x44\x8e\x04\xef\x4e\xe4\xde\xf1\xae\xe7\x38\x79\xd3\x99\xeb\x78\x20\xc9\x79\x5c\xed\x46\xb2\x1e\xa1\x09\xf0\xe0\x09\x6f\x68\xf1\xef\xdd\xcb\x5c\xc2\x6b\x2d\x46\xa4\xa4\x1e\xa1\xde\x7d\x64\xbb\x1d\x84\xdd\xa1\x85\xcf\x8e\x01\x9a\xf8\x91\xb7\x5b\x8e\xc0\x51\xe3\xb8\x61\xba\x95\xf8\xf9\x91\x8c\xaa\x46\xab\x6a\xad\x47\xcb\xb2\x5e\xeb\xd1\x9f\x85\x92\xa3\x3f\x4b\xb9\x3c\x5e\x84\xb1\x20\xde\x55\x6b\xfd\xc6\x02\xf8\x3f\x42\xc9\xff\x23\x21\x75\x6e\xd7\x68\xd3\xe3\x16\x92\xc0\x3f\xa7\x35\x74\xc1\xdc\x8c\xd0\x85\xea\x56\x40\x7f\x72\x86\x98\x4d\x9b\xfa\x1a\x02\xe1\xb9\x6f\x9e\x65\xfb\x82\x6b\x33\xe2\xba\xe4\xf5\x88\x2f\x27\xe5\x7c\x2d\xd7\x7a\xc4\xf5\xc8\x6c\xa5\xbd\x5b\xd6\xcb\x4e\x09\x14\x3d\xb4\xc7\x4a\xcc\xb9\x2a\xce\xff\x78\xfd\xd4\x75\xcf\x2f\x16\xcd\x51\x23\xd0\x8d\x8c\x2c\x13\x51\xb2\xf3\x6d\x1d\xcb\x44\xd8\xef\x37\xcf\x4a\x08\xe0\x52\xb2\xea\xa2\x07\x1a\x60\x22\xab\x4e\xe5\x47\xc0\xd1\xae\x9e\x3e\x93\x55\x71\xc1\x67\xe2\xc2\xf0\xfc\x09\x8c\x00\x5a\x8c\x4c\x40\x7d\x76\x10\xf4\x7e\xfe\x81\x30\xed\xd0\x4f\xf5\x33\x74\xf0\x8f\x97\x73\x0b\x26\x72\x00\x52\x66\x1d\xc7\x89\x89\x16\x33\xb6\xe5\x21\xb4\xf8\xb8\xf7\xd1\x56\x95\x47\xd0\xaf\xdf\xca\x73\xd7\xf1\x67\xdb\xef\xc0\xa4\x0b\x31\x7d\xf4\xed\xf1\xb0\x9f\xdb\xe6\x5d\x20\x67\xb2\x36\xa3\x19\x5f\x96\xd5\xe1\x23\x6c\xd1\xf0\x52\xd6\xe6\x25\x34\xcf\xa1\x01\xa0\x1d\xf7\x0e\x14\xc6\x82\xea\x7c\xf5\x21\xa4\xa5\xc4\x84\x79\x5f\x65\x6a\xce\xff\xe5\x78\xf1\xf0\x65\xea\x33\x93\x9d\xe8\x42\x2e\xc5\xe8\x5a\xec\xf4\x88\x3c\x47\x8f\xe6\x59\xb6\xe7\xef\xc5\x4e\x7b\x23\x74\x66\x7b\x6c\x63\x2b\x37\xd7\xf3\x4e\xa1\x33\xf3\x08\xa5\x1e\x78\x79\xb4\x64\xaf\x7b\x9b\x41\x46\xe0\x6b\xca\xb0\x47\x3e\x2c\x41\x8e\xef\xf7\x5e\xd8\xff\xb3\x92\x53\x34\xe1\xc8\x76\xf5\x98\xbd\x80\x4c\x6e\xa2\x20\xc3\x7f\xef\xc8\x17\xa3\xda\x65\x95\x2d\xed\xa5\xf2\xa2\x78\x46\xff\xee\xc7\x3a\x4d\x36\xe5\x98\xe7\xea\xe6\x57\x4d\xdf\x8a\x7e\x71\xb5\xb8\xf6\xd3\x63\xc9\x6f\x46\x68\xca\x18\x39\x47\x8e\x63\x8e\xe8\x92\xdf\x60\xf0\xe6\x85\xf3\xfe\xc8\xd2\x01\x54\x70\x47\x32\xe3\x4a\x8c\x66\xf6\x5f\xc7\x13\x04\xf4\xb6\xa4\xf6\x54\x89\x97\xf6\xff\xbb\x06\x31\x9c\x54\x1f\xa4\x81\xbf\xc5\x08\x86\x83\xca\xe3\x05\xfa\xb2\xe4\xe1\x83\xc7\x06\x1a\x5c\x50\x29\x78\xdc\x2d\xdf\xe1\x6f\xd1\x39\x02\x40\x1d\xa1\x62\xf1\x28\xce\xf1\xa6\xe1\xab\x91\xe3\x1f\x2b\x3e\xbf\xe3\x39\xb7\x3d\x0f\x9d\xf3\x15\xd7\x7a\xc4\x2b\x33\xa2\xa7\xf8\xad\xed\x7c\xf6\x11\x21\xf5\x4d\xf0\x7a\x0e\x46\xbf\xb5\x16\xea\xe9\x5c\xd4\xc6\xd9\x36\xde\xf0\x29\x7b\x7b\xc1\x7e\x39\x89\x39\x03\xbc\xd6\x5f\x0b\xc3\x9e\x56\x66\xf4\x68\x3c\xfe\x5f\x94\x87\x54\x26\x99\xac\xfb\x46\x32\x92\x53\xd0\xa3\x18\xd2\xc8\x41\x8d\x1d\x99\x82\xaa\x65\x3d\xb2\x83\x30\xbd\xd3\x46\x80\x1f\x29\x94\xfd\x02\x0b\xa9\x7b\xae\xca\x95\xa8\x31\x8a\xd4\x3e\x5c\x57\x2b\x37\xf9\x68\x5d\xec\x8c\xf5\xef\xd9\x95\x3d\x78\x40\xd6\x55\x6c\x73\xb9\x5b\x41\x49\xc2\xde\x4a\xae\xd6\xab\xde\x60\xaf\xc2\xc9\x2e\xe5\x69\x65\x7e\xc0\x18\xad\xee\x1d\x00\xe1\xf3\xef\xbf\x05\x56\x3c\xfd\x0f\xb9\x07\x76\x61\x07\x37\x01\xd8\xd0\xdf\x7f\x13\xde\xd8\x69\x7c\x85\x4d\xf8\x5a\x1b\xf0\x35\xf0\x6f\xd7\x74\x1c\xfe\x37\xb7\xe1\x6f\x08\xf8\xa7\x3c\x4c\x25\xa6\xa2\xdc\x88\x91\xa8\xa7\xb2\xd8\x23\xcb\x91\xe4\x71\xf2\x87\xfe\xda\xcc\x46\xbf\xf9\xac\xf8\x76\xf0\x4f\x27\x03\x6f\x23\x4e\xd4\x26\xa9\x7e\x2c\xd5\xdf\xcc\xa4\x62\x57\xf7\x9b\xc3\x5e\xdd\xcf\xa8\xbb\xd0\xdc\x0c\xe3\x45\x36\xc4\x58\x71\x93\xd5\x44\xbf\x20\x98\xf9\x05\x53\xf6\x75\x59\x8f\xbc\x63\xf7\x91\x06\x8b\x86\x73\xf5\x5e\xd8\xe8\x3f\x7e\x34\xe0\xe0\xd5\xdd\x09\x75\xc2\xd5\x88\x22\x1e\x8e\x11\x8e\x9b\x71\xf1\x59\xe9\x38\xce\x44\x3f\x5a\xf2\x1d\x88\x17\x23\xae\x94\xdc\x8e\x8e\x92\x61\xba\x5c\xca\xbb\x71\x43\x63\xc9\x8d\x18\x85\x80\xf3\xe3\x17\xd4\x8e\x78\xcf\x2f\xcc\xae\xe3\x6f\x4c\xd2\xc9\x98\xbf\x96\x9e\x83\xea\xe4\x48\xaa\x5e\x94\x33\x33\xc2\xf0\xac\xdb\x6a\x67\xa0\x2f\xd6\xdd\xde\x23\xbc\xb9\x7e\x07\xd1\x1a\x9f\x49\x2d\x8c\x9b\x77\x76\x9f\x2c\xd3\x1f\x4d\xf5\xb1\x84\xe6\x35\x44\x3f\x6a\xa1\xce\xb5\xfe\x51\x55\x7b\xc1\x8e\x8c\xb8\x39\xf6\x10\x36\x61\x43\x62\x9d\x1c\xf0\xad\x54\xc5\x08\x12\x46\x8e\xe0\xa6\x1a\x55\x62\x76\x6b\x1d\x8b\x05\xf2\xcc\xc2\x78\x63\x41\xbc\x16\x33\x93\xd7\x8c\xb5\x54\x2a\x7b\x3b\xee\x9b\xe5\x9d\x54\x41\xe9\x68\xef\x49\x65\x73\xfb\x79\x36\x7b\xee\x9b\xe8\xb2\x2c\x8a\x23\x78\xdc\xde\x99\xbe\x01\x18\x77\x9a\x6a\xab\xeb\x17\xf0\x09\xfa\x92\xf1\x2a\x1c\x2b\xc1\x8b\x0b\x8c\x20\xca\xe4\xa0\x89\x5b\x82\xfb\xc2\xee\x69\x55\x45\xef\x7d\xcb\x7e\x12\xdf\x49\x37\xd5\xf8\x47\x97\xfc\x2b\xeb\x66\xdd\xac\x05\xa5\x1b\x4e\xa9\xda\x45\x22\xa1\x93\x31\xe6\x80\xac\x67\xe5\x1c\xc3\xfa\x5a\x11\xa9\xdf\xa4\xd9\xff\x3b\xdc\x25\xbf\x1c\xf2\x18\x9d\x0b\xf3\x0e\x82\xb1\x3a\x2b\x61\x45\xa8\x69\x17\x1f\x07\xb5\x98\x15\xc5\x5c\xfa\xd5\x89\xe2\xd3\x6b\x61\x44\x41\xc9\x71\x96\xb2\xc8\x78\xeb\x4e\xa4\xac\x04\xaf\xbf\x50\x2e\x97\xcb\x85\x20\xf6\x6c\x24\xa3\x30\xc9\x43\x7e\xae\xcf\xdc\x40\x8e\x0f\x76\xa7\x92\x71\x51\x28\xe3\x49\xb3\x0f\x34\xed\x4c\x7f\x83\x91\x80\xce\xab\x39\x84\x02\xfa\xfc\x9b\x3b\xb9\x8e\xf2\xf9\x68\x61\x5c\x90\xd5\x4a\x28\x5d\x6a\x33\x84\xbc\xde\x65\xa8\x3c\x81\x68\x1c\x32\xc5\x29\xd9\x06\xc7\xd4\x32\xe4\xee\xec\x9d\xc9\xbb\xfd\x9b\x71\x4e\x97\x7e\x76\xc7\x23\x2c\xb2\xd0\xc6\xd8\x02\x30\x8d\x12\xd9\x71\x88\x23\x7c\x7f\x72\x95\x09\xd8\xa4\xd4\x3c\x8d\x78\xb9\xa3\xba\x48\x55\x08\xd5\x6c\xde\x59\x31\xad\x11\x04\x8a\x0b\xe7\x90\x6b\x18\xb3\x75\xa5\x47\x81\x50\x75\x04\xe5\x77\xa0\x24\x43\xff\x31\x52\x8e\x38\x05\x18\x7d\x87\x65\xdb\xa0\x0e\x7e\x94\x36\xaf\x6e\x05\xd4\x7c\xf5\xb3\xe1\xad\x5c\x38\xb3\x62\xef\xe9\xe8\x0a\xe4\xd9\x7f\x36\xc2\xae\xe3\x7e\xfc\xe3\x9e\x8b\x67\x2d\xfa\xed\x3e\x1b\x99\xd8\xd0\x2e\x4b\x33\xf6\x8d\xbd\xd3\xf7\x19\x6e\x42\x64\x90\xf6\x19\x02\xb3\xc1\xa6\xc3\xfc\x44\xf6\xe4\xfa\xf8\x2b\x0e\xd5\xe9\x1c\x86\x4a\x7e\x8f\x82\x83\x27\x3b\xc4\x64\x76\x93\x55\x6d\x44\x5d\xd0\xcd\x08\xa7\xcb\x67\x81\xc1\xdc\x43\xf9\x10\x67\x08\xa0\x13\x51\xe0\x9c\xcf\xa9\xad\x3f\x45\xa1\x73\xdf\xdc\x95\x85\xec\xa1\x9e\x0c\x1b\x69\xe2\xb2\xf3\x78\x85\xbd\xf8\x47\x3f\x5e\x0d\xcb\xcf\xde\xe3\x95\x89\xac\xfe\xaf\xe3\xe5\x8f\x57\xd3\x86\x76\x87\xe3\xb5\x87\xac\xfe\x7d\x1e\xaf\x3d\xd4\x93\x39\x5e\x4d\x14\xb7\x53\xcb\x43\xfc\x39\xe3\x10\x61\xe4\xec\x72\xe8\x3b\xee\x71\x44\x19\x31\xc0\x29\x5c\xad\x6b\x7b\x8e\xc8\x01\x1b\xe2\xda\x30\x8c\x4d\xcd\x31\x97\x4a\x24\x80\x74\xc4\x82\x11\xb8\x73\x48\xd7\x85\x07\x28\xcd\xd3\xd6\x1e\x7a\x9c\x3d\x82\x5c\xcd\xd1\xbe\x05\x50\x1a\x33\x08\xd5\xce\xa4\x4b\xbc\xe6\x21\xed\x43\xb1\x5a\xd7\xe7\xf1\x04\x93\xd3\x19\x7e\x1f\x86\xd1\xa3\x0a\x60\xa2\xde\x94\x4a\xd6\xcb\x28\xed\x2d\x3d\xa1\xe6\xc2\xf4\x7b\xd1\xe7\x5e\x54\xbf\x0e\xdd\x25\xe3\xbe\xf7\xce\x9c\x1f\x5d\x0f\x52\xa5\xc6\x60\x49\x31\x8d\x27\x29\x1d\xf0\x2f\x5f\xf6\x64\x1c\xa5\xd8\x63\xdc\x4a\x8c\x28\x8b\x17\xe4\x8f\xe6\x5f\xc2\xca\x1e\x47\x28\xfe\xfc\x99\xf5\xe2\x00\x93\x52\x3e\x76\xd1\xd5\xe3\xd5\x5a\x2f\xfa\x83\xe8\x63\x34\xad\xc7\xf1\x1f\x51\x13\x59\xbf\xb8\x29\xcd\xe3\x18\xbb\x51\x89\x34\xfc\x0f\xf2\x93\x5a\xf8\x72\xd5\x4f\x7d\xd4\xe0\xcb\xba\x06\x82\xad\x2a\x1f\x6b\xde\x76\xdc\xc3\x3c\xa8\xd1\x1e\x4c\x2b\xa9\xc5\x48\xd6\x23\x71\x53\x9a\xde\xa0\xe5\xe3\x46\x0a\x72\x68\xd6\xcf\x3b\xea\xa7\xa5\xbb\xb3\x53\x88\x91\x6d\x49\x2a\x93\x52\xd4\x3f\x7a\x29\xe6\x3c\x29\x7e\x44\x49\xce\x74\x92\x57\x0f\x7f\x1d\xa2\xcf\x3f\xf2\xa2\x6d\x19\x87\xf2\x7a\x76\xe2\x24\xe6\x43\xc4\x5e\xea\x77\xf1\x2d\x71\x80\x99\xf8\x24\x67\x5d\x59\xce\xd2\x05\xbe\x42\xcc\xc0\x12\x9a\xc9\x03\xe8\x0d\x99\x7d\xc1\x87\xe0\x5a\x2a\x4e\x91\x18\x47\x20\xdc\x54\x0b\x81\x89\x7b\x76\x21\xc1\x89\xbd\xf7\xb1\x64\x05\x06\x8e\x7c\x93\x82\xde\x8b\x86\x74\x0f\x33\x68\x48\xf2\x1c\xb4\xf6\xbc\x75\x37\xcd\x85\x79\x4e\x29\x3e\xfa\x83\xf1\x44\x16\xe0\x52\xfa\x25\xc6\xce\x8f\x8e\x78\x6f\x83\x9f\x7d\x8b\x68\x9d\x86\x5b\x2f\x03\xf8\x4a\x73\x9e\x56\xfe\xe2\xec\xfc\xe2\xc2\x32\x95\xd2\x65\xa7\xc2\x6f\x3f\x80\xfc\x51\xed\x70\xa6\xa5\x46\x45\x0d\x4a\x42\xbe\xb9\x4e\x4a\xb2\x42\x94\x30\xc4\x2d\x74\x8b\x56\x10\xa3\x8c\xaf\x3c\x04\x11\x0b\x57\xad\xd6\xf8\x14\x4c\x1e\x85\x5c\x43\x01\x40\xe2\xfc\xc9\xbc\x1b\xdd\xff\xd5\x65\x42\x14\xb3\xf2\x26\x1d\xd3\x4f\xf4\x84\xbe\x62\x32\x85\xa3\x14\x0b\x5a\xff\xc4\x93\xab\xd9\x02\x1b\xe2\x04\x6f\x13\xa4\xe7\x15\x6a\x38\x85\xb3\xde\x68\x04\xe3\x8e\x7a\xf1\x86\x86\x6c\x32\xee\x5f\x94\x4f\x86\x94\x0b\x18\x03\x0d\x55\xbd\x3d\x97\xff\xbf\xff\xf4\x97\x00\xf7\xcb\x3f\xfd\xc5\x4e\xf0\xcb\xff\xa5\x29\x76\xe7\x3f\x9e\x49\x4a\x2e\xb8\xef\x00\x9f\x5b\xaa\x8e\x9d\xb0\x4e\x07\x98\xbd\xc8\x92\x05\x6d\x8a\x4b\x47\xe1\x01\x36\xce\xbf\xc3\x9c\xaf\xc4\xcb\x20\x8e\x64\xe7\x67\x01\xae\x60\x91\xb6\xb0\x4d\x4e\xae\xfc\xe7\x0a\x37\xb6\x10\xba\x54\x20\xce\xd1\x88\x43\xe6\xeb\x81\x1e\x27\xb6\xe3\x6a\x92\x38\xf2\x9b\x28\xad\xfa\xea\x06\x02\x07\x5d\xed\xaa\xd5\x4d\x4e\x04\x08\x5e\x6c\x69\x9e\x8b\xa6\x60\x4b\x98\x5b\xdd\xa4\xc9\x32\x90\xb2\xfa\x10\xde\x63\xa1\x8c\xa0\x9a\xb9\x4b\x07\x18\x43\x49\x4b\x6a\x62\xd1\xf3\x87\xac\xb7\xba\xe9\x1d\x80\x88\xd5\x37\xb3\xb1\xa4\x07\x06\xa1\xba\x9d\x61\x94\x94\x86\x7e\xeb\x94\x88\x74\xc9\x65\xb6\xbe\x59\xba\xf5\x28\x79\xb8\xbd\x2d\xf9\xbb\x2b\xe6\xce\x1e\xc1\x47\x4e\x13\xbd\x18\x7f\xa5\xe0\xee\x5c\x08\x6f\x3f\xd5\xc8\xf5\x30\x7f\x2e\x2d\x7f\xbe\xba\x1f\x39\x5c\x5e\xdd\xbf\xc3\x15\x92\x7a\x3a\x76\xdd\x1f\x19\x5a\xa5\xf9\xe5\xa9\x9d\x3c\x40\x07\xc7\x30\xbe\x8e\xf3\xe2\x7d\x35\x93\xf4\x96\x59\x9f\xe2\x1c\x7e\x72\x29\x73\x50\x15\x49\x69\xeb\xdb\xbe\x5d\xc0\x59\x86\xf8\xb4\x59\x1b\x89\x25\x91\xad\xcc\x51\xce\x7c\xd6\xab\xdd\x51\x08\x6d\x3a\x80\x65\xd0\x0a\x55\x83\xdc\xc7\x16\x0a\x32\x8e\x67\xad\xc7\x83\xeb\x9d\x09\xb8\xea\xca\x18\x84\x5d\x48\xc0\xcd\x57\x3d\xc2\xb8\xf5\x3d\x5e\x2e\x57\x57\xfd\x5f\x1e\x3d\x7a\x72\x75\xa5\x1f\x26\x61\xec\x60\x9b\xb6\xbd\x3f\x7f\x66\x18\x50\x0e\x53\x3b\x57\x6f\x2f\x0e\x4f\xec\xd1\x13\xac\xa7\x87\xa6\x2c\x52\x1c\x87\x48\xde\x34\x18\xac\x0b\xc8\xb7\x08\x04\x4d\x77\x6d\x18\x47\x98\x6d\x64\x55\xa4\x44\x12\xb9\xa7\x23\x75\xb4\x28\x03\x40\xdd\x8e\x3a\x12\x02\xee\x20\x8d\xe0\x79\x9e\x7f\x54\x06\x37\xfc\x80\xfd\xa8\xcf\xbd\xa6\x2f\xd3\x11\xea\xa1\x64\xc8\xf0\xc7\x93\x08\xc0\xf1\xfe\xf2\x39\x10\x79\x82\x43\x85\x16\xb1\xf3\x16\xb3\xa1\x1a\x7c\xb9\xfa\x79\x58\x77\xab\x2a\x6e\xd5\xb5\xe7\x71\xe6\x40\x94\xda\xed\x87\xa5\x7b\x3f\x99\xb1\xf8\xd3\x9a\x57\xba\xef\x46\x88\x88\x3c\xf4\x08\x75\x6e\x13\x67\x0b\x40\x40\x94\x3e\x87\xe8\xab\x78\xcc\x60\xae\xf6\xec\xda\x16\x5b\xbc\x3b\x8b\x12\x93\x3e\xe7\xe3\xeb\x7a\xf0\xf8\xc1\x79\x41\xaa\x1e\x7f\x33\xb1\x52\x3f\xee\xe8\x74\xe8\x4e\x49\xea\x33\xdd\x96\x34\xc2\xf2\x8f\xd7\x07\x76\x03\x38\x78\x26\x21\xd6\x33\x7b\x28\xe1\x8b\x3d\x16\xc7\x9d\x3a\x1f\x70\xd1\x79\xc9\x05\xc9\xa8\x96\x85\x18\x15\x6b\x05\x11\xcc\xdd\x72\x51\xee\x4c\x42\x04\xc8\x80\xfd\x2b\xeb\x9d\x8e\xff\x7f\x1a\xea\x72\x9c\x66\x24\x23\x77\x8b\x23\x9f\x72\xd9\xc6\xa0\x3e\x44\xb2\xd8\x96\xf6\xd2\xdb\x92\x8f\xba\x84\x2e\x00\xe2\xe1\x05\x53\xf6\x3b\x8c\x77\x85\x69\x74\xaf\x7a\x63\xc8\x85\x1a\x52\x63\x7a\xd5\xc0\xc6\x8c\xdf\xbc\xfd\xf1\xe2\xc5\xa7\xf7\x2f\xde\xbd\x7d\x7f\xf9\xe9\xf9\xab\x8b\xa7\xcf\x5e\xbf\x78\xfe\xff\xb1\xf7\x2f\xec\x6d\xdc\x58\x9e\x38\xfc\x55\xe0\xec\x4e\x48\xda\x24\x75\x49\xa7\x3b\x2d\x47\xdd\xaf\x2c\xdb\x69\x6f\xdb\x91\x1f\x49\x4e\x66\x27\xca\x3a\x60\x15\x48\x22\x2a\x16\x6a\xaa\x40\x51\x4c\xc7\xfb\xd9\xdf\x07\xe7\xe0\x5e\x28\xb2\xe4\x38\x33\x3d\xf3\xdf\x7e\x76\x27\x16\x0b\x77\x1c\x00\xe7\xfa\x3b\xe4\xaf\x1d\x4c\xc0\xe0\x8e\xd6\x43\x23\xdd\x04\x03\x50\xd4\x33\x1a\x90\x93\x07\x57\xac\x04\x00\x0c\x8e\x12\x0b\xae\x35\xc2\x14\x61\xf0\xc4\x3c\x65\x54\x35\x80\x00\x9d\xae\x05\x97\x62\x73\x2e\x8a\x0f\x20\x5c\xe0\xbf\xb5\x7e\x97\xd4\x4c\xe3\xb0\x9b\xac\x98\xa6\xe9\xa0\xcd\x9d\x7b\x46\xef\x98\xc6\xab\xec\xa5\x93\xd1\xe6\x58\x03\x41\x30\xcd\x0a\x51\xa6\xf8\xa1\xa4\x2a\xfc\x5e\xfa\x49\x1d\x7e\x0b\x8f\x1b\xa6\xe6\xe8\x39\xf4\xf0\x7a\xe8\x3c\x1c\xdd\xe3\x8c\x14\x02\x61\x7b\xa8\x1b\x76\x7f\xf6\xb7\xd3\x74\x4f\x26\xec\x21\x95\xa3\x47\xc6\x75\xf7\x4c\x32\xb1\x2f\x41\x22\xd9\x39\x05\xed\x38\xad\xaa\x82\x3b\xac\xf4\x1d\xde\x2f\x46\xf8\xbd\xde\xdd\xe2\xde\x75\x58\x30\xf9\x6f\x42\xac\x5e\x62\xff\xfd\x05\x97\x50\x32\xfc\xc5\x36\xd1\x36\x40\x00\xbe\x1d\x4e\x87\xcb\xc2\x25\xd0\x31\x93\x1b\x34\x9e\xd3\x72\xc7\x8e\x43\xc5\x6b\xdb\x44\xff\x3d\xc6\xf8\xda\x6b\xa8\xe5\x6f\xb0\xfa\x41\xcf\x30\x42\x7a\x9f\x4a\x5d\x18\xfe\x9b\xd8\x48\xc0\x3b\x47\xfc\x40\x48\xa2\x57\x6c\x35\xb4\x6c\xf7\xbd\xa2\xa7\x13\x5e\x2b\xba\xb8\x9a\x95\x85\xac\x45\x2d\x8a\xea\x60\xbf\x1d\x03\xcb\xb5\x2f\x11\x6c\xd7\x63\x2f\x6b\xb1\xd1\x66\xc5\xf9\x34\x2b\xe8\xaa\xd2\x45\xa6\xb5\xd8\x8c\xc9\xe1\xd8\xa7\x6c\x5f\xce\x9f\x90\x23\xc7\x7c\x61\xe8\x6a\xba\x1d\xfc\x96\x6c\x0a\xf5\x12\xb6\xa5\xe0\x0c\x59\x0f\x1d\x0b\xac\x02\x03\xc2\xd6\x1c\x0b\x16\x74\x42\xfe\x62\x46\xe2\xf2\xc3\x86\x05\x4e\x4f\x4d\x89\xcf\x3f\x37\x9f\x4c\x2e\xad\x90\x43\xee\xb8\x5a\x4d\x61\x87\x75\x9a\x90\x27\xce\x0b\x46\x7d\x27\xa9\x41\x43\x6c\xbd\x79\x41\x17\x7b\xb7\x0f\xc2\xeb\x70\xfa\x17\xae\xc3\x2e\x79\x7c\xcf\x38\x0d\x48\x50\xeb\x62\x6d\xbc\x21\x22\xbc\x69\xe7\x19\x43\xa0\x79\x48\xc9\x01\xff\x7a\xa8\x9b\x95\x41\x46\x75\x6e\x37\xea\x87\xb6\x9b\x95\xc5\xaa\x87\xef\x8e\x2a\x14\x3d\x6f\x0b\x4d\xcf\x98\x55\xf4\x43\x87\xda\x26\x31\x99\x8f\xf5\x84\x6a\x8d\xba\xd3\x13\x0a\xc7\x9d\xd2\x9e\xab\x51\x21\x9d\x47\x30\xfd\x63\xcc\x88\x60\x98\x84\x77\xaf\x2c\x88\x69\xb7\x32\x13\x69\xf7\x5c\xac\x4b\xd9\xeb\x7a\x43\x88\x53\xdf\xc1\xc0\x54\xf7\x34\x97\xde\xaf\xad\xc0\x17\x69\xd2\x7c\x68\x65\xf2\x46\x37\x39\x38\x3a\x3c\xfc\x97\x41\xa7\x34\xd7\x55\xed\x0d\x95\xcb\x69\xc6\x78\x11\xba\x02\xec\xd3\x5c\x3e\xb6\x87\xd9\x1b\xea\x93\x44\x5d\x7c\xea\x6c\xfc\x00\x2c\xc0\xdb\xfb\x91\x56\x4a\xfa\xe4\xe4\xc1\x12\x7b\x8d\x76\xdd\x76\xc1\xfd\xb4\x64\xf9\xba\x60\x57\xdb\x32\x0b\x2f\xa8\xf7\x3b\x34\x74\xfa\xd2\xfc\x04\x24\x50\xab\x07\x42\xcd\xff\xda\x35\xcb\x4b\x9b\xf7\x66\x1f\x4d\xfc\x8d\x69\x77\x66\x4b\x14\xa6\x41\x8f\x22\x6c\x1f\xfb\xc8\x61\x69\x5a\x7b\x20\x3d\x98\x7a\x3d\xa9\x40\x17\x7f\xec\x26\xbf\x73\x43\x93\xcf\xcc\xd8\x56\xfe\xe8\xcd\x7c\xce\x0c\xf8\x9c\x15\xc1\xfc\xdc\x4a\xbd\x8e\x2d\xc2\xf0\xda\x8c\x6e\xf8\xa5\x99\xee\xdf\x6a\x57\xa7\xd7\x56\xfb\x0b\xd2\x71\x05\x78\x2b\x92\xbe\x0c\x1e\x9d\xa6\x5f\x6c\x1f\xc2\x56\xf7\x03\x27\x2d\x38\x4a\x23\x0f\xfe\xd6\x4e\x24\xd1\xa2\x3e\x60\xed\x26\x91\x52\xdf\x0f\xfd\x6d\xbb\xd1\x99\x6f\x58\x99\x83\x0b\x43\xb8\x0f\x52\x90\xaa\x58\x2f\x78\xe9\x83\xbf\x07\xe8\xd2\x4d\xfb\xc0\xfb\xcd\xef\xdd\x6e\xbc\x8e\x5a\xfb\x9d\xb0\x59\x6d\x96\x14\x41\xfb\x0d\x42\x77\x2e\x4a\x96\x40\xe7\x0e\x5a\x84\xc6\xc4\x5a\xa2\x99\x7b\x5d\xe6\xe0\xfd\x3e\x25\xe4\x95\x24\x4b\x5a\x55\xac\x6c\x10\x1a\xd2\x73\x5c\x53\x87\xdf\xe6\xa3\x1a\x8e\x0c\x6a\x24\x4c\x1f\xda\x83\x1c\x94\x2b\xba\xb5\x29\x04\xea\x75\x49\x02\x14\x47\xf5\x23\x5a\x9e\x49\x55\x8b\x45\x4d\x57\x2b\x2a\x79\x66\xc1\xa7\xc5\x3c\x30\xa8\xe3\x98\xdd\xec\x2f\x59\xb1\x55\x57\x98\x56\x53\x18\x39\x03\x58\x84\x32\x27\x6b\x40\xe5\x02\xdc\x48\x93\x03\x08\xed\xfa\x2b\x46\x4b\xcc\x70\x80\x18\x89\x90\xfc\x92\x3c\x36\x06\xe3\x4c\xd4\xb5\x12\xa7\xd1\xed\x77\xcb\xa4\x5b\xbd\x52\x09\x83\x71\x6e\x83\x25\x97\xbf\xf9\x08\xf6\x38\x51\x48\xe9\x0f\x7b\x55\xbf\x76\x76\x41\xb9\x54\x0c\xb7\xa2\xdd\x17\x08\x10\x70\x26\x25\x5b\x55\x52\x27\x78\x51\x3d\x90\x19\xcd\x71\x8d\x31\x0e\x2b\x71\xa8\x14\xcf\x9d\xb3\x42\xd2\x73\x1c\x3c\x39\x0d\x26\x38\x09\x59\xc3\x85\x66\x05\x86\xb1\xd1\x31\xe4\xc3\x83\x36\xd2\x0c\xb9\xfb\xde\x75\xd4\x83\x51\xfd\x85\x1c\xda\xa7\xc3\xc2\x60\x47\x99\x9e\x46\xe1\x1b\xd0\xce\x08\xd0\x25\x34\xf8\x3d\x69\x2d\x66\x60\x1b\xb0\xd0\x5f\xdc\x26\xf6\x37\x79\xb1\xa6\x05\x2b\x17\x28\x79\x3c\x25\x9c\xfc\xe5\x94\x1c\x3e\x25\x7c\x32\x89\xe2\x80\xc3\x4a\x3f\xf0\x1f\xc9\xd7\xc1\x66\x38\x9d\x14\xc4\x00\xf9\xa0\xc2\x61\x77\xbe\x07\xd3\x87\xf8\x59\xec\x58\xdf\xf4\xcd\xdb\xe7\x92\xd2\xaf\xe5\xa7\xbc\xa5\xc2\x26\xff\x8b\x5c\x53\x38\xe8\xff\x62\xf7\xd4\x27\x78\xf3\xf5\xc3\xd9\x97\xc7\xfb\x88\xcb\x09\x57\x16\x6f\xa7\xf8\x79\xb6\x57\xd3\xa5\xd8\xa8\x7b\xc9\xf6\xd3\xbe\x94\x70\xa0\x9d\xb7\x92\x65\x2e\x4d\x13\x5e\x0f\x99\x51\x6c\x60\x25\xab\x2f\x1d\xb6\xee\x22\x18\xc6\xd7\xde\x45\xa4\xf8\x07\xf4\x77\x5b\x08\x49\x9a\x15\x2d\x4c\x3a\x1b\xe2\x0d\xfc\xf1\x29\x99\x1c\xe9\x23\xbb\x59\xf2\x82\x79\xcd\x45\xf8\xde\x05\x6d\xe4\x25\x6a\x04\xd4\x60\x16\x4c\x5e\xea\x01\x0f\x47\x70\xc5\xf8\x77\x8a\x29\x3c\xf1\x79\x5e\x9b\xe1\xcf\x5c\x4c\xa7\xa7\xc4\x69\x61\x76\xdc\x33\xf6\x96\xc2\x4e\x21\xee\x53\xf7\x30\xda\x77\x3d\x99\x8d\xa8\x44\x75\x29\x36\x9e\xb3\xa3\x9d\xe7\x64\xe2\xee\x2c\xfc\x87\x33\x0b\x87\x57\xd7\x92\xcf\x55\x9f\x8d\xb7\x46\x4f\x43\x5d\x4a\x30\xcb\x6a\xdd\x2c\xa7\xb4\xaa\x8c\xd3\x40\xf4\x7d\xac\xfa\x70\xb1\x86\x07\x07\xe4\x7b\x46\x7e\x5e\x37\xd2\x66\x9d\x80\x14\x8b\x36\xf5\x84\x14\x55\x98\x4a\x75\xac\x4e\xab\xb9\x47\xd6\x55\x4e\x25\xb3\x4d\x79\x5a\x02\x5f\xd8\x72\x9a\x22\x54\x88\x81\xa4\xba\xa2\xf7\x9e\x36\xcc\xbc\x39\x6a\x8c\x3a\x55\x69\x00\x7c\xea\x88\xe7\x2f\x9d\xe4\x56\xd0\x1a\x93\xab\xb9\x47\xd1\xa3\xd2\xd3\x5d\x44\x11\x51\x9d\x2b\xa4\x45\x35\x3d\x64\x5e\x0e\xbd\x51\xee\x6a\xef\xa9\xdf\x5c\x8d\xa7\x35\x59\xbe\xa9\x0a\x9e\xb1\xa1\x6f\x82\xd9\x45\xbc\x93\x78\x6c\xe3\xf8\x07\x0f\xc4\xd1\x27\xa3\x75\xe9\x08\xa9\xf6\x68\xc8\x3f\x97\x93\xd3\xb8\xb1\xa7\x91\xa6\x4f\xed\xd4\x93\xae\x52\x1f\x92\x2b\x1f\xf2\x20\xf0\x82\xe5\x30\xa5\x98\x9e\x83\x77\x9b\xc9\xef\xae\x51\xd5\x70\x09\x39\xb3\x75\x72\x0d\xe3\x47\xe9\x69\xae\xac\x26\xd6\xa8\x5f\xdb\x7a\x82\x76\x6a\x29\xab\xe6\x0f\xa8\x5b\xcf\x89\x60\xde\xea\xfd\x12\x3f\xd4\xf8\x9b\x58\x75\x5b\xfe\x7c\x7f\x1e\x9c\x8d\xd8\x5c\x8b\x6b\x51\x0d\x0f\x1f\x34\x4e\xd6\xc3\xbd\x1e\x3b\x78\x51\x76\x7a\xa7\x76\x8c\x06\xd3\x6b\x0e\xdb\xf7\x6b\xbf\x11\x2a\xa6\xa6\xa2\x0b\x46\xd6\x15\x19\x02\x7c\x25\xfc\x54\xf0\x92\x8d\x48\xcd\x0a\x0a\xa9\x8e\x4d\xa8\x80\x4e\xf3\x0c\x81\x1b\xbd\x2d\x76\x38\x6e\xba\x60\xef\xaa\x0e\x3f\x0e\x9e\xf2\x4c\x58\x30\x79\x0d\xf7\xef\xab\x32\x67\xf7\xc3\xae\x60\x97\x70\x5f\x78\xf8\x96\x86\xde\x77\x47\x0f\x5c\x92\x5c\x6c\xca\xdf\x7d\x51\x9e\xab\x4e\x7e\xff\x65\x79\xb2\xc7\x58\xd1\x6f\x59\xd4\x0a\x28\x4a\xe9\x58\x83\x87\xce\xff\x35\x2f\xff\xa3\x88\xe2\xa1\x93\x84\xbd\xff\x84\xd3\xfc\x0f\xdb\xe6\xc4\x44\xd1\xe6\x12\x07\x4b\x34\x2c\x13\x65\xee\xff\x42\xcb\xfc\x23\xef\xd2\x0d\xaf\xd8\xb9\x28\x25\xe4\x62\xdb\x79\x7f\xb5\xf9\x39\x72\x98\x9e\x1b\x62\x13\xd3\x6c\xe9\x52\x3f\xfd\x90\xf0\xc2\x19\xa7\x7d\x6b\x7e\x9c\xce\x45\xfd\x82\x66\x4b\x87\xe0\x80\xd3\xb4\xbc\x02\x7a\x46\x41\x6e\xe4\x53\x93\x8c\x3d\xe4\xbc\xcd\x63\xa8\x4b\xf9\xac\x8b\x7d\xc1\x50\x0e\xc1\x17\xf1\x70\xac\x1b\x8c\x1e\x71\x30\x59\xa9\x87\xc6\x0c\x21\x90\x77\x23\x08\x88\x1b\xdf\x8b\x33\xa5\x78\x4d\x2c\x15\x47\xdc\x9a\xb4\xa7\xe7\xcb\xb5\x9f\xc9\xd4\xe6\x96\xde\x67\x23\x65\xb2\x6b\x23\x61\x3a\x67\x45\x11\x24\x26\xec\x99\xb6\xd0\x2d\x45\x62\x2b\x7b\xc7\x68\xba\xcc\x05\x5d\x0d\xc7\xe4\xf0\x80\xa8\xcc\x44\xe3\xad\x8c\x05\x2d\xbf\xa6\x20\x01\x42\xb8\x8f\x77\x32\xd9\xa4\x98\xcb\x4b\xfb\x73\x74\x31\x89\xb9\x4c\xed\x18\x7c\x7c\xcb\xea\xb9\xa8\x57\x84\x12\xd5\x44\x3a\x76\x00\x62\x15\x1a\x4c\x51\x93\x13\x8e\x81\x88\x4b\x29\xab\x93\x83\x83\xcd\x66\x33\xbd\x93\x47\x87\x87\xd3\x92\xc9\x83\x5c\x64\xcd\xc1\x9d\xfc\xf2\xe8\x70\x52\xaf\x0e\x9e\xbf\x38\xbf\xba\xbe\xfc\x1f\xd7\x5f\x4e\xfe\xbc\xf7\x66\x33\xe3\x4f\x50\xc9\xc1\x01\xc1\x4f\xee\x5a\x45\x58\x0d\x3d\x4e\x5e\x47\x23\x7d\x78\x16\xd8\xef\x21\x8d\xf1\xc6\x17\x59\x44\xe9\xaf\xc8\x6c\x2d\x4d\x6e\x1a\xd8\x70\xd4\x6b\x80\x33\x1c\x68\x23\xda\x5d\xfa\x29\x10\x00\xb8\x17\x35\x55\x26\x8b\xac\xff\xd9\x8d\xe3\x5f\x21\x74\x87\x16\x8d\x8e\xe2\x68\x3c\x34\x10\x8d\x67\x1f\x0e\x6c\x8c\x99\xf8\xe5\x12\xa2\xad\xb9\x04\x65\x53\x39\x90\xba\xbd\x86\xb1\x95\xd5\x37\xa1\x5f\x05\xcb\x09\x2d\xb7\x9b\x25\xab\xbd\x41\x7f\x1c\x36\x7c\x7f\xfa\x6f\x55\xbe\x71\xf9\x6e\x21\x8f\x24\x59\xd1\x12\xb9\x24\x76\xaf\x64\x20\x2e\xc1\x9d\x63\xdb\xa0\x8f\x0a\x44\xa9\xa1\xc2\x2b\x9c\xff\xb4\xb7\x90\xd0\x5e\x61\xb5\xe3\x4d\xe7\x96\x8f\xf5\x9e\xeb\xa8\x98\x68\xd7\xcd\xfa\x86\x7b\x6f\x0f\xb6\x81\x53\x93\x75\x2a\xc8\xe7\x8d\xb8\x63\x7e\xbf\x73\x9d\x0a\x52\x1f\x3b\xd0\x65\x99\x54\xff\x80\x36\xa8\x3f\x14\xb4\x91\x5a\x2d\x8a\x6a\xb1\x39\x29\x05\x59\x89\x9a\xd9\xe2\x98\x3e\xaa\xcf\x9d\xac\x3b\xd5\xf7\x6a\x07\x2f\x61\xbd\x4d\x76\xfa\xc0\x41\x21\xbd\xc4\x81\x2e\xf8\xf0\x29\x24\x71\x48\xaa\x84\x9f\x12\xfe\xe4\x49\x5b\x67\x1d\x28\x81\x8d\x93\x49\xfc\x4e\xfa\x98\x32\xeb\x55\xd9\xae\xe9\x5e\xcc\x00\x97\xd8\xd7\x08\x1f\x1c\x68\xca\xb3\x5b\x9c\x59\x5f\x92\xc0\x85\x44\x91\xc5\xdf\xae\xd5\x36\x9c\xff\xed\x7a\x6a\x56\xc6\xf7\x4e\xe9\xe1\x1c\xf2\xb4\x4d\x23\xfe\xd8\x7b\x7a\xea\x74\x7b\x9e\x78\xfd\xec\xa6\x35\xc5\x30\xf9\xc4\x66\xbc\xa7\x92\x04\x37\xe7\x75\x8a\xe2\x5a\x75\xfa\x53\x9d\xe9\xfe\x77\x25\xbb\x07\x9a\x20\x76\x1b\x20\x7e\x0f\xda\x4b\x36\x94\x12\x29\x20\x26\xd4\xac\x32\xa1\xd2\x4b\x72\x8b\xa3\x6b\xab\xb7\x79\x29\xd9\xc2\xd9\xe1\xc8\xbf\xb1\x5a\x68\xef\x66\xaf\xca\x3e\x97\xcc\xf6\xf6\x04\xab\xf1\xe9\x97\xdb\xba\x8b\x8d\x5a\xab\xf7\x31\xbb\xe4\x86\xa3\x55\x6a\x20\xcb\x80\x6b\x9c\xef\xd7\xb6\x7f\x97\x5a\x0d\x1d\x46\x8d\x74\xf9\xa3\xc5\xbb\xb6\xd7\xeb\xf9\x5b\x41\xd8\x7c\xce\x32\xa9\x83\xd4\x6b\x86\xe0\xb2\x0f\x6a\x69\xaf\xab\x9b\xde\xd9\x33\xd9\xe9\xf5\xfc\x71\x07\xb0\x83\x18\xb8\x12\x37\x2f\xe6\xc3\xd8\x99\x90\xab\x0d\x9f\x1c\xe9\xcd\x0e\xb6\xba\x63\xff\xc6\xdd\xa2\x28\x04\x77\x9b\xab\xa8\xdf\x32\x78\xf2\x46\x97\x5c\xd2\xa2\xe8\x40\xb4\x8c\x6c\xab\xbb\x9c\xff\xc8\xba\x0a\xd8\x69\x3b\xd4\xb1\xe2\x1f\x6a\x70\x5e\x07\x0d\x3b\xed\x38\xda\xd7\x1a\x6c\xa7\xc1\xcb\x00\x68\x81\xdd\xb1\x7a\x6b\x6c\xdf\xe4\x5f\xec\x90\xc1\xfc\x3c\x22\xc6\x15\xd4\x74\x00\xed\x58\x35\x7e\x53\xb1\x0c\x93\x98\x9b\x72\xa2\x26\x87\xfa\x76\xd7\x4d\xf2\x86\x54\xb5\xb8\xe3\x39\xcb\xd1\xde\x08\x3c\x93\x7a\x10\xd1\x8a\x38\x5f\xcb\x75\xcd\xb4\xfd\xce\xb8\x7b\xab\xd6\x57\x64\x5d\x45\x63\x4f\x3c\xb1\xec\x9e\x37\xe8\xb6\x6f\xdf\x10\x78\x6d\xc6\x00\x01\x13\xef\x11\xf6\x08\x71\x96\x54\xee\xb8\xf3\x44\x25\xdf\xc3\x94\x5d\xee\x6b\xbb\xc4\xbf\xb8\x8b\xd0\xfe\x66\xa6\xbf\x6e\xd8\x7c\x5d\xdc\x98\x1c\xd8\xaa\xa7\x39\x2f\x0a\xb0\x61\xae\x25\x81\x4c\x93\xc1\x58\x3b\x92\xbf\xab\xb5\xe8\xa1\x9b\x6d\x49\xb5\x3e\x0d\xda\x39\x78\xe7\x11\xe7\x74\xea\xcd\xef\xd7\x5f\x35\x35\xaa\xcf\x1b\xef\xe0\x01\x01\x3c\x35\x72\x13\x00\xee\x60\x0d\x45\x85\x82\xd0\x16\x19\x02\x4b\x63\x3a\xc0\xff\x4e\xc8\x11\x99\x90\xe1\xd0\xfe\x35\x22\xff\x42\x36\x23\xf2\x84\x20\x23\x13\x5c\xff\x50\xc8\x63\xf4\x62\x5e\x46\x7d\x7a\x72\x4a\x62\xa7\x5f\xfb\xc8\x0c\x79\x5b\xe3\xdf\x3e\x5d\xda\x05\x38\x46\xbe\x90\xac\xae\x6a\x78\x25\xad\xd5\x57\xcc\xbd\x30\x30\x1f\x66\xc8\xe4\x32\x8f\xed\xc4\xc8\xbd\xa0\x6a\x8a\xe5\x64\x5d\x4a\x5e\x38\x46\x3c\xa3\x45\x02\x2a\xcf\x7a\xeb\xca\x9a\x5c\x25\x7b\xc6\x5c\xeb\x66\x7c\x20\xbf\x35\x8d\xc1\xc5\xea\x81\x94\x61\x6a\x06\x00\x7a\x01\x66\xd5\x9d\x74\xc5\xe0\xdb\xc7\x7a\xdb\x5d\xd3\x5b\xe4\x79\x3d\xf6\xe2\xf9\xab\xef\x2c\x20\x13\x6d\x42\x52\xd7\xd9\x56\xdb\xab\xf2\xb7\xeb\x37\xaf\x9f\xf3\x3b\x8d\x8a\xf0\x81\xe4\xfc\x0e\x21\x01\xf8\x9d\x46\x75\xd8\xd9\xd6\xae\x05\xc9\x59\x26\xea\x28\x8e\x2c\xe7\x77\x01\x3c\x03\xbf\x53\x82\x7e\xce\xef\xba\x22\xfe\x4d\x23\x50\xb3\x07\x98\x1c\xa6\x4c\x6d\x69\x67\x5a\x39\x59\x47\x7d\x1a\x83\x50\xc8\x5d\x6d\x21\x5a\x41\x9f\xa6\xac\xa3\x7e\xc0\xf3\x74\x34\x6b\x13\xae\xee\x68\xda\x43\x4a\x6e\x35\x65\xd1\x97\xf7\xd7\x07\xab\x78\x67\x03\x88\xb3\x1c\x6a\xb3\xc0\x53\x75\x2e\xb2\xb5\x35\x89\xc2\x1f\x9e\x12\x33\x52\x9c\x59\x40\x81\x56\x37\x1e\xe2\x43\x14\xbc\x1e\x45\xf6\xfb\xcd\xb5\x00\xd0\x5b\xcd\xb6\x71\xd5\x47\xa1\x82\xb2\x13\x72\xbc\x73\x73\x76\x82\x9c\x47\xeb\x63\x20\x47\x3a\x94\xfa\x0e\xfd\x26\x59\x0b\x20\x71\xa6\xa2\xcc\x44\xa9\x16\x7f\xc5\xca\x75\xc4\xee\x18\x0f\x7b\xe4\x5e\x88\x0f\x6c\x25\x4a\x88\x66\x34\x3d\xeb\x3f\xdf\x87\x7b\x63\x4d\xe4\x8c\x95\xdf\x62\xee\xfc\xd4\x38\xaf\x6c\x01\xad\x3b\x72\x35\xa6\x34\xcf\x5f\xdc\xb1\x52\xbe\xd6\x29\xb0\x75\x60\x64\x2e\x36\xe5\x60\x6c\x46\xd1\xb7\xd6\xba\x7a\x78\x1d\xb5\x05\x71\xad\xd6\x24\x44\xe9\x6d\xb4\x7a\x8a\xb1\xb4\x5e\xaf\x5d\x9d\x18\x3a\x18\x00\x69\x1b\x0c\x11\x51\xbe\x54\x7f\x62\x58\x96\xb7\xa8\x63\x78\xea\x34\x8d\x1d\x1c\x10\x6c\x06\xee\x62\xbb\x2c\xe8\x2e\xd5\x18\xff\x2a\x6f\xf5\x29\xa0\x00\xbd\x7c\xa9\xe1\x5b\xb2\x75\xa3\x9b\xd1\x35\x10\x43\x6f\xb6\x9e\x69\x9c\x9e\xfe\xfb\xd0\x46\xae\x56\x4f\x38\xaa\x33\x87\xfd\x67\x94\xb2\x4f\xf4\x5a\xbc\x59\xb1\xae\xf7\xaf\x1d\x90\xf1\xc8\xf7\x90\x6a\x74\x30\x6e\x74\x30\x32\xc0\xe3\xd3\x2f\xd5\x70\x80\xd1\xb7\x9a\x60\xc0\x71\x5e\x9d\x17\x6d\x83\x72\xde\xf3\xc3\x81\x16\x82\x26\xa5\xc8\xd9\x0f\xb0\xc0\xa7\x37\x9f\x41\xaf\x37\x9f\xfd\x48\xfe\xe1\x87\x86\x0f\x08\x99\x89\xfb\x09\x86\x1d\x9c\x10\x84\x1e\x9e\xcc\xc4\xfd\xd3\xb8\x54\x94\x3b\xfc\x84\xc8\x9a\x96\x4d\x45\x41\xcc\x7b\xc4\x57\x95\xa8\x25\x2d\x65\xab\x1e\xb6\xa8\x1d\x58\x8f\xab\x76\xc3\x58\x00\x26\x74\x42\x1a\x51\xf0\x3c\x2c\xf2\x21\xf8\x6b\xba\xc9\x60\x5e\xad\x69\xe8\x47\xfa\x84\xf0\xb2\xe0\x25\x9b\xcc\x0a\x91\xdd\xc6\x9d\xa9\x05\x9b\xd0\x82\x2f\xca\x13\x92\x31\xc5\x98\xc4\x25\xf4\x40\x33\x5a\x64\x43\x3f\x9a\x38\x04\xd9\x19\x91\xc7\xe4\x78\x14\xd7\x85\x7e\x8d\x37\x5c\xb2\xb2\x89\x1f\xd9\x31\xc1\x93\x5a\x08\xd9\x9a\x5d\x7a\x18\xe8\x73\xd7\xba\x06\x3a\xe1\x7e\xe2\x01\x77\x8c\xaf\x57\xb3\x3e\xc0\x4f\x67\xbb\x48\x87\x62\x3e\x6f\x98\x54\x74\x73\x42\x0e\xfb\x95\xad\xc5\x66\x47\x59\x4c\x91\x1d\xc4\xe2\x9f\x90\xc3\xe9\x9f\x9a\xae\x0a\xad\x20\xf2\x13\x20\x85\x5e\xc5\x75\xe8\xf8\x89\x11\x4a\x7a\x55\xd2\xe4\xbc\x3b\x90\x7d\x17\x19\xfc\xff\x6e\xd9\x76\x5e\xd3\x15\x6b\xb4\x09\x27\xa6\x08\x10\x94\xff\x41\x44\x45\x33\x2e\xb7\x27\xe4\x68\x7a\xf8\x94\x7c\x88\xe9\x5d\xf8\x45\x0e\xdb\x45\xa2\xc3\xe5\x16\xb6\xd5\x1f\x2d\xf9\x0a\x56\x7a\x52\xd2\x15\x3b\xc1\x51\xc5\x6b\xe1\x0a\xb9\x7d\xf1\xd7\x20\xb1\x71\xad\x53\xe4\xda\xe0\x92\x61\x99\x49\x26\xd6\xa5\x54\x47\x7b\xce\x4b\x2e\x59\x77\x15\xc9\x57\xbc\x5c\x4c\xcc\x43\x70\x42\x18\x6d\xd8\x84\x43\x1a\x9b\x1d\x83\xe5\x35\xd3\xe5\xad\xa9\x28\xde\x1c\xef\xc9\x75\x37\xf4\x92\xd1\x5c\x7b\x88\x9d\x2f\x79\x91\x0f\x61\xdf\x43\x2b\xad\xc3\x77\xdf\x7b\xc3\xe7\xfc\xce\xef\xc7\x87\x86\xe7\x39\x39\x25\x03\x58\xc5\x13\x9b\xc0\x44\xc7\x93\xa6\x6b\x00\x32\xed\xb7\x14\x7c\xbd\x06\xde\x8b\xd0\x51\x1c\x5f\x94\x0c\x19\x64\xff\x35\x31\xbc\xf9\x09\xa1\xb3\x46\x14\xeb\x78\x69\x0a\x36\x97\xbd\x2e\xcc\xe0\x6b\x7c\x33\x8c\x22\x3a\x90\xa2\xda\xd5\xa8\xbe\x48\x77\xb6\x5a\x8b\x4d\xdc\xaa\x7d\x24\x12\xaf\x83\xbe\x51\x77\xcc\x21\x2c\xff\xf0\x8b\x7e\xb2\x61\xb3\x5b\x2e\x27\xf0\x72\xea\x35\xd5\x87\x73\xdc\x7a\x60\xc9\xd1\xe1\xe1\xaa\x81\x37\x85\x46\xaf\xd4\x64\x25\x7e\xf9\xa8\x46\xd2\x16\x7e\xc4\x4b\xee\xb2\xef\x63\x12\xd3\x48\x9e\x78\xb0\x6b\x40\x77\xe0\x6e\x97\x40\xe0\x9f\xaa\x98\x58\x7d\xab\xf8\x92\x95\x26\x61\x6d\x84\xd2\x3f\x20\xbc\x21\x62\x3e\x27\x1b\x46\x6a\xe6\xe2\xe6\x97\xbc\x21\x0c\x8f\x1c\xc1\x93\x5f\x6c\x75\x6b\x18\xbd\xd0\x82\x5f\x81\x3c\xda\x84\x12\x48\x26\x39\x25\xa8\x30\x5c\xd1\x5b\xd6\x90\xf3\x65\x2d\x56\x8a\xa7\x6d\x44\xc6\xb5\x67\xf1\xc1\x01\x69\xd6\x33\x54\xdd\x68\xc0\x29\xc5\xbe\x1b\xfe\x56\xe3\x8a\x1b\xa7\x23\xe4\x54\x58\x3d\x25\xe4\x8a\x97\x19\xd3\x90\xa5\xd0\x4a\x50\x40\x4d\x87\x92\x8a\xb1\x9a\x0c\xc1\xdc\x4b\x32\xb5\x3a\xa3\xd0\x1f\x54\xf1\x61\x63\x37\x05\xd5\x71\xcc\x5e\xa3\x9a\x53\x07\x5c\xf8\xf5\x40\x43\x0a\x7f\x4d\xb1\x8e\xae\xf9\x4a\x0e\x54\xd7\x4b\x9a\xdd\xa2\xc9\x99\xab\x1f\x40\xcf\x5f\x30\x5a\xb2\x46\x92\x0d\xdd\x92\x57\x24\x13\xeb\x22\x27\x73\x8e\xce\x9f\x3e\x0b\xf1\x0c\xe7\xf0\x51\xf7\x60\xbb\x85\xe0\x3a\xc4\x87\x35\xaf\xe9\x62\x12\x2e\xd8\x60\x67\x13\x1f\x7d\xe1\xc1\xd5\x34\xf9\xf3\x9f\x63\xbe\xa7\xc7\xe5\x72\x74\x18\x57\x32\xb7\x08\x7e\x49\x3e\x32\xe9\xe3\xd0\x9e\x51\x27\x88\x64\xb7\x58\x48\xc8\x0f\x81\x00\xe5\xc9\xa7\x81\xd8\x39\x00\xca\x57\xff\xc8\x67\x85\xfe\x37\xcc\x21\xe1\x73\x06\x64\xe6\x83\x37\x77\x6d\x40\x4b\x8e\x82\x9a\x91\x8c\xeb\x5a\xf0\x1f\xab\x07\x56\x75\x6b\xd9\xb7\x62\xa7\x8b\xda\xce\x51\xec\x11\x46\xdb\xe2\x68\xac\x48\xb2\x6e\x72\x9d\x1e\x72\x4c\x5e\xb2\x3b\x56\x37\xec\x3b\x9e\x33\x31\x44\x59\xb2\x6b\xe3\xa1\xf9\x6e\x47\x4a\xd4\xbf\x5e\xb2\xbc\xa6\x9b\xdd\xf8\x40\x7f\xbb\x7e\xf3\xda\x7a\xe7\x80\x81\x03\x92\x52\x52\x5e\x46\xaa\xd2\xe7\x17\x6f\x88\x62\x32\x52\xd0\x41\xa0\x79\xd5\x6d\xf4\x41\x5d\x30\x65\xf7\x40\x2e\xd8\xcd\x6d\xbb\x01\x82\xce\xae\x05\x8e\xb3\xdb\xe3\x04\xd5\x7c\x7b\xdd\xd1\xdd\xd2\xee\x5e\x34\x7d\xa7\x69\x2c\x7b\xd4\x5b\xd7\x62\x43\xc0\xe8\x18\x99\xa0\xe0\x7e\xc7\x5c\x13\xce\x0e\x76\x29\x36\x6f\xd1\xc6\x55\xa3\xae\x7e\x4e\x33\x06\x6f\x10\xd3\xee\xbc\x6a\x40\x64\xdd\xe8\x48\x3c\x0e\xb7\xf8\x9c\xc9\x6c\x89\x61\x1c\xa2\x24\x39\x43\xcc\x7e\x58\x8c\x2d\x3a\x42\x40\x55\x70\x95\x93\x82\xdc\x71\xe6\x41\xea\x5c\x5f\x3c\xbf\x18\xd6\x0b\x5e\xe6\x74\x74\x42\xce\x45\xd9\x40\xef\x0d\xbd\xe3\xe5\xc2\x77\x95\x85\xf6\x69\x43\x86\x30\xd5\x46\xac\xeb\x8c\x8d\x11\x9c\x29\x43\xb5\xc4\x08\x7d\xc4\x29\x47\x63\x43\x26\xca\x86\xd5\x77\x8c\xac\xd8\x4a\xd4\x09\xed\xbc\xb5\x92\xc1\xfa\xc0\x24\x7f\x61\xb5\x98\xa0\x4d\xcc\x2e\xdc\x98\x68\x10\xbf\x3c\x76\x58\xb6\xf6\x31\xb4\x0b\x75\x86\x4a\x10\x72\x51\x4e\x34\xb4\x3a\x4c\x03\xdc\xb7\x68\xb1\xa1\xdb\x46\xe7\x6f\xf0\x1a\x83\x40\x9d\x46\xaa\xce\x79\xc6\x9a\x69\x9b\xb0\xad\x3d\x41\x0d\x79\x70\xaf\x98\xcf\x81\xe5\x32\xf4\x59\x01\x23\xaa\xce\x97\x55\x2b\xee\x00\x7c\x15\x6b\x8d\x66\xb4\xe7\x34\x5c\x8a\x8d\xd6\x5d\x5a\xda\x84\xa5\xf0\x82\xf8\x70\xcd\xbe\xde\x19\xe6\x73\xe3\x19\xb3\x93\x05\x7f\x80\x56\x7e\xf4\xb5\x53\xb0\x4a\xe0\x94\x4d\x4e\xf5\xc6\xec\x0c\x58\x7b\x1a\x1f\x51\x63\x9c\x57\x0b\x7d\x56\xd7\x74\xfb\x83\xd7\xe6\x8f\xbb\xce\x90\x4f\x4b\xe1\x19\x02\xa4\x28\x3f\x16\xf2\x77\x3c\x47\xc1\x28\xdc\x79\xb2\x06\xd6\x75\xa3\xd8\x43\x8c\x8e\xd4\x74\x5e\x6d\xd1\xed\x13\xda\x72\xf9\xad\x8c\x57\x7d\xc1\x2b\xc4\x5d\xef\x3e\x01\x48\xc0\x5d\x27\x00\x58\x35\x28\xa1\x66\xe8\xce\x83\x25\xd9\xd8\x91\xff\x63\xce\x83\x6d\x2c\x3a\x17\x1d\xe7\x21\x9e\x01\x2b\xf3\x9d\xe3\x57\xdf\x45\xf9\xdb\xc7\x7e\x93\x82\xf5\x21\x67\xa4\xe1\xe5\xa2\x60\x26\x07\x88\x77\x08\x2d\x65\x21\x4a\xbc\x6e\xd8\x90\x94\x1b\x86\x22\x2d\x42\x5e\xf3\x92\xe9\xfb\x61\xc6\x48\xc9\x36\x18\x2d\xc1\x0a\xbe\xe2\x92\xe5\x63\x64\xe8\x4b\x41\x64\x4d\x39\xd8\xe3\x75\x99\x9e\xc7\x5a\x33\xa0\x41\x12\x32\xc5\xc3\xb3\x32\xf7\xcc\xeb\x18\x68\xf9\xc3\x8f\x3b\x8d\xdb\xac\xcc\x43\x9f\x45\x04\x52\x75\x26\x0f\x77\x91\x18\x93\x36\x51\x2d\x63\xd6\x0e\x55\xd0\xd7\x29\xfb\x01\x01\xba\x75\x30\xbb\x7f\xfe\x39\x79\x04\x65\x17\xcc\x79\xd1\x0e\x07\xa0\xfe\x34\x4e\x7e\x5e\x36\x0d\xdb\xfe\xe0\xe6\xc6\xc0\x15\x6b\x43\xba\xde\x33\x55\xe2\x67\xc1\xcb\xe1\xa0\x1b\x9f\x71\xf7\x6d\xe0\x23\xc2\xfd\x37\xba\x03\x76\xbf\x82\x18\x88\xad\x56\xe7\x9f\xe3\xfc\x27\x4e\x60\xcf\xa3\x87\x8b\xf3\xa0\xc7\x30\x3e\x34\xfe\x63\xb8\x8b\xea\xa1\x98\xff\x42\xc5\x54\xbf\x93\x00\x85\xa4\x45\x14\x88\x6f\x22\xff\x69\x9e\xd7\xac\x41\x70\x5a\xbd\x90\x8a\x40\xf0\x2b\x92\x40\xbc\xea\x2d\x7c\xc3\xdf\x8f\x88\x33\xb1\xaa\xd6\x52\x0b\xfc\x1a\x6c\xd8\xa7\x84\x3a\xc1\xb0\x5b\x32\x6c\xa3\x0f\xe0\xb4\x1e\x82\x27\xef\x05\x6a\xf6\x82\x8e\x6c\x45\x4d\x3d\xe9\xe0\x25\x1c\xd3\x91\xcc\x66\x65\x25\x12\xb8\x30\x4a\xb6\xd1\x5c\xab\xe2\x87\x41\xa6\x46\x7f\x30\x17\xb6\x1a\xc3\x72\xb5\xf7\x04\xdc\xaf\xcb\x62\x6b\xc1\x1e\x36\x14\xe0\x28\x68\x9e\xeb\xe4\x59\xa6\x53\x7d\x49\x29\xaa\x26\xe4\x5b\x21\x39\xa8\x77\x28\x46\x4e\xa2\xfb\xce\x06\xcf\x73\xa3\x47\xe3\x00\x3d\x75\x08\x96\x1e\x4d\xc1\x1b\x69\x16\x1f\xc3\xd6\x8c\xc3\x1a\xb4\xa5\xd8\x49\x0e\xae\x6e\xb8\x4f\xea\xa8\x0d\xcd\xbb\xa6\x23\xea\x48\xa5\x13\x7f\x80\xc6\xc8\x3a\x48\x87\x0c\x94\x4e\xa0\x27\x97\xbc\xbc\x75\xa9\xf4\x70\x56\xb3\x82\x96\xc0\xf4\x93\x46\xac\xd8\x06\xdd\x3f\x35\x68\x3e\x02\xb4\x63\x8f\x37\x3e\xf0\xc6\x98\x14\x42\xdc\xa2\x98\xb1\x12\x77\x0c\xe3\xc6\x46\xd1\xaa\x6a\x22\xb7\x4e\x78\x15\xdd\xc2\x65\x5a\x9a\x1b\xf3\x4e\xfb\x30\x5c\x8b\xea\x00\xe3\x7f\xc7\xea\x7d\xcf\x18\x0c\xb2\x59\x8a\x75\x81\x77\xdf\x4c\x5d\xc5\x6a\xfa\xa6\xb3\xe1\x48\x0d\x32\xa3\x0d\x20\x9c\xa8\x31\x83\x10\xb4\x01\x55\xd5\x4a\x75\x52\xfb\x83\xb1\x4a\x3f\xf3\xe0\x1b\x75\x10\xcb\x09\x35\x8e\xe6\xe4\xd0\xec\x0b\xba\x9f\x63\xba\x72\x96\x13\xfb\xec\xdf\xa4\x61\x87\xd2\x58\x1e\x70\x40\x81\x5c\xf7\x3b\xe6\x79\xf1\xe8\xa1\xeb\xb3\x03\xf4\x70\x90\x18\x97\x6d\xe7\xff\xc4\xb9\xd1\xae\x14\xa0\x35\xef\x8a\xfa\xb7\x87\xd0\x36\xdc\x66\x44\x74\x28\x05\x0c\xa5\xcd\x86\xd4\x6e\x2c\x9d\x8a\x3f\x94\x9b\x0c\xdf\xa1\x8e\x4d\x4b\xef\x15\xd7\x55\xef\x00\xdc\xec\x83\xc1\xc8\xaf\x68\xa9\xfe\xd4\xcc\xec\x09\xe1\x11\x0c\x05\x22\x5e\xac\x9b\xe5\xa5\xd8\x0c\x6b\xb1\x19\xc5\x18\xf4\xec\x5e\xd6\x06\xba\x64\xe7\x2a\x76\xc6\x60\x3b\x10\x7e\xdb\x94\x1f\x54\xb9\x17\x42\xc3\x56\x33\x73\xc3\x5e\x1d\x3d\xf4\x45\xcf\x20\xbe\x7f\x7a\x10\x49\xd9\x5c\x69\x5d\xc0\x8b\x32\x8f\xf0\x97\x8c\x8b\x1e\x14\x78\x2e\x36\x36\x1e\xf3\x83\xc3\x55\x71\x94\xf6\x97\x3d\x8b\xa4\x1b\xef\x4d\x9a\x1a\x2e\xc5\x57\x7e\x9d\x69\x8d\x6c\x04\x06\x6b\x9b\xd4\x48\x1c\xf1\x03\x5e\x88\x4c\xbd\x05\x0e\x28\x04\x03\xde\x1d\x43\x94\x78\xbc\xd5\x85\x5e\x42\x62\xb5\xf6\x0b\x60\x72\x5b\xd5\x2c\xdb\x66\x85\x6e\x38\xc7\x5c\xe4\xdf\x5d\xeb\x47\xb5\x51\x8b\x2d\x1a\x46\x36\x4b\x9e\x2d\x41\xeb\x92\xd7\x36\x49\xe2\x6c\xab\x4a\xea\xb4\x70\x4d\x90\x7d\x54\x7d\xb3\x2c\xe5\x8a\x96\xbc\x5a\x2b\x5e\x4e\x73\x4f\xee\xc5\x1e\x79\x8e\xa3\xf8\x1a\xab\x5b\x6e\xac\x23\xc0\xd4\x5d\x5d\x80\xe8\x12\xea\x7a\x5c\x1b\xa4\x86\x20\x34\x18\xd9\x8a\xe6\x56\xf6\x81\x87\x09\x9e\xcc\x8d\xa7\x28\x12\xf3\x39\x72\x19\x0d\xb3\x8c\x20\xaf\x5b\xaf\x0b\x67\x6a\x18\x35\x9b\xaf\x0b\x30\xab\x3c\xb6\x6f\x12\xcb\x49\x23\x08\xc5\x0b\x1e\x95\x41\x73\x63\x83\x70\x8c\x4b\xf7\xed\xa9\x36\xee\x95\x65\x88\x91\x9f\x75\x6a\xb4\x07\x5d\xb6\xea\x6d\x48\xd7\x92\xc2\x75\x91\xb3\x46\xf2\x92\xea\xc4\xd4\xa6\xa3\x5d\x97\xb3\x7d\xe0\xfc\xab\xd9\x8e\x7b\x8c\x63\x1a\x9b\x4e\x5a\xd2\x5d\x78\x1a\x98\x7d\xc1\xe2\x16\x12\x61\x57\xf8\x02\x41\x69\xdd\x7a\x80\x9b\x63\x1d\xb4\x41\xac\xb4\x97\x92\x5b\xd2\xaf\xa3\x41\x39\x77\x6b\x5b\x46\x5f\x22\x0c\xf0\x3a\xcc\x3a\x3d\xd1\xd7\xfd\x4d\x0b\x71\xcd\xd4\xd7\x25\x83\xda\xae\xdf\xa0\xbe\x77\xd6\xc3\x30\x73\x4f\x22\xde\xad\xcc\x7e\xb5\x2b\x2c\xfc\x52\xb7\x99\xe6\x8a\xcc\x55\xb0\x47\xbf\x64\x28\x4f\xb1\x60\x0c\xf8\x7b\x10\x81\xe0\x10\xb5\x64\x2e\x8d\x32\x00\x04\x1f\x88\x5d\x48\x7c\x97\x9e\xf8\xd0\x16\x0e\x32\x5a\x22\xbe\x98\x77\x82\x7c\x23\x21\x2a\x72\x0d\x07\xe8\xdf\x60\x43\xc5\x13\x65\xb4\x1c\x48\x92\x33\x70\x27\x57\x3c\xae\x01\xde\xd1\x7f\x30\x99\x8d\xc6\x1e\xf7\x04\x87\x1a\x9a\x2a\x85\x83\x5d\x33\x4b\x16\x69\x7d\xbb\x4f\xa9\x53\x5b\xed\x3d\xa1\x46\x3f\xa4\x97\x31\x2e\x86\xa7\x0c\xbd\x32\x75\xd8\x04\xde\xcc\xd7\x4b\xff\x92\x36\x43\xec\x11\xe1\xef\x91\x54\x5a\xdf\x32\xf6\xba\xf1\x43\x1b\x4c\x46\x4c\x6f\x10\xbf\xfe\x1a\x1c\x40\xdf\x27\xb5\x07\x23\xf5\x30\x2d\x8e\x86\x6a\x70\xea\x53\xfe\xe3\x0e\xfe\xa6\x05\x40\xfe\xb6\xe6\xc0\xc3\xbb\x64\xb8\x3b\xe4\x9b\x9a\x35\x15\xcb\x1c\x1a\x38\xf8\xf7\xe1\xed\x02\x34\xbf\xa9\x69\x45\x31\x49\xf2\x0a\x0c\x3d\x10\x78\x83\xda\xf3\x1c\x71\x58\xe1\xd5\xc1\x97\xa4\x53\xaa\x32\xc4\x08\xe1\x2b\xf3\xb9\xc5\x36\x8a\x9e\x28\xef\x3c\xdc\x98\xe0\xce\x20\xa7\x92\x77\x2a\x61\x72\xbc\x21\x8f\x4b\x21\x1f\xab\xd7\xbd\xd1\x09\x9b\x75\x2c\x45\xa6\x87\xfb\x4e\xbf\x39\x2e\x30\x61\x64\xe4\x0f\x6e\x1e\x40\x2a\x07\x1a\x0f\x71\x2b\xd6\x83\x9a\xa1\x0b\x40\x4c\xf5\x41\x88\x85\x37\x08\x29\x48\xa5\xd6\x7c\x2f\x49\x42\xa9\x74\xf8\x84\xbd\xb1\x2f\x0c\x39\x1d\x06\x77\x79\x6d\xf0\xbc\x0b\x3e\x9b\x6e\xb2\xa9\xf9\xc5\x44\x59\xa8\x92\x1a\xaa\xce\x6f\xe6\x6b\x5b\xb5\x1d\xec\x68\x61\x01\xbc\x3d\xfe\xfc\xf3\x5e\xe1\xbd\xad\x08\x54\x53\x5c\xac\x56\x5c\xbe\xe6\x25\x33\xc8\xf5\xc3\x08\x29\xa4\x64\x1b\xf5\xd9\x47\xc4\x74\xac\x71\xa6\xd5\x05\x76\xba\x13\x7f\x4d\x9e\xba\x82\x39\xcf\x2f\xda\x18\xf7\xe6\x6b\xb3\x9e\x35\xb2\x6e\x87\x69\xee\x0c\x1a\x34\x4f\x53\xc4\xd6\x7a\xf0\x9b\x6e\xce\x61\xf7\x36\x15\x00\x70\xbb\x7a\x0a\xc9\x26\x62\x18\xc4\xae\xe8\x45\xd2\x02\x2b\xf3\x3a\xfc\xfc\x73\xf2\xa8\x6b\xff\xbc\x31\x1e\x1c\x28\xe1\x5e\x3a\x2a\x35\x7b\xc7\x72\xad\x61\x28\x21\x2f\x9a\x7f\xc2\xd1\x81\x06\x38\x4a\xa3\xc6\x32\x6d\x41\xa0\x3f\xd0\x2f\xf3\x72\x5a\x99\xb7\x64\xc6\x1c\x1a\x80\xf0\x7b\x9d\x7a\x4d\x5c\x5f\x3c\xbf\x38\xf1\x52\xfc\xaa\xfb\x43\x0a\x22\xd6\xb5\x7a\x94\x67\x05\x5b\x69\x67\x19\x08\x3d\x98\x6d\x25\x23\xef\xae\x5f\x4e\x8e\xfe\x18\x05\x4f\xa1\xbd\x0f\xf6\xd8\x3b\x0f\xf0\xb7\x3a\x0d\x63\x9f\x66\x34\x07\x85\x01\x63\x41\x8a\xac\x64\x3d\x4b\x76\x47\xa3\xd6\x8e\x9a\xaf\x66\x7f\x02\xee\xe7\xa1\x03\x4a\x92\xbf\x14\xb7\x0c\xe0\x7c\xcd\x05\x12\xe6\xd2\xaf\x0a\x2e\xbf\xe7\x39\x53\xab\x81\x99\xb9\x87\xd8\x89\x69\x2c\x09\x74\x00\x6d\x26\x01\x0e\x76\xe6\xad\x99\x6e\x32\x13\x3b\x01\x2d\xa8\x37\x08\x7f\x4a\xc3\xf7\x45\xb5\x69\x93\x71\xde\x6a\xc0\xfe\x9a\x42\xb1\xb4\xe4\x8c\xaf\xcf\x9b\x76\x4e\xf0\x04\x07\xac\xd7\xc1\x75\xe1\x2d\x47\x7b\x8f\xa2\x26\xd4\x89\xd8\xd4\x5c\xb2\x3d\xad\x3c\x68\xb9\xfc\xcb\xe8\x01\x6b\xe4\xee\x10\x4b\x12\x41\xdd\x15\xdd\xce\xd8\x79\xc1\xab\x73\x7c\xa3\x7d\xd4\x4e\xff\xc2\x7f\x72\xda\xc1\x61\xef\x8b\xbf\x33\x32\x82\xc7\xc5\x5c\x94\x17\x6b\x59\xad\xe5\xfb\x51\x38\xa0\xdf\x0a\xd2\xa7\xd3\x22\x58\xc9\x59\x0b\xa6\x11\x67\xd2\x82\x9c\x09\x63\xcb\x0d\xb3\x61\x9c\xb6\x08\x84\xc1\x8f\xec\x77\xad\x2f\x6c\x3d\xf0\x88\xb0\x41\xab\x8a\x51\x74\x52\xc8\x85\xeb\xf8\x8a\xc9\x48\xf0\x36\x42\xb3\x81\x9f\x58\x17\x45\x47\x3e\x07\xbc\xd4\x20\x4c\xd8\x8a\xd5\xe1\xfc\x88\x55\x28\x3c\xfe\xf6\xe2\xfa\x31\x8e\x67\x25\x1a\x07\x23\xd4\xa8\xd1\x10\xf2\x3d\x53\x3c\x88\x83\x9d\x81\xf6\x16\x42\x8d\xec\xe6\x33\x31\x9f\x4f\x14\xcf\x76\xf3\x19\xe2\x2c\x1b\x30\x65\x2e\xb5\x8f\xe2\x4f\x48\x33\x3f\x01\xff\xf6\x93\x5c\xad\xef\x7f\x72\xd8\x20\x86\xe1\x82\x26\x0b\x91\xd1\xa2\xcd\x7a\x8d\xb5\x0a\x03\xb1\x8f\x03\x25\x04\x6a\xd2\x41\x5f\x35\xa9\x16\xeb\xea\xa0\x5a\xe4\xa8\xe0\xc8\x44\x29\x79\x89\x49\xb8\x37\xa2\xbe\x55\x92\x3f\xcc\x6d\xdd\xb0\xba\xd1\xfa\x57\x76\xaf\x98\xcd\x5d\x56\x70\xa3\xf5\x8d\xad\x60\x2d\x20\x4c\x9f\x68\xba\xda\x41\xa2\x8c\x9b\x0a\x35\xed\x41\x6b\x63\x6b\x02\xe3\x65\x56\xac\x1b\x7e\xd7\x2b\xe9\x77\x88\xf2\x13\x30\x78\x66\x3e\xe3\x60\x48\x9e\x17\x87\x9b\xf1\xe9\x29\x39\x54\xaf\x7b\x30\xf6\xd3\xae\xa4\x09\xf8\xa4\xf9\xf1\xcb\x9e\xce\x1c\xd0\xa5\xd6\x45\xf1\x34\xf1\x19\x1b\x0e\x4a\x24\xf2\xaa\x46\x8d\xd9\x51\xee\x6e\xd1\x1f\x7a\x5a\x38\x09\xac\x6b\x95\x67\xdc\xa4\x59\x26\xea\xdc\x13\x58\xbe\xbb\x8e\x2e\x04\x38\x5f\xda\x72\x74\x48\xd6\x65\xc1\x9a\xc8\x1d\x6d\x49\x1b\x32\x43\x39\xb1\xc8\x4d\xc6\xac\x9a\x67\xd2\x49\x1f\x46\x4e\x69\xc4\x8a\x11\xc5\x0d\xd5\xda\x5c\xf3\x4a\x5a\x4d\x9f\x7a\x47\xe1\xfb\x77\xd7\xf1\xad\xa3\xc6\x07\x27\x20\x68\xcf\xa8\xf5\xf6\x19\xd5\xa4\xa8\xe0\x48\xe0\xac\x83\xb1\x0f\x9a\x04\x5d\xef\x31\xb0\x19\xb2\xbb\x4e\xa2\xd6\xd8\xcb\x3c\xd8\xca\x47\x3a\xa9\x4b\xdb\x31\xc8\x2f\xf6\x34\xb0\xd7\x1f\xee\xb2\x91\xea\xd3\xf4\xb1\x1b\x29\x3b\xf3\xe3\xf8\x3b\xcc\x65\x6b\x6f\xb5\xae\x31\xde\x5f\xbb\xb7\x4b\xbe\x58\xf6\xdb\xdc\x1b\x1f\xd7\xb4\xb5\xc1\xbd\x37\x57\x2f\xc4\xef\xb1\xc1\xe6\x2e\xd8\xbf\xc7\xe6\x28\xee\xdf\x66\x5d\x32\xdc\xe9\xee\xab\x26\xce\x6e\xf5\xb6\x16\x4a\x2e\x27\x94\x80\x9b\x87\x63\xd1\x03\xdb\xa2\xf7\x6e\x73\x1b\x1b\x3a\x47\xd0\x3f\xb1\x69\xed\xb8\x74\xb2\x01\xda\x6a\xc1\x10\x89\xfa\x73\x6b\x8c\x0c\x94\x6d\xde\x5e\x99\x3b\xc5\xdb\x80\x96\x6e\x01\x9b\x72\x6e\x44\xf0\xf7\x85\x5c\xb2\x7a\xc3\x51\x95\xce\x1b\xd0\x16\x07\x2c\x87\xb4\x08\x24\x00\xd8\xa1\x47\x0d\x50\x0c\x7d\x1c\x18\xb4\xc8\xdb\x85\x6b\x03\x7d\x9c\xc9\x17\x65\x7e\x31\xbf\x32\x9a\xa7\x9d\x02\x2b\x98\xd6\x4e\x7d\xce\x38\xf1\xbf\xbd\xa6\x96\x16\xd3\xd7\x45\x43\x1e\x98\xf9\x99\x3a\x35\x57\x01\x63\xa4\x38\xb5\x4c\xf2\x3b\xa6\x71\xd7\xef\x58\x6d\x76\xcf\x58\xdf\xa7\xfd\xe4\x70\x9c\x56\x92\x4a\x43\xb9\x16\xd9\x23\x0d\x3d\xe4\x29\x9b\xdc\xd8\xf0\x21\x1e\x93\xca\x42\x49\x5a\x66\x73\x1a\xb0\xe6\xa6\x9f\x77\xd5\xf0\x28\x06\x26\xef\x34\x3f\xed\x99\x84\x85\x87\x0f\x00\xe2\x13\xfb\xdc\x6f\x56\x46\xab\x6c\xdd\x10\x20\x1d\x3e\x72\xae\x00\x89\xb3\x96\x91\xac\xde\x22\xdb\xc3\xe9\xef\x35\x33\x7f\x02\x67\x1a\xc3\x11\xbe\x8c\x09\xcd\xef\xa8\x56\x5d\x9b\x11\x41\x13\xea\xc4\x6a\x4c\x4f\x04\x92\xd4\xc0\x42\x9f\x60\x7c\x1a\x50\x2b\x44\x9f\xed\xb7\x05\x7b\x37\x60\x4a\xc8\x99\x77\x29\xf9\x57\x91\x55\x72\xda\xa6\x80\x41\xb6\xfe\x4f\x96\xcf\x69\xdd\x47\x53\x8f\x9b\xf2\x91\xe7\x8f\x46\x09\xbe\x2c\x5e\x62\xcf\x94\xa0\x2e\x0d\xc8\x91\x10\xdf\x5d\x7e\x07\x9f\x66\x59\x5b\x1c\xdd\x6b\x7e\x0b\x8e\x2d\xa8\xd6\x1b\x13\x76\x9f\xb1\x4a\xc9\x22\x1c\xbc\xc0\xfc\xfd\xef\x89\xf6\x56\xf0\x92\xbd\x64\x2c\x85\x13\xff\x70\x24\xb0\xa4\xde\xb1\x15\x11\xb7\x5e\x95\xc3\x2e\x00\xb5\x57\x73\xc8\xf6\x7f\x4e\xeb\x9a\xd3\x05\xd3\xbc\x0f\xe2\x5f\xa1\xaa\xcc\x9f\xbd\xda\x18\x33\x01\xed\xf7\xb2\x07\xf3\x72\xd5\x31\xd7\xb6\x66\xa4\x3d\x8c\x50\x02\x08\x27\x99\xe0\xea\xdd\xc0\xd2\x7b\x19\x43\x33\xae\x2b\x30\x9d\xc3\xb9\xad\x44\xd3\xf0\x59\xb1\xd5\xd6\x01\x60\x94\x3c\xbb\x73\xd2\xa9\xc6\x01\x77\x41\x0c\x1a\x80\x23\xec\xf7\x79\xa9\x31\xe4\xe5\xf5\x6e\x32\xf0\x04\x27\xeb\xf6\xe7\x71\xc4\x43\x07\x05\x92\x59\x95\xc9\x1e\xa2\xa9\xc1\xcd\xc5\xf3\x74\xb0\xd5\x3c\x09\x28\x5c\x72\x5c\x0c\xf0\x19\x4e\x9f\xda\xf4\xd1\xbb\x14\x1b\xbf\x7d\xab\x70\x4c\xc8\x4b\x55\x41\x33\x06\x80\x72\x21\x92\x13\x28\x5c\xd9\x5c\x76\xe4\x30\x77\x61\x87\x15\xd5\x6a\x90\x04\x8f\x16\xc6\x7e\x20\xaa\x1b\xaa\x74\xab\x5a\xcc\xa8\xda\xee\xc7\x68\x99\x46\x85\x86\x37\x04\x08\x4a\xd4\x89\x59\x60\x8c\xd0\x20\x74\x4b\xb1\xd3\x91\x83\x0d\x44\xd3\xa5\x5f\x9d\x02\x02\xd5\x8c\x6d\x85\xc6\x64\x0f\xc7\x1f\x30\xe5\x7b\x29\x86\xd5\xb4\x61\xd7\xe2\xb5\x5a\x8e\x5d\x6c\x56\x47\xce\xa0\x8e\x0b\xe1\x30\x61\x78\x8f\x75\x86\x98\xf3\x78\xc1\xe4\xf7\x4b\x2e\x19\x4c\x3b\x4a\x4b\xfc\x84\x1c\xc5\x31\xb1\xfb\x53\x82\xbc\x50\x13\xb2\xfe\xce\x5e\xbe\xba\x16\x09\xd4\xbe\xec\xe4\x2e\xfd\xd6\x51\xb4\x7a\x33\x25\x08\x95\xfe\x51\x8c\x98\x75\xcc\x17\x6e\x23\x8b\x35\xd4\xb3\x3e\xc2\xd2\x03\x0d\x6c\x95\x91\x26\x9d\x17\xb0\xf0\xda\x88\x08\x4b\xd2\x04\xfe\x2e\x68\xa4\xf6\xd4\x61\xeb\x72\x2e\x6a\xb9\x2e\xa9\x64\x5e\x6e\x30\xad\xbb\x33\x5e\xf6\xd0\x90\x96\x0e\x10\x94\x12\x1c\x8b\xad\xa3\xb5\x17\xaa\x9a\xf3\xf9\x9c\x67\x80\x28\x07\xae\xb0\x8c\xac\x2b\x9f\x3a\xb5\x03\x27\xe2\xb0\xb0\x55\x25\xb7\xba\x75\x08\x75\x03\x55\x55\x39\x90\x44\xd6\xbc\x32\x48\x89\xbe\x75\x5a\xcb\xfc\xb9\x77\xe7\x69\x02\xbc\xc4\x8c\xac\x0d\xe1\x8b\x52\xd4\xcc\xb8\x03\x93\x4a\x31\x3c\x1a\x8f\x8d\x5a\x6c\x67\xad\x93\x33\x0b\x91\xb3\x3b\x4e\xa5\x36\xa5\x82\xdb\x12\xe8\x2a\x71\x5e\x74\x51\x33\xa6\xed\x23\x8b\x52\xac\xd8\xc4\x4a\x4d\x8a\xa1\xba\x15\x65\x23\x0a\x36\x26\xf7\xf3\x8c\xfd\xc1\x7e\x9b\x12\x72\xc5\xf4\xe1\xaf\x67\xeb\xc5\x34\x13\xab\x83\xe3\x2f\x8e\xbf\xf8\xf3\x21\x08\xc2\x39\x93\x94\x17\x3b\xcc\xfb\xa2\x92\xef\x53\x9e\x35\x21\x1d\xc2\xec\xfb\x1e\xd2\xcb\x38\x07\xad\xed\x23\x7e\xf7\xf6\x19\x21\x7d\xe1\xd6\x33\x96\xae\xe8\xfd\xf9\xa7\xb1\xc2\xf9\x36\x49\xb7\x12\x7f\x75\xc9\x96\xec\x8f\x63\xdb\xeb\x88\x9c\xd8\x7f\x27\xd4\xea\x29\x43\x80\x77\x90\x4e\x4f\x5b\x69\x71\x53\x35\x9e\xbf\x78\x79\xf6\xee\xf5\xf5\xfb\xf3\x8b\xd7\x17\x97\x81\x77\xe1\x7e\x6f\xbb\x1f\xf6\xbc\x80\x3f\x7a\xde\x83\x49\x43\x54\x29\x72\x4c\x84\xe9\xfc\xf0\x46\xe4\xeb\xd3\x0e\x23\xcb\x4e\x63\x6b\x97\x2d\x0a\x6f\x88\xf3\x25\xad\x9b\x61\x96\x48\x1a\x95\x48\x91\x3e\xec\x01\x9f\xdb\xfb\x21\x78\xc8\x65\x0f\xc3\xeb\x71\xc1\xef\x19\x7a\xea\xfe\xf7\x6f\xe4\x4e\x1e\xab\xfb\x62\xdf\x7b\x18\xf7\xaa\x25\xfa\x2d\x93\x37\x25\x67\x96\xfa\xd4\x6b\x11\x31\x40\x0e\x38\x36\x0a\x74\xd1\x6e\x42\x7b\x38\x8a\x31\xa9\xd9\x82\xd6\x39\x68\x18\xc5\xbc\xdb\x10\xf5\x29\x96\xf9\x6c\xa6\xd8\xea\x8f\x58\x67\xbb\x50\x1e\x7f\x63\x3f\x24\x7d\xb1\x6d\x16\xb4\xd0\xd4\xbb\x47\xfe\xe3\x9e\xd0\xbc\x7f\x67\x43\xbf\xbd\xdf\x7d\x83\x3b\xb0\xa5\xdb\xce\x46\x37\x3a\xe8\x06\xb4\x25\xff\x81\xdb\xfb\x8c\x69\x37\x94\xdf\xba\xbd\x97\x41\x46\xcc\x20\x7b\xcf\x4e\xc5\x6c\x44\x0b\x7e\x2a\x3c\x44\x3c\xff\xfa\x54\xb7\xf4\x5f\x89\x2a\x5e\xf2\x38\x75\x95\xe6\xde\x34\x22\x75\x42\x98\x71\xa1\x25\x1e\xc0\xb3\xf6\x70\xdb\x63\x72\x8e\x51\x74\xb3\x25\x52\x87\xf5\x74\xd1\x60\xb1\x26\xa0\x7b\xce\x8b\x1e\xf0\x02\x6a\x0a\x7e\xd4\xc6\xf2\xc1\xa4\xd1\xbd\x3d\x87\x76\x7b\xec\xee\x63\xcc\xc5\xe1\x53\xf8\x47\x1b\xfb\x58\x87\x28\xa8\xaf\x1e\x15\xd8\xda\x99\x28\xb0\xb6\xfa\x47\x27\x72\x72\x26\x8a\x84\x0f\x49\xe7\x28\x41\x75\x90\x89\x22\x56\xae\x76\xbc\xb0\xd9\x72\xd4\x05\x7b\xff\x10\xc1\x09\x2f\x06\xc9\x6b\x66\x80\x02\x81\x4b\x2e\x18\x0d\xf5\x1b\x54\x6a\xb7\x81\x2e\x74\x70\x9f\x78\xf6\x50\x4e\xa7\xff\xaa\xc3\xfd\xb6\xaf\x93\xa8\x18\x20\x07\x83\x53\x80\x06\xde\x6e\xac\xed\x39\x7a\xbe\xb4\xfe\x71\x1f\xb1\xd9\xfc\x50\x2d\xe4\xee\x8f\xf3\x6f\xed\x93\x3f\xcc\x70\xb7\x33\x6b\xac\x0e\x72\x9f\xbe\x40\xd1\xca\xb9\x45\x3b\xcd\xf5\x34\x62\xde\xed\x5e\xa7\x9e\xb5\xd4\xe5\xa5\xc7\x63\x65\xf6\xe4\xb5\xa5\x0b\xed\xba\xb0\x3a\xdb\x39\x4c\x06\x97\x74\xd2\x97\xba\x9c\xc4\x5a\x2b\xb9\x8c\xea\xb7\x33\xb3\xc2\xde\x97\x87\xec\x25\x44\x6d\x00\xfd\x27\x26\xc6\x4f\x4a\x88\xf6\xba\x34\x7b\x1a\xc9\x15\x85\x08\xb5\xbb\xe9\x94\x74\x9d\xbb\xed\x1e\xcd\x31\x09\xf4\x37\x6d\x12\x70\x71\x3c\x08\xa8\x0e\x6a\x0e\x0c\xbd\x49\xa7\xc3\x68\x87\xab\x27\xbd\xae\x63\x67\x21\x08\x17\xa8\xd6\xcd\x12\xa3\x71\x7c\x6b\x3b\xad\x8d\x03\x4f\x23\x95\x6c\x09\x01\x8e\xe5\x40\x62\xca\xb0\x75\xd5\x19\x65\x30\xda\x99\x9d\xa5\x2d\xe7\xe3\xb4\xec\x34\x7b\x80\xc4\x5b\x75\xe8\x47\x85\x2b\x76\x2a\x64\xdb\xdc\x50\xcb\x3e\xae\x77\x3f\x8b\x33\x22\x6b\x01\x5d\xd7\x9e\xb8\xce\x47\x61\xd6\xaf\x95\xb8\x63\xa8\x38\xd0\x41\xbf\x51\x20\x91\x97\x56\xba\x36\x21\x66\x90\x45\xfa\x96\x91\x5a\x88\x95\xba\xba\x74\x73\x5e\xac\xef\xb0\x19\xe9\x68\xed\xcc\x6f\x3b\xe7\x8d\x44\xf3\x18\x86\x27\x41\x94\x86\x4d\xe5\xe4\x86\x72\x9a\x18\xb7\xfa\x37\x7c\x7c\xa2\xd9\x3f\x75\x05\xdb\x2a\xbe\xb3\x9e\x8b\xc0\xf5\x42\xe6\x6c\xc9\xb1\xd7\xe4\x13\xe7\x97\xda\x66\x28\x8d\x0b\x6d\x3a\x7b\x4e\xdf\x60\x3d\xf2\x84\x3c\x98\xa5\xdc\x75\xf2\x74\xac\x4b\xef\x93\xf7\xad\x0d\x06\xaf\x21\x02\x30\x15\x7b\xdd\x76\xfa\x53\xbb\x8b\xa1\x6f\xa0\xe4\x9e\x12\xd5\x0e\xde\xbd\xa6\x2d\xf4\x41\x01\xcb\x2c\xc4\x1b\xeb\x5a\xeb\x4a\x6b\x15\xd5\x78\x21\x84\x0e\x52\x99\x68\x48\x09\x0d\x03\xfd\xb0\xe8\x61\x7b\x1c\xb5\x0a\x75\xdf\x71\xc4\x62\x3d\x8f\xe3\x0e\x56\x14\xbd\x93\xab\x40\xb8\x68\xb3\x08\x3b\x8e\x65\x42\x37\x67\xe9\x5a\x35\x6c\x28\xb9\xeb\xf0\x5a\xed\x9a\xdf\x96\xb8\x63\x57\x3a\xea\xcc\x1d\x92\xd6\xc1\xc0\x5f\x1e\x9d\xba\x36\x92\x07\x04\xf2\x8c\x99\xde\x4c\xcb\x3b\x65\xed\x76\xdc\xf3\x9e\x93\xe0\x06\xfc\x11\x27\xe1\xd3\x0a\x57\xaf\xe0\x9e\x6e\xbc\x08\x38\x47\x64\x5a\x63\xdf\x37\x49\x54\x07\x2b\x13\x1b\xfc\x7a\xd3\xb8\xee\xfe\xa1\x6f\xce\x15\x1c\xb5\xdf\x4a\xe4\x10\xfa\xdd\xa9\xe6\x53\xcc\x49\x2a\x09\x5e\xe0\x8b\x6e\x62\xb7\x7b\xb9\x6f\x7f\x62\x91\x19\x13\x28\x4e\x5c\x14\xa0\x97\x57\x29\xa9\xbc\xb7\x69\x87\xdc\x6e\x27\x8d\x6f\xfd\x39\x86\xd0\x32\xf0\xa0\x7b\x0a\xf4\xbd\xbb\xb6\x10\x8b\xe5\x31\xd3\xd0\xa1\x2d\xd6\x59\xfe\xa1\x86\x0d\x9a\xe9\x50\xa8\xf3\x46\x33\xbe\xc3\x51\x42\x9d\xde\xa9\x06\x7d\x60\x02\x45\x3d\x9a\xe4\xb9\x0f\x68\x28\x45\x81\xa6\x72\x50\xbb\x9b\x6c\x3e\xc4\xa9\x83\xf7\x52\xcf\xd5\x92\xcf\x65\x80\x71\x13\xbe\x86\xeb\x4a\x11\x57\x43\x66\xdb\x84\x61\x12\x5e\xa6\x8e\xb7\xd6\xc2\x65\x68\x22\xdb\xe1\x80\x0d\x00\x4c\x5a\xf1\x03\x0d\xdd\x51\xc5\x67\xe5\x06\x9c\xeb\xda\x31\x56\x78\xc5\xa8\xc2\x8a\x3f\x5e\x4b\x67\xf1\x36\x57\x16\xd8\x07\xa9\xdb\xe4\x90\x07\x37\x54\xe6\x25\x54\xd5\x66\xc5\x90\x71\xc6\x69\x48\x42\x8b\xc2\x30\xe5\xe0\xde\xa3\xc1\x97\xfc\x68\x46\x35\x59\xc5\x92\xf7\xba\x1c\x01\x7a\x3c\x75\x39\xee\x3c\x5e\x26\xa4\xdd\x39\xb3\xed\x3c\x58\xce\xbf\xed\x37\x5d\x8d\xdd\x4e\x0c\x49\xcf\x0b\x1f\xd7\xd6\x71\x20\xc3\x80\xc3\x7c\x80\x4e\xc7\x23\xcc\x19\xe8\x5a\x3d\xd1\x1a\x72\x8f\xf4\xa1\xc8\x70\xcf\x7b\x08\x60\xfd\x68\xb9\x2b\x2e\xe1\xbf\x2e\x21\x3b\x11\x33\xa2\xe5\xdf\x93\x3e\x9f\xab\x6d\xdc\x61\x13\xfe\x14\x0a\xd3\x24\xa9\x5a\x36\xac\xe5\xcd\xe3\x86\xd0\x9f\x62\xdb\x41\x4e\x7d\xd8\x26\x8d\x08\x95\x80\x13\xf0\xfd\x6c\xe7\xad\x58\x07\x68\x67\x20\x6a\xbe\xe0\x25\x44\x67\x0f\x08\x22\xa3\xe7\x90\x3d\x31\x6e\x2f\x01\x7a\x22\x8c\xeb\xf3\x8e\x5d\x56\xa3\x33\xd4\xea\x45\xd1\x44\x12\xd6\x43\xeb\xf5\x4f\xfc\x1a\xee\xa2\x4f\x24\x46\xb7\xec\x92\xad\xb6\x5d\xe6\x70\x75\x82\x60\x42\x43\x26\x97\x7a\x7d\x3a\x34\xd6\x36\x39\x68\x1f\x7f\xae\x1d\xb5\xf7\xf9\xd8\xf9\xdb\xc4\x65\x63\x0f\x7d\x37\xff\x65\xb8\xe7\x5a\x6c\x3a\xb8\x6a\x93\x1d\x79\xcf\xd2\xa6\x57\x60\xf7\x12\xf7\x77\xbd\x43\x6b\x04\xb2\x32\x59\x41\x57\xd5\x10\x4d\x52\xad\x98\x28\xf8\x67\x97\xf0\x68\x94\x3a\xda\xe7\xd3\x6f\xce\xa4\xca\x3c\x1c\x77\x3a\x7a\xa4\xb8\xf5\xb6\xf2\x2f\xda\xb4\xdd\xfb\x65\x4e\xa7\x65\xac\xff\x03\x36\x2a\x4d\x6c\xbb\x37\x2a\xb9\xfc\xc9\xc5\xf2\x02\xca\xfe\xb3\x17\x3b\xba\x36\xfb\x66\x94\xfe\x74\xf7\xcc\xb9\x99\x7b\x3a\xcb\xf4\x6f\xf5\x9f\xef\x9a\xb7\x17\x50\xd5\x35\xf5\x64\xd0\xd1\x47\x4f\x78\xd1\x3d\xe1\x34\x46\xe3\x4e\x57\xa9\x9d\x9b\x18\xa9\xbf\xff\x0b\x3e\x7b\xd1\x44\x1e\x74\x58\x2f\x43\xdf\x80\xda\x82\x67\xf4\x79\x48\xf6\x2f\x7e\x1f\x52\x0a\x36\xa0\x2f\x1d\xf5\x84\x66\x4d\x4e\xb2\x3f\x05\xa1\x1e\x31\x9e\x00\x60\xa5\xa3\x33\xa6\x0c\x61\x4e\x6b\xc8\x5e\xa0\xde\x49\x56\xcc\x49\x23\x62\x8e\x4a\x7f\x07\x2f\xd1\x25\x44\x54\x10\xda\x6c\xcb\x6c\x59\x8b\x52\xac\x9b\x62\x3b\x86\x4a\x3a\xc5\x0b\xac\x11\x2d\x20\x23\x73\x76\x4b\x36\xbc\x04\xc7\x81\x8d\x8e\x2a\x36\x79\x33\xa1\x8c\x83\x84\xce\x04\x2d\x58\x93\x19\x80\x35\x6a\x80\xa7\xb1\xef\xfd\x14\x12\x24\x62\x78\xbf\xcb\xf1\x5f\x62\xf2\x88\xe6\xfd\x14\xdb\xee\xf2\x78\x84\xc5\xc0\xa7\xd8\xdd\xc0\x71\x65\x72\xea\xe7\xa3\x48\xa5\xab\xd0\x6a\x23\xd5\x5a\xab\xb6\x35\xdf\xc3\x57\x1f\x04\x00\xbf\xbf\x77\x88\x2e\x1d\xa0\x7c\xdd\x9b\x3a\xf3\x60\xe7\x02\x8d\x7c\x04\xf9\x83\x17\xc3\x7f\xca\xde\x7a\xe2\x8c\x13\xbc\x50\xcc\x8a\x22\xe4\x9d\x9c\xaf\xc5\x42\x37\xd1\xb1\xb6\x04\x34\x9e\x29\x1c\x5a\xcb\x85\x93\xf9\x9c\x8b\x4a\x10\x78\xda\x87\xa2\x3c\xdc\xc6\x7e\x54\xd5\xd8\x0a\x1f\x49\x59\x8d\x2f\xbc\x7d\x14\x75\xb9\x16\xba\x29\xac\x0d\x33\x01\x45\x5a\x30\x13\x9a\xfa\x8e\x12\xe4\x97\x08\x6c\xa1\x49\xdd\x68\x1a\xed\xac\x97\xc8\xbb\x0a\xfb\xd8\x6f\x23\x87\x62\xdd\x9a\x19\xff\xfa\xc4\xb2\x6a\x99\x86\x13\x5f\x17\xbd\x7f\xa6\xa0\x20\xf9\x27\x99\x6b\x2c\xe5\xfb\xb3\x35\x96\x1f\x37\x39\x6b\x60\x5a\xf1\x12\x7d\x4e\x6c\x60\x6c\x42\xbc\x23\x7f\x4d\x8b\x22\xe4\xc4\x48\xf8\xda\xfe\xf4\x51\x4d\x19\x69\x84\x9c\xdc\xa4\xc2\x6e\x77\x73\xd4\xa6\xf3\x36\x47\xbe\x3f\xf0\x0e\x2d\x52\xc9\x4e\xe1\x7f\x76\x6d\xc6\x6e\x6e\x61\x48\x4b\x5b\x67\xa7\xa1\x6f\x77\xd3\x0d\x84\x16\xa5\xe9\x06\x39\x8f\x10\x45\x5a\xc7\x6c\xc5\x78\x71\x8a\xc1\xd3\xcc\x19\x5c\x7e\x3a\x18\xc2\x42\x51\x43\xf9\x4a\x5f\xb7\x37\x06\x36\xc5\x88\xc0\x35\xea\xfa\x4a\xb2\x61\x10\x6d\x82\xc1\x18\x90\xae\x1e\xca\x79\x9d\xd1\x86\x6c\x58\x2a\x2d\xfe\x6e\x63\x05\xce\xe4\xe3\x29\x3a\x8e\x38\xda\x4b\xd1\xa1\x55\xf2\x6b\x72\xd4\x75\xf3\xea\x35\x38\x7f\x60\xb0\x63\x5b\x03\xa2\x77\xe6\xfb\x36\x48\x58\xef\x40\x8b\x36\xaa\x18\x6f\xbc\xb8\x7e\x6d\x2d\xc0\x48\xa4\x15\xad\x17\xbc\x1c\x43\xee\x9f\xf5\x8a\x41\xfc\x20\x4e\x56\x0a\xb2\x60\x92\x70\xe9\x35\x06\xbb\x6a\x82\xd9\x68\x63\x00\xb7\x8d\xfb\x13\xc4\x3b\xd3\xaa\x2a\x38\xa2\x79\x2b\x4a\x18\x20\x0c\xb9\x9e\x96\xd7\x56\x44\x7a\x36\xa6\x18\x7a\x9f\x4c\xfa\x45\x10\xdc\x78\xb0\x54\x8f\x32\xcf\x5c\x9c\x0a\x2c\x70\x76\xa2\x92\x6d\xfa\x7a\xb3\x78\x55\xec\xe6\x86\x9b\x3d\xf1\x20\x9c\x70\x24\xae\xec\xd7\x9e\x87\x1d\x71\xdd\xea\x7f\x4c\xd0\x70\x3e\x2f\x84\xa8\x35\x89\x1d\xa4\xc5\xf5\x91\xf5\x1d\xf6\xfa\xb8\x04\xb7\xd1\xc3\x00\x76\xeb\xe0\xc0\x40\x26\x15\x8d\x80\x35\xd6\xbe\xd9\xea\x70\x1e\x06\x7b\xa7\x45\x06\x12\x8d\xad\xe3\x72\x7c\x62\x4a\xfc\x4b\x97\xa3\xea\x4d\x0c\xc0\xe5\x2f\x59\x5a\x09\xf1\xc4\x2b\xd3\x6e\x77\xe3\xe3\xb7\x85\x30\x5b\x2d\x35\x05\x7a\x20\xd0\x7b\xbd\x2e\x8a\xa9\x1d\xbb\xc6\x0d\xa9\x84\xba\xc1\x78\x5b\x6d\x1b\xc9\xfd\x6d\x79\x00\x44\x56\xc4\xa0\xb3\x3e\x8a\x44\x58\xd6\x9e\x57\xf6\x7f\xcc\xf5\xd8\x8a\xf5\xfa\x84\xf7\x63\x4a\x49\xd5\x3f\xf2\x68\xc7\x93\x4a\x48\x6f\x25\x57\xcf\x08\x72\x9d\xc3\x0f\x1d\xc7\x45\xcd\x74\xb0\x97\x7a\x10\xe3\x20\xca\x66\x4f\x3e\x0a\xbc\x11\x8d\xe0\xc1\xee\xb5\x44\xb5\xa1\x0d\x51\x62\x58\x69\xb3\x13\x25\xcd\x45\x61\xb4\xaf\x92\xc7\xf0\x6c\x4b\x41\x1a\x06\x20\x09\xe6\x1d\x77\x4e\x8a\x1a\x33\xc7\xf5\x65\x54\x30\x80\xc6\xe3\x75\xea\x7a\x34\xe5\x40\x46\x83\x10\x4c\x5e\x66\x3c\x67\x4e\xca\xd1\x31\xa4\xa8\xca\x29\xc5\xc4\xd6\x1d\xe8\x65\x98\x12\xf2\x66\x4b\x16\x6b\xd6\x40\x84\xa8\x8d\x46\x2e\x45\xc2\x22\x35\x13\xa2\x60\xb4\x04\x34\x62\xc9\x0c\x1a\x31\xba\xe7\x35\x6c\xbf\x07\x49\x94\x66\x31\x02\x0b\x96\xcc\xd7\xd8\xc4\xef\xaa\xa9\x01\x05\xed\x13\xec\x57\x4b\x01\xe7\x31\xf9\xd2\xd2\x41\x47\x42\xde\x38\xb9\xef\x60\x14\xfb\x0d\xf8\xcd\x3d\xb3\xa5\x3b\x9a\x73\x74\x17\x36\x97\xb2\x6e\x3c\x70\xa4\x5d\x4d\x7f\xe4\x48\xbb\x26\xde\x8e\x8d\x77\x19\x86\xb4\x76\x70\xc6\x5a\x42\x3a\x48\xf6\x90\x63\xa4\xa0\x88\xb3\xaf\x0a\x11\xba\xce\xb9\xba\xd5\x20\x3f\x08\x2d\x89\x28\x33\x46\x2a\xa6\x24\xde\x4c\x94\x3d\x30\x0a\x78\xb9\x78\xc6\xc2\xf0\x0e\x9f\x4c\xf0\xf2\xf1\x53\xcf\xce\xc2\x79\x93\x56\xa0\xa7\x5d\xa4\x45\x7b\xcd\x47\x3b\x64\xf2\x3d\x72\x37\xc8\xca\x3d\x86\x83\x05\xbb\x53\x42\x3b\x01\xfb\xf8\xf0\xd0\x73\x9d\x55\xcb\x79\xf5\xef\x6b\x56\x64\x4b\x3d\x8c\xf7\xf6\x82\x9a\x09\x75\x2f\xc0\x52\xab\xcb\xae\x14\x92\xcf\x79\x86\x10\xfb\xaa\x1e\x42\x03\x59\x3e\x34\xd1\x54\xea\xfa\x0f\xca\x9f\xa9\xd6\xdf\x47\xb9\xc9\x9a\x3a\x1b\x8c\xc2\xe3\xe7\x95\x55\x94\x10\x3a\xf0\x40\xc7\x2c\x9a\xc4\x5e\x8d\x06\x71\x70\xeb\xe9\xc1\x3b\x0e\xc6\x4b\xf0\x3a\x26\x5f\x1e\x1e\xa6\xce\x5e\x9f\xc6\x3e\x44\x2b\x90\xb3\xe6\x56\x8a\xea\x5b\x6f\x61\x15\x55\xbe\x77\x0e\x4f\x5e\xf6\x7a\xda\xbc\xc4\x34\xa6\x61\xbe\x38\x0b\x38\x0b\xdb\x93\x58\x19\xbf\xf5\xd7\xbc\x91\xef\x75\xfe\x38\x53\xd0\x62\xfb\x5e\x21\x74\xc4\x86\x11\x59\x43\x84\x7d\x4d\xb9\x7e\xf6\x36\xbc\xcc\xc5\x06\x10\x2b\xff\x8a\xb5\xca\xa9\x28\x21\xb7\x70\x74\x84\x34\xc1\x16\x02\x22\xeb\x82\xce\x9b\xf7\xc3\xd1\x53\xf2\x21\x7d\x1b\x18\xab\x83\x67\x18\x20\x33\x2e\x03\x29\xd5\xff\x06\x8f\xe9\x98\x64\xac\x06\x98\x1a\x87\xf5\x97\x86\x7f\x23\x3a\xe5\x1a\x71\x39\xde\x14\x07\x0c\x2f\x10\x93\xac\x6d\x77\x68\xc5\x9a\x11\x1f\x69\x0c\xb9\x67\xc8\x28\xd5\x54\xa2\xcc\x03\x00\x75\xcf\xa9\xa4\x6d\xbd\x70\x13\x32\xb1\x1a\x10\xc4\x31\x9f\xef\x7f\x17\xeb\xb5\x79\x12\xfd\x95\x18\x23\x66\x2d\x44\xb8\x95\x3d\x9f\xcb\x0b\xa7\x2c\xe9\xf5\x58\x0a\xbf\xbc\x7b\x2a\x3b\x78\xef\x74\xe8\x8d\xd9\x60\x1d\x71\x91\xdc\x60\xff\x9b\xde\x60\x76\xcf\x1b\xc4\x62\x52\x1c\x4c\x08\x38\x12\xf8\x65\x69\x1d\x30\x34\xa5\x1d\x63\x34\x4f\x1d\x7b\xf9\x83\x51\x48\x35\x17\xee\xa9\xf9\x95\xd8\xa8\x36\xdc\x55\x5a\x6e\xc3\x51\x7c\x9a\x2d\xf4\xe6\xfa\x31\x5b\xf8\xca\xc2\x2c\xf7\xdb\x42\xee\x97\x37\x5b\x98\xde\x21\xba\x56\x4c\x9f\x06\x2a\x32\x7a\xcc\x78\xab\x92\x85\x2c\x4a\x60\x49\xa8\x5a\xe9\xd5\x9c\x05\x78\xe3\xa0\x6d\xd0\x38\xfe\xda\x6f\x89\x36\x88\xc8\x55\xf0\x92\x8d\x9d\x69\xcf\x25\xad\x6f\x28\x64\xec\x27\x14\x5c\xc2\x54\x83\xda\xff\x2a\xe7\xf3\x39\xab\x01\x97\x63\x26\x78\xd1\x68\x5d\xfc\x06\x78\xd6\xcd\x92\x01\x62\x89\xda\x6d\x91\x30\x4a\x6b\x0e\x99\xfd\x3e\xec\xe8\x59\x1b\x70\xaa\xd7\x26\x25\x80\xaa\xf6\x6d\x56\xac\xb1\x8b\xf7\x29\xa1\xd1\x8b\xef\x4d\x73\x45\xea\xa4\xca\x91\x8b\x9e\x44\xb5\x81\x7f\xc1\x05\x41\xfb\x73\xa1\x6a\xa8\xb3\x81\x60\x9d\x01\x1e\xa3\x8f\x1f\x09\x32\x9e\xb5\x11\x41\x7b\x2d\x98\x36\xcc\xf4\xe7\xe5\xe5\x84\x73\x48\x2a\xda\x48\xc2\x25\xba\xf0\x21\x36\x4b\xc7\x21\x4c\x78\x1b\xec\x38\x83\xd1\xe2\x7c\xcc\x39\x74\x8a\xb9\x7e\x5b\xbc\xf1\xcb\xef\xde\x5a\x2d\xa2\x4c\x3e\x66\x8b\xe7\xf3\xdf\xb8\xc7\xde\xd6\xf8\x1a\xdf\x9e\x1b\xec\x5c\x63\x10\xbd\xf0\xb7\x5f\x97\x1d\x8b\xf1\x31\x5b\x76\x19\xab\x54\x1f\x24\x31\x7e\xdf\x67\x03\x0b\xe4\x9f\x99\xdc\x30\x66\x30\x84\xf8\x8a\xd6\x18\xc8\x0c\xbe\xc3\x00\x97\x84\x54\x1f\xea\xe2\xdd\x57\xff\xc0\xc2\xc5\x1c\xd5\x73\xe8\x9d\xfe\xb6\xd8\xd3\x65\xba\x6c\x15\xb6\xbd\x5d\x6d\x68\x55\xe9\x34\xf1\x6a\x1c\xda\xba\x49\x18\x7a\xa0\x8a\x8e\x30\x44\xd7\xc0\x0b\x9a\x2d\x4d\xfb\x06\x32\xb0\x01\x3f\x38\x75\x0f\x77\x7a\x4f\xfe\x16\x42\x08\x97\xe7\x63\xf6\xff\xcc\xb4\xb0\xeb\xf5\x7c\x20\x8a\x8a\xa1\x05\x63\x7c\xb2\xa3\xbc\xd2\xdf\x4f\x88\x96\x94\x61\x4f\xae\x82\x3c\x44\x2d\x4d\x7e\x0b\xf0\xf5\xf3\xcf\x63\x71\x33\x42\x05\x3a\xf4\x72\x0c\x3d\xda\x99\xcc\xc8\x8f\xf0\x7e\x15\xdc\xbd\x3a\xde\x07\x32\xce\x36\x3a\x1d\xcd\x46\xfd\xbf\x9a\x11\xba\xa1\xdb\x31\x24\xfb\x30\xdd\xb0\x86\xac\xe8\xd6\x36\x35\x53\x9c\x9d\x4e\xb1\x3a\x75\xe2\x49\xef\xf4\x4a\xdd\x99\xd5\xcc\x1c\x77\xa4\xc9\xa0\xf5\xb6\x23\x47\x06\xad\xf7\xe4\x5f\x4a\x42\x15\xd0\x82\xff\x82\x20\x49\xef\xd3\xd1\x20\x01\x48\x0e\x94\x46\xdb\x5d\xbb\xf8\xb2\x65\xd3\xf3\xf5\x29\xdb\x32\x43\x0b\xa5\x17\x95\x9f\x28\xc7\xc3\x44\x69\x7b\xdd\x99\x13\x4d\xd4\x4c\x6d\x6b\x2a\x6e\x24\x70\xf7\x9a\xcc\x0a\x5e\xde\xa6\xdf\x99\xa0\x84\x77\x2d\x59\xc8\x42\xc5\x80\xc3\x47\xb0\xf5\x70\x88\x96\xbd\xe3\x0d\x9f\x15\xc1\x05\x85\x7c\x9f\xf9\xe2\x2c\xdd\xda\xfd\x1d\x9a\x70\x1d\xff\x6f\x97\xf3\x0c\xb8\x78\x94\xe2\x04\x41\xae\x54\x95\x35\x59\xa9\xf8\xdc\xe4\x7f\xc2\x64\x0b\x52\x40\x78\xbf\x68\x10\xb8\x0d\x5f\x37\x9b\xd1\xca\xb1\x9a\xaa\x52\x51\x90\x82\xd1\x5b\x42\x89\x76\x6e\xf8\x24\xfc\x45\x6b\x4d\x3f\xe6\xba\xc2\xdd\x7d\x06\x6d\xf4\x7a\xa8\xb2\xa0\x82\x79\xa2\xcc\x45\xf3\x08\x87\x69\x52\x45\x39\x5f\x0e\xaf\x9a\x3d\x40\x60\x67\x33\x4a\x94\x1d\xe5\x9f\xb6\x75\x20\xc9\x82\x49\x2d\x48\x34\xf0\xef\x90\x2e\x46\x29\xdb\x8a\xfe\x36\x94\xf5\x9a\xed\x25\x65\x43\x60\xbb\x88\xd9\x94\xe9\x22\x67\x96\x22\x60\x45\xda\x46\x31\xf9\x29\xe9\xc4\x1f\xf0\xc7\x53\x8a\x5e\xa3\x87\xd0\x8a\xab\x92\xa6\x96\xb6\xcd\x79\x37\xd9\x3c\x98\x70\xfa\x92\x8e\xb5\x26\x76\x68\x69\x45\x45\x33\x2e\xd5\x1b\x32\x38\x1c\x3c\xbd\xe9\x00\x29\x41\x9a\xda\x91\x49\x67\x7f\xeb\x47\x83\xf8\xed\x4e\x1d\xbf\xbe\xeb\x76\x13\x43\xdf\x79\x93\x14\xa5\x77\x01\xbc\x4f\x82\x03\xff\x93\xec\x4a\x5b\xa7\xa7\xdd\xfb\x80\x9f\x50\x47\x2b\xba\xf2\x31\x31\x3a\x2a\x38\x1d\x12\x68\x2b\x80\x0a\xda\xb2\xd2\x3b\x64\xa7\xa0\xc6\x30\xb6\xf3\x44\xb4\x77\xb8\x03\xe7\x4b\x8a\xea\xd2\x71\x08\x29\x8d\xfe\xb5\x2b\xe1\x41\x13\xa3\x9f\xe3\x9e\xaa\xcf\x82\x42\x43\xaf\xaf\x51\x04\x8f\x92\x6e\xa8\x9d\xd6\x3b\xc9\x0b\x76\x62\x6f\x04\x69\x9f\xb1\xfd\xbf\x44\x23\xf7\x79\xc2\x73\x2b\xcf\xf9\xc9\x84\x2d\x0c\x10\x58\x92\xb9\x24\x8a\x12\x78\x6e\x92\xc8\xdb\x9d\xa5\x35\xa3\x11\x6a\xf9\x79\xd3\x7c\x47\x6b\x6b\x8f\x40\xfe\x0b\x52\x87\x8f\xc9\x60\x72\xe4\x12\x88\xb7\xce\xe9\x9e\x17\x22\xe6\x8a\xdb\x07\xd6\xa0\xfb\x9c\x9e\x92\x41\x29\x4a\x36\xf0\x27\x7a\xc9\x26\xe6\x7b\x60\x85\x32\x02\xed\x1c\xae\x79\xda\x90\x25\xcf\x73\x66\xf3\x3c\xaf\xc4\xba\x49\xe1\xb3\xef\xe8\x9d\x0c\x06\xfe\xb4\x0e\x0e\x88\x8d\x01\xf1\x9d\x1a\x21\x11\xfe\xf9\xd5\x95\xa2\x08\x0e\x2a\xe3\x15\x95\xcb\x29\x01\x19\x9f\x91\x1c\x05\x73\xf5\x1b\xe1\x25\xf9\x5f\x57\xe3\x1b\x07\x57\x32\x2f\x04\x95\xf8\x0d\x5e\x26\x25\xbe\xaf\x2b\x32\x63\x98\x5c\xbf\x06\x29\x3e\x43\xe9\x90\x62\xb7\xaa\x27\xcc\x14\xa5\x6a\xe8\xb6\x2c\x7a\xaf\x55\x0d\xd4\x34\xbb\xd5\xdc\xd4\x8c\x19\x69\x2d\xde\x5c\xb3\x0f\xa9\x4d\x36\xdf\x7e\xfa\x9f\xff\x88\xc8\x70\xe2\x1f\xbc\x0f\xe4\x09\xf9\xc9\xd1\xf6\x4f\xff\xf3\x1f\xad\xc3\xa4\x89\x0c\x5c\x49\xab\x37\xe0\xa9\xf4\xa1\xba\xff\x29\x32\xe9\x27\xc9\x2d\x13\xc5\xa0\xaf\x43\x7e\xfa\x05\x08\x2c\x54\x92\xcb\x82\x0d\x76\x7b\x21\xe0\x82\x0c\x07\xe4\x49\x8f\x7e\xc3\xec\x86\x1d\x6d\x8d\xc9\xbe\xc6\xc0\xeb\xb0\x47\x4b\xa3\x81\x67\x02\x7c\x57\xe5\x54\xe3\x0d\x64\xb4\x66\x12\x44\x2c\x7a\x74\xb4\x25\xd5\xba\x56\xec\x73\x33\xf5\x8c\x97\xfa\x92\xd6\x57\x94\xb3\x4f\x2d\x98\xbc\x32\x5f\x87\x2e\x84\xdf\xd5\xf8\xfc\x73\x57\x7d\xca\x9b\x73\x51\x14\xb4\x6a\x58\x1e\xa5\xa7\xc3\xb8\x23\x25\x18\x99\xc2\xe7\x6a\x50\xae\xa1\x36\xdf\x77\x96\xff\xbc\x6e\x8c\x27\x37\xa0\x42\x8b\x79\x6b\x07\xdb\x99\x8d\x22\x6c\x8c\x66\x49\x2b\x2d\x9b\x94\xbe\xd2\x3a\x63\x45\x41\x72\xbe\x62\x65\xa3\x2e\xa1\x1e\xf8\xf7\x30\x06\xbc\x47\xbb\x5e\x1c\xe8\xcc\x2c\x22\x0e\xe0\x4a\xfd\xd4\x52\x09\xf8\x34\x18\x5a\x49\xe7\x22\x5b\x37\x83\x11\x5c\x6e\xc0\x2b\x06\xb7\xdb\x59\xb1\xa1\xdb\x06\x11\xa5\x28\x99\x15\x22\xbb\xb5\x9c\xad\x92\xce\xd6\x25\xd4\x47\x45\x2a\x21\x76\x40\xd1\xb4\xbc\xa1\x4d\x9f\xbd\xbe\x38\xff\xbb\x7f\x91\x61\x6e\xdb\x6d\x11\x4d\xc4\xbb\x03\xf5\x6c\x9a\x0d\x97\xd9\x92\x0c\xa1\x13\x27\x5c\xd0\x86\xed\xec\xef\xc5\xd9\x1b\xeb\xb0\x8b\x57\xea\xd2\x78\xff\x0e\xee\x68\x3d\x9c\x4c\xa0\xf6\x44\xed\x95\x92\x6e\x27\x5a\xd8\x1e\x3c\x0d\x6b\xb5\x8d\xe5\x03\x59\xd3\xb2\xa9\xa8\xda\xff\x56\x69\x51\xe7\xac\xc6\x57\xfb\x4a\xcf\xce\xcb\xc6\x16\x16\x7b\xcd\xe6\xd2\x14\x1a\x34\xa2\xe0\xb9\x6b\x6e\x56\x33\x7a\x6b\x99\xb9\x7d\xb3\x7d\xf7\xed\xf3\x17\x97\xaf\x5f\x7d\xfb\xa2\x6b\xca\xad\xeb\xd0\x92\x28\x28\x1a\x66\xb4\x61\x90\x15\xf6\x09\x19\x54\xf7\x9f\x7e\x09\xe2\xd9\xa9\xc7\x02\xd5\x3d\x78\xee\xf8\x2f\x20\xac\x54\x80\xe2\x4e\xd8\x3d\x05\x4c\x25\x83\x19\xa1\x07\xb7\x6f\x09\x83\x75\x0e\xd7\x4f\xfb\x1c\xfd\x4e\x04\xe1\x91\x2f\xfc\xf4\xfe\x53\x11\x45\x72\x46\x1f\xc1\x2b\xb7\x50\x05\x3a\x18\xe2\x1b\x1b\x6f\xb3\x2d\xb3\xff\xa4\x68\x9b\x6d\x99\xf5\x8f\x7a\xe9\xc5\xa4\xa7\xa2\x5f\x6c\xc5\x8f\x8d\x7e\xb1\x0d\xec\xf7\x15\xc1\xa0\x96\x0e\x89\x11\x8b\x74\x04\xc8\xd8\x3a\x3b\xe3\xab\xae\xd4\x35\x2d\x6a\xc5\x6a\xe2\x43\xfc\x8b\x10\x2b\xb2\xa1\x75\xa9\xb3\x30\xbb\x7d\xf5\xbf\x80\x4e\x9f\xac\x58\xd3\xd0\x05\xb3\x3f\xaa\xfa\xeb\x06\xd3\x35\x48\x8d\x7e\x36\xab\xc5\x46\xfd\x04\xb5\x57\xeb\x46\x6a\x1f\x40\xcc\x82\x23\xc8\xd1\xe1\xe1\xbf\x28\xae\x12\xe8\x17\x18\x80\xa5\x71\x2d\xb4\x00\x15\x55\x2d\x2a\x56\x17\xdb\xfe\xaa\x8d\xa5\x36\x33\xe9\x11\x7a\x3a\x0d\x98\x28\xef\xa1\xd5\x58\x8a\xcd\xbf\x09\xb1\xfa\x1e\xe7\xf6\xbe\x4b\xab\x01\xba\x0a\xd8\xe0\x5f\x5c\x69\x78\x88\x02\x19\x5c\xab\x33\x76\xc9\xdb\x71\xfd\x36\xa7\x93\xd5\x8c\x4a\xf6\xa2\x60\xea\xcf\xe1\x20\xe7\x77\x83\xc0\xe9\x26\x6e\x61\xca\x73\x75\x41\xc1\x1c\x4f\xd4\xc7\x89\xde\xa9\xc1\xce\x5a\x78\xa3\x64\x4d\x73\xcd\xee\x21\xe0\xc5\xf1\x75\x03\x70\xea\x3a\x21\xb3\x82\x66\xb7\x4f\x07\x3e\xcb\xd7\xf2\xbf\x3b\x21\xff\x63\x3e\x3f\x3e\x3e\x3e\x8e\xca\xcd\x45\x29\x27\xea\x92\x3c\x21\x05\xad\x17\x2c\x6e\x06\x28\x61\x52\xd3\x9c\xaf\x9b\x13\xf2\x55\x75\x1f\x15\xd0\xca\x90\x13\x72\x38\xfd\xd3\x97\xd1\xb7\x8a\xe6\x8a\xd1\x52\xdf\x8e\xd9\x8a\x1c\x4e\xbf\x84\xff\x6b\xff\x1d\x15\x97\xa2\x3a\x49\x7e\x00\xff\x8d\x13\x72\xa4\x6a\xc6\x5d\xe8\x23\x78\x62\x53\x08\x47\x05\x26\x1b\x36\xbb\xe5\x72\x22\xd9\x3d\xce\x73\x42\x81\x4d\x3c\x21\x4a\x12\xec\x28\xac\x8e\xcd\x04\x39\xcd\x74\xb9\x95\xf8\xa5\x67\x8b\xaa\x64\xa2\xb9\xd1\x6e\x6a\x9b\xd2\x3c\x7f\x71\xc7\x4a\xf9\x9a\x37\x92\x95\x4c\x09\x32\x05\xcf\x6e\x07\x63\x47\xf7\x2c\xc6\x6f\xc6\x47\x5c\xd5\x9f\x62\xb6\x9f\xf3\x25\x2f\xb4\xbf\x9a\xb9\x76\xda\xb0\x52\xad\xae\xd5\xbc\xce\x35\xc0\x21\x3a\x66\xbf\xc1\x73\xfb\x86\x96\x74\xc1\xea\xa9\xce\x14\x74\xc9\xb4\xdf\x45\x63\x49\x12\xcf\xaf\xd7\xa2\xae\x69\x25\xa4\x1f\x2a\x5a\x37\xec\x55\x29\x87\x7b\xd8\x18\xd5\xc6\x4b\x9a\x49\x51\x93\xc7\xea\x56\x1a\xfd\x18\x88\x64\x1d\xa7\x44\x11\xf3\x4b\xba\xe2\x85\x35\x1f\x85\x1e\xae\xa5\x9c\xcc\xe1\xf3\xc0\xc7\x3d\x6e\xeb\x36\xd3\x57\x88\xb7\xc0\xa3\x60\xe1\x73\x7e\xe7\x7f\xd4\x49\xe0\xdc\xea\xb7\x2f\x23\x5f\x7b\x67\x1f\xb5\x5d\xfd\x05\x5e\x90\x3b\x0a\xb6\x76\xbe\xab\xef\xe4\xd3\x13\x28\x40\xc4\x1d\xab\x0b\xba\x45\x31\x50\x03\x33\xd1\x15\x78\xf4\x2b\xb9\x8a\xaf\xa2\x4c\x16\xad\x8a\x26\x3d\x37\x2f\x09\x2f\xd1\x21\xfd\x0e\xfc\xac\x79\x49\x28\xde\x36\x44\xed\xc9\x98\x64\xac\x04\x18\x2d\x68\x4b\x55\x0f\x9d\xe7\x89\x6f\xfd\xb1\x4e\xe4\xb7\x8c\x61\x56\x1f\xd3\x9f\x79\x00\x67\x35\x67\x73\x4c\x02\x0d\xd9\xc3\xd1\x89\x28\xea\x14\xa4\xbb\xad\x58\xbb\xf6\xd4\x1a\x0e\xa4\x33\x1a\x65\x4b\x96\xdd\x5a\xa6\x16\x87\x16\xe1\x18\xcc\x79\x9d\xc2\x56\x32\xf0\xf3\xab\x66\xa1\x57\xe6\x5e\x62\xa6\xad\xbf\x5d\xbf\x79\x3d\xb2\x03\xd5\x96\x29\x35\x76\x1d\x7d\xa5\xa7\x12\x82\xf1\xf8\x69\x7c\x34\x4b\x01\xcd\x86\x9b\x01\xde\x1b\x94\x4b\x32\x63\x73\x51\x33\x32\xa7\x20\xe4\x8a\x35\xbe\xf1\x48\x3c\xae\x07\x12\x18\x2a\x8e\xa6\x5f\x6a\x9f\xe9\x66\x4a\xc8\x5b\xda\x34\xc0\xb1\xc2\x13\x6d\xd0\xd6\x75\x4d\xdb\x5a\x23\xe9\x96\xac\x2b\x88\x85\x50\x5b\x36\x14\x35\x59\x97\x92\x23\xde\x7f\x69\x5c\xe8\x0a\xba\xdd\x9f\x40\x4f\xbd\xef\x17\x7a\x1b\xbd\xa7\x7d\xd5\x2c\xc6\xfe\xb4\x5b\xaf\xbc\xee\x20\xf1\xc2\xdb\x83\xb9\x5b\xab\xee\xd5\x7f\xf8\x0b\xef\xd7\xde\xf9\x4e\x47\xaf\xe8\xd1\x97\xad\x67\xd4\x7b\x86\xef\xef\x27\xa9\x97\xf8\x13\x3e\xb4\xbd\x1f\xcd\xbd\xef\xa0\x79\x5c\x95\x0c\xa9\x9b\x34\xd6\x91\xa3\xaf\x0e\x57\x0d\x61\xb4\x61\x13\x5e\xf6\x7c\x15\x13\x8f\xec\xfe\x96\x47\xdd\x5b\x9a\x78\x46\x41\x6f\xab\x64\x9a\xae\xa7\x94\xa9\x37\x43\xd5\xb1\x58\x92\x4f\xdd\xa7\x46\x8a\xea\x6d\x2d\x2a\xba\xa0\x9e\x82\x0b\xd8\x79\x63\x8b\x0c\x5f\xd7\x14\x89\xf8\xb2\xe6\xee\x90\x89\xa7\xbb\xda\xe9\x90\x5e\x77\xc7\x74\xec\x6c\xf1\xe1\xcf\x67\xbb\xa5\x90\x7b\x58\x35\x8b\x9d\x3d\xfa\x86\xba\xe9\x9f\xbe\xf4\xad\x69\xed\x03\xde\x7e\x7f\xdd\xeb\xdb\x7a\x72\x83\x9b\xc1\x93\x06\x73\x7e\xa7\x18\x0c\xab\xe2\x5a\x30\x79\x5e\x70\x56\x4a\xf5\xeb\xd0\xdd\x1a\xd6\x26\xa3\x1b\xda\x57\x29\xd5\x5f\xd7\xac\x01\x84\xd9\x10\xd5\x50\x8f\xc8\x85\x9b\x7b\x3d\x1a\xbf\x11\x72\x40\x8e\x7d\x8d\x4e\x57\xcb\x05\x46\x32\xdb\x36\x4d\xbc\x9b\xdf\xa4\xfe\xed\xa6\x2b\x70\x45\x6b\x16\xae\x0c\x16\x06\x38\xc0\xbc\xbd\x8f\xc6\x90\x96\xae\x43\x73\x0d\x76\x1a\x05\x81\xb4\x8d\x8f\x71\x39\xaf\x1d\xff\xc9\x3b\x3d\x4d\xa4\x43\x4f\xac\x74\xff\xd0\x0f\x10\xd2\xf7\x50\xe5\xe0\x69\xaa\xf4\x43\xc2\x4b\xac\x02\x7c\xbe\x87\x9a\xcd\xff\x76\x15\x0d\xf8\xbb\x56\x41\x77\x55\xed\x18\x70\xa0\x8a\xea\xbb\x0c\xfa\x70\x9a\x2a\x2e\x7e\x48\xff\xe5\x6f\xd4\xaf\xbf\x92\x23\x1d\x1d\x13\xf2\x98\x6f\x69\x23\x99\x97\xf4\x6b\xdb\x48\xb6\x22\x59\xc1\xab\x99\xa0\x75\x1e\x67\x62\xde\xcb\x35\x54\xd0\x5e\x27\x64\x11\xd6\x83\x42\x2f\x6b\xb1\x3a\x37\xfd\x0c\xc3\x67\xbe\x3d\xce\x73\x51\x6d\x09\x25\xc8\xc6\x59\x6f\xe7\x68\xb4\x1e\xb4\xa8\x90\xec\x44\x3b\xd1\xd5\x0c\x95\x31\xf8\xae\xb1\x9c\xd4\xb4\x5c\xd8\x24\xcf\xce\xed\x88\xcb\x81\xd6\x9e\xa9\xe3\x90\x02\x90\x35\x4c\x64\x23\x6b\xed\x7c\x6e\x46\x93\x89\x6a\xbb\x3f\x74\x57\x54\x5b\xc4\x21\xbe\x16\x76\xe6\xa1\xda\xa4\x8e\xb5\x6a\xfe\x6d\x8f\x78\x0f\x13\x3b\xdd\x49\x29\x24\xcf\xd8\x60\xa4\x89\xd5\x23\x7b\xbc\x41\x1c\x07\xe7\xc2\xa4\xc6\x41\x4c\x92\x5a\x56\x23\x10\x42\xf8\x54\x10\x84\x86\xe1\xc0\xd5\xf6\x4a\xac\xeb\x8c\xed\x65\xc6\xaa\x9a\x0d\x0c\xd0\x9d\xa9\x14\x68\x58\xd4\xcf\x13\x29\xbc\x19\x34\x50\x68\x10\x57\x0a\x5f\xac\x46\xd6\x71\x81\x4e\xce\x2e\xcd\x27\xa9\xf6\x7c\x56\x26\xc1\xed\xb4\x8a\xec\xe6\xc8\x50\x33\x32\xf9\xf3\x9f\xab\xfb\xf0\xe5\x75\xab\x33\x13\xf9\x36\x78\x04\xdd\xf8\xa3\xa8\xc3\x07\x18\xee\xc0\x15\xb3\xcc\x96\x68\xcb\xc1\xe0\x42\x6d\xb8\x73\x3f\x47\x25\x2f\x8c\xa7\x67\x5c\x16\x3f\xd8\xd2\x60\x76\x6a\x35\x6b\x7f\x0d\xcb\x25\x1a\xf5\x7e\x37\xd6\x25\xfb\x0d\xff\x75\x56\x14\xb0\x14\x35\x2b\x13\xab\x81\x84\x09\xbf\x9b\x7a\xde\x41\x49\x5c\x11\x37\x68\x25\x7d\xf5\x02\x5c\x14\x21\x4d\xcb\xba\xaa\x44\xed\xb9\xac\x4c\xd9\xbd\x64\x65\x3e\x35\x39\xcc\x68\xd9\x38\xa8\x2c\x5b\x4a\x37\x84\xa9\x5e\xf4\x55\x25\x4a\xf2\xea\x85\x0d\xa3\x8c\x1b\x74\xe9\x92\xec\x87\x4c\x9b\x4d\x87\x6e\x23\xc6\xc1\x0e\x98\xbb\x39\x6e\x6b\x68\x97\x78\xec\xaf\x6d\xc0\xb9\x7a\xb4\xdf\xf1\xf2\x84\xeb\x99\x82\xae\x6b\xbc\x49\xb3\x1c\x28\x1e\x80\xfd\x40\xac\xe4\x73\x52\x0a\x14\x8b\x21\x03\x3b\x16\x4a\xc0\xdb\xe1\xa5\xf7\xab\xaa\xf4\x61\xdf\x8d\xe7\x13\xb0\x3e\xa9\x49\x93\x6b\x7c\x04\xc2\xc8\x66\xfd\xf1\x69\x44\x51\xdb\x32\x0b\x72\x65\xed\x32\x61\xeb\xc1\xeb\x77\xd6\x52\xce\x95\x0e\x97\x01\x52\xd6\x71\x88\x5e\x86\xc4\x19\x5b\xf0\xb2\x44\x27\x56\x44\xe3\xd0\xb9\x42\xb5\x7d\x95\xd6\x32\x71\x0c\xbc\xdf\xed\x91\x29\xe3\x53\x05\x85\xf4\xa9\x32\x13\x50\x85\x20\x09\xec\xb7\x74\xc5\xc8\xa3\x53\x32\xf8\xd7\xc9\xe5\xc5\xf7\x83\x94\x5f\xb8\x5d\x31\x4b\xf9\x38\x95\x92\xd0\x92\xdc\x4f\x6a\xb1\x81\x3e\xc7\x18\xf2\xc5\x25\x58\x16\x30\x08\x0f\x1b\x6a\xc4\x8a\x6d\xf0\x71\x2c\x1b\x63\xdb\x80\x8a\x53\x42\xce\xf2\x1c\x82\xeb\xe2\xb4\x91\x36\xde\xa4\xe1\xb3\x82\x97\x8b\xc6\x36\x07\x76\x26\x3f\x02\x69\x8e\x9e\x91\x4e\xfc\x0f\x67\x77\x7a\x4a\x06\xff\x43\x51\xdb\x80\x7c\xfe\x39\x0c\xd5\xa7\xeb\xa0\xd8\xd5\xdb\xb3\x6f\x07\x2d\xa8\x9c\x52\x47\x60\x48\xa3\xcc\xc1\x1f\x00\x92\x4b\x3d\x0e\x39\x69\x2a\x6a\xbc\xa2\xd6\x95\x43\x97\xa5\x25\x76\x67\x9a\xd3\x5b\x13\x0d\x21\x06\x33\x41\x9f\x7b\x9c\x84\x59\x85\x2b\x5c\x04\x1f\x36\xc6\x6f\x2b\x2c\xe5\x99\x23\x1d\xd9\x3c\x71\x56\xfd\x8e\x4c\xc0\xea\x5f\xa3\x84\x3b\xfc\xc1\x01\x79\x01\x71\x40\x1d\xa4\xeb\x05\x09\x05\x44\xcb\xca\xdc\x92\xec\xbe\x2c\xc4\xde\x3d\x55\xe6\xa8\xf2\x9c\xdc\xa4\x3c\x58\x82\x82\xfe\xe5\xd5\x22\x7b\xdd\xd0\xa7\x22\x7a\x98\xe5\xef\x4b\xf2\x2e\x88\xae\x9b\xe6\x99\xdd\x89\xff\xa6\x14\x5f\xb2\x7b\xb9\x9b\xda\xbd\x12\x4e\x37\x63\x69\xed\xe3\xe9\x1c\xe0\xdd\xee\x3c\x38\xec\x4b\xb1\x01\xa6\x6f\x18\xdd\xa5\x97\x62\x63\x63\x49\xf6\x78\x7f\x05\xe4\xe8\xd7\x23\x4f\x0c\x0a\x8d\x7e\x2f\x0a\x3e\x9b\x6e\xb2\x69\xb3\x9e\xe1\xab\x37\xac\xef\xc6\xfe\x01\x1e\xdb\x12\x12\x65\xf2\x61\x7d\x37\x22\x13\x12\x1c\x83\x84\x20\x13\x24\x47\xb0\x54\xdd\x21\xd5\x68\x82\xc6\xcc\x7f\x5c\x6a\xc7\x00\xaa\xc3\xa9\x15\xb7\x93\x33\xa3\xa0\xde\x2b\x7e\x24\x18\xab\x2e\xcf\x5b\x7c\xaf\xcd\xba\x07\xef\xb8\xe7\x45\x06\xc5\x1e\x05\x6a\x00\xf4\xd8\x48\x09\x3b\x50\xda\xad\x49\xe7\x50\x43\x05\x4f\x12\x07\xc4\x13\x6e\x3a\xd2\xc2\x3c\x21\x83\xfb\xc8\x2b\x2f\x8a\xfb\x89\x53\x37\xdd\x89\x5b\x96\x93\xd9\x36\x76\x06\xfa\x3b\xdb\xe2\x4a\x6d\x30\x7e\xfa\xbb\x6b\x72\xcb\xb6\x8d\xac\xc5\x2d\x9c\xc8\x9c\xc9\x98\x5b\x6a\x4b\x8c\xea\x0a\xb9\xd6\xf0\x05\xf8\x57\xcd\xaa\x9a\x35\xac\x94\xc6\x35\xc0\x36\x3a\x56\xc7\xfa\xdd\xf5\xcb\xc9\xd1\x1f\xf7\x6e\xab\x28\xbf\xbb\xfe\xbb\x1d\x4d\x28\x4d\xba\xf3\xea\x07\xb2\x89\xa2\xb8\x28\x6d\x95\xf7\x91\x97\xdf\x0e\x74\x50\xef\x0c\x7a\xe8\xa0\x76\x4b\xb8\x08\x07\x83\xe5\x6f\xf5\xe2\x4d\x59\x99\x89\x9c\x99\x61\xb5\xd7\xff\x35\x5d\x97\xd9\x92\x35\x64\x5d\x17\x78\xad\x41\xdc\x3f\x9d\x75\x2f\xab\x2a\xf9\xee\xf2\xb5\x3a\x39\x05\xd4\x6e\xd7\xdb\xb9\x74\x15\x2b\xdf\xd5\x01\xd4\xcc\xba\x2e\xbc\x15\x43\x70\x8d\x69\xb6\xac\xc5\x0a\x02\x73\x82\x1f\xa6\xda\x75\xc3\x7f\xaa\x5e\x8a\x9a\x9c\x63\xf1\xbb\x63\x42\xab\xaa\x19\xfb\xf9\x0d\xd1\x85\x97\x37\xe4\xec\xed\x2b\xf0\xc9\xd2\x8e\x1b\x44\x0d\x45\xb7\xde\xe8\x8b\x3a\xec\x04\x06\x7b\x4d\x67\xc3\x7f\x0c\xd6\x75\x31\x38\x51\x73\xff\x90\x0a\x39\x80\x6c\x5b\x5c\xb1\xd2\x7a\xb0\xaa\xa2\x9a\xd7\x98\x0c\xde\xcf\x0a\x5a\xde\x5a\x8b\xc9\x86\x6b\xa1\xcd\xcb\x0b\xe8\xef\xc8\x45\xa5\x43\x64\xad\xcc\xb0\xae\xf7\xab\x80\x54\x7f\x57\xba\xc2\xbb\xba\xe8\xf4\xb3\x94\xf5\xce\xeb\xc5\x08\x77\x9e\x0e\xa7\x14\xee\xb6\x1c\x03\x14\x0a\x2d\x73\xc2\xee\x2b\xf5\x1f\x78\xd9\xb5\x9d\x72\x4b\xc0\x34\xaf\x5d\x28\xd1\xa0\x5c\x13\xa3\xac\x8c\x31\x99\xc0\xaf\x15\x5b\x71\xe2\xf6\x4e\x51\xdc\x4a\x72\x3d\xe6\x60\x66\x01\x23\x02\xcf\xa0\x92\x30\xcc\xdf\x5b\xd1\x8c\x8d\xf5\x5b\x33\x75\x7c\x83\x3f\xd6\x9b\xd8\x52\xe6\x73\x80\x6f\x6c\xd4\x9d\x3a\x04\xbc\x21\x10\x8b\x68\xac\x8d\x6a\x1f\xb4\x8f\x92\x69\xd6\xc4\x29\xfc\x85\x1c\x1f\xfe\xe1\x2b\xf2\xeb\xaf\x6a\x06\xd3\x86\xd1\x3a\x5b\x0e\x0f\x7e\xb8\xb9\x69\x6e\x6e\x7e\xb8\xb9\xf9\x71\x38\xfa\xc7\x87\xaf\xff\x72\xf3\xd9\xe0\xe6\xe6\xe6\xe6\xff\xfc\xf4\xe3\xc1\x08\xd2\x53\xa6\xd4\xbc\x8e\x3d\x7b\x77\xf9\x8a\x70\x60\xcb\x50\xe8\x65\xb9\xd1\xa9\x01\x71\xc7\x30\x2e\x20\xfb\x36\x3a\xf8\x58\x35\xf3\x3d\xb3\xc9\x1c\x37\x74\xab\xb8\xd7\xdb\x12\x39\x2f\x78\x2e\xb5\x47\x63\x93\x2d\xd9\x8a\x8e\x49\x23\x08\x6d\x00\x08\x73\x29\x65\x15\x4c\x52\xcf\x67\xf0\x7f\x7e\xa0\x93\x5f\xce\x26\xff\xf6\xa3\xfe\xef\xe1\xe4\xcf\x4f\xa6\x93\x1f\x1f\x9f\x1c\x1c\x0c\x46\x01\x1e\xa3\xd7\x3b\x20\x54\x70\xc9\x0a\xde\x48\x42\xc9\x9c\x6d\x08\x90\x76\x26\x0a\xad\x39\x28\x68\x76\x4b\xe8\x5a\x2e\x45\xcd\x25\x67\x8d\xc6\x5f\x5d\x3b\xc6\xb0\x04\x3a\x34\xee\xfa\x07\x07\x53\x42\x5e\xf3\x5b\x46\x56\x94\x17\xd2\x64\x68\xb6\x9e\xb7\x6a\xc4\x55\xc1\xe5\x70\x70\x32\x18\x93\xa3\xd1\x0f\x87\x3f\xfa\x81\x41\xb4\x61\x64\x80\x35\x07\x1e\x48\xae\x73\x58\x24\x09\x17\x4c\x43\x9a\x03\xb5\x38\x6a\xbe\xe4\x89\x55\xa3\xb5\xeb\xb7\xe2\x6c\xf5\xc5\x08\x0a\xc9\xa7\xfa\x52\xf0\x9d\xba\xf3\x40\x75\x7a\x29\x36\xb8\x06\xfa\x6f\x8d\xc6\x88\x77\x1b\xac\x10\xe0\x1c\xaa\xf5\x00\x2b\x1e\xac\xd8\x8d\xc6\xa4\x2d\xc9\x1c\x93\xeb\x11\xe4\x80\x44\xf9\x46\x95\x1c\x8e\xd2\x9e\x0c\xfb\xfb\xca\x04\xc4\xba\xc3\x08\x83\x9c\x18\x18\xac\xe4\x9c\x32\x6d\xca\x79\x6f\x68\xed\xa7\x06\x6c\x95\x1f\x08\xd3\x99\x6c\x6d\x49\xb4\xc3\x97\x79\xb1\x3f\x09\x9f\x9e\x52\x70\x11\xfa\xde\x71\x4a\x56\x14\x19\x6b\x1a\x96\x3f\xdb\x9a\xfa\x7f\x83\xb6\xeb\xf7\x11\x8d\xd6\x6c\xc1\x1b\xc5\xff\x89\x75\xad\x07\x82\xa3\xa8\x0d\xc0\x8b\x8d\xdb\x1a\x1b\xec\x5e\xf5\x5f\xe9\xe7\x20\xc4\xd6\x0c\x6c\xb0\x06\x53\x02\x47\x74\x56\x4f\x09\x79\xe3\x6f\x15\x90\xbc\xc8\xb2\x75\x4d\xc2\xa0\x18\xaf\xa5\xb0\x05\x83\x64\xa1\x4e\x28\xb8\x9b\xb4\x07\x36\x5b\x4b\x8c\x9b\x51\xb7\xc5\x86\xc2\x6a\xda\xd6\xf4\x62\xa8\x2a\x2b\x22\x37\x3c\x33\x92\xcb\xc1\x81\xbf\x12\x19\x55\x95\x7f\x56\x32\x9e\xb6\x0e\x93\xd9\x7a\x06\x12\x08\x99\x31\x13\x2d\x83\xb0\x8a\x18\x52\x4c\x40\xe8\x43\x04\x85\x46\xdd\x20\xb6\x39\x35\x16\x96\x89\xda\x04\x5b\x60\x73\x62\xf6\xb3\xba\x71\xb4\x7f\x2f\x82\x25\x2a\x2a\xdb\x2a\xf9\x51\x32\x6a\x1c\xf4\xdb\x77\x33\x48\x2d\xac\x12\xb5\x84\xb5\x7c\x81\x4b\x79\x6a\x7d\x20\xd8\x9c\x51\xfc\x74\x09\xa5\x9a\xf7\x71\xc4\xd4\x9d\x9c\xae\xdc\x77\x0b\x1c\x70\x27\xa7\x6f\x2e\xde\x5d\xbd\x78\x7f\xf9\xe2\xed\xc5\xe5\xf5\xfb\xe7\xaf\xae\xce\x9e\xbd\x7e\xf1\xdc\x3c\x36\x3b\x49\x49\x3d\x55\xf5\x9a\xb9\x8b\xfb\xa2\x44\xff\x6f\x48\x9e\x76\xa0\xc3\x5d\x20\x6e\x3d\x37\x7b\x16\x9d\x0d\xc2\xa6\xfe\x49\x3c\x25\xd6\x79\x6c\xc8\xa6\x19\xd8\x5f\xff\x37\x99\xb4\x79\xc9\x44\x7c\xd0\x88\x1c\xec\x14\xd3\xf6\x78\xa3\x19\x2b\xac\xc9\x48\xeb\x06\x66\x51\x62\xed\xd8\xcc\xd0\xfe\x75\x4f\x97\xfb\x7b\xd5\x10\xbf\x4f\x02\x48\x55\x36\x55\xc7\x1c\x24\x77\xe7\xca\xa0\xb8\xc5\xd6\x98\xfe\xd2\x85\x19\xec\xce\xf8\x1b\xd3\x42\x9c\x6a\xbc\xf6\x23\xf8\x3e\x26\x22\x8f\x3c\x6a\x91\x64\x42\xc9\xe2\x40\x63\x6c\xe0\xa0\x62\xae\x00\x1d\xba\x14\x4a\x5c\x2d\x73\x8c\x5c\xf3\x2f\x09\x03\x1c\x84\x4d\x2d\x85\x7a\x3b\xab\x6a\x6c\x41\xc6\xf5\x19\x77\x5e\xd4\x71\x4c\x1f\x48\x56\x96\xe0\x6c\x4b\x6e\x34\xe8\x82\x26\x2a\x83\x60\x7d\xcb\x58\xd5\x24\x9b\x02\xb5\x0d\x80\x59\xcd\x99\x12\x13\xdc\x29\x57\x07\xb9\x10\x19\x2d\x50\xb8\x75\x7a\x00\xc7\x7b\x85\xf4\x3d\x21\x47\x6a\x5b\xf7\xc5\x75\xb9\xb3\x9b\xa0\xc3\x1e\x6d\x04\x99\x90\x48\xaf\xb0\x45\x88\x99\x34\xcf\x77\xe4\xb4\xf8\x90\x68\xcb\xfe\x21\x92\x21\x9b\xd0\x49\xf7\x81\xcb\x17\x9b\xd2\x42\xfe\x9d\x6d\x15\xa7\xb9\x83\xfa\x0c\xfd\x7d\x77\xad\xc9\x0a\x8b\x6a\x37\xfa\x9c\x37\x2e\x09\x91\xba\xcc\x11\x1f\x17\xee\x50\x96\xc3\xae\x7a\xcd\xd0\x42\x4e\xec\x68\x34\x01\xba\x8b\x0c\x9f\x26\x07\xa0\x83\xd4\x10\x13\x82\x4d\xb1\xd9\xbe\xa6\xed\x15\xea\x5f\x17\x1e\xeb\xff\x02\x31\xf9\x87\xce\xf5\x28\x96\xcf\xf0\xe6\xb5\x80\x05\xf0\xf4\xcc\xd5\x83\xbe\x29\x59\xdd\x2c\xb9\x45\x28\xc4\x11\x5b\xd0\xc3\x3e\x63\x03\x27\xfe\x70\x70\x5d\x22\x8c\x35\x57\x5d\x8b\x17\x65\xee\x79\x54\x75\x4e\x09\x1a\xf7\x3d\xaf\x3a\x9c\xb2\x62\x32\xd9\xb1\xf1\x11\x15\xe5\xb3\x02\x5d\xaa\x2d\x06\x46\x26\xaa\xed\x85\x96\x26\x63\x9a\xfd\x4d\x92\x9b\xaf\xa5\xea\x67\x6c\x24\xbe\x72\x34\x1a\xb8\x1b\xf5\x23\x36\x05\x88\x43\x45\xf4\x9f\x7f\xae\x0a\x65\xb2\x2e\xf4\x11\x60\xd3\x15\x93\xf4\xef\x6c\x3b\x0a\x49\xff\x39\x9b\x89\x75\x99\x69\xd5\x00\x32\x1f\x0e\xd1\x59\x2f\x8a\x7e\x84\x21\xe6\x78\x2b\xd6\x06\x09\x34\x17\xeb\x59\xc1\xa0\x84\x7f\x0a\x8c\x5a\x04\x44\x2f\x2e\xc7\x46\x29\x01\x07\x60\xce\x6b\x86\xf2\x28\x9e\x0f\xd3\x85\x65\xcc\xc0\x10\xea\x35\x07\x92\x11\xae\x33\xcb\x23\x5d\xbc\xce\xa1\x8a\xb1\xce\xbc\x6e\x24\xf1\x87\x6b\xc5\x98\x1d\xf8\x06\x5a\xda\x88\xb6\xa6\xf5\x3d\x74\xec\xb1\x72\x8a\xaf\x6a\xf0\xd1\x60\xf7\xbd\xf4\xfe\xff\xbe\x74\x8e\x33\x5d\xc9\x08\xf6\x5f\x78\x58\x06\x07\x86\xbc\x9b\xe2\x50\xce\xd5\x62\xa0\x97\x0d\x70\x04\xb3\xb5\x94\xa2\x54\x6d\x1c\x93\x83\xc7\x1a\x07\x53\xff\xf8\xf8\x60\x44\x7e\xfd\xd5\x1f\xb8\x5f\xde\x35\x0c\xcd\x3d\x83\x0f\x81\x5b\x93\xf3\xd1\x03\x0f\x9b\xe1\x28\xf0\x62\xca\x44\xd9\x88\x82\x4d\x75\x88\xcb\x70\x70\x0e\xce\xdb\x00\xe1\x0c\xe3\x5b\xd1\x72\x4d\x8b\x62\x4b\x72\x0c\x12\xda\xb0\x19\xa9\x59\x23\x6b\x0e\x3b\xdd\x0c\x46\x4f\xe3\xd4\x01\x3b\x97\x67\x5d\x0d\xe2\x39\x1f\x26\x4f\x76\xf0\x80\xc6\xe8\xba\xd1\xb5\xe5\xdb\x76\xe3\x47\xec\x37\x1c\xe6\xd6\xe0\x57\xe2\x8e\x0d\xf0\xd0\xb6\x66\x35\x0a\x06\xec\xb1\x8c\xcf\x50\x02\xc2\x77\x94\x95\x0b\xba\x08\x46\xa9\x8e\x3a\x6f\xf0\x77\x8f\xb7\x9b\x18\xc1\x09\x35\xfb\xa2\x34\xd8\x0d\x96\xc1\x9a\xc6\x17\x5f\x47\x5f\xe9\x27\x20\x51\xde\x73\x7a\x24\x03\xf4\x62\x89\x57\xe5\xe0\x80\xbc\x58\xad\x0b\x25\x12\xd1\x5a\x71\x39\xb7\x6c\xab\x24\xad\xa6\x61\x8a\x37\xa4\x36\x6d\xd8\x92\xb1\x22\x1c\x67\xa4\x6c\xfe\x5e\x95\x38\x53\x6d\xfc\x9d\x6d\x9b\xf7\xed\x6b\x32\x5a\x4b\xab\x31\x86\x04\x25\x88\x50\xac\xc3\x01\x2d\xfa\x32\x6f\xde\xfa\x78\x6d\xc3\x51\x74\x0c\xbd\x5d\x83\x01\x0e\x82\x83\xa2\x73\xde\x4b\x9a\x74\x38\x70\x83\x7e\xae\xca\x0c\x99\xef\xc3\xa7\xaa\x42\x06\x6c\x9b\x21\xa1\x59\xd1\x5a\xbe\x2c\x84\xa8\x9f\xf3\x3b\x9e\xb3\x61\x78\xf3\x40\xae\x0a\x3a\x6b\x86\xd0\xe1\x68\xdc\x53\xb0\xf1\x52\xa6\xe8\xf1\x52\x18\xee\xe0\xe6\xe6\xfe\x68\x76\x31\x20\x4f\x08\xb6\x48\xbe\x26\x87\xe4\xaf\x64\xf0\x6c\x40\x4e\xc8\xe0\x6c\xe0\x0f\xd6\xa8\xe5\x15\xd3\xae\x33\xe0\xab\x66\xa6\x35\xab\x18\x95\x43\x98\xc7\x28\xec\x6a\x87\xaf\xf5\x07\xff\x7d\x47\x9e\xe6\xe0\xb1\xdb\xec\xc4\x33\xff\xf8\xa0\x1d\x00\xd0\xeb\xa4\xf4\xb9\x6d\xb5\xb8\x74\x97\x3c\x4a\x60\x9b\x85\x98\x28\xd5\x96\x27\x81\xd8\x10\x15\xac\xa0\x86\x1c\x34\x08\xd2\x83\x45\xa9\x9e\xf6\x3e\xe6\x31\x67\xd8\xef\xec\x05\x52\xf3\x97\xa3\x38\x42\x7c\x5f\x23\xc6\xb7\xd8\x09\xb8\xa9\x56\x3c\xf9\x20\x79\xcb\xc5\x6b\x7a\xb1\x34\x42\x96\xe7\x2f\x95\xd7\x74\x31\x31\x47\x9e\x3a\xae\x9c\x9c\xbd\xbc\x7e\x71\xe9\x31\xac\xc0\x77\x07\xed\xf1\x52\xa3\x99\x80\x2e\x13\xe1\x83\x85\x20\x85\x46\xee\xed\xbc\x0f\xe3\xc5\x7f\x30\x2b\xdb\x93\x9a\x6f\x9c\x35\xc0\x68\x1f\xc3\xb0\x81\x1d\x8f\xdb\xc3\x1f\x2b\xc0\xb7\x01\x25\x0b\xb2\x7b\xa2\x24\xba\x41\xb5\x50\x7a\x89\x60\x89\x25\x5b\x55\xa2\xa6\x35\x57\x4f\xb2\x2f\xee\x80\xf1\x37\x21\xee\x4c\x09\xb9\x28\x55\x61\x81\x4d\x5b\xa1\xda\x71\x6b\x8a\xbf\x44\xe3\x83\x80\x7d\x0d\x54\x60\xa0\x8e\xe3\xab\x15\xcb\x39\x95\xac\xd8\x92\x5b\x9d\x68\x1f\x82\x96\x9b\x96\x9c\xd4\x4b\x12\x69\x85\xb5\xa1\x9b\x7e\x63\x82\xc7\x94\x60\x5f\xa3\x5a\x80\x37\x3a\x2d\xed\x16\xe0\x4e\xe0\xb8\x96\x62\x43\xe8\x4c\xac\x65\xa0\x71\x08\x95\xc3\xc8\x31\x3b\xc4\x78\x13\x06\x4f\x49\x29\xea\x15\x2d\xc8\xf3\x8b\x37\x06\x1d\xc8\xf1\xa6\x7a\x29\xf3\x1c\x84\x70\x5a\x40\x73\x03\x4f\xfc\x1f\x80\xea\x63\x10\xca\xf3\x03\x4f\xd7\xfc\x7b\x6a\x8b\x63\x65\x31\x89\x3d\xfa\x94\x14\xbb\x41\xfd\x79\xb6\x6e\x34\x44\x68\x62\x48\x36\x02\x5c\xa3\x8a\x60\x0c\x38\x9f\x9b\xbf\x4d\xe8\x77\x98\xbb\x77\xf7\x08\x21\xdd\xc1\x39\xf4\x18\x68\xb5\x75\x93\x9d\xf9\x3a\x12\x28\x29\x63\x33\x8e\x00\xb8\xd3\xc7\x69\xf1\x9c\x0d\xcc\x14\x4e\x4f\xf1\xb6\x0d\x1c\x0e\x3a\x13\x1b\xb4\xbd\x21\xed\xda\xc9\x30\x61\xaa\x07\xad\xd5\x63\x15\xb0\x62\xca\xbe\xa9\x6f\xed\x4e\x1c\x85\x3d\x83\xd2\x4e\x98\xc0\x95\xe7\x9e\x6b\x9d\x1d\xe8\x1e\xc2\x53\xe4\x8e\x2c\xfd\xc3\x89\x0f\x64\x8b\xa4\xa9\xc2\x63\x42\xd0\x43\xdb\x44\x1d\x0f\x0f\x6e\x6e\xca\x83\xd5\x62\xac\x98\x13\x13\xd0\xa4\x4b\x26\x5d\x00\xd4\x37\xcf\x83\x24\xd0\x5a\xce\x6a\x9a\xdd\x32\xc9\x72\x18\x88\xde\xe0\x80\xf7\xf9\xe1\xf8\xf0\xf0\xff\x2a\xfe\x07\x7e\x7d\xe2\x7e\x3d\xfa\xbf\x83\xc8\x1d\x21\xe2\x7b\xf6\x92\x02\x62\x33\xd4\xda\x64\xa5\xe4\x09\x2f\x34\xe2\x21\xab\x0f\x55\x9d\x45\x69\xf7\x92\x9f\x8b\x6a\xdb\x69\x1c\x42\xa6\x69\xdd\x30\xfd\x82\x7d\x0f\x46\x7d\x55\xc5\xbe\x28\x9d\x8f\x5c\x2c\x2e\x77\x09\x48\x41\x12\x95\xc3\xae\xa4\x40\xbb\x4e\x0d\x62\xd8\xb6\x02\x30\x80\x89\xb0\x28\x15\xfa\xc2\x57\x02\x67\xce\x6b\x06\x28\x34\xc6\x5a\xa7\xe8\x02\x19\x0d\xc0\x67\x46\xcd\x2e\x28\x71\xcd\xcd\x8c\x00\x16\x71\x12\x2f\xc5\xa8\x50\x49\x6e\x39\xfa\x3b\x42\x33\x33\x56\x88\x72\xd1\x60\x32\x43\x07\x18\x8c\x16\xab\xc7\x24\x80\x05\x1e\x9b\x87\x50\x3d\xba\x19\x2d\xd5\xb3\xc1\xee\x59\xb6\x56\x27\x2f\x80\x65\x31\xfa\x78\x78\xa1\x2d\x6a\x6d\x55\x8b\x45\x4d\x57\x2b\x2a\x79\x46\xd0\xef\x08\x6f\xe2\x1e\xfb\x7e\x09\x8b\xd6\xe5\x1f\x81\x4a\xe1\x73\x9d\xcb\xcd\x4b\x3f\xd8\x92\x1f\x14\xd3\x01\x52\x10\xba\xa0\xed\x33\xac\x90\xde\x66\x8e\x5f\x7f\x25\x87\xd6\x85\xb9\xd6\x4e\x3f\xdd\x72\x4f\xf7\xc0\x0c\x86\xf2\x1e\xa5\x4c\x4f\x93\x8f\x1e\xd6\x8d\xcd\x68\xe7\x16\xea\xeb\x53\x72\xa8\xbe\xdb\xc1\xaa\x1f\x22\x13\x2a\xbd\x13\x3c\xd7\xe2\x75\xc3\xe5\x1a\x1f\x0a\x1d\x97\x0e\xcc\x87\x86\xe5\x69\xc4\x8a\x49\xbe\x62\x1e\x23\x65\xe8\xce\xb6\xb7\x60\x52\x51\xbf\xe2\xa3\x73\x77\x57\x58\xe8\x4c\x51\x93\x7c\x5d\x1b\x1f\x06\x5e\x72\xc9\x69\x41\x0a\x41\xf3\xb1\xb6\xab\xa0\x1d\xd3\xb6\x97\x33\x5a\x18\xdd\x1f\x95\xd6\xf0\x89\x27\x49\xd1\x27\xd8\x55\xf5\x00\xf9\x1c\x70\x7f\x98\x75\xf9\x08\xef\x29\xf5\x31\x03\x09\xbe\x09\xcc\x33\x0e\x40\x4d\xd1\xdf\x18\xb8\x7c\x35\x44\xc5\x02\xf2\x3b\xf4\x80\x3b\x54\x4c\xd7\x1d\x1a\x7f\xb4\x73\x81\xba\x12\x0f\xc9\x1d\x2d\xd6\xac\xd9\x69\xf9\xe4\xcd\xb7\x6c\xa3\x7d\xf7\x82\xdd\x79\xd4\x95\x5d\x32\x54\x7a\xd9\xff\xd9\x5d\x4c\x54\x0c\xc5\x64\xdc\x59\xc3\xf7\xaa\xcb\x50\x73\x92\x88\x7e\x95\xf3\x5c\xb1\xb6\x78\x32\xc7\x68\x34\x46\xd4\x44\xf0\x9e\x61\x77\xac\xde\x62\xe2\x70\xde\xe8\xe6\x78\x69\xd1\x92\x0c\x53\x02\xd7\x86\xea\xfc\xbd\x3f\xab\xb1\x1d\xa6\x8f\x76\x18\x81\xe3\x3c\x00\x5b\xe3\xd1\xa9\x4b\x6e\xac\xc8\xdb\xae\xa6\xcf\xec\x78\x0e\x92\x6d\xdc\xf1\x16\xeb\xf4\x11\xec\xc8\x15\xab\xef\x78\x16\xe0\x4d\x22\x56\xb6\x0f\xc2\xbd\xe7\x59\xf3\xc0\x71\x3b\x80\xa3\x1e\xa5\x2c\x96\x21\x34\x6e\x5f\x9c\xdb\x1d\x16\xd1\x87\x00\xf5\x79\xa4\xd8\x61\x18\xb3\x21\x98\x10\x8a\x1a\x3a\x93\xed\x07\x26\x26\x6d\xf5\x76\x04\x0a\x1e\xbd\xd9\xab\xed\x45\xb0\x92\x0f\xd2\x6b\x07\xc3\x82\xfa\xe7\xdb\xac\x60\xef\x7f\x38\xfc\xb1\x33\x49\x61\x3f\xe8\xe6\x7f\x82\x39\x1c\xfd\xd8\x85\x9b\xa2\xc1\xc6\xad\xe5\x7c\x37\xde\x78\xbb\x98\x07\x39\x7e\xa7\x24\x3d\xb0\x11\x5a\x33\x7c\x0c\x3f\x8e\xae\x92\xbf\x1b\x02\x79\x7a\x16\x1f\x03\x42\x6e\xc3\xc7\xfb\xe0\x90\x47\xc9\x25\xe3\xba\xba\x42\x27\xd0\x7b\xa0\x1c\x86\x88\x84\x15\x42\xd5\x71\x70\x31\x72\x19\x24\x31\xa3\x21\x59\x8a\x0d\x99\xd3\x06\x2b\x57\x74\xa1\xb3\x85\x41\x2b\xa0\x23\x89\xd5\xcc\xed\x75\x3d\x6a\x2f\xab\x81\x69\x71\x7d\xa3\x60\xee\xfe\xec\x9f\x39\xea\xca\xa9\x85\xdf\x88\x3b\x66\x90\xf7\xea\x00\x1c\xc5\x36\xbc\x77\x29\xdb\x0d\xf9\xb5\xdb\x61\x03\x4a\xba\x25\x54\x2d\x29\x9b\x05\xf9\x1e\x1b\x82\x61\xb8\xf0\x6c\x07\x09\x3b\xf7\x03\xa2\x76\xc8\xcc\x5d\x12\x6d\x3a\x67\xe1\x5c\xd4\x2f\x68\xb6\x74\xa1\xf6\xbe\x51\xaa\xc4\x3e\x86\x11\xda\xd5\x8e\xe6\xb4\x8b\xea\x29\xf0\x78\x6a\x11\x0e\x0e\xc8\xd5\xc5\xbb\xcb\xf3\x17\xe4\xe5\xab\xd7\x2f\x4e\xd0\x39\xff\xe0\xe7\xe6\x00\xfe\xf1\xde\x4c\xf9\x3d\x17\xd3\x9f\x1b\x28\xae\xa4\x23\x34\xac\x0d\xb3\x11\x39\x3e\x3c\x3a\x86\x6d\x07\x13\x28\x5f\xaf\xc8\xc5\x15\x39\x03\xff\xcd\x66\x4a\xce\x8a\x02\x8d\x70\x98\x75\xac\xbe\x03\x29\xe6\xe0\x80\xbc\x6b\x2c\x58\x2d\xc1\x30\x65\x94\x2e\x78\x43\x16\xea\xf9\x2d\x71\xc5\x29\x79\x76\xf5\x7c\x82\x58\xab\x05\xcf\x58\x69\xdc\xce\x50\x98\x80\xa6\xe6\x90\x93\x48\xcb\x0f\xaf\x5f\x9d\xbf\xf8\xf6\xea\x05\x99\x73\xb8\x3b\x6e\xca\xc1\xba\xc1\x50\xf2\x4c\xa2\xfc\xaa\xd8\xeb\x5a\xe6\xac\x1a\x0e\xd4\x3f\x51\x68\x7e\x77\xfd\xf2\x2b\x1d\x69\xec\x02\x16\xaa\xb5\x3c\xb8\x58\x4b\x40\xf6\x04\x87\x17\x9a\x81\x10\x0b\x23\xb3\x99\xa5\x40\x94\x5d\xad\xd6\xa5\x5a\x67\x2f\x57\x70\x3b\x13\xf2\xb9\xa9\x52\xf0\x5b\x46\x7e\x2a\x69\xd3\x2c\x7f\x02\x1e\xf0\xa7\xac\x16\xea\xdf\x35\xcb\x18\x07\xbe\x10\x9c\xe0\xa8\xe2\x99\xcd\x2a\x65\x05\x6d\x1a\xa2\x93\x18\x57\x2e\x11\x19\xaf\x09\xad\x17\x77\xda\x9f\xce\x9c\x7e\x48\x75\x65\xbc\xfc\x4c\x3a\x31\x89\xf9\x4c\x6b\x46\x1d\x37\x7d\xe3\x67\x07\x81\xd1\x8b\xb5\x24\xec\xbe\x12\x8d\x66\xac\x57\x58\x8f\xb0\x52\xf2\x3a\x86\x72\xb5\xe3\x0c\x75\x86\x98\x70\xc9\x2c\x12\xc6\x8a\x79\xaa\x48\x46\xc2\x50\x86\x11\x66\xaf\x74\xfa\x84\x11\x59\x31\xb9\x14\x3a\xbf\x64\xb8\x04\x16\xad\x51\x0a\xbb\x60\x36\xb6\xa3\xb1\x2d\x11\x81\x5b\x67\x40\x8f\xd1\xc3\x19\xda\xcb\x59\x23\x79\x49\x65\x90\x9b\xe9\x55\x23\x0a\x2a\x83\xdc\x99\x56\xe2\xb0\xeb\x53\xd5\x42\x09\x63\x28\x40\xbb\xe0\xb5\x19\x2b\xd9\x9c\xcb\xe6\x04\x5a\x9a\x90\xb7\xa6\x18\x25\x2b\xa6\xf8\x62\xde\x60\xb6\x6a\xaa\x99\x7e\x9d\xc0\x26\x5c\x86\x68\x11\x34\xee\x94\x75\x40\xc5\xe4\x32\xe5\x9d\x00\x3f\xf7\x66\x3d\xb3\xe3\x1c\x36\x0c\x57\x15\x12\x9c\xe2\x62\x56\xa2\x72\xab\x88\xee\xbe\x64\x02\x7b\xc3\x71\xa2\xa2\x84\xbc\x32\x0d\xa0\xd6\xd2\x46\x5f\xd7\x90\x6a\x46\x6b\x3b\xd5\x4a\xdb\x7d\x86\xb1\x61\xfc\xb7\x1b\x1b\x6c\x88\x92\xe0\x34\xd9\xe0\x73\xe3\xaf\xa1\xe9\xf8\x55\x09\x7d\xbf\x5c\x4b\x25\x12\xb8\xec\xa4\x74\x4b\xea\x35\x78\xe3\xa9\x9b\x77\x23\xea\x5b\x3d\xd5\x5a\x4b\x8b\x1b\x54\x63\x97\xc5\x16\x74\xce\xb3\x82\xe9\xbe\xd5\xbe\xd2\xe2\x16\x88\x93\xb4\xc8\x91\xc8\x65\x2d\xd6\x8b\xa5\x22\xdc\x57\x6f\xcf\xdd\x36\xb4\x9f\xb1\x90\xa0\x3b\xa2\xae\x5f\x5d\xf8\xd7\xb6\xa1\x07\xff\xfa\xb6\x37\x25\x39\xb5\xf4\xe2\xe4\x27\x35\xf9\x57\x17\xc6\xe9\x15\x28\xd7\x50\x00\x79\x75\x31\x85\xdd\x72\xd2\x90\x89\x6e\x7d\x75\xe1\xe1\x97\xfc\x3f\xf8\xba\xff\x07\x5f\xf7\x9f\x0b\x5f\xa7\x08\x75\x2f\x82\x9d\xc1\x3b\x69\xa3\xd8\x85\xc7\x24\x88\x31\x4c\xd6\x6a\xd1\x3c\x44\x4c\xd1\x92\xcc\x6b\xba\xb2\x10\x33\x26\xd2\xd3\x7b\xc3\xca\x5c\x6c\xc6\xa4\x12\xea\xd5\xce\x5d\xa4\x2e\xcb\xf8\x9c\x6b\xa2\x35\xa1\x56\xf0\x07\x28\x98\xd1\x39\x67\xc3\x06\x45\xe1\xe5\xed\x67\x3a\x2f\xdc\x81\x01\x2c\x39\xd0\xae\xec\xea\xfe\xd4\xa2\xf5\xd4\x1e\x29\xd0\x70\x6b\xba\x07\x55\x92\xbe\xb2\x30\x44\xe3\x8e\x1d\xa0\x26\x17\x5f\x0f\x35\x89\xdd\xc1\x77\xd7\x4b\x66\x03\xf0\x04\xb5\x3c\x8e\xab\x69\x6b\x5d\xc0\xbd\x82\x24\xa7\x47\x45\x2e\x2a\xb4\xbc\xe9\xe5\x32\x83\x25\xe4\x5b\x21\x09\x5f\x55\x08\x2c\xd3\x69\x8b\x09\x36\x1b\x99\xe0\x97\xd0\x50\x18\xcf\x37\xf6\xfb\x0c\xe1\x88\x4a\xb6\xd1\xdc\x02\x54\x1c\x86\xfb\x3f\x26\xad\xda\x6d\xbe\x1c\x1e\x22\x7c\xda\x6a\x83\xbe\xaa\x76\x47\xb1\x77\x36\xc2\xa4\xcd\x69\xe9\x65\xd1\x05\x21\xf2\xdb\x2e\xac\x5a\xd4\x12\x16\x64\xde\xd5\xb0\x7a\x52\x14\x03\x43\x65\x97\xa2\x39\x3c\x09\x4c\x9a\x0f\x6f\x75\x0b\xde\x1a\x79\x83\xe8\x38\x07\x4c\xea\x6a\x41\xd9\xf6\x62\xc0\x1e\xe8\x00\xcc\xf6\xf3\x64\x5f\x3e\x60\xb8\xd4\x33\xce\xa5\xe1\xc3\xb4\x3f\xee\xb5\xd3\xaf\x3e\x36\x4f\x11\x6d\x1a\x91\x71\x67\xfc\x46\x3b\x71\x82\xa9\x53\x3f\x37\xc8\xfe\x4a\x41\x2a\x75\xe5\x64\xa2\x94\xb5\x28\x5a\xd7\xac\x7a\xe8\xe6\x73\x7c\x99\x1d\x9f\x82\xe9\x8b\x91\xd7\xd2\x2f\x9e\xe6\x4f\x8c\x69\xc0\x34\x6e\xde\x46\xd3\xbe\xb3\xb4\xdb\xc6\x14\x0b\x51\x15\xac\x3b\x1d\x52\xb0\x43\x8a\x2f\xea\x30\x04\x70\xa1\x5e\xd8\xd4\x8a\x46\xf4\xaa\x4d\x6a\xc2\xda\xdb\xce\x69\xa5\x98\x99\xfc\x7d\x6c\x88\xb3\x1f\x8c\x9e\x51\x4c\x43\x73\x83\x36\x17\xd9\x9f\x4c\xcb\x9e\x11\x00\xd5\x8d\xfa\x6f\xd7\x4e\xc8\x18\x44\x84\xc4\xc5\xd3\x04\x79\xc1\x04\xe1\x93\x77\x34\xe1\xef\xd8\x02\x65\xdc\x26\x1c\xa1\x0c\x1a\x07\x4a\x62\xb9\x97\x5e\x0b\x0e\xfe\x37\x49\x31\x37\x1a\x59\xcc\xef\xb4\xc9\x1e\x75\xf0\x40\x03\x60\x93\x54\x77\x72\x63\x14\xcc\xda\x00\x1b\x24\x08\xd0\xe4\xe6\xe4\xae\x5d\x2e\x11\x9e\x10\xe1\xcb\xfd\x8a\xa6\x2b\x1d\x8c\x01\x4e\x5d\x7d\x82\xcf\x61\x78\xa0\xf3\x28\x7b\xdd\xaa\x8e\xd7\xef\x8c\x2c\x3f\x38\x20\x17\xfe\x78\x81\x47\x34\xbe\xa6\x85\x58\x0c\x07\xef\x4a\x94\x10\x7c\xd1\xe1\x84\xe8\x90\x44\xd5\xd0\xce\x15\xa5\xee\xd4\xee\x09\xba\xff\xd8\x55\x74\xa2\x59\xc8\x7e\xba\xee\x60\xd9\x8c\xde\x0f\xe5\xf1\xbc\x9d\xb5\x66\xa0\xa6\x37\x81\xcf\xbc\x5c\x0c\xb4\x7d\xd0\xdc\xdd\x7d\xc1\x01\x6e\xd9\x96\x34\xec\xdf\xd7\xb6\xce\x9e\x2d\xea\x17\xff\xdf\x67\x97\xc4\x0c\xf4\x1f\x75\x1e\x00\x1c\xe0\x4e\xfd\xaf\xab\x8b\x6f\xa7\xd8\x22\x9f\x6f\xdb\x41\xfc\xbb\x47\x68\x7e\x4f\x58\x3c\xc1\x00\x34\x26\xc6\xb6\x67\x6f\x3d\x31\xfb\xd9\xcf\x10\xa1\xd1\x48\xc4\xec\x67\xab\x5c\x12\xb3\x9f\xa3\x5b\x0b\xda\x7a\xea\xbe\x7a\xb7\x15\xb6\xef\xbe\x91\x53\x28\x11\x1e\xeb\x28\x08\x36\x1a\x76\x34\xd4\x9d\x44\x6b\x49\x16\x98\x29\x6e\xdc\x73\x3e\x01\xb1\x22\x7f\xd6\x45\x4c\xbf\x2a\x86\x72\xa1\x58\x7b\x8f\xd9\xcc\xe5\x72\xda\xaf\x2c\x4e\xad\x1f\xd5\x85\x8b\xb3\x6f\x4b\x13\xf4\x17\xae\xde\xf7\xa0\xff\xa1\x80\x7a\xf1\x95\x3d\x63\xb3\xad\x64\x11\xe8\x63\x27\x2f\x95\x3a\x4f\x61\x6b\xae\xa1\xaa\xe6\x9d\xae\x19\xc1\x3c\x41\x2d\xf5\xee\xfa\xe5\x57\xfb\x91\x35\x82\x67\x43\x5b\x2c\xad\xcd\xae\x16\x1b\x32\x38\xc3\xf4\xf9\x76\x00\x26\x54\x4d\xf3\x40\xee\xfd\x0a\xfc\x58\xbc\x76\x95\x4c\x5b\x41\xca\xad\x8e\x8b\xf3\xc1\xab\xa8\x55\x44\x5a\x63\x58\x17\x89\x8c\xdf\xbf\xdb\xb2\x16\xe5\x3f\xeb\xc2\xa2\x57\x51\x7d\x73\x53\x0e\x76\xaf\xf1\xd1\x1f\xc9\xff\xa2\x77\xf4\x2a\xab\x79\x25\x7f\x0b\xa1\x7e\xc4\x1a\xe2\x4c\x4f\xfb\xd1\xef\xd1\x1f\x3b\xd7\x19\xd6\xc2\xd2\xf9\x30\x54\x39\x77\xc3\xb5\xbc\x85\xee\xfb\x2f\x43\x40\x69\x20\x22\x18\x60\xb2\xdf\x6d\x71\x8a\xb2\xd7\xf2\x00\x1d\xf6\x5a\x20\xa4\xd8\x3d\x4b\xb4\xd7\x5e\x71\x2f\xdf\x53\x87\x81\xf5\xdf\xd2\x66\x01\xd0\xe6\x4d\x64\xaf\x38\x17\x65\x23\xeb\x35\x78\x39\x28\xc9\x38\x00\x03\xd3\x27\x34\x64\xc1\x1a\xfb\x33\x59\x41\xa6\x13\x80\xf1\x45\x05\x15\x86\x9d\x99\x65\x24\xcd\x3a\x5b\x12\x0a\xa0\x0e\x1a\x5f\xfd\x00\x5a\x71\x90\xec\x04\x06\x35\x26\x33\x51\x80\xd3\x2b\x2f\xe5\x98\x70\x49\x0b\x9e\x8d\xd1\xb9\x61\x4c\xd6\x65\xce\x6a\x45\x97\xe8\x9e\xa3\x66\x78\xcb\xb4\xa2\xd6\x1b\x59\x30\x70\x23\x8a\x36\xb1\x90\x98\x99\xf9\x12\xaa\x9d\x02\xc1\xd7\x8d\xd5\x4e\xb7\x61\x14\xd5\xbe\x74\xe0\x26\x05\x11\xaf\xea\x18\xb1\x46\x82\x7d\xe3\x9e\x37\xa0\xbb\x0e\x5b\x9b\x6b\xc7\x36\x25\x70\x52\xc9\x67\xbc\xe0\x72\xdb\x4e\x4b\xe6\xd1\x9c\x3b\x74\x99\xdb\x93\xe0\x14\xfe\xed\xfa\xcd\xeb\xe7\xda\x8b\xe9\x83\xf3\x67\xba\x06\xeb\x2c\x34\x67\x7f\xd3\xb0\x46\xc0\xf7\x80\x16\xc6\x69\xdf\x09\xc8\xad\xc1\x68\x5b\xd2\xb0\x0f\x08\xe7\x1f\x41\xd3\xbe\x7f\x08\xad\xa3\x3d\x39\xb5\xfd\x3f\x75\xfa\xeb\x86\xd9\x04\xad\x21\x0e\x88\x3e\x0b\x5a\x0b\x80\x68\xff\xb4\x21\x8c\xcb\x25\xab\x4f\x74\x03\x57\x97\xe7\xef\x9f\xbf\x78\x79\xf6\xee\xf5\x35\x21\x43\x70\x16\x17\x25\x90\x99\x76\x80\x1a\x79\x05\x2f\xbf\x79\x86\x06\xce\xa1\xd5\xda\xa9\xc3\x32\xa8\x17\xb3\x21\xa9\xc7\x64\x31\x26\xb3\xd1\x40\x6d\xcd\xca\x54\x43\xa5\xab\xf6\x69\x18\xb6\xc0\xbf\x38\x20\xd0\xc1\xc3\x85\x03\xac\x68\xc1\x24\xda\xc4\xd6\x0d\x7a\xff\xc0\x22\x38\x0a\x0f\x71\x99\xbd\xf1\x7b\x36\x56\x4b\xfe\xbb\x0a\x07\x4b\xe8\x63\xa9\xd0\x6c\x89\xf2\x36\xb8\x7d\x59\x85\x26\x8c\x4f\xaa\x75\xc6\x90\xd1\x78\x48\xba\x3d\x75\x84\x5a\x03\xf0\xf7\x25\xa3\xa5\x28\xc1\xbd\xc2\x73\x2b\x8b\x26\x69\x46\xac\x47\xfb\xfe\xfc\xe2\xf5\xc5\x65\x6a\x82\x5d\x05\x1d\xf5\xe0\x36\xbe\xf4\x9b\x86\x0d\x3b\xfe\xf2\xcb\x31\x31\xff\x67\xe4\xc1\xf9\xeb\x1a\xcf\xfc\x3e\xa0\xc6\xe1\x98\xa8\xff\x37\x0a\xf8\x09\x75\xb1\x04\xa1\x0f\x38\x13\x0a\xcf\x74\xfc\x33\x5e\x3c\xed\xdf\x67\xda\x87\x26\xfa\xd9\x5e\x4c\xed\x4f\xc1\x25\x95\xe8\x48\x1b\x4a\x52\x1f\x9c\x1f\x48\xf8\x69\x93\x69\x18\xe8\xe8\x77\xda\x64\x9c\xeb\x4f\x36\xda\x49\xbb\x02\x15\xec\x39\x7a\x69\x5b\x90\x5d\x1b\x96\x59\x88\xfa\xad\x26\x66\x0f\xeb\xde\xf8\xab\x31\x79\xee\x95\x48\xf8\xa2\xbd\x9a\xe3\x38\x00\x49\x8d\x2f\x4a\xa3\x03\x82\xf5\xb6\xb7\x5a\x87\x26\x70\x0e\x8f\x8d\x45\xb2\x01\xdb\x03\xc5\xaa\x6a\x5d\x30\xd3\x33\x95\x08\x11\x9f\xf3\x39\x48\xeb\xd2\x19\x68\x6c\x52\x66\x1d\x4a\xb2\xc1\x94\x10\xba\xee\xae\xcb\xcc\x63\x33\x10\xb9\xfd\x19\xd2\x87\xc5\x60\xf1\xe6\xa7\x7e\x1b\xc3\x35\x3a\x43\x26\x00\x1f\x50\x32\xe4\x73\x42\xef\x28\x2f\x54\xfd\x11\x4c\x06\x86\x0e\xee\xf7\xe1\x84\x1b\x26\x0d\x62\x82\xba\x4a\x2a\x56\xe6\xac\x34\x26\x78\xe2\x8d\x40\x17\x7c\xf0\xd0\xcf\x9a\x67\xb5\x49\x78\x1a\x4f\xe1\x8c\xe0\x55\xc6\x0a\x7c\xf5\x68\x09\xa0\xb4\xe0\x56\x7a\xf3\xd9\x66\x49\xa5\x81\x66\xb3\xde\xa4\x78\x89\xc0\x68\xb5\xed\x1c\x6f\xdb\x9b\xcf\x7a\x8e\x2c\x38\xe7\xd6\x2b\x59\x63\xd2\x97\xeb\xd5\x70\x10\xf1\x1f\x67\x6e\x6c\x9a\xa3\x34\x2f\x35\xde\xe1\x5b\xa4\x04\xcb\x38\xe9\xf1\x45\xaf\x40\xcf\xd1\xf9\xaf\xc9\x29\x19\xe8\xca\x83\xa7\x11\x94\x56\xbf\x21\x85\x6f\x18\x75\x63\xa3\x08\xf9\x06\x6d\x05\x4f\x8f\x35\x26\xd5\x0f\x18\xaf\x7a\xd4\xf0\x82\x1b\x04\x0b\x77\x1d\xb8\x34\x6b\x54\x24\x88\xe8\x33\xda\x8b\x0d\x9e\x11\xf5\xd2\x97\x22\x67\xa1\x4f\x52\x5a\x5f\xff\x70\x4e\xa3\xe7\x4c\x1a\x26\x4d\x7b\x1f\xc9\x4f\x74\x58\x35\x72\xc6\x2a\x8c\xec\x30\x3c\xb6\xa7\x6e\xbe\x09\x40\xd2\x53\x43\xfc\x40\xce\x76\x37\xb1\x7f\x6a\x59\x21\xca\x14\x22\xaa\x45\xc9\xf5\xcd\x04\x7e\x1b\x43\x00\x13\xd4\xb7\xb2\xba\x45\x86\xaa\xca\x2d\xdb\x9a\xd3\x67\xb5\x6a\xf5\xdd\x0f\xb7\x6c\xfb\xa3\x7e\x4c\xe1\xdf\xbe\x66\xac\xbe\x8b\xef\xf3\xd6\x1d\x3f\xcd\x44\x99\x51\x13\x85\xa2\x57\xa4\xbe\x4b\xa9\xf3\xb5\xb3\xa0\x83\xc2\x85\xfb\x2a\xc5\xa8\xc2\x15\x97\x0b\xd6\x40\xf8\x88\x76\x1a\x44\x5f\x41\xec\x94\x80\xf0\x93\x78\x4e\xb4\x11\x0e\x9d\xe9\x1f\x93\x57\x12\xed\x9e\x06\x42\xda\x6b\x4a\xbd\x61\xa0\xea\x1d\xa3\x7d\x5f\xf5\xa4\x2e\x31\xc5\xe2\xf6\xdc\x20\xe8\xbf\xcb\xae\xf0\x3b\x30\x6e\x9f\x9e\x5b\xfa\xff\x32\x2f\xd3\x49\x9f\x31\x3f\xee\xbf\x63\xe0\x08\xfb\x10\xf2\x38\x0f\xcf\x4f\x92\x54\xa2\x33\xe6\x44\xea\x1d\x27\x0d\x17\x70\x5b\x66\xd0\x41\x93\x60\xa4\xae\x95\x1c\xc9\xe7\x1d\x52\x21\xc9\x59\x93\xd5\x5c\x09\xb0\xa5\x06\x14\x0f\xd9\x0c\x7b\xbb\x59\x6f\x65\x13\x4a\xfa\xf0\x06\xf7\xaf\x15\x6f\xb4\x3b\x49\x77\x36\xa1\x61\xc7\xb1\x6a\x1f\x95\x00\x64\xa2\xf3\x84\xed\xad\xf7\xc8\x9d\x8d\xd4\x07\x3c\x1e\xa9\x2f\xfa\x84\x24\x5b\x83\x43\x92\xfa\xe2\xce\x49\xea\x6b\x78\x54\x92\x9d\xea\xd3\xd2\xf1\xcd\x02\xc3\xb5\xbf\xea\x33\x93\x58\x34\x77\x6a\x12\x1f\x9d\x10\xa0\xd1\x6b\xbb\xdf\xd2\x50\x83\x31\xa4\x08\x53\x0f\x7e\x61\x16\xdb\x7e\xa4\x23\xb4\x11\xde\x1e\x7d\xff\x64\xb6\xb4\x3e\xa1\x7d\x9f\x0d\x6d\xc2\x07\xfb\x5d\x66\x06\x50\x15\x20\x84\x3a\x1c\x7d\xe3\x21\x80\xb1\xb7\x86\x62\xc7\x26\x6a\x90\x96\xe0\x6a\x85\xe3\x8c\x0a\x63\xd1\x29\x21\xcf\xd1\x6d\x1f\x10\x62\xc5\x9c\xac\x44\x29\x00\xe4\x97\x6c\x78\xce\x5c\xdc\x15\x34\x88\x42\x89\x28\x49\xc6\x6a\x10\x88\x11\xf7\xbd\x21\x43\x36\x5d\x4c\x0d\x5e\xd3\xc5\xd5\x28\x00\x90\xae\xd6\x92\x30\x9a\x2d\x53\x2d\x62\x2a\x00\x58\xc7\x39\x39\xbf\xba\xd2\xde\xa8\x83\xe9\x26\x9b\xa8\x39\x0e\x34\xd3\xb6\xa4\x8d\x86\x8d\xd2\x41\x86\xbe\x8d\xe8\x85\x6a\xfc\x4e\xbe\x57\x7b\x89\xd6\x62\x8e\x11\x11\xf0\x6a\x5a\xad\x85\x51\x24\x42\x77\x66\x9b\x20\xc9\x3c\x6e\x8d\x19\xd8\x18\x3f\xda\xd1\x30\x35\x1e\xd5\xa4\x0e\xae\x87\x7f\xbf\xff\x7a\x51\x6c\xab\xa5\xd6\x90\xfc\x65\xd0\xad\x14\x06\xe7\x2b\x2f\x39\x94\xf5\x20\x82\xad\xc8\xf4\xaf\xc6\xed\x46\x71\x43\x96\xc8\xa6\xe1\x1d\xa6\x36\x53\xd1\xf1\x07\x72\xe6\xef\xac\xa8\x1d\x4d\x98\x8d\x0d\x28\xcf\x50\x9d\xd5\x70\x45\x64\xd7\x83\x89\x03\x12\x3c\xb7\xc4\xef\x5d\x6f\xd1\xf4\x62\x43\x88\xbd\x12\x2d\xb2\x93\x9e\x4d\xc8\xcc\xea\x1e\xd4\x00\xd4\x0c\x5b\xad\xfa\xc9\xa7\xd4\x9c\xf7\xe5\xf5\x52\x85\x06\x2e\xfd\x14\x9e\xc6\x53\xa8\x8b\x11\x42\xf6\x93\xd9\xe2\x53\xf2\xc3\x8f\x71\xea\x41\x8f\x47\x79\x94\xe2\x3d\x4c\x12\xb3\x76\x42\x4e\x57\x33\x6e\xd3\x63\x67\xf6\xb7\xd9\x91\x9c\xd3\xfd\x1c\xb7\xee\xc9\xcc\x06\xe9\x43\x5d\xfd\x41\xa3\xea\x14\x7f\xcf\xb4\x58\x3c\x50\x9f\x07\xad\x89\xab\x57\xc1\x54\x52\x6b\x66\xb8\x28\x0f\x8c\xd5\x6d\x31\x3c\x14\xad\x2e\xae\xf4\x9a\x0f\xf0\x7b\xab\x8f\x59\x10\x33\xa7\xb7\x01\x9c\x8a\x86\x03\xf8\x86\x17\x80\x0d\x0c\x57\xc3\x80\xdf\x63\x65\x8e\x17\xc6\xa9\x48\xe6\xb9\x73\x25\xb4\x40\x90\xb6\x53\xfb\x3e\xb9\x20\xb8\xb0\xca\x93\x53\x32\x70\x2a\xf5\x81\xdf\xb9\xcf\x03\xfa\x9d\xfb\xe0\x51\xfe\x03\xb7\xb3\x0b\xd5\xce\x44\x17\x0c\x7a\x89\xd9\xc9\x44\x4f\x41\x73\x2e\xab\x17\x62\xf4\xc4\x2b\x10\xfe\x90\x0c\x36\xc4\xa7\xb3\x63\x2b\xcc\x45\x1c\xec\x83\x65\x50\x3d\xfc\x20\xf8\xe0\x73\xa8\x01\x9e\x4a\x68\x1d\x35\x8f\xee\xa3\x08\xde\x3e\xec\x1a\xee\x5c\xd3\x6f\xfb\xd3\x7b\x9b\x29\xc3\xb4\x17\x8c\x51\xfd\xd8\x41\x2a\x36\x27\xa8\x77\xc3\xf8\x35\x83\x54\x7e\x51\x41\x3f\x8a\x5b\x0f\x09\xc3\x7f\xfc\x16\xe0\x0b\xe6\xc6\xb1\x03\xff\x59\xf0\x72\x38\x20\x36\xf5\x9e\xbe\x07\x55\xf9\x24\xd7\x6b\x80\x65\x4c\x78\x44\x6e\xd4\x18\xda\x78\x37\x6e\xdf\xfe\x23\x78\x27\x41\xf3\x42\x57\x3a\x1c\x0d\x4e\x21\xfc\xca\x1b\x12\x99\x2e\xba\x3c\x12\xcb\x1c\xc2\x6e\x4c\xda\x39\xd5\xbc\x31\xcd\x34\xcc\xe7\x96\x33\x50\xa5\xcc\xc0\xa0\xc4\x6a\xf5\xc2\x1a\x94\x04\xfd\xba\x1b\x83\x2a\xad\x17\x4c\x5a\x5d\x8b\xeb\xef\xa5\x7e\xf6\xaa\x75\x5d\x09\x75\x0d\x1b\x1d\x03\x32\x40\x63\x97\x3f\x13\xb5\x5a\x0d\xcf\x59\xcd\x72\x9f\xe5\xea\xf4\x2b\x71\xcf\xa5\x98\xfd\x0c\xca\x19\x17\x28\x20\x99\x76\x59\xdf\x23\x21\xd8\xb5\x77\x8c\x9f\xbf\xc4\x76\x79\x6f\x9c\x77\xb9\xe2\x3b\x3a\x96\x78\xff\x43\x0b\x6f\x36\x6b\xd2\x2f\xad\x75\x24\x82\x83\xb4\xad\x98\x98\xa3\x5f\xd0\x29\x19\xe0\x9c\x01\xfd\x4f\xcc\x7e\x86\x2c\x45\xd7\x1a\xfc\xe9\x8b\xc4\xc3\xeb\x3d\xcb\xfe\xd3\xaa\xaf\x6c\xd5\x82\x79\x25\x6f\xbc\x50\x75\x0f\xfa\x1c\xb8\x3a\x1d\xfd\xc7\xfc\x0c\x54\xc0\xd1\xe9\xfb\x01\x79\x63\x34\xc0\xa2\x19\x4a\x87\xd4\x64\x62\xb5\x02\x57\x22\xae\xed\x6f\x8e\xb7\x98\xfa\xc2\xd2\x23\xff\x82\x32\x73\x33\xd7\xd5\x4e\x56\xdf\x08\x46\x5d\xcc\xff\xa3\xf4\x4d\x64\xfa\x30\x97\x47\xb2\x17\x5f\x75\x71\x1a\xbc\xfe\x3b\x45\x36\x57\x38\x7e\xd6\xc3\x6a\xbb\x5f\x72\xd5\xca\xa3\x47\xad\x97\x3c\xd5\x33\xaa\x32\x70\x3b\xdd\xcb\x99\x28\x69\x94\x21\x61\xcb\xf8\x80\x47\xcb\x16\x8b\x79\x50\x47\x75\xd0\x29\xf9\xa5\x44\x3f\x5b\x2b\x7c\x30\x5b\xae\x79\x3b\xd4\xa5\x26\x6e\x23\x80\x72\x32\xfb\x32\xf6\x6c\x78\x81\xf2\x34\x61\x4e\x0b\x58\xb5\x1d\x46\xb4\x16\xd3\xb5\x5f\x79\xf1\xae\xca\x4d\xd6\x06\xd3\x5f\x68\x5f\xf4\x0d\x97\x88\x6a\xaf\x84\x2b\x2d\x23\xc2\x35\xcc\x5c\xe6\x09\x9d\x10\xc0\xea\x6e\x92\xd2\x86\x71\x5d\xf1\xa6\x78\x1d\x7a\xb4\xd8\xdf\x91\x64\x95\xe0\xb1\x6e\x82\x3b\xcc\x08\xe1\x70\xc5\xba\xc1\xa6\x1c\xf2\x5c\x87\xde\x5a\x05\x1d\xc6\xce\x0c\x7b\x3b\x74\x23\xb4\xb3\xec\xa1\x40\xb7\xdb\x90\x50\xbd\x58\x34\x9f\x05\x93\x68\x0f\x82\xd4\x69\x43\x1e\x80\x3a\x73\xf2\x35\xf9\xaa\x85\xef\xed\x74\x69\xdc\x0b\x5d\x2c\xc4\x06\x5e\x82\x62\x6e\x8c\x55\x67\xdf\x5e\xbd\x22\x47\x7f\x1c\x13\x9a\xe7\xe4\x2b\x0b\x03\x68\x3c\xc3\xc9\x13\xf2\x55\x02\xad\xf4\xd5\xdc\xa9\x6d\x6d\xe3\x47\x7f\x0c\xb5\x77\x63\x63\x40\x04\x25\x4e\xcd\xfe\x7d\xad\xb8\x03\x1d\x93\x6a\x9b\xd2\x2f\x07\x5a\x19\xd9\x92\xde\x71\x51\xab\xc1\x2d\x4a\xb1\x62\x13\xdf\xb1\xcb\x1b\x56\xcc\x3f\x77\xa9\x7b\xe3\xdf\xad\xf4\xd4\xa5\xf2\x8d\x7f\xb7\x15\x52\x27\xb0\x43\xa9\xeb\x15\x7f\xd6\xcb\x62\xee\x24\x12\xa4\x27\xbb\x99\x5d\xd3\x4a\x8e\x92\x74\x4e\x2a\xb9\x0a\x61\x6e\x0f\x5e\x2e\x59\xcd\x8d\x0a\x56\x3f\x69\x83\xc6\xf8\x6f\x94\xdb\x95\xa8\x4d\x6e\x90\xce\xa5\x68\x4d\xfa\x69\x50\xa1\xbd\x18\xad\x96\x92\x5c\x77\xc2\x2c\x1a\xbe\x2c\xde\x61\x68\xad\xd8\xa3\x3d\x8a\xc6\x9d\x15\x2e\xbf\x79\xe6\x1d\xac\xc4\x6e\x44\x07\x33\x2e\xd1\x05\xd3\x1e\xaa\x05\x77\x6d\x77\xc7\x4e\x3f\x70\x0b\x5c\x1a\xab\x2b\x86\x17\xd5\x41\x7c\xbd\x35\x64\x5d\x16\xac\x69\x08\x2d\x6a\x46\xf3\x2d\x09\x7c\x6d\xea\xc5\x6c\x68\xcd\x9d\x73\x51\xaf\x6c\x12\xa8\xde\xeb\xd7\x36\x9e\x0c\xdb\x95\x13\x6a\xe1\x11\xf9\xeb\x4d\x17\x84\x49\x7b\x19\x4e\xda\x3a\xfd\x1f\xe2\x5e\x7e\x6c\x01\x8e\x06\x1a\xe5\x58\x6b\x3b\xf2\xb3\xbd\x41\xc3\xd7\xe2\x0d\xbd\x65\x2f\xb5\x6a\x61\xd8\xd2\xb9\x9c\x26\xf5\x23\x3b\xe6\xe1\x38\x9a\xce\x19\xb9\xe6\x47\x4f\xbb\x16\xd4\x33\x5d\xac\xf8\xfd\x30\x1e\xeb\x38\xf2\xa7\x19\x93\xc3\xe9\x17\x5f\x7c\xf1\x45\x6b\x39\x5a\xf7\xc8\xce\x3d\x0d\xec\x5c\xc3\x76\xe5\x8f\xdb\x53\xef\xb2\x48\xed\x69\xdc\x4b\x27\x3e\x8d\x04\xb4\x38\xad\x96\x36\x06\x7f\xe9\x19\x67\x22\x29\xb5\x31\x62\x6a\x83\x72\x6a\x63\x94\xd2\x4e\x55\x39\x72\x51\xb5\x4e\x96\xfa\x4f\x10\x0d\x8f\xc8\x59\x99\x16\x0d\x77\x54\x3a\x26\x67\x25\x32\x64\x0f\x17\x2a\x9d\x63\x61\xe7\x0a\x74\x71\x3c\xae\xea\x1b\xd0\xee\x86\xe2\xe1\xd1\x18\x86\x96\x94\x12\x8f\x7c\x31\x31\x94\x08\x77\xf7\xf4\xca\x8a\x8a\xd0\xb6\xf7\xd6\xaa\x56\x9d\xa4\xf9\x08\x04\x8d\x63\xfb\x43\xd8\x87\x51\x06\xa5\xeb\x26\xa4\x54\xa7\x68\xb4\x92\xe9\x11\x8a\xa6\x47\x91\x06\x17\xfe\x3a\x26\xba\x7b\x5f\x6e\x35\x62\x24\xd6\x36\x1a\x5a\x2d\x85\x1d\x27\x65\x36\x5d\xb4\xa5\x78\xb5\x95\x76\xcb\x6e\xba\xba\xaf\x62\xb5\x35\x3b\xa5\x35\xaf\x92\x56\x9a\x06\x75\x52\x72\x98\xae\x12\x6b\xfb\x6c\xbd\x48\x47\xd8\x06\x3a\x08\xce\xb3\x77\x94\x0d\xc6\x41\x68\xec\xb2\x36\x94\xa6\xcb\xd0\xfa\x4f\x70\x5a\x77\x9e\x39\x5d\xc3\x33\x93\xf5\x3b\x67\xaf\x52\x26\x5d\xa7\x89\x31\xd4\x9a\x56\xc6\x24\xb5\x31\xfb\xf7\x62\xe1\x6c\xf8\xd6\xd2\x85\x4e\x54\xa0\x89\x6d\x88\xa7\x8e\x4c\x3b\x27\x69\x3b\xc8\x07\xb4\x13\x2a\x79\x0c\xcc\x45\x0c\x7f\xf6\xfb\xb0\x8d\x7b\x6d\x5a\xb9\x4c\x89\x24\xd1\xe2\xda\x00\xac\xeb\xc4\x00\xd1\xe7\x30\x39\xc4\xae\x85\xb6\xe9\xb4\xfd\xf5\x2d\x9d\x3a\x1a\x20\xf7\x80\x3a\xac\x26\xc7\xf9\xfd\x84\x19\xaf\x4d\x3e\x6b\x28\x1d\x19\x8f\x62\xd8\x38\x13\x4c\x1f\x15\xd5\xaa\xdc\x64\x66\xd9\xce\x6d\xc2\x54\xdb\x9d\x1b\x44\x74\x3c\x08\xad\x25\x3a\x4c\x6b\xdb\x6c\x6e\x2a\xe2\xf2\x51\x44\x70\xa9\xd6\x88\x9f\xdc\x36\x73\xfe\x86\x4d\x76\x23\xdc\xb3\xcb\xba\x75\xbb\xc9\x38\x6a\x3b\x7e\x80\xd2\xc0\xf4\xe8\xa9\x11\xb6\xeb\xe3\xd4\xae\x2d\x9d\x49\x41\x32\x8c\xe3\xee\x68\x20\x49\x66\xec\x5e\x82\x76\x31\xf7\x27\xf2\x71\xa4\x76\x85\x0d\x44\xb4\xa6\x13\xa4\x8f\x89\x9f\xda\xee\x01\x94\x07\x8d\xb6\xe8\x2e\x6a\xf5\x01\x54\xa8\x1b\x4c\x54\x7f\x18\x4d\x02\x8a\x12\xaa\x95\x76\x11\xa7\x36\x14\x58\x02\x55\xa5\x19\x44\xd2\xa8\x3f\xfe\x5b\x12\x26\xd3\x6a\x2a\x1d\x8c\xbe\xb3\x6e\x2f\x9a\xc4\x56\x7e\x1b\x59\x46\x21\xeb\x01\x65\x32\xab\xc8\x7c\x28\x5d\xf2\x72\xd1\x4d\x9a\xcc\xc8\x41\x0f\x21\x4c\xd5\x62\xab\xfe\xde\x57\x0d\x12\x06\x7b\x6c\x40\x89\xe1\x46\x92\x2f\xd6\x62\xdd\x90\x7a\x5d\x02\xd3\x80\x1e\x19\x13\xd8\x80\xd0\x2f\x03\x51\xc8\x4c\x39\xf4\x06\x99\x58\xfc\x6a\x5d\x66\x67\x70\x5e\x14\x99\x07\x23\x8a\x36\xf9\xac\xae\xe9\x16\x1c\x2c\xa8\xfa\x17\xc1\x57\x1d\x04\x1a\x0c\x37\xd3\xa1\x20\x76\x25\x70\xd0\xb2\x1e\x23\xbe\x96\x25\x5e\xf0\x78\x71\xb4\xc1\x4d\xe8\x0e\xb8\x42\xef\x9c\xb5\x37\x1b\xdb\x1a\x58\x52\xd2\x53\x9e\x12\x60\xbe\x92\xa3\x0c\xeb\xd8\xd6\x3c\x57\x17\x2e\x1b\x63\xad\x71\xa9\x62\xc1\x33\x1f\xb8\xab\x7a\xcd\x76\xb4\xef\x86\x57\x16\x5b\x72\x76\x75\xfe\xea\x95\x71\x68\xc1\x96\x9d\xf5\xa5\xab\xf1\x5d\x27\x03\xf6\xe7\x7b\x9e\x33\x35\xde\x24\xa4\x43\xec\x4b\xfc\xc3\x8f\x9e\x66\x12\x9c\x2e\x0f\xc7\x24\x40\x67\xc4\x8f\x09\x47\xca\x1b\xdf\xcb\x98\x43\x69\xc2\xc9\xd7\xc4\xa5\x20\x7f\x1a\x6a\x30\xc8\x29\x7c\xcb\x44\xce\xde\x0a\x5e\xca\x33\x39\xe4\x46\xa7\x00\x6d\x94\x59\xcd\xb4\x47\xf7\x30\x03\x54\xef\xfb\xf9\x7c\x3e\x1f\x91\xbf\x92\x23\x72\x42\x8e\x9f\x3a\x75\x5b\x46\xbe\x26\x47\xc7\xbe\xf6\x59\x0f\xfa\xc9\xa9\x6b\xa7\x9d\x3a\x53\x9f\x73\xb5\x3c\xc8\xfa\x64\x23\xd5\xcf\x51\xaf\x76\x08\x49\x1b\xeb\xdb\xc9\x1f\xa1\x2b\xb4\x71\xfb\x69\x77\xea\x3b\x34\xc6\xff\x23\x14\x4c\xea\x13\xcc\xd0\x8e\x6f\x98\xda\x06\xb3\x05\x21\x96\xba\xed\xfd\xc4\xfd\xd3\x2b\xf0\xc1\xcf\x89\x93\x0c\xe2\x21\x2e\x23\x4e\x72\x30\xf1\x50\xf8\xd8\xad\x81\x3f\x14\x24\xff\x13\x0c\x68\x49\xf4\x79\xa2\x43\x79\x6c\x9f\x6e\x64\x9a\xc8\x38\x79\x92\x58\xde\x88\xee\xec\x60\x79\x7b\x37\x3c\xa5\x51\xb4\xd0\xad\x79\xf5\x5b\xe0\x1d\x8b\xfb\x21\xd0\x53\xc5\xbe\xee\x7b\x22\x81\xef\xe4\x7f\xeb\xe0\xdf\x31\x81\xbf\xe6\xe6\x1f\xef\xae\x5f\x7e\xa5\xc4\xe8\x9c\xd5\x83\x80\x78\x07\x78\x61\x7d\x77\x3d\x3d\x37\x77\xe9\x1b\x5a\xed\x09\x1e\xc6\xa4\xa8\x84\x35\x19\xad\x98\x05\x4c\x21\x36\x92\x5f\x3b\xfc\xd9\xf8\x15\xef\x03\x51\xb7\x27\xd8\x12\x45\x00\x2f\xa3\xc5\xda\x8c\x56\x80\x88\x06\xf8\x3a\xf5\x5c\xa8\xaf\x0b\x97\x3c\xfd\x31\xc2\x19\x63\x1b\x5c\x94\xcd\x98\x54\x94\x63\x1c\xa7\x7b\x6c\xc6\x84\xc9\xac\xe5\x0a\xe2\x86\xa0\xff\xc4\x7c\x9a\x00\x14\x64\xa2\x77\x0b\x8d\xd0\x7a\xaf\xc6\x35\x26\x72\x09\x46\x5e\x8e\x9c\x1c\x1a\xaf\x1a\x48\x4d\xe0\xf2\xc4\xd6\x8c\xb0\x46\x48\x56\xf3\x2c\x5e\x90\xc6\x07\x77\x45\xac\x2a\xfb\x09\xb8\x51\xe3\xf5\x87\xfc\x28\x52\x68\x2e\xb2\x03\x5d\xfa\xca\xb6\xb3\xca\xf7\x02\x53\xba\xa5\xb4\x68\x97\x26\x38\xd8\x04\x23\xc7\xfb\x63\x9f\xab\xef\xae\x77\xc0\x57\x22\x11\x10\x13\x8a\xa4\x11\x0e\xe3\x8d\x4b\x02\x85\xdd\xf1\x5a\xae\xc1\x41\xd4\x37\xda\x3d\x3e\xb8\x89\x51\x20\xda\xa0\x98\xb6\x8a\x4b\xc9\x04\x35\x1c\xf6\x09\xe6\xf5\xf7\xd2\xa7\x38\xab\xb7\x9f\xbd\x5d\xd7\x4b\x66\x6e\x77\x5e\x21\x6f\x69\x0d\xe7\x8a\x4a\x46\x20\xb1\x1b\xc0\x56\x3a\x33\x29\x6d\x24\xa6\x34\x0f\xd1\x2b\x31\xcf\x3d\xc3\x4f\x8a\x51\x34\xd1\xb7\x16\x6e\xad\xa2\x4d\x63\xf2\x08\x6d\xc5\xba\xc6\xa2\xa4\x16\x6b\x09\x91\xee\x35\x05\x5e\x0a\x22\x1d\x6b\x06\x20\x8f\xba\x09\x18\xb6\x6b\xf8\xbd\xf5\x48\xf2\x80\x40\xbd\xaf\x7e\xfc\xd1\x77\xd7\xd3\xb7\xf6\xd3\xd0\x15\x7d\x57\xde\x96\x62\x53\xbe\xf7\x32\x37\x9c\x95\x5b\x72\xf3\x59\x81\x3d\x93\x95\xc8\x21\x6e\xad\xb9\xf9\xcc\x1e\xf4\x88\xa8\xc7\x36\xda\x7f\xf0\x57\x75\xbb\x90\x01\x46\xca\x2f\xcd\xd4\x51\x99\x6c\x5b\x22\x06\x7f\x4a\x07\x3b\xe1\x48\xce\xaf\x5e\xbd\x77\xf3\xd0\xdd\xbf\xd1\x75\xde\x1b\x7f\xc7\x60\x8c\xb2\xa6\xbc\x88\x06\x39\x25\xe4\x8a\xae\x98\x9f\x55\x83\x29\x5a\x24\x94\xc4\x53\x1a\xeb\xc6\xd8\x7d\xc6\x2a\x69\x3c\xc0\x6a\xa6\xef\x5b\x4c\xff\x09\x52\xcf\x7a\x05\x87\x99\xd6\x0b\x38\x9c\x5e\x60\xb4\x19\x42\xd7\x40\xbf\x5f\x32\xd4\xa4\xd7\x60\x08\x47\xac\xba\xca\x84\x38\xe9\x85\xcc\xc0\xbb\x59\xad\xae\x89\x1a\x6d\xc3\x05\x69\x97\x9f\xa2\x10\x1b\xcc\x7c\x06\x5c\x11\xe2\x1d\x06\x29\xde\x6e\x1c\x7e\x6c\x84\x1f\x8a\x59\xe3\x37\x1c\x52\x29\x5a\x34\x51\xbb\xa9\x98\xb2\x87\x96\xe4\xe2\xea\x3c\x80\xbc\xd2\xc7\xac\xc9\xae\xf9\x8a\xbd\xe6\x2b\x0e\x01\x7a\xc7\x87\x87\x87\x87\xae\x3f\xfd\x94\xa0\x73\x36\x47\x16\x1d\x71\x69\x72\xf8\xe2\x9c\x3b\x74\xd4\x91\x9c\x9b\xe7\xc7\x50\x6a\xf4\x2a\x59\xf7\x2d\x77\xdd\x98\xd5\x04\xbc\x45\xb3\x69\xe4\xab\xc9\x8c\x4b\x8b\xfd\x17\xca\x4b\x84\x98\xba\x67\x65\x57\x41\x4c\x30\xe0\xdd\x8a\xa0\xc8\x5e\x12\x55\xb8\x61\x5a\x91\xa0\xb3\xe0\x3f\x36\xc9\x4b\x36\xa2\xbe\x55\x0f\xd6\x9f\xa0\x4d\xb3\x5f\x0d\xe6\x2f\x62\x5b\xc0\x86\x47\x0b\xc8\x46\x20\xe2\x0f\xfb\xf7\x35\xbf\xa3\x85\x4b\xcc\xfa\x98\xbc\x11\x8d\x84\xf4\xfc\x0d\x69\x24\x2f\x0a\x14\x36\xcc\x15\x22\x37\x62\x02\x35\x75\x74\x73\x34\xa1\xef\x6d\xf4\x75\x34\x2f\xa0\xa6\xd9\xd6\x46\xc8\x12\x1b\x82\xed\x23\x61\x43\xde\x1d\xdd\x14\x6f\x9a\xb5\x46\x65\x26\x37\x9f\xd1\x2c\xe3\x39\x2b\x25\x2d\x6e\x3e\x23\x6b\x00\xb2\xd5\xb9\x9c\xb4\x88\x64\xa2\x1f\x66\xd6\x17\x46\x03\xbf\x99\x27\xc1\xb5\x01\x2d\x20\x52\x2a\x2f\xef\x44\x71\x07\x30\x06\x72\x00\xea\x1b\x5e\xd2\x7a\x6b\xd1\xf2\x82\x67\x00\x0d\xfa\x5f\x3d\xe3\xd2\xbc\x93\x11\x85\x27\x69\x42\x9d\x0e\x58\x3a\x45\xc2\x5f\x1e\x3b\x3e\xc4\x47\x34\x07\xe5\x0c\x04\x77\x90\xcc\xa6\xdc\x4a\xf7\x6f\x53\x72\x21\xc8\x50\x20\x50\xb9\x11\x5c\x7a\x27\x5a\x6d\xe6\x00\xbc\x24\x0d\x02\x52\xe6\x20\x49\x83\xcc\x2d\xea\x3c\xac\x1b\xb2\x6e\xf4\xfd\xae\x61\x47\x9e\xbf\x38\x27\x6f\x6b\x80\x12\xc5\xfc\x18\x47\xc7\x1d\x83\x7b\xce\xb2\xa3\xe3\xce\x65\x41\x45\x4e\x05\x98\x7c\xc4\x80\xe0\x19\x95\x85\x3a\xf3\x10\x4d\xa2\x61\xcd\xbc\x5c\x49\x6a\x02\xad\x0e\xed\x51\x79\x61\x1a\x3a\x25\x83\xb5\x9c\x4f\xbe\x1a\xb4\x3a\x7e\x43\xef\x8d\x78\x80\xd7\xc9\xba\x74\x44\x42\x9e\x9f\x5f\x8d\xd5\xee\x8c\xc9\xdb\x37\xea\x52\x3c\x7b\xeb\xee\x1a\x03\x6c\xbc\x61\x60\xa8\xd1\xed\xad\x2b\xd0\x8d\x78\x40\x03\x99\x36\xa8\xb8\xa3\x80\x48\x19\xea\xc8\xa9\x5b\x4c\xc7\xbf\x68\xa9\x5a\x33\x07\x8a\x51\x1d\x5e\x5d\x43\x52\xbc\xfb\x3f\x67\x83\x31\x79\x71\x75\xae\xfe\xb8\xb9\x19\x8c\xd0\x80\xab\x5a\x1a\x3e\x7b\xf1\x1a\xcb\x1c\xfe\x69\x30\xf2\xb5\x09\x4b\xa6\x13\x52\x91\x9b\xcf\xb4\xe2\xc3\x0c\xfc\xe6\x33\xb2\x12\x25\xb7\x39\x52\xbd\x95\x5b\xd1\x7b\x1c\x87\xe1\xdc\xc8\x29\x39\x3a\x3c\xfe\x43\x6b\xd9\x2c\xea\x00\x5b\x41\xbe\x51\x48\x54\xa4\x31\xdc\x37\x88\x72\x08\x0b\xa9\x75\x2c\xe1\x05\x26\x6a\xfd\x94\xe8\xc6\x1c\xdd\xab\xe3\x6a\x73\x89\xd6\x2c\x13\x8b\x92\xff\x02\xde\xab\xec\xbe\x2a\x78\xc6\xa5\x3a\x99\xb0\xb6\xad\xb1\xab\x41\xbc\x2b\x3d\xe0\xdf\xae\x03\x00\xaa\x27\x1d\xf5\x65\xd0\x11\xbc\xd1\xad\x68\xd5\x00\x82\x0b\x08\x3c\xdf\x1c\x4e\xa7\xd3\x6f\xbe\x80\xb4\x70\x9b\x51\x37\xa9\xbd\x51\xb5\x22\x16\xc6\x17\x48\x9a\xc4\xfb\x70\xed\x05\x82\x9a\x7e\xc2\x71\x4c\xdd\xe5\xe9\xe5\xd1\x52\xbb\xfa\xee\xea\x00\xb5\x3c\x2b\x5a\x61\x0a\x2a\x04\x95\xa7\x8d\x49\x84\xc7\x17\xa5\xbe\x23\x81\xa1\x31\x87\xd6\x5c\xfd\x88\x51\xc4\xa5\x43\xc9\x5f\x52\x7b\xd9\xda\x2b\xb5\xd8\x92\x66\xc3\x21\x7a\x09\xfb\x5d\xd4\xb4\x5a\xf2\xac\xd1\xcd\x05\xc3\x25\xc3\x73\x59\x17\x93\x6f\x47\x53\x02\x2c\x8f\x4e\x6f\xa7\xb7\x95\x96\x88\xed\x6d\xde\x0b\xd3\x92\xaa\xa9\x5b\x83\x20\x3b\x73\x01\x63\xbe\x58\x40\xf9\x2d\xb7\x1b\xba\xf5\x92\xac\xd5\x0c\x3c\xf5\xc8\x62\x4d\x6b\x5a\x4a\xc6\xc8\x06\xb0\x17\x80\xfb\xa5\xe5\x56\x37\x67\x44\x1c\xb5\x35\x14\x0d\x1d\x14\x5a\x83\xfc\x12\x3c\x5b\x17\xb4\xb6\xc0\xf1\xc1\xb6\x7e\x73\x68\xd8\xee\x6f\x8e\xec\xbf\x8e\xed\xbf\xbe\x20\xa7\x46\x04\x6d\x53\xc1\x74\xc1\xe4\x1b\x5a\x0d\x07\xcf\x06\xe9\x2d\xc7\x37\xd8\x44\x50\x06\x9c\x5f\x7c\x4f\xe0\x3b\x48\xd5\x14\x2a\x75\x84\x35\x32\xdd\x0c\x38\x3e\x03\xc7\x6a\x24\x1a\x08\x83\xd3\x46\xae\x6f\x5e\xab\xe6\xcc\x26\xa1\x8e\x10\x3d\x12\xff\xfc\x07\x78\xdf\xb5\x0b\xe5\xe1\xfd\xf1\x11\xa4\x66\xbb\xff\x53\xfb\x92\x72\xc4\x09\xad\xa9\xa1\x0c\x9e\x0d\xc6\xe4\xdd\x15\x6a\x18\xdb\xcb\xf6\x5a\xdd\xb4\xdf\x1c\xb6\xaf\xd9\x6b\xcb\xf8\xfc\xce\xf3\xbe\xec\x3b\x6f\xaa\xe7\x3d\x4f\xec\xfe\xe5\xae\x69\x18\xa7\x60\xfb\x4a\xc5\x59\x25\x63\xb6\x07\xb8\x24\x9d\x5b\x82\xbc\x38\x7f\x73\x36\xf9\xe2\x4b\x38\x7c\xc0\x70\x42\x0e\xc9\x85\x30\xcf\x80\x36\x99\x13\x45\xe4\x3e\x8f\x62\x7b\xd3\x30\x61\x90\xe4\x5a\xb1\x35\xa2\x7d\x27\x41\xc1\x2b\xe0\x19\xde\xc9\xf9\x57\xef\xdb\xe1\xeb\x7e\x91\xd7\xd0\x52\x82\x27\x3f\xf7\x10\xc8\x6a\xb6\x80\xd3\xc2\xee\x21\x89\x3f\x00\xdf\xf8\x71\x8d\x20\x96\x29\xb6\x14\x59\x40\xff\xce\x6f\xa6\x96\xc7\xf7\x90\x75\x78\x49\x02\x89\x4e\x35\xf7\xef\x6b\x9e\xdd\xaa\xb5\x82\x54\x85\xc6\x3c\xe0\xe2\x31\xef\xa5\x6e\xa9\xf5\xa4\x38\x46\x3d\xcb\x8e\xde\x2a\x76\xa6\x2e\xdf\xb7\xe0\x82\xd6\xe0\x04\x6e\x98\x02\x14\x3b\x87\x9e\x28\x79\x45\xef\x00\x90\x52\xdd\x22\x66\x90\xcf\x5f\x9c\x5f\x9d\xeb\x19\x44\xf3\xa0\x3a\x45\xbc\x14\x04\xa1\xa5\x29\x82\x73\x7c\x77\x8d\x6d\x8c\xd5\xdd\xc5\x1b\xf2\xb8\x14\x12\xb9\x25\x8d\x28\x19\xc9\x16\x8d\xea\x36\x2d\x04\x63\xde\x33\x27\x05\xb7\xdd\x47\xbe\x15\xed\xd4\xd6\x9e\x5a\xc4\x73\xcc\x4e\x2a\x10\xb4\x4e\xd4\xb5\xa7\xe6\xfb\xe2\x5a\xf3\x72\x87\x87\x87\x4e\x6d\xa3\xd5\x11\x2e\x4f\xfb\xc1\xba\xd2\xbd\x02\x89\xf7\xed\xfa\xfc\xf5\xab\xf3\xbf\x2b\xbe\x62\x57\xbf\xc7\x7b\xfa\x05\x10\x78\x71\x87\x5a\x7d\x84\xf7\xa5\x64\xb6\x96\x12\xb3\x94\x43\x3e\xf3\xbe\x4b\x71\x79\xf6\x0d\x41\x6f\x10\x0f\x9f\xd2\x6a\x1f\x88\x07\x72\x17\xa9\xe4\x8c\xef\x4b\x4d\xb3\xdb\x26\xc4\x22\xf1\xd3\xcd\x1a\xb5\xcb\x2b\x09\x11\x4b\x73\xce\x8a\xbc\x31\x64\x1d\xc4\xa2\xcf\xd6\xf3\xb9\x62\xde\x4c\x32\x06\xa3\x44\x35\xbf\xab\x59\xdb\x16\xad\xbe\xab\xad\x59\x33\x5f\x3e\x58\x7f\xd2\x75\x99\x05\x37\x3a\xb4\x50\x87\x4d\x24\xe3\xa5\x67\xeb\xb9\x8b\x93\x76\x06\x3b\x0c\x1b\x08\xe6\x8c\x83\x6c\xad\xba\xb7\x92\x3e\x9e\x8e\x1b\x97\xfa\x7b\x6c\xfa\x4a\x85\x88\x98\x98\x81\x53\x12\xfd\xe2\x61\x85\xac\xe7\x3a\x3e\x50\xfd\xeb\xd7\x5f\xa3\x83\x5f\x89\xc6\x2a\xff\xd1\xc9\x54\xad\xc7\x8e\xf6\x68\xbd\xb0\x71\xc8\x5d\xb8\x1e\xd1\x12\x8e\x83\x5d\x32\x3b\xb8\x63\x39\x76\x01\xbf\x24\x56\x03\xca\x40\xed\x97\x36\xa8\x22\x42\x42\x7b\xb6\x9e\x0f\xbd\x35\x18\x0c\xe2\x02\x67\x46\x23\x94\x4c\x21\xde\x31\xb1\xf4\xe1\xee\x9e\x47\x30\xc6\x4e\x34\x1b\xdc\x80\xd4\x3e\xef\x18\x19\xae\x70\xb0\xc0\x6e\x74\x49\x12\x0e\xc8\x57\x5d\xad\x08\x45\x08\x50\x68\xeb\xf9\xd8\x50\x00\x30\xa6\x8a\x66\x1e\x30\xcf\x67\x40\x73\xbb\xb6\x0c\xa9\xd2\x7a\x7e\xea\x9d\xf1\x9d\x3f\xc9\x5f\xed\xcf\x27\x9d\x34\xdb\xb5\x1a\x56\xbf\x47\x0a\xde\xc8\x3d\x0b\xa1\xba\xa1\xf5\xe2\xfd\x2f\xac\x16\x6e\x45\x4c\x4e\x61\xb7\x2a\x8a\xf2\x7f\x38\xfc\xf1\x01\xeb\x60\x89\x2a\x5e\x0d\xd3\x9d\xbf\x24\xaa\xf9\x69\x64\x8e\xf3\xbd\x63\xfd\x51\x3e\x52\x52\x7b\x99\xb3\x39\x2f\x59\x3e\xf0\x13\xd8\xea\x41\xea\x23\x6f\x2a\xb4\x96\xea\x1b\x06\xc0\xa7\x66\x9d\x40\xad\x5a\x12\xed\x3c\xd2\x5e\x2a\x93\xd7\x88\xd6\x8b\x72\xbd\x42\x95\xa4\xa9\xaa\xe1\x37\x41\x21\x2a\x6b\xce\xee\x58\xbf\x15\xe2\xb4\x0e\x2c\xe5\xd8\xb6\xa5\xbb\xef\xd4\xba\x7b\xa6\x73\xf4\x88\x72\x73\xc4\xe2\x3f\xda\x65\x72\x86\x76\x6d\x6a\x87\x6b\x03\x0e\xec\xab\x12\xf0\xa7\xc7\xe4\xe8\x70\xe4\xc2\x61\xce\xbc\xe9\x8b\x39\x81\x75\xe5\x0d\x91\x1a\x60\x4d\x5f\xe1\xe6\x55\x00\x32\xd0\x31\x31\xaa\x3b\x68\xfe\x94\x1c\x8e\x6e\x5c\x10\x95\xbb\x36\x61\xf0\x41\x02\x5d\xf5\x1f\x17\x21\xaf\x7f\x8b\x4a\x87\x5b\x74\x96\xdf\x51\xa3\xa8\xc0\x57\x2d\xb8\x39\xd3\x2e\x43\xa0\x5b\xc0\x44\x37\xb8\x2d\x62\xae\x79\x7b\x25\xbb\x62\x8b\xfd\xb6\x47\x17\xf6\x77\x08\x1a\xf7\x49\x56\x1d\xc4\x27\xa7\xd8\x69\xe2\x34\xea\x48\x5e\x46\x6a\xb6\xa2\x1c\x30\x0b\x21\x89\x1c\x02\xee\x7b\xb7\x56\x3b\x89\x9c\x9d\x34\x34\x95\x98\xb8\x71\x85\xf1\x73\xfb\xec\xe9\xa6\xdf\xbc\x2b\xc6\x6e\x2f\x4d\x43\xd1\x45\x16\xf9\xd3\xea\x8b\xcc\x18\xb9\xcd\x92\xa4\x1e\x10\xbb\x14\x90\x6c\x0b\x1d\x69\x7c\xbd\x75\xf9\x3b\x2c\x07\x74\xd5\xd1\x47\xff\xb5\x38\x5f\xd2\xfa\xe1\x6b\x30\xc6\x5c\xdb\xbf\x69\x19\xd4\x5b\x46\xe3\x43\x10\x2c\x00\x28\xfb\x15\x79\xff\xee\x2b\xa1\x38\xdd\xf5\x8a\x7d\xdc\x62\x3c\x79\xb2\x73\x39\x3c\x07\x70\x3d\x73\xde\x10\xb6\xaa\xe4\xd6\x58\xdf\x3c\xae\xb7\x21\x95\xc9\xe6\xdb\x4a\x35\xd3\x79\xd3\x36\xe7\x3a\x65\xd2\xfe\xb1\x1b\x88\x29\xc5\x25\xd9\xf9\xe8\x57\xe9\xeb\x53\x7b\xec\xa3\x20\xe8\x50\x1e\xf3\x7b\xb9\x0b\x2e\x8c\x3b\x30\x38\xdd\xc9\xa7\x81\x84\x37\x8c\x63\xaa\xc3\xe6\xfc\x08\x5a\x7a\xd7\x0d\xed\x86\x3a\xf9\x53\xdb\x93\xb5\x40\x43\x35\x6c\x30\x4c\xea\x2e\x63\x90\xec\x76\xd5\x05\x93\x11\xe2\xe3\x08\xd1\x22\xc3\x96\x40\xbd\x63\x6b\x7f\xf3\xfa\x69\xa8\x31\x71\x5f\x02\xe0\x64\xa7\x4b\x83\x6f\x1e\x17\xee\x74\x6b\xf0\xe5\xc8\xfb\x72\x1c\x7c\x39\xf6\xbe\x7c\x11\x7c\xf9\xa2\xef\xa2\x9a\x9c\x5b\x1d\xeb\x1a\x2c\x87\x2e\xab\x17\xd3\x5b\xf7\x60\x35\xc2\xc5\x6f\xad\x60\x62\xed\xcd\x9a\xb6\x9a\x71\x0b\xeb\x2f\x2a\x2e\xa5\xfd\x72\xd9\xaa\xe5\x94\x94\x87\x51\x2d\xa7\xb4\x3c\x8a\xbe\x38\x25\xe6\x71\xf4\xe5\x0b\xa7\xde\x6c\x2f\x6a\x4f\x90\x4a\x37\xa4\x5d\x2a\xd1\xd6\xf6\xa7\x0b\x1f\x06\x85\x8f\x1f\xd2\xf2\x17\x7d\x0a\x27\xd5\x96\x1d\x2a\xc0\x8f\x51\xd4\xdc\x7c\x84\x37\x47\x78\x79\xfe\x0d\x3c\x0f\x9c\x79\xbd\xa5\xe9\x41\xff\x5e\x66\x0c\x3d\xe8\x68\x72\x5d\xd3\xec\x96\x97\x8b\x9b\xcf\x48\xc3\x32\xc3\x22\xfc\x00\x2e\x41\x6d\xc6\x3e\x95\x95\x07\x3d\x53\xfc\x4d\x66\x31\x9a\x58\x30\xa7\x5d\x93\x0a\x82\xc9\x3c\x83\x3f\x5b\x55\xa2\xa6\xf5\x16\x74\x67\x74\x81\xd2\x87\x58\xd7\xe0\x71\x20\xca\x06\xf9\x50\x64\x72\xf1\x07\x57\xd9\xb8\x2f\x60\xba\x2b\xab\x4d\x53\x85\x57\x22\x0f\x04\x0b\x36\x6d\x96\x7c\x2e\xff\xce\xb6\x7a\x20\xaa\xc0\xaf\xa7\xe4\x0f\x5e\x89\x15\x93\xf4\xef\x6c\xab\x5e\x83\x30\x67\x8c\x4d\x79\x37\xa5\x85\x7c\xd5\xbc\x61\x92\x92\xcf\x3f\x27\x4c\xfd\xa9\x5a\x0c\x9b\xfc\xca\x6b\x32\x93\x75\xd1\xea\xf3\xe8\x8f\xde\xfc\x2f\x9e\x5f\x0c\xeb\x05\x2f\x73\x3a\x3a\x21\xdf\xb3\x20\xad\xa6\x51\x16\x1b\x6d\x18\xa8\x8b\x0f\x44\xad\xfe\xfd\x47\xc5\xe4\xb2\x7b\xc9\x50\x17\x64\x35\xa2\x90\x4d\x4c\xbd\x4b\x80\x19\x08\xea\x70\xb1\x5e\x2c\xc7\xda\x31\xa4\xc2\xb4\xca\x14\x03\x50\x7f\x5e\x37\x92\x50\x52\x70\x29\x0b\x36\x26\xaf\xc8\x86\x36\xe5\xc0\xa8\x57\x4d\x4a\xcf\x05\x93\xe4\x8e\x83\xf5\x6d\x45\x33\x6b\xbc\xd1\xde\xd3\xc8\x76\x36\x68\xf7\x6d\xec\x06\xdc\x93\x53\x6d\xcb\x9c\xce\x6b\xb1\x52\xcc\xc4\xb9\xc8\xd9\x50\x03\x6c\x17\x74\x55\x0d\x99\x5d\x61\x74\x0e\x21\x4f\xc8\x17\xc7\x63\xf8\xff\xc7\x5f\x7e\x39\x72\x68\x71\xdb\x07\x35\x76\x29\x36\x89\x96\x54\x5b\xda\x86\xa5\xca\x6e\x2b\x0f\x5f\x8b\x36\x8c\x0c\x36\x4b\xc6\x8a\xc1\x89\x91\x71\x80\xbe\x74\x4e\x0a\x56\x44\xd2\x92\x56\x31\x1e\xa9\x45\x39\x26\x55\xb1\x06\x91\x92\xe6\x39\xd7\x12\xf5\x1f\xff\x60\x11\x27\x66\x10\x3d\x3c\x64\xd3\x9c\x15\x92\xfe\x6f\xf2\x98\x4c\x8e\x46\xe4\x2f\xe4\x50\x89\xfd\x87\xe4\x84\x1c\x8d\xc8\x13\xf2\xe7\x3f\x3a\x1f\x56\x45\x24\x2b\x91\x3f\x75\xe2\x16\x52\xbe\xba\x8b\x6e\x6e\xee\x8f\x66\x3f\xbc\x19\x90\x27\xc9\x15\x99\xa9\xb6\xee\xc9\x13\xb2\x7d\x6a\x50\x2d\x60\x2a\x7f\x37\x59\x89\x1d\xee\x48\x2d\x56\xa4\xc9\x6a\x01\x8e\x35\x76\xb4\x0c\xd2\x99\xb1\x52\xfa\x70\x44\x7a\x5c\x35\xa3\xb7\xb6\x59\x5c\x34\x38\xff\xb9\xd8\x94\xc1\xc2\x3d\x83\xe5\x41\x6b\x9b\xcd\x74\x67\x57\x4d\x4b\x6b\xb0\x6a\x5f\x1c\xdb\x9e\xc1\x47\x9c\x9c\x92\x37\x54\x2e\xa7\x2b\x5e\x0e\xd9\x14\x2b\x8c\xc9\xf1\x08\x36\x34\x9c\xd2\x59\x99\x93\x15\xbf\x37\x1c\xee\xca\xbb\x0c\x9a\x69\x62\x2d\x7f\xeb\x6a\xee\x59\x84\x75\x95\xa0\x9d\x75\x05\xba\xde\x52\x18\x08\x2f\x7d\x0b\x23\x86\xa6\x5e\x8f\x0d\x6d\x48\xcd\x0a\x46\x1b\xe3\x8f\x92\x1e\xe5\xcd\xcd\xfd\xf1\x17\x83\xfe\x23\x5a\x89\x3b\xe6\xc6\xf4\x80\x2b\xfb\xf2\xec\x1b\xbc\xdf\x70\x80\x4d\xe0\x64\x7e\x70\x40\xae\x24\x2d\x73\x5a\xe7\x66\x02\x33\xae\xd1\x4f\x18\xf9\x57\xf5\x76\x10\x78\x4c\x32\xa1\x3d\x83\x6a\xe8\x4b\x27\x93\xe7\x75\x23\x83\xc6\x74\x1b\x60\x4f\xd2\xb0\xa5\x7c\x8e\xbe\x8b\x9f\xa3\x8f\x32\x90\x11\x7c\x67\xf9\x58\xff\xc4\x1b\x6d\xff\xcf\x7d\xc7\x71\x9d\x2e\x84\xcb\xc0\xd8\xe6\xf5\x4c\xe4\xb2\x66\x4c\xf7\xa9\xc6\xfc\x6a\x4e\x4a\x25\x58\xe1\x2d\xb6\x52\x5d\x05\xcd\xd9\x6e\xe5\x92\x95\x7a\x76\xf3\x82\x2e\xc0\x52\x0e\xfe\x79\x7a\xe7\xa6\x84\x7c\x0f\x49\x95\x73\x61\xc3\xc7\xa7\xae\x29\x45\xd8\x01\x01\xa3\xb7\x66\xcd\x45\xcd\xe5\x16\xcc\x7c\x16\x30\x06\x7a\x39\x81\x25\x18\x93\x15\xcf\x73\x75\x37\xd7\x26\xa9\x1e\x71\xdb\x69\x37\x88\x7c\x4e\x0e\xef\x8f\x82\x6d\x82\xf6\xf5\x2e\xc3\x62\x62\xd1\xa9\x5f\x62\x46\x9e\x38\x5f\x78\x12\x46\x32\x84\x6d\xff\xa1\xb3\x6d\x1c\x5f\x67\xeb\x47\x7d\x5a\x3f\xee\x6c\x1d\x37\xbb\xab\xf1\xe3\x76\xe3\xed\x76\x60\x77\xc8\x92\x2f\xd4\x63\x65\x36\xbe\xd5\xd4\x17\x7e\x53\xd1\x2e\x9d\xe5\x39\xf9\xe2\x58\x3d\x7b\x06\x87\x4f\x73\x60\x2b\x61\x34\x13\x41\x53\xad\x6d\xee\x75\x53\x25\xef\xaa\xdf\x7a\x5b\x79\x53\x49\x5d\x13\x59\xc1\xb3\x5b\x73\x45\xe0\x4f\xf9\xac\x08\x7e\x8d\x2b\x6a\x35\x9e\xfd\x6a\xd2\x7f\xb2\xba\x16\xf5\x70\xa0\xed\xb8\x3e\x8b\x8a\xb9\x3f\xf1\xc9\x1d\x13\xd6\x7e\x4f\x82\x68\x0b\x33\x5f\x5f\xcf\x6b\xf9\x30\x2e\xbc\x64\xb2\xae\x68\x3b\xd9\x8b\x71\x10\x77\xe6\x63\x31\x0f\x1c\xeb\xb5\xd3\x80\xd1\x37\xd5\xac\x01\xf5\xbf\xce\x20\xed\x9c\xc0\x35\x42\x46\xe0\x23\x1e\xc6\x04\x58\x3d\x16\x26\x76\x45\xbf\xd1\x54\x62\x57\xed\xb5\xe6\x72\xbb\xc6\x79\x5d\xd3\xec\xb8\x75\x76\xf7\xf9\xf0\xc8\xc2\xe0\xf9\x4f\x3b\x13\x90\x36\xaa\x64\x40\x1a\xeb\xb9\x65\x82\x74\x16\xd4\x47\xad\x9a\x4e\x75\x32\x1c\x05\xea\x65\xdf\x4a\xe3\x57\x50\xbf\x7b\xf1\x55\x68\xaa\x68\x95\x42\x0d\x8a\x29\x84\xc6\x90\x56\xa1\xd9\x7a\x6e\x49\x2c\xd9\xcf\x34\xa3\x45\x01\x73\x1a\xb7\x0a\x8c\x6c\x55\xfb\xc8\xc5\xd5\xd5\x4b\x07\xff\x35\x00\x4b\xd1\x08\xd5\x77\xf5\x1f\x1f\xd4\x21\x35\x48\x55\xce\x2d\x3e\x71\xd9\x23\xdf\xa2\xb5\x2c\xe7\x39\x26\x97\x28\x8c\x1b\x36\xc8\x25\x8f\x06\x11\x60\x52\x48\xaf\xe8\x3b\xec\x88\xf5\x93\x11\x8f\xf6\x62\x4e\xc6\xe8\xd9\xb5\x4a\xf8\x49\x5a\x47\xc9\x14\x44\x34\xf3\x93\x16\xc6\xe0\xa9\xb2\x6e\x9d\x46\x68\xd6\x4b\x76\x69\x26\xd9\xa0\xe7\x4b\x28\xc1\x2a\xc1\xe7\x84\x2c\xa5\xac\x9a\x93\x83\x03\x56\x4e\x37\xfc\x96\x57\x2c\xe7\x74\x2a\xea\xc5\x81\xfa\xeb\x00\xdb\xe9\x9e\xb5\x4b\xab\x98\x9e\xb9\x17\x94\x1b\x66\x60\x6c\xdf\x24\x76\x67\xd0\x2b\xdc\x0f\x95\xc5\x51\xec\x5d\xfc\xbd\xc3\x68\x39\x96\x9b\x43\x9b\x1c\xd0\x15\x33\x0a\xd1\x6e\xb7\xa3\xb4\xe9\xcf\xd6\x00\x2d\x31\x75\xb1\x3f\xf6\x03\xe4\xf4\x96\x3b\x66\xd4\x30\xe9\xf9\xd2\x3a\xad\x80\xfe\x4d\xcf\xcb\x4a\x59\xe1\xcf\xdd\x6f\xc7\x86\xd6\xe5\x70\xf0\xaa\x84\x34\x44\x9e\x11\xf2\xe6\x33\x33\x2b\x4b\xf7\x37\x9f\xe9\xe7\xc4\xb4\xfd\xd4\xe3\xb9\x5f\xd2\xa2\x20\x5e\xa2\x45\xfb\xa8\xf1\x46\x4c\x8e\x0f\x8f\x8f\xdd\xa3\xd6\xc3\x43\x2a\x59\xac\xed\x25\x15\xbf\x65\xa6\x4f\x38\x3f\x13\xf4\xcf\xea\xd1\x6f\x10\x44\xb9\xa3\xdb\xa0\x5c\x47\xaf\x9f\xb0\xbb\xae\x59\xfa\x39\xae\x3b\xfd\xa9\x62\x13\xc0\xbc\x66\xcd\x12\xa3\xb7\xd0\x8d\x44\xb1\x52\x98\xea\x3a\x70\x6d\xc3\xf0\x90\x1d\x74\x98\xea\x31\xa1\x8b\xfc\xff\xb3\xf7\x26\x5c\x8a\xe3\xc8\xbe\xf8\x57\x51\xcf\xbd\x6f\x20\x3b\xb3\x12\x9b\x2d\xc9\xaa\xa9\xee\x31\xc6\x80\xd9\xc1\xec\x55\x75\xfb\x1a\xdb\x18\x83\x37\x6c\xb3\xce\xf4\xfd\xec\xff\x63\x49\xde\xc0\x4e\xc8\xaa\xee\xb9\xf3\xce\xff\xe5\x39\x75\x2a\x13\xa4\x50\x48\x0a\x85\x42\x52\xc4\x2f\x10\x9e\x23\x0a\x20\x41\x81\x1d\x25\x78\x4b\xf1\x84\x3d\x8b\xed\x1d\x34\x32\x91\x43\xe2\x65\xcc\x9b\xab\x9f\x0e\xd0\xa2\xd7\xa5\x3d\xf2\x9b\xcd\x64\x80\x0d\x2f\xd9\x0c\x5b\x02\x1f\x3e\x20\x7f\x5b\x67\x05\x9d\xaa\x57\x1e\xf0\xb2\xdb\xca\x4f\xde\xc5\x85\x20\x90\xe0\x33\xe8\x22\xb3\xc1\x35\xf7\xd2\xc1\x55\x21\x4d\xfa\xef\xa9\xcf\x4b\xc5\xdd\x2f\xd2\x69\xe9\x01\x7c\xfe\x05\xe3\xb4\x5d\x4f\xdb\x3f\xff\x09\x24\xa8\xad\x5d\x73\x8f\x72\xd2\x0f\xe0\x6f\x80\x38\x96\x82\x77\xd9\x67\x8d\x37\x3d\x22\xd0\x49\xfc\xe8\xae\x15\x74\x4b\x72\x36\x79\x31\x1d\xad\xfe\xec\x18\xd8\x94\x22\x8b\x0f\xee\x29\x3b\x20\x84\xb0\xb1\xc3\x97\xa9\x17\x1e\x75\xd2\x01\x0c\x24\x99\x39\x9a\xe9\xff\xfe\xf2\x9f\xff\x10\x04\xf2\xf7\x6f\xff\x1d\x93\x2c\xe6\xd2\xd7\x28\xc6\x5b\x09\xfa\x50\x41\xf3\x09\x3a\xfc\x39\x01\x22\x80\xe7\xf2\x87\x8e\x6e\xe4\xb5\x4f\x21\x7a\xe2\x4a\xd3\x44\x86\x26\x2f\xa1\x09\xe0\xfd\xc6\x17\x7a\x38\x68\x7d\xf3\x1d\x91\x83\x74\x1d\x82\x01\x03\x32\xb1\xef\xbe\xe7\x9f\xef\x59\x71\xe8\xe1\xcd\x52\xa0\xfb\xf8\x45\x0a\x62\x7c\x14\xf4\x60\xc3\xa2\xac\xf8\x56\xa0\x62\x9b\xf0\x34\x77\xfd\x6a\x15\x7a\x71\x8c\x38\x3e\x86\xc4\x37\xb0\x39\xc2\x3e\x01\x92\xba\x0c\x92\xd9\x7f\x0d\xa3\xa8\x42\x4e\x23\x4e\x01\x10\x92\xc2\xad\x11\x23\x45\x7f\xfd\x2b\xa4\xf5\x05\x7e\x5d\x6b\x7d\x7b\xae\xb5\xfc\x79\x47\x8e\x07\x97\x5f\x87\xf7\x79\x00\xbf\x0d\x4c\xf2\xa0\x6d\xa4\x17\x42\x6e\x94\x12\x6f\x09\xab\x88\xdf\x66\x18\x68\x61\xe1\xaa\x46\x18\x1f\xeb\xcf\x8a\x7f\x79\x88\x8c\x44\x33\xf4\xbe\x77\xf1\x50\x9d\x0e\xee\x06\x75\x8c\x86\x81\xa2\x6d\xe0\x8b\x24\x6c\x38\x7d\x29\xb5\x61\xa0\xb4\x48\xa5\xcf\x80\xf0\x07\x0e\x42\x87\xa6\xa0\x73\xe6\x4e\x5b\xa8\x92\xe8\xdd\x37\xb8\x3b\x7e\x4c\x10\xc3\x73\xc8\x64\xf5\x26\x3d\x9d\xa2\x69\x32\xf5\x04\x42\xaf\xa3\xc4\x13\x20\x1f\x9e\x42\x3d\xf2\xf6\xad\x50\x1f\xf1\xf3\x6f\x9a\x7c\xf8\x74\x71\x57\x1e\x39\x20\x5d\xb0\xfe\x81\x0c\xf3\x3e\x44\xce\xff\x96\x04\x74\x23\x26\xb6\xcc\x4f\x93\x88\x16\x18\x66\x1e\x4d\xa1\x6b\xd5\x5e\x33\x05\x4f\x13\xe9\x64\x8e\xfc\xba\xa1\x9e\x86\x38\x7c\x08\x29\x90\x37\x86\x27\x54\x23\x7e\xa0\x62\x86\x29\x3c\x0e\x8f\x71\x4f\xce\x28\x14\x96\xf7\x43\x96\xfd\x58\x16\xd6\xfd\x5b\xdc\x09\x92\x85\x16\x3d\xaf\x8b\xfe\x82\x05\x8a\x13\xb5\x47\xbf\xd0\x1c\xfb\x0d\x45\x39\x1a\x1a\xf4\x07\x5e\xee\x54\xa0\xe8\x4b\xc3\xd2\xd0\x75\x1e\xbf\x30\x76\x5e\x1c\xa6\xe0\xdd\x81\xbf\xb5\xe4\x69\x8e\xbd\xbd\xdc\x21\x94\xe0\xc5\x0a\x70\x4f\xfa\x21\xc9\xc7\xde\x89\xe1\xb1\xb1\x64\x3b\x9c\x0e\x61\x05\x7e\xf9\x0c\x52\x7f\x4f\xb9\x6b\x5e\x80\x6f\xda\xa9\xff\x49\x45\xe5\x05\xf9\x30\x23\x2d\xeb\x6e\xca\xb7\x24\x9b\x63\x53\x4f\x09\xc1\xae\x8f\x49\xc1\xa5\x8f\x40\x58\x45\x82\xf5\xbd\x9f\x37\xd7\x43\x82\xa7\xe3\x57\x3d\x72\x93\x24\x40\xec\xf2\xd4\xa7\x48\xb7\x7a\xae\xe5\x0b\x43\xe4\x45\x49\x55\x34\x25\xe8\x4e\x90\xf1\xe2\x92\xcb\x28\xd0\x74\x0c\x85\x50\x68\xed\x55\x08\x2f\xbc\xfd\xe4\x61\x0c\x1d\x30\x79\x51\x54\x15\x3d\xe5\xdf\xec\xdc\xd7\xa7\x78\x94\x8f\x9f\x42\x9e\x72\x97\xd7\xb0\xc3\x95\x74\x02\x86\xa6\x38\x70\x97\xf2\xf7\x49\x68\xf6\x47\xf2\x3d\xd9\x3b\xd3\x54\x4f\x58\xb4\xf1\x0f\xa4\x8b\x52\x77\xa4\x1e\xe2\xee\x8b\xe2\x0a\xfc\x1e\x37\xfc\xae\x88\x11\x61\x11\x7b\x8d\xcc\x45\x07\x62\x96\x9f\x9c\x20\xf1\x33\x76\x14\x36\xbd\x21\x7e\xbe\x3a\xbd\xdf\x98\x9c\x0e\x8e\x6c\xf6\x29\xfc\x89\x53\xf3\xee\x89\x09\x9c\x12\x85\x55\x30\xae\x57\xb7\x93\x9e\x5f\x9f\xef\x06\xf9\x01\x90\xdf\xa0\x83\xd9\xea\x12\x4b\x25\x71\xd4\x41\x78\xd4\x7f\xf5\xfe\xf8\xe9\x33\x48\x7d\x8c\x4c\x81\xff\x4e\x7a\xb9\xb8\xdf\xe8\x48\xc2\x12\x0f\xf1\x77\xd9\xa7\xa4\xc5\x1f\xae\x72\xd5\x93\xcb\x4d\xfa\xd9\x91\x6c\x27\x2d\xac\x1e\xc2\xfc\xd3\xef\xd9\x75\x85\xd5\xe5\xf6\xf1\xf5\x0a\x4d\x2b\x93\x01\x23\xdd\x8f\x33\x8d\x38\x4b\x05\xf0\x00\x0b\x5e\x51\x81\xb1\xf3\x16\xcd\x3d\xa2\xe2\x6d\x8a\x09\x9b\xfa\xc5\x49\x7e\xa3\x98\x08\x9e\x21\x64\xf2\xee\x74\x47\x51\x03\x7b\x29\x29\x1a\x94\xe1\x68\x10\x84\x80\xfe\x0c\xca\x92\xaa\x5e\x44\x81\x46\x6f\x29\x03\xd0\x2b\x5e\x10\x76\xda\x4e\xe5\x9d\x50\xf4\x4d\xb0\x7b\x7c\x21\xbe\x3d\x03\xd0\xe6\x37\x12\xb0\x77\x96\x84\x43\xff\xd1\x9d\x03\x24\x16\x78\x1b\xa7\x61\xa8\xd2\xe5\xb0\xf8\x6e\xc0\x0f\x9e\x71\xed\xe3\xc1\x05\x41\x10\x3e\x6b\x33\x63\x07\x23\x99\x44\xc9\x41\xb1\xc8\x3c\x3a\x27\xa0\x4b\x16\x08\x67\x02\x5d\xb9\x16\x27\x20\xac\x24\xe8\xce\x10\x24\x33\x0e\x7c\xe4\x7c\x4b\x78\xc5\xdb\xf8\xf8\x88\x92\x3a\x5c\xe6\xd9\x4c\x3a\x83\xc0\x63\x62\x28\x5c\x55\x43\xa7\x02\x5e\x07\xd7\xa1\xb0\xe1\x6b\xe4\x83\x7b\x60\xc4\x09\x24\xd0\x55\xf1\x4a\x8a\x86\x0e\x87\x83\xb9\x17\x12\xb0\xa4\x0f\x90\x07\x31\x88\xdb\x7f\x2b\x16\xe3\x6b\x3c\x8e\xaa\x1f\x76\xeb\x8f\x95\x0d\x0c\x5d\x36\xe0\x7d\x90\xe5\x0f\x1b\x7a\xdf\xf2\xd3\x9e\xa7\xf6\x21\x30\xb4\xa3\x20\x49\x22\xde\x37\x34\xfe\x08\x2e\x82\x83\x6f\x1f\x5b\x1c\x45\x45\x03\x13\x08\xe7\x6d\xab\xe6\xbd\x86\x7d\x48\xf0\x23\xb6\x7d\x26\x0d\xdf\x42\xdc\x23\xee\x3f\xa1\xbc\x3f\x64\xde\x61\x17\xc5\xaa\xbc\x40\x6f\xa7\xbc\xcb\x5a\xf8\x11\xf9\x0d\x1f\x77\x2b\x3c\x4e\x2c\x7f\x65\x8e\x87\xb9\xbc\xb4\xc8\x3b\x86\x8f\x36\x60\x58\xf0\x9d\xef\x09\x23\x2c\x5c\x20\x59\x20\x2f\x51\xcf\x2e\x8f\xf2\xf4\x08\x3b\xef\x1b\x0a\xb0\x93\x0b\xc3\x72\x06\x12\x6f\x1b\x7a\xe4\xf6\xdb\x5b\xc4\x78\x57\xf9\x25\x21\xa0\xdb\x3f\xf1\x85\xe8\xb8\x5d\x77\x0c\x03\xa8\x86\x2e\xa3\x5b\xb6\x28\xb1\xd8\x76\x20\x24\x65\x77\x99\x46\x8f\x53\xa9\x07\x77\xfb\xf9\x40\x26\x91\x97\xb4\x85\x24\xba\x62\x87\x6e\x5b\xa2\xad\x5c\x92\x8a\xb4\x17\xcc\x00\xf8\xe0\x4f\xcc\x2f\x31\x20\x1f\x89\x3d\x53\x34\xc9\x35\xd4\xa5\xa3\xa9\x58\x92\x88\x9a\x8e\xa3\x1a\xed\x66\x40\x24\xb4\x39\x7a\x17\x97\xaa\x21\xa7\x53\x6f\xac\x87\x8f\x88\x09\xc5\x1f\xcf\x80\x5a\xac\x3d\x8c\x47\x22\xb0\xc7\xae\x4e\x62\x57\x25\x2e\xd0\xbc\x23\x46\x5c\xcc\x3e\x14\x78\xb8\x46\xcf\x74\xb1\x19\xd9\x2e\x64\xe9\xf1\x72\x49\x26\x0a\x57\xe4\x34\x8d\x81\x69\x42\x68\x2d\x70\xbf\x0b\xf6\xd9\x1d\x0c\xf6\x47\x50\x22\xce\x4a\xd1\x37\x28\x05\x8b\x27\x8a\x09\xfb\x6f\xda\x5f\x1c\x20\x74\x74\xbd\x1a\x0e\xdc\x9d\xe8\x4a\xba\x38\xac\x06\x5d\xf2\x64\xee\x9e\xcd\x3e\xe1\x4c\x1a\x1a\x9f\xc7\xb8\x39\x06\x00\xa4\x2f\x8e\xbe\x41\x15\xf7\xf4\x0b\xcf\x33\x68\x09\x80\x5f\x41\x16\x3a\x08\x5d\xbc\xb2\xc4\xa6\x9a\xae\x78\x47\x58\xbc\xe7\xf9\x9b\x22\xdc\x30\x11\x7a\x91\xed\xc3\x89\xd3\x34\x09\xc1\x24\xa0\xdb\x35\xcd\xb1\xee\x7f\xe3\x61\x21\xeb\xe3\x54\x24\x3d\x6a\x78\xad\x84\x81\xb6\xe0\xcb\xae\x00\x6f\x56\x63\xd5\x3e\x6a\xdc\xd5\xe1\x1e\xc5\x2f\x6e\x9d\x6f\x5f\xdc\x3a\x41\x58\xcb\x4f\xb8\x5c\xe4\x1a\x0b\x8a\xd8\x15\xa8\xc3\xc3\xe5\x52\x44\x6f\x08\xde\xf3\x33\x4c\x44\x78\x32\x25\xf0\x08\x52\x90\x31\xb4\xfe\x1a\x5c\xb7\xf3\x8c\x74\xac\xb2\x3c\xa5\xdd\x2f\x1e\xde\xbe\x6d\xf1\x39\x0f\x58\x7f\x46\x8e\x27\xdf\xcf\x24\x8b\x1c\x57\xfe\x38\x26\x1d\x8c\x64\x0e\x2d\x60\x78\x0a\x30\x44\x09\xc0\x2b\xe0\xe3\xcb\x32\x15\xa4\xfe\xb8\xc2\xa7\x09\xaf\x54\xd6\x5d\x74\x1b\x05\x03\x2a\x81\x15\x36\x9f\x4c\x78\xb9\xa1\xd8\x78\xef\x5a\xec\x9c\xe7\xe7\x67\xaf\x52\x50\xd9\xbb\x67\xf7\xe4\x03\xbe\xf0\x61\x8e\x90\x64\x20\xcf\x9c\x94\x0d\x64\xc3\x89\x01\x2c\x7a\xf2\x69\x21\x85\x90\x82\x97\x58\x0e\x72\xe2\xc1\xe9\x2d\xd0\x6c\xf8\xc8\x41\xa2\x64\xff\x0a\x40\x63\x67\x3b\x1e\xd0\x8a\x7f\xc4\x0d\xb1\x06\xef\x38\xb0\x53\x1b\x74\xd3\x93\x2c\x8b\xd7\x1d\x90\x86\xa8\x2e\x10\x58\x85\x48\x3d\x3c\x81\x34\x04\x78\x81\x7f\x8b\xf0\xef\x5e\x1b\xff\x29\x05\x58\x2b\x2e\xc1\x34\xd5\xf3\x0a\x2e\x53\x0f\xe8\xa2\x59\x35\x90\x71\xba\xbb\xf0\xb2\x73\xb7\x78\xef\x2a\x5b\x71\x6c\x1f\xdc\x26\x20\x16\x42\x77\x71\x5b\x89\xb1\xe2\xe3\x05\xc8\xa5\x7a\x0d\xa1\xf4\x11\x10\xc7\x54\xac\xe2\x81\xeb\x3a\x74\xfb\x4f\x44\xaf\xff\x93\x25\x0c\x2f\x81\x67\xde\x34\xd5\x13\x7e\x81\xff\x12\x2c\x73\xb4\xf0\xbf\xc5\xbf\x54\x06\xae\x55\x28\x1f\x17\x8e\xe2\x0b\xbb\x32\x8b\x12\xf2\x1f\x0b\x6c\x71\x7d\x6f\x6c\x70\x76\x1e\xcf\xf9\xc5\x31\x00\xd7\xce\x0c\xda\x41\xa9\xd0\xf9\xcd\x15\xac\x5d\x04\xf1\x05\x3e\x21\x22\xf7\x43\x5b\x51\x25\x3d\x80\x8b\x79\xeb\x3e\xde\x3d\xbd\x74\x38\xb6\x7d\xf1\x62\x2e\x78\xa8\xcf\x4e\xd8\xfb\x59\xc0\x39\x0d\xf3\x0f\xe0\x1f\x68\x05\xc0\x84\x9b\x00\xd6\x4e\xb3\x83\x76\xac\x03\x8b\x2d\x39\xa8\x5c\x1b\x3d\xf0\xfa\x37\x5f\xe1\xc3\x3d\xa6\x9c\x25\x3c\xd2\xd4\xce\x31\x34\x08\xde\xdc\x91\x0e\x30\xa3\x5f\xba\xd5\x49\x6c\xc0\x2d\x4d\xf3\x96\xa5\xf0\xb2\x84\xc2\x6e\x12\x1a\x4a\x50\x5a\xbe\x57\xec\x85\x66\x0d\x0f\x30\x9c\xcc\xb6\xaf\xb2\xa0\x8e\x4a\x40\x9d\x76\xa5\xc0\xc2\x87\xc8\x90\x38\x5c\x22\x46\xdd\x16\x00\x04\x0d\x90\xa9\x30\xf4\x80\x1b\xbe\x3d\x8d\x15\x86\xbe\x3d\x8b\xde\x33\xb5\x1f\x36\x89\x8a\x90\xc4\x43\xd4\x31\x98\xfc\x88\xa0\xe2\x18\x9a\x6e\xb6\xa3\x97\x1d\xd7\xfe\xe1\xa6\xa9\x62\x37\x4f\xda\x0b\xd1\x81\x6d\xbe\xe5\xad\x99\x0b\x1a\xe8\xb6\xda\xe1\x4b\x26\x14\x01\x9a\x80\x9e\x17\xb9\x75\xba\x92\x02\x04\x3f\x8c\x9e\x58\x7f\x05\x64\xce\xb5\x23\x4a\xc4\x43\xc4\xb7\x2c\x5a\x49\x50\x25\xde\xaa\x1b\x9a\x94\x0e\x03\xfd\x5e\x11\x1e\x0f\x39\xe8\x34\x3c\x90\x64\x88\x89\xbe\x53\xd5\x27\x3f\x51\x3f\xaa\xf3\xfb\x1b\x9d\x2d\xf8\x9d\xe5\xe8\x4e\xc2\x70\xda\x92\x33\x90\x60\xc2\xb8\xb1\x22\x4a\x46\x58\x7c\x13\xa8\x16\x7d\xaa\xdd\x64\x9a\x5d\x4b\x91\x15\xfd\x72\xe5\x25\x50\x7c\xf1\x29\x52\x93\x64\x92\x13\x8b\x37\x91\x2f\xfd\x1d\x24\xc9\xec\x47\xcf\x7d\xd6\x72\x10\x9e\x5a\x04\x14\x36\x3a\xed\x21\xb8\xb4\x87\x37\xa6\x03\x89\x59\xd9\x25\x76\x07\x0b\xd9\x60\xf8\x87\x34\x93\xdc\x2f\x44\x75\x8c\x30\x7a\xee\xa0\x9b\x23\x70\xd7\x56\xc6\x01\x3b\x95\x2f\x78\x2b\x91\x3c\xe7\x95\xb8\xbf\x85\x3c\x6e\x81\x82\x68\x79\x25\x02\x7c\x80\x42\x9d\xc6\xab\xe6\x01\x6a\xa3\xf8\x06\xdf\x80\x9f\xbc\xb9\x36\xf3\x78\xc0\xb0\x3c\x7e\x38\xf8\x13\xfe\x46\x83\x81\xfc\xbe\x4b\x3e\x8a\x58\xe6\xca\xbc\xb0\xe1\x2d\xcb\x38\xa0\xb8\x16\x49\x17\x6d\x78\xc1\x04\x23\x3a\x60\x8f\xcb\xcd\xf6\xc3\x0d\x4d\xe4\x57\xe0\xdc\xfa\x65\xbf\xfa\x1d\x7d\x26\x09\x82\xf8\x18\xf6\xc2\x35\x3c\x7f\x4e\xe8\x19\x1a\xc0\xbc\x04\xed\x47\x43\x9b\xd2\x61\xf3\xc3\x53\x41\xd7\x7e\xe6\x08\x01\xe6\xe3\x5b\x41\x43\x9f\x12\x06\xf8\xa4\x0b\xd0\xc1\x1e\x66\x62\x7a\x3b\x44\x81\x24\x88\xec\x9b\xbd\x81\xcf\x7f\x16\x2f\xdb\x3f\xde\x23\xe8\x39\xff\xe7\x77\x88\xf4\x56\x1b\x5c\x46\xf0\x66\xd1\x70\x1c\x43\x83\xee\xab\xce\x09\x18\x3b\xc7\xdc\x39\x09\x2d\xc1\x3a\x5d\xbd\x0b\xcb\xdc\x27\x0e\x24\x99\xdc\x9e\x2b\xa2\xd0\x49\xfe\xed\xe6\x9a\xd2\xc9\x76\x2c\x63\x73\xa7\x00\xe6\xb0\x42\x77\x85\x17\x42\x1e\x42\x2f\x21\x18\x78\x85\xdf\x75\xdc\x93\xec\x46\x3a\xdd\x58\x05\x9a\xe4\xf0\x70\x01\x30\xc8\xbb\xe7\xbe\xc6\x5f\xe3\x1a\xa7\x54\x27\xa1\x6d\x84\xc8\x10\x18\x16\xc1\xa7\x3f\x25\xb0\xe5\x9e\x46\x14\x63\x67\x53\xaa\x03\xb9\x9b\xac\x78\xe7\xb7\x0b\x27\xf8\xf7\x54\x0d\x70\xe8\x6e\xd4\xe6\x43\xb5\x3e\xdd\xd1\x5a\xb8\x3c\xbc\xbf\x83\xc3\x98\x8a\x3a\xcb\xe3\x5f\x2e\x0c\xcb\xef\xe9\xf5\x5d\x5c\x44\xbb\xfa\x9e\xb6\x12\xcd\x9a\x5b\xa3\x1b\x60\xb2\x80\x1b\xe6\x4d\x1e\xeb\xf0\x91\x2d\xb9\x12\x23\x59\x30\x16\x8f\x13\x2c\x49\xd2\x41\x19\xba\x8a\x47\x64\x2d\xff\xf2\x31\x71\x0f\xf1\xeb\xdf\x69\xb2\x90\x44\xbe\xf4\xd1\x47\x30\xf3\x70\x5b\x79\x3b\x8a\x5f\xe6\x37\x15\x0a\x63\x0d\x22\xd3\xa3\xe4\xf0\x42\x70\xd9\x04\x8f\x90\xbe\x6b\xec\xbb\x76\xe2\xf3\xdb\xc2\x9f\xdc\x40\xfc\x04\xdc\xea\x6d\xac\xad\x1a\xa2\x77\xfd\xbe\xfa\x5d\xf4\xc3\x1c\xe3\xe8\xef\x74\xec\xe3\x78\x9c\x69\x45\x10\x79\xbc\x7f\x5b\xbc\xb0\x91\xdc\x63\x92\xc9\xdb\xf8\x78\xf3\x9c\x38\xcb\x7e\xe9\x9e\x5b\xf8\xed\x69\xbe\x74\xa0\xbd\xe3\xea\xe9\xed\x73\x5c\xf8\x14\x16\x77\x9c\x03\x97\x4e\x9f\xd1\xc3\x9d\x0f\xef\x64\xaf\x78\x0b\x01\xa5\xc6\x38\x1d\xb9\x1b\xec\x95\x77\x25\x42\x27\xc5\xe9\x79\x92\xce\xe6\xf8\x56\x27\xea\xd9\xf9\xfb\x45\x4a\x07\x55\x0d\xa2\x9b\x63\x5a\xc7\x50\x85\xe8\x3c\xc9\x7b\x38\x1c\x51\x20\x0d\x9c\x59\x41\x50\x77\x22\x4e\xd8\x7d\xe9\x48\xe8\x7e\x46\x13\xb0\x2b\x34\x09\x6c\x09\xa6\x53\x85\xee\x41\xd0\xc1\xd0\x83\xac\x45\x4e\x88\xbc\x25\x21\xaf\xa0\x67\x00\x86\x1e\x90\xb6\x07\x87\xed\x1d\x80\x69\x12\x83\x53\xc3\x04\x0a\xf8\x5e\x04\xb9\x48\x40\x2a\xfe\x20\xb8\x3b\x90\xe0\xf7\x32\xfa\xac\x8b\xee\xd7\x34\x5d\xd2\x0c\x5d\x11\x50\x18\x19\x8c\x0b\xb0\xfd\x5b\x60\xde\x7b\x57\x0d\x90\xe2\x7d\x7c\x46\x7c\x0b\x88\x07\xd2\x3d\x84\x03\x74\x0d\xe8\x21\x7a\x8b\x81\xc7\x18\x4a\x06\xb2\x84\x10\x7b\x3a\x0a\x72\x08\x71\xcd\xeb\x27\xdc\x31\x48\xcc\x8f\x4d\x10\xfd\xdc\x10\xd7\x6e\x51\x34\x4d\x82\xcf\x6f\xcf\xa7\x0f\x26\x8e\x20\xef\x2c\x09\x33\x1e\xc8\x91\xff\xba\x0c\xdf\x53\x19\xa4\xe4\x22\xcd\xb8\xe3\x77\xa3\x19\x9a\x63\x41\xfa\x0d\x3f\xb1\x87\xb8\x54\x18\x08\xbe\x39\xe0\x64\x21\xc9\x8a\x8e\xd8\x80\xef\xf3\x5f\x52\xe8\xce\x53\xe3\x4f\xc0\xe1\x37\x12\x42\x5d\x32\xf0\xe3\x72\x04\x95\x3f\x3a\x2c\x1c\x7b\x8b\xdf\x2e\x47\x83\x74\x17\x25\x0f\xd1\x65\x80\xbc\x3b\x81\x7f\xa7\xfb\x1d\xcc\x7e\x4b\x3d\x81\xa5\xe1\x1e\x94\xbc\x04\x2f\xfe\xf3\x01\x0e\xd7\x85\x08\x35\x5f\x51\x62\x3a\x2b\x84\xf6\xef\xa0\x0a\x38\x1a\x9c\x1b\xba\x3d\x2c\x33\xad\xab\x6e\x75\x6f\x4f\x03\x7c\x7f\x88\x61\x7e\xe2\xda\x5f\x8a\x8e\xbe\x47\x0e\xdc\x28\x39\xc3\x45\x16\x12\xc5\x76\x8f\xcc\xd7\x6a\x04\xd6\xbb\x6a\xbb\xb3\x53\x55\x90\xee\x8c\x5a\x21\x57\x09\xee\xd6\x6d\x21\x4d\x93\x5f\xe0\xdd\x2c\x91\xfa\x06\xae\xde\x04\x2e\xc2\x5e\xb6\x3b\xc5\x3a\x81\x34\xd3\xe9\x87\xbd\x31\x2c\x5e\xb7\x35\x08\x67\x6c\x1f\x24\x0b\x7a\x29\x68\x92\x6d\xf3\xb2\x14\x5d\xdb\x9e\x5f\xc0\x75\x39\x77\x2c\x20\x8c\x03\xf4\xe7\xd0\x11\x7e\x0e\x9e\x16\x88\x23\x7b\x90\x60\x68\x7f\x48\xb7\xa2\x7d\x27\xb1\x37\x85\x9b\xbd\x19\xb8\x53\xee\xbb\x99\x3c\x24\x93\x7a\x81\xa4\x62\x61\x41\x02\x64\x15\x45\x97\x5d\x5a\x31\x51\x02\xc1\x49\x35\x5d\xe6\x42\xc3\xd6\x36\xf6\x11\x38\x7a\xac\xde\x50\x8e\x13\x3d\x0c\xac\xe4\xe1\x07\x3d\x79\x89\xdf\x11\xfc\x2a\x1f\xf8\xb0\xc0\x4a\x1a\x6f\xc9\x8a\xfe\xe4\x8e\x25\x8a\xc6\x86\xbb\xb8\x6e\x40\x74\x56\x57\x1e\x05\xb7\xa5\xe4\x7e\x96\xee\xe8\x27\xe2\xb5\x25\x2d\x9d\x38\x07\xa0\xba\x61\x29\x67\x43\x77\x78\x15\x0c\xf9\x05\x48\xd7\x87\xb7\xfb\x0b\xbd\x04\x1c\x7e\x01\x6c\xc7\x30\x11\x64\x12\xfa\x02\xb9\x29\xa3\x4e\xb9\x76\x81\x6e\x80\xe5\xce\xc2\x88\xdf\x3f\xfb\x55\x6c\x3f\x98\x1a\x42\xc1\x21\x8f\x3c\x55\xd1\xaf\x9f\xfc\xfc\x8e\xbe\xde\xd1\xd1\xa5\x61\x1d\x78\x4b\x1c\xf2\x0b\xce\x31\xcc\x98\x69\x6d\x29\xba\x04\xaa\x92\x24\x82\x74\xab\xfa\x70\xb1\xf3\xc2\x1b\x6f\x81\xdf\xd9\xf0\x64\x05\x2f\xb8\x97\x6e\x51\x98\x63\x0f\xe5\xd8\xd0\x43\xc9\x92\x9e\x01\xf4\xcc\xf5\x6f\xc5\xd1\x6a\x0e\xdf\x8c\x27\x77\x86\xbf\xaf\x33\x9a\xcb\x6a\x4c\x37\xc6\x92\xe5\x28\x82\x37\x61\xe3\xf0\x84\xf9\x31\xa7\x08\xeb\xa0\x55\x4d\x66\x62\x11\x5d\x6d\x61\xe6\xa2\xe6\x95\x61\x69\x78\xd0\xaa\xd5\xef\x6b\x4a\xb8\xb3\x29\xef\xc1\xc0\x03\xea\x4a\xd3\x83\x4b\x61\x8c\x59\x78\x58\xdc\x8c\xa8\x63\xe7\xdb\xe2\x24\xde\x31\x03\xfe\x0d\x24\xba\xb5\x4b\x13\x31\xaf\x4b\x2b\x65\xe9\x80\xee\xce\x01\x69\xae\xfb\xf0\x04\xf8\x0d\x0f\x5a\x86\xb0\xc1\x5f\x10\x20\xdd\xe2\xc8\x87\xcb\x47\x05\x50\x23\x2f\x72\xec\x28\x3a\xa8\x5d\x6f\x56\x3e\xb7\x52\x32\xb7\x18\x2e\x88\x4c\x25\xf0\xc6\xea\x20\xcd\xb1\x09\xac\x11\x31\xac\x11\xef\x63\x6d\x79\x93\x35\xe2\x9a\x35\x7f\xf7\xe9\xea\x20\x3d\xed\x76\x42\x6c\x74\x0c\xc7\x9b\x42\x77\x03\x0c\x4e\x09\xa1\xd5\x1a\x41\xab\x61\xbd\x22\xbf\x26\xf1\x48\x92\x37\xf7\x95\x80\xa1\xe5\xd2\xe5\x28\x22\xe8\x7f\x06\x4b\xb9\x9b\x2c\xd1\xbc\x2e\x48\x2a\x48\xd3\x54\x78\x78\xd8\x25\x80\x3a\x53\xdc\xa1\xe8\x55\xff\xac\x11\x78\xb2\x84\xfd\x5a\x20\x42\x85\xa6\x49\xa2\xc2\x3b\x92\x7a\x0a\x59\x4b\xc8\x8d\x12\x9b\xd0\xd2\x51\x12\x76\x91\x0e\xb1\x0e\x02\xff\xc1\xfa\x10\x3e\x94\x5b\x96\x11\x72\xde\xc5\xae\x84\x38\x84\xfd\x0d\x23\x85\xbc\xd8\xa3\xae\x7c\x33\xfc\x87\xfb\xbd\x04\x20\x3e\x92\x7f\x04\xb9\x5a\x28\x4f\xa8\x80\xbb\x99\x42\x53\x04\xc6\x3c\x18\x5f\xbd\x14\x5f\x81\xb9\x72\x0d\xe8\xef\x9f\x52\x5d\xb1\x44\x4b\xc6\xbf\x2c\x88\x01\xde\x82\xd7\x2b\xf7\x38\xe0\x44\x75\x06\x8a\x44\x49\xfd\x9a\x8a\xd1\x15\xbb\x85\xed\x28\xce\xce\x91\x40\x9a\x1b\x95\x93\x35\x29\x4d\x75\x92\x07\x93\x8f\x57\xa5\xee\x20\x47\xed\x3e\x74\xd4\x4d\x33\x1c\x9d\xbc\x11\x91\x8b\x1b\x53\x13\x04\x77\xb9\xdf\x30\x1c\x7d\x5d\x24\x3e\x50\x24\x84\xde\x98\x8e\xba\xd0\xe1\x50\x09\xec\x5d\xf7\x35\xe2\x40\x16\x0d\xbe\x0f\x7c\xaa\x19\x8e\x4e\xf4\xa9\x46\x54\x43\x4d\x7b\x81\xf6\x1e\xcb\x7e\x1b\x77\xf9\x4e\x5f\xbb\x5e\x61\xdc\x01\x8f\x5c\x4c\x70\x36\x74\x0e\x4e\x57\xde\x32\x48\x5f\x96\xc9\x0b\x3e\x03\x4a\x20\x3e\x0b\x97\x87\xb1\xae\x58\xb1\xa9\xb0\x9e\x50\x22\x18\xe8\x09\x13\x86\x9d\x10\xa5\x23\x48\xb3\x9d\x4a\x48\xc4\x5a\xca\xc6\x35\xdb\xa0\x75\xf2\x84\x0e\xd6\x1b\x0f\x8c\x69\xea\x1b\xab\x49\xdc\x97\xf2\x2e\xf7\xd1\xd3\xec\x97\x54\xe5\x8e\x3d\xd4\x6d\x2f\xc1\x8a\x81\x21\x19\xd0\x22\x4b\x77\x98\x56\x22\xaf\x8b\x9d\x03\x44\x43\xb2\xf5\x94\x03\x78\x51\x84\xfb\x7a\xb2\x41\x5c\x2a\xc4\x71\xca\x7c\xef\x6e\x1f\x6f\x4a\x57\x8c\x83\x7e\xdb\x94\xde\xa9\x28\x32\x8b\x93\x1c\xd7\xaa\xe6\x92\x85\xa3\x54\x8a\x63\xba\x7e\x1f\xd3\x9e\xb5\x1b\xfd\x42\xbe\xe8\xcd\x43\x5c\x24\x34\x7c\x1c\xf4\xe4\x65\xc0\x5e\x9a\x5a\x3b\x13\x9e\x69\xde\x34\xa4\x4a\x62\x1c\xeb\xed\x7b\x4e\x5f\xa8\xf9\x56\xb2\x80\x70\xe8\x92\x0c\xd9\x2b\x59\x90\xe6\xb8\x6c\xf8\x90\x8c\x32\xf2\x18\x4b\x50\xcb\x02\x3f\xb9\x11\x1c\xed\x68\xb0\x67\x90\xe9\x29\x82\x49\xfe\xf6\xae\x1e\xdb\x57\x29\xae\xaf\x9d\x9b\x3b\x79\xa4\x1f\x39\xb7\x1f\xb9\xf8\x7e\xe4\xfe\x45\xfd\x58\xc6\xf5\xa3\x7b\xb3\x1f\x15\x69\xaf\x08\x52\x10\xc9\x88\x2e\x60\xd2\x15\x9a\x8b\xec\x65\x18\x9c\x88\x07\x15\x9a\x0b\x3c\xf9\xd1\x69\x09\x91\xf8\xe0\x91\xf0\x24\x04\x3e\x0e\x7c\x99\x0e\x99\x41\x1b\x61\x42\xbe\xdf\xe6\xa2\x0d\xdd\x56\x44\xc9\x0a\xca\xba\xcc\x55\x18\x7a\xd0\xe7\xb8\x27\x0f\x5e\xc7\xf1\x62\xee\x25\x49\x03\xd8\x4d\x66\xa1\x26\x8b\xf7\x2b\x11\x37\x54\xbd\x1b\xbb\x66\x62\x34\xca\xb5\xcf\xee\x15\xa8\x4d\xbc\x0b\xf7\xf5\xda\x80\xde\x1b\xae\xd0\xec\x78\x4b\x94\x44\x40\x59\x12\x0f\xd2\x5c\x8f\x0a\xcd\xc5\x44\x51\x55\x68\xdf\xf9\x63\x92\xdc\xd1\x62\x5c\x47\xc7\x77\x5c\x2f\x89\xd7\x5c\x30\xdf\xcd\xc5\x4b\x1c\x17\x93\xdb\x2b\xcc\x1b\x0d\x4f\x26\xb9\x2e\xf7\x9d\x1c\xc4\xaa\xe2\xe9\xbd\x6b\x3c\x58\xbf\xa1\xf0\xde\x34\x47\xb3\x4f\xc8\x9c\xae\x30\x34\x1b\xde\x96\xf1\x39\xd7\xcf\x31\xcc\x56\x9e\x01\xe8\x2e\x6c\x03\x9a\x14\x4b\xf7\xe4\x6d\x2c\xf1\x45\x2e\x10\x52\x20\x5d\xa1\x92\xb7\x91\x57\x3e\x8e\xf7\xf9\x1d\xba\x38\x8a\x68\x85\x11\xbe\x7e\x25\x3f\x65\x85\x18\x3b\xf6\xad\x48\xe6\x34\xcd\xb1\x17\x31\x5f\xaa\xc4\xe3\x84\xbd\x9a\x61\x5f\x03\x5c\x60\xc5\x00\x03\x9c\x93\x7b\xb6\x88\xeb\xd9\x97\x1f\x5c\x86\xf1\xc1\x85\x7e\xe4\x4d\x42\x24\xa1\xff\xfd\x5b\xab\x98\xe6\xd8\xb8\x35\x1b\x13\x46\x17\x1a\xad\x11\xf6\x2f\xf6\x0f\x69\xae\x06\xcd\x74\x39\x3a\xd3\x6b\x67\xa8\x1e\x0d\x04\x43\xd3\x78\x5d\xb4\xf1\x55\xa1\x7f\xa5\xef\x41\x19\x45\x2e\xf3\x91\xe4\x7b\xe9\x0b\xbd\x6c\xc7\x9e\xf3\xb2\xe2\x60\x4f\x6a\xde\x46\xee\xd0\xc1\x5b\x4b\x84\x03\xc3\xbf\xbb\xbb\x9c\x31\x08\x08\xf5\x86\xca\x4a\xe1\x84\x99\xc9\x93\x2a\xc4\x4d\x2a\x4c\x2a\x79\x6b\xb5\xc5\x3c\x3a\xc0\x91\x81\xde\xd3\xa1\x11\xa5\xbd\x01\xb3\x24\x15\x95\xc7\xf7\x46\x86\x4f\x00\x65\x33\x4d\x66\x32\xd6\xbe\xf9\xf6\x43\x92\x77\x7d\xb0\xea\xc6\x1f\xac\x02\xe7\x8d\x37\xc6\x39\x5c\x31\x1a\xa0\x1c\x8a\xb8\xf4\xef\x03\x0e\xfc\x55\x48\x4b\xc4\xdb\x3a\xf4\xbe\xfc\xd6\xb1\xca\x1d\xe6\x48\x5b\x13\xdf\x53\x5e\x74\x6d\x46\x2f\x22\x30\x14\x53\x7a\x92\x9c\x1b\x0d\xfa\x64\x5c\x12\xcf\xc1\xd9\x92\xb7\x4e\xd7\x81\x74\x5f\x88\x6f\xcf\x10\xaa\x32\x9d\xf9\xaf\xf4\xd7\xaf\xe2\xe3\xc3\xa7\xf4\xf3\xcf\x0f\xff\x99\xf1\x9e\x8c\x51\xe8\xd0\x29\xc4\xe6\x35\x05\xf0\xd9\x25\xfe\x25\xfb\x2d\xea\x10\x15\x1c\x3c\xbb\xf0\xe0\xe9\x96\x21\xbf\xc5\x01\x67\x5c\xbe\xf8\xc7\x63\x49\x75\x39\x3a\x36\xa8\xe2\x9a\xa1\x87\x87\x08\x42\xdb\xdb\x87\xd1\x6e\xcc\x61\x14\x3e\xa3\x0b\x27\xd0\xc6\x6f\x34\xe9\x5e\xfb\x3b\x37\xc2\x58\x63\xf7\xbf\xfe\xf7\x2d\x1f\x2a\x70\x6e\x06\x3d\x9c\xd3\xd3\xdb\x92\xd2\x54\x8f\xfe\xce\xee\xc6\xda\xc4\xbf\xfd\xef\x77\x17\xc5\x58\x1f\xb3\x04\xf8\x00\x46\x3a\xf4\x38\x81\xc9\x0e\x21\x64\x15\x02\x0d\xb2\x25\x60\x40\xa7\x62\xde\x91\x44\x98\xaf\xcd\x56\x16\x30\x69\x34\x7a\x9f\xbb\xe3\xac\xf0\xf1\x2b\x0a\xc9\x0d\x5a\xab\x82\x0f\xde\xd1\xe4\x05\x84\x90\xa9\x90\xb7\x40\xc8\x29\xde\x06\x69\xee\x85\x26\xf1\x46\x16\xa1\x51\x0b\x68\x94\x6e\xd2\x28\x85\x69\x44\x7e\x3a\x65\x88\x49\x1e\x30\xce\xdb\xf6\x4e\x93\x00\x6c\x16\xf0\xea\x81\x3f\xd9\x6f\x4d\xfa\x75\xe7\x5a\x90\x31\x07\x05\x10\x08\x06\x82\x51\x71\xd5\xa3\x2a\xed\x25\x15\x90\xd7\x5d\x69\xbf\x5d\x23\x7b\x5d\xa3\xf3\x76\x8d\x5c\x9c\x87\x00\x14\xc5\x2c\x71\xbf\xd4\x61\xa9\x4a\x2e\x7b\xdf\xed\xdc\x9d\x5e\x3c\x6f\xf9\xf0\x78\x3b\xcc\x47\x38\x04\x84\x3b\x02\xd0\x89\x67\x75\x3f\xa6\x0a\x52\x78\x17\x97\x6b\x0c\x8d\xcc\xdf\xff\x48\x5d\xbc\xc9\x5f\x0d\xdd\x7f\xfc\xaf\x0d\x1b\xbe\xd2\x2c\xa5\x1e\x3c\xb7\x76\xcf\xd7\x8e\x52\x15\x59\x87\xf9\xae\x86\xee\xe1\x33\x5d\x61\x68\xaa\xd5\x49\xf0\x9a\x5e\x2a\xaa\x9a\x4e\x31\xa1\x90\xe3\xef\x1c\x33\xc9\x56\x64\x68\xbd\x75\xa1\x7f\x02\x8d\x00\xed\xb0\xa9\x94\xae\x74\xe9\x98\xbb\x28\x38\x84\xff\xe7\x5f\x3e\x84\xfe\xce\xef\xbf\x00\x78\xb9\x64\x43\x58\x7c\x18\xec\x0c\xe6\x09\x90\x30\xec\x02\x4a\xb1\xe5\xda\x7c\xc8\x98\xb8\x44\xd6\x89\x01\x12\x7c\x88\x62\xa7\xe0\x59\xcb\xa4\x42\x5e\x6a\x37\x26\xfb\x5e\xa8\x96\x37\x2c\x9c\x9e\x65\x08\x92\x6d\x47\xb1\x06\x2d\x57\xb2\x6d\xc7\x83\x61\xf6\x62\x82\x84\x30\x14\x0a\x42\x56\xfc\x7b\x80\xaa\x88\x7c\x2c\xfd\x7c\xd8\x0c\xdd\xa6\x40\xae\xf0\x7c\xe9\x4c\x18\x80\x65\xa6\x03\x04\xca\xb0\xcf\x61\xd4\xb9\xcf\x6b\xa8\x96\xd8\x90\x0f\x97\x9a\xd8\x0c\x06\x6d\xbd\xd9\x46\xe6\xa2\x8d\xae\xee\x1a\xa8\x27\xe0\x58\xbc\x8e\xb3\x2f\x39\x06\x44\xbc\x42\xf0\x86\xae\xad\x15\x6a\xf8\x9e\xe5\x99\x38\x9c\x91\x9e\x22\x67\x59\x88\xad\xda\x0a\x76\x80\x8b\x72\xf5\x98\x72\xd9\x98\x72\x6c\x4c\xb9\xdc\x73\xd4\x5f\x18\x85\xa4\xc3\x54\x0e\x30\xf5\x3e\x2a\x0b\x77\x06\x3b\x0e\xb8\xfd\x8d\x71\xf6\xc0\x3d\x1f\x3e\x45\x8b\x5f\x0e\x39\x88\xf1\xdc\x44\x3f\x77\xf9\x6f\xe2\x1e\xc6\xc6\x39\xbb\xfa\xf9\xff\x80\x8c\x7f\x00\x8d\x8f\x20\x5e\x3d\x24\xb1\xe8\xfd\xfd\x7b\xb2\xc0\x5c\x73\x7e\x27\xd7\x6f\x71\xfc\x1e\x7e\xc3\xbc\xc6\x41\x1b\xbc\x43\x3f\x47\x2f\x79\x91\x81\xe4\xca\x7a\x9a\x8b\xdc\xa4\x22\x63\x22\x0d\x7a\x36\xb6\x24\xae\x9e\xe6\xd3\xe3\x21\x49\x10\x11\xc3\xeb\x21\x54\xfc\xd2\xc9\x20\x3d\x1e\x66\xb3\xd1\xe2\x3f\x87\x8a\x67\x6f\x17\x7f\x0c\x15\xcf\xdd\x2e\xfe\xe1\x6d\x66\x72\x17\xbc\x3f\xbf\xcd\xcc\x65\xf1\xcc\xdb\xcc\xf8\xc5\xd1\xa9\x41\x55\x63\xbd\xf5\x24\x61\x65\x5c\xa3\x6b\xc6\xef\x8e\xe9\xb8\x23\xc2\x43\xdc\x87\x3f\xc7\x7d\xf8\x18\xf7\xe1\x87\xb8\x0f\x9f\xe3\x3e\xcc\x24\xed\xcd\x28\xf4\xf9\x5f\x65\xe4\x78\x00\x2b\x71\xa7\xea\x37\x77\xc4\x0b\xce\x6e\xee\x95\x30\x7f\x12\x6f\xbe\x99\x3b\x2b\xb0\x2e\x5d\x0e\xdd\xd2\x3f\x7d\xfe\x0c\xfc\x34\xad\x97\x1b\x3e\x0e\x69\x4e\xa5\x53\xd7\x61\x02\x30\x59\x98\xc6\x9b\x97\xce\xfc\x91\x8a\x0f\x29\xf0\xcf\x7f\x02\xff\xcf\x0f\x71\x74\xc8\x3b\xe8\xfc\x1c\xa5\xf3\x1c\x47\x27\x7b\x07\x9d\xc7\x28\x9d\x4c\x1c\x9d\xdc\x25\x9d\xc8\xcd\xc5\x1d\x11\xd8\x17\x40\x33\xde\xa5\x46\x74\xc1\x21\xa0\x6c\xcf\x6d\x1f\x3c\x82\x94\x87\x91\x1d\xcc\xd1\x0f\xaa\xcd\x32\x2f\x6c\xbc\xc7\xca\x0a\x43\x97\xc3\x17\xcd\xe3\x61\x3e\x8b\xfc\xe2\x77\xe6\x33\x78\xc7\x9b\x18\x5c\x5a\xc5\xdb\xd7\xfb\xfc\x5e\x02\x38\x96\x3a\x0d\xa3\x58\x12\x2c\xe8\x37\xfc\x4e\x63\x03\x51\xae\xd2\x29\xc3\xbc\x80\xa1\x96\x06\x49\x2d\xbd\xe1\xf9\x99\x14\x40\xf2\xfb\xa5\x5f\xdf\x81\xb7\xc4\xd0\x90\x56\xa3\x43\x9a\x25\xbf\x7f\x48\x5f\x6f\x0e\x69\xf8\x1e\x67\x23\x9d\x4c\x5e\x84\x3c\x34\x7b\x54\x8c\xe7\x24\xa4\xf9\xf9\x8e\x97\x8c\xb8\x18\xf8\x26\xa2\xfe\x39\x1e\xb0\xa6\xe3\x9e\xcb\xd5\x28\x0b\x71\xce\x9b\x90\x85\x5f\x7e\x94\x05\x0f\x12\xe8\xc2\x22\xf0\x9d\x1a\x55\xe3\x20\x59\xc8\xad\x51\x30\x2c\x1d\x65\x36\xb3\xe1\x61\xf2\xe6\xbd\xd6\xd7\x20\x88\xc4\xf6\x72\x1e\x09\x86\xac\x2b\x67\xe4\x1c\x8f\x9c\xb5\x7d\xa4\xf3\x95\xd9\x72\x1b\x73\xdb\x2a\xef\x64\xda\xd0\x4c\xde\x01\x96\x84\x43\x2c\x14\x1b\xdf\xfa\x5f\xdf\x99\xc1\x91\xa8\xde\x9c\xe0\xea\x4e\x55\x71\x82\xf0\xf4\x80\x4d\x3a\x72\x0a\xc9\x23\x1a\x46\xfd\xbd\xf4\x1d\xf0\xbe\x89\x8e\x63\x5b\xd2\x0c\xeb\x04\x8f\x90\x99\x9d\xee\xfe\xf7\xae\xcb\x40\xc8\x90\x1a\xb7\xf9\x6a\x37\x7b\x1b\x72\xad\xcc\x82\x74\x8b\x83\xe1\xf2\x11\xcf\x4a\xe8\xcf\x76\xe9\xaa\xc0\xdb\x71\xde\x95\xb0\x4d\xfd\xa6\x67\x65\xf6\xda\xb3\x32\xc4\x46\xce\x65\x23\x17\xcf\xc6\xa5\xa7\xc1\x1b\x6c\x18\x37\xd9\xc8\xbd\xc9\x46\xf6\x09\x0c\xa0\x57\xb8\xcb\xcd\xe0\x7e\x76\x06\xf1\xec\xfc\xf3\x0d\x76\x06\xef\x64\x27\x9b\xc0\x4e\xdc\x24\x25\xb0\xf3\xfb\x4d\x76\xde\x9e\x24\x32\xc4\x0e\x99\xc0\x0e\x79\x3f\x3b\xff\x73\x93\x9d\x18\x47\x61\x84\x44\x00\x14\xc1\xd0\x51\x46\x0e\x57\xe9\x1f\x14\x5d\x34\x0e\xc0\x51\x1c\x55\x8a\xbc\x27\x42\xc5\x82\xd0\x2d\x21\x7b\x57\x05\x2f\xc2\x6d\xbe\xa4\x6e\xdd\x67\xc6\xa0\x86\xb8\x24\x87\x2e\xc5\xb8\x37\x92\xa4\x0e\xdc\xe6\x24\x1b\x5d\xc6\x1e\x77\x97\x50\x31\x19\x4b\xe2\x45\x20\x18\xaa\x61\x01\x93\x57\x25\xc7\x49\xa0\x97\xbf\xed\xd9\x4a\x59\xb2\x0d\x04\x43\x83\xe1\x32\x30\x55\x1b\x8e\xfd\x4b\x41\xa0\x41\xf2\x93\x25\x2f\x48\xf0\xfc\xfc\x0c\x3e\xc1\x0f\x3a\xee\x07\x9d\x54\x18\x1b\x1d\x5d\x16\xd8\xa6\xaa\xf8\xb1\x12\xb6\xa4\x29\x2e\x7f\x3a\xc6\xb3\x92\x2c\xde\x91\xbc\xa4\x23\x18\x96\x54\xb1\x82\x3c\x98\xf1\x60\x94\x5f\x88\x6f\xcf\x90\x6c\x3a\xf5\xc9\xbf\x75\x84\x39\x94\x78\xc5\xa2\x61\x5e\xfb\x50\x3e\xff\x30\x4c\x70\x06\x64\x03\xa4\x4b\x38\x50\x3d\x34\x4e\x9e\xb9\xee\xbc\x99\xcd\x39\x54\xc1\xa7\xe2\xbd\x05\x50\x96\xc5\x9f\xc0\x67\xf0\xc5\x83\x40\x74\x4d\xcb\xb4\xc7\x55\x07\x85\x81\x7d\x06\xc4\xa7\xf0\xdf\x7f\x0b\x58\xfe\x04\x1e\x1f\x83\x6f\xa2\x47\x1d\xb7\x5d\x64\xee\x5c\xf4\xeb\x4b\x88\xd6\xcf\x20\xeb\x23\x1b\xfa\xb5\xc6\x30\x1d\xcc\x67\x10\x53\x18\x3c\x82\x0b\xb8\xc6\x50\x3b\xbf\x7c\x8e\x0c\x8f\x87\x7a\x18\xb2\xac\x1d\x45\xdf\x49\xd7\xd5\x71\x83\x10\x52\x39\xfa\xd4\x9a\xfa\x35\x05\x34\x89\xd7\x6d\x88\x57\x88\x32\x7e\xa0\xe4\x86\x18\x6c\x36\x14\x04\x81\x64\x18\x02\x51\x3d\x07\x6d\x86\xfa\xa3\x2a\x0b\x34\x1d\xf6\xb3\x25\x2f\x86\xc6\x94\x24\xd3\x61\x86\xbf\x04\x7d\x09\xc1\x3d\x46\xb9\x0c\xdd\xb7\x44\x26\x11\xe1\x76\x87\x06\xe3\x11\xa4\x3e\xa1\x23\x82\x5f\x35\x7c\x27\x18\x8c\x45\xe4\xb4\x90\xc4\xef\x91\x24\x87\x06\xcd\x71\xe9\x28\xb9\x37\xf8\x4b\xea\x18\xf8\x1c\x6a\xe4\x12\xd6\x2e\xda\xa5\xc8\xfc\xdd\x76\xa2\xf9\x96\x87\x1d\x8e\xd2\x40\x59\x4d\x3e\xa5\x1e\xe0\x31\x09\x21\xac\x5d\xe9\x34\x65\x28\x59\x5a\x16\xc8\x96\x71\x80\x66\x8b\xb2\xc4\xa6\xe4\xf5\xeb\x47\x37\x30\xb8\xdf\x54\x45\xd0\x34\x84\x97\xe8\xe2\x4e\x33\xbd\x2b\x68\x47\xb1\xa4\x50\x32\x2c\x88\xc4\x1b\x04\x02\x62\x65\x09\x19\x38\xa5\xff\x91\x5a\x18\xe2\x29\xf5\x31\x46\x91\xfc\x9e\xa8\x96\xe1\x25\x15\xca\x77\xb2\x34\x2c\x49\x46\xb8\x35\x70\xc0\xe3\xbb\x42\xde\xda\x30\xde\x52\xab\x5e\xfc\xe1\x02\x82\xac\x3a\x16\x8f\x74\x1f\x4c\x89\x22\xac\x60\x8e\x0f\x1c\x92\x0c\xe3\x4c\x15\x5d\xc6\x14\xbb\x1c\x1d\x7d\x61\x7a\x8f\xe2\x0c\x21\xfa\xc6\xa5\x98\xf6\xd5\x08\x65\xc9\x51\xb5\x39\x25\xc9\x04\xa9\x86\xea\x16\x46\x3b\xa4\x1f\x82\x26\xbc\x4a\x49\xb0\x6b\x55\x7f\x84\x69\xb7\x64\x50\xfe\x53\x14\x50\x35\x40\xe6\x0d\xb2\x8e\x24\xf8\x47\xc8\x76\x20\xb1\x78\x7d\x5d\xcc\x17\x99\xfa\x96\x84\xcb\xf7\x2d\x01\x90\xed\x5a\x36\x5c\xdd\x75\x87\x6c\x90\xff\x4f\x36\xbe\x57\x36\xca\xfe\x08\xc7\xcb\x46\x06\x3a\x08\x48\x1f\x31\x0e\xb9\x97\xf7\xdb\xed\x3c\x99\x7d\x84\xd8\xdd\x22\x1e\x27\xec\x3e\xf6\xfc\xa7\x89\x54\xf6\x1e\x91\x02\x50\x40\xe2\x33\xd3\xe1\x38\x41\x7b\xc5\x9b\x21\xfb\x35\x48\xa8\xa1\x04\x28\x98\x38\x92\x09\x87\x1c\x41\xa7\xcb\xaf\x7f\xc1\x39\xf4\xdd\xea\x9f\x51\xec\xf9\xd7\xbf\x3c\x61\x9f\x0b\x1c\x8b\x8e\x8f\xc8\x08\x4e\xf0\x63\xe8\xde\x9e\x00\x1f\x40\xd9\x3d\x7d\xe2\xbf\x49\xf0\x01\xb0\x1f\xca\x12\xaf\xe1\x0f\xb2\xd0\x99\x43\x94\x2c\x55\xd1\xa5\xab\xa3\x3b\x0f\x7d\x25\x20\xfc\xa9\x28\x7d\x58\xf2\x82\x63\x00\xdb\x4b\x76\x8c\x67\x05\x9d\xe8\xe1\x26\x01\xb2\xd0\x08\x6c\xe2\x4b\x3a\xe8\x9d\x07\xe9\xa1\x24\x86\xf0\xb6\x6a\xc4\x0d\x22\x91\x7e\xf0\x06\x0f\x75\x03\xcb\x3f\xbe\x27\x8a\x09\xf6\x45\x29\x92\x82\x81\xbc\x5a\x93\x85\x5b\xfa\xfa\xed\xc5\x82\xbd\xb8\xc2\x03\x9e\x7e\x7e\xc8\x28\x97\x6b\x27\x1e\x11\x92\x86\xf6\x8f\x7b\xae\x47\xa8\xfa\xae\xb4\x16\x08\xd8\x1c\xba\x7f\x8c\x3f\x40\x80\x58\x90\x51\xef\xa5\x10\x63\x70\x5f\xa4\x66\x27\xf1\xc3\x5e\x98\x53\xf2\x23\x9e\x59\xdf\xbc\x4a\x88\x2a\x81\xc5\x71\xde\xb5\x61\x34\x9c\x04\x7e\xf5\x5c\x66\xa8\xf6\x9b\xc0\x3a\xa9\x6c\x4c\xfb\xd9\x8f\x81\x20\xfd\x30\x0b\xa3\x4e\x85\x19\xb4\xd8\x0e\x73\x0b\xf9\xe5\x8a\x0d\xe2\x23\x12\xf8\x1f\x1f\x85\x56\x97\x6e\x26\x83\x78\xa2\x93\x19\xf2\xd9\x04\x82\xaa\x98\xe8\xa6\xed\x6b\xe0\x4f\xcd\x8b\xee\x12\x8a\xdc\xf3\x48\x22\x10\x77\x12\xca\x2b\x29\xec\x60\xa6\x6b\x01\x47\x0b\x60\x8b\x0a\x00\x0a\x58\x92\x66\x38\x12\xe0\x4d\x13\x52\x82\x60\x25\xee\x62\x5c\xa8\x12\xc6\x1a\x5b\x81\x83\xa5\x60\x14\x10\xc8\x07\x5e\x20\x3e\x1f\x40\x80\xc2\x28\xd9\xb6\x6b\x56\xf1\xaa\x7a\x42\xa4\xf8\x8d\x84\x52\x6c\x9c\x8c\x9d\x05\x6c\xc9\xb6\xaf\x20\x54\x02\x1a\x22\xef\xf0\xdf\x93\xc7\x17\x92\x7a\x23\x1d\x2b\x5a\xaa\xd9\x1f\x39\xb1\xfa\x4c\x7e\x5a\x14\xf3\x1f\x5c\x46\xfd\x73\x2a\x88\xf6\x02\x93\x32\xc3\xea\xd6\x73\x2e\xb6\x91\x47\x18\xf2\x61\xc6\x30\x34\xd3\xa0\x2a\xc4\x8c\xe1\x45\xd1\x92\x6c\xe8\x6a\xac\xe8\x82\x84\xc9\x05\x70\xcc\x8a\xee\x48\x32\xf6\xe0\x85\xf0\x21\x53\x98\x05\x03\x3d\xa8\xa3\x14\xea\xaa\x1a\x7d\x48\xbf\x4b\x09\xfd\xd7\x17\xc1\xb4\x09\x32\x9b\xcb\x17\x8a\x2f\xdf\x7e\x86\x2e\xa5\x99\x3b\x37\x71\x38\x71\x9f\xf1\x2d\xc4\x33\xef\x18\x0b\x5f\x8f\xf8\x04\xdc\x32\xb1\xdb\xb3\x60\x98\x27\xec\x0c\x68\xd0\xde\x50\x44\x92\x27\xc3\xaa\xd7\x46\xf6\x68\x70\xdc\x3b\xc0\x94\x2c\x88\x62\xbc\x53\xa3\x70\x2b\x41\x5e\x2d\xcf\xef\x1e\x2d\x1d\x38\x17\x8b\x13\xb0\x8e\x7b\xe7\xc3\x4e\x57\xfc\x0c\x64\x8a\x63\x5f\x13\x03\xdd\x05\xc4\x23\x53\x4f\xee\x20\xfb\x59\x2b\xa1\x75\x00\x0b\x1b\x16\x10\x76\xb6\x63\x68\x5e\x35\x0f\xff\x43\x55\x6c\x07\xf0\x60\x29\x1d\xa0\xf3\x3a\x8a\x30\x74\x77\x4c\xdb\xc3\x2a\x02\x4b\x45\x17\x71\x42\xb3\x10\xe7\x92\xb0\xd2\x15\xc1\x5d\x42\x2e\xf7\x96\x84\x16\x35\x40\xf9\xce\x02\x10\x70\x14\x53\x80\x1b\x05\xc6\x42\x3a\x21\x67\xbf\xbf\xa1\x8f\xe0\x75\xd6\x2f\x9f\xbc\xbf\xdc\xe9\x78\x02\x3b\x7b\x07\xe9\x7e\xf2\x93\x6a\x89\xbf\xc4\x2e\x96\x97\x97\x97\xbb\x36\xb6\x93\x6f\xb6\xed\xdc\xf1\x6c\x1b\xe2\x0d\xab\xf0\x09\x90\x0f\x5f\x08\xef\xce\xc0\xdb\x74\xbc\xca\x17\xbb\x0e\x3a\x7a\x05\x9e\x32\x99\x0c\x44\x64\xe0\x9d\xf0\x27\xa8\xd0\x27\x78\xf5\xf5\x09\x1f\xdf\xbc\xaf\x5d\xc6\xe0\x17\x4f\xde\xc1\xce\xd7\xee\x37\x3d\xab\xbf\xfc\xd7\xa7\x6f\x8f\x9f\xd2\xee\x7f\x3f\x3f\xa4\x3f\xa5\xbf\x7c\xfd\x6a\x7f\xfd\xca\x7d\xfb\xf9\xe1\xe1\xd7\xc0\xd5\x3a\xce\xd9\x1a\xa0\x36\xb1\x87\x35\xf9\x2d\xe4\x4a\xe1\xe1\xc7\xa0\xaf\x72\xdf\xae\x21\xed\x2e\x0e\x9d\x90\x52\xea\xa3\xd7\x0b\xef\x10\x8a\xe9\xfc\x7e\x2f\x4e\x59\xbc\x2b\x08\x1c\x76\x2c\x42\xb7\x2c\x86\x37\x61\xc8\x30\xf4\x76\x7a\xa1\xf2\xfa\xe6\x21\x1c\xc5\x9b\x66\xe9\x7a\x4c\xd8\x0e\xc7\x7e\x49\xfd\xfd\x5d\x77\xa3\x0a\x6c\x82\x33\x79\x21\x72\x31\xaa\xf0\x96\x8c\x92\x3b\xc6\x1c\xc2\x91\x2d\x37\x32\x41\x9a\x1e\x8d\x12\xb8\xa0\xde\xc5\x05\xda\xaf\x47\xe6\x3b\x59\xa8\xb8\xa3\x9d\xa6\x47\x95\x04\x26\xca\xdf\xc1\x04\x8c\xc4\x7d\x1f\x1b\xde\xb3\x67\x9a\x1e\x55\x13\x38\xa1\xbf\x83\x13\x78\x8b\xff\x4e\x56\xdc\x03\x99\xc7\x4b\x39\x81\x97\xca\x77\xf0\x02\xa1\x7e\xde\xc7\x4a\x28\x18\x9b\xee\xb4\x2e\xa1\x71\x14\x1b\xa8\xca\x46\x0a\xcf\xe4\x13\x4c\xde\x64\x46\x0e\x5b\x9a\xb1\x97\x7c\xc8\x37\x88\xed\xa5\x07\xb9\xc1\x21\x35\x08\x8e\x03\x53\x1a\xab\xd7\x4e\x36\xb0\xbf\xcc\x1f\x2e\x05\xdf\x01\xeb\x82\xfb\xd9\x73\x8d\x2c\x68\x75\xe1\x91\xe9\xdd\x1a\x99\x91\xf9\x67\x8d\x4b\xf5\x0f\x5e\xa2\xdf\x3f\x2a\xc1\x63\x14\xb5\xb0\x0d\x15\xe2\x59\xd0\xf5\xb8\xb8\x44\x97\xef\xda\x7b\x1f\x7f\x22\x5c\xc4\xb2\x0f\x3e\xc4\x25\x5a\xf5\xe6\x0c\x43\x19\xb8\x6b\xaa\x97\xc0\x53\xfd\xfb\x78\xf2\x48\x27\x73\x15\x9b\x4e\xe9\xf2\xe7\xb2\x36\x79\xb3\x4f\x9e\xca\x0a\x81\x0a\xa4\x69\x0f\xa7\xeb\xaa\x77\xec\x1d\x46\x8b\x10\x7e\xdc\xb9\xec\x09\x94\x0e\xaf\x04\x4a\xdb\x2d\xa8\xbc\x66\xa6\xe1\x67\x4f\x80\x7c\xba\x86\x57\x96\x24\x9d\x53\xce\xd2\xf3\x41\x11\xbd\xa4\x4e\xfe\xbb\x8d\x82\x9e\x6b\x14\xf0\x37\x44\xf5\x13\x50\x1e\x1f\xa3\xd8\x2b\xce\x1b\x10\x5e\x31\x5b\x2d\x63\xb9\xa6\x91\xa2\xc3\x6c\x43\x2a\x7f\x02\x69\xa6\xf2\x84\x52\x33\x24\xed\x2e\x8d\x8b\x67\x7d\xf8\xe1\xaf\x8d\xbb\x9c\xea\xf0\xd1\x21\xd6\x54\x0a\xdd\xab\xba\xa7\x03\xf0\xcf\x7f\xa2\xa2\xe1\x74\xce\xd1\x2e\x4a\x2e\xf3\x65\x49\x35\x0e\xe9\xab\x64\x18\xb8\x2a\xf9\x56\x55\x6a\x61\xf8\x28\xb6\xd7\x55\xb3\x09\x55\xc3\x58\xb5\xd7\xb5\x72\x17\xe9\x9b\xb1\xaf\x88\x68\x08\x36\xb0\xf9\x13\x02\xdf\x44\x8f\x4e\x5f\xff\x82\x46\x1f\x3a\x19\x21\x34\x8e\xaf\x7f\xf1\xf2\x67\xa5\x54\x15\xbd\x30\xc0\xe6\x7c\x8a\x10\x99\x07\x4f\x95\xed\x1e\xe8\xc0\x46\x51\x55\x3f\x40\x10\xe3\xf0\x0b\x1b\x18\x97\x6f\x03\x6b\xe7\x43\xd5\xbe\xd1\x89\x44\xa1\x40\x08\x6c\x4c\x0b\x4b\x44\x1c\x2a\x8b\x3b\xf9\xcd\x58\x89\x68\xfe\x6f\x49\xc4\xd0\x40\x26\xc4\x77\xc9\xc4\xd0\x80\x7b\xfe\x7b\x85\x02\xd6\x75\xf7\xb6\xa4\x31\xc5\x36\xad\x5b\xc4\x35\x63\x93\x86\xb2\xf5\x1d\x56\x2c\xa4\x79\xaf\x95\x82\x31\x76\x30\x1f\x95\x24\x3e\xda\xef\xe2\x43\x84\x44\xbf\x87\x0f\x3a\x64\xdb\x57\x3c\xdb\x3e\x30\x0a\x70\x9c\x36\xc2\xaa\xb2\x7d\x70\x43\xf8\xc2\x09\xd3\x3f\xa9\xd2\xd2\x79\x0a\x40\x63\xf9\x88\xb5\xe0\x81\xf1\xc4\x77\xf1\x16\xf6\x44\x5c\x17\x5d\x76\xef\xee\x22\x86\xd7\x77\x0f\x0c\x5c\xd2\x79\x81\x7b\x17\x13\x7b\x9c\x69\xe3\xfe\x13\x03\xe6\x01\x9d\x18\x38\xac\xd2\x01\xa5\xda\x06\x48\xb1\xba\xe2\x28\xbc\x23\x81\x95\x22\xaf\x54\x84\x37\x09\x13\x29\x38\x16\x0f\xb3\x5f\xa5\x9e\x41\x8c\xb3\x17\x52\x61\x26\x6f\xc5\xc4\x80\xba\x5d\x1a\xde\xe8\xd2\x45\x34\x74\xf8\xc1\xe3\x6f\xee\xe2\x8c\x5b\x5e\x5e\xc7\xdf\x73\x4a\x19\x04\x29\x8a\x30\x46\xef\x52\xe2\x9d\x9d\x25\xf9\x90\xcd\xe8\x5c\x0d\xb3\x15\x5d\x26\x96\xf5\x1f\xfa\xc3\x11\x04\x5f\xc0\x2f\xa0\x67\x83\xe1\xd7\x20\x0a\xd4\xd2\x78\x55\x3d\x3d\x81\xaf\x7f\x81\x9e\x74\x5f\xff\xe2\xa1\xd6\xe2\x1c\xec\xa8\xc5\x67\xc0\xc2\x2b\x50\x1c\x50\x0a\xaf\x41\x71\xb9\x20\x11\xef\x42\x51\x15\xe7\x14\x64\xe8\xf5\xb9\x85\x28\xdc\x9a\x89\xd2\x60\xf3\x40\x54\x96\xf0\x66\xd2\xf1\x99\xf5\xd0\x6d\x60\x7f\x20\x31\x0d\xc7\x85\x3a\xc6\x65\xe0\x6a\xcf\xc6\xd9\xb4\x3e\x86\x9e\x58\x2a\x06\x4a\xcd\x26\x39\xf8\xd2\x2d\x03\x5d\x98\x54\x7e\x21\xa9\x36\xd8\xc1\x00\xf4\x95\x74\xe4\x45\x49\x50\x34\xec\xd4\x8f\x5f\x63\x70\xd5\xed\x4e\xb2\x4e\xef\xaa\x9c\xbd\xb3\x5d\x3f\x48\xca\xad\x94\xbb\xbb\xc5\xa0\xda\xbd\x3e\x8b\x50\x78\x7f\x19\xde\x06\x6a\x81\xbb\x63\x58\x71\x31\x89\x97\x12\xd3\x77\x2d\xef\xc8\xee\xf5\x9d\x07\xe0\x88\x65\x5b\x4e\xb2\x6c\xe7\xff\x37\x5b\xb6\x0b\xdc\xd7\x1b\xa6\x6d\x70\xba\xf2\x4f\x32\xc1\x31\xab\x1e\x01\xd6\xe1\xa0\xaf\x9e\xfd\x7d\xe7\xb2\xff\xbe\xc0\x11\xc4\x67\xb5\x5b\xbc\x0c\x20\x90\xc6\x1e\xf2\x32\x48\x20\xcd\xff\xd0\x91\xef\x06\x8e\x59\x62\x3a\xd3\x37\x4e\x58\x89\xaa\xd6\xf4\xa2\x49\x4d\xff\xa4\x2f\x5b\xbc\xb9\x52\x84\x68\x96\xf7\x77\x23\x6d\xb9\xc3\xb0\xb8\x1d\x55\x20\xe9\xa2\x87\xaa\x15\x38\xc8\x81\x74\xcf\x52\x34\xde\x3a\x81\x4a\x78\xb6\xa3\x70\x57\xde\xe5\xc3\x8a\xb7\x44\xf4\x44\x04\x5f\x56\x70\x12\x70\x90\x42\x8e\x15\xf0\x69\x84\x42\x69\x61\x45\x00\xd3\x98\xa1\xfb\x7c\xd3\x9d\x99\x14\xb2\xda\x15\x07\x22\xc9\x2c\x24\xb4\xdd\x08\x86\x65\xc1\x2c\xe8\x98\x1e\x0f\x60\x60\x57\x90\x04\xcf\x40\x0f\x32\x3f\xa3\xcb\x7b\x55\x45\x20\x9c\x2b\x09\xa4\x12\x07\x28\x05\x37\xde\x58\x90\xf9\x2b\x0f\xf0\xd8\x9d\xf7\xa7\x18\x47\x82\x7f\xfe\x33\xd6\xbd\x20\xd9\xcc\xbe\x81\x72\x14\xfb\xe2\x18\x3f\x41\x9c\x24\x18\xba\xf8\x47\x4c\x51\x2a\x66\x0a\x20\xad\xbb\xa6\x21\x32\x05\x70\xf6\xa2\x73\x80\x3c\xc9\xee\x9c\x87\x5f\x6e\x4d\xc4\x1d\xa3\xf9\x0b\xf1\x29\x5b\x28\x7e\x22\xe2\x70\xa3\xe0\x1d\x5a\x8c\x52\x1b\xf7\x92\x74\x94\xf8\x5e\x45\xe2\x11\x45\x2a\x63\x60\x1c\xde\x73\x81\x14\x42\x6f\x74\x8d\x77\x1f\x64\x3b\xb8\x51\xaa\x8f\x7b\xc9\xea\xf7\x9e\x8b\xa7\x65\x8c\xd2\xad\x5f\x28\xdd\x21\xbf\x00\x34\x84\xf9\x48\x0f\xcb\x71\xd8\xad\x6e\x25\xf9\xcf\x5b\x33\x99\x0c\x6e\xde\x03\x6b\x77\x8f\x27\xe8\x68\x92\x7c\x26\xc7\x9b\x1a\x85\x95\x75\x1a\x86\xb9\x5c\x9d\x46\xe3\x9b\xce\x5d\x37\x0d\x1f\x6f\x3d\xac\xf8\xe4\x56\x29\x55\xc5\x0d\xdb\x49\xdb\x29\x27\x79\xc9\x50\xb9\x38\x40\x76\x77\x2c\x57\xb7\x30\x70\x63\x76\xfb\xf8\x93\x40\xcc\xf6\x1f\xca\xe6\x7a\xd5\x7d\xe5\xdb\x13\x0c\x49\x4a\x60\xfd\x32\x2b\x0e\x02\x12\x45\xf9\x47\x13\xba\xf2\xeb\x9f\xdd\x17\x9c\xd2\xf4\xbd\x5d\x69\x4b\xa2\xc2\x03\xda\x30\x4f\x20\xdd\xc6\x32\x7d\xf1\xe1\x13\x82\xcd\x30\x25\x41\x59\x2a\x42\x14\x43\xce\x96\x02\xe8\x33\x0f\x24\x17\xed\xda\x8a\xee\xee\xd0\x71\xe7\xbd\xf8\x01\x52\x62\xef\x7c\x94\xdb\x79\x27\xe0\xd9\x06\x09\xd2\x20\x49\x90\xd4\xff\x4d\x41\x0a\xaf\xb8\x9b\x92\x84\xa3\xb2\x50\x12\xdb\x24\x59\xfa\xb3\xbb\xf3\x96\x2c\xbd\xd5\x9b\x90\x9d\x1b\xde\x92\x6b\xe1\x54\x01\x6c\x4c\x44\x04\xf4\x45\x30\x96\x01\x4c\xde\x13\x44\x00\x3d\x79\xd7\x90\xbc\x47\x0d\x47\xb7\xd8\x60\xc1\xdb\x18\x28\x1d\x87\x5d\x78\x55\xf1\x41\xfb\x39\x7e\xe4\xb4\x7b\x41\xb5\x65\xc9\xc9\x16\x8a\x69\x25\x02\xf8\x96\x74\xc9\x00\x14\xf0\x08\xb2\x71\x1a\x5c\x81\x11\x08\xe0\xa7\xcf\xa0\x70\x81\xa7\xed\x65\x8c\x0b\x7b\xac\x5c\x59\xc7\x90\xee\x13\x20\x1e\xc2\x9e\x70\x61\x1e\x87\xd6\x4e\x42\x1e\xa3\xef\xe0\xb4\xf0\x36\xa7\xd9\x04\x4e\x3d\x87\x05\x2b\xe6\x08\x17\x65\x14\x95\x93\x13\xca\xe5\x2e\xca\x2d\x12\xca\xe5\x71\xb9\xc8\x08\xa5\x2c\x79\x91\x86\x7e\xfb\x30\x29\xfe\x93\xfb\xab\x1c\xfc\xba\x70\x7f\x7d\x48\x85\x87\x0b\xde\x07\x3b\x8e\x65\xdf\x13\xff\x12\xbe\x20\x8e\x1f\x43\x7f\x98\x21\xcd\x48\x20\x64\x9c\xdb\xe2\xf7\xae\xc4\xd8\x5b\x6c\x34\x34\x91\x61\xf1\x6e\x92\xff\x06\x72\xc4\x45\x4c\x7d\xe8\x66\x1b\xee\xdf\x38\x9a\x36\x8d\x2f\x79\x1e\x42\x18\x26\x71\x7d\x49\xba\xe8\x46\x19\xec\x0c\x55\xbc\xaa\xbf\x30\xd4\x50\x28\x6f\x12\x8d\xac\x47\xa3\xca\x2b\xba\x73\x45\x64\xe9\x7e\x7a\x9b\x4a\xce\xcf\xaa\xee\xf0\xaa\x22\x5c\x91\x51\xe0\xc7\xb7\xe9\xf8\xd9\xd9\xaf\x5d\x35\x3d\x52\x3b\xef\x9b\xdb\xd4\x0a\xfe\xf8\xa8\x8a\xbe\xb9\x1e\x20\xf7\xd3\xdb\x54\x5e\x82\x8c\xf1\x10\x87\xfb\xba\x73\xe8\xf3\xdb\x94\x4a\x21\x4a\x28\x91\x72\x1c\x2d\xf4\xcd\x6d\x6a\xaf\x1e\x35\xda\x32\x60\xbe\x3c\x63\x77\x3d\x7f\xb6\x63\x29\x1b\xc9\x53\xee\xb7\xa5\x21\x1b\x88\xa7\x03\xa0\x04\xfd\x15\x5a\x0b\xcb\x58\xe9\xc0\x22\xe6\x85\x6a\xc7\x8b\x4e\xf4\xdb\x98\x36\x73\xe1\x36\x95\x1b\x02\x74\x93\x5a\x3e\x4c\xcd\x17\x96\xeb\xe5\x11\x96\xa3\x9b\x44\x0b\x91\x61\x79\x53\x9a\x6e\xd2\xf2\xe5\x89\x73\x24\x5e\x3c\xbd\x21\x4e\x37\x49\xf9\x02\x35\xbe\x43\x9c\x6e\x52\x7b\x0d\x77\x52\x78\x87\x50\x5d\x50\xf6\x94\xe1\x45\x13\x7f\x03\x05\x22\x1a\x9f\x87\x11\x0f\x97\x86\x25\x65\x2e\x83\x5a\x50\x1a\x47\x9c\xb7\x78\xc5\xab\x4b\xd7\x20\x21\x8b\xd1\x58\xd3\x10\x2d\xaf\x86\x6b\x7c\x64\x0b\x17\xe5\x60\x66\x2a\x9c\x4f\x54\xd9\x4b\xc0\x86\xc6\xf3\x09\x17\x52\x74\xb0\xdc\x21\x17\x64\x8f\xda\x76\xc7\xab\xca\x52\x91\x44\xe0\x6e\x70\xd6\x13\x90\x9f\xc0\xe2\x01\x3a\x55\x3e\x5f\x2a\xf5\xbf\x81\x5c\x29\xe2\xce\x87\xc5\xdf\x8f\x2f\xe2\x10\x4e\x00\x0c\xe7\x00\x1f\x40\x8e\x08\x85\xf2\xc5\xa8\xd2\x28\x31\x57\x33\x2b\x96\xed\x00\x61\x25\x09\x1b\xf4\x14\x60\xed\x24\xcc\x3a\x84\x6f\xf1\x12\x52\xe0\x1f\xe8\xc5\xe8\x19\x22\xe0\xf3\xa5\x5d\x12\x5a\xa7\x10\xd2\xc4\x2f\xf9\x13\x4a\x9b\x7b\x81\xfc\x95\xdc\x19\xf8\x05\x37\xa0\x7f\x1b\xd4\xca\x9f\xde\xaa\x82\xd5\x0e\x6c\xe5\x02\x66\x4b\x01\x8f\x9f\x41\x21\x0c\x6c\x75\x95\x18\x16\xa9\x38\xbf\xf3\xfe\xdc\x86\x4b\xc0\xeb\x6c\xd4\x55\x64\x26\x46\xf8\x81\x11\x3f\xee\xd0\xc2\xee\x45\x2f\x45\xe3\xb0\xbf\x20\x53\xd9\xcb\x0f\x21\x91\x5f\xbc\x7e\xbf\x15\xaa\x8a\x7e\xae\x02\x56\x6f\x8c\xa7\x10\x85\xf7\x7a\x43\x40\x5e\xef\x94\x36\x7f\x82\x2a\x4c\x95\x1a\xb5\x86\xc9\x62\xf7\x37\x90\x8f\x13\xe1\x60\x4d\x5e\x88\x70\xfe\x6d\x11\xce\xff\x3b\x8a\x70\x5c\x67\x6e\x88\x70\x48\x27\xfd\x3f\x11\xbe\x63\x3c\x85\x38\x84\xba\xeb\xe1\xb8\x63\x3e\x02\x89\xf5\xa9\xc5\xee\x29\xbf\x7c\x06\xaf\x04\xf8\xeb\x5f\xa1\x5c\xfe\xed\x33\x78\x7d\x09\xcd\xfd\x0d\x3d\xfc\x4a\x80\x47\x50\xfa\x94\x4c\x99\x24\xc2\xa4\x49\xe2\x9a\x76\xe2\x02\x71\xab\x22\xe2\xfe\x58\xe0\x2e\xe0\x1d\x54\x72\x2a\xc8\xee\xb7\xaf\x9f\x71\x2e\x23\x53\x1f\x12\x9c\xe5\xae\x2a\x5e\x86\x2d\xc6\xf9\x0b\x48\x0e\x7a\x31\xfe\x60\xe3\x0b\x24\xe0\xa1\xf0\xa0\x47\xe5\xef\x78\x52\xbd\x0d\xf9\x82\x1f\x06\xdc\x63\xd3\xce\x06\x03\x14\x82\x9f\xae\x70\x83\xc4\xbb\xac\x02\xf8\x10\x2d\xfe\x0c\x06\x92\xbd\x53\x1d\x90\xee\x36\x1f\x80\x62\xc3\x1c\xc0\x04\x40\x61\x12\x45\xf0\xc1\xa3\x7a\x7d\xc7\xdc\x1b\x3c\x80\x2f\x96\x71\xf8\x24\xc0\x87\xb1\x6f\x3e\x25\x4c\xc4\x02\x9f\x80\x00\x06\xb1\x7d\xd3\xdf\xef\xeb\x80\xef\x6a\x0b\xef\x78\x5a\x21\xf4\xd4\x9d\x37\xc0\xc5\xc8\x89\xd4\x32\x0e\x71\xa7\xe8\xe0\x4e\xff\x01\x3c\x02\x32\x0a\xd0\x90\x5c\x21\x78\x37\xf4\xeb\xdc\xf1\x8e\x01\x0f\xff\xc6\x21\x8c\x58\xe0\xfe\x3e\x48\x7a\x28\xaa\x60\xb7\x08\x0d\xa7\x89\x08\xa7\x68\x58\x48\x40\xd2\x61\x4a\x60\xb0\x57\x78\xe0\x4b\xd7\x77\xc8\xa4\xfe\x27\xc8\x64\x11\xbc\x47\xcc\xe0\x83\x07\xc7\x82\x5f\xc3\x02\x06\xc8\x42\x40\xa3\x87\x2e\x65\x81\x8d\x58\xf0\xcb\x93\xae\x5c\x83\xb4\xe5\x9e\x0e\x1e\x80\x61\x61\xdf\x08\x00\xfc\xef\x49\xf7\x7b\x77\x18\x50\x19\x74\x4b\x9c\x0d\x91\x1e\x55\x9a\x57\x64\xb3\x88\x2c\x42\x7b\x92\x44\x97\xb2\xff\x0d\x24\x88\x3f\xc7\xd4\x42\x6b\xaa\xe9\x69\x88\x6b\x92\x2f\xe0\x13\x20\xc1\x27\x40\xc0\x7f\x3a\x48\x77\x0c\xcb\x59\x01\x4a\x93\x2c\x45\xe0\xf5\x30\x4c\x39\x4c\x71\xc2\xdb\x0e\x4c\xd0\xe6\xc7\xbb\xd9\xe8\x6a\x11\x38\x06\x18\x0f\xf3\xae\xc6\x05\x3b\x13\x25\xe2\x16\x25\xdd\x70\xa4\x40\x3f\xc1\xce\x06\xf4\xdc\x22\xad\x26\x41\xc2\x87\x3e\x49\x70\x0d\x7b\x9c\xed\x09\x14\x72\x01\xf3\x2d\x43\x80\x19\x44\x2e\x79\x2f\x80\x1c\xd0\xfd\x6f\xf9\x3d\xaf\xa8\xae\xe8\x3d\xb9\xab\x0f\xb9\xe3\x48\xe2\x07\x45\x7f\x0a\x1a\xf4\xc7\xab\x00\xbb\xda\x31\xbc\xda\x4f\x28\x81\x6f\x82\x2c\xfe\xfa\xfd\x4a\xe4\xff\xbe\xe5\x7e\x4b\x81\x91\xef\xd1\x8b\x5f\x7e\x25\xc9\xbb\x55\x63\xf6\x7d\x94\xb3\xef\xa0\x5c\x7c\x1f\xcf\xd9\x4f\xe4\x27\xe2\xd3\xfd\x4a\xbd\x90\x7b\x17\xfd\x42\x40\xf9\x2a\x5b\x2c\x7e\x48\xf7\x82\x16\x91\x6f\xb2\x63\x00\x51\x12\x14\x11\x26\x42\x80\xc8\xae\x8e\x01\x56\xee\xdf\xf0\x69\xc8\x40\x5a\x08\xfb\x54\x22\x60\x13\x48\x6d\x67\xbb\x45\x4f\x66\xd8\x28\x18\xc3\x78\x78\xe4\x61\xe6\xfb\xa5\xf9\x8b\x39\xec\x73\xd6\x91\xf6\x92\x75\xd5\x4c\xd8\xb5\xac\xee\x7e\xa7\x20\x57\xbd\xa8\x63\x22\x34\x45\xbc\xe8\x64\xbc\x25\x84\xfd\xca\x28\x98\xc9\x20\x9e\x38\x7a\xd5\x80\x09\xb5\x23\x41\xb5\xb2\xb2\x97\xf4\x27\x3c\x24\x7e\xaa\x56\x7c\xfb\xfa\x84\x77\x21\xc5\xc6\x29\x0d\xbe\xc7\x8d\xe5\x17\xf3\xb6\x1f\x8b\xb1\x74\x7c\xec\x5c\xec\x07\x08\x1f\x2a\x87\x49\x2e\x42\x3f\x99\xdf\x03\xfb\x67\x1b\x4b\x67\x90\x00\xfd\x37\x40\x10\xea\x28\xdd\x02\x7a\xa8\x83\xc9\xdf\xda\x77\x27\xf2\xbd\x62\xf2\x3f\x93\x7a\x7e\xa1\x09\x13\xcb\x45\x0d\xd4\xeb\x1c\x10\x08\x49\xb4\xf5\xfd\x1c\x7e\xfd\xcb\xed\xa6\x5b\x06\x2f\x82\x16\x53\xb1\x61\x73\xad\xfb\x5a\x03\x00\xe1\x2a\x2c\xa4\x48\x18\x3d\x6f\x83\xbd\x62\x39\x3b\x5e\x45\x14\x8d\xbd\x64\xa9\xfc\x09\x01\xa5\xfc\x1c\x81\x50\x76\x97\x00\xaf\x9f\x60\x52\x7c\xde\x8a\xcb\xd8\xe9\x76\x60\x7b\xdf\xc8\x61\x2c\x0f\xe7\xa4\x4a\x78\xd0\x46\xae\x45\x33\x1e\x16\x3c\xc4\xe9\x2b\xca\x60\x7b\x1f\x28\xc5\x2d\x17\x7e\xef\x81\x23\xe4\xc6\x9f\xe4\x89\xff\x5d\x28\x07\x89\x44\xe0\xed\x7e\x3a\xf4\xa8\x7e\xb7\x57\xff\x9f\xc1\x47\xbc\x43\xc7\x55\xf4\xc8\x1f\x86\x3c\xf1\xdd\x83\x92\xff\x17\xf3\xf2\xe6\xc0\x24\x6d\xde\xdf\x87\x0a\xf2\xdd\x63\x92\xb4\xd3\xff\x09\x6c\x5c\x0f\x47\x2c\x6a\x8b\x17\x7c\x1d\x5e\xd9\x28\xf8\x9a\xb7\xe4\x44\x57\x1e\x78\xaf\x1e\xe0\x4e\x9b\x96\xe1\x60\xe8\xfc\xe0\xed\x1e\xa9\x87\xf7\xe6\x9f\x44\xca\xf4\x3e\x6d\x84\x7c\xfa\xdd\xfd\x7c\x20\xc9\xf0\x94\x04\xb7\xba\x72\x92\x5b\x88\xf5\xdd\xe8\x38\x3e\xae\x00\x8a\x90\x1a\x1a\xa6\x87\x40\x48\x7c\x03\xbf\x5e\x20\x18\x12\xdf\x9e\x00\x49\x3c\x80\x0f\x24\xf8\x18\xbc\xa6\x07\xb5\xcb\xe8\xd1\x01\x13\x20\xaf\x09\x90\x1e\x01\x10\xa1\x70\x35\xdd\xe3\x21\x1a\x01\xd4\xfb\xb4\xcf\xdb\x53\xa4\xa1\x37\x63\x4c\xfd\x48\x4a\x02\xbf\x33\xc7\xc3\x60\x5f\xf9\xad\x40\x80\xbe\xef\xb8\xcc\xf9\xd5\xba\x9d\x6e\x1f\x01\x92\x85\x5c\x4a\x14\x1d\x0c\x24\xc1\xe1\x75\x79\xa7\xf2\x16\x4e\x6d\x5a\x61\x68\x9a\x1a\x50\x0f\xef\x66\xe1\x3f\x6f\xb3\x00\x41\xc6\xf1\x8a\x48\xbb\x76\xcc\x33\x37\xe3\x1e\x62\xa9\xd9\x3f\x04\x33\x0e\x1b\xfa\xe3\x06\xd7\xbe\xd9\x33\x04\xe8\x0a\x34\x5e\x57\x4c\xdf\xcf\x1f\x3e\x6c\x89\x8e\x5b\xed\xc9\x8b\x7d\x76\xff\x97\x8e\x8e\xa4\xdb\x8a\xa1\xdb\xdf\xb1\x88\x9d\x3b\x5c\xb9\xd0\x43\xe4\x1d\x33\x3d\x70\x67\xfa\xfd\x3c\xfc\xe7\x6d\x26\xb8\xfb\x63\x7c\xbe\xe3\x9a\xe8\xbe\xf6\x5d\x4d\xac\xe8\xf2\x87\x85\x3b\xee\x7b\xf7\xdc\x8c\xb5\xe7\xa4\x3c\x8e\xd8\x56\xef\x6a\x1c\xdc\x33\x03\x68\x79\x5f\x89\x7a\x3c\xc5\xdd\x8f\x02\xdd\xbb\x9d\xd5\x78\x4b\x56\xf4\xeb\xbe\xb6\x7f\xa8\xaf\xbb\xdb\x6a\xc5\x30\x4f\x09\x6a\x64\x40\x3d\xe1\xcb\x21\x04\xb2\xff\x3d\x92\xb6\xbf\x23\x41\x33\xbc\x98\xac\x2a\xaa\xbb\x65\x62\x4e\xb0\x19\xcd\x54\x07\xdf\xb3\x4f\x7e\x4d\x1d\xee\x98\x63\x74\x1c\xf3\x33\x1b\xf7\x82\xab\x31\xb8\xb4\x98\xfe\xb0\x47\x0d\x7e\xe0\x74\x76\xbc\x43\xc8\xa1\xc1\xe0\x2f\x74\x4f\xc7\x33\xae\x82\xc1\x27\x54\x8a\x66\xbe\x63\x08\x7e\xbe\xdd\x78\x55\x81\xe8\xf7\x31\x13\x5f\x1d\x50\x0f\x4f\xd1\x8c\x15\xef\x9f\xf8\xdb\x0c\xec\x9d\xdf\x1c\x45\x95\x20\x2a\x55\x9a\x0f\x6e\x4f\x3a\x54\x77\xc5\x0b\x1b\xd8\xf4\x48\xef\x48\x4e\x9d\x17\x36\x70\x97\x01\x69\x5b\x92\xc0\xca\x71\x4c\xfb\x63\x26\xa3\x4b\x8e\x5b\xee\xa0\x6c\x94\x67\xc1\xd0\x32\xee\x2f\x99\x71\x88\xe8\xd2\x53\x5e\x8a\xbe\x34\x42\xc8\xe5\xd1\xf3\xe2\x92\xb7\x90\x72\x87\xc7\x40\x90\x86\x41\xaf\x80\x07\xb2\x7a\x32\x57\x90\x09\x14\xdd\x00\xff\x4e\xd0\x00\xe7\x1f\x88\xcd\xf4\x43\x33\x43\x6e\x73\x37\x8e\x7e\x57\x9e\x6d\x88\x00\xf4\x6d\x09\x33\x9f\xc6\x99\x6e\x91\x5c\xa3\x1c\xf3\xe8\x1b\x84\xac\xe8\x39\xbf\xbd\xc9\xde\xa5\x23\x64\xac\x91\x1d\x07\xa2\xed\xce\x43\x05\x41\x8e\x5d\xf6\x02\xa3\x2d\xbd\x15\x43\x9e\xc9\xc0\xd4\xed\xb8\x2b\xb1\x2e\xf6\x37\x1a\xf5\x0d\xc4\xeb\x40\x7c\xa4\x72\xbc\x4b\x68\x74\x63\x0d\xd3\xb2\xbb\x3a\xa7\x35\xf8\x81\xfb\x8e\xaf\x58\x16\x6e\x47\x3a\xc6\x2e\x3d\xc6\x5b\x7a\xc4\x0f\x2c\xbd\xdb\x1c\x60\xc5\xe3\x0d\x00\xb3\x87\x41\xdf\x50\xdf\xb4\x98\x1f\xea\xfd\x3f\xee\x56\xbc\x5e\xe3\xc1\x5b\x0e\xbc\x0e\x6b\xf5\x7e\xa8\xfd\x7f\xde\x6c\x1f\x23\x06\xa0\x7b\x78\xd4\x69\x96\xfe\x61\x7d\xf7\xf5\x2b\xce\xb4\xf0\xf6\xdb\x17\x0c\xce\xef\x01\x3b\xd2\x7c\xe5\x0f\x69\xfe\x7f\x12\x9a\x77\xb5\x42\x77\x34\xa0\x19\x50\x65\x5b\xcc\x47\x54\x22\xb3\xb6\x33\xf0\x97\xdf\xf6\xce\x6f\xfe\x81\xf5\x37\x8d\x37\x9f\xd7\x36\xac\xe3\xda\x05\x16\x4a\xfc\x20\x3c\x80\x2c\x41\x66\xe1\x4b\x12\xbd\xb2\x0c\x4d\xd9\x69\xa0\xcb\x01\x6a\xe7\xac\x0c\xcb\x7e\x86\xb9\xcb\x60\x59\x1b\xde\xad\x5a\x7b\x38\x41\x99\x0c\x18\xd9\x12\x32\x18\x15\x1b\xe0\xb4\x2d\x02\xbe\x62\x96\x8d\xbd\x64\xe9\x48\xe3\xf3\xa0\xcc\x55\x3e\xa0\xdb\x33\x55\x11\x24\xdd\x96\x10\xfa\x9e\xc0\xeb\x60\x21\x41\x52\x4b\xe8\x0f\x82\x21\x70\x5b\x2c\xcd\x74\x38\x06\x2c\x15\xe8\x7c\xf7\x55\x4f\xed\x6c\x84\x9e\x2c\x38\x29\x38\xe4\xaa\xb2\x78\xb6\x1c\x51\x32\xd3\x29\x18\x46\x8b\xb3\x07\x5c\xbb\xe8\x6b\xbc\x09\x8c\xc5\x5a\x12\x42\x29\x6a\xda\xbc\x69\xba\xea\x00\x1e\x00\x30\x8e\xa5\x88\x83\xcb\x21\x44\x88\x3f\x62\x4f\x68\xd7\x12\x25\x53\xd2\x61\x74\xa6\xe7\x87\x0f\xdf\xc5\xd0\xd5\xfd\x30\x9a\x89\x2a\x68\xa6\x36\x70\x5b\x47\x69\xde\xf4\x88\xa4\xfb\x18\xba\x41\xe1\xbf\x43\x3d\x0e\xfe\x81\xe0\x2c\x7f\x07\xa2\x64\x0b\x96\x62\xa2\x50\x35\xb0\xda\x69\xbc\x0e\x5f\xea\xa0\x66\x0b\x7f\xe9\x8d\xbf\x3b\xb7\x11\x4a\x5d\xd8\xeb\xdf\x81\xac\xba\x63\xe0\x4e\x6e\xad\xe5\x96\x0a\xba\xae\xe8\xe6\x0e\x06\xf8\x19\x3b\xc7\xfd\x2d\x40\x8c\xbb\x96\xc2\x50\xf6\xb3\xf0\x56\x18\xe2\xe4\x09\xb5\xe4\xe1\x78\xc2\x99\x00\xae\x32\x5a\x19\x96\x13\x61\x19\x3d\x70\x28\x76\x74\xe0\x9e\x30\x08\x23\xfc\x5a\x94\x16\x3b\x59\xf6\x12\x50\x40\x5e\xbc\xdc\xe8\x21\x42\x9f\xc3\x64\x7d\x10\x69\xaf\x61\xb7\xcb\x7e\x18\x81\x63\x00\x01\x46\x75\x19\x5e\x02\x22\x34\x66\xae\xac\x2a\xba\xed\xf0\xaa\x2a\x41\xf9\x43\x69\x68\x22\x4d\xc2\x34\x33\xa1\x48\x86\x4c\xc6\x7b\x2a\xd9\x48\x92\x09\x78\x1d\xec\x74\xfc\xf0\x2e\x02\x1f\x00\xd5\xc3\x46\xc0\x13\xe3\x03\xe0\xf3\xaa\x6a\x1c\x5c\x73\x08\x86\x56\xf2\xba\x04\xf3\x24\xd9\x92\x97\x3d\x01\xd5\xc2\x09\xb5\x55\xf8\xc0\x8a\x3c\x50\x21\x2f\x70\x8c\xcb\xbc\x2d\xfd\x06\x3e\xa3\x01\x0f\x98\xea\x18\x07\x60\x9f\x74\x01\x12\x80\x4f\x37\x3e\x01\xd7\x04\xd2\x25\x49\xc4\x1e\xbb\xe8\xf0\x72\xd2\x85\xdf\x62\x8e\x2b\xac\x57\x73\x25\xa9\xa6\x64\xc1\xf9\xb0\x24\xb7\xb4\x2b\x39\x51\xba\x81\x00\x8f\xdc\x85\xe2\xe7\x76\xc2\x72\x66\xe3\x50\x96\x6b\x39\x47\xd2\xf9\xeb\xef\xc0\x30\x9d\xdf\x90\x88\x52\xa2\x08\x77\x0a\x5e\x0d\xaa\xbb\xc2\x89\xee\xf8\xe1\xd2\x33\xcc\x30\x68\x19\x74\xd3\x72\xf7\x5a\x5c\xfc\x4d\xa9\x7d\x36\x2d\xc3\x31\x9c\x93\x29\xa1\x8e\x87\xa5\xd8\xe7\x21\x00\xa1\x65\x97\x18\xf7\x13\xad\x5e\xb8\x92\x71\x1a\x60\x34\x59\x10\x38\x08\x0e\xad\x3b\x6d\xcf\x9e\xd5\xf6\xd3\xe5\x2c\xfd\xf5\xaf\xe0\xa7\x4b\xfa\x31\x72\x05\x20\x5e\x24\xdc\x3f\x02\x0a\xbf\xc5\x7e\x61\x49\xbf\x25\x46\x62\x40\xf7\x5f\xc4\x9c\x13\x59\xf1\xcf\x00\x67\x38\xb6\x24\xf4\x66\x07\x78\x1f\x32\x15\x95\xc0\xbd\x13\x2c\x09\xca\x0b\xa6\xa6\x4b\x07\xac\x3f\xe1\xf3\xa6\xa1\x8a\x38\x43\x83\x25\x4b\x22\x94\x6d\x80\xc4\xfa\xc0\x9f\x90\x91\xad\x43\xec\x25\x3d\x22\xd5\xfe\xf0\x04\x23\x11\x1a\x07\xd4\x57\xf0\x19\x20\xa1\x78\xe6\x6d\x5b\x91\xf5\xf4\x3f\x7e\x7f\xba\x94\xf9\xa7\x40\x5c\xd0\xfd\x9e\x6b\x60\xc6\x51\xba\xa8\x17\x42\xc9\x95\x55\x57\xeb\xd8\x41\x6b\x1b\xe9\x84\xbd\xc5\x50\xed\x87\x67\x8d\x37\xd3\xe9\x8d\x74\x7a\x00\x9f\x7f\xf1\x8c\xe3\xd4\xd7\xaf\x5f\xbf\x1e\x53\xe0\x11\xc3\x36\x9c\x4d\x5e\x74\xcb\xc0\xbc\x90\xb4\x21\x4a\x94\x93\x26\x1e\x9e\x1d\x03\x3f\x2b\x93\xc5\x87\x30\xcc\x1d\x9c\x35\x77\xb6\xa5\x03\x18\x48\x32\x73\x34\xd3\x29\xf8\xea\x8f\xd9\xc1\x70\xf4\x28\x25\xc7\xb7\xd4\x13\x48\xc9\x7e\x42\x9c\x40\x56\xd2\xb6\x63\xb9\x4c\xb9\x5b\xe1\xb3\x25\x99\x2a\x2f\x48\xe9\x80\xfe\x13\x4a\x31\xfc\xf9\x97\xf0\x60\x7c\x11\x56\x31\x19\x8b\x50\x00\x9e\xbb\xea\x3c\xa5\xe3\x2b\x1c\x7f\xed\xa5\x45\xc5\x16\x78\x84\xfa\x6c\xed\x74\x47\xd1\x24\xb0\x33\x45\xde\x91\xc2\x17\x63\x9e\x47\x0f\x02\x74\xe1\xf5\x13\xd4\xb3\x48\xb9\x49\x4e\x77\x2f\x59\x96\x22\x4a\x76\x80\x28\x8d\x88\xc6\xd9\x78\xf1\xab\x15\x49\xd1\xf5\x05\x8c\x97\xb3\x1b\xac\xf8\xbd\xa4\xa7\x1c\xb0\x90\x24\xfd\x6d\xd9\x86\x2b\x3a\x05\xdf\xbf\x57\x18\xcb\x1a\x52\xf7\xc5\x33\x2c\x44\x3f\x7d\xbe\x12\xa3\xb0\xd0\x26\x69\xcf\xb6\xbb\x32\xbc\xe6\xbd\x40\x3e\xa8\xd4\x43\x9b\xf4\x57\x1c\x58\x8a\xb7\x60\x77\x1e\x5c\xed\x0c\xcd\x04\x71\x87\xb2\xf6\xa1\x15\x2c\x1d\x15\x1b\x9e\x5d\xfc\x69\xe1\x6d\xa0\x40\x2f\x3b\xbc\x06\x0f\x8a\xb3\xf2\x5f\x3f\xfd\xe2\x9e\x5e\x04\xe9\x03\xc4\x39\xe6\x6d\xbc\xb2\x51\x85\x87\x67\x00\xb8\xdd\x02\xe5\x94\x70\x82\x29\x73\xb9\x84\xc4\xe0\x74\x39\x2b\xcb\x38\x00\xde\x5d\xda\xa6\x25\x41\x08\x66\xa8\x8e\xdd\x19\x75\x67\xd7\x6d\xc9\x4e\xd2\xed\x61\xcb\x23\x98\x0d\x4f\xa3\x43\x12\x57\x9d\xbb\x5b\x83\x87\x25\x2b\x24\x1a\x61\x25\x1b\x9a\x25\x5f\x61\x5c\x2e\x02\x18\x6d\xc7\x03\xc1\x30\x4f\x61\x43\xca\xdf\x4c\x50\xb7\x70\x54\xde\x3f\x62\xb9\xfa\x1d\x50\x70\x55\xc7\x9b\x4a\xd0\xb4\x88\x43\x43\x4f\xe8\x98\xa0\x1a\x28\x74\xe6\x42\xd8\x83\x64\xb4\x89\x6d\xa5\x2f\xcd\xa3\x2b\xed\x19\xc0\x80\xdf\x27\xe7\xae\xb4\x86\x47\x3a\xa2\x25\x21\x2d\x3c\x32\xc8\x0a\xf9\xfd\x12\x46\x40\x85\xa7\x03\x21\x6c\x8b\xbf\x3d\xc3\x76\xd2\x3d\xab\x5b\xf3\xb7\x08\x72\x41\x24\x1b\x2f\x76\xfa\x75\x7f\xff\x37\x30\xd1\x5c\x66\x3d\x0b\x2d\xe0\x3e\x26\x09\x9f\xb1\x01\x3b\x13\xf0\xfe\xda\x82\xad\xc8\x8a\xed\x48\x16\xde\x5b\xaf\x96\x16\x87\x8f\x07\x30\x4d\x9e\xbb\xb2\xe0\x2f\xf8\xd2\x1e\x2f\x2f\xd5\x30\x36\x3b\xef\x30\x70\x43\x76\x87\xa8\x1a\x74\xb5\x53\x9c\x94\x8d\x94\x68\xc0\xc5\xdb\xd3\x15\x12\x5c\x94\x10\x39\x3c\x7f\x2e\x67\xa1\xfb\xb1\x60\x24\x9e\x57\xbc\xdd\x3d\xe8\x3d\xcb\x30\x25\xcb\x39\xa1\x82\x91\x4b\xb2\xd0\xb0\x7d\x71\xbf\xfd\x76\xb1\xd7\xe3\x52\x7e\x9e\xe5\x98\x95\x8d\x3a\x00\x78\xb8\x5e\x22\x43\x49\xe9\xa7\xe4\x11\x87\xb0\x61\x50\x0d\xc0\x81\x8d\xdf\xb4\xde\x35\x23\xd1\x43\x59\xc2\x34\x78\x7a\x12\xcf\xa0\xc7\xd3\xdd\xa3\xcf\x8b\x62\xcc\xe8\x3f\x81\x40\x1b\x46\xa7\x00\x7c\xfe\xfc\xf9\x42\x58\xc3\x7b\x9b\xb7\xdc\x12\xec\xb1\xa0\xce\xa7\xe8\x0a\x45\x93\xe5\xe7\x7b\x8e\x33\x39\xa0\x65\x0a\x55\x03\xaf\x8b\x10\x67\x43\x71\x6c\x3c\xf2\x97\x96\x48\x70\xc2\xb8\x67\x0c\x92\xec\x84\x8b\x9e\xbb\xea\xee\xb6\x1a\x89\x1b\x8d\xbb\x94\xcf\x3b\x8c\x01\x38\x0c\xc9\xbb\x27\x1c\x13\x0a\xa2\xbc\x19\xcb\x84\xed\x05\x59\xe6\x37\x94\xea\x1d\xfb\xa6\xdb\xd6\x9f\x2d\x28\x5f\xc3\x81\xe2\x70\x91\x28\x70\xe7\xb0\x23\xde\xb8\xa1\x8c\xeb\x38\xc7\x3a\x54\x0f\x9f\x82\x9b\xec\xb7\xb2\xac\xc7\x8b\x22\xda\x55\x43\x31\xdf\x97\xc5\xa2\xbb\x9c\xfb\x05\xfa\xdc\xab\xf1\x7b\x48\xf7\xe0\xda\x68\xc5\xe1\x65\x96\xbc\x27\xa7\xa0\xb7\xa7\x6b\xe8\xfb\x0b\xd2\xa3\x9d\xe8\x6c\x1a\xc0\x29\xe2\xb9\x0f\x52\x2e\xbd\x67\x2f\x0d\x0b\x26\xf8\x0c\xfe\x11\x6d\x06\xe1\x73\xd5\x2e\xc1\xc6\x02\x8d\xb5\x72\x1c\xf3\x63\x26\xb3\x77\x48\x82\x78\xd6\x25\x27\x23\x1a\x82\x9d\xd9\x3b\xd9\x2c\xf1\xc1\xd2\x32\x50\x78\xb3\x1f\xf2\xcf\x2b\x47\x53\xef\xe6\xc3\xcb\xc5\x9a\x3c\x60\x68\x90\x53\x18\x05\x2d\xf5\x14\xcc\x6d\xea\xeb\xd7\x63\x91\x48\x7d\x4c\x7d\xfd\xba\xcb\x16\x84\x62\xea\x09\x6e\xd8\xff\x0d\x3e\xfc\x02\x44\x85\xd7\x0c\x5d\x8c\x14\x25\xbd\xa2\xaf\x59\x5c\x94\x77\x8b\xca\x96\x74\xfa\xb0\x30\x8e\x91\xb2\x59\x5c\x36\x4f\xbc\xe2\xb2\x0b\xb7\xec\x2a\xe3\x44\x8a\xe5\xfc\x62\x02\x2e\x26\xb8\xc5\x96\x99\x65\xa4\x58\xde\x2f\x26\xe2\x62\xa2\x5b\x4c\xc8\x58\x91\x62\x05\xbf\x18\x8f\x8b\x49\x6e\x31\xf5\x82\x5a\x11\x15\x23\x88\x05\x81\x8b\x2d\x61\x97\x25\xd9\x92\xa4\x48\xc9\x17\xbf\x24\x89\x4b\xca\x6e\xc9\xc7\xcc\x87\x48\xb1\x92\xd7\x6e\x36\x8f\x8b\xad\xdc\x62\x7a\x46\x8d\x14\x7b\xf5\xd9\x5b\xe0\x62\x8a\x5b\x6c\x7f\x31\x26\xbc\x37\xcc\x64\x09\x17\x5b\xbb\xc5\x50\x88\xf1\x07\x78\x6d\x1c\x29\xbf\xf0\xcb\x7b\xdd\xd9\xb8\xe5\x1d\xc3\x8c\x29\x2c\x78\x85\xfd\x01\x57\xbd\xc2\xaa\xb4\x8c\x96\x15\x7d\xc2\x5e\xb7\xb4\x10\x23\x57\xc5\x25\xaf\x78\xce\x23\xad\xc3\xd1\x57\x74\xe9\x03\x8c\xd2\x8e\x94\x5e\xe2\xd2\xb9\x85\x37\x57\x86\x5b\xda\x16\x78\x9d\x0c\x17\x7c\x21\xfc\x82\xde\xa8\x99\x5e\xc1\x5c\xa4\xa0\x2f\x9e\x84\x37\x0e\x5b\xaf\x60\x21\x52\x30\xeb\x53\xf4\x18\xb5\xbc\x82\x2f\x91\x82\x39\xbf\xa0\x27\x76\xb6\x57\xf0\x35\x52\x30\xef\x8f\x94\x47\xd1\x81\x5d\x97\x96\xce\x07\x27\x2a\x53\x2f\x9e\x90\x16\x7c\x61\xd9\xb9\x65\xe1\x54\x5d\x15\x2e\xfa\x63\xea\x15\xde\x87\xa6\xe0\xb2\xf4\x8b\x4f\xda\x63\xe3\xe0\x4d\xee\x65\xd1\x92\x3f\x58\xde\x5a\x3e\x42\x59\xc4\x10\x69\x1f\x70\x1a\xbb\xa0\x82\x27\xbc\xd9\xa2\xc7\xc9\x09\x75\xd1\xb6\x3f\x48\xdb\x1d\x1f\x11\xf5\x17\xde\x2f\x5d\xc0\xa5\xcf\x58\x55\xf0\x8e\x64\xc5\x54\xc0\x42\x4c\xe4\x04\x6f\xf2\xfe\xe1\x56\x30\x95\x48\x29\xc1\x27\xeb\x95\xfa\x27\x5c\x68\x86\x13\x43\x52\xf4\x16\x2f\x9f\xc3\x85\x7f\x87\x63\x67\x29\x8e\x62\xaf\x3e\x98\xc6\x2e\xaa\xdf\x5e\x24\x7f\xb5\xbf\xe0\x0a\xff\x03\xf5\x82\x81\xe5\xfc\xf7\xe8\x93\x48\x19\x11\xfa\x7e\x55\x5f\x78\xaf\xaa\xa7\xee\x53\xf5\xb8\x87\x97\xaa\x3e\x9b\x4b\x7d\x04\x17\x23\xf2\x1f\x09\x23\x72\xd1\xd5\x11\x07\x28\x8e\x66\x59\x74\xb2\xd1\x0d\xcf\xf2\xba\x7f\xbf\xf4\x92\xc1\xdc\x64\x7e\x67\xa7\x9e\x50\xf4\x70\xf4\x25\x70\xe7\x08\x3f\x30\xd4\xc5\xf7\x0e\x75\xfe\x3e\x6e\x45\x97\xad\xef\x1d\xe8\x70\x9d\x3c\xe1\xd7\x59\x48\xb8\xce\xdf\xdd\x3a\xb9\x4c\x3e\x5a\xb2\xb0\xf0\x4a\x92\x39\x6f\xed\x7e\x71\x4b\xa6\x94\x75\x0a\xa8\x8a\x0c\xfd\xce\x40\x1a\x05\x90\xc8\x06\xbc\x29\x74\x56\x00\xd2\x5e\x2e\x7f\x7d\x88\x10\x13\x82\x66\x3d\x1d\xf7\xf5\xab\x4b\x8d\xcc\x64\x23\x05\x45\xbf\xe0\x8b\xa7\x5c\xbe\x85\x35\x06\x58\xf0\x56\x94\xd1\x97\x45\x30\x0c\xa5\xf0\xa2\x76\x0e\x86\xbb\xa8\xec\xcb\xa5\x8d\x0b\x17\x8b\xe1\xb5\xbd\xbc\x5c\xd3\x1e\xbb\x42\x78\x51\x93\xee\x28\x45\x97\xb2\x57\x2e\x1f\x5e\xcb\xbc\xb0\xf3\xd0\x38\x2e\x44\xbc\xaa\xe8\xfa\x0f\xad\xe6\x97\xf7\x8a\x18\x7d\x89\x5c\x97\x5c\xb4\x70\x9f\x34\x2e\x51\x1f\x2e\xe5\x31\x90\x18\x42\xc8\x47\x24\x86\x4a\x81\x9d\xa6\xf2\x3b\x27\x41\x26\xc4\x62\x44\x26\x52\xdd\xd8\xf2\xc1\xa4\x08\x85\xb0\x68\xb8\xe4\x2d\x9c\x72\xd7\x2f\x1c\xcc\x8c\x28\x84\x67\x26\xb5\x0b\x68\x5f\x1a\xa8\xb8\x82\xf4\x1a\xb6\x50\x53\x52\xca\x9b\xce\x04\xa9\x93\xf2\x61\xa9\x4b\xf1\x71\xcc\x87\xe4\x6e\x19\x91\xbb\x94\x11\x5b\x3c\xe8\xab\x54\x08\x0b\xa0\x4b\xfd\xb2\xaf\x21\x29\x5c\x26\xf6\x35\x4e\x14\x2d\x49\xff\x11\x65\x57\x7a\xaf\x24\x0e\xee\x14\x2f\xc8\xd7\x1f\xac\xed\x24\x22\xac\xed\xdc\x61\x94\x2d\x7e\x2f\x25\xe9\xbc\xc0\x66\xff\x82\xac\xa6\x0b\xf1\x0a\xa6\x53\x7a\x89\xca\xae\x90\x02\x82\x24\x2a\xaa\xca\x27\x08\x2f\xff\x12\x16\x5e\x1b\xc7\x21\xd8\x27\x6d\x61\xa8\x20\x2d\x1a\xbb\x85\x2a\x01\xfb\x21\x59\xdc\x5e\x23\xe2\x16\x88\x67\xbc\xb4\xbd\x46\xa4\x6d\xe7\xf7\x3b\x5e\xd8\x4a\x11\x61\x93\xe2\x4a\x4b\xd7\xea\x16\x4a\xdb\x6d\x49\xa3\x79\x9d\x17\x15\x5e\xff\x7e\x91\x7b\x7d\xaf\xc8\xf5\xdf\x23\x72\x40\xc0\x0c\x5e\xca\xde\x0f\xc8\x91\x14\xdd\x3b\xf9\x14\x10\x14\x4b\xd8\x69\x4b\x55\x3a\xfe\x51\x12\x25\xf1\x11\x75\x28\x25\xb6\x11\x4c\x9d\xe4\x6d\xfe\xff\x85\xb6\xf4\x68\x95\x04\xc5\xb8\xcc\x47\x14\xa3\x91\x5c\xe9\xdf\x52\x5c\x97\x8b\x4b\xe5\x78\x39\x4c\x17\x62\x5b\x93\x2c\xed\x47\xa4\x95\x24\xde\x2b\xae\xcd\x3b\x2f\x59\x20\x63\x6f\x48\xa9\xaf\x63\xfe\xfe\x0e\x1d\xf3\xaf\xdb\xbf\xc5\x88\x69\x97\x1a\xc5\x6f\xc9\xff\xb2\x2d\x76\x19\xb1\xf1\x2e\x77\xcd\x2b\x39\x12\x97\x61\x39\x92\xec\xb3\xe4\xc4\xab\x3d\x08\xfe\xf8\x43\x02\x44\xbe\x57\x80\x66\xf7\x09\x90\x82\x38\xfb\x83\xf7\xd8\x1f\x95\xba\x3f\x6f\xcf\xf5\x95\xd0\xb7\x37\x4c\xba\xb0\xa6\x8b\x9a\x80\xbb\x58\x2d\x1f\x96\x4f\xe2\x52\x3e\xaf\x15\x51\x48\x3c\xb3\x97\xe2\xf9\xc7\x29\x39\x29\x6a\x01\x2a\x91\xd2\x17\xf2\xd9\x31\xac\x83\x24\x2b\xbc\x9e\xa9\xf0\x3f\x76\x28\x21\xb3\xef\x15\x54\xe6\xfe\x53\x49\xf1\x3e\x99\xd6\xfd\xde\x88\x7c\xdc\xf1\x24\x24\xa8\xbe\x7a\xfb\xfb\xa5\x7a\x4b\xd2\x87\xc5\xa8\x3e\x64\x82\x13\x70\x92\x4a\x2c\x5d\xa9\x44\xdb\xb1\x8c\x8d\xf4\x87\x1e\x69\xfe\xeb\x2d\xfd\x19\x3e\xd2\x44\x77\x6e\xfe\xb6\xc2\x2d\x46\x05\x5a\x8a\xef\x70\x58\xa8\x4b\x97\x42\x7d\xdd\xdf\x7f\xc9\xb1\x86\x33\x7f\x54\x98\x73\xef\x15\xe6\xf9\x7d\x12\x6a\x9b\xb1\x82\xf9\xbf\xac\x75\x79\x32\x22\xdb\x3f\xa5\x00\x44\x5c\x75\x24\x31\x49\xb4\xc9\xa8\x68\x77\x52\xc0\x51\x54\x31\x49\xb2\x17\xcb\x88\x64\xff\x1a\xa6\x9f\x20\x7d\x8b\x88\x3a\xbd\x12\x8c\x90\xd0\x91\x11\xa1\xd3\x63\x38\x09\xcb\xdc\x4b\x44\xe6\x2e\x77\x8d\x4b\x39\x3a\x48\xe2\x8f\xc9\xd1\xbb\xdf\xd8\x5e\xee\x57\x8a\xf5\x3b\x45\x0e\x75\xe2\x2d\x5d\xf8\x1a\xd1\x85\x4c\xec\xd6\xf8\xef\x7e\xb5\x73\xb7\x1e\xfc\xff\xc9\xd5\x0e\x77\x50\x6c\xfb\x07\x24\xf7\xdd\x4f\x06\x9f\xef\x15\x47\xc5\xb6\xdf\xd0\x7f\xbe\xdd\xf5\x1f\x6f\xd8\x5d\x3f\x72\x1a\x7f\x8d\x08\x6f\xdc\x61\xf4\xdf\xea\x20\x1e\xaa\xb2\xbc\x36\x08\x7f\xbb\x30\x08\xff\xd0\x63\xfb\xbf\xd3\x89\xeb\xce\x93\x3b\x8c\x2d\x92\x50\x3c\xd3\x33\x2f\x8a\xe9\x14\x8a\xa9\xe2\x77\xa2\x62\x64\x16\x92\xaa\xa6\x9e\x40\x0a\xfd\x65\xc8\xf2\xa7\x05\x6f\x4b\xc5\x7c\xea\xe9\xab\x9e\x1a\x66\x45\x7d\x74\xa0\x68\xca\xff\xa9\xac\xb6\x93\x42\x13\xfe\xda\xae\xee\x99\xf5\xac\x5c\x97\xab\xd9\x45\xae\xa1\xf0\xd3\x36\x2a\x32\xa3\x5f\xfc\xe2\x75\xa1\x8c\x7e\xa1\xf3\x29\xf0\xf8\x55\x4f\x51\xa3\x57\x7d\x4e\xb6\xa9\xf0\x4f\x9e\x57\x77\x9c\xcc\xc0\xdf\x25\x9b\xcd\x31\x74\x2e\x73\xf5\x53\xda\x54\x44\xed\xf5\x34\xd3\xd4\x73\xbd\x4f\x51\x54\x75\x65\x22\x8a\x42\x4d\xde\x0d\x73\x0d\x9d\xad\x1d\xcd\x99\x3a\xdf\x0b\x5a\xc3\x14\x4e\xe5\x06\x5b\x61\x0f\xed\xca\xe6\xd0\x39\x53\x05\xd4\x0e\x53\xf5\x28\x34\x47\x8d\xca\x58\x66\x50\xc7\x2a\xd5\x36\xdb\x9e\x50\x44\xa3\x3c\xc6\x3c\x52\x54\x9f\xa2\xca\x72\x83\xde\x74\x37\xd9\x79\xa3\xc9\x4f\x46\x06\xb7\x2a\x68\x8d\x01\xcb\x71\x9a\xaa\xb6\x47\x07\x65\xae\x8c\x14\x61\x34\x9b\xe5\x0f\xc7\xe3\x6a\xb5\x5e\x57\xea\xb5\x5a\xad\xdb\x66\x2b\x83\x4d\xd5\xad\x4d\xd1\x54\x93\xd2\xba\x88\xa2\xf1\x38\x6f\xf0\x76\xbe\x30\x3f\xca\xfa\x5a\x6f\xca\xdd\x89\xda\xed\x36\x05\xb9\x9c\x37\x07\xf9\xca\xa6\x71\xd8\x8f\xb4\x59\xb6\xa8\x39\xcd\xb9\xb5\xb0\xf3\x66\xa3\x2f\x77\x26\xfd\x11\x45\x51\x2c\xd5\x67\xe4\xd5\x6a\x30\xe0\x38\xba\x56\xad\xd6\x9a\x2c\xa2\xc8\xce\x66\xb3\x99\x21\xaf\x56\xc7\xe3\xe9\x44\xd7\x74\xbd\xce\x36\x9b\x5b\x45\x96\x65\xe3\x74\xa2\xe9\xca\xb0\xd2\x32\xcd\x46\xa7\xdb\xdd\x69\x86\x91\xcf\x17\x8b\x8a\x42\x10\x0c\xdb\x6a\x2d\x86\x1c\xb7\x39\x1c\xc9\xf1\x7c\x6d\x59\x44\x6d\x3a\x3d\x9e\x11\xc5\xf3\x5a\xd7\xf5\x7a\xaf\xdb\x95\x24\x41\x28\xe5\x1b\xfd\x4d\x67\x42\xf5\x29\xd9\x1d\xb8\xbe\x3c\x9b\xcf\xcb\x65\x9a\x76\x79\xa8\x36\xd9\x26\xcf\xcf\x04\xb7\x25\xb6\xd2\xdf\x54\x47\x94\x3b\x90\x32\x1c\xe3\x72\x7d\x33\x18\x34\x10\x45\x7b\x30\x6c\xd9\x83\x73\x87\xe0\x06\xbd\x92\x72\x1c\x30\xe7\xe9\xa0\x4d\x8c\x87\x63\x86\x1c\xbb\x3f\xe2\x98\x9c\x8a\xda\x74\x2a\xea\xee\x3f\x72\xae\xb1\xe3\xc5\xae\x4e\xce\x77\xec\x78\x91\x65\xc7\xe2\x6b\x7e\xbc\xaa\xb1\x73\xf8\x0f\x51\x74\x7f\x7b\xac\xe7\x96\xaf\x39\xf7\x1f\x21\x77\x6a\xfd\x31\x45\x53\x65\xaa\x49\xad\xbb\xf3\xc5\xba\xc9\xb3\x4a\x6d\xdb\x52\xba\x3c\x5b\x59\xb1\xbc\x4d\xc9\xe5\x8d\xcb\x3f\x45\x53\x8d\x8d\xc2\x9a\x9b\x6d\xa7\x61\x6a\xf3\xad\xa5\x69\x0b\x44\xd1\xd1\x14\xcb\xd1\x72\x2d\x5b\x39\xb7\x6c\xf9\xc4\xac\xb6\x07\x57\x28\xca\x50\x04\xdc\x9f\x66\xd9\xd4\xb6\xf3\xf8\x7f\xda\x7c\xae\x6a\x63\xff\x1f\xa2\x18\xfe\x24\xe9\x5f\xbf\xb6\x66\x9b\x72\x99\xa2\xe4\x32\x75\xcc\x31\xc2\x31\xc7\x6c\x06\x63\x76\x73\xcc\xb1\x76\xf9\x80\xe6\xfe\x44\x51\x14\xa2\xe8\x76\x70\xa4\x9c\xab\xc2\x7a\x50\x17\xce\xc3\xba\x70\x3e\xd7\x85\xf3\xb1\x2e\x32\xc3\x86\xca\x9c\x3b\xaf\xcc\xa1\x47\x53\xe4\xbc\xec\xb2\x2c\x53\x2c\x62\xbc\x4c\xb5\x07\xe7\xaa\x30\x38\x37\xdc\xf1\x1f\x29\xb9\xa1\xb0\x1e\x4f\xf1\x9a\x39\xe7\xa6\x02\x91\x9b\xba\x33\x30\x7e\xcf\xcf\xac\x8e\xe6\xdb\x1d\x1d\xba\x26\xce\xcd\xf9\x16\x51\x94\x29\xf9\xbc\xa9\x31\x68\x46\x10\x07\x33\xa3\xbf\xaa\x54\x28\x4f\x92\xfb\x14\xc5\x2a\xab\x02\x4d\xf3\x44\xc3\x3a\x9f\x87\x9b\xae\xb6\x9b\xc8\xdb\x01\xb7\x20\x4a\xb5\xc6\xb8\x61\xeb\x3b\x5e\x9b\x69\xb9\x1e\x5e\x33\xae\x1c\x2e\xda\xf9\x79\xbe\x70\x3c\x9f\x15\xbd\xa9\x09\x13\x59\x13\x69\x5e\x28\x15\x1a\x95\xc6\x56\x35\x1a\x7a\x5f\xd3\x7b\x5d\x69\xd0\x5c\x94\x8b\x59\x93\x30\xcd\xf3\x79\xa5\xeb\x3a\xf5\x52\xab\x4d\x6a\x82\x50\x2a\x98\x84\x69\xd4\xb7\xa2\x3a\x43\x14\x5d\xda\x13\x91\xe6\x0b\x5b\xa5\x50\x6d\x38\xe7\xb3\xa1\x8d\xb4\x93\x44\xee\xc6\xdc\x42\x28\xe5\x0b\x05\xb7\x25\xbc\x0a\xb6\xe3\xa2\x70\xb6\x99\x42\x7e\x7e\x3c\x9f\x0d\x9d\xd7\xb2\xbb\x02\x3d\xce\x0a\x42\xe9\xa5\x30\x6f\x9c\x77\x78\xcd\xf4\xf5\x55\x68\xcd\x20\x0a\xb2\x4a\xf7\xc9\x59\x99\x82\x0a\x6d\xb0\xca\x96\xd7\x35\x7d\xc6\xca\xcb\x59\xbe\x36\x5b\xf5\x57\xa6\x52\x1b\xd6\x75\xae\x57\x31\xbb\x72\x5b\x90\x4d\xb3\x5c\xec\xac\x37\xf3\x26\xa2\xb8\x9d\x75\xfa\xa3\xd5\x46\x37\xa7\x1c\xed\x6a\x24\x38\xa3\x14\xcd\x30\xd5\x06\xcb\xce\x46\xa3\xd1\xc6\xd7\x06\xb5\x5a\xad\xc9\xb2\xbc\x24\x08\xb2\xb1\xdd\x36\x39\x4e\x51\xac\x66\xb3\xd5\x6b\xb7\x6d\xdb\xb6\x4b\x87\x13\xa2\x78\x2a\x9e\x2b\xe7\xb5\x65\xd9\xed\x76\xbf\x7f\x38\x1c\x9d\x4e\xa3\xd9\xaa\x4c\xc7\x63\xad\xdb\x71\x24\x5e\x12\x8a\xf9\x02\x57\xdb\xa9\x8e\x38\xe7\x9b\xc5\xc9\x68\xb4\x31\x4c\x93\xa3\x88\x79\x19\xeb\x1f\xba\xbc\xd9\x30\x4c\xad\x36\x1b\x8d\x10\x45\xc8\x83\xb9\x3a\x9d\x14\x4d\x37\x58\xb6\x79\x29\x7b\x25\x7a\xd8\x63\x06\xb9\xc1\xc5\xbf\x5e\x69\x70\x1c\x30\xca\x78\xc0\x28\xd3\x41\x5b\x21\x87\xed\x33\x89\x35\xee\xb8\x3a\x9e\x8a\x1a\x39\x57\x73\xd3\x85\x93\x1f\x8b\xd9\xfa\x74\x49\xe6\x72\x4b\x32\x4f\x2e\xab\xf9\xb9\x3a\x99\x5f\xff\xa3\xb1\x0e\x87\x4d\x32\x2c\xcb\xce\xfa\x70\x74\x10\xc5\xd5\x7c\xa0\xac\x2b\xf5\xba\xce\x76\xba\x7d\x59\x2b\xfb\x63\x89\x57\xc7\x20\xc7\x8c\x8e\x05\x46\x38\xcd\x99\x0d\xf7\xc2\x6e\x86\x22\x6b\x9f\x97\x2c\x31\xcc\xb4\x09\x62\xd0\xa9\x8e\x86\x83\xce\xe8\x38\x16\x89\xc1\x98\x44\x14\x89\xe3\x5c\x1d\x9d\xe7\x22\x71\x1e\xab\x04\x39\x56\xc9\xe9\x5c\xcd\x2e\xe6\xea\xe4\x45\x7c\x9d\x2c\xe6\xaf\xb9\x8c\x18\xfd\xf7\x2a\x92\x78\x37\x90\xa9\x3e\x2d\xb3\x67\x8d\x63\x15\x8d\x63\xd7\xde\xae\x90\x27\x14\xae\xcc\x72\x35\x8b\x62\xa9\x39\x5c\xb1\xb4\xdc\x64\x5f\x94\x2e\x9b\x5f\x73\x73\x76\x33\x99\xb3\x9a\x34\x9f\xeb\xca\x7c\x6b\x6a\xf3\x17\x73\xcb\xb3\x4d\xa4\xd5\xe0\x72\x62\xf0\xce\x2a\xf3\xec\x56\xc7\x12\xce\x6e\x75\x85\xb5\x74\x85\xcd\x1b\xca\x7c\x6e\x2a\xf3\xed\x76\xc7\x37\xec\xd3\xf6\xc5\xda\xbd\xe7\xdf\xa6\x6c\x60\xe9\xa1\x0d\xaa\x0f\x77\x21\xf1\xd4\x80\xff\xc6\x5c\x83\x19\x9f\x1a\x94\xc0\x56\xc6\x9b\x2a\xd5\x96\xe1\xb0\x1e\x2a\x8c\xd0\x27\xd9\xcd\xf1\x85\xb5\x87\xcb\x36\x1e\xc7\xf6\x2b\x31\x6c\xbf\x8e\xa7\x83\x6a\xf5\x20\x77\x10\x45\x6f\x5f\xf3\x8c\x8a\x43\x83\x6a\x73\x2f\x8c\x70\x16\x99\xcd\x68\xcc\x3a\xe4\x98\x25\xc9\x31\xeb\x8c\xc7\xfd\xd7\x5b\xea\x08\x4b\x4f\xe8\x87\x1c\x0e\x3a\xc4\x99\x2b\x13\x0d\xda\x9d\x6f\x77\x58\xd7\xfd\xfe\x6c\xbe\x2a\xd3\x4d\xc1\x2c\xd3\x8b\x35\x39\xa3\x2b\x75\xad\x41\x4d\x56\xdd\x3e\xbf\x3a\x96\x15\xc6\x3c\x52\xe7\x4a\x65\xd3\x61\x75\xae\x8f\x28\xf6\x39\xe1\x75\xd7\x60\x0b\x87\xc3\xf9\x9c\xaf\xb2\x46\x75\x34\x68\xcb\x79\x42\xed\xe4\xf3\x72\x45\x68\x6a\x53\x46\x57\xbb\xd4\xca\x5d\xe7\x0c\x55\x65\xdc\xee\x1c\x4f\x95\x3a\x53\xab\xb7\xba\x9c\xa0\xc9\x83\x76\xfe\x48\xcf\xb3\xa3\x53\x65\x83\x67\xc6\x9c\xf7\x38\x8e\xdb\x38\xea\x4a\x3e\x37\xb9\x89\xc6\x68\xbd\xb5\xde\xec\x71\x9c\xa0\x6d\xd4\xf2\xaa\xa5\x98\xd9\x0d\xa3\x75\x1b\x56\x1f\x2e\xf8\xba\x2b\xa7\x74\xb1\xde\xdf\x94\x47\xe5\xbe\xbb\xb8\x6a\x6c\x7b\x24\x1b\xe6\x6a\x3e\xe0\xb0\xee\x51\x74\x6d\x53\x6d\x35\xdb\xd2\x48\x18\x6d\x8c\x82\x59\x38\x0e\xcf\xeb\x0d\x5b\x9f\x0d\x9b\xed\x3e\x2f\xca\x47\xca\x34\x07\xc7\xe1\x59\xd1\xeb\x75\x76\xd8\xee\x4b\x13\x41\x7e\x2d\x97\x5d\xe3\x8d\x6d\xbb\xc2\x56\xa1\xfa\x8a\x4c\xcc\x99\x11\xde\x67\x18\x5a\xa0\xf2\x75\x6a\x73\x2e\xb4\x09\xee\xd8\x57\xb9\x63\xa7\x7a\x3e\x0e\x54\xf2\xd8\xe9\x90\x85\x11\x71\x1e\xf6\xc9\xd1\x78\x30\x3e\x1d\x3b\x63\x72\x3c\x18\x67\x8f\xf3\xce\x78\x31\x53\x87\x83\x4e\x67\xb8\x1c\x8c\xc6\x83\x4e\x75\x3c\x18\x8f\x89\xc2\x1c\xcf\xf5\x78\x31\x76\xce\xe7\x81\x9a\x1d\x0f\xc6\xb9\xc1\x7c\x4c\x2e\xe6\x6a\xf6\x38\x7f\x1c\x17\xe6\x64\xee\xdc\xe9\x4c\xdc\xcf\x44\x97\xca\x98\x24\x0b\xf3\xd7\xe9\xeb\xdc\x99\xce\x65\xbf\xa5\xe1\x60\x80\x5a\x3a\xcf\xf1\x5c\x93\x2f\x33\x72\x34\x1d\x8c\x47\xe3\xb1\x3a\x19\x0f\xc6\x93\xe9\x5c\x9d\x2c\xc5\xf1\xf8\x75\xfe\xca\x1d\xdd\xd2\x9d\x4e\x76\x30\x1e\x8f\x17\xf3\x71\x76\x39\x76\xc6\xf3\xf9\x6b\x7e\x3a\x18\x4f\xc7\xa2\x9a\x5d\x8a\xe3\xc9\x60\xfe\x38\x79\x95\xaa\xf9\xe5\xfc\x15\xaf\xc2\xc1\x0a\xf2\x40\xbe\x8e\x49\xb7\xf4\x4c\x9c\xab\xb3\x85\x48\xe6\x4e\x2b\x53\xd3\xd4\xad\xb1\x55\xb6\x9a\xa2\x6c\xb7\x5b\x6d\xeb\x68\xd9\xad\xb5\x25\x17\xc6\x4e\xd9\x1a\x5b\xab\x69\x6b\xd2\xd6\xda\x9e\x9b\xf6\xf6\xd1\xb2\xb4\xb3\x85\x57\xa1\xa2\x6c\xad\xad\xb2\xb5\x95\xd3\x76\xab\x9c\x2c\x7b\x7b\x7e\xd9\x2a\x67\xcb\xd9\x2a\xdb\xdd\x36\xd7\xb4\x2d\x7a\x61\x6d\xf7\x96\xb3\x2b\xb5\x0e\xa7\xb3\xb5\xd3\xe9\xad\xb5\x2d\x5a\xf6\x0e\x95\xdb\x6d\x73\xd6\x51\xaf\x5b\xbb\x75\xb9\x84\xa5\x47\xd1\x5b\xe6\x76\xbf\xdd\x6d\xb5\xe2\x4e\x7b\xb1\x76\x7a\xbd\xed\x68\x84\x60\x14\xad\xed\x5e\xb1\x5a\x07\xab\xd2\xb4\x77\x19\x6b\xa7\x3c\x12\x22\x57\x1d\x8c\xa7\x53\x51\xad\xe6\xd6\xe3\xec\x78\xfe\x9a\x25\x97\x62\xa1\xb0\x78\xcd\x4f\x4e\x8b\xe1\x2e\x83\x28\x5a\xcb\x7d\x53\x90\x76\x45\x62\x2f\x17\xce\xd9\x92\xb0\x5b\xcc\x9d\x7a\xab\xb3\xab\xbd\x3c\x3a\x8f\xa5\xc5\xb9\x79\x7e\x5d\x75\xd9\xa2\x3a\x2f\x6c\xb3\x0b\x7e\xbb\xb5\xe6\xbb\xed\xf6\x71\x77\x5a\x28\xfb\x8a\xd5\x75\xe8\xd1\x78\xfc\x3a\x9d\x8f\xd5\xdc\x59\x14\xf1\xba\x1e\x88\xbb\xdc\x59\xea\x4e\x5e\xa5\x8e\xb1\xb5\xb6\x3b\xc5\x6a\xed\x5d\xbe\xd6\x75\xe1\xa8\x95\x84\xdd\x99\x12\xa6\xa2\x9d\x5d\xab\xfb\xa9\xbe\x68\x3a\x74\x8e\x5c\x9f\x7a\x42\xe3\x9c\xdd\x2f\x8e\x7a\xfd\xa5\xbb\xeb\x65\x45\xbe\xbb\xaf\x50\x7a\x1d\x51\x5c\x1f\xdc\xb5\xc0\xc0\xb5\xc0\x94\x4c\xca\xe0\x18\x8b\x32\xa8\x3c\xd5\xa7\x6a\xac\x24\x8c\x46\x47\x6a\x7b\xe4\xca\x04\x53\x6d\x6d\xd9\xe6\x60\xd4\xee\xcf\x56\x02\x51\x68\x1e\x07\xa7\xd1\x88\x31\xb7\xec\x7c\x38\x6a\xda\x33\x79\xcc\x16\xb0\x45\x7a\x6a\x9c\x86\xcc\xc6\x34\x9a\xf3\x21\x37\x92\xa5\x95\x39\x2e\x37\xf9\x62\x6d\x44\xaa\x0d\xcb\xe6\x17\xa3\xd9\x8e\x90\xcd\xf2\xbc\xc9\x73\xd9\x11\xa1\x9a\xdb\xad\xb0\x18\x4d\x8c\xc3\x60\x76\xa4\x4e\x85\xe2\x60\x73\xde\x6c\x1a\xe6\xa2\x3f\xe1\xb4\x8d\x83\x2d\x29\xa2\xd0\x2c\x14\xe9\x4d\x65\xd3\x68\x9a\x7c\x7f\xc4\x11\x86\x33\xb6\x8f\x8d\x13\x4f\xaf\x89\x4d\x95\xdd\xf2\x7d\x6e\x44\x68\xa6\x03\x5b\x9a\x6c\xaa\x1b\xa7\xd9\x5e\xcc\x46\x93\x6c\xfe\x48\xae\x8e\x6e\x4b\x1b\x46\x75\x1a\x4d\x61\xe6\xed\xae\x59\xc2\x39\x9a\xc6\xfa\xa8\x94\x37\xe7\x8d\xde\xd0\x1b\x6d\xce\x6d\x4f\xed\x34\xf8\xc2\x5c\x19\xb9\x2d\x69\xb3\x2e\xc7\x6d\xb6\x8e\x3a\x6f\x70\xe7\xc6\x69\x08\x5b\x9a\x75\xbb\xdc\x66\x63\x3a\x66\xa3\x39\x6c\xd6\x46\xe4\xc6\xc4\x36\x85\x3d\x1b\x73\x13\xed\x70\x24\xcd\x23\xb7\xa8\x4c\xdc\x9e\x35\x9a\x02\xcf\x71\xda\xc1\x39\xaa\xe6\x62\xd8\x1a\x93\x4c\xd5\x68\xa1\x9e\x69\x8e\x33\x9e\x5b\xfc\x36\x57\x1b\x31\xa6\xd5\xe0\x47\x33\x8e\xd8\x1e\x9d\xc1\xdc\x5a\xac\xeb\x1a\xb6\xc3\x37\xa6\x69\xf1\x7d\x6e\x42\x68\xe6\x71\x30\x5f\xac\x95\x5c\x4d\x53\x3b\x56\x87\x5f\x4c\x78\x2d\x7f\x2c\xac\xcc\xc5\x62\x98\x9b\x68\x7a\xa7\x69\x89\x8b\xd1\xc8\x70\xfb\x64\xae\x17\x8b\xdc\x58\xd3\xf7\x7b\xb6\x89\xc6\x50\xed\x34\x14\x44\x91\x57\x72\x35\x52\x6b\x3a\xc6\x7c\x38\xe1\x94\xed\x51\x9d\x37\xf8\x45\xa5\xae\x65\xd5\x6d\xbb\x3b\x1f\x72\xb3\x8d\x66\x1e\xe7\x0d\x6e\x4d\xbb\x2d\x39\xf6\x8e\xe7\x27\xbc\x76\x38\x16\x4c\x93\x53\x5e\xa6\x5a\x56\xef\xd8\x9d\xe5\x62\x34\xd9\x1e\xf0\xcc\x1c\x4d\x73\xc8\xbd\x4c\x27\x13\xbd\xdb\xdb\x2d\xc7\x13\x8a\xaa\x50\x32\xd5\xa6\xfa\x2c\xd5\x98\xf3\x95\xfe\xa6\x31\xa2\xa0\x66\x65\x6a\xec\xc8\x2e\x34\xf8\x41\xf9\x74\xae\x6c\xb6\xf4\xa8\xd5\xee\x72\x92\x29\x6c\x8e\x74\x93\x53\xc7\x67\x86\xc1\x67\xae\xc6\x62\xea\x0e\xb1\x79\x14\x67\x05\x9a\x9e\xa8\xd5\x8d\xbd\x6d\x09\xe3\x09\x7f\xda\x98\xee\xf8\xb4\xfa\x14\x65\x60\xcd\x5a\xde\x64\x1b\xc7\x3e\xd3\xac\x8c\x37\x0d\x8a\xe9\xbb\x9f\xd5\x58\x57\x40\xa9\xd9\xdc\x1c\x28\x15\x6c\x53\x94\x95\x4d\xb5\xd6\xee\xb3\xdb\xd1\xcc\x95\x24\x73\x30\x58\xbb\x73\x5e\xab\xb7\xbb\x7d\xc5\x98\xcf\x4a\x85\x72\x93\xd6\x98\x11\x63\x6c\x9b\xb3\x51\x9f\xdb\x6c\x54\xb3\xef\x9a\x30\x86\xe0\x6e\xfd\x8b\x0e\x3d\x9a\x94\x4f\x32\xd1\xa0\xbc\xb3\xeb\x88\x1a\xb9\x67\x57\xb7\xb5\xf6\x6c\x26\x8b\xd5\xfe\xa9\xb9\xaa\x31\x43\xc6\xd0\xb7\x33\xa6\x3f\x91\x77\x8e\x28\xce\x39\xbe\x38\xad\x9e\xab\xe6\xd6\x5a\x0c\x67\x7d\x4a\x71\x56\xe2\xec\xc4\x9d\xa6\x35\xb2\x6a\x6a\x96\xc0\xcd\x26\x8a\x8d\x77\x05\xaa\x7b\xa6\xa8\x7e\xc5\x3e\x30\xac\xd1\xa9\xf5\x55\xaa\x41\xd5\x29\x86\x9a\x19\xc7\xc1\xfa\xbc\x56\x75\xa6\xd6\x6a\x77\x25\x59\xe8\x50\xf2\xb1\xb0\x3a\x31\x15\xc5\xaa\xe9\x6c\xbb\xdb\x97\xe5\xb1\xcb\x3f\x4d\xd7\x98\x73\x65\xe3\xda\x67\xde\xee\xba\x9b\x09\x2b\xf7\x34\xd9\xac\x55\x18\x86\x65\xcd\xf9\x90\xeb\xf7\xe5\xd5\xaa\xda\x68\x16\x39\x9a\x61\x18\xd6\x34\xa7\xfd\x7e\x5f\x56\x56\x6a\x95\x75\x37\xac\x2d\xec\x6e\xab\x3c\x98\xd7\xbb\xf4\x86\x2f\xbb\x3b\x2f\x4d\xd5\x37\x1e\x8f\x2c\x75\xe4\xd6\x9b\xba\x31\x1f\xd4\x9a\xc2\x4c\x56\x1b\x0d\xce\xe5\x8f\x61\xcc\xc6\x76\xca\xb6\xfb\xca\xc6\x3c\x8e\x67\x85\x72\xb1\x36\x52\xab\x96\xcd\x36\x86\xee\x8a\x20\xc5\x55\xb9\xc9\x73\xb9\xda\x64\xd3\x69\x5a\xc2\x78\xc6\x17\xf3\xd8\x7e\x34\xc5\xb9\x62\x55\xa6\x53\xb2\xba\x6d\x3b\x12\xcf\xf3\x84\xe1\xae\x15\xeb\xbc\xd8\x50\x54\xe7\x50\x2d\x1f\xe8\x03\x75\x74\xaa\x1d\x45\x98\xd1\x9c\x41\xcc\xe9\x11\xb5\xa1\x04\x4a\xa6\xe9\x4d\xb5\xd6\x75\xc7\x7e\x34\x33\x8c\x63\xa1\x70\xc4\x73\x4d\xd3\x7a\x55\xab\xf7\xba\x4d\x7e\x36\x43\x67\x05\xd7\x42\x75\x4f\x1b\xdd\x76\x1b\x9f\x1f\x8e\xe6\x0a\x9e\x40\xea\xde\x99\x22\x1f\x3d\x95\x78\xe7\x0c\x44\x11\x9d\x36\x36\x14\x45\x9b\x07\x77\x53\xb7\xab\xd5\x8d\x90\x6f\x0e\x0c\xc6\xb5\x8c\x59\x6a\xeb\xda\xe4\xe5\xea\x64\x66\x1c\x8e\xc7\x95\xbc\xa0\xf1\x1d\x45\x7b\x34\xe3\xd0\x67\xab\xf5\x02\x7f\x86\x28\xb6\x05\x7e\xe6\x7d\xe3\xdd\x68\xb4\x85\xd9\xd5\x2d\xc7\x3d\x9f\x61\x4d\x51\x75\x2c\x6b\x31\x9d\x4c\xb4\x9d\xe3\x9e\x30\xf8\x62\x96\x24\x55\xd3\xb2\xfa\x65\x6a\x7f\x30\xea\x54\xaf\x54\xaf\x91\x68\x56\xe9\xd3\x01\x8e\x23\x43\xe5\x29\xaa\xbc\xae\x68\xf5\x6e\xb7\xdb\x9f\x89\x2b\x76\x66\x16\x9b\x1c\x83\x28\xba\xa2\x64\x8c\x3a\xcd\x2e\x27\xab\xab\x6a\xb9\xd9\xe4\xd4\xf3\x70\x63\x36\x4d\x9e\x1b\x4d\x36\xdb\xb9\x40\x36\xb8\xa6\x32\x51\x55\xd5\xdd\x15\x86\xa3\xc9\xc6\x80\x2d\x97\x4f\x13\x95\x54\x1b\x5b\x97\x9b\xae\xac\xa8\x4e\x67\xc0\x63\xdd\x53\xcc\x92\x59\xa6\xca\x36\xf9\xe9\x64\x62\xd8\xce\x51\x2d\x37\xb9\x6d\x96\xcc\xd6\x9a\xed\xce\x6c\xce\x8d\xb4\xad\x73\x14\x57\x8a\x55\xa9\x6d\x08\xb5\x61\xb7\xdc\x9e\x16\x4f\x2b\xb5\x33\xe7\xf9\xb3\xdb\x7b\xdb\x69\x2e\xa6\x93\x99\x71\xc2\x67\x05\x57\x52\x38\x5e\x23\x49\xad\xd9\xea\x88\x73\x9e\x3e\x54\xe4\x85\x4e\x51\x32\xa3\x1c\x84\x19\x3f\x36\x5b\x3d\x9a\x90\xb0\x14\xd3\x4c\x99\xa2\x06\x34\x92\x85\x76\xbf\x2f\xcb\xab\x91\x2b\x39\x45\x1a\xae\x0e\x7c\xdf\x33\x1a\x34\xdb\xd2\x4c\x10\xd1\x2d\x0c\xb3\xae\xd4\x75\x83\x45\xa5\x57\x0d\xea\x58\x58\x1d\x09\x06\x9d\x82\xfa\xdd\x9d\xe0\xad\x2f\x66\xb4\xb1\xf4\x7a\xbd\x0f\xcb\xa9\xd5\x32\xed\xae\x2f\x6c\xed\x31\x2c\x6b\xcc\x06\x1c\xa7\x6c\x44\xb7\x74\x13\x96\x36\xcc\xc6\xcc\x2d\xad\xa9\x6a\xb5\xd1\x6c\xf2\x13\x06\x95\xeb\x73\x9c\xa2\xa9\x2a\xa4\x8a\xcf\x88\xf3\x3e\x87\xa8\x36\xf0\x3e\xd3\xe4\xdd\x6f\x58\xd6\x98\x0f\xfa\xb0\x74\xb5\xd1\x74\x79\x45\xa5\x07\x1c\x27\x6f\x56\x70\xc6\x78\x44\x81\xf5\xa8\xc2\x96\x46\xae\x15\x5d\x29\x1f\x68\x8a\xa2\x7b\xf8\xf4\xd1\x68\xf6\x9a\xac\x76\x20\xf2\x02\x5b\x19\xd5\xd6\x2c\x27\xd3\x54\x85\xa2\x28\x41\x5c\x6d\x8b\x27\x7d\x72\xa2\x2b\x55\x9d\xe5\x26\x5c\x9e\xeb\x0b\xab\xb2\xd2\x5a\x55\x39\x65\xad\xd6\xed\xc9\x98\xad\x09\xa3\x19\x39\xef\x1f\xcd\xc1\x60\x38\xd2\xf6\x98\xa2\x5e\x6b\xb6\x47\xa3\x47\x71\x46\x18\xc7\x43\xf1\x34\x1a\x6f\x0c\x63\x33\x6b\x71\xc2\xf6\x44\x8a\xf6\xa1\xec\x1e\x66\x68\x8a\x3a\x30\x34\x73\x96\x47\x54\xb9\x5a\x5e\xb3\x2e\x5f\x2b\xaa\x6f\x52\x4d\xfa\x70\xe8\x50\xc7\x29\xd5\x67\x0a\x65\x16\x9f\xaf\x69\xf9\xd0\x3c\xe6\x07\x67\x42\xdb\x54\xa8\x32\xcd\x9c\xa8\xd3\x40\xa9\xca\x6d\x66\xd5\xdd\xca\x7c\x43\xe9\xca\xe5\xd9\xb4\x56\x61\xcb\x79\xaa\xbd\x9e\x65\x09\xe5\xb0\x37\xda\x36\x55\x9d\x8a\x47\x92\x65\xfb\x72\x99\xae\xb1\xc7\x3e\x33\xda\xb0\x34\xd6\x14\x4c\xb6\x90\xcf\xcb\x64\x6f\xd7\x66\x1a\xdd\xcd\x44\xad\xc8\xe8\xd0\x9a\xa7\x28\xaa\x2e\x53\xd4\x46\x26\x64\x56\x69\xf2\xdd\x59\xbe\xbb\x3e\x3c\xf6\x99\x06\x33\xd8\xac\x9a\x43\xa6\x80\xef\xac\x5a\x54\x59\xa6\x4a\x94\x4c\xf7\xab\x88\xa2\xc2\x2a\xec\xdc\x28\xae\x0f\x8f\xed\x8a\x5f\x98\xea\xab\xe1\x5b\x58\x9a\xc2\xcd\x50\xe8\x64\x49\x53\xab\xde\x3c\x2b\x0e\x29\xaa\x3f\xeb\x1e\xf0\x37\xdd\x1a\xbe\x75\x5d\x6c\x0c\x78\x80\xd3\x84\x97\x7c\x65\x20\x9f\x3a\xeb\x76\xf1\x75\x48\x9d\xbb\xc3\xcd\x4b\x5e\xd4\x5b\xbb\x85\x74\xb0\x17\xbc\xac\xcd\x95\x8e\x99\x17\x89\xe6\xc2\x66\x8e\xdc\x2c\xc3\xe6\xa6\xa3\xe1\xa1\x21\x6f\xa4\xb9\xa8\x93\xf5\x59\xfe\x6c\xac\x11\xc5\x5c\x2e\xb3\x7d\xad\x54\x9d\x7d\x6e\xa4\x90\x99\xb5\x76\x7c\x51\xe9\x91\xd3\x73\xc8\x52\xc6\x9e\x2d\x5f\xdb\x1b\x99\xb2\xa9\xda\xa0\x2c\xe6\xe4\x76\xad\x97\xb7\x47\x8f\x5b\xba\x37\x2b\x9f\x5e\xc7\x16\x95\x9b\x6d\x1b\x86\x3d\xc9\x4d\xb2\x19\x69\x49\x2a\xf8\x7c\x9d\xd9\xe5\x04\xb9\x34\xaf\x65\x0a\x2f\xeb\xd1\xa3\xd9\xd3\x16\x35\xa6\x31\x92\x37\x4b\x9d\x67\x73\xaf\x95\x45\x6f\x7b\x14\xc5\xb9\xb9\x5a\xb4\x07\x1a\x2d\x14\xac\xa6\xba\x19\xb5\x37\xa7\x63\x49\x61\x8d\x9d\x5c\x10\x1b\x7b\xb2\x3b\xab\xbf\xf2\x85\x57\xe1\x11\xf3\x58\x93\xf6\x5b\xe1\x65\x9e\x9d\x56\xc5\xca\xba\x95\xd9\xd6\xcf\xce\x60\xb9\x9e\x30\x93\x63\x23\xc3\x2b\x35\xe9\xbc\x36\x56\xbb\xd7\xba\x4d\xcf\xc5\x7e\xb9\xb9\x50\xea\xc4\xd8\x19\x65\x72\x5a\xa9\xa0\x56\x6a\xd9\x61\xe6\xf1\xb8\x99\x0b\x33\x7d\xfa\xc8\x60\x8a\xfc\xf6\xbc\xcf\x1c\x87\x72\xd7\x18\x56\x6b\x8f\xc7\x17\xae\xb3\xed\xe7\x3b\x8f\x06\x45\x95\xb9\xe3\x6e\x3c\x3d\xbc\xbc\x34\xc4\xc2\x42\xd3\x86\xda\xae\xc1\x6f\xa6\x2f\x05\xe2\xb5\x5e\x27\x36\xb5\x59\x73\x4f\x0d\x7a\xe6\x61\xd9\xe5\xa8\xde\x89\xeb\x51\x42\x16\x4b\xcf\x46\x97\x2a\x87\x72\xb6\x7e\xa0\xa8\x86\xda\xaf\xcc\x9a\x85\x42\xa9\xd8\x79\x79\xad\x35\xe8\xf5\x31\xff\x68\x16\xf9\xca\x48\xcc\xbe\x4c\xb9\xfd\xe0\x34\x6d\x35\x36\x2c\x5d\x98\xcd\xc9\x75\x6b\x5f\x50\xcd\xee\x6a\x3e\x3c\x13\xf6\x63\x45\xd3\xab\xa4\x88\x6d\x33\xd3\xb1\xf4\x76\x71\x54\x91\xd9\x09\x49\x4e\x57\x25\xa1\x3e\x14\x89\x0c\xa7\x2d\xe4\x2e\x25\x1e\x85\xd3\xe4\xd0\x76\xcf\xa7\xd6\x3c\xb7\xec\x70\xcb\xf9\xe2\xdc\x54\x66\x56\x33\xff\xe8\xf4\xb6\x8e\xde\x1e\xb7\xba\xd2\xa4\x5b\xcb\x6e\xc6\xfb\xd1\x0c\xf7\xda\xcc\xf6\x1a\x99\xd5\x86\x56\x0b\x7c\x75\xd0\xcd\x0f\x5b\xb5\x59\x6f\x2e\xb0\xa3\xdc\x7e\xd6\x26\x57\xc6\x8a\xcb\xaf\xeb\x55\x55\x3f\x4d\x32\xd9\x61\xa1\xf1\xb2\xa9\xd9\xdc\x6a\x3a\x19\x96\x3a\x44\x61\xfc\x98\xa3\x33\xb5\xde\xb6\x41\xf6\xc5\x89\x62\xd7\x7a\x58\xe3\x32\xe7\xfa\x76\xca\x72\xe5\x1e\xab\xe8\x93\xca\xc8\x79\x61\xa5\xc6\x3e\xb3\x2c\x74\x9d\x73\xf9\x68\x0e\xcf\xf3\x79\xff\x91\x9e\x31\xab\xfa\x74\xb9\xad\xe5\x79\xaa\xdc\x57\x95\x97\x6c\xad\xb1\xea\xe4\x8d\xc6\xfe\x71\x35\x15\x28\x93\x6a\xb8\x27\x8c\x09\xa2\x58\xaa\x65\x2d\x9e\x9a\xe6\x3b\x23\x81\x2a\xeb\x63\xe7\xe5\x85\x3e\xcf\xa9\xf2\x63\xcb\xae\x0b\x63\xe9\xb1\x9f\x5f\x3d\xf6\xcb\xe4\x61\x95\x99\x5b\x8d\x61\xef\xc8\x95\x45\xb6\xa4\xc9\x43\x89\x12\x87\x76\xbf\x6b\x54\x47\x8c\x2e\xbf\x96\xeb\xc2\xb8\xb7\x3a\x22\x8a\xdc\x60\x30\xdb\x34\x27\xf3\xc6\xb4\x5b\x9d\xf5\x8a\xe3\x3c\xc5\x58\x8a\xd9\x30\x98\xf5\x54\xa6\xb2\x87\xc6\x60\x5e\xe7\x98\xa3\xd6\xa8\x68\xa5\x2a\x41\x15\x65\x66\x6a\xcb\x05\x3e\x3f\xb7\xa9\x16\xeb\x58\xed\xf2\xcb\xe3\x72\xf5\x32\x6a\xb6\xf6\xb3\x09\xbe\x03\x10\x1d\xbb\x72\xa8\x2e\x49\xed\x3c\x3b\x73\x64\xb5\x94\xed\x90\xab\x6c\xf7\xe4\x64\xa5\x97\x62\x99\xec\x8b\x1c\xc1\x51\x76\x5f\x91\x5b\xbd\x76\x57\x6e\x70\xaf\x8d\x01\xfd\xb2\xaa\x4e\xa9\xe2\x66\x64\xb7\xaa\x9d\x66\xa5\x20\x50\x05\x61\x38\xd8\xcb\x1c\xbe\xc7\xed\x09\xb9\xaa\xfa\xfa\x7a\x9c\xe4\xfa\x43\x25\xd3\xae\x0f\x4a\x15\x46\x2b\x4e\xf4\x3d\x3f\xee\x53\xc3\xc3\x60\x3b\x68\xae\x4f\x87\xfe\x6b\xd9\xb2\x56\x3b\x79\x90\xa5\x9a\x43\xbb\xd7\x97\xfa\xc2\xc6\xa2\xba\x72\xa5\xbb\x5a\x0c\x19\xee\x64\x4d\xfb\x05\x82\x46\x14\x37\x1d\x73\x2a\x3a\x93\xf5\xe4\x65\x92\xcd\xe4\x46\x6b\x69\x9a\x1b\xbd\x16\x64\x56\xe4\xd5\xe5\x80\x32\x28\x6d\x3b\x62\x94\x83\x59\xc8\xad\x68\x51\xa0\x0f\xaa\x9c\x7f\x59\x0a\x8b\xe5\x59\xd5\xfa\x6d\x4a\xe6\xcb\x9b\xd5\x8b\xf0\xb8\x14\x2a\x72\xf5\x11\xcb\xe3\xf2\x50\x99\x2e\xcf\x92\xdc\xea\x09\xad\x59\xc3\xa6\xa8\x46\x9f\xb2\x86\xd3\xb5\xbe\xca\xec\xa6\xb5\x53\x6e\x4f\xd6\x37\x39\x73\x5c\xcc\xe4\x9c\x82\xb5\x9b\x94\xc8\x65\xd1\xb4\x96\x8b\x76\xb6\x9f\x9b\x74\xc6\xa7\xd7\x52\xf9\x30\x72\x16\xf4\x61\x55\x5d\x61\xfb\x71\xb2\xeb\x49\xfb\x62\x57\xca\xe4\xe7\x7c\xb5\x3f\x12\xe4\xa6\x35\xb6\xf3\xa2\xb4\x3c\xaf\xc8\x21\x55\xa1\xc8\x0a\xb3\x2a\x2c\x72\x63\xb5\xc2\x33\xf4\xa1\xb0\x78\x5c\xf4\x96\x9b\xa6\x61\xe7\x1c\x96\xda\x49\xb9\x7d\x63\xde\x55\x56\x39\x99\xcf\xa9\x45\xac\x7b\x72\x3d\x6e\xc9\x6e\xac\xd6\x9e\xe8\x51\x5c\xa9\xd8\xeb\x89\xad\x17\xb9\x64\x08\xd9\xa6\x23\x75\xaa\xcd\xe6\xb9\x39\x90\x56\xdd\x7d\x56\x6e\x18\xd5\x56\xb9\x37\xd5\xf8\xe9\xbe\x57\xee\xb3\x2d\xb9\x61\xe8\xc4\x62\x31\x29\xdb\x67\x6b\x36\x9f\xcd\x0e\xcc\x0b\x3e\x0d\xab\xd9\xf5\xe3\x7e\x28\x8e\x5e\xc6\xe6\x26\x4b\xb6\x94\x11\xd1\xe7\xd7\xbd\xcd\xe9\x40\x51\xf5\xed\x62\x44\x13\x99\x99\x3d\xeb\x8a\x8b\xbc\x54\x2c\x77\xcd\x17\x86\x10\x68\x85\xc8\x53\x46\x66\x28\x57\x4a\xf3\x31\xd5\x56\xc4\xe2\x2a\x43\x95\x58\xa9\x8c\x28\x76\x36\x66\x31\x73\xb4\x29\x8a\x9e\x33\x2d\x66\xc6\x6e\x1e\x4f\x7b\xb6\xd8\x3f\x93\x9d\x4e\x51\x65\x97\x4e\x39\x53\x64\xdb\x93\xf5\xa4\xd1\xe9\x6e\x7b\xc3\xb6\x24\x52\xda\x89\x5f\x17\x19\x9b\xe8\x97\x37\x6a\xc3\x54\xb8\xc9\xa4\xae\xf7\xb3\xb4\x31\xc3\xaf\x29\xb5\x09\xa5\x39\x8f\x84\xdc\xea\x97\xab\x4d\xba\xac\x9b\xd9\xfe\x68\xd4\x9f\x67\x48\x67\xe5\xcc\x2b\xe5\xc6\xc8\xac\x4e\x66\xa5\xec\x39\x97\x37\x04\xc3\x2a\x17\xb3\xc6\xf4\x65\x5b\x2e\x9c\x08\xa3\x47\xed\x33\x4b\xe3\x58\xcf\x16\x0e\x63\x4d\x66\xeb\x4b\xac\xcd\x8e\xd5\xae\x55\x52\xa5\xb9\x50\xde\x92\xcd\x63\x6e\xbe\xa7\xb7\xaf\x65\x99\x2f\xe6\x5e\xa9\xe3\xae\xbe\xeb\x75\x5a\x99\x17\x72\x46\x57\xf3\xcc\xe9\xd0\x30\xb7\xf5\x2a\x35\x2d\x4e\xab\x84\xbd\x1e\x2f\x76\x54\x47\xdf\xef\xc5\x96\x60\xed\x96\xb3\x43\xb7\x8d\x6f\x3e\x94\x0a\x5f\x54\xa8\x7c\xb1\x44\xcd\x28\xaa\x5c\xd4\x3a\xe5\xf6\x54\x90\x87\x95\x52\x9d\x1b\x6c\x1b\xf9\xfd\xa1\x44\xaf\x29\x95\x66\x7a\x14\x4d\x71\xea\x34\x43\xf5\x0e\xbd\x6e\xa3\xa9\xbe\x1e\xdd\xdd\xb5\xa7\xe9\xd2\x3e\x2b\x4d\xcc\x5c\x6e\x2a\x63\x0b\xe0\x90\xab\xec\x97\xe7\xa2\x76\xaa\x6d\x72\xc6\xa9\x57\x9a\x0d\x9b\x36\xdd\xdd\x9f\x29\x99\x6a\xf5\x15\xc2\x20\x85\x62\xe7\x6c\x67\xbb\xd9\x9e\x9c\x5d\xe5\x29\x9a\x6d\x50\x32\x55\xeb\x11\x7c\x47\x2f\x1c\x89\x72\x45\x1e\x2f\xeb\x2f\xbb\xec\xd0\x39\x2d\xb1\x05\x20\x0c\xd8\xdd\x8c\x3a\xf5\x57\xe5\x6a\x46\xdd\x73\x03\xca\x71\x64\xaa\x38\xec\x2d\x26\x73\xea\x55\xe6\x47\xd6\x7c\x42\x8d\x18\x8a\x7a\xac\x1c\xf3\x2f\xfd\x5c\xc6\x2a\xbd\xd4\x8f\xa3\xd1\x76\xae\x95\x89\xb2\x36\xda\xb5\x55\x63\x5d\x5d\xd7\x1d\x52\xae\xe0\x97\x0a\x5d\xdf\xef\xa6\xa5\x36\xab\xd9\x6b\x6e\x5b\x98\x6c\xce\xdc\xb9\xc6\x15\xb3\x5d\x86\x55\xbb\xbb\xe5\x64\x22\x9d\x8f\x13\x73\x5f\xac\x96\xe5\x8a\xdc\x18\xab\xce\x72\x5a\x9d\x39\x1d\x8a\xd2\xb7\x23\xe2\xd8\x37\x2a\xc4\xac\xa5\x4c\x8d\x82\x50\x2d\xf4\xf1\x49\x33\x4f\xeb\x33\xd2\x29\xb7\xa8\xcd\x9c\xee\x52\x65\x6a\xb5\xd8\x64\xa8\xf6\x63\x86\x3a\x70\x34\x2d\xaa\x13\x8a\xa2\xda\x42\x75\xcd\xbd\x18\x87\x45\xa9\x36\xae\x9c\xf7\x52\x45\x99\xef\xcf\xfa\xc2\xc9\x3a\xd5\xfc\xa2\x55\x30\xc4\x0e\x39\x6b\xaa\xa5\xd2\x10\x9f\xe2\x18\xaa\x4c\xcf\xf7\xbb\xe5\xf6\x75\x46\x0f\xcb\x4e\xfb\x30\xa6\xfa\x23\x86\x3a\xd4\x9c\x8e\xea\x9c\x39\xbe\xbe\xa7\x2a\x33\x3a\x37\x3c\xb6\xc6\xeb\xad\x32\xa0\x1e\xbb\x73\xaa\xbd\x3a\x0b\x5b\x46\x1e\x08\x54\xf7\x60\xd0\xf2\x5e\x1c\x1e\xed\x61\xbd\x85\x4f\x9a\x4c\xb5\xf8\x68\x74\x17\xd9\xc7\x1e\xc5\x96\x04\xa5\xd7\x17\xa6\xf2\x8b\xd9\x9d\x3d\xb6\xd6\xc7\x3e\xb7\xcf\x2e\xd7\x5a\x75\xb7\xce\xe5\xe5\xda\xe1\x9c\x23\x89\xcc\xa2\xd6\x2c\x9e\x73\x47\x79\x58\x2a\xbd\x48\x86\x36\x19\xb5\x18\xbe\x22\x12\xf9\x43\x5d\xc2\xef\x85\xb3\xa3\xb8\x16\xe4\x71\x96\x3b\xee\xb9\x83\x4e\x8c\x8d\xf9\xb4\x31\xd8\x6e\x06\x74\x81\xe2\xfa\x19\x6d\x37\x36\xa8\x91\x3d\x7d\xa1\x64\xaa\xdf\x2e\x77\xf8\xf1\x81\xa2\x54\xaa\x3c\x38\x0e\x33\x64\x4f\x5b\x6e\x5b\x5b\x6e\xd0\xa9\x2c\x56\xd3\x05\x81\xd7\xf5\x42\xb2\xcc\x72\x6e\xf1\x9a\x5f\x9b\xbb\x09\x33\x5f\x97\xe9\x4a\xb6\x2b\x88\xd3\xaa\x49\x37\x19\x99\xae\x2c\x85\x6a\xaf\x7d\x28\x51\x14\x55\x19\x1d\x86\x79\x55\x1f\x69\x05\x42\xd5\x0e\x96\xd9\x6e\xaf\x7a\x7d\xb6\xb9\x2e\xee\x08\xa6\xb4\xb4\xb2\x7b\x7c\xe6\x2a\xeb\x72\xbb\x23\xb2\xaa\x35\xb7\x15\x79\xcd\xaf\xd4\xf5\x4e\x2c\x52\xd5\xb1\xfc\xe8\x9c\xa7\x87\x91\x3e\x6d\xe5\x86\x8d\x96\xc9\xaf\xf9\x49\x93\xca\x8f\xe1\x5b\xbe\x52\x5d\x6e\x1b\x72\x93\x9a\x13\xa5\xa9\xe5\x70\x39\xf1\xe8\xf4\x3b\x33\x01\x5b\x7b\xbd\xfd\x8c\xa9\x95\x68\x75\x6f\xf5\x07\x0d\xb9\x2c\x99\xab\x83\xde\x99\x34\xd6\x4e\x6d\xab\x99\xc5\x31\xd3\xe3\xf6\x65\xe9\x85\x29\x2b\xa3\xdc\x56\x6e\x2c\xfa\xd4\xa1\x92\x6f\x49\xa5\x16\xd5\xae\xb4\x57\xf5\x45\x87\xa2\x28\x55\x6e\x3e\x3a\x55\xbb\x80\xf5\xe3\xe3\xec\xd4\x10\x5e\x4f\xb4\xde\xe0\x73\xd6\xb1\xd5\xdb\xa9\x35\xfd\x78\xb0\xa7\xe3\xd7\xaa\xbd\xc9\x6e\xf2\x3d\xc5\xa6\xa9\x3a\x5d\xaa\x6e\x0e\x8b\x1a\xf3\x2a\x37\xe0\xdd\x8a\x7e\xda\xd8\x6b\x82\x16\xab\xed\x79\xab\x25\x1b\xe7\x52\xfb\xb1\xea\xbd\x5f\x2b\x87\x59\x59\x66\x8f\x8f\xe7\xba\x42\x97\xa9\x26\xa5\x96\x9b\x1d\xb3\x4a\xda\xdd\xd7\x86\x39\x16\x4e\x8c\xf2\xca\x5b\x64\x61\xa6\xd6\x65\x6b\xe7\x14\x96\xbd\x86\xbe\x11\x1b\xc5\x3d\x73\x98\xf7\x4e\x54\xbd\x5f\x66\x99\xca\xc8\x52\xdb\x42\x99\xa2\xf0\x8d\x66\xb6\x49\x71\x44\x7f\xfb\xd8\x38\x0c\x6c\x26\x4f\x35\xe6\x4e\x5b\xa7\x2a\xc5\x9a\xde\x9d\x1d\x66\x6a\x97\x9d\xef\x9d\xf3\xa8\x23\xae\x2d\xa9\xfc\xb2\x54\xda\x9b\x09\x4b\xd0\x5a\xb9\x5c\xa4\x58\xaa\x29\xe4\x4a\xd4\xab\x61\x33\x55\x75\xc8\xd5\x18\x1a\x6b\xdc\x47\x61\x21\x0d\x2a\x34\xc1\x0f\xcc\x56\x7d\xdb\xe9\x99\xaa\xd0\xcc\xbc\x14\x5b\x47\x3d\x6b\x99\xda\xf6\x34\xb5\x67\x8d\xc9\x40\xc9\x54\xfb\xf0\xe5\xb9\xbf\x79\x6d\xd3\x54\x57\x59\x58\xfd\x72\x9f\xaa\xd0\x15\x7b\x6b\x1a\x46\x6f\xe7\x88\x8f\x04\xbe\x03\xa0\xa5\x57\xb9\xa8\x30\xa2\x32\x9b\xca\x63\xad\x4f\xb1\xf9\xc7\xfc\xc1\xde\x30\x65\x46\x29\xab\x46\xa7\x5f\x6c\x2a\x44\xa6\x39\xec\x13\xfd\xf5\x64\xb9\x3e\x9e\x95\x47\x4a\xda\x4d\x9b\x46\x7b\xcd\x8c\x97\xfd\xee\xfc\x6c\x11\xa7\xd7\x3c\xb9\x6d\xc9\xed\xac\xb7\x0a\x8f\xfb\xc5\xbc\xbb\x15\x8e\xf3\x62\xa3\xb8\xb1\x54\x6b\x9d\x3f\x65\xd7\xaf\x94\x28\x37\x2b\xc7\x62\x4d\x6f\xd8\xe3\xd6\x6a\x21\xe4\xb3\xbb\x6d\xa1\x94\x7f\x34\x76\x9c\xd8\x29\x9b\x06\xad\xd0\xe3\xba\x75\x7e\x9c\x9c\x47\x54\xa6\x52\x71\x2a\x25\x6a\xe8\xbd\x0d\xe7\x56\x84\xda\xa6\x29\xea\x2c\x54\xf7\x8f\xdc\xe3\x92\xe3\x3a\x1b\x69\x36\x51\x87\xe6\x22\x97\xd7\x96\xd9\xc1\x52\xdb\x6e\x1b\x52\x5b\xda\xa8\xab\x3a\xb5\xdc\xbd\x8c\x0d\x8a\xa1\x68\x99\xa2\xcc\xe6\x60\xe3\xb4\x1e\x9b\x9b\x7e\x65\xd2\x3e\xcc\xb0\x4d\x31\x82\xbe\x25\x74\xd3\x36\x4b\xc4\x71\x65\xbe\x92\xa3\xf5\xb6\x5f\x3e\xe4\x8e\xf9\x82\x20\x39\xdb\xcd\xba\xcf\x9c\x76\xb9\xda\x6b\xb9\xd8\x79\x1c\x14\x0b\xc4\x68\x5b\xea\x8e\x15\xf9\xe5\xd0\xd5\x8a\x93\x9d\x4e\x48\x7c\x5e\x6d\x56\x7a\x06\xbf\x68\xd8\x88\x62\x91\x6f\x6d\xe5\xc5\xaa\x77\x36\xf7\xf9\xe6\x20\xaf\x74\x2b\x8a\x7a\x28\x95\xe6\xe6\xec\x65\x4b\xb2\xdd\xb6\xb0\xa0\x38\xaa\x4b\x8d\x1d\x4d\xa0\x75\x63\x21\x58\x9b\x5a\xbe\xf9\xff\xb1\xf7\x26\x4c\x8a\x2a\x4d\xa3\xf0\x5f\x71\xfa\xbe\xb7\x5f\x1d\x19\x05\xdc\xa7\x0f\xcf\x04\x9b\x8a\xbb\x88\xeb\x74\x47\x3f\x08\x25\xa0\x08\xc8\x22\x6a\x8f\xff\xfd\x0b\x36\x77\xbb\x7b\xe6\x9c\xe7\xde\xfb\x45\xbc\x71\xe2\xf4\x48\x2d\x59\x59\x59\x59\x59\x59\x99\x59\x55\x95\x5e\x21\x3d\xd1\xac\xc5\x60\xc8\xb6\xca\xa5\x1a\xcc\xf6\xab\xf5\xb6\x16\x8e\xf5\x76\x5b\x1a\xe2\x45\x6a\x9d\x6f\x78\xfb\x36\xb6\x49\x76\xfb\x78\xb6\x62\x2a\xf6\x6c\xd0\x44\x55\x61\x32\xab\x66\xba\x19\x2e\xbd\x9e\x64\x0b\x35\x74\x5c\x95\x85\x25\xc1\xef\xe6\x33\x71\xeb\x0c\xd0\x9c\xd4\xc0\x77\xa6\x00\x0b\xc1\xbe\x2b\xf4\x5f\x93\x72\xbe\x23\x7a\x29\x95\xed\x70\x5e\x1e\x66\xb7\x3d\x61\xce\x0f\x79\x74\x59\x11\xf4\x59\x75\x33\xdc\x00\xb7\x8e\x37\x24\x75\x48\x18\x8d\xfe\xda\x75\x17\xc9\x7e\x5b\xce\x81\x56\x65\xdb\x6f\x5b\x48\x9a\x2e\x27\x8d\x89\x99\x74\xc4\x5c\x7b\x17\xee\x86\x2b\xee\x58\xc4\x71\x42\x42\x8d\x1c\xda\x50\x7a\x12\x3e\x4e\x4f\x06\x6a\x7b\xa9\xa8\xb4\x54\xd5\xf2\x95\x4c\x5b\x70\xc7\xf3\x1d\x53\x58\xb7\xe7\x88\x9d\xdf\x58\x9b\x6c\x2f\xa3\x12\xe3\x52\x9e\xee\x77\x89\x72\x1e\x67\x08\x7c\xd9\x19\x57\xb3\x1d\x3d\x94\x3d\x63\x52\xaf\xe1\x38\x35\x04\xc9\xf6\xa4\x36\x51\x0a\xe9\x4d\x21\x9f\xde\x56\x0b\x8d\xdd\xac\xd4\xcc\x8d\x76\x6c\x5d\x2b\x77\x96\x6b\xd0\xb4\x14\xb5\x5b\x75\x07\x61\x8c\x45\xa6\xd1\xa5\x8a\x1d\xd2\xdb\x80\x52\x12\x0f\x77\x9d\x39\xd1\x88\x56\xd7\x1d\xa8\x65\xf9\xfc\x24\x4d\xb3\x03\x02\xef\xab\x38\x4d\xad\xd6\x7a\xb3\x40\x74\x09\xdc\xc1\x25\x67\x57\x5e\x31\x0d\x7b\x39\xaf\x66\xea\x62\xd6\x9d\xd5\xf5\xa9\xd6\x96\xf1\xcc\xae\x98\x5b\x0d\x75\xb6\xb3\x2c\xc9\xae\xde\xae\xea\x14\x8e\xab\x21\xf7\x4c\x5d\x0a\xc7\x73\xf9\x72\x15\x77\x46\x33\xb5\xaa\x67\x66\x00\xb5\xed\x4a\x69\xd4\xa7\x00\x5e\x1a\x2f\xc7\x24\xd1\x85\xf5\x8e\x99\x46\xba\x64\x91\x59\x3b\xa4\x47\x73\x63\xda\xc7\xbb\x64\x1d\x45\x9b\x4b\x3a\xd3\x2e\x14\x07\xf8\xb4\xda\xe5\x42\x1f\x52\x87\xe9\xb4\x74\xae\xb4\x6b\x09\x19\x15\x6d\x83\x02\x87\x0f\x1a\x78\x8b\x70\x66\x5c\xb1\xe9\x07\x92\x54\x76\x5c\xb6\xd3\x2b\x7a\xbf\x75\xba\x51\xa9\x4e\x51\x87\x27\x5d\x97\x5e\x23\xf4\x50\x2e\x9b\x4a\x7f\x31\xc5\x79\x7c\x82\x16\xd2\xb3\xd0\x73\x36\xd1\xb8\xc9\x68\x3a\xdc\x65\x08\x77\x68\xcc\xfb\x7c\x73\x52\x67\xe7\x05\x71\x02\xd7\xd2\x69\xa9\x0f\x38\xd1\x18\xd0\x2e\x8e\x4f\xda\x65\xab\xb5\xa9\xe3\xf3\x6e\x4f\xc2\x93\x38\xd1\xd1\xc7\xc5\xda\x3c\xb7\x45\xdd\x39\x28\x22\x73\x6b\x24\xa4\x43\x9b\x14\xd7\xee\x0e\x39\x6a\x3c\x21\x96\xf8\xa2\x45\x29\xab\x81\xeb\xe0\x68\xab\x56\xf2\x70\xa2\x89\x3a\x6e\x97\x06\xa6\x35\xb3\xd2\x68\x0b\x29\x35\xdb\x25\xa4\x57\x32\xc5\x22\x5d\xe5\x26\x55\x6d\x47\xe6\x9a\xe3\xe5\xac\x4b\xe3\xe4\x36\x5d\x26\x84\xc8\xea\x8a\x53\x78\x4e\xc8\x4a\x4a\x76\x57\x64\xf1\x96\x95\x5e\xe6\xcb\xad\xd1\x40\x2f\x51\x83\x6c\xbe\x56\x41\x08\x82\x72\x16\x2b\xd5\x4d\x0f\xf8\x5c\xa5\xd0\x9d\x3a\x95\x41\x8f\x49\xa2\xfc\x84\xd7\x1b\xa3\x9a\x29\x0e\xe6\xe8\x4e\x25\x4b\x93\x5c\x97\x8e\x3c\x90\xe5\x5d\x3a\xd7\xdd\x49\x83\x49\xc0\xf8\x69\x7d\x24\x6c\xb6\x64\x7e\x38\xe3\x9c\x24\x5c\x1a\x80\xb4\x50\xc8\xe7\x6b\xd9\x01\x87\x57\xfa\xe5\x25\x9e\x43\x92\x03\xbc\x55\x57\xd2\xdd\x8e\xde\x71\xc7\xd2\x18\x5f\xe0\x05\x24\xd7\xae\x66\x7b\x70\xe8\xfb\xc8\xd5\xa9\xea\x7a\x5e\x2a\x35\x9b\xab\x22\xd7\x29\x0b\x19\x53\xaf\x4f\xb4\x4a\x5b\xe7\x90\xe9\x92\x91\x07\x92\x50\x18\xe1\xcd\x20\x4a\xad\x89\x0f\x91\xc1\xb4\xeb\x66\x24\xde\xd8\xb5\x8d\x9a\x98\xac\x8b\xe8\x4c\xc8\x2a\xbd\x76\x1e\x9d\x85\x3e\xa4\x75\x29\xb9\xd4\xd7\x8e\x82\xb8\xfd\x56\x07\x9f\xc3\xb9\x52\x2b\xd3\x1e\x6c\x76\x8b\xac\x34\x28\x64\x3a\x4b\xba\x58\x66\x70\xb4\x9c\x5b\xb2\xab\x4c\x81\x5e\x0b\x85\xfc\xba\x31\x9a\x95\xb3\x26\x95\xeb\xd7\x6a\xb8\x9b\xcd\xcb\xc3\x7c\x63\x42\x4e\x73\x56\xe8\x25\x6d\x88\x9b\xe4\x62\xe7\xc9\x47\x22\x29\xcf\xb6\xa5\x5c\xb2\x94\xcf\x4d\xc8\x46\xa7\x40\x64\xd2\x03\x95\xab\x92\x6b\x8a\xae\xdb\x5d\x99\x5b\x66\xeb\x0a\x29\xe1\x34\x3e\x35\x67\xd3\x21\xd7\xb1\x2c\x0f\xed\x91\x01\x00\x62\x0f\x4c\x7d\x37\x0e\x25\x85\x96\x45\x5c\x0a\xe1\xc1\xd8\x5e\xd4\x67\x96\xdb\xca\xa5\x7b\xa3\x4e\x1b\xae\x51\x9a\xdc\x4e\x67\x55\xbe\xaf\x9b\xf6\x3a\x6d\x65\x11\x74\xb6\x9d\x82\xb4\xd6\x6e\x89\x9a\xa0\x93\x55\x8d\x18\xa8\x8a\x03\x93\xdd\x0a\x31\x54\x3b\xe3\x74\xae\xee\x86\x92\x62\x89\x36\xd2\x0b\xd3\xe9\x34\xf3\xdd\x82\xbe\xcb\xda\x6b\xaa\xbb\x4d\x4e\x27\x99\xea\xae\xad\x24\xa5\x56\x15\xcf\x52\x13\x5a\xc2\xb1\xa0\xf4\x7f\x3f\x6b\x89\xe3\xbd\xe6\x37\x62\x0f\x95\x25\x2f\x01\x2b\xad\x08\xba\xf6\xad\x94\xff\x6f\x28\xf6\xdf\x7e\x4a\xda\xd0\xce\xe2\x0f\x95\x01\xd1\x66\x5d\xb8\x5e\x91\x74\xaf\xa3\xad\x5e\x5f\xa6\xfb\x92\x37\x9f\xfc\x08\x27\x89\xf4\x74\x78\x9c\x52\x96\x55\x21\xeb\xa7\x54\x44\x82\xf3\x14\xe3\x46\xa5\x43\xa6\x37\xb2\x1f\x95\x82\x97\x77\xfd\x85\x18\xce\x7d\xbc\x5e\x68\x57\xdb\x0b\x2f\x59\x1a\xc3\x72\x8f\xeb\xe2\x38\x50\xc6\x38\xce\x90\x34\x8e\x53\x79\x3f\xa3\x2d\xe1\x78\xb5\xef\xe2\x38\xb5\xf2\xe0\xb7\x0d\x09\xc7\x09\xd1\xd5\x1a\x06\xdb\xf1\x19\x65\xa2\xf4\x60\x31\xb4\xa3\xe2\x9d\x22\x9e\x76\xa9\xb4\xde\x40\xb5\x85\xcf\xb6\xaa\xdb\x2b\xab\x3b\x1c\xc7\x1d\xc6\xc5\xf1\x86\xd2\x24\x40\xbd\x9f\x16\x25\x1c\x2f\xd7\xe5\x1a\x4b\x97\xfb\xa0\x65\xda\xa3\x91\x6a\x8d\x9a\x62\x2e\x9d\x81\x77\xc5\x7c\xb6\xe4\x50\xbb\x10\xe2\x72\xc3\x96\x95\x29\x63\xb5\x47\x93\xe2\x80\xd1\xb8\x5a\x79\xdc\x1b\x66\x78\xc1\xa6\x11\xc1\x1e\x2e\x04\x9b\x2e\xe7\x19\x78\xc0\x96\xe9\x21\xae\x2b\x72\x57\xc7\xe7\xdd\xf2\x52\x21\x74\x69\xc8\x33\x34\x4e\x95\xc9\x65\x77\xb4\x50\x6d\x1d\xce\x86\x2b\x70\x1b\xd6\xc4\x21\x93\x9d\x6e\x26\xbc\x3a\xac\xd6\x14\x8d\x1b\xdb\x0b\xb6\x56\x5e\x08\xf6\x4e\x2d\xed\xc4\x52\xa1\x90\x2c\x0a\xd9\x52\xb2\x3f\x77\x14\x63\x4a\x52\xc8\x36\x59\x4a\xf2\xa0\x90\x5b\xaf\x97\x35\x75\x9d\x91\xda\xe8\x98\x75\xfc\xff\x43\x39\xef\x7d\xf5\x1d\xdc\x36\x75\xa2\x95\xd1\x66\xa0\x6e\xf1\xbd\xd1\xd0\x31\x79\x73\xcd\xae\xfb\x26\xa7\xa9\x82\x30\x48\xe7\xf8\x8c\x4a\xb1\x80\xad\x97\x45\x21\x3b\xe1\xf3\xda\x6e\x3d\x44\xa7\x85\x36\x63\xb8\x13\xb9\xd0\xca\x14\x94\xea\x38\xdc\xd5\x77\x76\xf6\x76\xbd\xcd\x2a\x2b\x1c\x86\x39\x4d\x4a\x0f\x47\x55\x64\x96\xa9\x74\xad\xf2\x42\x81\xbb\xd3\x5d\x52\xc0\x07\x08\x3a\x07\xec\x82\x73\xdd\xbe\x88\x6e\x67\xd6\x80\x29\x96\xda\xf3\x69\xc3\x74\x35\xbd\xc6\x34\xdc\x22\xad\xe3\x6d\x06\x2f\x4b\xe1\xbc\x72\x29\x8e\xdc\x08\x78\x8d\xa0\x6b\x8c\xc2\xe0\x92\xae\x30\x24\xce\x48\x8c\xc4\x10\xb5\x8a\x21\x76\x58\x92\x5d\x65\xac\x0e\x49\xe0\x35\x5c\x51\x8a\x5d\x09\x5f\xa4\x3b\x4c\x79\xd1\x23\x88\xee\x5a\xce\x74\xd9\x45\x77\x64\xd3\x24\x51\x37\x42\x0b\x4e\xb5\x34\x35\x73\x72\x53\x59\xc8\x82\x94\xed\x0e\xb2\xe2\x78\x21\xe1\x6c\x99\xe8\x2d\x96\x6a\x7f\xa9\x19\x85\xc6\xb2\x31\x2a\x9a\x6a\x71\x55\xca\xb5\x3b\xf5\x1a\x4c\x75\xc9\x45\x07\x70\xb4\xd0\x35\x71\x0a\x29\x94\x92\x85\x64\xa1\x61\x75\x32\x6b\x3b\x94\x26\x6e\x09\x47\x26\xeb\xa9\x5b\x9e\x75\x9b\x69\x13\x49\xe3\x5b\x2a\x9f\xad\x37\x88\x75\xae\x56\x65\x78\xc6\x65\x0c\x26\x57\x61\xa6\x60\x2d\x16\x51\x13\x66\x32\xed\xe6\x7c\x5d\x9b\xb5\xf5\xdc\x6c\x46\xae\x5c\x84\x96\x19\x56\xed\x76\x95\x0c\x9f\x29\x84\xba\x3a\xcc\xdb\x33\x6e\x40\xa0\x68\x47\x66\x9c\xaa\x5d\xca\xd9\x9a\x46\x98\x85\xdc\xae\xda\x4a\xe3\x15\xbc\xa7\x8f\xe7\xdb\xcd\x60\xc0\x91\x6d\xb2\x33\x6b\x0f\x5b\x25\xab\x32\x73\x40\x52\x9c\xa5\x1b\x59\x33\xb3\x2b\x36\x7b\x95\x7e\x7b\x9d\xe1\x87\x63\x2a\xf4\x3d\xac\xb2\x19\x82\x1e\x8d\xe8\x2e\xdb\x21\xbb\xf5\xdc\xaa\xac\x82\x72\x53\x14\x9d\xb6\xdb\x1c\x64\x86\xf5\x3e\x31\x2a\x0f\xb6\x83\x91\x6c\x2f\x33\x73\x73\x6e\xaf\x5d\x24\xb3\x76\x1a\x88\xd3\x19\x55\x70\xbc\x2f\xc9\x8b\x8a\xda\xe8\x8c\x6a\xa5\xc9\x7a\x12\xea\xea\x8d\x42\xa6\xa8\xef\x8a\x55\xab\x2d\x97\xcb\xa8\x93\xe1\xab\x30\x5d\xac\xd1\x6b\x7c\x28\x83\xa4\x86\x76\xaa\x54\x01\x9e\x14\xd2\x9b\xa5\x20\xcc\x1a\x44\xaf\x5e\x6a\x22\xda\x08\xc6\x57\xda\xb8\xdc\xab\x2b\x44\x61\xc6\x28\xed\x9d\x94\x59\xa0\x08\x11\xee\xcb\xc6\xd5\x21\x22\x35\x17\x26\x92\xa6\x08\x22\x99\xaf\x2e\x2a\x0d\x6e\xb3\x64\x67\xd3\xcd\xac\x94\x5c\x09\xe9\xe2\xd0\xda\x35\x4b\xea\xae\x5c\x2a\x65\xf3\x45\xdb\xdd\x4c\x48\x7c\x95\x73\xa7\x5d\xa5\x49\xb2\xf4\xb0\x43\x2c\xa8\x91\x08\x32\x80\xc9\x16\xc3\x35\x3d\x29\x83\x74\x12\x71\xd2\xc0\x4e\x0b\x19\xbc\x9e\x4c\x3b\xbd\xdd\xb6\xc1\xad\xa5\x7a\xc1\x5c\x26\x6d\x82\xce\x92\x13\x1c\xa9\xb2\x7c\x99\x2b\xe8\xab\x56\xb7\x4e\x92\xa2\xb5\x22\x8c\x3c\x52\xa1\x4a\xa0\x4a\x50\x85\xc2\xc8\xd1\x6a\x48\x5e\x4f\x87\x56\xcf\xfc\x2a\x99\x16\x1a\xb5\x71\xa3\x83\xce\xe4\xdd\xac\x52\x59\xb0\x63\xc5\x25\xd8\x3a\x3a\xd3\x1a\xe9\x8c\xc2\xee\x0a\x69\x87\x4b\x17\xb5\x99\xe3\xec\x50\x6e\xa3\xf2\xc5\xa4\x3c\x62\xa7\xb5\x7c\xb7\x5f\x27\xf8\x86\x53\x5b\x4a\x83\x46\x8d\xad\x3b\xbd\xd0\x4b\xa9\x32\x84\xc1\xdb\x0a\x5d\xc6\x0d\x9c\x64\xca\xd5\x6a\x5a\xc5\xd3\xe9\x56\x75\x9e\xc9\xac\x00\x0c\x3a\xeb\x6e\x6d\x44\xf3\xe9\x9a\x56\xa5\x19\x1d\x27\xc6\x62\x09\xcd\xa5\x77\xed\xce\x2c\x59\x9b\x13\x9b\x66\x8d\x4c\xa7\xb7\x9b\x51\xb2\x32\xe6\x27\xe1\x9c\xa9\xe0\x13\x0b\xc0\xb0\x03\x10\x87\xd8\x6e\x87\xcd\xae\x59\xa1\x55\x71\x30\xa8\x93\xc3\x69\x57\xc2\xf1\x7c\x5b\x03\x52\xb7\x53\x28\x95\x0a\xbb\x35\xdf\xa9\xa2\x52\xc5\x62\x8c\xae\x22\x0e\x1d\x9d\x75\xf1\xb4\x8e\xa6\xa7\xd4\xae\x00\xeb\xb3\x59\xd8\x6b\xad\xcc\xf0\xe9\x99\xb0\xdb\xa1\x9d\x15\x2a\xef\x7a\x53\x76\x61\x35\xc8\x8d\xd5\xe2\xb2\x19\x82\x29\xcc\xc7\xe4\x30\xad\xc8\x62\x5a\x20\xea\xc3\x09\x37\x91\xbb\x42\x79\x50\x5a\x35\xe7\x5d\x58\x5a\xd2\xee\x32\x2b\x2f\x56\x56\x7b\x40\xcf\x29\x5d\x0a\x6d\x94\x99\xc2\xb4\x3d\x5f\xf3\xb4\x4a\xd4\x1b\xca\x6e\x39\x1e\x48\xf5\xe1\x64\x08\x23\xd5\x39\x68\x37\x2a\x3c\x3e\xed\x2b\x86\x5e\xe3\x86\x55\xbc\xee\xf2\xd9\xfa\xd8\x58\x56\xc9\x5a\x9f\x80\xd5\x2e\xa9\xf7\x61\x4b\xa8\xc3\x12\xd9\xac\xb1\xbd\xd5\xaa\x1d\xfa\x1e\xaa\x40\x85\xe9\xd5\xc4\x60\x8c\x32\x33\xa5\xfa\xa0\xe5\xba\xed\x26\xba\x2d\x48\xed\xac\xa8\x0d\x65\xb3\xb7\x1b\x94\x09\x8a\xde\x35\x8d\x45\xbf\xd1\x6a\xc2\x59\x82\x91\xca\x56\x0f\x91\xa4\x4d\xab\xbf\xab\x0f\x7a\x0a\xc9\x5a\x34\x41\xf7\x69\x3d\xf2\xb8\xb0\x2b\x74\x9d\xab\xb6\x46\xf3\xa6\x88\x14\x8d\x5e\x75\x00\x26\x9a\xe3\x68\xca\x84\xd7\x0d\x86\xe9\x12\x38\x23\x6b\xfd\x95\xb4\x9e\x22\x76\x3f\xd3\x26\xea\x65\x65\x48\x8a\xcd\xad\x88\x13\x43\xa2\x9a\x9c\x32\x3a\xb9\xc6\x33\x6c\xab\x5f\xaa\x87\x7a\x30\xd5\x56\x78\xb9\x82\x8e\x70\x1c\xdf\x59\xbb\x76\xb6\x55\x5d\x4c\x98\x96\x50\xc7\x1b\x8e\x28\xb2\x55\x25\x33\x18\x96\x59\xd0\x10\x86\xdb\xa2\x28\x6f\xda\x39\xbe\x6c\xac\x17\x32\xbf\xa4\x72\xd5\xb2\xdb\xed\x3a\x3d\x5b\x72\x1b\x1d\xc3\x6a\xef\xf8\x30\x16\x3f\x57\xa1\xd2\x5b\x2a\xdb\xa4\x5c\x74\x3e\x20\x4d\xb2\x59\xed\x2d\xfa\xee\xd2\xb5\x32\x0b\xb2\x89\x53\x14\x5c\x21\x27\x86\xc2\xab\xcd\x4a\x66\xaa\xf0\x59\xdb\x1c\x58\xb5\xe4\x66\x51\xc3\xeb\xbd\x7e\xcf\x6e\xc2\xfa\xd0\xea\x75\x4d\x89\xab\x88\xd1\xaa\xd0\x1c\xa9\x2a\xbd\x04\xbb\x72\xba\xca\xca\xbb\x24\x99\x9d\xe6\xe5\x2d\x2d\x99\xda\x76\x3e\x68\x34\x76\xb2\x20\xeb\x88\x52\xb6\x28\xa5\xa2\x2f\xdb\x3b\x3b\x49\x59\xe9\xe2\xae\xd0\x61\x76\xcb\x19\x9b\x29\x81\x0e\x22\x0e\x06\xbd\x36\xad\xcc\x59\x38\x8c\x9b\x63\xad\xb2\x29\x21\x4c\xcf\x58\x2e\xf4\x6e\x49\xe0\x9c\xd9\xa6\x6e\x12\xd3\xea\x52\xef\xeb\xb5\xc9\x70\xa9\x76\xa8\x11\x3b\x91\xc4\x26\xd5\xb2\x36\xc5\xaa\x33\x9a\xda\x9b\xcc\x6e\xbd\x96\xd9\x6e\x9d\x13\xcb\xcb\x46\x17\x27\x75\x0e\x15\xdd\x71\x29\x94\x14\x33\x76\xa8\xae\x71\x64\x89\x6c\x6a\x5b\x94\xa1\x25\x69\xd1\x31\xb5\xfe\x7a\x44\x94\x9a\xb0\x5a\x59\xf0\xca\x60\x93\xdc\xb0\x69\x9c\xea\x3a\x1d\xb6\x8b\x1b\x06\x3f\x86\x6b\xb3\x5d\x9b\x20\xe0\xb9\x5e\xc6\xad\x6c\x7b\x3b\xcd\x95\x68\x78\x5c\x30\xc2\xb1\xce\x52\x14\x25\x2e\xdd\x6c\xa1\x21\x6d\xa5\x6e\x75\x3a\xb5\x0a\xcc\x3c\x5b\x33\x2a\x4d\xc6\x9d\x57\xd8\xb2\x50\x86\x37\xe5\x9a\x40\x89\x34\x6c\xf4\xa7\x99\x71\x17\x91\xc7\x43\x8b\x2a\xf7\x36\xb3\x59\x61\x2d\x55\x9b\xdb\x76\x66\xb1\x68\x56\x14\x1e\x0f\xbd\x19\xbb\x9e\x80\xbb\x3b\x02\x1e\x0f\xd4\x25\xee\x54\xf5\xcc\xae\x5b\x5d\xd4\xf9\xbe\x61\x70\x55\xbc\xdf\x25\x1a\x5d\x0d\x1f\x2f\xb3\xb5\x2c\x32\x03\xa4\x2a\xe2\x15\x50\x05\x68\x99\x27\x57\xa5\x99\x38\xea\x36\x3b\xc5\x95\x9d\xb3\x88\x7c\x5b\xad\x4c\x43\x88\x59\x63\x41\xb8\x3b\x42\xaa\x54\xf5\x7a\x53\x14\x98\x4a\x11\xa5\x5d\x98\xad\xe7\xfb\x2b\x6e\x53\xc5\x6b\x74\xb5\x47\x90\x8d\xe5\xa0\x4a\xf2\xeb\x91\xdb\x17\xdc\x8a\x31\x6a\xd6\x98\x1e\x3a\xd6\x06\xb2\xb9\x82\x11\x01\x6f\x77\x37\x0b\xb2\x30\x6e\x86\x3b\xbd\x9c\x92\x5f\xbb\x4a\x3e\xd7\x18\x64\x6d\x93\xa9\x23\x70\xa5\xb6\xad\x36\xd6\x06\xc7\xb1\x30\x35\x99\xa8\x35\x9b\xa6\x9b\x1b\x36\xc9\x0c\x6a\x35\xae\xa7\x96\xf1\xb2\x38\x69\x64\x0b\x73\xbd\x2c\x59\xae\x49\x4f\x32\x23\x38\x4f\xad\x33\x00\xaf\x16\xc2\x28\xb7\xc2\x60\x59\x4c\xdb\xb0\x55\xd4\x9a\xaa\x58\xea\xcc\x09\xb9\x4a\xb6\x90\x4a\x41\x54\x97\xd9\x12\x2c\x65\x4c\x66\x47\xda\xe9\xdc\xb6\xca\x0c\x15\x3c\x27\x6e\x2a\xdd\x5c\xb5\x2d\x78\x12\xd0\x19\x57\x26\x2b\xc7\xe5\x7a\x2d\x6e\xd4\xc4\x75\x69\x10\x6a\xad\x3d\x67\xe1\xe0\x23\x57\xdd\x95\xfb\x46\x8f\x25\xb7\x2a\x22\x6c\x92\x03\xbd\x4d\xec\xd2\x13\xa5\x94\x59\x6f\x01\x45\x23\xf9\xe9\x06\x51\x9c\x86\xc5\x58\xed\x5e\xa3\x37\x24\x1d\xd7\xa5\x65\x98\x2f\xc9\x69\x67\x43\x59\x49\x54\x1a\x6a\x1b\x6a\x1e\x4a\xb3\x42\x49\xec\xd6\xe7\xb2\x2a\x65\xa7\x13\x35\xbd\x5e\x28\x3c\xb5\xb4\x17\xeb\x51\xab\xac\x2c\x97\x7d\xb6\x59\xcb\x0e\xc6\xed\x05\x61\xf4\x54\xb1\xe7\x48\x25\x84\xa3\xc6\x0a\x43\x89\x23\xd7\xa6\xd7\x1c\xa0\x5a\xea\x66\xe2\x66\xb6\xe9\x4c\xb6\x43\x85\x1c\x2e\x3a\x0d\x52\x49\x37\xb3\x49\xd0\x85\x27\x76\x4e\x20\x45\x06\xa9\xa4\xcb\xf5\xf2\x46\xca\x2d\x9b\x74\x89\x2d\x98\x6c\x73\xc8\x29\x69\xdc\xde\xb5\x3b\x1a\xdd\x6a\xd4\x47\x03\xd4\xde\x9a\x78\x52\x2d\xaf\x76\x8b\xfa\x22\x43\xb4\x18\x78\x91\x21\x86\xa1\xfe\x98\xb3\x5c\x6a\x84\x17\x5c\x75\x09\x4f\xcb\xf4\x82\x6e\x53\xd3\xf9\x6e\xd8\xd9\x2d\xa9\x15\xe7\x66\xab\x94\x36\x9d\xef\x72\x05\xcb\x15\xab\x42\xdd\xc8\xe5\x93\x73\x1b\xa4\x17\xf0\xc0\x31\x6d\xb6\xcf\x68\xbd\x4e\x6d\x44\x65\xc6\x25\x78\x3c\x1b\x09\xa1\x5d\x7f\x62\x17\x98\x6c\xc9\x4e\x37\xb3\xb9\x46\x2d\x37\x91\xca\x05\xb5\x89\x4f\xad\x56\x89\x98\x29\x23\x3a\xe7\xd8\xf2\x88\xde\x95\x89\x7a\x92\x33\x70\xd9\x1c\x38\x1a\x8e\xd3\x80\x36\xb2\x54\x37\xab\x6f\xb7\x5d\x26\x39\x5b\xf4\xe6\x5a\xda\xae\x58\x93\x70\x7f\x3b\x14\xf0\xd2\x3c\x33\x9a\xaf\x17\x69\x78\x6c\x83\x02\xba\xa6\x8a\xe5\xed\xc4\x4d\x8f\xd1\x01\xef\xb0\x16\x8e\x67\x8b\x19\x66\x49\x69\x49\xbd\x8c\x16\xa9\x46\x7a\xb7\x2a\x6b\x19\x57\x53\xd2\x1b\x81\xee\xf5\x74\x6e\xbd\xa0\x37\x1b\x91\x20\x5a\x8a\x1a\x40\x2c\x6b\x24\xae\x36\x88\x66\x33\x59\x95\xc5\x45\xa6\x6a\x73\xb2\xce\xd0\x08\xe7\xa8\x9c\x43\xa9\x96\x80\x4b\xb8\xd3\xda\x90\x78\x7e\xd4\xca\x55\x3b\xc9\x0e\x5f\x94\xc1\xd0\xaa\xe2\x52\xaf\xbb\xc5\xe1\xc9\xae\x6c\x16\x99\x4a\x55\xae\x92\xce\x02\x44\xab\x82\x38\x5b\x36\xdb\xc6\xb4\xe8\x4a\xea\x16\x46\x91\xf9\x68\xc1\x59\xf3\xf1\xb2\x44\xc2\xe3\x79\xab\xd6\x93\xca\xeb\xaa\x83\x77\x0a\xab\x69\x13\xcf\x70\x86\xe0\xe2\x3a\xa2\xeb\x54\xdb\x75\xe7\x75\xae\x8a\x76\xa9\xb5\x93\x56\xa5\x8c\x4a\x6a\x6e\x68\x09\xcb\x97\x84\x8d\xd0\x33\x6a\x42\x51\x9c\xd4\x3a\x12\x4e\x02\xe0\xe0\x63\x59\x9a\xc1\x1d\x31\x5f\x9b\x6f\x9b\xb8\x39\xca\xa5\x2b\xea\xa4\x68\x49\x68\xa6\x9f\xe3\xc8\x59\x92\xee\xd9\x70\xb7\x4c\x92\x65\x65\x38\x16\xca\x48\x06\x59\x70\x59\x55\x0e\xad\x4c\x06\xd5\x1b\xe1\xcd\x6d\x92\x5e\x21\x1d\x7c\x34\xc6\x99\x71\x95\x70\x4a\x6d\x7f\xbe\x80\xb5\xa0\x36\x67\x85\x2d\xbe\x28\x14\x73\xbb\x9e\x33\x2a\x2a\x85\x71\xbe\x38\x69\xeb\x24\x9e\xdf\x88\xc3\x62\x0b\x4d\x3b\x59\x8e\x15\x51\xd1\x2d\xe4\xca\xa1\xa7\xa0\xd3\x59\x69\x4e\x86\x5a\x3a\x85\x56\xb6\xc4\x5a\xbb\x61\x43\xd9\x56\xd6\x52\x85\x9d\x35\xb3\x85\xea\xbc\x25\xee\x96\x52\xbe\x9f\x5f\xb0\x0d\xdc\x82\x51\xb7\x82\x8f\x5c\x05\x10\xae\x24\x49\x3a\xdf\xec\x53\x05\x9d\xc9\x17\x66\x4b\xba\x3a\x9d\xaf\xc3\x88\x46\x69\xb6\x34\x09\x6e\x97\x29\xe5\x66\x6e\x6e\x61\x35\xea\x75\x34\x6f\x2c\xa5\x5d\x1b\x76\x49\xab\x2c\x4c\x72\x85\xfc\x68\x03\x38\x63\x22\xee\x36\x3c\x39\x73\x92\x55\x7c\xc4\x4a\x79\x34\x0b\x7a\x1c\xbc\x93\xd3\x22\x91\x2f\x8f\xa8\x79\x3d\xc3\xf5\x43\x2d\x65\xe0\x76\x59\xba\xaf\xdb\x30\x5e\x26\x69\x7a\x93\xe9\x17\x27\x3a\x21\xd1\xf8\xc0\x15\xf5\xbe\x26\x83\xb2\x36\xac\x34\x76\x36\x8e\x6c\xb3\xdc\x3c\xbd\xdb\x90\xcc\xb6\xef\x32\x49\xb0\xb4\xf8\x8e\x96\xd3\xca\xc5\xd5\x76\x5d\x2e\x5b\x30\x95\x26\x43\xd9\x03\xe7\x26\x9a\x92\x99\x1b\x2b\xa4\x39\x4e\x27\x69\xb2\x30\xd7\x7a\x52\x7a\x96\xcc\x49\x44\xbe\xb4\x1d\xb9\x69\x42\xd0\xc6\xc4\x8c\x62\x40\xd3\x1c\xf3\x8d\x61\x1e\x27\xf1\x71\x79\xb9\x9c\x1b\x4a\x61\xbc\x32\x96\x24\x3b\x6c\xae\xd0\x25\xdf\x90\x98\xd0\xc2\xbd\x2a\x0b\xfd\x6e\xa1\x49\x9b\x46\x6e\xb2\x59\x2d\xb5\x09\x5c\xdb\xc0\x49\xa6\x36\x6c\x11\x8c\x99\x5b\x19\xd6\x4e\x2d\xe6\xd0\xf4\xcc\x35\x0a\x99\x49\x8b\xcc\x74\xdc\xa5\x5c\x27\xbb\x78\x7f\x48\x56\x70\x27\xd7\x74\x5a\xaa\xa9\xd0\x5d\x7a\x9b\xdf\x85\x71\x4a\x65\xde\x69\xc8\x55\x29\xdf\x25\xd5\x16\x98\xdb\xa0\x34\xee\x32\xa4\xd0\x40\x94\xcc\xa2\x98\xce\xf6\x6b\x62\x7a\x3a\x99\x54\x69\xae\xe2\x56\xc8\x71\xbd\xb8\xdd\xcd\xdd\x8c\x9c\x5d\x57\xcb\x4b\x7c\xb4\x5d\x22\x25\x71\x33\x6b\xd1\x30\x6d\x0b\xab\x45\xb8\x9f\xe1\x06\x1d\x4e\x14\xe1\x55\x19\x37\xd8\x4e\x8b\xa7\x6d\x61\xd3\xc5\x15\x1c\xe6\x80\x4a\x82\xfa\x9a\xa5\xb8\x9e\x3e\x1a\x72\xe3\xda\x34\x27\xeb\x85\x1c\xbb\x82\x17\xb8\x31\x75\x29\xd3\x90\xcd\x36\x4b\x8b\x30\x63\xe4\xf0\x36\xe1\x6c\x65\x25\x5c\x15\xaa\x96\x6d\x1b\x44\x96\xd0\x65\xa5\xbf\x5c\x4d\x0c\x09\xa8\xd9\xe6\x06\x59\xe9\x8e\xa9\x8d\xc9\xa9\xd0\x97\xb2\xae\xd1\x10\x84\x3e\x6f\x0d\x26\x03\xb2\x81\xd7\xfa\x13\xb9\xce\xf7\x39\x23\x27\xaf\xb9\x21\x69\x8c\x34\x5c\xa0\x99\xb6\x55\x81\x43\x0b\xce\x6c\xe3\x0c\xc6\xec\x2a\xdf\xc4\x33\xe2\x28\x57\x73\xc8\x8a\x9d\xdb\xc8\x34\xbe\x1a\x2e\x56\x59\x86\xcc\x36\x93\x95\xf1\x74\x00\xa7\xa7\x8d\x5a\x5e\x2e\xa1\xe2\x52\xe5\x6b\x4c\xa5\xc4\xc9\x8b\xed\x6e\x4a\x97\xa4\x2e\x6c\x8e\x89\xbc\x6a\xf4\xa4\xbe\x10\x8e\x35\xc9\x15\x49\x58\xeb\xee\x3a\xfd\x35\x49\x2d\x50\xbd\xa0\x6c\xad\x7e\x1f\x96\x96\x56\x59\xe8\x91\xa4\x56\x9b\x58\x06\x58\xe5\x09\xbb\xd3\x5f\x64\xaa\xbd\x8d\x59\x21\xe5\xfa\xc4\x58\x3a\xe9\x3e\x2a\xb9\x75\xab\xd9\xd1\xd1\x49\x9a\x4e\x66\x4a\x85\xc8\x66\xde\x28\x37\xb2\x45\xba\x59\x2d\xaf\x2a\x62\x3a\xbd\x81\x17\xd9\x92\x34\x76\xd9\xe4\x60\xd8\xaf\xac\x97\x78\x77\x43\x21\x68\x65\x32\x91\xf4\x0d\x62\x1b\x8a\xd3\xe3\xf3\xd5\x36\x59\x63\x6a\x45\x67\xb9\xd1\x73\x32\xdd\x68\x6f\xd6\xbd\x72\x87\x56\xc2\x59\xc8\x6c\x04\x36\xa7\x88\xa3\xd6\x6e\xb0\x5a\xb9\x5a\x77\x44\x4c\x24\xd9\x2c\x9a\xb9\x65\xba\x3e\xad\x4a\x9b\x9d\x95\xd4\x5b\x34\xc2\xa5\x2d\x62\x2d\x4b\x92\x82\x0b\xdb\xb6\x99\x24\xd2\xe9\x64\x79\xdb\xdf\x59\x33\x0a\xa6\xd9\x66\x81\x2d\x33\x8b\x79\x64\x85\x9f\xa3\x44\x8b\x5b\x4a\x9a\xdc\xef\x8f\x04\x11\x6d\x65\x7b\x06\xd1\x37\xb2\x64\x9e\x1a\x54\x71\x62\xc9\xd3\x66\x2e\x59\x6c\x24\x4d\x5b\xa9\xa8\x1c\x4e\xf5\xeb\x59\xa6\xb8\xa8\x15\x47\x80\xa2\x80\x95\xae\xe3\x6e\xa6\xb0\xeb\xf4\x7b\xe6\xb8\x1f\xae\x5c\x39\xdb\xa8\xb5\x6b\x2b\x3a\xcb\xc9\xed\x1e\x4e\x6a\x49\x76\x87\x7b\xba\x61\xda\x28\xe0\x4b\x89\x41\x0d\x79\xb8\xd8\x02\x22\x3b\x59\x75\x15\xdc\x2a\x4f\xec\x45\xb9\x3d\x61\x92\xb8\x5e\xe8\x49\x5b\x7b\x20\x81\x9a\xde\x1d\x10\x8b\x59\xb2\xca\x86\xdc\x63\x6e\x06\xf2\x80\x28\x57\x56\xd5\x39\x9a\x55\x96\xbd\x4e\xc6\xb0\xca\x7d\x7c\xab\x8e\xc9\x1e\x6d\x0d\x7b\x94\xe8\xa0\xdb\x62\x7e\xd8\xea\x3a\x0b\x67\x6b\x2f\x19\xd1\x1d\xac\x32\x76\xaf\xa6\xe7\x76\xa6\xcd\xc0\xb5\x7e\x73\xae\xe0\xb5\xdd\xd4\x24\xd2\x91\x8d\xb2\x38\x66\x35\x72\xd8\xd2\x1a\xed\x56\xa6\xe6\x94\xb7\xb4\xc2\xcc\x8b\xf8\x04\x68\xa5\x81\x00\xbb\x0d\xb8\xb6\x60\xed\xa6\x54\x51\x67\x73\xaa\x4a\xb8\x54\xaf\x51\xdf\xb9\x46\x41\x64\x27\x8d\x24\x3f\x56\xd6\x13\x17\xc7\x8d\x89\x3a\xd4\x22\xdd\xcc\x86\xb9\x8d\xd3\x1b\x13\x75\x5d\x20\x71\x84\xa8\xf7\x37\x8c\xd4\x24\xb6\xb0\xcd\xf7\xf1\x36\xa9\x0c\x94\x85\xa2\xf6\x17\x8a\x06\xa7\xcb\xd3\xb2\x46\xef\x32\x9b\x4d\xb7\x51\x69\x4a\x79\xd3\x00\xcb\x51\xc9\xe0\xbb\xcb\x4c\x61\x83\x52\x6a\xa3\x11\x46\x5d\xf6\xf3\xcc\x84\x61\x38\xb7\xdd\x27\x4d\x9e\xc6\x07\x34\xab\xdb\x6c\x56\x10\x74\xaa\x5b\xc3\x99\x02\x55\x21\x4c\x6b\x53\x6c\x76\x32\x7a\x52\x5b\xa7\x07\x25\xb1\x3a\xcb\x10\xb8\x80\x30\x73\xc9\x69\xc3\xb0\x98\x6c\x1b\xd5\xd9\x6c\x6c\xba\x39\x25\x3c\x81\x00\x97\x86\x4d\x25\xe7\x8a\xd9\x0e\x59\xec\x36\xa8\xea\xa8\x5a\x59\x32\x55\x13\xa9\x14\x45\xc9\x6a\xb7\x25\x7d\xdb\xae\x11\xa5\x42\xa6\x31\x67\xd3\xf5\x5e\x63\x5c\x1e\xdb\xce\x76\xb9\x19\x93\x93\x76\xbf\x6f\x37\x8b\x3b\x54\x49\xbb\xd9\xa2\xd0\x91\xb8\x90\x7b\x9a\x1d\x8a\xca\xe6\x41\x77\x84\x2c\x2b\x85\x7c\xb1\xb7\x5c\xad\x92\x2b\xbc\x4c\xb3\x6d\x97\xe9\xf6\xf0\xde\x64\x20\x12\xb8\xd2\x65\xba\x92\xc4\x14\x57\x85\xa4\x90\xc6\xe7\x3d\x92\x96\x26\x84\xb4\x4c\x73\xd2\x24\x63\xd9\xfa\xba\xbe\xcd\xb2\xd6\x2a\xb2\x01\x10\xcd\x79\xdb\x05\x6c\x4f\x19\xc9\xad\x76\xd9\x65\x15\x98\x5c\xd6\xa6\x32\x8d\x12\xdc\x32\x5d\xb7\x8c\x56\x17\x36\x04\xb3\x39\xe0\xfb\x0b\x6a\x9e\x86\x67\xda\x4e\x82\x3b\xb0\xae\x2e\x56\xb2\x95\xcc\xf2\x05\x64\xa3\x03\x1c\x6e\xd4\x49\x27\xec\x35\x63\xca\xcb\x19\x6a\xd6\x76\x02\x5f\x12\x54\xb8\xbf\xcc\xf4\xe1\xd5\x44\xc7\x57\x2d\x77\x80\xe6\xf0\x5e\xc9\xa0\x45\x0d\x47\x19\xc9\x69\x66\x17\xe5\x06\x59\xca\x4d\xc7\x8d\x8e\xa2\xd4\xc6\xcc\xdc\xa6\x99\x62\x86\x90\xa4\x61\x9d\x37\x3c\x5e\x0b\xa3\x0f\x32\x34\x6a\x6f\x14\x4d\xed\xd4\xda\x9b\xd2\xae\xb8\x28\xe0\x53\xa2\xcf\x11\x3d\x76\x61\xaa\x45\x7b\x9d\xac\xf4\x45\x8a\x21\xd5\x85\x65\xc8\x65\x6b\xdd\x48\x4e\x78\xa1\xde\xd0\x10\xa9\x91\x19\xc0\x14\x43\x9a\x6d\xa7\x3b\x5a\xf7\x74\xb9\xdf\x0a\x75\x33\xd4\xd4\x76\x59\xa4\xbb\x12\xc4\x4e\xcb\x1e\x58\x6c\x85\x26\xa6\x6d\x49\x9b\x8a\x8b\x39\x37\xa8\xf7\x27\x43\x69\xb8\x62\xb5\xec\xac\x8a\x13\x6d\x7d\x40\x08\x2d\x1a\xdd\xd9\xd5\x8e\xa6\x37\x0a\x2d\x7c\x56\xc5\x5b\xd5\x5e\x51\xec\xec\x68\xd8\xda\x84\xdc\x23\x5a\x4c\x63\xb5\xb6\x2a\xe6\x48\x17\xe8\x0a\x3b\x1e\x95\x37\xf9\xc2\xac\xbf\xcb\x6d\x0b\x68\x09\x14\xc6\x6e\x16\xa7\xe6\xce\x72\x8a\xe2\x35\x7d\xb8\x42\x37\xa4\x6d\xba\xa2\x0c\x73\x5d\x76\x57\xc8\x8e\x97\x0d\x63\xc2\x94\xaa\x8a\x5d\x9d\x73\x64\x68\x23\xe5\xe1\xfa\x04\x6f\xd5\x2b\xfa\xa8\x58\x54\xfb\x7a\xd2\x20\x97\xaa\x4c\xe0\xbd\x71\x73\x89\xcf\xe9\x42\x9e\xe6\xb3\xa4\xde\xda\x02\x93\x1a\x3b\xfd\x49\x95\x1d\xb9\xca\x0a\xed\xf0\x5a\xd1\x4c\x6f\x5b\x0b\xa1\x89\x2b\xab\xf5\x3a\x69\xb8\xe5\xf2\x30\x3c\x2f\x60\x74\x57\x53\x35\xaf\x58\xfc\x4a\x1f\x0c\x6c\x7e\x6e\xd5\x66\x04\x6c\x28\x23\x97\xa4\x15\x51\xde\x56\x8d\x7c\xba\x53\x35\x1c\x51\x9b\x59\x45\x89\x5a\x66\xa7\x70\x61\x33\x4a\x6e\x46\x84\x46\x0f\xb3\x99\xf9\x1a\x6d\xcf\xf5\x42\x26\x8d\xc2\x9b\x64\xa8\x9b\xed\x84\x6c\xa1\xbc\xcd\x37\x5b\x69\xa6\x3d\x9a\x24\x27\x1b\x62\xcd\xd0\x79\x00\x48\x7d\x3d\xd5\xe0\xf2\x68\x37\x1f\xad\xec\xac\x63\xd2\xd6\x40\xad\x58\x9d\x6e\xb1\x55\xae\x76\x60\xb6\x93\x16\xc1\x2e\x6b\xad\xd3\xa5\x4a\x71\xe2\xd4\x8b\xee\x0a\x75\xc2\xe8\xd5\x8d\xbd\x60\xad\x64\x36\x2b\xb4\xac\x02\xc8\xd8\x79\xa4\x45\x8f\x46\xee\x80\x19\xf4\xb7\x00\xd1\x93\xb3\xa4\xa6\x8d\x2c\x0e\x99\xa8\xa6\xab\x54\x4b\x62\x7d\xde\x30\x92\xdc\x64\x20\xeb\x6c\x6b\x9b\xae\x4d\x73\x1d\xb3\x33\x57\xb7\x33\x7c\x47\x29\xa1\xb6\x37\x43\x8b\x6b\x89\xca\xe2\x83\x24\xee\xf4\x72\xe2\x2a\xc7\x3b\x99\xb2\xd3\x4b\x33\x30\x43\xe4\x89\xcc\xb4\x59\x68\x14\x5c\x6b\x98\x61\x6a\x3d\x62\xbe\x9e\xa2\xaa\x05\x4b\xd3\xcc\x58\x62\x94\xed\x12\x96\x95\x74\x8b\x59\x12\x69\x23\xd7\x34\x14\x38\xb4\x49\xb5\xcd\xa4\x0b\x88\x95\x93\x24\x55\xa5\x3a\xb6\x37\x69\xd3\x21\x8d\xca\x70\xe2\x64\x84\x36\x95\xee\x09\xc0\x81\x8b\x8a\xde\x57\xca\xb2\x30\x42\x50\xb3\xca\x6d\xe1\x2e\x3d\xe2\x44\xb7\x3e\x68\x0c\x0a\x44\x3a\x83\xe6\x6d\x3b\x33\xab\x6a\xeb\x65\xb8\x77\x65\xbb\x4d\xa7\xb8\x86\x33\x3c\x4e\xb3\xcc\x9c\xdb\x92\x39\x06\xb7\x6b\x15\x51\x4a\x5b\x85\xf6\xbc\xb1\x9c\x56\xc7\xc4\x68\x80\x96\xb8\x81\x9d\x77\xca\x03\x02\xc9\x0c\x9a\xa3\x89\x5d\x76\x4d\xc6\x6d\xb6\xf0\x8c\xb8\x9e\x0a\x95\x0d\x8f\x97\xc7\xdd\x70\xaf\x50\x6a\xd0\xb9\x2e\x5e\x66\x0a\xad\x45\x49\x90\x44\x7c\xdb\x06\x0d\x94\x2c\xab\xbd\xe2\xa8\x63\x4e\xa9\xbe\x3e\xe1\xc8\xac\xca\x80\xcd\x80\xa9\xb9\x70\xa7\xc4\xb8\x54\x4f\x20\x06\x9b\xdd\xa0\xcd\x95\xba\x92\xb4\x9e\x2a\xce\x7a\xd8\x9e\x8f\x4b\x5a\x38\x0b\x3b\xc4\x66\xd9\x20\x61\x7b\x2a\x24\x2b\x88\x8b\x1b\xb5\xe1\xb6\xda\xe4\xda\xd3\x8d\x30\x77\xc7\x44\x12\x6f\x48\x04\x47\xb6\x8a\xc9\x21\x37\x36\x78\xb8\x8b\x77\xfb\x1c\xe5\xc0\xa0\x9a\xdc\x0a\x4b\x23\x47\xb4\xed\x6d\x65\xd0\x5b\xc2\x66\x96\x50\x42\xfd\x31\xef\x8e\x97\xb5\xd5\xd8\x6d\xb5\xb8\x19\xc3\x8f\x2c\x0b\xcd\x14\x28\x9a\x61\x07\xcd\x71\xb9\xdf\x65\x68\x4d\xa3\xdc\x76\x85\x70\xf5\x4a\x69\x36\x43\x4a\x9d\xa4\x3d\xe2\x72\x28\x31\x51\x06\x36\xc9\x36\x7a\x79\xaa\xe8\x36\xe1\x1d\xbb\xc9\xcf\x6a\x61\x34\x4c\xba\xbd\x2b\x95\x90\xb9\xd8\xde\x19\x99\x91\x81\xf2\x25\x65\x50\x57\x39\x95\xdf\x76\xcb\x6c\xb1\xd4\x19\x77\x38\xa3\xe8\x36\x6a\xcd\xad\x95\xb5\x19\xbb\xe5\x8c\xab\xb9\xe4\x6c\xb5\xde\x94\x0a\xe3\x2a\xd3\xed\xc2\x23\x61\xd6\xb7\xd9\xe5\xa2\x2f\x69\xa1\x95\xab\x90\x2c\x8a\x0e\xa7\x23\x26\x5f\x69\xcf\x11\x5c\x25\x60\x4e\xc3\xdb\xcb\xd2\x38\xdf\xce\xe4\x46\xb5\x5c\x13\xb7\x16\x8b\xa2\x6a\x17\xa7\xcd\xf6\xb2\xb9\x6b\xbb\x55\x7a\xec\xd3\x73\x2b\xb6\xb5\xf9\x98\xcd\xeb\x64\x9e\xc0\xa9\x7a\xce\xa5\x42\xee\x01\x45\x11\xa5\x06\xf9\x5c\x5b\xca\x88\xcd\x7a\xa5\xef\x38\xfd\xbe\x40\xae\xcb\x0b\xa1\x83\xa7\x3b\x2e\xc9\x6a\xe3\x36\x85\xd7\x74\x3c\x83\x8b\x2d\x76\x8b\xf0\x5a\x05\x27\x48\xbc\xd0\x2e\xad\xab\x5e\x9e\x68\x6e\x8a\x59\x4b\x94\x08\x67\x1a\xce\xeb\x9c\x39\xce\x31\x24\x9f\x5d\xa6\x8b\xbd\x05\x02\xb4\x26\xd7\x85\x61\x1c\x95\x2a\x45\x62\x5a\x6f\x0b\x24\xb1\x34\x76\x12\xde\x93\xe6\xd9\x6c\xb3\x90\x4c\xeb\x7c\x6d\x36\x32\x96\x33\x36\x63\xe7\x36\x5b\xb8\x80\x0f\xad\x7e\x59\xee\x33\xac\xba\x05\x21\x44\xa1\x2d\x88\xa0\xd4\x36\x06\xd5\x9a\xc4\x0f\xb5\x5c\x99\x77\x65\x69\xd5\x98\xc9\x8b\x65\x7b\x0e\xd0\xbc\x36\x59\xb2\xdb\xcd\xa8\x6b\x83\xce\x72\xd6\xcf\x6c\x06\x7a\xd9\x58\x4e\x25\xb4\x33\xb6\x9b\x43\xc4\x34\xf3\xc9\x0c\x00\xa3\x9c\xd1\xe6\x57\xa1\xc4\x95\xb6\xc3\x5a\x4f\xae\x2e\x6a\x25\x63\x83\x96\x0a\xec\x48\x14\x35\x4b\x51\x86\x53\xd2\x75\x1a\xeb\x5c\x5f\xa9\x95\xf8\x51\x7a\x3a\xee\x11\x2a\x5d\xd0\x06\xb9\xf6\x18\xa0\x22\xbe\xa2\xf0\x02\x5a\xd8\xa9\xa5\xac\x95\x63\xf0\x49\x8f\xd1\xeb\xeb\x52\x38\x67\x98\x65\xd5\x46\xcd\x56\xc1\xa0\xac\x42\x2b\x9b\x56\x73\xc3\x01\xd3\x06\x16\xeb\x56\x8b\xdc\xd4\x42\x57\x92\xbb\x1e\x29\x79\xa7\x6e\x96\x3a\x44\xd2\x29\x3a\x73\x7d\xd9\x03\x75\x55\xd7\x26\x15\x98\x5d\xb2\x6a\x1e\x17\x3a\x55\x81\xc3\xbb\x64\x31\x8a\xd8\x49\x3b\x15\x7a\x9a\x63\x3b\x9c\x2e\x67\xf3\xf3\xcc\x54\x26\x37\x42\x46\x96\x32\x25\x42\xd2\x4a\xda\xd4\x72\x3b\xc6\x80\xa8\xe7\x32\xb4\x39\x61\x51\x7b\xd5\x1e\x64\x72\x45\x30\xd8\x64\x47\xa8\xbb\x63\xd9\x0d\x5a\x47\xe0\xcc\x0a\x41\xb7\xf4\x28\xb4\x7c\xe4\x88\xb5\x60\x6e\x4b\x25\x26\x0b\x5c\x87\xc9\x2d\xc6\xa2\x35\xcf\xf7\x98\xf6\x66\x90\xd3\x97\xa3\xb6\x6b\xc8\xbd\xbc\x33\xd7\x25\xb9\x49\xb9\x30\x8d\xaf\x47\xf4\x5a\xef\x49\xdc\x0c\xaf\x9b\x33\xbe\xdf\xc4\x4b\x65\x78\xde\x2d\x88\x19\x31\x23\x84\xb6\xe6\x05\xac\xcd\xf5\x6e\xb2\x34\x2d\x66\x5a\x4a\x1d\x1e\x70\x5a\x15\x68\x62\x7b\x25\x6a\x0d\x91\x61\xc6\x85\x7a\x66\x5c\x83\x5b\x45\xc3\x00\xca\x66\x0a\x84\xe6\x58\xd9\x94\x8d\x2a\xdf\xa2\x98\xe4\xb2\x0f\x6b\x19\x43\x54\x8b\x7c\x49\x4b\xb6\x36\xb5\xc8\xde\xe3\xcc\xd7\x05\x38\x03\x8b\xed\xe2\x78\x5d\x6d\x20\x4b\xb3\xb8\x1b\x5a\x63\x42\x9d\x98\x93\xed\x92\xeb\xd5\xf9\xbe\xda\x6d\x35\xf0\x81\x9e\x5e\x2f\x37\x16\xb3\x21\x07\xb0\xdd\x00\xb5\x9d\x55\x40\xa7\x7a\x11\x9f\xea\xbd\x6a\x01\x59\x99\x7a\xcf\x0e\xe3\xbd\x7a\x45\x27\x97\x2f\x74\x76\xdb\x7a\x31\x5f\x29\xe9\x9b\x0c\xba\x9d\x0f\x11\xb5\x9f\x4f\x5b\x9c\x39\x2e\xcb\xcb\xee\x6a\x38\xe9\x55\xc4\xde\x72\xb2\x32\x06\x13\x75\x35\xc8\x30\x3b\x61\xb3\x98\xe4\xc1\x9a\x1b\x96\x0d\x30\x1d\x2e\x39\x34\x69\xcf\xf3\xcd\x70\xac\x0b\xf9\xb6\x2d\x4e\x7b\x8d\x3c\x22\x6d\x77\xd4\x88\x53\x27\xb0\x5c\xa7\x4b\xdd\x92\x49\x57\x4c\xb3\x5e\x74\xe8\x06\x10\x90\x81\x90\x9c\x0a\x35\x66\x3d\x63\xdd\x6d\x13\x71\x0d\xc5\xdc\xa2\x56\x3f\xa7\x1b\x6b\x76\x35\xb6\x49\xc1\xe9\xd7\x89\x5e\xb8\xce\xd4\xc6\xdd\x59\xba\xbb\x13\xca\x23\x98\x64\x5b\x30\x2b\x14\xc5\x8e\x46\xe5\x56\xb5\x49\x41\x5f\x0c\xea\x64\x75\x2c\x16\x07\x68\x21\xcd\xb2\x42\xb3\x24\xe1\x38\x70\x85\x34\x3a\xb5\x1a\xd5\x64\x45\x23\x67\xc9\x91\x91\xee\x2c\xcb\x56\xd9\xa6\x09\x27\x9c\x33\x8d\x95\x65\x15\x75\x8e\x19\x95\xd4\x5d\xbf\x4c\x76\x6b\x25\x13\x57\xe6\xec\xa0\x84\x0e\xec\x39\xb7\xa9\x6e\x57\xce\xca\xa8\xef\x1a\x73\x2d\x59\x76\x92\x1b\xab\xbe\xed\x37\x76\x8d\xdd\x76\x23\x3b\x23\x6d\xd1\x6b\x35\xf2\xf9\xa1\x36\x66\x89\x64\x5d\x0b\x35\x00\xaa\xb5\x15\xab\x9d\xb4\x38\xd9\x19\x64\xbf\x30\x1c\xf6\x1d\xbc\xb2\xdb\xb8\xf3\xb5\x3a\x9e\x94\x84\xc6\x70\x99\x15\xa6\x9b\x66\xdf\xa0\xd0\xf5\x62\xd5\xdd\xed\x16\x03\x97\xee\x33\x64\xa1\x32\x4d\x2b\xa3\xee\x1a\xec\x32\xb3\xde\x58\x1d\xb2\xf0\x78\x12\x8e\x8c\xd3\xef\xaf\x17\xe3\xaa\x9b\xcd\x65\x92\xb5\x4a\xbd\x44\xd7\x45\xce\x14\x39\x98\x9a\xa2\xdc\xb0\x44\xb6\xf3\x14\xa8\xf4\xb6\x72\x15\xd8\xc3\xd1\x60\xd5\x9e\xad\x47\xf8\xaa\xb0\x84\xd7\xe3\xd2\x66\x4d\x0c\x93\x68\x91\x5d\xd7\x32\x5b\xa9\x93\x15\xf8\x4c\x00\xb1\x2e\x18\xb5\x7e\xbf\xe0\xd2\x6c\x7a\x80\x77\x89\x55\x1d\xad\xa6\x29\x76\x92\x94\x2d\x83\x02\x45\x84\x1e\xd7\xad\xae\x35\x19\x20\x03\xa9\xa0\xd7\x5b\xf5\xf9\xb6\x02\x24\x6b\xd4\x72\xca\x6d\x3a\x03\xa3\x63\xd7\x4c\x57\x8a\x65\x80\x1a\xab\xec\x2c\x94\xb8\xcc\x6c\xb2\xec\xae\xe7\xd3\xea\x74\x92\xc7\x2b\x3b\xaa\xb5\x0c\xfe\x47\x37\x5c\xb2\x9a\xcc\xf5\xb9\x02\xb7\xdd\x08\x68\x15\xc7\x71\xbc\x36\x62\xcb\xc3\x2a\xbb\x18\x8f\x58\xb5\xbd\x6c\x6d\x27\xc3\x32\x3c\xe9\xe2\xdb\x26\x45\xa3\x0d\x0e\x0f\xed\xe1\x0d\xae\xe9\x0e\x28\x7a\xd3\x9e\xf7\xdd\xf6\x1c\xdf\x36\x38\x1c\x6e\xcf\x71\xb7\xcd\xf7\x16\xa4\x84\xe3\x38\x39\x80\xd9\x81\x0c\x4f\x2a\x65\x78\xc2\x19\xf6\x14\x65\x8d\x89\xb6\xc0\x9b\x73\x7c\xd3\xdc\xc2\x9b\x66\x0f\x76\x9b\x83\xee\xa6\x49\xe9\xa1\xd6\xdc\xa6\xf4\x6d\x8b\x84\xdd\x16\xa5\xbb\xcd\xd6\x94\x2f\x12\x7e\x08\x00\xde\xeb\x0f\xda\x6c\x3d\x47\x8e\x19\xe6\xb3\x3e\x78\x41\xd7\x04\xde\x4e\x8b\xbc\x0d\xfe\x1b\x8a\xfd\xb7\x0d\x36\x76\xda\x50\x79\x45\x0b\xae\xfe\x71\x00\x14\x43\xd1\x18\xee\x48\x31\x14\x46\x0a\x31\x38\xff\x3d\x8b\x7e\xcf\x20\xb1\x24\x0c\x47\x7b\xf3\x8f\xdb\xf0\x5f\xaa\x50\x75\x29\xbd\x06\xa6\xa5\xe8\xda\x8d\x96\x90\x54\xe1\xf7\xc1\xdd\xc1\xda\xc3\xf4\x1b\x5c\xfc\x86\xe4\x3f\x09\x51\x52\xec\x74\x95\xc6\xa9\x1b\xb0\x24\xc5\x8e\x99\x60\xfd\xcd\xe0\x4d\x0b\xc4\xfc\x42\xe7\x30\x3f\x78\xaa\x1e\x6c\x0c\xdd\xb4\xfd\x07\xea\x97\xba\xe8\xa8\x20\x15\xa4\xf8\xaf\x57\x05\xf7\x33\xf9\x05\xc3\x8a\x50\x90\xa4\x2a\xd3\xef\xde\x9f\xe8\x1d\xad\x07\xe8\x21\xfd\xf5\x4b\xf0\xa2\xda\x26\xb8\xb7\x49\x14\x75\xed\xdb\x4c\xb1\x63\x71\xd9\xb6\x0d\xeb\x7b\x3a\xad\x19\xcb\xb9\x95\x12\xf4\x65\xda\xe0\x85\x05\x2f\x81\xf4\x65\xd9\x44\x00\x21\x7a\xae\xbe\xc9\x70\x41\x42\x38\x2c\x31\x38\x85\xc0\x29\xd8\x4f\xc3\xb0\xcb\xca\xe9\xf0\x01\x7b\x0c\x0b\x5e\xa3\xbf\x7c\x6b\xbf\x04\xf9\xcf\x7c\xf9\xb5\x52\x73\x2b\xc6\x07\x2f\xed\x1f\xf1\x93\x14\x5b\x76\xa6\x3e\x82\x7e\xa1\xb9\x95\x8e\x0a\x07\x88\xf9\x7f\x3a\xc0\x5c\x2a\x96\x8f\x8e\x62\xc5\x64\x60\x82\xe9\x36\x26\x99\xbc\x66\x03\x11\x8a\xcd\x4c\x70\x78\x7f\x53\x02\x50\xcc\xd6\xfd\xd7\x79\x0d\x60\x5a\xba\x16\xd3\xa7\x36\xaf\x68\x8a\x26\x85\xcf\x9f\xfa\x00\x8f\x6f\xf9\xcf\x6c\x97\x37\xc3\x37\xfa\x2c\x4b\x17\x14\xff\xe5\x58\x51\x17\x9c\x25\xd0\x6c\x3e\x78\xc6\x5d\x51\x81\x15\x8b\xdb\x32\x88\x3d\x3f\xf4\xc2\x2a\xcf\x0f\x09\xbf\x29\x11\xf8\xef\xdb\x7c\x8d\x9e\xf4\x8f\xf2\xfd\xd7\x3d\x74\xc7\xe3\x94\xe0\x3d\x7f\xff\xa1\x52\x45\x13\x54\xc7\x7f\x68\x38\xca\x56\x95\xa5\x12\xb6\xe3\x55\xf7\xc9\x17\xbc\x4c\x6b\xeb\x31\xc7\x02\x90\x8f\x35\x14\xf3\x1f\xf5\xf4\xfe\x05\x7e\x27\x0d\x67\xaa\x2a\x96\x0c\xc5\x44\xc5\x03\x3f\x75\x6c\x00\xc5\x2c\x2f\xd1\x1f\x47\xc8\xeb\x51\x5a\x37\x63\x16\x50\x03\xf4\x04\xdd\x50\x80\x15\xbd\xd7\x18\x61\xe9\x97\xf3\x5a\x32\x3c\x12\xdb\x21\xd1\xac\xe0\xf5\x78\x7d\x79\xde\xa3\xf0\xc5\xdc\x99\x63\x6a\x8a\x25\x03\xbf\x9e\xa8\xc7\x2c\xdd\x6f\x39\x7a\x3a\xdb\xab\x32\xd3\x55\x55\x77\xbd\x6e\x0a\xba\x16\x3c\x76\x6e\x7d\x3f\x8e\xa7\xc7\x13\xfc\x54\x5f\x03\xbf\x6f\x01\xc7\x68\xba\xad\x08\xc1\x40\xf8\x43\x63\x1c\xc7\x3c\xcc\xb2\x64\x3e\x78\xa4\x32\x20\xa2\xff\x8a\xbd\x0f\xce\x4b\x8e\xba\x67\x7a\xa8\x58\x36\xaf\xd9\x0a\xaf\xc6\xbc\x59\xe5\xb5\x7d\xd9\xed\xd4\x09\x2e\x55\x3a\xd6\x6b\x97\xb9\x21\xce\xd2\x31\xa6\x17\xeb\xb0\xed\x01\x43\xd1\x54\xec\xf9\x01\xef\xc5\x98\xde\xf3\x03\x14\x1b\x32\x5c\xb5\xdd\xe7\x62\x43\x9c\x65\xf1\x16\x37\x8e\xb5\xcb\x31\xbc\x35\x8e\xd5\x99\x16\x05\xc5\xe8\x51\x87\xa5\x7b\xbd\x58\x9b\x0d\x6e\xb1\x6e\x76\x1a\x0c\x4d\x41\x31\xa6\x45\x36\xfa\x14\xd3\xaa\xc4\x88\x3e\x17\x6b\xb5\xb9\x58\x83\x69\x32\x1c\x4d\xc5\xb8\xb6\xdf\x6c\x08\x8e\xa1\x7b\x1e\xc0\x26\xcd\x92\x55\xbc\xc5\xe1\x04\xd3\x60\xb8\x31\x14\xbc\x04\xc0\x70\x2d\x0f\x76\xb9\xcd\xc6\xf0\x58\x07\x67\x39\x86\xec\x37\x70\x36\xd6\xe9\xb3\x9d\x76\x8f\x8e\xe1\x2d\x2a\xd6\x6a\xb7\x98\x56\x99\x65\x5a\x15\xba\x49\xb7\xb8\x54\x8c\x69\xc5\x5a\xed\x18\x3d\xa0\x5b\x5c\xac\x57\xc5\x1b\x0d\xaf\xb9\xe0\x4d\xd0\x3e\x57\x6d\xb3\x1e\xae\x31\xb2\xdd\x19\xb3\x4c\xa5\xca\xc5\xaa\xed\x06\x45\xb3\xbd\x18\x41\xc7\x1a\x0c\x4e\x34\xe8\xa0\xb9\xd6\x38\x46\x36\x70\xa6\x09\xc5\x28\xbc\x89\x57\x68\xbf\x56\x9b\xab\xd2\x41\x3f\xbd\xa2\x01\xa6\xb1\x61\x95\xf6\x92\xbd\x76\xf1\x56\x0c\x27\x39\xa6\xdd\xf2\xba\x44\xb6\x5b\x1c\x8b\x93\x1c\x14\xe3\xda\x2c\x77\xa8\x3e\x64\x7a\x34\x14\xc3\x59\xa6\xe7\x11\xa7\xcc\xb6\x9b\x41\x67\x3d\x12\xb7\xcb\x5e\x31\xa6\xe5\xd5\x6d\xd1\x01\x24\x8f\xfc\xe7\xe3\xd4\x66\xfd\xef\x7e\x8f\x3e\x00\x8d\x51\x34\xde\x60\x5a\x95\x5e\x8c\x69\x5d\x0d\x6c\xf4\x20\xd2\x97\xc3\x43\x90\x00\xb2\x13\x6f\xcf\x0f\xc1\xbb\x92\xcf\x0f\x18\x66\x6f\x0d\xa0\xcf\x62\xa1\x24\x7e\x7c\xbc\x91\x17\x08\xeb\x1f\xe7\x32\x1b\xb3\xe3\x89\xef\xcf\x0f\x11\xe0\x93\xe2\xc1\xab\x8d\x8f\x8f\xc1\xbf\x29\x7e\x29\xfe\x08\x7e\xc6\x7f\xbe\x40\xb6\x57\xe9\x5e\xeb\x3f\xc2\x7f\x53\x65\xc5\xc6\x3d\x59\xeb\x37\x02\xce\x3e\xf7\x71\x0b\xa8\x33\x28\x1e\x4f\x60\xff\xf2\xff\xbc\x3d\x3f\x38\x16\x88\x05\xc2\xe6\xf9\xe1\x69\xcd\x9b\x31\x80\xbd\xed\x9f\x82\x47\x64\x83\x32\x5e\xa2\x8d\x81\xa7\xf0\x1d\xcb\x00\x9f\xc3\x03\xb5\x36\xf4\xfc\xf0\xfa\x0a\xac\xa6\xdf\xc3\xe7\x07\xe8\x6d\xcd\xab\x0e\xf8\xfe\x05\xde\x27\x20\xfb\xd8\xfc\x5a\x57\xc4\x18\x7c\x9a\x22\xa8\xbc\x65\xbd\xf1\x82\xad\xac\x79\x1b\xc4\x41\xe2\xcd\x7f\x3c\xf2\xd5\x93\xe5\x8a\xc6\xab\x18\xd8\x8b\x8a\x65\xe8\x16\x88\x27\xde\xf6\x33\xc5\x8e\x27\xde\x04\x5d\xb3\xec\x18\xc0\xfc\x92\x86\xa9\x7b\xb9\x94\xb2\x04\x9a\x37\xe9\xad\x78\xe2\x49\x99\xc5\xbf\x80\x5f\xbf\xbe\x9c\x83\xfa\xf5\x4b\xb1\x5a\x7c\x2b\x0e\x52\x82\xae\x5a\x89\xe3\xa7\xa9\xbb\x56\x22\x11\xf4\xf6\x29\x00\x6e\x63\xe7\x75\x53\xaf\x82\x6e\x82\xa7\x8b\x44\xaf\x22\x86\x61\x01\x84\xc7\xc7\x8b\x5c\xaf\x15\x3f\xd7\xfb\xf1\xeb\x57\xdc\x4e\xbd\x9a\x40\x13\x81\xd9\x03\xe6\x5a\x11\x40\x4a\x50\x01\x6f\xc6\x13\xd0\x25\x54\x60\x29\x3b\x10\xa2\x09\x45\xe8\xed\x6f\x74\xf4\xcd\xeb\xe8\x79\xed\xa8\x1b\xd7\x39\x29\xa0\x02\x6f\x69\xba\xa2\x4b\x94\x91\x32\x78\x13\x68\x36\x1d\x7c\x9d\xd3\x03\xdc\xa4\x07\x64\x63\xe0\xb2\x53\xe2\x01\x3f\x0f\x07\x18\xc3\x30\x3b\x25\x58\x56\x4a\x00\xaa\x9a\x72\x15\xd1\x96\x7f\xfd\xba\x48\x95\x81\x27\xc8\xcf\x1b\x34\x31\xbf\xd0\x79\xa3\xba\xff\x6a\xb7\x95\xb2\x04\x53\x57\xd5\x29\x2f\x2c\x7e\xc0\xdf\x41\x6a\xad\x00\xd7\x57\x8c\x82\x74\x82\x37\x87\x5e\x3b\x90\x82\xb9\x8a\x26\xea\x6e\x4a\x02\x36\xa9\x2f\x0d\xc7\x06\x62\xcf\xde\xaa\x20\xfe\x29\x02\x40\x3a\xe6\x2b\x6a\x8c\x66\xc7\x15\x0f\x46\xc4\xee\x03\x8f\xb7\xe3\xcf\x0f\x01\xde\xcf\x0f\x89\x04\x64\x61\x4d\xde\x96\x53\x4b\x7e\x13\x87\xa1\xf7\x6b\xf9\x34\xf0\x2a\x25\x20\xed\x37\x11\x4c\x40\x2a\xa6\x7f\x8b\x1f\xe0\x6b\xb7\xe0\x1b\xbc\xe8\xe9\x09\xdf\x6c\xdd\xf0\x5a\x49\x7e\xae\x74\xf0\x02\x61\x80\x16\x8f\x59\x9f\x6d\xc4\x8c\x28\xf0\xc9\x66\xfc\x47\x26\xbd\x46\xbe\x99\xa1\x78\x79\xf3\xb8\xfc\xfb\x81\x7a\x28\xe4\xff\x9c\xa9\xba\x6e\xc6\xf9\xf4\x25\xef\x24\x12\x90\x37\x1d\x8e\xe5\x91\xd3\xf2\x6a\xfa\x9a\xab\x12\xfb\xfd\x7e\x9f\x88\x27\x20\xe0\xfd\xf5\xdf\x94\x4d\xa7\xff\x57\x2c\xd0\xdb\x9b\xc1\x4b\xf6\x7d\xb6\x81\x1d\x54\xd3\xd4\xdc\x7f\xf9\xf6\x9e\x96\xec\x82\xa9\xa4\x7e\x5a\x4f\xf6\x4b\x7f\x42\x53\x2e\xde\xd6\x94\xfd\xea\x1f\xe9\xca\xc5\xff\xd1\x95\xff\x47\x57\xfe\x1f\x5d\xf9\x7f\x74\xe5\xff\xd1\x95\xff\x48\x57\x1e\x7a\x42\xf6\x54\x5b\x3e\x4f\xf8\xac\xbe\x5c\xca\xe7\xbe\x7b\x3d\x86\x14\xaf\xcc\x1f\xe9\xc9\x15\x75\x6b\xc8\xac\xaf\x4e\x01\x33\x54\x96\x43\x7d\xc8\xc2\x94\x78\xa6\x90\x4d\x40\x26\xa6\xc4\x73\x70\xc9\xd3\x4e\x94\x78\x31\x97\xf3\xb4\x08\xef\x47\xc9\x5b\xb7\x95\x78\xa6\x88\x24\x20\x19\x43\x10\x48\xc5\xe4\xaf\x65\x55\xe7\xed\x0c\x8a\x9b\x26\xbf\x4d\x11\x63\x8e\xee\xbd\x76\x68\xf6\x95\x6e\xf8\x3c\xfc\xa4\x02\x3b\x26\x40\x22\x06\x43\xaf\x18\x0c\x39\x18\xfc\xe4\xab\xe3\x31\x29\x06\x36\x36\xd0\x44\x2b\xa6\xa5\x28\x5f\xfb\xe6\xa7\x2a\x08\xf4\x6e\xd3\x11\x6c\xdd\x0c\x3a\x0a\xe9\x89\x37\xcb\x31\xc0\xb5\x12\x8b\x81\x30\x41\x52\x31\x3b\xfc\x79\xd4\x0c\x31\x25\x4c\x0a\x15\xba\x50\x77\xc4\xf4\x30\xd9\xdf\x0e\x00\xc2\x99\xcd\x80\x89\xc1\x61\x62\xf0\x30\x29\xb0\xb0\x37\x41\x77\x34\xfb\x3b\x0c\xf1\x76\x28\x94\xad\xef\x1a\x70\x63\xa7\x9d\x8d\xc3\x89\x93\xec\x00\x92\xf5\xfd\xe7\xad\x62\x37\xd2\x5e\xf6\x21\xd5\x65\x2c\xea\xc5\x53\x30\x1a\x18\x86\x99\x29\x0e\x6c\x6c\xc7\x04\xb8\xad\xf2\x9e\xaa\xb0\xf1\x7f\x74\x78\x09\x58\x8f\x8f\xf1\xf7\xb2\x43\x25\x51\xd1\xe2\x19\x14\x8a\xc3\x90\x95\xb2\x65\x53\x77\x99\x59\x99\x57\xad\x6d\x22\x2e\xfb\xaa\x13\x6f\xf2\x4b\x60\x03\x33\x2e\xa7\x9a\xf8\xe8\x95\xa3\x47\x5c\x9f\xa5\x5f\x19\x4f\x3c\xbc\xf6\x5b\x0c\xd7\xf3\x94\xb4\xeb\x76\xc2\xef\x9e\xb2\x03\xd8\xef\x02\xef\x31\x13\xda\x83\x1a\x74\xd7\x30\x75\xc9\xe4\x97\xb7\xa0\xc4\x61\x88\x4f\x09\xfe\xb3\xcf\x9d\xa0\x54\x22\x2e\x43\xcf\x0f\xff\x2b\x52\x66\x32\x30\x1c\x03\xd6\xf3\xb3\xa6\xf2\x5b\x6f\xe9\x8d\xab\xba\x10\xac\xbc\x58\x0c\x4e\x78\x0b\xf8\x1a\x08\x68\x8c\x7f\x75\x34\xc5\x5e\x39\xbc\xf8\x74\xbb\x2c\x72\x5a\xd6\x53\xe8\x0c\xdd\xba\x53\x14\x3d\x2d\xaa\xcf\x66\x16\xb0\xef\x94\xcc\x9c\x96\xf4\x76\x59\x77\xca\x65\xfd\x72\x33\x8f\x2b\x62\xfc\xab\x0d\x36\x06\x2f\xdd\x2b\x9b\x3b\x85\x69\x83\x8d\xa0\xeb\xe6\xbd\x4e\xe5\x2f\xca\x46\x28\x3c\x3f\x6b\x8e\xa6\xcc\x74\x73\x19\x5b\xf2\x76\x36\xe6\x78\x43\x30\x0f\x5e\x98\x79\x3a\xc9\xf4\x6b\x3a\xaf\x26\xb0\x74\xd5\x89\x32\x9f\x9f\x35\xaf\x1d\x3f\x6f\x7d\x86\xc1\x4c\xe5\xed\x98\x97\xa7\x68\x76\x90\x15\xf5\xe3\xf9\x59\xf3\x19\x7a\xc9\x2b\x5a\x3c\x11\x7b\x7b\x7e\xd6\x62\x01\x84\x1d\x30\x75\x4e\x6f\x6b\x20\x86\xc5\xe2\x11\x39\x63\xe9\xb3\x56\x13\xb1\xe4\x71\x50\x62\x49\xaf\x5c\x34\x9a\x9e\xa6\xe0\x53\x36\xf1\xe4\xc3\x94\xd4\xd7\x8e\x6e\x29\x61\xff\x4f\xfb\x15\xfb\xea\x35\x98\x8d\x1f\x1a\x84\x62\x70\x0a\x86\x62\x48\x0a\x0e\xeb\x1e\x30\x8e\x61\x5e\x0f\xe2\x87\x91\x38\xcd\xf7\x3b\x1b\xc3\x4e\x68\xef\x23\x77\x86\xcf\x09\xa5\xf7\xcf\x0f\xd0\x71\x7d\x4a\xbc\x79\x22\xd0\xc6\x9e\x1f\x9e\x1f\x9e\x66\xde\x0e\x02\xd8\x31\x05\x43\x9e\x94\xbf\xc0\x93\x92\x4c\x26\xec\x24\xf6\xef\x18\x50\x2d\x10\x53\x66\xb1\xf8\x09\x42\x58\xec\xbf\xde\x94\x7d\x22\xf6\xe6\xd1\x97\xd4\x55\xdd\x8c\x61\x31\x3b\x98\x81\x71\xe7\x35\xfc\xf5\xd3\x2b\xf4\x02\x9d\x60\x9a\x78\x8a\xed\xff\x1d\x6e\x7d\xfe\x7d\x3d\x69\x0c\x13\x08\x8a\x9f\xa4\xea\xae\x11\x70\x60\x38\x5e\x11\xe3\xdc\x18\x62\x45\xbb\x39\xc2\x11\xd7\x58\xfc\xd2\x50\x81\x89\x52\xb1\x53\xc4\xc0\xfe\xe5\x9c\x7b\xb2\x87\xae\xdc\xe5\x90\x2b\x22\xc0\x51\x4e\xec\x7d\x3a\xc0\x17\x44\xf0\xeb\xec\x63\xff\xf5\x66\xef\xbd\x41\xf9\xf7\xfe\x5d\xb9\x79\x90\x4c\x26\x90\x14\xcb\x93\x5e\x71\x18\xd2\x52\xb6\x7e\x5c\x9c\x12\x71\x7f\x6d\x96\x53\x22\x50\xc1\x41\x36\xc5\xcf\xe4\x59\xe2\x4c\xc2\x85\x6c\xd8\x08\x67\xe7\x5d\x91\xd9\x0f\xa8\x18\x95\x3b\x07\x09\x3d\x3f\x9c\xf2\xb4\x6f\x0b\x08\x0a\x1c\x67\xcb\x3f\xd0\xc2\x11\xd8\x49\x0b\x21\x6d\xff\x01\xf0\x21\xa4\x13\xd8\xfe\xbb\x51\x1b\x7f\x3d\x0c\x34\x19\x4c\x0e\xa5\xfe\xe0\x98\x13\x4f\x40\x72\x6a\xaa\x68\xe2\x69\xda\x9d\xfa\x89\x70\x45\x15\xb0\xab\xf5\xf6\x27\x0c\xc1\x10\x02\x05\x7f\x11\x08\x79\x49\x40\xe2\xa1\xb9\x60\xe9\x8e\x27\x9e\x7e\x6f\xfc\xc3\x6a\xa2\x3f\xe4\x01\x92\x61\x92\x9c\xf2\x36\x04\xe3\x57\xa2\x5f\x2e\xd3\x2c\x24\xfa\xd9\x7e\x16\xc5\xdb\xfc\x65\xb6\x00\xc9\xa9\x1e\x87\x73\x0c\xf9\x4a\xb1\xf8\xd0\x2b\x0c\x34\xaf\xbd\xb0\xcb\xbe\x8a\x71\x50\x25\xe4\xd4\xfa\x24\xb9\xa3\x2b\x9a\x87\x2b\x0c\xa1\x07\x65\x28\x55\x6e\xb4\x71\x0e\xfa\xe2\x77\x37\xa2\xc9\xab\x4f\x93\xbe\xa2\xd9\xc5\x03\x45\x10\x08\x85\x32\x2f\x09\xc8\xf9\x87\x28\xe1\xdc\xa2\x44\xa8\x07\xbe\x9e\x75\xd9\xb9\xa2\xc8\xcd\x62\xaf\x97\x94\x09\x55\xb7\x0b\xa5\xeb\x36\x57\x9e\xf7\xe8\x77\x27\x77\x58\xef\x76\x83\x1f\x8e\xf8\x9d\x6a\xef\x8c\x2c\x7a\x6f\x64\x51\x08\x85\xe4\xe3\x90\xaa\xd0\x15\x0f\x50\xca\x5a\xb1\x74\xaf\x24\xf2\x5e\x0b\x99\x7b\x2d\x64\x2e\x5b\x40\x3f\xd0\xe9\xef\x21\x90\x79\x1f\x81\xec\x3d\x04\xb2\x10\x72\x8e\x40\xf6\x0f\x11\xc8\xbe\x8f\x40\xee\x1e\x02\xb9\x4b\x0a\xe4\xfe\x10\x81\xdc\xfb\x08\xe4\xef\x21\x90\xbf\x44\xa0\xf0\x87\x08\xe4\xdf\x47\x00\xb9\x87\x00\x72\x89\x40\xe9\x0f\x11\x40\x02\x04\x1c\xeb\xce\xf2\x18\x8a\x23\xc9\x17\x47\x8c\x76\x10\xd0\xef\x2e\xcd\x07\xb5\x09\x60\xf0\x13\xf8\xeb\xbd\xb2\x4f\x20\x99\x4c\x48\x3f\xc1\x0b\x06\x9e\xe4\x54\xa8\x9d\x20\xca\x3a\x7e\x73\x3d\x83\x24\x1f\xd9\xa0\x54\x93\xb7\x4d\x65\x93\x9d\xad\xe3\xf7\xd6\x6f\x8f\x34\x7c\xaa\xc3\xb6\x6b\x81\x41\xe3\xb5\x89\x73\x2c\x33\x3a\xca\x25\x95\xb7\x42\xd4\x2c\xec\xe7\xcb\xef\xa2\xfd\x16\xf9\x85\x3c\xda\xf0\xa9\x4a\x23\x2c\x1f\x7f\x47\xbe\x45\x45\x12\x89\xdf\x15\xda\x51\x4d\x3b\x15\x12\x25\x94\x6a\xc1\xc6\x38\xca\x95\x53\xe1\xf6\x0d\x4e\x82\x48\xe6\x5d\xe5\xbd\xa2\x14\x74\x04\x03\xc9\xde\xcf\xc3\x2e\x50\x39\x2f\x77\xfc\x18\xb2\x78\xe7\xb5\x07\xc9\x29\xb2\x81\x37\x3b\xaf\x5c\xfb\x95\xa6\x2a\xf4\xef\x55\xe7\xee\x54\x67\x96\xbc\x04\x50\xea\xbc\x2e\x0c\xc9\x29\xb6\x42\xe0\xbe\x0a\x70\xf8\x90\x53\xfd\x56\x8f\xa9\xb4\x68\xea\xd5\xe3\x72\xe8\x72\x9d\x44\x73\x39\x5f\x6f\x40\x73\xb9\x97\xc4\xcd\xa1\xf6\xb8\xcd\xde\x47\xb3\x2e\x2e\xa7\x88\x06\xdd\xa2\x7c\x6a\xa9\x40\x13\xcb\x8e\x26\xc4\xe5\x54\x8f\x25\x5f\xf1\x46\xa7\xea\xb5\xd8\x6e\xd1\xaf\x4d\xa6\xd5\xef\xbd\x1e\x52\x43\xc8\x32\xaf\x89\x2a\x60\x03\xf7\x5c\x62\x3f\x05\x92\xa2\x95\x3d\x52\xc4\x13\x6f\x81\x46\xff\xe5\x04\x83\x5f\xbf\x4e\x3e\x52\xa7\x85\xf7\x8e\x21\xf2\x36\x20\x81\xaa\x86\x76\x14\x0b\x32\x21\x1d\xd2\x20\x1e\x92\x23\x07\xe8\x49\x99\x73\xfb\x47\xea\xb8\x74\x41\xd7\xb5\xf7\xaf\x57\xc0\x4d\x3f\x4b\x85\x24\x68\x0d\xcd\x12\x6f\x22\x16\x57\xbe\xde\x70\x55\x26\xed\xc4\x57\x19\x32\xbf\x60\x98\x9e\x6a\xf5\x1b\x8d\x57\x92\xf6\xfe\xb4\x29\xfa\xf1\x31\x30\x7e\x7c\xc1\x30\xf3\xc7\x49\xa7\x1e\x1f\xe3\x02\x26\x3d\x3e\x4a\x29\x15\x68\x92\x2d\xff\x0b\x39\xcd\xf5\x54\x4f\x96\xf7\xd8\x5d\xd9\x01\xd1\x37\x6d\x91\xfa\x72\xaa\x68\x40\x24\x65\xde\x8c\x4b\x21\x5a\x5f\x90\xc4\xf7\xf7\xab\xc5\xcd\x63\x51\xe8\x15\x3b\x71\xf8\xc4\x2f\x2d\x4b\x29\x11\x04\xae\xd5\x83\xc7\xe8\xdb\xdd\x22\x32\x6f\x86\x4e\xa5\x34\x9a\x80\xb4\x2f\x18\x36\x7b\x7c\x14\x52\xc1\x8e\x37\xb5\xf9\xd7\xeb\x8f\xb8\x83\x1d\xbf\xbf\xbd\x42\xe0\xa7\xf8\x82\x7d\x8b\x9f\xa4\x39\x89\xe4\xbb\xf0\x55\x30\xb3\xbd\x6a\x49\xe4\x05\xfb\x76\xa8\xb7\x7d\xbf\x92\xad\x1b\x7e\x1d\xf4\x05\x8b\x0b\x29\x8f\xdb\xfc\x96\xd2\x77\x2b\xf1\xda\x9a\xb7\x82\xbe\xf8\x15\x33\x2f\x58\x58\x6f\xfb\x51\xa5\xc0\x4b\xe6\xd7\xca\x7a\xb5\x42\x41\xe1\x09\x3e\x3f\x31\x77\x9a\x18\x6e\xe4\x49\x55\x31\x7a\x06\x2f\x80\xd4\x26\xe9\xa4\x4f\xc7\xce\xdb\x16\x5a\x3f\xcf\xa0\xbc\x5c\xa3\x97\x7f\x17\xe6\xd6\x2f\x53\x88\xba\x70\xd2\xd8\xb7\x3f\x69\xac\x78\x0d\x68\x9b\xf8\x1e\x0f\x86\xf2\x38\x92\xff\xd9\x61\x8c\x46\xf1\xff\xc5\x21\xfc\x5b\x43\x72\x9f\xc4\x37\x2d\xbc\x29\x93\x77\xdb\xa1\x13\xdf\x04\x96\xc0\xab\xa0\xbd\x06\xa6\x1a\xb8\x61\xfd\xc9\xee\x49\x15\x6f\x49\xe5\x55\x55\x77\x59\xbf\x8c\xa2\x49\x89\xb8\x09\xad\xa1\x88\x8c\x57\x06\xe5\xeb\x69\x9f\x78\x7c\x8c\x47\x73\xe8\x13\x42\x02\xf9\xdc\xec\x4a\x24\xbe\x83\xd4\x4c\x51\xd5\x38\x0c\x89\x90\x98\x94\xbf\x21\xdf\xd0\xc4\x3e\x0c\xe4\x78\xbb\x1d\x2b\xe1\x47\x49\x78\x12\xf6\x6b\x10\xcb\xf1\x55\x7e\xba\x90\xe8\xbe\x41\xfb\x0b\x86\xd9\x3f\xee\x8a\xfa\xeb\x6d\xb3\x1d\x89\xcd\x1b\xa5\x43\x1c\x13\x4f\x81\x3d\x0b\xf6\xb5\x9d\x27\xe5\xaf\xbb\x15\x42\x0b\x79\x28\xc8\x03\xd3\xd7\x6f\xe3\x18\x02\xf9\xa9\xbc\xfc\x1e\xb6\xc7\x7a\x07\xbc\x6f\x35\x8e\xd9\x50\xd4\x95\xc0\x6a\x07\x3f\xd9\x7f\x05\x24\x7d\xb2\x93\xc9\x44\x94\x61\x61\xf0\x93\xf5\x57\x40\xf2\x27\xeb\xba\x27\xc7\x86\x7f\x2a\xc9\xd2\x0b\x66\xa5\xc3\x50\x9b\xf7\xca\x21\xf0\x0b\x66\xa7\x83\xd6\x20\x25\x89\xc9\xfb\x73\x6d\xe0\x62\xec\x25\xf5\x09\xdc\x57\xb4\xa1\x63\xcc\x4a\xdc\x53\x5f\x2e\xe7\xff\xf9\xcc\xf6\x8a\x87\x6a\x30\x3a\x8b\xdf\xb3\x2e\x7d\x08\xc4\xaf\x18\x72\xea\x3e\x88\xd9\x89\x83\xd3\x10\x22\x5f\xaa\xde\x0e\x83\x92\xd4\x27\xfb\x9d\xee\xd8\x9f\xb6\x02\xdd\x72\xf0\xc4\xaf\xd3\x92\x48\xe2\x7f\xa3\x21\x0e\x0a\xf6\x21\xe3\x5c\x03\x78\x79\x8a\x38\xe1\x92\x5d\x54\x45\x03\x0d\x9f\xcb\x0f\xdc\x6e\x1f\xf5\x7b\x13\xb3\x6f\xe9\x46\x5f\x65\x48\xbf\x8f\x46\xca\x72\xa6\x7c\xb0\x53\x82\xcc\xe4\x59\x13\x3f\xed\x97\xaf\x72\xe2\x49\x49\x59\xc0\x8e\xeb\x90\x95\x80\xac\x24\xa6\x87\x0d\xef\xed\x53\x33\x85\xfd\x39\x33\x85\x7d\x6a\x9b\xb9\xa8\xa3\x1c\x31\x81\xbd\xb6\xec\x54\x8f\x63\x69\xbc\x19\x58\x68\x2e\xb6\x3c\x57\x4b\x69\x44\x0e\x70\x98\x32\xa7\xeb\x2c\x78\x49\x85\xd6\xea\x2f\x51\x5c\xd6\xa5\xa2\x1d\x15\x88\x22\xe1\xbc\xce\x1d\xb6\x51\x87\x2d\xcd\xa9\x96\x0e\x81\xc4\x93\x9d\x12\x4d\xde\x0d\x83\xae\x2c\x46\xb3\x6c\x5e\x13\x80\x18\xb7\x53\x1c\xcb\xe0\xad\x4a\x83\x7e\xed\x71\x2c\xd3\x81\xb2\x90\x7d\xb1\x1d\x80\x21\x2b\x2d\x27\xf6\x16\xb0\xfd\x66\x8e\xd1\x83\x3e\x70\x0c\xf8\x3d\x0e\x27\x66\x14\x8e\x72\x81\x76\x02\x44\x58\x63\xdf\x90\xfd\x6d\x94\x03\xa7\xee\x1b\xb8\xd8\x7e\x81\xe3\xf6\x4b\xf1\xe6\xe8\xe9\xf6\x0b\x9c\x6d\xbf\x6e\x50\x4b\x79\x39\xee\xc9\xc0\xc5\xa6\xea\xac\x32\xb8\xdc\x93\x81\xcb\x4d\xd5\xef\x54\xe7\xee\x54\x8f\xf6\x64\xe0\x7c\x4f\x06\x82\x6d\xd8\xe1\x9f\x73\xf2\xdb\x21\x6b\x28\x91\xda\xe5\x01\x93\x80\x06\x4c\xde\x06\x4d\xc5\x58\xf2\xc6\x19\xc0\xdb\x1b\x34\xe5\xc0\x37\xd8\x09\xc0\x30\xc9\x1b\xdb\x93\x88\xc7\xc3\x00\x9f\xf8\x92\xc1\x7e\x7f\xe9\x39\x97\xf6\x50\x21\x8b\xfe\x5d\x6f\x3c\x0b\x04\x9b\xd7\x24\x4f\xc6\x7f\xe8\x91\xf7\xfd\xef\xba\x97\x82\xc0\x81\x47\xde\x77\xc4\xf3\x58\xf1\x23\x1f\x7c\xe0\x71\x97\xcf\x9c\xeb\x61\x2f\xdf\x5b\xfd\x91\x3c\x1c\x89\x74\x7f\x6d\x84\xf7\x7b\x6f\x6a\xab\x18\x0c\x09\x18\x7c\xea\xd3\x87\x24\x0c\x86\xd6\x07\xdf\xfe\xec\xe0\xdb\x37\xff\xb3\xbe\x7d\x5b\x06\x4b\x70\xe9\xd9\x3f\x38\xf1\xfd\x17\xec\x2f\x12\x49\xc7\xb4\x74\x33\xc8\x0a\x89\xac\x9e\x2c\x40\x9f\x70\x4d\x6b\x97\xae\x69\xf5\x8f\x5c\xd3\x46\xa8\x01\x7f\xc6\x35\xfd\x8e\x17\xf9\xe0\x97\xce\xc6\xf8\x57\x21\x72\xac\x7d\xe4\x96\x3e\xf5\x8b\x7f\xe4\x17\x3e\x75\xde\xad\x8f\x4d\x7c\xce\xbb\x7b\xec\xe7\x7f\xd2\x85\x2b\x84\x3e\xc1\x13\x0a\xec\x9f\x1f\x6e\x0e\xcb\x87\xce\xcf\xcb\x4e\x7e\xde\x71\x79\xe2\x9c\x5c\x9f\x21\x72\xcb\xf9\x60\xde\x32\xcd\xa9\xff\xa8\x67\x51\xfd\x1b\x9e\xc5\x6b\xdf\x9c\x7a\xd3\x37\xa7\xfe\xa7\x7c\x73\xea\x87\x1e\xa9\x77\x29\x78\xe6\x9b\x53\x4f\x55\x20\xf5\xca\x37\xa7\x9e\x6a\x3b\xea\xa5\x6f\x4e\x3d\xf7\x40\xa9\xef\xf9\x57\xd4\xbb\xfe\x95\xbf\xe1\x9b\xfb\x67\x28\xe1\xdc\xa2\xc4\x3d\xdf\xdc\x05\x45\xee\xf8\xe6\xd4\x3f\xf5\xcd\x5d\xf6\xe8\x77\xa7\xc7\xc7\xbe\xb9\xf7\x46\xfc\x9e\xd2\x7b\x7f\x64\xe1\x7b\x23\x0b\x43\x28\x74\x32\xa4\x3c\x74\x55\x32\x72\x8b\xc0\x10\xf2\x5e\x0b\xc8\xbd\x16\x90\xcb\x16\x3e\xf6\xcd\xdd\x46\x00\x79\x1f\x01\xf4\x1e\x02\x28\x94\x3d\x47\xe0\x63\xdf\xdc\x6d\x04\x7c\xef\xe4\x99\xd9\x99\x17\x64\x20\xfa\x12\xd3\x8a\xeb\x29\x5f\x60\x5a\x97\xac\x70\xbd\xcc\xa7\x74\x8d\xf4\xcf\xd3\x86\x35\xe3\x00\xfb\xd7\xdb\x5d\xb8\xe0\xbc\xcd\x41\xb8\x23\x3e\xa8\x5d\xf1\xc4\x3e\x91\x88\xb6\xaa\x04\x2f\x2c\x24\x53\x77\x34\xd1\x8a\xd4\xa3\xf0\xe0\xc9\x20\xd4\x1e\x2e\xcc\xe4\x51\xc5\x40\xa9\xf8\x5c\x9d\xa0\x6c\x62\x7f\x59\x0a\x1c\xdd\x3f\xff\xf8\x7e\xf8\xf7\x3c\x5c\xda\x4d\x0f\xd7\x3f\xbc\x8d\x04\xa7\x2e\x06\x3b\x45\x8d\x5b\x78\xf3\x28\x4a\xee\x6d\xd7\x22\x29\xfa\x89\x5d\x1b\x08\x94\xd6\xc4\xa5\x0d\xe5\x23\x76\xf8\xcc\x66\xe0\x36\xa7\x85\x25\xa7\x92\x3f\x41\xc2\x51\xf4\xd9\x9a\xd3\xcf\x16\x3c\x90\x9a\x1e\x38\x2d\xe2\x4f\xc1\x67\x8b\x8f\x6b\x0a\x11\xfb\xdc\xed\x41\xb4\x3d\x15\xc5\x43\xa2\x0f\xe3\x1d\x17\x0f\xec\xff\x77\xcb\x26\xf1\xb1\x59\xf3\xea\x64\x99\xee\x7e\x50\x2d\xb4\x25\x9f\x51\x2b\xf2\x57\x9d\x4e\xc1\xab\x19\x71\x30\x76\x5e\x9a\x6b\x02\x43\x4c\xe8\x84\x92\x21\x15\x12\x20\x11\x7a\x85\x1c\x48\x82\xd6\x18\xe2\xef\xd0\x03\x83\x9d\x1d\x58\xf2\xac\x64\x32\xf1\xe6\xa5\x7a\x1b\x72\x88\xc7\x60\x48\xc6\x60\x48\xc5\xbe\x20\x90\x89\xc1\x4f\xe6\x5f\x76\x60\xd8\x33\x93\xc9\x84\x80\xc5\xad\xaf\xc1\x77\xd2\x4c\x7c\xd5\x53\x2c\xdd\xa2\x68\xf6\xb5\xd9\xa6\xe8\xc6\x2b\xd3\xa2\x18\x92\x09\x25\x20\x49\x37\x1a\x90\x88\x05\xdd\xb4\x7e\x0a\xc9\x8b\xc2\x44\xe5\xb5\x5d\x2e\xf7\x68\xee\x05\x7a\xbd\x5f\xaa\x7c\x2c\xe5\x60\x5f\xbe\xc4\xf3\x05\x04\x2e\x16\xf3\xd9\xc7\xd7\x04\x14\x17\xbf\x60\x18\xff\xeb\xd7\xeb\x17\x0c\x93\x1f\x1f\xe3\xea\xaf\x5f\x4e\x22\xf1\xf8\x18\x8f\xc3\x41\x86\xfa\xf8\xe8\xfd\xf2\x4d\xd3\x12\x56\xfc\xba\x4e\x26\xcf\x04\xe0\x91\x4f\x14\x48\x82\x64\x88\x87\x34\xc8\x84\x2c\xff\x9c\x98\x09\xf1\x98\x08\xc9\xd8\x2b\xa4\x62\x4e\xe2\xe9\xef\x80\x0c\xe8\xe5\xc1\xdd\x2b\xe1\xe6\x71\x1d\x79\x24\x03\x59\x79\x35\xb8\xe7\xf2\x11\x52\xb0\x88\xd7\xfd\x63\x86\xca\xaf\x5f\xcf\x0f\x53\x55\x17\x16\xcf\x0f\x18\x86\x29\x29\xcb\xde\xaa\x20\x34\x24\xc6\x3c\x5d\x3c\x6e\x47\xbb\xd4\x44\xc4\x0e\x18\xfc\xf4\xfc\x30\xe5\xcd\xe7\x87\x2f\x87\x2a\xfe\x79\x00\xc7\x56\x15\x0d\x9c\x26\xff\xfa\x15\xb7\xb0\xe2\x57\xf3\xd0\xb7\x1b\xd3\xe7\x74\xc6\x58\x90\x92\xda\x7c\x66\x76\x28\xa9\xed\xa7\x66\x43\x88\xe8\xb1\x6f\x3f\x94\x94\x68\x98\x5f\x95\x90\x0a\xfe\x69\xc3\xef\x7e\xda\xfb\x9e\x89\xb3\xd9\x75\x22\x55\x12\x09\x4f\xdb\xf7\x96\x9c\xcb\xbe\xff\x9f\x26\x49\x5c\x49\x6d\x93\x48\xe2\x33\x64\xf9\x16\x74\x58\x09\x6a\x7e\x8e\xde\x47\x0a\x5d\xf6\xfe\xd0\x49\xec\xa4\xef\xff\x97\xc7\xfd\x1f\xe8\x1a\xf4\x9b\x3d\x88\x2b\xa9\x4d\x32\x6c\xf7\x83\x51\x08\x1c\x57\xd1\x20\x7c\xb6\x47\x7f\x87\x47\xa3\x59\x6c\xee\xaf\xc4\xcb\x69\x20\x02\xef\x3b\x15\x0e\xa2\x51\x49\x58\xae\x62\x0b\x72\x3c\x07\x67\x32\x48\x3e\x5b\x7c\x54\x12\x6f\x02\x6f\x81\x18\x92\x2f\x14\x0a\x28\x92\xff\xee\x7f\x65\x32\xb9\x5c\x36\x9b\x41\xbf\x47\x36\x9f\x33\xcd\x32\x50\x41\x53\xbc\x66\x29\x3f\xd1\x5c\xee\x51\x79\x49\x99\xd2\x94\x7f\x9a\x9a\x80\x5f\x3c\xf9\x00\x22\xf8\xdf\x55\x2c\x1e\x82\xce\x3d\x2a\x89\xbf\xfe\x2a\x86\xa5\x44\x30\xe3\x1d\xd5\x7e\xb7\x81\x99\x6e\x82\x60\x91\xf3\xe1\xef\xfd\xd8\xef\xcb\x0e\x58\xff\x40\x07\xac\x4f\x76\xc0\xfa\xcd\x0e\x1c\xd5\x97\xb0\x03\xa7\x8e\x8a\xc0\xc2\xff\x97\x9d\xcc\x3e\x3e\xc6\x4f\x73\x30\xdf\x78\x06\x36\x06\xaf\x89\xa7\x5a\x4d\x22\x7e\xae\x0c\xde\xd5\x27\xce\x55\x93\x62\x22\x01\x09\x98\xf9\x99\x99\x23\x62\xfc\xa7\x58\xf7\x15\x8b\xab\xff\xfa\x17\x9a\x7d\x44\x73\xb9\x44\x1a\xcd\xe5\x20\xc7\x4f\x41\xf2\xc7\x14\xc9\x4f\x29\x1e\x13\xd6\x18\x72\x63\xe6\x5d\xf4\xc9\xd7\x48\xe2\xfa\x37\xf3\x33\x13\xee\x53\x93\x27\x54\x6f\x12\xfb\x8b\x66\x2f\xa3\x75\x20\x35\xf1\x06\x7e\xda\x2f\x98\xf2\xd9\xc0\x00\x3b\x89\xbc\x60\xd6\xa7\x23\x02\xec\x24\xfa\x82\x99\x9f\x07\x9e\x79\xc1\xf4\xdf\x00\x9e\x7d\xc1\x34\xff\x47\xee\x05\xe3\xfd\x1f\xf9\x17\x2c\x80\x54\x78\xc1\xd4\xfd\x0d\x79\x77\x46\x83\xff\xff\xf7\xfe\x27\xfc\x12\x11\x40\xfb\x89\xbc\x44\x34\xd0\x7e\xa2\x2f\x11\x19\xb4\x9f\x99\x97\xfd\xed\x1d\x43\x14\x36\x16\xbb\xb6\xbb\xc5\x81\x3f\x7d\xcf\x39\xfe\x90\x78\xca\xf4\x87\xc4\x13\xbe\x8f\x7b\x12\x26\x48\xf7\x13\x5e\x12\xfb\xfd\x2d\x87\xc6\x6c\x0f\x65\x10\xf8\xef\x3b\x4a\x3c\x70\x4d\x5d\x04\x2a\x66\xa7\xc8\x76\x93\x60\xbc\xcd\x1e\x59\xc5\xd9\x57\x82\xe1\x5e\x9b\x78\xaf\x8e\xd9\xe7\x9a\x34\x3d\xe2\x42\x55\xfa\x32\xe7\xa0\x63\x5f\x66\x10\xf7\x32\xae\x14\xfd\x6b\x47\x0d\x5a\xca\x27\x9e\x3e\xac\xe6\xed\x55\xef\x34\x89\x5c\x66\x1d\xd1\x44\x2f\xb3\x4e\xfa\x96\x81\xee\x12\x04\x45\xb2\x85\x6c\x31\x93\xcf\x16\x2f\x48\x18\x5c\x89\x72\xc3\x1f\xe4\x6f\x4a\x0e\xf6\xc8\x93\x23\x8c\x7e\xee\x89\xd7\xf9\x6e\x19\x0b\xa8\x81\x4d\x21\x30\xfd\x05\xa6\xbe\x5e\x94\x78\x82\x44\xc2\x8f\x11\x08\xee\x21\x81\x94\x68\x3f\x60\x61\xe0\xab\xf2\xf5\x23\x32\x3e\x59\x91\x87\xd8\x47\x38\x5c\x74\x1e\x1f\xe3\xef\x74\xc2\xfa\x44\x27\x94\xc4\x31\xd2\xe6\x04\x7c\x18\x8e\x73\x83\x0c\xc7\xac\xfd\x7e\x0f\xe5\xf3\xf9\xbf\xcb\xe8\x35\xdd\x8f\x5e\x04\xaa\x4a\xf1\x36\x8f\xd9\xc1\x49\xe1\xfb\xee\xc1\x22\x0a\x07\xee\x41\xb4\x90\x0d\xdc\x83\x79\xb4\x10\xb8\x07\xb3\xb9\x42\x70\x60\x37\x97\x4f\x40\x72\xe4\x4a\x54\xbd\x1f\xd9\x9c\xb7\x78\x86\x3e\x45\x11\x53\xe2\x48\xb6\x90\x80\x5e\x31\x25\x5e\x28\xa2\x09\xc8\x89\xce\xfd\x4a\x98\x12\x2f\xe5\x73\x09\x68\xed\x65\x65\xd1\x04\x34\x8b\x1c\x90\x86\x97\x92\xc9\x24\x42\x9f\x1f\x79\xf0\xf9\x09\xef\xfb\xfc\x34\x48\x0c\x96\x2e\x88\xfc\xd0\xfb\x27\xc8\xbc\xc9\x0b\x36\x30\x7d\xaa\x44\xf7\xbf\x1c\x3c\x82\x5e\x76\x4f\xd9\x1d\x3c\x80\x91\x5b\x50\xd0\x4d\x40\x78\x8a\xc3\xb1\x8a\x76\x92\x15\xa5\x89\xd1\x42\x0b\x04\xdd\xf4\xcd\x5f\x51\x8e\x73\xfb\xec\xb0\x74\xcb\xed\xb8\x3e\xd3\x63\x09\x55\xd1\x16\x3d\x9b\xb7\x41\x93\xd7\x78\x09\x04\xae\x46\x21\xd5\x74\x6c\x8f\x1e\x47\xca\x9c\x74\xc1\x0f\x06\x38\xe6\x60\xe7\x26\xd0\x3b\xf5\x0f\xc1\x6f\x53\x0b\x98\x6b\x60\xfe\x69\xfd\xa5\x2f\x0f\xbc\x42\xb3\x53\x09\x11\xe6\xba\xba\xb9\xf0\x78\xd1\x2f\xf0\x9a\x8a\xd8\xf2\x22\x17\xbd\x9d\x6d\x5e\xad\x05\xbf\x85\x99\x74\xe6\x6f\xff\x3d\xa2\x84\x36\xe2\xd3\x80\xfb\x1b\x10\xd4\x14\xbd\x06\x9a\x4d\x2f\x15\xdb\xf6\x0d\x96\x5e\x89\xfb\x75\x6f\x82\x4d\x01\x0f\xc4\xa1\x5d\x5c\x14\x4f\x73\x49\x7f\x45\xff\x7c\xd3\xef\x54\xbf\x07\xfc\x02\x01\x16\x2c\xf5\x35\xf8\x3b\x38\xbc\x0f\xe1\x9d\x26\xae\x30\x59\x39\xc0\xb2\x59\x20\x9a\xbc\xfb\x3b\xcd\x5f\x55\xbb\x04\x76\xd1\x10\xa9\x6b\x36\xd8\xd8\x0d\xdd\xfa\x9d\x41\xbe\xac\x74\x0e\xe8\xb4\x89\xdf\xf1\x46\xc4\x13\xd8\xbf\x82\x62\x81\xdd\xd9\x4f\x0f\x8a\xc4\x4f\x3c\xb8\xde\xb2\xe2\x67\xb1\xc0\xd2\xd5\x75\x28\x26\x4c\x7f\x06\x9d\xa5\x5f\xdc\xd2\x74\x53\x2e\x9d\xce\xe4\xe3\xf2\x7b\x4f\xb8\xdd\x95\x91\x37\x84\x5b\xe2\xa4\xf0\x9d\xdb\xb9\x4e\x3c\x1e\x0d\x7e\x0b\x4c\x0b\xf3\x6f\x40\x30\x52\x0d\x45\x5b\xb0\xc7\xf4\xf8\x11\x52\xca\x12\x4c\x00\xb4\xd0\xbe\x7f\xf0\x8e\x5e\xf4\xd1\x2f\xe9\x49\x53\x65\xa6\x00\xf3\x3e\xd6\xb7\x84\x72\xe2\x25\x48\x3c\xb1\xda\xc7\x61\x28\x3a\x33\x13\x60\x75\xb4\xf2\x27\x0e\x0b\x50\xa0\x87\x77\x94\x0d\x50\x59\x8f\x66\xd8\xbd\x56\x4f\x6c\x1c\x81\x99\xe2\xf4\xca\xb4\x73\x37\xd7\x71\x59\x88\x5f\x7a\xb7\xa4\x94\xae\x05\xa1\xca\x21\x87\x5c\xb1\x4f\x18\xc8\x1c\x64\x8b\x67\x1c\x74\x3a\x27\x6f\x20\xb8\xe4\x15\x8d\x0a\x6f\x3f\x0a\xfb\x1d\x12\x3c\xfe\xfc\x10\x54\x7e\x7e\x88\x3c\xd0\x4b\xec\x2d\xb8\x68\x47\xe1\xad\xef\x5f\x10\x48\x04\x86\x2d\x7b\x3f\x0c\x13\xf8\xcb\x0b\x65\xf2\xae\xa2\x49\x81\x67\xe7\x3b\xb9\x7f\x52\x66\x07\x6f\x0c\x76\x8a\x50\x70\xcd\x98\x3f\x8d\xe2\xcf\x0f\xfe\xdd\x52\xe8\xf3\x03\xb4\x4c\x40\x5f\xa2\xf2\x09\xdf\x1b\xec\xef\x47\x68\xd3\xd4\xcd\xf8\xf3\xc3\x10\x4c\x2b\x0d\x34\xa6\xe9\x76\xcc\x72\x0c\x43\x37\x6d\x20\xc6\x9e\x1f\x92\x87\x2a\xd7\x4e\x6f\x2b\xc5\x8b\xe2\x51\xf2\x53\xfa\xb2\xe1\xe5\x69\xc0\x4c\xc4\x4f\x11\x82\x42\x2c\x84\x00\x29\x55\xb7\xec\xe7\x07\xc8\xf7\x1a\x7a\x7d\xd7\x55\x90\x52\x75\x29\x7e\x5d\x2a\xe6\x4b\x80\x98\x09\x04\xa0\xac\x81\xf8\xfc\x90\x80\x40\xca\x30\xfd\x54\x2a\x30\x92\xc4\x8f\xf3\xc3\xaf\xc6\x02\xcb\x0e\x27\x1b\xa7\x2c\x81\xee\xd8\x98\x05\xec\xf0\x67\x30\xb8\x6f\x1f\x55\x08\xaf\x2f\x8c\x70\x73\x79\x53\x8b\x90\x8b\x85\xb5\x7c\x3a\x99\x7e\x55\x20\x3e\xc5\x66\x8a\xa9\x68\x52\xec\x4c\x7c\x79\xd8\xde\x92\x6a\x33\xc5\x04\x71\x90\xd8\x27\xa0\x0c\xc8\xf8\xbe\xcf\x6b\xdf\xfb\x1f\x52\x36\x42\xe8\x92\xba\xa7\x3d\xb8\x28\x7a\x83\xc4\xbe\xf2\x1d\x51\xec\x03\x5a\x7d\x4c\xfd\x90\x98\x71\x18\xd2\x53\x66\xb8\x6a\x05\x42\xa6\x6c\xea\x4b\xdf\x7f\x97\xb8\x90\xb0\x11\x50\x45\x53\xfc\x09\xb1\x03\x3e\x73\xfa\x2a\x5d\xfc\x78\xf0\xfe\x64\x35\x8a\x7c\x70\xf1\x13\x7a\xde\x50\xcb\x52\xbe\x9a\x8f\xf9\x97\x9b\x84\xb9\xd4\x51\xdc\x9c\x4a\xa3\x33\x22\xdf\x9d\xe0\xc1\xb5\x7e\x50\xdc\xbf\x01\x29\x92\x1a\x16\xb0\x83\xb5\xf8\x26\x68\xbf\xe8\xd5\x90\xdf\x6d\x41\xd7\x86\x7e\x1b\x91\x70\x3a\x7a\xda\xff\xb1\xde\x81\x3f\xc1\xff\x84\xcc\xd7\xcb\x49\x8a\x37\x0c\xa0\x89\xa4\xac\xa8\xe2\x59\x5b\x09\xe8\xe7\x1d\xb5\x34\xc0\xfd\x96\xd6\x19\xe4\xbc\x60\x9f\x60\x09\xc5\xc2\x6d\xdb\x77\x08\xdf\x97\xc9\xe1\x4d\x8c\xd1\xa5\x74\xa9\xa9\x2e\x6e\x53\x1e\xf7\xf2\x8a\x66\xdd\x5d\x20\x6f\x4c\x51\xe1\x56\x78\xcc\xdb\xcd\x48\xe4\xd3\xa5\x39\x01\x52\x87\x8b\x4e\x9f\xce\xa4\xf6\xd9\xad\x94\x3f\xc2\xb9\x72\x8b\x86\xbf\x35\x95\xfc\xd8\x0a\x09\xd8\xd1\x65\x1d\x41\x04\xf5\xc1\x22\x75\xb1\x03\xfa\x11\x46\xe6\xc2\x51\xa8\xef\xfe\x96\x0e\x75\x88\xb1\x98\x99\xc0\x92\xc9\xa8\xf2\x51\x14\x7b\x02\xc4\xdf\xc2\xc4\xbf\xc0\x91\xf7\x9f\xba\x58\xd7\x2f\x80\x5d\x2e\xfb\x87\xe8\xf3\xdb\x0b\x7f\x64\x66\xf8\x13\x75\xe1\x2c\x1a\xe1\x42\xa3\x3a\x39\x20\x72\x66\xfe\x4e\x5c\x04\x31\xf8\x57\x9e\x7d\xa0\x7c\x04\xca\xa0\xf9\x7b\xed\xdc\x8e\x65\xbf\xe0\xa0\x9b\x30\x2f\xd5\xad\x0b\xf6\xf2\xed\x9f\xd8\x45\x99\x9b\x36\xd2\xb3\x6a\x81\x21\xf4\x83\x7a\xe7\xce\xa4\x20\xcd\xf7\xed\x85\xad\xfe\xfb\xbf\xde\x2e\x01\xf8\xf7\x77\x9e\xb4\xba\x37\x36\xff\xbe\x05\x20\x6c\xff\x7d\x08\x41\xa1\x53\x10\xd7\x32\xe9\x6f\xe0\x73\x0f\xd8\x9f\xe1\x76\x47\xf6\xfd\x48\x9d\x87\xbd\x5c\x8e\xe6\x47\xb5\xcf\x63\x6c\xee\x4b\xd2\x4f\xb6\x73\xb3\xe6\xcd\x36\x3e\x25\x06\x90\x68\xfe\x90\xa1\xbd\xe8\xa0\x4e\xbf\xfd\xf9\x9c\x0c\x41\x12\xaa\x63\xc6\x13\x9f\x12\xbd\x27\x15\x2e\xe4\x64\x34\x59\x6e\x5b\x90\x22\x02\x18\xbc\x63\x7d\xac\x82\x04\xad\x94\x75\xc1\xb1\x7e\x0b\xaf\xa0\xc6\x1f\x21\x66\x02\xcb\x59\x7e\x16\xb3\x83\x25\x38\x1a\x84\xf0\xe4\xcb\x11\x53\xeb\x0e\xa6\xd1\x40\x5d\x41\xb8\x10\x45\x01\xc0\xa7\x9b\x9b\xe2\x54\x20\x30\x4f\xd6\xda\xb0\xf8\xa7\x70\x0f\xf6\x72\x4d\x7d\x0d\x7e\x8b\xb4\x27\xd5\xfe\x94\xbe\x36\x6f\xda\x7e\x3e\xae\x29\xcb\x20\x92\x3b\xb1\xbf\xb3\x47\xfc\x68\x69\xb8\x3b\x67\x6e\x6c\x58\xf7\x77\x94\x9e\xf3\x25\xfc\x8e\x5c\xf0\x6d\x1a\xeb\x6b\x97\xd0\x6d\x9b\x86\x74\xb5\x88\xbc\x63\x90\xb8\x21\x21\xfc\xd6\xa4\xf3\x53\x3a\xbf\xd9\xd2\xb9\x59\xe5\xec\x46\x86\x2b\xd1\xf1\xe7\xda\xe4\xfe\xc6\x08\xbc\x45\xfb\xe9\xf7\xee\x10\xf8\x0b\x83\xc3\x63\x6f\x77\x4a\x05\xe2\xfe\x2f\x0c\x3e\x0f\x8c\xba\xd4\x4f\xbf\x20\x89\xc3\x95\xeb\xbe\x3e\xc7\x0b\x2b\x47\x31\xcf\x2c\x7a\x97\xba\xdc\x4d\x0a\x9d\x1c\xb5\xbe\x31\x56\x61\xb4\xc0\x25\xad\xef\xf9\xbb\x3f\x11\x2b\xf2\x1e\x71\xde\x2d\x71\xae\x23\xdc\x54\xcf\x0e\x73\x31\x1a\x94\x2f\x18\x06\x0e\x9a\xde\x4d\xcb\x6f\xb0\x99\xbe\xd4\x5a\x13\xf7\x2d\xfb\xc7\x4d\x92\x90\x92\xbc\x85\xd0\xd7\xc5\x7d\xcf\xd3\xa9\x36\xff\x33\x0e\x43\x6a\x6a\xa6\x9b\x2e\x6f\x8a\xbe\xf1\x32\x11\x07\xf7\x8c\xc3\xef\x5b\x9e\x7d\x85\xfd\x16\xac\x7b\x36\xdc\x0f\xed\xc8\x89\xe3\x25\x28\x87\x1e\x62\x57\xde\x0c\x6f\xd7\xbf\xec\x1b\x1f\xea\x02\x01\xfb\x5f\x54\x4e\xec\x4f\x97\xef\x43\x60\x6d\x20\xca\xa3\x07\x0d\x40\x74\x02\xf4\x26\xe8\xe8\x0c\x72\x60\x4e\x38\xdf\x7d\x5c\x6d\x3b\x4e\x0b\xdd\xd9\x47\x7c\xb0\x3c\x9c\xb9\x0c\x2f\xaa\x7e\x56\xa9\x06\xf6\x3f\xba\x3a\xbc\x23\xd3\xa3\x9d\x24\x79\xee\x5d\x3b\xc6\x0a\x7c\x43\xf6\x1e\x35\x3f\x28\xf5\x05\x09\xc3\xdf\x59\xdd\x0d\xb6\xe6\x27\x07\xbd\x8f\xe2\x26\x48\xbd\x6f\x65\xf8\xc3\x4d\x71\x34\xfc\x17\x3e\xc0\x40\x18\xdc\xcb\x8c\xee\xeb\x0f\x0f\xa0\xff\xe9\x42\x79\x2a\x4b\xe1\xfd\x71\x7c\x95\x3b\xe3\xab\x84\x8b\x48\xc5\x54\xc4\xfb\x4a\x4b\x34\xde\x37\x18\x3a\xea\xcf\x9d\xc5\xe6\x20\xa6\x6e\x54\x3d\xbb\x15\xe8\x47\xfc\x1d\xe6\x0e\xe8\x10\xa4\x5e\x45\x83\x7b\x63\xf6\x0d\x49\x44\x37\x2c\x9c\x96\xf5\x50\x7f\x7f\x83\x90\xba\x71\xbe\xe2\xbe\x60\x08\x4b\xc7\x4f\x66\x7d\xe2\x7d\x1f\x6b\x44\x85\x2f\x9f\x28\x95\x52\xc2\x10\xe3\x81\x62\x29\x53\x15\x44\x57\x28\xbd\x8f\x7a\x74\xc2\xe3\x78\xf7\xd1\xe9\x8c\xba\x78\x4f\xe6\xf0\x86\xc8\x09\x22\x3f\x3e\x81\x9a\xaf\xc1\x68\x29\xf2\x76\x99\x33\xfb\xf1\x99\x20\x8a\x90\xdb\x27\xee\xae\x70\xd1\xb8\xdd\x6b\xff\xfc\x99\x98\xdb\xd0\xaf\x06\xfd\xed\xfc\xf2\x04\xff\xf5\x9a\x28\x12\x5f\xbf\x88\xc5\x97\xa0\x35\x64\x40\x24\xb4\x09\x0b\x47\xae\xe3\x27\x80\x35\xe2\x00\x52\x42\x06\xf3\x43\x2c\xb0\x46\xdc\x3e\x4d\x09\x95\x15\xf7\xd2\x03\x15\x9c\x2e\x09\x4f\xcc\xa7\xa6\xbc\x05\xc6\xc9\x77\x8b\x04\xbd\x1f\x43\x53\xcc\xfd\xa6\x44\x79\x5b\x51\xb1\x0c\xa8\x79\xbc\x37\xfb\x13\x20\x46\x90\xe2\xef\x0c\xbf\x21\x41\xb0\x39\x8b\x7d\x43\x42\x2c\xb7\x27\xd4\x88\xc4\x4e\xc4\x72\xcc\x41\x97\x16\x8f\xcc\x7a\xa3\x5c\x55\x11\x45\xa0\x3d\x3e\xc6\x3f\xc3\xd0\x11\x03\xff\x16\xd7\x9f\x6f\x8f\x82\xaa\x51\x6c\x89\xd7\x21\x1c\xfb\x12\x9c\x9b\x30\x31\xf0\x64\xfe\x85\xd9\xfe\x59\x08\x2f\x41\xc7\xcc\xe4\x05\xed\x34\xec\x90\xa0\x2a\x1a\xf0\x7d\x40\x71\xfd\xdc\x12\x75\x7a\x5f\x85\xf9\x82\xc1\x10\x8f\x1d\x45\xf4\x75\x88\x87\x07\x22\x8c\x84\x89\xf2\x2d\x0f\xa4\x81\xc1\x4f\xc6\x5f\x01\xf1\x9f\x8c\x64\x32\xa1\xcc\xe2\x07\x27\xd8\xa5\xef\xd4\xdf\x98\xaa\x76\x6a\x2a\x41\x5a\x4a\xd5\x79\x3f\xaa\x26\x6e\x40\x9b\x04\x04\x63\x18\x66\xf8\xc1\xdf\x1f\xd6\x4d\x40\x32\xf6\x05\x81\x54\xcc\x80\xf8\xe8\x12\x32\xf8\xf1\xd1\xc0\x30\x8c\xff\x09\xbf\xfc\x84\x5f\x1e\x1f\xe3\x32\xf6\x05\x86\x04\x8c\x4f\x59\xb2\x32\xb3\xe3\x09\x68\xe3\x4f\xe6\x65\x7c\x03\x69\x29\xdb\xe4\x35\x4b\xe5\x6d\xc0\xe9\x3d\xdb\x54\x34\x29\xee\x15\xfe\x09\xbf\x40\xc2\x4f\xe4\x25\xe1\xff\xfd\xe6\x7d\x27\x20\x15\xf3\x3f\x90\x04\x24\x62\x1b\xdf\x97\x26\xf3\xa6\x27\x2d\x5f\xc3\x4f\x5d\xf4\x54\x94\x35\x16\xf7\x8f\x06\xe8\xaa\x95\x34\x12\x5f\x67\x1f\x1d\x4a\x79\xa7\x93\xde\x8f\xf8\x06\x32\x20\xfd\x63\x45\x3d\x01\x6d\x1f\x1f\x75\x0c\xc3\xdc\xc7\xc7\xb8\x47\x80\xe6\x61\xe5\x39\x63\xa4\xb7\xcd\xf7\x26\xb4\xfd\x3e\x85\xfc\x5a\xdf\x7d\xcc\xfd\x03\x0c\xf1\x04\xe4\x5b\xaf\xbe\xdf\xd5\x06\x14\xcb\x37\x44\x00\xf1\x87\x72\x21\x46\x7b\xc1\xa1\x84\xc3\x31\x90\xef\x97\x05\x18\x2d\x98\xa3\x7e\x41\xe8\xfc\xd8\xc4\x79\xc9\xe0\xe9\x26\xd1\x30\x43\x3c\x2e\xed\xb8\x7b\x88\xc5\x9a\xc9\x53\xb4\xbd\x11\x31\xfe\xe5\xf5\xd7\xf8\x0b\x63\x0f\xbd\x7e\xaf\x03\x8f\x8f\xa7\x27\x56\xe2\x1f\x75\x27\xf1\xeb\xd7\x17\x04\x7b\xc7\xf0\x7c\x07\xf0\xbb\x54\x48\x1c\x31\xbd\xc7\xe0\x33\x09\x8b\x62\xc2\x7f\xdd\xdd\xc3\x85\xb0\x71\x41\xf0\x34\xb4\x28\x14\x34\x8a\x1f\x7f\x8f\xbd\x82\x39\xf4\xf9\x26\xae\x80\x27\x12\xd0\xeb\x17\x0c\x73\xae\xee\x0b\x8c\xbf\x23\x5e\x8c\x24\x92\x80\xce\x39\xd3\x3f\x6c\xb5\x7e\xf9\x82\x61\xaf\x91\xc4\x3c\xcb\x49\xce\xee\x1d\xd6\x3a\x7a\x03\xee\x77\xf0\x53\x20\xcb\xbf\x01\x72\xf6\x39\x90\xc7\x30\xd0\x4f\xc0\x04\x1b\x4f\x6d\x8e\xe3\x9e\xac\x12\x0f\xf7\x29\x3e\x3e\xc6\x5f\x7f\x61\xb3\x3b\x21\xa4\xe7\x52\x3c\xa2\x22\xf6\x7a\x2b\xf9\x3e\x09\x3f\x21\xa1\x7f\x8b\x7e\x1f\x53\xef\x33\xf0\x4e\x88\xf7\x09\xd2\x41\x12\x76\x26\xc8\xee\xeb\xaf\x27\xb7\x63\x1a\x90\x09\xbd\x7e\x3c\x3f\x3e\x2a\x31\xfb\xb0\x84\x87\xa0\x08\x49\x90\x95\x80\xe4\x84\xbf\x50\x5f\x6a\x5a\x90\x91\x4c\x3e\x19\x7f\xa9\xfe\xb2\x49\xfe\xd1\x02\xf2\x89\xce\x5e\xce\xd3\xf0\x6c\xe9\x59\x72\x15\x67\xa1\x63\x30\xed\xd9\x18\x91\x2f\x57\x33\xfd\x56\xa9\x7f\x98\xd3\xae\xe0\xfd\x4d\x4e\xbb\x82\xf7\x7b\x9c\xf6\x84\x7f\xb0\xdf\x4b\x5d\x1f\x96\xbd\xb1\x59\x7a\xbf\x72\xa8\xd6\x9f\xd6\xdb\xdf\xd8\x0a\xbf\xfd\xf1\x2e\x3b\x92\xd0\xef\x19\xed\x4e\xef\x59\x7d\xa7\xa1\xaf\xb7\x97\xe9\xc4\x27\x6c\x7e\x41\x0b\x02\x50\xd4\x3b\x0d\x04\xc5\x7e\xbb\x85\xa3\x69\xf2\xaa\x0f\xef\xe2\xf3\xf5\x03\x3b\xaa\xbf\x92\x55\x4f\xaf\xd3\xbb\x7f\xf3\x27\x76\xd4\x17\x3e\x03\xef\x07\x1c\x3c\x69\xe8\x73\x4c\xfc\x2e\xae\x27\xa7\x2f\x3f\xee\x8e\x7f\xad\xed\x87\x7a\xe3\x5d\x0f\xee\x81\x11\x92\x27\x98\x7d\xd8\x23\x60\xdb\xc0\xec\x19\xbc\xa0\x68\xd2\xfb\x44\x52\xc1\xec\x7a\x7c\x3e\x0b\xfa\xbd\xae\x5d\xfb\xa7\x6f\x9d\x58\xfb\x33\x93\xf6\x95\xcb\xfc\xd6\x99\xfc\xdf\xb2\xa7\x5f\x79\x84\xb1\x4b\x72\x7f\xd0\xc5\xf4\x67\xa7\xc7\xa5\x27\xfb\xf3\x0d\xf9\xc5\x7f\xaf\x9d\x93\x39\xf8\x31\xb9\xef\x80\xbe\x0f\xf9\x7d\xce\x3d\x94\xb8\x87\xf2\xfe\x33\xb1\x4c\x91\x74\x3d\xa5\x98\xef\x76\x38\x4b\x0f\xfb\x88\x61\xf6\xaf\x5f\xf1\x1b\x35\xc0\xed\xa8\x89\xf7\x6d\xd6\xfe\x0d\x24\x37\x73\xa2\x18\xaf\x8b\x98\x6b\xdf\xdb\xf1\xe6\xdb\x9a\xbf\xc3\x10\xd0\xc4\xef\x37\x4d\x84\xfb\x4b\xc0\x87\xcb\x51\xee\xbc\xf2\x7b\xd3\x44\xf3\xf4\x31\x0e\xc0\xc7\x01\xec\xfd\x63\x67\xe7\x87\x64\xc8\xf0\x4c\xca\xf2\x70\x26\x45\x4c\xe1\xd1\x69\x4c\x8a\xb7\xf9\xeb\x63\x29\x17\x47\x51\xfc\x90\x42\xcd\x8e\x1e\x86\x13\xc2\x4b\xc5\xfd\x23\x39\xcf\x0f\xcf\x0f\x41\xf2\x4c\xc2\xc0\x41\x03\x98\x7a\x1f\x91\x7a\x71\x56\x21\x1a\x89\x60\xb4\x94\xbd\x62\x45\x97\x94\x1f\x1d\xa9\x28\x5c\x2a\x20\x39\x74\x7f\x54\x30\xcf\x5d\xac\x41\x5c\xc8\xd1\x20\x70\x96\x7b\xda\xda\xfe\x60\x25\x38\x07\x8d\xec\x2d\x60\xfb\xa1\x5a\x32\x1f\xdc\xc8\xe2\x3b\x56\x2e\x23\x71\x35\xdd\x8e\x29\x4b\x23\x30\xb2\xfb\x21\x99\x1e\x40\xdc\x3a\xd4\x8a\xc0\xfe\x0c\x29\x10\xf4\xed\xc4\x52\x11\x7d\x9f\xe9\xc9\x07\xa4\x5e\xf6\xfb\xe8\x69\xac\x58\x23\x20\x3d\x06\x1f\x50\x3d\x3c\xb9\x7b\x30\xc6\xf9\xc6\x65\x25\xb1\xbf\x3a\x18\xb5\xdc\x43\x99\x22\xf2\xb7\x5f\x43\x8c\xde\x58\xc0\xec\x1b\x27\x93\xb1\x28\x72\xba\x27\xf3\x22\x30\x0f\x9f\xe1\x95\x3c\x98\x7d\x7d\x53\xce\xed\xfb\x1b\x9f\x0e\x7d\x3e\xb0\x5b\x74\x17\xec\x8d\xfb\xb1\xc0\x59\xab\x71\x3b\xe1\xbf\x36\x0e\x52\x96\xff\xdd\xf3\x5f\x15\x8e\x9b\x90\x7f\x21\xa8\xa0\x2f\x0d\x45\x8d\x8a\x9a\xc1\xed\x98\x76\xf0\x79\x7c\x88\xcf\x84\x80\xb7\xbf\xeb\x30\xfe\x95\x39\x38\xd7\xef\x45\x3e\x90\x98\xf9\x14\x05\xea\x02\x9f\x05\x4e\xea\x33\xda\x4c\x6f\xe8\x52\xdc\x4c\x78\x60\x83\xbb\xb7\x0e\x0d\xed\x6f\x75\xfe\xfa\x8c\x29\x1a\x6e\x00\x60\xe8\xdb\xf1\x27\xe2\x7d\x06\x8f\x30\x20\x2f\xfe\x99\xff\x33\xb2\x9e\xbe\xed\x79\x24\x95\xfe\x1e\xa9\xa2\x4b\x92\x22\x52\xf1\xbe\x7f\x26\x44\x56\xbf\xf5\x0e\xa2\x37\x10\x20\x35\xa0\x59\x8e\x1e\xbd\xf6\xaa\x38\x45\xb3\x41\x70\xec\xe7\x2b\x97\x59\xbc\xe2\x5f\x8c\x16\x56\x57\x82\xea\xaa\xa2\x2d\x22\x7c\xf4\x70\x40\xc2\xef\xe3\x88\xe8\x10\x48\x35\x98\x56\xfd\x72\x38\xf4\x5b\xc3\x11\xd6\x8e\xc6\x43\x3f\x19\x8f\x63\x43\x7b\xe8\x82\x5b\x4d\xe8\x26\x4f\x9f\xbf\x9c\x1a\x99\xf0\x0f\x13\x0e\xfd\x0a\x42\xd3\x00\xe4\x5f\x2d\x71\x35\xa4\x4a\xe2\xfa\xbe\xe3\xe3\x1d\xc7\xd6\x4f\xfb\x05\x03\x3f\xed\x97\xf0\xfd\xb9\x98\xb5\x3f\x9b\x66\xd7\x07\x4f\x23\xff\x6e\x18\x23\x1a\xad\x66\x27\x37\xe6\xee\xf7\x50\xae\xf4\xb7\xaf\x5a\x25\x78\x0b\x9c\x9c\x47\xb9\x9e\xa8\xfe\xb9\x49\xff\x24\x65\xa6\x10\x5e\xb4\x5a\xc8\x1e\x9f\x3e\x0d\xd7\x14\xfe\xb3\xef\x96\x86\x17\x55\x40\xf2\xe5\x29\xc7\xd0\xb7\xe9\xc9\x93\x30\x85\x57\x0d\x99\xc7\xee\x9f\x71\x39\x5c\x6d\x7a\x71\x1e\x91\xbf\x11\x75\x81\xc9\x67\x67\x59\x3c\xa9\xec\x4b\xe2\xc3\x1b\xa7\xc7\xf4\x60\x5b\x70\x99\x01\x54\xf5\x66\x05\xa0\xaa\xb7\x2b\xc8\xbc\xd9\xf0\xf4\xec\xeb\x64\x4e\x37\x0e\xa9\xff\xcc\x79\x95\x73\x4d\xc7\x1f\x91\x86\x62\xd9\x29\x5e\x14\xe3\xff\xf6\x1f\x1c\xff\xf6\x5f\x6f\xca\xfe\x9b\xea\x0d\xf1\xbf\x13\xb7\x82\x3a\x77\x8c\x26\x82\x0d\x66\xa5\xec\xc8\x1a\x7f\x1a\xf2\x1f\x68\x6c\xd7\x63\xf5\x4e\x58\xb9\xff\xf5\x3b\x67\xc4\xec\x13\x37\xde\x85\x87\xf9\xe8\x4b\x0d\x22\x02\xc0\x9d\x33\x1a\x37\x5f\xf6\x39\xd7\x26\x83\x20\xed\xf0\x82\xbb\xb3\xbe\x45\xe5\xec\x4d\x10\xfe\x73\x2e\xdb\xce\x80\x9c\x9d\xe6\x41\x45\x6f\x52\xf9\xcc\xfa\xfd\x84\x71\xf7\xc7\x57\x71\xbc\xcf\x83\x3f\x4a\x05\xbc\x89\xab\x6a\xfc\x2c\x54\x12\x24\xde\xce\x42\x14\x8f\xdf\x27\x51\x72\xc7\xc4\x53\x8f\x79\xb8\x1a\xbc\x1b\x47\x08\x59\xd8\x17\x24\xf1\xe6\x2b\xdf\x9c\xc9\x6b\x96\x1f\xd8\x2e\x6c\x0f\xe1\x09\xf6\x61\xcb\xec\x23\x7b\x7e\x15\xbd\x72\x76\x94\xe9\xe9\x74\x72\xda\x37\xd9\x38\x62\x43\x5d\x03\xad\xc0\x33\xf3\x09\x4e\x32\x81\xa1\xf2\xc2\x8d\xe8\xfa\xd3\x30\xc4\x6b\xbe\xb8\xe6\xab\xb3\x2b\x13\x6f\xd1\x0b\x86\x40\xe4\xb8\xbf\x11\x74\x76\xb2\x01\xb9\x90\x15\xc7\x40\xb3\x2b\x69\xf1\x17\x06\x1f\x37\x21\x87\xf8\x9f\xe0\xd4\xd0\xad\x28\x32\xf0\x71\xe0\xd8\x6d\xf1\x73\x47\xf8\xdc\x16\x6e\x77\x44\xdb\xfb\x01\x5f\x77\x63\x96\x4e\xae\x25\xb8\xa4\xd0\x41\x38\xda\xf7\xaf\x6d\xb9\x14\x97\xf6\xfd\xbb\x8f\x2e\x65\xb4\x7d\x2f\xae\xed\x5a\x6a\xdb\xf7\x03\xdc\x2e\xe4\xb2\x7d\xfd\xcc\xcc\x2d\x41\x6d\x5f\x3d\x2c\x73\x63\xab\x69\x7f\x3e\x68\xff\x0f\xc2\xf4\xff\x24\x30\xff\xdd\x70\xf7\x3b\x02\xe9\x4f\x66\xd9\xfe\x75\xa6\xa8\x2a\xa1\xdb\xb6\xbe\x6c\x28\x1a\xc0\x6d\x6f\x88\xad\x70\x0b\x83\x9c\x08\x55\xff\x4a\x08\x16\x08\x76\x1c\x7c\xbd\xcd\xda\x71\xfb\xe4\xfe\xb3\x0b\x76\xf9\xf6\x1e\xcf\x7e\x43\x20\xe5\x0e\xcc\x77\x59\x7d\x7f\xd2\xf9\xb7\x13\xd2\xfc\x38\x22\xed\x17\xf0\xb1\x3e\xde\x05\xf9\xd1\x20\x27\xbe\xc7\xcf\x7b\xed\x3b\x1d\x3f\x77\x71\x94\x60\x1d\xce\xb6\x9d\x92\xec\x37\x1a\x8f\x7a\x75\x32\x0e\x90\xf5\x71\xf7\xee\x0d\x8a\x7d\x67\x40\xee\x52\xdc\xba\x53\xe1\x3f\x40\x95\xff\x3c\xce\x21\x7f\xfb\xc2\xc0\x74\x02\x55\xe5\x92\xa6\x3e\x4a\xba\x76\xb8\xa0\x16\xd8\x65\x5d\xb3\xe3\x00\xfa\x82\xf8\xcf\xa6\x1d\x4b\x79\x0a\x83\xa7\x6f\xab\x8a\x06\x30\xd3\x7f\x9e\xe1\x95\xc0\x7b\x74\x83\x69\xd1\x87\xf8\x4a\xc5\xf0\xbd\x46\x9e\xa6\x6c\x9f\x18\x0c\x12\x17\x04\xf0\xd6\x93\xb8\x7d\x6a\x61\xb8\xd3\xb9\xe4\x2d\xe9\x77\xb7\xc7\x57\xa5\x39\xdd\xb8\x4a\x0b\x89\xb3\x3f\x62\x1b\x2a\x21\x47\x14\xfd\xf0\xba\x0e\x7f\xe2\x12\xf4\x52\xcd\x7f\x74\xd4\xee\x8c\x19\x74\xca\xde\x8a\x11\x4f\xec\x4f\xc6\xc4\x47\x33\x7c\x03\xfc\xbf\xde\x94\x1f\xcf\x0f\x8a\xcd\xab\x8a\xf0\xfc\xf0\xfd\xf9\xe1\xf9\xc1\x7f\x17\xfb\x07\x38\x04\x0f\x78\xe3\x3a\xf4\xc1\x12\xba\x2a\x7e\xbf\x95\xe1\x55\x39\x4f\xef\x29\xbb\xa8\x8f\xb7\x05\xcf\xde\xd8\x5c\x55\x2a\xf3\x4b\x45\xdd\xee\xff\xbd\xdf\x5f\xef\xc9\xf8\x3d\x54\xc8\x64\xfe\xee\x4e\xef\xe2\xe6\x81\xeb\x9d\x1e\x52\xba\xdc\xe9\xe5\x4a\x68\xb4\xc1\xd3\x0e\x1b\x3c\xfd\x12\xbf\xbb\xbb\x3c\x2d\xda\xe3\x29\x10\x80\x9e\x1f\x54\x45\x5b\x3c\x3f\x40\x36\xf4\x05\x0e\xb3\x2f\x34\x78\x2b\xa5\x6b\x3d\x59\x77\x3d\x4c\xfb\xd1\x9d\x9c\xfe\x01\xdb\x80\x9a\xa1\x8a\x7b\x55\x02\x24\xae\x77\x03\x1e\xac\xaa\x22\x82\xf7\x61\x5d\x97\xf0\x61\x9d\x69\x3a\x7e\x17\x52\x27\x29\x21\x83\x59\x36\x6f\x83\x90\x8a\xfb\x68\x5f\x72\x1a\xeb\x4c\x3a\xa6\x09\x34\xbb\x11\x1e\x19\xb9\x4e\x3b\x1c\x6f\x08\x60\x9d\x57\xf6\xc5\xf7\x49\x6e\x6a\x83\x9c\x36\x9c\xda\x9e\x7f\xfa\x71\x77\x17\xc5\x4f\x0e\x34\x9c\xd5\x44\xbf\x9d\x03\xfa\x86\x3c\x81\x7f\x1d\x74\xdb\x93\xe6\xe1\x8b\x16\x93\xd7\x6d\x42\xe0\x2c\x34\xfc\x66\x3d\xf4\xec\x73\x73\x72\xe7\xf9\x19\x0d\xf7\xef\x0c\xf0\x9b\x6f\xbf\x9a\x49\x18\x86\x99\x29\xa6\xe5\x1b\xa8\xa8\x57\x8a\x2e\xe3\xfd\x06\xf7\x4a\xb6\x1b\x6d\xf6\xc7\xdf\x59\x5e\xbe\x1f\xde\xd9\xf4\x5a\x09\x1f\xc2\x53\x2c\x34\x97\xf7\x65\x7e\xc2\x6f\x3c\xf1\x9b\x4d\xf8\x37\x4e\x7a\x15\x5f\xfc\x26\x7e\xaf\xf2\xc9\x75\x98\xde\xf2\xe7\x91\x1f\xf3\xb0\xdb\xa2\xe1\x13\x51\x77\x14\x2f\x6f\xe0\x7d\xee\xf0\x28\xfd\xcd\xfb\x4c\x3c\x01\xd5\x02\x6f\x9f\xad\xe5\x73\x52\x50\xef\x68\xd1\x0a\x46\xdf\x37\x6b\x6d\x51\xdf\xa4\xf5\x1e\x38\x18\xb2\x43\x40\x51\x44\xe5\xbd\x72\x3e\x77\x78\x98\x26\xf6\xa7\x1c\x01\xf6\xef\x4c\xd0\xfb\x73\x6c\x7f\x2d\xe5\xb4\x3d\x54\x44\x83\x7b\xf6\xfe\x58\x72\xde\xbb\xf8\x21\xba\x48\xe1\x9d\x12\xe7\x46\x5b\x4f\x69\x00\x5e\x61\xff\xc8\x49\x54\x28\x1e\xe4\xf8\x11\xa6\x26\xf6\x05\x09\x6d\x84\x6f\xe1\xa1\xf4\xef\xbe\x11\xc3\xfc\xf5\x2b\x6e\x62\x5f\xfc\xbd\xab\x6f\xc2\xb8\x05\x22\xb1\xdf\xef\xf7\x10\x5a\xc8\xfe\xdd\xb5\xe2\xea\xc2\x9d\x1b\x37\xac\xe5\x72\xc1\x6a\xe1\xbf\x87\x14\xd9\x05\xfd\x4e\x68\xe7\x97\x87\x0b\xde\x1f\xd1\xfb\xf3\x8a\xc1\x4f\xb7\x80\xdf\x30\x7f\x1e\x97\x91\xcb\x38\x72\xec\x7c\xf3\x7c\x79\xfb\x99\x75\xe3\x4e\xbd\xc3\x15\x68\xd7\x77\x9a\xdd\xbf\x4a\xe2\x60\x79\xbc\xf5\x9c\x52\x10\x96\x82\xbd\xcd\xa4\xef\x30\x34\xf5\xfe\x80\x8d\xfd\x1d\xde\xef\xa3\xd8\xd1\xa0\x03\xce\x51\xc6\x1f\xa3\xfe\x8e\xfe\xb0\x63\xb0\xe1\xd1\x61\x76\x0c\x78\xc1\xd0\x7c\x31\x9b\xc9\x65\x73\xf9\x47\xaf\xca\x0f\x90\x0a\x96\x60\x20\xa6\xfc\xc6\x7c\x0a\xf3\xfe\xb3\x53\x7e\x24\x6e\x44\x65\xed\xbe\x54\xf1\x5f\xa6\x02\x47\xbf\xd3\x17\x0c\xb3\xae\x42\x08\xb3\xbe\x9c\x39\xb4\x75\xb8\x1d\x3b\x88\x9d\x3c\x38\x2c\x0f\x5e\x29\x04\xba\x13\x4b\x70\x23\x94\xe0\x53\xfa\x51\x1a\xc9\x25\x12\x4f\xaf\x98\xfd\xd5\xf9\xdf\x71\xf4\xeb\x89\xb3\x1c\x24\x12\xfb\xc3\xa2\x79\x35\x98\x9e\xcc\xa4\x79\x41\xa6\x0e\x19\x81\xa0\xf1\x67\xc7\xf3\xc3\xd4\x97\x3f\xd1\x45\x2c\xa7\xcf\x0d\x04\xdc\x58\x21\xfc\x90\xe5\x5b\x19\xd7\xc1\x9d\x02\xf6\x05\x4e\x40\xe0\x44\x4c\x9f\x00\xe1\xb1\x5b\x19\xd7\x40\x54\x0f\xc8\x3e\x91\x80\xa2\xdb\x31\x6e\x31\x6f\x4a\xb1\xbc\x4e\x04\x96\xbd\xeb\x23\x32\xfe\x31\x5d\xf1\xfc\xe2\xe7\x73\xe6\xfa\xf5\x0b\xfe\x82\x1d\xaf\x50\x3e\xe7\xc6\xc4\x7b\x35\xaf\xee\x8f\xbe\xc8\x7e\xf7\x2e\x66\xf9\x33\x77\x31\x9f\x03\x7c\xe7\x62\x66\xf9\xe4\x62\xe6\x0b\x2c\xfe\xfa\xab\xf8\x0b\xcd\xe5\x2e\x6e\x6a\x7e\xaf\xf9\x4f\x5d\x35\x7d\x41\xa7\x7f\xb6\xaf\xd3\x3f\xe9\xeb\xf4\xd0\xd7\xbd\x8c\x05\x31\xc1\xc1\x5b\xea\x71\x19\xca\xa2\xa5\x6c\x29\x5f\x80\xb3\xf0\x67\xa2\xb0\x7f\x68\xc7\xc3\xdf\xc7\x78\xb9\xb6\xc1\xaf\x1c\xf0\xfd\x24\x2f\x0a\x9b\xbe\x2c\x93\xf0\x1b\xff\x85\xa0\xc5\xc4\x29\x43\x07\x84\x94\xb1\xff\x63\x18\x9c\x36\xfe\xa4\xcc\xe2\xde\xac\x84\x4e\x6a\x97\x0f\x03\xed\xcf\xca\x9b\x39\x77\xa6\x65\x70\xa7\x8b\x6d\x02\xde\xf6\x0f\x4f\xe3\x16\x71\x2e\x16\x12\xf1\x13\x41\xfa\xee\x34\x7a\x7c\x84\xb1\x77\x26\x20\xff\x7f\x89\x5e\xbe\x56\xf8\x87\x93\xff\xa3\x09\xc1\xff\xa3\x13\x82\xff\x78\x42\x7c\x38\x85\x3f\x12\x57\xbf\x8d\xf1\xbb\xe2\xea\x1e\xc6\x77\xc5\xd5\x7b\xcd\x5f\x8a\x2b\xfe\x7c\xf2\xf3\xff\x8f\x4c\x7e\x6f\xda\xec\xf7\x7f\xb6\x36\xdb\xba\xf1\xff\xe4\xc2\x2c\xf8\x2d\x8b\x3f\xbe\x45\x5c\xe3\xab\x62\x8f\xdf\x90\x4c\x16\x45\x0a\x05\xb4\xf4\x4b\xfe\x75\x18\xf4\xf3\x42\x27\x39\x09\x48\xf5\x1b\x3f\x2d\x30\x93\x1e\xbf\x85\x33\x2f\xf7\x8b\x3f\x29\x7a\x57\x88\xc4\x85\xc7\xc7\x2f\x01\xa0\xf7\xe4\xc9\x8f\x03\x72\x97\x13\xe0\xd7\x81\x25\xb5\xcb\xc7\x0a\xfe\xf5\xaf\xe2\x69\x3f\xee\x01\x08\x71\xcb\x5c\xb4\x19\x4a\xcc\x2f\xc2\xe3\xa3\xea\x13\xec\x2e\x7e\xde\x26\xfa\xdb\xcd\x1e\x4e\xcf\xd0\x9b\x5d\x89\xe7\x13\xf4\xee\xd5\xbf\x89\xdd\x4c\x0a\x58\x22\x01\x69\x87\xfd\xda\xb9\x3e\x2e\xfc\x90\xbf\x5f\xf4\xe7\x42\x3b\x57\x7f\xf0\xdf\x2f\x60\x5e\xe8\xea\x8f\x58\x2e\x93\x2f\x16\xe0\x12\x82\x5c\x66\xfd\xc2\x5e\xff\xfa\x0b\x2d\x3d\x66\x0a\xb9\x22\x5c\xca\x67\x8a\x59\xff\x4e\x6c\xb4\xf0\x77\x37\x69\x77\xee\x1b\xc3\xec\x5b\x3e\xc7\xeb\x0d\x5c\x0e\x2e\x85\x1b\xb8\x92\x6f\xee\xfb\xf9\xf2\x74\xbb\xe6\xc5\x1e\xf6\x70\x82\x35\xda\x0a\x88\xff\x1f\x79\x6f\xa2\xdd\xc8\x8e\x1c\x88\xfe\x0a\xc5\xbe\xe6\x64\x96\x40\x8a\xa4\x44\x2d\xa4\x52\x1a\x95\xa4\xea\x2b\x77\x49\xaa\x27\xa9\xba\xba\x47\xd4\xf0\xa6\x98\x20\x99\x5d\xc9\x04\x3b\x13\xd4\xd2\x52\xbe\xf3\xdc\xde\xed\xf1\x78\x6c\xf7\xf5\x6e\xf7\xec\xbb\x3d\xde\xf7\xe5\x5f\xde\x07\xcc\xf1\x27\xbc\x83\xc0\x92\x40\x2e\x94\xaa\xaa\xdb\xcf\xef\xbc\x7b\xce\x2d\x31\xb1\x04\x02\x11\x81\x40\x20\x00\x04\x1c\x78\x9a\x50\x3e\x3f\xbc\x4f\xc2\x91\x3f\xb6\x2d\x59\x8e\xd5\x19\x66\x4f\xc7\x90\x82\x17\xc0\x7d\x87\x5c\xd2\x2b\x14\x3b\x7e\x83\xdc\x86\xd8\x7b\x79\xdf\xf0\x43\x0f\xdf\x9d\x8e\x2c\x0c\x07\x98\xe2\x1d\xa7\x09\xf3\x2c\xb4\x37\x84\x76\x0e\xbf\x3d\x77\x83\xd8\xb6\x7c\xf1\x8d\x3c\x75\x68\xc8\x6f\xc0\x73\xc7\xbd\x16\xbf\x0f\x26\x40\xf2\x76\x77\x2d\x91\x9b\x86\x7e\x43\xa4\x11\xcf\x02\x7f\x88\x2d\x8a\x5a\xb6\xdd\x4d\xab\x88\xe4\x18\xb5\x6c\xae\xb5\x93\xe4\xb9\xbd\xe9\x7d\x00\xb6\xb2\xb9\xd9\x3c\x9e\x58\xd8\x46\x02\xc3\x44\x3e\x87\x89\x45\x68\x9e\xb9\xf3\x00\x19\xdd\x10\xdf\x56\xe2\x86\x11\xc7\x41\xc6\x0b\x40\x1e\x1a\x34\xe6\xa1\x3f\x24\x5e\x1a\x24\x86\xb7\xd9\xf5\x90\x68\xa9\x7b\x89\xaf\x12\x79\x22\x89\xf0\x76\xe7\x36\x9a\x8b\x76\x17\x88\x58\x2a\x12\x3c\xe2\xcf\x73\x48\x51\xc2\xd4\x7a\x6b\xc9\x71\x7c\xfb\x81\x71\xc9\x28\x26\x19\x05\x89\x4f\xf0\xca\xa8\x28\x72\x7c\x8d\x5d\x49\x82\x5a\x5b\x9f\x3c\xe0\x52\x7f\xa0\x43\x0d\x86\x3a\x34\x23\xfd\x05\xce\xf5\xf5\xa6\xdd\xcb\x15\xcb\x0c\x2d\x71\x41\x5c\xd2\x6d\xe2\x3c\xa4\x7a\xb0\xab\x2b\x45\x94\xaa\xef\xae\xae\xcb\xc5\xfd\xce\xae\x5c\xd4\x9f\xbe\x3e\x3d\x43\xfa\x2d\x45\x33\xa7\xc0\x1a\x2e\x29\x90\xda\x00\xe9\xf9\x91\x32\x60\x39\x9b\xa2\xb8\x58\xde\xbc\x78\x1a\x74\x99\x49\x62\x16\x67\xe6\x5a\x37\x04\xab\xad\x11\x83\x2c\x80\xec\xd3\xc8\x8d\x29\xc8\x6f\x37\x6c\x18\xdf\x68\xe2\x06\xa3\xfd\x4c\x89\x5c\x9a\x1c\x2a\x0f\xc3\x79\x4c\xc9\x14\x56\x05\x71\x97\x34\xf4\x4f\x94\x3d\xf1\xde\x75\x91\x71\x7d\xa2\x4b\xcc\xeb\x14\x28\xbd\x89\xc2\xb2\xd4\x07\xca\xec\x76\x75\x31\xca\xee\x74\x75\x55\x21\x79\x52\xa2\xeb\xa3\xec\x2e\x5d\x37\x42\xe9\xf6\x52\x97\x68\x7b\x4d\x48\xfa\x62\x44\x2a\xfb\x89\xd2\x7d\x2d\x91\xca\x3f\x50\x66\x23\x8c\x64\x76\xc6\x90\x1b\x04\xe4\x56\x3f\x5a\xd4\x25\x8d\x5c\x1a\xf2\x22\xf7\x96\x15\x67\x2a\xeb\x28\x7c\x19\xb1\xea\xfc\xf8\x57\x97\x34\xca\x33\xd1\xd4\x0f\xfd\xe9\x7c\x2a\xb9\xc1\x09\x4b\x1a\x45\xc9\x88\xdb\xcc\xdd\x49\x02\x27\x3f\xf5\x41\x6a\x1e\xf1\x94\x6a\xcb\x77\x9a\x3d\x7f\xdb\x30\xf5\xa5\x0a\xf3\xf9\x4d\x7a\x73\x19\x20\x9e\xbf\x5a\x72\x40\x07\xe4\xd2\x6d\x19\x05\x46\xea\x55\xdc\xc8\xc5\xc3\x74\xd4\x31\x90\x34\xb1\x56\xc3\x86\x20\x41\x21\x3d\x81\x15\x48\xc5\x03\xb2\xd3\x4f\xc8\xd4\xc5\x8a\xe7\xeb\x29\xac\x48\xca\x7c\xc8\x4f\x3f\x65\x26\x93\x01\x95\xc5\x3e\x64\xc6\xbb\xb4\xd5\xf4\xd3\xcc\x64\xbc\xcb\x14\x60\x49\xac\x50\x4e\x12\xa0\x5c\x2e\x95\x15\xcd\x9e\xfd\x49\x69\xa5\xd2\xcc\x62\x1a\x3d\xb2\x89\x50\xb0\x54\xaa\x78\x95\xd2\x6c\x56\xb9\x48\xc0\xa0\x5a\x51\x06\x70\xb0\x70\xc1\xe6\x68\xb2\x92\xc9\xd2\x2a\x65\x2c\x72\xbd\x52\xf6\x65\x31\x73\x2e\xd2\x27\x63\x21\x74\x72\x9d\xa1\x9b\xe1\xd8\x7e\x7c\x94\xab\x5d\x33\x3d\x49\x50\x7b\xf5\x93\x67\x47\xe3\x38\x83\x43\x1b\x07\x47\xc7\x83\xd3\x37\x7b\xfb\x47\x17\xdf\x74\x68\xc9\x9e\x5d\xc1\xbd\x80\xad\x2d\x36\x4f\x96\x14\x6f\x77\x36\x90\x09\xb9\xd1\xc9\x35\x1d\xb3\xa5\xae\x1f\xe1\x11\xb9\x7b\x7c\x64\x1f\xaf\xf1\xd8\x1d\xde\x1f\x7a\x63\xbc\x9b\x7a\x81\xbb\xfd\xaa\xef\x61\x32\x8e\xdc\xd9\xc4\x1f\xf6\xab\x09\x5a\xeb\x6c\x7c\xda\x3e\x51\x49\x88\x1a\xd9\xc9\xf2\x02\x85\xfb\x1f\xe6\xbb\xc9\xfb\x6e\x10\x30\x31\x70\xca\x5f\x2a\x90\x5b\x20\x99\xa0\x26\xce\x52\xb3\xfc\x18\x94\x16\x3e\x41\xb6\x06\xf7\x88\x8e\x42\x8a\xa3\x1b\x37\xb0\x78\xa4\x62\x3f\x7e\xe3\xb2\x52\xea\x9e\x8b\x8c\x5c\x75\x2d\xfa\x12\xc9\x78\xee\xf2\x58\x19\x64\x48\x28\x76\xa2\x2c\xb7\x87\x82\xec\x45\x81\x23\x44\x1c\x2c\xd8\xec\x53\x48\x15\x35\x81\x0a\x12\x05\xe5\x8d\x3c\x1d\xd9\xe7\x36\x6c\x46\x5e\xcf\x81\x29\x85\x9f\x69\xdf\x95\x71\xc8\x20\xee\xd4\x73\x1a\x77\xc3\x21\x0e\xf6\x8c\x6a\x56\x11\xac\xe2\x16\x64\xf3\x49\x49\x30\xb4\x07\x21\x2e\x9c\xb7\xea\x00\xab\x02\xc2\x7a\x71\xc6\xab\x62\xcf\x39\x70\x29\x6e\x84\xe4\x56\x9e\xe8\x29\x15\x33\x13\x89\x3c\x58\x8e\xdb\x53\x7d\x17\xb7\xe5\x32\x9d\x37\xa3\x3d\xe9\x03\xc3\x5a\x48\x83\x04\x8e\x75\xe4\xa4\x1b\x3b\xeb\xcd\xe6\x3f\x2d\x99\x7c\x92\x30\xb9\xb7\x13\xd4\x86\x58\x31\xe3\xd2\x1d\xbb\xf5\x66\xb3\x6e\xa5\x6c\xac\x2f\xac\xd5\x7b\x02\xac\x74\xa6\xe0\x1d\x23\xae\x66\xa5\x58\x8d\x60\xb1\xbf\x9f\x13\x9a\x56\x31\xd7\xfe\xd1\xa5\xa3\x90\x55\xcf\x60\x85\xea\xe1\x0f\x95\x17\xc6\xa5\xc7\xc5\xfc\xf8\x18\x26\x14\xa5\xfe\x13\xe1\x4b\x62\x23\x36\x44\x13\x1b\x61\x3b\x11\xb1\x9e\x1f\x16\xeb\x9f\x7f\x1a\xe3\xf8\xff\x47\x73\x0b\x84\xb9\xe6\x4c\x31\xa3\x71\x2f\x96\xd4\x12\x83\x43\xf9\x4f\x0b\xa3\x3b\x27\x09\xda\x5c\xff\xe4\x77\x33\x69\x74\x7f\x00\x97\xb0\xd9\xfa\x8a\x2d\x18\x1c\xda\x98\x91\x5b\x7e\xce\xe1\x80\x81\xf2\xe1\xbc\x82\x43\x1b\xd7\xe4\x4e\x3c\xf3\x93\x49\x0f\xc8\xf0\xbd\xb8\x8b\xa5\xe7\x14\xdf\x74\x2d\x2f\xff\xd0\xaf\xfe\xdf\xbf\xfa\x7f\xf5\xab\xdd\xcb\x87\xbb\x6e\x13\xdd\x77\x9b\xe8\xb6\xbb\x89\x26\xdd\xb5\xe4\x0a\xb1\xbc\x1f\xd3\xf2\x36\x44\x5e\x4b\xe4\x7d\x57\xcb\x5b\x17\x79\x6d\x91\xf7\xe3\x5a\x5e\x47\xe4\xad\x8a\xbc\x9f\xd0\xf2\xd6\x32\xed\xfd\xa4\x96\xb7\x2a\xf2\x3a\x22\xef\xa7\xb4\xbc\xb6\xc8\x5b\x17\x79\x3f\xad\xe5\xb5\x44\xde\x86\xc8\xfb\x99\x82\xfe\x6d\x8a\xbc\x9f\xcd\xe4\x6d\x68\x79\x3f\x97\xc9\x5b\xd7\xf2\x7e\x3e\x93\xd7\xd1\xf2\xfe\x55\x26\x6f\x4d\xcb\xfb\x85\x4c\xde\xaa\x96\xf7\xaf\x33\x79\x6d\x2d\xef\x17\x33\x79\x2d\x2d\xef\xdf\x88\xbc\xb5\x82\xf6\xbe\x57\xd0\x77\xc9\xbf\x2f\x45\xde\x46\x01\xcc\x5f\xcd\xf0\x68\x4d\xe3\xd1\xaf\x69\xed\x65\xf3\x7e\xbd\xa0\xef\x32\xef\x37\x0a\xe9\x82\x4a\x24\xe1\x37\x0b\x21\xa1\x92\x76\x7f\xab\x14\xf6\x5a\x01\x26\xbf\x5d\x28\xf1\xd9\xd2\x92\x16\xbf\x53\x40\x5f\x09\xe9\x77\x0b\xf3\x50\x09\xe5\xbe\x5f\xc8\xa9\x62\x0a\xfc\xc3\xf7\x7f\xef\x0f\x44\xf1\x56\x8e\x41\xff\xf0\xfd\xdf\xfb\x43\x91\xd9\x2e\xca\xfc\x23\x91\xb9\x5a\x94\xf9\xc7\x19\x2c\x8c\xcc\x3f\x11\x99\x9d\xa2\xcc\x3f\x15\x99\xeb\x45\x99\x7f\x56\x30\x04\x5b\x32\xf3\xcf\x0b\xc6\xae\xca\xfc\x8b\x82\x41\xaf\x32\xff\xb2\x40\x5b\xa8\xcc\xbf\x2a\x50\x33\x2a\xf3\xaf\x0b\xf4\x93\xca\xfc\x9b\xc2\x01\x85\x0a\x55\xdd\x3f\x7c\xff\xf7\xfe\x76\x61\xf1\x66\xb6\xf8\xdf\x15\x0e\xad\xd2\xe2\x7f\xbf\xb0\x78\x16\x99\xdf\x2f\x52\xd8\xad\xf2\xe2\x3f\xb6\xb0\x78\x3b\x97\xb2\xf6\x34\xc8\xef\x16\x80\x6c\xcb\xcc\x1f\x2f\xc8\x5c\x95\x99\x3f\x51\x90\xd9\x91\x99\x3f\x59\x90\xb9\x2e\x33\x7f\xaa\x20\x73\x43\x66\xfe\x74\x46\x32\xdb\x9a\x64\xfe\xfe\xcf\x64\x64\x7a\x55\xcf\xfc\xd9\xcc\x50\xe9\xe8\x99\x3f\x97\x19\x64\xeb\x7a\xe6\xcf\x67\x86\xe7\x86\x9e\xf9\x65\x81\x32\x6f\x1b\x2a\x26\x4d\x69\x0b\x36\xa4\x29\xeb\xb9\x14\xc9\x18\x13\xce\x5a\x0e\xce\x7a\x0e\x4e\x9a\x22\x50\xfb\xd5\x4c\xa7\xcc\xe2\xcd\x5c\xb3\xed\x5c\xb3\xed\x5c\xb3\x6b\x39\x38\x6b\x39\x38\xeb\x39\x38\x39\xd4\x7e\xad\x40\x4d\x98\x00\x84\xa4\x25\x3d\x19\xac\x03\x4c\x98\x5f\x62\xf5\x2e\x5b\x3c\x96\xc5\x15\xba\x6c\x1a\xbf\x5a\x46\x1a\x57\xc5\xbf\x2c\x6b\xf0\x1c\xf8\xb7\x25\x7e\xf3\x12\xbf\x02\x25\x78\x6a\x4b\xfc\xdb\x14\xbf\xaf\x92\x5e\x99\x71\xc6\xf0\xf9\x1e\x1b\xa1\x0f\xad\x6e\xbf\x7a\xdc\x44\x8d\x4e\xe5\x75\x0b\x35\x3a\xfd\x6a\xc2\xe0\x7e\x8f\x0d\xc7\x87\xd5\xe2\xbc\xef\xaa\x7a\x8d\x0e\x6a\x56\x5e\x37\x3a\xa8\x25\xf3\x7e\x5c\xd5\xcb\xe7\xfd\xab\xb4\x3d\x96\x0c\x99\x59\xd8\xbf\x98\xb6\x5b\x5a\xe6\xdf\x64\xf0\x16\x45\xf4\xa6\x7e\x25\x83\x7e\x41\x91\xef\xe5\x7b\x91\x6d\xe8\xd7\xf2\x9d\xc9\x16\xf9\xf5\x62\x28\x4d\xad\xc8\x6f\x15\x43\xd1\x8b\xfc\x76\x01\x45\x2b\xc7\x05\xcd\xfd\x87\x02\xf2\x16\x16\xfc\x8f\x8b\x20\xea\x4d\xff\x8f\x45\x10\xf5\x82\xff\xb3\x40\x5a\x54\x41\x9d\xb0\x7f\x5c\x20\x3a\x85\x05\xff\xe4\x09\x88\x4d\x59\xf0\xaf\x9f\x80\xa8\x0a\xfe\x4d\x19\x44\x53\x12\xbf\xfc\xf9\x32\x80\x99\x72\x7f\xa2\x53\x31\x43\x90\x2f\xff\x42\xa7\x5c\x36\xf3\x4f\xb3\x35\x35\x34\xbf\xfc\xcb\x6c\x4d\x3d\xf3\xcf\xb2\x35\x35\xb6\x7e\xf9\x57\xd9\x9a\x7a\xe6\x9f\x17\xb4\xa9\xba\xf2\xd7\x05\x6d\xaa\x4c\x31\xa2\x84\x6b\xff\x8b\xe3\x26\xfa\xec\xa1\xd1\xa9\xd3\x84\x35\x20\x7f\x8a\xd4\xe5\x34\x75\x99\x26\x5f\x70\x00\xbf\x94\x01\x00\x75\x70\xc2\xe8\x29\x7f\xb6\x2a\x90\xba\x9c\xa6\xb2\x9f\x2d\x01\xe0\x97\x33\x00\xd4\xe0\x2f\x42\x44\x24\x17\x62\xf2\x2b\x25\x98\xb4\x52\x4c\x52\x8e\x4b\x2c\x58\x4a\x16\xa3\xef\x65\x00\xa5\xed\x2b\x40\xb9\x84\x56\xe5\xb8\x95\xa2\x26\x21\xe6\x12\x64\x13\x5f\x96\x93\x5d\xef\x39\x1f\x92\x1a\xf5\xd3\xfe\x0b\x40\xbf\x5a\xd0\xe9\xe5\xb4\xd3\xb2\x8b\x4d\xd5\xe9\xba\xd6\xe9\xba\x86\xd1\xaf\x15\x62\xb4\x9c\xed\xf4\x72\xa6\xd3\x4d\x93\x14\xcb\x59\xda\xe8\x9d\xfe\xf5\x3c\xa7\x9b\x7a\x97\x34\x96\x2a\x4e\x9b\x02\x20\x00\xfd\x46\x8e\x41\x7a\x8f\xf4\xdf\xcd\x62\x4e\x37\x05\xa0\xdf\x5c\xcc\xe9\xc2\xde\x34\x73\x9c\x2e\xa4\x8d\x6c\xe2\xb7\xca\xe9\xaa\xf7\x1c\x68\x51\x2c\x06\x02\xd0\x6f\xe7\x00\xe9\x3d\x32\x7a\x57\xcc\x69\x89\xd1\xef\x94\xcb\x5e\xa9\x78\x37\x2b\x59\x81\x28\x14\x6f\xd9\xc4\xef\x96\x71\xba\x55\xc2\xd8\xc5\x23\xfb\xfb\x1f\xad\x63\x4c\xf6\x33\x39\x11\x20\xff\xed\xb3\x40\x3e\x6b\x48\x57\x9e\x27\x36\xa2\xe1\x7f\xb7\x80\x34\xc5\x5a\x60\xe1\xf8\xff\xf7\xa5\x52\x21\xd8\xff\xe1\x0a\xf9\x3f\x94\xa8\x14\x93\xae\x1f\xa7\x1f\x8a\x85\x4b\x34\xfc\x1f\x3f\x7a\x2e\x32\xc5\x87\x11\x53\x80\xfc\x4f\x85\xe4\x69\x95\x6b\xc3\xc5\x33\xc3\x7f\xfe\x50\x0c\x17\x91\xe6\x43\xe6\x8b\xff\xb2\x48\x75\x6a\x8d\x7e\xc0\xc4\xfd\x5f\x3f\x90\x34\x4f\xa8\xd2\xff\x56\xae\xe7\x34\x36\x3d\x53\xd7\x7c\xc8\x80\xfa\xef\xcf\x1b\x50\xcf\x23\xca\xff\x78\x06\x51\x9e\x3d\x90\xfe\xe7\xc7\x4d\xa9\xcf\x54\x3a\x3f\x04\x52\xfe\xa1\x32\x23\x5b\xac\x3f\xcd\xd4\x4c\xfc\x23\xcd\xbc\x6e\x32\x82\xa8\x9c\x3f\xce\xd5\xa9\xe4\xca\xfc\x4d\xb1\x31\x8d\xca\xcc\xd9\xbf\x2d\x36\xa1\x51\x99\x11\xfb\x77\xc5\x86\x33\x2a\x33\xd1\xff\xbe\xd8\x5c\xce\xc2\x57\x8b\x8b\x5f\x78\x46\x79\x7d\x09\xf6\xaf\x9f\x81\x8f\xbe\x1c\xfa\xa5\x67\xc0\xd7\x17\x64\xbf\xfc\x0c\x7a\xea\xf0\xbf\x7c\x06\x3d\x75\xfc\x7f\xf5\x79\xf8\x2b\xfa\xfc\xc6\x33\xe0\xeb\xf8\xff\xe6\xf3\xf0\x57\xf0\x7f\xa7\xd0\xed\x50\x8a\xfe\xef\x2e\xf4\x36\x94\xb6\xf2\xfd\x45\x6e\x81\x52\xda\xfe\xdb\x27\x68\x95\xf1\x84\xfc\xbb\x27\x58\x5d\xec\x6b\xf8\xf7\x8b\x08\x5c\xee\x2e\xf9\x4f\x4f\xd3\x4d\x67\xcb\x7f\x5e\xe4\x5d\x29\x25\xdb\x7f\x59\xe4\x07\x29\x25\xdb\x7f\x7d\x42\x04\x32\x64\xfb\x6f\xcf\x26\x9b\xde\xa1\xff\xbe\x90\x6c\x65\xee\xa1\xdf\x7b\xbe\xf8\xe8\x8d\xfd\xfe\xb3\xa9\xa7\xb3\xe8\x7f\x2d\xea\x58\xde\x01\xf7\x07\x85\x8e\xbb\x52\x2a\xff\xe1\x22\xe1\x2c\x25\xc0\x1f\x2d\xe2\x4d\xb9\xb4\xfd\xe9\xb3\xc7\x8f\x4e\xb6\x3f\x7b\xb6\xf8\xe8\x6d\x15\x39\x3c\x9a\xe5\x64\xfb\x8b\x67\x91\x4d\x89\xf4\x5f\x3e\x6b\x4c\x67\x7b\xf2\x57\xcf\x12\xe9\x2c\x6a\x7f\xfb\xb4\x03\xb0\x94\x76\x7f\xf7\xb4\xab\xaf\x94\x82\x7f\xbf\x40\x37\xe4\x08\xf8\x65\x91\xc3\xb8\xf2\xbc\xd9\xf3\xcb\x1f\x2b\xe2\x55\xe5\x59\x02\xfc\xe5\x77\x17\x33\x2e\xe3\xb4\xfb\xf1\xe7\x8d\xdc\x42\xf6\x7d\xf9\x13\xcf\x1a\xbf\x85\x4c\xfc\xf2\x27\x9f\x16\xfd\xb2\xd1\xf6\xe5\x4f\x3d\x3d\x00\x4a\xc7\xdc\x97\x3f\xfd\x4c\x4b\xa6\x52\xc0\xd3\x9f\x79\xde\x18\x2a\x72\xe0\x7e\xf9\xb3\xcf\x9b\xf5\x8a\xdc\xc9\x5f\xfe\xdc\xf3\x54\x7f\x91\x73\xfb\xcb\x74\x23\xa1\xc1\x9d\x3e\x8d\x35\x8e\xe2\x3a\xff\xda\xd2\xca\xfe\x42\xea\xf7\x7c\xaa\xec\xf7\x52\xe6\x37\x9a\xeb\xeb\x1b\xbc\x40\x5b\xfc\x3a\xe6\x15\x5f\xf3\x8a\xc7\x8d\x8d\xd5\xd5\x55\x01\x82\xff\x92\x50\x7e\x32\x6d\xf1\x13\xa0\x68\x7c\x69\x0a\xca\xb7\x79\x15\x51\x7e\xad\x23\xd8\x22\x72\x05\xf8\x4d\x01\xad\xa3\xc1\xfa\x59\x0d\xa3\x4f\x84\xf5\xa5\x69\xd5\x0a\x79\x5c\xe3\x6c\x5a\xe7\x5f\x5b\xb2\xec\x2f\x1a\x3e\xe7\x85\x65\xbf\x67\x0c\x00\x20\x1c\x2f\xc0\x08\xc7\x6b\xac\xf1\x84\x75\xfe\xc5\x08\x27\x40\xac\xae\xae\x4a\x28\x3f\x6d\xb4\xf8\xb1\x50\x4c\xd9\x6c\x8a\x11\xdb\xe6\x55\x44\xf9\x35\x39\x8e\xc5\xd0\x10\x0d\x6d\x29\xa2\xff\xbc\x89\xca\x47\x01\xf9\xf2\xf7\x16\xb9\xc5\x97\xe9\x4a\xa3\xd5\x79\xd1\xe8\x24\x95\xfd\x5c\x12\x02\xb8\x48\x73\x76\xfd\xfe\xa7\xc2\x6a\xa6\xb0\xfe\xd7\x62\x4f\x44\x0e\x56\x7d\x01\xac\x3f\xf8\x54\x58\xbc\x8f\x09\x2a\x39\xa0\xf6\xd0\xaf\xfe\xef\xef\x42\x23\x9e\xb6\x74\xe5\x2a\x87\x69\x49\x7a\x3f\xc3\xdd\x26\x82\x8b\x2d\x6f\x5c\xcf\xf3\xc3\x71\xb7\xcd\x50\xfb\xdf\xdf\xfd\x43\x55\xab\xde\x42\x75\xa5\x0b\x5f\xd7\x5b\xa8\x05\xda\x0a\xea\xb6\x50\x80\x47\xaa\x6a\xcb\x84\xd4\xe2\x90\xfe\x48\x41\x12\x0b\x64\x0e\x4c\x6b\x5f\x87\x21\x9a\xff\x63\x55\xa9\xcd\x5b\xe7\xd5\xda\x1f\xda\xf8\x9f\x98\x9d\x67\xab\xf3\xfd\x66\xa3\xd3\x69\x23\x78\x4b\xa1\xb1\xb1\xb1\x0e\x44\xac\xec\xb3\xaf\x76\x7b\x0d\xf1\x5c\xd8\x8a\x2e\xa1\x90\x00\xfd\xa7\x0a\x74\xa3\xcd\xc0\x36\xd6\xda\x0c\x2a\x53\x1d\x9b\xed\x75\xd4\xd8\x00\x1d\xb2\xcf\xbe\x5b\x1b\x0c\x2e\xcb\x6f\xa2\x46\x3b\x05\x5c\x8c\xf3\x9f\x99\x04\x6b\x71\x9c\xd7\xd6\x36\xe1\xf5\x07\x8e\x33\x90\x63\xbf\xa9\x70\x66\xb9\xb0\x91\x5e\x4c\x55\x01\xf9\xcf\x53\x94\x37\x05\x25\x36\x00\x2a\x53\x8a\x80\x74\xbb\xcd\x01\x33\x2c\x05\xda\xac\x08\x6b\x68\x53\xc7\xbb\x00\xf8\x5f\xa4\x12\xd3\xe8\x08\x91\x61\x22\x0a\x52\xc3\x7f\x28\xe4\x78\x8d\xbf\x2c\xad\xf1\x21\x2c\xfe\xab\x94\x5c\x12\x4a\x5d\xb6\xdb\x2a\x6c\xf7\x6f\x16\xd4\x10\x98\x64\x6a\xfc\x6d\x69\x8d\x0f\xc1\xf4\xef\x16\x50\xa8\x95\x6d\xb7\x6c\x50\x5f\x32\x48\x7f\xdd\xaf\x5e\x95\x9c\x4a\xbd\x14\xf8\x5e\x2d\xaa\xff\xf7\x4f\xd4\xff\x4b\x5e\x3f\x7f\x12\x56\xbb\x26\xe9\xa3\x50\x3d\x55\x3d\x97\x67\xd7\xc7\xe5\x87\x5f\x2f\x7d\xb8\xf0\x3e\x96\x17\x02\xb2\xd1\xef\x78\x38\x37\x79\xf3\x32\x74\x9a\xbd\x70\x9b\xca\xdb\x96\x61\x7a\x61\xdc\x75\xe8\x65\x78\x85\x26\x4e\xb4\xb2\x89\x02\x87\xac\x6c\xf6\x70\x1a\xf6\xd7\x5f\x76\x1b\x77\x2f\x26\x28\x5e\x76\x1b\xf7\x2f\x02\xe4\x36\x6e\x5f\x4c\x90\xdb\x98\xbc\x08\xec\x24\xb1\x30\x1a\x4b\xb4\x6d\xb4\x24\x4f\xe2\xde\x38\x91\xc0\xee\xa6\x04\xbb\x88\x5f\xbd\x66\x98\x4d\x1c\x02\xaf\x35\x53\xbb\x37\x79\x7c\xb4\x26\xf0\xdc\xc7\xb1\x3b\x43\xa4\x11\xb3\x64\x34\xb1\x65\x68\xcd\xc0\xc1\x69\x38\x47\x06\xbe\x5f\x8d\xe1\xfd\x84\x7e\x75\xc9\x61\x7c\x26\xa3\x4a\x60\x67\x5f\x14\xfa\xe2\x6d\x88\xef\x66\x10\xcf\xab\xa2\x6a\x57\x58\xf1\x4a\xbf\xfa\xd9\x43\x90\xf4\xab\x5f\xf0\x58\x7a\x43\x67\x02\xa8\x04\x70\x21\x63\x69\xa8\x3d\x2f\x7e\xd9\xbc\x92\x6f\x92\x44\x8e\x24\x23\x22\x8e\x0a\x2e\x4e\x6e\x43\x1c\x3d\xfd\x7a\x44\x8f\x88\x60\xe3\x3e\x22\x32\x86\x78\x24\xba\x17\x16\x3d\x2f\x43\xf2\x0f\x20\xd8\x36\x72\x81\x4a\x47\x53\x77\x0c\x8f\x49\x59\x3e\x8a\x78\x17\x40\x7a\xd0\x98\xe1\x1f\x34\xe0\x54\x77\xfc\xce\xa7\x13\xab\x5f\xfd\x0a\xab\xe8\x39\x33\x37\x8a\xf1\x51\x48\x59\x36\x5c\xd7\x6e\xa1\x55\x1b\xb5\xd6\x6d\x34\xc8\xe7\xad\xa2\x0e\xcf\x9b\xe7\xf3\x3a\x68\x83\xe7\x8d\x9d\x40\xbe\xe4\xba\x51\xab\xe5\xca\x6d\xa0\x2d\x28\xf7\xf8\xd8\x52\x51\x90\x96\x32\xb8\x45\xe3\x6b\x97\xa1\xf7\x3c\xd6\xc1\x45\xcd\xca\x88\x44\x53\x97\x2a\x16\x56\x6e\x27\x38\xac\x78\xfc\x80\x52\x65\xe6\x52\x8a\xa3\xb0\x02\xcf\x85\x7e\x61\xf7\x2e\x05\x5d\xae\x9c\xa0\x11\xcf\xaf\xb9\xd4\x58\x1d\x24\x31\xaf\xb7\x6c\x08\x65\xc0\x48\x8c\xfa\x55\xbb\x31\x75\x67\x10\xc0\x16\xba\x03\x8f\xcf\x40\xb4\x5a\x15\x8b\x02\x3b\xcd\x1e\xde\x8e\x7a\x58\xbc\x49\x0e\x8f\xce\x3b\xcd\x5e\xbc\xed\xf7\xe2\xe5\x65\xdb\x6d\x78\x2e\x75\x2f\xd7\x5e\x58\xf8\x85\xbf\x1c\xdb\x57\x8e\x87\xb2\x69\xcb\xad\x2b\x67\x90\x4f\x6d\x5f\x39\xf3\x7c\xea\xea\x95\x43\x2f\xf1\xd5\x65\x7c\xf5\xc2\x6a\x77\x3a\x2f\xc6\x76\x2f\x6c\xcc\xe6\x34\x95\x01\x97\xbf\x68\x3a\x5c\xf8\x48\x11\xa7\x8b\x45\x50\x38\x0f\x02\xdb\x46\x13\x18\x64\x01\x1a\xda\x89\x36\xb6\x9c\x21\xd2\x75\x80\x18\xae\x6c\xb8\xdf\x14\x0c\xf7\x51\xd9\xc9\x7d\xa1\x04\x46\x8b\x54\x14\x0a\xed\x07\xdc\x88\x69\x44\xde\xf3\xa0\x87\xc6\x18\x67\xa4\x85\x46\x2e\x03\x34\xbc\x22\xa3\x8a\xb8\x81\x80\x43\x1a\xf9\x38\xb6\xa8\xcd\x95\x08\xed\x61\x23\x0c\x36\xbf\xbe\xcd\x6f\x35\x87\x2f\x4e\xe6\xd3\x6b\x1c\x35\x52\xd1\xb4\x11\x75\xfa\x55\x89\x4e\xbf\xea\x48\xed\x31\xdc\x1d\x5a\x8d\x16\x5b\x62\x74\x56\xc8\x8b\xc8\xee\x0e\x53\x14\x2a\x41\x85\x8c\x2a\x54\xc9\x49\x85\x49\xac\xd0\x10\xd4\x09\xe0\x31\x75\xc7\x15\x71\x48\xa4\xf2\x48\x9f\x51\xfa\x62\x9f\xcc\x03\xaf\x12\x12\x5a\x19\xf9\xa1\xa7\x44\xd5\x17\x17\x51\x19\xc1\x98\x50\x83\x44\x53\xae\x94\x86\x24\xa4\x7e\x38\xc7\x89\x0c\xfe\xa2\x4b\x6f\x46\x64\x7b\x1e\xbc\x03\xef\x5d\xb6\xae\x6a\xb5\xa1\x85\xd1\xc4\xf2\x80\xc0\x8c\xd0\x4b\x4d\x14\xda\x8c\xc5\x9c\xd0\x40\xa1\x61\x40\x62\xcc\xe9\x05\x9a\x7c\xa4\x26\xa0\xb9\xc6\xdc\x59\xd9\xbc\xe6\xcb\xf7\x95\x96\x96\x66\xb5\x9a\x55\xcc\x5b\x14\x48\x0a\x0d\x41\x63\xb1\xe6\xda\x07\xbd\x21\x8f\x4e\x2e\x67\x29\x40\xc6\x9f\x59\x43\xf6\x4b\x63\x63\x4f\x76\x3b\x5c\x69\xb5\x7b\x3a\x4f\x83\x17\x9e\xc6\x98\x90\x33\xc6\x2b\x64\xcd\xd0\x09\x19\x6b\x06\x8e\x7b\x39\xe4\xac\x19\x7c\x12\x6b\x86\x85\xac\x99\x3b\xe1\x02\xd6\xcc\x81\x35\x73\x60\xcd\x00\x58\x33\x4f\x59\xd3\x42\x01\xb2\x68\x43\xb3\x77\x76\x77\x9b\xf6\x0b\xcb\x5b\x69\xdb\x2c\x43\x37\x7d\xd2\x1c\xdb\x4e\xe0\xed\xd5\x06\x93\xdc\x5d\xab\x74\x08\xa1\x94\xe7\x76\x97\xa7\xe7\xb8\x6f\x61\x34\x33\xac\x0f\xb4\xd4\xb4\xe5\x91\x53\x22\x27\xe4\xf4\x05\xb9\xf0\x03\x5e\xcd\x93\x46\xc6\xc3\xbe\x5c\x97\x31\x16\x7f\xc7\xc7\xd1\xfe\x3c\xba\xc1\x17\xc4\x62\x73\x2b\xa2\x97\x2d\xf6\x4f\x9b\xfd\xb3\xca\xfe\x59\x63\xff\x74\xae\x6c\xf4\x3a\xad\xc7\xf8\xaf\x57\xb0\xd1\x71\x9a\x09\xc1\x73\xf4\xcc\x24\x45\x78\x92\x7d\x10\x0b\xc2\xe5\x36\x53\x11\xc1\xc5\x0a\xff\xf1\x51\xe9\x0c\xa6\xfd\x21\xea\xa1\x98\x31\xb6\xdb\xb9\xd9\xaa\x5f\xbd\x20\xa4\x32\xc2\xb7\x15\x37\x1a\x83\x1d\xc0\xa5\x46\x13\x23\x26\x0c\xe6\x14\x22\xe1\xf5\xf0\xb2\xd3\xb6\x87\x97\xf8\xea\x85\x43\xeb\x93\x17\x6e\x3d\x78\xe1\x22\x52\xab\x35\x97\x1c\x87\x25\xd7\x6a\x16\xfb\xe3\x84\x96\x16\xa3\x95\xa5\x2c\x37\x3a\x36\x33\x80\x29\x6a\xda\x36\x82\x14\x27\x5e\x9e\xbc\x70\xb5\x96\x5a\x25\x2d\xf9\x1f\xd4\x82\xaf\xb5\x10\xc9\x7b\x92\xc3\x24\x41\x9d\xf5\x4f\xbd\x24\x46\xae\x63\x1c\xdd\xe0\xc2\x77\x4a\x8b\xe2\x21\x43\xe0\x82\x85\x95\xb2\x4f\xf8\xf1\x88\xcf\x8c\x5b\xb4\x71\x06\x01\xe6\x4f\x79\xf5\x88\x3f\x87\x25\xa1\xd3\x06\xd3\x01\x90\x46\x1b\xd4\x8d\xc6\x98\x3a\x8e\x83\x39\xf7\x97\x62\xf9\x5c\x13\xfb\xb0\xfa\x55\x2d\xb4\xc8\x3e\x7f\xb0\xf3\x25\xb9\x3b\xf7\xbf\x83\xfb\x55\x3f\xac\xc4\xe9\x1b\x87\xbb\x0d\xcf\x8f\x87\x24\x0c\x99\xe2\xb3\xe1\xe6\xa8\x25\xa3\x15\xd8\x6a\xa8\xc5\x8d\x52\x80\xcc\x02\xf5\x43\x88\x0d\xec\x7f\x07\xa3\xf0\xa9\xb2\xb0\x6c\x60\x1f\x3d\xb2\xd3\xac\xd5\x42\xf6\x8f\xcf\x26\x7e\x3b\xb1\xed\x1e\x8d\xee\x1f\x22\x49\x40\x0b\xa3\x87\x6b\x72\xd7\xbd\x94\xfd\xa9\xcf\x18\xcc\xba\x78\x82\xb4\x7e\x4d\xee\xfa\xd5\xab\xc4\x4e\x86\x2e\x1d\x4e\x1e\x22\xb3\x2b\x51\x1a\x97\x9f\x75\x95\x5b\x1f\xf9\xa7\xc1\x32\x14\xb0\xed\x24\x41\xab\x22\x7a\x36\x13\x1b\x35\x58\x7d\x2d\xb6\x46\x67\xa3\xd3\xdc\xdc\x76\x70\xad\x86\xb7\x9d\xce\x46\xa7\xb3\x99\xbe\xdd\x19\x6b\xe5\xf0\x8e\xd3\x6a\x6f\x76\x5a\x6d\x28\xc8\x7e\x6e\xb5\x1e\x1f\x21\x75\x63\x63\x6d\x4d\xa5\xb6\x64\xea\xe6\xfa\x5a\x53\xa6\x6e\xac\x6f\x40\xea\xd6\x46\x7b\x13\xd2\xb6\xb6\x36\x57\x79\xca\xd6\xa6\xa8\xdb\x6c\x6d\x74\x20\x69\xbd\xd3\x6c\xf3\xb4\xf5\x4e\x73\x75\x4b\x80\xdb\x6a\x6f\x4a\x70\x5b\x9d\xd5\x8e\x6c\x7a\x6d\x5d\x22\xb4\xb1\xb6\xb9\x91\x7c\xd4\xc8\x18\x92\xe9\x6c\x4e\xf1\x09\xbe\xa3\x5f\x77\x23\xdf\x0d\xe9\xe9\x68\x14\x63\xaa\x9e\x02\xe5\xe1\x8b\x35\xc9\xa7\x8b\x22\xa9\xca\x58\x30\x67\x38\x1e\xba\x81\x1f\xb2\x15\xa6\x1f\x1f\x4e\xc9\xb7\x7c\xf8\x75\x86\xd9\x1c\xc6\x2c\xee\x37\x72\xd6\x07\x40\x90\x99\x4b\xd2\xad\xcc\x34\x42\xbb\x91\xaa\x47\x4c\x61\x83\x06\x17\xe8\x4d\xe8\x70\x65\x3a\x67\x73\x39\xa1\x95\x6b\x5c\x19\xb1\xba\x4c\x5b\x4a\x06\xf3\x38\x2c\x19\x04\x7c\xb4\x10\xe5\x82\x60\x2d\x9d\x8d\x4e\xbb\xa9\x09\x54\x7b\x83\x03\xe6\x04\x88\x51\x8e\x3a\x86\x1a\x81\x25\xb5\x0c\xfb\xc2\x66\xdf\x5a\x2d\xda\x49\x9f\x77\x6f\x35\x3a\x2f\x88\x5d\xab\xa5\xef\x1b\xd4\x6a\x78\xa7\xdd\xe9\xd4\x6a\x4b\x4c\x5a\x6b\xb5\x25\x9f\xff\x29\xc4\x6c\x75\x6d\x4d\x62\xb6\xbe\xba\xb1\xb6\x9a\x58\x18\x9e\xd4\x5c\xc4\xcd\x02\x40\x3e\x4c\x5c\x05\x19\x5b\x6b\x1b\x6d\xd9\xc0\xd6\xfa\x6a\x4b\xc2\x2f\x11\x23\x05\x41\x02\x78\x18\xc6\x71\xf7\x81\x2f\x65\xbb\x0f\xb0\x8c\xed\x36\x11\x5f\xc4\x76\x9b\x09\x1a\xe2\x20\x28\x48\x4f\x44\x9c\xac\x8f\xa8\x8a\x86\x13\x37\xca\xa7\x83\x6f\xa8\xdb\x44\x94\xcc\x18\x7c\x11\x7d\xaa\x64\x98\x98\xf3\x40\x6a\xb3\x58\xb8\x6e\xc6\x3b\xa7\x76\xdd\xb7\xed\x1f\xc9\x26\x42\xc4\x9e\xad\xf5\x4f\x8b\x56\x23\x5e\x45\x2d\x0a\x97\x2f\x27\x37\x78\xf9\xc5\x37\x02\xd3\x88\x7b\xde\x70\x75\xdd\xb2\x13\xf1\x97\x27\x4e\xdc\x58\x81\x53\x91\x1d\x86\x24\x98\x4f\x43\x9e\xce\xa0\xab\x8c\x1b\xf1\xb4\x36\x5c\x6a\x3f\x23\xb7\xf2\x4d\x4c\x99\x7e\x18\x7a\x05\xa9\xfb\xee\x6c\x86\xbd\xb2\x3a\x3c\xd7\xac\x09\xab\xfa\x7d\x12\xc8\x6f\x0c\x72\xaa\x72\x25\xc2\x00\xd2\xb8\x9a\xae\xb2\x0e\x43\x79\x67\x3d\x99\xcf\x3c\x97\x62\xe3\x55\x45\x19\xf2\x21\x03\x89\x16\x00\xf1\xd1\x12\x7d\x7c\x5c\xf2\x1f\x1f\x99\x49\xe8\x38\x8e\x0f\x46\x38\x33\x0d\xe1\xa3\x75\x95\x0f\xa5\x21\x28\xac\x2e\x5b\x61\xf1\x34\x78\x2c\xdf\x06\xbf\xf7\xfc\x78\x86\x88\xc3\xa0\xd4\x23\x14\x02\x9c\x7a\x84\xdc\x34\x42\x3f\x61\x8b\xf0\x49\xfa\x9a\x6d\x98\xbe\x80\xd8\x73\x77\x1c\xfe\xf1\xf8\x38\xd9\x6e\xee\xea\x6d\x8a\x17\xbb\x4c\xb6\x36\x4b\xd8\x1a\x97\x70\x95\x14\x72\x35\x5c\xc8\x55\x77\x01\x57\x27\x19\xae\x72\xe3\x5a\x63\x2c\xa3\xa9\x9d\x64\x82\xe6\x1b\x2f\x3f\x2d\x2d\xe5\xfa\x55\xab\x59\x7e\x5d\xd1\x56\x92\x56\x22\xf0\xcd\xe2\x3e\xef\x1a\x98\x6c\x3b\x1a\x16\xbb\x74\xc7\x31\x72\x6b\x35\x5f\xa4\x14\xf7\xb9\x56\xa3\xdb\x5a\xfd\x5a\xcd\xdf\x2e\x2a\xce\x89\xd0\x15\x65\x3f\x00\xf8\x8e\xf3\x7c\xe8\xfe\x4e\x21\x2b\x59\xad\x02\x5e\x8a\x88\x4f\x39\xc6\x3b\x4e\x41\xe1\x5a\xcd\xcf\x66\xe4\x91\x4c\xbb\x65\xd0\xa4\xa4\xa1\x22\x9c\x0a\x9a\x91\x19\x3f\x40\x90\xe5\x98\xc3\x53\x34\x0b\x14\x6c\x6e\x1e\x03\xd3\xc3\x67\xcb\x96\xe6\xd6\x27\x07\x62\x5b\x18\xf6\x17\x1e\xf7\x8a\xd8\x82\x45\x7f\xb7\x05\xde\x73\x86\x97\x5c\x5c\x96\xb2\xd6\x61\xfa\xc2\xb7\xd6\x36\x3b\x36\x0a\x58\x0a\xfb\x31\x64\x65\xd6\x36\x6c\xe4\xc9\xf7\x5f\x06\xce\x83\x78\xa0\xfa\x8d\x3b\xc6\x6c\xfa\x13\x5f\x24\x06\x97\x4c\x57\x5e\xbf\x4d\xb2\x39\xfb\x81\x3f\x3b\x9f\xb9\x6c\x0a\x56\x45\x08\xcc\x8e\x5a\x02\x5b\x11\x65\x3e\x0b\xea\x25\xe0\x65\x9e\x8b\xe9\x6a\xfc\x30\xc6\xb4\x32\x73\xc7\x38\x4e\xa9\xcb\x43\x8d\x40\x62\x92\x7b\x66\x46\x3d\x66\x2a\x3c\xe5\x5a\x88\x35\x08\xd2\x2a\x5f\x96\x31\xc3\xe9\xa6\x6f\xca\xf8\xde\x3b\x78\x22\x35\x0d\x66\x34\x74\x87\x13\x7c\xec\xce\x60\x69\x37\x69\xbc\x22\xf3\xe8\x6b\xf8\xfe\xd8\x9d\x65\xf2\xf7\xc9\xf4\xda\x0f\xb1\x57\x56\x0e\x10\x76\x2e\xaf\x64\x38\x15\xd0\x4a\x6f\xcc\xc4\x5b\x12\xbd\x7f\xc9\xec\x02\x3f\x1c\xbf\x24\x77\xce\x03\x58\x20\xd2\x1c\xe1\xd1\xee\xe4\xf6\x26\xf0\x41\xd5\xda\xa3\x34\xf2\xaf\xe7\x14\x5c\xb5\x80\xc2\xb0\x61\xa4\xc9\xf7\x6f\x38\xe7\x20\x36\x64\xa7\x25\x1f\xf3\x22\xe1\x9e\xe7\xe9\xa2\xc6\x5f\xf6\x05\x38\x6e\x03\x5e\x27\x3a\x9c\xfa\x94\x62\xf1\x8c\x4e\x59\xf9\x85\xd0\x1a\x98\xc1\x51\x2d\x9e\x89\x70\xc4\x1f\xd0\x68\x69\x95\xa7\x60\x1a\x4d\x8b\xb0\x46\xfb\x6c\x5e\xe4\x23\x38\xe5\x35\x8c\xf2\x13\x7c\xcb\xf8\xa2\x22\xdf\xd0\xe9\x4c\xb4\x33\xb3\x30\x5a\x7b\xa1\x0b\x54\x23\xfb\x42\xe3\x1a\x2a\xc9\x16\x6f\x32\xae\xe9\x50\x17\x3d\x4f\xad\x5a\x7d\xea\x85\x6a\xd1\x52\x3e\x42\xeb\x2d\x38\xd8\x5d\xef\x15\xf4\x38\xa4\xc1\x3d\x68\x15\x3d\x80\x5f\xea\xe3\xc4\xe0\xe3\xe4\x61\x7f\xc6\x38\xb6\xd5\xc6\x93\x7c\x64\xbb\xb7\x98\xb9\x0a\x66\x22\xdf\x18\x7e\xc8\x0c\x29\x15\x3c\xce\x23\xef\x44\x91\xfc\xa8\x6b\xda\x89\x96\xaf\x22\x6c\x31\x99\x08\x1a\x47\x5e\x80\x2f\xdc\xf8\xfd\xff\x31\xc7\x73\xac\x05\x21\x5f\x5d\xed\xd1\xed\x56\x7b\x1d\xe2\x54\xe3\x06\x0e\xbf\xcd\x0a\xa4\x51\xbc\x96\xcc\x91\xca\xb7\x03\x91\xd7\x30\xe2\x51\x2e\xf8\x3e\xfc\xc6\x85\x9d\xe2\x22\x70\x8e\xdc\xdb\x0b\x02\xb1\x84\x3f\x18\x56\x2f\x83\x4f\xfc\xe1\xf8\x20\x6c\x27\x8c\x95\xe0\xcd\xe6\xf1\x9e\x32\x0a\x32\x27\xe6\xdc\xbe\x17\xac\xe3\x0f\x16\xb2\x35\xa4\xa6\x9d\x2e\x9b\x57\x8d\x21\x7f\x84\xed\x8c\xdc\x36\xee\xe0\xb1\xa1\x05\x05\xee\x8b\x05\x68\xa0\x24\x48\x98\xbb\x99\xee\x8a\xe4\x12\xfd\x99\xc9\xd6\x35\x72\x92\x64\x47\x28\xeb\xc4\x98\x99\xc5\x20\x8a\xa0\x4d\x65\xf0\x4b\x40\x42\x6e\x1c\xa6\xe6\xf3\x1a\xca\x94\xcf\x71\x96\x57\x1c\xf9\x01\x3c\x44\x8f\x9d\x9d\xf6\x0b\xf3\x31\xe8\x6d\x87\xb7\x79\x91\xea\xd2\xc7\xc7\xb5\xe6\xd6\xba\x6d\xdb\x8d\x98\x44\xd4\xb2\xc4\x62\x8e\x1a\xf5\xe0\x41\x42\x3d\x61\xd7\xcc\xaf\x9b\xb9\x5d\xda\x98\xe1\x68\x88\x43\xea\x8e\xf1\xdb\x18\x7b\x75\x9c\x49\xb0\xf9\x9e\x2c\x75\xea\x2d\xb6\xf2\xec\x99\x1b\x85\x58\xfa\x63\x63\x11\xfa\xf8\x32\xbe\xca\xe2\xe3\xdb\xd4\x89\x91\xef\xe4\xf2\x60\x2b\xb5\xe2\x8f\xac\xb8\x4e\x1d\x67\xd5\x16\xef\xa2\x08\xcb\x03\x8b\xbd\x57\x8a\x40\xa1\x45\x4e\xac\xfc\xdb\xb8\x01\x7b\xa2\x20\x2a\x9a\x39\x91\xa5\x0c\xde\xa1\xbb\xad\x6e\xbd\x65\x33\xb3\x25\x55\x3b\x72\xbb\x54\xfe\x50\xef\x9f\x4d\x71\x34\xe6\xb3\xa5\x15\x23\x62\xf7\xc2\xc6\x0d\x8e\x62\x9f\x84\xcb\xcb\x9a\x1b\x3a\x52\xdb\xad\x3d\xbc\xe3\x34\x7b\xb8\x5e\x17\x6f\x1b\x7a\x38\xc0\x14\x00\x58\xd1\x25\xbe\x12\x32\xc9\xdb\x84\x58\xf9\xa1\x5d\x3e\x3d\x34\x17\x4f\x93\x8d\x91\x1f\x61\x2b\x14\xf4\x93\x5b\x12\x5c\x69\xdd\x58\xa6\x3d\x92\x9f\x86\x33\x01\x01\x35\x94\xd2\x68\x6d\xa9\xad\x90\xc9\x59\x88\x91\x14\x27\x1b\xe1\x44\x27\x20\xc4\xa3\x95\x27\x0f\xda\x2f\xc0\x9b\x6b\x3c\x45\x1d\x17\xa3\xee\x23\x6c\x6b\x3b\xa6\x11\x22\x57\x64\x54\xc1\x6a\xb3\x54\x1b\x49\xd1\x0b\x62\x80\xfc\x11\x1f\x85\x8e\xf6\xb2\x5c\xb4\xd2\xb6\xd3\x22\xdc\xef\xd2\x8b\x1b\x43\x7a\x07\x51\x9c\x61\xd3\xd9\x92\xf9\x08\xa3\x50\x6b\xb8\x12\x33\x4d\x43\x84\x9c\xd9\xb1\x2e\x66\x0e\x45\x71\xc3\x30\x2d\x1b\x77\x0e\x4f\x69\xdc\xad\xf8\xb9\xcc\x7b\x99\x79\x0f\x99\x19\xbb\xb6\x71\xb7\xec\xe0\x82\xe4\xfb\x65\x27\xcc\x27\x9b\x4d\xe6\x40\x15\x35\x60\x22\x92\x6b\x66\xc5\xef\x3d\x69\xd9\x00\xa7\x25\xa5\xa4\x67\x41\x3e\x40\xa4\x0b\x8e\x7c\xa9\x81\xd8\x3d\x78\xa6\xc1\x95\x8a\x52\x2f\x24\x9e\x5b\x70\x51\xcb\x16\xee\xf6\x4a\x9c\xe8\x83\x47\xbd\xd8\x39\xd3\xcb\x63\x64\x3e\x30\xda\x13\x0b\x33\x43\x09\xeb\xaf\x48\x18\xba\xf6\x92\x5e\x69\xdc\xa5\x15\x10\x2a\xc1\x5d\xaa\x73\xb7\x5e\xef\xe1\x74\xdc\x27\xc9\x18\xd3\x33\x37\xa6\x38\xf2\xbf\x83\x3d\x70\x60\xca\x49\x64\x7f\xe2\x6a\xef\x4e\x66\x66\xc6\x31\xa6\xea\xf5\x8b\x63\x77\x66\x15\xcf\x43\x28\xad\x5e\xd0\xd0\x47\x02\xd7\x81\xe6\x8a\x6a\x7b\x88\xe0\x8c\x12\x70\xe7\x0e\x16\x16\x0b\xaf\x88\xe6\x8f\x8f\xd6\xbc\xd0\x0c\xd1\x36\xbc\xe3\xb4\x06\x9a\xdb\x36\x9a\x43\x7b\xe0\xd4\x65\x8d\xee\x85\xb1\x7f\xc4\x24\x42\xbe\xc7\xbb\xe3\x18\xd6\x64\x3e\x82\x7e\x81\x5b\xfd\x84\xa8\xb3\x32\xf3\xd0\xe3\x7b\x91\xde\x5d\xa5\x5f\x5d\xce\x6a\xb5\x3c\xd4\x4b\x7c\x05\x18\x65\x1c\xce\xe9\xdb\xaa\x2a\xfa\x6a\x99\x7d\x2b\xdd\x6b\xa1\xf6\x5c\x04\x7f\x77\xb5\x27\xde\x0e\xc3\x8b\x5f\x09\x8b\xd2\x57\xde\x0b\xe8\x42\xed\xc2\xc7\xc0\xa4\xfc\x66\x96\x57\x0d\x4a\xe4\x0b\x54\xac\x66\xe4\x84\x8d\xe1\xc4\x0d\x43\x1c\xc4\x32\xcb\x62\x8a\x16\xe1\xcb\x16\xfb\xa7\x7d\x65\x67\x1e\x0d\x8b\x1c\x7f\x37\xe4\x14\x6a\x10\x78\x08\xc3\x2a\xa2\x5d\x1a\x73\xde\xee\x16\xe5\xa7\xe1\xe5\xe5\x00\x8e\xc4\x9b\xe9\xc6\x4b\x59\xda\x23\x25\xfc\x65\x1f\x0f\x0d\xe4\xe0\x9c\xa7\x74\x39\x36\x63\xe3\x17\x55\xf5\x50\x80\x06\xb0\x79\x39\x97\x1c\x99\x03\x1b\xc6\x92\x0d\x64\x31\x1b\xcc\xf5\xd2\x82\x18\xfe\x5e\xad\xe6\x6e\x6f\xd6\x6a\x96\xbb\xec\x6c\xda\x68\xbc\x90\x7d\xee\x47\xb3\xcf\xb5\x7b\xe3\x0f\x67\xdf\xd8\x99\xec\x2e\xe6\x47\x21\xbb\x52\x76\x26\x45\x03\xa6\xe0\x59\x05\x0b\x90\xd3\xc5\x64\x6c\xf3\x37\xc9\xd2\x8c\xe9\x3c\xa0\xfe\x2c\xb8\x3f\x9d\xb9\x43\x9f\xde\x5b\x63\x14\xeb\x81\xf6\x6d\x1b\x8d\x21\x7e\x36\x09\xf4\xe7\x57\xce\xc6\xd7\xae\xf4\xa2\x3c\x73\x04\x65\x34\x5f\xe1\x30\xe2\x0f\xeb\x99\x6c\x90\x15\xb7\xb7\x37\xd3\x01\x20\xb6\x97\x0a\xc9\x98\x79\x6a\xe1\x09\xd1\xe7\x2f\x2b\xa8\x2e\xa6\xb2\x9f\x76\x91\xa9\x98\x8f\xe8\xe4\x33\xc4\x94\xad\x40\x40\x4c\x29\x88\xe9\x3f\x02\x71\x32\x1d\x7f\x42\xd0\x24\x71\x16\x0f\xef\x58\xd3\x0d\x43\xd0\xc6\x2d\xe9\x32\x95\x90\x8b\x1e\xce\x78\x7c\x1c\xca\x13\x0c\xf2\x70\x95\x46\x00\xed\x01\x1e\x2b\xb0\xd1\xc0\xf1\x1a\x92\x30\x16\x46\x31\x68\x11\xb5\xb9\x39\x90\xea\x64\xf0\xf8\x68\x78\x3e\xa5\x7e\x2a\x16\x60\x86\xbc\x9b\x6a\x87\x62\x11\x10\x7d\xb3\xd1\x8d\x13\xf2\xe7\x17\x71\x18\xcf\x23\x6c\xf4\xc5\x9a\xa3\x31\x7a\xb2\xc7\x2b\x56\xb0\xdb\xee\xb6\xc4\xf9\x8d\x1b\x63\xd3\xc7\x63\xd3\xb0\xea\x1e\x3f\x13\xa9\x0e\x35\x16\xa8\x98\x9b\x9d\x9d\xf6\x5a\xad\xdd\xe9\xa0\x9b\x9d\x9d\xd6\xba\xfc\xb5\xc9\x7e\xa8\x19\x35\x03\x74\x64\xa3\x51\x92\x27\xaf\x76\x76\xa1\x50\x66\xf2\xaf\x24\x15\x95\x32\x5e\x56\x4a\x0c\x6b\x43\x3d\x20\x07\xb6\x8a\x7c\xe4\xaa\x5f\x0d\xe1\x30\xa4\x76\xe6\x11\xef\x9e\xc3\xa9\xb5\xc6\x28\xe2\xa7\xd2\xe1\x95\x55\x6c\x77\x31\x0a\xd2\x6d\xac\x45\x4e\xb5\x17\x6a\xf5\x3e\x91\xeb\xc2\xb6\xad\x3c\x6d\xc6\x5a\x2a\xeb\x3b\xe3\x0b\xf6\x34\x72\x78\x26\xc7\x09\xd2\x43\x80\x4f\xa1\x22\x1c\x78\x9b\x45\xcd\x2a\x63\x25\x85\xcf\x17\x35\xdb\x5e\x41\xd3\xe2\x5c\xb6\x67\xba\x02\x1b\xb1\x7b\x93\x3a\x1d\x73\x4e\xdd\xc6\x68\xac\xdc\xd4\xf9\xcc\xeb\xd4\xb5\x9d\xcf\xd4\x9f\x1a\x97\xbb\x75\x05\xc5\xfc\xf8\x28\xbc\xe1\x01\xd8\x2d\x75\xb0\x68\xa0\x06\x9d\xd8\x69\x2b\xac\xc8\x74\xa1\xc5\x46\xd3\xa2\x42\x47\x21\xb3\xdd\x59\x17\x67\x0b\xcb\x1d\xf8\x53\xcb\x46\xfb\x8b\x61\x51\x37\xf0\x87\x96\x8d\xa6\x0b\x8b\xbd\x95\xef\x9d\x5b\x36\x7a\xbd\xb0\x24\x93\xd1\xf7\x98\xd9\xb8\xf3\xf1\xc4\xb2\xd1\xdd\xc2\xd2\xa7\x37\x12\x2c\x98\x3a\xb7\x4e\x59\x51\x66\x79\x8d\xf9\x60\xb5\xd1\xf5\x33\x8a\x1d\xc3\x13\xc4\xe8\x78\x51\xd1\x97\x0a\xe2\xd9\x33\x8a\x71\x88\xfc\xb6\x84\x5a\x7e\xdd\xf6\x6e\x9d\x63\x74\xec\xe0\x9e\x3c\x60\x7c\xdd\xbb\x76\xce\x18\x40\xe1\xbf\xb8\x4f\x15\x77\xd6\x46\x3f\x43\xc7\xe8\x06\xcd\xf4\xd1\x46\xef\x1a\xe3\x80\x5c\xbb\xc1\x3e\x99\xce\xd8\x02\x16\x9f\xce\x30\x7f\x1b\xd6\xe9\x57\x87\x64\x76\xdf\xaf\x9a\xd2\x9e\x1e\x06\xbf\x6f\x0c\xe3\x38\x9f\x09\x67\xc3\x9b\xa8\x99\xf5\xc2\x0b\x27\x45\xf1\xa0\xca\x0c\xa9\x05\x38\xc5\x64\x1e\x0d\x71\x9d\xdc\x30\x65\x25\xa8\xb0\xe7\xcc\x4d\x65\x99\x79\x2a\xad\x24\x0f\x1d\x3a\xfb\xbb\xfd\xaa\x0f\x32\x09\xaf\x11\xf5\xab\x26\x6d\x58\x59\xe7\x8b\xcf\x1e\x0e\x93\xca\x67\x0f\x7b\xec\x9f\x1c\x28\xe3\x25\x7d\x4d\xf5\xa4\xcf\x8a\x25\xb3\xbb\xa2\x8a\xfc\xd5\xaf\xe4\x0b\xb3\xe7\x4c\x3d\xbd\x74\x63\xcc\xa4\xd4\x89\xcd\x57\x95\x44\x6f\xcf\x1d\x36\xa5\x4b\x95\x5a\xab\xc1\x56\x44\xf6\x0c\x94\x6d\x4d\xd8\x3c\x05\x4a\x7b\x8f\x5a\x4d\xdb\x46\x17\xc5\xf5\xca\x8e\x49\x15\x40\x38\x48\x65\x2b\xbb\x2e\xa1\x88\x49\x97\x8f\xae\xd1\x2d\x93\x31\x34\x7f\xc6\xdb\xdd\x59\xf8\x19\xc1\x4c\x25\xed\x80\x49\x9a\xe8\xfd\x4b\xe7\x62\xb7\xd9\x5d\x83\xf1\xfb\xca\x59\x6a\xf5\x96\x5a\x4b\x19\x03\xc7\x7c\xb2\xcd\x7a\xc5\xdf\x46\xcd\xdd\xb2\xd2\x77\x6c\xe8\x1d\x9a\xa0\x97\xe8\x65\xd9\x2e\xd0\x3b\x4d\x76\x4b\x66\x18\x54\x28\x1a\x45\x75\x52\xd1\x10\x9e\xe0\x37\xe8\xc8\x59\x3a\x67\x43\xfd\x4d\xf1\x4c\xcc\x81\x98\x9b\x9f\x8d\xdb\x21\x8c\x28\x36\x25\x17\xe6\x8f\x31\xe5\x33\xb8\xea\x80\x85\x6d\x34\x95\x9e\x20\x63\xf6\xea\x49\x05\xa3\xa6\xec\x16\xd2\xfc\x7e\x1f\x21\xf5\x2b\xad\x8e\x6d\x23\xea\xe0\x1f\x69\x3b\x4e\x6b\xb7\xd1\xe9\x36\xcd\xe9\x96\xde\x69\x07\xf7\xf1\x82\xd9\x4d\x4d\x06\x20\x36\x07\xdc\xb2\xb6\x6c\xdb\xec\x86\x76\xcc\xbd\x58\x8a\x94\x6b\xfc\xb9\x2d\xb1\x45\xa5\x6d\x1f\xa5\xdb\x8c\x05\x4d\x7d\x11\x8d\xaf\xad\xcf\x1e\x16\x79\x15\xca\x15\xbd\xd9\x9c\x65\xdb\x8d\x6f\x11\x3f\x14\x97\x03\x12\xfb\x0b\x7e\x2f\x8a\x21\xd0\xe3\x7e\xf2\x0f\x80\xd5\x7b\xf6\xba\xe7\x29\xeb\xa0\x56\xc3\xb0\x2c\xc2\xda\xb2\xa8\x94\xe8\x65\xbe\x2a\x36\x80\x13\xa3\x6e\xfe\x3e\x87\xef\xbc\x44\xb1\x93\x1e\x9b\x7c\xb9\x5c\x34\xde\xd4\xcb\x82\x76\x9d\xd6\x2d\x77\xb7\xfd\x02\x77\x9b\xb0\x97\xb1\x0c\xa7\x9f\x97\xdb\x2f\x30\x90\x2b\x78\x16\xb9\x8c\x43\x81\x56\xea\x0d\x75\x9d\x66\xcf\xdd\x7e\xd3\x73\x97\x97\x17\x0d\x98\x89\xe3\x2f\xbb\x0b\x77\x96\xd1\xd0\xf1\x97\x2d\x77\xb9\x65\x2f\x2e\xe6\x39\x93\xc2\xfe\xca\x02\x2b\x6d\xe9\x97\x79\xd2\x5c\x9c\xcb\xce\x01\x67\xc4\x2a\x59\x3a\x6c\x44\x2f\xc4\xb5\x88\x09\x8a\x33\x3c\x15\x97\x29\x86\xb9\x0c\x55\x23\x2c\xab\x11\x1a\xbe\x9b\xd5\xae\x64\x2b\xde\x76\x5a\xbb\x61\xf7\xd9\x9c\xad\xe3\x95\xb6\x5d\xa7\xc8\xe5\x35\xe3\xe7\xd7\x5c\x16\x35\x07\xfa\xad\xa2\x01\xbf\x55\x34\x41\xf1\x62\xed\x1e\xd6\xb3\x5d\x86\xdb\x47\x83\x12\x3a\xd4\x17\x73\x0b\x45\x99\x7a\xe6\xed\x96\x27\xab\xb3\x25\x3c\xfb\xff\x09\x30\xc8\x47\x1e\xfc\xbf\xb8\x9c\x87\x5c\x34\x84\xff\x17\x97\x1b\x22\x1f\x0d\x9f\x90\xc3\xe7\x14\x89\x0c\x51\x58\xeb\xca\xc5\x48\xd3\x71\x9c\x60\xb7\xd9\x0d\x76\x1c\xcc\x86\x6e\x3d\xe8\xe2\x7a\xd0\x5b\x6a\x39\xce\x92\xc5\x12\xed\xc7\x47\x56\x66\xbe\x6b\xce\x14\x31\xa6\xaf\xfd\x10\x1f\xb8\xf1\xc4\xba\xd4\xce\xe1\x62\x1b\x19\x5f\x57\x25\xcc\x5a\x9e\x2f\x12\x74\x79\xca\xf2\x07\xd5\x5a\x59\x5b\x45\x68\xa4\x18\x2e\xe3\x85\x38\xa2\x80\x1f\x3a\x29\x3b\xd1\x6c\x5b\xc3\xfa\x04\x61\x14\x98\x1e\xd4\xae\xbc\x31\xde\x58\x47\x37\x4e\x63\x15\x8d\x1c\x56\x6e\xa6\x6f\xeb\x8d\x5f\x8c\xd8\xc2\x4d\x4b\xb9\x61\x29\x53\x67\x54\x9f\xd5\xf7\x7b\xe5\xb4\x99\xa1\x7d\x34\xfd\x50\x2a\xb0\xde\x64\xbc\xb0\x1f\x5c\x3f\x29\x98\x87\xac\x4c\xf1\x08\xc7\x94\x44\xd8\xb2\x93\xac\xdd\xa1\x72\xd0\xd2\x2b\x39\x01\x66\x8c\x9b\x1d\xa7\xd5\xae\xd5\x96\x9e\xf2\xea\xc2\x9d\xc2\x25\xc7\x99\x14\x4e\x12\x0b\x4c\xfb\x7e\x15\xce\x02\x5d\x63\xca\x96\x1e\x6a\x35\x67\x12\x02\xbb\xf1\x3c\x82\xdd\x43\x6b\x62\xe7\xac\xa7\xb4\x17\xfd\xaa\x3b\xa4\x73\x37\xd0\xce\xa0\x1d\xe0\x78\x88\x43\x0a\xd7\x8d\x68\xad\x46\x1b\x65\x25\x76\x9a\x8b\xe6\x37\xaa\x2b\x52\xaa\xae\x67\xd6\x53\x8d\xcc\x34\xee\x42\xbd\xfa\xe2\x0d\xd3\xac\xcb\x66\x8d\x22\x45\x9b\x5d\x04\xa6\xd6\xe1\xea\x62\x53\xb3\xdc\x28\x29\x58\xa2\xf2\x6c\x4e\x53\x66\xf1\x3f\x61\x64\x94\x89\x54\xc2\x84\xea\x2e\x5d\x98\xff\x50\xed\xe6\x27\x8c\xe6\x67\x9b\xc0\x59\xcd\x9f\x5e\x8c\x2e\x1a\x80\x40\x9c\xe2\x21\x58\x4a\x35\xc9\xf1\x7c\x4d\x39\x46\x19\xdd\x5e\xc9\x17\x6a\x35\x04\x9f\xcf\x91\x7e\x75\xc0\x16\x47\xce\xe4\xc9\xf1\xc9\x6f\xf7\x61\x27\x33\x70\xc6\x58\xbb\x1e\xff\x69\x8b\x3e\x1b\xdd\xa3\x03\x74\x04\x83\x13\xdb\xe9\x56\x7a\xab\x47\xb7\x9d\x8e\xe1\x43\x2c\xd1\x0a\xff\x28\xfe\x94\x54\x55\x7c\x34\xdd\xeb\xd4\x46\xff\x18\x94\x44\xd8\x86\x13\x07\x3d\x26\x28\xaf\x7f\x28\x03\xac\x09\x03\xac\x78\x50\xfd\x93\x18\x75\x65\x1d\xcc\xf2\x04\x8c\xdd\x8f\x1e\xa1\x9f\xd2\x8a\x1a\xcd\xc5\x62\x26\x66\x8f\x53\xa7\x5c\x5a\x3e\x58\xa2\x61\x51\xf7\x9e\x0d\xb4\xf7\xce\xe2\x61\xbf\xab\x5f\x72\x4b\xc7\x64\xb3\x47\xb7\x31\xc4\xcf\x48\x4f\xb6\x38\x6b\x70\xc4\x8e\x47\xd5\xa0\xcb\xab\x57\xea\x25\xdd\xa5\x96\x8c\x63\xd0\x4c\xac\x53\xbb\x3b\xb2\x4e\xa5\x84\xbe\xcf\x3a\xd9\x3f\x13\x08\x8d\xfc\x90\x1f\x33\xd1\xa6\x59\xeb\xb4\xf8\x90\x38\x0a\xd0\x05\x7a\x85\x5e\xf2\x7e\xbd\x45\x27\xb0\xf4\xec\xf5\xf8\x01\x4f\xb5\x67\xa7\x9f\xf2\x11\x07\x3a\x32\x67\x71\x32\x47\x2b\x7b\x6f\x1d\x8c\x4e\x1c\xac\x1d\xf8\x44\x27\x72\xeb\xe2\x33\x71\x6a\x8a\x9b\x5f\xc9\xdb\x7c\x23\x97\x65\xcd\xd6\x5b\x57\xe8\xc4\x79\xab\x81\xed\x15\x1e\x22\xd5\x6a\xda\xb2\xb9\x6d\x03\x1d\x81\x4c\xad\x66\xe5\x51\xd5\xaf\xc1\x97\x63\x92\x9e\x12\xcc\x9c\x3f\xca\x77\x07\x5f\x35\x46\xfe\x1d\xf6\xce\xc8\x6d\x6c\x53\xb9\xbb\xe3\x9c\x28\x24\x52\x1c\xa9\x8e\x58\x11\x24\x74\xe2\x50\xd0\xf4\x27\x8d\xfb\x65\x59\x6f\x87\xd1\x44\x17\xd4\xc7\x47\x09\x7c\x47\x96\x59\x6e\xcb\x99\x68\xa9\xc5\xea\xbf\x35\x4e\xe3\x2e\xbf\xcd\x13\xa7\x1c\xbc\x0c\x6c\xf2\x24\xf1\x41\xae\x8d\x76\x0a\x98\xa0\xda\xd9\xc6\xd9\x66\xa8\x83\x85\x98\x30\xc3\xd3\x7e\xeb\x50\xe5\x41\x7b\xd6\xd1\xdd\x5c\x21\x9d\x6a\xdb\xd9\x6e\xb1\x6c\x41\x35\x25\xa5\x2c\xed\x4e\x56\xb9\xd3\xaa\x80\x9e\xb0\xb1\xb3\xd4\xe4\x2e\x32\xd3\x7a\xce\x0f\x08\xca\x38\xb7\x70\x40\x20\x06\x2c\x49\xf0\xe3\xa3\x55\xc0\x8d\x9d\x66\xad\xf6\x36\x95\x23\x7e\x98\x53\x2f\x67\xa3\x13\x47\xdc\x85\x79\x9a\xb7\xf2\xbe\xaa\x6c\x3b\x41\x39\xd8\x27\x36\xd2\x2b\x4a\xd8\x8c\x82\x27\x19\x28\xcd\x04\x4c\xaa\x85\x94\xe2\x8b\xad\x13\xc7\x31\xc6\xef\x2e\xab\xe4\x34\x11\x83\xaa\x06\x44\x4a\x9a\xa6\xdd\xd5\xf1\x12\x47\x06\xf5\x24\x79\x34\xf1\xc4\xd6\xce\x1d\x7e\x66\x9e\xeb\xd4\x04\x43\x16\x7f\x6b\xa3\xcf\xf2\xe7\x2c\x9d\x93\xc6\x5d\x41\xfa\xbd\x73\xd2\xb8\xcf\xa7\xeb\x87\x36\x4f\x1a\x77\x2b\x66\x87\x17\x95\x07\x80\x2b\x19\xe9\x43\x9f\x65\x4f\x9f\xae\x38\x39\x90\x99\x23\xa8\x2b\x59\x11\x4e\x49\xa7\x6c\x95\x13\x13\x7e\xe3\xde\x46\x8c\x51\x52\xec\xee\x18\x97\xe9\x9d\x19\xaf\xe9\xb4\x88\x3a\xf5\xc2\x39\x04\x82\xc3\x14\x11\xad\xa4\x38\x25\xb3\xe2\xc9\x88\x03\x2a\xaf\xa4\xf0\x4d\xfb\xf1\xb6\xe1\x7a\xe2\x4c\xe5\x67\xec\x4b\x9d\xef\x44\x9f\x25\xc5\x13\xa1\x11\x80\x8e\x32\xb8\x4e\x53\x85\x38\x8b\x77\x17\x5a\x87\xdd\x62\xa3\x00\xb9\xe5\x15\xc1\xd0\xe9\xfa\x3d\x1e\x4c\x6e\xa9\xa5\x66\x16\xdf\x69\xf6\xfc\xed\xb0\xe7\x2f\x2f\xa7\xe6\x01\x3f\x7b\xef\xc2\xa1\xfb\x07\x79\xcf\xd7\x7f\x51\x68\xa1\xbc\x58\x5b\x5e\x7b\x11\x2f\xaf\xf6\xc4\x55\x0c\x61\x3e\x44\x57\xb2\x5b\x3e\x9a\x30\xdd\xc4\xb5\x27\x1b\x9d\x62\x08\x26\x3c\x9c\x8f\xd3\x44\x05\x08\x91\x65\xb7\x08\xa5\xd0\x44\x29\x5e\x80\x92\x5f\x82\x12\xb4\xb9\x00\x27\xd8\x0e\x70\xdc\x2c\x52\x64\xd9\xad\xb7\x7a\xfe\x8e\x43\x7a\x7e\xbd\xfe\x43\xc0\x8b\xb7\xbb\x00\x31\x7e\x73\xce\x09\xb3\x98\x85\x1c\xaf\x66\x11\x5e\x3f\x00\x16\x8a\x66\x4b\x11\x13\x61\x0f\x7e\x80\xb7\x2e\xe5\x25\x4b\x41\x93\x3a\xe7\xd9\x72\x0b\xdd\x77\x25\x3a\x75\x10\xad\xe5\x56\xc1\x15\xcc\x67\xd5\x4a\x2f\x76\xca\x72\x64\xd9\x8a\x1f\x1f\xa3\x5d\x6d\x1d\xb0\xf0\x38\x4f\xa1\xc7\x5a\xae\x28\xec\x95\xb6\xdd\x6d\xda\xe8\xbe\x2b\x9a\x94\xd0\x73\xc7\xcf\xd8\x02\x85\x0f\xea\xdd\x66\x57\x73\xa7\x2e\x3e\xbf\x53\xd6\xb8\x58\x3c\xf2\xd6\x93\x24\x49\x32\x77\x6f\xc7\xe2\x4a\xea\x0d\xbf\x92\x6a\xdc\xc3\xc9\x5e\xbd\x9a\xc7\xd8\x83\x75\x62\xbc\xc2\x91\xd1\x27\x80\x17\x7a\x8a\xb0\x91\x12\x06\x93\x9f\x78\xcf\xc2\xe2\xa9\x89\xd2\x91\xea\x00\x3e\xcf\xc8\xdc\x07\x49\x5b\x5e\x76\xb0\xd0\xb5\x2f\xb0\xb4\x0f\x0a\x6e\xcb\x2a\x5f\x60\x5a\x53\x46\x53\x10\x2d\xa8\xdb\xa9\x42\x31\xcb\xec\xbc\x55\xa1\x07\xd6\x80\x22\x6a\x86\x67\x30\x7c\x3b\x63\x69\xfa\x76\xbe\x23\x8d\x46\x43\x1d\xfd\x2f\xec\x92\xf6\xd9\xd3\x08\xe9\xf0\xd3\xf3\x72\x75\x39\x5c\x70\xb1\x72\xf8\xc4\xa5\x4a\x7e\x45\xd2\x88\x85\x31\x04\xcf\x22\x76\x23\xd3\x85\x32\xcc\x2d\x36\x87\x05\xae\x13\xfd\x42\x5d\x9e\x76\x8d\xfb\x82\x34\x69\x38\x65\xa8\x28\x2c\x62\x15\x27\x23\xbd\x08\xa1\x62\x16\x8d\xd2\xc3\xad\x52\x71\x51\x38\xdf\xb8\xb3\xb3\xd3\x5e\x43\x24\xfd\x12\xa7\x0b\xc3\x34\x05\x4e\x19\x22\xd7\xf1\xb5\x0a\x93\xf4\x4b\x54\x08\xd2\x14\x5e\x61\xa8\xbb\xfb\x79\x64\x2f\xf7\x3a\xb6\xa2\xba\x6b\x2f\xab\x2f\x52\x9f\x68\x5f\x61\x3d\xb0\xed\x95\x56\x5b\x84\x14\x65\xca\xf1\xc9\xd5\xb5\x5c\x5a\x5f\x39\x8e\x13\xd5\x6a\x6a\xa5\x0d\xd1\x36\x88\x96\xd0\x66\x09\xe1\xe3\x63\x5c\xab\xa9\x06\x55\xe5\x7a\xa4\xa1\xa1\xc1\xa8\x93\xa2\xf4\xf6\x55\x3d\xb4\xb7\x87\xbb\xda\xb2\xde\x69\x76\x3d\x47\x2d\xe9\x2b\x5e\x4a\xfa\x99\x1c\x52\xe9\x25\xb9\xf2\x28\xad\xf2\x6e\x8d\x38\x85\x48\x91\x3a\x14\xe8\xa3\x38\x49\x50\x6b\xbd\xf9\x89\x01\x61\xf4\x23\xaa\x0e\xd3\xa4\x6f\x5c\xcf\xc3\xde\xe7\xf8\x4e\x70\x9c\xff\x61\xcb\x99\x38\x66\xff\x8a\xe0\x4d\xf2\x4c\xaa\x43\xb5\x6b\x15\x32\xf2\x80\x30\x32\x10\xd3\x11\x91\xd3\x44\xc4\x69\xf6\x6e\xdc\xa8\x12\xca\x83\xc2\x69\x48\x3c\x0f\x8e\x55\x8b\xf5\x14\x6e\x50\x72\x2e\x42\x17\xae\xa7\x57\x43\x54\xa8\xbb\xdd\x7e\xb5\xd9\xaf\x2e\xd3\x2e\x4d\xe9\x39\xe0\xf7\xd4\xe4\x21\xd6\x6d\xba\x6b\xd1\xe5\x46\xb3\x63\xaf\x58\x18\xfe\x76\xc5\xdf\x15\x91\x9e\x18\x18\x43\x30\xa1\x7e\xf5\x2b\x4d\xf1\x5f\xbf\x8a\xe0\x6c\x74\x33\x41\xba\x57\x87\x61\xb6\x1f\x67\xa3\xb9\xb1\xf1\xa3\x9f\xe3\x65\x33\x7b\xbc\xfb\xc5\x57\x3e\x7b\x60\xdd\x4a\xd8\x1f\xca\xff\xf8\xfc\x4f\x6c\x27\x5f\x74\x4b\xf2\xbf\x48\x10\x6b\xe5\x8c\xd1\x3c\xdb\x8c\xd3\xee\x74\xd2\x80\x41\xdb\xdb\xed\xb5\x47\xba\xbd\xdd\x5a\x7f\xf4\xb7\xb7\x37\x1f\x63\x7b\x67\x67\xa7\xc9\xab\x67\xc2\x31\x65\x2e\x1f\x41\x6f\x45\x5f\xd2\x8b\x42\xd0\x61\xd9\xb6\x4a\x4e\x92\xc4\x0a\x1f\x1f\x2d\x8d\xd7\xa1\xf3\x90\xd8\xb6\x41\x18\xc5\x07\x6a\xf0\x81\x38\xda\x4c\xdb\xee\x74\x5e\x50\x1b\x5d\x02\xdc\x2b\x67\xc8\xda\x17\x20\x2d\x0c\x42\x66\x23\xc0\x2c\x14\x98\xa9\xfb\x49\x80\x59\x28\x31\x93\xc9\x49\x82\x1b\xd7\x01\x0e\x3d\x83\x4e\x30\x49\x11\x87\xb5\x56\xe3\xa2\x6b\xaf\x30\xc5\xc3\x0c\x02\x62\x6b\xfd\x07\x51\xe6\xa0\x79\xb9\x24\xbd\x0e\x27\x74\x96\x38\x5d\x3d\x51\x09\x4a\xab\xc9\x04\xa9\xd4\xb0\x59\xc3\x53\x09\xa2\xc6\x40\x25\x40\x0d\x29\xd3\xbe\x33\x5c\xd6\x6d\x11\xb7\x3e\xb4\x5f\x10\x1b\xc5\x8e\x67\xa4\x4f\xea\x1e\xa4\x47\xce\xc0\x48\x0f\xea\x03\x48\xcf\x93\xad\x90\x68\x76\xc2\xa4\xc3\x8f\x4f\xe1\x26\x48\x51\xb4\xae\x76\xa7\xe3\x70\xda\x09\x8e\xb0\x0a\x05\x87\xdd\x73\xf1\x0c\xa5\x1a\x1b\x16\x1e\x8d\xe7\xc0\x10\xa7\x1a\xf2\xc1\x9b\x15\xa7\x37\xb2\xe4\x81\xf6\x58\x11\x30\x56\x94\x8b\xe5\x81\x76\x86\x09\xc9\x23\x2e\x95\x06\x43\xfa\x51\x20\xcd\xc6\x81\x20\x71\xa1\xb4\xd1\x05\x14\xa3\x89\x68\x68\xe8\xd3\x7b\x87\x22\x9c\xbd\x1e\x63\x44\x49\xd7\x24\x3d\x25\x1a\x62\x83\x80\xbc\xf0\x57\x24\xda\xe9\xb9\xac\x02\x9a\x5f\x66\x64\x27\x23\x39\x86\xdc\x5c\x25\x89\xe5\xf2\xc1\x08\x03\xdc\xcd\x8f\x44\x98\x16\x91\x0b\x21\x15\xa5\xc7\xd6\x7b\x3a\x10\x38\x16\x73\x4b\x0b\x61\x39\xb7\xb4\xd4\x01\x29\x5c\x64\xff\x94\xc4\x8b\xe8\xf9\xb5\x9a\x45\x21\x16\xde\xd3\x47\x7c\x5d\x15\x36\xf0\xb5\x1f\x62\x37\xfa\x6a\xe4\x7a\x3e\x43\xad\x09\xef\x1d\xb4\x6c\x19\xe4\x31\x29\x50\x6a\xe2\x2a\x62\x63\xca\x4a\x58\x2b\x5f\xb9\xec\xf7\x3d\xb7\x3e\xba\x7a\x58\x45\x9b\xc9\x8a\x6f\xdb\xf2\xc2\x4e\xea\xc1\xe6\xa7\x42\xd4\xe0\x4b\xc3\xa9\xaa\xe8\xe3\x6d\xbb\x11\xe1\x19\x76\xa9\xd5\xe6\xf1\xc4\xe3\x7c\xa9\x36\x5a\xcd\x96\x8a\xf2\xa5\x56\xd1\x5a\xb6\x54\x2a\xe9\x5c\xe2\xe4\x59\x89\xff\xd7\x10\x22\xf9\x52\x6b\xa8\xf3\x04\xda\x88\x08\xc4\x37\xba\xfa\x74\xc2\x87\x8f\x95\xef\x02\x00\x61\x13\x14\x1b\x0e\x30\x45\xf1\xea\x5b\x05\xd5\x4b\x6a\x43\xad\x44\x9e\x7d\x53\x2c\x67\x55\x76\xfb\x7d\xab\xdf\x8f\x5f\x58\xfd\xbe\xf7\xd0\x42\xab\x89\xcd\xbe\xd0\xb3\x92\x2c\x9e\xd6\x7c\x6c\x3d\xf6\xfb\xde\x6e\xbf\xdf\x60\xf9\xcb\x36\x64\xda\xbb\xfd\xbe\xbd\x02\xaa\x6a\x62\xe7\x39\x34\x81\x88\xbf\xb1\x9e\xd0\xbe\x32\xe8\x3e\xb9\x5c\xbd\x62\x24\xce\x4c\x81\xe2\xca\x92\xe3\x38\x93\xcb\xce\xd5\x6e\xab\xab\xc5\xf8\x65\x29\xb6\x5d\x48\x71\x08\x4c\xf2\xf8\xb8\xe4\x16\xdc\xac\x1d\xc6\xea\x52\x50\xb7\xf2\x36\x8c\xe7\xb3\x19\x89\x28\xf6\x2a\xc3\x38\x16\x91\xe9\xd9\x18\x67\xab\x37\x6d\xe3\x97\xe9\xe3\xf4\x0b\xa3\x82\xe7\x0b\xb4\x02\x3f\x80\x66\xd5\x7a\x88\x8d\x6c\x61\x07\x20\x72\xe5\xd0\xfc\x16\x1d\x2b\x01\x66\x34\x6a\x77\x3a\x4b\x6c\xe6\xfe\xe8\xe6\x85\x90\x15\xdb\x10\x08\x64\x8f\xd9\x38\x13\xae\x56\xe3\xd8\x99\x3c\x65\xde\x18\x66\x3b\x18\x17\x91\x43\xe1\x2f\x71\x40\xe9\x8b\x36\x1b\xed\x56\x7b\xfd\x85\x15\x6f\x3b\x8d\xe6\xea\x56\x7b\x73\x37\x5e\x69\xb5\x1b\x5b\x6d\xee\x7e\x98\x91\x5b\xcb\x8a\x99\x2d\xda\xb1\x57\x5a\xec\x0f\x6a\x37\xd6\x6c\x7b\xb9\xb1\xd1\xea\xb4\x5f\x58\x91\xaa\x16\xe5\xaa\x45\x45\xd5\x9a\x1b\xed\xf6\x0b\x8b\xa8\x6a\x24\x57\x8d\xe4\xab\x25\xb8\x11\xe1\xc0\xa5\xfe\x0d\x7e\x3d\x9f\xfa\xa1\x1b\x0e\x0b\x0d\x03\x6a\xe1\x74\x4a\x92\x76\x0f\x4c\x79\x30\xc3\xe5\x60\xb4\x1d\x9a\x58\x01\xd0\x94\xad\x1b\x82\x0f\xa2\xa9\x9a\x0b\x23\x27\x6d\x95\x38\xb2\xdd\x1e\x7f\x42\x84\xaa\x62\x2e\xfb\x2d\x8a\x4d\xd8\x6f\x69\x96\x0d\xac\xa0\x00\x35\x2b\xe4\xb7\xf9\x0a\xf3\xb8\x5c\xf0\x0d\xc1\xde\x70\x9b\xcd\x66\xe1\x4e\xf3\xf1\xd1\x65\xff\x4c\x76\x9a\x76\xcf\x0e\xeb\xa9\xab\xbd\x89\xd2\x13\x46\x8d\xd6\x8b\xd0\xb6\x91\x5b\x9e\xed\xda\x36\x9a\x94\x67\x4f\x6c\xfb\xd3\x90\x16\x4b\x83\x10\x96\x06\x2e\x2c\x0d\x26\x86\xe6\x55\x44\x77\xff\xc9\x13\x7d\x9b\x19\x74\x8f\x2e\xff\x33\xd9\x86\x3b\x8d\x76\x98\xde\xbb\x03\x7f\xc4\xb2\x41\x3f\x96\x56\x0f\x6d\x78\x91\xc4\x28\xe7\x16\x94\x73\x59\xb9\x89\x59\x6e\x52\x50\x6e\x62\xff\xd0\xb9\xf2\xe4\x3a\x26\xbf\x84\xa9\xd0\x74\xb5\xa2\x2f\x54\xf4\x35\x8a\xb6\x3c\xd1\x57\x26\xfa\xa2\xe4\x87\xb4\x1e\xc9\x2e\x3b\x9e\x5e\x44\x18\x4e\xa8\x02\x6a\x32\xf5\xb3\xc9\x66\xd3\xa2\x3c\x9f\xe5\xb1\x79\x66\x60\x31\x8a\x6f\xf3\x78\x10\x64\x3b\x92\x20\x89\x43\x45\x1b\x28\x74\x58\xa1\x22\x28\x84\x41\x01\x30\xe1\x76\x9c\x2e\x2c\x5c\x51\x53\xd2\x28\xdc\x29\x03\x40\x01\xc0\x2e\xe9\x52\xb9\x2b\x49\x12\xb9\xd1\x24\xa1\xa0\x49\x69\xfb\xa1\x6a\x7f\x92\xb6\x9f\x62\x2e\xdb\x9f\x94\xb6\xcf\x3b\xb0\x1b\x76\x89\x6c\x3f\x4c\xb8\x72\xf6\xe6\x43\x4d\xbd\xb3\x45\x8d\x1f\x32\xbb\x3b\xd6\x52\x5d\xbe\x50\x91\x8b\xfc\xa2\x85\x4a\xba\x46\x29\x99\x0b\xd8\xfa\x64\x28\x95\xbe\xeb\x0c\xb9\xd6\x37\xfd\x49\x5e\xce\xdf\x34\x48\xd0\xea\x5a\xe7\xd3\x3c\x58\xd1\x3c\xdc\x0b\xbd\xf3\xf9\x75\x3c\x8c\xfc\x6b\xec\xd0\xc6\x88\x44\xb7\x6e\xe4\x41\x64\x40\x87\x1a\x11\x02\xd3\xd8\xe0\x46\x2a\xb8\xec\x8b\x42\x1e\x0f\x02\x3f\xa6\x38\xc4\x91\x16\x7c\x51\x44\xb0\xf3\x9c\xa5\x16\xf8\xe3\x21\x66\x60\xd6\x1d\x0f\x89\x2a\x92\x1d\x7c\x39\xd8\xd9\xb1\x32\x50\x95\x5b\xfe\x41\x40\xed\x66\x62\xd1\xc9\xc6\x6c\xd3\xf1\x99\x05\xa3\x45\xce\x51\x9e\x7a\x95\xcb\x9d\xa1\x38\x1f\x66\x58\x03\x20\x76\xdb\x29\x6a\x41\xbc\x38\xa4\xe1\x9d\xf0\x20\x51\x7a\x30\xa8\xcb\xab\xcc\xeb\x11\x25\xf8\x60\x86\x0f\xef\x63\x16\x27\x7c\x65\x67\xe2\x90\xf9\x46\x1c\x32\x1e\x68\x2c\x08\x84\xd1\x8c\x58\xfb\x5a\x40\x42\xee\x0a\x0f\xb0\x1b\xbd\x96\x20\xb5\x50\x70\x92\x41\xcd\x24\x5b\x24\xcb\x56\x75\x62\x32\x8b\xbb\xd3\xb4\x21\x9e\xb7\x21\x4c\xa6\x9a\x96\x2e\x47\x88\x67\x46\x45\x2c\x2d\xdb\x86\x58\xe6\x59\xa9\x2c\xac\x49\x45\xe7\x6c\x24\x60\xf0\xea\x09\xda\xec\x6c\x95\xbc\x47\x90\x8d\x7f\x64\xd3\x34\xa2\x62\x0f\x2b\xdc\x3f\x2e\xc4\xff\x18\x53\xfe\x5c\x02\xde\x8b\x22\xf7\x3e\x7d\x3a\xc1\x51\xad\x40\x06\xf8\x89\x8d\xdc\xe3\x39\x65\xbf\x8c\x34\xed\x43\x8d\x3a\x2d\xad\x7c\xcc\x79\xaa\x90\x36\xea\xfc\xf8\x40\x1b\x77\x19\x41\x30\x72\x9b\xc5\x47\x95\x34\xa8\x36\xd6\x88\x96\xcb\x4d\x89\x18\xe1\x31\x93\x8a\x48\xb7\x86\x73\xa5\xe5\x08\xc6\xc9\x3c\xd4\x2b\x98\x67\x84\xf4\x1a\xf2\x5c\x0a\x16\x11\xb6\xa8\x3c\xcf\xa4\x17\x32\x06\x24\x2a\xa2\x70\x39\x01\x4d\x5a\x31\x1d\x05\x6c\xce\xea\xa8\xb4\xd8\x2e\x67\x90\x38\xf4\x00\x85\x93\x58\x55\xc3\x79\xb8\x8f\x8f\x58\x6d\xb3\x42\x21\xa5\xea\xe0\x6b\x37\xa5\x2f\xd2\x92\x1d\x9c\xd9\x30\xe3\xa9\x22\xcc\xfa\x42\x9e\xa2\x67\x40\x17\x70\xe0\xa9\x02\x5d\x3c\xf3\x13\x9a\xd2\xb6\x18\x4a\x1b\xb2\xed\x2f\x1c\x08\x0b\x60\x31\xcd\xcd\xc6\x68\x92\x24\x68\x6d\xf3\x13\x67\xb5\x34\x2c\xb0\x43\x1b\x17\xb7\x44\xfc\x7e\x3a\x48\xff\x80\xad\x9d\x9d\x87\x84\xf1\x2f\x13\xea\xd8\xa5\xee\x25\xbe\x4a\xc3\xab\xf2\x6f\x36\x53\x23\x23\x85\xcd\x17\x3e\x13\x1b\x53\x59\xe9\x45\x76\xb3\x15\xba\x82\xf8\x06\x7b\x15\x2e\x89\xde\x07\xdf\xec\xde\x02\x3d\x20\x43\x14\xfb\xaa\x33\xf2\x30\x8f\xca\x6f\x48\x34\xe5\x09\x7f\x48\x94\xc5\xa1\xb2\xde\x3b\x55\x1c\x8a\x88\xdd\x84\xb1\xa4\x94\xb6\x9d\x53\x50\x65\x17\x7e\xb1\x42\x05\xbd\x54\x8f\x23\x24\x09\x5a\xdd\xda\xfa\x34\xe6\xfb\xf1\xfe\x24\x22\x53\x7c\x7a\x0e\xaf\x9d\xbc\xf6\xc3\xf9\x1d\xfc\x7a\xe7\x87\x1e\xb9\x8d\xe1\xf7\xd1\x6c\x42\x42\x2c\x7e\xba\x1e\xfc\x38\x76\x87\xdc\xa7\x72\xee\x8e\xdc\xc8\xff\xba\xd8\x89\x67\x59\x3c\x85\xc3\xc3\x63\x77\x78\x7f\xe8\x8d\x79\xed\x57\x7e\x84\x47\x84\x37\x70\x42\x3c\x4d\x5b\x8b\xef\x7e\x75\x1e\xf2\x0e\x78\x9a\x87\x68\x16\x91\x21\x8e\xe3\x5a\xad\x5f\xa5\x3e\x0d\xf8\x43\x43\x22\x51\xf9\x8f\x25\x8c\xdd\x7e\x35\x24\x1e\xee\x57\xbb\xa1\x7b\xe3\x8f\x5d\x4a\xa2\xc6\x3c\xc6\xd1\xde\x18\x87\x14\xc5\x0b\xcb\xcd\x02\x97\x8e\x48\x34\xed\xe9\xc8\xfa\xcc\x8e\x0d\xe6\x1e\x8e\xad\x7e\x55\x24\xf6\xab\x9c\x78\x5a\xff\x8c\x62\x2c\x45\x96\x11\xe4\x58\xf9\x97\x96\xb5\xbb\x34\x04\x6a\x3f\xba\xa1\x17\x11\xdf\xb3\x1b\xf6\x8b\x18\xb2\x57\xfc\x06\xc5\x31\xb5\x7c\x31\x39\x9a\x54\xd5\xe2\xb9\x83\xbd\xa6\xa0\x4a\x43\xab\xa9\x2e\xb9\xfb\xd2\x6f\x29\xea\xf6\xfb\x2b\xdc\xdf\xb8\x92\x2e\x2e\xe6\x41\xc0\xac\xb4\xc7\x47\x9c\x6e\x77\x36\x35\xb7\x28\x3c\x25\x86\x24\x97\x2f\xfb\xd5\x63\x77\xe8\x87\x94\xc4\x13\xb8\xbf\x7d\xec\x0e\x8f\x42\x8a\x03\xf9\xf1\xe6\xcd\xbe\xfc\xb9\xbe\xf9\xb5\x7e\xf5\x2a\xa5\x44\xcc\x49\x00\x52\xd3\xaf\xfa\x6f\x5c\x0f\xae\xb7\xc4\x48\x13\x2b\x96\xce\x7e\x68\x39\x52\xf8\x2e\xfb\x55\xf1\x13\x1a\x78\xe7\x87\xad\x75\xf9\x6b\xb5\x2d\x7f\xed\x1f\x16\xb5\xc9\x45\x39\x9d\x02\xfb\x55\x48\xe9\x57\xed\x1d\xa7\x69\x4a\xfe\x4a\xbf\x7f\xbd\x1f\x9d\x9e\xf7\xfb\xd7\x2b\x92\x0d\x09\x5a\x15\x8a\xf5\x13\x42\xe5\x1f\xe0\x6b\x32\x0f\x87\xd8\x93\x61\xa2\x1d\x6a\x46\x8c\x76\x68\xe3\x4d\xe4\x93\xc8\xa7\xf7\x69\x5a\x2e\xa6\xfe\xea\xd6\x96\x2d\x14\x71\x54\xa8\xbe\xa8\x1b\xbf\xd7\x0d\x18\xa7\x99\xc8\x88\xd3\xd8\x28\x93\x39\x9b\x03\xef\x09\x58\x76\x32\x0a\x58\x32\x37\xf9\x84\x95\x22\xde\x62\x10\xd5\x84\xb9\x6c\x6b\x69\xe2\x34\xbd\x7f\x65\x29\x85\xe8\x2f\x2f\xf7\x52\x6b\x39\xfb\x7c\xcb\xc0\xf7\x02\xbc\xef\x06\xc1\xb5\x3b\x7c\xaf\x8c\xe1\x21\x5b\x17\x06\x32\xd9\xca\x97\x94\xb8\xea\x69\xf2\x11\xb1\xb4\xbf\x28\x8f\xad\xd3\x4c\x64\x07\x0b\x10\x50\x73\x93\x01\x97\x27\xc9\x78\xbb\x26\x52\x42\xe1\x34\xae\xfd\xd0\x83\x24\x66\x40\xcb\x54\xcd\x72\xc9\xe3\x29\x42\x22\x37\x11\x3f\xa8\x80\x1b\xd4\x9f\xe2\x33\x3c\x75\xfd\xd0\x0f\xc7\xf0\x9e\x18\xb7\x24\x17\xd2\x1e\x0e\x46\x39\x07\x2e\xc5\x8d\x90\xdc\xa6\x57\x6c\xca\x99\x81\xa8\x7e\xb5\x28\xad\x59\xa7\x36\xf2\xd3\x2c\x26\xe1\x28\x2a\x40\xab\xd5\xe8\xbc\xf0\x77\x22\xa9\x64\xe2\x3a\xdd\xae\xb7\x9b\xb5\x9a\x7c\x4a\xf2\xd6\x8d\x42\xeb\x0b\x86\x40\x05\x84\xad\x82\xef\x86\x18\x7b\xd8\xab\xb8\x41\x40\x28\xc5\x5e\xc5\xc3\xae\x17\xf8\x21\xae\x5c\xdf\x57\x3e\x7b\x50\xe7\x59\x34\x7f\x4e\x5c\xa7\xb6\x9d\x4c\xe3\x2f\xf8\x0b\x71\x15\x43\x32\x7b\xb1\x13\x25\x86\x48\x25\x7c\x1c\x90\x0a\x0f\x09\xc0\x46\x44\x8e\x5f\xa9\x0d\x1d\x63\x7a\xe1\x4f\x31\x99\x53\x1e\x7a\x5d\x05\xb0\x84\xfd\xc0\x03\x81\x9c\xd5\x5a\xb7\x81\x99\x19\x61\x64\xa6\x35\x04\x28\x17\x20\xb0\x9d\x64\x6b\x6a\xd6\x77\x4a\xdf\x65\x2c\x37\x04\x0c\x8a\x82\xd9\xa6\xb9\x65\x69\x3d\xad\x62\x83\xe5\x92\xd7\x05\x04\x65\x35\xc6\x52\x2c\x26\x30\x36\x1d\x8a\x9e\x1f\x69\x32\x07\x93\xe3\x2d\x68\xcd\x5d\x4e\xab\x67\x51\xaa\x00\x12\xef\x6f\x9e\x24\x90\x92\x2d\x98\x74\x49\xa1\xc2\x2b\xb7\xb9\x40\x64\xc4\xeb\x84\x46\x17\xb9\x09\x66\x14\xcb\x44\x60\xe7\x69\xa9\x8a\x53\x0a\x4c\xcf\x16\x69\xcc\x4c\x6a\xad\x6d\x7c\x9a\x99\x74\x28\xe2\x4f\xec\x51\x1a\x31\x13\xc2\x7c\xdb\xe2\x69\x53\x79\x34\x96\x2a\xea\x5a\xfd\x92\x31\x2d\x80\x04\x71\x12\x53\x97\xfa\xc3\x8a\x16\x5e\xc5\x70\x8a\x69\xbe\x30\xd3\x19\x26\xea\x41\x24\xbb\x5c\x4d\x7e\xca\xe2\xb2\x79\x65\x83\x47\x58\x7c\xb6\xae\xe4\x56\x69\x0d\x5f\xb6\xaf\x92\x61\x40\x42\x9c\x79\xda\xc0\x57\xcf\xd0\x31\xe4\x45\x27\x10\x86\xa8\x6e\xbc\x1f\x08\xa7\x5d\x30\x3a\xd4\x10\xf0\x10\x4e\xb4\x08\x6b\x52\xd0\xd6\x37\x5a\xcd\xcd\xcd\xf5\xb5\x9a\x80\x99\xc8\x60\x2c\xea\x95\xb9\xd5\xb5\x76\x6b\x63\xa3\xbd\xa9\x95\xd0\x82\xa6\x19\x66\xf3\xc4\x8d\x0d\xd6\x58\x36\x7f\xdb\xd3\xc4\xc7\x0c\x1a\xb2\xdb\xea\xb6\xd7\x37\xd7\x56\x3b\x6b\x9d\x75\x1d\x89\xc0\x0f\xdf\xa7\xe0\x3b\xab\xeb\x9b\x1b\xcd\xad\x56\x5b\x2b\xa2\xc5\xa2\x53\xc8\x36\x37\x56\x37\xd6\x5a\x9b\x6d\xbd\x3f\x32\x12\x5c\x71\x97\xaf\x59\x11\x08\x28\x57\xd2\x63\x28\x90\x09\xfe\xa6\xce\xce\xb4\xd6\x36\xd6\x36\x57\xd7\xd7\x74\xea\xbc\x89\x08\xe5\xef\x50\x95\xa1\x0f\x20\xd3\x08\x71\x65\xd8\x5f\x8f\x93\x6c\xd8\x37\x05\x50\x84\x02\x55\xcd\x66\xa3\xb9\x15\x17\x84\x86\x5f\x8d\x21\xde\x50\xb6\x84\xe3\x58\x59\xa8\x36\x63\xc4\x33\x4b\x5f\x43\xe9\x57\xe3\x37\x6e\x80\x29\xd5\x7b\x25\x82\xa6\x16\xc1\x7f\x7c\x94\x41\x54\x4b\x5b\x7f\x3e\xbc\xeb\x85\xf0\x24\x7e\x2a\xaa\x93\x84\xd7\x2c\x6d\xfa\x19\x45\x39\xd4\x54\xff\x14\xd4\x90\xa3\xb5\x56\x53\x1f\x06\x63\x2d\x15\x66\x36\x87\xc5\x73\xa2\xce\xc2\x66\x11\x2f\x5f\x1c\x25\x56\x54\x4f\x4b\x99\x11\x63\xeb\xad\x24\xd1\x23\x06\x16\x23\x73\xfd\x81\xc8\x5c\x3f\x0b\x99\xeb\x22\x64\xf2\x4a\x44\x8d\x36\x53\x4f\x5c\x8f\xc5\x03\x7d\xb2\xb8\x54\xef\x4a\xd3\xf8\xf1\xe1\x74\x46\xef\x2d\x7b\x57\x54\xa8\x39\x75\x09\x64\xa3\x2b\xd2\x1e\x1d\x05\x37\x29\x08\x6f\xc5\xec\xbc\x5c\xc3\xb5\xda\xff\x59\xa2\xd3\x78\xc0\xb9\x42\x1a\x96\x15\xfe\x20\xc2\x96\x00\x79\x0e\xb5\xcb\xaa\x66\x22\x08\x43\x59\x5d\x3c\x93\xd2\x8c\x1c\xb9\x4c\xdd\xf3\xa1\x64\xdb\x7d\x16\xbd\xba\x19\x3c\x78\x9b\x49\x61\x4c\xb5\x4f\xc6\x24\x37\xe0\xcb\x98\xc8\xb1\x52\xca\x35\x87\x4e\x4e\x8d\x7d\x30\x4a\xa5\x7a\xaf\x0c\xa5\x05\xca\xf0\xe9\x5e\x28\x7c\x73\x3d\xc9\xe9\xb8\x0f\xee\x49\x5e\x8d\x3e\x8d\x8f\x6a\xd5\x10\x3a\xb0\x20\x4a\x31\x19\x8d\x77\x73\xb8\xed\x2e\xb2\x45\xba\xad\x6e\x33\x59\x10\xb3\xcd\x30\x76\xf2\x30\x8c\xd2\x6c\x01\x61\xda\xa5\xbe\x30\x49\x63\xb8\x20\x84\xef\x72\x5b\x87\xf3\x28\x38\xf2\x76\xeb\x6b\xeb\x5b\x1b\xeb\xed\xe6\xda\x96\xd8\x1c\xc0\x77\x94\x2f\x22\x4d\x64\xb7\xb7\xdb\xeb\x5d\x55\x02\xbc\xf6\x0c\xa6\xb2\xd4\xf1\x1d\x75\x30\xec\x01\xcc\x4b\xc8\xa5\xb7\xda\xe9\x5a\xb2\xdd\xcd\xb4\x5d\x7b\x67\xa7\xbd\x0e\xa0\x33\x30\xf4\x56\x6a\x4e\x8a\x32\x4a\x51\x76\x00\xc3\x9a\x82\x6a\xa2\x22\xb5\xab\x69\x93\xad\xd6\xcc\x0e\x65\x8a\x67\x5a\x95\x86\x9c\xde\xa8\x02\x24\xba\xce\x3a\x57\xd8\x63\x0e\x1f\xb2\x15\x58\xf8\xcc\x12\x2d\x2b\x03\xd2\x2c\xb7\x56\x37\x3a\x9b\xcd\xad\xf5\xd5\xcd\x35\x93\x60\x5b\xca\x56\xdf\x6e\xee\xae\xb5\xb7\xd6\xb6\xd6\x37\xda\x9b\x9b\xff\x12\x77\xb1\xd9\x29\x13\xb2\xd9\x39\x69\x31\xb6\xb2\x14\xdd\xaa\xa5\xed\x9a\xf7\xb5\xd8\x4a\xc6\x69\xea\xec\x97\x7e\x18\xde\xaf\x26\xd2\x04\xc3\xc8\xa1\x6a\xcd\xa1\xbd\x4f\x19\x5b\xaa\xb8\x5e\x98\x29\x04\x31\xab\xe6\x8c\x1c\x53\x48\x34\x83\x47\x90\x3c\xc9\x2e\xdd\xe2\x04\x6d\x6c\xb6\x3f\xd5\xaf\xb7\x8f\x83\xc0\x58\xf9\x29\x57\x5d\x6b\x75\x55\x3c\x7f\xd9\xe9\xf0\xe7\x2f\x5b\x6b\x1b\xd2\x79\x17\xaa\xa5\x38\x31\x47\x6a\x66\xc9\x18\xcf\x67\x38\xb2\x1a\x8d\x86\x1b\x8d\xe1\x4c\xb5\xbc\x79\x26\x5e\xa7\x57\xd7\xb0\x9e\x5a\x55\x12\xb3\xf7\x12\x08\x7f\x4d\x06\x3a\xd0\xaf\xf6\xab\xc6\x12\x72\xe2\x46\x70\x40\x52\x73\x6c\x30\x48\x61\x7a\x43\x26\x16\x6f\xc4\xa4\x25\x11\x4d\xfc\x58\x3e\x52\xa3\x29\xc7\xe6\xd6\x46\xab\x23\x56\x20\x02\x75\x26\xe9\x3c\x5e\xab\x39\x44\x44\xf6\xce\x4e\xbb\xcd\x8a\x30\xe0\xf1\x62\x48\xbb\xb9\xce\x74\x79\xb1\x96\x59\x0c\x1e\xe7\xe7\x87\x4e\x01\x6d\xe2\xe1\x37\xc4\x0f\xa9\x6d\x15\x15\xb7\x21\x52\x32\xa0\x60\x58\x16\x62\x5a\x48\x3b\x99\x6f\x5e\x8f\xf8\x9b\xcf\x94\xf1\x3d\xec\x42\x2c\x93\x3c\x51\x95\xe3\x00\x5f\x46\x8d\xfd\xcf\xf7\xce\x06\x07\x7b\x17\x7b\x83\xbd\x8b\x8b\xb3\xc1\xd1\xc9\xc1\xe1\x37\xae\x52\xd6\x0b\x07\x23\x8f\xc0\x61\x96\x87\x5f\xbc\xbc\x0c\x5f\xd1\xb6\xa9\x0c\x2f\x51\x61\xb6\xa6\xe3\x38\x4f\xd5\x49\xcf\x63\x94\x97\x34\x02\x1e\x33\x44\x3a\x9d\xf6\xd6\xfa\xb6\xe3\xc3\x73\xc0\x9d\xf5\xd5\xd6\x96\x76\x12\xf0\x39\x60\x5a\x76\xaf\xb3\xbe\xda\x6e\x6e\x3b\x71\xad\x16\x6f\x3b\x9d\x8d\xd5\xb5\xd5\x5d\x63\x24\xb4\x9a\xed\xb5\x17\x96\x5f\x87\xb6\xec\xe5\xb8\x0e\x15\x96\xd7\x3b\x9d\xd5\xf5\x47\xb3\x91\x77\x47\x07\x17\x9f\x8b\x56\xb6\xb7\xdb\xed\x2e\xa3\x42\x02\x54\xd0\x7e\xe9\xc0\x9f\xd9\xd7\x27\xda\xe9\x51\xe9\xec\x36\x46\x5e\x29\x70\x73\xa8\x0b\xd1\x7f\xa2\x0d\x30\x52\xf6\x62\x25\x3e\xca\x73\x24\x1d\x37\xd2\x84\x15\x03\x4b\x7d\x8b\xb1\x98\xe6\x83\xd4\x5f\x31\xc5\xa9\x94\x5c\x98\xa0\xcd\xce\x27\x6e\x32\xbf\xfb\xfc\xe8\xe2\xf0\xfc\xcd\xde\xfe\xe1\x60\xff\x10\x6e\xc4\x1d\x1c\x3a\xf9\x64\xe8\x57\x41\x3a\xeb\xb9\xba\xfe\xa7\xd5\x4f\x13\x64\x4d\xad\x08\xaf\xa3\xd1\xf8\xf4\xe0\x90\xd3\xcc\x48\xd6\x68\x69\x16\x57\x2c\x31\x92\xd3\x01\xe8\x50\xfd\xf9\x4b\xed\x8b\x15\xd1\x3e\xf5\xfb\x8a\x28\x9b\xac\xa7\x40\xbd\x76\x67\xfd\x31\x53\x68\x7b\x7b\x0b\x99\x6d\xb1\x5a\x85\x28\x99\x19\x5a\x17\x5a\xa8\xac\xcf\x6d\x54\x42\xa4\x55\x94\x23\x27\x53\x8e\x28\x4f\xf6\x16\xca\xf1\xa6\x59\xc4\x74\x0e\xa2\x02\x30\x8a\x59\xdf\x2a\x93\x95\xd5\x76\x82\x5a\xab\xab\x9f\x26\x85\x6f\xe9\x68\xf3\x82\xbc\xa5\xa3\xd5\xb6\x43\x1b\xfc\xfa\x67\xfa\x3d\x67\x7f\x2f\xc4\xad\x50\x87\x16\x4d\x1a\x29\x17\x8b\x32\x0b\x8e\xb4\xe3\x1d\xa6\x8a\x3a\xbb\x16\xae\x3b\xa0\x94\x50\xd1\xcb\x23\xa0\xbd\x96\xe1\xf4\x7b\xd3\xb6\x97\x0b\x1f\x27\xf9\x11\xa6\xea\x96\x41\xbd\xd9\x76\xb7\xf8\xfd\x92\x04\x65\x7b\xa1\x1f\x06\x83\x0d\xa8\xf4\xa2\x12\x3f\x0e\x07\x0f\x03\xc8\xd3\x71\x91\x43\x7b\xd1\xb6\xdf\x5b\x5e\x8e\xc4\x25\x2f\xa6\xa6\xae\x7a\x54\xf6\x82\xca\x5e\xc4\xcb\xce\x82\x8e\xd0\x05\x1d\xa1\x66\x47\x4a\x00\x51\xed\xb1\x3f\x94\x65\xd5\x82\xe3\x48\x21\xc5\x91\x3f\x75\xb2\xa7\x43\xd2\x74\x0f\x0f\x81\x56\xfa\x19\x43\xf5\x2c\xa9\x3f\xb2\x96\xb4\x3d\x75\x71\x60\x10\xb6\xe7\xd4\x59\x47\x01\x4a\xaf\xad\xcd\x06\xd1\xf2\xb2\x9a\xb4\xc4\xc4\xc7\x27\xad\xcb\x78\x79\xf9\x4a\x4c\x57\x06\x20\x39\x75\xf9\xfa\xd4\xd5\xb5\x44\x05\xa3\x28\x12\x89\xea\x9c\x49\xda\x2d\xc9\x41\xe2\x44\x3d\x02\x1c\x24\xe9\x51\x67\x03\x43\xa2\xcf\xcd\x51\xad\x16\xa9\xb9\xd9\x1f\x59\xcb\xcb\x64\xc7\x51\x14\x30\x1b\x89\x50\xac\x42\xda\x64\x21\x8a\x1e\x87\xb5\x5a\x58\xd8\xe3\x48\xf6\x32\x2c\xec\x65\x24\x7b\x16\xda\x7c\x1a\x5e\xef\xb4\x37\xb6\x96\xe0\x5a\xbd\x2a\xa3\x49\x44\x92\x19\xcb\xa5\x02\x21\x71\x67\x26\xec\x5b\x3f\xa4\x9b\x70\xc8\xca\x5a\xcd\x6c\x4d\x8b\x62\x70\x81\xc8\x6a\xda\x1f\x2e\x24\xf0\x32\x55\x88\x5c\x08\x7f\xd3\x44\x81\x26\x30\x02\xf6\x65\xf3\x4a\x0e\xb9\xa5\x16\x12\xef\xfc\xa5\x79\xbd\xa8\xe6\xb4\xb6\xda\x8e\x63\xb5\xdb\x6b\xb5\xc8\xde\x5d\x6d\x75\xdb\xed\x35\xf6\xbd\xd6\x64\xdf\xad\x4e\x77\x03\xda\x22\x28\x94\xbb\xc5\x16\x71\xe4\x02\x56\x42\x5a\x5e\x0e\xaf\x6c\xc6\x85\xb5\x9e\x1d\x6d\x6f\x3b\xeb\x28\x7a\x74\x88\x8a\xe8\x9e\x36\x91\xc5\x6d\xb7\xad\xb5\x97\xcb\x5c\xed\xae\xa1\xa1\x33\xa9\x87\xbc\xe1\x60\x7b\xc8\xf7\xa3\x03\x4d\x5a\xa0\xcb\xc4\xc1\x97\xc1\xf2\xf2\x15\x6a\xb5\x37\x97\x1c\xab\xb5\xd5\xae\x11\xdb\x7e\x08\xea\x75\x14\xa7\x11\x67\x0c\xf8\x21\xe3\x2e\x41\x0a\xdb\xf5\xd5\x1a\x49\xe2\xc7\x47\x30\x4c\x27\xbb\xd1\x76\xab\xbd\xb9\x1b\xd4\xeb\x5d\x7a\xe9\x82\x20\x74\x57\x45\x06\x5b\xe4\x3f\x3e\x46\x3b\x0e\x08\x17\x17\x65\x26\x7b\x8f\x8f\x20\x3f\x8e\xe3\x44\x8f\x8f\x96\xac\x66\x77\xa3\x6d\x6e\x17\x3e\x46\x3b\xad\x56\x6b\xad\xd5\x6a\xe9\xd9\x62\x50\x65\x65\x81\x93\x6e\xe8\xf8\xf5\x35\x11\x1b\x22\xe0\x44\xf0\xb6\xfd\x9e\x38\x32\xb1\x64\x2d\x59\xde\xf6\xd0\x7e\x7c\x6c\xb5\x37\x6b\x16\x33\x6f\xbd\x2b\xf9\x15\xb1\xaf\xe5\x96\xfa\x26\xf0\xdd\x56\xdf\x21\x7c\xaf\x5e\xd9\x76\xcf\x16\xc8\xc4\x48\x62\x25\x7f\x10\xf9\x23\x44\xde\xb2\xb3\x06\x77\x9b\xa1\xde\xf2\x15\x8a\x19\x85\x54\x55\x65\xd7\xa7\xbc\x8e\x6d\x60\x96\x97\x1d\xda\x29\x87\x9d\x18\xb9\x0c\x66\x24\x61\xa6\xec\x8b\x6c\xfb\xc1\xab\xd7\x99\x08\x51\x3f\x9c\x63\x88\x16\xe4\x58\xab\xad\x5a\x6c\x6f\x6f\xaf\x3f\xae\xaf\xd6\x22\x34\x01\x14\xcc\x72\x02\xa1\x49\xa2\x16\x1a\x4a\xbe\x7e\xe0\x08\x2d\x86\x64\xa4\xb4\x18\x55\x5d\x29\xab\x5e\x5e\x56\x0b\x3a\xdb\xea\x40\x67\x5b\xed\x47\x8b\x75\x57\xf6\x9b\xa0\x89\x90\xc1\x89\x92\xc1\x49\x4e\x06\x27\xb6\x84\xd6\xcb\x93\x64\xad\x09\x24\xd9\xfc\xff\x16\x49\x3e\x14\xb6\x91\xd2\x66\xd2\x0c\xad\x85\xf9\xd6\xc2\x62\x06\x6c\x70\xfa\x6f\x2a\xfa\x0b\x56\x10\xc9\x8a\x10\x4d\xe4\xe0\x9e\xc8\xc1\x5d\x40\x77\x39\x85\xb8\x49\x92\xa0\x8d\x8d\xf5\x6e\x36\xc4\xc0\x8d\x1b\x55\x62\x50\xce\xf2\xa4\xf4\x80\x4d\x06\x91\x4b\xf1\xe3\x63\x3e\x22\x07\x2b\x1e\x21\xe2\x28\x47\x4d\xfa\x48\x38\xd9\x5e\xdd\xa5\x5d\x71\xd6\x2e\xde\x8d\x1d\x61\xb1\x8e\x31\x3d\xbd\x0d\xa5\xc5\x7a\x80\xe3\x61\xe4\xcf\x28\x3c\x33\xe4\xdb\xdd\x98\xd1\xa5\x5f\x25\x50\x56\x7b\x27\xe7\x0c\x8f\x02\x3c\xa4\xb5\x5a\xbf\x2a\xb1\xc8\xe7\x36\x24\xaa\x76\xe8\x64\x93\x14\xce\x5c\x3f\x30\xb5\xc5\x90\x77\xd5\xbc\x56\x6f\xf5\xdc\x1d\xa7\xd9\x73\xeb\x75\x1b\x64\xcc\x65\x13\x89\x15\x3a\x16\xeb\x49\x64\x85\x76\x97\xec\xb0\x1f\xf0\xc6\x9e\xdd\xe5\x08\xdb\x8f\x8f\xa1\x3a\x58\x48\x76\x56\x6b\xb5\xb0\x56\x2b\xb3\xcd\x59\x3d\x14\x26\x62\xf6\x53\x04\x9e\xb9\x91\x3b\x35\xa9\xab\xec\x67\x95\x08\xe4\x86\x33\xb1\x08\xdb\x49\xd2\xfb\x28\xfb\x9f\x46\xee\x10\x4e\xad\x38\xe0\xc6\xba\x60\x9f\xaf\xc9\x78\x8c\x23\x87\x36\x5e\x93\xb1\x78\x5e\xc8\x74\xeb\x11\xf0\xe6\x6d\xd9\x28\x74\x7c\x6b\x6b\xc3\x46\xae\xf3\x00\x80\xba\x21\xab\xf3\x1a\xdf\xe0\xe0\x30\x9c\x4f\x1b\x17\x67\x7b\xfb\x87\xc8\xc3\xd7\xf3\x71\x36\xeb\xe0\xf0\xe5\xdb\xaf\x22\x3f\x1c\x91\x6c\xce\xd1\xc9\xab\x53\x74\xeb\x46\x61\x36\xe3\xdd\xde\xd9\x09\xc2\x51\x44\xa2\x6c\xce\xe1\xd9\xd9\xe9\x19\x22\xa3\x51\x36\xe3\xf4\xd5\xab\x84\xc7\x04\x84\xe8\x21\x5a\x87\xcc\x83\x40\x44\xbb\x1c\x01\x5b\x03\x81\x80\x92\xf5\x5b\xcb\x74\xd3\xed\x2b\x1d\x94\xea\xc5\xf7\x19\xe3\x50\x2c\xdb\x92\x9e\x5e\x59\xd9\xc9\x63\x29\xdd\xbb\xb0\x99\xfa\x5a\x35\xce\x93\xd5\xcd\x86\x22\xe8\x0d\x12\x9e\xcf\xf0\xd0\x1f\xf9\xc3\x53\xc8\xd8\x9f\xb8\xe1\x18\x5b\xfd\xaa\x6c\xae\x5f\x45\x70\xd4\xab\xb8\x09\x7e\x1f\x93\xe5\x25\xb9\xbc\x87\x0c\xde\xee\x65\x21\x06\x91\x7b\xcb\x9b\x8e\x1b\xb2\xe8\x55\x32\xc0\x37\x6e\xf0\xda\xfd\xce\x3d\xcf\x72\x83\x37\x4c\xa8\xe3\xa2\x28\xcd\xda\x05\xaa\xc2\xc1\x8c\x2f\xe9\x55\xad\x66\xb1\x3f\x0e\xfb\xc7\xb2\xed\x84\x21\x65\x1e\xb1\x2f\x69\xcf\xb7\x11\xe6\x97\x99\xc4\x21\x3d\x54\x42\xc6\xb4\x07\x63\x1c\xed\xb2\x55\x60\xb7\x5f\xbd\xa3\x38\x9a\x36\xbe\x15\x77\x2b\xfd\xaa\xbd\x4c\x51\xa3\xd1\xf0\xed\x04\x84\xdd\xc2\xec\x8b\x66\x89\xb4\x9d\xe5\x2e\x0c\x02\x39\xb4\x19\xd6\xcf\x69\x9e\x0f\xcc\xf4\x64\xe5\x13\xe5\xed\xdd\x5d\x79\x04\x31\x20\x63\x71\x5f\x8b\x0d\xbb\xe7\x22\x09\xc3\xf1\x83\x91\x84\x26\x3e\x09\x49\xa6\x00\x9e\x8b\x23\x53\x0c\x1f\x8c\x22\x6b\xe0\x63\x30\x64\xf5\x38\x8a\x70\xa6\xf3\x99\x28\x32\x15\xf5\xc1\x28\xb2\x06\x3e\x06\x45\x56\x8f\xa3\x08\x4a\xf1\xb9\x38\x82\xb2\xfc\x60\x24\xa1\x89\x8f\xc1\x12\x2a\x72\x34\x93\x9e\xa1\x82\x03\x27\xb6\x2e\x23\xab\x89\xc2\xc6\xd1\xa9\x01\xcd\xbe\x42\x01\x9b\x9d\x32\x33\x92\xee\x4d\x9a\x38\x38\x31\xe6\xaf\xac\xdd\x02\x56\x43\xaa\x4c\xd4\xd5\x09\x9f\x5f\x7c\x2a\x88\x6c\x11\x12\x5a\x51\xe1\x2c\xfa\x55\x3b\xdd\xc4\xe2\x55\x7a\xe2\x6f\xda\x54\xa3\xd1\xe0\xe1\x70\x26\x4a\xf1\x2d\x39\x85\xe3\x5f\x9d\x18\x6e\xb8\xb3\x59\x70\x0f\x34\x44\xd8\xee\x4d\x78\x0f\xac\x2f\x20\x70\xe4\x19\x0e\x3d\x1c\xe1\xe8\x2b\x9f\x3d\xc4\x8d\xd0\x9d\xe2\xc4\xfa\xec\x01\x37\xa6\xee\x0c\xae\x28\xfe\xe8\xf9\xe9\x89\x70\xb3\xf9\xa3\x7b\xb8\xaf\xa8\x1e\x91\xab\xf0\x57\xe4\xd2\xa7\x5c\xb2\x2d\xc9\x7b\xcc\x4f\x34\x58\xe1\xe5\xbe\x80\x30\x8d\x60\x13\xb6\xd7\x3f\x31\xca\x9d\x38\x1f\x0c\x56\x17\x84\xaf\x1b\x63\x2a\x18\x7d\x80\x67\x0c\x83\x70\xe8\xe3\x18\x2c\x10\x48\x3d\x83\xf9\x2e\xba\x37\xad\x0e\xdf\xe9\x57\x3d\xff\x33\xea\x46\x63\x4c\xfb\x55\x14\xf3\x6f\x4f\x03\xd1\xaf\xf6\xf2\x40\x18\x8b\x8f\xdd\x19\x2a\x6d\xb7\xc8\x49\x79\x19\x5f\x3d\x3e\x5e\x5e\x25\x05\xf8\x67\x22\x21\xe5\x1a\x6c\x4c\x5c\x36\xcb\xd9\xda\xf6\xa0\x99\x0f\x77\x9a\x24\xa3\x22\x53\x70\x09\xc0\x5c\x5d\x72\x72\x06\x74\x81\xc0\xfe\xf3\x23\xd1\x9d\x13\x77\x8a\xeb\x9e\xc4\xb0\x32\x74\xc3\x0a\x09\x83\xfb\xca\x35\xae\xcc\x63\xec\x55\x28\xa9\x48\xab\xb7\xe2\x56\xc0\xba\xc4\x14\x47\x4c\xc6\x97\x8c\xe6\x23\xfb\x81\x5e\xfa\x57\x8e\xe3\xd0\x5d\x7a\x19\x5f\xf1\xdb\x11\x0f\xbe\xd7\xc5\x08\xae\x8d\x74\xa3\xc4\x06\x27\xd5\x95\x73\x69\x26\x5f\x21\xa8\x49\xed\xc4\x62\xc3\x9d\xd8\x89\x14\xb9\x48\x05\x16\x74\xe0\xc4\x39\xca\x93\x84\xdf\x19\x8b\x6c\x14\x25\x09\xda\xda\xf8\xd4\xdd\xe8\x23\xc1\x2d\x9f\x84\x52\xd9\xd0\xc6\xd1\x5b\xe3\xc5\x4c\x96\x72\x1a\x0f\x5f\xfb\xe1\x7b\x3d\xc5\xb4\xdc\x68\xe3\x48\x53\x58\xd4\x18\xd8\x2c\xf3\x28\x8c\xa9\x1b\x52\x3f\xdb\x14\x6c\x2a\x29\x69\x83\x14\x12\xe1\xcc\xe7\x31\x99\xc7\x7a\xda\xcb\xf9\x68\x84\xa3\x42\x8b\x3b\x76\x7c\x6b\xa3\xbd\x6e\x43\x20\xc7\xa8\x97\x2b\x0c\x5b\xba\x19\x41\xb5\xad\x7e\xd5\x28\xc5\xaf\x5f\xe5\x9b\x2e\xab\x9c\x2d\xa8\xd5\x7f\x4e\xd5\x4c\x2d\x93\x22\xa5\x15\x8d\x62\xa2\x6e\x21\x95\xcb\x20\x14\x15\x66\x70\x8c\x80\x92\x97\x98\xab\x65\xa7\x79\xe5\xf4\xab\xf0\xb3\x5f\x45\x2c\x19\x0c\x21\xa7\xc5\x92\xe1\xa7\x48\x66\xb6\x87\xd3\x66\xa9\xec\x97\x48\x64\xb3\xbd\xb3\xca\x12\xd9\x2f\x91\x08\xd3\xab\xb3\xc6\x52\xe1\xa7\x48\x3e\x7d\xf5\xca\xe9\xb0\xc4\xd3\x57\xaf\xfa\xd5\xc4\x02\x3f\x9c\x29\x4f\x91\x8c\xdb\xa0\xcb\x5c\x59\x37\xd3\x22\x82\x48\x19\xc9\x2d\xab\x67\x16\x93\x75\xcd\x71\x50\x5a\xd7\x28\x26\xea\x66\x46\x55\x59\x5d\xb3\x98\xa8\x9b\x1f\xa6\x65\xd5\x73\x25\xd9\x74\x97\x20\xea\x3c\x24\x3d\xed\x92\xbe\x74\x40\x38\x4c\x43\xc1\x6b\xda\x32\x32\xa8\xba\xb3\x13\x35\xf0\x1d\x9b\xe2\x63\x18\x4b\x04\x4a\x3a\x0f\x22\xad\xfb\x90\x28\xb5\x85\x55\x14\x04\x22\xab\x20\x82\xd2\xdf\xbe\x9d\x7e\x24\xdc\x4b\xf2\x20\x2b\xc3\x7a\x0b\x50\xc1\x4e\x5c\xb2\x32\xc7\x8b\x74\x18\x6e\xbc\xc3\xd7\xe3\x60\xcf\xf3\x48\x68\xaa\x02\xea\xf8\xd6\xea\x5a\x47\x9e\xa9\xd9\xe2\x67\x6a\x56\xb7\xc4\x72\x7c\x7d\x7d\x9d\xad\xc7\x7d\x6b\x63\x63\x5d\x9e\xb2\x99\xa4\x17\x5e\xf4\x75\x6e\x66\x09\xeb\x8f\x2c\xa2\xae\x51\x8a\x07\xa3\xb3\xf7\x2e\x6d\xcb\xde\x6e\xad\xa7\x07\xb0\x1e\x60\xa4\x05\xbe\x1b\x77\x97\x5a\xc8\xc3\x33\x3a\x61\x3f\x66\x11\x66\x1a\x1e\x1f\x44\xee\xad\x1f\x8e\xb9\x16\x62\x1d\x83\xad\x82\xa7\xe3\x22\x9a\x81\x0f\x6f\x19\x25\xda\x6c\x1c\xd9\x05\x93\x20\xd0\xa9\x5d\xf1\x63\x3e\xe5\xa5\xf1\xc8\x48\x58\xe1\xb8\x57\x5a\xeb\x15\x37\xf4\x2a\xee\x35\xb9\x01\xb9\x31\x17\xeb\x85\xc8\xaa\x35\xbb\x5c\x4f\x1b\x71\xc6\xcd\x55\x39\xbf\xb0\xa3\xc7\x34\x11\xa0\xcb\xeb\x16\x82\x6d\x40\xc4\x0f\xd5\xee\x9e\xe7\xe9\xb9\x3c\xa0\xfd\xf3\x9b\x5e\x50\xbd\x0c\x78\x06\x81\x33\x0c\xaf\x54\x7d\x02\x0e\x8b\x21\x2c\x68\x22\x83\x89\x90\x85\xd7\x24\xfe\x10\xda\x67\x2b\x99\x80\x78\x13\x09\x3c\xa2\x03\xde\x40\x7d\x63\x6b\x30\x24\x11\x06\x61\xc5\x0d\xcc\xe5\x33\x1f\xc1\x45\x21\xe1\x37\x48\xf8\xce\x0f\x82\xd3\x19\x0e\xad\xd4\xd5\xa2\x81\xd6\x9e\x3b\xc7\xd1\xd4\x0f\xdd\x40\x3d\xea\xcf\x96\x17\xc3\x74\xba\x64\xa3\xb9\x61\xae\xad\xd0\xc4\xf1\x51\xe0\x4c\x1a\x83\x08\xcc\x75\x99\x3c\x64\x49\xc3\x89\x1b\xb9\x43\x8a\xa3\x1f\x25\x7e\x98\xe6\x79\x32\xef\xdc\xff\x8e\x02\x3d\x80\x44\x12\xe1\x97\x11\xb9\x8d\xd3\xc2\x73\x96\xee\x65\x35\x2c\x1a\xb3\xe4\x40\xcd\x33\xe8\x86\x7d\xd3\x09\x9e\x4a\x80\x3d\xab\x89\xdc\xcc\x22\xcd\xb6\xc6\x72\x60\x45\x62\x71\x51\xc0\xb2\x90\xab\x37\xb9\xfc\xb0\x30\x1a\x22\x0f\x0d\x50\x8c\xe6\x88\xa0\x9b\x45\x23\xd3\xce\x3a\xc5\xac\x66\x26\x52\x8c\x7c\xea\x5d\xb6\x6f\xca\x42\x91\x50\x7d\x1c\xcc\xdc\x00\x5e\xa0\x32\x3e\xaa\x85\xc2\x41\xba\x58\x3f\x7c\x54\x3b\x65\xa3\xf0\x49\x4d\x60\xdb\x28\x60\xfc\x57\x7c\x34\x41\x17\xe0\x12\x19\xd1\x41\x6c\x3e\x5a\x32\xe1\x5a\xe4\x10\xe1\xb2\x9a\x91\x7a\x58\xe0\x65\x1b\xcc\xd6\xe0\x13\x8b\x2a\x04\x46\xd5\xc4\x0d\xbd\x00\x9f\xe1\xd8\xff\x0e\xb6\x70\x63\x48\x82\x18\xe1\x06\x1b\x08\x76\x62\xdb\xfc\x75\x07\xaa\xf5\x30\xeb\xf9\x95\x9d\xda\x6d\xe8\xa5\xf8\xae\xf9\x85\x59\x2f\x5b\xa1\xa0\x4c\x92\x18\x33\xfc\x24\xb1\x2d\x1b\xc5\xec\x5f\xdb\xee\xf5\xc3\x95\x95\xaf\x54\x62\x32\x8f\x86\xf8\xd8\x9d\xcd\xfc\x70\xfc\xf6\xec\xb5\xe3\xb2\xa2\x75\x98\x0d\x1b\xdf\x8a\x1b\x53\x77\x56\x45\x55\x7f\xca\xa6\xbb\xca\x8b\x8a\x1b\x57\xae\xdd\x08\xc3\x99\xd5\x4a\xbf\x1a\xf8\xd7\xee\x6c\xc6\x56\xc4\xfd\xb0\x1f\x72\x33\xa5\xc2\xcd\x81\xcf\x19\xb9\x2a\x0f\xfd\xb0\x52\xa9\x54\x98\x76\xeb\x56\x3e\xbf\x38\x7e\x2d\xe6\x61\x28\xcf\x72\x58\xa9\x2e\xc0\x6c\x4c\xc0\x0b\x7a\x21\xa8\xdc\xe3\xf9\x3e\x31\x72\x8f\x4e\x55\xcd\x21\x09\xe6\xd3\x30\xee\x56\xc2\xf9\xf4\x1a\x47\xa2\x3c\x23\xb5\x96\xc4\x13\x57\x56\xd8\xe2\xb4\x5f\x8d\x27\xe4\xb6\x5f\xad\xd0\x09\xae\x88\x37\x16\x2a\x53\x1c\xc7\xee\x18\x57\x6e\x27\x38\xac\x44\x20\x81\xc7\x3c\xc9\xb2\xd9\x74\xcf\x4c\x33\xec\x71\x30\xa2\x6c\xb7\xc2\xbd\x23\x1a\x26\x9a\x89\x93\xed\xa9\x2d\x69\x00\xbd\x85\xa3\xc2\x01\x9e\x56\x1c\xa0\x49\x2f\xcd\xd2\x3a\x29\xee\xe9\x9c\x53\x12\x31\xd4\x1c\xb0\x44\x20\x3f\xf0\xaf\x1b\x22\xb9\x71\x8c\xa7\x24\xba\xb7\xec\x5e\x06\x3c\xd0\x5d\xab\x63\x92\xb5\xb8\x3c\x33\x85\xde\x44\x78\x14\x5b\x3c\x6c\x4a\xbf\x1a\xe3\xd0\xab\xe3\x70\x48\x3c\x88\x1a\x8b\x2a\xfd\x6a\xe4\xde\xb2\xb5\x7c\x51\x75\xb5\xdb\xa5\x3a\x68\x2b\xea\xa8\x92\x3e\xa9\x38\x5a\x1d\x9f\xf0\x75\x7f\x31\x44\x9f\x2d\xb0\x82\xe0\x6b\xf8\xfe\x9a\xb8\x91\xa7\x4a\x25\x0a\x2e\x38\x75\xed\x6e\xe5\x21\x2b\x09\xc8\x10\x82\x4a\xa2\x33\x40\x0c\x36\xad\x8e\x38\xf5\x09\x5f\xb2\x26\x57\x28\xe4\x36\x86\xe6\xcc\x66\xc9\x9c\xce\xe6\xd4\xf2\x5c\xea\x4a\x41\x30\x58\xec\x8f\x2a\x96\xde\xc9\xca\x92\x03\x91\x3f\x8c\x42\x99\xbe\x92\xc6\x6d\xe4\x53\xfc\xf6\xe2\xd5\x26\x00\xd6\x49\x92\x64\x11\x60\x42\x2c\x45\x34\x23\x91\xa8\x42\xf9\x95\x79\xd9\xf9\xbc\xf0\x49\x79\x77\xa4\x34\xf7\x32\xa8\x73\x00\x95\x9d\x4a\x73\x31\xc6\x0c\x0d\xb8\xd9\xea\xde\x4b\x34\x54\xf3\x06\xfe\x15\xd8\xf8\xfc\x60\x50\x40\xb3\x45\x74\xc8\x0c\xd6\x2e\xb7\x99\xb4\x76\xd8\xa8\x9f\xe0\x08\xb3\x61\x1c\x92\xca\xc4\xf7\xb0\x6c\xc5\x46\x95\x98\x00\x25\x41\x19\xc4\xee\x14\xa7\x9a\xc0\xa7\x93\x4a\xb3\x12\xe3\x61\xa1\x5c\x9a\xe8\xea\x34\x45\x95\xa6\x92\x52\xc5\x2c\x4c\x79\x24\x95\x0b\x9f\x06\xd8\x82\x30\x3a\x85\x62\x93\xb6\x50\x54\x25\x2f\xfd\x31\x1f\xb0\x38\xc2\xe1\x10\xc7\x16\x5f\xd4\x55\xf8\xfe\xb5\x01\x58\x2c\x0b\xdf\xe3\x7b\x51\xca\x66\x13\xf5\xa1\x3b\x9c\x58\xd6\x7b\x7c\x6f\x57\x9c\x9d\x2c\x73\x98\x1c\xbc\xc7\xf7\x4c\x72\xfb\x55\x1c\xb2\x39\x94\x4f\x08\xfd\x6a\x4e\x26\x2a\x8b\xd4\xc8\x7b\x7c\x8f\x78\x84\xb1\xcb\xf7\xf8\xfe\x4a\x67\xa7\xc6\x52\xf8\x99\xef\x21\x09\x8f\x42\x36\xd2\x86\x22\xda\x41\xb7\x62\xf9\x2c\x21\x25\x9f\xb3\x03\x3c\xcf\xd3\xd1\x27\x0d\x12\x7e\xfd\xe2\x6b\xf8\x9e\x3f\x2a\x5b\x71\x2a\x7c\x5c\x15\x74\x56\x82\xcf\x0f\xbc\xac\x5e\x62\xac\xc7\xa1\xc7\x9d\x8c\x9f\x04\x52\xef\xa4\xb0\x15\xb4\x5e\x0e\x49\x30\x9d\x97\xa9\xb3\xa7\x7a\x2d\xf5\x3c\x07\xcb\xb0\x5c\xa8\x1d\x8b\xd0\xd7\x35\x62\xc5\x91\x9a\xb2\x57\x50\x08\x54\xa4\x03\x00\x7b\x25\x24\x30\x34\xeb\x62\x5a\x78\x58\xad\x65\x0a\x46\x73\x19\x63\xd3\x18\x4d\x95\x87\xa7\x79\xf6\x64\xe9\x02\x0a\x2e\xae\x03\x72\x3f\x0f\x4b\xe7\xab\x54\x5d\xc1\xad\xb2\x92\x8e\x65\x94\xd9\x87\x4d\x89\xca\x0e\x09\x20\x62\x5e\x49\x13\x4f\x23\x9a\xf4\xc3\x2a\xaa\x1a\x56\xdc\x3e\x09\x43\x0c\xbd\x7f\xe5\x32\xfb\xe6\x5e\x82\x9d\x47\x81\x66\x07\xb1\x94\x59\x44\x28\x61\x06\xaf\x4c\xbf\xbc\x2a\xb4\x90\xb4\x9a\xa8\xa8\x52\x5e\xb0\xe7\x51\x50\x71\x58\x8b\x59\xb2\xa8\xda\x15\x27\x85\x94\x93\x2b\x6e\xa7\x33\xba\xa4\xbd\x29\xb0\x09\x98\xc1\x94\x16\xb0\x64\xcb\x28\xd3\x94\xae\xa8\x92\x9c\xd5\x9b\x6f\x81\xd9\x60\xdd\xca\x3b\x7c\x7d\x4e\x86\xef\x31\x37\x7c\x7f\x10\x44\x01\x33\x9c\x9b\x79\x0a\xb8\x05\xf8\xe6\x51\x55\xda\x66\x86\x41\x8a\x8d\x39\x32\x24\x74\xc2\x06\x07\x25\x1e\xa9\x8c\x48\x54\xb9\xc5\xd7\x31\x80\xcb\x11\x92\xcb\x57\x21\x2a\x0d\x91\x59\x30\x51\x85\x5e\xb9\xb5\x94\xd6\x57\xe5\x0a\x2c\xbd\x18\x7c\x1e\x76\xb7\x72\x4d\x48\x80\xdd\xb0\xd0\xde\x02\x28\x11\x76\xbd\xfb\x73\xea\x52\x5c\x71\x9c\x94\x30\x8d\xfd\xd3\x93\x93\xc3\xfd\x8b\xa3\x93\xaf\x56\x1e\x1f\x0b\x34\xd9\xc2\xca\xa7\x6f\x0e\x4f\x72\x13\x9f\x5c\xb6\x45\x73\x9c\x33\x52\xb4\xfc\x91\x1b\xc4\x38\xcb\x86\x10\xfa\xa3\xa9\xfc\x05\x5a\x1d\x30\x23\x21\x63\x1d\xd3\xe6\xe0\x4f\x5a\x38\xe9\x2c\x34\x9a\xd8\x7c\x33\xc4\xfe\x8d\x31\xe1\x98\xdc\x79\x0a\x93\xd4\x82\x7c\x06\x32\x50\xa2\xf1\xa4\x4d\x4b\xc2\x7d\x10\x9f\x0f\x22\x09\x48\xdc\x47\xd0\xc4\x1c\xc0\x55\x54\x5d\x59\xa9\x5c\x4c\x70\x65\x0a\x2e\xf2\xca\xd0\x1d\x4e\x70\x3f\xbc\x71\xa3\xca\x60\x70\x8b\xaf\x67\xee\xf0\xfd\x80\xe7\x0d\x20\x6f\x30\xa8\x38\x95\x07\x8e\xbc\xa8\x1a\xe1\x6f\xcf\x7d\xb6\x2c\x96\x27\x01\xc2\xf4\xf1\x32\x05\x43\x14\x1a\x0c\x2c\x0e\xed\x88\x77\xad\x4f\x57\x56\x2a\xfb\x13\x3c\x7c\xcf\x64\x59\x20\xe1\xc7\x15\x3f\x94\xa8\xf4\x29\x43\x06\x3e\x3c\xee\xc7\xaf\x38\xa5\xb8\x5d\x4a\xe0\xa0\x7d\x29\x1b\x1e\x46\xcd\x25\xc7\xa9\xa8\x60\x8f\x02\x81\x3e\x15\xd2\xaa\x97\x54\x3b\x18\xac\x44\x22\xf1\x04\x5d\x5a\x71\x41\xef\x08\x5c\x2d\x37\xf4\x2a\xb3\x39\xad\xf8\xb4\xe2\x87\x94\xf0\xf5\x35\x83\x64\x4b\xdc\xa7\xcf\xc7\x9a\xd1\x96\xe3\x04\xba\x49\x54\x6d\xf8\x5e\x25\x84\x18\x67\x05\x79\x01\x71\x3d\x6c\xe6\xcb\x9d\x96\xca\x03\x60\xce\x99\x05\xd5\x0e\xef\xf0\x70\x4e\x31\x20\x29\xd0\x4a\xb9\xd6\xa7\x59\x04\x63\x1d\x37\xc1\x38\x24\x1b\x96\x9b\x34\x45\x4c\xb6\xd3\x26\xcf\xa4\x87\x07\x57\x44\x0d\x1e\xb3\x58\x22\xc0\x8a\x09\x06\x4c\xb3\xa4\x07\xa5\x91\x7a\x60\x1e\x84\x5f\x25\x91\x1e\x98\xc6\x0a\xac\xef\xc1\x03\xa3\xca\x7c\x23\x5b\xe6\x2e\x5f\x46\x9a\x39\x88\x29\xba\x8b\x8b\x6f\x6a\xf3\x86\x5e\xf3\x16\x5f\x53\x7a\x6f\x56\xcd\x1b\x05\x66\x05\x31\x7b\x54\xe5\x08\x39\x39\xbd\x38\xec\x56\x2e\x26\x7e\x5c\x19\xf9\x77\x38\xae\xd0\x78\x34\xa5\x15\xcf\x1f\x8d\x40\xcc\x3d\x3f\xa6\x7c\xd9\x45\x79\x19\x46\x12\x63\x5a\xfd\x2a\xb9\xb8\xf8\x26\x93\x8b\x44\x80\xfc\xe7\x17\xa7\x07\xa7\x62\x09\xc8\x28\xc9\x74\xac\x87\x87\x01\x9b\x14\x99\xc0\x8d\x09\xa5\xf7\x03\x77\x4e\x27\x03\x4a\xde\xe3\x50\xb3\x55\xf2\xc5\xb8\x0f\x4a\x73\xea\x88\x8d\x27\xee\xa7\x51\x1b\x49\x63\x4c\x85\x4f\xe7\xe5\xfd\x91\x67\xf5\xab\xd2\x21\xd8\xaf\x32\x41\x0f\xd9\x50\x83\x3a\x6c\x88\x19\x4b\x7e\xd6\x14\x6f\x24\xeb\xdd\x1a\x55\xac\x14\x07\x36\xeb\xf4\xab\x82\x9f\xa6\xda\x4b\x7d\x3a\xc0\x7f\x4b\xba\x58\x2a\x85\x2b\x6c\xad\xf8\x37\xf2\xc5\x35\xeb\xa3\x32\xa1\x74\x16\x1f\xc2\x12\xcf\xab\x38\x22\x7e\x5d\x23\x20\x43\xf0\xd1\x2b\xab\x47\x62\x46\x67\x71\x17\xf8\x9a\x42\xe0\xc6\x99\x65\x00\xda\xad\xfc\xb3\xdb\x38\xee\xae\xac\xfc\xb3\x4a\x97\xfd\x64\xbf\xec\xca\x72\x0e\xfc\x84\xc4\xb4\x20\x79\xe6\xd2\x49\xc8\x96\xe4\xcb\xac\xf2\x3f\x33\x9a\x73\xa3\x71\x5c\x80\x68\x8c\xdd\x68\x38\x31\x4a\x8e\x84\x6c\x3a\x19\xcb\x4e\xc8\x6c\x89\xad\xc4\xeb\xde\xd2\xd4\xb4\xba\xb8\xf8\xa6\xc5\x88\x88\x24\x44\x04\x48\xa0\x9c\x8c\x99\x20\x60\x76\x8a\x18\xaa\xb4\xc1\xed\x2e\x35\xdb\x09\xe4\x5d\x8f\xfb\xca\x65\xec\x7a\xab\x5f\x9d\x87\x4c\x97\xf5\xab\x48\xcc\x7f\x1a\x4f\x39\x3c\x73\x69\xc0\x2c\xfa\x8c\xdd\xc5\x7e\x30\x6d\x57\xbd\x42\x55\x46\xc3\xb8\xda\xbd\xac\xd2\x2a\xaa\xc6\x38\x18\x31\xeb\xbe\x8a\xaa\x4c\x9f\xbc\x3d\x7b\x5d\x45\xd5\x99\x1b\xc7\xb7\x24\xf2\xaa\xa8\x3a\x8f\x71\xc4\x2a\xb0\x54\x41\x94\x2a\xaa\x32\x0e\x55\x51\x95\x92\xd7\x64\xe8\x06\xf8\x35\xb9\xc5\xd1\xbe\x1b\xb3\x52\x10\x2a\x32\x7e\xe7\xd3\x49\x15\x55\xb9\x97\xa1\x8a\xaa\xe6\xf6\x73\x15\x55\x61\xf9\x5f\x45\xd5\xd7\x7e\xf8\x7e\x9f\x4c\x67\x73\x8a\xa3\x2a\xaa\xbe\xc3\xd7\x2c\xe5\x4d\x44\x6e\x7c\x0f\x52\x34\x73\xb8\x8a\xaa\x84\xb5\x3a\xf1\xe3\x2a\xaa\x2a\xc7\x3b\xfb\x1d\xe1\x31\xbe\x63\x3f\xb8\xa7\x9d\x15\x95\x87\x04\x39\xe6\x0c\x1c\x83\x1c\x03\x48\x68\x8f\x7d\xb2\x72\xae\xe7\xc9\xd0\x89\x2c\x97\xbb\xb6\x03\xec\xde\x60\xe8\xe9\x0d\x40\x8b\xdc\x70\xcc\xbe\xd9\x6f\x9f\x75\xb3\x8a\xaa\x67\x78\x7c\x78\xc7\x0a\x73\x6f\x79\x15\x55\x47\x81\x3b\x66\x39\x2e\x6b\x85\xc1\x1e\x4b\xaf\x0d\xf6\x5e\x43\x5c\x0c\xa6\x4c\x58\x09\x86\xf5\xb7\x88\xcf\x68\xce\xc8\x3c\x83\x15\x16\x86\x3a\x53\x77\x76\x4e\xa3\x23\x8f\xf5\x07\x0e\x38\x01\x3a\xe1\x18\x28\x3a\x91\x24\xae\xa2\x2a\xcb\x60\xb4\xc4\x21\x80\x98\xc7\x2c\x93\xe2\x3b\x96\x27\xd7\xcc\x55\x54\xbd\x86\xad\x2b\x99\xc6\x52\xc6\x98\x32\x6c\x58\xe9\xc8\x0d\xe3\xc0\xa5\x58\x5e\x51\x65\x6d\xc6\xef\x22\x77\x36\xc3\x9e\x6c\xff\x94\x49\x48\x84\x21\x72\x20\xaf\x7d\x32\x0f\x82\x7d\x1c\x04\xfc\x4b\xfb\x35\x71\xa3\x98\xff\x84\xab\xec\x6a\xdd\x18\xa7\xbc\x8d\x61\xd7\xa1\x8a\xaa\x5c\xde\x19\x53\x67\x38\x14\x7f\x00\x4f\x39\x7c\x59\x77\x23\x3c\x12\x42\x40\x02\xd6\xf8\xad\x1b\xb1\xf4\x79\x14\x9c\x49\x96\x07\xa6\xc0\xc8\x1d\x9f\x8c\x1c\x89\x60\xed\x8c\xc1\x30\x99\x6a\x02\x0d\x5c\x8f\xc7\xe0\x57\x7a\x1b\xbe\x0f\xc9\x6d\xa8\xa5\xf0\x9f\x6f\x38\x6d\xa6\xf1\x98\x3b\x00\x2e\x52\xe1\x9b\xc6\x63\x51\xeb\x14\x9c\xc0\x3c\x49\xff\xfd\x86\xc8\xca\xe7\x86\x17\x4f\xa5\x69\x3e\x3b\x95\x76\x86\x87\x5c\x39\x01\x53\xa3\x29\x27\x83\xa9\xad\x18\x53\x23\x2e\x71\x73\x3a\xb9\x60\xea\x06\x28\x90\xd6\x9c\xf9\xe1\xf8\xc2\x9f\x0a\xca\x88\x74\x11\x41\xd5\x80\xc8\x3e\xc0\x8a\x03\xa5\x40\xe7\x4c\x22\xf9\x8a\x44\xb4\x7f\x14\x8e\x08\x48\x04\xfc\x89\xb9\xd0\xfd\xe8\xf9\xe9\x09\x48\xa4\x38\x17\x5a\x45\xd5\x3d\x79\x76\x90\xfd\x36\xb0\x62\x74\xfb\x5c\x8d\x4f\xe1\xcf\x62\x39\xe4\x96\x0f\x4b\xf0\x09\x41\xbb\x9c\xc8\xf0\x53\x32\xc1\x17\x7f\x63\x4c\x8f\x42\x8a\xa3\x1b\x20\xbe\x5a\xb9\x30\x16\xbb\xd4\x05\xed\x75\xcf\xd4\x25\x2b\x1a\xf8\x30\x2c\x89\xe4\x85\x4b\xc9\x35\x07\x61\x72\x61\x66\xd0\x1f\x42\x6f\xf3\x62\x26\x63\xdc\x39\x25\x3a\x5b\x02\x32\x06\x14\x60\x95\xc2\x7a\x10\x60\x37\xd2\x90\x4b\x5d\x57\x0c\x5a\xea\xa0\xe7\xb0\x53\x2e\x80\x13\x48\xd6\xd7\x98\x23\xc0\xf2\xd9\x86\x8d\xa5\x00\x4f\x95\x28\xc3\x6b\x11\x7c\xb8\xf2\xa0\xdc\x4c\x85\xcb\xd8\xe9\xac\x17\x22\x7a\x7a\x15\x55\x35\x61\x1d\xce\xa3\x98\x44\x10\x9f\x47\x7d\x41\xac\x4d\x35\x20\xe3\x63\xe2\x81\x2e\x23\x21\x7d\xe5\x4e\xfd\xe0\x5e\x7c\x9c\x73\x8e\x8c\x7c\x2a\x47\xf0\xab\xf4\x27\xa3\xb8\xfc\x3d\x55\xbd\x24\xb7\x21\x8e\x0e\x84\xa5\xa4\x24\x4c\x98\x4b\xd0\x43\x37\x8e\x4f\xf8\xf4\x22\x6a\x19\x54\xf1\xbf\x83\xe5\x34\xc8\x5b\x66\x94\x1b\x46\x24\x08\x2e\xc8\x4b\x42\x29\x61\xbd\x53\x8a\x4b\x0c\xe5\x11\x19\xce\x81\x5b\x99\x89\x14\xb4\x87\x4f\x5f\x91\x28\x45\x80\x4e\x84\x6c\x42\xb8\xdd\xbd\xd0\x9f\x82\xe6\x79\x15\x71\x9c\xe0\x25\x52\x46\xf8\x28\xe2\xff\x02\x65\xf9\x7d\x64\xd0\x54\x3e\x13\xa7\xb7\x17\xaf\x36\x0f\x54\x1a\xec\xd9\xa8\x52\xac\x0d\xd5\x23\xa6\x9b\xf7\x79\x24\x11\x86\xdf\x6c\x86\x43\x6f\x7f\xe2\x07\x9e\xd9\x7d\x3e\x56\x99\x0d\x2b\x33\x0d\x3f\x20\x97\x50\x1c\xd2\x13\x09\x9f\x0b\xb1\x97\xd2\xf9\x3d\xbe\xe7\x94\x00\x8f\x3e\x4f\xe0\x82\x24\x36\x7d\xa1\x6f\x7c\xce\x03\x09\x3e\xe0\x43\xe7\x3a\x98\x47\x52\x0e\x55\xb3\x59\x22\x7e\x43\x68\xa3\x18\x07\x58\x4c\xcb\x6f\x22\x32\xf5\x41\x56\x23\x1c\x93\xe0\x86\xff\x12\x73\x3f\xbe\xf3\x63\xca\x39\xf4\xed\x39\x8e\xee\xcf\xd3\x7a\xe4\x1a\xce\x58\xb0\x9f\xc7\x73\x0a\xa4\x3f\x4d\x93\x70\xc0\x85\x3d\x1d\x70\xa2\x3c\xc3\x94\x78\xac\x47\x43\x46\x20\x86\x1b\xc3\x67\x7e\x4d\x23\xcc\x32\x0f\x05\xa3\xf8\x6b\xb4\x17\xc2\x5e\x50\x57\x07\xb9\xd6\x54\x4a\xaa\xec\x0a\x20\xcc\xf0\x70\x6d\x4f\x70\x53\xd4\x15\x57\xe4\x98\x7a\x1b\x0e\x71\x1c\xfb\xd7\x7e\xe0\xd3\xfb\x63\x37\x74\xc7\x80\x77\x7a\xc6\x00\xb0\x9a\x71\x73\x24\x7f\xf6\x85\x1b\x2e\xda\xf9\x02\x48\x20\xb7\xfb\x4a\x11\xbe\xc3\xee\xfb\x63\xb0\x47\x06\x81\x7f\x03\x47\x96\x49\xf8\x1a\xe2\xa1\xcd\x81\xd1\x70\xcc\x26\xbe\x20\xfb\x24\x8c\xe7\x20\xb2\x32\x65\x2f\x0c\x21\xf6\x33\x58\x38\x3a\x9e\x4c\x00\x5d\x9f\xb3\x72\xea\xfa\xa1\x3e\x3c\xd9\x70\x14\xd4\x74\x3d\x4f\xa1\x93\x56\x88\x31\x55\xa1\xb2\x44\xb6\x18\x4c\x40\x62\x3e\xbe\x0d\xb2\x5c\x44\x18\x0b\x41\x1d\x50\x32\x7b\x49\xe6\xa1\xe7\x46\xf7\xaf\xd8\x20\xd5\x84\x4a\x18\x6e\x46\x36\x4b\xbe\x86\x51\x5e\x5a\x2b\xc2\xa3\x08\xc7\x93\x33\x72\x1b\x1f\xf8\x53\x1c\xc6\xc2\xe2\xd3\xc8\x65\x7e\xc9\x90\xd8\xba\xa5\xc0\x34\xa4\x3f\xc5\x2f\xdd\x18\x7b\x7a\xbe\x60\xce\x19\xd7\xad\xd7\x3e\xcc\x78\x58\xe9\x0e\x3f\x8c\x71\x44\xf7\xbc\x6f\xb9\x43\x1c\xd2\x54\xa7\x0c\xf4\xd3\x1e\x62\x8a\x0a\xbd\x1c\xbe\x90\x73\x0e\xca\x0c\x7e\xee\xb5\x5a\xf7\xcc\x7e\x4a\x21\x88\x2f\xce\xf1\x57\x18\x0c\x32\x5e\xee\xc2\xbd\x4e\x8b\xf1\x0f\x12\x7e\x0d\xc6\xb8\x48\xe4\x1f\x24\x7c\xc9\x47\xf4\x40\x3c\x87\xa5\x11\x85\x84\x29\xc5\xf8\x99\x21\xce\xf5\x54\x7a\x0f\xc8\x34\xcf\x21\x3e\x7a\xd5\x55\x3f\x0e\x68\x16\xa9\x2f\xfd\x88\x8d\x52\x21\x30\xfd\xf9\x23\xbe\x66\x20\xc7\xf3\xe1\x44\x99\x47\x14\xc7\x5c\xd9\x03\x61\x40\xa7\x86\x30\xaf\xd1\xd4\x22\x1d\xc3\xec\x78\xcf\xe6\x3d\xa0\x7b\x88\xe1\x44\x0b\x97\x47\x10\x70\x21\xec\xfb\xf2\x40\x1a\x00\x80\xcb\x1a\xbc\xba\x2e\xb4\xf0\x8a\x1e\xf6\x2e\x64\xf6\x8c\x30\xa8\xf3\x50\x62\xc8\x27\x98\xd7\x02\x8d\x59\x04\x7e\x44\x11\x7f\x12\x6c\x1d\x32\x3b\x9a\x4e\xb1\xe7\xbb\x14\x56\x34\xee\x58\x5a\xab\x70\xc7\x23\x50\xf6\x94\x1f\xef\x93\x20\x70\x67\x31\x70\x6e\xc8\x87\x11\xcc\x4c\xe1\x70\x42\x22\x31\x2a\x80\x33\x7a\x35\x98\xbf\x44\x66\xc8\xff\x10\x08\x11\xa8\x6a\x9e\xca\x4f\x28\xaa\xbe\xd8\xba\xc6\x8d\xb0\x1c\xd0\x6f\x48\xec\x0b\x90\x02\xda\xc1\xe9\xfe\xdb\xe3\xc3\x93\x8b\xc1\x9b\xd3\xf3\xa3\x8b\xa3\xd3\x93\xc1\x9b\xb3\xc3\xfd\xc3\x83\xa3\x93\xaf\x16\xe6\xee\x9f\x9e\x5c\xec\x1d\x9d\x1c\x1e\x0c\x5e\x7e\xb3\xb0\xc0\xab\xd3\xd7\xaf\x4f\xdf\xf1\xea\xa0\x8a\x59\x43\x31\x58\x1c\xc0\x1e\xf9\x88\x09\x10\xe3\xc4\x3d\xe1\xc6\x9e\xb2\xf5\xd4\x24\x22\xab\x47\xdc\xda\x74\xaf\x8f\xc4\xba\x47\x1b\x30\xc6\xf8\xf6\xf4\x8f\x61\x0c\xff\xf2\x55\x08\x7f\xc9\x1c\xf8\xc4\x6d\x9c\x5b\xb1\x10\xe1\x07\x7c\xab\xa8\x5a\x78\xa4\x9f\xa5\xef\x17\x69\xe8\xa3\xb3\x8c\x86\x8e\xf0\x2c\x70\x87\x62\x86\x7f\x13\x81\x79\x77\x2c\xba\x7d\x1d\xb9\xc3\xf7\x98\x62\xef\x8d\x1b\xf3\x54\x58\x3a\xca\x1b\xaa\x8c\x0c\xe3\x10\x5a\x29\x28\x47\x23\x7f\x3c\xc6\x10\x31\x0c\xa6\x5c\x2e\x50\xa0\xfa\xfc\x70\xbc\x1f\xf8\x38\x64\x8b\x02\xae\xa8\xd9\xc7\x37\x60\x61\x38\x4a\x13\xbe\x09\xc3\x86\x49\xf3\x77\x24\x01\x23\x46\x8d\xfd\xc0\x1f\xbe\x4f\x2d\x6f\x79\x9e\x6e\x2f\xc2\x2e\x84\x3a\x85\x8b\x16\xfb\x60\x0b\xf2\xd5\x3f\x8c\x13\x3e\xde\x01\x43\x89\xcf\x90\xcc\xee\x53\x38\xa2\xb7\x0c\xd4\x2b\x12\xbd\x11\xd5\x66\x11\x66\x52\x28\x52\x75\xd3\x33\xf0\x67\xb0\xb9\x28\x8c\x8d\x18\x53\xf5\x4b\x48\xbf\x1c\xd5\x94\xcc\x72\x23\x4b\x94\x4d\x3b\x74\x2e\x45\x07\x82\x83\xca\x67\x46\xf7\xdd\xe1\x84\xcf\x83\x2c\x95\x89\xa2\x7c\x7f\x0a\x12\x41\x54\x62\x4c\xf7\x63\x31\xf5\xef\xab\x14\x51\x7e\x9c\xfe\x64\x4b\x48\x7f\xe4\xf3\xe5\x0a\x3f\x19\x26\x9d\x06\x99\xcf\x74\x56\x18\x4c\xb5\x5b\x2b\x30\x83\xe9\xd7\x60\xb2\xeb\xd5\x4c\x32\x20\x7f\x60\x98\xf7\x03\x3f\x06\xf6\x9c\x82\xb6\x1c\xdc\xba\x31\x9f\x58\x3c\x3e\xb1\xc3\x73\xa0\x7c\x2d\x3f\x20\xe1\xf9\x84\xdc\x32\x94\x54\x00\x5b\x66\x0c\x69\xe7\x93\xf9\x9c\x53\x50\x08\x0b\x06\x0f\x48\xf8\xb9\xf0\x94\xe8\xd9\xc5\xa9\xa5\x8f\xa5\x41\x77\xdc\x98\x02\xe2\x52\x76\x04\xb2\xb2\xe7\x67\x78\x16\xf8\xbc\x87\xa0\x01\xf7\x4d\x82\x72\xe1\x03\x00\xc7\x7c\x02\xd1\x93\x0e\xf8\x12\x5d\x4f\x7a\x0b\xfc\x9d\x09\x9d\xf7\x2a\x22\x53\xa3\x75\xa6\x1b\x49\xcc\x06\x1c\x28\x03\x40\x8f\x9f\xe9\x15\xde\x0b\x01\xeb\x73\xe1\xef\x19\xb8\xf1\xfb\x57\x24\x92\xe8\x30\xe6\xec\xe9\x1a\x55\x2c\x99\xb8\x58\xe9\x1c\x8d\xc1\x21\x43\x23\xd9\xb7\x09\x1e\xbe\xd7\x5d\x11\x67\x38\x16\xf3\x08\xb7\x0e\x06\x7c\x86\x84\x55\x63\xcc\x46\x41\x38\x96\x7e\xaa\x73\xd0\xea\x13\x50\x5a\xfc\x55\x40\x58\x04\x81\x19\x22\xd0\x3d\xc1\xb7\x12\xc5\xa9\x24\x8c\x8e\xf3\x6b\xe1\xc6\xd2\x1f\xba\xe3\x1e\x24\xb5\x46\xe1\xe7\xae\x63\x98\x02\x53\xde\xce\x08\x04\x08\x51\x4a\xc1\x8f\x81\x32\x5c\xec\x18\x64\x49\x28\xc3\xb3\xe7\x8b\x99\x7b\x3c\xe6\x42\x30\xf2\x23\xac\x24\x46\xb2\x42\xda\x43\xd8\xfb\xba\x8f\x6f\x67\x24\xa2\xca\x78\x10\x06\xa4\x21\x68\xb2\x1a\x83\x25\x87\x27\x89\x3c\xd6\xd0\x5d\x8b\x99\x05\xec\x9f\xbb\x36\xfb\xc5\xfe\x19\x31\x83\xe1\xe8\xd8\x1c\x84\xe6\x8d\x35\x96\xf0\xba\x70\x10\xce\x22\x32\x9d\xd1\xd7\xee\x35\x2c\x3d\xc4\x95\x23\xcd\x89\x94\xb9\x78\x0c\x29\xc6\xbd\x24\x21\x0c\xa9\x8e\x94\x61\x1b\x39\xe6\x17\x91\xcf\x2c\x87\xd7\xca\x9b\xe7\xc6\xe9\x7a\x90\x2d\xa1\x85\x30\x66\x63\xe0\xc3\x2a\x8a\x7f\x73\xe7\xd7\x91\xa7\xdc\x78\xef\x05\xf8\x79\xe4\x33\x03\x21\x08\xc8\xed\x09\x09\x3f\xa7\x94\xa9\x50\xe5\xdf\x92\xef\x71\x71\x43\x64\xe4\xc3\x0a\x2e\x73\x6f\x0b\x52\xb2\xdd\xe1\xbc\x2a\x30\x8b\xf7\xd3\xf5\xa3\x9c\xa5\x75\x37\xea\xc0\xcd\x2f\xa6\xc3\x21\x0e\x72\x6b\x6c\xd7\xf3\xce\xcc\xea\xa0\xf5\x98\x91\x77\xa6\x8c\x42\xbe\x0e\x11\x6b\x9e\x88\xdc\x9e\x0b\x17\xe8\x31\x1f\xce\x53\x70\xa4\xc2\x6a\x04\x46\xc7\xd4\xe5\xc6\xc3\x3c\x3c\x2b\xc0\x8c\x11\x8b\x49\x4a\x15\x55\x6f\x18\x19\x59\x05\x36\xdc\x18\xbb\xd8\xb4\xc6\x8c\x06\xa6\x38\xd9\xba\x99\xcd\x02\xcc\xf4\x61\x94\x60\x2b\xbe\x2a\xaa\xbe\x64\x93\x0a\x6b\x9b\x89\x08\x5b\xfc\xc2\x14\x14\xe9\x2e\x41\x12\xaa\x05\x8c\xf1\x53\x5a\xe3\xa9\xb5\x9f\x2a\xe6\x81\x32\xed\x75\x65\x2d\xaf\x76\xf0\x02\xda\xd7\x35\x37\x54\x58\xfa\x7b\x7c\xcf\xc6\x3d\x17\x3a\x4f\x4b\x39\xc7\xbc\xe2\x7b\x7c\xff\x26\xc2\x71\xac\x95\x98\x87\xe2\xa9\x2c\xb6\xe4\x71\x3d\xb1\x76\x70\x8b\x17\xb4\xb9\x27\x48\x39\x36\x5c\x39\x08\xf5\x9c\xf9\x1c\xa8\xf5\x88\xbe\xfc\x61\xe6\x56\x7e\xf9\x90\x4f\x1b\x90\x10\x5c\x73\x5a\x21\xf3\x9b\xd1\x12\x8b\x85\x93\xf8\x31\x90\x5e\xcb\xfc\x6d\x12\x2e\x50\x85\x46\x1f\x57\x38\xdc\x22\x84\x84\xdc\x65\x3f\x6e\x1d\x68\x43\xa4\xa8\x44\xb1\x3a\x19\x80\xcf\x32\x55\x06\x8c\x14\xe0\x68\x52\xb8\x8b\xef\xb3\xcc\xb2\x50\x24\x9f\xe3\xd0\x53\xd2\x13\x61\xa6\x2a\xe5\xa7\x56\x95\x1b\xff\x2a\x41\x78\x03\xc5\xd0\x3e\x83\x5a\x69\x7d\x33\x97\xf3\x4d\x58\x3b\x72\xd5\xc9\x3e\x95\xd2\xd5\x2e\x6f\x80\x80\x8c\x28\x4c\x61\x62\xee\x1a\xce\x63\x4a\xa6\x5f\xc3\xf7\x50\x20\xed\xa8\x71\x53\x87\xcd\x08\xf7\x33\xcc\xad\x7e\x68\x29\x7d\x55\x49\x26\xf2\x55\x51\xec\xc3\x77\xa4\xd5\xdc\x6f\xb2\x91\x78\xbe\x0f\xb5\xce\xc6\xd7\x6a\x4d\xb8\xdf\x1a\x1c\x9e\xef\xef\xbd\x39\x64\x43\xf3\xfc\x82\xfb\xf5\xfd\xd1\xfd\xbe\x04\x37\x14\xcf\x9a\xa7\xed\x71\xf7\x14\x25\x11\x96\x9f\xdc\x36\x8b\x85\x6b\xce\x8d\xb0\x9b\xae\xf8\xd4\xd2\x5c\x2e\x7c\x87\x11\xc6\xe1\x19\x76\xc1\x60\xf6\xb0\x1e\xf0\x46\x5b\x8c\x0b\xbb\x5a\xf2\x29\xd6\x59\x18\x4f\xc8\xad\x9a\x51\x33\x15\xa4\x6a\x88\xef\xc3\xa1\x4c\xe3\x6b\x48\xa8\x70\x14\xca\xc9\x92\xdb\xb6\x53\x69\xe9\x7c\x8e\x03\xee\x60\x82\x70\xd8\x2c\x15\xc8\x73\x7f\xcd\xb7\xe3\xd8\x0c\xfa\xb9\x5c\x12\x0d\xfc\xd0\xa7\x5f\x05\xa7\x18\x58\xa6\x7e\xc8\x06\x7e\xcc\x27\x1c\x7d\x09\x3a\x50\x16\x79\xca\x89\xdc\xd4\xa7\xde\xe4\x04\x42\x52\x0a\x35\x63\xa0\x52\xea\x0c\x49\x37\xe1\xb2\x86\x7b\xfc\x8e\xef\x30\x8a\xb7\x21\x85\x9e\xe2\x66\x9c\xd0\x5f\xba\xee\x52\x36\x1c\xf4\x5a\x6e\x81\x69\x49\x3c\x7e\x90\x99\xc6\x37\x29\xf8\x30\x94\x32\xcc\xcb\xed\xa7\x85\x34\x07\x16\xa3\x21\xf8\x1a\x85\x9d\xa3\xee\x9f\x81\xa1\x73\x3d\x1f\x73\x83\xc7\x9d\x07\x94\xb1\x03\x94\x4d\xea\x3e\x93\x3f\x4f\x6f\x70\x14\xf9\x7c\xc5\xad\xe5\xfa\x91\xd2\x37\x32\xf9\x55\xe4\x8e\xe5\xba\xe1\x46\xf0\x57\x73\x24\xc9\x24\x2e\x8a\x42\x22\x04\xfe\x86\x1f\x7f\x30\x01\x29\xd0\x3d\x75\xe9\x83\x9a\x62\x7a\xca\xfb\x1e\x33\x57\xf4\x58\xb9\x5c\xca\x51\x3e\xe9\xc2\x1c\xdb\x47\x99\xef\x92\x5b\x81\x02\x7a\x61\xc6\x51\x69\x4e\x7e\xf1\xad\x54\x4f\xca\x40\xc1\x8a\xfd\x82\x41\x91\xb1\x03\x03\x6d\x41\x37\x61\x2b\x29\x7e\x4b\x8a\xab\x78\xed\x2b\x73\x89\x8b\x19\x0a\xe9\xe8\xd3\x06\x62\xaa\xa9\x0d\x9f\x91\x3b\x15\xa6\x4a\x3c\x9f\xcd\x98\xf0\xf2\x6c\xdd\x00\xe6\xb5\xee\xc3\x21\xcf\x7a\x09\x9e\xbe\x58\x7d\x0b\x5e\x0b\x8d\xac\x4f\xac\x19\xe7\xa2\x70\x9b\x72\xe5\xc1\x3f\xa4\xba\x39\xcf\x8f\xe1\xa3\x82\x34\x6d\x26\xf1\x22\xf7\x56\x81\xc9\xcc\xca\x9e\xf2\xda\xf0\x0c\xe1\xb4\x00\xe7\xe4\xfc\x4e\xd0\x59\xd3\x20\x9a\x6f\x93\x1b\xdf\xe9\xb4\xa9\x91\x35\xbf\xa6\x1b\x66\x02\x3f\x80\xb3\x1e\xa7\x6b\xb9\x78\x4f\xee\x62\x7b\xbe\xb4\x45\xf8\x65\x04\xa5\x7d\x52\x1d\xcd\xcd\x8b\x82\x08\x65\x2c\xe3\x86\x35\x80\x6f\xcf\xe6\x01\x8e\xe4\x6e\xf5\xc0\x48\xd5\x10\x3d\x2d\x49\x9f\x62\x37\x9e\xc3\xc2\x84\x69\x53\x40\x13\x86\xfd\x54\x2b\x33\xc6\x7c\x25\xcc\xe7\x62\xb5\x7a\x21\x42\x4d\x5c\xf0\xc9\x91\xab\xd0\x38\x9d\x56\xdf\x4d\x30\x0e\x32\x13\xab\xd8\xb9\x17\x02\x05\x4c\xf1\x70\x40\xdd\x6f\xa6\xfe\xa3\xcc\xb2\x37\x10\x1b\xff\x7c\xcf\x87\x46\x81\xf8\xc3\xad\x33\x17\x96\xa2\x6e\x40\xf9\x27\xb8\x40\xf9\x4f\x58\x4e\x82\x3d\x75\xcb\xf0\x90\x29\x5e\xe4\x8e\xe5\x6f\xe1\xd9\xe5\x76\x3d\x90\x5a\xae\x38\x14\x91\x65\x64\x22\x7e\x10\x20\x70\xfd\x90\x33\x51\x1c\x32\xe1\x8c\x54\x8e\x01\x79\xbc\x24\x9e\x90\x79\xe0\xbd\x22\xd1\xd0\x90\x29\x36\x49\x41\xbf\xc5\x22\xc1\x9d\xb1\x45\x31\x88\x14\x1f\x22\x62\x32\x73\xaf\x63\x25\x5a\xef\x04\xf2\x62\xb2\x25\xf3\xe1\x44\xae\x1d\xb4\x24\x31\xb6\x4c\xef\x3c\xc7\x62\x5f\x93\x79\x63\x3e\xf6\x21\xf8\x00\x77\xc4\xb8\x94\xba\xc3\xc9\x7e\x89\x35\xa4\xe7\x16\x31\x55\xee\x43\x64\xb4\x20\xf0\xf6\x39\x79\xb0\xe0\x89\xde\x73\x43\x46\x26\x1e\x43\x0a\x5f\x5f\xa9\xdf\x32\x33\x1d\x8b\xd2\xba\x4d\xa9\xac\x3b\xb1\x35\x87\x47\x6a\x11\x08\xf2\xa9\x04\xbe\xe4\xe2\x9f\x7b\x30\xe0\xf9\x6f\xa9\x0d\xe1\xdd\x6a\xc0\x51\x0c\xc1\xa3\xf8\x18\xc3\x92\xf5\x3d\xbe\xf7\xf8\xa8\xe7\x3e\xf7\xd3\xf0\x6d\x8c\x23\xb9\xe1\x8f\x6f\xdc\x60\xee\x52\x2c\xef\x24\x28\x23\xd4\x8f\x2f\x26\x7e\xe4\x81\x60\x9d\x0b\xa7\xfd\x14\x53\x97\x0b\x6e\x1a\x0a\x9b\x59\x8e\x17\xdf\x60\x33\xc3\x19\xcc\xce\x53\xcd\xad\x7a\xcc\x8c\x45\x1f\x47\xe7\xc2\x13\xf2\x1e\xdf\xef\x0b\x7f\xbc\xa8\x0f\x92\xef\xc3\xee\xa9\x1e\x0b\x5d\x9e\x44\xb8\x90\x26\x2d\xf7\x2b\x71\xf1\xfc\xba\x1b\xf8\x9e\xd8\x27\x07\xaf\xd6\x5e\x10\x1c\x2b\xd6\x8c\x31\x7d\x19\xb8\xe1\x7b\xe1\xaf\xd3\xdf\x19\x80\x68\xff\xe0\x76\x51\x04\xcf\x5d\xdc\xad\xa2\x6a\x91\x6d\x2f\x10\xf9\xea\xe1\xc5\xe0\xdd\xd1\xc9\xe0\xfc\xe8\x5f\x1c\x0e\xde\x1c\x7d\xe3\xf0\xf5\x39\x58\xbe\xaf\xfc\x3b\xc0\x8e\xe5\x43\xfc\x7e\xb3\x00\x1f\xbc\x6a\x50\x0e\x3c\xb1\xd0\xbf\x98\xb0\x91\x40\x02\xef\xf8\x5c\xba\xcb\xc4\x22\xe5\x98\xaf\xee\x3d\xcf\xe7\xa1\x0e\xe5\xda\x85\x4f\x22\xdc\x70\x12\x03\x49\xec\xe5\x1f\x31\x13\xfd\x80\xd3\x39\x04\xf7\xff\x20\xd6\x67\xb9\x58\x4e\x81\x4a\x0b\x0b\xef\xea\x19\xb9\x4d\x6d\x57\x91\x76\x80\xd9\xac\xb0\x8f\x83\x20\xcd\xe2\xd8\x0d\x49\xe4\x61\x8f\x4f\x36\xca\xc3\x62\xe4\xc9\x99\x7b\x51\x4d\x33\x0f\xb4\xc3\x37\xe5\xd7\xb9\x38\x7a\x00\x36\x2a\xa8\xc5\x37\x6e\xc4\xd4\x40\xba\x56\x10\x3d\xcf\x79\x39\x06\xdc\xf1\x7f\x82\xef\xa8\x69\x0c\x0c\xe2\x29\x21\x74\xc2\x13\xa5\x34\x82\x79\xcb\xa8\xc7\xb4\x6a\xe4\x8f\xfd\x50\xae\xa4\x0b\xac\x0d\xbe\x39\xa4\x68\xa7\x56\x2b\x02\x23\xae\x5d\x5f\xca\x43\x60\x24\xe4\x3f\xf7\xd2\x93\x29\x99\x12\xc2\xbf\x63\xee\xa7\x0a\x65\xc9\x4c\x3d\x6d\x51\xce\x7f\xaa\x25\x17\xd3\xcb\x63\x78\x47\x5a\x2d\xb0\x54\x8a\x46\x1c\x50\x5e\xd2\xaa\x9e\x45\xaa\x0b\x8a\xf4\xb2\x42\xac\xd1\x9b\x17\x79\x03\x07\x1f\xb2\x64\xe3\x4a\x41\xf8\xa2\xbd\x6c\xee\x1b\x1c\x0d\x45\x25\xbe\xd7\x56\x44\x70\x2d\xed\x60\xae\x54\xe3\xe0\x7a\x7e\x7d\xad\x11\x93\x8f\x16\xe9\x01\x19\x63\xfa\xc6\xbf\xc3\x81\x3e\x1b\x73\x94\x53\x21\x82\x38\x78\x3c\x5f\xaa\x1c\x39\x67\x0b\x03\x25\x9d\x11\x60\x8b\xed\x78\x70\x70\xf8\xfa\x62\x6f\xf0\xfa\xe8\xe4\xd0\x48\x78\xb3\xf7\xd5\x43\xa1\x44\x80\x53\xda\xb2\xe5\x3a\x9b\xc0\xcf\xf5\xa4\x2b\x09\x0d\x0a\x1b\xf8\x70\x52\x91\x00\x83\x46\x4a\xac\x35\xf4\xd2\xc4\x73\x26\x02\xd4\xbf\xf1\xe1\xd0\x66\x5c\x90\x46\xd9\x08\x11\xc7\xa6\xc6\xf8\x9b\x62\x70\x1b\x6b\x40\xcd\x21\xa3\x1f\x16\x70\x03\xd1\x93\xa3\xd4\xa6\x1b\x78\x99\x3d\x69\x8f\xdb\xfa\xe9\xba\x66\xe0\x11\xa1\x71\x0e\x0c\xe7\x35\x7f\x66\x3a\xf5\x18\x92\x50\x37\x38\xf9\xb4\x27\x76\xd0\xf5\x0c\x66\xc3\x78\xa9\x1b\xde\x98\x18\xe5\x40\xc8\xa4\x41\x0b\x6a\xe5\x25\xbe\xbf\xa1\x4d\x95\x83\xec\x31\xa7\xc0\xbd\xd7\x66\x69\xb1\x2a\x17\x5e\xf9\xc0\xbd\xd7\x7c\xe2\xba\xeb\xef\x40\x9d\x58\xf4\x70\x80\xf9\x48\x85\xed\x5f\xb9\x98\x96\x5b\x5f\xff\x82\x84\xf8\x9c\x12\xb0\x42\x07\xdf\x21\x5c\x2b\xc0\x8f\x37\x04\xec\x29\xf5\x5b\x6d\xab\x32\x04\xde\x30\x1d\x0e\xce\x82\xd1\x9c\x4b\x37\x0e\x79\xdb\x12\x86\xeb\x79\x46\xe7\x0d\xe3\x38\x75\x21\x01\x34\xb5\x81\x11\x33\x74\x64\xaa\x3c\x1d\x71\x41\x64\xaa\xeb\xc1\x49\x58\x95\x00\xaa\x4e\x28\x6d\xb1\x17\x15\x7a\xc6\x37\x0c\x7b\x89\xea\xe0\x56\xcd\x11\xb9\xae\x73\x83\xed\x2d\xac\x8f\x4d\xed\xa5\xe7\xec\x49\x1a\x82\x4a\xff\x5a\x48\x6e\xc3\xec\x9c\xa1\xb6\x8a\x53\xc7\x36\x4b\x30\x60\xf2\x23\x58\x87\x99\xd3\x20\x2f\xf1\x88\xa4\xdb\x14\xa1\x38\x8c\x3b\x18\x52\xb1\x99\x9d\x35\xbf\xe4\xf9\x8a\x58\xcf\x16\xfb\x52\x20\xff\x85\x05\x14\x22\xf9\x32\x21\x89\xa6\xae\x3e\x13\x1d\x44\xae\x98\x44\xf7\x09\x77\x81\x1a\x1d\x93\x44\xd4\x28\xac\x46\x9b\xd2\x62\x7c\x77\x39\x55\x6a\x1a\x68\x1d\xe8\x10\xfb\x46\xcb\xc6\xf8\x04\xd5\x2b\xb6\xaf\x99\x64\xa8\xf9\x4a\xec\x26\x48\x44\x60\xa7\x87\x29\x66\x3e\xbe\xd8\x6f\x51\x6b\x60\x7a\xb8\x06\x9a\xcb\x6e\x60\x3a\x0d\x07\x7e\x7c\x8e\xf9\xae\x79\xea\x13\xc8\x38\x0d\xf4\xf1\xea\xb9\xd4\xdd\x0b\xf8\x3d\x3f\xa1\xb2\x46\x7e\x08\xd6\x7d\x06\x00\x9f\x06\xf7\xc2\xfb\x0b\xd1\x38\xe7\x40\xcc\x8f\x9f\xc5\xd2\x39\x79\x00\x3a\x56\x8f\x56\x28\x45\x02\x4e\x9e\x7b\xb2\x77\x70\x31\x9e\x9f\x3b\xfb\xba\x38\x10\xaf\xf6\xb7\xce\x70\xe0\x32\xad\x78\x41\x52\x21\x83\x9d\x7b\xc2\x8c\x9f\x73\x66\x09\x70\x8f\xb5\x3a\xc3\x9d\x8e\x1a\xed\x34\xf7\x40\xf9\x3c\xda\x55\xed\xd0\xfc\x7e\xe0\xc6\xb1\xe1\xe9\xe3\x0a\x88\x4d\x4a\x81\xf2\x53\x9d\x17\x67\x6a\xa7\x32\x74\x85\xae\x40\xe9\x7e\x28\xdd\x93\x62\x0e\xca\x79\x7e\xa0\x92\xb0\xd8\xab\x2a\x74\x8d\x36\x25\xf8\xe1\xb7\xf0\x50\x6c\xde\x0f\x22\x72\x9b\x1e\x88\xd6\xd6\xde\x67\x7a\xba\x00\xf5\x5a\xdb\xbb\xd4\x92\xe4\x46\x29\xd7\x2f\xea\x10\x01\xf7\x63\x33\x6e\xe9\xd3\x99\x42\x39\x93\xf3\x4e\xaf\x1b\x63\xfa\x8a\x08\x27\x7a\x48\xdf\xc9\xc1\x93\x7e\xbc\x24\x81\x27\xf6\x2d\xc4\xe9\xa2\xf3\x99\x3b\x14\x47\x59\xf9\xd1\x2f\x78\x83\x37\x4a\x93\x19\xde\xa3\x80\x9b\xd0\x92\x93\xda\x71\x4a\xa6\x7b\x94\xb5\x35\x9d\x07\xd4\x9f\x05\xf7\xa7\xac\x36\x4c\xd5\x43\xe9\x7a\xe6\x3f\xf6\x86\xc2\x2c\xe2\x9f\x72\x40\x2a\x2e\xbe\x54\xb6\xdb\xe9\xcc\xfd\xf6\x1c\xeb\x79\x47\xa1\x30\x1a\xf3\x65\x8e\x4e\xbe\x7e\x78\x76\x71\x78\x30\x30\x1e\x4d\x03\x57\xb0\x28\xe1\x65\x7b\xcb\xd9\xc0\x2d\x7b\xb0\xa8\xce\x98\xda\x50\x42\x90\x9e\x86\x63\x4b\xab\x54\x08\x8c\xe3\x79\xe2\x58\xce\x7e\x7a\x8c\x48\x39\x84\x95\x1b\x95\x4d\x35\x67\x40\x3d\xe5\x6c\x0d\x3d\x33\x61\x1f\x6e\x3e\x14\x94\xe4\x19\xaa\xfc\x20\x33\x40\xb4\x33\xcd\xc2\x3f\xc0\x09\xa4\x4e\x5a\xf3\x61\x20\x56\x3f\xfc\xce\x84\x7e\x96\x62\x70\x4b\xa2\xf7\xf2\x28\x42\x81\x9f\x6d\x90\x5b\x7f\x0f\x32\x0b\xf0\x31\xa6\xe0\x1b\xf0\x8c\x43\x70\x63\x4c\x4f\xc8\xcb\x71\x76\xe3\xf9\xa8\x8a\xaa\xa2\x74\xba\x41\xfd\xb9\x50\xb2\x38\x08\x8e\x42\xdd\x25\xf0\x8a\xc9\x76\x15\x55\xdf\xa6\x67\x8a\x53\xe5\xbe\x27\xef\x7f\x9c\xb0\x52\x05\x6f\xcc\x81\x0b\x40\xef\xab\x1f\x43\x9c\x14\xf9\x21\xc6\x81\x1f\x1f\x51\x37\xf0\x87\xcc\x9e\x1d\xeb\xb2\xf6\x4a\x97\x6a\x3e\xa1\xfa\xf1\x51\x78\xe3\xc7\x3e\x37\xc4\xa5\x4f\xe6\x73\xdf\xf3\x30\x3f\x78\x07\x3e\x50\x7e\x83\x85\x4d\xdb\xfa\xe1\x06\xc9\x91\x92\x77\xad\x0b\x72\xf8\x3e\x15\x9b\x6e\xd2\x5e\xcb\x05\x8e\xf1\x70\x2c\xa7\xb7\x59\x99\xc9\x7b\xe4\xde\xb2\x4e\xb2\x39\xe3\x28\x7c\xc9\x37\x42\xe4\x9a\xc9\x8f\x99\xaa\x7e\x8f\xe9\x24\x22\xf3\xf1\x24\xd7\x50\x15\x55\x3f\xe3\x70\xc5\x7b\xe7\x55\x54\xfd\x96\x91\x20\x24\xe4\x3b\x62\x71\xa0\x4a\x7d\xcd\x48\x10\xa5\xbe\x2d\xa9\x27\x2e\xf3\x7c\xbd\x8a\xaa\x5f\xad\xa2\xea\x37\x98\x40\xe4\x97\x70\xbc\xeb\xd1\xf8\xda\x35\xd4\x8b\x96\xc7\x0c\x3a\x65\x0c\xc3\x6a\xe7\xd8\x0f\xfd\xe9\x7c\x2a\x0f\x64\xf1\xed\x79\x3d\x05\x46\x37\x4c\x5c\xd8\xa5\x10\x0a\x7c\x2f\x7e\x99\x5b\x3a\x8a\xe7\x2f\xc5\x42\x2b\x7b\xbc\x0b\x87\xf1\x3c\xc2\x59\x88\x13\x37\x18\x65\x4b\x0e\xb3\x07\xc3\x46\x81\xcb\x90\x7a\x15\x10\x97\xae\xb6\xe5\x91\x98\xc1\x88\x88\x99\x3f\xbd\xea\x30\xb8\x55\x26\xcf\xad\xa1\xb2\x85\xd7\x57\x9b\xfc\x6e\x27\x3e\xc5\x4c\xa3\x61\xa1\xe3\xbf\x86\xa3\x50\x58\xd7\x0c\xa0\xda\xa8\x21\x01\x78\xa9\x98\x5d\xa3\x41\xe2\x0a\x0c\x03\x62\x17\x87\xdf\xb8\x18\xbc\xdc\x3b\x3f\x94\x4b\xc0\xa3\xe3\xc1\xe9\x9b\xbd\xfd\x23\xb8\x03\xe2\xc7\xaf\xf1\xd8\x1d\xde\x1f\x7a\x63\x9c\xde\x65\x3b\xc1\x77\xd4\x78\x4e\x5a\x1e\x05\x39\xc3\xf1\xd0\x0d\xe4\xc5\xae\xc3\x29\xf9\x96\x0f\xbf\xce\x30\x33\x56\x86\x14\x7b\x6f\xc8\x2d\x17\x57\xe0\x04\x64\xe6\x92\x20\xf2\xe9\xd1\xe8\x95\x1b\xc4\xf7\xd2\x66\xdf\x87\xa5\x05\x06\x86\xf1\x41\x08\x66\x49\x20\x77\xcf\xa4\xe2\xfc\xa6\xbe\x15\x21\x2d\x08\x5f\x6c\x37\xee\x05\x81\x5a\xfb\x99\x1a\x4e\xa9\xaa\x51\x3a\xc9\x69\xda\xcf\x8d\x52\xdd\x0b\xa6\x53\x7c\xc6\x2f\xa8\x79\xb9\x2a\x5c\x3d\x0a\x07\x46\x04\xca\x80\x87\x49\xd4\xa6\x13\xe9\xcd\x30\x93\x24\x77\xce\x69\xe4\x52\x3c\xe6\x0b\xb5\x63\x3e\xaf\xe6\xf6\x7f\x23\x79\xb0\x6b\x70\xe3\x06\x3e\x5f\x69\x78\xfc\x08\xd7\x20\xbb\x58\xc8\x08\x10\x53\x9e\x10\x77\xa7\x8a\xaa\x8c\x7d\xb0\x7e\xde\x97\x8b\x10\x51\x56\x9c\x8d\x1c\xa5\x36\x85\x3c\x1a\xfa\x92\xdc\xed\xc5\x43\x5c\x94\x7e\x80\x65\xc6\x50\x9d\x33\xd2\xdf\xbd\x95\xfb\xc6\x90\x20\x8c\x16\xed\xe1\x63\x71\x78\x3a\xd6\xbe\xb3\xdb\x7b\x60\x80\x85\xf8\x8e\x66\x3c\xd4\x70\x42\xc9\x4f\x29\x1f\x49\x9d\x25\xb5\x92\x18\xd8\x7c\x16\x3a\x93\x56\xf4\x60\x8a\xa3\x31\x4e\x3f\xb9\x49\xcd\xbf\xb9\xe5\xab\xf2\xc6\x98\xa6\x56\xae\xba\x4c\x38\xd0\x95\x3f\x8f\x23\xe0\x1d\xe9\x49\x9c\xba\x07\xb3\xe8\x98\x84\x3e\xb7\x9b\x06\xe6\x11\x76\x38\x68\xc3\xc0\x69\xb2\x91\x49\x50\x37\xc8\x94\x2f\x2b\xb5\x5b\xb8\x2b\x58\xee\xc2\x81\x5b\xe2\xd8\x1f\x46\x84\xba\xf1\xfb\x54\x18\x54\x75\x81\xfa\x59\xf6\xb6\xd3\x80\xcc\xe1\x16\x63\x9a\xc0\x0c\xc5\x59\xb4\x17\x7a\xaf\xfc\x08\x1f\x8d\x0e\x7c\x79\x78\xc1\xf4\x8d\x1a\x98\x48\x2b\x7b\x26\x21\xbc\x2b\x6e\x4d\xdc\x0f\xd0\x6f\x56\xc4\x24\x98\xc3\x98\xc5\x9e\xef\x1e\xbb\x74\x38\x11\x57\x43\xb8\xab\x44\x2b\x3c\x65\x99\x50\x8c\x3b\x0d\x4c\x38\xe9\xae\xea\xcc\x65\x4c\x10\x17\x28\x39\x35\xe4\xc1\x32\xef\x08\x6e\x32\x70\x0a\xc9\x6b\x41\xe6\x81\x23\x3f\x7e\xe3\x4a\x26\x86\x18\x7b\xf1\xab\x79\x10\x68\x47\xc4\xfc\xff\x87\xb0\x77\x69\x6e\x1c\x47\xda\x85\xff\x8b\xd7\xb5\xe8\xaa\x9e\xe9\xb7\xdf\x6f\x47\xc9\xb2\x4b\x53\xba\x8d\x24\xdb\x55\x13\xf1\x05\x02\x22\x21\x19\x6d\x8a\xe4\x10\xa0\x6d\x55\xc4\xf9\xef\x27\x90\x17\x20\x41\xb9\xfa\x6c\x24\x00\x04\x41\x12\x97\x44\x22\x2f\x4f\xba\x40\x05\x91\xf7\x47\x5d\xe6\xba\x01\xe7\x35\xac\x2d\xce\x32\xf1\x16\x3c\xe8\x27\xb1\x33\x64\xd3\x39\x57\x52\x24\x4f\x33\xe3\x03\xa7\x09\xf5\x77\x16\x8d\xf1\x79\x24\xbb\x25\x61\xcf\xa8\x28\x8a\x9a\x84\x99\xdd\x31\xff\x3c\x3e\xfc\x27\x4b\xd1\xcc\x59\xea\x17\xc5\x74\xc4\x91\x57\x93\xab\x06\xcb\xf8\x89\x27\x48\x16\xa8\x20\xcf\x48\x77\xf0\x64\x3a\xd6\xe8\x63\x0c\x76\x9d\x6b\xa2\x50\xc9\x1a\x48\x6a\xd7\x55\xd5\xeb\x13\xe9\xb2\x59\x1b\xae\x50\x4f\x8b\x3b\x28\xab\x7c\xf7\x36\x1c\xb0\xf4\x19\x64\xea\x6d\x5d\x7d\x1d\x59\xa2\xb4\x75\x75\x45\xfc\xb3\x42\x24\xef\xea\x6f\x14\xd1\x38\x19\x44\x67\x9f\xd9\xac\x58\x4e\xd4\x33\x5a\x11\x8b\xa2\x36\x53\x47\x29\xdf\xdb\x73\x76\x95\x37\x93\x7c\x6b\x21\x8d\xfc\x58\xc8\xae\xce\x7c\x78\xa6\x83\x81\xdc\x12\x6f\xa2\x00\x72\x99\xac\x78\x85\xe0\xc7\x3a\x30\x9c\xc9\xb9\x72\xc5\x7a\x65\x92\x17\xb1\x5e\x59\xe9\xc0\x18\x85\x4c\x5e\xff\x23\xce\x9e\xa6\xf8\x53\xdb\x57\x85\x8f\xa6\x49\x27\xe3\x81\xca\x26\x89\x98\xac\x26\x1f\x3d\x4b\x96\x52\x71\x98\xa3\x9e\x0f\xde\x19\xb4\xb8\xd9\x90\x7a\x39\xe2\x3c\x3d\xcb\x1e\x76\x42\x5d\xc3\x4d\x40\x55\xbd\xb6\xd2\xfc\xca\x36\xa7\xda\xf0\x55\x2a\xbc\x6d\x87\xc3\x55\xe1\xbe\x0f\xdb\x73\x2c\xd4\x55\xf5\x71\xa7\xa6\x19\xca\x2e\xbb\xec\x7c\x29\x2e\x21\x31\x8f\x14\x22\x69\x36\x0b\x41\x21\xf6\x6d\xec\x19\x5d\xa3\x8d\x53\x98\x5d\x2e\xd9\x7a\x85\x05\x03\x7d\x35\x3f\x7e\x60\x57\x41\xeb\xe9\x03\x3b\xc8\xb2\x0d\x9c\xba\x8f\x64\xa5\xad\xf7\x6d\xdc\x68\xa3\x34\xf7\x64\xd2\xd0\x84\xed\xb9\x60\x71\xd9\xb3\xee\xc3\x85\x9d\xe9\x74\x4f\x6e\xc1\x1e\xa7\x29\x71\xd7\x10\x29\x3b\xb0\xaf\xa3\x5a\xa1\x45\x04\x01\x80\x89\x80\x96\xf0\x28\x8f\xeb\x1d\x8a\xb4\xe1\x6f\x14\x2d\x41\x6a\x35\x57\xbb\x39\x1e\xfd\x77\xa0\x41\x35\x06\x88\x84\x6f\x51\x66\x03\xc6\x7c\x24\xba\xa3\x93\x90\xba\xe2\xd4\x3f\x62\xe7\xd5\x95\xd6\xe9\x03\x81\xc5\xbe\xd7\x8d\xeb\x58\x57\x74\xa8\x8d\x50\x51\x7f\x28\xbd\xc8\x6f\xa0\x4d\x73\x2b\x8c\x05\x49\xc0\xe5\x41\x03\x86\x8e\xc3\x67\xf3\xf1\xc3\xff\xfe\x49\x81\xd7\x83\xd8\xec\x24\x15\xb1\x2e\x4a\x4e\xda\x28\xa9\x39\xd4\x68\xe1\x80\x1a\x8b\x53\x8f\x76\xbc\x17\x53\xa3\xec\xe7\x80\xa2\xc2\xb3\x3e\x85\x25\x13\x86\xe1\xa2\x1b\x3e\x84\x80\x6d\x30\x1c\x56\xa8\x11\xcc\x6d\xa1\x29\x4c\xdf\x53\x83\x98\xfb\x11\x9b\xa5\xdb\x86\xd4\xc6\x32\x3e\x02\xf3\x53\x7c\x10\x66\x9e\xe8\x71\x6c\x9a\x5e\xa0\x01\xa7\x1a\x19\x59\x66\xf9\xd0\x8f\x53\xdb\x97\x43\x8d\xec\x06\x50\x46\xfd\x1e\x29\x4d\xdb\xdc\x82\xb2\x23\x53\x84\xb0\xfa\x23\xf4\xa7\x33\x7d\xe6\xcd\x82\x25\x91\x1e\x0b\x7b\x6a\x4d\x27\xbb\x78\xc2\x83\x63\x4b\x52\x81\xf0\x23\xe5\xe3\xe1\xa8\x79\x29\x6b\x5b\x46\x07\x2a\x53\x5e\x4a\x12\x18\xdc\xa1\x9e\x24\x2c\xa1\x68\x05\xf1\x6c\x8f\x5e\x6a\xde\xea\x96\xc4\x1a\xfc\xd8\x72\x7c\xea\x6d\x37\xba\xaa\x4c\xf5\x15\x9b\x3f\x1d\x70\x55\x24\x6b\xd5\x37\x10\x79\xeb\xea\x0e\xbc\xd2\x1b\x0f\x3c\x0c\xba\x32\xb3\x34\xda\xac\x3b\x13\xc5\x03\xd1\x67\xc2\xe8\xfe\xbe\xd7\x95\x25\x59\x31\xf9\xae\x83\x0f\x1e\x1c\x76\x71\x5d\xcf\xc3\xb4\x21\x66\xbe\x83\x71\xef\x49\xd2\xbc\x18\xce\xb6\x21\x33\xe8\xab\xb2\x2f\x38\x1d\x87\x32\xab\x66\x03\xe1\xd6\x2e\x2b\x8b\xa6\x5f\x45\x67\x13\x7f\x8b\xa0\x22\xb6\x39\x7d\x35\x43\x6f\x9d\xb7\x25\xdb\xc4\xdb\x46\xf7\xe4\xac\xca\x49\x15\x3d\xd2\x55\xe6\xfd\xaa\x04\x32\x44\xe0\xd2\x7b\xeb\xcd\x46\xd3\xa9\x6f\x9c\xff\x85\x9b\xdf\x95\xcf\xc3\xd8\x37\x64\x21\xad\x3e\xe7\x59\x2e\x17\xe8\x8f\x63\x14\xb1\xc8\x7f\x54\x36\x64\xd1\x67\x6e\x3e\x8d\xc2\xd1\x84\xbb\xae\x4a\xd0\x8b\x5b\x9a\x9d\x4f\xc7\x05\xf3\xab\x92\x2b\xdf\x8d\xf9\x2f\xcc\xcf\x77\x63\x08\x05\x05\xa0\x05\xd1\x02\x00\xf7\xd1\x8c\xf9\x21\x6b\x2a\x1c\xca\x8d\xbf\x8c\x4e\xbf\x67\xdd\xbf\xc0\x4e\x71\x6b\x7b\xa1\x2a\x8e\x0f\x78\xca\xda\x87\xa7\xed\x2e\x4d\x89\xbd\x1d\xa3\x10\x85\x8a\xc5\x76\x75\xf3\xe9\x66\x39\x5f\xcd\x97\x0f\xcb\x40\x25\x77\x22\xbb\x5d\x3f\xed\x62\xe3\x31\xb1\xd1\xa4\x81\xa1\xcf\x42\x83\x01\xce\xd1\xc6\xc5\xec\xf3\xcc\x95\xd7\x96\x57\xb7\xa5\xfb\xc0\x1c\xcb\xd9\xeb\xc2\xb5\xbc\xfd\x2d\x76\x07\x28\xe1\x6d\x5d\xc5\x63\xfc\x41\x97\x2f\x64\x7d\x8c\x5c\xef\xd3\xdf\xac\x02\xdc\x6e\x9e\x12\xfc\x06\xed\xbd\x7c\xec\x38\x92\x5b\x49\x3f\x34\x45\x53\xed\x86\x83\x2b\x7b\x7b\x20\x9e\x5b\x72\x34\xc2\x02\x82\x3d\xfa\x4a\x8d\xba\x5d\x79\xbe\x73\xf1\x04\xcb\x36\x24\x44\xa2\x9f\xc0\xd0\x04\xc4\x75\xf6\x27\xe5\xb0\x62\x66\x09\x16\x0a\x76\xf6\x27\x9e\x34\xe1\x76\x6d\x1d\x55\xaf\xdb\x37\xd3\x63\x92\xb4\x44\xb2\x19\x12\xaf\xc0\x1b\x9c\xf5\xbb\x78\x4c\x38\xed\xe0\xd1\x1c\xf3\x88\x9c\xc4\x3d\x70\x1a\xbf\xc4\xe9\xfa\x25\x4e\xc6\xa3\x8d\xfe\xb8\x14\x04\x53\xa3\xb2\xd1\xbb\x64\xf7\x8a\xc2\x79\x49\x9e\x27\xf1\xae\x08\x19\x33\xb8\xe7\x98\x6e\x3b\x51\xa9\xf0\x3e\x09\x4b\x86\x5e\x64\x67\xae\xd4\x9d\x61\xd5\x1d\x10\xaa\x08\x0d\x31\x22\x1a\xea\x8a\x6a\xa8\x2e\xd6\x87\x54\x5c\x4d\x0f\xb6\x91\x72\x4c\x94\x98\x24\x3c\x12\x94\x91\xec\xdb\x07\x7f\xfc\x1d\x54\x80\x83\x3f\x0a\xb8\x92\x07\x7f\xfc\x53\x5c\x7c\xcb\x70\x71\x94\x2d\xdb\x86\xf0\x59\xe4\xa5\x9d\x67\x37\x2d\xba\x1e\x0b\x4c\xaf\x9d\xe1\x4f\x06\xbe\x9a\x10\xba\xc6\xbe\x2f\xea\x17\xce\x2f\xea\xca\xb3\x45\x7d\xec\x0f\xf3\x4b\x2b\x6a\xf5\xff\x74\x85\xc9\xc1\x16\x32\x48\x05\xe1\x0e\x03\xbd\xcc\x1f\xd6\xb1\xe8\x81\x01\x74\x74\x0f\xfe\xd7\x22\xfb\x23\x82\xbe\x54\xe2\xe0\xd4\x99\xd2\x86\x8d\x9b\x79\xc8\x2a\x10\xc8\x6d\xfb\xb6\x07\xe7\xe9\x9e\xbd\x91\x99\xd4\xdc\x25\x1f\x38\x5b\x99\xc6\xf3\x79\x1a\x32\x42\xad\x0b\x10\x24\xc8\x48\x47\xa7\x4e\xe3\x13\x71\x13\xed\x84\x72\x44\xb7\xbc\xbe\x46\x10\x35\xce\xf8\xf5\x2f\x6e\x4d\xa4\x31\x2f\xdf\xf4\x56\xda\xb0\x76\xbd\x15\x66\x10\xbc\x82\x40\x88\x40\x50\x09\x89\x42\x2f\xc8\x67\x1d\xba\xee\x21\xd1\xea\x2d\x9b\x1b\xc0\x05\xb6\x07\x87\xcc\x1d\xfa\x21\x25\xc8\x22\x5d\xbe\x64\x05\x2b\xf3\xce\x98\x66\x58\xb0\xe9\x4d\x69\x2a\xf4\xa6\x4d\xa5\xe1\xc5\x8a\x03\x48\xb6\x44\x55\x61\x74\x29\x9f\x86\x53\x02\x66\xf4\x1c\xac\x71\xd0\x56\xa7\xeb\xcd\xd1\xbe\xa7\x2b\xf4\x00\xfc\x72\x26\xa8\x68\xb2\x93\xe7\xb8\x57\xf0\x6b\xc5\x87\xd3\xa7\x42\x7b\x5c\x29\xff\x4e\x7c\x95\xc0\x14\x6c\x5a\x27\x3e\xe0\x99\xdf\x9d\xad\x05\xa2\x22\x21\x7e\x7f\x3c\x2e\x92\x37\x12\x0a\x09\xa3\xde\xca\x6d\x7a\x7b\x46\xae\xeb\xa3\xab\x3b\x53\xb6\x00\xbd\x42\x66\x1b\xf9\xe3\x5f\x3f\x78\xfc\xf3\xa3\xe8\x4f\xaf\x0f\x53\x02\x13\x72\x86\x75\x99\x94\x22\xec\x04\xc6\xbf\x62\xb4\x04\x73\x75\x19\x8f\xb4\xfc\x46\x51\xe2\x1a\xf6\x86\x61\x9c\x4d\x77\xb9\xf6\x18\x49\x48\x58\x62\x99\xc3\x8c\x33\xc4\x04\x45\x38\x14\xa7\x5f\x13\x04\x02\x92\xba\x64\xe1\xc4\x27\x98\xe8\x0d\x8d\xb3\x3c\xe2\xf4\xd0\xf8\xc6\x3c\x9e\xff\x36\x7d\xeb\x59\x1b\x42\x08\x53\xa9\x07\xf2\x25\x19\xd8\x50\xb0\x19\x39\x20\x75\x5c\xdc\x51\x7f\x13\xe3\xfb\xb8\xbf\xf9\x74\x73\x77\x07\xfb\x79\xdf\x5b\x7d\x32\x88\x1e\x1b\xee\xdb\x11\xbb\xe1\x48\xfb\xf4\x75\x8f\x1d\x1f\x68\xff\x9a\x8f\x28\x08\x1f\xb0\x9b\x73\x7e\xde\x80\x0f\x1d\xe8\xeb\x6f\xc3\x99\x14\x9e\xde\xa4\x55\xf4\x75\xbf\xc3\x66\x50\x85\x91\xf1\x3d\x00\x5e\xe6\xb9\x23\xe7\x69\x8f\x08\x74\xa4\x47\x3a\x0b\xe7\x27\x13\xb5\x79\xce\xf8\xaf\x97\x0e\xb4\x4a\x2f\x79\xc5\xa4\xd6\x14\x85\x93\x8f\x0a\xb1\xfb\x47\xae\x7c\xa3\xe7\x50\x69\x6a\x94\x0a\x26\xe3\x82\x71\x63\xa0\x3c\xe2\x43\xdf\x8b\xb9\x74\xba\x2a\x92\x7f\x01\x8d\x1b\x96\xaf\x86\xb3\xe9\x6d\xc9\x38\x69\x20\xa6\x8d\xf3\x2c\xfa\x3b\xe0\x1c\x20\xad\x32\xf1\xea\xa1\xcf\xbf\x16\xdb\xdd\x0c\x3a\x17\x6b\xa4\x4b\xc8\xfe\x14\xb5\x3d\x35\x80\xdf\xa2\xc3\x49\x96\x78\x27\x80\xb4\x4a\x23\x30\x62\x58\x71\x1f\x84\x05\x90\x54\x22\x1c\xc1\x2c\xee\xcd\x75\x7b\xda\xa1\x4a\xb0\xad\x5f\x6d\x73\x2a\x1c\xb2\xe0\x3d\xce\x1b\x38\xfb\x26\x14\x06\x50\xe0\x40\x18\x52\x86\x4a\x24\x2f\x4e\xd7\xd5\xd6\x47\x8b\x2e\x56\x88\x0c\x07\x3e\x6f\x97\xf1\x83\xde\x7a\xdd\xe9\x68\x8f\x42\x18\x29\xb8\x76\xa8\xf3\xc2\xb9\x21\x1e\x19\x90\x53\x03\xfd\x53\x5b\x99\x8e\x44\x53\x1d\x13\xb2\x7f\xb5\x89\x1f\x04\x4a\x28\x31\x07\xcc\xbb\x0f\x54\x2e\xa1\x4e\x42\x76\x07\x76\x7f\xff\x42\x9c\x4d\x64\x8c\xb8\x79\x96\x7c\x45\x7b\xc4\x08\xe5\x21\x39\x98\x78\x3c\xe4\x5d\xa4\xed\x2e\xe1\x25\x5d\x68\x06\xef\x8e\xef\x8a\xea\xa9\x44\x1d\x42\xb5\x28\xed\x01\x63\x88\xf5\xed\x2c\x2b\x78\x9a\xdf\xee\xbf\xa2\x88\xe0\xd5\xf4\x7e\x06\x8a\x54\x9a\x8a\x4f\xb2\xef\x40\x84\xd2\xdb\x32\x89\x68\xc3\x4a\xdd\x21\xd6\x8b\x8a\xd4\x0d\xc5\xcc\x82\x8e\x79\x74\x85\xe9\x7a\xf3\xca\x95\x69\xd3\xca\xbe\x8a\x6d\x67\xe8\x8d\x15\xd0\xe0\xfc\xbb\xc3\x58\x27\x4f\x06\xa2\x77\x54\xbf\xe4\xee\x44\x01\x64\xdb\x5d\x9e\xac\x7f\x46\x9b\x75\xeb\x08\x3e\x32\x51\x88\x53\x9a\xf1\xd1\x44\x08\x17\x45\xee\xd3\xf3\x0d\x16\x5b\xb4\x4f\x9f\x51\xd4\x29\x01\x6e\x5a\xb0\x05\xb1\x28\x5b\x81\x01\x64\x32\x66\xc7\xb3\x55\x18\x4f\x5e\xeb\xe0\xcd\x21\x0c\x18\x68\xae\xf0\xe5\x67\xed\x76\xc3\x61\xc3\xfc\x55\x38\x19\x88\xec\x30\x36\xee\x50\xe4\x47\x2f\x0d\x5c\xf0\x99\xb3\x84\xd8\xc0\x95\x76\xf7\xdb\xdf\x68\xaf\xa9\xbe\x73\xe2\x07\x27\xa6\xd9\x61\x01\x8b\x62\x57\xa9\x51\x1e\xb8\xd3\xf8\x12\x28\x03\x92\x14\x56\x1d\x6d\x63\xdd\xb3\x2c\x3a\xda\xa6\x4a\x62\xad\x84\x92\x4a\x73\x88\xc9\xec\x4e\xb0\xac\xb4\x44\x8b\xba\xe6\x55\x6a\x9d\xdc\xd6\x0e\x75\x8b\x32\x46\x64\xa5\x73\x64\xca\xa1\x11\x1e\x4a\x8a\x11\x7f\xef\xda\xa1\x4f\x80\x3c\x15\x2b\xa1\xe7\xdd\x33\x4b\xce\xe6\x38\xec\xe3\xf8\xaf\x68\x36\x00\x25\x88\x27\x85\x24\x84\xba\x96\xb0\x8a\x8b\x13\x1e\x7b\x77\x10\x87\x95\x25\x8c\x27\x43\x5e\x6d\x96\xa5\x85\x0a\xa1\xa1\xf1\x31\xdf\xcc\x65\xee\x0d\x4b\xb0\xc9\xc2\x69\x72\xc1\x5b\xe0\xbd\x43\xf3\xac\xa1\xfc\xf7\x60\xe0\x43\x36\xbd\x6d\x7b\xeb\x2f\xb2\x4c\x79\xed\x10\x64\xc2\x82\x71\xc4\x7f\xb9\x9c\x1d\x96\x95\xad\x6a\x23\x81\x2e\xd0\xa5\x20\x07\xd3\x00\x72\x2e\x8b\xd2\x37\x7a\x7b\x36\x5b\x73\xd6\xb6\x61\x6b\x5d\x92\xc0\xeb\xaa\xe6\xc5\x0c\xb7\xcf\xf3\xe7\xe0\x63\x46\x85\x8a\x5f\x2f\xac\x3f\x70\x41\x02\x1a\xa5\xe6\xab\xdb\xd9\xf7\x8f\xac\xb9\x90\x80\x8d\xa1\x49\xac\x63\x04\x51\xeb\xee\x4e\xb8\xaa\xac\x9b\xc4\xd4\xdd\x69\xa3\xc1\x92\x91\xca\x65\xee\xee\x24\xed\xae\x26\x59\x2e\xd9\x56\x89\xc2\xd9\xb9\x83\x79\x78\x65\x68\x45\x3b\xca\xd8\x78\x2b\x3d\x4c\xde\x21\x0c\x70\x63\xd9\xd8\x7e\x66\xf8\xd5\x05\xc5\x00\x2c\x0a\x4d\x32\x22\xb1\x59\x16\xdf\xd5\xe4\xe1\xee\x6e\xb6\x05\x2f\x2b\x94\x9b\xe5\x3e\x8b\xaa\x49\xd0\xc9\xc7\xdc\xd2\x42\x6c\x14\x68\x35\xa7\x40\x9e\x0f\x6c\x1d\xdd\x31\x1e\x10\xde\x40\x40\x41\x68\x34\xef\xfc\x67\x88\x01\x18\x4a\x9a\xa1\x8b\x53\x33\x2b\xcd\xdc\x15\xda\x9a\xcd\x68\x1d\xf3\x01\x6d\xdf\x9b\xd2\x8f\x0c\xe3\x01\x61\x63\xaf\x0f\x61\x2f\x61\x39\xca\xf8\x15\x9d\xfc\xda\xa3\xad\x6b\xd6\x5d\xf1\xf9\xde\xba\xad\x39\xd6\xed\xdb\x2c\x29\x83\x7b\xc3\x46\xad\x07\xed\x21\xd4\x84\x7c\x55\xda\x7e\x9a\xa1\xc3\xe2\x74\xc7\x42\xf7\xa7\x88\xab\x58\xb7\x6f\xbb\xb3\xae\x99\x25\x4a\xd7\xef\xc9\x67\x76\xdf\x6e\xd9\x65\x55\x5e\xc6\xd8\x15\x2b\xf3\xb6\xd0\x17\x06\x9e\x4d\x57\x03\x0f\x78\x91\x17\x6b\x4e\x64\xef\x50\x54\x7f\x0d\xce\x0b\xcf\xf0\xb2\x1d\x1a\x9f\xdc\x4b\xb2\xf7\xbb\x37\x1e\x71\x9b\x48\xc1\x0a\x76\xfb\x58\xe0\x32\xdd\x1b\x30\x26\x23\xcb\x4d\x17\xf1\xb6\x3d\x0e\x04\xb3\x3c\xd1\xc9\x93\x35\xc9\x31\x5f\x26\xfb\x1e\x65\x46\x6b\x37\xad\x7c\x70\x43\xe4\x95\x2f\x08\x42\x48\x5d\x17\xc3\xcc\x8b\xe5\x87\x8b\x4f\xca\xe2\xc0\x00\x10\x7b\x84\x0a\x03\x21\x63\x27\xf1\xcb\xb5\x76\x3c\xf9\x2d\xa0\x4b\xb2\x6d\x46\x5e\x69\xcc\x2a\xcc\xbe\xef\x47\xbe\x93\x92\x8f\x20\xa5\x9a\xb2\x6c\xfa\x99\x04\xa2\x81\x63\x9a\x93\x12\x21\xb9\xd6\xfc\xfb\xe6\xd3\x4d\xd8\x80\xff\x83\x0b\x10\xce\x4c\x5f\x01\x51\x24\x7c\xd7\x6c\x1d\x1e\x36\x5b\x85\x5a\xc5\xf4\x5b\x78\xd2\x02\x4c\xf2\xe0\xe4\x74\x3b\xfd\x02\xbf\xbf\xc3\xef\x3f\x42\x0b\x45\xa8\xb3\xfb\xb1\x02\xd7\xd3\x40\xfd\xa6\x05\xa4\x97\xa1\xf8\x21\x14\xdc\x05\xce\xff\x3e\xfc\x80\x62\xf4\x21\xfc\xec\x36\x61\x3b\x29\xc2\x39\xec\xeb\x3a\xa4\x27\x9b\xf0\x0e\xab\x09\xbc\xc9\xae\x00\x08\x94\x02\x0e\x65\xff\x82\xc3\x60\xb8\x69\xb3\xb8\x85\xdf\x87\xd0\xd4\x1c\x2a\x7e\x81\x5f\x7c\x1d\xa8\xf2\xf0\x19\x7e\xa1\x1c\x6e\x9a\x4e\x43\x93\xcb\x27\x78\x28\xb4\x0b\xbf\x3b\x40\x89\xd8\xdd\x4f\xa1\x1d\xf8\x9d\xc2\x59\x71\x0d\xc8\x2b\x9b\xf0\xfa\xc5\x06\x41\x58\x1e\xba\x2e\x82\xfd\xfb\x56\x42\xff\x0f\xfe\xf8\xfb\x17\xe9\x7a\x00\xe2\x1f\x50\x37\xa7\xd4\x83\x6d\xfc\x9f\x2c\xb2\x22\xbd\xc7\xe3\x1f\x61\x9f\x8d\xbb\xfc\x5b\x19\x31\x1b\x61\x6d\x8e\x5d\x24\x54\xf4\x67\x57\xa5\xc4\x75\xea\xd0\xe7\x83\x65\xaf\xe8\x15\x97\xa8\xb6\x75\xbb\x4b\x53\x3e\xf5\x96\x2c\x5c\x00\x6a\x25\xec\x86\x24\x97\xab\x32\x85\x07\x00\x50\x3d\x11\x96\xf3\xa6\xf8\xb1\x58\x17\xb7\x6a\x31\x5f\xce\xf7\x78\xfc\x4a\xd2\x5b\xb2\x6f\x73\x37\xd1\xb6\x03\x67\x60\x86\x06\xdb\xdf\x1d\x88\x0d\x00\xc2\x58\xb7\xad\x24\xc1\x47\x5d\xd7\xfb\x68\x00\xcc\x5c\x93\xc0\x4a\x0f\xc4\x3d\x3b\x7f\x5f\xcb\xe4\x86\xe6\xb9\x6d\x5f\x20\x64\x01\xfc\xe1\x77\x44\xc6\x55\x57\xd5\x86\x60\x8b\x55\x14\x1e\xaa\x67\xeb\x17\xf6\x0c\xc7\xb9\xc7\xfd\x3f\x7f\xfb\x4d\xed\xb7\xc5\x8a\xc0\x3d\xf7\xc5\x04\x26\x3b\xe8\xc6\xe1\x4d\xf7\x64\x8a\xe5\x19\x6e\xc1\x08\x5c\x54\xf0\x33\x6f\x2e\xc4\xc3\x03\x95\xf6\xf1\xce\xe4\x90\xdf\x8b\xe4\xa6\x75\xec\xbf\x12\x05\x70\xcf\x43\xf3\x82\xe5\x16\x5d\xec\xe3\x91\x0f\x8f\xa6\xd1\x14\xab\x6c\x6b\xf2\xc9\x57\x9d\x90\x45\x62\x3f\x9b\x5c\xe0\x09\x65\x65\x12\xb2\x62\x9d\x24\xf1\xc4\xbc\x38\x62\x63\x49\x97\xcb\x38\x47\xad\xba\xbc\x51\x97\xb7\x89\x32\x6a\x57\xc6\x79\xb2\x16\x69\x55\xc9\x09\x64\xf2\xb3\xbd\xca\x04\xbf\x30\xf4\x23\x61\x2b\x94\x65\x8a\x2c\x2c\x19\x8b\x94\x10\x58\x51\xaa\xb1\xa0\x24\x13\x1e\x40\xc9\xfa\xba\xad\xfc\x9d\x52\x67\xeb\x03\x6e\x70\xba\xaa\xf8\x5c\xc4\xb8\xc1\x27\xeb\x69\x8e\xe3\x08\xe1\x0c\x0c\x5c\x0e\xaf\xf7\xb3\x7e\x8f\x87\xa9\xe4\x8b\x90\xab\x2f\xc4\x61\x2b\x65\x84\x40\x9d\x8b\x30\x40\x46\x20\x27\x9f\xff\x88\x77\x23\xe8\x38\xbc\x8a\x4b\xf9\xdd\x70\x48\x45\x55\x48\xcd\xc3\x19\x6f\x74\xba\x43\xec\x02\x80\x47\x4f\xd0\x67\x0a\x02\x5f\x93\xdc\x82\x31\xc2\xd4\x1b\xee\xcf\x50\x37\xed\x25\xb4\xab\x75\x96\xb1\x81\x62\xe4\x8d\x30\x95\xa3\x4c\xf7\x47\x4c\xc1\xd6\xa9\x1d\x78\xcd\xa6\xe3\xb6\x68\x80\x58\x7a\xbc\x16\x4e\xd0\xc0\x69\x91\x5e\xbd\x24\xb7\x47\xde\x4e\x85\xb5\xea\xa8\x20\xec\xa9\xa6\x6f\xc8\xdb\x5b\xa4\x71\x0e\x62\x7b\xba\xaa\xb2\xa9\x12\x86\x54\x4e\x14\x5d\x55\xd9\x94\xd3\x55\x95\x4d\x1b\xa2\xe5\xd8\x18\x11\x73\x17\x4f\xef\xf2\x0c\x17\xe8\x2c\x32\xc5\x7c\x86\x01\x2b\x5d\x89\x8d\x70\xaa\x49\x8a\xc6\x8a\x70\x90\xa4\xac\xc1\x1e\xde\x30\x58\x01\x0b\x45\x6e\x3e\xdd\x7c\xff\xfc\x1b\x90\xb0\x2f\xbf\x85\xff\xdb\x6d\x71\x1f\x86\x72\xf5\x23\xf1\x06\xb0\xbf\x6d\xf1\x37\xc1\x1f\x28\x19\x03\x44\x71\x60\x6b\x41\xca\x05\x2a\x89\xba\x92\x43\x80\x07\xe9\x2c\x41\xa7\x5e\xc1\x9f\x04\xa2\x9b\x1a\x08\x3d\x28\x6e\x36\xff\x1d\x74\x42\x5e\x20\xf4\x16\x34\x81\xe0\x36\x09\x1d\x03\x78\xe0\x88\xbc\xc2\xf8\x7a\xd9\x76\xf5\x6b\xdd\x3e\xc1\xe4\xec\x7c\x85\x12\x99\x1c\xf3\x53\xfd\xd2\x4f\x5a\x7d\xec\x28\x7d\x32\xc2\x39\xc5\x45\xe7\x1f\x1e\x43\x31\x9e\x77\xa7\x6b\x9f\x11\xf0\x05\x00\x8d\xe6\x14\x29\x0a\xed\xe3\x02\x31\xd5\xe1\x75\x96\xbd\x48\xf7\x49\xca\xdc\x9a\xb0\xd3\x9b\xa6\xc4\x3b\x1c\x12\x24\x8a\x52\xe4\xfb\x70\x16\xd1\x84\x43\xe2\xf7\x21\xbb\x68\x4f\xb8\x9a\x3d\x89\x3a\xf7\xdb\x62\x3a\x03\xd9\xf7\xdd\x3a\x30\x41\xdb\x2d\x7a\xa8\x1d\x8f\x81\x50\x83\x9c\x5d\x09\xe8\x1a\x12\x22\x2d\x44\x89\x79\xd5\xf5\x42\xff\x24\x3b\x08\x5d\x27\x9a\x85\x41\x41\x6a\x7e\x24\xb3\xa6\xeb\x4d\xd8\x54\x01\x72\x03\x80\x60\xc0\xb5\xc2\xb1\x9b\x46\x60\x71\x02\xa3\x4a\x4b\x31\x14\x25\x93\xb4\xf2\x82\x93\xbd\xd4\x35\x85\xaa\x06\x13\x82\xd8\x82\xba\x76\x9b\x74\x3a\x6c\x9e\x3f\x4d\xd1\x54\x8f\xe4\x8d\x80\x55\x6e\x18\x28\x51\xb8\x6f\x53\xe7\x3f\x59\xff\x8c\x0c\x72\xa5\xbd\x9e\x5c\xa2\x10\x38\x3b\x50\x04\xce\x9e\x85\x46\x27\xe3\x67\x8d\xef\x2f\x73\xc2\x8f\x34\xaf\x86\x14\x49\x30\x4e\x38\x9d\xa0\x84\x65\x6c\xcf\xba\xff\x46\x00\xb6\x9d\x00\xcc\x55\x19\x1e\xa4\xa0\x5b\x19\x64\xb0\xb4\xf9\x0f\xd3\x2e\x5a\x65\xea\x11\xcd\xee\x86\x43\xcd\x78\x4f\xb8\x4b\x3f\x9b\xf2\x65\x6b\x74\xd5\x36\xf5\x65\x5c\x9e\xf7\x7d\xd4\xb2\x93\x02\xfe\x57\x38\x43\xcb\xab\x6b\x28\xaf\x64\xc1\x76\x3b\x38\x03\x3a\x5e\xdb\x9c\x18\x8a\x0a\x90\x3c\xa2\x9e\x6b\x24\xe6\x8d\xaa\x21\xd2\x71\x53\xfe\x6d\x5c\x41\xbd\x9a\xde\x1e\x2f\xf3\xc6\x9b\x13\xf5\x1e\x96\x20\x3f\x89\x50\xc2\x74\x05\x0c\x6d\xea\x24\xfc\x76\x20\xcf\xea\x15\x05\x0d\x02\x49\x20\xb0\xa4\x02\x18\x98\xd4\xdd\xd0\xb3\xbd\xaf\x4c\x07\xde\x36\x17\x34\x3f\xf1\xf6\x9c\x2d\x3f\x45\x40\x4e\xe8\x3c\x02\x61\xb0\x48\xe6\x86\x51\xc6\x3e\xdd\xb4\x87\xbf\x68\x03\x8c\x18\xac\x8a\x0c\xf7\x60\x4f\x6c\x3b\x1f\x96\xcc\x1d\x05\x5b\xa4\xba\x2b\x94\xac\xf4\x10\x11\x4b\xd7\x1a\xe0\x6a\xd1\xe7\x6b\xfb\xab\xb7\xa8\xd8\x26\x0f\x81\xff\x23\xcb\x00\x57\xe8\x48\x12\x43\x5c\x62\x39\xda\x8e\xf7\x46\x01\x70\xfc\xfb\xe7\x3f\xf0\xff\xcb\x3f\xd0\x32\xef\x1d\x30\x86\x3f\xa3\x8d\x5e\x7f\x3a\xec\xdb\xef\x9f\x3f\x83\x8c\x43\x03\xff\xfb\x13\x05\x95\xef\x9f\x3f\x7f\x35\xef\xfb\x76\xba\xdb\x45\x3f\x70\xe8\xb4\x5e\x5f\xf6\xed\xf6\x7e\x52\x60\x25\xae\x11\xba\x06\xca\xf1\x69\x9c\xd4\xfd\x29\xe9\x02\xf0\x12\x3f\x16\x6d\x05\xcb\x30\x9d\xb0\x2e\x1e\x97\xed\x4f\x83\x2d\x56\x10\x25\x4b\xd7\xdd\x33\x01\xab\x17\x94\x3c\x83\xa2\x9a\xb0\x20\x3d\x29\x54\x22\x1e\x8a\xee\x01\x3c\x59\xf7\x80\x9c\x5c\xd9\xe3\x91\xf1\x38\x57\x34\x7a\xce\xb7\xe5\xcb\x48\x8e\x56\x8e\xb2\x08\x76\x81\xe6\x5b\xa4\x49\x78\x24\x45\x37\xf4\xc3\x2b\x66\x8e\x0d\xa6\x89\x4e\xf7\xaf\xa0\x3b\xc3\x51\x87\xc9\x18\xb6\x46\xf3\x00\x47\xd9\x98\x06\x83\xc7\x06\xdf\xd6\x80\xf5\xcc\xd7\xfd\x72\x41\x76\x36\x65\x69\x3a\xbf\xd0\xcd\x69\x20\x03\xb0\x12\x10\x0f\x77\x43\xd7\x81\xf4\x37\x96\x84\x49\xf5\xf9\x4f\xb0\x4e\xa2\xda\xbc\xd0\xff\x3d\x20\xc5\xc2\xc0\x34\xc9\xb8\xc2\xf6\x8e\xfe\xa3\x51\xc7\xe8\x6d\x4e\xc6\x63\xb0\x3c\x5a\x15\x18\x3e\x05\x8c\xda\x1b\x36\x02\xcb\xe4\x63\x6c\x9f\xcb\x99\x30\xf1\xcf\x8e\x56\x78\x67\xfa\x7b\xd3\x44\x11\x74\xd4\x3c\xd0\x72\x0c\x75\x11\x40\x08\xf0\x84\x5c\x0c\x24\x10\xb3\xb0\x70\x63\xb8\x3d\x77\xd6\xbd\xbf\xab\xdb\xb6\xbf\xb5\xaf\x88\x44\xd9\x0c\xe7\xd8\x7c\x65\x9a\xf6\x6c\x1b\xca\x61\xac\xaa\xd2\x58\x62\xc7\x7a\xdd\x54\xed\x19\xa3\x36\x60\xfa\xe6\xd3\x0d\xc5\x1e\x4a\x44\xb6\x16\xfd\x1e\xd3\x2a\x05\x32\xa2\x33\xe7\x32\xe5\x2a\x73\x74\x18\x97\xaa\x34\xcf\x6d\x4d\xa4\xff\x68\x9b\xaa\x68\xaa\x45\xab\x65\xdd\x2e\xea\x3e\xdb\x26\xf4\x3a\x19\x00\x97\x6d\x53\x82\x1d\x2b\xc6\x76\x85\x93\xb3\xad\xc9\xfa\x93\x67\x82\xa8\xef\xfb\x0b\x18\x86\xa4\x51\xaf\xf3\xe7\xd0\x7c\xdd\xca\x28\x5f\x43\x8f\x60\x76\xbb\xa1\x24\xa1\x7b\xe8\xfe\xb6\xe1\xa8\x42\xef\xcf\xe1\xf7\xfb\x72\xf1\xd5\xfb\x4e\x7a\xf5\xc0\x4b\xa1\xfd\x37\x9b\x26\xf4\xc6\x75\x6d\xe3\xd8\x79\xef\xec\x28\x0e\x1c\x2d\x82\xd0\x30\xd1\xe2\x90\xac\xe2\x61\xfa\x64\xbc\x88\xf6\x84\xd2\xff\xf9\xe7\x3f\x9b\xdc\x0c\x02\x46\xa6\x21\xbd\x6a\x16\x5b\x09\xcf\x32\x1f\xdd\x08\xb6\xeb\x03\xec\xdf\x5e\x9f\x48\x2b\xa7\x3d\xac\xd4\x14\xed\x2c\x8d\xb3\xf3\x6d\x4f\xc1\xbc\x3a\xaf\xa2\xed\x0b\x15\xb3\xa7\x11\x92\xf4\x1d\x16\xe2\xfe\xad\x50\x86\x0f\x3b\xb8\x42\x4f\x51\x0e\x0b\x19\x5a\x41\xd4\x2d\x98\x31\x68\xdb\xcc\x4d\x41\x11\x44\x03\x41\xec\x06\xa2\xef\x31\xd2\x13\xe4\x98\xab\x7a\x2c\x16\x0f\x33\xc0\x09\x2d\x11\x4d\x96\xd1\x59\x49\x54\x44\x42\x03\xce\xb2\x63\x19\x4d\x4e\xe1\x27\x85\x2c\x4e\x56\x10\xb6\x0d\xf9\xed\x22\x60\x16\x49\x9a\x04\xd8\x40\xe0\x5a\x6c\x5d\x89\xb9\x77\x32\x7e\xee\x0d\xac\x64\x4b\xff\xd8\x7b\x71\x63\x6a\x8c\xa9\xc8\x0a\x16\x44\x51\x22\x96\x15\xa3\xea\xf3\x78\xc4\x49\x18\x79\xa3\x9e\xbf\xb8\x84\x92\x24\x87\x19\xdf\xea\x52\xaf\xb8\x78\x59\xbc\x79\x6d\x9d\xa7\x69\x20\x7a\xfd\x92\xbe\x29\xbc\x52\x1a\x52\xd1\x6d\x2e\x8e\x1d\x4c\x43\x6f\x8f\x17\x9c\x77\x98\x4e\xf7\xe0\x16\xc1\xc1\xcc\xc2\x87\x3c\x5b\x46\x07\x26\x51\x6d\xe5\xf8\xf9\x69\xea\x81\x1a\xba\x48\xb1\x25\xf1\xf6\xb0\x4d\xc5\xf7\xa2\x81\x34\x29\x48\x1a\xe2\x94\x9e\xcf\xad\x18\x95\x34\x8e\x34\x1f\xe6\x08\xc0\x59\x57\x98\x38\xe3\x23\x93\x6e\x14\x22\x32\x78\x08\xb6\x57\x0a\xb8\x09\x2e\x26\x81\x7d\x9c\x64\x72\x04\xa8\x61\xbe\xe6\x70\x16\xc4\x40\x98\x85\xfb\x97\x23\x41\x97\xe5\xc7\xff\x85\x25\x18\x48\x39\xf0\xd7\xb2\x4a\x18\x48\x49\x75\x1d\x5a\xd6\x50\x4c\xce\x18\x79\x94\x93\xc8\x5c\x25\x5a\x22\x60\x65\x6e\xb5\xd7\x0f\x40\xdb\x52\x7f\x4c\x79\x7f\xa4\xf5\xac\xe4\x22\x51\x82\x1b\xaf\x64\x5a\xc5\x8f\x76\xe8\x8a\xad\x89\x9e\x9d\xe2\xd7\xba\x34\xfb\x21\x46\x2c\x85\xf5\xac\xc5\x92\x62\x72\xa1\xd2\xe3\x8b\x84\xc0\x2d\x56\x30\x27\xa3\xfa\x67\x6f\x9c\x4f\x7d\x42\x1c\x24\xda\x92\xc7\xd9\x16\xea\x6c\x87\x86\xd7\xee\x3b\xdd\x46\x45\x0d\xa5\xe5\x5e\x11\xaf\x86\xd4\xa6\x37\xfa\xcc\x21\xac\xc8\xb1\x1b\x1a\x81\x8b\xad\xf3\x7c\x15\x5a\x8f\xe1\x49\x1d\xa2\xc8\xe0\x42\x57\x31\x05\xfb\xb8\xba\x89\x81\x4c\x15\x60\xbb\xe0\x51\xf2\xec\x4e\x1b\xa6\xaa\x2d\x7e\x41\x38\x30\x03\xe6\xdd\x3d\x25\x6a\x8a\x48\x81\x05\x84\xf7\x91\x92\xbb\x01\xc5\xd4\x2e\xfc\xf3\x5a\x26\x77\xaf\xac\xab\x44\x8e\xd6\xf2\x1e\x37\x2f\x12\x12\x50\xee\x64\x7c\x9e\x22\xaa\xe4\x29\xa9\x62\x53\x9d\x42\x8e\x17\x22\xc7\x61\xf0\x0f\x13\xc9\x49\x48\x0a\xbe\x9e\x9a\x3c\x0e\x75\x9d\x8c\x41\xc4\xaa\xe9\x52\x97\x77\xa2\x83\xe1\xa3\x18\xae\x48\x36\xa9\x90\xf9\xe2\x2a\xb0\x0b\xd0\x48\x85\x47\x89\xa1\x05\x39\x6e\xdd\x10\x5c\x42\x28\x0c\x15\xc2\xfd\x77\xc5\x7c\x01\x08\xf2\x81\x8f\x18\x7a\xe2\x3d\xe8\x53\x40\x67\x4f\xb8\x95\x55\x02\x05\x64\x70\x4a\x7e\xd8\x59\xbf\xdf\xc9\xbb\x1b\xc0\x30\x09\x6f\x0a\xaa\xd7\xf0\x98\x62\xb1\x50\xfb\xd9\x4e\x58\x7d\x51\x67\x60\x86\xc7\x0f\x76\x58\x61\xf5\x05\xe6\x61\xe4\x55\xe9\xd3\x30\x90\x75\xa1\x60\x91\x1e\x9a\x52\x0f\xa7\x67\x3f\x7b\x0f\x2c\x31\xf5\xcd\xd1\x22\x38\xf2\x7b\x07\xd6\x1a\xc0\xbe\x10\x53\xa1\x10\xd6\x37\xdc\xbc\x99\xad\x28\xfe\xd7\xd5\xa2\x60\x52\xe2\x5e\x6c\x97\xc2\x72\x9e\xdd\xbe\x45\xab\x50\x87\x83\x7f\x3e\xeb\x9e\x23\xdd\x71\x88\x4c\xf0\xd3\x19\x6a\x39\x08\x88\x81\xb6\x29\x76\x3b\xe8\x70\x16\xe7\xd3\xa7\xf7\x43\x13\x38\x35\x1e\x17\xbe\x7f\x2b\xb9\xb9\x5a\xfb\x64\xf4\x49\x51\x35\x55\xfc\x42\xf9\x7d\x14\x31\x22\xd6\x20\x9b\x08\x46\xd4\xec\xbc\x02\x44\x0b\x3e\xa4\xcd\xfe\xad\x50\x50\x39\xe8\x5a\xf4\x58\x28\x73\xe0\x6f\xf6\x6f\xba\x8b\xc8\xdc\x31\x9c\xbe\x3c\xcd\x1a\xda\x9d\x40\xb3\xbb\xa0\xc8\xc5\x2a\xde\x0a\x02\x70\x7d\x8e\x96\x85\xc0\xf5\x8b\x38\x9e\x30\xab\x0f\x17\x6f\x1c\x5b\x45\x0b\xdb\x34\xf0\xa5\x98\x90\x0d\x58\x6f\x7c\x3a\x8b\xec\xef\xfe\x44\x85\xdb\x9f\xe9\xb4\x84\x65\x6f\x25\x30\xfb\x51\x38\x02\xee\x67\x6d\xcc\xf6\xe6\xa4\xfb\x6a\xfa\xd7\x4b\x71\x3e\xd8\xd3\xd0\x42\x5f\x96\x22\x9b\xee\x3b\x1f\xd8\xc8\x44\x8b\xba\xd6\x31\xca\xc9\x00\xbe\x2b\x67\x52\xb5\x8e\x9b\x7c\x4e\x70\xae\x31\xbd\x85\x87\x7f\x58\xed\xd6\xba\xfe\xea\xaa\xf3\xb1\x8d\xd0\x6f\xac\x15\xcc\xfc\xf8\x4c\xb2\x69\x7a\xa6\xc0\xa4\xc9\x53\x1e\x25\x0c\x4d\xc4\x5a\x20\x17\x06\xb4\x63\x64\x18\xaa\xb8\x23\x91\x39\xa4\x75\x1b\x5d\xbe\xe8\x93\xa9\x8a\xae\x23\x5e\x5c\x37\xf6\x88\x2b\xf6\x9c\x92\x9a\x2f\x93\xd5\x64\xf2\x08\x8a\x29\x8e\xd3\x83\xd1\xdb\x08\x56\x26\xe6\xf9\xe3\x62\x41\x42\xdc\x6b\xbb\x4b\x74\x07\xde\xb7\x53\x0e\x9d\x46\x61\xc2\xa7\xed\xf9\xac\x9b\x8a\xa2\x22\x1d\xdb\xf7\xb8\xf0\x39\x7e\x1b\x98\x39\x8a\xbb\x90\x25\xa3\x75\x47\x1a\x47\xf6\x33\x28\xe1\xb6\xca\xb8\x17\xdf\x76\xab\x50\x91\x24\x5a\x6c\xe4\x2b\xcb\xa0\x43\x4b\x72\xae\xa6\x0f\x72\xc6\xef\x31\x32\x3b\xac\x0a\x10\x6c\x87\x3e\xd8\x42\x2c\x53\xe6\x5d\x13\x76\x19\x83\xe2\x8a\x08\xee\x50\x23\x0a\xe6\xf8\x82\x82\xad\xe9\x15\x8e\x12\xb0\x8c\x68\x0f\x45\x74\x39\x71\xda\x24\xf7\x49\x24\x1d\x82\xc8\x39\xd3\x54\x1c\x97\x67\xde\x1c\x5b\xd8\x92\xdb\xde\x7f\x86\x8a\x22\x50\x71\x23\x29\xc7\x02\xc3\x47\x63\x42\xa5\xd3\x2f\x3d\x25\xa1\xa9\xc4\x89\x15\x36\xac\xd4\x82\xee\x4f\xaf\xe9\xdd\x36\x28\x9f\x0e\x8f\xfd\x02\x64\x66\x2c\xb6\x38\x19\x7f\x77\x25\x26\x3f\x19\x7f\x8d\x89\x54\x66\x46\xcb\x27\x33\x32\x89\x3e\x21\xe4\x5c\x9a\x66\x77\x32\x86\xf3\x41\x3b\x83\x22\x0b\x8a\x58\x0d\x8e\xea\xc8\xcd\xb9\x67\x8a\xc4\x8e\xcc\xc0\x2b\x35\xc1\x11\x2d\xb2\x6e\xbf\x81\x88\x8b\x74\xa2\xc5\x61\x89\xc7\xdf\x9b\x4f\x37\x0c\xd7\x8d\xe6\xd2\x88\xdc\x8d\xfe\xb1\x4a\x28\x81\x55\x8a\x92\xb4\x1e\x88\xe4\x7f\xc3\xa8\x1f\x31\x03\x71\x3f\x62\xee\xa1\x53\xb4\x49\xbd\x7b\x50\x7b\x28\x7c\x02\x1a\x12\x46\x8b\xc2\x83\x6d\x58\x85\x33\x49\x49\x5d\xfb\x7b\xb6\x10\x23\xfb\xf7\x40\x9d\x39\x66\xe1\x73\x7b\x36\xdf\xcc\xc5\x45\x9f\xff\x4e\x9f\xf2\x82\xd2\xf7\xf5\xa6\x1e\xdc\xd2\x36\x83\xfb\x8f\xe9\xdb\xff\xb4\x70\xfa\x0e\xe5\xd3\x69\xdb\x5d\x28\xfd\xc8\x4d\x5e\x09\x8d\xa5\x95\xfe\x2e\x1c\x86\x27\xc2\x66\x3f\x82\xea\x08\x05\xd1\xd9\x78\x0d\x15\xd1\x6d\x8c\xb6\x8b\xa5\xf1\xfa\x11\xbf\x08\x2e\x3e\xe1\x9a\xd3\xb5\x8f\xb0\xea\xba\xf6\xb1\x6d\x2c\x94\x8f\x42\xb0\x7f\xe8\x5b\x83\x81\xa7\x2b\xab\xc3\xb7\x16\xbd\xb9\x23\x04\xfd\xc0\x80\xdb\x76\x70\x85\x78\x88\xc2\x5e\x2e\xa2\xc0\x6e\x5a\xac\xa6\xe0\x35\x10\xf6\x74\xb0\x30\xd9\xce\x37\x71\x3b\xba\xf9\x74\xf3\xea\x59\x6d\x5a\xd7\x62\x56\x0c\xcd\x75\x59\xdb\x3c\xee\xc3\xb3\x7d\xdf\xbe\x18\xde\xf9\x18\xcf\x3d\xc5\xe4\xc1\xe3\x4a\xd1\x75\xab\xb6\x99\xfa\x1e\xd1\xdf\x89\x85\xa4\xe9\x70\x0b\xa2\x50\x4c\xb8\x14\x90\xba\xc2\xf7\x8e\xa8\xed\xb0\x29\x52\x27\x93\x55\xab\x6d\xd8\xae\xe1\xc5\x5c\xa6\x30\x99\x5e\xd2\x1b\x82\xc0\x91\x08\xe0\x59\xbb\x97\x5d\x0a\x95\x90\xa2\xd5\xd0\xe4\xa3\xe5\x1b\x33\xe7\xb6\x12\x33\x93\x38\x6f\xba\x4c\xaf\x9d\xb8\xb9\xda\xba\xe8\xbe\xfd\x4d\x5e\xc8\x32\x0e\xd0\x20\x20\xde\x6b\xd6\x1c\xd0\xbc\x08\x0d\x1a\x6d\x0c\x40\xd8\xf9\xcd\x5c\x04\x6c\x28\xa2\xa9\x32\x87\x4c\xd7\xe3\x27\xa6\x16\x9d\x78\x19\xfa\x4c\x5d\x55\xdf\xb8\xa7\x63\x1a\x75\xbd\xe1\x3b\x61\xeb\x86\x8d\xdf\x63\x17\x57\xbc\x86\x71\xd5\xc5\x25\xfd\xb5\x45\x8a\xae\x6b\x6f\x92\xd3\xf0\xd7\x96\x08\xca\x37\x73\x99\x35\x48\x9e\x10\x32\xbd\x89\x0d\x6d\xf4\xc9\x20\x41\x48\x2e\xc0\xe0\x50\x85\x54\x84\x77\x02\xaa\xc9\x54\x25\xd5\xa5\x0f\x81\x1a\x45\xdf\xb7\x6f\xb2\xb1\x85\x6d\x44\x63\x70\x39\x6f\x21\x54\x88\x2d\x80\xe1\x25\x30\xd4\xb6\x33\x14\xcd\xcf\xe1\x15\xdf\xd7\xab\xe1\xcc\x3a\x12\xca\x1e\xc8\x17\xbb\xa8\xbd\xb8\x88\x39\xbe\x16\xd6\xac\xb8\x48\x59\xbe\x1a\x1a\x9a\x2a\x09\x33\x41\x07\x7c\x19\xc9\x5b\x06\x15\x2e\x8e\xde\xf4\x4c\xa4\x28\x24\xf1\xbe\xe5\xee\x84\xf7\x52\x1c\x58\x99\x79\x12\xc8\x44\x7e\x04\x6b\x3d\xaa\xf4\x76\x90\x1c\x7c\xba\x01\x32\xe2\x86\x50\x6b\x9a\x6e\xa0\x7b\x33\x1a\xaa\xf0\xbd\x03\x29\x45\xa9\x13\x18\x2a\x77\x09\x3c\x95\xf9\x8b\x0e\xf4\x40\x6f\xb6\xae\xca\xc0\xbd\x32\xd0\x0c\x21\x96\xc7\x19\x8a\x87\x01\x5d\xfa\x25\x61\x1f\x9c\xdb\x28\x88\x11\x11\xcf\xe0\xc4\x0e\x9d\xa1\x07\xdf\x4e\xc7\x0e\x55\xb8\xc9\x3e\x46\x78\x49\xd2\xd4\x3d\xda\xca\xb4\x57\x31\x7e\x71\xef\xe7\xb3\x1b\xda\x2d\x45\xf3\x1d\x27\x5e\x92\x28\x6b\x38\x4b\x31\x03\xed\xdb\x17\xd3\xf0\xe2\xdb\x53\x66\x28\xf9\x8d\x9f\xb5\x13\x71\xe9\x53\x8c\x0a\x94\x79\xbd\x92\x2d\x8a\x8e\xf4\xb8\x33\xe6\x25\xa9\x30\x8c\x79\x99\x4b\x3b\x22\x28\x40\xcd\x60\x0c\xcc\x9c\x5d\x47\x6f\xd7\xe4\x5e\xea\xcc\xa8\x7a\x22\x3e\xff\x1d\x5a\xf2\xdb\x93\x22\x29\xae\x17\xb7\xab\x92\xc6\x29\x74\x0d\x9e\xa9\xc2\x2e\xf1\x75\x7e\xb7\x0f\xbb\xc7\x1e\x58\x91\xe9\x7a\xb5\xdf\xae\x17\x70\x46\x86\xa0\x8a\xb3\x3d\x9a\x3b\x4e\x8b\xcd\x2c\xb0\x8a\x81\x53\xbb\x0b\x7c\xd3\xdd\xef\xe1\xe7\x1f\xe1\xe7\x9f\xe1\xe7\x8f\xf0\xf3\x3f\xe1\x27\x1c\x7b\xee\xfe\x17\x2a\xff\x06\xbf\x70\xcf\xe7\x70\x13\x5a\x8c\xec\x9f\xd6\xe1\xf7\xeb\x76\x06\x4d\xae\x1f\xb6\xe1\x6f\xfe\x38\x03\x97\xb8\xef\xe1\x77\xf6\x38\x03\x43\xcd\xf9\x3d\xb8\xcf\xad\x10\x7a\xf1\x3f\xb3\x6d\xb8\x73\x52\x4c\xbf\x81\xd5\x75\x48\x7f\x03\x6b\xcd\x7d\x81\xd6\x9d\x9b\x9d\x5a\xac\xc1\x32\x34\xa4\x45\x12\xec\x46\xf7\xb3\x2d\xfe\x07\x66\x78\xb6\x7f\x00\x6c\x83\x2d\x38\xba\x70\x7b\x9b\xed\x7c\xb5\x57\xbb\xe9\x76\x06\x2f\xb0\xd9\xee\xc1\xe4\x72\x37\xdd\xae\x17\x0b\x6e\x7b\x37\xdd\x2e\xc2\xff\x64\x3b\x2b\xf0\xff\x1b\x58\x2f\xec\x66\xdb\x3d\x26\xc0\x74\x74\x09\x0d\x16\xf7\x33\xf5\x00\x16\xa5\xf7\xf0\x77\x3b\x5b\xcc\xf6\x60\xb7\x0f\x9e\x7e\x70\xfd\x76\xfd\x04\x4f\xbb\x4f\x89\xf0\x87\xf5\xb1\x68\x4b\x5d\xb1\x98\xc1\x78\xad\x1e\x96\xf4\x32\xdf\x36\xbf\xc1\xef\x67\xf8\xfd\x02\xbf\xbf\xc3\xef\x3f\xe0\xf7\x9f\xf0\xfb\x07\xfc\xfe\x0f\xfc\xfe\x09\xbf\xff\x0b\xbf\x6a\xb3\x00\x9b\xd7\x6f\x1b\x55\xdc\xde\x62\x62\x39\x5f\x71\xd9\xee\x61\xb2\xdf\x16\xd3\x3d\xe5\xf6\x60\x08\x1f\xaa\x3c\x2c\xf6\xf3\xcd\xe2\x07\xe6\x6e\xe7\x8f\x73\x70\x45\x08\xe9\xd9\x74\xbe\x2c\x16\xd4\xf8\x6c\x3b\x5f\x83\x3f\x63\xf1\x38\xbf\x2f\xf6\x33\x35\x41\xbb\xdd\x98\xbf\x5b\x6f\x9f\x8a\x2d\xc4\xf3\x9c\x2d\xd6\x60\x73\x7b\xf7\xb0\x58\xa4\x11\x78\x9a\xaf\x6e\xd7\x4f\x6a\xfd\x38\xdb\x3e\xce\x67\x4f\xd0\xdb\xa1\x2b\x56\xb3\xdd\x0e\xfb\x55\xe4\xa9\xaf\x90\xdc\x4a\xcb\xf7\xae\x6f\x8f\xb6\x36\x73\xa1\x93\xc8\x45\xf2\xa5\xf6\xe6\xd4\x92\xd1\x4b\xd1\x75\x46\xf7\xb4\xa2\x03\xa1\x66\xda\xb2\x0b\xdc\x7f\xa8\x21\xed\xa5\x04\x8f\xb8\xb4\xae\x34\x75\xad\x1b\x43\xe7\x69\x6c\x35\xec\xc7\x60\x3e\x89\x94\x61\x33\x1c\xd0\xdc\x2d\xec\xea\xe6\x59\xbf\x5a\x0c\xf4\x3d\x1c\x1c\x14\x3b\x81\x28\xe1\x06\x56\x22\x0e\x8d\x2c\x07\x9b\x0a\xc7\x47\xf1\x5a\x67\x0e\x2a\x78\xba\x24\xf1\x14\x02\x29\x44\x42\x5b\x0f\xe7\x86\x29\x76\xdf\xbe\x09\x5c\x9c\x78\x45\x11\xea\x6d\xa6\xdd\xda\x8f\x0b\x90\x2e\x6f\xdb\xb7\x55\x5b\xe1\x41\x10\x3d\xbf\xb3\x1c\x9a\xfb\x2a\x82\xb4\x9a\xf4\x46\xbf\x20\x74\x21\x4a\x57\xf2\x42\x76\x38\xcf\x4b\x97\xb6\xaa\xd8\x39\x24\x1d\xa5\xe2\xce\x86\xa1\xc2\xc5\x47\x45\xf7\x3b\x89\x91\x11\xb8\x43\x44\x7b\xe6\xa4\xc3\x2e\x4d\x17\x52\xc6\x21\x86\xc4\x96\x8e\x92\x1d\x17\x0d\x80\x8a\x90\x52\x2e\x7a\x30\x61\x71\x4c\xbb\xa8\x9e\xd8\x12\xa2\x0f\xa5\xf1\x0e\x06\x24\xbd\x7a\x4d\x8e\xbc\x8d\xfd\x1a\x77\x7d\x54\xb1\x63\x23\x52\x71\x68\x9d\xf0\xc4\x89\x10\xc2\xa0\xbb\x8a\x51\x37\x51\xd5\x23\xcf\x8a\xed\xf9\x6c\xc1\x03\x63\x9d\x24\x00\x3d\x8e\x22\x03\x8a\xb1\x6e\x87\x45\xf7\xef\x9e\xae\x92\x94\x10\x3b\x9c\x94\x9d\xcc\x70\x80\x0b\xa4\x3d\xd0\xa2\x80\xd8\x79\x11\x40\x4d\xa3\xb4\x8c\x99\x9d\x24\x28\x99\x83\xda\xbc\x92\xf2\x12\xf0\x67\xe5\x59\x04\x01\x4e\xf9\xe1\x75\xdb\x18\x4a\x87\x07\xef\xd8\xb2\xe3\xac\x2f\x87\x70\x7a\xee\xa6\x31\x4e\x51\x1c\x8d\xb8\x85\xa6\xd9\x99\x65\xf6\x6c\xd9\x02\xdd\x17\xad\xd3\xdf\x48\xde\x95\x21\x41\xbf\x95\x74\xbb\x76\xa5\xb5\x94\xf6\xb6\x66\xf8\xa6\xf0\x52\x74\xa2\x09\xa5\x54\xe1\x8d\x3d\xe3\x80\x27\x32\x4e\x0e\x06\x1f\xec\x52\xbf\x35\x86\x47\xa2\x7d\x35\x3d\x22\xf3\x88\x4f\x80\xde\x67\x21\x03\x8e\x81\xcb\xe0\x79\x4d\x23\x7c\x53\x02\x63\xc3\x1d\x96\x06\xd1\x9c\x3b\x7f\xa1\x34\x05\xb0\x63\x80\x75\x14\x09\x38\x39\xc9\xa8\x46\xe8\x27\x85\x33\x85\xba\xec\x64\xfc\xf7\x6d\xfb\x56\x04\x02\xea\x5b\x60\xb9\x43\x07\xac\xa2\xea\x89\x27\xf6\x93\xf5\xcf\x3c\xd7\x14\x46\x4d\x81\x3b\x70\x98\x46\x15\x6d\x43\xaf\x41\x1f\x9b\xde\x33\xa4\x8a\xa6\x5a\x53\x78\xa5\xbc\xcd\x8f\xae\xc7\xa6\x1a\x1a\xe7\x04\xa9\x8f\x78\x8a\x8a\x7b\x2f\xbb\x15\x3b\x71\x5c\xe4\x8c\x4f\x91\xd6\xfc\x8c\xc0\xcf\x3b\xdd\x54\xa3\x60\x6d\xd0\x32\x78\xde\x12\x2c\x73\x1a\x6d\x28\x90\x54\x29\xe4\xe5\x43\xc5\x35\x00\x72\x4e\xb7\x1a\xf1\x2a\xb5\x39\x46\x8e\x9a\x50\xe1\x30\x63\x1b\x67\x2b\xc3\xb9\x1a\x8e\x4d\xfb\x96\x5d\xc2\xc3\x6d\x5b\x73\x1a\x6a\xdd\xcf\xde\x21\x0c\x26\x3d\x09\xbe\xc2\x54\xe9\xf3\xc8\x13\x13\xf0\x0e\xfa\xf6\xcc\x0d\x10\x6e\xdd\x75\x0b\xc7\x08\x06\x8f\x2d\x61\xef\xe8\xaa\xe2\x3b\x29\xf0\x13\x0a\xde\x7a\x30\xaf\x64\x0b\x42\x91\x53\x52\xf0\x42\x94\xbe\x1f\x6a\xbc\x20\x7b\x39\x85\x23\x0b\xa3\x04\x48\x84\x4a\x2c\xa6\x71\x39\x85\x0a\x03\x28\xa3\xca\x3f\xe7\x45\xb8\x8f\x64\xa7\x37\xf2\x84\xe3\x7a\x5b\x0a\x75\x9e\xce\x9b\x10\x22\x8a\x70\xa7\x2d\xbe\x5e\x0c\x4e\x86\x66\x16\x1c\x81\x0a\x7b\x82\x75\x2b\xc4\x90\xe0\x11\x6d\xf3\x9e\xb4\x26\x64\x43\x31\x79\xb8\x17\xc7\x62\xec\xad\x94\x89\xb3\x15\xd7\x8d\xe1\xd0\x07\xd6\xc1\xab\xd4\x0c\x08\x09\x78\xc4\x89\x86\x47\x14\x45\x50\x5f\x17\xa0\xb0\xc5\xb8\x45\x77\x84\x1d\x89\x39\xda\x1d\x79\x39\xc0\xb0\x96\xd0\x99\x69\x41\x70\x21\xdf\xd9\xb7\x6f\x7c\xd4\x80\x7d\x83\xea\x54\xf6\x35\x34\xd5\x97\xac\x39\xb2\x3f\x61\x20\xaa\xb6\x4c\xb2\x5a\x71\x3a\xee\x30\xd8\x0d\xe2\x84\x51\x26\xda\x4b\x3f\x1b\x10\x63\x0e\xce\xf4\x53\xe7\x16\xb6\x01\xc5\x2d\x65\x99\x2a\x21\x54\x03\x59\xbd\x40\x8f\xc9\x34\x8c\x17\x49\x2b\x79\x8c\xda\x26\xf0\x75\x74\x08\x0e\xdc\x1d\x26\x27\x6d\x75\x11\x72\x4f\xda\x17\x61\x7c\x7c\xdb\xe1\x24\x9c\x68\x90\x12\x1d\xe0\x0d\xb3\x22\xdf\x76\x77\x6d\x5d\xa5\xab\x9c\x4b\xf1\xf5\x42\xee\xfd\x5c\x23\x2c\xc9\xeb\x29\x99\x63\x90\x50\x16\x8e\x0e\xa0\x32\xd8\x83\xd9\xa4\x4a\x3d\x36\xab\x2c\x4b\xc4\x50\x6c\xbb\x49\xd5\x32\x29\xac\x1b\x49\x9a\x41\x69\x08\x11\xd5\x70\x1f\x79\x33\x87\x17\x8b\x07\x7a\x51\x8a\x36\x2f\xf9\xf2\x73\xc6\x3f\x60\x4f\xa3\xa5\x42\xca\xd3\x26\xe0\x3e\x92\x95\xbb\x8f\x64\xe5\x59\x21\x80\x1e\x82\x8d\x05\xfe\x1f\xae\xae\x64\xd5\xe9\x6d\x0e\xe3\x82\xac\x92\x20\x9e\x87\x8f\x0a\x03\x5f\x28\x25\xc2\x19\xc6\x98\xcc\x0b\x35\x90\xa4\x11\xb2\x64\x25\xc0\x71\x44\x80\x99\x6d\x46\xda\x5c\xf9\x6c\xaa\xa1\x36\x31\x90\x6f\xe2\xfc\x70\xae\x6c\xd3\xf2\x09\x43\x98\x15\xe0\xfc\xc9\x6b\x4c\xc6\x65\xa1\x5d\x12\x8c\x04\xe6\x52\x89\x87\xce\xe5\xb3\xba\xf7\x84\x5b\x3f\x1e\x62\xd0\xe4\xc5\x48\x7f\x81\xdc\xee\x3a\x4d\xca\xfc\xda\xf4\x13\xed\x4c\x20\x2d\xb1\x20\x8e\x05\x96\xdf\x70\x28\x40\x5c\xbd\x3f\x33\xd9\x11\xd3\x3d\x34\xcf\x2d\x33\x25\x5b\x0a\xae\x9c\x58\xf9\x4b\x53\x12\xf1\x16\xc1\xbd\xd2\xfa\xd9\xb6\x6f\xc2\x91\xe2\x64\x22\x69\x8e\x14\x80\x5e\xee\x35\xf6\x09\x5f\x4e\x25\x09\x4f\x3c\x95\xed\xdb\x6e\xa9\x7b\x0c\xeb\x98\x4a\xf1\x49\xf1\xc2\x19\x12\xf1\xf1\xb4\xd6\xe3\xae\x8c\xbd\x40\xe7\x9a\x9e\x87\x1c\x13\x8a\xe7\x4a\xa4\x16\xf0\x55\xe1\xd2\x3e\x91\x0c\x8c\x4b\x22\xc9\x06\x1c\xeb\x88\x8e\x23\xfb\xff\xd0\x78\x5b\x33\xe7\x09\x2b\x9f\x69\xae\xd1\x4c\xa2\xf3\xc0\x0d\x44\xd7\x05\x3c\x37\x96\x24\x02\x15\x9b\xc2\x00\x62\xd8\x61\x95\x48\x1f\x4d\x38\x9c\x89\x83\x5e\x98\xf1\x22\x8f\x23\x21\x0f\x10\xf8\x08\xda\x3d\x53\x2a\x2a\x89\xc1\xeb\x39\x2e\xa8\xb6\xae\x97\xfa\x7d\x34\xce\x12\x35\x72\xa9\xdf\xc7\xe4\x3c\x3b\xc7\xbf\x9a\xc6\xa7\xe0\xcb\xf9\x3e\x7d\x4b\x45\x44\xfb\x39\x44\x22\x56\x1a\x0e\x5c\x48\x76\x65\xfb\x18\x3e\x11\x37\x08\x8a\x7f\xa7\xcb\x97\xa3\xad\x63\xbc\x3e\x0c\x92\x37\x2a\xc4\x5e\x10\x84\x31\xee\xf7\x49\x76\xc9\x4a\xd7\x1f\xb2\x06\xb2\x13\xed\xab\xe1\x50\x16\x7d\x0a\x17\x65\xa3\x49\x95\x94\x60\xc4\x34\xb2\x3d\x00\x18\xb6\x8b\x5b\x60\xf4\x28\x4b\x45\x09\x05\x80\xe9\x04\x79\xab\xe3\x3c\xc4\x8e\x14\x48\x02\xaf\x29\xb6\xaa\x12\x59\x9c\x9d\xe9\x74\xbf\x7b\xd6\x9d\x19\x65\x6f\x3e\xdd\x4c\x48\x32\x25\xd4\xa3\xa9\x12\x60\x53\x4c\x2f\x25\x5a\x5d\x9d\x2f\x6b\xd2\xc7\x41\x39\xed\xcc\x79\xc1\x28\x06\x8e\xba\x76\x63\x4a\x9f\xb8\x6e\xd6\x83\xe7\x6d\x90\x4a\xa2\x22\x6b\xc4\xc1\x81\x26\x21\x5c\xa4\x3e\x30\x5a\xc6\x05\x87\xd2\x83\xa9\xeb\x62\xa8\x6c\xcb\x19\xa9\x7a\x67\xd3\xab\x0f\x34\xf5\x13\x83\x1c\x08\x80\xc4\x90\xa8\x9b\xcc\x77\x38\x09\xe0\xc3\xf3\x75\x0c\x97\x8e\xa0\xe8\x12\xe8\xbc\x6c\xbb\xcb\x3a\x85\xba\x06\x17\x16\x10\x91\x80\xa2\x98\xb7\x31\x28\x86\xcc\x04\x22\x96\x23\x73\x44\x82\x01\x0a\x93\x81\x13\xb9\x37\xe0\xa2\xb0\x23\x6e\x2c\x59\x7b\x89\x81\x07\x24\xc1\x96\x4c\x95\xda\x86\x75\xf5\x5b\xa3\xab\x0b\x80\xa2\x15\xcb\x9b\x4f\x37\x0f\xab\xdb\xd9\x96\xc2\xe1\x78\x7d\x60\x92\xde\xf5\xe6\x88\xce\x1f\xe1\x36\x3e\x1d\x44\x96\x7e\xa9\xf9\x11\x6b\x0a\xb5\xee\xa4\xb8\x66\x92\xb0\xc8\xae\x90\xc5\x8c\x1f\x39\x3d\x60\x9f\xfd\x39\xb1\x18\x89\x08\xc3\x94\x5f\x9a\x72\xd2\xd6\xd5\x4e\x1f\x0d\xbb\x25\x63\xbd\x50\x5a\xb8\x49\x2f\xf6\x19\x78\x5a\x5e\x2b\xda\x67\xb0\x9b\x39\x16\xdf\x9a\x12\x64\xd7\xe1\xae\x8c\xad\x3a\xeb\x77\x3c\x9a\x0b\x2d\x5e\xa8\xb4\xbc\x1e\x11\x38\x32\x46\x29\x21\x84\x19\x44\x0d\x5d\xe0\x60\xc6\x0a\x8c\x43\xdb\x73\x04\xc6\x9b\x3c\x1c\x78\xc2\xe8\xe8\xc1\x2c\xec\xac\x9b\x8a\x4d\xf1\xca\x3c\xab\xfb\x53\x94\x1b\x98\xe6\xd5\xf6\x6d\x73\x8e\xf1\x66\xc8\x58\xa5\x6d\x66\xef\xd6\xb3\xba\x35\x11\x11\x1a\x04\xe7\x1e\x01\x46\x88\xad\x0e\x52\x74\x1c\x97\xe2\x24\x66\x7d\x1c\x3d\x61\x98\x49\x08\xa3\x81\x49\x8c\x2b\x16\x86\x46\xf6\x12\xe3\xbe\x9c\xd3\xba\xbb\xf9\x74\xb3\x5c\x3f\xec\x66\x6a\x3b\xdb\xac\xb7\x7b\x75\x3b\xdf\x15\x13\x34\x0a\x24\x3e\x37\x93\x42\xba\x0f\xca\x84\x18\x4d\xc8\xb8\x12\xe8\x20\x91\x29\x47\xff\xbd\x71\xe1\x35\xf0\xa2\x92\x86\x1c\xb1\x66\x8a\xe7\x9c\x0b\x50\x99\xdb\xda\x05\xde\x39\x93\xe6\xd1\x0a\x13\x31\x94\xe3\x76\x4a\xeb\x30\x1e\x46\x29\x9f\x4e\xa2\x72\xdd\xc5\xb3\x53\xd8\xc6\x32\x84\x43\xaf\x49\xa0\x88\x1b\x0f\xef\x3b\x91\xd2\xf3\xe3\x74\xd7\xe1\x59\xd1\xd1\x3b\x3d\xee\xc7\x58\x8b\x3c\xea\x07\x66\x6e\x7a\x83\x4e\x33\x7c\x17\x02\x1e\x90\x69\xf2\x87\xdf\xca\xe1\xd5\x73\x5a\x32\x1d\xe9\xee\x8e\x11\xc9\x93\xf0\xcf\xe4\x62\x47\x71\xd6\x21\x41\x6c\xa6\x3a\x29\x83\x61\xd8\x31\x2b\x42\x64\xc0\x11\x87\x04\x18\x00\x6e\xd1\xa1\xc4\xb1\x6d\x4a\x0c\xfb\x7a\x36\xcd\x80\xca\xcf\x30\xd5\x52\x2a\x9d\x1e\x59\xec\x86\x56\x30\xc9\x5a\x9e\xa0\xb3\xeb\xb6\x7c\x31\x51\xba\x1d\x98\xfd\x5c\x0f\x89\x8d\x30\x33\x50\x0a\x21\x2e\x38\x5b\xd2\x58\xc5\x09\x13\x81\x46\xa9\x35\x46\xf1\xbc\x92\x09\xb3\xe4\x58\x91\xef\x3e\x3f\xc1\xb7\xd2\x86\x31\x0e\x21\x01\xd7\xc0\x29\xbc\x12\xb3\x1f\x94\x9b\x8e\xc5\xab\x4f\xb6\x32\x81\x2e\x47\x12\x71\x4a\xd3\x02\x19\x2f\x51\x10\x59\x5e\x8a\x53\xe9\x67\x4d\xb5\x3e\x46\x52\xc1\xcc\x01\xa8\xe8\x8f\x6d\x7f\x26\x8c\x4c\x12\xa9\x0a\xb8\xf8\x52\x8a\x67\xaf\xbe\x99\x3a\xab\xd7\xce\xec\x5b\xe2\xa3\x29\xc7\x8a\x01\xd4\x60\x70\x58\x93\x77\x9e\xe1\x50\x8b\xa3\x15\x03\x5c\xe0\x01\xbd\xb2\x21\x33\x31\xd8\x03\x80\xc4\x17\x55\xd5\xaf\x66\x17\xa7\x0b\xc8\x89\x49\x09\x8c\x50\x7a\x95\xf8\x2e\xb2\x2c\x80\x11\x47\x54\xd5\xab\x31\x3a\x5d\xcd\xe2\x58\x42\x1f\x9b\x1d\x05\x15\x82\x7a\x47\xda\x70\xd6\xef\xc9\xd2\x10\xee\xa2\xcf\x6f\xcc\x1b\xde\xdf\x98\xb7\xd8\x34\x4d\x2d\xa6\x2b\xb6\x39\x11\x84\x73\xe0\x4f\x76\xff\x1d\x4c\x5d\x3e\x0b\x5b\x5b\x42\xc9\x3d\x70\x90\xda\xfc\x6a\x59\xb7\xd0\x43\x19\x63\xc3\x84\x62\x2d\x1d\x64\x9d\x21\x23\xad\x94\x2f\x3e\x52\xd7\x3b\x84\x4b\xd2\x29\xf6\x06\xaf\x94\x71\x71\xc1\x7c\xea\x52\x0a\xe5\xb3\x33\x70\xd8\x08\x71\xfa\xf1\x4e\x81\x65\xa1\x7f\x22\x76\x6c\xa4\x47\x64\x38\xf7\x9f\xb6\x3d\x3f\x69\x08\xf7\xa7\xe8\x48\x4a\x59\x5e\xbd\xa2\x28\x59\x09\x86\x5b\xd1\x9d\x9b\x65\x26\x3e\x1a\x59\xb7\x58\xce\xf7\x53\x96\x4f\xd0\x98\x93\xbd\xda\x76\x17\xc6\xf9\xbe\xb6\xfa\x0c\xec\x58\x7a\x2c\xd4\x65\xb7\x11\xc7\x51\xf8\x84\x43\xd0\x49\x30\x00\x4c\xe4\x79\xd9\xb6\x9d\x69\x50\x32\x13\x52\x88\x4a\x1c\x52\x1c\xf7\xef\xa1\xaf\x55\x72\x3c\x33\xd5\xe4\xc2\x3b\x0b\x01\x45\xe0\xfe\x13\xf6\xdd\x14\x3f\x48\x5a\x7c\xe2\xf4\x8b\x51\x8a\x79\x0e\x9a\xe6\xa4\xd1\x09\xe5\x4d\x73\x5c\x45\x67\x9a\xe4\xd8\x7b\x14\x01\x3f\x57\xe6\x8d\x7a\x8a\x25\xb4\xf3\x75\x92\x7b\xb1\xf1\x29\x6c\xe4\xf8\x98\xc4\x81\xd2\x41\x87\x74\x0a\x6c\xfe\x35\xd5\x9d\x1f\x7a\x94\xd0\x8e\xf7\x4a\xf6\xb2\x66\xf3\x6b\xf4\xb8\x96\xb9\x87\xfd\x1d\x38\x16\xa7\x4b\x90\x4d\x47\x8a\x38\x1a\xbb\xed\x54\x25\xb8\x0a\x21\x7d\xe2\x0a\x74\x70\xca\x22\xa2\x52\x59\x16\x61\xe6\x80\xbc\xd1\x51\x13\x28\x77\x0c\xac\xca\x38\x7d\x22\x7a\x6a\x78\x28\x3a\x15\xbb\xcc\x84\x08\x26\xa4\x79\xf7\xd3\x18\x38\xd0\x75\x1a\x95\x86\xec\x20\x01\xcd\xb1\x86\x2b\xb0\x8f\xfb\x76\xa9\x5f\xcc\x1d\x3d\x36\x5a\x8c\x3a\x56\x11\xb4\x87\xbf\x3e\xe3\xdf\x17\x79\x7d\x2e\xf4\x8a\xc0\x1a\x7d\xe6\xc4\x97\x4c\xf5\xc6\x91\xc9\x28\x58\x54\x36\x1a\x71\x73\x65\xd8\x76\x94\xb0\x6e\x62\x8e\x2f\x3d\x34\x2f\x0d\x6d\x83\xb5\xd1\x15\xba\xe7\x83\x15\x8c\x42\x84\x08\xf0\x83\x95\x65\x00\xc7\x80\x53\x11\x23\x3c\xa3\xeb\x13\xcc\x06\x57\x86\x65\x08\x18\x4a\x8a\x2c\xf2\x09\x5b\x5f\xd1\x64\x7d\x68\xec\xb9\x43\x4e\x16\xe6\xe7\x74\x74\x3c\xb9\xff\x2d\xfc\x84\x2f\xbe\x0f\x5f\x7b\xff\x3b\x9b\x9c\x87\xed\xed\x7e\x11\x7e\xb6\xe8\x17\x10\x38\xff\x8b\xf3\xe6\xfc\xe0\x8f\x7f\xaa\x51\xd9\xa2\x65\x5b\xde\xb2\xfc\x4c\xa6\x3a\x2a\x61\x91\xd2\x61\x20\xf6\x0b\x1c\x14\x63\x8e\xc1\xb1\xb1\x9b\x32\x76\x78\xba\x98\xc3\xd9\x3a\xe7\x91\x11\x60\x85\xa7\x63\xf2\xf1\x09\x93\xe6\x30\x1c\x21\x1c\xc6\x91\x1c\xbc\xf9\x44\x05\x43\x21\xea\x32\xca\x6c\xf4\xf4\xeb\x4f\x03\x87\xd1\x21\xc7\x58\xf5\xd3\xf4\x81\xd7\xb1\xe8\x1b\xaf\xfb\x13\xba\x99\x77\xc6\xbc\x44\x14\x4c\x6c\x22\x14\x11\xa2\x7f\xd9\x36\x6e\x38\x1b\xca\xbd\x92\x07\x08\xa0\x3e\x0b\x97\x5c\xb6\x54\x25\x55\x67\xf9\x19\xe0\xd1\x3e\xa3\xe3\x8c\x97\x36\x51\xd8\x2b\x0d\xad\x05\x3c\xfb\x55\xd6\x75\x32\xc0\xce\x74\x37\x57\x69\x86\x79\x5b\x13\x39\xc6\xd9\x49\xea\x4a\xc0\x4e\xda\x1a\x8d\xee\x7d\x0d\xf8\xbb\xf4\xc9\x11\x1b\x5d\xba\x69\xaf\x5a\xed\xe6\x69\xe3\xbb\x9d\x4d\x39\x93\x49\x1d\x3e\x12\x3a\x20\x94\xd7\x97\x68\x8d\x05\xe6\x44\x90\x5c\x53\xd2\xf6\xe9\x64\x80\x7d\xc1\x36\x19\xe1\x5a\x34\x34\x84\x15\x1d\xf9\xcb\x90\x89\x3e\x79\x21\x83\x50\x08\x27\xe3\xbf\xfc\xf3\x0f\x3a\x2b\xf5\x43\x44\xa4\xd5\x84\x2f\xe8\x45\x99\x9c\xf9\x28\xc6\x28\x7b\xcb\x5a\xf8\x53\x7d\x86\x52\xf8\x9f\x68\x62\x94\x2f\x4d\x49\x62\x0c\x95\x55\x80\x53\x53\x8d\xc0\x0d\xda\x39\x7b\xc2\x26\xca\x18\x5a\x04\x05\x4d\x44\x56\x68\xa5\x85\x52\x6e\x19\xd0\xca\x3a\x2a\x44\xc2\xdf\xb5\x2e\x8f\x46\x0f\x00\x2b\xdb\x14\xbf\x72\xf2\x63\x3f\xdb\xa9\xcd\x6c\xab\x66\x8b\xd9\x12\xad\xba\xd4\xa9\xbe\xc9\x42\xc2\x13\x1e\x87\x27\x08\x1b\x2d\xcf\x89\x29\x83\x00\x4d\x6c\xe6\x32\xf4\xa6\xf0\x35\x06\x7b\xd5\xef\x90\xdc\x24\xdf\x00\x80\x96\x31\x3e\x22\x8c\xee\x67\xdf\xf7\x0f\xdb\x99\x9a\x2f\xc1\xd2\x6b\x35\x07\xb7\xb2\xb3\x7e\xa7\xa6\x68\xef\x93\x55\x19\x8d\xb4\xeb\xdb\x13\x02\x76\x45\x64\x3d\xca\x23\x1b\x9a\xf2\xa1\xea\x5f\xc8\x03\xb0\x53\x13\xc3\xa5\xda\xc0\x73\x8b\x42\x11\x2a\x54\x96\x7a\x7c\x1b\x59\x14\xfa\xc5\xbc\xc3\x64\x8b\x50\x05\xf8\x22\x8f\xe9\x0a\x59\x4a\xe7\x25\x58\x2b\x82\x41\xe2\xdb\xc6\x6c\xa8\x1f\x33\xc5\x76\x5b\xfc\x20\x18\x56\xa4\x43\x47\xc3\x10\xab\xbb\x7d\xb1\x9f\x4f\x03\xf9\x7a\x8a\x72\x04\x7a\x10\x0c\x0d\x3f\xee\x55\x94\x81\x33\x16\xb4\x7c\xb7\x58\x17\x80\x07\x89\xa3\xaf\x46\x4f\x52\xe3\xe1\x1d\x35\x74\x6b\x5f\x2d\x32\x8d\x83\x13\x3d\x3d\x60\x87\x7e\x06\x1d\x26\x65\x96\xda\xf7\xf6\xfd\x1f\xc7\x57\xb0\x08\x5c\xff\x6b\x36\x05\x44\xbe\x65\xb1\xdf\x82\xb9\xa2\xd2\x61\x8e\xd0\x78\xc3\x54\x5d\x50\x26\x33\xa2\xc1\x3c\x76\x56\xca\xfb\x98\x42\x78\x9d\x74\x85\xa6\xcb\x6f\xd4\xa5\x57\x17\xd4\x97\x5b\xbc\x3f\x4e\x49\x2b\x2e\x3e\x6d\x8b\x8d\x02\x90\xc9\x45\xb1\xdc\xa8\xfd\x5a\xcd\x6e\xef\x67\xe3\x0a\x7b\x6c\x01\xd4\x6e\xd0\x1c\xe1\xa3\x3c\xac\x76\xf3\xfb\xd5\xec\x56\x85\x55\x06\x32\x5d\x34\x57\x84\xe0\x7d\x77\xb8\x8d\x04\x56\xa5\x58\x6c\xbe\x16\x68\xd9\x89\x76\x83\x4a\x96\x1e\xcc\xc9\x36\xcc\xe1\x61\x2f\xc5\x3d\x90\x91\xaa\xb2\x1c\x18\x50\xb8\xf0\x25\x3f\x4d\x05\x0b\x9e\xa3\x21\xd3\xf6\x71\x5d\x21\x75\xe1\x06\x39\x6a\xce\xd1\xf9\x2c\x30\xe0\x7c\xba\xeb\x38\x34\x95\xfd\x69\x64\x39\x8d\xf3\x17\xdc\xfc\x1a\xd4\xdf\xd5\x19\x22\xec\x6e\xbf\x9d\x15\x4b\x9e\xab\x2a\x0c\x48\xa4\x0c\x62\x70\x7b\xfd\xc6\xe1\xe7\xe6\x84\x50\x57\x01\xc2\xd5\xbc\x58\xdd\x2f\x66\x8a\xbd\x32\xc2\x9e\x42\xdd\x71\x42\xa4\x11\xb3\xb4\xdd\x99\xad\xad\x33\xc2\xb7\x35\xa5\xd7\xcd\x29\x1c\x1f\x53\xf0\x5e\x26\x6a\x09\x6a\x9e\x3a\x12\xc0\xbe\x52\x80\x1b\x2c\x8d\xa8\xbf\xdc\x54\xfc\xd0\xc4\xa8\xba\x9b\x18\xf8\xf6\x31\x51\x4c\x2c\x88\x4f\xb9\xfd\xb1\x2a\x96\x69\xcd\xaa\xc3\x89\x63\xd9\x29\x62\x39\xc7\x81\xdc\x29\x86\x0b\xd7\xd2\x55\x15\x5f\x82\x0b\xf1\x1d\xf3\x37\xd9\xce\x56\xb7\xb3\xad\x5a\xae\x6f\x67\x0b\x35\x5f\xdd\xce\xa7\x73\xa2\xf6\xd3\xd9\x62\x01\x08\x29\x08\x15\x9a\x55\x9c\xdc\xab\xf5\xdd\x1d\x62\xd7\x67\x17\xee\xc4\x85\x18\x4f\x32\xf5\x05\xf5\x1d\x7f\x25\x5a\xb2\x8c\xbf\x44\xbe\x3a\x0c\x4b\xe8\x19\x0e\xa1\x3e\x5d\x2f\x27\xf3\xb0\x60\x00\x94\x77\x32\xdf\xab\x65\xb1\xfb\x36\x7e\x8d\xd9\xf7\x7d\x7a\x8f\x27\x73\x38\xd5\x72\x4c\x85\x86\x04\xd8\x1c\x81\xa1\x85\x41\x57\x6a\xed\xf2\x20\xcc\x6f\x6d\xff\x12\x96\xce\x17\x1c\xbb\x0f\xe6\xc9\x69\xb4\x6b\x46\xd0\x8a\xd1\x4e\xf7\x8b\x62\xd5\x36\x45\x55\xc9\xc2\x18\x08\xfd\xd7\x57\x14\x23\xd4\xfd\xe2\xbe\xbf\xb9\x28\xe3\x4d\x91\x0e\x15\x82\x40\x81\x10\x6f\xd1\x3a\x56\xcd\xc9\x3c\x61\xba\xc2\x9c\x17\xb1\x5a\x4d\x8d\xa0\xf9\x18\x60\x03\x3e\x7e\xfa\x41\x19\x4d\xf9\x85\xbe\x20\x07\xb0\xb0\xcd\xcb\x36\x15\x21\x46\xdf\xaf\x02\x79\xe7\xaa\x0b\x08\x6f\x58\x5b\x8d\x12\xda\x8e\x95\x22\x80\xdf\x70\xdb\xeb\x37\xe4\x8e\x8f\x0c\x03\x0d\xdf\x80\x51\x4d\xc9\xbf\x93\xe5\x0d\x3d\x75\x10\x9e\xa5\xc0\x79\x94\xe3\xad\x12\x0c\xab\xfd\x69\x9e\xcc\xe1\x7e\x11\xf1\x57\x7b\xd9\x6b\x02\xf9\x9a\xe0\x23\x44\x2c\xf2\x8c\xb6\x40\xb4\x0a\xe8\xfc\x5f\xd6\x00\xe4\x77\xa0\x2a\x89\xb8\xc6\xe9\x11\xe7\x25\xbe\x03\x84\x0e\x9b\xca\x32\x0c\x55\x41\x8b\x04\xc2\x76\x11\x86\xc3\x99\x65\xef\xba\xf7\xd0\x81\x45\x63\xcf\xcc\x9b\xe8\xf2\xbf\x83\xed\xc7\x93\xf1\x4d\xf7\xe7\x87\x24\x05\x8e\x54\x17\xc7\xff\xbe\xb7\x95\x08\xe2\x8b\x03\xc4\x4f\xb6\x6e\x2c\x8b\x9e\xfe\x7a\xb1\x65\x7d\x19\x89\x02\x6e\xe4\xbb\x67\x4d\xe6\x1d\x90\x88\xb2\x80\xb2\x3d\x77\xb6\x4e\x97\x4f\xc6\x63\x5a\xf2\x8b\xd3\xf5\x72\x33\x87\x5d\xa0\xd8\x83\x89\x7d\xac\x35\x6f\x8e\x84\x36\x81\xfc\x41\x6c\x47\x43\xdf\xc7\xec\xe3\x6c\xbb\x9f\x7d\x57\xbb\xaf\xc5\x2d\x70\x39\x77\xdb\xe2\x1e\xb8\x9f\x58\x12\x3e\x28\xb1\x33\xa0\x6b\x82\x8c\x7c\x8f\xc5\x7c\xf5\x2d\x7b\x09\xaa\x93\xde\x22\x30\xe6\xa3\x55\xc0\x78\x66\xb4\x1c\xa6\xc2\xa5\x5c\x14\xa5\x70\xed\x54\x26\x91\x01\x53\xd1\x55\xb5\x67\xcd\x52\x4f\x51\x82\xb2\x68\x85\x70\x75\x4c\x21\x58\xd5\x40\xb3\xf7\x0a\x98\x11\x83\xa7\x90\xd9\x84\x3a\x5a\x96\x60\x63\x98\xe8\x18\x55\x05\xb5\x44\x9c\x0b\xd5\xe0\x89\xe2\x80\xa4\xc8\x65\x97\xa6\xfd\x24\x99\xbc\xa8\xb2\xb6\x1d\x87\x0d\xb0\x75\x4d\x72\x39\x60\x77\x36\x84\xd5\x47\xfc\x74\x6d\x45\x60\xed\xdd\x73\xfb\x16\xe8\x8b\x8c\x4e\x42\x97\xbe\xda\xca\x8c\x2f\x59\xf7\xe5\x9f\x7f\xc4\xb7\x41\xe5\xb1\x44\xe0\x44\xbe\x61\xda\x36\x47\x0b\xd2\xc0\xb7\xc6\x54\x13\x0a\x72\x7b\xb4\xa7\x19\x3b\x7e\x97\x5c\x83\x39\xb0\xeb\xa1\xf9\x60\x64\xae\x87\xf9\xa3\x51\xa6\x15\xcc\x31\xbb\xc9\x61\x9f\x84\x7f\xea\x40\xcb\xab\xf7\x89\xb8\x61\xa1\xb8\x41\x69\x5e\xf9\x7b\x08\xa7\x01\x0d\x22\xb5\xe9\x2f\x60\x94\x02\x10\x9d\xc4\x01\x76\xed\x1b\x76\x50\xee\x54\x71\x68\xdf\x89\xc4\x8e\xca\xeb\xb6\x7c\x21\x96\x2c\xbf\x02\xea\xe0\x0d\x9a\x1b\x92\x7d\x6c\xca\x65\x61\x79\x87\x2c\x4a\x2f\x9d\xd5\x92\xef\x27\x9c\xf3\xa3\x38\x9a\x4f\xfd\x20\x5a\xa7\xc9\x10\xfe\x80\xbb\x3e\x98\x9f\x16\xb8\xa9\x57\x03\x2e\xfa\x35\xc4\x3a\x22\x8d\x04\x24\x50\x8c\x29\x90\xaf\xc4\xe6\x43\xb2\xbf\x49\xfb\xce\x5a\xd5\x06\xa2\x67\x90\xb6\x35\x7c\x69\xd4\xbc\xbe\x5f\x73\xc2\x70\x8e\x24\x0e\x58\xc5\x39\xa1\x2a\x5b\x3d\x31\x61\x45\xac\x58\x0a\x06\xc3\xe9\xa9\x08\x58\x40\x10\xa0\xdc\x4a\xe0\x3f\x00\x11\x03\x4c\x36\xdf\xb9\x28\x85\x0a\x21\xf0\x77\x9f\x9d\x85\x63\x4c\x15\xb9\x37\x50\xe8\x94\x95\x79\x23\x3e\x5e\xf9\x73\x97\x56\x7d\xc8\x00\x64\x89\xaa\xda\xf4\xba\x68\x42\xc5\x9b\x23\x41\x29\xea\x93\x79\xc0\xf9\x77\x8a\x98\xac\x67\xd3\x9f\xd2\x6b\xd3\xf1\x1a\x9f\x13\xda\x60\xb3\x43\x58\xf2\xbc\xdd\x52\x37\x9c\xc8\xfa\x20\x94\x17\x8d\xb3\x32\xce\xfb\xb5\x9d\xa3\xfa\x10\x3e\x00\x22\xf4\xdb\xc6\x9e\x87\x73\x8c\xa0\x2e\xe2\x71\x07\x5e\x24\x35\xc5\xa1\xd8\xe9\x42\x6a\x8d\x2e\x38\x34\xc9\xbf\xd5\xe0\xff\x83\x38\x29\x62\x10\x6e\x8d\x23\x40\x49\x9c\x8b\x44\x9c\xd4\xd1\x36\x78\x62\xca\x07\xec\x68\xdf\x4d\x45\xea\x49\x5d\xc5\x33\x95\x0a\x4b\x38\x86\x68\x55\xa9\x27\x7f\xc5\xd0\x1c\xd0\xf7\xf9\x2b\xa1\x7e\x4c\xdb\xa6\x89\x16\xdb\x29\x93\xe0\xcc\x9e\xcc\x61\xd7\x96\x2f\xc6\x53\xd4\x75\xd3\x10\xcc\xdb\x85\x79\x9a\xe9\x7a\xb5\x0a\x47\x6d\x80\xc3\x59\x6f\xc0\x1d\xac\x6d\xda\xce\x30\xea\x05\xe2\x7c\x2b\xf5\x66\x0e\x9d\x2e\x5f\xd4\xb9\xad\x86\xda\xe0\xbc\x55\x2a\xbb\x14\x66\x9c\xed\xb1\x14\xab\x81\x25\x15\x42\x23\x2f\xa1\xe0\x83\xa6\x9c\x22\x7b\x00\x22\x20\x93\x0b\x22\x88\xb4\xde\x5f\x14\x7d\x68\xa7\xfd\x33\x03\xd1\xc4\x8f\xc3\x1a\x7a\xf0\xcf\x0a\xdd\x4a\xff\x7f\xc6\x63\xdd\xb6\xad\xbf\xf9\xff\x6e\x6e\xfe\xcf\xff\x0d\x00\x00\xff\xff\x4d\xa0\xef\x4e\x02\x20\x1a\x00") + +func staticJsGottyBundleJsMapBytes() ([]byte, error) { + return bindataRead( + _staticJsGottyBundleJsMap, + "static/js/gotty-bundle.js.map", + ) +} + +func staticJsGottyBundleJsMap() (*asset, error) { + bytes, err := staticJsGottyBundleJsMapBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/gotty-bundle.js.map", size: 1712130, mode: os.FileMode(420), modTime: time.Unix(1761699058, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -266,24 +297,27 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ - "static/css/index.css": staticCssIndexCss, - "static/css/xterm.css": staticCssXtermCss, - "static/css/xterm_customize.css": staticCssXterm_customizeCss, - "static/favicon.png": staticFaviconPng, - "static/index.html": staticIndexHtml, - "static/js/bundle.js": staticJsBundleJs, - "static/js/gotty-bundle.js": staticJsGottyBundleJs, + "static/css/index.css": staticCssIndexCss, + "static/css/xterm.css": staticCssXtermCss, + "static/css/xterm_customize.css": staticCssXterm_customizeCss, + "static/favicon.png": staticFaviconPng, + "static/index.html": staticIndexHtml, + "static/js/gotty-bundle.js": staticJsGottyBundleJs, + "static/js/gotty-bundle.js.LICENSE.txt": staticJsGottyBundleJsLicenseTxt, + "static/js/gotty-bundle.js.map": staticJsGottyBundleJsMap, } // 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 +// +// 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 @@ -325,8 +359,9 @@ var _bintree = &bintree{nil, map[string]*bintree{ "favicon.png": &bintree{staticFaviconPng, map[string]*bintree{}}, "index.html": &bintree{staticIndexHtml, map[string]*bintree{}}, "js": &bintree{nil, map[string]*bintree{ - "bundle.js": &bintree{staticJsBundleJs, map[string]*bintree{}}, - "gotty-bundle.js": &bintree{staticJsGottyBundleJs, map[string]*bintree{}}, + "gotty-bundle.js": &bintree{staticJsGottyBundleJs, map[string]*bintree{}}, + "gotty-bundle.js.LICENSE.txt": &bintree{staticJsGottyBundleJsLicenseTxt, map[string]*bintree{}}, + "gotty-bundle.js.map": &bintree{staticJsGottyBundleJsMap, map[string]*bintree{}}, }}, }}, }} diff --git a/server/handlers.go b/server/handlers.go index f1a2f9b..4f3f8fc 100644 --- a/server/handlers.go +++ b/server/handlers.go @@ -13,7 +13,7 @@ import ( "github.com/gorilla/websocket" "github.com/pkg/errors" - "github.com/yudai/gotty/webtty" + "github.com/ghthor/gotty/v2/webtty" ) func (server *Server) generateHandleWS(ctx context.Context, cancel context.CancelFunc, counter *counter) http.HandlerFunc { @@ -72,7 +72,7 @@ func (server *Server) generateHandleWS(ctx context.Context, cancel context.Cance } defer conn.Close() - err = server.processWSConn(ctx, conn) + err = server.processWSConn(r.Context(), conn) switch err { case ctx.Err(): @@ -115,8 +115,9 @@ func (server *Server) processWSConn(ctx context.Context, conn *websocket.Conn) e return errors.Wrapf(err, "failed to parse arguments") } params := query.Query() + var slave Slave - slave, err = server.factory.New(params) + slave, err = server.factory.New(ctx, params, conn) if err != nil { return errors.Wrapf(err, "failed to create backend") } @@ -164,8 +165,11 @@ func (server *Server) processWSConn(ctx context.Context, conn *websocket.Conn) e } err = tty.Run(ctx) + if err != nil && !errors.Is(err, context.Canceled) { + return err + } - return err + return nil } func (server *Server) handleIndex(w http.ResponseWriter, r *http.Request) { diff --git a/server/options.go b/server/options.go index 3d7f69c..8351019 100644 --- a/server/options.go +++ b/server/options.go @@ -5,7 +5,7 @@ import ( ) type Options struct { - Address string `hcl:"address" flagName:"address" flagSName:"a" flagDescribe:"IP address to listen" default:"0.0.0.0"` + Address string `hcl:"address" flagName:"address" flagSName:"a" flagDescribe:"IP address to listen" default:"localhost"` Port string `hcl:"port" flagName:"port" flagSName:"p" flagDescribe:"Port number to liten" default:"8080"` PermitWrite bool `hcl:"permit_write" flagName:"permit-write" flagSName:"w" flagDescribe:"Permit clients to write to the TTY (BE CAREFUL)" default:"false"` EnableBasicAuth bool `hcl:"enable_basic_auth" default:"false"` @@ -41,6 +41,7 @@ func (options *Options) Validate() error { return nil } +// TODO(ghthor): add defaults to all these options that match the example .gotty file type HtermPrefernces struct { AltGrMode *string `hcl:"alt_gr_mode" json:"alt-gr-mode,omitempty"` AltBackspaceIsMetaBackspace bool `hcl:"alt_backspace_is_meta_backspace" json:"alt-backspace-is-meta-backspace,omitempty"` @@ -72,6 +73,7 @@ type HtermPrefernces struct { EnableClipboardNotice bool `hcl:"enable_clipboard_notice" json:"enable-clipboard-notice,omitempty"` EnableClipboardWrite bool `hcl:"enable_clipboard_write" json:"enable-clipboard-write,omitempty"` EnableDec12 bool `hcl:"enable_dec12" json:"enable-dec12,omitempty"` + EnableWebGL bool `hcl:"enable_webgl" json:"enable-webgl,omitempty"` Environment map[string]string `hcl:"environment" json:"environment,omitempty"` FontFamily string `hcl:"font_family" json:"font-family,omitempty"` FontSize int `hcl:"font_size" json:"font-size,omitempty"` diff --git a/server/run_option.go b/server/run_option.go index 2939d63..8e89a9f 100644 --- a/server/run_option.go +++ b/server/run_option.go @@ -2,11 +2,14 @@ package server import ( "context" + "net" ) // RunOptions holds a set of configurations for Server.Run(). type RunOptions struct { gracefullCtx context.Context + + listener net.Listener } // RunOption is an option of Server.Run(). @@ -19,3 +22,10 @@ func WithGracefullContext(ctx context.Context) RunOption { options.gracefullCtx = ctx } } + +// WithListener allows the caller to override the default listener +func WithListener(l net.Listener) RunOption { + return func(options *RunOptions) { + options.listener = l + } +} diff --git a/server/server.go b/server/server.go index 6411e71..dec5d6f 100644 --- a/server/server.go +++ b/server/server.go @@ -14,13 +14,13 @@ import ( "time" "github.com/NYTimes/gziphandler" - "github.com/elazarl/go-bindata-assetfs" + assetfs "github.com/elazarl/go-bindata-assetfs" "github.com/gorilla/websocket" "github.com/pkg/errors" - "github.com/yudai/gotty/pkg/homedir" - "github.com/yudai/gotty/pkg/randomstring" - "github.com/yudai/gotty/webtty" + "github.com/ghthor/gotty/v2/pkg/homedir" + "github.com/ghthor/gotty/v2/pkg/randomstring" + "github.com/ghthor/gotty/v2/webtty" ) // Server provides a webtty HTTP endpoint. @@ -117,9 +117,13 @@ func (server *Server) Run(ctx context.Context, options ...RunOption) error { log.Printf("Port number configured to `0`, choosing a random port") } hostPort := net.JoinHostPort(server.options.Address, server.options.Port) - listener, err := net.Listen("tcp", hostPort) - if err != nil { - return errors.Wrapf(err, "failed to listen at `%s`", hostPort) + + listener := opts.listener + if listener == nil { + listener, err = net.Listen("tcp", hostPort) + if err != nil { + return errors.Wrapf(err, "failed to listen at `%s`", hostPort) + } } scheme := "http" diff --git a/server/slave.go b/server/slave.go index 77d0973..3ff76d3 100644 --- a/server/slave.go +++ b/server/slave.go @@ -1,7 +1,11 @@ package server import ( - "github.com/yudai/gotty/webtty" + "context" + + "github.com/ghthor/gotty/v2/webtty" + + "github.com/gorilla/websocket" ) // Slave is webtty.Slave with some additional methods. @@ -13,5 +17,5 @@ type Slave interface { type Factory interface { Name() string - New(params map[string][]string) (Slave, error) + New(ctx context.Context, params map[string][]string, conn *websocket.Conn) (Slave, error) } diff --git a/utils/flags.go b/utils/flags.go index b5c66b9..4b7b305 100644 --- a/utils/flags.go +++ b/utils/flags.go @@ -7,11 +7,11 @@ import ( "reflect" "strings" - "github.com/codegangsta/cli" "github.com/fatih/structs" + "github.com/urfave/cli" "github.com/yudai/hcl" - "github.com/yudai/gotty/pkg/homedir" + "github.com/ghthor/gotty/v2/pkg/homedir" ) func GenerateFlags(options ...interface{}) (flags []cli.Flag, mappings map[string]string, err error) { diff --git a/vendor/github.com/NYTimes/gziphandler/.gitignore b/vendor/github.com/NYTimes/gziphandler/.gitignore deleted file mode 100644 index 1377554..0000000 --- a/vendor/github.com/NYTimes/gziphandler/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.swp diff --git a/vendor/github.com/NYTimes/gziphandler/.travis.yml b/vendor/github.com/NYTimes/gziphandler/.travis.yml deleted file mode 100644 index d2b67f6..0000000 --- a/vendor/github.com/NYTimes/gziphandler/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -language: go - -go: - - 1.7 - - 1.8 - - tip diff --git a/vendor/github.com/NYTimes/gziphandler/CODE_OF_CONDUCT.md b/vendor/github.com/NYTimes/gziphandler/CODE_OF_CONDUCT.md deleted file mode 100644 index cdbca19..0000000 --- a/vendor/github.com/NYTimes/gziphandler/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,75 +0,0 @@ ---- -layout: code-of-conduct -version: v1.0 ---- - -This code of conduct outlines our expectations for participants within the **NYTimes/gziphandler** community, as well as steps to reporting unacceptable behavior. We are committed to providing a welcoming and inspiring community for all and expect our code of conduct to be honored. Anyone who violates this code of conduct may be banned from the community. - -Our open source community strives to: - -* **Be friendly and patient.** -* **Be welcoming**: We strive to be a community that welcomes and supports people of all backgrounds and identities. This includes, but is not limited to members of any race, ethnicity, culture, national origin, colour, immigration status, social and economic class, educational level, sex, sexual orientation, gender identity and expression, age, size, family status, political belief, religion, and mental and physical ability. -* **Be considerate**: Your work will be used by other people, and you in turn will depend on the work of others. Any decision you take will affect users and colleagues, and you should take those consequences into account when making decisions. Remember that we're a world-wide community, so you might not be communicating in someone else's primary language. -* **Be respectful**: Not all of us will agree all the time, but disagreement is no excuse for poor behavior and poor manners. We might all experience some frustration now and then, but we cannot allow that frustration to turn into a personal attack. It’s important to remember that a community where people feel uncomfortable or threatened is not a productive one. -* **Be careful in the words that we choose**: we are a community of professionals, and we conduct ourselves professionally. Be kind to others. Do not insult or put down other participants. Harassment and other exclusionary behavior aren't acceptable. -* **Try to understand why we disagree**: Disagreements, both social and technical, happen all the time. It is important that we resolve disagreements and differing views constructively. Remember that we’re different. The strength of our community comes from its diversity, people from a wide range of backgrounds. Different people have different perspectives on issues. Being unable to understand why someone holds a viewpoint doesn’t mean that they’re wrong. Don’t forget that it is human to err and blaming each other doesn’t get us anywhere. Instead, focus on helping to resolve issues and learning from mistakes. - -## Definitions - -Harassment includes, but is not limited to: - -- Offensive comments related to gender, gender identity and expression, sexual orientation, disability, mental illness, neuro(a)typicality, physical appearance, body size, race, age, regional discrimination, political or religious affiliation -- Unwelcome comments regarding a person’s lifestyle choices and practices, including those related to food, health, parenting, drugs, and employment -- Deliberate misgendering. This includes deadnaming or persistently using a pronoun that does not correctly reflect a person's gender identity. You must address people by the name they give you when not addressing them by their username or handle -- Physical contact and simulated physical contact (eg, textual descriptions like “*hug*” or “*backrub*”) without consent or after a request to stop -- Threats of violence, both physical and psychological -- Incitement of violence towards any individual, including encouraging a person to commit suicide or to engage in self-harm -- Deliberate intimidation -- Stalking or following -- Harassing photography or recording, including logging online activity for harassment purposes -- Sustained disruption of discussion -- Unwelcome sexual attention, including gratuitous or off-topic sexual images or behaviour -- Pattern of inappropriate social contact, such as requesting/assuming inappropriate levels of intimacy with others -- Continued one-on-one communication after requests to cease -- Deliberate “outing” of any aspect of a person’s identity without their consent except as necessary to protect others from intentional abuse -- Publication of non-harassing private communication - -Our open source community prioritizes marginalized people’s safety over privileged people’s comfort. We will not act on complaints regarding: - -- ‘Reverse’ -isms, including ‘reverse racism,’ ‘reverse sexism,’ and ‘cisphobia’ -- Reasonable communication of boundaries, such as “leave me alone,” “go away,” or “I’m not discussing this with you” -- Refusal to explain or debate social justice concepts -- Communicating in a ‘tone’ you don’t find congenial -- Criticizing racist, sexist, cissexist, or otherwise oppressive behavior or assumptions - - -### Diversity Statement - -We encourage everyone to participate and are committed to building a community for all. Although we will fail at times, we seek to treat everyone both as fairly and equally as possible. Whenever a participant has made a mistake, we expect them to take responsibility for it. If someone has been harmed or offended, it is our responsibility to listen carefully and respectfully, and do our best to right the wrong. - -Although this list cannot be exhaustive, we explicitly honor diversity in age, gender, gender identity or expression, culture, ethnicity, language, national origin, political beliefs, profession, race, religion, sexual orientation, socioeconomic status, and technical ability. We will not tolerate discrimination based on any of the protected -characteristics above, including participants with disabilities. - -### Reporting Issues - -If you experience or witness unacceptable behavior—or have any other concerns—please report it by contacting us via **code@nytimes.com**. All reports will be handled with discretion. In your report please include: - -- Your contact information. -- Names (real, nicknames, or pseudonyms) of any individuals involved. If there are additional witnesses, please -include them as well. Your account of what occurred, and if you believe the incident is ongoing. If there is a publicly available record (e.g. a mailing list archive or a public IRC logger), please include a link. -- Any additional information that may be helpful. - -After filing a report, a representative will contact you personally, review the incident, follow up with any additional questions, and make a decision as to how to respond. If the person who is harassing you is part of the response team, they will recuse themselves from handling your incident. If the complaint originates from a member of the response team, it will be handled by a different member of the response team. We will respect confidentiality requests for the purpose of protecting victims of abuse. - -### Attribution & Acknowledgements - -We all stand on the shoulders of giants across many open source communities. We'd like to thank the communities and projects that established code of conducts and diversity statements as our inspiration: - -* [Django](https://www.djangoproject.com/conduct/reporting/) -* [Python](https://www.python.org/community/diversity/) -* [Ubuntu](http://www.ubuntu.com/about/about-ubuntu/conduct) -* [Contributor Covenant](http://contributor-covenant.org/) -* [Geek Feminism](http://geekfeminism.org/about/code-of-conduct/) -* [Citizen Code of Conduct](http://citizencodeofconduct.org/) - -This Code of Conduct was based on https://github.com/todogroup/opencodeofconduct diff --git a/vendor/github.com/NYTimes/gziphandler/CONTRIBUTING.md b/vendor/github.com/NYTimes/gziphandler/CONTRIBUTING.md deleted file mode 100644 index b89a9eb..0000000 --- a/vendor/github.com/NYTimes/gziphandler/CONTRIBUTING.md +++ /dev/null @@ -1,30 +0,0 @@ -# Contributing to NYTimes/gziphandler - -This is an open source project started by handful of developers at The New York Times and open to the entire Go community. - -We really appreciate your help! - -## Filing issues - -When filing an issue, make sure to answer these five questions: - -1. What version of Go are you using (`go version`)? -2. What operating system and processor architecture are you using? -3. What did you do? -4. What did you expect to see? -5. What did you see instead? - -## Contributing code - -Before submitting changes, please follow these guidelines: - -1. Check the open issues and pull requests for existing discussions. -2. Open an issue to discuss a new feature. -3. Write tests. -4. Make sure code follows the ['Go Code Review Comments'](https://github.com/golang/go/wiki/CodeReviewComments). -5. Make sure your changes pass `go test`. -6. Make sure the entire test suite passes locally and on Travis CI. -7. Open a Pull Request. -8. [Squash your commits](http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html) after receiving feedback and add a [great commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html). - -Unless otherwise noted, the gziphandler source files are distributed under the Apache 2.0-style license found in the LICENSE.md file. diff --git a/vendor/github.com/NYTimes/gziphandler/LICENSE.md b/vendor/github.com/NYTimes/gziphandler/LICENSE.md deleted file mode 100644 index b7e2ecb..0000000 --- a/vendor/github.com/NYTimes/gziphandler/LICENSE.md +++ /dev/null @@ -1,13 +0,0 @@ -Copyright (c) 2015 The New York Times Company - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this library except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. diff --git a/vendor/github.com/NYTimes/gziphandler/README.md b/vendor/github.com/NYTimes/gziphandler/README.md deleted file mode 100644 index 6d72460..0000000 --- a/vendor/github.com/NYTimes/gziphandler/README.md +++ /dev/null @@ -1,52 +0,0 @@ -Gzip Handler -============ - -This is a tiny Go package which wraps HTTP handlers to transparently gzip the -response body, for clients which support it. Although it's usually simpler to -leave that to a reverse proxy (like nginx or Varnish), this package is useful -when that's undesirable. - - -## Usage - -Call `GzipHandler` with any handler (an object which implements the -`http.Handler` interface), and it'll return a new handler which gzips the -response. For example: - -```go -package main - -import ( - "io" - "net/http" - "github.com/NYTimes/gziphandler" -) - -func main() { - withoutGz := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - w.Header().Set("Content-Type", "text/plain") - io.WriteString(w, "Hello, World") - }) - - withGz := gziphandler.GzipHandler(withoutGz) - - http.Handle("/", withGz) - http.ListenAndServe("0.0.0.0:8000", nil) -} -``` - - -## Documentation - -The docs can be found at [godoc.org][docs], as usual. - - -## License - -[Apache 2.0][license]. - - - - -[docs]: https://godoc.org/github.com/nytimes/gziphandler -[license]: https://github.com/nytimes/gziphandler/blob/master/LICENSE.md diff --git a/vendor/github.com/NYTimes/gziphandler/gzip.go b/vendor/github.com/NYTimes/gziphandler/gzip.go deleted file mode 100644 index c47039f..0000000 --- a/vendor/github.com/NYTimes/gziphandler/gzip.go +++ /dev/null @@ -1,407 +0,0 @@ -package gziphandler - -import ( - "bufio" - "compress/gzip" - "fmt" - "io" - "net" - "net/http" - "strconv" - "strings" - "sync" -) - -const ( - vary = "Vary" - acceptEncoding = "Accept-Encoding" - contentEncoding = "Content-Encoding" - contentType = "Content-Type" - contentLength = "Content-Length" -) - -type codings map[string]float64 - -const ( - // DefaultQValue is the default qvalue to assign to an encoding if no explicit qvalue is set. - // This is actually kind of ambiguous in RFC 2616, so hopefully it's correct. - // The examples seem to indicate that it is. - DefaultQValue = 1.0 - - // DefaultMinSize defines the minimum size to reach to enable compression. - // It's 512 bytes. - DefaultMinSize = 512 -) - -// gzipWriterPools stores a sync.Pool for each compression level for reuse of -// gzip.Writers. Use poolIndex to covert a compression level to an index into -// gzipWriterPools. -var gzipWriterPools [gzip.BestCompression - gzip.BestSpeed + 2]*sync.Pool - -func init() { - for i := gzip.BestSpeed; i <= gzip.BestCompression; i++ { - addLevelPool(i) - } - addLevelPool(gzip.DefaultCompression) -} - -// poolIndex maps a compression level to its index into gzipWriterPools. It -// assumes that level is a valid gzip compression level. -func poolIndex(level int) int { - // gzip.DefaultCompression == -1, so we need to treat it special. - if level == gzip.DefaultCompression { - return gzip.BestCompression - gzip.BestSpeed + 1 - } - return level - gzip.BestSpeed -} - -func addLevelPool(level int) { - gzipWriterPools[poolIndex(level)] = &sync.Pool{ - New: func() interface{} { - // NewWriterLevel only returns error on a bad level, we are guaranteeing - // that this will be a valid level so it is okay to ignore the returned - // error. - w, _ := gzip.NewWriterLevel(nil, level) - return w - }, - } -} - -// GzipResponseWriter provides an http.ResponseWriter interface, which gzips -// bytes before writing them to the underlying response. This doesn't close the -// writers, so don't forget to do that. -// It can be configured to skip response smaller than minSize. -type GzipResponseWriter struct { - http.ResponseWriter - index int // Index for gzipWriterPools. - gw *gzip.Writer - - code int // Saves the WriteHeader value. - - minSize int // Specifed the minimum response size to gzip. If the response length is bigger than this value, it is compressed. - buf []byte // Holds the first part of the write before reaching the minSize or the end of the write. - - contentTypes []string // Only compress if the response is one of these content-types. All are accepted if empty. -} - -// Write appends data to the gzip writer. -func (w *GzipResponseWriter) Write(b []byte) (int, error) { - // If content type is not set. - if _, ok := w.Header()[contentType]; !ok { - // It infer it from the uncompressed body. - w.Header().Set(contentType, http.DetectContentType(b)) - } - - // GZIP responseWriter is initialized. Use the GZIP responseWriter. - if w.gw != nil { - n, err := w.gw.Write(b) - return n, err - } - - // Save the write into a buffer for later use in GZIP responseWriter (if content is long enough) or at close with regular responseWriter. - // On the first write, w.buf changes from nil to a valid slice - w.buf = append(w.buf, b...) - - // If the global writes are bigger than the minSize and we're about to write - // a response containing a content type we want to handle, enable - // compression. - if len(w.buf) >= w.minSize && handleContentType(w.contentTypes, w) { - err := w.startGzip() - if err != nil { - return 0, err - } - } - - return len(b), nil -} - -// startGzip initialize any GZIP specific informations. -func (w *GzipResponseWriter) startGzip() error { - - // Set the GZIP header. - w.Header().Set(contentEncoding, "gzip") - - // if the Content-Length is already set, then calls to Write on gzip - // will fail to set the Content-Length header since its already set - // See: https://github.com/golang/go/issues/14975. - w.Header().Del(contentLength) - - // Write the header to gzip response. - if w.code != 0 { - w.ResponseWriter.WriteHeader(w.code) - } - - // Initialize the GZIP response. - w.init() - - // Flush the buffer into the gzip reponse. - n, err := w.gw.Write(w.buf) - - // This should never happen (per io.Writer docs), but if the write didn't - // accept the entire buffer but returned no specific error, we have no clue - // what's going on, so abort just to be safe. - if err == nil && n < len(w.buf) { - return io.ErrShortWrite - } - - w.buf = nil - return err -} - -// WriteHeader just saves the response code until close or GZIP effective writes. -func (w *GzipResponseWriter) WriteHeader(code int) { - w.code = code -} - -// init graps a new gzip writer from the gzipWriterPool and writes the correct -// content encoding header. -func (w *GzipResponseWriter) init() { - // Bytes written during ServeHTTP are redirected to this gzip writer - // before being written to the underlying response. - gzw := gzipWriterPools[w.index].Get().(*gzip.Writer) - gzw.Reset(w.ResponseWriter) - w.gw = gzw -} - -// Close will close the gzip.Writer and will put it back in the gzipWriterPool. -func (w *GzipResponseWriter) Close() error { - if w.gw == nil { - // Gzip not trigged yet, write out regular response. - if w.code != 0 { - w.ResponseWriter.WriteHeader(w.code) - } - if w.buf != nil { - _, writeErr := w.ResponseWriter.Write(w.buf) - // Returns the error if any at write. - if writeErr != nil { - return fmt.Errorf("gziphandler: write to regular responseWriter at close gets error: %q", writeErr.Error()) - } - } - return nil - } - - err := w.gw.Close() - gzipWriterPools[w.index].Put(w.gw) - w.gw = nil - return err -} - -// Flush flushes the underlying *gzip.Writer and then the underlying -// http.ResponseWriter if it is an http.Flusher. This makes GzipResponseWriter -// an http.Flusher. -func (w *GzipResponseWriter) Flush() { - if w.gw != nil { - w.gw.Flush() - } - - if fw, ok := w.ResponseWriter.(http.Flusher); ok { - fw.Flush() - } -} - -// Hijack implements http.Hijacker. If the underlying ResponseWriter is a -// Hijacker, its Hijack method is returned. Otherwise an error is returned. -func (w *GzipResponseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) { - if hj, ok := w.ResponseWriter.(http.Hijacker); ok { - return hj.Hijack() - } - return nil, nil, fmt.Errorf("http.Hijacker interface is not supported") -} - -// verify Hijacker interface implementation -var _ http.Hijacker = &GzipResponseWriter{} - -// MustNewGzipLevelHandler behaves just like NewGzipLevelHandler except that in -// an error case it panics rather than returning an error. -func MustNewGzipLevelHandler(level int) func(http.Handler) http.Handler { - wrap, err := NewGzipLevelHandler(level) - if err != nil { - panic(err) - } - return wrap -} - -// NewGzipLevelHandler returns a wrapper function (often known as middleware) -// which can be used to wrap an HTTP handler to transparently gzip the response -// body if the client supports it (via the Accept-Encoding header). Responses will -// be encoded at the given gzip compression level. An error will be returned only -// if an invalid gzip compression level is given, so if one can ensure the level -// is valid, the returned error can be safely ignored. -func NewGzipLevelHandler(level int) (func(http.Handler) http.Handler, error) { - return NewGzipLevelAndMinSize(level, DefaultMinSize) -} - -// NewGzipLevelAndMinSize behave as NewGzipLevelHandler except it let the caller -// specify the minimum size before compression. -func NewGzipLevelAndMinSize(level, minSize int) (func(http.Handler) http.Handler, error) { - return GzipHandlerWithOpts(CompressionLevel(level), MinSize(minSize)) -} - -func GzipHandlerWithOpts(opts ...option) (func(http.Handler) http.Handler, error) { - c := &config{ - level: gzip.DefaultCompression, - minSize: DefaultMinSize, - } - - for _, o := range opts { - o(c) - } - - if err := c.validate(); err != nil { - return nil, err - } - - return func(h http.Handler) http.Handler { - index := poolIndex(c.level) - - return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - w.Header().Add(vary, acceptEncoding) - - if acceptsGzip(r) { - gw := &GzipResponseWriter{ - ResponseWriter: w, - index: index, - minSize: c.minSize, - contentTypes: c.contentTypes, - } - defer gw.Close() - - h.ServeHTTP(gw, r) - } else { - h.ServeHTTP(w, r) - } - }) - }, nil -} - -// Used for functional configuration. -type config struct { - minSize int - level int - contentTypes []string -} - -func (c *config) validate() error { - if c.level != gzip.DefaultCompression && (c.level < gzip.BestSpeed || c.level > gzip.BestCompression) { - return fmt.Errorf("invalid compression level requested: %d", c.level) - } - - if c.minSize < 0 { - return fmt.Errorf("minimum size must be more than zero") - } - - return nil -} - -type option func(c *config) - -func MinSize(size int) option { - return func(c *config) { - c.minSize = size - } -} - -func CompressionLevel(level int) option { - return func(c *config) { - c.level = level - } -} - -func ContentTypes(types []string) option { - return func(c *config) { - c.contentTypes = []string{} - for _, v := range types { - c.contentTypes = append(c.contentTypes, strings.ToLower(v)) - } - } -} - -// GzipHandler wraps an HTTP handler, to transparently gzip the response body if -// the client supports it (via the Accept-Encoding header). This will compress at -// the default compression level. -func GzipHandler(h http.Handler) http.Handler { - wrapper, _ := NewGzipLevelHandler(gzip.DefaultCompression) - return wrapper(h) -} - -// acceptsGzip returns true if the given HTTP request indicates that it will -// accept a gzipped response. -func acceptsGzip(r *http.Request) bool { - acceptedEncodings, _ := parseEncodings(r.Header.Get(acceptEncoding)) - return acceptedEncodings["gzip"] > 0.0 -} - -// returns true if we've been configured to compress the specific content type. -func handleContentType(contentTypes []string, w http.ResponseWriter) bool { - // If contentTypes is empty we handle all content types. - if len(contentTypes) == 0 { - return true - } - - ct := strings.ToLower(w.Header().Get(contentType)) - for _, c := range contentTypes { - if c == ct { - return true - } - } - - return false -} - -// parseEncodings attempts to parse a list of codings, per RFC 2616, as might -// appear in an Accept-Encoding header. It returns a map of content-codings to -// quality values, and an error containing the errors encountered. It's probably -// safe to ignore those, because silently ignoring errors is how the internet -// works. -// -// See: http://tools.ietf.org/html/rfc2616#section-14.3. -func parseEncodings(s string) (codings, error) { - c := make(codings) - var e []string - - for _, ss := range strings.Split(s, ",") { - coding, qvalue, err := parseCoding(ss) - - if err != nil { - e = append(e, err.Error()) - } else { - c[coding] = qvalue - } - } - - // TODO (adammck): Use a proper multi-error struct, so the individual errors - // can be extracted if anyone cares. - if len(e) > 0 { - return c, fmt.Errorf("errors while parsing encodings: %s", strings.Join(e, ", ")) - } - - return c, nil -} - -// parseCoding parses a single conding (content-coding with an optional qvalue), -// as might appear in an Accept-Encoding header. It attempts to forgive minor -// formatting errors. -func parseCoding(s string) (coding string, qvalue float64, err error) { - for n, part := range strings.Split(s, ";") { - part = strings.TrimSpace(part) - qvalue = DefaultQValue - - if n == 0 { - coding = strings.ToLower(part) - } else if strings.HasPrefix(part, "q=") { - qvalue, err = strconv.ParseFloat(strings.TrimPrefix(part, "q="), 64) - - if qvalue < 0.0 { - qvalue = 0.0 - } else if qvalue > 1.0 { - qvalue = 1.0 - } - } - } - - if coding == "" { - err = fmt.Errorf("empty content-coding") - } - - return -} diff --git a/vendor/github.com/NYTimes/gziphandler/gzip_go18.go b/vendor/github.com/NYTimes/gziphandler/gzip_go18.go deleted file mode 100644 index fa9665b..0000000 --- a/vendor/github.com/NYTimes/gziphandler/gzip_go18.go +++ /dev/null @@ -1,43 +0,0 @@ -// +build go1.8 - -package gziphandler - -import "net/http" - -// Push initiates an HTTP/2 server push. -// Push returns ErrNotSupported if the client has disabled push or if push -// is not supported on the underlying connection. -func (w *GzipResponseWriter) Push(target string, opts *http.PushOptions) error { - pusher, ok := w.ResponseWriter.(http.Pusher) - if ok && pusher != nil { - return pusher.Push(target, setAcceptEncodingForPushOptions(opts)) - } - return http.ErrNotSupported -} - -// setAcceptEncodingForPushOptions sets "Accept-Encoding" : "gzip" for PushOptions without overriding existing headers. -func setAcceptEncodingForPushOptions(opts *http.PushOptions) *http.PushOptions { - - if opts == nil { - opts = &http.PushOptions{ - Header: http.Header{ - acceptEncoding: []string{"gzip"}, - }, - } - return opts - } - - if opts.Header == nil { - opts.Header = http.Header{ - acceptEncoding: []string{"gzip"}, - } - return opts - } - - if encoding := opts.Header.Get(acceptEncoding); encoding == "" { - opts.Header.Add(acceptEncoding, "gzip") - return opts - } - - return opts -} diff --git a/vendor/github.com/codegangsta/cli/.gitignore b/vendor/github.com/codegangsta/cli/.gitignore deleted file mode 100644 index faf70c4..0000000 --- a/vendor/github.com/codegangsta/cli/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.coverprofile -node_modules/ diff --git a/vendor/github.com/codegangsta/cli/.travis.yml b/vendor/github.com/codegangsta/cli/.travis.yml deleted file mode 100644 index 94836d7..0000000 --- a/vendor/github.com/codegangsta/cli/.travis.yml +++ /dev/null @@ -1,39 +0,0 @@ -language: go - -sudo: false - -cache: - directories: - - node_modules - -go: -- 1.2.x -- 1.3.x -- 1.4.2 -- 1.5.x -- 1.6.x -- 1.7.x -- master - -matrix: - allow_failures: - - go: master - include: - - go: 1.6.x - os: osx - - go: 1.7.x - os: osx - -before_script: -- go get github.com/urfave/gfmrun/... || true -- go get golang.org/x/tools/... || true -- if [ ! -f node_modules/.bin/markdown-toc ] ; then - npm install markdown-toc ; - fi - -script: -- ./runtests gen -- ./runtests vet -- ./runtests test -- ./runtests gfmrun -- ./runtests toc diff --git a/vendor/github.com/codegangsta/cli/CHANGELOG.md b/vendor/github.com/codegangsta/cli/CHANGELOG.md deleted file mode 100644 index 07f7546..0000000 --- a/vendor/github.com/codegangsta/cli/CHANGELOG.md +++ /dev/null @@ -1,392 +0,0 @@ -# Change Log - -**ATTN**: This project uses [semantic versioning](http://semver.org/). - -## [Unreleased] - -## [1.19.1] - 2016-11-21 - -### Fixed - -- Fixes regression introduced in 1.19.0 where using an `ActionFunc` as - the `Action` for a command would cause it to error rather than calling the - function. Should not have a affected declarative cases using `func(c - *cli.Context) err)`. -- Shell completion now handles the case where the user specifies - `--generate-bash-completion` immediately after a flag that takes an argument. - Previously it call the application with `--generate-bash-completion` as the - flag value. - -## [1.19.0] - 2016-11-19 -### Added -- `FlagsByName` was added to make it easy to sort flags (e.g. `sort.Sort(cli.FlagsByName(app.Flags))`) -- A `Description` field was added to `App` for a more detailed description of - the application (similar to the existing `Description` field on `Command`) -- Flag type code generation via `go generate` -- Write to stderr and exit 1 if action returns non-nil error -- Added support for TOML to the `altsrc` loader -- `SkipArgReorder` was added to allow users to skip the argument reordering. - This is useful if you want to consider all "flags" after an argument as - arguments rather than flags (the default behavior of the stdlib `flag` - library). This is backported functionality from the [removal of the flag - reordering](https://github.com/urfave/cli/pull/398) in the unreleased version - 2 -- For formatted errors (those implementing `ErrorFormatter`), the errors will - be formatted during output. Compatible with `pkg/errors`. - -### Changed -- Raise minimum tested/supported Go version to 1.2+ - -### Fixed -- Consider empty environment variables as set (previously environment variables - with the equivalent of `""` would be skipped rather than their value used). -- Return an error if the value in a given environment variable cannot be parsed - as the flag type. Previously these errors were silently swallowed. -- Print full error when an invalid flag is specified (which includes the invalid flag) -- `App.Writer` defaults to `stdout` when `nil` -- If no action is specified on a command or app, the help is now printed instead of `panic`ing -- `App.Metadata` is initialized automatically now (previously was `nil` unless initialized) -- Correctly show help message if `-h` is provided to a subcommand -- `context.(Global)IsSet` now respects environment variables. Previously it - would return `false` if a flag was specified in the environment rather than - as an argument -- Removed deprecation warnings to STDERR to avoid them leaking to the end-user -- `altsrc`s import paths were updated to use `gopkg.in/urfave/cli.v1`. This - fixes issues that occurred when `gopkg.in/urfave/cli.v1` was imported as well - as `altsrc` where Go would complain that the types didn't match - -## [1.18.1] - 2016-08-28 -### Fixed -- Removed deprecation warnings to STDERR to avoid them leaking to the end-user (backported) - -## [1.18.0] - 2016-06-27 -### Added -- `./runtests` test runner with coverage tracking by default -- testing on OS X -- testing on Windows -- `UintFlag`, `Uint64Flag`, and `Int64Flag` types and supporting code - -### Changed -- Use spaces for alignment in help/usage output instead of tabs, making the - output alignment consistent regardless of tab width - -### Fixed -- Printing of command aliases in help text -- Printing of visible flags for both struct and struct pointer flags -- Display the `help` subcommand when using `CommandCategories` -- No longer swallows `panic`s that occur within the `Action`s themselves when - detecting the signature of the `Action` field - -## [1.17.1] - 2016-08-28 -### Fixed -- Removed deprecation warnings to STDERR to avoid them leaking to the end-user - -## [1.17.0] - 2016-05-09 -### Added -- Pluggable flag-level help text rendering via `cli.DefaultFlagStringFunc` -- `context.GlobalBoolT` was added as an analogue to `context.GlobalBool` -- Support for hiding commands by setting `Hidden: true` -- this will hide the - commands in help output - -### Changed -- `Float64Flag`, `IntFlag`, and `DurationFlag` default values are no longer - quoted in help text output. -- All flag types now include `(default: {value})` strings following usage when a - default value can be (reasonably) detected. -- `IntSliceFlag` and `StringSliceFlag` usage strings are now more consistent - with non-slice flag types -- Apps now exit with a code of 3 if an unknown subcommand is specified - (previously they printed "No help topic for...", but still exited 0. This - makes it easier to script around apps built using `cli` since they can trust - that a 0 exit code indicated a successful execution. -- cleanups based on [Go Report Card - feedback](https://goreportcard.com/report/github.com/urfave/cli) - -## [1.16.1] - 2016-08-28 -### Fixed -- Removed deprecation warnings to STDERR to avoid them leaking to the end-user - -## [1.16.0] - 2016-05-02 -### Added -- `Hidden` field on all flag struct types to omit from generated help text - -### Changed -- `BashCompletionFlag` (`--enable-bash-completion`) is now omitted from -generated help text via the `Hidden` field - -### Fixed -- handling of error values in `HandleAction` and `HandleExitCoder` - -## [1.15.0] - 2016-04-30 -### Added -- This file! -- Support for placeholders in flag usage strings -- `App.Metadata` map for arbitrary data/state management -- `Set` and `GlobalSet` methods on `*cli.Context` for altering values after -parsing. -- Support for nested lookup of dot-delimited keys in structures loaded from -YAML. - -### Changed -- The `App.Action` and `Command.Action` now prefer a return signature of -`func(*cli.Context) error`, as defined by `cli.ActionFunc`. If a non-nil -`error` is returned, there may be two outcomes: - - If the error fulfills `cli.ExitCoder`, then `os.Exit` will be called - automatically - - Else the error is bubbled up and returned from `App.Run` -- Specifying an `Action` with the legacy return signature of -`func(*cli.Context)` will produce a deprecation message to stderr -- Specifying an `Action` that is not a `func` type will produce a non-zero exit -from `App.Run` -- Specifying an `Action` func that has an invalid (input) signature will -produce a non-zero exit from `App.Run` - -### Deprecated -- -`cli.App.RunAndExitOnError`, which should now be done by returning an error -that fulfills `cli.ExitCoder` to `cli.App.Run`. -- the legacy signature for -`cli.App.Action` of `func(*cli.Context)`, which should now have a return -signature of `func(*cli.Context) error`, as defined by `cli.ActionFunc`. - -### Fixed -- Added missing `*cli.Context.GlobalFloat64` method - -## [1.14.0] - 2016-04-03 (backfilled 2016-04-25) -### Added -- Codebeat badge -- Support for categorization via `CategorizedHelp` and `Categories` on app. - -### Changed -- Use `filepath.Base` instead of `path.Base` in `Name` and `HelpName`. - -### Fixed -- Ensure version is not shown in help text when `HideVersion` set. - -## [1.13.0] - 2016-03-06 (backfilled 2016-04-25) -### Added -- YAML file input support. -- `NArg` method on context. - -## [1.12.0] - 2016-02-17 (backfilled 2016-04-25) -### Added -- Custom usage error handling. -- Custom text support in `USAGE` section of help output. -- Improved help messages for empty strings. -- AppVeyor CI configuration. - -### Changed -- Removed `panic` from default help printer func. -- De-duping and optimizations. - -### Fixed -- Correctly handle `Before`/`After` at command level when no subcommands. -- Case of literal `-` argument causing flag reordering. -- Environment variable hints on Windows. -- Docs updates. - -## [1.11.1] - 2015-12-21 (backfilled 2016-04-25) -### Changed -- Use `path.Base` in `Name` and `HelpName` -- Export `GetName` on flag types. - -### Fixed -- Flag parsing when skipping is enabled. -- Test output cleanup. -- Move completion check to account for empty input case. - -## [1.11.0] - 2015-11-15 (backfilled 2016-04-25) -### Added -- Destination scan support for flags. -- Testing against `tip` in Travis CI config. - -### Changed -- Go version in Travis CI config. - -### Fixed -- Removed redundant tests. -- Use correct example naming in tests. - -## [1.10.2] - 2015-10-29 (backfilled 2016-04-25) -### Fixed -- Remove unused var in bash completion. - -## [1.10.1] - 2015-10-21 (backfilled 2016-04-25) -### Added -- Coverage and reference logos in README. - -### Fixed -- Use specified values in help and version parsing. -- Only display app version and help message once. - -## [1.10.0] - 2015-10-06 (backfilled 2016-04-25) -### Added -- More tests for existing functionality. -- `ArgsUsage` at app and command level for help text flexibility. - -### Fixed -- Honor `HideHelp` and `HideVersion` in `App.Run`. -- Remove juvenile word from README. - -## [1.9.0] - 2015-09-08 (backfilled 2016-04-25) -### Added -- `FullName` on command with accompanying help output update. -- Set default `$PROG` in bash completion. - -### Changed -- Docs formatting. - -### Fixed -- Removed self-referential imports in tests. - -## [1.8.0] - 2015-06-30 (backfilled 2016-04-25) -### Added -- Support for `Copyright` at app level. -- `Parent` func at context level to walk up context lineage. - -### Fixed -- Global flag processing at top level. - -## [1.7.1] - 2015-06-11 (backfilled 2016-04-25) -### Added -- Aggregate errors from `Before`/`After` funcs. -- Doc comments on flag structs. -- Include non-global flags when checking version and help. -- Travis CI config updates. - -### Fixed -- Ensure slice type flags have non-nil values. -- Collect global flags from the full command hierarchy. -- Docs prose. - -## [1.7.0] - 2015-05-03 (backfilled 2016-04-25) -### Changed -- `HelpPrinter` signature includes output writer. - -### Fixed -- Specify go 1.1+ in docs. -- Set `Writer` when running command as app. - -## [1.6.0] - 2015-03-23 (backfilled 2016-04-25) -### Added -- Multiple author support. -- `NumFlags` at context level. -- `Aliases` at command level. - -### Deprecated -- `ShortName` at command level. - -### Fixed -- Subcommand help output. -- Backward compatible support for deprecated `Author` and `Email` fields. -- Docs regarding `Names`/`Aliases`. - -## [1.5.0] - 2015-02-20 (backfilled 2016-04-25) -### Added -- `After` hook func support at app and command level. - -### Fixed -- Use parsed context when running command as subcommand. -- Docs prose. - -## [1.4.1] - 2015-01-09 (backfilled 2016-04-25) -### Added -- Support for hiding `-h / --help` flags, but not `help` subcommand. -- Stop flag parsing after `--`. - -### Fixed -- Help text for generic flags to specify single value. -- Use double quotes in output for defaults. -- Use `ParseInt` instead of `ParseUint` for int environment var values. -- Use `0` as base when parsing int environment var values. - -## [1.4.0] - 2014-12-12 (backfilled 2016-04-25) -### Added -- Support for environment variable lookup "cascade". -- Support for `Stdout` on app for output redirection. - -### Fixed -- Print command help instead of app help in `ShowCommandHelp`. - -## [1.3.1] - 2014-11-13 (backfilled 2016-04-25) -### Added -- Docs and example code updates. - -### Changed -- Default `-v / --version` flag made optional. - -## [1.3.0] - 2014-08-10 (backfilled 2016-04-25) -### Added -- `FlagNames` at context level. -- Exposed `VersionPrinter` var for more control over version output. -- Zsh completion hook. -- `AUTHOR` section in default app help template. -- Contribution guidelines. -- `DurationFlag` type. - -## [1.2.0] - 2014-08-02 -### Added -- Support for environment variable defaults on flags plus tests. - -## [1.1.0] - 2014-07-15 -### Added -- Bash completion. -- Optional hiding of built-in help command. -- Optional skipping of flag parsing at command level. -- `Author`, `Email`, and `Compiled` metadata on app. -- `Before` hook func support at app and command level. -- `CommandNotFound` func support at app level. -- Command reference available on context. -- `GenericFlag` type. -- `Float64Flag` type. -- `BoolTFlag` type. -- `IsSet` flag helper on context. -- More flag lookup funcs at context level. -- More tests & docs. - -### Changed -- Help template updates to account for presence/absence of flags. -- Separated subcommand help template. -- Exposed `HelpPrinter` var for more control over help output. - -## [1.0.0] - 2013-11-01 -### Added -- `help` flag in default app flag set and each command flag set. -- Custom handling of argument parsing errors. -- Command lookup by name at app level. -- `StringSliceFlag` type and supporting `StringSlice` type. -- `IntSliceFlag` type and supporting `IntSlice` type. -- Slice type flag lookups by name at context level. -- Export of app and command help functions. -- More tests & docs. - -## 0.1.0 - 2013-07-22 -### Added -- Initial implementation. - -[Unreleased]: https://github.com/urfave/cli/compare/v1.18.0...HEAD -[1.18.0]: https://github.com/urfave/cli/compare/v1.17.0...v1.18.0 -[1.17.0]: https://github.com/urfave/cli/compare/v1.16.0...v1.17.0 -[1.16.0]: https://github.com/urfave/cli/compare/v1.15.0...v1.16.0 -[1.15.0]: https://github.com/urfave/cli/compare/v1.14.0...v1.15.0 -[1.14.0]: https://github.com/urfave/cli/compare/v1.13.0...v1.14.0 -[1.13.0]: https://github.com/urfave/cli/compare/v1.12.0...v1.13.0 -[1.12.0]: https://github.com/urfave/cli/compare/v1.11.1...v1.12.0 -[1.11.1]: https://github.com/urfave/cli/compare/v1.11.0...v1.11.1 -[1.11.0]: https://github.com/urfave/cli/compare/v1.10.2...v1.11.0 -[1.10.2]: https://github.com/urfave/cli/compare/v1.10.1...v1.10.2 -[1.10.1]: https://github.com/urfave/cli/compare/v1.10.0...v1.10.1 -[1.10.0]: https://github.com/urfave/cli/compare/v1.9.0...v1.10.0 -[1.9.0]: https://github.com/urfave/cli/compare/v1.8.0...v1.9.0 -[1.8.0]: https://github.com/urfave/cli/compare/v1.7.1...v1.8.0 -[1.7.1]: https://github.com/urfave/cli/compare/v1.7.0...v1.7.1 -[1.7.0]: https://github.com/urfave/cli/compare/v1.6.0...v1.7.0 -[1.6.0]: https://github.com/urfave/cli/compare/v1.5.0...v1.6.0 -[1.5.0]: https://github.com/urfave/cli/compare/v1.4.1...v1.5.0 -[1.4.1]: https://github.com/urfave/cli/compare/v1.4.0...v1.4.1 -[1.4.0]: https://github.com/urfave/cli/compare/v1.3.1...v1.4.0 -[1.3.1]: https://github.com/urfave/cli/compare/v1.3.0...v1.3.1 -[1.3.0]: https://github.com/urfave/cli/compare/v1.2.0...v1.3.0 -[1.2.0]: https://github.com/urfave/cli/compare/v1.1.0...v1.2.0 -[1.1.0]: https://github.com/urfave/cli/compare/v1.0.0...v1.1.0 -[1.0.0]: https://github.com/urfave/cli/compare/v0.1.0...v1.0.0 diff --git a/vendor/github.com/codegangsta/cli/LICENSE b/vendor/github.com/codegangsta/cli/LICENSE deleted file mode 100644 index 42a597e..0000000 --- a/vendor/github.com/codegangsta/cli/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2016 Jeremy Saenz & Contributors - -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. diff --git a/vendor/github.com/codegangsta/cli/README.md b/vendor/github.com/codegangsta/cli/README.md deleted file mode 100644 index bb5f61e..0000000 --- a/vendor/github.com/codegangsta/cli/README.md +++ /dev/null @@ -1,1364 +0,0 @@ -cli -=== - -[![Build Status](https://travis-ci.org/urfave/cli.svg?branch=master)](https://travis-ci.org/urfave/cli) -[![Windows Build Status](https://ci.appveyor.com/api/projects/status/rtgk5xufi932pb2v?svg=true)](https://ci.appveyor.com/project/urfave/cli) -[![GoDoc](https://godoc.org/github.com/urfave/cli?status.svg)](https://godoc.org/github.com/urfave/cli) -[![codebeat](https://codebeat.co/badges/0a8f30aa-f975-404b-b878-5fab3ae1cc5f)](https://codebeat.co/projects/github-com-urfave-cli) -[![Go Report Card](https://goreportcard.com/badge/urfave/cli)](https://goreportcard.com/report/urfave/cli) -[![top level coverage](https://gocover.io/_badge/github.com/urfave/cli?0 "top level coverage")](http://gocover.io/github.com/urfave/cli) / -[![altsrc coverage](https://gocover.io/_badge/github.com/urfave/cli/altsrc?0 "altsrc coverage")](http://gocover.io/github.com/urfave/cli/altsrc) - -**Notice:** This is the library formerly known as -`github.com/codegangsta/cli` -- Github will automatically redirect requests -to this repository, but we recommend updating your references for clarity. - -cli is a simple, fast, and fun package for building command line apps in Go. The -goal is to enable developers to write fast and distributable command line -applications in an expressive way. - - - -- [Overview](#overview) -- [Installation](#installation) - * [Supported platforms](#supported-platforms) - * [Using the `v2` branch](#using-the-v2-branch) - * [Pinning to the `v1` releases](#pinning-to-the-v1-releases) -- [Getting Started](#getting-started) -- [Examples](#examples) - * [Arguments](#arguments) - * [Flags](#flags) - + [Placeholder Values](#placeholder-values) - + [Alternate Names](#alternate-names) - + [Ordering](#ordering) - + [Values from the Environment](#values-from-the-environment) - + [Values from alternate input sources (YAML, TOML, and others)](#values-from-alternate-input-sources-yaml-toml-and-others) - * [Subcommands](#subcommands) - * [Subcommands categories](#subcommands-categories) - * [Exit code](#exit-code) - * [Bash Completion](#bash-completion) - + [Enabling](#enabling) - + [Distribution](#distribution) - + [Customization](#customization) - * [Generated Help Text](#generated-help-text) - + [Customization](#customization-1) - * [Version Flag](#version-flag) - + [Customization](#customization-2) - + [Full API Example](#full-api-example) -- [Contribution Guidelines](#contribution-guidelines) - - - -## Overview - -Command line apps are usually so tiny that there is absolutely no reason why -your code should *not* be self-documenting. Things like generating help text and -parsing command flags/options should not hinder productivity when writing a -command line app. - -**This is where cli comes into play.** cli makes command line programming fun, -organized, and expressive! - -## Installation - -Make sure you have a working Go environment. Go version 1.2+ is supported. [See -the install instructions for Go](http://golang.org/doc/install.html). - -To install cli, simply run: -``` -$ go get github.com/urfave/cli -``` - -Make sure your `PATH` includes the `$GOPATH/bin` directory so your commands can -be easily used: -``` -export PATH=$PATH:$GOPATH/bin -``` - -### Supported platforms - -cli is tested against multiple versions of Go on Linux, and against the latest -released version of Go on OS X and Windows. For full details, see -[`./.travis.yml`](./.travis.yml) and [`./appveyor.yml`](./appveyor.yml). - -### Using the `v2` branch - -**Warning**: The `v2` branch is currently unreleased and considered unstable. - -There is currently a long-lived branch named `v2` that is intended to land as -the new `master` branch once development there has settled down. The current -`master` branch (mirrored as `v1`) is being manually merged into `v2` on -an irregular human-based schedule, but generally if one wants to "upgrade" to -`v2` *now* and accept the volatility (read: "awesomeness") that comes along with -that, please use whatever version pinning of your preference, such as via -`gopkg.in`: - -``` -$ go get gopkg.in/urfave/cli.v2 -``` - -``` go -... -import ( - "gopkg.in/urfave/cli.v2" // imports as package "cli" -) -... -``` - -### Pinning to the `v1` releases - -Similarly to the section above describing use of the `v2` branch, if one wants -to avoid any unexpected compatibility pains once `v2` becomes `master`, then -pinning to `v1` is an acceptable option, e.g.: - -``` -$ go get gopkg.in/urfave/cli.v1 -``` - -``` go -... -import ( - "gopkg.in/urfave/cli.v1" // imports as package "cli" -) -... -``` - -This will pull the latest tagged `v1` release (e.g. `v1.18.1` at the time of writing). - -## Getting Started - -One of the philosophies behind cli is that an API should be playful and full of -discovery. So a cli app can be as little as one line of code in `main()`. - - -``` go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - cli.NewApp().Run(os.Args) -} -``` - -This app will run and show help text, but is not very useful. Let's give an -action to execute and some help documentation: - - -``` go -package main - -import ( - "fmt" - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - app.Name = "boom" - app.Usage = "make an explosive entrance" - app.Action = func(c *cli.Context) error { - fmt.Println("boom! I say!") - return nil - } - - app.Run(os.Args) -} -``` - -Running this already gives you a ton of functionality, plus support for things -like subcommands and flags, which are covered below. - -## Examples - -Being a programmer can be a lonely job. Thankfully by the power of automation -that is not the case! Let's create a greeter app to fend off our demons of -loneliness! - -Start by creating a directory named `greet`, and within it, add a file, -`greet.go` with the following code in it: - - -``` go -package main - -import ( - "fmt" - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - app.Name = "greet" - app.Usage = "fight the loneliness!" - app.Action = func(c *cli.Context) error { - fmt.Println("Hello friend!") - return nil - } - - app.Run(os.Args) -} -``` - -Install our command to the `$GOPATH/bin` directory: - -``` -$ go install -``` - -Finally run our new command: - -``` -$ greet -Hello friend! -``` - -cli also generates neat help text: - -``` -$ greet help -NAME: - greet - fight the loneliness! - -USAGE: - greet [global options] command [command options] [arguments...] - -VERSION: - 0.0.0 - -COMMANDS: - help, h Shows a list of commands or help for one command - -GLOBAL OPTIONS - --version Shows version information -``` - -### Arguments - -You can lookup arguments by calling the `Args` function on `cli.Context`, e.g.: - - -``` go -package main - -import ( - "fmt" - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - - app.Action = func(c *cli.Context) error { - fmt.Printf("Hello %q", c.Args().Get(0)) - return nil - } - - app.Run(os.Args) -} -``` - -### Flags - -Setting and querying flags is simple. - - -``` go -package main - -import ( - "fmt" - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - - app.Flags = []cli.Flag { - cli.StringFlag{ - Name: "lang", - Value: "english", - Usage: "language for the greeting", - }, - } - - app.Action = func(c *cli.Context) error { - name := "Nefertiti" - if c.NArg() > 0 { - name = c.Args().Get(0) - } - if c.String("lang") == "spanish" { - fmt.Println("Hola", name) - } else { - fmt.Println("Hello", name) - } - return nil - } - - app.Run(os.Args) -} -``` - -You can also set a destination variable for a flag, to which the content will be -scanned. - - -``` go -package main - -import ( - "os" - "fmt" - - "github.com/urfave/cli" -) - -func main() { - var language string - - app := cli.NewApp() - - app.Flags = []cli.Flag { - cli.StringFlag{ - Name: "lang", - Value: "english", - Usage: "language for the greeting", - Destination: &language, - }, - } - - app.Action = func(c *cli.Context) error { - name := "someone" - if c.NArg() > 0 { - name = c.Args()[0] - } - if language == "spanish" { - fmt.Println("Hola", name) - } else { - fmt.Println("Hello", name) - } - return nil - } - - app.Run(os.Args) -} -``` - -See full list of flags at http://godoc.org/github.com/urfave/cli - -#### Placeholder Values - -Sometimes it's useful to specify a flag's value within the usage string itself. -Such placeholders are indicated with back quotes. - -For example this: - - -```go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - - app.Flags = []cli.Flag{ - cli.StringFlag{ - Name: "config, c", - Usage: "Load configuration from `FILE`", - }, - } - - app.Run(os.Args) -} -``` - -Will result in help output like: - -``` ---config FILE, -c FILE Load configuration from FILE -``` - -Note that only the first placeholder is used. Subsequent back-quoted words will -be left as-is. - -#### Alternate Names - -You can set alternate (or short) names for flags by providing a comma-delimited -list for the `Name`. e.g. - - -``` go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - - app.Flags = []cli.Flag { - cli.StringFlag{ - Name: "lang, l", - Value: "english", - Usage: "language for the greeting", - }, - } - - app.Run(os.Args) -} -``` - -That flag can then be set with `--lang spanish` or `-l spanish`. Note that -giving two different forms of the same flag in the same command invocation is an -error. - -#### Ordering - -Flags for the application and commands are shown in the order they are defined. -However, it's possible to sort them from outside this library by using `FlagsByName` -with `sort`. - -For example this: - - -``` go -package main - -import ( - "os" - "sort" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - - app.Flags = []cli.Flag { - cli.StringFlag{ - Name: "lang, l", - Value: "english", - Usage: "Language for the greeting", - }, - cli.StringFlag{ - Name: "config, c", - Usage: "Load configuration from `FILE`", - }, - } - - sort.Sort(cli.FlagsByName(app.Flags)) - - app.Run(os.Args) -} -``` - -Will result in help output like: - -``` ---config FILE, -c FILE Load configuration from FILE ---lang value, -l value Language for the greeting (default: "english") -``` - -#### Values from the Environment - -You can also have the default value set from the environment via `EnvVar`. e.g. - - -``` go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - - app.Flags = []cli.Flag { - cli.StringFlag{ - Name: "lang, l", - Value: "english", - Usage: "language for the greeting", - EnvVar: "APP_LANG", - }, - } - - app.Run(os.Args) -} -``` - -The `EnvVar` may also be given as a comma-delimited "cascade", where the first -environment variable that resolves is used as the default. - - -``` go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - - app.Flags = []cli.Flag { - cli.StringFlag{ - Name: "lang, l", - Value: "english", - Usage: "language for the greeting", - EnvVar: "LEGACY_COMPAT_LANG,APP_LANG,LANG", - }, - } - - app.Run(os.Args) -} -``` - -#### Values from alternate input sources (YAML, TOML, and others) - -There is a separate package altsrc that adds support for getting flag values -from other file input sources. - -Currently supported input source formats: -* YAML -* TOML - -In order to get values for a flag from an alternate input source the following -code would be added to wrap an existing cli.Flag like below: - -``` go - altsrc.NewIntFlag(cli.IntFlag{Name: "test"}) -``` - -Initialization must also occur for these flags. Below is an example initializing -getting data from a yaml file below. - -``` go - command.Before = altsrc.InitInputSourceWithContext(command.Flags, NewYamlSourceFromFlagFunc("load")) -``` - -The code above will use the "load" string as a flag name to get the file name of -a yaml file from the cli.Context. It will then use that file name to initialize -the yaml input source for any flags that are defined on that command. As a note -the "load" flag used would also have to be defined on the command flags in order -for this code snipped to work. - -Currently only the aboved specified formats are supported but developers can -add support for other input sources by implementing the -altsrc.InputSourceContext for their given sources. - -Here is a more complete sample of a command using YAML support: - - -``` go -package notmain - -import ( - "fmt" - "os" - - "github.com/urfave/cli" - "github.com/urfave/cli/altsrc" -) - -func main() { - app := cli.NewApp() - - flags := []cli.Flag{ - altsrc.NewIntFlag(cli.IntFlag{Name: "test"}), - cli.StringFlag{Name: "load"}, - } - - app.Action = func(c *cli.Context) error { - fmt.Println("yaml ist rad") - return nil - } - - app.Before = altsrc.InitInputSourceWithContext(flags, altsrc.NewYamlSourceFromFlagFunc("load")) - app.Flags = flags - - app.Run(os.Args) -} -``` - -### Subcommands - -Subcommands can be defined for a more git-like command line app. - - -```go -package main - -import ( - "fmt" - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - - app.Commands = []cli.Command{ - { - Name: "add", - Aliases: []string{"a"}, - Usage: "add a task to the list", - Action: func(c *cli.Context) error { - fmt.Println("added task: ", c.Args().First()) - return nil - }, - }, - { - Name: "complete", - Aliases: []string{"c"}, - Usage: "complete a task on the list", - Action: func(c *cli.Context) error { - fmt.Println("completed task: ", c.Args().First()) - return nil - }, - }, - { - Name: "template", - Aliases: []string{"t"}, - Usage: "options for task templates", - Subcommands: []cli.Command{ - { - Name: "add", - Usage: "add a new template", - Action: func(c *cli.Context) error { - fmt.Println("new task template: ", c.Args().First()) - return nil - }, - }, - { - Name: "remove", - Usage: "remove an existing template", - Action: func(c *cli.Context) error { - fmt.Println("removed task template: ", c.Args().First()) - return nil - }, - }, - }, - }, - } - - app.Run(os.Args) -} -``` - -### Subcommands categories - -For additional organization in apps that have many subcommands, you can -associate a category for each command to group them together in the help -output. - -E.g. - -```go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - - app.Commands = []cli.Command{ - { - Name: "noop", - }, - { - Name: "add", - Category: "template", - }, - { - Name: "remove", - Category: "template", - }, - } - - app.Run(os.Args) -} -``` - -Will include: - -``` -COMMANDS: - noop - - Template actions: - add - remove -``` - -### Exit code - -Calling `App.Run` will not automatically call `os.Exit`, which means that by -default the exit code will "fall through" to being `0`. An explicit exit code -may be set by returning a non-nil error that fulfills `cli.ExitCoder`, *or* a -`cli.MultiError` that includes an error that fulfills `cli.ExitCoder`, e.g.: - -``` go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - app := cli.NewApp() - app.Flags = []cli.Flag{ - cli.BoolTFlag{ - Name: "ginger-crouton", - Usage: "is it in the soup?", - }, - } - app.Action = func(ctx *cli.Context) error { - if !ctx.Bool("ginger-crouton") { - return cli.NewExitError("it is not in the soup", 86) - } - return nil - } - - app.Run(os.Args) -} -``` - -### Bash Completion - -You can enable completion commands by setting the `EnableBashCompletion` -flag on the `App` object. By default, this setting will only auto-complete to -show an app's subcommands, but you can write your own completion methods for -the App or its subcommands. - - -``` go -package main - -import ( - "fmt" - "os" - - "github.com/urfave/cli" -) - -func main() { - tasks := []string{"cook", "clean", "laundry", "eat", "sleep", "code"} - - app := cli.NewApp() - app.EnableBashCompletion = true - app.Commands = []cli.Command{ - { - Name: "complete", - Aliases: []string{"c"}, - Usage: "complete a task on the list", - Action: func(c *cli.Context) error { - fmt.Println("completed task: ", c.Args().First()) - return nil - }, - BashComplete: func(c *cli.Context) { - // This will complete if no args are passed - if c.NArg() > 0 { - return - } - for _, t := range tasks { - fmt.Println(t) - } - }, - }, - } - - app.Run(os.Args) -} -``` - -#### Enabling - -Source the `autocomplete/bash_autocomplete` file in your `.bashrc` file while -setting the `PROG` variable to the name of your program: - -`PROG=myprogram source /.../cli/autocomplete/bash_autocomplete` - -#### Distribution - -Copy `autocomplete/bash_autocomplete` into `/etc/bash_completion.d/` and rename -it to the name of the program you wish to add autocomplete support for (or -automatically install it there if you are distributing a package). Don't forget -to source the file to make it active in the current shell. - -``` -sudo cp src/bash_autocomplete /etc/bash_completion.d/ -source /etc/bash_completion.d/ -``` - -Alternatively, you can just document that users should source the generic -`autocomplete/bash_autocomplete` in their bash configuration with `$PROG` set -to the name of their program (as above). - -#### Customization - -The default bash completion flag (`--generate-bash-completion`) is defined as -`cli.BashCompletionFlag`, and may be redefined if desired, e.g.: - - -``` go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - cli.BashCompletionFlag = cli.BoolFlag{ - Name: "compgen", - Hidden: true, - } - - app := cli.NewApp() - app.EnableBashCompletion = true - app.Commands = []cli.Command{ - { - Name: "wat", - }, - } - app.Run(os.Args) -} -``` - -### Generated Help Text - -The default help flag (`-h/--help`) is defined as `cli.HelpFlag` and is checked -by the cli internals in order to print generated help text for the app, command, -or subcommand, and break execution. - -#### Customization - -All of the help text generation may be customized, and at multiple levels. The -templates are exposed as variables `AppHelpTemplate`, `CommandHelpTemplate`, and -`SubcommandHelpTemplate` which may be reassigned or augmented, and full override -is possible by assigning a compatible func to the `cli.HelpPrinter` variable, -e.g.: - - -``` go -package main - -import ( - "fmt" - "io" - "os" - - "github.com/urfave/cli" -) - -func main() { - // EXAMPLE: Append to an existing template - cli.AppHelpTemplate = fmt.Sprintf(`%s - -WEBSITE: http://awesometown.example.com - -SUPPORT: support@awesometown.example.com - -`, cli.AppHelpTemplate) - - // EXAMPLE: Override a template - cli.AppHelpTemplate = `NAME: - {{.Name}} - {{.Usage}} -USAGE: - {{.HelpName}} {{if .VisibleFlags}}[global options]{{end}}{{if .Commands}} command -[command options]{{end}} {{if -.ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}} - {{if len .Authors}} -AUTHOR(S): - {{range .Authors}}{{ . }}{{end}} - {{end}}{{if .Commands}} -COMMANDS: -{{range .Commands}}{{if not .HideHelp}} {{join .Names ", "}}{{ "\t" -}}{{.Usage}}{{ "\n" }}{{end}}{{end}}{{end}}{{if .VisibleFlags}} -GLOBAL OPTIONS: - {{range .VisibleFlags}}{{.}} - {{end}}{{end}}{{if .Copyright }} -COPYRIGHT: - {{.Copyright}} - {{end}}{{if .Version}} -VERSION: - {{.Version}} - {{end}} -` - - // EXAMPLE: Replace the `HelpPrinter` func - cli.HelpPrinter = func(w io.Writer, templ string, data interface{}) { - fmt.Println("Ha HA. I pwnd the help!!1") - } - - cli.NewApp().Run(os.Args) -} -``` - -The default flag may be customized to something other than `-h/--help` by -setting `cli.HelpFlag`, e.g.: - - -``` go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - cli.HelpFlag = cli.BoolFlag{ - Name: "halp, haaaaalp", - Usage: "HALP", - EnvVar: "SHOW_HALP,HALPPLZ", - } - - cli.NewApp().Run(os.Args) -} -``` - -### Version Flag - -The default version flag (`-v/--version`) is defined as `cli.VersionFlag`, which -is checked by the cli internals in order to print the `App.Version` via -`cli.VersionPrinter` and break execution. - -#### Customization - -The default flag may be customized to something other than `-v/--version` by -setting `cli.VersionFlag`, e.g.: - - -``` go -package main - -import ( - "os" - - "github.com/urfave/cli" -) - -func main() { - cli.VersionFlag = cli.BoolFlag{ - Name: "print-version, V", - Usage: "print only the version", - } - - app := cli.NewApp() - app.Name = "partay" - app.Version = "19.99.0" - app.Run(os.Args) -} -``` - -Alternatively, the version printer at `cli.VersionPrinter` may be overridden, e.g.: - - -``` go -package main - -import ( - "fmt" - "os" - - "github.com/urfave/cli" -) - -var ( - Revision = "fafafaf" -) - -func main() { - cli.VersionPrinter = func(c *cli.Context) { - fmt.Printf("version=%s revision=%s\n", c.App.Version, Revision) - } - - app := cli.NewApp() - app.Name = "partay" - app.Version = "19.99.0" - app.Run(os.Args) -} -``` - -#### Full API Example - -**Notice**: This is a contrived (functioning) example meant strictly for API -demonstration purposes. Use of one's imagination is encouraged. - - -``` go -package main - -import ( - "errors" - "flag" - "fmt" - "io" - "io/ioutil" - "os" - "time" - - "github.com/urfave/cli" -) - -func init() { - cli.AppHelpTemplate += "\nCUSTOMIZED: you bet ur muffins\n" - cli.CommandHelpTemplate += "\nYMMV\n" - cli.SubcommandHelpTemplate += "\nor something\n" - - cli.HelpFlag = cli.BoolFlag{Name: "halp"} - cli.BashCompletionFlag = cli.BoolFlag{Name: "compgen", Hidden: true} - cli.VersionFlag = cli.BoolFlag{Name: "print-version, V"} - - cli.HelpPrinter = func(w io.Writer, templ string, data interface{}) { - fmt.Fprintf(w, "best of luck to you\n") - } - cli.VersionPrinter = func(c *cli.Context) { - fmt.Fprintf(c.App.Writer, "version=%s\n", c.App.Version) - } - cli.OsExiter = func(c int) { - fmt.Fprintf(cli.ErrWriter, "refusing to exit %d\n", c) - } - cli.ErrWriter = ioutil.Discard - cli.FlagStringer = func(fl cli.Flag) string { - return fmt.Sprintf("\t\t%s", fl.GetName()) - } -} - -type hexWriter struct{} - -func (w *hexWriter) Write(p []byte) (int, error) { - for _, b := range p { - fmt.Printf("%x", b) - } - fmt.Printf("\n") - - return len(p), nil -} - -type genericType struct{ - s string -} - -func (g *genericType) Set(value string) error { - g.s = value - return nil -} - -func (g *genericType) String() string { - return g.s -} - -func main() { - app := cli.NewApp() - app.Name = "kənˈtrīv" - app.Version = "19.99.0" - app.Compiled = time.Now() - app.Authors = []cli.Author{ - cli.Author{ - Name: "Example Human", - Email: "human@example.com", - }, - } - app.Copyright = "(c) 1999 Serious Enterprise" - app.HelpName = "contrive" - app.Usage = "demonstrate available API" - app.UsageText = "contrive - demonstrating the available API" - app.ArgsUsage = "[args and such]" - app.Commands = []cli.Command{ - cli.Command{ - Name: "doo", - Aliases: []string{"do"}, - Category: "motion", - Usage: "do the doo", - UsageText: "doo - does the dooing", - Description: "no really, there is a lot of dooing to be done", - ArgsUsage: "[arrgh]", - Flags: []cli.Flag{ - cli.BoolFlag{Name: "forever, forevvarr"}, - }, - Subcommands: cli.Commands{ - cli.Command{ - Name: "wop", - Action: wopAction, - }, - }, - SkipFlagParsing: false, - HideHelp: false, - Hidden: false, - HelpName: "doo!", - BashComplete: func(c *cli.Context) { - fmt.Fprintf(c.App.Writer, "--better\n") - }, - Before: func(c *cli.Context) error { - fmt.Fprintf(c.App.Writer, "brace for impact\n") - return nil - }, - After: func(c *cli.Context) error { - fmt.Fprintf(c.App.Writer, "did we lose anyone?\n") - return nil - }, - Action: func(c *cli.Context) error { - c.Command.FullName() - c.Command.HasName("wop") - c.Command.Names() - c.Command.VisibleFlags() - fmt.Fprintf(c.App.Writer, "dodododododoodododddooooododododooo\n") - if c.Bool("forever") { - c.Command.Run(c) - } - return nil - }, - OnUsageError: func(c *cli.Context, err error, isSubcommand bool) error { - fmt.Fprintf(c.App.Writer, "for shame\n") - return err - }, - }, - } - app.Flags = []cli.Flag{ - cli.BoolFlag{Name: "fancy"}, - cli.BoolTFlag{Name: "fancier"}, - cli.DurationFlag{Name: "howlong, H", Value: time.Second * 3}, - cli.Float64Flag{Name: "howmuch"}, - cli.GenericFlag{Name: "wat", Value: &genericType{}}, - cli.Int64Flag{Name: "longdistance"}, - cli.Int64SliceFlag{Name: "intervals"}, - cli.IntFlag{Name: "distance"}, - cli.IntSliceFlag{Name: "times"}, - cli.StringFlag{Name: "dance-move, d"}, - cli.StringSliceFlag{Name: "names, N"}, - cli.UintFlag{Name: "age"}, - cli.Uint64Flag{Name: "bigage"}, - } - app.EnableBashCompletion = true - app.HideHelp = false - app.HideVersion = false - app.BashComplete = func(c *cli.Context) { - fmt.Fprintf(c.App.Writer, "lipstick\nkiss\nme\nlipstick\nringo\n") - } - app.Before = func(c *cli.Context) error { - fmt.Fprintf(c.App.Writer, "HEEEERE GOES\n") - return nil - } - app.After = func(c *cli.Context) error { - fmt.Fprintf(c.App.Writer, "Phew!\n") - return nil - } - app.CommandNotFound = func(c *cli.Context, command string) { - fmt.Fprintf(c.App.Writer, "Thar be no %q here.\n", command) - } - app.OnUsageError = func(c *cli.Context, err error, isSubcommand bool) error { - if isSubcommand { - return err - } - - fmt.Fprintf(c.App.Writer, "WRONG: %#v\n", err) - return nil - } - app.Action = func(c *cli.Context) error { - cli.DefaultAppComplete(c) - cli.HandleExitCoder(errors.New("not an exit coder, though")) - cli.ShowAppHelp(c) - cli.ShowCommandCompletions(c, "nope") - cli.ShowCommandHelp(c, "also-nope") - cli.ShowCompletions(c) - cli.ShowSubcommandHelp(c) - cli.ShowVersion(c) - - categories := c.App.Categories() - categories.AddCommand("sounds", cli.Command{ - Name: "bloop", - }) - - for _, category := range c.App.Categories() { - fmt.Fprintf(c.App.Writer, "%s\n", category.Name) - fmt.Fprintf(c.App.Writer, "%#v\n", category.Commands) - fmt.Fprintf(c.App.Writer, "%#v\n", category.VisibleCommands()) - } - - fmt.Printf("%#v\n", c.App.Command("doo")) - if c.Bool("infinite") { - c.App.Run([]string{"app", "doo", "wop"}) - } - - if c.Bool("forevar") { - c.App.RunAsSubcommand(c) - } - c.App.Setup() - fmt.Printf("%#v\n", c.App.VisibleCategories()) - fmt.Printf("%#v\n", c.App.VisibleCommands()) - fmt.Printf("%#v\n", c.App.VisibleFlags()) - - fmt.Printf("%#v\n", c.Args().First()) - if len(c.Args()) > 0 { - fmt.Printf("%#v\n", c.Args()[1]) - } - fmt.Printf("%#v\n", c.Args().Present()) - fmt.Printf("%#v\n", c.Args().Tail()) - - set := flag.NewFlagSet("contrive", 0) - nc := cli.NewContext(c.App, set, c) - - fmt.Printf("%#v\n", nc.Args()) - fmt.Printf("%#v\n", nc.Bool("nope")) - fmt.Printf("%#v\n", nc.BoolT("nerp")) - fmt.Printf("%#v\n", nc.Duration("howlong")) - fmt.Printf("%#v\n", nc.Float64("hay")) - fmt.Printf("%#v\n", nc.Generic("bloop")) - fmt.Printf("%#v\n", nc.Int64("bonk")) - fmt.Printf("%#v\n", nc.Int64Slice("burnks")) - fmt.Printf("%#v\n", nc.Int("bips")) - fmt.Printf("%#v\n", nc.IntSlice("blups")) - fmt.Printf("%#v\n", nc.String("snurt")) - fmt.Printf("%#v\n", nc.StringSlice("snurkles")) - fmt.Printf("%#v\n", nc.Uint("flub")) - fmt.Printf("%#v\n", nc.Uint64("florb")) - fmt.Printf("%#v\n", nc.GlobalBool("global-nope")) - fmt.Printf("%#v\n", nc.GlobalBoolT("global-nerp")) - fmt.Printf("%#v\n", nc.GlobalDuration("global-howlong")) - fmt.Printf("%#v\n", nc.GlobalFloat64("global-hay")) - fmt.Printf("%#v\n", nc.GlobalGeneric("global-bloop")) - fmt.Printf("%#v\n", nc.GlobalInt("global-bips")) - fmt.Printf("%#v\n", nc.GlobalIntSlice("global-blups")) - fmt.Printf("%#v\n", nc.GlobalString("global-snurt")) - fmt.Printf("%#v\n", nc.GlobalStringSlice("global-snurkles")) - - fmt.Printf("%#v\n", nc.FlagNames()) - fmt.Printf("%#v\n", nc.GlobalFlagNames()) - fmt.Printf("%#v\n", nc.GlobalIsSet("wat")) - fmt.Printf("%#v\n", nc.GlobalSet("wat", "nope")) - fmt.Printf("%#v\n", nc.NArg()) - fmt.Printf("%#v\n", nc.NumFlags()) - fmt.Printf("%#v\n", nc.Parent()) - - nc.Set("wat", "also-nope") - - ec := cli.NewExitError("ohwell", 86) - fmt.Fprintf(c.App.Writer, "%d", ec.ExitCode()) - fmt.Printf("made it!\n") - return ec - } - - if os.Getenv("HEXY") != "" { - app.Writer = &hexWriter{} - app.ErrWriter = &hexWriter{} - } - - app.Metadata = map[string]interface{}{ - "layers": "many", - "explicable": false, - "whatever-values": 19.99, - } - - app.Run(os.Args) -} - -func wopAction(c *cli.Context) error { - fmt.Fprintf(c.App.Writer, ":wave: over here, eh\n") - return nil -} -``` - -## Contribution Guidelines - -Feel free to put up a pull request to fix a bug or maybe add a feature. I will -give it a code review and make sure that it does not break backwards -compatibility. If I or any other collaborators agree that it is in line with -the vision of the project, we will work with you to get the code into -a mergeable state and merge it into the master branch. - -If you have contributed something significant to the project, we will most -likely add you as a collaborator. As a collaborator you are given the ability -to merge others pull requests. It is very important that new code does not -break existing code, so be careful about what code you do choose to merge. - -If you feel like you have contributed to the project but have not yet been -added as a collaborator, we probably forgot to add you, please open an issue. diff --git a/vendor/github.com/codegangsta/cli/app.go b/vendor/github.com/codegangsta/cli/app.go deleted file mode 100644 index 95ffc0b..0000000 --- a/vendor/github.com/codegangsta/cli/app.go +++ /dev/null @@ -1,492 +0,0 @@ -package cli - -import ( - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "sort" - "time" -) - -var ( - changeLogURL = "https://github.com/urfave/cli/blob/master/CHANGELOG.md" - appActionDeprecationURL = fmt.Sprintf("%s#deprecated-cli-app-action-signature", changeLogURL) - runAndExitOnErrorDeprecationURL = fmt.Sprintf("%s#deprecated-cli-app-runandexitonerror", changeLogURL) - - contactSysadmin = "This is an error in the application. Please contact the distributor of this application if this is not you." - - errInvalidActionType = NewExitError("ERROR invalid Action type. "+ - fmt.Sprintf("Must be `func(*Context`)` or `func(*Context) error). %s", contactSysadmin)+ - fmt.Sprintf("See %s", appActionDeprecationURL), 2) -) - -// App is the main structure of a cli application. It is recommended that -// an app be created with the cli.NewApp() function -type App struct { - // The name of the program. Defaults to path.Base(os.Args[0]) - Name string - // Full name of command for help, defaults to Name - HelpName string - // Description of the program. - Usage string - // Text to override the USAGE section of help - UsageText string - // Description of the program argument format. - ArgsUsage string - // Version of the program - Version string - // Description of the program - Description string - // List of commands to execute - Commands []Command - // List of flags to parse - Flags []Flag - // Boolean to enable bash completion commands - EnableBashCompletion bool - // Boolean to hide built-in help command - HideHelp bool - // Boolean to hide built-in version flag and the VERSION section of help - HideVersion bool - // Populate on app startup, only gettable through method Categories() - categories CommandCategories - // An action to execute when the bash-completion flag is set - BashComplete BashCompleteFunc - // An action to execute before any subcommands are run, but after the context is ready - // If a non-nil error is returned, no subcommands are run - Before BeforeFunc - // An action to execute after any subcommands are run, but after the subcommand has finished - // It is run even if Action() panics - After AfterFunc - - // The action to execute when no subcommands are specified - // Expects a `cli.ActionFunc` but will accept the *deprecated* signature of `func(*cli.Context) {}` - // *Note*: support for the deprecated `Action` signature will be removed in a future version - Action interface{} - - // Execute this function if the proper command cannot be found - CommandNotFound CommandNotFoundFunc - // Execute this function if an usage error occurs - OnUsageError OnUsageErrorFunc - // Compilation date - Compiled time.Time - // List of all authors who contributed - Authors []Author - // Copyright of the binary if any - Copyright string - // Name of Author (Note: Use App.Authors, this is deprecated) - Author string - // Email of Author (Note: Use App.Authors, this is deprecated) - Email string - // Writer writer to write output to - Writer io.Writer - // ErrWriter writes error output - ErrWriter io.Writer - // Other custom info - Metadata map[string]interface{} - - didSetup bool -} - -// Tries to find out when this binary was compiled. -// Returns the current time if it fails to find it. -func compileTime() time.Time { - info, err := os.Stat(os.Args[0]) - if err != nil { - return time.Now() - } - return info.ModTime() -} - -// NewApp creates a new cli Application with some reasonable defaults for Name, -// Usage, Version and Action. -func NewApp() *App { - return &App{ - Name: filepath.Base(os.Args[0]), - HelpName: filepath.Base(os.Args[0]), - Usage: "A new cli application", - UsageText: "", - Version: "0.0.0", - BashComplete: DefaultAppComplete, - Action: helpCommand.Action, - Compiled: compileTime(), - Writer: os.Stdout, - } -} - -// Setup runs initialization code to ensure all data structures are ready for -// `Run` or inspection prior to `Run`. It is internally called by `Run`, but -// will return early if setup has already happened. -func (a *App) Setup() { - if a.didSetup { - return - } - - a.didSetup = true - - if a.Author != "" || a.Email != "" { - a.Authors = append(a.Authors, Author{Name: a.Author, Email: a.Email}) - } - - newCmds := []Command{} - for _, c := range a.Commands { - if c.HelpName == "" { - c.HelpName = fmt.Sprintf("%s %s", a.HelpName, c.Name) - } - newCmds = append(newCmds, c) - } - a.Commands = newCmds - - if a.Command(helpCommand.Name) == nil && !a.HideHelp { - a.Commands = append(a.Commands, helpCommand) - if (HelpFlag != BoolFlag{}) { - a.appendFlag(HelpFlag) - } - } - - if !a.HideVersion { - a.appendFlag(VersionFlag) - } - - a.categories = CommandCategories{} - for _, command := range a.Commands { - a.categories = a.categories.AddCommand(command.Category, command) - } - sort.Sort(a.categories) - - if a.Metadata == nil { - a.Metadata = make(map[string]interface{}) - } - - if a.Writer == nil { - a.Writer = os.Stdout - } -} - -// Run is the entry point to the cli app. Parses the arguments slice and routes -// to the proper flag/args combination -func (a *App) Run(arguments []string) (err error) { - a.Setup() - - // handle the completion flag separately from the flagset since - // completion could be attempted after a flag, but before its value was put - // on the command line. this causes the flagset to interpret the completion - // flag name as the value of the flag before it which is undesirable - // note that we can only do this because the shell autocomplete function - // always appends the completion flag at the end of the command - shellComplete, arguments := checkShellCompleteFlag(a, arguments) - - // parse flags - set, err := flagSet(a.Name, a.Flags) - if err != nil { - return err - } - - set.SetOutput(ioutil.Discard) - err = set.Parse(arguments[1:]) - nerr := normalizeFlags(a.Flags, set) - context := NewContext(a, set, nil) - if nerr != nil { - fmt.Fprintln(a.Writer, nerr) - ShowAppHelp(context) - return nerr - } - context.shellComplete = shellComplete - - if checkCompletions(context) { - return nil - } - - if err != nil { - if a.OnUsageError != nil { - err := a.OnUsageError(context, err, false) - HandleExitCoder(err) - return err - } - fmt.Fprintf(a.Writer, "%s %s\n\n", "Incorrect Usage.", err.Error()) - ShowAppHelp(context) - return err - } - - if !a.HideHelp && checkHelp(context) { - ShowAppHelp(context) - return nil - } - - if !a.HideVersion && checkVersion(context) { - ShowVersion(context) - return nil - } - - if a.After != nil { - defer func() { - if afterErr := a.After(context); afterErr != nil { - if err != nil { - err = NewMultiError(err, afterErr) - } else { - err = afterErr - } - } - }() - } - - if a.Before != nil { - beforeErr := a.Before(context) - if beforeErr != nil { - fmt.Fprintf(a.Writer, "%v\n\n", beforeErr) - ShowAppHelp(context) - HandleExitCoder(beforeErr) - err = beforeErr - return err - } - } - - args := context.Args() - if args.Present() { - name := args.First() - c := a.Command(name) - if c != nil { - return c.Run(context) - } - } - - if a.Action == nil { - a.Action = helpCommand.Action - } - - // Run default Action - err = HandleAction(a.Action, context) - - HandleExitCoder(err) - return err -} - -// RunAndExitOnError calls .Run() and exits non-zero if an error was returned -// -// Deprecated: instead you should return an error that fulfills cli.ExitCoder -// to cli.App.Run. This will cause the application to exit with the given eror -// code in the cli.ExitCoder -func (a *App) RunAndExitOnError() { - if err := a.Run(os.Args); err != nil { - fmt.Fprintln(a.errWriter(), err) - OsExiter(1) - } -} - -// RunAsSubcommand invokes the subcommand given the context, parses ctx.Args() to -// generate command-specific flags -func (a *App) RunAsSubcommand(ctx *Context) (err error) { - // append help to commands - if len(a.Commands) > 0 { - if a.Command(helpCommand.Name) == nil && !a.HideHelp { - a.Commands = append(a.Commands, helpCommand) - if (HelpFlag != BoolFlag{}) { - a.appendFlag(HelpFlag) - } - } - } - - newCmds := []Command{} - for _, c := range a.Commands { - if c.HelpName == "" { - c.HelpName = fmt.Sprintf("%s %s", a.HelpName, c.Name) - } - newCmds = append(newCmds, c) - } - a.Commands = newCmds - - // parse flags - set, err := flagSet(a.Name, a.Flags) - if err != nil { - return err - } - - set.SetOutput(ioutil.Discard) - err = set.Parse(ctx.Args().Tail()) - nerr := normalizeFlags(a.Flags, set) - context := NewContext(a, set, ctx) - - if nerr != nil { - fmt.Fprintln(a.Writer, nerr) - fmt.Fprintln(a.Writer) - if len(a.Commands) > 0 { - ShowSubcommandHelp(context) - } else { - ShowCommandHelp(ctx, context.Args().First()) - } - return nerr - } - - if checkCompletions(context) { - return nil - } - - if err != nil { - if a.OnUsageError != nil { - err = a.OnUsageError(context, err, true) - HandleExitCoder(err) - return err - } - fmt.Fprintf(a.Writer, "%s %s\n\n", "Incorrect Usage.", err.Error()) - ShowSubcommandHelp(context) - return err - } - - if len(a.Commands) > 0 { - if checkSubcommandHelp(context) { - return nil - } - } else { - if checkCommandHelp(ctx, context.Args().First()) { - return nil - } - } - - if a.After != nil { - defer func() { - afterErr := a.After(context) - if afterErr != nil { - HandleExitCoder(err) - if err != nil { - err = NewMultiError(err, afterErr) - } else { - err = afterErr - } - } - }() - } - - if a.Before != nil { - beforeErr := a.Before(context) - if beforeErr != nil { - HandleExitCoder(beforeErr) - err = beforeErr - return err - } - } - - args := context.Args() - if args.Present() { - name := args.First() - c := a.Command(name) - if c != nil { - return c.Run(context) - } - } - - // Run default Action - err = HandleAction(a.Action, context) - - HandleExitCoder(err) - return err -} - -// Command returns the named command on App. Returns nil if the command does not exist -func (a *App) Command(name string) *Command { - for _, c := range a.Commands { - if c.HasName(name) { - return &c - } - } - - return nil -} - -// Categories returns a slice containing all the categories with the commands they contain -func (a *App) Categories() CommandCategories { - return a.categories -} - -// VisibleCategories returns a slice of categories and commands that are -// Hidden=false -func (a *App) VisibleCategories() []*CommandCategory { - ret := []*CommandCategory{} - for _, category := range a.categories { - if visible := func() *CommandCategory { - for _, command := range category.Commands { - if !command.Hidden { - return category - } - } - return nil - }(); visible != nil { - ret = append(ret, visible) - } - } - return ret -} - -// VisibleCommands returns a slice of the Commands with Hidden=false -func (a *App) VisibleCommands() []Command { - ret := []Command{} - for _, command := range a.Commands { - if !command.Hidden { - ret = append(ret, command) - } - } - return ret -} - -// VisibleFlags returns a slice of the Flags with Hidden=false -func (a *App) VisibleFlags() []Flag { - return visibleFlags(a.Flags) -} - -func (a *App) hasFlag(flag Flag) bool { - for _, f := range a.Flags { - if flag == f { - return true - } - } - - return false -} - -func (a *App) errWriter() io.Writer { - - // When the app ErrWriter is nil use the package level one. - if a.ErrWriter == nil { - return ErrWriter - } - - return a.ErrWriter -} - -func (a *App) appendFlag(flag Flag) { - if !a.hasFlag(flag) { - a.Flags = append(a.Flags, flag) - } -} - -// Author represents someone who has contributed to a cli project. -type Author struct { - Name string // The Authors name - Email string // The Authors email -} - -// String makes Author comply to the Stringer interface, to allow an easy print in the templating process -func (a Author) String() string { - e := "" - if a.Email != "" { - e = " <" + a.Email + ">" - } - - return fmt.Sprintf("%v%v", a.Name, e) -} - -// HandleAction attempts to figure out which Action signature was used. If -// it's an ActionFunc or a func with the legacy signature for Action, the func -// is run! -func HandleAction(action interface{}, context *Context) (err error) { - if a, ok := action.(ActionFunc); ok { - return a(context) - } else if a, ok := action.(func(*Context) error); ok { - return a(context) - } else if a, ok := action.(func(*Context)); ok { // deprecated function signature - a(context) - return nil - } else { - return errInvalidActionType - } -} diff --git a/vendor/github.com/codegangsta/cli/appveyor.yml b/vendor/github.com/codegangsta/cli/appveyor.yml deleted file mode 100644 index 698b188..0000000 --- a/vendor/github.com/codegangsta/cli/appveyor.yml +++ /dev/null @@ -1,24 +0,0 @@ -version: "{build}" - -os: Windows Server 2012 R2 - -clone_folder: c:\gopath\src\github.com\urfave\cli - -environment: - GOPATH: C:\gopath - GOVERSION: 1.6 - PYTHON: C:\Python27-x64 - PYTHON_VERSION: 2.7.x - PYTHON_ARCH: 64 - -install: -- set PATH=%GOPATH%\bin;C:\go\bin;%PATH% -- go version -- go env -- go get github.com/urfave/gfmrun/... -- go get -v -t ./... - -build_script: -- python runtests vet -- python runtests test -- python runtests gfmrun diff --git a/vendor/github.com/codegangsta/cli/category.go b/vendor/github.com/codegangsta/cli/category.go deleted file mode 100644 index 1a60550..0000000 --- a/vendor/github.com/codegangsta/cli/category.go +++ /dev/null @@ -1,44 +0,0 @@ -package cli - -// CommandCategories is a slice of *CommandCategory. -type CommandCategories []*CommandCategory - -// CommandCategory is a category containing commands. -type CommandCategory struct { - Name string - Commands Commands -} - -func (c CommandCategories) Less(i, j int) bool { - return c[i].Name < c[j].Name -} - -func (c CommandCategories) Len() int { - return len(c) -} - -func (c CommandCategories) Swap(i, j int) { - c[i], c[j] = c[j], c[i] -} - -// AddCommand adds a command to a category. -func (c CommandCategories) AddCommand(category string, command Command) CommandCategories { - for _, commandCategory := range c { - if commandCategory.Name == category { - commandCategory.Commands = append(commandCategory.Commands, command) - return c - } - } - return append(c, &CommandCategory{Name: category, Commands: []Command{command}}) -} - -// VisibleCommands returns a slice of the Commands with Hidden=false -func (c *CommandCategory) VisibleCommands() []Command { - ret := []Command{} - for _, command := range c.Commands { - if !command.Hidden { - ret = append(ret, command) - } - } - return ret -} diff --git a/vendor/github.com/codegangsta/cli/cli.go b/vendor/github.com/codegangsta/cli/cli.go deleted file mode 100644 index 74fd101..0000000 --- a/vendor/github.com/codegangsta/cli/cli.go +++ /dev/null @@ -1,21 +0,0 @@ -// Package cli provides a minimal framework for creating and organizing command line -// Go applications. cli is designed to be easy to understand and write, the most simple -// cli application can be written as follows: -// func main() { -// cli.NewApp().Run(os.Args) -// } -// -// Of course this application does not do much, so let's make this an actual application: -// func main() { -// app := cli.NewApp() -// app.Name = "greet" -// app.Usage = "say a greeting" -// app.Action = func(c *cli.Context) error { -// println("Greetings") -// } -// -// app.Run(os.Args) -// } -package cli - -//go:generate python ./generate-flag-types cli -i flag-types.json -o flag_generated.go diff --git a/vendor/github.com/codegangsta/cli/command.go b/vendor/github.com/codegangsta/cli/command.go deleted file mode 100644 index 2628fbf..0000000 --- a/vendor/github.com/codegangsta/cli/command.go +++ /dev/null @@ -1,286 +0,0 @@ -package cli - -import ( - "fmt" - "io/ioutil" - "sort" - "strings" -) - -// Command is a subcommand for a cli.App. -type Command struct { - // The name of the command - Name string - // short name of the command. Typically one character (deprecated, use `Aliases`) - ShortName string - // A list of aliases for the command - Aliases []string - // A short description of the usage of this command - Usage string - // Custom text to show on USAGE section of help - UsageText string - // A longer explanation of how the command works - Description string - // A short description of the arguments of this command - ArgsUsage string - // The category the command is part of - Category string - // The function to call when checking for bash command completions - BashComplete BashCompleteFunc - // An action to execute before any sub-subcommands are run, but after the context is ready - // If a non-nil error is returned, no sub-subcommands are run - Before BeforeFunc - // An action to execute after any subcommands are run, but after the subcommand has finished - // It is run even if Action() panics - After AfterFunc - // The function to call when this command is invoked - Action interface{} - // TODO: replace `Action: interface{}` with `Action: ActionFunc` once some kind - // of deprecation period has passed, maybe? - - // Execute this function if a usage error occurs. - OnUsageError OnUsageErrorFunc - // List of child commands - Subcommands Commands - // List of flags to parse - Flags []Flag - // Treat all flags as normal arguments if true - SkipFlagParsing bool - // Skip argument reordering which attempts to move flags before arguments, - // but only works if all flags appear after all arguments. This behavior was - // removed n version 2 since it only works under specific conditions so we - // backport here by exposing it as an option for compatibility. - SkipArgReorder bool - // Boolean to hide built-in help command - HideHelp bool - // Boolean to hide this command from help or completion - Hidden bool - - // Full name of command for help, defaults to full command name, including parent commands. - HelpName string - commandNamePath []string -} - -// FullName returns the full name of the command. -// For subcommands this ensures that parent commands are part of the command path -func (c Command) FullName() string { - if c.commandNamePath == nil { - return c.Name - } - return strings.Join(c.commandNamePath, " ") -} - -// Commands is a slice of Command -type Commands []Command - -// Run invokes the command given the context, parses ctx.Args() to generate command-specific flags -func (c Command) Run(ctx *Context) (err error) { - if len(c.Subcommands) > 0 { - return c.startApp(ctx) - } - - if !c.HideHelp && (HelpFlag != BoolFlag{}) { - // append help to flags - c.Flags = append( - c.Flags, - HelpFlag, - ) - } - - set, err := flagSet(c.Name, c.Flags) - if err != nil { - return err - } - set.SetOutput(ioutil.Discard) - - if c.SkipFlagParsing { - err = set.Parse(append([]string{"--"}, ctx.Args().Tail()...)) - } else if !c.SkipArgReorder { - firstFlagIndex := -1 - terminatorIndex := -1 - for index, arg := range ctx.Args() { - if arg == "--" { - terminatorIndex = index - break - } else if arg == "-" { - // Do nothing. A dash alone is not really a flag. - continue - } else if strings.HasPrefix(arg, "-") && firstFlagIndex == -1 { - firstFlagIndex = index - } - } - - if firstFlagIndex > -1 { - args := ctx.Args() - regularArgs := make([]string, len(args[1:firstFlagIndex])) - copy(regularArgs, args[1:firstFlagIndex]) - - var flagArgs []string - if terminatorIndex > -1 { - flagArgs = args[firstFlagIndex:terminatorIndex] - regularArgs = append(regularArgs, args[terminatorIndex:]...) - } else { - flagArgs = args[firstFlagIndex:] - } - - err = set.Parse(append(flagArgs, regularArgs...)) - } else { - err = set.Parse(ctx.Args().Tail()) - } - } else { - err = set.Parse(ctx.Args().Tail()) - } - - nerr := normalizeFlags(c.Flags, set) - if nerr != nil { - fmt.Fprintln(ctx.App.Writer, nerr) - fmt.Fprintln(ctx.App.Writer) - ShowCommandHelp(ctx, c.Name) - return nerr - } - - context := NewContext(ctx.App, set, ctx) - if checkCommandCompletions(context, c.Name) { - return nil - } - - if err != nil { - if c.OnUsageError != nil { - err := c.OnUsageError(ctx, err, false) - HandleExitCoder(err) - return err - } - fmt.Fprintln(ctx.App.Writer, "Incorrect Usage:", err.Error()) - fmt.Fprintln(ctx.App.Writer) - ShowCommandHelp(ctx, c.Name) - return err - } - - if checkCommandHelp(context, c.Name) { - return nil - } - - if c.After != nil { - defer func() { - afterErr := c.After(context) - if afterErr != nil { - HandleExitCoder(err) - if err != nil { - err = NewMultiError(err, afterErr) - } else { - err = afterErr - } - } - }() - } - - if c.Before != nil { - err = c.Before(context) - if err != nil { - fmt.Fprintln(ctx.App.Writer, err) - fmt.Fprintln(ctx.App.Writer) - ShowCommandHelp(ctx, c.Name) - HandleExitCoder(err) - return err - } - } - - if c.Action == nil { - c.Action = helpSubcommand.Action - } - - context.Command = c - err = HandleAction(c.Action, context) - - if err != nil { - HandleExitCoder(err) - } - return err -} - -// Names returns the names including short names and aliases. -func (c Command) Names() []string { - names := []string{c.Name} - - if c.ShortName != "" { - names = append(names, c.ShortName) - } - - return append(names, c.Aliases...) -} - -// HasName returns true if Command.Name or Command.ShortName matches given name -func (c Command) HasName(name string) bool { - for _, n := range c.Names() { - if n == name { - return true - } - } - return false -} - -func (c Command) startApp(ctx *Context) error { - app := NewApp() - app.Metadata = ctx.App.Metadata - // set the name and usage - app.Name = fmt.Sprintf("%s %s", ctx.App.Name, c.Name) - if c.HelpName == "" { - app.HelpName = c.HelpName - } else { - app.HelpName = app.Name - } - - if c.Description != "" { - app.Usage = c.Description - } else { - app.Usage = c.Usage - } - - // set CommandNotFound - app.CommandNotFound = ctx.App.CommandNotFound - - // set the flags and commands - app.Commands = c.Subcommands - app.Flags = c.Flags - app.HideHelp = c.HideHelp - - app.Version = ctx.App.Version - app.HideVersion = ctx.App.HideVersion - app.Compiled = ctx.App.Compiled - app.Author = ctx.App.Author - app.Email = ctx.App.Email - app.Writer = ctx.App.Writer - - app.categories = CommandCategories{} - for _, command := range c.Subcommands { - app.categories = app.categories.AddCommand(command.Category, command) - } - - sort.Sort(app.categories) - - // bash completion - app.EnableBashCompletion = ctx.App.EnableBashCompletion - if c.BashComplete != nil { - app.BashComplete = c.BashComplete - } - - // set the actions - app.Before = c.Before - app.After = c.After - if c.Action != nil { - app.Action = c.Action - } else { - app.Action = helpSubcommand.Action - } - - for index, cc := range app.Commands { - app.Commands[index].commandNamePath = []string{c.Name, cc.Name} - } - - return app.RunAsSubcommand(ctx) -} - -// VisibleFlags returns a slice of the Flags with Hidden=false -func (c Command) VisibleFlags() []Flag { - return visibleFlags(c.Flags) -} diff --git a/vendor/github.com/codegangsta/cli/context.go b/vendor/github.com/codegangsta/cli/context.go deleted file mode 100644 index cb89e92..0000000 --- a/vendor/github.com/codegangsta/cli/context.go +++ /dev/null @@ -1,276 +0,0 @@ -package cli - -import ( - "errors" - "flag" - "reflect" - "strings" - "syscall" -) - -// Context is a type that is passed through to -// each Handler action in a cli application. Context -// can be used to retrieve context-specific Args and -// parsed command-line options. -type Context struct { - App *App - Command Command - shellComplete bool - flagSet *flag.FlagSet - setFlags map[string]bool - parentContext *Context -} - -// NewContext creates a new context. For use in when invoking an App or Command action. -func NewContext(app *App, set *flag.FlagSet, parentCtx *Context) *Context { - c := &Context{App: app, flagSet: set, parentContext: parentCtx} - - if parentCtx != nil { - c.shellComplete = parentCtx.shellComplete - } - - return c -} - -// NumFlags returns the number of flags set -func (c *Context) NumFlags() int { - return c.flagSet.NFlag() -} - -// Set sets a context flag to a value. -func (c *Context) Set(name, value string) error { - return c.flagSet.Set(name, value) -} - -// GlobalSet sets a context flag to a value on the global flagset -func (c *Context) GlobalSet(name, value string) error { - return globalContext(c).flagSet.Set(name, value) -} - -// IsSet determines if the flag was actually set -func (c *Context) IsSet(name string) bool { - if c.setFlags == nil { - c.setFlags = make(map[string]bool) - - c.flagSet.Visit(func(f *flag.Flag) { - c.setFlags[f.Name] = true - }) - - c.flagSet.VisitAll(func(f *flag.Flag) { - if _, ok := c.setFlags[f.Name]; ok { - return - } - c.setFlags[f.Name] = false - }) - - // XXX hack to support IsSet for flags with EnvVar - // - // There isn't an easy way to do this with the current implementation since - // whether a flag was set via an environment variable is very difficult to - // determine here. Instead, we intend to introduce a backwards incompatible - // change in version 2 to add `IsSet` to the Flag interface to push the - // responsibility closer to where the information required to determine - // whether a flag is set by non-standard means such as environment - // variables is avaliable. - // - // See https://github.com/urfave/cli/issues/294 for additional discussion - flags := c.Command.Flags - if c.Command.Name == "" { // cannot == Command{} since it contains slice types - if c.App != nil { - flags = c.App.Flags - } - } - for _, f := range flags { - eachName(f.GetName(), func(name string) { - if isSet, ok := c.setFlags[name]; isSet || !ok { - return - } - - val := reflect.ValueOf(f) - if val.Kind() == reflect.Ptr { - val = val.Elem() - } - - envVarValue := val.FieldByName("EnvVar") - if !envVarValue.IsValid() { - return - } - - eachName(envVarValue.String(), func(envVar string) { - envVar = strings.TrimSpace(envVar) - if _, ok := syscall.Getenv(envVar); ok { - c.setFlags[name] = true - return - } - }) - }) - } - } - - return c.setFlags[name] -} - -// GlobalIsSet determines if the global flag was actually set -func (c *Context) GlobalIsSet(name string) bool { - ctx := c - if ctx.parentContext != nil { - ctx = ctx.parentContext - } - - for ; ctx != nil; ctx = ctx.parentContext { - if ctx.IsSet(name) { - return true - } - } - return false -} - -// FlagNames returns a slice of flag names used in this context. -func (c *Context) FlagNames() (names []string) { - for _, flag := range c.Command.Flags { - name := strings.Split(flag.GetName(), ",")[0] - if name == "help" { - continue - } - names = append(names, name) - } - return -} - -// GlobalFlagNames returns a slice of global flag names used by the app. -func (c *Context) GlobalFlagNames() (names []string) { - for _, flag := range c.App.Flags { - name := strings.Split(flag.GetName(), ",")[0] - if name == "help" || name == "version" { - continue - } - names = append(names, name) - } - return -} - -// Parent returns the parent context, if any -func (c *Context) Parent() *Context { - return c.parentContext -} - -// value returns the value of the flag coressponding to `name` -func (c *Context) value(name string) interface{} { - return c.flagSet.Lookup(name).Value.(flag.Getter).Get() -} - -// Args contains apps console arguments -type Args []string - -// Args returns the command line arguments associated with the context. -func (c *Context) Args() Args { - args := Args(c.flagSet.Args()) - return args -} - -// NArg returns the number of the command line arguments. -func (c *Context) NArg() int { - return len(c.Args()) -} - -// Get returns the nth argument, or else a blank string -func (a Args) Get(n int) string { - if len(a) > n { - return a[n] - } - return "" -} - -// First returns the first argument, or else a blank string -func (a Args) First() string { - return a.Get(0) -} - -// Tail returns the rest of the arguments (not the first one) -// or else an empty string slice -func (a Args) Tail() []string { - if len(a) >= 2 { - return []string(a)[1:] - } - return []string{} -} - -// Present checks if there are any arguments present -func (a Args) Present() bool { - return len(a) != 0 -} - -// Swap swaps arguments at the given indexes -func (a Args) Swap(from, to int) error { - if from >= len(a) || to >= len(a) { - return errors.New("index out of range") - } - a[from], a[to] = a[to], a[from] - return nil -} - -func globalContext(ctx *Context) *Context { - if ctx == nil { - return nil - } - - for { - if ctx.parentContext == nil { - return ctx - } - ctx = ctx.parentContext - } -} - -func lookupGlobalFlagSet(name string, ctx *Context) *flag.FlagSet { - if ctx.parentContext != nil { - ctx = ctx.parentContext - } - for ; ctx != nil; ctx = ctx.parentContext { - if f := ctx.flagSet.Lookup(name); f != nil { - return ctx.flagSet - } - } - return nil -} - -func copyFlag(name string, ff *flag.Flag, set *flag.FlagSet) { - switch ff.Value.(type) { - case *StringSlice: - default: - set.Set(name, ff.Value.String()) - } -} - -func normalizeFlags(flags []Flag, set *flag.FlagSet) error { - visited := make(map[string]bool) - set.Visit(func(f *flag.Flag) { - visited[f.Name] = true - }) - for _, f := range flags { - parts := strings.Split(f.GetName(), ",") - if len(parts) == 1 { - continue - } - var ff *flag.Flag - for _, name := range parts { - name = strings.Trim(name, " ") - if visited[name] { - if ff != nil { - return errors.New("Cannot use two forms of the same flag: " + name + " " + ff.Name) - } - ff = set.Lookup(name) - } - } - if ff == nil { - continue - } - for _, name := range parts { - name = strings.Trim(name, " ") - if !visited[name] { - copyFlag(name, ff, set) - } - } - } - return nil -} diff --git a/vendor/github.com/codegangsta/cli/errors.go b/vendor/github.com/codegangsta/cli/errors.go deleted file mode 100644 index 0206ff4..0000000 --- a/vendor/github.com/codegangsta/cli/errors.go +++ /dev/null @@ -1,110 +0,0 @@ -package cli - -import ( - "fmt" - "io" - "os" - "strings" -) - -// OsExiter is the function used when the app exits. If not set defaults to os.Exit. -var OsExiter = os.Exit - -// ErrWriter is used to write errors to the user. This can be anything -// implementing the io.Writer interface and defaults to os.Stderr. -var ErrWriter io.Writer = os.Stderr - -// MultiError is an error that wraps multiple errors. -type MultiError struct { - Errors []error -} - -// NewMultiError creates a new MultiError. Pass in one or more errors. -func NewMultiError(err ...error) MultiError { - return MultiError{Errors: err} -} - -// Error implements the error interface. -func (m MultiError) Error() string { - errs := make([]string, len(m.Errors)) - for i, err := range m.Errors { - errs[i] = err.Error() - } - - return strings.Join(errs, "\n") -} - -type ErrorFormatter interface { - Format(s fmt.State, verb rune) -} - -// ExitCoder is the interface checked by `App` and `Command` for a custom exit -// code -type ExitCoder interface { - error - ExitCode() int -} - -// ExitError fulfills both the builtin `error` interface and `ExitCoder` -type ExitError struct { - exitCode int - message interface{} -} - -// NewExitError makes a new *ExitError -func NewExitError(message interface{}, exitCode int) *ExitError { - return &ExitError{ - exitCode: exitCode, - message: message, - } -} - -// Error returns the string message, fulfilling the interface required by -// `error` -func (ee *ExitError) Error() string { - return fmt.Sprintf("%v", ee.message) -} - -// ExitCode returns the exit code, fulfilling the interface required by -// `ExitCoder` -func (ee *ExitError) ExitCode() int { - return ee.exitCode -} - -// HandleExitCoder checks if the error fulfills the ExitCoder interface, and if -// so prints the error to stderr (if it is non-empty) and calls OsExiter with the -// given exit code. If the given error is a MultiError, then this func is -// called on all members of the Errors slice. -func HandleExitCoder(err error) { - if err == nil { - return - } - - if exitErr, ok := err.(ExitCoder); ok { - if err.Error() != "" { - if _, ok := exitErr.(ErrorFormatter); ok { - fmt.Fprintf(ErrWriter, "%+v\n", err) - } else { - fmt.Fprintln(ErrWriter, err) - } - } - OsExiter(exitErr.ExitCode()) - return - } - - if multiErr, ok := err.(MultiError); ok { - for _, merr := range multiErr.Errors { - HandleExitCoder(merr) - } - return - } - - if err.Error() != "" { - if _, ok := err.(ErrorFormatter); ok { - fmt.Fprintf(ErrWriter, "%+v\n", err) - } else { - fmt.Fprintln(ErrWriter, err) - } - } - OsExiter(1) -} diff --git a/vendor/github.com/codegangsta/cli/flag-types.json b/vendor/github.com/codegangsta/cli/flag-types.json deleted file mode 100644 index 1223107..0000000 --- a/vendor/github.com/codegangsta/cli/flag-types.json +++ /dev/null @@ -1,93 +0,0 @@ -[ - { - "name": "Bool", - "type": "bool", - "value": false, - "context_default": "false", - "parser": "strconv.ParseBool(f.Value.String())" - }, - { - "name": "BoolT", - "type": "bool", - "value": false, - "doctail": " that is true by default", - "context_default": "false", - "parser": "strconv.ParseBool(f.Value.String())" - }, - { - "name": "Duration", - "type": "time.Duration", - "doctail": " (see https://golang.org/pkg/time/#ParseDuration)", - "context_default": "0", - "parser": "time.ParseDuration(f.Value.String())" - }, - { - "name": "Float64", - "type": "float64", - "context_default": "0", - "parser": "strconv.ParseFloat(f.Value.String(), 64)" - }, - { - "name": "Generic", - "type": "Generic", - "dest": false, - "context_default": "nil", - "context_type": "interface{}" - }, - { - "name": "Int64", - "type": "int64", - "context_default": "0", - "parser": "strconv.ParseInt(f.Value.String(), 0, 64)" - }, - { - "name": "Int", - "type": "int", - "context_default": "0", - "parser": "strconv.ParseInt(f.Value.String(), 0, 64)", - "parser_cast": "int(parsed)" - }, - { - "name": "IntSlice", - "type": "*IntSlice", - "dest": false, - "context_default": "nil", - "context_type": "[]int", - "parser": "(f.Value.(*IntSlice)).Value(), error(nil)" - }, - { - "name": "Int64Slice", - "type": "*Int64Slice", - "dest": false, - "context_default": "nil", - "context_type": "[]int64", - "parser": "(f.Value.(*Int64Slice)).Value(), error(nil)" - }, - { - "name": "String", - "type": "string", - "context_default": "\"\"", - "parser": "f.Value.String(), error(nil)" - }, - { - "name": "StringSlice", - "type": "*StringSlice", - "dest": false, - "context_default": "nil", - "context_type": "[]string", - "parser": "(f.Value.(*StringSlice)).Value(), error(nil)" - }, - { - "name": "Uint64", - "type": "uint64", - "context_default": "0", - "parser": "strconv.ParseUint(f.Value.String(), 0, 64)" - }, - { - "name": "Uint", - "type": "uint", - "context_default": "0", - "parser": "strconv.ParseUint(f.Value.String(), 0, 64)", - "parser_cast": "uint(parsed)" - } -] diff --git a/vendor/github.com/codegangsta/cli/flag.go b/vendor/github.com/codegangsta/cli/flag.go deleted file mode 100644 index 7dd8a2c..0000000 --- a/vendor/github.com/codegangsta/cli/flag.go +++ /dev/null @@ -1,799 +0,0 @@ -package cli - -import ( - "flag" - "fmt" - "reflect" - "runtime" - "strconv" - "strings" - "syscall" - "time" -) - -const defaultPlaceholder = "value" - -// BashCompletionFlag enables bash-completion for all commands and subcommands -var BashCompletionFlag = BoolFlag{ - Name: "generate-bash-completion", - Hidden: true, -} - -// VersionFlag prints the version for the application -var VersionFlag = BoolFlag{ - Name: "version, v", - Usage: "print the version", -} - -// HelpFlag prints the help for all commands and subcommands -// Set to the zero value (BoolFlag{}) to disable flag -- keeps subcommand -// unless HideHelp is set to true) -var HelpFlag = BoolFlag{ - Name: "help, h", - Usage: "show help", -} - -// FlagStringer converts a flag definition to a string. This is used by help -// to display a flag. -var FlagStringer FlagStringFunc = stringifyFlag - -// FlagsByName is a slice of Flag. -type FlagsByName []Flag - -func (f FlagsByName) Len() int { - return len(f) -} - -func (f FlagsByName) Less(i, j int) bool { - return f[i].GetName() < f[j].GetName() -} - -func (f FlagsByName) Swap(i, j int) { - f[i], f[j] = f[j], f[i] -} - -// Flag is a common interface related to parsing flags in cli. -// For more advanced flag parsing techniques, it is recommended that -// this interface be implemented. -type Flag interface { - fmt.Stringer - // Apply Flag settings to the given flag set - Apply(*flag.FlagSet) - GetName() string -} - -// errorableFlag is an interface that allows us to return errors during apply -// it allows flags defined in this library to return errors in a fashion backwards compatible -// TODO remove in v2 and modify the existing Flag interface to return errors -type errorableFlag interface { - Flag - - ApplyWithError(*flag.FlagSet) error -} - -func flagSet(name string, flags []Flag) (*flag.FlagSet, error) { - set := flag.NewFlagSet(name, flag.ContinueOnError) - - for _, f := range flags { - //TODO remove in v2 when errorableFlag is removed - if ef, ok := f.(errorableFlag); ok { - if err := ef.ApplyWithError(set); err != nil { - return nil, err - } - } else { - f.Apply(set) - } - } - return set, nil -} - -func eachName(longName string, fn func(string)) { - parts := strings.Split(longName, ",") - for _, name := range parts { - name = strings.Trim(name, " ") - fn(name) - } -} - -// Generic is a generic parseable type identified by a specific flag -type Generic interface { - Set(value string) error - String() string -} - -// Apply takes the flagset and calls Set on the generic flag with the value -// provided by the user for parsing by the flag -// Ignores parsing errors -func (f GenericFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError takes the flagset and calls Set on the generic flag with the value -// provided by the user for parsing by the flag -func (f GenericFlag) ApplyWithError(set *flag.FlagSet) error { - val := f.Value - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - if err := val.Set(envVal); err != nil { - return fmt.Errorf("could not parse %s as value for flag %s: %s", envVal, f.Name, err) - } - break - } - } - } - - eachName(f.Name, func(name string) { - set.Var(f.Value, name, f.Usage) - }) - - return nil -} - -// StringSlice is an opaque type for []string to satisfy flag.Value and flag.Getter -type StringSlice []string - -// Set appends the string value to the list of values -func (f *StringSlice) Set(value string) error { - *f = append(*f, value) - return nil -} - -// String returns a readable representation of this value (for usage defaults) -func (f *StringSlice) String() string { - return fmt.Sprintf("%s", *f) -} - -// Value returns the slice of strings set by this flag -func (f *StringSlice) Value() []string { - return *f -} - -// Get returns the slice of strings set by this flag -func (f *StringSlice) Get() interface{} { - return *f -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f StringSliceFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f StringSliceFlag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - newVal := &StringSlice{} - for _, s := range strings.Split(envVal, ",") { - s = strings.TrimSpace(s) - if err := newVal.Set(s); err != nil { - return fmt.Errorf("could not parse %s as string value for flag %s: %s", envVal, f.Name, err) - } - } - f.Value = newVal - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Value == nil { - f.Value = &StringSlice{} - } - set.Var(f.Value, name, f.Usage) - }) - - return nil -} - -// IntSlice is an opaque type for []int to satisfy flag.Value and flag.Getter -type IntSlice []int - -// Set parses the value into an integer and appends it to the list of values -func (f *IntSlice) Set(value string) error { - tmp, err := strconv.Atoi(value) - if err != nil { - return err - } - *f = append(*f, tmp) - return nil -} - -// String returns a readable representation of this value (for usage defaults) -func (f *IntSlice) String() string { - return fmt.Sprintf("%#v", *f) -} - -// Value returns the slice of ints set by this flag -func (f *IntSlice) Value() []int { - return *f -} - -// Get returns the slice of ints set by this flag -func (f *IntSlice) Get() interface{} { - return *f -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f IntSliceFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f IntSliceFlag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - newVal := &IntSlice{} - for _, s := range strings.Split(envVal, ",") { - s = strings.TrimSpace(s) - if err := newVal.Set(s); err != nil { - return fmt.Errorf("could not parse %s as int slice value for flag %s: %s", envVal, f.Name, err) - } - } - f.Value = newVal - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Value == nil { - f.Value = &IntSlice{} - } - set.Var(f.Value, name, f.Usage) - }) - - return nil -} - -// Int64Slice is an opaque type for []int to satisfy flag.Value and flag.Getter -type Int64Slice []int64 - -// Set parses the value into an integer and appends it to the list of values -func (f *Int64Slice) Set(value string) error { - tmp, err := strconv.ParseInt(value, 10, 64) - if err != nil { - return err - } - *f = append(*f, tmp) - return nil -} - -// String returns a readable representation of this value (for usage defaults) -func (f *Int64Slice) String() string { - return fmt.Sprintf("%#v", *f) -} - -// Value returns the slice of ints set by this flag -func (f *Int64Slice) Value() []int64 { - return *f -} - -// Get returns the slice of ints set by this flag -func (f *Int64Slice) Get() interface{} { - return *f -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f Int64SliceFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f Int64SliceFlag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - newVal := &Int64Slice{} - for _, s := range strings.Split(envVal, ",") { - s = strings.TrimSpace(s) - if err := newVal.Set(s); err != nil { - return fmt.Errorf("could not parse %s as int64 slice value for flag %s: %s", envVal, f.Name, err) - } - } - f.Value = newVal - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Value == nil { - f.Value = &Int64Slice{} - } - set.Var(f.Value, name, f.Usage) - }) - return nil -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f BoolFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f BoolFlag) ApplyWithError(set *flag.FlagSet) error { - val := false - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - if envVal == "" { - val = false - break - } - - envValBool, err := strconv.ParseBool(envVal) - if err != nil { - return fmt.Errorf("could not parse %s as bool value for flag %s: %s", envVal, f.Name, err) - } - - val = envValBool - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Destination != nil { - set.BoolVar(f.Destination, name, val, f.Usage) - return - } - set.Bool(name, val, f.Usage) - }) - - return nil -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f BoolTFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f BoolTFlag) ApplyWithError(set *flag.FlagSet) error { - val := true - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - if envVal == "" { - val = false - break - } - - envValBool, err := strconv.ParseBool(envVal) - if err != nil { - return fmt.Errorf("could not parse %s as bool value for flag %s: %s", envVal, f.Name, err) - } - - val = envValBool - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Destination != nil { - set.BoolVar(f.Destination, name, val, f.Usage) - return - } - set.Bool(name, val, f.Usage) - }) - - return nil -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f StringFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f StringFlag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - f.Value = envVal - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Destination != nil { - set.StringVar(f.Destination, name, f.Value, f.Usage) - return - } - set.String(name, f.Value, f.Usage) - }) - - return nil -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f IntFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f IntFlag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - envValInt, err := strconv.ParseInt(envVal, 0, 64) - if err != nil { - return fmt.Errorf("could not parse %s as int value for flag %s: %s", envVal, f.Name, err) - } - f.Value = int(envValInt) - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Destination != nil { - set.IntVar(f.Destination, name, f.Value, f.Usage) - return - } - set.Int(name, f.Value, f.Usage) - }) - - return nil -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f Int64Flag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f Int64Flag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - envValInt, err := strconv.ParseInt(envVal, 0, 64) - if err != nil { - return fmt.Errorf("could not parse %s as int value for flag %s: %s", envVal, f.Name, err) - } - - f.Value = envValInt - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Destination != nil { - set.Int64Var(f.Destination, name, f.Value, f.Usage) - return - } - set.Int64(name, f.Value, f.Usage) - }) - - return nil -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f UintFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f UintFlag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - envValInt, err := strconv.ParseUint(envVal, 0, 64) - if err != nil { - return fmt.Errorf("could not parse %s as uint value for flag %s: %s", envVal, f.Name, err) - } - - f.Value = uint(envValInt) - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Destination != nil { - set.UintVar(f.Destination, name, f.Value, f.Usage) - return - } - set.Uint(name, f.Value, f.Usage) - }) - - return nil -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f Uint64Flag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f Uint64Flag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - envValInt, err := strconv.ParseUint(envVal, 0, 64) - if err != nil { - return fmt.Errorf("could not parse %s as uint64 value for flag %s: %s", envVal, f.Name, err) - } - - f.Value = uint64(envValInt) - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Destination != nil { - set.Uint64Var(f.Destination, name, f.Value, f.Usage) - return - } - set.Uint64(name, f.Value, f.Usage) - }) - - return nil -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f DurationFlag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f DurationFlag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - envValDuration, err := time.ParseDuration(envVal) - if err != nil { - return fmt.Errorf("could not parse %s as duration for flag %s: %s", envVal, f.Name, err) - } - - f.Value = envValDuration - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Destination != nil { - set.DurationVar(f.Destination, name, f.Value, f.Usage) - return - } - set.Duration(name, f.Value, f.Usage) - }) - - return nil -} - -// Apply populates the flag given the flag set and environment -// Ignores errors -func (f Float64Flag) Apply(set *flag.FlagSet) { - f.ApplyWithError(set) -} - -// ApplyWithError populates the flag given the flag set and environment -func (f Float64Flag) ApplyWithError(set *flag.FlagSet) error { - if f.EnvVar != "" { - for _, envVar := range strings.Split(f.EnvVar, ",") { - envVar = strings.TrimSpace(envVar) - if envVal, ok := syscall.Getenv(envVar); ok { - envValFloat, err := strconv.ParseFloat(envVal, 10) - if err != nil { - return fmt.Errorf("could not parse %s as float64 value for flag %s: %s", envVal, f.Name, err) - } - - f.Value = float64(envValFloat) - break - } - } - } - - eachName(f.Name, func(name string) { - if f.Destination != nil { - set.Float64Var(f.Destination, name, f.Value, f.Usage) - return - } - set.Float64(name, f.Value, f.Usage) - }) - - return nil -} - -func visibleFlags(fl []Flag) []Flag { - visible := []Flag{} - for _, flag := range fl { - if !flagValue(flag).FieldByName("Hidden").Bool() { - visible = append(visible, flag) - } - } - return visible -} - -func prefixFor(name string) (prefix string) { - if len(name) == 1 { - prefix = "-" - } else { - prefix = "--" - } - - return -} - -// Returns the placeholder, if any, and the unquoted usage string. -func unquoteUsage(usage string) (string, string) { - for i := 0; i < len(usage); i++ { - if usage[i] == '`' { - for j := i + 1; j < len(usage); j++ { - if usage[j] == '`' { - name := usage[i+1 : j] - usage = usage[:i] + name + usage[j+1:] - return name, usage - } - } - break - } - } - return "", usage -} - -func prefixedNames(fullName, placeholder string) string { - var prefixed string - parts := strings.Split(fullName, ",") - for i, name := range parts { - name = strings.Trim(name, " ") - prefixed += prefixFor(name) + name - if placeholder != "" { - prefixed += " " + placeholder - } - if i < len(parts)-1 { - prefixed += ", " - } - } - return prefixed -} - -func withEnvHint(envVar, str string) string { - envText := "" - if envVar != "" { - prefix := "$" - suffix := "" - sep := ", $" - if runtime.GOOS == "windows" { - prefix = "%" - suffix = "%" - sep = "%, %" - } - envText = fmt.Sprintf(" [%s%s%s]", prefix, strings.Join(strings.Split(envVar, ","), sep), suffix) - } - return str + envText -} - -func flagValue(f Flag) reflect.Value { - fv := reflect.ValueOf(f) - for fv.Kind() == reflect.Ptr { - fv = reflect.Indirect(fv) - } - return fv -} - -func stringifyFlag(f Flag) string { - fv := flagValue(f) - - switch f.(type) { - case IntSliceFlag: - return withEnvHint(fv.FieldByName("EnvVar").String(), - stringifyIntSliceFlag(f.(IntSliceFlag))) - case Int64SliceFlag: - return withEnvHint(fv.FieldByName("EnvVar").String(), - stringifyInt64SliceFlag(f.(Int64SliceFlag))) - case StringSliceFlag: - return withEnvHint(fv.FieldByName("EnvVar").String(), - stringifyStringSliceFlag(f.(StringSliceFlag))) - } - - placeholder, usage := unquoteUsage(fv.FieldByName("Usage").String()) - - needsPlaceholder := false - defaultValueString := "" - val := fv.FieldByName("Value") - - if val.IsValid() { - needsPlaceholder = true - defaultValueString = fmt.Sprintf(" (default: %v)", val.Interface()) - - if val.Kind() == reflect.String && val.String() != "" { - defaultValueString = fmt.Sprintf(" (default: %q)", val.String()) - } - } - - if defaultValueString == " (default: )" { - defaultValueString = "" - } - - if needsPlaceholder && placeholder == "" { - placeholder = defaultPlaceholder - } - - usageWithDefault := strings.TrimSpace(fmt.Sprintf("%s%s", usage, defaultValueString)) - - return withEnvHint(fv.FieldByName("EnvVar").String(), - fmt.Sprintf("%s\t%s", prefixedNames(fv.FieldByName("Name").String(), placeholder), usageWithDefault)) -} - -func stringifyIntSliceFlag(f IntSliceFlag) string { - defaultVals := []string{} - if f.Value != nil && len(f.Value.Value()) > 0 { - for _, i := range f.Value.Value() { - defaultVals = append(defaultVals, fmt.Sprintf("%d", i)) - } - } - - return stringifySliceFlag(f.Usage, f.Name, defaultVals) -} - -func stringifyInt64SliceFlag(f Int64SliceFlag) string { - defaultVals := []string{} - if f.Value != nil && len(f.Value.Value()) > 0 { - for _, i := range f.Value.Value() { - defaultVals = append(defaultVals, fmt.Sprintf("%d", i)) - } - } - - return stringifySliceFlag(f.Usage, f.Name, defaultVals) -} - -func stringifyStringSliceFlag(f StringSliceFlag) string { - defaultVals := []string{} - if f.Value != nil && len(f.Value.Value()) > 0 { - for _, s := range f.Value.Value() { - if len(s) > 0 { - defaultVals = append(defaultVals, fmt.Sprintf("%q", s)) - } - } - } - - return stringifySliceFlag(f.Usage, f.Name, defaultVals) -} - -func stringifySliceFlag(usage, name string, defaultVals []string) string { - placeholder, usage := unquoteUsage(usage) - if placeholder == "" { - placeholder = defaultPlaceholder - } - - defaultVal := "" - if len(defaultVals) > 0 { - defaultVal = fmt.Sprintf(" (default: %s)", strings.Join(defaultVals, ", ")) - } - - usageWithDefault := strings.TrimSpace(fmt.Sprintf("%s%s", usage, defaultVal)) - return fmt.Sprintf("%s\t%s", prefixedNames(name, placeholder), usageWithDefault) -} diff --git a/vendor/github.com/codegangsta/cli/flag_generated.go b/vendor/github.com/codegangsta/cli/flag_generated.go deleted file mode 100644 index 491b619..0000000 --- a/vendor/github.com/codegangsta/cli/flag_generated.go +++ /dev/null @@ -1,627 +0,0 @@ -package cli - -import ( - "flag" - "strconv" - "time" -) - -// WARNING: This file is generated! - -// BoolFlag is a flag with type bool -type BoolFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Destination *bool -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f BoolFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f BoolFlag) GetName() string { - return f.Name -} - -// Bool looks up the value of a local BoolFlag, returns -// false if not found -func (c *Context) Bool(name string) bool { - return lookupBool(name, c.flagSet) -} - -// GlobalBool looks up the value of a global BoolFlag, returns -// false if not found -func (c *Context) GlobalBool(name string) bool { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupBool(name, fs) - } - return false -} - -func lookupBool(name string, set *flag.FlagSet) bool { - f := set.Lookup(name) - if f != nil { - parsed, err := strconv.ParseBool(f.Value.String()) - if err != nil { - return false - } - return parsed - } - return false -} - -// BoolTFlag is a flag with type bool that is true by default -type BoolTFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Destination *bool -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f BoolTFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f BoolTFlag) GetName() string { - return f.Name -} - -// BoolT looks up the value of a local BoolTFlag, returns -// false if not found -func (c *Context) BoolT(name string) bool { - return lookupBoolT(name, c.flagSet) -} - -// GlobalBoolT looks up the value of a global BoolTFlag, returns -// false if not found -func (c *Context) GlobalBoolT(name string) bool { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupBoolT(name, fs) - } - return false -} - -func lookupBoolT(name string, set *flag.FlagSet) bool { - f := set.Lookup(name) - if f != nil { - parsed, err := strconv.ParseBool(f.Value.String()) - if err != nil { - return false - } - return parsed - } - return false -} - -// DurationFlag is a flag with type time.Duration (see https://golang.org/pkg/time/#ParseDuration) -type DurationFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value time.Duration - Destination *time.Duration -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f DurationFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f DurationFlag) GetName() string { - return f.Name -} - -// Duration looks up the value of a local DurationFlag, returns -// 0 if not found -func (c *Context) Duration(name string) time.Duration { - return lookupDuration(name, c.flagSet) -} - -// GlobalDuration looks up the value of a global DurationFlag, returns -// 0 if not found -func (c *Context) GlobalDuration(name string) time.Duration { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupDuration(name, fs) - } - return 0 -} - -func lookupDuration(name string, set *flag.FlagSet) time.Duration { - f := set.Lookup(name) - if f != nil { - parsed, err := time.ParseDuration(f.Value.String()) - if err != nil { - return 0 - } - return parsed - } - return 0 -} - -// Float64Flag is a flag with type float64 -type Float64Flag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value float64 - Destination *float64 -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f Float64Flag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f Float64Flag) GetName() string { - return f.Name -} - -// Float64 looks up the value of a local Float64Flag, returns -// 0 if not found -func (c *Context) Float64(name string) float64 { - return lookupFloat64(name, c.flagSet) -} - -// GlobalFloat64 looks up the value of a global Float64Flag, returns -// 0 if not found -func (c *Context) GlobalFloat64(name string) float64 { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupFloat64(name, fs) - } - return 0 -} - -func lookupFloat64(name string, set *flag.FlagSet) float64 { - f := set.Lookup(name) - if f != nil { - parsed, err := strconv.ParseFloat(f.Value.String(), 64) - if err != nil { - return 0 - } - return parsed - } - return 0 -} - -// GenericFlag is a flag with type Generic -type GenericFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value Generic -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f GenericFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f GenericFlag) GetName() string { - return f.Name -} - -// Generic looks up the value of a local GenericFlag, returns -// nil if not found -func (c *Context) Generic(name string) interface{} { - return lookupGeneric(name, c.flagSet) -} - -// GlobalGeneric looks up the value of a global GenericFlag, returns -// nil if not found -func (c *Context) GlobalGeneric(name string) interface{} { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupGeneric(name, fs) - } - return nil -} - -func lookupGeneric(name string, set *flag.FlagSet) interface{} { - f := set.Lookup(name) - if f != nil { - parsed, err := f.Value, error(nil) - if err != nil { - return nil - } - return parsed - } - return nil -} - -// Int64Flag is a flag with type int64 -type Int64Flag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value int64 - Destination *int64 -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f Int64Flag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f Int64Flag) GetName() string { - return f.Name -} - -// Int64 looks up the value of a local Int64Flag, returns -// 0 if not found -func (c *Context) Int64(name string) int64 { - return lookupInt64(name, c.flagSet) -} - -// GlobalInt64 looks up the value of a global Int64Flag, returns -// 0 if not found -func (c *Context) GlobalInt64(name string) int64 { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupInt64(name, fs) - } - return 0 -} - -func lookupInt64(name string, set *flag.FlagSet) int64 { - f := set.Lookup(name) - if f != nil { - parsed, err := strconv.ParseInt(f.Value.String(), 0, 64) - if err != nil { - return 0 - } - return parsed - } - return 0 -} - -// IntFlag is a flag with type int -type IntFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value int - Destination *int -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f IntFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f IntFlag) GetName() string { - return f.Name -} - -// Int looks up the value of a local IntFlag, returns -// 0 if not found -func (c *Context) Int(name string) int { - return lookupInt(name, c.flagSet) -} - -// GlobalInt looks up the value of a global IntFlag, returns -// 0 if not found -func (c *Context) GlobalInt(name string) int { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupInt(name, fs) - } - return 0 -} - -func lookupInt(name string, set *flag.FlagSet) int { - f := set.Lookup(name) - if f != nil { - parsed, err := strconv.ParseInt(f.Value.String(), 0, 64) - if err != nil { - return 0 - } - return int(parsed) - } - return 0 -} - -// IntSliceFlag is a flag with type *IntSlice -type IntSliceFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value *IntSlice -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f IntSliceFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f IntSliceFlag) GetName() string { - return f.Name -} - -// IntSlice looks up the value of a local IntSliceFlag, returns -// nil if not found -func (c *Context) IntSlice(name string) []int { - return lookupIntSlice(name, c.flagSet) -} - -// GlobalIntSlice looks up the value of a global IntSliceFlag, returns -// nil if not found -func (c *Context) GlobalIntSlice(name string) []int { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupIntSlice(name, fs) - } - return nil -} - -func lookupIntSlice(name string, set *flag.FlagSet) []int { - f := set.Lookup(name) - if f != nil { - parsed, err := (f.Value.(*IntSlice)).Value(), error(nil) - if err != nil { - return nil - } - return parsed - } - return nil -} - -// Int64SliceFlag is a flag with type *Int64Slice -type Int64SliceFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value *Int64Slice -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f Int64SliceFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f Int64SliceFlag) GetName() string { - return f.Name -} - -// Int64Slice looks up the value of a local Int64SliceFlag, returns -// nil if not found -func (c *Context) Int64Slice(name string) []int64 { - return lookupInt64Slice(name, c.flagSet) -} - -// GlobalInt64Slice looks up the value of a global Int64SliceFlag, returns -// nil if not found -func (c *Context) GlobalInt64Slice(name string) []int64 { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupInt64Slice(name, fs) - } - return nil -} - -func lookupInt64Slice(name string, set *flag.FlagSet) []int64 { - f := set.Lookup(name) - if f != nil { - parsed, err := (f.Value.(*Int64Slice)).Value(), error(nil) - if err != nil { - return nil - } - return parsed - } - return nil -} - -// StringFlag is a flag with type string -type StringFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value string - Destination *string -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f StringFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f StringFlag) GetName() string { - return f.Name -} - -// String looks up the value of a local StringFlag, returns -// "" if not found -func (c *Context) String(name string) string { - return lookupString(name, c.flagSet) -} - -// GlobalString looks up the value of a global StringFlag, returns -// "" if not found -func (c *Context) GlobalString(name string) string { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupString(name, fs) - } - return "" -} - -func lookupString(name string, set *flag.FlagSet) string { - f := set.Lookup(name) - if f != nil { - parsed, err := f.Value.String(), error(nil) - if err != nil { - return "" - } - return parsed - } - return "" -} - -// StringSliceFlag is a flag with type *StringSlice -type StringSliceFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value *StringSlice -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f StringSliceFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f StringSliceFlag) GetName() string { - return f.Name -} - -// StringSlice looks up the value of a local StringSliceFlag, returns -// nil if not found -func (c *Context) StringSlice(name string) []string { - return lookupStringSlice(name, c.flagSet) -} - -// GlobalStringSlice looks up the value of a global StringSliceFlag, returns -// nil if not found -func (c *Context) GlobalStringSlice(name string) []string { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupStringSlice(name, fs) - } - return nil -} - -func lookupStringSlice(name string, set *flag.FlagSet) []string { - f := set.Lookup(name) - if f != nil { - parsed, err := (f.Value.(*StringSlice)).Value(), error(nil) - if err != nil { - return nil - } - return parsed - } - return nil -} - -// Uint64Flag is a flag with type uint64 -type Uint64Flag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value uint64 - Destination *uint64 -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f Uint64Flag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f Uint64Flag) GetName() string { - return f.Name -} - -// Uint64 looks up the value of a local Uint64Flag, returns -// 0 if not found -func (c *Context) Uint64(name string) uint64 { - return lookupUint64(name, c.flagSet) -} - -// GlobalUint64 looks up the value of a global Uint64Flag, returns -// 0 if not found -func (c *Context) GlobalUint64(name string) uint64 { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupUint64(name, fs) - } - return 0 -} - -func lookupUint64(name string, set *flag.FlagSet) uint64 { - f := set.Lookup(name) - if f != nil { - parsed, err := strconv.ParseUint(f.Value.String(), 0, 64) - if err != nil { - return 0 - } - return parsed - } - return 0 -} - -// UintFlag is a flag with type uint -type UintFlag struct { - Name string - Usage string - EnvVar string - Hidden bool - Value uint - Destination *uint -} - -// String returns a readable representation of this value -// (for usage defaults) -func (f UintFlag) String() string { - return FlagStringer(f) -} - -// GetName returns the name of the flag -func (f UintFlag) GetName() string { - return f.Name -} - -// Uint looks up the value of a local UintFlag, returns -// 0 if not found -func (c *Context) Uint(name string) uint { - return lookupUint(name, c.flagSet) -} - -// GlobalUint looks up the value of a global UintFlag, returns -// 0 if not found -func (c *Context) GlobalUint(name string) uint { - if fs := lookupGlobalFlagSet(name, c); fs != nil { - return lookupUint(name, fs) - } - return 0 -} - -func lookupUint(name string, set *flag.FlagSet) uint { - f := set.Lookup(name) - if f != nil { - parsed, err := strconv.ParseUint(f.Value.String(), 0, 64) - if err != nil { - return 0 - } - return uint(parsed) - } - return 0 -} diff --git a/vendor/github.com/codegangsta/cli/funcs.go b/vendor/github.com/codegangsta/cli/funcs.go deleted file mode 100644 index cba5e6c..0000000 --- a/vendor/github.com/codegangsta/cli/funcs.go +++ /dev/null @@ -1,28 +0,0 @@ -package cli - -// BashCompleteFunc is an action to execute when the bash-completion flag is set -type BashCompleteFunc func(*Context) - -// BeforeFunc is an action to execute before any subcommands are run, but after -// the context is ready if a non-nil error is returned, no subcommands are run -type BeforeFunc func(*Context) error - -// AfterFunc is an action to execute after any subcommands are run, but after the -// subcommand has finished it is run even if Action() panics -type AfterFunc func(*Context) error - -// ActionFunc is the action to execute when no subcommands are specified -type ActionFunc func(*Context) error - -// CommandNotFoundFunc is executed if the proper command cannot be found -type CommandNotFoundFunc func(*Context, string) - -// OnUsageErrorFunc is executed if an usage error occurs. This is useful for displaying -// customized usage error messages. This function is able to replace the -// original error messages. If this function is not set, the "Incorrect usage" -// is displayed and the execution is interrupted. -type OnUsageErrorFunc func(context *Context, err error, isSubcommand bool) error - -// FlagStringFunc is used by the help generation to display a flag, which is -// expected to be a single line. -type FlagStringFunc func(Flag) string diff --git a/vendor/github.com/codegangsta/cli/generate-flag-types b/vendor/github.com/codegangsta/cli/generate-flag-types deleted file mode 100755 index 7147381..0000000 --- a/vendor/github.com/codegangsta/cli/generate-flag-types +++ /dev/null @@ -1,255 +0,0 @@ -#!/usr/bin/env python -""" -The flag types that ship with the cli library have many things in common, and -so we can take advantage of the `go generate` command to create much of the -source code from a list of definitions. These definitions attempt to cover -the parts that vary between flag types, and should evolve as needed. - -An example of the minimum definition needed is: - - { - "name": "SomeType", - "type": "sometype", - "context_default": "nil" - } - -In this example, the code generated for the `cli` package will include a type -named `SomeTypeFlag` that is expected to wrap a value of type `sometype`. -Fetching values by name via `*cli.Context` will default to a value of `nil`. - -A more complete, albeit somewhat redundant, example showing all available -definition keys is: - - { - "name": "VeryMuchType", - "type": "*VeryMuchType", - "value": true, - "dest": false, - "doctail": " which really only wraps a []float64, oh well!", - "context_type": "[]float64", - "context_default": "nil", - "parser": "parseVeryMuchType(f.Value.String())", - "parser_cast": "[]float64(parsed)" - } - -The meaning of each field is as follows: - - name (string) - The type "name", which will be suffixed with - `Flag` when generating the type definition - for `cli` and the wrapper type for `altsrc` - type (string) - The type that the generated `Flag` type for `cli` - is expected to "contain" as its `.Value` member - value (bool) - Should the generated `cli` type have a `Value` - member? - dest (bool) - Should the generated `cli` type support a - destination pointer? - doctail (string) - Additional docs for the `cli` flag type comment - context_type (string) - The literal type used in the `*cli.Context` - reader func signature - context_default (string) - The literal value used as the default by the - `*cli.Context` reader funcs when no value is - present - parser (string) - Literal code used to parse the flag `f`, - expected to have a return signature of - (value, error) - parser_cast (string) - Literal code used to cast the `parsed` value - returned from the `parser` code -""" - -from __future__ import print_function, unicode_literals - -import argparse -import json -import os -import subprocess -import sys -import tempfile -import textwrap - - -class _FancyFormatter(argparse.ArgumentDefaultsHelpFormatter, - argparse.RawDescriptionHelpFormatter): - pass - - -def main(sysargs=sys.argv[:]): - parser = argparse.ArgumentParser( - description='Generate flag type code!', - formatter_class=_FancyFormatter) - parser.add_argument( - 'package', - type=str, default='cli', choices=_WRITEFUNCS.keys(), - help='Package for which flag types will be generated' - ) - parser.add_argument( - '-i', '--in-json', - type=argparse.FileType('r'), - default=sys.stdin, - help='Input JSON file which defines each type to be generated' - ) - parser.add_argument( - '-o', '--out-go', - type=argparse.FileType('w'), - default=sys.stdout, - help='Output file/stream to which generated source will be written' - ) - parser.epilog = __doc__ - - args = parser.parse_args(sysargs[1:]) - _generate_flag_types(_WRITEFUNCS[args.package], args.out_go, args.in_json) - return 0 - - -def _generate_flag_types(writefunc, output_go, input_json): - types = json.load(input_json) - - tmp = tempfile.NamedTemporaryFile(suffix='.go', delete=False) - writefunc(tmp, types) - tmp.close() - - new_content = subprocess.check_output( - ['goimports', tmp.name] - ).decode('utf-8') - - print(new_content, file=output_go, end='') - output_go.flush() - os.remove(tmp.name) - - -def _set_typedef_defaults(typedef): - typedef.setdefault('doctail', '') - typedef.setdefault('context_type', typedef['type']) - typedef.setdefault('dest', True) - typedef.setdefault('value', True) - typedef.setdefault('parser', 'f.Value, error(nil)') - typedef.setdefault('parser_cast', 'parsed') - - -def _write_cli_flag_types(outfile, types): - _fwrite(outfile, """\ - package cli - - // WARNING: This file is generated! - - """) - - for typedef in types: - _set_typedef_defaults(typedef) - - _fwrite(outfile, """\ - // {name}Flag is a flag with type {type}{doctail} - type {name}Flag struct {{ - Name string - Usage string - EnvVar string - Hidden bool - """.format(**typedef)) - - if typedef['value']: - _fwrite(outfile, """\ - Value {type} - """.format(**typedef)) - - if typedef['dest']: - _fwrite(outfile, """\ - Destination *{type} - """.format(**typedef)) - - _fwrite(outfile, "\n}\n\n") - - _fwrite(outfile, """\ - // String returns a readable representation of this value - // (for usage defaults) - func (f {name}Flag) String() string {{ - return FlagStringer(f) - }} - - // GetName returns the name of the flag - func (f {name}Flag) GetName() string {{ - return f.Name - }} - - // {name} looks up the value of a local {name}Flag, returns - // {context_default} if not found - func (c *Context) {name}(name string) {context_type} {{ - return lookup{name}(name, c.flagSet) - }} - - // Global{name} looks up the value of a global {name}Flag, returns - // {context_default} if not found - func (c *Context) Global{name}(name string) {context_type} {{ - if fs := lookupGlobalFlagSet(name, c); fs != nil {{ - return lookup{name}(name, fs) - }} - return {context_default} - }} - - func lookup{name}(name string, set *flag.FlagSet) {context_type} {{ - f := set.Lookup(name) - if f != nil {{ - parsed, err := {parser} - if err != nil {{ - return {context_default} - }} - return {parser_cast} - }} - return {context_default} - }} - """.format(**typedef)) - - -def _write_altsrc_flag_types(outfile, types): - _fwrite(outfile, """\ - package altsrc - - import ( - "gopkg.in/urfave/cli.v1" - ) - - // WARNING: This file is generated! - - """) - - for typedef in types: - _set_typedef_defaults(typedef) - - _fwrite(outfile, """\ - // {name}Flag is the flag type that wraps cli.{name}Flag to allow - // for other values to be specified - type {name}Flag struct {{ - cli.{name}Flag - set *flag.FlagSet - }} - - // New{name}Flag creates a new {name}Flag - func New{name}Flag(fl cli.{name}Flag) *{name}Flag {{ - return &{name}Flag{{{name}Flag: fl, set: nil}} - }} - - // Apply saves the flagSet for later usage calls, then calls the - // wrapped {name}Flag.Apply - func (f *{name}Flag) Apply(set *flag.FlagSet) {{ - f.set = set - f.{name}Flag.Apply(set) - }} - - // ApplyWithError saves the flagSet for later usage calls, then calls the - // wrapped {name}Flag.ApplyWithError - func (f *{name}Flag) ApplyWithError(set *flag.FlagSet) error {{ - f.set = set - return f.{name}Flag.ApplyWithError(set) - }} - """.format(**typedef)) - - -def _fwrite(outfile, text): - print(textwrap.dedent(text), end='', file=outfile) - - -_WRITEFUNCS = { - 'cli': _write_cli_flag_types, - 'altsrc': _write_altsrc_flag_types -} - -if __name__ == '__main__': - sys.exit(main()) diff --git a/vendor/github.com/codegangsta/cli/help.go b/vendor/github.com/codegangsta/cli/help.go deleted file mode 100644 index c8c1aee..0000000 --- a/vendor/github.com/codegangsta/cli/help.go +++ /dev/null @@ -1,294 +0,0 @@ -package cli - -import ( - "fmt" - "io" - "os" - "strings" - "text/tabwriter" - "text/template" -) - -// AppHelpTemplate is the text template for the Default help topic. -// cli.go uses text/template to render templates. You can -// render custom help text by setting this variable. -var AppHelpTemplate = `NAME: - {{.Name}}{{if .Usage}} - {{.Usage}}{{end}} - -USAGE: - {{if .UsageText}}{{.UsageText}}{{else}}{{.HelpName}} {{if .VisibleFlags}}[global options]{{end}}{{if .Commands}} command [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}}{{end}}{{if .Version}}{{if not .HideVersion}} - -VERSION: - {{.Version}}{{end}}{{end}}{{if .Description}} - -DESCRIPTION: - {{.Description}}{{end}}{{if len .Authors}} - -AUTHOR{{with $length := len .Authors}}{{if ne 1 $length}}S{{end}}{{end}}: - {{range $index, $author := .Authors}}{{if $index}} - {{end}}{{$author}}{{end}}{{end}}{{if .VisibleCommands}} - -COMMANDS:{{range .VisibleCategories}}{{if .Name}} - {{.Name}}:{{end}}{{range .VisibleCommands}} - {{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{end}}{{end}}{{if .VisibleFlags}} - -GLOBAL OPTIONS: - {{range $index, $option := .VisibleFlags}}{{if $index}} - {{end}}{{$option}}{{end}}{{end}}{{if .Copyright}} - -COPYRIGHT: - {{.Copyright}}{{end}} -` - -// CommandHelpTemplate is the text template for the command help topic. -// cli.go uses text/template to render templates. You can -// render custom help text by setting this variable. -var CommandHelpTemplate = `NAME: - {{.HelpName}} - {{.Usage}} - -USAGE: - {{.HelpName}}{{if .VisibleFlags}} [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}}{{if .Category}} - -CATEGORY: - {{.Category}}{{end}}{{if .Description}} - -DESCRIPTION: - {{.Description}}{{end}}{{if .VisibleFlags}} - -OPTIONS: - {{range .VisibleFlags}}{{.}} - {{end}}{{end}} -` - -// SubcommandHelpTemplate is the text template for the subcommand help topic. -// cli.go uses text/template to render templates. You can -// render custom help text by setting this variable. -var SubcommandHelpTemplate = `NAME: - {{.HelpName}} - {{.Usage}} - -USAGE: - {{.HelpName}} command{{if .VisibleFlags}} [command options]{{end}} {{if .ArgsUsage}}{{.ArgsUsage}}{{else}}[arguments...]{{end}} - -COMMANDS:{{range .VisibleCategories}}{{if .Name}} - {{.Name}}:{{end}}{{range .VisibleCommands}} - {{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}} -{{end}}{{if .VisibleFlags}} -OPTIONS: - {{range .VisibleFlags}}{{.}} - {{end}}{{end}} -` - -var helpCommand = Command{ - Name: "help", - Aliases: []string{"h"}, - Usage: "Shows a list of commands or help for one command", - ArgsUsage: "[command]", - Action: func(c *Context) error { - args := c.Args() - if args.Present() { - return ShowCommandHelp(c, args.First()) - } - - ShowAppHelp(c) - return nil - }, -} - -var helpSubcommand = Command{ - Name: "help", - Aliases: []string{"h"}, - Usage: "Shows a list of commands or help for one command", - ArgsUsage: "[command]", - Action: func(c *Context) error { - args := c.Args() - if args.Present() { - return ShowCommandHelp(c, args.First()) - } - - return ShowSubcommandHelp(c) - }, -} - -// Prints help for the App or Command -type helpPrinter func(w io.Writer, templ string, data interface{}) - -// HelpPrinter is a function that writes the help output. If not set a default -// is used. The function signature is: -// func(w io.Writer, templ string, data interface{}) -var HelpPrinter helpPrinter = printHelp - -// VersionPrinter prints the version for the App -var VersionPrinter = printVersion - -// ShowAppHelp is an action that displays the help. -func ShowAppHelp(c *Context) error { - HelpPrinter(c.App.Writer, AppHelpTemplate, c.App) - return nil -} - -// DefaultAppComplete prints the list of subcommands as the default app completion method -func DefaultAppComplete(c *Context) { - for _, command := range c.App.Commands { - if command.Hidden { - continue - } - for _, name := range command.Names() { - fmt.Fprintln(c.App.Writer, name) - } - } -} - -// ShowCommandHelp prints help for the given command -func ShowCommandHelp(ctx *Context, command string) error { - // show the subcommand help for a command with subcommands - if command == "" { - HelpPrinter(ctx.App.Writer, SubcommandHelpTemplate, ctx.App) - return nil - } - - for _, c := range ctx.App.Commands { - if c.HasName(command) { - HelpPrinter(ctx.App.Writer, CommandHelpTemplate, c) - return nil - } - } - - if ctx.App.CommandNotFound == nil { - return NewExitError(fmt.Sprintf("No help topic for '%v'", command), 3) - } - - ctx.App.CommandNotFound(ctx, command) - return nil -} - -// ShowSubcommandHelp prints help for the given subcommand -func ShowSubcommandHelp(c *Context) error { - return ShowCommandHelp(c, c.Command.Name) -} - -// ShowVersion prints the version number of the App -func ShowVersion(c *Context) { - VersionPrinter(c) -} - -func printVersion(c *Context) { - fmt.Fprintf(c.App.Writer, "%v version %v\n", c.App.Name, c.App.Version) -} - -// ShowCompletions prints the lists of commands within a given context -func ShowCompletions(c *Context) { - a := c.App - if a != nil && a.BashComplete != nil { - a.BashComplete(c) - } -} - -// ShowCommandCompletions prints the custom completions for a given command -func ShowCommandCompletions(ctx *Context, command string) { - c := ctx.App.Command(command) - if c != nil && c.BashComplete != nil { - c.BashComplete(ctx) - } -} - -func printHelp(out io.Writer, templ string, data interface{}) { - funcMap := template.FuncMap{ - "join": strings.Join, - } - - w := tabwriter.NewWriter(out, 1, 8, 2, ' ', 0) - t := template.Must(template.New("help").Funcs(funcMap).Parse(templ)) - err := t.Execute(w, data) - if err != nil { - // If the writer is closed, t.Execute will fail, and there's nothing - // we can do to recover. - if os.Getenv("CLI_TEMPLATE_ERROR_DEBUG") != "" { - fmt.Fprintf(ErrWriter, "CLI TEMPLATE ERROR: %#v\n", err) - } - return - } - w.Flush() -} - -func checkVersion(c *Context) bool { - found := false - if VersionFlag.Name != "" { - eachName(VersionFlag.Name, func(name string) { - if c.GlobalBool(name) || c.Bool(name) { - found = true - } - }) - } - return found -} - -func checkHelp(c *Context) bool { - found := false - if HelpFlag.Name != "" { - eachName(HelpFlag.Name, func(name string) { - if c.GlobalBool(name) || c.Bool(name) { - found = true - } - }) - } - return found -} - -func checkCommandHelp(c *Context, name string) bool { - if c.Bool("h") || c.Bool("help") { - ShowCommandHelp(c, name) - return true - } - - return false -} - -func checkSubcommandHelp(c *Context) bool { - if c.Bool("h") || c.Bool("help") { - ShowSubcommandHelp(c) - return true - } - - return false -} - -func checkShellCompleteFlag(a *App, arguments []string) (bool, []string) { - if !a.EnableBashCompletion { - return false, arguments - } - - pos := len(arguments) - 1 - lastArg := arguments[pos] - - if lastArg != "--"+BashCompletionFlag.Name { - return false, arguments - } - - return true, arguments[:pos] -} - -func checkCompletions(c *Context) bool { - if !c.shellComplete { - return false - } - - if args := c.Args(); args.Present() { - name := args.First() - if cmd := c.App.Command(name); cmd != nil { - // let the command handle the completion - return false - } - } - - ShowCompletions(c) - return true -} - -func checkCommandCompletions(c *Context, name string) bool { - if !c.shellComplete { - return false - } - - ShowCommandCompletions(c, name) - return true -} diff --git a/vendor/github.com/codegangsta/cli/runtests b/vendor/github.com/codegangsta/cli/runtests deleted file mode 100755 index ee22bde..0000000 --- a/vendor/github.com/codegangsta/cli/runtests +++ /dev/null @@ -1,122 +0,0 @@ -#!/usr/bin/env python -from __future__ import print_function - -import argparse -import os -import sys -import tempfile - -from subprocess import check_call, check_output - - -PACKAGE_NAME = os.environ.get( - 'CLI_PACKAGE_NAME', 'github.com/urfave/cli' -) - - -def main(sysargs=sys.argv[:]): - targets = { - 'vet': _vet, - 'test': _test, - 'gfmrun': _gfmrun, - 'toc': _toc, - 'gen': _gen, - } - - parser = argparse.ArgumentParser() - parser.add_argument( - 'target', nargs='?', choices=tuple(targets.keys()), default='test' - ) - args = parser.parse_args(sysargs[1:]) - - targets[args.target]() - return 0 - - -def _test(): - if check_output('go version'.split()).split()[2] < 'go1.2': - _run('go test -v .') - return - - coverprofiles = [] - for subpackage in ['', 'altsrc']: - coverprofile = 'cli.coverprofile' - if subpackage != '': - coverprofile = '{}.coverprofile'.format(subpackage) - - coverprofiles.append(coverprofile) - - _run('go test -v'.split() + [ - '-coverprofile={}'.format(coverprofile), - ('{}/{}'.format(PACKAGE_NAME, subpackage)).rstrip('/') - ]) - - combined_name = _combine_coverprofiles(coverprofiles) - _run('go tool cover -func={}'.format(combined_name)) - os.remove(combined_name) - - -def _gfmrun(): - go_version = check_output('go version'.split()).split()[2] - if go_version < 'go1.3': - print('runtests: skip on {}'.format(go_version), file=sys.stderr) - return - _run(['gfmrun', '-c', str(_gfmrun_count()), '-s', 'README.md']) - - -def _vet(): - _run('go vet ./...') - - -def _toc(): - _run('node_modules/.bin/markdown-toc -i README.md') - _run('git diff --exit-code') - - -def _gen(): - go_version = check_output('go version'.split()).split()[2] - if go_version < 'go1.5': - print('runtests: skip on {}'.format(go_version), file=sys.stderr) - return - - _run('go generate ./...') - _run('git diff --exit-code') - - -def _run(command): - if hasattr(command, 'split'): - command = command.split() - print('runtests: {}'.format(' '.join(command)), file=sys.stderr) - check_call(command) - - -def _gfmrun_count(): - with open('README.md') as infile: - lines = infile.read().splitlines() - return len(filter(_is_go_runnable, lines)) - - -def _is_go_runnable(line): - return line.startswith('package main') - - -def _combine_coverprofiles(coverprofiles): - combined = tempfile.NamedTemporaryFile( - suffix='.coverprofile', delete=False - ) - combined.write('mode: set\n') - - for coverprofile in coverprofiles: - with open(coverprofile, 'r') as infile: - for line in infile.readlines(): - if not line.startswith('mode: '): - combined.write(line) - - combined.flush() - name = combined.name - combined.close() - return name - - -if __name__ == '__main__': - sys.exit(main()) diff --git a/vendor/github.com/elazarl/go-bindata-assetfs/LICENSE b/vendor/github.com/elazarl/go-bindata-assetfs/LICENSE deleted file mode 100644 index 5782c72..0000000 --- a/vendor/github.com/elazarl/go-bindata-assetfs/LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -Copyright (c) 2014, Elazar Leibovich -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/github.com/elazarl/go-bindata-assetfs/README.md b/vendor/github.com/elazarl/go-bindata-assetfs/README.md deleted file mode 100644 index 795d3d3..0000000 --- a/vendor/github.com/elazarl/go-bindata-assetfs/README.md +++ /dev/null @@ -1,46 +0,0 @@ -# go-bindata-assetfs - -Serve embedded files from [jteeuwen/go-bindata](https://github.com/jteeuwen/go-bindata) with `net/http`. - -[GoDoc](http://godoc.org/github.com/elazarl/go-bindata-assetfs) - -### Installation - -Install with - - $ go get github.com/jteeuwen/go-bindata/... - $ go get github.com/elazarl/go-bindata-assetfs/... - -### Creating embedded data - -Usage is identical to [jteeuwen/go-bindata](https://github.com/jteeuwen/go-bindata) usage, -instead of running `go-bindata` run `go-bindata-assetfs`. - -The tool will create a `bindata_assetfs.go` file, which contains the embedded data. - -A typical use case is - - $ go-bindata-assetfs data/... - -### Using assetFS in your code - -The generated file provides an `assetFS()` function that returns a `http.Filesystem` -wrapping the embedded files. What you usually want to do is: - - http.Handle("/", http.FileServer(assetFS())) - -This would run an HTTP server serving the embedded files. - -## Without running binary tool - -You can always just run the `go-bindata` tool, and then - -use - - import "github.com/elazarl/go-bindata-assetfs" - ... - http.Handle("/", - http.FileServer( - &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, Prefix: "data"})) - -to serve files embedded from the `data` directory. diff --git a/vendor/github.com/elazarl/go-bindata-assetfs/assetfs.go b/vendor/github.com/elazarl/go-bindata-assetfs/assetfs.go deleted file mode 100644 index 5174d5a..0000000 --- a/vendor/github.com/elazarl/go-bindata-assetfs/assetfs.go +++ /dev/null @@ -1,147 +0,0 @@ -package assetfs - -import ( - "bytes" - "errors" - "io" - "io/ioutil" - "net/http" - "os" - "path" - "path/filepath" - "time" -) - -var ( - fileTimestamp = time.Now() -) - -// FakeFile implements os.FileInfo interface for a given path and size -type FakeFile struct { - // Path is the path of this file - Path string - // Dir marks of the path is a directory - Dir bool - // Len is the length of the fake file, zero if it is a directory - Len int64 -} - -func (f *FakeFile) Name() string { - _, name := filepath.Split(f.Path) - return name -} - -func (f *FakeFile) Mode() os.FileMode { - mode := os.FileMode(0644) - if f.Dir { - return mode | os.ModeDir - } - return mode -} - -func (f *FakeFile) ModTime() time.Time { - return fileTimestamp -} - -func (f *FakeFile) Size() int64 { - return f.Len -} - -func (f *FakeFile) IsDir() bool { - return f.Mode().IsDir() -} - -func (f *FakeFile) Sys() interface{} { - return nil -} - -// AssetFile implements http.File interface for a no-directory file with content -type AssetFile struct { - *bytes.Reader - io.Closer - FakeFile -} - -func NewAssetFile(name string, content []byte) *AssetFile { - return &AssetFile{ - bytes.NewReader(content), - ioutil.NopCloser(nil), - FakeFile{name, false, int64(len(content))}} -} - -func (f *AssetFile) Readdir(count int) ([]os.FileInfo, error) { - return nil, errors.New("not a directory") -} - -func (f *AssetFile) Size() int64 { - return f.FakeFile.Size() -} - -func (f *AssetFile) Stat() (os.FileInfo, error) { - return f, nil -} - -// AssetDirectory implements http.File interface for a directory -type AssetDirectory struct { - AssetFile - ChildrenRead int - Children []os.FileInfo -} - -func NewAssetDirectory(name string, children []string, fs *AssetFS) *AssetDirectory { - fileinfos := make([]os.FileInfo, 0, len(children)) - for _, child := range children { - _, err := fs.AssetDir(filepath.Join(name, child)) - fileinfos = append(fileinfos, &FakeFile{child, err == nil, 0}) - } - return &AssetDirectory{ - AssetFile{ - bytes.NewReader(nil), - ioutil.NopCloser(nil), - FakeFile{name, true, 0}, - }, - 0, - fileinfos} -} - -func (f *AssetDirectory) Readdir(count int) ([]os.FileInfo, error) { - if count <= 0 { - return f.Children, nil - } - if f.ChildrenRead+count > len(f.Children) { - count = len(f.Children) - f.ChildrenRead - } - rv := f.Children[f.ChildrenRead : f.ChildrenRead+count] - f.ChildrenRead += count - return rv, nil -} - -func (f *AssetDirectory) Stat() (os.FileInfo, error) { - return f, nil -} - -// AssetFS implements http.FileSystem, allowing -// embedded files to be served from net/http package. -type AssetFS struct { - // Asset should return content of file in path if exists - Asset func(path string) ([]byte, error) - // AssetDir should return list of files in the path - AssetDir func(path string) ([]string, error) - // Prefix would be prepended to http requests - Prefix string -} - -func (fs *AssetFS) Open(name string) (http.File, error) { - name = path.Join(fs.Prefix, name) - if len(name) > 0 && name[0] == '/' { - name = name[1:] - } - if b, err := fs.Asset(name); err == nil { - return NewAssetFile(name, b), nil - } - if children, err := fs.AssetDir(name); err == nil { - return NewAssetDirectory(name, children, fs), nil - } else { - return nil, err - } -} diff --git a/vendor/github.com/elazarl/go-bindata-assetfs/doc.go b/vendor/github.com/elazarl/go-bindata-assetfs/doc.go deleted file mode 100644 index a664249..0000000 --- a/vendor/github.com/elazarl/go-bindata-assetfs/doc.go +++ /dev/null @@ -1,13 +0,0 @@ -// assetfs allows packages to serve static content embedded -// with the go-bindata tool with the standard net/http package. -// -// See https://github.com/jteeuwen/go-bindata for more information -// about embedding binary data with go-bindata. -// -// Usage example, after running -// $ go-bindata data/... -// use: -// http.Handle("/", -// http.FileServer( -// &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, Prefix: "data"})) -package assetfs diff --git a/vendor/github.com/fatih/structs/.gitignore b/vendor/github.com/fatih/structs/.gitignore deleted file mode 100644 index 8365624..0000000 --- a/vendor/github.com/fatih/structs/.gitignore +++ /dev/null @@ -1,23 +0,0 @@ -# Compiled Object files, Static and Dynamic libs (Shared Objects) -*.o -*.a -*.so - -# Folders -_obj -_test - -# Architecture specific extensions/prefixes -*.[568vq] -[568vq].out - -*.cgo1.go -*.cgo2.c -_cgo_defun.c -_cgo_gotypes.go -_cgo_export.* - -_testmain.go - -*.exe -*.test diff --git a/vendor/github.com/fatih/structs/.travis.yml b/vendor/github.com/fatih/structs/.travis.yml deleted file mode 100644 index 28381ef..0000000 --- a/vendor/github.com/fatih/structs/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -language: go -go: 1.3 -before_install: -- go get github.com/axw/gocov/gocov -- go get github.com/mattn/goveralls -- go get code.google.com/p/go.tools/cmd/cover -script: -- $HOME/gopath/bin/goveralls -repotoken $COVERALLS_TOKEN -env: - global: - - secure: hkc+92KPmMFqIH9n4yWdnH1JpZjahmOyDJwpTh8Yl0JieJNG0XEXpOqNao27eA0cLF+UHdyjFeGcPUJKNmgE46AoQjtovt+ICjCXKR2yF6S2kKJcUOz/Vd6boZF7qHV06jjxyxOebpID5iSoW6UfFr001bFxpd3jaSLFTzSHWRQ= diff --git a/vendor/github.com/fatih/structs/LICENSE b/vendor/github.com/fatih/structs/LICENSE deleted file mode 100644 index 34504e4..0000000 --- a/vendor/github.com/fatih/structs/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2014 Fatih Arslan - -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. \ No newline at end of file diff --git a/vendor/github.com/fatih/structs/README.md b/vendor/github.com/fatih/structs/README.md deleted file mode 100644 index 752ba57..0000000 --- a/vendor/github.com/fatih/structs/README.md +++ /dev/null @@ -1,164 +0,0 @@ -# Structs [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/fatih/structs) [![Build Status](http://img.shields.io/travis/fatih/structs.svg?style=flat-square)](https://travis-ci.org/fatih/structs) [![Coverage Status](http://img.shields.io/coveralls/fatih/structs.svg?style=flat-square)](https://coveralls.io/r/fatih/structs) - -Structs contains various utilities to work with Go (Golang) structs. It was -initially used by me to convert a struct into a `map[string]interface{}`. With -time I've added other utilities for structs. It's basically a high level -package based on primitives from the reflect package. Feel free to add new -functions or improve the existing code. - -## Install - -```bash -go get github.com/fatih/structs -``` - -## Usage and Examples - -Just like the standard lib `strings`, `bytes` and co packages, `structs` has -many global functions to manipulate or organize your struct data. Lets define -and declare a struct: - -```go -type Server struct { - Name string `json:"name,omitempty"` - ID int - Enabled bool - users []string // not exported - http.Server // embedded -} - -server := &Server{ - Name: "gopher", - ID: 123456, - Enabled: true, -} -``` - -```go -// Convert a struct to a map[string]interface{} -// => {"Name":"gopher", "ID":123456, "Enabled":true} -m := structs.Map(server) - -// Convert the values of a struct to a []interface{} -// => ["gopher", 123456, true] -v := structs.Values(server) - -// Convert the names of a struct to a []string -// (see "Names methods" for more info about fields) -n := structs.Names(server) - -// Convert the values of a struct to a []*Field -// (see "Field methods" for more info about fields) -f := structs.Fields(server) - -// Return the struct name => "Server" -n := structs.Name(server) - -// Check if any field of a struct is initialized or not. -h := structs.HasZero(server) - -// Check if all fields of a struct is initialized or not. -z := structs.IsZero(server) - -// Check if server is a struct or a pointer to struct -i := structs.IsStruct(server) -``` - -### Struct methods - -The structs functions can be also used as independent methods by creating a new -`*structs.Struct`. This is handy if you want to have more control over the -structs (such as retrieving a single Field). - -```go -// Create a new struct type: -s := structs.New(server) - -m := s.Map() // Get a map[string]interface{} -v := s.Values() // Get a []interface{} -f := s.Fields() // Get a []*Field -n := s.Names() // Get a []string -f := s.Field(name) // Get a *Field based on the given field name -f, ok := s.FieldOk(name) // Get a *Field based on the given field name -n := s.Name() // Get the struct name -h := s.HasZero() // Check if any field is initialized -z := s.IsZero() // Check if all fields are initialized -``` - -### Field methods - -We can easily examine a single Field for more detail. Below you can see how we -get and interact with various field methods: - - -```go -s := structs.New(server) - -// Get the Field struct for the "Name" field -name := s.Field("Name") - -// Get the underlying value, value => "gopher" -value := name.Value().(string) - -// Set the field's value -name.Set("another gopher") - -// Get the field's kind, kind => "string" -name.Kind() - -// Check if the field is exported or not -if name.IsExported() { - fmt.Println("Name field is exported") -} - -// Check if the value is a zero value, such as "" for string, 0 for int -if !name.IsZero() { - fmt.Println("Name is initialized") -} - -// Check if the field is an anonymous (embedded) field -if !name.IsEmbedded() { - fmt.Println("Name is not an embedded field") -} - -// Get the Field's tag value for tag name "json", tag value => "name,omitempty" -tagValue := name.Tag("json") -``` - -Nested structs are supported too: - -```go -addrField := s.Field("Server").Field("Addr") - -// Get the value for addr -a := addrField.Value().(string) - -// Or get all fields -httpServer := s.Field("Server").Fields() -``` - -We can also get a slice of Fields from the Struct type to iterate over all -fields. This is handy if you wish to examine all fields: - -```go -// Convert the fields of a struct to a []*Field -fields := s.Fields() - -for _, f := range fields { - fmt.Printf("field name: %+v\n", f.Name()) - - if f.IsExported() { - fmt.Printf("value : %+v\n", f.Value()) - fmt.Printf("is zero : %+v\n", f.IsZero()) - } -} -``` - -## Credits - - * [Fatih Arslan](https://github.com/fatih) - * [Cihangir Savas](https://github.com/cihangir) - -## License - -The MIT License (MIT) - see LICENSE.md for more details diff --git a/vendor/github.com/fatih/structs/field.go b/vendor/github.com/fatih/structs/field.go deleted file mode 100644 index 4b5e15b..0000000 --- a/vendor/github.com/fatih/structs/field.go +++ /dev/null @@ -1,126 +0,0 @@ -package structs - -import ( - "errors" - "fmt" - "reflect" -) - -var ( - errNotExported = errors.New("field is not exported") - errNotSettable = errors.New("field is not settable") -) - -// Field represents a single struct field that encapsulates high level -// functions around the field. -type Field struct { - value reflect.Value - field reflect.StructField - defaultTag string -} - -// Tag returns the value associated with key in the tag string. If there is no -// such key in the tag, Tag returns the empty string. -func (f *Field) Tag(key string) string { - return f.field.Tag.Get(key) -} - -// Value returns the underlying value of of the field. It panics if the field -// is not exported. -func (f *Field) Value() interface{} { - return f.value.Interface() -} - -// IsEmbedded returns true if the given field is an anonymous field (embedded) -func (f *Field) IsEmbedded() bool { - return f.field.Anonymous -} - -// IsExported returns true if the given field is exported. -func (f *Field) IsExported() bool { - return f.field.PkgPath == "" -} - -// IsZero returns true if the given field is not initalized (has a zero value). -// It panics if the field is not exported. -func (f *Field) IsZero() bool { - zero := reflect.Zero(f.value.Type()).Interface() - current := f.Value() - - return reflect.DeepEqual(current, zero) -} - -// Name returns the name of the given field -func (f *Field) Name() string { - return f.field.Name -} - -// Kind returns the fields kind, such as "string", "map", "bool", etc .. -func (f *Field) Kind() reflect.Kind { - return f.value.Kind() -} - -// Set sets the field to given value v. It retuns an error if the field is not -// settable (not addresable or not exported) or if the given value's type -// doesn't match the fields type. -func (f *Field) Set(val interface{}) error { - // we can't set unexported fields, so be sure this field is exported - if !f.IsExported() { - return errNotExported - } - - // do we get here? not sure... - if !f.value.CanSet() { - return errNotSettable - } - - given := reflect.ValueOf(val) - - if f.value.Kind() != given.Kind() { - return fmt.Errorf("wrong kind. got: %s want: %s", given.Kind(), f.value.Kind()) - } - - f.value.Set(given) - return nil -} - -// Fields returns a slice of Fields. This is particular handy to get the fields -// of a nested struct . A struct tag with the content of "-" ignores the -// checking of that particular field. Example: -// -// // Field is ignored by this package. -// Field *http.Request `structs:"-"` -// -// It panics if field is not exported or if field's kind is not struct -func (f *Field) Fields() []*Field { - return getFields(f.value, f.defaultTag) -} - -// Field returns the field from a nested struct. It panics if the nested struct -// is not exported or if the field was not found. -func (f *Field) Field(name string) *Field { - field, ok := f.FieldOk(name) - if !ok { - panic("field not found") - } - - return field -} - -// Field returns the field from a nested struct. The boolean returns true if -// the field was found. It panics if the nested struct is not exported or if -// the field was not found. -func (f *Field) FieldOk(name string) (*Field, bool) { - v := strctVal(f.value.Interface()) - t := v.Type() - - field, ok := t.FieldByName(name) - if !ok { - return nil, false - } - - return &Field{ - field: field, - value: v.FieldByName(name), - }, true -} diff --git a/vendor/github.com/fatih/structs/structs.go b/vendor/github.com/fatih/structs/structs.go deleted file mode 100644 index a0b77e6..0000000 --- a/vendor/github.com/fatih/structs/structs.go +++ /dev/null @@ -1,449 +0,0 @@ -// Package structs contains various utilities functions to work with structs. -package structs - -import "reflect" - -var ( - // DefaultTagName is the default tag name for struct fields which provides - // a more granular to tweak certain structs. Lookup the necessary functions - // for more info. - DefaultTagName = "structs" // struct's field default tag name -) - -// Struct encapsulates a struct type to provide several high level functions -// around the struct. -type Struct struct { - raw interface{} - value reflect.Value - TagName string -} - -// New returns a new *Struct with the struct s. It panics if the s's kind is -// not struct. -func New(s interface{}) *Struct { - return &Struct{ - raw: s, - value: strctVal(s), - TagName: DefaultTagName, - } -} - -// Map converts the given struct to a map[string]interface{}, where the keys -// of the map are the field names and the values of the map the associated -// values of the fields. The default key string is the struct field name but -// can be changed in the struct field's tag value. The "structs" key in the -// struct's field tag value is the key name. Example: -// -// // Field appears in map as key "myName". -// Name string `structs:"myName"` -// -// A tag value with the content of "-" ignores that particular field. Example: -// -// // Field is ignored by this package. -// Field bool `structs:"-"` -// -// A tag value with the option of "omitnested" stops iterating further if the type -// is a struct. Example: -// -// // Field is not processed further by this package. -// Field time.Time `structs:"myName,omitnested"` -// Field *http.Request `structs:",omitnested"` -// -// A tag value with the option of "omitempty" ignores that particular field if -// the field value is empty. Example: -// -// // Field appears in map as key "myName", but the field is -// // skipped if empty. -// Field string `structs:"myName,omitempty"` -// -// // Field appears in map as key "Field" (the default), but -// // the field is skipped if empty. -// Field string `structs:",omitempty"` -// -// Note that only exported fields of a struct can be accessed, non exported -// fields will be neglected. -func (s *Struct) Map() map[string]interface{} { - out := make(map[string]interface{}) - - fields := s.structFields() - - for _, field := range fields { - name := field.Name - val := s.value.FieldByName(name) - - var finalVal interface{} - - tagName, tagOpts := parseTag(field.Tag.Get(s.TagName)) - if tagName != "" { - name = tagName - } - - // if the value is a zero value and the field is marked as omitempty do - // not include - if tagOpts.Has("omitempty") { - zero := reflect.Zero(val.Type()).Interface() - current := val.Interface() - - if reflect.DeepEqual(current, zero) { - continue - } - } - - if IsStruct(val.Interface()) && !tagOpts.Has("omitnested") { - // look out for embedded structs, and convert them to a - // map[string]interface{} too - n := New(val.Interface()) - n.TagName = s.TagName - finalVal = n.Map() - } else { - finalVal = val.Interface() - } - - out[name] = finalVal - } - - return out -} - -// Values converts the given s struct's field values to a []interface{}. A -// struct tag with the content of "-" ignores the that particular field. -// Example: -// -// // Field is ignored by this package. -// Field int `structs:"-"` -// -// A value with the option of "omitnested" stops iterating further if the type -// is a struct. Example: -// -// // Fields is not processed further by this package. -// Field time.Time `structs:",omitnested"` -// Field *http.Request `structs:",omitnested"` -// -// A tag value with the option of "omitempty" ignores that particular field and -// is not added to the values if the field value is empty. Example: -// -// // Field is skipped if empty -// Field string `structs:",omitempty"` -// -// Note that only exported fields of a struct can be accessed, non exported -// fields will be neglected. -func (s *Struct) Values() []interface{} { - fields := s.structFields() - - var t []interface{} - - for _, field := range fields { - val := s.value.FieldByName(field.Name) - - _, tagOpts := parseTag(field.Tag.Get(s.TagName)) - - // if the value is a zero value and the field is marked as omitempty do - // not include - if tagOpts.Has("omitempty") { - zero := reflect.Zero(val.Type()).Interface() - current := val.Interface() - - if reflect.DeepEqual(current, zero) { - continue - } - } - - if IsStruct(val.Interface()) && !tagOpts.Has("omitnested") { - // look out for embedded structs, and convert them to a - // []interface{} to be added to the final values slice - for _, embeddedVal := range Values(val.Interface()) { - t = append(t, embeddedVal) - } - } else { - t = append(t, val.Interface()) - } - } - - return t -} - -// Fields returns a slice of Fields. A struct tag with the content of "-" -// ignores the checking of that particular field. Example: -// -// // Field is ignored by this package. -// Field bool `structs:"-"` -// -// It panics if s's kind is not struct. -func (s *Struct) Fields() []*Field { - return getFields(s.value, s.TagName) -} - -// Names returns a slice of field names. A struct tag with the content of "-" -// ignores the checking of that particular field. Example: -// -// // Field is ignored by this package. -// Field bool `structs:"-"` -// -// It panics if s's kind is not struct. -func (s *Struct) Names() []string { - fields := getFields(s.value, s.TagName) - - names := make([]string, len(fields)) - - for i, field := range fields { - names[i] = field.Name() - } - - return names -} - -func getFields(v reflect.Value, tagName string) []*Field { - if v.Kind() == reflect.Ptr { - v = v.Elem() - } - - t := v.Type() - - var fields []*Field - - for i := 0; i < t.NumField(); i++ { - field := t.Field(i) - - if tag := field.Tag.Get(tagName); tag == "-" { - continue - } - - f := &Field{ - field: field, - value: v.FieldByName(field.Name), - } - - fields = append(fields, f) - - } - - return fields -} - -// Field returns a new Field struct that provides several high level functions -// around a single struct field entity. It panics if the field is not found. -func (s *Struct) Field(name string) *Field { - f, ok := s.FieldOk(name) - if !ok { - panic("field not found") - } - - return f -} - -// Field returns a new Field struct that provides several high level functions -// around a single struct field entity. The boolean returns true if the field -// was found. -func (s *Struct) FieldOk(name string) (*Field, bool) { - t := s.value.Type() - - field, ok := t.FieldByName(name) - if !ok { - return nil, false - } - - return &Field{ - field: field, - value: s.value.FieldByName(name), - defaultTag: s.TagName, - }, true -} - -// IsZero returns true if all fields in a struct is a zero value (not -// initialized) A struct tag with the content of "-" ignores the checking of -// that particular field. Example: -// -// // Field is ignored by this package. -// Field bool `structs:"-"` -// -// A value with the option of "omitnested" stops iterating further if the type -// is a struct. Example: -// -// // Field is not processed further by this package. -// Field time.Time `structs:"myName,omitnested"` -// Field *http.Request `structs:",omitnested"` -// -// Note that only exported fields of a struct can be accessed, non exported -// fields will be neglected. It panics if s's kind is not struct. -func (s *Struct) IsZero() bool { - fields := s.structFields() - - for _, field := range fields { - val := s.value.FieldByName(field.Name) - - _, tagOpts := parseTag(field.Tag.Get(s.TagName)) - - if IsStruct(val.Interface()) && !tagOpts.Has("omitnested") { - ok := IsZero(val.Interface()) - if !ok { - return false - } - - continue - } - - // zero value of the given field, such as "" for string, 0 for int - zero := reflect.Zero(val.Type()).Interface() - - // current value of the given field - current := val.Interface() - - if !reflect.DeepEqual(current, zero) { - return false - } - } - - return true -} - -// HasZero returns true if a field in a struct is not initialized (zero value). -// A struct tag with the content of "-" ignores the checking of that particular -// field. Example: -// -// // Field is ignored by this package. -// Field bool `structs:"-"` -// -// A value with the option of "omitnested" stops iterating further if the type -// is a struct. Example: -// -// // Field is not processed further by this package. -// Field time.Time `structs:"myName,omitnested"` -// Field *http.Request `structs:",omitnested"` -// -// Note that only exported fields of a struct can be accessed, non exported -// fields will be neglected. It panics if s's kind is not struct. -func (s *Struct) HasZero() bool { - fields := s.structFields() - - for _, field := range fields { - val := s.value.FieldByName(field.Name) - - _, tagOpts := parseTag(field.Tag.Get(s.TagName)) - - if IsStruct(val.Interface()) && !tagOpts.Has("omitnested") { - ok := HasZero(val.Interface()) - if ok { - return true - } - - continue - } - - // zero value of the given field, such as "" for string, 0 for int - zero := reflect.Zero(val.Type()).Interface() - - // current value of the given field - current := val.Interface() - - if reflect.DeepEqual(current, zero) { - return true - } - } - - return false -} - -// Name returns the structs's type name within its package. For more info refer -// to Name() function. -func (s *Struct) Name() string { - return s.value.Type().Name() -} - -// structFields returns the exported struct fields for a given s struct. This -// is a convenient helper method to avoid duplicate code in some of the -// functions. -func (s *Struct) structFields() []reflect.StructField { - t := s.value.Type() - - var f []reflect.StructField - - for i := 0; i < t.NumField(); i++ { - field := t.Field(i) - // we can't access the value of unexported fields - if field.PkgPath != "" { - continue - } - - // don't check if it's omitted - if tag := field.Tag.Get(s.TagName); tag == "-" { - continue - } - - f = append(f, field) - } - - return f -} - -func strctVal(s interface{}) reflect.Value { - v := reflect.ValueOf(s) - - // if pointer get the underlying element≤ - if v.Kind() == reflect.Ptr { - v = v.Elem() - } - - if v.Kind() != reflect.Struct { - panic("not struct") - } - - return v -} - -// Map converts the given struct to a map[string]interface{}. For more info -// refer to Struct types Map() method. It panics if s's kind is not struct. -func Map(s interface{}) map[string]interface{} { - return New(s).Map() -} - -// Values converts the given struct to a []interface{}. For more info refer to -// Struct types Values() method. It panics if s's kind is not struct. -func Values(s interface{}) []interface{} { - return New(s).Values() -} - -// Fields returns a slice of *Field. For more info refer to Struct types -// Fields() method. It panics if s's kind is not struct. -func Fields(s interface{}) []*Field { - return New(s).Fields() -} - -// Names returns a slice of field names. For more info refer to Struct types -// Names() method. It panics if s's kind is not struct. -func Names(s interface{}) []string { - return New(s).Names() -} - -// IsZero returns true if all fields is equal to a zero value. For more info -// refer to Struct types IsZero() method. It panics if s's kind is not struct. -func IsZero(s interface{}) bool { - return New(s).IsZero() -} - -// HasZero returns true if any field is equal to a zero value. For more info -// refer to Struct types HasZero() method. It panics if s's kind is not struct. -func HasZero(s interface{}) bool { - return New(s).HasZero() -} - -// IsStruct returns true if the given variable is a struct or a pointer to -// struct. -func IsStruct(s interface{}) bool { - v := reflect.ValueOf(s) - if v.Kind() == reflect.Ptr { - v = v.Elem() - } - - // uninitialized zero value of a struct - if v.Kind() == reflect.Invalid { - return false - } - - return v.Kind() == reflect.Struct -} - -// Name returns the structs's type name within its package. It returns an -// empty string for unnamed types. It panics if s's kind is not struct. -func Name(s interface{}) string { - return New(s).Name() -} diff --git a/vendor/github.com/fatih/structs/tags.go b/vendor/github.com/fatih/structs/tags.go deleted file mode 100644 index 8859341..0000000 --- a/vendor/github.com/fatih/structs/tags.go +++ /dev/null @@ -1,32 +0,0 @@ -package structs - -import "strings" - -// tagOptions contains a slice of tag options -type tagOptions []string - -// Has returns true if the given optiton is available in tagOptions -func (t tagOptions) Has(opt string) bool { - for _, tagOpt := range t { - if tagOpt == opt { - return true - } - } - - return false -} - -// parseTag splits a struct field's tag into its name and a list of options -// which comes after a name. A tag is in the form of: "name,option1,option2". -// The name can be neglectected. -func parseTag(tag string) (string, tagOptions) { - // tag is one of followings: - // "" - // "name" - // "name,opt" - // "name,opt,opt2" - // ",opt" - - res := strings.Split(tag, ",") - return res[0], res[1:] -} diff --git a/vendor/github.com/gorilla/websocket/.gitignore b/vendor/github.com/gorilla/websocket/.gitignore deleted file mode 100644 index 0026861..0000000 --- a/vendor/github.com/gorilla/websocket/.gitignore +++ /dev/null @@ -1,22 +0,0 @@ -# Compiled Object files, Static and Dynamic libs (Shared Objects) -*.o -*.a -*.so - -# Folders -_obj -_test - -# Architecture specific extensions/prefixes -*.[568vq] -[568vq].out - -*.cgo1.go -*.cgo2.c -_cgo_defun.c -_cgo_gotypes.go -_cgo_export.* - -_testmain.go - -*.exe diff --git a/vendor/github.com/gorilla/websocket/.travis.yml b/vendor/github.com/gorilla/websocket/.travis.yml deleted file mode 100644 index 8687342..0000000 --- a/vendor/github.com/gorilla/websocket/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -language: go - -go: - - 1.1 - - 1.2 - - tip diff --git a/vendor/github.com/gorilla/websocket/AUTHORS b/vendor/github.com/gorilla/websocket/AUTHORS deleted file mode 100644 index b003eca..0000000 --- a/vendor/github.com/gorilla/websocket/AUTHORS +++ /dev/null @@ -1,8 +0,0 @@ -# This is the official list of Gorilla WebSocket authors for copyright -# purposes. -# -# Please keep the list sorted. - -Gary Burd -Joachim Bauch - diff --git a/vendor/github.com/gorilla/websocket/LICENSE b/vendor/github.com/gorilla/websocket/LICENSE deleted file mode 100644 index 9171c97..0000000 --- a/vendor/github.com/gorilla/websocket/LICENSE +++ /dev/null @@ -1,22 +0,0 @@ -Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/github.com/gorilla/websocket/README.md b/vendor/github.com/gorilla/websocket/README.md deleted file mode 100644 index 9ad75a0..0000000 --- a/vendor/github.com/gorilla/websocket/README.md +++ /dev/null @@ -1,59 +0,0 @@ -# Gorilla WebSocket - -Gorilla WebSocket is a [Go](http://golang.org/) implementation of the -[WebSocket](http://www.rfc-editor.org/rfc/rfc6455.txt) protocol. - -### Documentation - -* [API Reference](http://godoc.org/github.com/gorilla/websocket) -* [Chat example](https://github.com/gorilla/websocket/tree/master/examples/chat) -* [File watch example](https://github.com/gorilla/websocket/tree/master/examples/filewatch) - -### Status - -The Gorilla WebSocket package provides a complete and tested implementation of -the [WebSocket](http://www.rfc-editor.org/rfc/rfc6455.txt) protocol. The -package API is stable. - -### Installation - - go get github.com/gorilla/websocket - -### Protocol Compliance - -The Gorilla WebSocket package passes the server tests in the [Autobahn Test -Suite](http://autobahn.ws/testsuite) using the application in the [examples/autobahn -subdirectory](https://github.com/gorilla/websocket/tree/master/examples/autobahn). - -### Gorilla WebSocket compared with other packages - - - - - - - - - - - - - - - - - - -
github.com/gorillagolang.org/x/net
RFC 6455 Features
Passes Autobahn Test SuiteYesNo
Receive fragmented messageYesNo, see note 1
Send close messageYesNo
Send pings and receive pongsYesNo
Get the type of a received data messageYesYes, see note 2
Other Features
Limit size of received messageYesNo
Read message using io.ReaderYesNo, see note 3
Write message using io.WriteCloserYesNo, see note 3
- -Notes: - -1. Large messages are fragmented in [Chrome's new WebSocket implementation](http://www.ietf.org/mail-archive/web/hybi/current/msg10503.html). -2. The application can get the type of a received data message by implementing - a [Codec marshal](http://godoc.org/golang.org/x/net/websocket#Codec.Marshal) - function. -3. The go.net io.Reader and io.Writer operate across WebSocket frame boundaries. - Read returns when the input buffer is full or a frame boundary is - encountered. Each call to Write sends a single frame message. The Gorilla - io.Reader and io.WriteCloser operate on a single WebSocket message. - diff --git a/vendor/github.com/gorilla/websocket/client.go b/vendor/github.com/gorilla/websocket/client.go deleted file mode 100644 index 93db8dd..0000000 --- a/vendor/github.com/gorilla/websocket/client.go +++ /dev/null @@ -1,269 +0,0 @@ -// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package websocket - -import ( - "bytes" - "crypto/tls" - "errors" - "io" - "io/ioutil" - "net" - "net/http" - "net/url" - "strings" - "time" -) - -// ErrBadHandshake is returned when the server response to opening handshake is -// invalid. -var ErrBadHandshake = errors.New("websocket: bad handshake") - -// NewClient creates a new client connection using the given net connection. -// The URL u specifies the host and request URI. Use requestHeader to specify -// the origin (Origin), subprotocols (Sec-WebSocket-Protocol) and cookies -// (Cookie). Use the response.Header to get the selected subprotocol -// (Sec-WebSocket-Protocol) and cookies (Set-Cookie). -// -// If the WebSocket handshake fails, ErrBadHandshake is returned along with a -// non-nil *http.Response so that callers can handle redirects, authentication, -// etc. -func NewClient(netConn net.Conn, u *url.URL, requestHeader http.Header, readBufSize, writeBufSize int) (c *Conn, response *http.Response, err error) { - challengeKey, err := generateChallengeKey() - if err != nil { - return nil, nil, err - } - acceptKey := computeAcceptKey(challengeKey) - - c = newConn(netConn, false, readBufSize, writeBufSize) - p := c.writeBuf[:0] - p = append(p, "GET "...) - p = append(p, u.RequestURI()...) - p = append(p, " HTTP/1.1\r\nHost: "...) - p = append(p, u.Host...) - // "Upgrade" is capitalized for servers that do not use case insensitive - // comparisons on header tokens. - p = append(p, "\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Version: 13\r\nSec-WebSocket-Key: "...) - p = append(p, challengeKey...) - p = append(p, "\r\n"...) - for k, vs := range requestHeader { - for _, v := range vs { - p = append(p, k...) - p = append(p, ": "...) - p = append(p, v...) - p = append(p, "\r\n"...) - } - } - p = append(p, "\r\n"...) - - if _, err := netConn.Write(p); err != nil { - return nil, nil, err - } - - resp, err := http.ReadResponse(c.br, &http.Request{Method: "GET", URL: u}) - if err != nil { - return nil, nil, err - } - if resp.StatusCode != 101 || - !strings.EqualFold(resp.Header.Get("Upgrade"), "websocket") || - !strings.EqualFold(resp.Header.Get("Connection"), "upgrade") || - resp.Header.Get("Sec-Websocket-Accept") != acceptKey { - return nil, resp, ErrBadHandshake - } - c.subprotocol = resp.Header.Get("Sec-Websocket-Protocol") - return c, resp, nil -} - -// A Dialer contains options for connecting to WebSocket server. -type Dialer struct { - // NetDial specifies the dial function for creating TCP connections. If - // NetDial is nil, net.Dial is used. - NetDial func(network, addr string) (net.Conn, error) - - // TLSClientConfig specifies the TLS configuration to use with tls.Client. - // If nil, the default configuration is used. - TLSClientConfig *tls.Config - - // HandshakeTimeout specifies the duration for the handshake to complete. - HandshakeTimeout time.Duration - - // Input and output buffer sizes. If the buffer size is zero, then a - // default value of 4096 is used. - ReadBufferSize, WriteBufferSize int - - // Subprotocols specifies the client's requested subprotocols. - Subprotocols []string -} - -var errMalformedURL = errors.New("malformed ws or wss URL") - -// parseURL parses the URL. The url.Parse function is not used here because -// url.Parse mangles the path. -func parseURL(s string) (*url.URL, error) { - // From the RFC: - // - // ws-URI = "ws:" "//" host [ ":" port ] path [ "?" query ] - // wss-URI = "wss:" "//" host [ ":" port ] path [ "?" query ] - // - // We don't use the net/url parser here because the dialer interface does - // not provide a way for applications to work around percent deocding in - // the net/url parser. - - var u url.URL - switch { - case strings.HasPrefix(s, "ws://"): - u.Scheme = "ws" - s = s[len("ws://"):] - case strings.HasPrefix(s, "wss://"): - u.Scheme = "wss" - s = s[len("wss://"):] - default: - return nil, errMalformedURL - } - - u.Host = s - u.Opaque = "/" - if i := strings.Index(s, "/"); i >= 0 { - u.Host = s[:i] - u.Opaque = s[i:] - } - - if strings.Contains(u.Host, "@") { - // WebSocket URIs do not contain user information. - return nil, errMalformedURL - } - - return &u, nil -} - -func hostPortNoPort(u *url.URL) (hostPort, hostNoPort string) { - hostPort = u.Host - hostNoPort = u.Host - if i := strings.LastIndex(u.Host, ":"); i > strings.LastIndex(u.Host, "]") { - hostNoPort = hostNoPort[:i] - } else { - if u.Scheme == "wss" { - hostPort += ":443" - } else { - hostPort += ":80" - } - } - return hostPort, hostNoPort -} - -// DefaultDialer is a dialer with all fields set to the default zero values. -var DefaultDialer *Dialer - -// Dial creates a new client connection. Use requestHeader to specify the -// origin (Origin), subprotocols (Sec-WebSocket-Protocol) and cookies (Cookie). -// Use the response.Header to get the selected subprotocol -// (Sec-WebSocket-Protocol) and cookies (Set-Cookie). -// -// If the WebSocket handshake fails, ErrBadHandshake is returned along with a -// non-nil *http.Response so that callers can handle redirects, authentication, -// etcetera. The response body may not contain the entire response and does not -// need to be closed by the application. -func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Response, error) { - u, err := parseURL(urlStr) - if err != nil { - return nil, nil, err - } - - hostPort, hostNoPort := hostPortNoPort(u) - - if d == nil { - d = &Dialer{} - } - - var deadline time.Time - if d.HandshakeTimeout != 0 { - deadline = time.Now().Add(d.HandshakeTimeout) - } - - netDial := d.NetDial - if netDial == nil { - netDialer := &net.Dialer{Deadline: deadline} - netDial = netDialer.Dial - } - - netConn, err := netDial("tcp", hostPort) - if err != nil { - return nil, nil, err - } - - defer func() { - if netConn != nil { - netConn.Close() - } - }() - - if err := netConn.SetDeadline(deadline); err != nil { - return nil, nil, err - } - - if u.Scheme == "wss" { - cfg := d.TLSClientConfig - if cfg == nil { - cfg = &tls.Config{ServerName: hostNoPort} - } else if cfg.ServerName == "" { - shallowCopy := *cfg - cfg = &shallowCopy - cfg.ServerName = hostNoPort - } - tlsConn := tls.Client(netConn, cfg) - netConn = tlsConn - if err := tlsConn.Handshake(); err != nil { - return nil, nil, err - } - if !cfg.InsecureSkipVerify { - if err := tlsConn.VerifyHostname(cfg.ServerName); err != nil { - return nil, nil, err - } - } - } - - if len(d.Subprotocols) > 0 { - h := http.Header{} - for k, v := range requestHeader { - h[k] = v - } - h.Set("Sec-Websocket-Protocol", strings.Join(d.Subprotocols, ", ")) - requestHeader = h - } - - if len(requestHeader["Host"]) > 0 { - // This can be used to supply a Host: header which is different from - // the dial address. - u.Host = requestHeader.Get("Host") - - // Drop "Host" header - h := http.Header{} - for k, v := range requestHeader { - if k == "Host" { - continue - } - h[k] = v - } - requestHeader = h - } - - conn, resp, err := NewClient(netConn, u, requestHeader, d.ReadBufferSize, d.WriteBufferSize) - - if err != nil { - if err == ErrBadHandshake { - // Before closing the network connection on return from this - // function, slurp up some of the response to aid application - // debugging. - buf := make([]byte, 1024) - n, _ := io.ReadFull(resp.Body, buf) - resp.Body = ioutil.NopCloser(bytes.NewReader(buf[:n])) - } - return nil, resp, err - } - - netConn.SetDeadline(time.Time{}) - netConn = nil // to avoid close in defer. - return conn, resp, nil -} diff --git a/vendor/github.com/gorilla/websocket/conn.go b/vendor/github.com/gorilla/websocket/conn.go deleted file mode 100644 index a2374a8..0000000 --- a/vendor/github.com/gorilla/websocket/conn.go +++ /dev/null @@ -1,824 +0,0 @@ -// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package websocket - -import ( - "bufio" - "encoding/binary" - "errors" - "io" - "io/ioutil" - "math/rand" - "net" - "strconv" - "time" -) - -const ( - maxFrameHeaderSize = 2 + 8 + 4 // Fixed header + length + mask - maxControlFramePayloadSize = 125 - finalBit = 1 << 7 - maskBit = 1 << 7 - writeWait = time.Second - - defaultReadBufferSize = 4096 - defaultWriteBufferSize = 4096 - - continuationFrame = 0 - noFrame = -1 -) - -// Close codes defined in RFC 6455, section 11.7. -const ( - CloseNormalClosure = 1000 - CloseGoingAway = 1001 - CloseProtocolError = 1002 - CloseUnsupportedData = 1003 - CloseNoStatusReceived = 1005 - CloseAbnormalClosure = 1006 - CloseInvalidFramePayloadData = 1007 - ClosePolicyViolation = 1008 - CloseMessageTooBig = 1009 - CloseMandatoryExtension = 1010 - CloseInternalServerErr = 1011 - CloseTLSHandshake = 1015 -) - -// The message types are defined in RFC 6455, section 11.8. -const ( - // TextMessage denotes a text data message. The text message payload is - // interpreted as UTF-8 encoded text data. - TextMessage = 1 - - // BinaryMessage denotes a binary data message. - BinaryMessage = 2 - - // CloseMessage denotes a close control message. The optional message - // payload contains a numeric code and text. Use the FormatCloseMessage - // function to format a close message payload. - CloseMessage = 8 - - // PingMessage denotes a ping control message. The optional message payload - // is UTF-8 encoded text. - PingMessage = 9 - - // PongMessage denotes a ping control message. The optional message payload - // is UTF-8 encoded text. - PongMessage = 10 -) - -// ErrCloseSent is returned when the application writes a message to the -// connection after sending a close message. -var ErrCloseSent = errors.New("websocket: close sent") - -// ErrReadLimit is returned when reading a message that is larger than the -// read limit set for the connection. -var ErrReadLimit = errors.New("websocket: read limit exceeded") - -// netError satisfies the net Error interface. -type netError struct { - msg string - temporary bool - timeout bool -} - -func (e *netError) Error() string { return e.msg } -func (e *netError) Temporary() bool { return e.temporary } -func (e *netError) Timeout() bool { return e.timeout } - -// CloseError represents close frame. -type CloseError struct { - - // Code is defined in RFC 6455, section 11.7. - Code int - - // Text is the optional text payload. - Text string -} - -func (e *CloseError) Error() string { - return "websocket: close " + strconv.Itoa(e.Code) + " " + e.Text -} - -var ( - errWriteTimeout = &netError{msg: "websocket: write timeout", timeout: true} - errUnexpectedEOF = &CloseError{Code: CloseAbnormalClosure, Text: io.ErrUnexpectedEOF.Error()} - errBadWriteOpCode = errors.New("websocket: bad write message type") - errWriteClosed = errors.New("websocket: write closed") - errInvalidControlFrame = errors.New("websocket: invalid control frame") -) - -func hideTempErr(err error) error { - if e, ok := err.(net.Error); ok && e.Temporary() { - err = &netError{msg: e.Error(), timeout: e.Timeout()} - } - return err -} - -func isControl(frameType int) bool { - return frameType == CloseMessage || frameType == PingMessage || frameType == PongMessage -} - -func isData(frameType int) bool { - return frameType == TextMessage || frameType == BinaryMessage -} - -func maskBytes(key [4]byte, pos int, b []byte) int { - for i := range b { - b[i] ^= key[pos&3] - pos++ - } - return pos & 3 -} - -func newMaskKey() [4]byte { - n := rand.Uint32() - return [4]byte{byte(n), byte(n >> 8), byte(n >> 16), byte(n >> 24)} -} - -// Conn represents a WebSocket connection. -type Conn struct { - conn net.Conn - isServer bool - subprotocol string - - // Write fields - mu chan bool // used as mutex to protect write to conn and closeSent - closeSent bool // true if close message was sent - - // Message writer fields. - writeErr error - writeBuf []byte // frame is constructed in this buffer. - writePos int // end of data in writeBuf. - writeFrameType int // type of the current frame. - writeSeq int // incremented to invalidate message writers. - writeDeadline time.Time - - // Read fields - readErr error - br *bufio.Reader - readRemaining int64 // bytes remaining in current frame. - readFinal bool // true the current message has more frames. - readSeq int // incremented to invalidate message readers. - readLength int64 // Message size. - readLimit int64 // Maximum message size. - readMaskPos int - readMaskKey [4]byte - handlePong func(string) error - handlePing func(string) error -} - -func newConn(conn net.Conn, isServer bool, readBufferSize, writeBufferSize int) *Conn { - mu := make(chan bool, 1) - mu <- true - - if readBufferSize == 0 { - readBufferSize = defaultReadBufferSize - } - if writeBufferSize == 0 { - writeBufferSize = defaultWriteBufferSize - } - - c := &Conn{ - isServer: isServer, - br: bufio.NewReaderSize(conn, readBufferSize), - conn: conn, - mu: mu, - readFinal: true, - writeBuf: make([]byte, writeBufferSize+maxFrameHeaderSize), - writeFrameType: noFrame, - writePos: maxFrameHeaderSize, - } - c.SetPingHandler(nil) - c.SetPongHandler(nil) - return c -} - -// Subprotocol returns the negotiated protocol for the connection. -func (c *Conn) Subprotocol() string { - return c.subprotocol -} - -// Close closes the underlying network connection without sending or waiting for a close frame. -func (c *Conn) Close() error { - return c.conn.Close() -} - -// LocalAddr returns the local network address. -func (c *Conn) LocalAddr() net.Addr { - return c.conn.LocalAddr() -} - -// RemoteAddr returns the remote network address. -func (c *Conn) RemoteAddr() net.Addr { - return c.conn.RemoteAddr() -} - -// Write methods - -func (c *Conn) write(frameType int, deadline time.Time, bufs ...[]byte) error { - <-c.mu - defer func() { c.mu <- true }() - - if c.closeSent { - return ErrCloseSent - } else if frameType == CloseMessage { - c.closeSent = true - } - - c.conn.SetWriteDeadline(deadline) - for _, buf := range bufs { - if len(buf) > 0 { - n, err := c.conn.Write(buf) - if n != len(buf) { - // Close on partial write. - c.conn.Close() - } - if err != nil { - return err - } - } - } - return nil -} - -// WriteControl writes a control message with the given deadline. The allowed -// message types are CloseMessage, PingMessage and PongMessage. -func (c *Conn) WriteControl(messageType int, data []byte, deadline time.Time) error { - if !isControl(messageType) { - return errBadWriteOpCode - } - if len(data) > maxControlFramePayloadSize { - return errInvalidControlFrame - } - - b0 := byte(messageType) | finalBit - b1 := byte(len(data)) - if !c.isServer { - b1 |= maskBit - } - - buf := make([]byte, 0, maxFrameHeaderSize+maxControlFramePayloadSize) - buf = append(buf, b0, b1) - - if c.isServer { - buf = append(buf, data...) - } else { - key := newMaskKey() - buf = append(buf, key[:]...) - buf = append(buf, data...) - maskBytes(key, 0, buf[6:]) - } - - d := time.Hour * 1000 - if !deadline.IsZero() { - d = deadline.Sub(time.Now()) - if d < 0 { - return errWriteTimeout - } - } - - timer := time.NewTimer(d) - select { - case <-c.mu: - timer.Stop() - case <-timer.C: - return errWriteTimeout - } - defer func() { c.mu <- true }() - - if c.closeSent { - return ErrCloseSent - } else if messageType == CloseMessage { - c.closeSent = true - } - - c.conn.SetWriteDeadline(deadline) - n, err := c.conn.Write(buf) - if n != 0 && n != len(buf) { - c.conn.Close() - } - return err -} - -// NextWriter returns a writer for the next message to send. The writer's -// Close method flushes the complete message to the network. -// -// There can be at most one open writer on a connection. NextWriter closes the -// previous writer if the application has not already done so. -// -// The NextWriter method and the writers returned from the method cannot be -// accessed by more than one goroutine at a time. -func (c *Conn) NextWriter(messageType int) (io.WriteCloser, error) { - if c.writeErr != nil { - return nil, c.writeErr - } - - if c.writeFrameType != noFrame { - if err := c.flushFrame(true, nil); err != nil { - return nil, err - } - } - - if !isControl(messageType) && !isData(messageType) { - return nil, errBadWriteOpCode - } - - c.writeFrameType = messageType - return messageWriter{c, c.writeSeq}, nil -} - -func (c *Conn) flushFrame(final bool, extra []byte) error { - length := c.writePos - maxFrameHeaderSize + len(extra) - - // Check for invalid control frames. - if isControl(c.writeFrameType) && - (!final || length > maxControlFramePayloadSize) { - c.writeSeq++ - c.writeFrameType = noFrame - c.writePos = maxFrameHeaderSize - return errInvalidControlFrame - } - - b0 := byte(c.writeFrameType) - if final { - b0 |= finalBit - } - b1 := byte(0) - if !c.isServer { - b1 |= maskBit - } - - // Assume that the frame starts at beginning of c.writeBuf. - framePos := 0 - if c.isServer { - // Adjust up if mask not included in the header. - framePos = 4 - } - - switch { - case length >= 65536: - c.writeBuf[framePos] = b0 - c.writeBuf[framePos+1] = b1 | 127 - binary.BigEndian.PutUint64(c.writeBuf[framePos+2:], uint64(length)) - case length > 125: - framePos += 6 - c.writeBuf[framePos] = b0 - c.writeBuf[framePos+1] = b1 | 126 - binary.BigEndian.PutUint16(c.writeBuf[framePos+2:], uint16(length)) - default: - framePos += 8 - c.writeBuf[framePos] = b0 - c.writeBuf[framePos+1] = b1 | byte(length) - } - - if !c.isServer { - key := newMaskKey() - copy(c.writeBuf[maxFrameHeaderSize-4:], key[:]) - maskBytes(key, 0, c.writeBuf[maxFrameHeaderSize:c.writePos]) - if len(extra) > 0 { - c.writeErr = errors.New("websocket: internal error, extra used in client mode") - return c.writeErr - } - } - - // Write the buffers to the connection. - c.writeErr = c.write(c.writeFrameType, c.writeDeadline, c.writeBuf[framePos:c.writePos], extra) - - // Setup for next frame. - c.writePos = maxFrameHeaderSize - c.writeFrameType = continuationFrame - if final { - c.writeSeq++ - c.writeFrameType = noFrame - } - return c.writeErr -} - -type messageWriter struct { - c *Conn - seq int -} - -func (w messageWriter) err() error { - c := w.c - if c.writeSeq != w.seq { - return errWriteClosed - } - if c.writeErr != nil { - return c.writeErr - } - return nil -} - -func (w messageWriter) ncopy(max int) (int, error) { - n := len(w.c.writeBuf) - w.c.writePos - if n <= 0 { - if err := w.c.flushFrame(false, nil); err != nil { - return 0, err - } - n = len(w.c.writeBuf) - w.c.writePos - } - if n > max { - n = max - } - return n, nil -} - -func (w messageWriter) write(final bool, p []byte) (int, error) { - if err := w.err(); err != nil { - return 0, err - } - - if len(p) > 2*len(w.c.writeBuf) && w.c.isServer { - // Don't buffer large messages. - err := w.c.flushFrame(final, p) - if err != nil { - return 0, err - } - return len(p), nil - } - - nn := len(p) - for len(p) > 0 { - n, err := w.ncopy(len(p)) - if err != nil { - return 0, err - } - copy(w.c.writeBuf[w.c.writePos:], p[:n]) - w.c.writePos += n - p = p[n:] - } - return nn, nil -} - -func (w messageWriter) Write(p []byte) (int, error) { - return w.write(false, p) -} - -func (w messageWriter) WriteString(p string) (int, error) { - if err := w.err(); err != nil { - return 0, err - } - - nn := len(p) - for len(p) > 0 { - n, err := w.ncopy(len(p)) - if err != nil { - return 0, err - } - copy(w.c.writeBuf[w.c.writePos:], p[:n]) - w.c.writePos += n - p = p[n:] - } - return nn, nil -} - -func (w messageWriter) ReadFrom(r io.Reader) (nn int64, err error) { - if err := w.err(); err != nil { - return 0, err - } - for { - if w.c.writePos == len(w.c.writeBuf) { - err = w.c.flushFrame(false, nil) - if err != nil { - break - } - } - var n int - n, err = r.Read(w.c.writeBuf[w.c.writePos:]) - w.c.writePos += n - nn += int64(n) - if err != nil { - if err == io.EOF { - err = nil - } - break - } - } - return nn, err -} - -func (w messageWriter) Close() error { - if err := w.err(); err != nil { - return err - } - return w.c.flushFrame(true, nil) -} - -// WriteMessage is a helper method for getting a writer using NextWriter, -// writing the message and closing the writer. -func (c *Conn) WriteMessage(messageType int, data []byte) error { - wr, err := c.NextWriter(messageType) - if err != nil { - return err - } - w := wr.(messageWriter) - if _, err := w.write(true, data); err != nil { - return err - } - if c.writeSeq == w.seq { - if err := c.flushFrame(true, nil); err != nil { - return err - } - } - return nil -} - -// SetWriteDeadline sets the write deadline on the underlying network -// connection. After a write has timed out, the websocket state is corrupt and -// all future writes will return an error. A zero value for t means writes will -// not time out. -func (c *Conn) SetWriteDeadline(t time.Time) error { - c.writeDeadline = t - return nil -} - -// Read methods - -// readFull is like io.ReadFull except that io.EOF is never returned. -func (c *Conn) readFull(p []byte) (err error) { - var n int - for n < len(p) && err == nil { - var nn int - nn, err = c.br.Read(p[n:]) - n += nn - } - if n == len(p) { - err = nil - } else if err == io.EOF { - err = errUnexpectedEOF - } - return -} - -func (c *Conn) advanceFrame() (int, error) { - - // 1. Skip remainder of previous frame. - - if c.readRemaining > 0 { - if _, err := io.CopyN(ioutil.Discard, c.br, c.readRemaining); err != nil { - return noFrame, err - } - } - - // 2. Read and parse first two bytes of frame header. - - var b [8]byte - if err := c.readFull(b[:2]); err != nil { - return noFrame, err - } - - final := b[0]&finalBit != 0 - frameType := int(b[0] & 0xf) - reserved := int((b[0] >> 4) & 0x7) - mask := b[1]&maskBit != 0 - c.readRemaining = int64(b[1] & 0x7f) - - if reserved != 0 { - return noFrame, c.handleProtocolError("unexpected reserved bits " + strconv.Itoa(reserved)) - } - - switch frameType { - case CloseMessage, PingMessage, PongMessage: - if c.readRemaining > maxControlFramePayloadSize { - return noFrame, c.handleProtocolError("control frame length > 125") - } - if !final { - return noFrame, c.handleProtocolError("control frame not final") - } - case TextMessage, BinaryMessage: - if !c.readFinal { - return noFrame, c.handleProtocolError("message start before final message frame") - } - c.readFinal = final - case continuationFrame: - if c.readFinal { - return noFrame, c.handleProtocolError("continuation after final message frame") - } - c.readFinal = final - default: - return noFrame, c.handleProtocolError("unknown opcode " + strconv.Itoa(frameType)) - } - - // 3. Read and parse frame length. - - switch c.readRemaining { - case 126: - if err := c.readFull(b[:2]); err != nil { - return noFrame, err - } - c.readRemaining = int64(binary.BigEndian.Uint16(b[:2])) - case 127: - if err := c.readFull(b[:8]); err != nil { - return noFrame, err - } - c.readRemaining = int64(binary.BigEndian.Uint64(b[:8])) - } - - // 4. Handle frame masking. - - if mask != c.isServer { - return noFrame, c.handleProtocolError("incorrect mask flag") - } - - if mask { - c.readMaskPos = 0 - if err := c.readFull(c.readMaskKey[:]); err != nil { - return noFrame, err - } - } - - // 5. For text and binary messages, enforce read limit and return. - - if frameType == continuationFrame || frameType == TextMessage || frameType == BinaryMessage { - - c.readLength += c.readRemaining - if c.readLimit > 0 && c.readLength > c.readLimit { - c.WriteControl(CloseMessage, FormatCloseMessage(CloseMessageTooBig, ""), time.Now().Add(writeWait)) - return noFrame, ErrReadLimit - } - - return frameType, nil - } - - // 6. Read control frame payload. - - var payload []byte - if c.readRemaining > 0 { - payload = make([]byte, c.readRemaining) - c.readRemaining = 0 - if err := c.readFull(payload); err != nil { - return noFrame, err - } - if c.isServer { - maskBytes(c.readMaskKey, 0, payload) - } - } - - // 7. Process control frame payload. - - switch frameType { - case PongMessage: - if err := c.handlePong(string(payload)); err != nil { - return noFrame, err - } - case PingMessage: - if err := c.handlePing(string(payload)); err != nil { - return noFrame, err - } - case CloseMessage: - c.WriteControl(CloseMessage, []byte{}, time.Now().Add(writeWait)) - closeCode := CloseNoStatusReceived - closeText := "" - if len(payload) >= 2 { - closeCode = int(binary.BigEndian.Uint16(payload)) - closeText = string(payload[2:]) - } - return noFrame, &CloseError{Code: closeCode, Text: closeText} - } - - return frameType, nil -} - -func (c *Conn) handleProtocolError(message string) error { - c.WriteControl(CloseMessage, FormatCloseMessage(CloseProtocolError, message), time.Now().Add(writeWait)) - return errors.New("websocket: " + message) -} - -// NextReader returns the next data message received from the peer. The -// returned messageType is either TextMessage or BinaryMessage. -// -// There can be at most one open reader on a connection. NextReader discards -// the previous message if the application has not already consumed it. -// -// The NextReader method and the readers returned from the method cannot be -// accessed by more than one goroutine at a time. -func (c *Conn) NextReader() (messageType int, r io.Reader, err error) { - - c.readSeq++ - c.readLength = 0 - - for c.readErr == nil { - frameType, err := c.advanceFrame() - if err != nil { - c.readErr = hideTempErr(err) - break - } - if frameType == TextMessage || frameType == BinaryMessage { - return frameType, messageReader{c, c.readSeq}, nil - } - } - return noFrame, nil, c.readErr -} - -type messageReader struct { - c *Conn - seq int -} - -func (r messageReader) Read(b []byte) (int, error) { - - if r.seq != r.c.readSeq { - return 0, io.EOF - } - - for r.c.readErr == nil { - - if r.c.readRemaining > 0 { - if int64(len(b)) > r.c.readRemaining { - b = b[:r.c.readRemaining] - } - n, err := r.c.br.Read(b) - r.c.readErr = hideTempErr(err) - if r.c.isServer { - r.c.readMaskPos = maskBytes(r.c.readMaskKey, r.c.readMaskPos, b[:n]) - } - r.c.readRemaining -= int64(n) - return n, r.c.readErr - } - - if r.c.readFinal { - r.c.readSeq++ - return 0, io.EOF - } - - frameType, err := r.c.advanceFrame() - switch { - case err != nil: - r.c.readErr = hideTempErr(err) - case frameType == TextMessage || frameType == BinaryMessage: - r.c.readErr = errors.New("websocket: internal error, unexpected text or binary in Reader") - } - } - - err := r.c.readErr - if err == io.EOF && r.seq == r.c.readSeq { - err = errUnexpectedEOF - } - return 0, err -} - -// ReadMessage is a helper method for getting a reader using NextReader and -// reading from that reader to a buffer. -func (c *Conn) ReadMessage() (messageType int, p []byte, err error) { - var r io.Reader - messageType, r, err = c.NextReader() - if err != nil { - return messageType, nil, err - } - p, err = ioutil.ReadAll(r) - return messageType, p, err -} - -// SetReadDeadline sets the read deadline on the underlying network connection. -// After a read has timed out, the websocket connection state is corrupt and -// all future reads will return an error. A zero value for t means reads will -// not time out. -func (c *Conn) SetReadDeadline(t time.Time) error { - return c.conn.SetReadDeadline(t) -} - -// SetReadLimit sets the maximum size for a message read from the peer. If a -// message exceeds the limit, the connection sends a close frame to the peer -// and returns ErrReadLimit to the application. -func (c *Conn) SetReadLimit(limit int64) { - c.readLimit = limit -} - -// SetPingHandler sets the handler for ping messages received from the peer. -// The default ping handler sends a pong to the peer. -func (c *Conn) SetPingHandler(h func(string) error) { - if h == nil { - h = func(message string) error { - c.WriteControl(PongMessage, []byte(message), time.Now().Add(writeWait)) - return nil - } - } - c.handlePing = h -} - -// SetPongHandler sets the handler for pong messages received from the peer. -// The default pong handler does nothing. -func (c *Conn) SetPongHandler(h func(string) error) { - if h == nil { - h = func(string) error { return nil } - } - c.handlePong = h -} - -// UnderlyingConn returns the internal net.Conn. This can be used to further -// modifications to connection specific flags. -func (c *Conn) UnderlyingConn() net.Conn { - return c.conn -} - -// FormatCloseMessage formats closeCode and text as a WebSocket close message. -func FormatCloseMessage(closeCode int, text string) []byte { - buf := make([]byte, 2+len(text)) - binary.BigEndian.PutUint16(buf, uint16(closeCode)) - copy(buf[2:], text) - return buf -} diff --git a/vendor/github.com/gorilla/websocket/doc.go b/vendor/github.com/gorilla/websocket/doc.go deleted file mode 100644 index f52925d..0000000 --- a/vendor/github.com/gorilla/websocket/doc.go +++ /dev/null @@ -1,148 +0,0 @@ -// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Package websocket implements the WebSocket protocol defined in RFC 6455. -// -// Overview -// -// The Conn type represents a WebSocket connection. A server application uses -// the Upgrade function from an Upgrader object with a HTTP request handler -// to get a pointer to a Conn: -// -// var upgrader = websocket.Upgrader{ -// ReadBufferSize: 1024, -// WriteBufferSize: 1024, -// } -// -// func handler(w http.ResponseWriter, r *http.Request) { -// conn, err := upgrader.Upgrade(w, r, nil) -// if err != nil { -// log.Println(err) -// return -// } -// ... Use conn to send and receive messages. -// } -// -// Call the connection's WriteMessage and ReadMessage methods to send and -// receive messages as a slice of bytes. This snippet of code shows how to echo -// messages using these methods: -// -// for { -// messageType, p, err := conn.ReadMessage() -// if err != nil { -// return -// } -// if err = conn.WriteMessage(messageType, p); err != nil { -// return err -// } -// } -// -// In above snippet of code, p is a []byte and messageType is an int with value -// websocket.BinaryMessage or websocket.TextMessage. -// -// An application can also send and receive messages using the io.WriteCloser -// and io.Reader interfaces. To send a message, call the connection NextWriter -// method to get an io.WriteCloser, write the message to the writer and close -// the writer when done. To receive a message, call the connection NextReader -// method to get an io.Reader and read until io.EOF is returned. This snippet -// snippet shows how to echo messages using the NextWriter and NextReader -// methods: -// -// for { -// messageType, r, err := conn.NextReader() -// if err != nil { -// return -// } -// w, err := conn.NextWriter(messageType) -// if err != nil { -// return err -// } -// if _, err := io.Copy(w, r); err != nil { -// return err -// } -// if err := w.Close(); err != nil { -// return err -// } -// } -// -// Data Messages -// -// The WebSocket protocol distinguishes between text and binary data messages. -// Text messages are interpreted as UTF-8 encoded text. The interpretation of -// binary messages is left to the application. -// -// This package uses the TextMessage and BinaryMessage integer constants to -// identify the two data message types. The ReadMessage and NextReader methods -// return the type of the received message. The messageType argument to the -// WriteMessage and NextWriter methods specifies the type of a sent message. -// -// It is the application's responsibility to ensure that text messages are -// valid UTF-8 encoded text. -// -// Control Messages -// -// The WebSocket protocol defines three types of control messages: close, ping -// and pong. Call the connection WriteControl, WriteMessage or NextWriter -// methods to send a control message to the peer. -// -// Connections handle received ping and pong messages by invoking a callback -// function set with SetPingHandler and SetPongHandler methods. These callback -// functions can be invoked from the ReadMessage method, the NextReader method -// or from a call to the data message reader returned from NextReader. -// -// Connections handle received close messages by returning an error from the -// ReadMessage method, the NextReader method or from a call to the data message -// reader returned from NextReader. -// -// Concurrency -// -// Connections do not support concurrent calls to the write methods -// (NextWriter, SetWriteDeadline, WriteMessage) or concurrent calls to the read -// methods methods (NextReader, SetReadDeadline, ReadMessage). Connections do -// support a concurrent reader and writer. -// -// The Close and WriteControl methods can be called concurrently with all other -// methods. -// -// Read is Required -// -// The application must read the connection to process ping and close messages -// sent from the peer. If the application is not otherwise interested in -// messages from the peer, then the application should start a goroutine to read -// and discard messages from the peer. A simple example is: -// -// func readLoop(c *websocket.Conn) { -// for { -// if _, _, err := c.NextReader(); err != nil { -// c.Close() -// break -// } -// } -// } -// -// Origin Considerations -// -// Web browsers allow Javascript applications to open a WebSocket connection to -// any host. It's up to the server to enforce an origin policy using the Origin -// request header sent by the browser. -// -// The Upgrader calls the function specified in the CheckOrigin field to check -// the origin. If the CheckOrigin function returns false, then the Upgrade -// method fails the WebSocket handshake with HTTP status 403. -// -// If the CheckOrigin field is nil, then the Upgrader uses a safe default: fail -// the handshake if the Origin request header is present and not equal to the -// Host request header. -// -// An application can allow connections from any origin by specifying a -// function that always returns true: -// -// var upgrader = websocket.Upgrader{ -// CheckOrigin: func(r *http.Request) bool { return true }, -// } -// -// The deprecated Upgrade function does not enforce an origin policy. It's the -// application's responsibility to check the Origin header before calling -// Upgrade. -package websocket diff --git a/vendor/github.com/gorilla/websocket/json.go b/vendor/github.com/gorilla/websocket/json.go deleted file mode 100644 index 4f0e368..0000000 --- a/vendor/github.com/gorilla/websocket/json.go +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package websocket - -import ( - "encoding/json" - "io" -) - -// WriteJSON is deprecated, use c.WriteJSON instead. -func WriteJSON(c *Conn, v interface{}) error { - return c.WriteJSON(v) -} - -// WriteJSON writes the JSON encoding of v to the connection. -// -// See the documentation for encoding/json Marshal for details about the -// conversion of Go values to JSON. -func (c *Conn) WriteJSON(v interface{}) error { - w, err := c.NextWriter(TextMessage) - if err != nil { - return err - } - err1 := json.NewEncoder(w).Encode(v) - err2 := w.Close() - if err1 != nil { - return err1 - } - return err2 -} - -// ReadJSON is deprecated, use c.ReadJSON instead. -func ReadJSON(c *Conn, v interface{}) error { - return c.ReadJSON(v) -} - -// ReadJSON reads the next JSON-encoded message from the connection and stores -// it in the value pointed to by v. -// -// See the documentation for the encoding/json Unmarshal function for details -// about the conversion of JSON to a Go value. -func (c *Conn) ReadJSON(v interface{}) error { - _, r, err := c.NextReader() - if err != nil { - return err - } - err = json.NewDecoder(r).Decode(v) - if err == io.EOF { - // One value is expected in the message. - err = io.ErrUnexpectedEOF - } - return err -} diff --git a/vendor/github.com/gorilla/websocket/server.go b/vendor/github.com/gorilla/websocket/server.go deleted file mode 100644 index e56a004..0000000 --- a/vendor/github.com/gorilla/websocket/server.go +++ /dev/null @@ -1,247 +0,0 @@ -// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package websocket - -import ( - "bufio" - "errors" - "net" - "net/http" - "net/url" - "strings" - "time" -) - -// HandshakeError describes an error with the handshake from the peer. -type HandshakeError struct { - message string -} - -func (e HandshakeError) Error() string { return e.message } - -// Upgrader specifies parameters for upgrading an HTTP connection to a -// WebSocket connection. -type Upgrader struct { - // HandshakeTimeout specifies the duration for the handshake to complete. - HandshakeTimeout time.Duration - - // ReadBufferSize and WriteBufferSize specify I/O buffer sizes. If a buffer - // size is zero, then a default value of 4096 is used. The I/O buffer sizes - // do not limit the size of the messages that can be sent or received. - ReadBufferSize, WriteBufferSize int - - // Subprotocols specifies the server's supported protocols in order of - // preference. If this field is set, then the Upgrade method negotiates a - // subprotocol by selecting the first match in this list with a protocol - // requested by the client. - Subprotocols []string - - // Error specifies the function for generating HTTP error responses. If Error - // is nil, then http.Error is used to generate the HTTP response. - Error func(w http.ResponseWriter, r *http.Request, status int, reason error) - - // CheckOrigin returns true if the request Origin header is acceptable. If - // CheckOrigin is nil, the host in the Origin header must not be set or - // must match the host of the request. - CheckOrigin func(r *http.Request) bool -} - -func (u *Upgrader) returnError(w http.ResponseWriter, r *http.Request, status int, reason string) (*Conn, error) { - err := HandshakeError{reason} - if u.Error != nil { - u.Error(w, r, status, err) - } else { - http.Error(w, http.StatusText(status), status) - } - return nil, err -} - -// checkSameOrigin returns true if the origin is not set or is equal to the request host. -func checkSameOrigin(r *http.Request) bool { - origin := r.Header["Origin"] - if len(origin) == 0 { - return true - } - u, err := url.Parse(origin[0]) - if err != nil { - return false - } - return u.Host == r.Host -} - -func (u *Upgrader) selectSubprotocol(r *http.Request, responseHeader http.Header) string { - if u.Subprotocols != nil { - clientProtocols := Subprotocols(r) - for _, serverProtocol := range u.Subprotocols { - for _, clientProtocol := range clientProtocols { - if clientProtocol == serverProtocol { - return clientProtocol - } - } - } - } else if responseHeader != nil { - return responseHeader.Get("Sec-Websocket-Protocol") - } - return "" -} - -// Upgrade upgrades the HTTP server connection to the WebSocket protocol. -// -// The responseHeader is included in the response to the client's upgrade -// request. Use the responseHeader to specify cookies (Set-Cookie) and the -// application negotiated subprotocol (Sec-Websocket-Protocol). -func (u *Upgrader) Upgrade(w http.ResponseWriter, r *http.Request, responseHeader http.Header) (*Conn, error) { - if values := r.Header["Sec-Websocket-Version"]; len(values) == 0 || values[0] != "13" { - return u.returnError(w, r, http.StatusBadRequest, "websocket: version != 13") - } - - if !tokenListContainsValue(r.Header, "Connection", "upgrade") { - return u.returnError(w, r, http.StatusBadRequest, "websocket: could not find connection header with token 'upgrade'") - } - - if !tokenListContainsValue(r.Header, "Upgrade", "websocket") { - return u.returnError(w, r, http.StatusBadRequest, "websocket: could not find upgrade header with token 'websocket'") - } - - checkOrigin := u.CheckOrigin - if checkOrigin == nil { - checkOrigin = checkSameOrigin - } - if !checkOrigin(r) { - return u.returnError(w, r, http.StatusForbidden, "websocket: origin not allowed") - } - - challengeKey := r.Header.Get("Sec-Websocket-Key") - if challengeKey == "" { - return u.returnError(w, r, http.StatusBadRequest, "websocket: key missing or blank") - } - - subprotocol := u.selectSubprotocol(r, responseHeader) - - var ( - netConn net.Conn - br *bufio.Reader - err error - ) - - h, ok := w.(http.Hijacker) - if !ok { - return u.returnError(w, r, http.StatusInternalServerError, "websocket: response does not implement http.Hijacker") - } - var rw *bufio.ReadWriter - netConn, rw, err = h.Hijack() - if err != nil { - return u.returnError(w, r, http.StatusInternalServerError, err.Error()) - } - br = rw.Reader - - if br.Buffered() > 0 { - netConn.Close() - return nil, errors.New("websocket: client sent data before handshake is complete") - } - - c := newConn(netConn, true, u.ReadBufferSize, u.WriteBufferSize) - c.subprotocol = subprotocol - - p := c.writeBuf[:0] - p = append(p, "HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Accept: "...) - p = append(p, computeAcceptKey(challengeKey)...) - p = append(p, "\r\n"...) - if c.subprotocol != "" { - p = append(p, "Sec-Websocket-Protocol: "...) - p = append(p, c.subprotocol...) - p = append(p, "\r\n"...) - } - for k, vs := range responseHeader { - if k == "Sec-Websocket-Protocol" { - continue - } - for _, v := range vs { - p = append(p, k...) - p = append(p, ": "...) - for i := 0; i < len(v); i++ { - b := v[i] - if b <= 31 { - // prevent response splitting. - b = ' ' - } - p = append(p, b) - } - p = append(p, "\r\n"...) - } - } - p = append(p, "\r\n"...) - - // Clear deadlines set by HTTP server. - netConn.SetDeadline(time.Time{}) - - if u.HandshakeTimeout > 0 { - netConn.SetWriteDeadline(time.Now().Add(u.HandshakeTimeout)) - } - if _, err = netConn.Write(p); err != nil { - netConn.Close() - return nil, err - } - if u.HandshakeTimeout > 0 { - netConn.SetWriteDeadline(time.Time{}) - } - - return c, nil -} - -// Upgrade upgrades the HTTP server connection to the WebSocket protocol. -// -// This function is deprecated, use websocket.Upgrader instead. -// -// The application is responsible for checking the request origin before -// calling Upgrade. An example implementation of the same origin policy is: -// -// if req.Header.Get("Origin") != "http://"+req.Host { -// http.Error(w, "Origin not allowed", 403) -// return -// } -// -// If the endpoint supports subprotocols, then the application is responsible -// for negotiating the protocol used on the connection. Use the Subprotocols() -// function to get the subprotocols requested by the client. Use the -// Sec-Websocket-Protocol response header to specify the subprotocol selected -// by the application. -// -// The responseHeader is included in the response to the client's upgrade -// request. Use the responseHeader to specify cookies (Set-Cookie) and the -// negotiated subprotocol (Sec-Websocket-Protocol). -// -// The connection buffers IO to the underlying network connection. The -// readBufSize and writeBufSize parameters specify the size of the buffers to -// use. Messages can be larger than the buffers. -// -// If the request is not a valid WebSocket handshake, then Upgrade returns an -// error of type HandshakeError. Applications should handle this error by -// replying to the client with an HTTP error response. -func Upgrade(w http.ResponseWriter, r *http.Request, responseHeader http.Header, readBufSize, writeBufSize int) (*Conn, error) { - u := Upgrader{ReadBufferSize: readBufSize, WriteBufferSize: writeBufSize} - u.Error = func(w http.ResponseWriter, r *http.Request, status int, reason error) { - // don't return errors to maintain backwards compatibility - } - u.CheckOrigin = func(r *http.Request) bool { - // allow all connections by default - return true - } - return u.Upgrade(w, r, responseHeader) -} - -// Subprotocols returns the subprotocols requested by the client in the -// Sec-Websocket-Protocol header. -func Subprotocols(r *http.Request) []string { - h := strings.TrimSpace(r.Header.Get("Sec-Websocket-Protocol")) - if h == "" { - return nil - } - protocols := strings.Split(h, ",") - for i := range protocols { - protocols[i] = strings.TrimSpace(protocols[i]) - } - return protocols -} diff --git a/vendor/github.com/gorilla/websocket/util.go b/vendor/github.com/gorilla/websocket/util.go deleted file mode 100644 index ffdc265..0000000 --- a/vendor/github.com/gorilla/websocket/util.go +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package websocket - -import ( - "crypto/rand" - "crypto/sha1" - "encoding/base64" - "io" - "net/http" - "strings" -) - -// tokenListContainsValue returns true if the 1#token header with the given -// name contains token. -func tokenListContainsValue(header http.Header, name string, value string) bool { - for _, v := range header[name] { - for _, s := range strings.Split(v, ",") { - if strings.EqualFold(value, strings.TrimSpace(s)) { - return true - } - } - } - return false -} - -var keyGUID = []byte("258EAFA5-E914-47DA-95CA-C5AB0DC85B11") - -func computeAcceptKey(challengeKey string) string { - h := sha1.New() - h.Write([]byte(challengeKey)) - h.Write(keyGUID) - return base64.StdEncoding.EncodeToString(h.Sum(nil)) -} - -func generateChallengeKey() (string, error) { - p := make([]byte, 16) - if _, err := io.ReadFull(rand.Reader, p); err != nil { - return "", err - } - return base64.StdEncoding.EncodeToString(p), nil -} diff --git a/vendor/github.com/hashicorp/go-multierror/LICENSE b/vendor/github.com/hashicorp/go-multierror/LICENSE deleted file mode 100644 index 82b4de9..0000000 --- a/vendor/github.com/hashicorp/go-multierror/LICENSE +++ /dev/null @@ -1,353 +0,0 @@ -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. diff --git a/vendor/github.com/hashicorp/go-multierror/README.md b/vendor/github.com/hashicorp/go-multierror/README.md deleted file mode 100644 index e81be50..0000000 --- a/vendor/github.com/hashicorp/go-multierror/README.md +++ /dev/null @@ -1,91 +0,0 @@ -# go-multierror - -`go-multierror` is a package for Go that provides a mechanism for -representing a list of `error` values as a single `error`. - -This allows a function in Go to return an `error` that might actually -be a list of errors. If the caller knows this, they can unwrap the -list and access the errors. If the caller doesn't know, the error -formats to a nice human-readable format. - -`go-multierror` implements the -[errwrap](https://github.com/hashicorp/errwrap) interface so that it can -be used with that library, as well. - -## Installation and Docs - -Install using `go get github.com/hashicorp/go-multierror`. - -Full documentation is available at -http://godoc.org/github.com/hashicorp/go-multierror - -## Usage - -go-multierror is easy to use and purposely built to be unobtrusive in -existing Go applications/libraries that may not be aware of it. - -**Building a list of errors** - -The `Append` function is used to create a list of errors. This function -behaves a lot like the Go built-in `append` function: it doesn't matter -if the first argument is nil, a `multierror.Error`, or any other `error`, -the function behaves as you would expect. - -```go -var result error - -if err := step1(); err != nil { - result = multierror.Append(result, err) -} -if err := step2(); err != nil { - result = multierror.Append(result, err) -} - -return result -``` - -**Customizing the formatting of the errors** - -By specifying a custom `ErrorFormat`, you can customize the format -of the `Error() string` function: - -```go -var result *multierror.Error - -// ... accumulate errors here, maybe using Append - -if result != nil { - result.ErrorFormat = func([]error) string { - return "errors!" - } -} -``` - -**Accessing the list of errors** - -`multierror.Error` implements `error` so if the caller doesn't know about -multierror, it will work just fine. But if you're aware a multierror might -be returned, you can use type switches to access the list of errors: - -```go -if err := something(); err != nil { - if merr, ok := err.(*multierror.Error); ok { - // Use merr.Errors - } -} -``` - -**Returning a multierror only if there are errors** - -If you build a `multierror.Error`, you can use the `ErrorOrNil` function -to return an `error` implementation only if there are errors to return: - -```go -var result *multierror.Error - -// ... accumulate errors here - -// Return the `error` only if errors were added to the multierror, otherwise -// return nil since there are no errors. -return result.ErrorOrNil() -``` diff --git a/vendor/github.com/hashicorp/go-multierror/append.go b/vendor/github.com/hashicorp/go-multierror/append.go deleted file mode 100644 index 8d22ee7..0000000 --- a/vendor/github.com/hashicorp/go-multierror/append.go +++ /dev/null @@ -1,30 +0,0 @@ -package multierror - -// Append is a helper function that will append more errors -// onto an Error in order to create a larger multi-error. -// -// If err is not a multierror.Error, then it will be turned into -// one. If any of the errs are multierr.Error, they will be flattened -// one level into err. -func Append(err error, errs ...error) *Error { - switch err := err.(type) { - case *Error: - // Typed nils can reach here, so initialize if we are nil - if err == nil { - err = new(Error) - } - - err.Errors = append(err.Errors, errs...) - return err - default: - newErrs := make([]error, 0, len(errs)+1) - if err != nil { - newErrs = append(newErrs, err) - } - newErrs = append(newErrs, errs...) - - return &Error{ - Errors: newErrs, - } - } -} diff --git a/vendor/github.com/hashicorp/go-multierror/flatten.go b/vendor/github.com/hashicorp/go-multierror/flatten.go deleted file mode 100644 index aab8e9a..0000000 --- a/vendor/github.com/hashicorp/go-multierror/flatten.go +++ /dev/null @@ -1,26 +0,0 @@ -package multierror - -// Flatten flattens the given error, merging any *Errors together into -// a single *Error. -func Flatten(err error) error { - // If it isn't an *Error, just return the error as-is - if _, ok := err.(*Error); !ok { - return err - } - - // Otherwise, make the result and flatten away! - flatErr := new(Error) - flatten(err, flatErr) - return flatErr -} - -func flatten(err error, flatErr *Error) { - switch err := err.(type) { - case *Error: - for _, e := range err.Errors { - flatten(e, flatErr) - } - default: - flatErr.Errors = append(flatErr.Errors, err) - } -} diff --git a/vendor/github.com/hashicorp/go-multierror/format.go b/vendor/github.com/hashicorp/go-multierror/format.go deleted file mode 100644 index bb65a12..0000000 --- a/vendor/github.com/hashicorp/go-multierror/format.go +++ /dev/null @@ -1,23 +0,0 @@ -package multierror - -import ( - "fmt" - "strings" -) - -// ErrorFormatFunc is a function callback that is called by Error to -// turn the list of errors into a string. -type ErrorFormatFunc func([]error) string - -// ListFormatFunc is a basic formatter that outputs the number of errors -// that occurred along with a bullet point list of the errors. -func ListFormatFunc(es []error) string { - points := make([]string, len(es)) - for i, err := range es { - points[i] = fmt.Sprintf("* %s", err) - } - - return fmt.Sprintf( - "%d error(s) occurred:\n\n%s", - len(es), strings.Join(points, "\n")) -} diff --git a/vendor/github.com/hashicorp/go-multierror/multierror.go b/vendor/github.com/hashicorp/go-multierror/multierror.go deleted file mode 100644 index 2ea0827..0000000 --- a/vendor/github.com/hashicorp/go-multierror/multierror.go +++ /dev/null @@ -1,51 +0,0 @@ -package multierror - -import ( - "fmt" -) - -// Error is an error type to track multiple errors. This is used to -// accumulate errors in cases and return them as a single "error". -type Error struct { - Errors []error - ErrorFormat ErrorFormatFunc -} - -func (e *Error) Error() string { - fn := e.ErrorFormat - if fn == nil { - fn = ListFormatFunc - } - - return fn(e.Errors) -} - -// ErrorOrNil returns an error interface if this Error represents -// a list of errors, or returns nil if the list of errors is empty. This -// function is useful at the end of accumulation to make sure that the value -// returned represents the existence of errors. -func (e *Error) ErrorOrNil() error { - if e == nil { - return nil - } - if len(e.Errors) == 0 { - return nil - } - - return e -} - -func (e *Error) GoString() string { - return fmt.Sprintf("*%#v", *e) -} - -// WrappedErrors returns the list of errors that this Error is wrapping. -// It is an implementatin of the errwrap.Wrapper interface so that -// multierror.Error can be used with that library. -// -// This method is not safe to be called concurrently and is no different -// than accessing the Errors field directly. It is implementd only to -// satisfy the errwrap.Wrapper interface. -func (e *Error) WrappedErrors() []error { - return e.Errors -} diff --git a/vendor/github.com/kr/pty/.gitignore b/vendor/github.com/kr/pty/.gitignore deleted file mode 100644 index 1f0a99f..0000000 --- a/vendor/github.com/kr/pty/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -[568].out -_go* -_test* -_obj diff --git a/vendor/github.com/kr/pty/License b/vendor/github.com/kr/pty/License deleted file mode 100644 index 6b7558b..0000000 --- a/vendor/github.com/kr/pty/License +++ /dev/null @@ -1,23 +0,0 @@ -Copyright (c) 2011 Keith Rarick - -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. diff --git a/vendor/github.com/kr/pty/README.md b/vendor/github.com/kr/pty/README.md deleted file mode 100644 index 7b7900c..0000000 --- a/vendor/github.com/kr/pty/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# pty - -Pty is a Go package for using unix pseudo-terminals. - -## Install - - go get github.com/kr/pty - -## Example - -```go -package main - -import ( - "github.com/kr/pty" - "io" - "os" - "os/exec" -) - -func main() { - c := exec.Command("grep", "--color=auto", "bar") - f, err := pty.Start(c) - if err != nil { - panic(err) - } - - go func() { - f.Write([]byte("foo\n")) - f.Write([]byte("bar\n")) - f.Write([]byte("baz\n")) - f.Write([]byte{4}) // EOT - }() - io.Copy(os.Stdout, f) -} -``` diff --git a/vendor/github.com/kr/pty/doc.go b/vendor/github.com/kr/pty/doc.go deleted file mode 100644 index 190cfbe..0000000 --- a/vendor/github.com/kr/pty/doc.go +++ /dev/null @@ -1,16 +0,0 @@ -// Package pty provides functions for working with Unix terminals. -package pty - -import ( - "errors" - "os" -) - -// ErrUnsupported is returned if a function is not -// available on the current platform. -var ErrUnsupported = errors.New("unsupported") - -// Opens a pty and its corresponding tty. -func Open() (pty, tty *os.File, err error) { - return open() -} diff --git a/vendor/github.com/kr/pty/ioctl.go b/vendor/github.com/kr/pty/ioctl.go deleted file mode 100644 index 5b856e8..0000000 --- a/vendor/github.com/kr/pty/ioctl.go +++ /dev/null @@ -1,11 +0,0 @@ -package pty - -import "syscall" - -func ioctl(fd, cmd, ptr uintptr) error { - _, _, e := syscall.Syscall(syscall.SYS_IOCTL, fd, cmd, ptr) - if e != 0 { - return e - } - return nil -} diff --git a/vendor/github.com/kr/pty/ioctl_bsd.go b/vendor/github.com/kr/pty/ioctl_bsd.go deleted file mode 100644 index 73b12c5..0000000 --- a/vendor/github.com/kr/pty/ioctl_bsd.go +++ /dev/null @@ -1,39 +0,0 @@ -// +build darwin dragonfly freebsd netbsd openbsd - -package pty - -// from -const ( - _IOC_VOID uintptr = 0x20000000 - _IOC_OUT uintptr = 0x40000000 - _IOC_IN uintptr = 0x80000000 - _IOC_IN_OUT uintptr = _IOC_OUT | _IOC_IN - _IOC_DIRMASK = _IOC_VOID | _IOC_OUT | _IOC_IN - - _IOC_PARAM_SHIFT = 13 - _IOC_PARAM_MASK = (1 << _IOC_PARAM_SHIFT) - 1 -) - -func _IOC_PARM_LEN(ioctl uintptr) uintptr { - return (ioctl >> 16) & _IOC_PARAM_MASK -} - -func _IOC(inout uintptr, group byte, ioctl_num uintptr, param_len uintptr) uintptr { - return inout | (param_len&_IOC_PARAM_MASK)<<16 | uintptr(group)<<8 | ioctl_num -} - -func _IO(group byte, ioctl_num uintptr) uintptr { - return _IOC(_IOC_VOID, group, ioctl_num, 0) -} - -func _IOR(group byte, ioctl_num uintptr, param_len uintptr) uintptr { - return _IOC(_IOC_OUT, group, ioctl_num, param_len) -} - -func _IOW(group byte, ioctl_num uintptr, param_len uintptr) uintptr { - return _IOC(_IOC_IN, group, ioctl_num, param_len) -} - -func _IOWR(group byte, ioctl_num uintptr, param_len uintptr) uintptr { - return _IOC(_IOC_IN_OUT, group, ioctl_num, param_len) -} diff --git a/vendor/github.com/kr/pty/mktypes.bash b/vendor/github.com/kr/pty/mktypes.bash deleted file mode 100644 index 9952c88..0000000 --- a/vendor/github.com/kr/pty/mktypes.bash +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash - -GOOSARCH="${GOOS}_${GOARCH}" -case "$GOOSARCH" in -_* | *_ | _) - echo 'undefined $GOOS_$GOARCH:' "$GOOSARCH" 1>&2 - exit 1 - ;; -esac - -GODEFS="go tool cgo -godefs" - -$GODEFS types.go |gofmt > ztypes_$GOARCH.go - -case $GOOS in -freebsd) - $GODEFS types_$GOOS.go |gofmt > ztypes_$GOOSARCH.go - ;; -esac diff --git a/vendor/github.com/kr/pty/pty_darwin.go b/vendor/github.com/kr/pty/pty_darwin.go deleted file mode 100644 index 4f4d5ca..0000000 --- a/vendor/github.com/kr/pty/pty_darwin.go +++ /dev/null @@ -1,60 +0,0 @@ -package pty - -import ( - "errors" - "os" - "syscall" - "unsafe" -) - -func open() (pty, tty *os.File, err error) { - p, err := os.OpenFile("/dev/ptmx", os.O_RDWR, 0) - if err != nil { - return nil, nil, err - } - - sname, err := ptsname(p) - if err != nil { - return nil, nil, err - } - - err = grantpt(p) - if err != nil { - return nil, nil, err - } - - err = unlockpt(p) - if err != nil { - return nil, nil, err - } - - t, err := os.OpenFile(sname, os.O_RDWR, 0) - if err != nil { - return nil, nil, err - } - return p, t, nil -} - -func ptsname(f *os.File) (string, error) { - n := make([]byte, _IOC_PARM_LEN(syscall.TIOCPTYGNAME)) - - err := ioctl(f.Fd(), syscall.TIOCPTYGNAME, uintptr(unsafe.Pointer(&n[0]))) - if err != nil { - return "", err - } - - for i, c := range n { - if c == 0 { - return string(n[:i]), nil - } - } - return "", errors.New("TIOCPTYGNAME string not NUL-terminated") -} - -func grantpt(f *os.File) error { - return ioctl(f.Fd(), syscall.TIOCPTYGRANT, 0) -} - -func unlockpt(f *os.File) error { - return ioctl(f.Fd(), syscall.TIOCPTYUNLK, 0) -} diff --git a/vendor/github.com/kr/pty/pty_freebsd.go b/vendor/github.com/kr/pty/pty_freebsd.go deleted file mode 100644 index b341bab..0000000 --- a/vendor/github.com/kr/pty/pty_freebsd.go +++ /dev/null @@ -1,73 +0,0 @@ -package pty - -import ( - "errors" - "os" - "syscall" - "unsafe" -) - -func posix_openpt(oflag int) (fd int, err error) { - r0, _, e1 := syscall.Syscall(syscall.SYS_POSIX_OPENPT, uintptr(oflag), 0, 0) - fd = int(r0) - if e1 != 0 { - err = e1 - } - return -} - -func open() (pty, tty *os.File, err error) { - fd, err := posix_openpt(syscall.O_RDWR | syscall.O_CLOEXEC) - if err != nil { - return nil, nil, err - } - - p := os.NewFile(uintptr(fd), "/dev/pts") - sname, err := ptsname(p) - if err != nil { - return nil, nil, err - } - - t, err := os.OpenFile("/dev/"+sname, os.O_RDWR, 0) - if err != nil { - return nil, nil, err - } - return p, t, nil -} - -func isptmaster(fd uintptr) (bool, error) { - err := ioctl(fd, syscall.TIOCPTMASTER, 0) - return err == nil, err -} - -var ( - emptyFiodgnameArg fiodgnameArg - ioctl_FIODGNAME = _IOW('f', 120, unsafe.Sizeof(emptyFiodgnameArg)) -) - -func ptsname(f *os.File) (string, error) { - master, err := isptmaster(f.Fd()) - if err != nil { - return "", err - } - if !master { - return "", syscall.EINVAL - } - - const n = _C_SPECNAMELEN + 1 - var ( - buf = make([]byte, n) - arg = fiodgnameArg{Len: n, Buf: (*byte)(unsafe.Pointer(&buf[0]))} - ) - err = ioctl(f.Fd(), ioctl_FIODGNAME, uintptr(unsafe.Pointer(&arg))) - if err != nil { - return "", err - } - - for i, c := range buf { - if c == 0 { - return string(buf[:i]), nil - } - } - return "", errors.New("FIODGNAME string not NUL-terminated") -} diff --git a/vendor/github.com/kr/pty/pty_linux.go b/vendor/github.com/kr/pty/pty_linux.go deleted file mode 100644 index cb901a2..0000000 --- a/vendor/github.com/kr/pty/pty_linux.go +++ /dev/null @@ -1,46 +0,0 @@ -package pty - -import ( - "os" - "strconv" - "syscall" - "unsafe" -) - -func open() (pty, tty *os.File, err error) { - p, err := os.OpenFile("/dev/ptmx", os.O_RDWR, 0) - if err != nil { - return nil, nil, err - } - - sname, err := ptsname(p) - if err != nil { - return nil, nil, err - } - - err = unlockpt(p) - if err != nil { - return nil, nil, err - } - - t, err := os.OpenFile(sname, os.O_RDWR|syscall.O_NOCTTY, 0) - if err != nil { - return nil, nil, err - } - return p, t, nil -} - -func ptsname(f *os.File) (string, error) { - var n _C_uint - err := ioctl(f.Fd(), syscall.TIOCGPTN, uintptr(unsafe.Pointer(&n))) - if err != nil { - return "", err - } - return "/dev/pts/" + strconv.Itoa(int(n)), nil -} - -func unlockpt(f *os.File) error { - var u _C_int - // use TIOCSPTLCK with a zero valued arg to clear the slave pty lock - return ioctl(f.Fd(), syscall.TIOCSPTLCK, uintptr(unsafe.Pointer(&u))) -} diff --git a/vendor/github.com/kr/pty/pty_unsupported.go b/vendor/github.com/kr/pty/pty_unsupported.go deleted file mode 100644 index 898c730..0000000 --- a/vendor/github.com/kr/pty/pty_unsupported.go +++ /dev/null @@ -1,11 +0,0 @@ -// +build !linux,!darwin,!freebsd - -package pty - -import ( - "os" -) - -func open() (pty, tty *os.File, err error) { - return nil, nil, ErrUnsupported -} diff --git a/vendor/github.com/kr/pty/run.go b/vendor/github.com/kr/pty/run.go deleted file mode 100644 index f0678d2..0000000 --- a/vendor/github.com/kr/pty/run.go +++ /dev/null @@ -1,28 +0,0 @@ -package pty - -import ( - "os" - "os/exec" - "syscall" -) - -// Start assigns a pseudo-terminal tty os.File to c.Stdin, c.Stdout, -// and c.Stderr, calls c.Start, and returns the File of the tty's -// corresponding pty. -func Start(c *exec.Cmd) (pty *os.File, err error) { - pty, tty, err := Open() - if err != nil { - return nil, err - } - defer tty.Close() - c.Stdout = tty - c.Stdin = tty - c.Stderr = tty - c.SysProcAttr = &syscall.SysProcAttr{Setctty: true, Setsid: true} - err = c.Start() - if err != nil { - pty.Close() - return nil, err - } - return pty, err -} diff --git a/vendor/github.com/kr/pty/types.go b/vendor/github.com/kr/pty/types.go deleted file mode 100644 index 5aecb6b..0000000 --- a/vendor/github.com/kr/pty/types.go +++ /dev/null @@ -1,10 +0,0 @@ -// +build ignore - -package pty - -import "C" - -type ( - _C_int C.int - _C_uint C.uint -) diff --git a/vendor/github.com/kr/pty/types_freebsd.go b/vendor/github.com/kr/pty/types_freebsd.go deleted file mode 100644 index ce3eb95..0000000 --- a/vendor/github.com/kr/pty/types_freebsd.go +++ /dev/null @@ -1,15 +0,0 @@ -// +build ignore - -package pty - -/* -#include -#include -*/ -import "C" - -const ( - _C_SPECNAMELEN = C.SPECNAMELEN /* max length of devicename */ -) - -type fiodgnameArg C.struct_fiodgname_arg diff --git a/vendor/github.com/kr/pty/util.go b/vendor/github.com/kr/pty/util.go deleted file mode 100644 index 67c52d0..0000000 --- a/vendor/github.com/kr/pty/util.go +++ /dev/null @@ -1,35 +0,0 @@ -package pty - -import ( - "os" - "syscall" - "unsafe" -) - -// Getsize returns the number of rows (lines) and cols (positions -// in each line) in terminal t. -func Getsize(t *os.File) (rows, cols int, err error) { - var ws winsize - err = windowrect(&ws, t.Fd()) - return int(ws.ws_row), int(ws.ws_col), err -} - -type winsize struct { - ws_row uint16 - ws_col uint16 - ws_xpixel uint16 - ws_ypixel uint16 -} - -func windowrect(ws *winsize, fd uintptr) error { - _, _, errno := syscall.Syscall( - syscall.SYS_IOCTL, - fd, - syscall.TIOCGWINSZ, - uintptr(unsafe.Pointer(ws)), - ) - if errno != 0 { - return syscall.Errno(errno) - } - return nil -} diff --git a/vendor/github.com/kr/pty/ztypes_386.go b/vendor/github.com/kr/pty/ztypes_386.go deleted file mode 100644 index ff0b8fd..0000000 --- a/vendor/github.com/kr/pty/ztypes_386.go +++ /dev/null @@ -1,9 +0,0 @@ -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types.go - -package pty - -type ( - _C_int int32 - _C_uint uint32 -) diff --git a/vendor/github.com/kr/pty/ztypes_amd64.go b/vendor/github.com/kr/pty/ztypes_amd64.go deleted file mode 100644 index ff0b8fd..0000000 --- a/vendor/github.com/kr/pty/ztypes_amd64.go +++ /dev/null @@ -1,9 +0,0 @@ -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types.go - -package pty - -type ( - _C_int int32 - _C_uint uint32 -) diff --git a/vendor/github.com/kr/pty/ztypes_arm.go b/vendor/github.com/kr/pty/ztypes_arm.go deleted file mode 100644 index ff0b8fd..0000000 --- a/vendor/github.com/kr/pty/ztypes_arm.go +++ /dev/null @@ -1,9 +0,0 @@ -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types.go - -package pty - -type ( - _C_int int32 - _C_uint uint32 -) diff --git a/vendor/github.com/kr/pty/ztypes_arm64.go b/vendor/github.com/kr/pty/ztypes_arm64.go deleted file mode 100644 index 6c29a4b..0000000 --- a/vendor/github.com/kr/pty/ztypes_arm64.go +++ /dev/null @@ -1,11 +0,0 @@ -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types.go - -// +build arm64 - -package pty - -type ( - _C_int int32 - _C_uint uint32 -) diff --git a/vendor/github.com/kr/pty/ztypes_freebsd_386.go b/vendor/github.com/kr/pty/ztypes_freebsd_386.go deleted file mode 100644 index d997537..0000000 --- a/vendor/github.com/kr/pty/ztypes_freebsd_386.go +++ /dev/null @@ -1,13 +0,0 @@ -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types_freebsd.go - -package pty - -const ( - _C_SPECNAMELEN = 0x3f -) - -type fiodgnameArg struct { - Len int32 - Buf *byte -} diff --git a/vendor/github.com/kr/pty/ztypes_freebsd_amd64.go b/vendor/github.com/kr/pty/ztypes_freebsd_amd64.go deleted file mode 100644 index 5fa102f..0000000 --- a/vendor/github.com/kr/pty/ztypes_freebsd_amd64.go +++ /dev/null @@ -1,14 +0,0 @@ -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types_freebsd.go - -package pty - -const ( - _C_SPECNAMELEN = 0x3f -) - -type fiodgnameArg struct { - Len int32 - Pad_cgo_0 [4]byte - Buf *byte -} diff --git a/vendor/github.com/kr/pty/ztypes_freebsd_arm.go b/vendor/github.com/kr/pty/ztypes_freebsd_arm.go deleted file mode 100644 index d997537..0000000 --- a/vendor/github.com/kr/pty/ztypes_freebsd_arm.go +++ /dev/null @@ -1,13 +0,0 @@ -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types_freebsd.go - -package pty - -const ( - _C_SPECNAMELEN = 0x3f -) - -type fiodgnameArg struct { - Len int32 - Buf *byte -} diff --git a/vendor/github.com/kr/pty/ztypes_ppc64.go b/vendor/github.com/kr/pty/ztypes_ppc64.go deleted file mode 100644 index 4e1af84..0000000 --- a/vendor/github.com/kr/pty/ztypes_ppc64.go +++ /dev/null @@ -1,11 +0,0 @@ -// +build ppc64 - -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types.go - -package pty - -type ( - _C_int int32 - _C_uint uint32 -) diff --git a/vendor/github.com/kr/pty/ztypes_ppc64le.go b/vendor/github.com/kr/pty/ztypes_ppc64le.go deleted file mode 100644 index e6780f4..0000000 --- a/vendor/github.com/kr/pty/ztypes_ppc64le.go +++ /dev/null @@ -1,11 +0,0 @@ -// +build ppc64le - -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types.go - -package pty - -type ( - _C_int int32 - _C_uint uint32 -) diff --git a/vendor/github.com/kr/pty/ztypes_s390x.go b/vendor/github.com/kr/pty/ztypes_s390x.go deleted file mode 100644 index a7452b6..0000000 --- a/vendor/github.com/kr/pty/ztypes_s390x.go +++ /dev/null @@ -1,11 +0,0 @@ -// +build s390x - -// Created by cgo -godefs - DO NOT EDIT -// cgo -godefs types.go - -package pty - -type ( - _C_int int32 - _C_uint uint32 -) diff --git a/vendor/github.com/pkg/errors/.gitignore b/vendor/github.com/pkg/errors/.gitignore deleted file mode 100644 index daf913b..0000000 --- a/vendor/github.com/pkg/errors/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# Compiled Object files, Static and Dynamic libs (Shared Objects) -*.o -*.a -*.so - -# Folders -_obj -_test - -# Architecture specific extensions/prefixes -*.[568vq] -[568vq].out - -*.cgo1.go -*.cgo2.c -_cgo_defun.c -_cgo_gotypes.go -_cgo_export.* - -_testmain.go - -*.exe -*.test -*.prof diff --git a/vendor/github.com/pkg/errors/.travis.yml b/vendor/github.com/pkg/errors/.travis.yml deleted file mode 100644 index 567ccdb..0000000 --- a/vendor/github.com/pkg/errors/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -language: go -go_import_path: github.com/pkg/errors -go: - - 1.4.3 - - 1.5.4 - - 1.6.3 - - 1.7.3 - - tip - -script: - - go test -v ./... diff --git a/vendor/github.com/pkg/errors/LICENSE b/vendor/github.com/pkg/errors/LICENSE deleted file mode 100644 index 835ba3e..0000000 --- a/vendor/github.com/pkg/errors/LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -Copyright (c) 2015, Dave Cheney -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/github.com/pkg/errors/README.md b/vendor/github.com/pkg/errors/README.md deleted file mode 100644 index 273db3c..0000000 --- a/vendor/github.com/pkg/errors/README.md +++ /dev/null @@ -1,52 +0,0 @@ -# errors [![Travis-CI](https://travis-ci.org/pkg/errors.svg)](https://travis-ci.org/pkg/errors) [![AppVeyor](https://ci.appveyor.com/api/projects/status/b98mptawhudj53ep/branch/master?svg=true)](https://ci.appveyor.com/project/davecheney/errors/branch/master) [![GoDoc](https://godoc.org/github.com/pkg/errors?status.svg)](http://godoc.org/github.com/pkg/errors) [![Report card](https://goreportcard.com/badge/github.com/pkg/errors)](https://goreportcard.com/report/github.com/pkg/errors) - -Package errors provides simple error handling primitives. - -`go get github.com/pkg/errors` - -The traditional error handling idiom in Go is roughly akin to -```go -if err != nil { - return err -} -``` -which applied recursively up the call stack results in error reports without context or debugging information. The errors package allows programmers to add context to the failure path in their code in a way that does not destroy the original value of the error. - -## Adding context to an error - -The errors.Wrap function returns a new error that adds context to the original error. For example -```go -_, err := ioutil.ReadAll(r) -if err != nil { - return errors.Wrap(err, "read failed") -} -``` -## Retrieving the cause of an error - -Using `errors.Wrap` constructs a stack of errors, adding context to the preceding error. Depending on the nature of the error it may be necessary to reverse the operation of errors.Wrap to retrieve the original error for inspection. Any error value which implements this interface can be inspected by `errors.Cause`. -```go -type causer interface { - Cause() error -} -``` -`errors.Cause` will recursively retrieve the topmost error which does not implement `causer`, which is assumed to be the original cause. For example: -```go -switch err := errors.Cause(err).(type) { -case *MyError: - // handle specifically -default: - // unknown error -} -``` - -[Read the package documentation for more information](https://godoc.org/github.com/pkg/errors). - -## Contributing - -We welcome pull requests, bug fixes and issue reports. With that said, the bar for adding new symbols to this package is intentionally set high. - -Before proposing a change, please discuss your change by raising an issue. - -## Licence - -BSD-2-Clause diff --git a/vendor/github.com/pkg/errors/appveyor.yml b/vendor/github.com/pkg/errors/appveyor.yml deleted file mode 100644 index a932ead..0000000 --- a/vendor/github.com/pkg/errors/appveyor.yml +++ /dev/null @@ -1,32 +0,0 @@ -version: build-{build}.{branch} - -clone_folder: C:\gopath\src\github.com\pkg\errors -shallow_clone: true # for startup speed - -environment: - GOPATH: C:\gopath - -platform: - - x64 - -# http://www.appveyor.com/docs/installed-software -install: - # some helpful output for debugging builds - - go version - - go env - # pre-installed MinGW at C:\MinGW is 32bit only - # but MSYS2 at C:\msys64 has mingw64 - - set PATH=C:\msys64\mingw64\bin;%PATH% - - gcc --version - - g++ --version - -build_script: - - go install -v ./... - -test_script: - - set PATH=C:\gopath\bin;%PATH% - - go test -v ./... - -#artifacts: -# - path: '%GOPATH%\bin\*.exe' -deploy: off diff --git a/vendor/github.com/pkg/errors/errors.go b/vendor/github.com/pkg/errors/errors.go deleted file mode 100644 index 842ee80..0000000 --- a/vendor/github.com/pkg/errors/errors.go +++ /dev/null @@ -1,269 +0,0 @@ -// Package errors provides simple error handling primitives. -// -// The traditional error handling idiom in Go is roughly akin to -// -// if err != nil { -// return err -// } -// -// which applied recursively up the call stack results in error reports -// without context or debugging information. The errors package allows -// programmers to add context to the failure path in their code in a way -// that does not destroy the original value of the error. -// -// Adding context to an error -// -// The errors.Wrap function returns a new error that adds context to the -// original error by recording a stack trace at the point Wrap is called, -// and the supplied message. For example -// -// _, err := ioutil.ReadAll(r) -// if err != nil { -// return errors.Wrap(err, "read failed") -// } -// -// If additional control is required the errors.WithStack and errors.WithMessage -// functions destructure errors.Wrap into its component operations of annotating -// an error with a stack trace and an a message, respectively. -// -// Retrieving the cause of an error -// -// Using errors.Wrap constructs a stack of errors, adding context to the -// preceding error. Depending on the nature of the error it may be necessary -// to reverse the operation of errors.Wrap to retrieve the original error -// for inspection. Any error value which implements this interface -// -// type causer interface { -// Cause() error -// } -// -// can be inspected by errors.Cause. errors.Cause will recursively retrieve -// the topmost error which does not implement causer, which is assumed to be -// the original cause. For example: -// -// switch err := errors.Cause(err).(type) { -// case *MyError: -// // handle specifically -// default: -// // unknown error -// } -// -// causer interface is not exported by this package, but is considered a part -// of stable public API. -// -// Formatted printing of errors -// -// All error values returned from this package implement fmt.Formatter and can -// be formatted by the fmt package. The following verbs are supported -// -// %s print the error. If the error has a Cause it will be -// printed recursively -// %v see %s -// %+v extended format. Each Frame of the error's StackTrace will -// be printed in detail. -// -// Retrieving the stack trace of an error or wrapper -// -// New, Errorf, Wrap, and Wrapf record a stack trace at the point they are -// invoked. This information can be retrieved with the following interface. -// -// type stackTracer interface { -// StackTrace() errors.StackTrace -// } -// -// Where errors.StackTrace is defined as -// -// type StackTrace []Frame -// -// The Frame type represents a call site in the stack trace. Frame supports -// the fmt.Formatter interface that can be used for printing information about -// the stack trace of this error. For example: -// -// if err, ok := err.(stackTracer); ok { -// for _, f := range err.StackTrace() { -// fmt.Printf("%+s:%d", f) -// } -// } -// -// stackTracer interface is not exported by this package, but is considered a part -// of stable public API. -// -// See the documentation for Frame.Format for more details. -package errors - -import ( - "fmt" - "io" -) - -// New returns an error with the supplied message. -// New also records the stack trace at the point it was called. -func New(message string) error { - return &fundamental{ - msg: message, - stack: callers(), - } -} - -// Errorf formats according to a format specifier and returns the string -// as a value that satisfies error. -// Errorf also records the stack trace at the point it was called. -func Errorf(format string, args ...interface{}) error { - return &fundamental{ - msg: fmt.Sprintf(format, args...), - stack: callers(), - } -} - -// fundamental is an error that has a message and a stack, but no caller. -type fundamental struct { - msg string - *stack -} - -func (f *fundamental) Error() string { return f.msg } - -func (f *fundamental) Format(s fmt.State, verb rune) { - switch verb { - case 'v': - if s.Flag('+') { - io.WriteString(s, f.msg) - f.stack.Format(s, verb) - return - } - fallthrough - case 's': - io.WriteString(s, f.msg) - case 'q': - fmt.Fprintf(s, "%q", f.msg) - } -} - -// WithStack annotates err with a stack trace at the point WithStack was called. -// If err is nil, WithStack returns nil. -func WithStack(err error) error { - if err == nil { - return nil - } - return &withStack{ - err, - callers(), - } -} - -type withStack struct { - error - *stack -} - -func (w *withStack) Cause() error { return w.error } - -func (w *withStack) Format(s fmt.State, verb rune) { - switch verb { - case 'v': - if s.Flag('+') { - fmt.Fprintf(s, "%+v", w.Cause()) - w.stack.Format(s, verb) - return - } - fallthrough - case 's': - io.WriteString(s, w.Error()) - case 'q': - fmt.Fprintf(s, "%q", w.Error()) - } -} - -// Wrap returns an error annotating err with a stack trace -// at the point Wrap is called, and the supplied message. -// If err is nil, Wrap returns nil. -func Wrap(err error, message string) error { - if err == nil { - return nil - } - err = &withMessage{ - cause: err, - msg: message, - } - return &withStack{ - err, - callers(), - } -} - -// Wrapf returns an error annotating err with a stack trace -// at the point Wrapf is call, and the format specifier. -// If err is nil, Wrapf returns nil. -func Wrapf(err error, format string, args ...interface{}) error { - if err == nil { - return nil - } - err = &withMessage{ - cause: err, - msg: fmt.Sprintf(format, args...), - } - return &withStack{ - err, - callers(), - } -} - -// WithMessage annotates err with a new message. -// If err is nil, WithMessage returns nil. -func WithMessage(err error, message string) error { - if err == nil { - return nil - } - return &withMessage{ - cause: err, - msg: message, - } -} - -type withMessage struct { - cause error - msg string -} - -func (w *withMessage) Error() string { return w.msg + ": " + w.cause.Error() } -func (w *withMessage) Cause() error { return w.cause } - -func (w *withMessage) Format(s fmt.State, verb rune) { - switch verb { - case 'v': - if s.Flag('+') { - fmt.Fprintf(s, "%+v\n", w.Cause()) - io.WriteString(s, w.msg) - return - } - fallthrough - case 's', 'q': - io.WriteString(s, w.Error()) - } -} - -// Cause returns the underlying cause of the error, if possible. -// An error value has a cause if it implements the following -// interface: -// -// type causer interface { -// Cause() error -// } -// -// If the error does not implement Cause, the original error will -// be returned. If the error is nil, nil will be returned without further -// investigation. -func Cause(err error) error { - type causer interface { - Cause() error - } - - for err != nil { - cause, ok := err.(causer) - if !ok { - break - } - err = cause.Cause() - } - return err -} diff --git a/vendor/github.com/pkg/errors/stack.go b/vendor/github.com/pkg/errors/stack.go deleted file mode 100644 index 6b1f289..0000000 --- a/vendor/github.com/pkg/errors/stack.go +++ /dev/null @@ -1,178 +0,0 @@ -package errors - -import ( - "fmt" - "io" - "path" - "runtime" - "strings" -) - -// Frame represents a program counter inside a stack frame. -type Frame uintptr - -// pc returns the program counter for this frame; -// multiple frames may have the same PC value. -func (f Frame) pc() uintptr { return uintptr(f) - 1 } - -// file returns the full path to the file that contains the -// function for this Frame's pc. -func (f Frame) file() string { - fn := runtime.FuncForPC(f.pc()) - if fn == nil { - return "unknown" - } - file, _ := fn.FileLine(f.pc()) - return file -} - -// line returns the line number of source code of the -// function for this Frame's pc. -func (f Frame) line() int { - fn := runtime.FuncForPC(f.pc()) - if fn == nil { - return 0 - } - _, line := fn.FileLine(f.pc()) - return line -} - -// Format formats the frame according to the fmt.Formatter interface. -// -// %s source file -// %d source line -// %n function name -// %v equivalent to %s:%d -// -// Format accepts flags that alter the printing of some verbs, as follows: -// -// %+s path of source file relative to the compile time GOPATH -// %+v equivalent to %+s:%d -func (f Frame) Format(s fmt.State, verb rune) { - switch verb { - case 's': - switch { - case s.Flag('+'): - pc := f.pc() - fn := runtime.FuncForPC(pc) - if fn == nil { - io.WriteString(s, "unknown") - } else { - file, _ := fn.FileLine(pc) - fmt.Fprintf(s, "%s\n\t%s", fn.Name(), file) - } - default: - io.WriteString(s, path.Base(f.file())) - } - case 'd': - fmt.Fprintf(s, "%d", f.line()) - case 'n': - name := runtime.FuncForPC(f.pc()).Name() - io.WriteString(s, funcname(name)) - case 'v': - f.Format(s, 's') - io.WriteString(s, ":") - f.Format(s, 'd') - } -} - -// StackTrace is stack of Frames from innermost (newest) to outermost (oldest). -type StackTrace []Frame - -func (st StackTrace) Format(s fmt.State, verb rune) { - switch verb { - case 'v': - switch { - case s.Flag('+'): - for _, f := range st { - fmt.Fprintf(s, "\n%+v", f) - } - case s.Flag('#'): - fmt.Fprintf(s, "%#v", []Frame(st)) - default: - fmt.Fprintf(s, "%v", []Frame(st)) - } - case 's': - fmt.Fprintf(s, "%s", []Frame(st)) - } -} - -// stack represents a stack of program counters. -type stack []uintptr - -func (s *stack) Format(st fmt.State, verb rune) { - switch verb { - case 'v': - switch { - case st.Flag('+'): - for _, pc := range *s { - f := Frame(pc) - fmt.Fprintf(st, "\n%+v", f) - } - } - } -} - -func (s *stack) StackTrace() StackTrace { - f := make([]Frame, len(*s)) - for i := 0; i < len(f); i++ { - f[i] = Frame((*s)[i]) - } - return f -} - -func callers() *stack { - const depth = 32 - var pcs [depth]uintptr - n := runtime.Callers(3, pcs[:]) - var st stack = pcs[0:n] - return &st -} - -// funcname removes the path prefix component of a function's name reported by func.Name(). -func funcname(name string) string { - i := strings.LastIndex(name, "/") - name = name[i+1:] - i = strings.Index(name, ".") - return name[i+1:] -} - -func trimGOPATH(name, file string) string { - // Here we want to get the source file path relative to the compile time - // GOPATH. As of Go 1.6.x there is no direct way to know the compiled - // GOPATH at runtime, but we can infer the number of path segments in the - // GOPATH. We note that fn.Name() returns the function name qualified by - // the import path, which does not include the GOPATH. Thus we can trim - // segments from the beginning of the file path until the number of path - // separators remaining is one more than the number of path separators in - // the function name. For example, given: - // - // GOPATH /home/user - // file /home/user/src/pkg/sub/file.go - // fn.Name() pkg/sub.Type.Method - // - // We want to produce: - // - // pkg/sub/file.go - // - // From this we can easily see that fn.Name() has one less path separator - // than our desired output. We count separators from the end of the file - // path until it finds two more than in the function name and then move - // one character forward to preserve the initial path segment without a - // leading separator. - const sep = "/" - goal := strings.Count(name, sep) + 2 - i := len(file) - for n := 0; n < goal; n++ { - i = strings.LastIndex(file[:i], sep) - if i == -1 { - // not enough separators found, set i so that the slice expression - // below leaves file unmodified - i = -len(sep) - break - } - } - // get back to 0 or trim the leading separator - file = file[i+len(sep):] - return file -} diff --git a/vendor/github.com/yudai/hcl/.gitignore b/vendor/github.com/yudai/hcl/.gitignore deleted file mode 100644 index e8acb0a..0000000 --- a/vendor/github.com/yudai/hcl/.gitignore +++ /dev/null @@ -1 +0,0 @@ -y.output diff --git a/vendor/github.com/yudai/hcl/LICENSE b/vendor/github.com/yudai/hcl/LICENSE deleted file mode 100644 index c33dcc7..0000000 --- a/vendor/github.com/yudai/hcl/LICENSE +++ /dev/null @@ -1,354 +0,0 @@ -Mozilla Public License, version 2.0 - -1. Definitions - -1.1. “Contributor” - - means each individual or legal entity that creates, contributes to the - creation of, or owns Covered Software. - -1.2. “Contributor Version” - - means the combination of the Contributions of others (if any) used by a - Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - - means Covered Software of a particular Contributor. - -1.4. “Covered Software” - - means Source Code Form to which the initial Contributor has attached the - notice in Exhibit A, the Executable Form of such Source Code Form, and - Modifications of such Source Code Form, in each case including portions - thereof. - -1.5. “Incompatible With Secondary Licenses” - means - - a. that the initial Contributor has attached the notice described in - Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version - 1.1 or earlier of the License, but not also under the terms of a - Secondary License. - -1.6. “Executable Form” - - means any form of the work other than Source Code Form. - -1.7. “Larger Work” - - means a work that combines Covered Software with other material, in a separate - file or files, that is not Covered Software. - -1.8. “License” - - means this document. - -1.9. “Licensable” - - means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently, any and all of the rights conveyed by - this License. - -1.10. “Modifications” - - means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion - from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - - means any patent claim(s), including without limitation, method, process, - and apparatus claims, in any patent Licensable by such Contributor that - would be infringed, but for the grant of the License, by the making, - using, selling, offering for sale, having made, import, or transfer of - either its Contributions or its Contributor Version. - -1.12. “Secondary License” - - means either the GNU General Public License, Version 2.0, the GNU Lesser - General Public License, Version 2.1, the GNU Affero General Public - License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - - means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - - means an individual or a legal entity exercising rights under this - License. For legal entities, “You” includes any entity that controls, is - controlled by, or is under common control with You. For purposes of this - definition, “control” means (a) the power, direct or indirect, to cause - the direction or management of such entity, whether by contract or - otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - - -2. License Grants and Conditions - -2.1. Grants - - Each Contributor hereby grants You a world-wide, royalty-free, - non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or as - part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for - sale, have made, import, and otherwise transfer either its Contributions - or its Contributor Version. - -2.2. Effective Date - - The licenses granted in Section 2.1 with respect to any Contribution become - effective for each Contribution on the date the Contributor first distributes - such Contribution. - -2.3. Limitations on Grant Scope - - The licenses granted in this Section 2 are the only rights granted under this - License. No additional rights or licenses will be implied from the distribution - or licensing of Covered Software under this License. Notwithstanding Section - 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its - Contributions. - - This License does not grant any rights in the trademarks, service marks, or - logos of any Contributor (except as may be necessary to comply with the - notice requirements in Section 3.4). - -2.4. Subsequent Licenses - - No Contributor makes additional grants as a result of Your choice to - distribute the Covered Software under a subsequent version of this License - (see Section 10.2) or under the terms of a Secondary License (if permitted - under the terms of Section 3.3). - -2.5. Representation - - Each Contributor represents that the Contributor believes its Contributions - are its original creation(s) or it has sufficient rights to grant the - rights to its Contributions conveyed by this License. - -2.6. Fair Use - - This License is not intended to limit any rights You have under applicable - copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - - Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in - Section 2.1. - - -3. Responsibilities - -3.1. Distribution of Source Form - - All distribution of Covered Software in Source Code Form, including any - Modifications that You create or to which You contribute, must be under the - terms of this License. You must inform recipients that the Source Code Form - of the Covered Software is governed by the terms of this License, and how - they can obtain a copy of this License. You may not attempt to alter or - restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - - If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, - as described in Section 3.1, and You must inform recipients of the - Executable Form how they can obtain a copy of such Source Code Form by - reasonable means in a timely manner, at a charge no more than the cost - of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, - or sublicense it under different terms, provided that the license for - the Executable Form does not attempt to limit or alter the recipients’ - rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - - You may create and distribute a Larger Work under terms of Your choice, - provided that You also comply with the requirements of this License for the - Covered Software. If the Larger Work is a combination of Covered Software - with a work governed by one or more Secondary Licenses, and the Covered - Software is not Incompatible With Secondary Licenses, this License permits - You to additionally distribute such Covered Software under the terms of - such Secondary License(s), so that the recipient of the Larger Work may, at - their option, further distribute the Covered Software under the terms of - either this License or such Secondary License(s). - -3.4. Notices - - You may not remove or alter the substance of any license notices (including - copyright notices, patent notices, disclaimers of warranty, or limitations - of liability) contained within the Source Code Form of the Covered - Software, except that You may alter any license notices to the extent - required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - - You may choose to offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more recipients of Covered - Software. However, You may do so only on Your own behalf, and not on behalf - of any Contributor. You must make it absolutely clear that any such - warranty, support, indemnity, or liability obligation is offered by You - alone, and You hereby agree to indemnify every Contributor for any - liability incurred by such Contributor as a result of warranty, support, - indemnity or liability terms You offer. You may include additional - disclaimers of warranty and limitations of liability specific to any - jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - - If it is impossible for You to comply with any of the terms of this License - with respect to some or all of the Covered Software due to statute, judicial - order, or regulation then You must: (a) comply with the terms of this License - to the maximum extent possible; and (b) describe the limitations and the code - they affect. Such description must be placed in a text file included with all - distributions of the Covered Software under this License. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You - fail to comply with any of its terms. However, if You become compliant, - then the rights granted under this License from a particular Contributor - are reinstated (a) provisionally, unless and until such Contributor - explicitly and finally terminates Your grants, and (b) on an ongoing basis, - if such Contributor fails to notify You of the non-compliance by some - reasonable means prior to 60 days after You have come back into compliance. - Moreover, Your grants from a particular Contributor are reinstated on an - ongoing basis if such Contributor notifies You of the non-compliance by - some reasonable means, this is the first time You have received notice of - non-compliance with this License from such Contributor, and You become - compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent - infringement claim (excluding declaratory judgment actions, counter-claims, - and cross-claims) alleging that a Contributor Version directly or - indirectly infringes any patent, then the rights granted to You by any and - all Contributors for the Covered Software under Section 2.1 of this License - shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user - license agreements (excluding distributors and resellers) which have been - validly granted by You or Your distributors under this License prior to - termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without - warranty of any kind, either expressed, implied, or statutory, including, - without limitation, warranties that the Covered Software is free of defects, - merchantable, fit for a particular purpose or non-infringing. The entire - risk as to the quality and performance of the Covered Software is with You. - Should any Covered Software prove defective in any respect, You (not any - Contributor) assume the cost of any necessary servicing, repair, or - correction. This disclaimer of warranty constitutes an essential part of this - License. No use of any Covered Software is authorized under this License - except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including - negligence), contract, or otherwise, shall any Contributor, or anyone who - distributes Covered Software as permitted above, be liable to You for any - direct, indirect, special, incidental, or consequential damages of any - character including, without limitation, damages for lost profits, loss of - goodwill, work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses, even if such party shall have been - informed of the possibility of such damages. This limitation of liability - shall not apply to liability for death or personal injury resulting from such - party’s negligence to the extent applicable law prohibits such limitation. - Some jurisdictions do not allow the exclusion or limitation of incidental or - consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - - Any litigation relating to this License may be brought only in the courts of - a jurisdiction where the defendant maintains its principal place of business - and such litigation shall be governed by laws of that jurisdiction, without - reference to its conflict-of-law provisions. Nothing in this Section shall - prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - - This License represents the complete agreement concerning the subject matter - hereof. If any provision of this License is held to be unenforceable, such - provision shall be reformed only to the extent necessary to make it - enforceable. Any law or regulation which provides that the language of a - contract shall be construed against the drafter shall not be used to construe - this License against a Contributor. - - -10. Versions of the License - -10.1. New Versions - - Mozilla Foundation is the license steward. Except as provided in Section - 10.3, no one other than the license steward has the right to modify or - publish new versions of this License. Each version will be given a - distinguishing version number. - -10.2. Effect of New Versions - - You may distribute the Covered Software under the terms of the version of - the License under which You originally received the Covered Software, or - under the terms of any subsequent version published by the license - steward. - -10.3. Modified Versions - - If you create software not governed by this License, and you want to - create a new license for such software, you may create and use a modified - version of this License if you rename the license and remove any - references to the name of the license steward (except to note that such - modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - If You choose to distribute Source Code Form that is Incompatible With - Secondary Licenses under the terms of this version of the License, the - notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the - terms of the Mozilla Public License, v. - 2.0. If a copy of the MPL was not - distributed with this file, You can - obtain one at - http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then -You may include the notice in a location (such as a LICENSE file in a relevant -directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible - With Secondary Licenses”, as defined by - the Mozilla Public License, v. 2.0. - diff --git a/vendor/github.com/yudai/hcl/Makefile b/vendor/github.com/yudai/hcl/Makefile deleted file mode 100644 index ad404a8..0000000 --- a/vendor/github.com/yudai/hcl/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -TEST?=./... - -default: test - -fmt: generate - go fmt ./... - -test: generate - go test $(TEST) $(TESTARGS) - -generate: - go generate ./... - -updatedeps: - go get -u golang.org/x/tools/cmd/stringer - -.PHONY: default generate test updatedeps diff --git a/vendor/github.com/yudai/hcl/README.md b/vendor/github.com/yudai/hcl/README.md deleted file mode 100644 index c69d17e..0000000 --- a/vendor/github.com/yudai/hcl/README.md +++ /dev/null @@ -1,84 +0,0 @@ -# HCL - -HCL (HashiCorp Configuration Language) is a configuration language built -by HashiCorp. The goal of HCL is to build a structured configuration language -that is both human and machine friendly for use with command-line tools, but -specifically targeted towards DevOps tools, servers, etc. - -HCL is also fully JSON compatible. That is, JSON can be used as completely -valid input to a system expecting HCL. This helps makes systems -interoperable with other systems. - -HCL is heavily inspired by -[libucl](https://github.com/vstakhov/libucl), -nginx configuration, and others similar. - -## Why? - -A common question when viewing HCL is to ask the question: why not -JSON, YAML, etc.? - -Prior to HCL, the tools we built at [HashiCorp](http://www.hashicorp.com) -used a variety of configuration languages from full programming languages -such as Ruby to complete data structure languages such as JSON. What we -learned is that some people wanted human-friendly configuration languages -and some people wanted machine-friendly languages. - -JSON fits a nice balance in this, but is fairly verbose and most -importantly doesn't support comments. With YAML, we found that beginners -had a really hard time determining what the actual structure was, and -ended up guessing more than not whether to use a hyphen, colon, etc. -in order to represent some configuration key. - -Full programming languages such as Ruby enable complex behavior -a configuration language shouldn't usually allow, and also forces -people to learn some set of Ruby. - -Because of this, we decided to create our own configuration language -that is JSON-compatible. Our configuration language (HCL) is designed -to be written and modified by humans. The API for HCL allows JSON -as an input so that it is also machine-friendly (machines can generate -JSON instead of trying to generate HCL). - -Our goal with HCL is not to alienate other configuration languages. -It is instead to provide HCL as a specialized language for our tools, -and JSON as the interoperability layer. - -## Syntax - -The complete grammar -[can be found here](https://github.com/hashicorp/hcl/blob/master/hcl/parse.y), -if you're more comfortable reading specifics, but a high-level overview -of the syntax and grammar are listed here. - - * Single line comments start with `#` or `//` - - * Multi-line comments are wrapped in `/*` and `*/`. Nested block comments - are not allowed. A multi-line comment (also known as a block comment) - terminates at the first `*/` found. - - * Values are assigned with the syntax `key = value` (whitespace doesn't - matter). The value can be any primitive: a string, number, boolean, - object, or list. - - * Strings are double-quoted and can contain any UTF-8 characters. - Example: `"Hello, World"` - - * Numbers are assumed to be base 10. If you prefix a number with 0x, - it is treated as a hexadecimal. If it is prefixed with 0, it is - treated as an octal. Numbers can be in scientific notation: "1e10". - - * Boolean values: `true`, `false` - - * Arrays can be made by wrapping it in `[]`. Example: - `["foo", "bar", 42]`. Arrays can contain primitives - and other arrays, but cannot contain objects. Objects must - use the block syntax shown below. - -Objects and nested objects are created using the structure shown below: - -``` -variable "ami" { - description = "the AMI to use" -} -``` diff --git a/vendor/github.com/yudai/hcl/decoder.go b/vendor/github.com/yudai/hcl/decoder.go deleted file mode 100644 index 72f14c6..0000000 --- a/vendor/github.com/yudai/hcl/decoder.go +++ /dev/null @@ -1,490 +0,0 @@ -package hcl - -import ( - "errors" - "fmt" - "reflect" - "sort" - "strconv" - "strings" - - "github.com/yudai/hcl/hcl" -) - -// This is the tag to use with structures to have settings for HCL -const tagName = "hcl" - -// Decode reads the given input and decodes it into the structure -// given by `out`. -func Decode(out interface{}, in string) error { - obj, err := Parse(in) - if err != nil { - return err - } - - return DecodeObject(out, obj) -} - -// DecodeObject is a lower-level version of Decode. It decodes a -// raw Object into the given output. -func DecodeObject(out interface{}, n *hcl.Object) error { - val := reflect.ValueOf(out) - if val.Kind() != reflect.Ptr { - return errors.New("result must be a pointer") - } - - var d decoder - return d.decode("root", n, val.Elem()) -} - -type decoder struct { - stack []reflect.Kind -} - -func (d *decoder) decode(name string, o *hcl.Object, result reflect.Value) error { - k := result - - // If we have an interface with a valid value, we use that - // for the check. - if result.Kind() == reflect.Interface { - elem := result.Elem() - if elem.IsValid() { - k = elem - } - } - - // Push current onto stack unless it is an interface. - if k.Kind() != reflect.Interface { - d.stack = append(d.stack, k.Kind()) - - // Schedule a pop - defer func() { - d.stack = d.stack[:len(d.stack)-1] - }() - } - - switch k.Kind() { - case reflect.Bool: - return d.decodeBool(name, o, result) - case reflect.Float64: - return d.decodeFloat(name, o, result) - case reflect.Int: - return d.decodeInt(name, o, result) - case reflect.Interface: - // When we see an interface, we make our own thing - return d.decodeInterface(name, o, result) - case reflect.Map: - return d.decodeMap(name, o, result) - case reflect.Ptr: - return d.decodePtr(name, o, result) - case reflect.Slice: - return d.decodeSlice(name, o, result) - case reflect.String: - return d.decodeString(name, o, result) - case reflect.Struct: - return d.decodeStruct(name, o, result) - default: - return fmt.Errorf( - "%s: unknown kind to decode into: %s", name, k.Kind()) - } - - return nil -} - -func (d *decoder) decodeBool(name string, o *hcl.Object, result reflect.Value) error { - switch o.Type { - case hcl.ValueTypeBool: - result.Set(reflect.ValueOf(o.Value.(bool))) - default: - return fmt.Errorf("%s: unknown type %v", name, o.Type) - } - - return nil -} - -func (d *decoder) decodeFloat(name string, o *hcl.Object, result reflect.Value) error { - switch o.Type { - case hcl.ValueTypeFloat: - result.Set(reflect.ValueOf(o.Value.(float64))) - default: - return fmt.Errorf("%s: unknown type %v", name, o.Type) - } - - return nil -} - -func (d *decoder) decodeInt(name string, o *hcl.Object, result reflect.Value) error { - switch o.Type { - case hcl.ValueTypeInt: - result.Set(reflect.ValueOf(o.Value.(int))) - case hcl.ValueTypeString: - v, err := strconv.ParseInt(o.Value.(string), 0, 0) - if err != nil { - return err - } - - result.SetInt(int64(v)) - default: - return fmt.Errorf("%s: unknown type %v", name, o.Type) - } - - return nil -} - -func (d *decoder) decodeInterface(name string, o *hcl.Object, result reflect.Value) error { - var set reflect.Value - redecode := true - - switch o.Type { - case hcl.ValueTypeObject: - // If we're at the root or we're directly within a slice, then we - // decode objects into map[string]interface{}, otherwise we decode - // them into lists. - if len(d.stack) == 0 || d.stack[len(d.stack)-1] == reflect.Slice { - var temp map[string]interface{} - tempVal := reflect.ValueOf(temp) - result := reflect.MakeMap( - reflect.MapOf( - reflect.TypeOf(""), - tempVal.Type().Elem())) - - set = result - } else { - var temp []map[string]interface{} - tempVal := reflect.ValueOf(temp) - result := reflect.MakeSlice( - reflect.SliceOf(tempVal.Type().Elem()), 0, int(o.Len())) - set = result - } - case hcl.ValueTypeList: - var temp []interface{} - tempVal := reflect.ValueOf(temp) - result := reflect.MakeSlice( - reflect.SliceOf(tempVal.Type().Elem()), 0, 0) - set = result - case hcl.ValueTypeBool: - var result bool - set = reflect.Indirect(reflect.New(reflect.TypeOf(result))) - case hcl.ValueTypeFloat: - var result float64 - set = reflect.Indirect(reflect.New(reflect.TypeOf(result))) - case hcl.ValueTypeInt: - var result int - set = reflect.Indirect(reflect.New(reflect.TypeOf(result))) - case hcl.ValueTypeString: - set = reflect.Indirect(reflect.New(reflect.TypeOf(""))) - case hcl.ValueTypeNil: - return nil - default: - return fmt.Errorf( - "%s: cannot decode into interface: %T", - name, o) - } - - // Set the result to what its supposed to be, then reset - // result so we don't reflect into this method anymore. - result.Set(set) - - if redecode { - // Revisit the node so that we can use the newly instantiated - // thing and populate it. - if err := d.decode(name, o, result); err != nil { - return err - } - } - - return nil -} - -func (d *decoder) decodeMap(name string, o *hcl.Object, result reflect.Value) error { - if o.Type != hcl.ValueTypeObject { - return fmt.Errorf("%s: not an object type for map (%v)", name, o.Type) - } - - // If we have an interface, then we can address the interface, - // but not the slice itself, so get the element but set the interface - set := result - if result.Kind() == reflect.Interface { - result = result.Elem() - } - - resultType := result.Type() - resultElemType := resultType.Elem() - resultKeyType := resultType.Key() - if resultKeyType.Kind() != reflect.String { - return fmt.Errorf( - "%s: map must have string keys", name) - } - - // Make a map if it is nil - resultMap := result - if result.IsNil() { - resultMap = reflect.MakeMap( - reflect.MapOf(resultKeyType, resultElemType)) - } - - // Go through each element and decode it. - for _, o := range o.Elem(false) { - if o.Value == nil { - continue - } - - for _, o := range o.Elem(true) { - // Make the field name - fieldName := fmt.Sprintf("%s.%s", name, o.Key) - - // Get the key/value as reflection values - key := reflect.ValueOf(o.Key) - val := reflect.Indirect(reflect.New(resultElemType)) - - // If we have a pre-existing value in the map, use that - oldVal := resultMap.MapIndex(key) - if oldVal.IsValid() { - val.Set(oldVal) - } - - // Decode! - if err := d.decode(fieldName, o, val); err != nil { - return err - } - - // Set the value on the map - resultMap.SetMapIndex(key, val) - } - } - - // Set the final map if we can - set.Set(resultMap) - return nil -} - -func (d *decoder) decodePtr(name string, o *hcl.Object, result reflect.Value) error { - // Create an element of the concrete (non pointer) type and decode - // into that. Then set the value of the pointer to this type. - switch o.Type { - case hcl.ValueTypeNil: - // NIL - default: - resultType := result.Type() - resultElemType := resultType.Elem() - val := reflect.New(resultElemType) - if err := d.decode(name, o, reflect.Indirect(val)); err != nil { - return err - } - - result.Set(val) - } - return nil -} - -func (d *decoder) decodeSlice(name string, o *hcl.Object, result reflect.Value) error { - // If we have an interface, then we can address the interface, - // but not the slice itself, so get the element but set the interface - set := result - if result.Kind() == reflect.Interface { - result = result.Elem() - } - - // Create the slice if it isn't nil - resultType := result.Type() - resultElemType := resultType.Elem() - if result.IsNil() { - resultSliceType := reflect.SliceOf(resultElemType) - result = reflect.MakeSlice( - resultSliceType, 0, 0) - } - - // Determine how we're doing this - expand := true - switch o.Type { - case hcl.ValueTypeObject: - expand = false - default: - // Array or anything else: we expand values and take it all - } - - i := 0 - for _, o := range o.Elem(expand) { - fieldName := fmt.Sprintf("%s[%d]", name, i) - - // Decode - val := reflect.Indirect(reflect.New(resultElemType)) - if err := d.decode(fieldName, o, val); err != nil { - return err - } - - // Append it onto the slice - result = reflect.Append(result, val) - - i += 1 - } - - set.Set(result) - return nil -} - -func (d *decoder) decodeString(name string, o *hcl.Object, result reflect.Value) error { - switch o.Type { - case hcl.ValueTypeInt: - result.Set(reflect.ValueOf( - strconv.FormatInt(int64(o.Value.(int)), 10)).Convert(result.Type())) - case hcl.ValueTypeString: - result.Set(reflect.ValueOf(o.Value.(string)).Convert(result.Type())) - default: - return fmt.Errorf("%s: unknown type to string: %v", name, o.Type) - } - - return nil -} - -func (d *decoder) decodeStruct(name string, o *hcl.Object, result reflect.Value) error { - if o.Type != hcl.ValueTypeObject { - return fmt.Errorf("%s: not an object type for struct (%v)", name, o.Type) - } - - // This slice will keep track of all the structs we'll be decoding. - // There can be more than one struct if there are embedded structs - // that are squashed. - structs := make([]reflect.Value, 1, 5) - structs[0] = result - - // Compile the list of all the fields that we're going to be decoding - // from all the structs. - fields := make(map[*reflect.StructField]reflect.Value) - for len(structs) > 0 { - structVal := structs[0] - structs = structs[1:] - - structType := structVal.Type() - for i := 0; i < structType.NumField(); i++ { - fieldType := structType.Field(i) - - if fieldType.Anonymous { - fieldKind := fieldType.Type.Kind() - if fieldKind != reflect.Struct { - return fmt.Errorf( - "%s: unsupported type to struct: %s", - fieldType.Name, fieldKind) - } - - // We have an embedded field. We "squash" the fields down - // if specified in the tag. - squash := false - tagParts := strings.Split(fieldType.Tag.Get(tagName), ",") - for _, tag := range tagParts[1:] { - if tag == "squash" { - squash = true - break - } - } - - if squash { - structs = append( - structs, result.FieldByName(fieldType.Name)) - continue - } - } - - // Normal struct field, store it away - fields[&fieldType] = structVal.Field(i) - } - } - - usedKeys := make(map[string]struct{}) - decodedFields := make([]string, 0, len(fields)) - decodedFieldsVal := make([]reflect.Value, 0) - unusedKeysVal := make([]reflect.Value, 0) - for fieldType, field := range fields { - if !field.IsValid() { - // This should never happen - panic("field is not valid") - } - - // If we can't set the field, then it is unexported or something, - // and we just continue onwards. - if !field.CanSet() { - continue - } - - fieldName := fieldType.Name - - // This is whether or not we expand the object into its children - // later. - expand := false - - tagValue := fieldType.Tag.Get(tagName) - tagParts := strings.SplitN(tagValue, ",", 2) - if len(tagParts) >= 2 { - switch tagParts[1] { - case "expand": - expand = true - case "decodedFields": - decodedFieldsVal = append(decodedFieldsVal, field) - continue - case "key": - field.SetString(o.Key) - continue - case "unusedKeys": - unusedKeysVal = append(unusedKeysVal, field) - continue - } - } - - if tagParts[0] != "" { - fieldName = tagParts[0] - } - - // Find the element matching this name - obj := o.Get(fieldName, true) - if obj == nil { - continue - } - - // Track the used key - usedKeys[fieldName] = struct{}{} - - // Create the field name and decode. We range over the elements - // because we actually want the value. - fieldName = fmt.Sprintf("%s.%s", name, fieldName) - for _, obj := range obj.Elem(expand) { - if err := d.decode(fieldName, obj, field); err != nil { - return err - } - } - - decodedFields = append(decodedFields, fieldType.Name) - } - - if len(decodedFieldsVal) > 0 { - // Sort it so that it is deterministic - sort.Strings(decodedFields) - - for _, v := range decodedFieldsVal { - v.Set(reflect.ValueOf(decodedFields)) - } - } - - // If we want to know what keys are unused, compile that - if len(unusedKeysVal) > 0 { - /* - unusedKeys := make([]string, 0, int(obj.Len())-len(usedKeys)) - - for _, elem := range obj.Elem { - k := elem.Key() - if _, ok := usedKeys[k]; !ok { - unusedKeys = append(unusedKeys, k) - } - } - - if len(unusedKeys) == 0 { - unusedKeys = nil - } - - for _, v := range unusedKeysVal { - v.Set(reflect.ValueOf(unusedKeys)) - } - */ - } - - return nil -} diff --git a/vendor/github.com/yudai/hcl/hcl.go b/vendor/github.com/yudai/hcl/hcl.go deleted file mode 100644 index 14bd9ba..0000000 --- a/vendor/github.com/yudai/hcl/hcl.go +++ /dev/null @@ -1,11 +0,0 @@ -// hcl is a package for decoding HCL into usable Go structures. -// -// hcl input can come in either pure HCL format or JSON format. -// It can be parsed into an AST, and then decoded into a structure, -// or it can be decoded directly from a string into a structure. -// -// If you choose to parse HCL into a raw AST, the benefit is that you -// can write custom visitor implementations to implement custom -// semantic checks. By default, HCL does not perform any semantic -// checks. -package hcl diff --git a/vendor/github.com/yudai/hcl/hcl/lex.go b/vendor/github.com/yudai/hcl/hcl/lex.go deleted file mode 100644 index 0ef4f2c..0000000 --- a/vendor/github.com/yudai/hcl/hcl/lex.go +++ /dev/null @@ -1,447 +0,0 @@ -package hcl - -import ( - "bytes" - "fmt" - "strconv" - "unicode" - "unicode/utf8" -) - -//go:generate go tool yacc -p "hcl" parse.y - -// The parser expects the lexer to return 0 on EOF. -const lexEOF = 0 - -// The parser uses the type Lex as a lexer. It must provide -// the methods Lex(*SymType) int and Error(string). -type hclLex struct { - Input string - - lastNumber bool - pos int - width int - col, line int - lastCol, lastLine int - err error -} - -// The parser calls this method to get each new token. -func (x *hclLex) Lex(yylval *hclSymType) int { - for { - c := x.next() - if c == lexEOF { - return lexEOF - } - - // Ignore all whitespace except a newline which we handle - // specially later. - if unicode.IsSpace(c) { - x.lastNumber = false - continue - } - - // Consume all comments - switch c { - case '#': - fallthrough - case '/': - // Starting comment - if !x.consumeComment(c) { - return lexEOF - } - continue - } - - // If it is a number, lex the number - if c >= '0' && c <= '9' { - x.lastNumber = true - x.backup() - return x.lexNumber(yylval) - } - - // This is a hacky way to find 'e' and lex it, but it works. - if x.lastNumber { - switch c { - case 'e': - fallthrough - case 'E': - switch x.next() { - case '+': - return EPLUS - case '-': - return EMINUS - default: - x.backup() - return EPLUS - } - } - } - x.lastNumber = false - - switch c { - case '.': - return PERIOD - case '-': - return MINUS - case ',': - return COMMA - case '=': - return EQUAL - case '[': - return LEFTBRACKET - case ']': - return RIGHTBRACKET - case '{': - return LEFTBRACE - case '}': - return RIGHTBRACE - case '"': - return x.lexString(yylval) - case '<': - return x.lexHeredoc(yylval) - default: - x.backup() - return x.lexId(yylval) - } - } -} - -func (x *hclLex) consumeComment(c rune) bool { - single := c == '#' - if !single { - c = x.next() - if c != '/' && c != '*' { - x.backup() - x.createErr(fmt.Sprintf("comment expected, got '%c'", c)) - return false - } - - single = c == '/' - } - - nested := 1 - for { - c = x.next() - if c == lexEOF { - x.backup() - if single { - // Single line comments can end with an EOF - return true - } - - // Multi-line comments must end with a */ - x.createErr(fmt.Sprintf("end of multi-line comment expected, got EOF")) - return false - } - - // Single line comments continue until a '\n' - if single { - if c == '\n' { - return true - } - - continue - } - - // Multi-line comments continue until a '*/' - switch c { - case '/': - c = x.next() - if c == '*' { - nested++ - } else { - x.backup() - } - case '*': - c = x.next() - if c == '/' { - return true - } else { - x.backup() - } - default: - // Continue - } - } -} - -// lexId lexes an identifier -func (x *hclLex) lexId(yylval *hclSymType) int { - var b bytes.Buffer - first := true - for { - c := x.next() - if c == lexEOF { - break - } - - if !unicode.IsDigit(c) && !unicode.IsLetter(c) && - c != '_' && c != '-' && c != '.' { - x.backup() - - if first { - x.createErr("Invalid identifier") - return lexEOF - } - - break - } - - first = false - if _, err := b.WriteRune(c); err != nil { - return lexEOF - } - } - - yylval.str = b.String() - - switch yylval.str { - case "true": - yylval.b = true - return BOOL - case "false": - yylval.b = false - return BOOL - case "null": - return NULL - } - - return IDENTIFIER -} - -// lexHeredoc extracts a string from the input in heredoc format -func (x *hclLex) lexHeredoc(yylval *hclSymType) int { - if x.next() != '<' { - x.createErr("Heredoc must start with <<") - return lexEOF - } - - // Now determine the marker - var buf bytes.Buffer - for { - c := x.next() - if c == lexEOF { - return lexEOF - } - - // Newline signals the end of the marker - if c == '\n' { - break - } - - if _, err := buf.WriteRune(c); err != nil { - return lexEOF - } - } - - marker := buf.String() - if marker == "" { - x.createErr("Heredoc must have a marker, e.g. < 0 { - for _, c := range cs { - if _, err := buf.WriteRune(c); err != nil { - return lexEOF - } - } - } - } - - if c == lexEOF { - return lexEOF - } - - // If we hit a newline, then reset to check - if c == '\n' { - check = true - } - - if _, err := buf.WriteRune(c); err != nil { - return lexEOF - } - } - - yylval.str = buf.String() - return STRING -} - -// lexNumber lexes out a number -func (x *hclLex) lexNumber(yylval *hclSymType) int { - var b bytes.Buffer - gotPeriod := false - for { - c := x.next() - if c == lexEOF { - break - } - - if c == '.' { - if gotPeriod { - x.backup() - break - } - - gotPeriod = true - } else if c < '0' || c > '9' { - x.backup() - break - } - - if _, err := b.WriteRune(c); err != nil { - x.createErr(fmt.Sprintf("Internal error: %s", err)) - return lexEOF - } - } - - if !gotPeriod { - v, err := strconv.ParseInt(b.String(), 0, 0) - if err != nil { - x.createErr(fmt.Sprintf("Expected number: %s", err)) - return lexEOF - } - - yylval.num = int(v) - return NUMBER - } - - f, err := strconv.ParseFloat(b.String(), 64) - if err != nil { - x.createErr(fmt.Sprintf("Expected float: %s", err)) - return lexEOF - } - - yylval.f = float64(f) - return FLOAT -} - -// lexString extracts a string from the input -func (x *hclLex) lexString(yylval *hclSymType) int { - braces := 0 - - var b bytes.Buffer - for { - c := x.next() - if c == lexEOF { - break - } - - // String end - if c == '"' && braces == 0 { - break - } - - // If we hit a newline, then its an error - if c == '\n' { - x.createErr(fmt.Sprintf("Newline before string closed")) - return lexEOF - } - - // If we're escaping a quote, then escape the quote - if c == '\\' { - n := x.next() - switch n { - case '"': - c = n - case 'n': - c = '\n' - case '\\': - c = n - default: - x.backup() - } - } - - // If we're starting into variable, mark it - if braces == 0 && c == '$' && x.peek() == '{' { - braces += 1 - - if _, err := b.WriteRune(c); err != nil { - return lexEOF - } - c = x.next() - } else if braces > 0 && c == '{' { - braces += 1 - } - if braces > 0 && c == '}' { - braces -= 1 - } - - if _, err := b.WriteRune(c); err != nil { - return lexEOF - } - } - - yylval.str = b.String() - return STRING -} - -// Return the next rune for the lexer. -func (x *hclLex) next() rune { - if int(x.pos) >= len(x.Input) { - x.width = 0 - return lexEOF - } - - r, w := utf8.DecodeRuneInString(x.Input[x.pos:]) - x.width = w - x.pos += x.width - - x.col += 1 - if x.line == 0 { - x.line = 1 - } - if r == '\n' { - x.line += 1 - x.col = 0 - } - - return r -} - -// peek returns but does not consume the next rune in the input -func (x *hclLex) peek() rune { - r := x.next() - x.backup() - return r -} - -// backup steps back one rune. Can only be called once per next. -func (x *hclLex) backup() { - x.col -= 1 - x.pos -= x.width -} - -// createErr records the given error -func (x *hclLex) createErr(msg string) { - x.err = fmt.Errorf("Line %d, column %d: %s", x.line, x.col, msg) -} - -// The parser calls this method on a parse error. -func (x *hclLex) Error(s string) { - x.createErr(s) -} diff --git a/vendor/github.com/yudai/hcl/hcl/object.go b/vendor/github.com/yudai/hcl/hcl/object.go deleted file mode 100644 index e7b493a..0000000 --- a/vendor/github.com/yudai/hcl/hcl/object.go +++ /dev/null @@ -1,128 +0,0 @@ -package hcl - -import ( - "fmt" - "strings" -) - -//go:generate stringer -type=ValueType - -// ValueType is an enum represnting the type of a value in -// a LiteralNode. -type ValueType byte - -const ( - ValueTypeUnknown ValueType = iota - ValueTypeFloat - ValueTypeInt - ValueTypeString - ValueTypeBool - ValueTypeNil - ValueTypeList - ValueTypeObject -) - -// Object represents any element of HCL: an object itself, a list, -// a literal, etc. -type Object struct { - Key string - Type ValueType - Value interface{} - Next *Object -} - -// GoString is an implementation of the GoStringer interface. -func (o *Object) GoString() string { - return fmt.Sprintf("*%#v", *o) -} - -// Get gets all the objects that match the given key. -// -// It returns the resulting objects as a single Object structure with -// the linked list populated. -func (o *Object) Get(k string, insensitive bool) *Object { - if o.Type != ValueTypeObject { - return nil - } - - for _, o := range o.Elem(true) { - if o.Key != k { - if !insensitive || !strings.EqualFold(o.Key, k) { - continue - } - } - - return o - } - - return nil -} - -// Elem returns all the elements that are part of this object. -func (o *Object) Elem(expand bool) []*Object { - if !expand { - result := make([]*Object, 0, 1) - current := o - for current != nil { - obj := *current - obj.Next = nil - result = append(result, &obj) - - current = current.Next - } - - return result - } - - if o.Value == nil { - return nil - } - - switch o.Type { - case ValueTypeList: - return o.Value.([]*Object) - case ValueTypeObject: - result := make([]*Object, 0, 5) - for _, obj := range o.Elem(false) { - result = append(result, obj.Value.([]*Object)...) - } - return result - default: - return []*Object{o} - } -} - -// Len returns the number of objects in this object structure. -func (o *Object) Len() (i int) { - current := o - for current != nil { - i += 1 - current = current.Next - } - - return -} - -// ObjectList is a list of objects. -type ObjectList []*Object - -// Flat returns a flattened list structure of the objects. -func (l ObjectList) Flat() []*Object { - m := make(map[string]*Object) - result := make([]*Object, 0, len(l)) - for _, obj := range l { - prev, ok := m[obj.Key] - if !ok { - m[obj.Key] = obj - result = append(result, obj) - continue - } - - for prev.Next != nil { - prev = prev.Next - } - prev.Next = obj - } - - return result -} diff --git a/vendor/github.com/yudai/hcl/hcl/parse.go b/vendor/github.com/yudai/hcl/hcl/parse.go deleted file mode 100644 index 21bd2a4..0000000 --- a/vendor/github.com/yudai/hcl/hcl/parse.go +++ /dev/null @@ -1,39 +0,0 @@ -package hcl - -import ( - "sync" - - "github.com/hashicorp/go-multierror" -) - -// hclErrors are the errors built up from parsing. These should not -// be accessed directly. -var hclErrors []error -var hclLock sync.Mutex -var hclResult *Object - -// Parse parses the given string and returns the result. -func Parse(v string) (*Object, error) { - hclLock.Lock() - defer hclLock.Unlock() - hclErrors = nil - hclResult = nil - - // Parse - lex := &hclLex{Input: v} - hclParse(lex) - - // If we have an error in the lexer itself, return it - if lex.err != nil { - return nil, lex.err - } - - // Build up the errors - var err error - if len(hclErrors) > 0 { - err = &multierror.Error{Errors: hclErrors} - hclResult = nil - } - - return hclResult, err -} diff --git a/vendor/github.com/yudai/hcl/hcl/parse.y b/vendor/github.com/yudai/hcl/hcl/parse.y deleted file mode 100644 index 1568f30..0000000 --- a/vendor/github.com/yudai/hcl/hcl/parse.y +++ /dev/null @@ -1,281 +0,0 @@ -// This is the yacc input for creating the parser for HCL. - -%{ -package hcl - -import ( - "fmt" - "strconv" -) - -%} - -%union { - b bool - f float64 - num int - str string - obj *Object - objlist []*Object -} - -%type float -%type int -%type list listitems objectlist -%type block number object objectitem -%type listitem -%type blockId exp objectkey - -%token BOOL -%token FLOAT -%token NUMBER -%token COMMA IDENTIFIER EQUAL NEWLINE STRING MINUS -%token LEFTBRACE RIGHTBRACE LEFTBRACKET RIGHTBRACKET PERIOD -%token EPLUS EMINUS -%token NULL - -%% - -top: - { - hclResult = &Object{Type: ValueTypeObject} - } -| objectlist - { - hclResult = &Object{ - Type: ValueTypeObject, - Value: ObjectList($1).Flat(), - } - } - -objectlist: - objectitem - { - $$ = []*Object{$1} - } -| objectlist objectitem - { - $$ = append($1, $2) - } - -object: - LEFTBRACE objectlist RIGHTBRACE - { - $$ = &Object{ - Type: ValueTypeObject, - Value: ObjectList($2).Flat(), - } - } -| LEFTBRACE RIGHTBRACE - { - $$ = &Object{ - Type: ValueTypeObject, - } - } - -objectkey: - IDENTIFIER - { - $$ = $1 - } -| STRING - { - $$ = $1 - } - -objectitem: - objectkey EQUAL number - { - $$ = $3 - $$.Key = $1 - } -| objectkey EQUAL BOOL - { - $$ = &Object{ - Key: $1, - Type: ValueTypeBool, - Value: $3, - } - } -| objectkey EQUAL NULL - { - $$ = &Object{ - Key: $1, - Type: ValueTypeNil, - } - } -| objectkey EQUAL STRING - { - $$ = &Object{ - Key: $1, - Type: ValueTypeString, - Value: $3, - } - } -| objectkey EQUAL object - { - $3.Key = $1 - $$ = $3 - } -| objectkey EQUAL list - { - $$ = &Object{ - Key: $1, - Type: ValueTypeList, - Value: $3, - } - } -| block - { - $$ = $1 - } - -block: - blockId object - { - $2.Key = $1 - $$ = $2 - } -| blockId block - { - $$ = &Object{ - Key: $1, - Type: ValueTypeObject, - Value: []*Object{$2}, - } - } - -blockId: - IDENTIFIER - { - $$ = $1 - } -| STRING - { - $$ = $1 - } - -list: - LEFTBRACKET listitems RIGHTBRACKET - { - $$ = $2 - } -| LEFTBRACKET listitems COMMA RIGHTBRACKET - { - $$ = $2 - } -| LEFTBRACKET RIGHTBRACKET - { - $$ = nil - } - -listitems: - listitem - { - $$ = []*Object{$1} - } -| listitems COMMA listitem - { - $$ = append($1, $3) - } - -listitem: - number - { - $$ = $1 - } -| STRING - { - $$ = &Object{ - Type: ValueTypeString, - Value: $1, - } - } -| BOOL - { - $$ = &Object{ - Type: ValueTypeBool, - Value: $1, - } - } -| NULL - { - $$ = &Object{ - Type: ValueTypeNil, - } - } - - -number: - int - { - $$ = &Object{ - Type: ValueTypeInt, - Value: $1, - } - } -| float - { - $$ = &Object{ - Type: ValueTypeFloat, - Value: $1, - } - } -| int exp - { - fs := fmt.Sprintf("%d%s", $1, $2) - f, err := strconv.ParseFloat(fs, 64) - if err != nil { - panic(err) - } - - $$ = &Object{ - Type: ValueTypeFloat, - Value: f, - } - } -| float exp - { - fs := fmt.Sprintf("%f%s", $1, $2) - f, err := strconv.ParseFloat(fs, 64) - if err != nil { - panic(err) - } - - $$ = &Object{ - Type: ValueTypeFloat, - Value: f, - } - } - -int: - MINUS int - { - $$ = $2 * -1 - } -| NUMBER - { - $$ = $1 - } - -float: - MINUS float - { - $$ = $2 * -1 - } -| FLOAT - { - $$ = $1 - } - -exp: - EPLUS NUMBER - { - $$ = "e" + strconv.FormatInt(int64($2), 10) - } -| EMINUS NUMBER - { - $$ = "e-" + strconv.FormatInt(int64($2), 10) - } - -%% diff --git a/vendor/github.com/yudai/hcl/hcl/valuetype_string.go b/vendor/github.com/yudai/hcl/hcl/valuetype_string.go deleted file mode 100644 index 83b3904..0000000 --- a/vendor/github.com/yudai/hcl/hcl/valuetype_string.go +++ /dev/null @@ -1,16 +0,0 @@ -// generated by stringer -type=ValueType; DO NOT EDIT - -package hcl - -import "fmt" - -const _ValueType_name = "ValueTypeUnknownValueTypeFloatValueTypeIntValueTypeStringValueTypeBoolValueTypeNilValueTypeListValueTypeObject" - -var _ValueType_index = [...]uint8{0, 16, 30, 42, 57, 70, 82, 95, 110} - -func (i ValueType) String() string { - if i >= ValueType(len(_ValueType_index)-1) { - return fmt.Sprintf("ValueType(%d)", i) - } - return _ValueType_name[_ValueType_index[i]:_ValueType_index[i+1]] -} diff --git a/vendor/github.com/yudai/hcl/hcl/y.go b/vendor/github.com/yudai/hcl/hcl/y.go deleted file mode 100644 index 7f5988b..0000000 --- a/vendor/github.com/yudai/hcl/hcl/y.go +++ /dev/null @@ -1,790 +0,0 @@ -//line parse.y:4 -package hcl - -import __yyfmt__ "fmt" - -//line parse.y:4 -import ( - "fmt" - "strconv" -) - -//line parse.y:13 -type hclSymType struct { - yys int - b bool - f float64 - num int - str string - obj *Object - objlist []*Object -} - -const BOOL = 57346 -const FLOAT = 57347 -const NUMBER = 57348 -const COMMA = 57349 -const IDENTIFIER = 57350 -const EQUAL = 57351 -const NEWLINE = 57352 -const STRING = 57353 -const MINUS = 57354 -const LEFTBRACE = 57355 -const RIGHTBRACE = 57356 -const LEFTBRACKET = 57357 -const RIGHTBRACKET = 57358 -const PERIOD = 57359 -const EPLUS = 57360 -const EMINUS = 57361 -const NULL = 57362 - -var hclToknames = [...]string{ - "$end", - "error", - "$unk", - "BOOL", - "FLOAT", - "NUMBER", - "COMMA", - "IDENTIFIER", - "EQUAL", - "NEWLINE", - "STRING", - "MINUS", - "LEFTBRACE", - "RIGHTBRACE", - "LEFTBRACKET", - "RIGHTBRACKET", - "PERIOD", - "EPLUS", - "EMINUS", - "NULL", -} -var hclStatenames = [...]string{} - -const hclEofCode = 1 -const hclErrCode = 2 -const hclMaxDepth = 200 - -//line parse.y:281 - -//line yacctab:1 -var hclExca = [...]int{ - -1, 1, - 1, -1, - -2, 0, - -1, 6, - 9, 7, - -2, 18, - -1, 7, - 9, 8, - -2, 19, -} - -const hclNprod = 39 -const hclPrivate = 57344 - -var hclTokenNames []string -var hclStates []string - -const hclLast = 69 - -var hclAct = [...]int{ - - 36, 3, 22, 30, 9, 17, 27, 26, 31, 32, - 45, 23, 19, 25, 13, 10, 24, 39, 27, 26, - 6, 18, 47, 7, 38, 25, 43, 33, 41, 48, - 9, 46, 44, 40, 39, 27, 26, 42, 5, 1, - 14, 38, 25, 15, 2, 13, 35, 12, 49, 6, - 40, 4, 7, 27, 26, 29, 11, 37, 28, 6, - 25, 8, 7, 34, 21, 0, 0, 20, 16, -} -var hclPact = [...]int{ - - 51, -1000, 51, -1000, 6, -1000, -1000, -1000, 32, -1000, - 1, -1000, -1000, 41, -1000, -1000, -1000, -1000, -1000, -1000, - -1000, -1000, -10, -10, 30, 48, -1000, -1000, 12, -1000, - -1000, 26, 4, -1000, 15, -1000, -1000, -1000, -1000, -1000, - -1000, -1000, -1000, -1000, -1000, -1000, -1000, 13, -1000, -1000, -} -var hclPgo = [...]int{ - - 0, 11, 2, 64, 63, 44, 38, 57, 56, 1, - 0, 61, 3, 51, 39, -} -var hclR1 = [...]int{ - - 0, 14, 14, 5, 5, 8, 8, 13, 13, 9, - 9, 9, 9, 9, 9, 9, 6, 6, 11, 11, - 3, 3, 3, 4, 4, 10, 10, 10, 10, 7, - 7, 7, 7, 2, 2, 1, 1, 12, 12, -} -var hclR2 = [...]int{ - - 0, 0, 1, 1, 2, 3, 2, 1, 1, 3, - 3, 3, 3, 3, 3, 1, 2, 2, 1, 1, - 3, 4, 2, 1, 3, 1, 1, 1, 1, 1, - 1, 2, 2, 2, 1, 2, 1, 2, 2, -} -var hclChk = [...]int{ - - -1000, -14, -5, -9, -13, -6, 8, 11, -11, -9, - 9, -8, -6, 13, 8, 11, -7, 4, 20, 11, - -8, -3, -2, -1, 15, 12, 6, 5, -5, 14, - -12, 18, 19, -12, -4, 16, -10, -7, 11, 4, - 20, -2, -1, 14, 6, 6, 16, 7, 16, -10, -} -var hclDef = [...]int{ - - 1, -2, 2, 3, 0, 15, -2, -2, 0, 4, - 0, 16, 17, 0, 18, 19, 9, 10, 11, 12, - 13, 14, 29, 30, 0, 0, 34, 36, 0, 6, - 31, 0, 0, 32, 0, 22, 23, 25, 26, 27, - 28, 33, 35, 5, 37, 38, 20, 0, 21, 24, -} -var hclTok1 = [...]int{ - - 1, -} -var hclTok2 = [...]int{ - - 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, - 12, 13, 14, 15, 16, 17, 18, 19, 20, -} -var hclTok3 = [...]int{ - 0, -} - -var hclErrorMessages = [...]struct { - state int - token int - msg string -}{} - -//line yaccpar:1 - -/* parser for yacc output */ - -var ( - hclDebug = 0 - hclErrorVerbose = false -) - -type hclLexer interface { - Lex(lval *hclSymType) int - Error(s string) -} - -type hclParser interface { - Parse(hclLexer) int - Lookahead() int -} - -type hclParserImpl struct { - lookahead func() int -} - -func (p *hclParserImpl) Lookahead() int { - return p.lookahead() -} - -func hclNewParser() hclParser { - p := &hclParserImpl{ - lookahead: func() int { return -1 }, - } - return p -} - -const hclFlag = -1000 - -func hclTokname(c int) string { - if c >= 1 && c-1 < len(hclToknames) { - if hclToknames[c-1] != "" { - return hclToknames[c-1] - } - } - return __yyfmt__.Sprintf("tok-%v", c) -} - -func hclStatname(s int) string { - if s >= 0 && s < len(hclStatenames) { - if hclStatenames[s] != "" { - return hclStatenames[s] - } - } - return __yyfmt__.Sprintf("state-%v", s) -} - -func hclErrorMessage(state, lookAhead int) string { - const TOKSTART = 4 - - if !hclErrorVerbose { - return "syntax error" - } - - for _, e := range hclErrorMessages { - if e.state == state && e.token == lookAhead { - return "syntax error: " + e.msg - } - } - - res := "syntax error: unexpected " + hclTokname(lookAhead) - - // To match Bison, suggest at most four expected tokens. - expected := make([]int, 0, 4) - - // Look for shiftable tokens. - base := hclPact[state] - for tok := TOKSTART; tok-1 < len(hclToknames); tok++ { - if n := base + tok; n >= 0 && n < hclLast && hclChk[hclAct[n]] == tok { - if len(expected) == cap(expected) { - return res - } - expected = append(expected, tok) - } - } - - if hclDef[state] == -2 { - i := 0 - for hclExca[i] != -1 || hclExca[i+1] != state { - i += 2 - } - - // Look for tokens that we accept or reduce. - for i += 2; hclExca[i] >= 0; i += 2 { - tok := hclExca[i] - if tok < TOKSTART || hclExca[i+1] == 0 { - continue - } - if len(expected) == cap(expected) { - return res - } - expected = append(expected, tok) - } - - // If the default action is to accept or reduce, give up. - if hclExca[i+1] != 0 { - return res - } - } - - for i, tok := range expected { - if i == 0 { - res += ", expecting " - } else { - res += " or " - } - res += hclTokname(tok) - } - return res -} - -func hcllex1(lex hclLexer, lval *hclSymType) (char, token int) { - token = 0 - char = lex.Lex(lval) - if char <= 0 { - token = hclTok1[0] - goto out - } - if char < len(hclTok1) { - token = hclTok1[char] - goto out - } - if char >= hclPrivate { - if char < hclPrivate+len(hclTok2) { - token = hclTok2[char-hclPrivate] - goto out - } - } - for i := 0; i < len(hclTok3); i += 2 { - token = hclTok3[i+0] - if token == char { - token = hclTok3[i+1] - goto out - } - } - -out: - if token == 0 { - token = hclTok2[1] /* unknown char */ - } - if hclDebug >= 3 { - __yyfmt__.Printf("lex %s(%d)\n", hclTokname(token), uint(char)) - } - return char, token -} - -func hclParse(hcllex hclLexer) int { - return hclNewParser().Parse(hcllex) -} - -func (hclrcvr *hclParserImpl) Parse(hcllex hclLexer) int { - var hcln int - var hcllval hclSymType - var hclVAL hclSymType - var hclDollar []hclSymType - _ = hclDollar // silence set and not used - hclS := make([]hclSymType, hclMaxDepth) - - Nerrs := 0 /* number of errors */ - Errflag := 0 /* error recovery flag */ - hclstate := 0 - hclchar := -1 - hcltoken := -1 // hclchar translated into internal numbering - hclrcvr.lookahead = func() int { return hclchar } - defer func() { - // Make sure we report no lookahead when not parsing. - hclstate = -1 - hclchar = -1 - hcltoken = -1 - }() - hclp := -1 - goto hclstack - -ret0: - return 0 - -ret1: - return 1 - -hclstack: - /* put a state and value onto the stack */ - if hclDebug >= 4 { - __yyfmt__.Printf("char %v in %v\n", hclTokname(hcltoken), hclStatname(hclstate)) - } - - hclp++ - if hclp >= len(hclS) { - nyys := make([]hclSymType, len(hclS)*2) - copy(nyys, hclS) - hclS = nyys - } - hclS[hclp] = hclVAL - hclS[hclp].yys = hclstate - -hclnewstate: - hcln = hclPact[hclstate] - if hcln <= hclFlag { - goto hcldefault /* simple state */ - } - if hclchar < 0 { - hclchar, hcltoken = hcllex1(hcllex, &hcllval) - } - hcln += hcltoken - if hcln < 0 || hcln >= hclLast { - goto hcldefault - } - hcln = hclAct[hcln] - if hclChk[hcln] == hcltoken { /* valid shift */ - hclchar = -1 - hcltoken = -1 - hclVAL = hcllval - hclstate = hcln - if Errflag > 0 { - Errflag-- - } - goto hclstack - } - -hcldefault: - /* default state action */ - hcln = hclDef[hclstate] - if hcln == -2 { - if hclchar < 0 { - hclchar, hcltoken = hcllex1(hcllex, &hcllval) - } - - /* look through exception table */ - xi := 0 - for { - if hclExca[xi+0] == -1 && hclExca[xi+1] == hclstate { - break - } - xi += 2 - } - for xi += 2; ; xi += 2 { - hcln = hclExca[xi+0] - if hcln < 0 || hcln == hcltoken { - break - } - } - hcln = hclExca[xi+1] - if hcln < 0 { - goto ret0 - } - } - if hcln == 0 { - /* error ... attempt to resume parsing */ - switch Errflag { - case 0: /* brand new error */ - hcllex.Error(hclErrorMessage(hclstate, hcltoken)) - Nerrs++ - if hclDebug >= 1 { - __yyfmt__.Printf("%s", hclStatname(hclstate)) - __yyfmt__.Printf(" saw %s\n", hclTokname(hcltoken)) - } - fallthrough - - case 1, 2: /* incompletely recovered error ... try again */ - Errflag = 3 - - /* find a state where "error" is a legal shift action */ - for hclp >= 0 { - hcln = hclPact[hclS[hclp].yys] + hclErrCode - if hcln >= 0 && hcln < hclLast { - hclstate = hclAct[hcln] /* simulate a shift of "error" */ - if hclChk[hclstate] == hclErrCode { - goto hclstack - } - } - - /* the current p has no shift on "error", pop stack */ - if hclDebug >= 2 { - __yyfmt__.Printf("error recovery pops state %d\n", hclS[hclp].yys) - } - hclp-- - } - /* there is no state on the stack with an error shift ... abort */ - goto ret1 - - case 3: /* no shift yet; clobber input char */ - if hclDebug >= 2 { - __yyfmt__.Printf("error recovery discards %s\n", hclTokname(hcltoken)) - } - if hcltoken == hclEofCode { - goto ret1 - } - hclchar = -1 - hcltoken = -1 - goto hclnewstate /* try again in the same state */ - } - } - - /* reduction by production hcln */ - if hclDebug >= 2 { - __yyfmt__.Printf("reduce %v in:\n\t%v\n", hcln, hclStatname(hclstate)) - } - - hclnt := hcln - hclpt := hclp - _ = hclpt // guard against "declared and not used" - - hclp -= hclR2[hcln] - // hclp is now the index of $0. Perform the default action. Iff the - // reduced production is ε, $1 is possibly out of range. - if hclp+1 >= len(hclS) { - nyys := make([]hclSymType, len(hclS)*2) - copy(nyys, hclS) - hclS = nyys - } - hclVAL = hclS[hclp+1] - - /* consult goto table to find next state */ - hcln = hclR1[hcln] - hclg := hclPgo[hcln] - hclj := hclg + hclS[hclp].yys + 1 - - if hclj >= hclLast { - hclstate = hclAct[hclg] - } else { - hclstate = hclAct[hclj] - if hclChk[hclstate] != -hcln { - hclstate = hclAct[hclg] - } - } - // dummy call; replaced with literal code - switch hclnt { - - case 1: - hclDollar = hclS[hclpt-0 : hclpt+1] - //line parse.y:40 - { - hclResult = &Object{Type: ValueTypeObject} - } - case 2: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:44 - { - hclResult = &Object{ - Type: ValueTypeObject, - Value: ObjectList(hclDollar[1].objlist).Flat(), - } - } - case 3: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:53 - { - hclVAL.objlist = []*Object{hclDollar[1].obj} - } - case 4: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:57 - { - hclVAL.objlist = append(hclDollar[1].objlist, hclDollar[2].obj) - } - case 5: - hclDollar = hclS[hclpt-3 : hclpt+1] - //line parse.y:63 - { - hclVAL.obj = &Object{ - Type: ValueTypeObject, - Value: ObjectList(hclDollar[2].objlist).Flat(), - } - } - case 6: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:70 - { - hclVAL.obj = &Object{ - Type: ValueTypeObject, - } - } - case 7: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:78 - { - hclVAL.str = hclDollar[1].str - } - case 8: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:82 - { - hclVAL.str = hclDollar[1].str - } - case 9: - hclDollar = hclS[hclpt-3 : hclpt+1] - //line parse.y:88 - { - hclVAL.obj = hclDollar[3].obj - hclVAL.obj.Key = hclDollar[1].str - } - case 10: - hclDollar = hclS[hclpt-3 : hclpt+1] - //line parse.y:93 - { - hclVAL.obj = &Object{ - Key: hclDollar[1].str, - Type: ValueTypeBool, - Value: hclDollar[3].b, - } - } - case 11: - hclDollar = hclS[hclpt-3 : hclpt+1] - //line parse.y:101 - { - hclVAL.obj = &Object{ - Key: hclDollar[1].str, - Type: ValueTypeNil, - } - } - case 12: - hclDollar = hclS[hclpt-3 : hclpt+1] - //line parse.y:108 - { - hclVAL.obj = &Object{ - Key: hclDollar[1].str, - Type: ValueTypeString, - Value: hclDollar[3].str, - } - } - case 13: - hclDollar = hclS[hclpt-3 : hclpt+1] - //line parse.y:116 - { - hclDollar[3].obj.Key = hclDollar[1].str - hclVAL.obj = hclDollar[3].obj - } - case 14: - hclDollar = hclS[hclpt-3 : hclpt+1] - //line parse.y:121 - { - hclVAL.obj = &Object{ - Key: hclDollar[1].str, - Type: ValueTypeList, - Value: hclDollar[3].objlist, - } - } - case 15: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:129 - { - hclVAL.obj = hclDollar[1].obj - } - case 16: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:135 - { - hclDollar[2].obj.Key = hclDollar[1].str - hclVAL.obj = hclDollar[2].obj - } - case 17: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:140 - { - hclVAL.obj = &Object{ - Key: hclDollar[1].str, - Type: ValueTypeObject, - Value: []*Object{hclDollar[2].obj}, - } - } - case 18: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:150 - { - hclVAL.str = hclDollar[1].str - } - case 19: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:154 - { - hclVAL.str = hclDollar[1].str - } - case 20: - hclDollar = hclS[hclpt-3 : hclpt+1] - //line parse.y:160 - { - hclVAL.objlist = hclDollar[2].objlist - } - case 21: - hclDollar = hclS[hclpt-4 : hclpt+1] - //line parse.y:164 - { - hclVAL.objlist = hclDollar[2].objlist - } - case 22: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:168 - { - hclVAL.objlist = nil - } - case 23: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:174 - { - hclVAL.objlist = []*Object{hclDollar[1].obj} - } - case 24: - hclDollar = hclS[hclpt-3 : hclpt+1] - //line parse.y:178 - { - hclVAL.objlist = append(hclDollar[1].objlist, hclDollar[3].obj) - } - case 25: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:184 - { - hclVAL.obj = hclDollar[1].obj - } - case 26: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:188 - { - hclVAL.obj = &Object{ - Type: ValueTypeString, - Value: hclDollar[1].str, - } - } - case 27: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:195 - { - hclVAL.obj = &Object{ - Type: ValueTypeBool, - Value: hclDollar[1].b, - } - } - case 28: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:202 - { - hclVAL.obj = &Object{ - Type: ValueTypeNil, - } - } - case 29: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:211 - { - hclVAL.obj = &Object{ - Type: ValueTypeInt, - Value: hclDollar[1].num, - } - } - case 30: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:218 - { - hclVAL.obj = &Object{ - Type: ValueTypeFloat, - Value: hclDollar[1].f, - } - } - case 31: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:225 - { - fs := fmt.Sprintf("%d%s", hclDollar[1].num, hclDollar[2].str) - f, err := strconv.ParseFloat(fs, 64) - if err != nil { - panic(err) - } - - hclVAL.obj = &Object{ - Type: ValueTypeFloat, - Value: f, - } - } - case 32: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:238 - { - fs := fmt.Sprintf("%f%s", hclDollar[1].f, hclDollar[2].str) - f, err := strconv.ParseFloat(fs, 64) - if err != nil { - panic(err) - } - - hclVAL.obj = &Object{ - Type: ValueTypeFloat, - Value: f, - } - } - case 33: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:253 - { - hclVAL.num = hclDollar[2].num * -1 - } - case 34: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:257 - { - hclVAL.num = hclDollar[1].num - } - case 35: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:263 - { - hclVAL.f = hclDollar[2].f * -1 - } - case 36: - hclDollar = hclS[hclpt-1 : hclpt+1] - //line parse.y:267 - { - hclVAL.f = hclDollar[1].f - } - case 37: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:273 - { - hclVAL.str = "e" + strconv.FormatInt(int64(hclDollar[2].num), 10) - } - case 38: - hclDollar = hclS[hclpt-2 : hclpt+1] - //line parse.y:277 - { - hclVAL.str = "e-" + strconv.FormatInt(int64(hclDollar[2].num), 10) - } - } - goto hclstack /* stack new state and value */ -} diff --git a/vendor/github.com/yudai/hcl/json/lex.go b/vendor/github.com/yudai/hcl/json/lex.go deleted file mode 100644 index 0b07e36..0000000 --- a/vendor/github.com/yudai/hcl/json/lex.go +++ /dev/null @@ -1,256 +0,0 @@ -package json - -import ( - "bytes" - "fmt" - "strconv" - "unicode" - "unicode/utf8" -) - -//go:generate go tool yacc -p "json" parse.y - -// This marks the end of the lexer -const lexEOF = 0 - -// The parser uses the type Lex as a lexer. It must provide -// the methods Lex(*SymType) int and Error(string). -type jsonLex struct { - Input string - - pos int - width int - col, line int - err error -} - -// The parser calls this method to get each new token. -func (x *jsonLex) Lex(yylval *jsonSymType) int { - for { - c := x.next() - if c == lexEOF { - return lexEOF - } - - // Ignore all whitespace except a newline which we handle - // specially later. - if unicode.IsSpace(c) { - continue - } - - // If it is a number, lex the number - if c >= '0' && c <= '9' { - x.backup() - return x.lexNumber(yylval) - } - - switch c { - case 'e': - fallthrough - case 'E': - switch x.next() { - case '+': - return EPLUS - case '-': - return EMINUS - default: - x.backup() - return EPLUS - } - case '.': - return PERIOD - case '-': - return MINUS - case ':': - return COLON - case ',': - return COMMA - case '[': - return LEFTBRACKET - case ']': - return RIGHTBRACKET - case '{': - return LEFTBRACE - case '}': - return RIGHTBRACE - case '"': - return x.lexString(yylval) - default: - x.backup() - return x.lexId(yylval) - } - } -} - -// lexId lexes an identifier -func (x *jsonLex) lexId(yylval *jsonSymType) int { - var b bytes.Buffer - first := true - for { - c := x.next() - if c == lexEOF { - break - } - - if !unicode.IsDigit(c) && !unicode.IsLetter(c) && c != '_' && c != '-' { - x.backup() - - if first { - x.createErr("Invalid identifier") - return lexEOF - } - - break - } - - first = false - if _, err := b.WriteRune(c); err != nil { - return lexEOF - } - } - - switch v := b.String(); v { - case "true": - return TRUE - case "false": - return FALSE - case "null": - return NULL - default: - x.createErr(fmt.Sprintf("Invalid identifier: %s", v)) - return lexEOF - } -} - -// lexNumber lexes out a number -func (x *jsonLex) lexNumber(yylval *jsonSymType) int { - var b bytes.Buffer - gotPeriod := false - for { - c := x.next() - if c == lexEOF { - break - } - - if c == '.' { - if gotPeriod { - x.backup() - break - } - - gotPeriod = true - } else if c < '0' || c > '9' { - x.backup() - break - } - - if _, err := b.WriteRune(c); err != nil { - x.createErr(fmt.Sprintf("Internal error: %s", err)) - return lexEOF - } - } - - if !gotPeriod { - v, err := strconv.ParseInt(b.String(), 0, 0) - if err != nil { - x.createErr(fmt.Sprintf("Expected number: %s", err)) - return lexEOF - } - - yylval.num = int(v) - return NUMBER - } - - f, err := strconv.ParseFloat(b.String(), 64) - if err != nil { - x.createErr(fmt.Sprintf("Expected float: %s", err)) - return lexEOF - } - - yylval.f = float64(f) - return FLOAT -} - -// lexString extracts a string from the input -func (x *jsonLex) lexString(yylval *jsonSymType) int { - var b bytes.Buffer - for { - c := x.next() - if c == lexEOF { - break - } - - // String end - if c == '"' { - break - } - - // If we're escaping a quote, then escape the quote - if c == '\\' { - n := x.next() - switch n { - case '"': - c = n - case 'n': - c = '\n' - case '\\': - c = n - default: - x.backup() - } - } - - if _, err := b.WriteRune(c); err != nil { - return lexEOF - } - } - - yylval.str = b.String() - return STRING -} - -// Return the next rune for the lexer. -func (x *jsonLex) next() rune { - if int(x.pos) >= len(x.Input) { - x.width = 0 - return lexEOF - } - - r, w := utf8.DecodeRuneInString(x.Input[x.pos:]) - x.width = w - x.pos += x.width - - x.col += 1 - if x.line == 0 { - x.line = 1 - } - if r == '\n' { - x.line += 1 - x.col = 0 - } - - return r -} - -// peek returns but does not consume the next rune in the input -func (x *jsonLex) peek() rune { - r := x.next() - x.backup() - return r -} - -// backup steps back one rune. Can only be called once per next. -func (x *jsonLex) backup() { - x.col -= 1 - x.pos -= x.width -} - -// createErr records the given error -func (x *jsonLex) createErr(msg string) { - x.err = fmt.Errorf("Line %d, column %d: %s", x.line, x.col, msg) -} - -// The parser calls this method on a parse error. -func (x *jsonLex) Error(s string) { - x.createErr(s) -} diff --git a/vendor/github.com/yudai/hcl/json/parse.go b/vendor/github.com/yudai/hcl/json/parse.go deleted file mode 100644 index 599ea15..0000000 --- a/vendor/github.com/yudai/hcl/json/parse.go +++ /dev/null @@ -1,40 +0,0 @@ -package json - -import ( - "sync" - - "github.com/yudai/hcl/hcl" - "github.com/hashicorp/go-multierror" -) - -// jsonErrors are the errors built up from parsing. These should not -// be accessed directly. -var jsonErrors []error -var jsonLock sync.Mutex -var jsonResult *hcl.Object - -// Parse parses the given string and returns the result. -func Parse(v string) (*hcl.Object, error) { - jsonLock.Lock() - defer jsonLock.Unlock() - jsonErrors = nil - jsonResult = nil - - // Parse - lex := &jsonLex{Input: v} - jsonParse(lex) - - // If we have an error in the lexer itself, return it - if lex.err != nil { - return nil, lex.err - } - - // Build up the errors - var err error - if len(jsonErrors) > 0 { - err = &multierror.Error{Errors: jsonErrors} - jsonResult = nil - } - - return jsonResult, err -} diff --git a/vendor/github.com/yudai/hcl/json/parse.y b/vendor/github.com/yudai/hcl/json/parse.y deleted file mode 100644 index 237e4ae..0000000 --- a/vendor/github.com/yudai/hcl/json/parse.y +++ /dev/null @@ -1,210 +0,0 @@ -// This is the yacc input for creating the parser for HCL JSON. - -%{ -package json - -import ( - "fmt" - "strconv" - - "github.com/hashicorp/hcl/hcl" -) - -%} - -%union { - f float64 - num int - str string - obj *hcl.Object - objlist []*hcl.Object -} - -%type float -%type int -%type number object pair value -%type array elements members -%type exp - -%token FLOAT -%token NUMBER -%token COLON COMMA IDENTIFIER EQUAL NEWLINE STRING -%token LEFTBRACE RIGHTBRACE LEFTBRACKET RIGHTBRACKET -%token TRUE FALSE NULL MINUS PERIOD EPLUS EMINUS - -%% - -top: - object - { - jsonResult = $1 - } - -object: - LEFTBRACE members RIGHTBRACE - { - $$ = &hcl.Object{ - Type: hcl.ValueTypeObject, - Value: hcl.ObjectList($2).Flat(), - } - } -| LEFTBRACE RIGHTBRACE - { - $$ = &hcl.Object{Type: hcl.ValueTypeObject} - } - -members: - pair - { - $$ = []*hcl.Object{$1} - } -| members COMMA pair - { - $$ = append($1, $3) - } - -pair: - STRING COLON value - { - $3.Key = $1 - $$ = $3 - } - -value: - STRING - { - $$ = &hcl.Object{ - Type: hcl.ValueTypeString, - Value: $1, - } - } -| number - { - $$ = $1 - } -| object - { - $$ = $1 - } -| array - { - $$ = &hcl.Object{ - Type: hcl.ValueTypeList, - Value: $1, - } - } -| TRUE - { - $$ = &hcl.Object{ - Type: hcl.ValueTypeBool, - Value: true, - } - } -| FALSE - { - $$ = &hcl.Object{ - Type: hcl.ValueTypeBool, - Value: false, - } - } -| NULL - { - $$ = &hcl.Object{ - Type: hcl.ValueTypeNil, - Value: nil, - } - } - -array: - LEFTBRACKET RIGHTBRACKET - { - $$ = nil - } -| LEFTBRACKET elements RIGHTBRACKET - { - $$ = $2 - } - -elements: - value - { - $$ = []*hcl.Object{$1} - } -| elements COMMA value - { - $$ = append($1, $3) - } - -number: - int - { - $$ = &hcl.Object{ - Type: hcl.ValueTypeInt, - Value: $1, - } - } -| float - { - $$ = &hcl.Object{ - Type: hcl.ValueTypeFloat, - Value: $1, - } - } -| int exp - { - fs := fmt.Sprintf("%d%s", $1, $2) - f, err := strconv.ParseFloat(fs, 64) - if err != nil { - panic(err) - } - - $$ = &hcl.Object{ - Type: hcl.ValueTypeFloat, - Value: f, - } - } -| float exp - { - fs := fmt.Sprintf("%f%s", $1, $2) - f, err := strconv.ParseFloat(fs, 64) - if err != nil { - panic(err) - } - - $$ = &hcl.Object{ - Type: hcl.ValueTypeFloat, - Value: f, - } - } - -int: - MINUS int - { - $$ = $2 * -1 - } -| NUMBER - { - $$ = $1 - } - -float: - MINUS float - { - $$ = $2 * -1 - } -| FLOAT - { - $$ = $1 - } - -exp: - EPLUS NUMBER - { - $$ = "e" + strconv.FormatInt(int64($2), 10) - } -| EMINUS NUMBER - { - $$ = "e-" + strconv.FormatInt(int64($2), 10) - } - -%% diff --git a/vendor/github.com/yudai/hcl/json/y.go b/vendor/github.com/yudai/hcl/json/y.go deleted file mode 100644 index edc4438..0000000 --- a/vendor/github.com/yudai/hcl/json/y.go +++ /dev/null @@ -1,699 +0,0 @@ -//line parse.y:3 -package json - -import __yyfmt__ "fmt" - -//line parse.y:5 -import ( - "fmt" - "strconv" - - "github.com/yudai/hcl/hcl" -) - -//line parse.y:15 -type jsonSymType struct { - yys int - f float64 - num int - str string - obj *hcl.Object - objlist []*hcl.Object -} - -const FLOAT = 57346 -const NUMBER = 57347 -const COLON = 57348 -const COMMA = 57349 -const IDENTIFIER = 57350 -const EQUAL = 57351 -const NEWLINE = 57352 -const STRING = 57353 -const LEFTBRACE = 57354 -const RIGHTBRACE = 57355 -const LEFTBRACKET = 57356 -const RIGHTBRACKET = 57357 -const TRUE = 57358 -const FALSE = 57359 -const NULL = 57360 -const MINUS = 57361 -const PERIOD = 57362 -const EPLUS = 57363 -const EMINUS = 57364 - -var jsonToknames = [...]string{ - "$end", - "error", - "$unk", - "FLOAT", - "NUMBER", - "COLON", - "COMMA", - "IDENTIFIER", - "EQUAL", - "NEWLINE", - "STRING", - "LEFTBRACE", - "RIGHTBRACE", - "LEFTBRACKET", - "RIGHTBRACKET", - "TRUE", - "FALSE", - "NULL", - "MINUS", - "PERIOD", - "EPLUS", - "EMINUS", -} -var jsonStatenames = [...]string{} - -const jsonEofCode = 1 -const jsonErrCode = 2 -const jsonMaxDepth = 200 - -//line parse.y:210 - -//line yacctab:1 -var jsonExca = [...]int{ - -1, 1, - 1, -1, - -2, 0, -} - -const jsonNprod = 28 -const jsonPrivate = 57344 - -var jsonTokenNames []string -var jsonStates []string - -const jsonLast = 53 - -var jsonAct = [...]int{ - - 12, 25, 24, 3, 20, 27, 28, 7, 13, 3, - 21, 22, 30, 17, 18, 19, 23, 25, 24, 26, - 25, 24, 36, 32, 13, 3, 10, 22, 33, 17, - 18, 19, 23, 35, 34, 23, 38, 9, 7, 39, - 5, 29, 6, 8, 37, 15, 2, 1, 4, 31, - 16, 14, 11, -} -var jsonPact = [...]int{ - - -9, -1000, -1000, 27, 30, -1000, -1000, 20, -1000, -4, - 13, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, -1000, - -16, -16, -3, 16, -1000, -1000, -1000, 28, 17, -1000, - -1000, 29, -1000, -1000, -1000, -1000, -1000, -1000, 13, -1000, -} -var jsonPgo = [...]int{ - - 0, 10, 4, 51, 45, 42, 0, 50, 49, 48, - 19, 47, -} -var jsonR1 = [...]int{ - - 0, 11, 4, 4, 9, 9, 5, 6, 6, 6, - 6, 6, 6, 6, 7, 7, 8, 8, 3, 3, - 3, 3, 2, 2, 1, 1, 10, 10, -} -var jsonR2 = [...]int{ - - 0, 1, 3, 2, 1, 3, 3, 1, 1, 1, - 1, 1, 1, 1, 2, 3, 1, 3, 1, 1, - 2, 2, 2, 1, 2, 1, 2, 2, -} -var jsonChk = [...]int{ - - -1000, -11, -4, 12, -9, 13, -5, 11, 13, 7, - 6, -5, -6, 11, -3, -4, -7, 16, 17, 18, - -2, -1, 14, 19, 5, 4, -10, 21, 22, -10, - 15, -8, -6, -2, -1, 5, 5, 15, 7, -6, -} -var jsonDef = [...]int{ - - 0, -2, 1, 0, 0, 3, 4, 0, 2, 0, - 0, 5, 6, 7, 8, 9, 10, 11, 12, 13, - 18, 19, 0, 0, 23, 25, 20, 0, 0, 21, - 14, 0, 16, 22, 24, 26, 27, 15, 0, 17, -} -var jsonTok1 = [...]int{ - - 1, -} -var jsonTok2 = [...]int{ - - 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, - 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, - 22, -} -var jsonTok3 = [...]int{ - 0, -} - -var jsonErrorMessages = [...]struct { - state int - token int - msg string -}{} - -//line yaccpar:1 - -/* parser for yacc output */ - -var ( - jsonDebug = 0 - jsonErrorVerbose = false -) - -type jsonLexer interface { - Lex(lval *jsonSymType) int - Error(s string) -} - -type jsonParser interface { - Parse(jsonLexer) int - Lookahead() int -} - -type jsonParserImpl struct { - lookahead func() int -} - -func (p *jsonParserImpl) Lookahead() int { - return p.lookahead() -} - -func jsonNewParser() jsonParser { - p := &jsonParserImpl{ - lookahead: func() int { return -1 }, - } - return p -} - -const jsonFlag = -1000 - -func jsonTokname(c int) string { - if c >= 1 && c-1 < len(jsonToknames) { - if jsonToknames[c-1] != "" { - return jsonToknames[c-1] - } - } - return __yyfmt__.Sprintf("tok-%v", c) -} - -func jsonStatname(s int) string { - if s >= 0 && s < len(jsonStatenames) { - if jsonStatenames[s] != "" { - return jsonStatenames[s] - } - } - return __yyfmt__.Sprintf("state-%v", s) -} - -func jsonErrorMessage(state, lookAhead int) string { - const TOKSTART = 4 - - if !jsonErrorVerbose { - return "syntax error" - } - - for _, e := range jsonErrorMessages { - if e.state == state && e.token == lookAhead { - return "syntax error: " + e.msg - } - } - - res := "syntax error: unexpected " + jsonTokname(lookAhead) - - // To match Bison, suggest at most four expected tokens. - expected := make([]int, 0, 4) - - // Look for shiftable tokens. - base := jsonPact[state] - for tok := TOKSTART; tok-1 < len(jsonToknames); tok++ { - if n := base + tok; n >= 0 && n < jsonLast && jsonChk[jsonAct[n]] == tok { - if len(expected) == cap(expected) { - return res - } - expected = append(expected, tok) - } - } - - if jsonDef[state] == -2 { - i := 0 - for jsonExca[i] != -1 || jsonExca[i+1] != state { - i += 2 - } - - // Look for tokens that we accept or reduce. - for i += 2; jsonExca[i] >= 0; i += 2 { - tok := jsonExca[i] - if tok < TOKSTART || jsonExca[i+1] == 0 { - continue - } - if len(expected) == cap(expected) { - return res - } - expected = append(expected, tok) - } - - // If the default action is to accept or reduce, give up. - if jsonExca[i+1] != 0 { - return res - } - } - - for i, tok := range expected { - if i == 0 { - res += ", expecting " - } else { - res += " or " - } - res += jsonTokname(tok) - } - return res -} - -func jsonlex1(lex jsonLexer, lval *jsonSymType) (char, token int) { - token = 0 - char = lex.Lex(lval) - if char <= 0 { - token = jsonTok1[0] - goto out - } - if char < len(jsonTok1) { - token = jsonTok1[char] - goto out - } - if char >= jsonPrivate { - if char < jsonPrivate+len(jsonTok2) { - token = jsonTok2[char-jsonPrivate] - goto out - } - } - for i := 0; i < len(jsonTok3); i += 2 { - token = jsonTok3[i+0] - if token == char { - token = jsonTok3[i+1] - goto out - } - } - -out: - if token == 0 { - token = jsonTok2[1] /* unknown char */ - } - if jsonDebug >= 3 { - __yyfmt__.Printf("lex %s(%d)\n", jsonTokname(token), uint(char)) - } - return char, token -} - -func jsonParse(jsonlex jsonLexer) int { - return jsonNewParser().Parse(jsonlex) -} - -func (jsonrcvr *jsonParserImpl) Parse(jsonlex jsonLexer) int { - var jsonn int - var jsonlval jsonSymType - var jsonVAL jsonSymType - var jsonDollar []jsonSymType - _ = jsonDollar // silence set and not used - jsonS := make([]jsonSymType, jsonMaxDepth) - - Nerrs := 0 /* number of errors */ - Errflag := 0 /* error recovery flag */ - jsonstate := 0 - jsonchar := -1 - jsontoken := -1 // jsonchar translated into internal numbering - jsonrcvr.lookahead = func() int { return jsonchar } - defer func() { - // Make sure we report no lookahead when not parsing. - jsonstate = -1 - jsonchar = -1 - jsontoken = -1 - }() - jsonp := -1 - goto jsonstack - -ret0: - return 0 - -ret1: - return 1 - -jsonstack: - /* put a state and value onto the stack */ - if jsonDebug >= 4 { - __yyfmt__.Printf("char %v in %v\n", jsonTokname(jsontoken), jsonStatname(jsonstate)) - } - - jsonp++ - if jsonp >= len(jsonS) { - nyys := make([]jsonSymType, len(jsonS)*2) - copy(nyys, jsonS) - jsonS = nyys - } - jsonS[jsonp] = jsonVAL - jsonS[jsonp].yys = jsonstate - -jsonnewstate: - jsonn = jsonPact[jsonstate] - if jsonn <= jsonFlag { - goto jsondefault /* simple state */ - } - if jsonchar < 0 { - jsonchar, jsontoken = jsonlex1(jsonlex, &jsonlval) - } - jsonn += jsontoken - if jsonn < 0 || jsonn >= jsonLast { - goto jsondefault - } - jsonn = jsonAct[jsonn] - if jsonChk[jsonn] == jsontoken { /* valid shift */ - jsonchar = -1 - jsontoken = -1 - jsonVAL = jsonlval - jsonstate = jsonn - if Errflag > 0 { - Errflag-- - } - goto jsonstack - } - -jsondefault: - /* default state action */ - jsonn = jsonDef[jsonstate] - if jsonn == -2 { - if jsonchar < 0 { - jsonchar, jsontoken = jsonlex1(jsonlex, &jsonlval) - } - - /* look through exception table */ - xi := 0 - for { - if jsonExca[xi+0] == -1 && jsonExca[xi+1] == jsonstate { - break - } - xi += 2 - } - for xi += 2; ; xi += 2 { - jsonn = jsonExca[xi+0] - if jsonn < 0 || jsonn == jsontoken { - break - } - } - jsonn = jsonExca[xi+1] - if jsonn < 0 { - goto ret0 - } - } - if jsonn == 0 { - /* error ... attempt to resume parsing */ - switch Errflag { - case 0: /* brand new error */ - jsonlex.Error(jsonErrorMessage(jsonstate, jsontoken)) - Nerrs++ - if jsonDebug >= 1 { - __yyfmt__.Printf("%s", jsonStatname(jsonstate)) - __yyfmt__.Printf(" saw %s\n", jsonTokname(jsontoken)) - } - fallthrough - - case 1, 2: /* incompletely recovered error ... try again */ - Errflag = 3 - - /* find a state where "error" is a legal shift action */ - for jsonp >= 0 { - jsonn = jsonPact[jsonS[jsonp].yys] + jsonErrCode - if jsonn >= 0 && jsonn < jsonLast { - jsonstate = jsonAct[jsonn] /* simulate a shift of "error" */ - if jsonChk[jsonstate] == jsonErrCode { - goto jsonstack - } - } - - /* the current p has no shift on "error", pop stack */ - if jsonDebug >= 2 { - __yyfmt__.Printf("error recovery pops state %d\n", jsonS[jsonp].yys) - } - jsonp-- - } - /* there is no state on the stack with an error shift ... abort */ - goto ret1 - - case 3: /* no shift yet; clobber input char */ - if jsonDebug >= 2 { - __yyfmt__.Printf("error recovery discards %s\n", jsonTokname(jsontoken)) - } - if jsontoken == jsonEofCode { - goto ret1 - } - jsonchar = -1 - jsontoken = -1 - goto jsonnewstate /* try again in the same state */ - } - } - - /* reduction by production jsonn */ - if jsonDebug >= 2 { - __yyfmt__.Printf("reduce %v in:\n\t%v\n", jsonn, jsonStatname(jsonstate)) - } - - jsonnt := jsonn - jsonpt := jsonp - _ = jsonpt // guard against "declared and not used" - - jsonp -= jsonR2[jsonn] - // jsonp is now the index of $0. Perform the default action. Iff the - // reduced production is ε, $1 is possibly out of range. - if jsonp+1 >= len(jsonS) { - nyys := make([]jsonSymType, len(jsonS)*2) - copy(nyys, jsonS) - jsonS = nyys - } - jsonVAL = jsonS[jsonp+1] - - /* consult goto table to find next state */ - jsonn = jsonR1[jsonn] - jsong := jsonPgo[jsonn] - jsonj := jsong + jsonS[jsonp].yys + 1 - - if jsonj >= jsonLast { - jsonstate = jsonAct[jsong] - } else { - jsonstate = jsonAct[jsonj] - if jsonChk[jsonstate] != -jsonn { - jsonstate = jsonAct[jsong] - } - } - // dummy call; replaced with literal code - switch jsonnt { - - case 1: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:39 - { - jsonResult = jsonDollar[1].obj - } - case 2: - jsonDollar = jsonS[jsonpt-3 : jsonpt+1] - //line parse.y:45 - { - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeObject, - Value: hcl.ObjectList(jsonDollar[2].objlist).Flat(), - } - } - case 3: - jsonDollar = jsonS[jsonpt-2 : jsonpt+1] - //line parse.y:52 - { - jsonVAL.obj = &hcl.Object{Type: hcl.ValueTypeObject} - } - case 4: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:58 - { - jsonVAL.objlist = []*hcl.Object{jsonDollar[1].obj} - } - case 5: - jsonDollar = jsonS[jsonpt-3 : jsonpt+1] - //line parse.y:62 - { - jsonVAL.objlist = append(jsonDollar[1].objlist, jsonDollar[3].obj) - } - case 6: - jsonDollar = jsonS[jsonpt-3 : jsonpt+1] - //line parse.y:68 - { - jsonDollar[3].obj.Key = jsonDollar[1].str - jsonVAL.obj = jsonDollar[3].obj - } - case 7: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:75 - { - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeString, - Value: jsonDollar[1].str, - } - } - case 8: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:82 - { - jsonVAL.obj = jsonDollar[1].obj - } - case 9: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:86 - { - jsonVAL.obj = jsonDollar[1].obj - } - case 10: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:90 - { - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeList, - Value: jsonDollar[1].objlist, - } - } - case 11: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:97 - { - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeBool, - Value: true, - } - } - case 12: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:104 - { - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeBool, - Value: false, - } - } - case 13: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:111 - { - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeNil, - Value: nil, - } - } - case 14: - jsonDollar = jsonS[jsonpt-2 : jsonpt+1] - //line parse.y:120 - { - jsonVAL.objlist = nil - } - case 15: - jsonDollar = jsonS[jsonpt-3 : jsonpt+1] - //line parse.y:124 - { - jsonVAL.objlist = jsonDollar[2].objlist - } - case 16: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:130 - { - jsonVAL.objlist = []*hcl.Object{jsonDollar[1].obj} - } - case 17: - jsonDollar = jsonS[jsonpt-3 : jsonpt+1] - //line parse.y:134 - { - jsonVAL.objlist = append(jsonDollar[1].objlist, jsonDollar[3].obj) - } - case 18: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:140 - { - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeInt, - Value: jsonDollar[1].num, - } - } - case 19: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:147 - { - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeFloat, - Value: jsonDollar[1].f, - } - } - case 20: - jsonDollar = jsonS[jsonpt-2 : jsonpt+1] - //line parse.y:154 - { - fs := fmt.Sprintf("%d%s", jsonDollar[1].num, jsonDollar[2].str) - f, err := strconv.ParseFloat(fs, 64) - if err != nil { - panic(err) - } - - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeFloat, - Value: f, - } - } - case 21: - jsonDollar = jsonS[jsonpt-2 : jsonpt+1] - //line parse.y:167 - { - fs := fmt.Sprintf("%f%s", jsonDollar[1].f, jsonDollar[2].str) - f, err := strconv.ParseFloat(fs, 64) - if err != nil { - panic(err) - } - - jsonVAL.obj = &hcl.Object{ - Type: hcl.ValueTypeFloat, - Value: f, - } - } - case 22: - jsonDollar = jsonS[jsonpt-2 : jsonpt+1] - //line parse.y:182 - { - jsonVAL.num = jsonDollar[2].num * -1 - } - case 23: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:186 - { - jsonVAL.num = jsonDollar[1].num - } - case 24: - jsonDollar = jsonS[jsonpt-2 : jsonpt+1] - //line parse.y:192 - { - jsonVAL.f = jsonDollar[2].f * -1 - } - case 25: - jsonDollar = jsonS[jsonpt-1 : jsonpt+1] - //line parse.y:196 - { - jsonVAL.f = jsonDollar[1].f - } - case 26: - jsonDollar = jsonS[jsonpt-2 : jsonpt+1] - //line parse.y:202 - { - jsonVAL.str = "e" + strconv.FormatInt(int64(jsonDollar[2].num), 10) - } - case 27: - jsonDollar = jsonS[jsonpt-2 : jsonpt+1] - //line parse.y:206 - { - jsonVAL.str = "e-" + strconv.FormatInt(int64(jsonDollar[2].num), 10) - } - } - goto jsonstack /* stack new state and value */ -} diff --git a/vendor/github.com/yudai/hcl/lex.go b/vendor/github.com/yudai/hcl/lex.go deleted file mode 100644 index 2e38ecb..0000000 --- a/vendor/github.com/yudai/hcl/lex.go +++ /dev/null @@ -1,31 +0,0 @@ -package hcl - -import ( - "unicode" -) - -type lexModeValue byte - -const ( - lexModeUnknown lexModeValue = iota - lexModeHcl - lexModeJson -) - -// lexMode returns whether we're going to be parsing in JSON -// mode or HCL mode. -func lexMode(v string) lexModeValue { - for _, r := range v { - if unicode.IsSpace(r) { - continue - } - - if r == '{' { - return lexModeJson - } else { - return lexModeHcl - } - } - - return lexModeHcl -} diff --git a/vendor/github.com/yudai/hcl/parse.go b/vendor/github.com/yudai/hcl/parse.go deleted file mode 100644 index 4b76d74..0000000 --- a/vendor/github.com/yudai/hcl/parse.go +++ /dev/null @@ -1,22 +0,0 @@ -package hcl - -import ( - "fmt" - - "github.com/yudai/hcl/hcl" - "github.com/yudai/hcl/json" -) - -// Parse parses the given input and returns the root object. -// -// The input format can be either HCL or JSON. -func Parse(input string) (*hcl.Object, error) { - switch lexMode(input) { - case lexModeHcl: - return hcl.Parse(input) - case lexModeJson: - return json.Parse(input) - } - - return nil, fmt.Errorf("unknown config format") -} diff --git a/webtty/webtty.go b/webtty/webtty.go index ed4f8b9..9036e8d 100644 --- a/webtty/webtty.go +++ b/webtty/webtty.go @@ -7,6 +7,7 @@ import ( "sync" "github.com/pkg/errors" + "golang.org/x/sync/errgroup" ) // WebTTY bridges a PTY slave and its PTY master. @@ -42,7 +43,7 @@ func New(masterConn Master, slave Slave, options ...Option) (*WebTTY, error) { columns: 0, rows: 0, - bufferSize: 1024, + bufferSize: 4096, } for _, option := range options { @@ -64,49 +65,52 @@ func (wt *WebTTY) Run(ctx context.Context) error { return errors.Wrapf(err, "failed to send initializing message") } - errs := make(chan error, 2) + grp, grpCtx := errgroup.WithContext(ctx) + done := grpCtx.Done() - go func() { - errs <- func() error { - buffer := make([]byte, wt.bufferSize) - for { - n, err := wt.slave.Read(buffer) - if err != nil { - return ErrSlaveClosed - } - - err = wt.handleSlaveReadEvent(buffer[:n]) - if err != nil { - return err - } + grp.Go(func() error { + buffer := make([]byte, wt.bufferSize) + for { + select { + case <-done: + return grpCtx.Err() + default: } - }() - }() - go func() { - errs <- func() error { - buffer := make([]byte, wt.bufferSize) - for { - n, err := wt.masterConn.Read(buffer) - if err != nil { - return ErrMasterClosed - } - - err = wt.handleMasterReadEvent(buffer[:n]) - if err != nil { - return err - } + n, err := wt.slave.Read(buffer) + if err != nil { + return ErrSlaveClosed } - }() - }() - select { - case <-ctx.Done(): - err = ctx.Err() - case err = <-errs: - } + err = wt.handleSlaveReadEvent(buffer[:n]) + if err != nil { + return err + } + } + }) - return err + grp.Go(func() error { + buffer := make([]byte, wt.bufferSize) + for { + select { + case <-done: + return grpCtx.Err() + default: + } + + n, err := wt.masterConn.Read(buffer) + if err != nil { + return ErrMasterClosed + } + + err = wt.handleMasterReadEvent(buffer[:n]) + if err != nil { + return err + } + } + }) + + return grp.Wait() } func (wt *WebTTY) sendInitializeMessage() error { @@ -205,7 +209,8 @@ func (wt *WebTTY) handleMasterReadEvent(data []byte) error { columns = int(args.Columns) } - wt.slave.ResizeTerminal(columns, rows) + // Ignoring this error unfournately + _ = wt.slave.ResizeTerminal(columns, rows) default: return errors.Errorf("unknown message type `%c`", data[0]) }